From dbc52dc6c7e726b2f25451f03547b8e7accd07ea Mon Sep 17 00:00:00 2001 From: github-actions <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 16 Oct 2024 05:02:10 +0000 Subject: [PATCH 01/35] Update source translation strings --- netbox/translations/en/LC_MESSAGES/django.po | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/netbox/translations/en/LC_MESSAGES/django.po b/netbox/translations/en/LC_MESSAGES/django.po index fea5de22d..44b7b82a0 100644 --- a/netbox/translations/en/LC_MESSAGES/django.po +++ b/netbox/translations/en/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-12 05:02+0000\n" +"POT-Creation-Date: 2024-10-16 05:01+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -330,7 +330,7 @@ msgstr "" #: netbox/ipam/forms/model_forms.py:449 netbox/netbox/filtersets.py:282 #: netbox/netbox/forms/__init__.py:22 netbox/netbox/forms/base.py:167 #: netbox/templates/htmx/object_selector.html:28 -#: netbox/templates/inc/filter_list.html:45 +#: netbox/templates/inc/filter_list.html:46 #: netbox/templates/ipam/ipaddress_assign.html:29 #: netbox/templates/search.html:7 netbox/templates/search.html:26 #: netbox/tenancy/filtersets.py:99 netbox/users/filtersets.py:23 @@ -13363,7 +13363,7 @@ msgstr "" msgid "Select" msgstr "" -#: netbox/templates/inc/filter_list.html:42 +#: netbox/templates/inc/filter_list.html:43 #: netbox/utilities/templates/helpers/table_config_form.html:39 msgid "Reset" msgstr "" From e7bd0e53d78809f430c8dafaacded4a52d6c7438 Mon Sep 17 00:00:00 2001 From: Jeremy Stretch Date: Wed, 16 Oct 2024 11:56:55 -0400 Subject: [PATCH 02/35] Closes #17776: Add support for different HTTP methods to HTMXSelect --- netbox/utilities/forms/widgets/select.py | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/netbox/utilities/forms/widgets/select.py b/netbox/utilities/forms/widgets/select.py index 9108951b7..8115e2449 100644 --- a/netbox/utilities/forms/widgets/select.py +++ b/netbox/utilities/forms/widgets/select.py @@ -43,9 +43,12 @@ class HTMXSelect(forms.Select): """ Selection widget that will re-generate the HTML form upon the selection of a new option. """ - def __init__(self, hx_url='.', hx_target_id='form_fields', attrs=None, **kwargs): + def __init__(self, method='get', hx_url='.', hx_target_id='form_fields', attrs=None, **kwargs): + method = method.lower() + if method not in ('delete', 'get', 'patch', 'post', 'put'): + raise ValueError(f"Unsupported HTTP method: {method}") _attrs = { - 'hx-get': hx_url, + f'hx-{method}': hx_url, 'hx-include': f'#{hx_target_id}', 'hx-target': f'#{hx_target_id}', } From 35307d213f98a254442a843726e0610c13db5e3f Mon Sep 17 00:00:00 2001 From: Arthur Hanson Date: Wed, 16 Oct 2024 09:00:51 -0700 Subject: [PATCH 03/35] 17468 add warning to documentation about overriding custom script properties --- docs/customization/custom-scripts.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/docs/customization/custom-scripts.md b/docs/customization/custom-scripts.md index 3fa6491d2..1051b31f6 100644 --- a/docs/customization/custom-scripts.md +++ b/docs/customization/custom-scripts.md @@ -72,6 +72,9 @@ script_order = (MyCustomScript, AnotherCustomScript) Script attributes are defined under a class named `Meta` within the script. These are optional, but encouraged. +!!! warning + These are also defined and used as properties on the base custom script class, so don't use the same names as variables or override them in your custom script. + ### `name` This is the human-friendly names of your script. If omitted, the class name will be used. From aa3f4cb5f5ba18f2876db92976b76acaa9582502 Mon Sep 17 00:00:00 2001 From: Arthur Hanson Date: Tue, 15 Oct 2024 16:01:12 -0700 Subject: [PATCH 04/35] 17710 remove cached fields from CableTermination GraphQL --- netbox/dcim/graphql/types.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/netbox/dcim/graphql/types.py b/netbox/dcim/graphql/types.py index 24ba5cca4..8adfed82e 100644 --- a/netbox/dcim/graphql/types.py +++ b/netbox/dcim/graphql/types.py @@ -112,7 +112,7 @@ class ModularComponentTemplateType(ComponentTemplateType): @strawberry_django.type( models.CableTermination, - exclude=('termination_type', 'termination_id'), + exclude=('termination_type', 'termination_id', '_device', '_rack', '_location', '_site'), filters=CableTerminationFilter ) class CableTerminationType(NetBoxObjectType): From e8e95f5e97a684fd26d04289f86e3dbce8ac29cc Mon Sep 17 00:00:00 2001 From: Artem Kotik Date: Wed, 16 Oct 2024 11:39:23 +0200 Subject: [PATCH 05/35] Add job timeout handling in JobRunner for periodic jobs --- netbox/netbox/jobs.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/netbox/netbox/jobs.py b/netbox/netbox/jobs.py index 087c24896..ae8f2f109 100644 --- a/netbox/netbox/jobs.py +++ b/netbox/netbox/jobs.py @@ -68,6 +68,8 @@ class JobRunner(ABC): finally: if job.interval: new_scheduled_time = (job.scheduled or job.started) + timedelta(minutes=job.interval) + if job.object and getattr(job.object, "python_class", None): + kwargs["job_timeout"] = job.object.python_class.job_timeout cls.enqueue( instance=job.object, user=job.user, From 532dbabbab8352188c07b041a27e32bc035c2f1b Mon Sep 17 00:00:00 2001 From: corubba Date: Tue, 15 Oct 2024 22:02:14 +0200 Subject: [PATCH 06/35] Fixes #17749: Add missing graphql fields --- netbox/dcim/graphql/types.py | 1 + netbox/tenancy/graphql/types.py | 2 ++ netbox/wireless/graphql/types.py | 1 + 3 files changed, 4 insertions(+) diff --git a/netbox/dcim/graphql/types.py b/netbox/dcim/graphql/types.py index 8adfed82e..bce6f06ac 100644 --- a/netbox/dcim/graphql/types.py +++ b/netbox/dcim/graphql/types.py @@ -243,6 +243,7 @@ class DeviceType(ConfigContextMixin, ImageAttachmentsMixin, ContactsMixin, NetBo consoleserverports: List[Annotated["ConsoleServerPortType", strawberry.lazy('dcim.graphql.types')]] poweroutlets: List[Annotated["PowerOutletType", strawberry.lazy('dcim.graphql.types')]] frontports: List[Annotated["FrontPortType", strawberry.lazy('dcim.graphql.types')]] + devicebays: List[Annotated["DeviceBayType", strawberry.lazy('dcim.graphql.types')]] modulebays: List[Annotated["ModuleBayType", strawberry.lazy('dcim.graphql.types')]] services: List[Annotated["ServiceType", strawberry.lazy('ipam.graphql.types')]] inventoryitems: List[Annotated["InventoryItemType", strawberry.lazy('dcim.graphql.types')]] diff --git a/netbox/tenancy/graphql/types.py b/netbox/tenancy/graphql/types.py index 120b5c71b..7baa136b3 100644 --- a/netbox/tenancy/graphql/types.py +++ b/netbox/tenancy/graphql/types.py @@ -66,6 +66,7 @@ class TenantGroupType(OrganizationalObjectType): parent: Annotated["TenantGroupType", strawberry.lazy('tenancy.graphql.types')] | None tenants: List[TenantType] + children: List[Annotated["TenantGroupType", strawberry.lazy('tenancy.graphql.types')]] # @@ -99,6 +100,7 @@ class ContactGroupType(OrganizationalObjectType): parent: Annotated["ContactGroupType", strawberry.lazy('tenancy.graphql.types')] | None contacts: List[ContactType] + children: List[Annotated["ContactGroupType", strawberry.lazy('tenancy.graphql.types')]] @strawberry_django.type( diff --git a/netbox/wireless/graphql/types.py b/netbox/wireless/graphql/types.py index e542fd9c9..b24525fbe 100644 --- a/netbox/wireless/graphql/types.py +++ b/netbox/wireless/graphql/types.py @@ -23,6 +23,7 @@ class WirelessLANGroupType(OrganizationalObjectType): parent: Annotated["WirelessLANGroupType", strawberry.lazy('wireless.graphql.types')] | None wireless_lans: List[Annotated["WirelessLANType", strawberry.lazy('wireless.graphql.types')]] + children: List[Annotated["WirelessLANGroupType", strawberry.lazy('wireless.graphql.types')]] @strawberry_django.type( From 82de559317645bea76dd44d50449e27c6f6c2ed2 Mon Sep 17 00:00:00 2001 From: Arthur Hanson Date: Wed, 16 Oct 2024 11:15:36 -0700 Subject: [PATCH 07/35] 17754 fix per-page on version history (#17766) * 17754 fix per-page on version history * 17754 remove htmx table * Use non-HTMX template for static tables --------- Co-authored-by: Jeremy Stretch --- netbox/templates/core/plugin.html | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/netbox/templates/core/plugin.html b/netbox/templates/core/plugin.html index 34eaf81ee..b833db037 100644 --- a/netbox/templates/core/plugin.html +++ b/netbox/templates/core/plugin.html @@ -2,6 +2,7 @@ {% load helpers %} {% load form_helpers %} {% load i18n %} +{% load render_table from django_tables2 %} {% block title %}{{ plugin.title_long }}{% endblock %} @@ -93,8 +94,8 @@

{% trans "Version History" %}

-
- {% include 'htmx/table.html' %} +
+ {% render_table table 'inc/table.html' %}
From 81108e405fb2e44c6f57ef8c44bf5f3458915282 Mon Sep 17 00:00:00 2001 From: Brian Tiemann Date: Wed, 16 Oct 2024 15:06:21 -0400 Subject: [PATCH 08/35] Add webp to the list of acceptable extensions for handling filenames in image_upload --- netbox/extras/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/netbox/extras/utils.py b/netbox/extras/utils.py index 28d2e13f0..efe7ada5b 100644 --- a/netbox/extras/utils.py +++ b/netbox/extras/utils.py @@ -33,7 +33,7 @@ def image_upload(instance, filename): # Rename the file to the provided name, if any. Attempt to preserve the file extension. extension = filename.rsplit('.')[-1].lower() - if instance.name and extension in ['bmp', 'gif', 'jpeg', 'jpg', 'png']: + if instance.name and extension in ['bmp', 'gif', 'jpeg', 'jpg', 'png', 'webp']: filename = '.'.join([instance.name, extension]) elif instance.name: filename = instance.name From 27a39339df8442c18b8b282dae18c9fbd3b1a761 Mon Sep 17 00:00:00 2001 From: Arthur Hanson Date: Wed, 16 Oct 2024 13:53:21 -0700 Subject: [PATCH 09/35] 17464 fix margins for custom-field markdown description (#17775) * 17464 fix margins for custom-field markdown description * 17464 fix margins for custom-field markdown description * 17464 review changes * 17464 update comments --- netbox/project-static/dist/netbox.css | Bin 554655 -> 554652 bytes .../styles/custom/_markdown.scss | 13 ++++++++----- 2 files changed, 8 insertions(+), 5 deletions(-) diff --git a/netbox/project-static/dist/netbox.css b/netbox/project-static/dist/netbox.css index fbad302ff47fecfc13969279dcd861519cf68e64..081c9aa6326820ac4c82d6f60f7b869b85a59d4e 100644 GIT binary patch delta 41 xcmbRLR&mZ-#fBEf7N!>F7M2#)7Pc1lEgYYVrt24T7)}3N#9_HTv6#b-830xQ4>bS) delta 45 zcmbR9R&oAY#fBEf7N!>F7M2#)7Pc1lEgYYVrmGfnSTdKS*iHXj#9_2Ou9(A)832%a B5J3O{ diff --git a/netbox/project-static/styles/custom/_markdown.scss b/netbox/project-static/styles/custom/_markdown.scss index 32ef7a09c..75ada3bc6 100644 --- a/netbox/project-static/styles/custom/_markdown.scss +++ b/netbox/project-static/styles/custom/_markdown.scss @@ -28,16 +28,19 @@ } -// Remove the bottom margin of

elements inside a table cell -td > .rendered-markdown { - max-height: 200px; - overflow-y: scroll; - +// Remove the bottom margin of the last

elements in markdown +.rendered-markdown { p:last-of-type { margin-bottom: 0; } } +// fix layout of rendered markdown inside a table cell +td > .rendered-markdown { + max-height: 200px; + overflow-y: scroll; +} + // Markdown preview .markdown-widget { .preview { From 33bc1320c4a0e798f20cd9fb4465465c9d46f0c2 Mon Sep 17 00:00:00 2001 From: Jeremy Stretch Date: Wed, 16 Oct 2024 16:57:10 -0400 Subject: [PATCH 10/35] Changelog for #177109, #17740, #17749, #17754, #17759 --- docs/release-notes/version-4.1.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/docs/release-notes/version-4.1.md b/docs/release-notes/version-4.1.md index d48bb899f..c29fb3aab 100644 --- a/docs/release-notes/version-4.1.md +++ b/docs/release-notes/version-4.1.md @@ -1,5 +1,17 @@ # NetBox v4.1 +## v4.1.5 (FUTURE) + +### Bug Fixes + +* [#17710](https://github.com/netbox-community/netbox/issues/17710) - Remove cached fields on CableTermination model from GraphQL API +* [#17740](https://github.com/netbox-community/netbox/issues/17740) - Ensure support for image attachments with a `.webp` file extension +* [#17749](https://github.com/netbox-community/netbox/issues/17749) - Restore missing `devicetypes` and `children` fields for several objects in GraphQL API +* [#17754](https://github.com/netbox-community/netbox/issues/17754) - Remove paginator from version history table under plugin view +* [#17759](https://github.com/netbox-community/netbox/issues/17759) - Retain `job_timeout` value when scheduling a recurring custom script + +--- + ## v4.1.4 (2024-10-15) ### Enhancements From 9f7743e5da12774ab3fe3fbfe46fa3dfb0508638 Mon Sep 17 00:00:00 2001 From: github-actions <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 17 Oct 2024 05:03:07 +0000 Subject: [PATCH 11/35] Update source translation strings --- netbox/translations/en/LC_MESSAGES/django.po | 34 ++++++++++---------- 1 file changed, 17 insertions(+), 17 deletions(-) diff --git a/netbox/translations/en/LC_MESSAGES/django.po b/netbox/translations/en/LC_MESSAGES/django.po index 44b7b82a0..09797fd1b 100644 --- a/netbox/translations/en/LC_MESSAGES/django.po +++ b/netbox/translations/en/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-16 05:01+0000\n" +"POT-Creation-Date: 2024-10-17 05:02+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -430,7 +430,7 @@ msgstr "" #: netbox/templates/circuits/provider.html:33 #: netbox/templates/circuits/providernetwork.html:32 #: netbox/templates/core/datasource.html:54 -#: netbox/templates/core/plugin.html:79 netbox/templates/dcim/cable.html:36 +#: netbox/templates/core/plugin.html:80 netbox/templates/dcim/cable.html:36 #: netbox/templates/dcim/consoleport.html:44 #: netbox/templates/dcim/consoleserverport.html:44 #: netbox/templates/dcim/device.html:94 netbox/templates/dcim/devicebay.html:32 @@ -1168,7 +1168,7 @@ msgstr "" msgid "status" msgstr "" -#: netbox/circuits/models/circuits.py:84 netbox/templates/core/plugin.html:19 +#: netbox/circuits/models/circuits.py:84 netbox/templates/core/plugin.html:20 msgid "installed" msgstr "" @@ -1396,7 +1396,7 @@ msgstr "" #: netbox/templates/circuits/provideraccount.html:28 #: netbox/templates/circuits/providernetwork.html:24 #: netbox/templates/core/datasource.html:34 netbox/templates/core/job.html:44 -#: netbox/templates/core/plugin.html:53 netbox/templates/core/rq_worker.html:43 +#: netbox/templates/core/plugin.html:54 netbox/templates/core/rq_worker.html:43 #: netbox/templates/dcim/consoleport.html:28 #: netbox/templates/dcim/consoleserverport.html:28 #: netbox/templates/dcim/devicebay.html:24 @@ -1654,7 +1654,7 @@ msgid "Cancelled" msgstr "" #: netbox/core/data_backends.py:32 netbox/core/tables/plugins.py:51 -#: netbox/templates/core/plugin.html:87 +#: netbox/templates/core/plugin.html:88 #: netbox/templates/dcim/interface.html:216 msgid "Local" msgstr "" @@ -2072,7 +2072,7 @@ msgstr "" #: netbox/core/models/data.py:49 netbox/extras/choices.py:37 #: netbox/extras/models/models.py:164 netbox/extras/tables/tables.py:656 #: netbox/templates/core/datasource.html:58 -#: netbox/templates/core/plugin.html:65 +#: netbox/templates/core/plugin.html:66 msgid "URL" msgstr "" @@ -2320,7 +2320,7 @@ msgstr "" msgid "No plugin data found" msgstr "" -#: netbox/core/tables/plugins.py:48 netbox/templates/core/plugin.html:61 +#: netbox/core/tables/plugins.py:48 netbox/templates/core/plugin.html:62 msgid "Author" msgstr "" @@ -2328,7 +2328,7 @@ msgstr "" msgid "Installed" msgstr "" -#: netbox/core/tables/plugins.py:57 netbox/templates/core/plugin.html:83 +#: netbox/core/tables/plugins.py:57 netbox/templates/core/plugin.html:84 msgid "Certified" msgstr "" @@ -10849,7 +10849,7 @@ msgstr "" #: netbox/netbox/navigation/menu.py:454 netbox/netbox/navigation/menu.py:502 #: netbox/templates/500.html:35 netbox/templates/account/preferences.html:22 -#: netbox/templates/core/plugin.html:12 +#: netbox/templates/core/plugin.html:13 #: netbox/templates/core/plugin_list.html:7 #: netbox/templates/core/plugin_list.html:12 msgid "Plugins" @@ -11769,35 +11769,35 @@ msgstr "" msgid "Indefinite" msgstr "" -#: netbox/templates/core/plugin.html:21 +#: netbox/templates/core/plugin.html:22 msgid "Not installed" msgstr "" -#: netbox/templates/core/plugin.html:32 +#: netbox/templates/core/plugin.html:33 msgid "Overview" msgstr "" -#: netbox/templates/core/plugin.html:38 +#: netbox/templates/core/plugin.html:39 msgid "Install" msgstr "" -#: netbox/templates/core/plugin.html:50 +#: netbox/templates/core/plugin.html:51 msgid "Plugin Details" msgstr "" -#: netbox/templates/core/plugin.html:57 +#: netbox/templates/core/plugin.html:58 msgid "Summary" msgstr "" -#: netbox/templates/core/plugin.html:75 +#: netbox/templates/core/plugin.html:76 msgid "License" msgstr "" -#: netbox/templates/core/plugin.html:95 +#: netbox/templates/core/plugin.html:96 msgid "Version History" msgstr "" -#: netbox/templates/core/plugin.html:106 +#: netbox/templates/core/plugin.html:107 msgid "Local Installation Instructions" msgstr "" From 6a316df787915141f8038507c531cdcfaffc2b39 Mon Sep 17 00:00:00 2001 From: Jeremy Stretch Date: Wed, 16 Oct 2024 16:05:01 -0400 Subject: [PATCH 12/35] Closes #17789: Use a single scope field for VLANGroup bulk edit --- netbox/ipam/forms/bulk_edit.py | 97 +++++------------- netbox/netbox/views/generic/bulk_views.py | 9 +- netbox/templates/generic/bulk_edit.html | 116 +++++++++++----------- 3 files changed, 90 insertions(+), 132 deletions(-) diff --git a/netbox/ipam/forms/bulk_edit.py b/netbox/ipam/forms/bulk_edit.py index f4a7eabb7..79debd0ed 100644 --- a/netbox/ipam/forms/bulk_edit.py +++ b/netbox/ipam/forms/bulk_edit.py @@ -1,22 +1,23 @@ from django import forms from django.contrib.contenttypes.models import ContentType +from django.core.exceptions import ObjectDoesNotExist from django.utils.translation import gettext_lazy as _ -from dcim.models import Location, Rack, Region, Site, SiteGroup +from dcim.models import Region, Site, SiteGroup from ipam.choices import * from ipam.constants import * from ipam.models import * from ipam.models import ASN from netbox.forms import NetBoxModelBulkEditForm from tenancy.models import Tenant -from utilities.forms import add_blank_choice +from utilities.forms import add_blank_choice, get_field_value from utilities.forms.fields import ( CommentField, ContentTypeChoiceField, DynamicModelChoiceField, DynamicModelMultipleChoiceField, NumericArrayField, NumericRangeArrayField, ) from utilities.forms.rendering import FieldSet -from utilities.forms.widgets import BulkEditNullBooleanSelect -from virtualization.models import Cluster, ClusterGroup +from utilities.forms.widgets import BulkEditNullBooleanSelect, HTMXSelect +from utilities.templatetags.builtins.filters import bettertitle __all__ = ( 'AggregateBulkEditForm', @@ -429,62 +430,17 @@ class VLANGroupBulkEditForm(NetBoxModelBulkEditForm): required=False ) scope_type = ContentTypeChoiceField( - label=_('Scope type'), queryset=ContentType.objects.filter(model__in=VLANGROUP_SCOPE_TYPES), - required=False - ) - scope_id = forms.IntegerField( + widget=HTMXSelect(method='post', attrs={'hx-select': '#form_fields'}), required=False, - widget=forms.HiddenInput() + label=_('Scope type') ) - region = DynamicModelChoiceField( - label=_('Region'), - queryset=Region.objects.all(), - required=False - ) - sitegroup = DynamicModelChoiceField( - queryset=SiteGroup.objects.all(), + scope = DynamicModelChoiceField( + label=_('Scope'), + queryset=Site.objects.none(), # Initial queryset required=False, - label=_('Site group') - ) - site = DynamicModelChoiceField( - label=_('Site'), - queryset=Site.objects.all(), - required=False, - query_params={ - 'region_id': '$region', - 'group_id': '$sitegroup', - } - ) - location = DynamicModelChoiceField( - label=_('Location'), - queryset=Location.objects.all(), - required=False, - query_params={ - 'site_id': '$site', - } - ) - rack = DynamicModelChoiceField( - label=_('Rack'), - queryset=Rack.objects.all(), - required=False, - query_params={ - 'site_id': '$site', - 'location_id': '$location', - } - ) - clustergroup = DynamicModelChoiceField( - queryset=ClusterGroup.objects.all(), - required=False, - label=_('Cluster group') - ) - cluster = DynamicModelChoiceField( - label=_('Cluster'), - queryset=Cluster.objects.all(), - required=False, - query_params={ - 'group_id': '$clustergroup', - } + disabled=True, + selector=True ) vid_ranges = NumericRangeArrayField( label=_('VLAN ID ranges'), @@ -494,24 +450,23 @@ class VLANGroupBulkEditForm(NetBoxModelBulkEditForm): model = VLANGroup fieldsets = ( FieldSet('site', 'vid_ranges', 'description'), - FieldSet( - 'scope_type', 'region', 'sitegroup', 'site', 'location', 'rack', 'clustergroup', 'cluster', name=_('Scope') - ), + FieldSet('scope_type', 'scope', name=_('Scope')), ) - nullable_fields = ('description',) + nullable_fields = ('description', 'scope') - def clean(self): - super().clean() + def __init__(self, *args, **kwargs): + super().__init__(*args, **kwargs) - # Assign scope based on scope_type - if self.cleaned_data.get('scope_type'): - scope_field = self.cleaned_data['scope_type'].model - if scope_obj := self.cleaned_data.get(scope_field): - self.cleaned_data['scope_id'] = scope_obj.pk - self.changed_data.append('scope_id') - else: - self.cleaned_data.pop('scope_type') - self.changed_data.remove('scope_type') + if scope_type_id := get_field_value(self, 'scope_type'): + try: + scope_type = ContentType.objects.get(pk=scope_type_id) + model = scope_type.model_class() + self.fields['scope'].queryset = model.objects.all() + self.fields['scope'].widget.attrs['selector'] = model._meta.label_lower + self.fields['scope'].disabled = False + self.fields['scope'].label = _(bettertitle(model._meta.verbose_name)) + except ObjectDoesNotExist: + pass class VLANBulkEditForm(NetBoxModelBulkEditForm): diff --git a/netbox/netbox/views/generic/bulk_views.py b/netbox/netbox/views/generic/bulk_views.py index d7d28b95f..d8115726c 100644 --- a/netbox/netbox/views/generic/bulk_views.py +++ b/netbox/netbox/views/generic/bulk_views.py @@ -3,7 +3,7 @@ import re from copy import deepcopy from django.contrib import messages -from django.contrib.contenttypes.fields import GenericRel +from django.contrib.contenttypes.fields import GenericForeignKey, GenericRel from django.contrib.contenttypes.models import ContentType from django.core.exceptions import FieldDoesNotExist, ObjectDoesNotExist, ValidationError from django.db import transaction, IntegrityError @@ -576,7 +576,10 @@ class BulkEditView(GetReturnURLMixin, BaseMultiObjectView): for name, model_field in model_fields.items(): # Handle nullification if name in form.nullable_fields and name in nullified_fields: - setattr(obj, name, None if model_field.null else '') + if type(model_field) is GenericForeignKey: + setattr(obj, name, None) + else: + setattr(obj, name, None if model_field.null else '') # Normal fields elif name in form.changed_data: setattr(obj, name, form.cleaned_data[name]) @@ -688,7 +691,7 @@ class BulkEditView(GetReturnURLMixin, BaseMultiObjectView): logger.debug("Form validation failed") else: - form = self.form(initial=initial_data) + form = self.form(request.POST, initial=initial_data) restrict_form_fields(form, request.user) # Retrieve objects being edited diff --git a/netbox/templates/generic/bulk_edit.html b/netbox/templates/generic/bulk_edit.html index 4b4d5aece..8c4d305ec 100644 --- a/netbox/templates/generic/bulk_edit.html +++ b/netbox/templates/generic/bulk_edit.html @@ -42,71 +42,71 @@ Context: {# Edit form #}

- - {% csrf_token %} - {% if request.POST.return_url %} - - {% endif %} - {% for field in form.hidden_fields %} - {{ field }} - {% endfor %} - - {% if form.fieldsets %} - - {# Render grouped fields according to declared fieldsets #} - {% for fieldset in form.fieldsets %} - {% render_fieldset form fieldset %} +
+ {% csrf_token %} + {% if request.POST.return_url %} + + {% endif %} + {% for field in form.hidden_fields %} + {{ field }} {% endfor %} - {# Render tag add/remove fields #} - {% if form.add_tags and form.remove_tags %} -
-
-

{% trans "Tags" %}

+ {% if form.fieldsets %} + + {# Render grouped fields according to declared fieldsets #} + {% for fieldset in form.fieldsets %} + {% render_fieldset form fieldset %} + {% endfor %} + + {# Render tag add/remove fields #} + {% if form.add_tags and form.remove_tags %} +
+
+

{% trans "Tags" %}

+
+ {% render_field form.add_tags %} + {% render_field form.remove_tags %}
- {% render_field form.add_tags %} - {% render_field form.remove_tags %} -
- {% endif %} - - {# Render custom fields #} - {% if form.custom_fields %} -
-
-

{% trans "Custom Fields" %}

-
- {% render_custom_fields form %} -
- {% endif %} - - {# Render comments #} - {% if form.comments %} -
-
-

{% trans "Comments" %}

-
- {% render_field form.comments bulk_nullable=True %} -
- {% endif %} - - {% else %} - - {# Render all fields #} - {% for field in form.visible_fields %} - {% if field.name in form.nullable_fields %} - {% render_field field bulk_nullable=True %} - {% else %} - {% render_field field %} {% endif %} - {% endfor %} - {% endif %} + {# Render custom fields #} + {% if form.custom_fields %} +
+
+

{% trans "Custom Fields" %}

+
+ {% render_custom_fields form %} +
+ {% endif %} -
- {% trans "Cancel" %} - + {# Render comments #} + {% if form.comments %} +
+
+

{% trans "Comments" %}

+
+ {% render_field form.comments bulk_nullable=True %} +
+ {% endif %} + + {% else %} + + {# Render all fields #} + {% for field in form.visible_fields %} + {% if field.name in form.nullable_fields %} + {% render_field field bulk_nullable=True %} + {% else %} + {% render_field field %} + {% endif %} + {% endfor %} + + {% endif %} + +
+ {% trans "Cancel" %} + +
-
From 110b2b3d978948a3bd0d0b14c02ba312b569fdff Mon Sep 17 00:00:00 2001 From: github-actions <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 18 Oct 2024 05:02:11 +0000 Subject: [PATCH 13/35] Update source translation strings --- netbox/translations/en/LC_MESSAGES/django.po | 163 +++++++++---------- 1 file changed, 80 insertions(+), 83 deletions(-) diff --git a/netbox/translations/en/LC_MESSAGES/django.po b/netbox/translations/en/LC_MESSAGES/django.po index 09797fd1b..4748feb46 100644 --- a/netbox/translations/en/LC_MESSAGES/django.po +++ b/netbox/translations/en/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-17 05:02+0000\n" +"POT-Creation-Date: 2024-10-18 05:01+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -212,14 +212,13 @@ msgstr "" #: netbox/dcim/tables/power.py:26 netbox/dcim/tables/power.py:93 #: netbox/dcim/tables/racks.py:122 netbox/dcim/tables/racks.py:207 #: netbox/dcim/tables/sites.py:134 netbox/extras/filtersets.py:525 -#: netbox/ipam/forms/bulk_edit.py:217 netbox/ipam/forms/bulk_edit.py:284 -#: netbox/ipam/forms/bulk_edit.py:451 netbox/ipam/forms/bulk_edit.py:529 -#: netbox/ipam/forms/bulk_import.py:171 netbox/ipam/forms/bulk_import.py:429 -#: netbox/ipam/forms/filtersets.py:153 netbox/ipam/forms/filtersets.py:231 -#: netbox/ipam/forms/filtersets.py:432 netbox/ipam/forms/filtersets.py:489 -#: netbox/ipam/forms/model_forms.py:205 netbox/ipam/forms/model_forms.py:636 -#: netbox/ipam/tables/ip.py:245 netbox/ipam/tables/vlans.py:118 -#: netbox/ipam/tables/vlans.py:221 +#: netbox/ipam/forms/bulk_edit.py:218 netbox/ipam/forms/bulk_edit.py:285 +#: netbox/ipam/forms/bulk_edit.py:484 netbox/ipam/forms/bulk_import.py:171 +#: netbox/ipam/forms/bulk_import.py:429 netbox/ipam/forms/filtersets.py:153 +#: netbox/ipam/forms/filtersets.py:231 netbox/ipam/forms/filtersets.py:432 +#: netbox/ipam/forms/filtersets.py:489 netbox/ipam/forms/model_forms.py:205 +#: netbox/ipam/forms/model_forms.py:636 netbox/ipam/tables/ip.py:245 +#: netbox/ipam/tables/vlans.py:118 netbox/ipam/tables/vlans.py:221 #: netbox/templates/circuits/inc/circuit_termination_fields.html:6 #: netbox/templates/dcim/device.html:22 #: netbox/templates/dcim/inc/cable_termination.html:8 @@ -415,13 +414,13 @@ msgstr "" #: netbox/extras/forms/bulk_edit.py:256 netbox/extras/forms/bulk_edit.py:274 #: netbox/extras/forms/bulk_edit.py:298 netbox/extras/forms/bulk_edit.py:312 #: netbox/extras/forms/bulk_edit.py:339 netbox/extras/tables/tables.py:79 -#: netbox/ipam/forms/bulk_edit.py:52 netbox/ipam/forms/bulk_edit.py:72 -#: netbox/ipam/forms/bulk_edit.py:92 netbox/ipam/forms/bulk_edit.py:116 -#: netbox/ipam/forms/bulk_edit.py:145 netbox/ipam/forms/bulk_edit.py:174 -#: netbox/ipam/forms/bulk_edit.py:193 netbox/ipam/forms/bulk_edit.py:275 -#: netbox/ipam/forms/bulk_edit.py:320 netbox/ipam/forms/bulk_edit.py:368 -#: netbox/ipam/forms/bulk_edit.py:411 netbox/ipam/forms/bulk_edit.py:427 -#: netbox/ipam/forms/bulk_edit.py:561 netbox/ipam/forms/bulk_edit.py:592 +#: netbox/ipam/forms/bulk_edit.py:53 netbox/ipam/forms/bulk_edit.py:73 +#: netbox/ipam/forms/bulk_edit.py:93 netbox/ipam/forms/bulk_edit.py:117 +#: netbox/ipam/forms/bulk_edit.py:146 netbox/ipam/forms/bulk_edit.py:175 +#: netbox/ipam/forms/bulk_edit.py:194 netbox/ipam/forms/bulk_edit.py:276 +#: netbox/ipam/forms/bulk_edit.py:321 netbox/ipam/forms/bulk_edit.py:369 +#: netbox/ipam/forms/bulk_edit.py:412 netbox/ipam/forms/bulk_edit.py:428 +#: netbox/ipam/forms/bulk_edit.py:516 netbox/ipam/forms/bulk_edit.py:547 #: netbox/templates/account/token.html:35 #: netbox/templates/circuits/circuit.html:59 #: netbox/templates/circuits/circuitgroup.html:32 @@ -654,8 +653,8 @@ msgstr "" #: netbox/dcim/tables/devices.py:1063 netbox/dcim/tables/modules.py:69 #: netbox/dcim/tables/power.py:74 netbox/dcim/tables/racks.py:126 #: netbox/dcim/tables/sites.py:82 netbox/dcim/tables/sites.py:138 -#: netbox/ipam/forms/bulk_edit.py:255 netbox/ipam/forms/bulk_edit.py:305 -#: netbox/ipam/forms/bulk_edit.py:353 netbox/ipam/forms/bulk_edit.py:551 +#: netbox/ipam/forms/bulk_edit.py:256 netbox/ipam/forms/bulk_edit.py:306 +#: netbox/ipam/forms/bulk_edit.py:354 netbox/ipam/forms/bulk_edit.py:506 #: netbox/ipam/forms/bulk_import.py:192 netbox/ipam/forms/bulk_import.py:257 #: netbox/ipam/forms/bulk_import.py:293 netbox/ipam/forms/bulk_import.py:450 #: netbox/ipam/forms/filtersets.py:210 netbox/ipam/forms/filtersets.py:281 @@ -720,11 +719,11 @@ msgstr "" #: netbox/dcim/forms/filtersets.py:978 netbox/dcim/forms/filtersets.py:1008 #: netbox/dcim/forms/filtersets.py:1130 netbox/dcim/tables/power.py:88 #: netbox/extras/filtersets.py:612 netbox/extras/forms/filtersets.py:323 -#: netbox/extras/forms/filtersets.py:396 netbox/ipam/forms/bulk_edit.py:42 -#: netbox/ipam/forms/bulk_edit.py:67 netbox/ipam/forms/bulk_edit.py:111 -#: netbox/ipam/forms/bulk_edit.py:140 netbox/ipam/forms/bulk_edit.py:165 -#: netbox/ipam/forms/bulk_edit.py:250 netbox/ipam/forms/bulk_edit.py:300 -#: netbox/ipam/forms/bulk_edit.py:348 netbox/ipam/forms/bulk_edit.py:546 +#: netbox/extras/forms/filtersets.py:396 netbox/ipam/forms/bulk_edit.py:43 +#: netbox/ipam/forms/bulk_edit.py:68 netbox/ipam/forms/bulk_edit.py:112 +#: netbox/ipam/forms/bulk_edit.py:141 netbox/ipam/forms/bulk_edit.py:166 +#: netbox/ipam/forms/bulk_edit.py:251 netbox/ipam/forms/bulk_edit.py:301 +#: netbox/ipam/forms/bulk_edit.py:349 netbox/ipam/forms/bulk_edit.py:501 #: netbox/ipam/forms/bulk_import.py:38 netbox/ipam/forms/bulk_import.py:67 #: netbox/ipam/forms/bulk_import.py:95 netbox/ipam/forms/bulk_import.py:115 #: netbox/ipam/forms/bulk_import.py:135 netbox/ipam/forms/bulk_import.py:164 @@ -950,9 +949,9 @@ msgstr "" #: netbox/dcim/tables/devices.py:157 netbox/dcim/tables/power.py:30 #: netbox/dcim/tables/racks.py:118 netbox/dcim/tables/racks.py:212 #: netbox/extras/filtersets.py:536 netbox/extras/forms/filtersets.py:320 -#: netbox/ipam/forms/bulk_edit.py:460 netbox/ipam/forms/filtersets.py:173 -#: netbox/ipam/forms/filtersets.py:414 netbox/ipam/forms/filtersets.py:437 -#: netbox/ipam/forms/filtersets.py:467 netbox/templates/dcim/device.html:26 +#: netbox/ipam/forms/filtersets.py:173 netbox/ipam/forms/filtersets.py:414 +#: netbox/ipam/forms/filtersets.py:437 netbox/ipam/forms/filtersets.py:467 +#: netbox/templates/dcim/device.html:26 #: netbox/templates/dcim/device_edit.html:30 #: netbox/templates/dcim/inc/cable_termination.html:12 #: netbox/templates/dcim/location.html:26 @@ -992,11 +991,10 @@ msgstr "" #: netbox/dcim/forms/filtersets.py:1600 netbox/dcim/forms/filtersets.py:1624 #: netbox/dcim/forms/model_forms.py:112 netbox/dcim/forms/object_create.py:375 #: netbox/dcim/tables/devices.py:143 netbox/dcim/tables/sites.py:85 -#: netbox/extras/filtersets.py:503 netbox/ipam/forms/bulk_edit.py:207 -#: netbox/ipam/forms/bulk_edit.py:441 netbox/ipam/forms/bulk_edit.py:519 -#: netbox/ipam/forms/filtersets.py:217 netbox/ipam/forms/filtersets.py:422 -#: netbox/ipam/forms/filtersets.py:475 netbox/templates/dcim/device.html:18 -#: netbox/templates/dcim/rack.html:16 +#: netbox/extras/filtersets.py:503 netbox/ipam/forms/bulk_edit.py:208 +#: netbox/ipam/forms/bulk_edit.py:474 netbox/ipam/forms/filtersets.py:217 +#: netbox/ipam/forms/filtersets.py:422 netbox/ipam/forms/filtersets.py:475 +#: netbox/templates/dcim/device.html:18 netbox/templates/dcim/rack.html:16 #: netbox/templates/dcim/rackreservation.html:22 #: netbox/templates/dcim/region.html:26 netbox/templates/dcim/site.html:31 #: netbox/templates/ipam/prefix.html:49 netbox/templates/ipam/vlan.html:16 @@ -1016,9 +1014,9 @@ msgstr "" #: netbox/dcim/forms/filtersets.py:744 netbox/dcim/forms/filtersets.py:988 #: netbox/dcim/forms/filtersets.py:1102 netbox/dcim/forms/filtersets.py:1141 #: netbox/dcim/forms/object_create.py:383 netbox/extras/filtersets.py:520 -#: netbox/ipam/forms/bulk_edit.py:212 netbox/ipam/forms/bulk_edit.py:448 -#: netbox/ipam/forms/bulk_edit.py:524 netbox/ipam/forms/filtersets.py:222 -#: netbox/ipam/forms/filtersets.py:427 netbox/ipam/forms/filtersets.py:480 +#: netbox/ipam/forms/bulk_edit.py:213 netbox/ipam/forms/bulk_edit.py:479 +#: netbox/ipam/forms/filtersets.py:222 netbox/ipam/forms/filtersets.py:427 +#: netbox/ipam/forms/filtersets.py:480 #: netbox/virtualization/forms/bulk_edit.py:86 #: netbox/virtualization/forms/filtersets.py:69 #: netbox/virtualization/forms/filtersets.py:138 @@ -1083,7 +1081,7 @@ msgstr "" #: netbox/circuits/tables/circuits.py:155 netbox/dcim/forms/bulk_edit.py:117 #: netbox/dcim/forms/bulk_import.py:100 netbox/dcim/forms/model_forms.py:117 #: netbox/dcim/tables/sites.py:89 netbox/extras/forms/filtersets.py:480 -#: netbox/ipam/filtersets.py:999 netbox/ipam/forms/bulk_edit.py:538 +#: netbox/ipam/filtersets.py:999 netbox/ipam/forms/bulk_edit.py:493 #: netbox/ipam/forms/bulk_import.py:436 netbox/ipam/forms/model_forms.py:528 #: netbox/ipam/tables/fhrp.py:67 netbox/ipam/tables/vlans.py:122 #: netbox/ipam/tables/vlans.py:226 @@ -1386,7 +1384,7 @@ msgstr "" #: netbox/extras/tables/tables.py:361 netbox/extras/tables/tables.py:378 #: netbox/extras/tables/tables.py:401 netbox/extras/tables/tables.py:439 #: netbox/extras/tables/tables.py:491 netbox/extras/tables/tables.py:514 -#: netbox/ipam/forms/bulk_edit.py:406 netbox/ipam/forms/filtersets.py:386 +#: netbox/ipam/forms/bulk_edit.py:407 netbox/ipam/forms/filtersets.py:386 #: netbox/ipam/tables/asn.py:16 netbox/ipam/tables/ip.py:85 #: netbox/ipam/tables/ip.py:160 netbox/ipam/tables/services.py:15 #: netbox/ipam/tables/services.py:40 netbox/ipam/tables/vlans.py:64 @@ -3237,8 +3235,8 @@ msgstr "" #: netbox/dcim/tables/devices.py:626 netbox/ipam/filtersets.py:316 #: netbox/ipam/filtersets.py:327 netbox/ipam/filtersets.py:483 #: netbox/ipam/filtersets.py:584 netbox/ipam/filtersets.py:595 -#: netbox/ipam/forms/bulk_edit.py:241 netbox/ipam/forms/bulk_edit.py:297 -#: netbox/ipam/forms/bulk_edit.py:339 netbox/ipam/forms/bulk_import.py:157 +#: netbox/ipam/forms/bulk_edit.py:242 netbox/ipam/forms/bulk_edit.py:298 +#: netbox/ipam/forms/bulk_edit.py:340 netbox/ipam/forms/bulk_import.py:157 #: netbox/ipam/forms/bulk_import.py:243 netbox/ipam/forms/bulk_import.py:279 #: netbox/ipam/forms/filtersets.py:67 netbox/ipam/forms/filtersets.py:172 #: netbox/ipam/forms/filtersets.py:309 netbox/ipam/forms/model_forms.py:62 @@ -3501,7 +3499,7 @@ msgstr "" #: netbox/extras/forms/bulk_edit.py:53 netbox/extras/forms/bulk_edit.py:133 #: netbox/extras/forms/bulk_edit.py:183 netbox/extras/forms/bulk_edit.py:288 #: netbox/extras/forms/filtersets.py:64 netbox/extras/forms/filtersets.py:156 -#: netbox/extras/forms/filtersets.py:243 netbox/ipam/forms/bulk_edit.py:189 +#: netbox/extras/forms/filtersets.py:243 netbox/ipam/forms/bulk_edit.py:190 #: netbox/templates/dcim/device.html:324 #: netbox/templates/dcim/devicetype.html:49 #: netbox/templates/dcim/moduletype.html:34 netbox/templates/dcim/rack.html:81 @@ -3559,8 +3557,8 @@ msgstr "" #: netbox/dcim/tables/devices.py:169 netbox/dcim/tables/devices.py:809 #: netbox/dcim/tables/devices.py:937 netbox/dcim/tables/devicetypes.py:304 #: netbox/dcim/tables/racks.py:129 netbox/extras/filtersets.py:552 -#: netbox/ipam/forms/bulk_edit.py:260 netbox/ipam/forms/bulk_edit.py:310 -#: netbox/ipam/forms/bulk_edit.py:358 netbox/ipam/forms/bulk_edit.py:556 +#: netbox/ipam/forms/bulk_edit.py:261 netbox/ipam/forms/bulk_edit.py:311 +#: netbox/ipam/forms/bulk_edit.py:359 netbox/ipam/forms/bulk_edit.py:511 #: netbox/ipam/forms/bulk_import.py:197 netbox/ipam/forms/bulk_import.py:262 #: netbox/ipam/forms/bulk_import.py:298 netbox/ipam/forms/bulk_import.py:455 #: netbox/ipam/forms/filtersets.py:237 netbox/ipam/forms/filtersets.py:289 @@ -3630,8 +3628,8 @@ msgstr "" #: netbox/dcim/forms/model_forms.py:306 netbox/dcim/forms/model_forms.py:479 #: netbox/dcim/forms/model_forms.py:755 netbox/dcim/forms/object_create.py:400 #: netbox/dcim/tables/devices.py:161 netbox/dcim/tables/power.py:70 -#: netbox/dcim/tables/racks.py:217 netbox/ipam/forms/bulk_edit.py:468 -#: netbox/ipam/forms/filtersets.py:442 netbox/templates/dcim/device.html:30 +#: netbox/dcim/tables/racks.py:217 netbox/ipam/forms/filtersets.py:442 +#: netbox/templates/dcim/device.html:30 #: netbox/templates/dcim/inc/cable_termination.html:16 #: netbox/templates/dcim/powerfeed.html:28 netbox/templates/dcim/rack.html:13 #: netbox/templates/dcim/rack/base.html:4 @@ -4012,8 +4010,8 @@ msgid "Wireless LANs" msgstr "" #: netbox/dcim/forms/bulk_edit.py:1508 netbox/dcim/forms/filtersets.py:1328 -#: netbox/dcim/forms/model_forms.py:1390 netbox/ipam/forms/bulk_edit.py:285 -#: netbox/ipam/forms/bulk_edit.py:377 netbox/ipam/forms/filtersets.py:169 +#: netbox/dcim/forms/model_forms.py:1390 netbox/ipam/forms/bulk_edit.py:286 +#: netbox/ipam/forms/bulk_edit.py:378 netbox/ipam/forms/filtersets.py:169 #: netbox/templates/dcim/interface.html:122 #: netbox/templates/ipam/prefix.html:95 #: netbox/virtualization/forms/model_forms.py:349 @@ -4196,9 +4194,8 @@ msgstr "" #: netbox/dcim/forms/bulk_import.py:517 netbox/dcim/forms/filtersets.py:728 #: netbox/dcim/forms/filtersets.py:898 netbox/dcim/forms/model_forms.py:522 #: netbox/dcim/tables/devices.py:202 netbox/extras/filtersets.py:596 -#: netbox/extras/forms/filtersets.py:322 netbox/ipam/forms/bulk_edit.py:482 -#: netbox/ipam/forms/filtersets.py:415 netbox/ipam/forms/filtersets.py:447 -#: netbox/templates/dcim/device.html:239 +#: netbox/extras/forms/filtersets.py:322 netbox/ipam/forms/filtersets.py:415 +#: netbox/ipam/forms/filtersets.py:447 netbox/templates/dcim/device.html:239 #: netbox/templates/virtualization/cluster.html:10 #: netbox/templates/virtualization/virtualmachine.html:92 #: netbox/templates/virtualization/virtualmachine.html:101 @@ -4644,7 +4641,7 @@ msgid "Has virtual device contexts" msgstr "" #: netbox/dcim/forms/filtersets.py:903 netbox/extras/filtersets.py:585 -#: netbox/ipam/forms/bulk_edit.py:479 netbox/ipam/forms/filtersets.py:452 +#: netbox/ipam/forms/filtersets.py:452 #: netbox/virtualization/forms/filtersets.py:112 msgid "Cluster group" msgstr "" @@ -6847,7 +6844,7 @@ msgstr "" #: netbox/dcim/tables/sites.py:30 netbox/dcim/tables/sites.py:57 #: netbox/extras/forms/filtersets.py:351 netbox/extras/forms/model_forms.py:517 -#: netbox/ipam/forms/bulk_edit.py:130 netbox/ipam/forms/model_forms.py:153 +#: netbox/ipam/forms/bulk_edit.py:131 netbox/ipam/forms/model_forms.py:153 #: netbox/ipam/tables/asn.py:66 netbox/netbox/navigation/menu.py:15 #: netbox/netbox/navigation/menu.py:17 msgid "Sites" @@ -9009,7 +9006,7 @@ msgid "Prefixes which contain this prefix or IP" msgstr "" #: netbox/ipam/filtersets.py:304 netbox/ipam/filtersets.py:572 -#: netbox/ipam/forms/bulk_edit.py:342 netbox/ipam/forms/filtersets.py:196 +#: netbox/ipam/forms/bulk_edit.py:343 netbox/ipam/forms/filtersets.py:196 #: netbox/ipam/forms/filtersets.py:331 msgid "Mask length" msgstr "" @@ -9135,16 +9132,16 @@ msgstr "" msgid "Address pattern" msgstr "" -#: netbox/ipam/forms/bulk_edit.py:49 +#: netbox/ipam/forms/bulk_edit.py:50 msgid "Enforce unique space" msgstr "" -#: netbox/ipam/forms/bulk_edit.py:87 +#: netbox/ipam/forms/bulk_edit.py:88 msgid "Is private" msgstr "" -#: netbox/ipam/forms/bulk_edit.py:108 netbox/ipam/forms/bulk_edit.py:137 -#: netbox/ipam/forms/bulk_edit.py:162 netbox/ipam/forms/bulk_import.py:89 +#: netbox/ipam/forms/bulk_edit.py:109 netbox/ipam/forms/bulk_edit.py:138 +#: netbox/ipam/forms/bulk_edit.py:163 netbox/ipam/forms/bulk_import.py:89 #: netbox/ipam/forms/bulk_import.py:109 netbox/ipam/forms/bulk_import.py:129 #: netbox/ipam/forms/filtersets.py:110 netbox/ipam/forms/filtersets.py:125 #: netbox/ipam/forms/filtersets.py:148 netbox/ipam/forms/model_forms.py:96 @@ -9158,18 +9155,18 @@ msgstr "" msgid "RIR" msgstr "" -#: netbox/ipam/forms/bulk_edit.py:170 +#: netbox/ipam/forms/bulk_edit.py:171 msgid "Date added" msgstr "" -#: netbox/ipam/forms/bulk_edit.py:228 netbox/ipam/forms/model_forms.py:586 +#: netbox/ipam/forms/bulk_edit.py:229 netbox/ipam/forms/model_forms.py:586 #: netbox/ipam/forms/model_forms.py:633 netbox/ipam/tables/ip.py:251 #: netbox/templates/ipam/vlan_edit.html:37 #: netbox/templates/ipam/vlangroup.html:27 msgid "VLAN Group" msgstr "" -#: netbox/ipam/forms/bulk_edit.py:233 netbox/ipam/forms/bulk_import.py:185 +#: netbox/ipam/forms/bulk_edit.py:234 netbox/ipam/forms/bulk_import.py:185 #: netbox/ipam/forms/filtersets.py:256 netbox/ipam/forms/model_forms.py:218 #: netbox/ipam/models/vlans.py:234 netbox/ipam/tables/ip.py:255 #: netbox/templates/ipam/prefix.html:60 netbox/templates/ipam/vlan.html:12 @@ -9184,30 +9181,30 @@ msgstr "" msgid "VLAN" msgstr "" -#: netbox/ipam/forms/bulk_edit.py:244 +#: netbox/ipam/forms/bulk_edit.py:245 msgid "Prefix length" msgstr "" -#: netbox/ipam/forms/bulk_edit.py:267 netbox/ipam/forms/filtersets.py:241 +#: netbox/ipam/forms/bulk_edit.py:268 netbox/ipam/forms/filtersets.py:241 #: netbox/templates/ipam/prefix.html:85 msgid "Is a pool" msgstr "" -#: netbox/ipam/forms/bulk_edit.py:272 netbox/ipam/forms/bulk_edit.py:317 +#: netbox/ipam/forms/bulk_edit.py:273 netbox/ipam/forms/bulk_edit.py:318 #: netbox/ipam/forms/filtersets.py:248 netbox/ipam/forms/filtersets.py:293 #: netbox/ipam/models/ip.py:272 netbox/ipam/models/ip.py:539 msgid "Treat as fully utilized" msgstr "" -#: netbox/ipam/forms/bulk_edit.py:286 netbox/ipam/forms/filtersets.py:171 +#: netbox/ipam/forms/bulk_edit.py:287 netbox/ipam/forms/filtersets.py:171 msgid "VLAN Assignment" msgstr "" -#: netbox/ipam/forms/bulk_edit.py:365 netbox/ipam/models/ip.py:772 +#: netbox/ipam/forms/bulk_edit.py:366 netbox/ipam/models/ip.py:772 msgid "DNS name" msgstr "" -#: netbox/ipam/forms/bulk_edit.py:386 netbox/ipam/forms/bulk_edit.py:579 +#: netbox/ipam/forms/bulk_edit.py:387 netbox/ipam/forms/bulk_edit.py:534 #: netbox/ipam/forms/bulk_import.py:394 netbox/ipam/forms/bulk_import.py:469 #: netbox/ipam/forms/bulk_import.py:495 netbox/ipam/forms/filtersets.py:390 #: netbox/ipam/forms/filtersets.py:530 netbox/templates/ipam/fhrpgroup.html:22 @@ -9217,12 +9214,12 @@ msgstr "" msgid "Protocol" msgstr "" -#: netbox/ipam/forms/bulk_edit.py:393 netbox/ipam/forms/filtersets.py:397 +#: netbox/ipam/forms/bulk_edit.py:394 netbox/ipam/forms/filtersets.py:397 #: netbox/ipam/tables/fhrp.py:22 netbox/templates/ipam/fhrpgroup.html:26 msgid "Group ID" msgstr "" -#: netbox/ipam/forms/bulk_edit.py:398 netbox/ipam/forms/filtersets.py:402 +#: netbox/ipam/forms/bulk_edit.py:399 netbox/ipam/forms/filtersets.py:402 #: netbox/wireless/forms/bulk_edit.py:68 netbox/wireless/forms/bulk_edit.py:115 #: netbox/wireless/forms/bulk_import.py:62 #: netbox/wireless/forms/bulk_import.py:65 @@ -9233,11 +9230,11 @@ msgstr "" msgid "Authentication type" msgstr "" -#: netbox/ipam/forms/bulk_edit.py:403 netbox/ipam/forms/filtersets.py:406 +#: netbox/ipam/forms/bulk_edit.py:404 netbox/ipam/forms/filtersets.py:406 msgid "Authentication key" msgstr "" -#: netbox/ipam/forms/bulk_edit.py:420 netbox/ipam/forms/filtersets.py:383 +#: netbox/ipam/forms/bulk_edit.py:421 netbox/ipam/forms/filtersets.py:383 #: netbox/ipam/forms/model_forms.py:474 netbox/netbox/navigation/menu.py:386 #: netbox/templates/ipam/fhrpgroup.html:49 #: netbox/templates/wireless/inc/authentication_attrs.html:5 @@ -9249,25 +9246,25 @@ msgstr "" msgid "Authentication" msgstr "" -#: netbox/ipam/forms/bulk_edit.py:432 netbox/ipam/forms/model_forms.py:575 +#: netbox/ipam/forms/bulk_edit.py:436 netbox/ipam/forms/model_forms.py:575 msgid "Scope type" msgstr "" -#: netbox/ipam/forms/bulk_edit.py:490 netbox/ipam/models/vlans.py:60 -msgid "VLAN ID ranges" -msgstr "" - -#: netbox/ipam/forms/bulk_edit.py:498 netbox/ipam/forms/model_forms.py:578 -#: netbox/ipam/forms/model_forms.py:588 netbox/ipam/tables/vlans.py:71 -#: netbox/templates/ipam/vlangroup.html:38 +#: netbox/ipam/forms/bulk_edit.py:439 netbox/ipam/forms/bulk_edit.py:453 +#: netbox/ipam/forms/model_forms.py:578 netbox/ipam/forms/model_forms.py:588 +#: netbox/ipam/tables/vlans.py:71 netbox/templates/ipam/vlangroup.html:38 msgid "Scope" msgstr "" -#: netbox/ipam/forms/bulk_edit.py:570 +#: netbox/ipam/forms/bulk_edit.py:446 netbox/ipam/models/vlans.py:60 +msgid "VLAN ID ranges" +msgstr "" + +#: netbox/ipam/forms/bulk_edit.py:525 msgid "Site & Group" msgstr "" -#: netbox/ipam/forms/bulk_edit.py:584 netbox/ipam/forms/model_forms.py:659 +#: netbox/ipam/forms/bulk_edit.py:539 netbox/ipam/forms/model_forms.py:659 #: netbox/ipam/forms/model_forms.py:691 netbox/ipam/tables/services.py:19 #: netbox/ipam/tables/services.py:49 netbox/templates/ipam/service.html:36 #: netbox/templates/ipam/servicetemplate.html:23 @@ -11088,19 +11085,19 @@ msgstr "" msgid "Row {i}: Object with ID {id} does not exist" msgstr "" -#: netbox/netbox/views/generic/bulk_views.py:699 -#: netbox/netbox/views/generic/bulk_views.py:897 -#: netbox/netbox/views/generic/bulk_views.py:945 +#: netbox/netbox/views/generic/bulk_views.py:702 +#: netbox/netbox/views/generic/bulk_views.py:900 +#: netbox/netbox/views/generic/bulk_views.py:948 #, python-brace-format msgid "No {object_type} were selected." msgstr "" -#: netbox/netbox/views/generic/bulk_views.py:779 +#: netbox/netbox/views/generic/bulk_views.py:782 #, python-brace-format msgid "Renamed {count} {object_type}" msgstr "" -#: netbox/netbox/views/generic/bulk_views.py:875 +#: netbox/netbox/views/generic/bulk_views.py:878 #, python-brace-format msgid "Deleted {count} {object_type}" msgstr "" From e6f41f73f7a643b44693017512b6b6fa51c61b09 Mon Sep 17 00:00:00 2001 From: Ian Bishop <151477169+ianb-mp@users.noreply.github.com> Date: Fri, 18 Oct 2024 23:36:29 +1000 Subject: [PATCH 14/35] Add instructions for authenticating using Google oauth2 (#17527) * Add instructions for authenticating using Google oauth2 Signed-off-by: Ian Bishop <151477169+ianb-mp@users.noreply.github.com> * Add navigation link * Misc cleanup --------- Signed-off-by: Ian Bishop <151477169+ianb-mp@users.noreply.github.com> Co-authored-by: Jeremy Stretch --- docs/administration/authentication/google.md | 52 ++++++++++++++++++ .../authentication/google_login_portal.png | Bin 0 -> 28935 bytes .../authentication/netbox_google_login.png | Bin 0 -> 20774 bytes mkdocs.yml | 1 + 4 files changed, 53 insertions(+) create mode 100644 docs/administration/authentication/google.md create mode 100644 docs/media/authentication/google_login_portal.png create mode 100644 docs/media/authentication/netbox_google_login.png diff --git a/docs/administration/authentication/google.md b/docs/administration/authentication/google.md new file mode 100644 index 000000000..456f3a457 --- /dev/null +++ b/docs/administration/authentication/google.md @@ -0,0 +1,52 @@ +# Google + +This guide explains how to configure single sign-on (SSO) support for NetBox using [Google OAuth2](https://developers.google.com/identity/protocols/oauth2/web-server) as an authentication backend. + +## Google OAuth2 Configuration + +1. Log into [console.cloud.google.com](https://console.cloud.google.com/). +2. Create new project for NetBox. +3. Under "APIs and Services" click "OAuth consent screen" and enter the required information. +4. Under "Credentials," click "Create Credentials" and select "OAuth 2.0 Client ID." Select type "Web application." + - "Authorized JavaScript origins" should follow the format `http[s]://[:]` + - "Authorized redirect URIs" should follow the format `http[s]://[:]/oauth/complete/google-oauth2/` +5. Copy the "Client ID" and "Client Secret" values somewhere convenient. + +!!! note + Google requires the NetBox hostname to use a public top-level-domain (e.g. `.com`, `.net`). The use of IP addresses is not permitted (except `127.0.0.1`). + +For more information, consult [Google's documentation](https://developers.google.com/identity/protocols/oauth2/web-server#prerequisites). + +## NetBox Configuration + +### 1. Enter configuration parameters + +Enter the following configuration parameters in `configuration.py`, substituting your own values: + +```python +REMOTE_AUTH_BACKEND = 'social_core.backends.google.GoogleOAuth2' +SOCIAL_AUTH_GOOGLE_OAUTH2_KEY = '{CLIENT_ID}' +SOCIAL_AUTH_GOOGLE_OAUTH2_SECRET = '{CLIENT_SECRET}' +``` + +### 2. Restart NetBox + +Restart the NetBox services so that the new configuration takes effect. This is typically done with the command below: + +```no-highlight +sudo systemctl restart netbox +``` + +## Testing + +Log out of NetBox if already authenticated, and click the "Log In" button at top right. You should see the normal login form as well as an option to authenticate using Google. Click that link. + +![NetBox Google login form](../../media/authentication/netbox_google_login.png) + +You should be redirected to Google's authentication portal. Enter the username/email and password of your test account to continue. You may also be prompted to grant this application access to your account. + +![NetBox Google login form](../../media/authentication/google_login_portal.png) + +If successful, you will be redirected back to the NetBox UI, and will be logged in as the Google user. You can verify this by navigating to your profile (using the button at top right). + +This user account has been replicated locally to NetBox, and can now be assigned groups and permissions. diff --git a/docs/media/authentication/google_login_portal.png b/docs/media/authentication/google_login_portal.png new file mode 100644 index 0000000000000000000000000000000000000000..55eefd872b34e857c84b878dbec5780ba6db8f07 GIT binary patch literal 28935 zcmeFZWl&sO7%j-XxpCn}APK<|EO-I|g2xCn8l-Vaf_rd>xZr6Z1nmT;8))1mMxY@$ zjk~)yjWgfjzBj+$Ox4tzsT!(oT>{PNbN2pZeQT}VA08>oo<2c$f{KdjG)nG)8Wq() zQB+iaZ5=xTKS{#Gxx@dCKa=oW8>$bxKGF0`8*m5`c47;e<=dq#3m{&yBFwP?L!^jSO^HX`65FYwD z?e*&i)%&X)d{S47QptB%OayAXiC3pXSY)0cFQXc}5QcKR#YW?Kd$5i13ieA^agubc z&TGY}p~nKm>h8OI%E2032N4na?zT8P%}dr&xtk8l{vVVc-Fy1fPG$DRo!aobS$x5D zlXIVY+YYWtWqBhi$-5CXIGkuaN<(uV+pE6S#A1>gmKXMFrR=t9$w4@M^I^y4CF;l0 z(_B7ZBT#Dd>)}1uT5J=_Zu8jZgUb{fMJZzRq&UW#WGj?hha;3;y?O<|jUAi1Q~KW( z{9Xivy`pD`b>R?GK7M?T6dsXgBL61w73#2l-0}Y|vJo;Y?zhftlKZ{oJ8K?ZuzvL5 z+8ZGPQLKV@)jwS`k^lbU`9bhMKl-Ep3-QGlPKAF3lD{1pJb0nR?FGAIXGV`jEquf( zRURya`_OH%&&9L)w9F=3@8FU2W8Fm$UhDpE$!*cvDE)8$8dms?xn0dUxXYot4}~9} zx*Eo+by0Tx$wB4~{beq|X8KQU>`^Hb#~V@MO;IBM9$X=GMO3`*g?zZ8$IyNDi<3w9 z*baV7MPcTK7w@5+91{HhOVpi!3}z?BsZe4!@kPadkNW&@7^=^b?>ys_ZCl>x>GOU& zX(Pf}T661}Y8v5+W_gOq^|i}6T#gwATFNf7DE5K0gNu)uHY%U-4^pU|x9rn8s2&sR ztd0R?-E8&0{rigza|Zd;e^j5eTz9%|pv&iTw01iEp^mHVfA>rNaqX$2*9l6*QDGBD zN9WLPp_3;{&YinJp0=pA?Ztd;TRH8e(%4iW;JfSmKvtI9sM5Pzz}4Hk{M`BT<745w zhaILRLtelBhmDnWtX4nwzP^5}B6}D;gAU~+@&+C<4>V#&M$*l4I}erF)wf)=7B=?Z zveAEgh&|Qw^jP0WH&4mld~cCUbCb#yVOx!FQG)Vv8U;3OcV=?A#N8kDVNIEIn7Ie8=gj(Q_7SSI3&e%2`6eU9Yroov zMxD6uXeT|)U$0Czr)uw74Tn`NIk82JRwIM{w)-8XV7laujg7Iwcia*gO}|65zP~)| z#CoGdq`i)h6I=5!QMSOTlh0+Y`EER$yoqODTdK2x*fk) zV?#^d%(4$Q;jDmZ`=KiWqL+LUS=q1q))#%URaSP~waAa1k+y7^)84!(s_Cn!+*A}{ z{N@BEFE7WM+cLeUCQ-J&x>{ymIGQKVD{!OCzY8Y|o%J`POqtAkhjCjfQbxKn6_5CT8 zaqTiYTxNN(M zQFkxCTx-5hJzZVM&$@5OI-N?whfSjAm#uJXQ;9tlZXsq(v8JmOFUS#vNL~^)Ri(bI zO}!!d7P^U1(q{djU6@e+?EZde;)MaV$%c=kY1kO^xEK4wEPh#H$&>M0hf*>$ljP1u z@aU*rgM=ra)eRc$`R#F{{DXo>Mw3m} z#8$%ieri=+BtKzk>6uczShW=@4v)uQyLN4@o)8o9`Ey!Y+I8FRQZ(F9^NT}ASyAF{ z^X+d=Uep+ad`sbQ(gmLp@RXaQSXPrhAd=k{8JlRujWhe~{Vfpuqll7q3& zjS(MI>%}~CYtjrhZ@Ln-SqgG`2wGsGcGe-Em@*aODv{G*tj&(LQ|SH z^sPHH+gglkG6$25+>t)G~exS+&9b98Lx}TyS+$? zuNa$|!M!o^Nwy42O_QgopUEz??Xhb9_QF3TL@RQk-+85-6EFJq-8*h6DMQoxaFpHl zXzkhg?lO+euJ7OP`WVe78VTEXG{lII@?@!9W?RviTf3`G1+Ked^SxC@NEW<&bJA2e zroeqz%hAoP6UssRY{5XZh+lm4ExQaF>8xGBy^0Wt7mKtoYvEo9uzCdMB_DuYixUxKCq@g{{E5+{^TX$ zpWZoh1u{pxoT083-i#O3I$j@{xkVyq8DZA8hX)H5i*_O2RVzwekWM9H*Vjy*?L-so zeslkfx9?WNj7?3Y$#Q9GKw}&k8R6L~E-69DmkJIV)Pyi~s^GOa_BS0!T-CpRO?54g zVv;WQR)+RbsxKOav&P+axTlq+uL?;AD}q!*lo}DkhQ^yI?J}H8fa(?}?Po}><$hcA z2Df3x=lC>DUee^VsphMw*7wu{T1^84T&Hz~%PzK)wQOgK3W z`^#X+Zm=@5-)nu!@maQfBv-PQ*Ltgn5r0Itjj~~i3n4Ikqa>;y4IuqtlH1ot=dhYBjIO>M^w1j*&jmjyNa@URCV`l7BA{e-+sS%ok^~b4+jSa zlw>*c#(1SOwqjK){vEsJ4`+Q1ja4OGCL0-0D21H`$9k+0=7Iyqy|ZV}Vv=_D^ZQ*W zx5dQ7el`tf!8>s5dn|ODlfChp0;>1}kW`y^EJ~ohAZgs;*QO#hn$_>O-|6l3#m<^U z>6Q%sz5d%h4Gl^V&dbZo@``8m`}?LM9h@Wc`#LR@KnZNFfX+sT#xfSPUl+SlQ50Z1Z=?@A&kKnNjj` za&iNC#6|4PHPqJpvEVi z%AntDZA)T$W9HLpf23B<`WSVFez&)(9TFKg7|>Iq6KY%+-~11m>v$VCWV{TKFKUv* zbo{!|JoEgJ?xXUL=pq)DzRVs^zLHF7zG@DpNS^TJneY^)Xp5f7HkYBHyA=Zj>aTDv5x$)=65$rIXlC}fY!oNvqLB~n z;JWI)&Mbqr`_z)*`ZvQ{jU&ST&TBGn(6BW!+8uoU;&P=cAzrdzIZ{bC$1zzsULrkO z$a)6)Ku?a7xg*ojqeq48`m~X1nOGC7S{B*M$;YQDouPg8;>C-kOm&WQmBfee($oP) zDMgpr4$}I(_ys@(>-Q+EUf~Lr@r9$xgL4bMGvXcjf8A zwmnn7KAi63JYt#I&wylan_Js=ZFUMYuBdPfoHP|nT$$j3h(D{0qVy1)AHg*s{K)z znccRIFTT4P1l0m7G(4|tB)?H%>8e3pNoood7Tw|@1xfwkCvg%k^3b;1g5$)Y^6(aH znHzDSR``qzv4LCKjg5`SJ?&;ceS`E_;&~1tG(61OfcPTLE=~+VGPK^C$&Im+i4!W) z&@R>^ScPm`HSQ16BU?PH|M<%cDHG3eg_ZZPv$L~e{Br;Jn@p^qAw#cQ^P7N+LdFw{ zw*7@l1wKBcA{C~x_$$Z)Qk8snUUhYz5IJ8OQW9ejcsleFVg1VXbn23yNC;n8Ra&9+ z?nm!GY&P+Z%VsYP_u217{@AOq^&txc>-Hr+|C-)c>Y|{PWr+STQXM9OEhL#!;`>+D zcpyHkprhLLBoWn9ExPpVXS>bgZ{B*>_l!e8?F@TZwJ$1)VG{0pWohYA%QYFbc{g&8 zkf@kg+Gp9DF(EZj9$Uv1xU>pmWuCe1{BmFrcU5HQag(#N@636{YB^4kPV%gPQQ+|5 z!|94q0-A0o4+gZc!0h+!S_$9I)sG9*kELDYrZlTm`F!ki=3FVo*?Y_SFj}SXjbE7= ze#u6I{rttLh+w5UbSCq*o7$VjHMG=j8MbX-NSHQM4uuvye3Di%PX(r!6vY^JSy@@~ zREI&!%@$p9n+nExkng*^t*C+7@AQqOpVRBBJWs?W$`KGQHPGR9xv$W+%-68&q3=6i ztPHFP zwl#7|8&3GxWUBP&X^5m3#j0;ZC5&>&(b>7ZhABv`-%q&j;d-&tWU$m_@rUmgx+TiD z&Z}7Tea_Lij?|GmjIwNDyT_tV`Ku^CqU;KieVQvz#Zm0i-Gow9UBun~trLS@dZP5% zU3L_L0D73|yC*v`^#Io8me)mu#l+~@sT?$r$4Bq6Z$l6H=wV(oRl!n!f$>U|S=EWd z5<)qiA_csoG0B|=ucOil2_^czR@9l&)hO;b%G9xL&5=Ly!&j!drmnwRiROemE?!oq zfXCo|(&nr5@ZZ)k<;p`_FyxKYU(|JO1~R|Gmu7|4-fhznSj* z!+F5iK9ddzERGmAerrVCuyT`)v!z?8z9#U)2ja?278aH~Z$(+z8XhKfjJLOUuJ@n0 zXl^R1?jZU9i-c{T!GaX+*|T4Lw%4b3Hdjv^Ki)#ZYtdZ3oDMY>@4dMKUuxaCrsMPT zyc`_cek1@&v^9Oh2UU|Q>0Riw)cK1SQ-!QMEE=MPdP-gJ29x1jX!%1&&$QR`SMi95 z6y4fp6m@*SU%vEGrZ-B^T;PJ*LC!osN?kv`a30FZ7P-@ilpu5RG=o_C!gCbn<*Qdh zj$?A9ECW5DKC}Q_2{&FiNE?aw*HucW`%0W-f4-ycEOnVZ6?7hMK3zT43Q$P2hdls${3dL=uxIU5}@3uIwLZPS>sD!aAjm^(z z3YgZ_+6d1A7CLd_MCWr>{69GsmfB*hnGh}mPBh9=i-m16IHktj>;vQypp{pTpVQ0MhRas}{*5!L@)bUma`pb(sr|jh z{kfjNvb(R2ST%onQD{GyWmw^J!Bgfxtv(UeV1{aa$K;##*P$aO-QEW~@$FTRe2T>N>(}L+CjR7D8I?Mx zTeYWsoObZ>@hO16i4%8Ih9@rn$oZdUpv`Pj_eyGi#|dAUV_ZXb;`0Jdza*DSD=T(- z6`(BgcyXdm4u)SwGWNJ;|D!AT+*8JX6961r98G}%ZT95jMoLx@FQxN-%LgqnVd zBbQNSIS!3y4rMC=DNka?!iMkj(({b6NgC4gb#+J+XvkTl(v z3V@vR@R1`pxsTU8r@p>J_7WaY8+d@m_F@PxF~_m@e;+zTbKyb~vhR0Z{LQ7F5-1@4x?E>ooG?ym8~v)vH&z3`+AMvotEbJ&=8GYr2^XF*n8Qj!+nCOYY4Uj8q5oO76WqedU(pSnVw%7SzmORn-=GmIFr5 zvfn`g0d2_dtUEGpE#A70vhB%N1*53o=1W!PKh?M9b99LJ7 zOy1vJ^z$71C@bI`1i@tqtEyZ4>`AH5p!?`)@(hXl{tHc5O9pH*)^`iV zD^B&4F3HsO`QF*~bai5l@$bME1^x+i0%Z` zMhyj$U-Y(imM~V(JlO2d=a1g>XU{%a-f$cANrm9o%}2)A7-8FM#gH%G{Em1DjNcS@ zTgbPX?JslV`!i+);pI6Vp|#d+j!oWvvkh^AhL^XV4p=DlSWWSyEM!*tZ1=b*-?{Vr zEj3e?W~MF#WpkFb9O`Pr>*MF!3vGLyt1c*@NSD=96jkSY3JPF0a^9AG@L;OnZ4kY` zx7+3u#A>-d*NxPQjtreJyFnm6U8Y-QUL83tFY*|Z1OT5F8e>HhS!9FLVB(oRqKH`|a$wVd!P?qh ztm5r~GQ<13V0@s4<=V9i^z<1^OG~FDWg!)q`B_ZrjD_t7Y#ips$CEwDGvlo`7-02f z;f7r)A@AQmg2H1naCy=2ufP6+x}4eYm{;<}ix*b?r3J3@JrQ<;KsJ&W`t|b6n;Mr~ zSd+c%9z1xhTWFKMSh>x2fAryl2Num=?ut2#Jiz(z8C7OnH1ck-I`8hK7<~(6UqSwK z?%X*6Z##KG^TzzNy=*P`R+B$T%Ogh-@`nU^f0l&@=OXZQ=-Ug+BjVkXzOH_s9DjD_na^)+&ln<&1g@3q zpb3xsZTG{tqletnrwQoV_7W#^yy<1p`HkgK+8S8sFam)<&%ofaHl+$0NfR!FHHc0~ z9u-Y3SE1Sv8;!eS3Qx4g3hH|=9-CaJ_o&Zp})+!{u3`$xqG-( zrkhV+H!#=R2;<=nkc>qpPP`Vu3PMh|z$yYgc>Fv&lvH*8s-0YtF+9$rM~_0$UXzV+ zq+$nS8XoOO&<#mUemh?wZnO_y+TEsfLao3o?zm||uQ2r6b%~+TuYX)*5a~nEUDPpevEX&t?qw_V&{G z6z2O%^5}$Z(tvQ`WMzF|-Wc10VN=NPjSQgWRa>2CAZ0(fA2a$VTBzR4G_u=9v&gPr zBUzqCMn;Ac=uPP5?IF^879=;=UeAr;cjyXFGCh-YnY2R5lkN3++8RSc!x=w@TqxTA zc>!7y-}UwNg-iSSA{`UnBp0WwTj5z?=tCxrbrQR~yGI0V@X?&(=K5+``@3ggyG_{I z8hTrFisC1vM(i5BuCxHRiigFgwFN|?1($HNIU^fP-*S?_{PF5d=r}&B4I-K`UL35f z7Jok96#n_<)lur6Q?vu#t4f)M6+H(MT5S0%79lB&S$LlIZuTm!4PmK8IUQRv~PKAY=+a!(9q+c%YwgW$WTKH%o<}YNzw%#0BJIH z3+g5eWg#fhP@OU>YYF-#YJjeCCoOeKJjpnyI;qgTIf~Gkx@aRGazq2=nTbi#L_@<>x z04hjqp3P#27tQZpy768Mq5*85&T}Xu(g)8Lk9IaQi7Tno&`XKsVPLkW(Ytr=tmnFN zG)ev{lH_m%RK^%XLe^bdn}Z&dg8R$C@BRM({Y~yN$&%;d4D!7HK!N6AY8x1@x%|;U z#D8gd8AgD-)f8H)=Yb~!YPa?~cD0tP9<7GXb`taoE>}3AHE+f=KnwiZP*x*)`}WjN zYH1C~&`d^vp)u%QNa@VK*_oJ_Z2L>mfZ7$v3l6}lcR+K_{Bg<8&oAaL1P?XvS95D+ zX<(&%YHk_a|LcgLm597!46V#Ex=wbZl+@dLNRQ2VWDYvC)o0D?sa0gTBIwI&|bz zGmv$*M-wXaet*x~~0;t4S?^!OW9z&faG0M;6DRhg8LVuw*cEOIe_g|Z?#mXYsf zGT(wx8UuWZ0ugz5a5T?ctT|>aI9;M;)_Xi{|t!J=9`)by6eTp#gPZR7A=3iJ&gnn=%=9zqDU(v z?N=-7*t$XQz!xgViKQz<@=XUXg3t@FpPfky#LM&SirLzYpZZ59f0=WNz_eol+m?PL zRjqaQ*3)0d@av(Wp>wfxux!tauA0={Uzr)8M<&5|&zW@RZ3N~iMc>M?D1#iWUIslR zvoib472!X)d(6BG3kzFgVJbX5Fb)>@?fV84hI_T$0`~d-_P5W9>;e3PZvAB;K_Cc9 zNJ#K7VkJBrOO4|D`}^C!|42*zK!yRpQVmElkQ$z;b?;{Lg5jL}~wESE+GGTfAb;WP; zs*L}I9IGY-=QC5I4w!PHFI^gjfU`A5t)%%zby#g!K9Dapo&$3~fNxEq0eiwEa z4VbVkbEl*e;AqA@e=(OC?S27C-ogO|h%p71`!j)%3UAjJ`tiuz57P^Rst}QdhTl*h zz+YrYNC-SvB3v@zz#Yb?chwHiHPsA$e2RwNo4Td#8jKCY zCigwH4s+5|+uLRDHk?2>dWkg1v(Rvwn`*6*6M-5bChywUsdB6P`z0G{)cGQDs)-L% z*5ja{$6vNlCa1iC$e@bRsN!d)xL6v7+h$7x@b}izU(WoRPPBFarW5UZypU zty5DLyauHjfVp!#-er67YG;2l+pgGNV`XR8tuR;PV-UPnR?|dmQnSk`!n6{JM6N!h zU@Y<9OOg21;TQzHZE~uA+$P7IiP_7b)R{PPd)yHhcpWCb>g9^7>UB2&Ss{~GRH<^E zWEkM?3un)M)aO)##LqM+)0FgF%f6id`t4h*YJVEtoTqPC(}4r98mz1Ucxsu~^ULB= zI33FGO~*}6HkOlZCMl=u?Te%jI^Mbow8+)SA)`y)~ln~88S+905JIqncY{7 zh-J0cJeU zUxQ#M2@P3D;m6CqtshLlIl-+Y)7|iJcdza2)Pk|^vgcsWmQRY-a^zXj{~)lgZj8?% zv_gl;L;(Mc0zisRGK|$z0sNK41YsEnokd&CgwvM=9uO+GaHPfY#yD}Y zXG6~skWt}9NfFD+95jcu|N2~rqoygSNzH8Bm6;j|^eG7ROL|XQBaM910Sud2tWK44 znbN%e`0usx*0NmFdiMQT$H7GCWPme?B$Ck2&Jyp<-0B<ej z<`m4vou7F1*5KiK`|8IlC6!YNP%S=dw?(iM2Ib6QrRdC zudW86e8nHI*B96bVp9`8M~YP!ERY?k(5xX^gYv-1$w?i6d3zG-yi)9K)jYF?-0r3h z_BoKPl=pnDL_i;yFb4^*aUmx$F>$`kExo(Z0~;7toFwJ?tv+ zu~y%l`9YEiU<>r<4!R#8XX2Yq=bv^n+tRrS-bydMl#1G`MDQM;GgYO&j_6_;jSqY;0^kg>a&- ze!U9+05$DXNEE+OB@dHe*&gq7^l7JthTVOtp}Rlg6+N1VzQ4-sf$|!`Mssy|co^A4 z1ouu{9Gx41p@mdvMZ%p5$@8Mv;U9rYxJ8t{$Zyy;6RZj}R@0J;U0?B6n50?~GNET^ z?gDOrHo13e|F2nSa!^{W+ftN}=W(B_{m4R;_VV=9ed9oR8@vvYf@v5>U3OSBn{gwh zss7Az+6R2LZC26;wLh~5y3XUyl8+xhPFKEDKOzO3QgfX6uUFv@NxWx zI)}-;Q$H~70Z6xQDc13v!X|9?5;H;$)`fE>!o;RmK$+`Shn82jRt%g6@_;~1egQCz zx9-g9E+jfz`CsI>L;tlror;|yRPE(@1wv@d0$$CxScNXQmC#?|&wxL zX{w1CJ%+xU<73#xzLG>>6w~495jG|N+3*kN8XoYnR9{kSy|`0GPfyRYZh=WsiV>dv z_TrFh(>7pw&xt5=jVfOsC9ITWjb9Tm4G3Y1_A)eBu{1G+xmbykT$d`sZG7T4vU6ydgX$@zfSKpI>%|prH&C7q;LgNCN|cxI?lBVd zny?Ou1HRj~czOT#?~l1G4j8~#@Tb|34U=y_C{?kuQcvsFDCWCU3@o)pp1?J6mxaD= zTqaPyu4o?cNzMY5Q-BMd?#PTm6J3GM&TM45@%XuN?CmF=5|d3>0%VU~{^r(}u7-;< z48I4wmbcXIntH&u>q4COgTf;e5U52Gg(160*UTI+!n2kBA!sYNTxK+oeK$j^dD{3) z7rDrmdm+vRARB}awZ!@oy6Za_+Fa+lJ}!6w4bqWs+15I*RpIG^pDBP{>dE4&{PpVr zfB{aAX>A~>5P}0B{n!D1#$f(l4~Ka&Y+}$YCntyQ#^XEj_-N=e9*-Y?F~AzZ;tcsd z1cDoI6*5q04!>eWh7kC#?d9Q<7tUeUrKpacp>KvdoB%bncjsJ3ic$pT&FBt1T z{|;ubCU;G>B=QDtlV{CIsZectAi{7>qd+IN!&u7Oqc*VF(A%p=s92Ad(E~t(Fs8ti zq=>l!mEpNI^`sy?8@d{;mu5E}5>(R`#_0~Adu`XNuH3L4C>Qicyqm_quL}sY;{0Iff{GV4(ZB1c@a6H) zawtV70V!%uY0G{p5OwRxkAF5dH+5cL1$!HUb>rPfjsvVyh6M+w9vV8Duw9=;f#s3` zP+p2If;E6YETCX(e*XiYl0XdOzys%lCW%=72iaDLBm}rH@dm#m1VzFd&R6 z_%YIrYl3mwISH|`vCf+-ra)?I!2p|2R|BJIU$H~fiSr5(T*<(0>)GTog1P`T5)bKy z^bqJyE~^tt@Sv7p#uZ-t;wC)>L*;01X1TqgkjVzz64$%mpM7 zTMCqy%!PX*u%kW@gEPSDAO;$U<{3coV%{6iaP|B(L08NRIPLx;^~-?QwIh3ILmY!e zC263-3xDs;2~g=ZAe}0qHc03(gy+gD$m{BsJo$M1DH!zg}tv3xbSdL;rWT--msgkYhxp}RHubDGHm=TcxoJQsr&0a7TZ>zFt%Y?B6X zBWgZJOK~GmiD8ZV2 z+YKIfq`Uwf1>w7p8q%;Y9)A|09l$;6DD=1#arN{RJ0v!UHzwDBiw3$>L5Y^4JdAEF zfWtC``3pPYmO!1X)!=?n_lXye(BF{kml?|tq&pJ8ug0+b^&Mj?z{B~4ZYhJ*1H^apQ3RrK6gY>bVS2A`Po^OM2&7?HsmSyV$KU$0Pt=9>kMGi#s&G`(`V)Ig>Sq8C*I zmc5}l@{zf@c@Xd)gTC9D$b8W$>a(@h0)>Ixs=%MzTcn-y6iQ>f)b^ZU*^f&ABatEw z6l5eGZyoIuaDg)c>4;N8bdsL=!ZuyZ_V$a;+r5dv$oG^ur5X^btqBz=0E~N174`M^ zXZ9ddeDFycuJFwdbQ(bR0H-Gp1e_9u(gko6p{ihH%JKZuv07elA}}2!GSCe3JwjWT zO^|!636{Y8SpnoJ^~v+vncL$*p|ByK9asWcKfR7{pao8o$_UpulN0WTMRhC^uF3d! z38ntIuA84$Xw&_4)$XesFcQ+eSqLg0yM@rK)MHtR3ucjP;^Pi(3wS%|D2u(lJxs*P@$vE9bQesMp%T}F#0hXs0|pb|SJ2sy?;JG%raCh;()TLr{gnY$6afHaz?lk+bXTx$6xR+x4q_4PZ~v(0@TRMm+6^ z)(ENSIhRwjCm3-BjPJ;vAoe^!+| zK=DU}N|1@a0_il~y_~n2$BIHss8GLPz;j-o(}Dh;ZbHO(0z-^UdH0=~Pyp&npAElk z#7e_)jMro1KG1ziB!x^~=ykSL9+x%Kukz%ruL)1Omz=SfVyU5zfa%LjOxSVb-)280 z*obUK9s4l?Vq)y|HGg2{0B~)vKk%&KZ3*3`{aLElGA6r&_50|96KzNS6#(~<&^>lI z!sc=EYS`{V$O_6M=o!QrZFBE>NVaJ=T=&Y43_2D~RCHlwuv+voRU z9la14pW0t?n{wbcs9lZE=wvQReXc0bU(OKsxi_r#G{k&g{C{eH?dbnF-*fs?{efM8 z>VNfEpi|xaajIhJc?lP8y&91+GruG8p`jI{omr0?2M$bZcNp)n{VyI!ysGED^!+F> z)R7<>I(l(YGClO}X)KX`Mpq8&+Nm5IV0i9)R$%-pz=u{4FlZPV<9pSK{{o#2c1^u} zhTG5XfIg$4sHn)-Fk_^%St`8IY?RXYPQ$nPCL61+REMqR7sWX0>6$|#g107&{A#8m z6NgWn$nnm!lc}C{)p&W&?ri(P0<1^@p)&>$V5a%&E0~lc;C(_JMt@tjr>WA~g6xgd ziSdbvPvT*vvYM4yZm*KRgkEacs&;*&YU7>Iu-@)n!1AEUm+p%_#Xv+%@?dKnPhV~G zVZV9P_^-DWlO||vnZAJmQZ>r9%^#W>24v9B#+gPsvs{xp)LFa4Ccu`Oh0q{W-ztDS zcn>Lw2Plh4g1bovTLhdx!Ld#QzCk8oXmnqJ?41EKNIU4ttqe{u-p=$E5fFO=*hzyJ z#5JL~p?oDO9N>5zqHY6@P=HBK0|Yh1aEb^s$B!R}Ipz_;up%Go==@-n5olYj&`a4+ zKm)YGh#6J`gJY;>mVP?W!#EJFacar_1D>cv)=g?=xlqX`#JRbI?=Jc}-E8nZ{-ITtn{T$INV)cF{Z+}W zj^h>k^T}h(X>DsxTPCL2tkeDWeCZSK)q5OfK2=}pw694gy%uy_ST8$K>8WjCeuQho zEJFs{-0Lt?#4I;{gfZ-X2_kVA6KTGEL+-enl#$! z7bnB*D^EIC5f+b%S?IN*$LqYjylRKNoy~~Q&@Z4PlIMH1kO>JGr7Xa`Q@|?CfP{F4 zNh)^6-R)2c&`Q8H$^i|RHUT4BiPNM!#$fc}!-rOYs}KzhVI0AtfFSu+a65!;k2PTj zpEjO3gR%!@N*N(xHgjP7m;n+E8G`_QaF8-|)WI2(Sh+cIB|r*rP@X&E-Me=Y8x?Q7 z76?5q+v~PS*I!v*?*KtX2&NW#4}-<6axGC*>rUoXF^`*EBwuh)5L7ge%=Q&nkd|EA zN~~M9oXIrgC^th){(hiovC{@Yy!4XQWoDn8O?%r77DeSV?ES&=%_3e|cp^tC4NVL) zs`Px^m)}g-jy_($*%9)k5;5_qBEhqs#@{`Zw$0m?%yBeoCW>n?9%Tw}2 z(r@4sJ`d%>^|{Tb5m{HNq-yZHJ!b_-h|tc^S5rZ0htr825v)M5-T~bn!5Q%$6PHnH zRld9JDN0u=$Q^n;pk8QNd<`$OR|Bd~?0}0C6Ce5JY-H zAO~VV2c`|d7q`6DZOBtC_YoFA(#tivsRbqlu(fg-mKU>5mrTaDLBT;r|1!hGvL-yx zfLkl|{GcIRM{xmlZ`Kr_36%y9ihlQc=|Fv%yVPmltk+V5?n)Jtd&#?r+&biL7z}+% zcpoqxj&=65qM_j(N`ffFEloJ^_Aw@WFsPr}39KQv_}3$0%YSy50oBE!z_ zJ3}e)xEP`6(Fbf8;*}d?et-c`Mk;f&2WQpHgwm{d6e3V#+KcRs0_5YVr8e%Axh-n8 zB*+NfvICGGwy&xOm<<>{*#kPr$r3Q7BY5axZVHEiJt0Aj@J}we904x~nFADaPp)YI zNKMQrF^`p`ekbCe+340TWmAoBLg`i(1z4B;xV<7al$q91-d-mIL1BY7h`ahW$!Ryo zp*aS;lZ{8Z>yv`4X+9K}!7rUWPcIZ^Jx-atb9XUc{mG$`ScblaQsk^{6gz54Oh#Z*yZOt~9v&)TuB4Ogf_MZq%GvsTYfx85l3 zx%Z}UM&#M^t<&^hCVLB8mM8jo*J15Gc{s9SVkxk)@hguaxM6Qo;pFpWkM--!@pG1JW5XRp7@_$0GjKM?(7c^ z_|%}$(!TV5g0Wi9zD|i;G>hhDB}SCB|M}4S>=TQ*=>+3=ZRRGokf3ad8Y&NdEO@_F zL(wUqSk)nWcwmsJ_V_=iZgYJiOpZD*eHX=Ui(;FG*(sHqfiN#8mGB=274~?XL_=s%!e!@vq zJkurm2wb72vqJfOtXE4hr@vn;btEgpnZRxPHwoS6BD}hJ%R1($Kki4}5Lyj987t-9 zhGyd1^kU##ocZ8aNWF6XlTy*oa|Ac?kP8)6NF!JP*N9y?VovLU$UG&Sshd7_l8weX z=)l?sXOxs;B~XI|oy-;%S)!2Np6tL|Na$&(m594D!E#xx@A??v?O7g z1qV#PRrVfQXwWE-4`_?)v$Rt3Rr`Bo0E>~)kTWsnZz}gw$D-mLVR|D0?HNWNLahO_ z(dRM!otQ*`!E|3yo-;v#fr@TrZS__K>|0X9_r{lZ+p zX=Xl{oNdSPqP9%i*nOmCPm-rQwXlA|f~2ZEHEuXsrPew~#HjUIj1JmCbEOkB3j}xS z7lh4mcG_!$F^)5!IsxVdGiP;J{J+}9MOR`rx=sD9@<3`#$mWYcmH3SKM|-mt7aYhj^-H3MRStZ z-7gs(#Vg%{HM{noTWeEjss`GV^&A3T^xCwJVYB2gxblCCwB3R(j%Eq&z2pAv#5WMw z;cqm0kD#Sc9dWYqN}_V!=vMEj&_$G5z;r4NUDVqBf2f9taEPMweM_Q=y*)uR&kXOH zsf!$3odZ+k_L%{z!S8xblMU+5&iQoh1j2sIa?~{z79r0+91pLDx2OpUh)TBYsBOn` z+@IJ8wz~0Eda3)CmK9CEL$4%?kym-^Ua$W5dZ)s zvJL3|u*@3pSAjU!Au{Nl2>k^5y9zR3BYrs;$UrmXG$5xW!M6xAj7Ueey@knT`*1um z63Qshr7SQIBJ3Bq*FGSJG({S)(nf-2e-MXM0hsLoS;?lVV1-i#C8t#TJHs`uM;jP~ zT~2TR)~~~M!ldQ9(-SVyp)|1usnn6h!xo*p1<|p&)o+ZH41;6pgst0LBIurJD7bMj zo^|2>fm1v5cl*;V%Lw{^zhwU979kW?QQF~u(jQ4`9l`F|vI-IO*3ZP1Xjff+-%DS- z&T0y+)TUz&=gDJA|A?l(x4@U$AQ!FZEq7oZkyn6}aA4ZV(7t*4(hcV7J^Sul85o-# zK|%wniUf_+_^*xEyL3|C#ax;hh~o_5FF$NWd=j88lTKBRQv(SWaSJ|Zx+3nHfyjHH zjVSngVM)mf7omy5&<4Zu>B4ki^je?96vAm1=aAQU2Z0Q9PZKLsS2#Rs)(7l`qa zWk8!H!+T7_Sg!`W1Y+I;1W@1ItpnmpSW(ddK=%PV3BW0Je;0%cLWsIpQ6~g+A#5N* z(gWGa#;HW^>6P9wZOt`RK&Pw8Ai60efErJvn&fhg9@H5T5fNlR!2H_+KHstN@rblJ zFf1VMZ0L(PXr2fmkJBR9m5VAiCYBSH=^3Z$G#2mGMRP9SRiO2n-zyI93ovWzw*IJF zKKquh-@jvaJgy*3>t>>U)IA+is;`u&Sl9Hg@nbR%I2d)-I`9s&?3vw63F=zcB1GOL z3ZM4+{+UlJ;STNmB?C1XeSz7H*Z>l;^_7yFPl$4gv;6;tB1|prt z!4D(pwSH;R$ZuYVhEr{f=}=6KCHR`Rwq^-53=EkNU0lq}cYx~pgvDZ6IRymNpx`2_ z>by80iO$egh4oT}a#{cg)?_wcHxmvs#C_s3;6fqioq<3Xf~Z3rbk~b)dxfE4r-38r z_XIPPfUTid)PVv3{t@aBF{OYs$bIeFJ;b;LQ=ZGth676eT1pvxgf%CMQ@u3KqK8d}(y_ZVjq6N}Rq@fu^5D4}O(mSYD;8pv(C9PZe^xq;H|go6Mua;Na<W{6za2cgds#ZaZ4j?WZxhb6l?EVnd4J8CT+`4}pc#nihd4 z#^gQsuO-@Utv)S|%@dvS=nUV!;w|!UGD|l7UW<*R;;>jqU1JTsqE4>V-YJQw@rR7* zTJc2^z-w%%+;&)by|p%*I`@2Y5bst&YfwMai za0`6GMhBb`LG1KjK-vMmPXRn8kw72^GfLth+YufQ$Vw&0UFb*CFhXiVyAlG=B^XOB zK~nUbjB`WCLa3&47zBPHr2}*q@IJtCfi!U4Cw%*M2MVbUq9m5OEoMO@nngxYF#VaB zo2P=+K^_bNYEW_!nj0n1vpE#4xZG(0QXNcTd~m>*yf|nC{9z}M_;3Uw4kr~4g9O}o z1S>)-!1c61GtXUgLd-x=jjVwohp^Xz!|aIZ8W>dgY^K)2bn+g_4U`jA7w($C?Poo{AmQ6 z0_|x=32i`n9WW>2iUvFtFd9&;J52swA~=cPa)}Xs@umtZA0=Qaf9|!MLs_|Gahsmi zjOTLoMJC;Y5Cgt5W%e1U{0=!QuhrTJWAUqL3)Z@#rcR;e%VVjl)%6%6U-xs)y;#|t zchW`}_@JZlkze~AR7>`bqrXq1)EZ+yxN&Ccr3TaT=%+DO3`CHu&`_9l3oSmTDelm{ zd@{LepW@W5~+3;9$HKnLdGqTnz|Dn2a)<|bSEB5fYTKma0J zxTw>J^bT@58&H2clpg1er6(Zqra4cyLh>W-b&M-wafJiQby0$;$WH6PCv<>&`4ODK z2rOWH2S${C#1M`L+`n)X>PvQZ_J!154#a_%7zee11QJKkN5%AMV+pAB#^J8=esWj9 zAO7|X0}k2{f^6VuGGfGpqH`6_+Y-(4F7MLae)dJR2^v9rzNI?c-?au)MpwU99E3as zwq1oB;zu#8&;>g-@{wa3_M>grK}|p6KltUEZ;xvEx@|8CvjcKyd)jb})$+Gnj-w?Z z&z2WA&i)|sUT5^<*(*i#Es(JCp;j6j{08HSafyP%Pu=iLGYU_{gMR82XG^?9(P8P15yE6t~`Imnp&={ zLK>VmLiPMxmF;4+b%|fdPfpxvBG7YvE_(^+bU0*7Z_cD4$NiRw>HQlAi^%!4h$HQ4gC!8of$2K^SuQw+rq|f!YD3pzpa)xUzj(& z7g?~2J{oxsPgjg=`h)55OHofzWL$q@@7!0gLn0@u;N(jN;@U(e2%oL|oHA|T!&$49 z)Wtp5(m+0j!pjRH7z&_dBrBR=Xn;YW9pW;EupbwSTx0YYDLLivt zXkR#gK5RrI->(&*D}pZ(rVZYT75r4jIm;UiZfxmr3;~nWB(<%GIPn3|z#CL(7_dnC zD1NA@r~r|D9Gnbrgb{gRPo+=US&3>m6IFyX7Ffx2;L!bpgFE2x$TgIeuix@UdpN3L z7bree@RB0F0p!CXz!&`c<@9t5*!~bG1ST+$do>b-%BiUK;T$=#j&qr=^993`SfMAa z4^V2GE8}F%vUM)Klt9EwhdObRS_>GNPkeeQab>QSlUW8xOVus1AF3Q&QFNeMHO@))dW zUcdkDqDH0;IEjY?526*AuQ5pwR+q}^Bo%+0mBxUdz}9DPb23`M)ZbyZ++!7KW{7!J zH4C&=Pw=%Pof<3&=`c&AR~k)EkNymV(Pv;_07>Q!f)N4k22i&q1oq9kcD$Afba@gS z5DWZP17~o+E_x${DkVkHYEcEU!x>5ggS4+ce4LCH$p2$QLtg;2NjfKWyppEo?!eLw^hZ&gdG&()#&O&^*1fR}j z+qID=wLfwaK@>kWRM5-gkxY6qU@~$B>H-e@+#oKv9X9|45)SC9f4n9$HWt1U?E|`f zDSQY42+;93>p?ir3urPFgyURmkz^QeA_42|HmAP4T=O4bLd=d!os0safT z`|=3q!UGNz_@K0))|}&g9v?5T@9YQe;|t&l%FxM!`R!@?f`UB66&v7L6Suom?sWZU zg0?2_g+4$&%yOx{3qDwcT`4L9e7%6@aaIvrh^G0}_^Hd>#?AR%7wpSd1a7bOIl7xR z#fHmkf2P|ixqG-v@7Jj!*g?vrHMOgk>QkwHA!EB`bVmE4tk zDeVUzwCR3A=HdU*-jzqQy|ruYIXykCQ`*y_D6OKDs#3F*wrYs61ZfajHB=O(=CP-f zQe#ZVTw@7A5lRH5hEPKgY0UFH6Z3F)be(hm{_eWpy?3p9@|U&O&i2dR?|%2Y-{*Os zpUMnK#TWLB3}9sCWU}#t70a@CITz-BTkxPDYuGlZ%C4O9mIC25fP zw>YQ7U*ep9{w>bg`L{SH$6w-{ntv;O{wM1BUmxuGw<$Up0uf%H>y0M?QpHgA1}X~0 z-v4uY1hSE!W~?H8nRl$%q7@u!^v{cree>;ELH0FOzjTftwlF;WH$B>a>+k$$FoyqK zL;Gg|{#gLvFaGTg?O(OC^>1%ArHoZdfA}&;OCwXqMC_^9+zKE94L;RMVO;4gMV#UY zkCelP7m?wh;U=ee-OAk`>Ig2waR)`yQa#QvzL&hp5O(6H$vhB;a(XGlNO zDS8YHyA9N*dQa{Z=YB(Z^8Ff%KBLiocp6sw8F^QKEtCyq;(?ts$4d2&*3nNQaCKrz z-nz(qH`Bks$gZ4?yCv^Ay_sQG^Q}U{SKqaXmJ0){HE)a=jm|$;94&;YTm^aMC9*F)dS8yOU?c zGj#9i=ccA&n-Ykov0Pl|sXrbN)@TK0VML+Um`a@uC;$-@F;R*qBF(3-_K$Jw;XsW~ zNT0fQio*Y7-AETh6VqRdny4Q4lKtLG{4$`uzV2FBTJ$*mhZ%(a(Q*Z0CxyUD)eZQ4 z{rdYgOTN3As)AR#G3PVg52x^j_37sz=%s)D|D36vurWZ0kK3Gn00k--JH@EF75`|( zr5#`Ft~~-Xd*DhsYS&*#)aL{W0g{hmtXMulQ)AY zWUQ^Kq)$=hHf`GGwU$j;QfvuSFQw*<%T|Z-UO|sQKY&je7}_wm@NP{x)A0cz2&`dQ zj7YXH{JP>=8Qame+3Lmp&?1k}d*G(o*BmXuO&0Qa@;xlnd2ylNqInSLuK^STi0gEn zwYRC4;dsVJ+JkQXdg26eYGPRI65s|eIvgMKyHV|~?}gju%`SCKEcg8A)uyT!1N1hf z;au`A2CWHYn&eSXZt`hV0CS&y%iSk!dhF?hrUtwv@%r1ex1TY>@3YzUlxVbSw}Q#- zl`vb>EyfOd{Z#yHA3}X91*6e_McCZj93NC_)^BzX*B0l}GlN%sAA{{mlrNQZY5Ho> zOc*o00~#Xh%spyEzMU71zMh7y^eQI1g<=RsO4!~K=}I?O*VZ2o?)h6DkW;yHu@Yc? z3h@3o1DffeshrEoYsUfWaW_;)K@x|gyB25nL3&Ra@P5-HCQM!qmYZ!b%;htoUfgVMBpd2WZpv%q8&5LdQ^EssLl4caVWp@~X<;7O? z;yO5KDBCX-GxkZaV%dQBGv8CD#Or^myF9tO36B&8EGVIC*YtVco-&-Di6W=?%--Y0 z+Yd64J}?i$gE9GEPshI#XJ9xTMSn*Cj@CoA$mepJ&0KD709k=F1@@15i_SXho`yLF zMOA-hQ*5g+hNfC;^Qp(skxvoOIC<-6j_&+4t6+}vmi*HVINPqQFSZz68cXn=MWmQs zjwaQ~>02b!@5;>)I+yT;Y{NbTV|r^q7pKlWvuZD$DDNc&jl~*E+0+*kIpn64406U& z-0*G&)#0`5?LCp>E=1uN@2xfO0JgFIl!*0(0e+}wsTbTw;dwd6U?r>#!*UYhr%mvz zNPGA0nae`Ec8n-eeCAL2Nk;5CA_LqMTM`ruTu}N^@J?ym!+m&ReZ6{MJYr>hu8j;H zbp^GZxqN)tKsefVVl7(*8Gh!>OwTmdVsSD8TvacDe?5j4O*UaX7nWmtWYh~9N88dQ z=NrScILQ=>nU4)*@ym{@n4p@E*GBtiu`~lL+TWAruBys(QLmx2CrdjRW3)1V8L9`$ z{;&AT8G^k)Z`-yS-VK^szZo1x{25^0W*ZA)+*La}P_%h!8qT9r1%dr!gtJOK$#yk$ zYjr{$y}q-TDQfMPrz4<6-c{BpUTC=JJoc>Pssj&C>A7>xchJDB;h>(jRLWs6n|pD+ zdn_QCV_a%)rAWwdt*eK|Ic`|-Ss`A5ABqIiqc?FaHVPzY^*826>Mn_x+|aog%AS9) zGom4~Z}kUY$qGQXXE()^Rh6?%wpLJ`B?OQM%jBt55z>gx<+$mY4w%J2C|8tYiS#h| zf>h&!Dx0pQlqRrkd>@qRCgLm8SehfubTGzk1KUfleB)$%gR~PNDF7pBB$33Zv-968 zwR%hJNiQ8@raJ>*YkL?LIp4W9i{|azUF{v;{+u_1*E;9QR%xA~icfaBMZjG=fs1lGM>!ZHE<9CyL zXV3R$>zmiFv)tP3SKPNOMNCWdL?f?da4$Mb9gT9AcIazQJ!U2hBsaD_hs_BO%7eCP z3)vt~r8vEi-V|Qzzjl|1MyJ>M@3+^Vnw7L^`VFLg5NE=}<<=UGShmDz0pOrBgsYdo z4(qeiQnMvwP+sh7TBWU+yJZT?^vh&c*j0PaCeroCPmZwTY$BURIX;FqT>_(P1II6- z2KuNygy;V1F;{brtya-XWch5`lKRVCX_!D(;b@+XOOlny;@eeEP4bDI3Y}S@4K~vw z4xsq-A|F4&VR-ma53Uvt66oZZRo0o2I>wpyN?dtmKeAROq&pItECj%)-cmb~sG>uA z#j!!ux6dcy6kPP)9=B`bXb7^euIgtykX8b?Xf&U!ynIfobzhunthjYIp0Gm%vX69E z+iTbY^sT*1v!7G!g$~eoKAY<5FR0#`VcsBsDJ}F9asVBXKq?65s94^pm~a~JCs!y7 zL-pcI<|VzSKJc|wIr2Wp%RAQ5R~n7&nR$cG;DbuqQpovUZh*jMUcc2>wwhJpbqu(v z>|Kq8z@T^S;Go5k-AX|noj#`PJ!T34J2(=eD%yYUId|c^uL51C?dKH={0F^|MqgCqy!JfE&+jbx|O3I-p%XjgVnx1P5>LShW zKuK0s9*V9oD(PN8%G1=xn*sxZb=B0~(U(G5Bbt*pn~#XQeFXX2N%hq|uM0+{HUdyk z`)rdsy1)XFa27nwb0jHTJms!P9R*t#z^iw);!DE-2nPD*zgeA}_8!{evqT~ppR|V! z7rH&WKP_&Ft98RO?K$3-v?Y7=wdh1u5?#p5W%NztH9nDhsVzGAXl??XjI74K`?==yXsrG`smp zk%jXtFElVDpgTtrg`(u|jL#*ko&c4XDvcH|LE1Iick=OT%@csvsKLa2wK z;^K;!GkxgbAeuwoz736^o7?B^n;01}_f7;6&l~?Yip7Zl$I;cdNFP9Tijy4M;6l@Y z4J)Mox!?lVfiJP_mf2l4^wzPU)5IgHOtwqa8&SOe5stYv%`Egk>O+#VPK+v$fU~0;y2~O}gH?kG zss}10mW#YOAm=6Oj%%J+6ahYHNkVYn`vi8&@zpY+#R~Su$r(7S&dT(K93n1n(ZmKEQ*t`y)G{=k9ho;MlHVDQ@F(jb=*j|nwJBJNC#Ln`q>#I zhtbDcdH1JUa@sxEh%m*PD#iP5A%6OW$ybvgDJmqS4kE+$@1d$fI!P7v%Z203oMr-U zgJ9{eKnou@3F;(4>Kz5Ft${jVmg%dvpp^a9%v`@V>w9IoyD!Dl^np4E_hW~!)5+?| z1;9XrZ`>(B$JqdxU|C6z9_zq>020_}lFsc6c727sWD2OGs1gItn3P)QEGF1^KKmRc z`Vzs2pn{q8x$jFkN>|D6w(CQW^#OR~ocEql>SJc#i)Qv9O4xS)<_?s1n}|dNa&S6t zSV=*BJ+3)Mg!G2-52Fh2jBC*s;uI{+#fK3IBX!9XYqM`q2@c@_y6FeM4R)qAv1ldS zFcgj!?dJ1J~%iE zu+&?VWD~RIUg1dq|3Tnpx_mCrYX*lT;`vT$=^= z|K$q>=U9|qXxWwrO%93TvusU3c&v<(akFq*)nrlx-!Tw4&au8Pv~J6L8_Zz~exuQR zk-9++0Tp!GlcR29{J_e`<{Kp7fEtf=1KxxK;{5t($c66Xdpkh8&#C^MAjCJ9xb~Wy zg)knx9+w{>u-^el6Ki$f*bii0JC1CM8R5*!fF73t4kZcV^*4RxQ8TvXtb!k|A&So1 z3PI7T$~q#*m0+NL@Woi`r6n+X)w2%Q

GRJp$oZK8t)g?kt_ z^=Q3?J`al`sx#l0qc51Fu_hT9!)pg#an#Q`D$^8#*E#3mmqw*eFpckiEn^kDy>EOmP1MVik9cBphkE!N8N~@2P@_6Yq-f90msyi>umW|9A6B)mxfrU9NI3S}$;HIEZzdWwyEzBMAYpf>5kf@ZzJszZ5 z)8B=L;d*jrNJXW;oZ7v;=(>ne(TZ#OGCa(4XO$IO3_?~^FQzO`0+TPzDQ(~jr%2#d zaTFkD7pi!Eu+%T-)k&7?sT5l{e6`*oOT&Mi1M)N-1dixT&m4U$eXYoOrUA-a+?M^M4VER59i+i-ELk~52N^MdmlY}G9dlfdHg|#LqWMn#Y!z13(oB^i> zxGw`B4Q{C12G`HG*YYT}%~*tE+l>df`0GTvl5SdG2dpIttqpn&je9p0(7Hyg#H6Kt zQ$5N6)q6|MNvN*_m zF3>K<$!tDy<-^NtZ#t|;ha{LE`5OmBlm1c-6B3dvRCR4Kq1Cf!d2n`JVXiVG zJr>SL?d{E(5oQ@fq~sPFU&Fu;f>o(ccYnf%d4-n**?%n>0|ge~(pKKr7pQ^Whj4t* z<$c>^-J-+nlhk6>S@+@6cxy!O17SgtJR||LZdXzKv<_9qy6JUh37879%2n$C=y}23 z*U+zSUas$#_sGID$6;yfQ^ zH;>r8^{|(YYvv*fg^btd0-D~u9q7cym#%?x74(Mz8or!IDH(XbDPTy7yN3xawHW#c zK*Q%4;}u1MEje(!XJgh>D{Mo5pCl5aG7fcBYI}L&_ zD4p@N3>XMg+ceua3CsEj6vn31en3Au7ZJ7hN1L_P&t_HEp-#k@#c*;!*Q2DCv-CUD zExZdUY&b0v9IF#;@i`#I*ld^t3!Qy`cujz|g+!7|501;NPm=EOzyM$DtO$3K=?SF^ z(15(<51U)H2V;+1_$rcKy{c7G<+$~|1Voa2#;xYWaKUQ4_cXds*!?u!ku!vbzj~z< zcm#GAm^I*I44r+VTMynWbbr|2yPgQj4O16Gxlgq(Bvt~atJiFp>)Y4jmF_eN-CvDm zf33mpAFjzhRK2)^TfvW?JjG}LSU|zq2rw?gi?93OwMqaBgcbeVSrhi1e%5w|+8PuY z+IdtYI3s=^g7W-TFK2UY_Z0m*{|9r+|8p?jznt|xFktvo@(Ah`jy`cvW$k-;cOSm| E4>fZ3bN~PV literal 0 HcmV?d00001 diff --git a/docs/media/authentication/netbox_google_login.png b/docs/media/authentication/netbox_google_login.png new file mode 100644 index 0000000000000000000000000000000000000000..730173b5d3f7889dcaab0a3e33fde7630c8ac910 GIT binary patch literal 20774 zcmdSBcT`jV*De^uh6sEufTDm3ihzJhldd3O=q-d6K#`WvI|)ruP>>>3dM^oG2qg%p zh&1Vh&_YCNLX#3oATWpD`_8PH_r5dt-kH1Bo%;t%SI)^fpR>>Y?EO5?-aGI0bkteS zah(H!KrG;APYpmI1|kS_;>Fq1z$dT4R}6uFnB1P3dV)aAmyZ7!K&k0hK%g5S@Y5$o ze(B3Zd+W=1QrNWp5Ho+y&J=2mJAX$s;)Kw-7pnKNb6?D0BO^{-R=sfYWd5`KXAtCK zQ}RjWbN>uZH1ozDFoAufJMEgFv&71k^b}pvOT^ z7Egez|4|11ANmgt1iJF3{}kx!jW?no(CM3A450gGbC^LPPtL+Xp!3TAI+atMGbG)c zvh3e;=>LlKx=i6p;||)190wn%Y&MfZBFBa6!=1_?P=o#N#4~_Oy{)`yZV;E zy$G632cyv9yo)si6zl)Sg~$7M#{J!)r79oNYJo z1$-B~XJM=p=J!%EdV4PLA%O?vM=OoH%`3gA!TZgvU9}hYf#}TRxA=|McUB*A6>%%OK-L z8%z1w4%0U-iuYGqucmJ6Q%s94hU&@`b9HB$R%?he`V@{Smg|cv5K9X z&#Zh}Bn#$B%H*!VxIm*UIn3eW-KFZrqWHe>LB&Usg+Y9Qgpw9U%n8u`%oCwU2_ml$ z2J?41K_Qb7nWEQ!-m6wStTJig)|O+LWAvt6st0XcSC&qezjB+_y$V_u?_hwOc-(u-%M+bg z6uq?PUE;k>!x~K}z$~_q6FNwA0oB*dGgRf~H{=Vd$I4mUOT+y$OTz+g46}f-L?sp; zhx|O;Q^)PUxOhp@cE)U_`FinN#_($vrt_srzG|UCM-Y7`CMj%7i;n_**w>8}dI}V+ zvN->+y;Vj0{G^_Dhi&~)gI(Ehg_$;^@QGCsU;&$}O0{BlkG^e}d3bvyRmabTM@gmR6&O=KtUtex+8YqzO`p!OrK& zNmPSC8Rw;+S}=j4GNoX%P{gpi*VT?Y)hSG?AWc7A>13v;Xdf>oR`>bxGe6y2AEx-V zF;~9n@3D>WL(1Y#hTon2sMNBCio#|(Jyd{wy#>4;M~lxjd75tTaH^)-^On|S0!vSI zIV<0xfID~KSZcPH9n;2*|5As@>wV_V3-2Id&8(y7B0}kBv@_tE_|IAm*UQd;JQ#sX z`B&;N_9)crF7;(pjc+$a?_AZ>ANk-qX;HnsGVrPdT3So5^z>yE>T0h1y=vOZ z;**tzi~0SF4sV~T3vRa*bwv6hF~$RbC}!vgwGqecbIn1{+Zg{z4_tGnQM}~Udet(fGX}w-C&f)iYJ)1IfzD+QH=2tVQI8_IqPUb!khRfuSAm~(BinZv4#2>RSp zmgd~2{$&WPMVNOfb)~9CV4NGyAqyQf@x4D3^wh;(D2ZDaWi}v+8*JWc&~kPjC)RoD ziV2u96PxjHhqlfcQ`sH1rZbdjB#U_9WFhmy*07bZx5PbuO@hcW8NDOtgU@40&2J=q z%$X=Px{4Py(^BG|OfFbDeuYJ8!|`;y1W9l1xb0W=(r7g zSD*7!>DMrI)Fg7juT1+)(^z?Rn^dFd84O;RWa?zt+YUwX`WpoC@Qg64M_c>JaH6tx z0u}U%nyFz8lfe60!bc&z#T6B8Cw_Bb*U(=R^Iv*?ZljyBSb&i)@dkir7_4FN&WiIH z!BXTNkzo71)VRw$m+}OR#Rwyj3z7oKJ^oEg9@#!H)?XXz$u4RR{cD?4r)pzby=IIS zuhMiyBF$&5{GQcOt&(n*9?{gw;V|SmMPG*6@9WQNMIUs1N4s~>_D5!F&p!V6+2*fq zrP^G&ME$!#DjRuNLHg$e;hP`wYR7G!U7MU$myE{Z z7N~e@Dj#IFFA9g%esMm<*ZvRg{tseB>SSd6-C3`mCTV#QH+4js8h z>hV!>b*ZHO@sFZ=rf55p_I<0HNxZRq-dpDKx&q&a!e->SR}I5A*hP3yG_!h3leH|n z{dwjE37Z|C$aWu$9@x;VuFt5fvrm-)riiu5vQQQAtaEw9}xoyFKi^>Z>jsagJl9C z2o6CE)Y!T%#4G{JIje0ovcZMIDR{B>Xbyw(S7ej@94G}UKrNs3=c} z*)~AY=}SIZsT{gGVhxt0-=-j#1Zg*TAL=^ zxPpPB@8f{51n=5t>huF1QBgC6gXd{>+i<prG34u{RAegdKyZj73DCtfdJt-^w>+MVUa;P#l2cK95Vl8UA?#Tr4w+@6g1fDTx*(vr~WhNQ-_h`3l^TM0- zu0;30y}6qCYR)qKW1CX}g#nK+O(&9d%It8NSiS9oT~jZ`yg^fK*}}m;?${!kahqhnx{M7 zyCo{xYPxVBFJI&Lo1TK3$_QFi&|`Q0G=J&mOs1%{fJoO%c_NAUaNoL{v>>AU%EW(O zAVoGya)60R_PPheJ3_{XS~NiAvL)BIb4d-jFkeDAHF;U)Egh{*nh*L1Z|lTJJUf~e zM(|)J^u*|NXxP5*Nf-c;$w%u$#V-W|2g>Stn8PQx{qhQTehp*xE&#jzmXdsvMVa1( zw7xk?LPIbzd0B$pM#pL>Q;9IH8flC3^-sh4TCN>Top4pVyAeG$xH?k#RFHk=^MR1A z+IV7#wfoT%VdmGz=%*Eq$L=A4SJF4QY<{0LhgoGdeA*UK()Ci^Xa2AU(|@H~ccZW! zxN_W>Ur#}PVkK)djTE?<#&H6QlMMGXhHMDGbPvvc>-*U??Rc#ORAZpMFW_go+ zp0z_6`*v!5X?T#yhq?QWO{-P>>{Wj+*YUq?vpaC9k<2lsRMzf(O=o0C4W7;JA;@uX zVAPK+;GU=}F@PhbZ+x5V2ClujESdJw;6Yz0(Xd7uL7E{dEi6BZ|F+*%Tfd)}-AI%n z=3=L3K1`+6zQx*z^bC6QZ^2VM9+WZ&9v+VJ9j5R0S0=0$G5^lTjZe$ z0w2eh1D%_r*wy*UUK+X@*BjmE>s;;l{bOU`HEVy<=4}8(O%}YcrF*$qg{{~x_Xco3 zc+ZsD6kOLP1rsvX@!hY-cYDjrOBfOwC;AJRYY@L4`8VQhm*gwO!jfO19w$dY?yY7y zJujd7kp6|EP_(62e}>l%-nq_aDk742mU)xKzRefqJ5dw+Eu+xI(v|96)Tq>#XFj*`0irGvCavY{%jw!@GP@ChA`iS)B=Az#p`cqkmm5E);v|O)MfW98~9T4M)>3R0M=PY*LKPgBt zVg2t~RK1C|MV%R&NL{l8Nw{pHU~GPAH7D7ufEZLHPN+arbxGv9ysJCP;)d-LD{Gom zZzJU|VWP0u>40B@Wk+m5I2+c*p##74@bY7Mzj@^lSFEYN^tsr-= zIlO^yF^(%p$uMt8+F;>aBBaQ{UGlEJ!Oa1E*^6Ac6^uUc^{UpZJi&kAm8pGuYMV4R zNESwNaJf#3q2vAE`;tfN<_ZJFXbgu?E+e$UVR}I2m`<3lHHNkQaQM|#kc!)LWhu7Q zq(&w`Gu8D)^{bXC1`ZbP7?yB~=AK!Sc;-vW=Wv!ltht;r{Z#n}?v=oEU{hsDtk(%F z!5fACxedWtKjCI#8L0iryrC30_(%Cru&?7~cY*m5lDR+#A+(ZK}9-!7=##mxB?n9`hP4hHIs4g5xSa zcKI~Qein5(q0Ycr&f_3I`nnQ2D`+299b}oEfk?7#R6~^ZJWCvkKqARAq6!iKmdDpB z@r;)6vMu*)U@^P4Up`odUc4=`oqnSHB>BCU@>ia$skV35Xy3mhn@0i&)xlx=@-Pd@ ziX%Pm)SXcLW_qK$Lbvy@u%+_QxGxyH0zkd33H@$iZk7@Vv=xEZtfp6;)~-4D@gP!I z1&~b2tAY=6PBDhrqU}c6TD$#+YuM};-*Xn`U#qX@ChRo;EABt$jD$6&3Ydo*)0xf?%zs;R)Bbo4bd!#Fe&ya;_jjcJC$#}IWS#Z(Dz4QB6(-{*BjDFm) z$OE{DUAgrrcTU=wwzf9J;l-tl#$>%Rle9NKJ zbMg)=g=Mn-cj#x#2E~I05nM`S?Df)TgKwV4O&lHKf+=%oB)nx#@`ZSJF#S%{b=j}w z3%{b|EiASc{)QieIeLIY3#`|)(cuAoJh+&`(d|bkOaR=oL=l2;m_yI_H2CPC8dW&8 zUGR#A?H>@sTG)uoLqIsa%o9&_yy1$lYR=_gxt?j)G^Y*~sg_0HJ$uY->kmj7NMm$i z6-yd?M6rAAG@Dgz?0zHbQ(b8`+?7uaJ4~AqA&g0D@8={vY3B#+VJOp#7DB4@xcA_z z_RP(iu;k^=n$E}5R)R9VG|IZHYwyC0U2B%|TVs^U2oqkv zw!E8Q#2TC7OEf@WNmFTYmDN=-|FgQBTPNo=u}2M8;vctptSOn-0%mYgm0_F>T1WgQ?_jR1Jk3wf}~MXL8trK2h=Y8~Ba zdyHXr7)vpNIa{b{_13O_Al6>Ju$N{3{_Q)ri~$ zK^{_3zmmu13kdLS6d~=^-d@%$D>c;k zHaZ(4Vq$dna0`LlL)<=%=3ZK*iZqH`TKT$(VhTUw*QQ7m&i_|2Q~cJ%!-+dz?m`P| zIDXM?wKGb~0hb4>(5RosSF3%CF!0;mYt|=1@_@+PVbj-?>mTWif?|XF%FQ0Q*5Z7e z(pn+5q}Qh6TN~mtvzfi25-_p6g05&T`4%*0UXH+NbcdkO_wB(OH89+1)~hn0yKWjizC%cf5o^ zSKjycFlGkLY4_;Z8>7#JpYPYTBBlg)1a4ETf2Aa z7pzd~R(;^cm*a~UR18jVf@0sN6pzt2t@iC&S-hw1`Pkb-~Vm43V3*6Ged% zU1-EKhEDt-(b`2$>CbqPvZK+e`{JjOyBHcJYV3EK@`)7#pB+>D{OB#X{!-2}x(0(!HSor*;DP3Htp>2iAv z{r%s{IQxr^Xn!C6IVBz3v9ghxgKp})8PVMst|=L3%_D-MzPBbxTPM{duOLn|=u zbQ~O5${p=1B^TQwWO4FobU*6~#i{ieKo5Qv7eFLZO@O4`?2ky?68-&~0{Z&sUlqIO zepmlv9nUTKcdXuRe*Qs~hBNQ)s5>1{Qb> z5wltiVx!kH_WHQtN=xUS!#^tY-JT-HXiXiR5l&LCK55#)iZ zN2bzN+mHX?qlJw$R^B{3LVEF_?Qs;Bl0G)gccfB(#+&l1L83iqedRipcfB}hKd@n( zdZl!Pc$%_V5v-@I{Ms^r4wG~mf)P(E76V_;m+_hUUO<_&um4^_cTH(?4cb-B*gvo9 z*+=VLs#%kHsx7-Un6?(2o1Z^xv~uf~3&t~Rn&x=;$7sSTc!#eiT>%;=LB{$H7m(gb z?4wwN9zkxXtErYOg`C;y4HqAzPlkMX*RR^_v%AQ2TR@=1bAJo<8F+BL^;}g0XYsV2 z)U9zj_;B(P!{gtGXoR{Q}mfHA!OO5o-0dU0+6p$b?TZVqserb(otOFb!eh zk}=l*s81P3XZS3S6+O?(GE#o=0%KEQ!7@-DLZ?~(l!oKKyte=m8+92dC?Z3J|?ourCT89R!51|q3a235CI zw}>$Z^fyF&_49V|QZ z0m;T)04)m4F3%V*konnOl$|8@Dev{EFZc?3C=2gqzDDxB997SjkDV_KfPyRaP{4}( z^&202@b1b+w760b^mx5be`rg(kTjD+L)k0+u?GQx5&_n{)TW~g$8HTLlxDW+{zHJC68JkOy2bH66-Uj{ z5z%1J4<(VBsYgEU?mA=hf0ondKgkgrNO-)eXz!6+7I5RkZkLi(9^+asZiJ-m$h({L zgii_i1;TXdK5vPu^R>yoastRhP8qPpT*Mq6Ybe(Pt9;Z`@?=5mG{%!Oja*!}H*|I- z=Dz25EI6ViID^5R8&-AtZ<+VdYWOZ0t9q7*qq>XuhD}bx+6+aMVtcvoeoXY}=&08Y z0i&d7ntu0~zKOKQ9B9p0o%?Ddf2@)rc;lWee{ z26hD?tO8JEBrK5`UxKiArrC!VexU}Z*14epuSMT(2`I88$`--bR#yx6NWo}JV&h^m zDQR&}aL5bT6xt~2sVLOT{Ltpe8X@StikK;X?VRTX3HL6EGRr!Bw)5PvHUv*^Z@hWD z07dQTn>$)aZFhHf$MN&aLn?8zhLs^m-=(;Jtz?OO!nYw{4ij;CJ3cKf4POhG`dp)r zNDo4_0qo)NS^4{S$e)&JJHDqtgbJyHrmj3m4#n5lxJCt87f+#PY+ES|9?Z&|kE7-M zc0Zk9y*^kGnFQnp@o`GaQ(&umd6|YxU$HzLJ5#&H+CM8@v_zwxr9axdbb@n_LjeW~ zdlwO%R0kcuX@5iM-#SiOyZ>AIQ2skwR{lFq6$?Gm{Xr2BPdq* zlhz%7WPNvEQOG3GLfqHsg~4ao-~-@9Xlpt8o$C{Se`Lp4ijD;6#u`{d!x+H7-(4n+ z)^ELi$o|ELnfSXOv9Z2w#NeunN@oRyScp6nQoEr4KuEtPwx@lxOpXhyt z85)8;sB%w{{ppf}kV>0d{t^2SbR*c!$D?a&Q!}6c|F$#dzvD6g7dZ9Cnd`Dh3#z#< zls-cAesI5IU@jl=J)Zz+@%GhD*?yI$$*{o!G$Vm#Ro^qcKgY_H$bb9xZMpi?Em(`Y z%D0<2xC`z>0|lVH(}0uxt9hwG&luS*gU{7&Z!)-&X!?>Qi`#REZ@+rO1Q@86uaQRp^ zbShmG3?#A!j)T7i+s?2uQ}ILHx$dNqX2$Sp$WYa#BI?)JLtt~8q#aolKM6!Vi!(mN zTFNnQ+b&H$4pP(QbgSHpJkon<^smUIsuWnJ9Ml|_Z*V)J#5=N(;(L@Q3p{bqo-^7^ z+VvKg7Ptpb>9Lc{y2RxNDXbah(XjXe65|+Br~!%ZqRloDY=M*qwhG#< zJq9pevxUcN#UGcYO7_nCvdrpkc`=-s`0Sj_@3)KwHS^GDlzaInU^4i!k z1sl+1v4hT@D3sf?;@9OTg@t6*2<4<${zNfzS)$FuaTj6NzM7ra3PWS3Z+HU5j#uY6 z{u-wY-o6b66jtrJ9(45rKNtYELZ)9no%2JXeWKuT`7nn4Aq6|a)K(p%+dXB#VB2M> znsJA_o@Ey=UNl%ahO?g&gTZm*H4Z`oMdn8@&FkvDU3d1gI18Dk8kmC!y$XOEU0c7w z9^0zi`hAEymAdseR`=TpuF<-14pDP-2t9o3ho|8dO|!4q;H?MlvY#n$@2+v$;n>ai z&ip5IWd8O2;hDS|pH_~HMmMmES`>7DM8v4t%ywnUS8u}S^p(98hK`fUoE^`b!lS^x z`^6Vjw!YPLQu+(uHq#cJwLfj)jLY`SOGXYvl&pAREf;QrAEs#0tjAwc$y2xIM&sHd z9XrKHj=w`~yboVwj~q0aA`YkSkw-#}V6rtMF)gCKd#rCj%~z z*e`Fw1@S5K@T|f|>R+j`UMps3YAlc`)Iwhzuk}eeMvKRL(P3Be*m<4JrG`qg<~0pc z1=1KEB?&$d9CM1fl+om83K4#}_8tr}P=1lClO(x>aERUt2}DA0Xs18cYtYJ|2BOq67(LZfwl+3zfRrz;hWV|!I|Z+47hwmMD)lu5ygIyOB66?)8AneI>|hq z$>K(GP7(9uOm1$T_wo-%SpDT|k zg&4HjkPes3wy86zNg5ChG@p>n3rNGClDrC2K3Q0+&THd_?1Jw?oIv>*o5!@DGg7+7| z4V75~;UJLaS>pK*Tt}}10t2^*3qz1{C&wr*Y5n9AVw!RDN6i*uU$)C-YaP*IN=Wkp zjmuEdJ}-VfzUVf1;K2icSmjUotr=nwc&(KQiDPf!5HT-k8F3w~p7~kq2*A*ljF=iH zJQvs?AmB@wyu8jruhnpk;3Y|bs`Tvo=xE$0DK5zI2IZUyXVJ^z$)Jw?TEnA8uQ-n$ zRAh2Xt6?$Fq3Vh+Xkh0g@T*RK7^cU_7l_-7IgFQxIeZ@t$2yD&DQs?}{S3|qff^p+ zLMHDjDq6lu4y6Js7|zjV_I4OjE=!fxpZ*?nY?+xRT?uM|y@b#3S@0mxXu9~qI#w}d zuc?{7)s(RLMRLxcLA0~EM%?R)FnH&=VD1Cos0enE(vPiYD2wmo zH>_H~D`wJ!*QDg7pHXMaO#X%f!4(`QlptIJP}|`jML#hBvrr322ZbE{gCo0ndJa{- zYN8$_IGVMPd07^RV07e^0C}WxGwNNM+28#LBb6?>on`1;1i>JqC~%1b-CS-_^#us# zI(sob)c1pIg@B1JGj~I@j1w-QF-T^72Yu(H|Jt*w}iu zN1O4rG)&%h-U9rWOZ@N@))}w0Y1g9%;7NWo5XS+D@~OtYedZMrB_)#4f|om(zK(k& zN5UQjTZMB5SQtfF%35i(l}h_pvSoVze!L2mb(-2Jc{x2cHX9I$ zN}zQ*6nt5Huhn^@2_BUi_a!N;>(Ft)ri@|pPVX$GcuWDgSqSpkFKNl_^LMLnP!;SE z?@_|kUyUQ`*se~&eAKnY?`@BpHV#h8$dPb?SqTZHzhnPN6gBVP@c*c7`mGH zA!!I7d%vNvk^J#vtAyQb z03DyQw7go&#Ke+Zq07+F&`{8*w5U-T!6}?NALQ%<*U-=~`1t+pvPbg-fJ6l!JkWo; zid#Dm>cIUUS#Y5-b2S4{6iRCw=r7&WmIGaflTttb=`AW`07ZXXTP2?W{l5GEFfH(( z=7Ub(p~pYl1nw@=v{l=GbUM{`*9?I`at~6pHa5JV7g}C>_#l4Bjx?W=XGe-C6K>riub+4< znvm`^f_?Ywtz~4aD}%0jvW>53wCLBncjCcQnVCWq`;ndwhvS1CFi;0fE3UC5GJ?jQ zP*+r>S!yFpLDv7MQac+fOfY3FKM#scp6l)xf#MRzYvFgm@Ci&x1gA*u zgG+bFUHE?z?^*u(hGzh62(6Me;3h4#{N&wE@qZBl$=|Q4FeCM$fQs}C2w53}BTiBX zn!Qztd-xQb=o~wBXdMRZbAxR$t0o;FQW!Rk5Vy88UGD-rIxa2_Z@p36r4DwX2dfJ`J5jp zcJ52*`%65A;UhhgE1`W@pP7;L!z&CR*jT*x3XO$*V>1z;2gg|bfZ#lA9-jr( z(khj58Y|o>YUT$c_o8+r1N4*vX;WoqvW^jxP-53o4>^lGeIXQ5ADhLG)+jh<_O~@z zkTkKS+hPom*_zn}*SYCwQ7~mNr;HZmH{20(1r!?{Fg8T2UdwLY-Bu5jM3hITKPp(r z3@{Q`LaN6B`!OF#!|>iOs>d)HS8)`Ia}(49R4;xo9p#P3_uuzkl~&H`Ik0?ta4=jP z#0@ssyu$)1)41(@?U6x6%YK!p#d)JOmyBcc?90|90?Oeb4OI;= zpmAmr&c&ESq0ytzlc1Lx&F6^^*jVw+WhGeO?kuy7&AQ`P3_u6kU7yvl3cHMbO7dGx zNTC;4f&RlGQP@y+ZWIm?a-0}1fRk`w<=@FuxvB(uQIyR`9GJ+|Wl`JXo9|{AIrfCVmS#QF)$Ec$Z3Y1Xd z@=r`zqAA+|;DONZm5h0msNRhgDNsn&hV7!+27b8# zZcUU3Sr#;kflrGgfjwl_rP zG?Ww8=&k~Y8+r~V^>=hq3OkAy6X?fecVI?dCn{ORheKh`KFXVYHpq!iNQ#b|yzNd1?;y!ZIXvh0S|+lz5!!!023B0iZz@s}6+;?iaP}MPz0iBq3S2%N9SGBnm zX1R8GTL#QCH8kKTOJknY@d;i`Y*xkTt<^%`BUHZ-A5pfBkj&d$7Spn;Q@tP>n_N_+ zcAi|+#ojfsp9feq?*F1kB-Bp*<#CtU#RLSNvwI}@5>O_-SHPg}U#N=9H$Sb)6>R#w ze3q370@V0`+Rj673xEfnW8X;Z4pwjmg#>2E^5$#IX^c%~X1bi#NWAOf-U5_h!d@Y| z*HfO8Ws@!on~l0if`Ac4)c-56vgg9p0r=uuSPOdb)1#CgpA;W1khK7isVy^Ch5kVG zR$a=YMcY?5Ad5eLwk-`N-e(t_&5KiI?(7uwWIlV$AN~U-^OaUlehJ-!`^f+}k6qA6 z?`^;rCJRu<+w^oTq1lcZ^HF3(rObJfQ~svrMPL#h9R(7}Hgb^ZT()lO&*;vu-R)9x5- zRNj&qyBFU%02#GvJ_nPQh7#X>@bChNm$1uIwa%U%{DAE!3^+nMk$J9(BL{Ke$er8sOlwW2_~5r;~_RRi&Tn zniw)Hl$ZLM?y3xpOV7wK>Yvc$SuF?fe$p>H4^EH=Q#^l)mWPi|TuEd}ddB9IwG(h> z;F_GA3-WuRCqusQS5VztyP-KKb4&X36Ce+1T)_XlqRfBoJy=|ag$!(4Fb&p-T*GcJ z3%2p!k;PpHedPvPD~GWL5N&6IzP3h^&%aR$-<`R~*rPqvcMgyT`qPi6B1-;Rh`!9h z`EVY{kb&)WSRCw_NI05HU91PWvAqLp4FlKZhK2n*bujZ?t;qvQRHF{Wh9N)>i56`w z-_Tyv$W3Mj?ZkfBm6Nmjmy-4LznrYT{$p%5ADBUr1)4EV-|}JzZIG2&TH*<0S9Jd@ zswfG*3A8)`?QkDU;ypFeen6)Tjwq6zvovwk7QR+LW}%~j!6d1|F8_o_D0ITBKQ`4{ zB7m%%ah46T(}mv(&cLBVO42f|>dfM5$lqmv&NR7t1JJhG;)&Bs7CCW2a>!?g_BtAI zz;vXb7!(?XAv`PB>D73qV~}jM@Tgt`B=f5O)On7?*ldF-^x9ldt!J9zM1wYX9vIgB z$~PnF-qa$MsU!>*GVfPE?(EwaGS+_@kUkG|S^b!O3E2|PFFG_s|9d}-mxRRA7)htx z-C6#?Yn7VfKCX2pn(=W3l8pqA_P%}SojQ00USzZfbZh45 z>%+@abgJ!+BF$~zIHSc~;kJ`&iPe{Up!4N680eOp4L-WtAS1W56p|5_-+oQy>w`nqLKxQ4ZeU2`4%Kw4|NB>r;Jcj)PmSG(`Pp5u7tCA>WcY__!tAZfzp3E9fo01*sjGgPJf5E*nm* zF5(9R{58sXG@<{L2S`_pk+t%7#}f#Ra*4(Aq1Ew(T@O8P%O_lvT({k;v>=a;XJ=d5O~NhYUNd!}wzy?^iFt0Q;Ud#5&k zc35Tjy>Fm1_z!pMM2ZaS=&s9oUr%pVn~vNKQKU?&1g-Lz`BUn@SP-|28+(Cf zMAauBrH8I>(hor_7=804-YaFQ?W~${VI!q^#c%xby3fRFzY(>rbU*C&KK$ve?KGe^ zB=9RM@u*_Do1<_-@y>%Mbj~9T@aiEzb2>2Rs55hrTmp=mYVk2m+GxE8ciN%S z7nj?*F=jb63Ob2=05VUX3T_>+1)&o}_4KBz9zcVyDi6Jmc|j{4g4uK(2P%}%@OxSo@uZWUe7*6vKv zgD3{jPQ%KnC=ZJ!3<8z%Y>7W}G>t5~y3C1he|2=4>Xu&ND z(?`y8qo)!}E;fT=nf-ynhVLB4Ox!C!HCZsZgf!3-5s)a~+p7aNEq~3CC{&i8|FY95 z31)Yi0rWBr90x2+POcN*2I=kfudw=btT#ODY-^LzJ-oqiL#z{_FgXE0gQ+BF@F!r{ zK1!7Lf4MUCE0ms-Q+l2zDE1T}e1Jln|NJ>@X+p8ZVC4TkI+Tm={xz%S^0?mN@mc7T z)m!zsdeaxGj8vcIzk*yqJQ@C6TqES;Th=d<5OL%4+2R}TEH2}`+1XVYaCiqdVl2`Egj(?joaLMU@-c-@@vT# zi`FcSK_U0L2dgfm%5wGD`ium}(w<5EuZEgi>2i;rV6SUxlyy^go z(?FdPl&PVkT`}>V zvG{9|FfmUcF3|r`cIP_;f%dvi;7*3Y(x>@|2nXZms2x#mh=BoS>z5Na&Ur$kyTibA z>}p^=of+HmSsUA|)Cc=LXky&+b6*0-x&Mvfw}Gi_-KVnbfLEyP6f5A1q^3%}xM6uA z<(55205-bUle1oeNdU3UEL@cQ>hz6T=MM%3Lx~>~4WIA7Qc<7tkzwb)DoS3KB;F1V zFpC$MM1RkHajL<>`vDBJ@WkuY>1;^%JcXDSX=&M@0~U1L@cSYQ^s5-V9`F*S0-o(@ zK$C8Fe;!^-U5$u1OF&Kd46poPF#1{o-0N1*avyfO!d!BpU~bO!DwoW%mDkX3hQyy{ zNnZOR(&Rb9h~wh#!*k3m=+LW-yMjv}+RgEaxmKpm3Kg8 zEbO1-Hin!3e>m|+OSyox8Q3x9q2~s~#0c<^C8R7UgtzLR<`b8q-0v!L=g$`}k#{ZP zBV63U=%7c5=*5ovZBNxZrYk8(4dBdmr1Kp6WuXVRRh(^dXFX1jP!j?$;0(*&U!72| zm!H0?gffYOhE-U@3;y<7tEz_yiVL)q7tMHT-@(;7mlW3~gi8?|x3Q>EtctUaOP(6#Xjp8+G%nW6pu!%*U=PD=b{xbf)9?waX7Le8* z%KB6$N)N}hXHUaPo5-koam&V?Rq6Yin3a9nH5Q(r@C{wg;j!x>KY`b(xIww*N=`Q9 z86vgFW(PH);DfslB0iiYq_U(@s|RKh<5GR50;@lJdJPr3k2fP?c!F+N@;aFnobt32 z=701ouU#qIIcw#ipDt)P=??Wl>|A{MmN+O^TLj(2V>P0wQwS3U}Q94>moOT_Q&8DS3Vt=}u|1tbFnQ?G?S*N-hN zS%)7#<;(ObK;{BSD>(JAwhIo+Kf)nq#)ZKd_l@IfJgEO$HP`x=be6`M%-nL+F5@^liQA}YiZYs& zm%NPSHW;hnB@;ultC^^gw@`8>$87V$Vnt@9NZ z6xpBqH|(2zd7c;NdCuoNm+$9!zUN@6_an!wN|Ce1@>LP6s4xoL5U|UfsKBsH0TITH#mP;bG5F^dSu6y4(^KKgdU(U=#;d)H)919&}P(o-v>dq z%d=I`9G&As0p|sFMO>?0V!FcgO_m~->4??J)AVE2-8q5ZkN2cFy5lp;7XMYNz1LC= z(57RNfL*!Dt!_+lE1&;EX`D*j9)7hX?#Pj2bf0P&CNMtkc-(n7kb_o?Mh`R;;z4v_ z;d{v8%}#fHVN$7(hD`<k1Gv=N$_#|LE{i=YW2zuG@>&zw;P`80N)sc^@k_pd_3T zG+~RhTWQBplnS|O)9Gps(n zl0f;@Sg6!M7Zoq1zo~uRZ4YdNE?!BL;~sY>odb&H1V&S7n5#H1H|?zC9p-gs@k^at zK-Dh1b9J~pHq`po&3q(5+Q9XXqdye{)0?p&hy38q*Ct82&~e7T$#K%u)K>Ei8wB<< zqGcx>Szk^(-%rbR$R9*^o9^U4Yxgi+e!7Zd3@dW)bzadFstfjGy6%q`e+e?q_9t|v zPXrmBy?vt?rkA_y3iOE4*m;e%h;sTnGa3$*ZCjYR*0_cSI=`{TIE zdF109DllST{i8^@+E-*m zEBBt6mIE(4G3xXm6&F8i3E+X_uM37IPY>1{6rXA~S-&rd4oM85A z5pLUng0s7ES8si5{1-X^b;f+y@jX?U{HLc`JaRm1a2u+35NJU+;g)%b%w#TBH^aEF ztc^K+u%NPvP+i-2{j5-i34r>02e~Eu`=?CcI+I6g0IfjJF-rc^ZOZqDCg^Lqc%ah) zy3}(sno5h%r0JLAxvQ2-;ioFRd9~|8@=&Ib+mj)2v37<9np1i6fMw0lzMcD^DY0N& zc`A413vXGyiLo2)mDbl!d8 zzS=N&tB%m3WkM0h%NBEkgGq>!R7=0qi;m+LgsqlxEmp3=c6nQheCtv{vTT1@cJ`EI zGkQPJ^7xSgix9U%F5@&O(V#FdHFgebq{$DDQOL@#7ZN5-xbWiP+vR5{Pzjh`7ee)+aUpFMq67j`2^?p;Rh!(f%@(e8d?@!QUV}`Cm&RiY_E1pkha7XMsx+_ z>sHKU)8eJ5fxRs=NTO?TG4F4Br;VUW*r_CG-6(}z79=t>-ng{o=H4fxu{CanecA9apQ1Nu0IH*V3EmNyHG<8b00cpu9cO# zI|oJU%_GzW$5iV;4o$nkcmRla077Z%jy>aIAQZ>BwLb&d6Qhm-;M76(Tt^=Om9mZz zT{+KMzC79-U}l!iWX#zx(#LVnGt{@gWEn5p|Fee&XtX E0Nc=_jQ{`u literal 0 HcmV?d00001 diff --git a/mkdocs.yml b/mkdocs.yml index 94a4edcb3..00e03a4ce 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -156,6 +156,7 @@ nav: - Administration: - Authentication: - Overview: 'administration/authentication/overview.md' + - Google: 'administration/authentication/google.md' - Microsoft Entra ID: 'administration/authentication/microsoft-entra-id.md' - Okta: 'administration/authentication/okta.md' - Permissions: 'administration/permissions.md' From 5ddbacaa1f125eca2949ace2f9ea47d11fb2ef1d Mon Sep 17 00:00:00 2001 From: atownson <52260120+atownson@users.noreply.github.com> Date: Fri, 18 Oct 2024 08:49:17 -0500 Subject: [PATCH 15/35] Fixes #17802 - Added opaque background to Rename buttons (#17805) * Added btn-float class to the Rename button * Added btn-float class to the Rename button --- netbox/templates/dcim/component_list.html | 2 +- netbox/templates/dcim/device_list.html | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/netbox/templates/dcim/component_list.html b/netbox/templates/dcim/component_list.html index 6351643e8..6f91aff3e 100644 --- a/netbox/templates/dcim/component_list.html +++ b/netbox/templates/dcim/component_list.html @@ -10,7 +10,7 @@ {% endif %} {% if 'bulk_rename' in actions %} {% with bulk_rename_view=model|validated_viewname:"bulk_rename" %} - {% endwith %} diff --git a/netbox/templates/dcim/device_list.html b/netbox/templates/dcim/device_list.html index 41ef8fc73..493b652f5 100644 --- a/netbox/templates/dcim/device_list.html +++ b/netbox/templates/dcim/device_list.html @@ -78,7 +78,7 @@ {% if 'bulk_edit' in actions %}

{% bulk_edit_button model query_params=request.GET %} -
From ac9f561372c02a7708cb859a06bf2bf67239d15d Mon Sep 17 00:00:00 2001 From: Alexander Haase Date: Fri, 18 Oct 2024 15:44:17 +0200 Subject: [PATCH 16/35] Fix social auth for Entra ID Previously Azure AD was renamed to Entra ID. However, as django social auth didn't change its API, just the display names must be changed but not the API names. --- docs/administration/authentication/microsoft-entra-id.md | 2 +- netbox/netbox/authentication/__init__.py | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/administration/authentication/microsoft-entra-id.md b/docs/administration/authentication/microsoft-entra-id.md index 3451c656f..b44499fbe 100644 --- a/docs/administration/authentication/microsoft-entra-id.md +++ b/docs/administration/authentication/microsoft-entra-id.md @@ -16,7 +16,7 @@ Under the Azure Active Directory dashboard, navigate to **Add > App registration Enter a name for the registration (e.g. "NetBox") and ensure that the "single tenant" option is selected. -Under "Redirect URI", select "Web" for the platform and enter the path to your NetBox installation, ending with `/oauth/complete/entraid-oauth2/`. Note that this URI **must** begin with `https://` unless you are referencing localhost (for development purposes). +Under "Redirect URI", select "Web" for the platform and enter the path to your NetBox installation, ending with `/oauth/complete/azuread-oauth2/`. Note that this URI **must** begin with `https://` unless you are referencing localhost (for development purposes). ![App registration parameters](../../media/authentication/azure_ad_app_registration.png) diff --git a/netbox/netbox/authentication/__init__.py b/netbox/netbox/authentication/__init__.py index f80454f99..7c2df4200 100644 --- a/netbox/netbox/authentication/__init__.py +++ b/netbox/netbox/authentication/__init__.py @@ -20,10 +20,10 @@ AUTH_BACKEND_ATTRS = { 'amazon': ('Amazon AWS', 'aws'), 'apple': ('Apple', 'apple'), 'auth0': ('Auth0', None), - 'entraid-oauth2': ('Microsoft Entra ID', 'microsoft'), - 'entraid-b2c-oauth2': ('Microsoft Entra ID', 'microsoft'), - 'entraid-tenant-oauth2': ('Microsoft Entra ID', 'microsoft'), - 'entraid-v2-tenant-oauth2': ('Microsoft Entra ID', 'microsoft'), + 'azuread-oauth2': ('Microsoft Entra ID', 'microsoft'), + 'azuread-b2c-oauth2': ('Microsoft Entra ID', 'microsoft'), + 'azuread-tenant-oauth2': ('Microsoft Entra ID', 'microsoft'), + 'azuread-v2-tenant-oauth2': ('Microsoft Entra ID', 'microsoft'), 'bitbucket': ('BitBucket', 'bitbucket'), 'bitbucket-oauth2': ('BitBucket', 'bitbucket'), 'digitalocean': ('DigitalOcean', 'digital-ocean'), From d8c5147e02324405d8491291e43a0a2d6ec277e0 Mon Sep 17 00:00:00 2001 From: bctiemann Date: Fri, 18 Oct 2024 10:47:05 -0400 Subject: [PATCH 17/35] Fixes: #17732 - Add a background-color to img elements in docs to ensure readability in dark mode (#17790) * Add a background-color to img elements in docs to ensure readability in dark mode * Limit style changes to those within CMS content blocks; update colors of main netbox_logo.svg * Add a white stroke to the main logo * Add light & dark mode versions of the NetBox logo --------- Co-authored-by: Jeremy Stretch --- docs/development/style-guide.md | 2 +- docs/extra.css | 4 ++++ docs/index.md | 3 ++- docs/netbox_logo_dark.svg | 24 +++++++++++++++++++ ...{netbox_logo.svg => netbox_logo_light.svg} | 0 5 files changed, 31 insertions(+), 2 deletions(-) create mode 100644 docs/netbox_logo_dark.svg rename docs/{netbox_logo.svg => netbox_logo_light.svg} (100%) diff --git a/docs/development/style-guide.md b/docs/development/style-guide.md index 0d4caf395..9d6630de0 100644 --- a/docs/development/style-guide.md +++ b/docs/development/style-guide.md @@ -76,4 +76,4 @@ When adding a new dependency, a short description of the package and the URL of * When referring to NetBox in writing, use the proper form "NetBox," with the letters N and B capitalized. The lowercase form "netbox" should be used in code, filenames, etc. but never "Netbox" or any other deviation. -* There is an SVG form of the NetBox logo at [docs/netbox_logo.svg](../netbox_logo.svg). It is preferred to use this logo for all purposes as it scales to arbitrary sizes without loss of resolution. If a raster image is required, the SVG logo should be converted to a PNG image of the prescribed size. +* There are SVG forms of the NetBox logo for both [light mode](../netbox_logo_light.svg) and [dark mode](../netbox_logo_dark.svg) available. It is preferred to use the SVG logo for all purposes as it scales to arbitrary sizes without loss of resolution. If a raster image is required, the SVG logo should be converted to a PNG image of the desired size. diff --git a/docs/extra.css b/docs/extra.css index e953fa14c..4b8cd87fe 100644 --- a/docs/extra.css +++ b/docs/extra.css @@ -5,6 +5,10 @@ img { margin-right: auto; } +.md-content img { + background-color: rgba(255, 255, 255, 0.64); +} + /* Tables */ table { margin-bottom: 24px; diff --git a/docs/index.md b/docs/index.md index 5ef650ca6..a79ab03b4 100644 --- a/docs/index.md +++ b/docs/index.md @@ -1,4 +1,5 @@ -![NetBox](netbox_logo.svg "NetBox logo"){style="height: 100px; margin-bottom: 3em"} +![NetBox](netbox_logo_light.svg#only-light "NetBox logo"){style="height: 100px; margin-bottom: 3em; background: none;"} +![NetBox](netbox_logo_dark.svg#only-dark "NetBox logo"){style="height: 100px; margin-bottom: 3em; background: none;"} # The Premier Network Source of Truth diff --git a/docs/netbox_logo_dark.svg b/docs/netbox_logo_dark.svg new file mode 100644 index 000000000..958a1d401 --- /dev/null +++ b/docs/netbox_logo_dark.svg @@ -0,0 +1,24 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/netbox_logo.svg b/docs/netbox_logo_light.svg similarity index 100% rename from docs/netbox_logo.svg rename to docs/netbox_logo_light.svg From e13bc0694d02214e716773e6c43804cb2c645556 Mon Sep 17 00:00:00 2001 From: Arthur Hanson Date: Fri, 18 Oct 2024 07:48:15 -0700 Subject: [PATCH 18/35] 17374 correct background color in dark mode for active list item (#17792) Co-authored-by: Jeremy Stretch --- netbox/project-static/dist/netbox.css | Bin 554652 -> 554811 bytes .../styles/overrides/_tabler.scss | 5 +++++ 2 files changed, 5 insertions(+) diff --git a/netbox/project-static/dist/netbox.css b/netbox/project-static/dist/netbox.css index 081c9aa6326820ac4c82d6f60f7b869b85a59d4e..cd66ffa0fc5dd4feecb08942203ae83d8d2c3549 100644 GIT binary patch delta 99 zcmbR9R&n<`#fBEf7N!>F7M2#)7Pc1lEgY#4)9tf4#klDmSbMnJB3HHpqjMSpc5+GY-@`Mg{7=L?81c!wj00lQA^Z)<= delta 31 mcmdn}PI1m##fBEf7N!>F7M2#)7Pc1lEgY#4+gTzx%;f;aFbbCd diff --git a/netbox/project-static/styles/overrides/_tabler.scss b/netbox/project-static/styles/overrides/_tabler.scss index 252da8f4a..6f7c7cc8c 100644 --- a/netbox/project-static/styles/overrides/_tabler.scss +++ b/netbox/project-static/styles/overrides/_tabler.scss @@ -131,6 +131,11 @@ body[data-bs-theme=dark] { .toast { color: var(--#{$prefix}body-color); } + .table-primary { + --tblr-table-bg: rgba(var(--tblr-secondary-rgb), 0.48); + --tblr-table-hover-bg: inherit; + --tblr-table-hover-color: inherit; + } } // Do not apply padding to elements inside a

From a2cd4d09834945d8d914d423b5e41745feca6d5e Mon Sep 17 00:00:00 2001
From: Arthur Hanson 
Date: Fri, 18 Oct 2024 07:55:17 -0700
Subject: [PATCH 19/35] 17635 fix script AbortTransaction (#17764)

* 17635 fix script AbortTransaction

* 17635 review changes
---
 netbox/extras/jobs.py | 1 -
 1 file changed, 1 deletion(-)

diff --git a/netbox/extras/jobs.py b/netbox/extras/jobs.py
index 64a7d6a69..a913fe456 100644
--- a/netbox/extras/jobs.py
+++ b/netbox/extras/jobs.py
@@ -49,7 +49,6 @@ class ScriptJob(JobRunner):
                 script.log_info(message=_("Database changes have been reverted automatically."))
                 if script.failed:
                     logger.warning("Script failed")
-                    raise
 
         except Exception as e:
             if type(e) is AbortScript:

From 1c4a1e075d14ce0f9ea942ce579ccd305a7f3e90 Mon Sep 17 00:00:00 2001
From: Ali Al-Ebrahim <84152592+mi3law@users.noreply.github.com>
Date: Fri, 18 Oct 2024 18:41:23 +0200
Subject: [PATCH 20/35] Update README.md to point to NetBox logo URL

The NetBox logo is referenced at https://github.com/netbox-community/netbox/blob/develop/docs/netbox_logo.svg but that no longer exists as the logo has been changed to https://github.com/netbox-community/netbox/blob/develop/docs/netbox_logo_dark.svg (or _light.svg -- should add handling for that but seems like overkill)

Updated the README to reflect this to properly render the logo.
---
 README.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/README.md b/README.md
index 0c793b8a4..e3829c2cc 100644
--- a/README.md
+++ b/README.md
@@ -1,5 +1,5 @@
 
- NetBox logo + NetBox logo

The cornerstone of every automated network

Latest release License From bb06b733c4083a852d60d108a0098f21fb465769 Mon Sep 17 00:00:00 2001 From: github-actions <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 19 Oct 2024 05:02:04 +0000 Subject: [PATCH 21/35] Update source translation strings --- netbox/translations/en/LC_MESSAGES/django.po | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/netbox/translations/en/LC_MESSAGES/django.po b/netbox/translations/en/LC_MESSAGES/django.po index 4748feb46..be235792c 100644 --- a/netbox/translations/en/LC_MESSAGES/django.po +++ b/netbox/translations/en/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-18 05:01+0000\n" +"POT-Creation-Date: 2024-10-19 05:01+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -7888,15 +7888,15 @@ msgstr "" msgid "Database changes have been reverted automatically." msgstr "" -#: netbox/extras/jobs.py:56 +#: netbox/extras/jobs.py:55 msgid "Script aborted with error: " msgstr "" -#: netbox/extras/jobs.py:66 +#: netbox/extras/jobs.py:65 msgid "An exception occurred: " msgstr "" -#: netbox/extras/jobs.py:71 +#: netbox/extras/jobs.py:70 msgid "Database changes have been reverted due to error." msgstr "" From 5940f5fa618d1d3134c92783f60951a83d1dc422 Mon Sep 17 00:00:00 2001 From: Jeremy Stretch Date: Mon, 21 Oct 2024 10:35:59 -0400 Subject: [PATCH 22/35] Changelog for #17374, #17635, #17774, #17802, #17789 --- docs/release-notes/version-4.1.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/docs/release-notes/version-4.1.md b/docs/release-notes/version-4.1.md index c29fb3aab..f7e700017 100644 --- a/docs/release-notes/version-4.1.md +++ b/docs/release-notes/version-4.1.md @@ -2,13 +2,21 @@ ## v4.1.5 (FUTURE) +### Enhancements + +* [#17789](https://github.com/netbox-community/netbox/issues/17789) - Provide a single "scope" field for bulk editing VLAN group scope assignments + ### Bug Fixes +* [#17374](https://github.com/netbox-community/netbox/issues/17374) - Fix styling of highlighted table rows in dark mode +* [#17635](https://github.com/netbox-community/netbox/issues/17635) - Ensure AbortTransaction is caught when running a custom script with `commit=False` * [#17710](https://github.com/netbox-community/netbox/issues/17710) - Remove cached fields on CableTermination model from GraphQL API * [#17740](https://github.com/netbox-community/netbox/issues/17740) - Ensure support for image attachments with a `.webp` file extension * [#17749](https://github.com/netbox-community/netbox/issues/17749) - Restore missing `devicetypes` and `children` fields for several objects in GraphQL API * [#17754](https://github.com/netbox-community/netbox/issues/17754) - Remove paginator from version history table under plugin view * [#17759](https://github.com/netbox-community/netbox/issues/17759) - Retain `job_timeout` value when scheduling a recurring custom script +* [#17774](https://github.com/netbox-community/netbox/issues/17774) - Fix SSO login support for Entra ID (formerly Azure AD) +* [#17802](https://github.com/netbox-community/netbox/issues/17802) - Fix background color for bulk rename buttons in list views --- From 62512967762706f5a86a6c9046658cd03319d79f Mon Sep 17 00:00:00 2001 From: Jeremy Stretch Date: Thu, 24 Oct 2024 08:27:01 -0400 Subject: [PATCH 23/35] Remove subjective priority reasons --- .github/ISSUE_TEMPLATE/01-feature_request.yaml | 1 - .github/ISSUE_TEMPLATE/02-bug_report.yaml | 1 - 2 files changed, 2 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/01-feature_request.yaml b/.github/ISSUE_TEMPLATE/01-feature_request.yaml index f0138a22a..9a178d70f 100644 --- a/.github/ISSUE_TEMPLATE/01-feature_request.yaml +++ b/.github/ISSUE_TEMPLATE/01-feature_request.yaml @@ -36,7 +36,6 @@ body: options: - I volunteer to perform this work (if approved) - I'm a NetBox Labs customer - - This is a very minor change - N/A default: 3 validations: diff --git a/.github/ISSUE_TEMPLATE/02-bug_report.yaml b/.github/ISSUE_TEMPLATE/02-bug_report.yaml index a8a2cc45b..1bd20a667 100644 --- a/.github/ISSUE_TEMPLATE/02-bug_report.yaml +++ b/.github/ISSUE_TEMPLATE/02-bug_report.yaml @@ -31,7 +31,6 @@ body: options: - I volunteer to perform this work (if approved) - I'm a NetBox Labs customer - - This is preventing me from using NetBox - N/A default: 3 validations: From 97eb5bda505cccd80fcae9f36922e5d1d1be1dd7 Mon Sep 17 00:00:00 2001 From: Jeremy Stretch Date: Tue, 22 Oct 2024 15:35:48 -0400 Subject: [PATCH 24/35] Closes #17832: Don't validate terminations on Cable instance when importing from serialzied data --- netbox/dcim/models/cables.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/netbox/dcim/models/cables.py b/netbox/dcim/models/cables.py index 9cec965a3..2a4748610 100644 --- a/netbox/dcim/models/cables.py +++ b/netbox/dcim/models/cables.py @@ -164,7 +164,7 @@ class Cable(PrimaryModel): if self.length is not None and not self.length_unit: raise ValidationError(_("Must specify a unit when setting a cable length")) - if self._state.adding and (not self.a_terminations or not self.b_terminations): + if self._state.adding and self.pk is None and (not self.a_terminations or not self.b_terminations): raise ValidationError(_("Must define A and B terminations when creating a new cable.")) if self._terminations_modified: From ce67d2c13be40088516ff4cac43d036c935214ce Mon Sep 17 00:00:00 2001 From: xee8ai Date: Wed, 23 Oct 2024 16:28:08 +0200 Subject: [PATCH 25/35] Fix ambiguous shebang in netbox/manage.py. --- netbox/manage.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/netbox/manage.py b/netbox/manage.py index 2ce3867f3..737592ae8 100755 --- a/netbox/manage.py +++ b/netbox/manage.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 import os import sys From ac12eae0b761f9019e9ef9d5be7b795bab60132d Mon Sep 17 00:00:00 2001 From: Jeremy Stretch Date: Thu, 24 Oct 2024 16:41:14 -0400 Subject: [PATCH 26/35] Fix issue templates --- .github/ISSUE_TEMPLATE/01-feature_request.yaml | 2 +- .github/ISSUE_TEMPLATE/02-bug_report.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/01-feature_request.yaml b/.github/ISSUE_TEMPLATE/01-feature_request.yaml index 9a178d70f..8b505bb4e 100644 --- a/.github/ISSUE_TEMPLATE/01-feature_request.yaml +++ b/.github/ISSUE_TEMPLATE/01-feature_request.yaml @@ -37,7 +37,7 @@ body: - I volunteer to perform this work (if approved) - I'm a NetBox Labs customer - N/A - default: 3 + default: 2 validations: required: true - type: textarea diff --git a/.github/ISSUE_TEMPLATE/02-bug_report.yaml b/.github/ISSUE_TEMPLATE/02-bug_report.yaml index 1bd20a667..556120d63 100644 --- a/.github/ISSUE_TEMPLATE/02-bug_report.yaml +++ b/.github/ISSUE_TEMPLATE/02-bug_report.yaml @@ -32,7 +32,7 @@ body: - I volunteer to perform this work (if approved) - I'm a NetBox Labs customer - N/A - default: 3 + default: 2 validations: required: true - type: input From 69e1394fef838e698c0f5cb0a212b5102a5d6b38 Mon Sep 17 00:00:00 2001 From: Alexander Haase Date: Wed, 23 Oct 2024 21:39:00 +0200 Subject: [PATCH 27/35] Fix job field validation Previously, fields in the Job model were not validated when the job was created. Now 'full_clean()' is called before saving the job to ensure valid data. --- netbox/core/models/jobs.py | 6 ++++-- netbox/netbox/tests/test_jobs.py | 16 ++++++++-------- 2 files changed, 12 insertions(+), 10 deletions(-) diff --git a/netbox/core/models/jobs.py b/netbox/core/models/jobs.py index e1b5715dd..3cfea3e2a 100644 --- a/netbox/core/models/jobs.py +++ b/netbox/core/models/jobs.py @@ -130,7 +130,7 @@ class Job(models.Model): super().clean() # Validate the assigned object type - if self.object_type not in ObjectType.objects.with_feature('jobs'): + if self.object_type and self.object_type not in ObjectType.objects.with_feature('jobs'): raise ValidationError( _("Jobs cannot be assigned to this object type ({type}).").format(type=self.object_type) ) @@ -223,7 +223,7 @@ class Job(models.Model): rq_queue_name = get_queue_for_model(object_type.model if object_type else None) queue = django_rq.get_queue(rq_queue_name) status = JobStatusChoices.STATUS_SCHEDULED if schedule_at else JobStatusChoices.STATUS_PENDING - job = Job.objects.create( + job = Job( object_type=object_type, object_id=object_id, name=name, @@ -233,6 +233,8 @@ class Job(models.Model): user=user, job_id=uuid.uuid4() ) + job.full_clean() + job.save() # Run the job immediately, rather than enqueuing it as a background task. Note that this is a synchronous # (blocking) operation, and execution will pause until the job completes. diff --git a/netbox/netbox/tests/test_jobs.py b/netbox/netbox/tests/test_jobs.py index cb3024038..52a7bd97a 100644 --- a/netbox/netbox/tests/test_jobs.py +++ b/netbox/netbox/tests/test_jobs.py @@ -5,7 +5,7 @@ from django.utils import timezone from django_rq import get_queue from ..jobs import * -from core.models import Job +from core.models import DataSource, Job from core.choices import JobStatusChoices @@ -68,7 +68,7 @@ class EnqueueTest(JobRunnerTestCase): """ def test_enqueue(self): - instance = Job() + instance = DataSource() for i in range(1, 3): job = TestJobRunner.enqueue(instance, schedule_at=self.get_schedule_at()) @@ -76,13 +76,13 @@ class EnqueueTest(JobRunnerTestCase): self.assertEqual(TestJobRunner.get_jobs(instance).count(), i) def test_enqueue_once(self): - job = TestJobRunner.enqueue_once(instance=Job(), schedule_at=self.get_schedule_at()) + job = TestJobRunner.enqueue_once(instance=DataSource(), schedule_at=self.get_schedule_at()) self.assertIsInstance(job, Job) self.assertEqual(job.name, TestJobRunner.__name__) def test_enqueue_once_twice_same(self): - instance = Job() + instance = DataSource() schedule_at = self.get_schedule_at() job1 = TestJobRunner.enqueue_once(instance, schedule_at=schedule_at) job2 = TestJobRunner.enqueue_once(instance, schedule_at=schedule_at) @@ -91,7 +91,7 @@ class EnqueueTest(JobRunnerTestCase): self.assertEqual(TestJobRunner.get_jobs(instance).count(), 1) def test_enqueue_once_twice_different_schedule_at(self): - instance = Job() + instance = DataSource() job1 = TestJobRunner.enqueue_once(instance, schedule_at=self.get_schedule_at()) job2 = TestJobRunner.enqueue_once(instance, schedule_at=self.get_schedule_at(2)) @@ -100,7 +100,7 @@ class EnqueueTest(JobRunnerTestCase): self.assertEqual(TestJobRunner.get_jobs(instance).count(), 1) def test_enqueue_once_twice_different_interval(self): - instance = Job() + instance = DataSource() schedule_at = self.get_schedule_at() job1 = TestJobRunner.enqueue_once(instance, schedule_at=schedule_at) job2 = TestJobRunner.enqueue_once(instance, schedule_at=schedule_at, interval=60) @@ -112,7 +112,7 @@ class EnqueueTest(JobRunnerTestCase): self.assertEqual(TestJobRunner.get_jobs(instance).count(), 1) def test_enqueue_once_with_enqueue(self): - instance = Job() + instance = DataSource() job1 = TestJobRunner.enqueue_once(instance, schedule_at=self.get_schedule_at(2)) job2 = TestJobRunner.enqueue(instance, schedule_at=self.get_schedule_at()) @@ -120,7 +120,7 @@ class EnqueueTest(JobRunnerTestCase): self.assertEqual(TestJobRunner.get_jobs(instance).count(), 2) def test_enqueue_once_after_enqueue(self): - instance = Job() + instance = DataSource() job1 = TestJobRunner.enqueue(instance, schedule_at=self.get_schedule_at()) job2 = TestJobRunner.enqueue_once(instance, schedule_at=self.get_schedule_at(2)) From 476194f0aaefb5602ab942eb184af87a0b493835 Mon Sep 17 00:00:00 2001 From: Arthur Hanson Date: Mon, 28 Oct 2024 12:04:45 -0700 Subject: [PATCH 28/35] 17460 make ModuleType / DeviceType bulk buttons consistent (#17463) * 17460 make ModuleType / DeviceType bulk buttons consistent * 17460 refactor moduletype/devicetype to use standardized object_children * 17460 refactor moduletype/devicetype to use standardized object_children * 17460 refactor moduletype/devicetype to use standardized object_children --- .../dcim/devicetype/component_templates.html | 15 +--- .../dcim/inc/devicetype_breadcrumbs.html | 2 + .../dcim/inc/moduletype_buttons.html | 38 ++++++++++ netbox/templates/dcim/moduletype.html | 13 +++- netbox/templates/dcim/moduletype/base.html | 48 ------------ .../dcim/moduletype/component_templates.html | 73 +++++++++---------- 6 files changed, 86 insertions(+), 103 deletions(-) create mode 100644 netbox/templates/dcim/inc/devicetype_breadcrumbs.html create mode 100644 netbox/templates/dcim/inc/moduletype_buttons.html delete mode 100644 netbox/templates/dcim/moduletype/base.html diff --git a/netbox/templates/dcim/devicetype/component_templates.html b/netbox/templates/dcim/devicetype/component_templates.html index df9789c00..291c7c988 100644 --- a/netbox/templates/dcim/devicetype/component_templates.html +++ b/netbox/templates/dcim/devicetype/component_templates.html @@ -18,21 +18,8 @@ {% endif %} {% endwith %} {% endblock bulk_edit_controls %} - -{% block bulk_extra_controls %} - {{ block.super }} - {% if request.user|can_add:child_model %} - - {% endif %} -{% endblock bulk_extra_controls %} - diff --git a/netbox/templates/dcim/inc/devicetype_breadcrumbs.html b/netbox/templates/dcim/inc/devicetype_breadcrumbs.html new file mode 100644 index 000000000..02f326ddc --- /dev/null +++ b/netbox/templates/dcim/inc/devicetype_breadcrumbs.html @@ -0,0 +1,2 @@ + + diff --git a/netbox/templates/dcim/inc/moduletype_buttons.html b/netbox/templates/dcim/inc/moduletype_buttons.html new file mode 100644 index 000000000..9ec34f412 --- /dev/null +++ b/netbox/templates/dcim/inc/moduletype_buttons.html @@ -0,0 +1,38 @@ +{% load buttons %} +{% load helpers %} +{% load i18n %} + + +{% if perms.dcim.change_devicetype %} + +{% endif %} diff --git a/netbox/templates/dcim/moduletype.html b/netbox/templates/dcim/moduletype.html index 110db8e20..f57c501cf 100644 --- a/netbox/templates/dcim/moduletype.html +++ b/netbox/templates/dcim/moduletype.html @@ -1,9 +1,20 @@ -{% extends 'dcim/moduletype/base.html' %} +{% extends 'generic/object.html' %} {% load buttons %} {% load helpers %} {% load plugins %} {% load i18n %} +{% block title %}{{ object.manufacturer }} {{ object.model }}{% endblock %} + +{% block breadcrumbs %} + {{ block.super }} + {% include 'dcim/inc/devicetype_breadcrumbs.html' %} +{% endblock %} + +{% block extra_controls %} + {% include 'dcim/inc/moduletype_buttons.html' %} +{% endblock %} + {% block content %}
diff --git a/netbox/templates/dcim/moduletype/base.html b/netbox/templates/dcim/moduletype/base.html deleted file mode 100644 index b7d9026d5..000000000 --- a/netbox/templates/dcim/moduletype/base.html +++ /dev/null @@ -1,48 +0,0 @@ -{% extends 'generic/object.html' %} -{% load buttons %} -{% load helpers %} -{% load plugins %} -{% load i18n %} - -{% block title %}{{ object.manufacturer }} {{ object.model }}{% endblock %} - -{% block breadcrumbs %} - {{ block.super }} - -{% endblock %} - -{% block extra_controls %} - {% if perms.dcim.change_devicetype %} - - {% endif %} -{% endblock %} diff --git a/netbox/templates/dcim/moduletype/component_templates.html b/netbox/templates/dcim/moduletype/component_templates.html index 9c4d59cba..8f4c24478 100644 --- a/netbox/templates/dcim/moduletype/component_templates.html +++ b/netbox/templates/dcim/moduletype/component_templates.html @@ -1,44 +1,37 @@ -{% extends 'dcim/moduletype/base.html' %} +{% extends 'generic/object_children.html' %} {% load render_table from django_tables2 %} {% load helpers %} {% load i18n %} -{% block content %} - {% if perms.dcim.change_moduletype %} -
- {% csrf_token %} -
-
- {% include 'htmx/table.html' %} -
- -
-
- {% else %} -
-

{{ title }}

-
- {% include 'htmx/table.html' %} -
-
- {% endif %} -{% endblock content %} +{% block title %}{{ object.manufacturer }} {{ object.model }}{% endblock %} + +{% block breadcrumbs %} + {{ block.super }} + {% include 'dcim/inc/devicetype_breadcrumbs.html' %} +{% endblock %} + +{% block extra_controls %} + {% include 'dcim/inc/moduletype_buttons.html' %} +{% endblock %} + +{% block bulk_edit_controls %} + {% with bulk_edit_view=child_model|validated_viewname:"bulk_edit" %} + {% if 'bulk_edit' in actions and bulk_edit_view %} + + {% endif %} + {% endwith %} + {% with bulk_rename_view=child_model|validated_viewname:"bulk_rename" %} + {% if 'bulk_rename' in actions and bulk_rename_view %} + + {% endif %} + {% endwith %} +{% endblock bulk_edit_controls %} + From ca210168dfe491ddddfd0bf605ee17d9bb11eefe Mon Sep 17 00:00:00 2001 From: bctiemann Date: Mon, 28 Oct 2024 15:07:59 -0400 Subject: [PATCH 29/35] Fixes: #17358 - Ensure correct comparison of overlapping IPRanges (#17391) * Add new INET lookups for net_host_lt/gt/lte/gte comparisons irrespective of subnet inclusion * Refactor Lookup subclasses to be more DRY * Move comparison_sql to class attribute * Add HostAsInet(Transform) to perform cast * Remove unnecessary Lookup comparison classes * Chain Host and Inet instead of making a new transform --- netbox/ipam/fields.py | 2 ++ netbox/ipam/models/ip.py | 14 +++++++------- netbox/ipam/tests/test_models.py | 29 +++++++++++++++++++++++++++++ 3 files changed, 38 insertions(+), 7 deletions(-) diff --git a/netbox/ipam/fields.py b/netbox/ipam/fields.py index 20341005d..a82976326 100644 --- a/netbox/ipam/fields.py +++ b/netbox/ipam/fields.py @@ -105,6 +105,8 @@ IPAddressField.register_lookup(lookups.NetIn) IPAddressField.register_lookup(lookups.NetHostContained) IPAddressField.register_lookup(lookups.NetFamily) IPAddressField.register_lookup(lookups.NetMaskLength) +IPAddressField.register_lookup(lookups.Host) +IPAddressField.register_lookup(lookups.Inet) class ASNField(models.BigIntegerField): diff --git a/netbox/ipam/models/ip.py b/netbox/ipam/models/ip.py index 0b8e3a8df..868b92450 100644 --- a/netbox/ipam/models/ip.py +++ b/netbox/ipam/models/ip.py @@ -580,15 +580,15 @@ class IPRange(ContactsMixin, PrimaryModel): }) # Check for overlapping ranges - overlapping_range = IPRange.objects.exclude(pk=self.pk).filter(vrf=self.vrf).filter( - Q(start_address__gte=self.start_address, start_address__lte=self.end_address) | # Starts inside - Q(end_address__gte=self.start_address, end_address__lte=self.end_address) | # Ends inside - Q(start_address__lte=self.start_address, end_address__gte=self.end_address) # Starts & ends outside - ).first() - if overlapping_range: + overlapping_ranges = IPRange.objects.exclude(pk=self.pk).filter(vrf=self.vrf).filter( + Q(start_address__host__inet__gte=self.start_address.ip, start_address__host__inet__lte=self.end_address.ip) | # Starts inside + Q(end_address__host__inet__gte=self.start_address.ip, end_address__host__inet__lte=self.end_address.ip) | # Ends inside + Q(start_address__host__inet__lte=self.start_address.ip, end_address__host__inet__gte=self.end_address.ip) # Starts & ends outside + ) + if overlapping_ranges.exists(): raise ValidationError( _("Defined addresses overlap with range {overlapping_range} in VRF {vrf}").format( - overlapping_range=overlapping_range, + overlapping_range=overlapping_ranges.first(), vrf=self.vrf )) diff --git a/netbox/ipam/tests/test_models.py b/netbox/ipam/tests/test_models.py index 8a5d918a9..d14fa0657 100644 --- a/netbox/ipam/tests/test_models.py +++ b/netbox/ipam/tests/test_models.py @@ -36,6 +36,35 @@ class TestAggregate(TestCase): self.assertEqual(aggregate.get_utilization(), 100) +class TestIPRange(TestCase): + + def test_overlapping_range(self): + iprange_192_168 = IPRange.objects.create(start_address=IPNetwork('192.168.0.1/22'), end_address=IPNetwork('192.168.0.49/22')) + iprange_192_168.clean() + iprange_3_1_99 = IPRange.objects.create(start_address=IPNetwork('1.2.3.1/24'), end_address=IPNetwork('1.2.3.99/24')) + iprange_3_1_99.clean() + iprange_3_100_199 = IPRange.objects.create(start_address=IPNetwork('1.2.3.100/24'), end_address=IPNetwork('1.2.3.199/24')) + iprange_3_100_199.clean() + iprange_3_200_255 = IPRange.objects.create(start_address=IPNetwork('1.2.3.200/24'), end_address=IPNetwork('1.2.3.255/24')) + iprange_3_200_255.clean() + iprange_4_1_99 = IPRange.objects.create(start_address=IPNetwork('1.2.4.1/24'), end_address=IPNetwork('1.2.4.99/24')) + iprange_4_1_99.clean() + iprange_4_200 = IPRange.objects.create(start_address=IPNetwork('1.2.4.200/24'), end_address=IPNetwork('1.2.4.255/24')) + iprange_4_200.clean() + # Overlapping range entirely within existing + with self.assertRaises(ValidationError): + iprange_3_123_124 = IPRange.objects.create(start_address=IPNetwork('1.2.3.123/26'), end_address=IPNetwork('1.2.3.124/26')) + iprange_3_123_124.clean() + # Overlapping range starting within existing + with self.assertRaises(ValidationError): + iprange_4_98_101 = IPRange.objects.create(start_address=IPNetwork('1.2.4.98/24'), end_address=IPNetwork('1.2.4.101/24')) + iprange_4_98_101.clean() + # Overlapping range ending within existing + with self.assertRaises(ValidationError): + iprange_4_198_201 = IPRange.objects.create(start_address=IPNetwork('1.2.4.198/24'), end_address=IPNetwork('1.2.4.201/24')) + iprange_4_198_201.clean() + + class TestPrefix(TestCase): def test_get_duplicates(self): From 8279eaff5b7feb31e6cc4f8ee5ecdee01e668a55 Mon Sep 17 00:00:00 2001 From: Jeremy Stretch Date: Mon, 28 Oct 2024 15:22:19 -0400 Subject: [PATCH 30/35] Update source translation strings --- netbox/translations/en/LC_MESSAGES/django.po | 10825 ++++++++--------- 1 file changed, 5060 insertions(+), 5765 deletions(-) diff --git a/netbox/translations/en/LC_MESSAGES/django.po b/netbox/translations/en/LC_MESSAGES/django.po index be235792c..35a1fae7a 100644 --- a/netbox/translations/en/LC_MESSAGES/django.po +++ b/netbox/translations/en/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-19 05:01+0000\n" +"POT-Creation-Date: 2024-10-28 19:20+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -18,8057 +18,7536 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: netbox/account/tables.py:27 netbox/templates/account/token.html:22 -#: netbox/templates/users/token.html:17 netbox/users/forms/bulk_import.py:39 -#: netbox/users/forms/model_forms.py:112 +#: account/tables.py:27 templates/account/token.html:22 +#: templates/users/token.html:17 users/forms/bulk_import.py:39 +#: users/forms/model_forms.py:112 msgid "Key" msgstr "" -#: netbox/account/tables.py:31 netbox/users/forms/filtersets.py:132 +#: account/tables.py:31 users/forms/filtersets.py:132 msgid "Write Enabled" msgstr "" -#: netbox/account/tables.py:35 netbox/core/choices.py:86 -#: netbox/core/tables/jobs.py:29 netbox/core/tables/tasks.py:79 -#: netbox/extras/tables/tables.py:335 netbox/extras/tables/tables.py:566 -#: netbox/templates/account/token.html:43 -#: netbox/templates/core/configrevision.html:26 -#: netbox/templates/core/configrevision_restore.html:12 -#: netbox/templates/core/job.html:69 netbox/templates/core/rq_task.html:16 -#: netbox/templates/core/rq_task.html:73 -#: netbox/templates/core/rq_worker.html:14 -#: netbox/templates/extras/htmx/script_result.html:12 -#: netbox/templates/extras/journalentry.html:22 -#: netbox/templates/generic/object.html:58 netbox/templates/users/token.html:35 +#: account/tables.py:35 core/choices.py:86 core/tables/jobs.py:29 +#: core/tables/tasks.py:79 extras/tables/tables.py:335 +#: extras/tables/tables.py:566 templates/account/token.html:43 +#: templates/core/configrevision.html:26 +#: templates/core/configrevision_restore.html:12 templates/core/job.html:69 +#: templates/core/rq_task.html:16 templates/core/rq_task.html:73 +#: templates/core/rq_worker.html:14 templates/extras/htmx/script_result.html:12 +#: templates/extras/journalentry.html:22 templates/generic/object.html:58 +#: templates/users/token.html:35 msgid "Created" msgstr "" -#: netbox/account/tables.py:39 netbox/templates/account/token.html:47 -#: netbox/templates/users/token.html:39 netbox/users/forms/bulk_edit.py:117 -#: netbox/users/forms/filtersets.py:136 +#: account/tables.py:39 templates/account/token.html:47 +#: templates/users/token.html:39 users/forms/bulk_edit.py:117 +#: users/forms/filtersets.py:136 msgid "Expires" msgstr "" -#: netbox/account/tables.py:42 netbox/users/forms/filtersets.py:141 +#: account/tables.py:42 users/forms/filtersets.py:141 msgid "Last Used" msgstr "" -#: netbox/account/tables.py:45 netbox/templates/account/token.html:55 -#: netbox/templates/users/token.html:47 netbox/users/forms/bulk_edit.py:122 -#: netbox/users/forms/model_forms.py:124 +#: account/tables.py:45 templates/account/token.html:55 +#: templates/users/token.html:47 users/forms/bulk_edit.py:122 +#: users/forms/model_forms.py:124 msgid "Allowed IPs" msgstr "" -#: netbox/account/views.py:114 +#: account/views.py:114 #, python-brace-format msgid "Logged in as {user}." msgstr "" -#: netbox/account/views.py:164 +#: account/views.py:164 msgid "You have logged out." msgstr "" -#: netbox/account/views.py:216 +#: account/views.py:216 msgid "Your preferences have been updated." msgstr "" -#: netbox/account/views.py:239 +#: account/views.py:239 msgid "LDAP-authenticated user credentials cannot be changed within NetBox." msgstr "" -#: netbox/account/views.py:254 +#: account/views.py:254 msgid "Your password has been changed successfully." msgstr "" -#: netbox/circuits/choices.py:21 netbox/dcim/choices.py:20 -#: netbox/dcim/choices.py:102 netbox/dcim/choices.py:185 -#: netbox/dcim/choices.py:237 netbox/dcim/choices.py:1530 -#: netbox/dcim/choices.py:1606 netbox/dcim/choices.py:1656 -#: netbox/virtualization/choices.py:20 netbox/virtualization/choices.py:45 -#: netbox/vpn/choices.py:18 +#: circuits/choices.py:21 dcim/choices.py:20 dcim/choices.py:102 +#: dcim/choices.py:185 dcim/choices.py:237 dcim/choices.py:1530 +#: dcim/choices.py:1606 dcim/choices.py:1656 virtualization/choices.py:20 +#: virtualization/choices.py:45 vpn/choices.py:18 msgid "Planned" msgstr "" -#: netbox/circuits/choices.py:22 netbox/netbox/navigation/menu.py:305 +#: circuits/choices.py:22 netbox/navigation/menu.py:305 msgid "Provisioning" msgstr "" -#: netbox/circuits/choices.py:23 netbox/core/tables/tasks.py:22 -#: netbox/dcim/choices.py:22 netbox/dcim/choices.py:103 -#: netbox/dcim/choices.py:184 netbox/dcim/choices.py:236 -#: netbox/dcim/choices.py:1605 netbox/dcim/choices.py:1655 -#: netbox/extras/tables/tables.py:495 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:25 -#: netbox/templates/users/user.html:37 netbox/users/forms/bulk_edit.py:38 -#: netbox/virtualization/choices.py:22 netbox/virtualization/choices.py:44 -#: netbox/vpn/choices.py:19 netbox/wireless/choices.py:25 +#: circuits/choices.py:23 core/tables/tasks.py:22 dcim/choices.py:22 +#: dcim/choices.py:103 dcim/choices.py:184 dcim/choices.py:236 +#: dcim/choices.py:1605 dcim/choices.py:1655 extras/tables/tables.py:495 +#: ipam/choices.py:31 ipam/choices.py:49 ipam/choices.py:69 ipam/choices.py:154 +#: templates/extras/configcontext.html:25 templates/users/user.html:37 +#: users/forms/bulk_edit.py:38 virtualization/choices.py:22 +#: virtualization/choices.py:44 vpn/choices.py:19 wireless/choices.py:25 msgid "Active" msgstr "" -#: netbox/circuits/choices.py:24 netbox/dcim/choices.py:183 -#: netbox/dcim/choices.py:235 netbox/dcim/choices.py:1604 -#: netbox/dcim/choices.py:1657 netbox/virtualization/choices.py:24 -#: netbox/virtualization/choices.py:43 +#: circuits/choices.py:24 dcim/choices.py:183 dcim/choices.py:235 +#: dcim/choices.py:1604 dcim/choices.py:1657 virtualization/choices.py:24 +#: virtualization/choices.py:43 msgid "Offline" msgstr "" -#: netbox/circuits/choices.py:25 +#: circuits/choices.py:25 msgid "Deprovisioning" msgstr "" -#: netbox/circuits/choices.py:26 +#: circuits/choices.py:26 msgid "Decommissioned" msgstr "" -#: netbox/circuits/choices.py:90 netbox/dcim/choices.py:1617 -#: netbox/tenancy/choices.py:17 +#: circuits/choices.py:90 dcim/choices.py:1617 tenancy/choices.py:17 msgid "Primary" msgstr "" -#: netbox/circuits/choices.py:91 netbox/ipam/choices.py:90 -#: netbox/tenancy/choices.py:18 +#: circuits/choices.py:91 ipam/choices.py:90 tenancy/choices.py:18 msgid "Secondary" msgstr "" -#: netbox/circuits/choices.py:92 netbox/tenancy/choices.py:19 +#: circuits/choices.py:92 tenancy/choices.py:19 msgid "Tertiary" msgstr "" -#: netbox/circuits/choices.py:93 netbox/tenancy/choices.py:20 +#: circuits/choices.py:93 tenancy/choices.py:20 msgid "Inactive" msgstr "" -#: netbox/circuits/filtersets.py:31 netbox/circuits/filtersets.py:198 -#: netbox/dcim/filtersets.py:98 netbox/dcim/filtersets.py:152 -#: netbox/dcim/filtersets.py:212 netbox/dcim/filtersets.py:333 -#: netbox/dcim/filtersets.py:464 netbox/dcim/filtersets.py:1021 -#: netbox/dcim/filtersets.py:1368 netbox/dcim/filtersets.py:1903 -#: netbox/dcim/filtersets.py:2146 netbox/dcim/filtersets.py:2204 -#: netbox/ipam/filtersets.py:339 netbox/ipam/filtersets.py:959 -#: netbox/virtualization/filtersets.py:45 -#: netbox/virtualization/filtersets.py:173 netbox/vpn/filtersets.py:358 +#: circuits/filtersets.py:31 circuits/filtersets.py:198 dcim/filtersets.py:98 +#: dcim/filtersets.py:152 dcim/filtersets.py:212 dcim/filtersets.py:333 +#: dcim/filtersets.py:464 dcim/filtersets.py:1021 dcim/filtersets.py:1368 +#: dcim/filtersets.py:1903 dcim/filtersets.py:2146 dcim/filtersets.py:2204 +#: ipam/filtersets.py:339 ipam/filtersets.py:959 +#: virtualization/filtersets.py:45 virtualization/filtersets.py:173 +#: vpn/filtersets.py:358 msgid "Region (ID)" msgstr "" -#: netbox/circuits/filtersets.py:38 netbox/circuits/filtersets.py:205 -#: netbox/dcim/filtersets.py:105 netbox/dcim/filtersets.py:158 -#: netbox/dcim/filtersets.py:219 netbox/dcim/filtersets.py:340 -#: netbox/dcim/filtersets.py:471 netbox/dcim/filtersets.py:1028 -#: netbox/dcim/filtersets.py:1375 netbox/dcim/filtersets.py:1910 -#: netbox/dcim/filtersets.py:2153 netbox/dcim/filtersets.py:2211 -#: netbox/extras/filtersets.py:509 netbox/ipam/filtersets.py:346 -#: netbox/ipam/filtersets.py:966 netbox/virtualization/filtersets.py:52 -#: netbox/virtualization/filtersets.py:180 netbox/vpn/filtersets.py:353 +#: circuits/filtersets.py:38 circuits/filtersets.py:205 dcim/filtersets.py:105 +#: dcim/filtersets.py:158 dcim/filtersets.py:219 dcim/filtersets.py:340 +#: dcim/filtersets.py:471 dcim/filtersets.py:1028 dcim/filtersets.py:1375 +#: dcim/filtersets.py:1910 dcim/filtersets.py:2153 dcim/filtersets.py:2211 +#: extras/filtersets.py:509 ipam/filtersets.py:346 ipam/filtersets.py:966 +#: virtualization/filtersets.py:52 virtualization/filtersets.py:180 +#: vpn/filtersets.py:353 msgid "Region (slug)" msgstr "" -#: netbox/circuits/filtersets.py:44 netbox/circuits/filtersets.py:211 -#: netbox/dcim/filtersets.py:128 netbox/dcim/filtersets.py:225 -#: netbox/dcim/filtersets.py:346 netbox/dcim/filtersets.py:477 -#: netbox/dcim/filtersets.py:1034 netbox/dcim/filtersets.py:1381 -#: netbox/dcim/filtersets.py:1916 netbox/dcim/filtersets.py:2159 -#: netbox/dcim/filtersets.py:2217 netbox/ipam/filtersets.py:352 -#: netbox/ipam/filtersets.py:972 netbox/virtualization/filtersets.py:58 -#: netbox/virtualization/filtersets.py:186 +#: circuits/filtersets.py:44 circuits/filtersets.py:211 dcim/filtersets.py:128 +#: dcim/filtersets.py:225 dcim/filtersets.py:346 dcim/filtersets.py:477 +#: dcim/filtersets.py:1034 dcim/filtersets.py:1381 dcim/filtersets.py:1916 +#: dcim/filtersets.py:2159 dcim/filtersets.py:2217 ipam/filtersets.py:352 +#: ipam/filtersets.py:972 virtualization/filtersets.py:58 +#: virtualization/filtersets.py:186 msgid "Site group (ID)" msgstr "" -#: netbox/circuits/filtersets.py:51 netbox/circuits/filtersets.py:218 -#: netbox/dcim/filtersets.py:135 netbox/dcim/filtersets.py:232 -#: netbox/dcim/filtersets.py:353 netbox/dcim/filtersets.py:484 -#: netbox/dcim/filtersets.py:1041 netbox/dcim/filtersets.py:1388 -#: netbox/dcim/filtersets.py:1923 netbox/dcim/filtersets.py:2166 -#: netbox/dcim/filtersets.py:2224 netbox/extras/filtersets.py:515 -#: netbox/ipam/filtersets.py:359 netbox/ipam/filtersets.py:979 -#: netbox/virtualization/filtersets.py:65 -#: netbox/virtualization/filtersets.py:193 +#: circuits/filtersets.py:51 circuits/filtersets.py:218 dcim/filtersets.py:135 +#: dcim/filtersets.py:232 dcim/filtersets.py:353 dcim/filtersets.py:484 +#: dcim/filtersets.py:1041 dcim/filtersets.py:1388 dcim/filtersets.py:1923 +#: dcim/filtersets.py:2166 dcim/filtersets.py:2224 extras/filtersets.py:515 +#: ipam/filtersets.py:359 ipam/filtersets.py:979 +#: virtualization/filtersets.py:65 virtualization/filtersets.py:193 msgid "Site group (slug)" msgstr "" -#: netbox/circuits/filtersets.py:56 netbox/circuits/forms/bulk_edit.py:188 -#: netbox/circuits/forms/bulk_edit.py:216 -#: netbox/circuits/forms/bulk_import.py:124 -#: netbox/circuits/forms/filtersets.py:51 -#: netbox/circuits/forms/filtersets.py:171 -#: netbox/circuits/forms/filtersets.py:209 -#: netbox/circuits/forms/model_forms.py:138 -#: netbox/circuits/forms/model_forms.py:154 -#: netbox/circuits/tables/circuits.py:113 netbox/dcim/forms/bulk_edit.py:168 -#: netbox/dcim/forms/bulk_edit.py:329 netbox/dcim/forms/bulk_edit.py:677 -#: netbox/dcim/forms/bulk_edit.py:873 netbox/dcim/forms/bulk_import.py:131 -#: netbox/dcim/forms/bulk_import.py:230 netbox/dcim/forms/bulk_import.py:309 -#: netbox/dcim/forms/bulk_import.py:540 netbox/dcim/forms/bulk_import.py:1311 -#: netbox/dcim/forms/bulk_import.py:1339 netbox/dcim/forms/filtersets.py:87 -#: netbox/dcim/forms/filtersets.py:225 netbox/dcim/forms/filtersets.py:342 -#: netbox/dcim/forms/filtersets.py:439 netbox/dcim/forms/filtersets.py:753 -#: netbox/dcim/forms/filtersets.py:997 netbox/dcim/forms/filtersets.py:1021 -#: netbox/dcim/forms/filtersets.py:1111 netbox/dcim/forms/filtersets.py:1149 -#: netbox/dcim/forms/filtersets.py:1584 netbox/dcim/forms/filtersets.py:1608 -#: netbox/dcim/forms/filtersets.py:1632 netbox/dcim/forms/model_forms.py:137 -#: netbox/dcim/forms/model_forms.py:165 netbox/dcim/forms/model_forms.py:238 -#: netbox/dcim/forms/model_forms.py:463 netbox/dcim/forms/model_forms.py:723 -#: netbox/dcim/forms/object_create.py:391 netbox/dcim/tables/devices.py:153 -#: netbox/dcim/tables/power.py:26 netbox/dcim/tables/power.py:93 -#: netbox/dcim/tables/racks.py:122 netbox/dcim/tables/racks.py:207 -#: netbox/dcim/tables/sites.py:134 netbox/extras/filtersets.py:525 -#: netbox/ipam/forms/bulk_edit.py:218 netbox/ipam/forms/bulk_edit.py:285 -#: netbox/ipam/forms/bulk_edit.py:484 netbox/ipam/forms/bulk_import.py:171 -#: netbox/ipam/forms/bulk_import.py:429 netbox/ipam/forms/filtersets.py:153 -#: netbox/ipam/forms/filtersets.py:231 netbox/ipam/forms/filtersets.py:432 -#: netbox/ipam/forms/filtersets.py:489 netbox/ipam/forms/model_forms.py:205 -#: netbox/ipam/forms/model_forms.py:636 netbox/ipam/tables/ip.py:245 -#: netbox/ipam/tables/vlans.py:118 netbox/ipam/tables/vlans.py:221 -#: netbox/templates/circuits/inc/circuit_termination_fields.html:6 -#: netbox/templates/dcim/device.html:22 -#: netbox/templates/dcim/inc/cable_termination.html:8 -#: netbox/templates/dcim/inc/cable_termination.html:33 -#: netbox/templates/dcim/location.html:37 -#: netbox/templates/dcim/powerpanel.html:22 netbox/templates/dcim/rack.html:20 -#: netbox/templates/dcim/rackreservation.html:28 -#: netbox/templates/dcim/site.html:28 netbox/templates/ipam/prefix.html:56 -#: netbox/templates/ipam/vlan.html:23 netbox/templates/ipam/vlan_edit.html:40 -#: netbox/templates/virtualization/cluster.html:42 -#: netbox/templates/virtualization/virtualmachine.html:95 -#: netbox/virtualization/forms/bulk_edit.py:91 -#: netbox/virtualization/forms/bulk_edit.py:109 -#: netbox/virtualization/forms/bulk_edit.py:124 -#: netbox/virtualization/forms/bulk_import.py:59 -#: netbox/virtualization/forms/bulk_import.py:85 -#: netbox/virtualization/forms/filtersets.py:79 -#: netbox/virtualization/forms/filtersets.py:148 -#: netbox/virtualization/forms/model_forms.py:71 -#: netbox/virtualization/forms/model_forms.py:104 -#: netbox/virtualization/forms/model_forms.py:171 -#: netbox/virtualization/tables/clusters.py:77 -#: netbox/virtualization/tables/virtualmachines.py:63 -#: netbox/vpn/forms/filtersets.py:266 netbox/wireless/forms/model_forms.py:76 -#: netbox/wireless/forms/model_forms.py:118 +#: circuits/filtersets.py:56 circuits/forms/bulk_edit.py:188 +#: circuits/forms/bulk_edit.py:216 circuits/forms/bulk_import.py:124 +#: circuits/forms/filtersets.py:51 circuits/forms/filtersets.py:171 +#: circuits/forms/filtersets.py:209 circuits/forms/model_forms.py:138 +#: circuits/forms/model_forms.py:154 circuits/tables/circuits.py:113 +#: dcim/forms/bulk_edit.py:168 dcim/forms/bulk_edit.py:329 +#: dcim/forms/bulk_edit.py:677 dcim/forms/bulk_edit.py:873 +#: dcim/forms/bulk_import.py:131 dcim/forms/bulk_import.py:230 +#: dcim/forms/bulk_import.py:309 dcim/forms/bulk_import.py:540 +#: dcim/forms/bulk_import.py:1311 dcim/forms/bulk_import.py:1339 +#: dcim/forms/filtersets.py:87 dcim/forms/filtersets.py:225 +#: dcim/forms/filtersets.py:342 dcim/forms/filtersets.py:439 +#: dcim/forms/filtersets.py:753 dcim/forms/filtersets.py:997 +#: dcim/forms/filtersets.py:1021 dcim/forms/filtersets.py:1111 +#: dcim/forms/filtersets.py:1149 dcim/forms/filtersets.py:1584 +#: dcim/forms/filtersets.py:1608 dcim/forms/filtersets.py:1632 +#: dcim/forms/model_forms.py:137 dcim/forms/model_forms.py:165 +#: dcim/forms/model_forms.py:238 dcim/forms/model_forms.py:463 +#: dcim/forms/model_forms.py:723 dcim/forms/object_create.py:391 +#: dcim/tables/devices.py:153 dcim/tables/power.py:26 dcim/tables/power.py:93 +#: dcim/tables/racks.py:122 dcim/tables/racks.py:207 dcim/tables/sites.py:134 +#: extras/filtersets.py:525 ipam/forms/bulk_edit.py:218 +#: ipam/forms/bulk_edit.py:285 ipam/forms/bulk_edit.py:484 +#: ipam/forms/bulk_import.py:171 ipam/forms/bulk_import.py:429 +#: ipam/forms/filtersets.py:153 ipam/forms/filtersets.py:231 +#: ipam/forms/filtersets.py:432 ipam/forms/filtersets.py:489 +#: ipam/forms/model_forms.py:205 ipam/forms/model_forms.py:636 +#: ipam/tables/ip.py:245 ipam/tables/vlans.py:118 ipam/tables/vlans.py:221 +#: templates/circuits/inc/circuit_termination_fields.html:6 +#: templates/dcim/device.html:22 templates/dcim/inc/cable_termination.html:8 +#: templates/dcim/inc/cable_termination.html:33 templates/dcim/location.html:37 +#: templates/dcim/powerpanel.html:22 templates/dcim/rack.html:20 +#: templates/dcim/rackreservation.html:28 templates/dcim/site.html:28 +#: templates/ipam/prefix.html:56 templates/ipam/vlan.html:23 +#: templates/ipam/vlan_edit.html:40 templates/virtualization/cluster.html:42 +#: templates/virtualization/virtualmachine.html:95 +#: virtualization/forms/bulk_edit.py:91 virtualization/forms/bulk_edit.py:109 +#: virtualization/forms/bulk_edit.py:124 virtualization/forms/bulk_import.py:59 +#: virtualization/forms/bulk_import.py:85 virtualization/forms/filtersets.py:79 +#: virtualization/forms/filtersets.py:148 +#: virtualization/forms/model_forms.py:71 +#: virtualization/forms/model_forms.py:104 +#: virtualization/forms/model_forms.py:171 virtualization/tables/clusters.py:77 +#: virtualization/tables/virtualmachines.py:63 vpn/forms/filtersets.py:266 +#: wireless/forms/model_forms.py:76 wireless/forms/model_forms.py:118 msgid "Site" msgstr "" -#: netbox/circuits/filtersets.py:62 netbox/circuits/filtersets.py:229 -#: netbox/circuits/filtersets.py:274 netbox/dcim/filtersets.py:242 -#: netbox/dcim/filtersets.py:363 netbox/dcim/filtersets.py:458 -#: netbox/extras/filtersets.py:531 netbox/ipam/filtersets.py:238 -#: netbox/ipam/filtersets.py:369 netbox/ipam/filtersets.py:989 -#: netbox/virtualization/filtersets.py:75 -#: netbox/virtualization/filtersets.py:203 netbox/vpn/filtersets.py:363 +#: circuits/filtersets.py:62 circuits/filtersets.py:229 +#: circuits/filtersets.py:274 dcim/filtersets.py:242 dcim/filtersets.py:363 +#: dcim/filtersets.py:458 extras/filtersets.py:531 ipam/filtersets.py:238 +#: ipam/filtersets.py:369 ipam/filtersets.py:989 +#: virtualization/filtersets.py:75 virtualization/filtersets.py:203 +#: vpn/filtersets.py:363 msgid "Site (slug)" msgstr "" -#: netbox/circuits/filtersets.py:67 +#: circuits/filtersets.py:67 msgid "ASN (ID)" msgstr "" -#: netbox/circuits/filtersets.py:73 netbox/circuits/forms/filtersets.py:31 -#: netbox/ipam/forms/model_forms.py:159 netbox/ipam/models/asns.py:108 -#: netbox/ipam/models/asns.py:125 netbox/ipam/tables/asn.py:41 -#: netbox/templates/ipam/asn.html:20 +#: circuits/filtersets.py:73 circuits/forms/filtersets.py:31 +#: ipam/forms/model_forms.py:159 ipam/models/asns.py:108 +#: ipam/models/asns.py:125 ipam/tables/asn.py:41 templates/ipam/asn.html:20 msgid "ASN" msgstr "" -#: netbox/circuits/filtersets.py:95 netbox/circuits/filtersets.py:122 -#: netbox/circuits/filtersets.py:156 netbox/circuits/filtersets.py:283 -#: netbox/circuits/filtersets.py:325 netbox/ipam/filtersets.py:243 +#: circuits/filtersets.py:95 circuits/filtersets.py:122 +#: circuits/filtersets.py:156 circuits/filtersets.py:283 +#: circuits/filtersets.py:325 ipam/filtersets.py:243 msgid "Provider (ID)" msgstr "" -#: netbox/circuits/filtersets.py:101 netbox/circuits/filtersets.py:128 -#: netbox/circuits/filtersets.py:162 netbox/circuits/filtersets.py:289 -#: netbox/circuits/filtersets.py:331 netbox/ipam/filtersets.py:249 +#: circuits/filtersets.py:101 circuits/filtersets.py:128 +#: circuits/filtersets.py:162 circuits/filtersets.py:289 +#: circuits/filtersets.py:331 ipam/filtersets.py:249 msgid "Provider (slug)" msgstr "" -#: netbox/circuits/filtersets.py:167 +#: circuits/filtersets.py:167 msgid "Provider account (ID)" msgstr "" -#: netbox/circuits/filtersets.py:173 +#: circuits/filtersets.py:173 msgid "Provider account (account)" msgstr "" -#: netbox/circuits/filtersets.py:178 +#: circuits/filtersets.py:178 msgid "Provider network (ID)" msgstr "" -#: netbox/circuits/filtersets.py:182 +#: circuits/filtersets.py:182 msgid "Circuit type (ID)" msgstr "" -#: netbox/circuits/filtersets.py:188 +#: circuits/filtersets.py:188 msgid "Circuit type (slug)" msgstr "" -#: netbox/circuits/filtersets.py:223 netbox/circuits/filtersets.py:268 -#: netbox/dcim/filtersets.py:236 netbox/dcim/filtersets.py:357 -#: netbox/dcim/filtersets.py:452 netbox/dcim/filtersets.py:1045 -#: netbox/dcim/filtersets.py:1393 netbox/dcim/filtersets.py:1928 -#: netbox/dcim/filtersets.py:2170 netbox/dcim/filtersets.py:2229 -#: netbox/ipam/filtersets.py:232 netbox/ipam/filtersets.py:363 -#: netbox/ipam/filtersets.py:983 netbox/virtualization/filtersets.py:69 -#: netbox/virtualization/filtersets.py:197 netbox/vpn/filtersets.py:368 +#: circuits/filtersets.py:223 circuits/filtersets.py:268 dcim/filtersets.py:236 +#: dcim/filtersets.py:357 dcim/filtersets.py:452 dcim/filtersets.py:1045 +#: dcim/filtersets.py:1393 dcim/filtersets.py:1928 dcim/filtersets.py:2170 +#: dcim/filtersets.py:2229 ipam/filtersets.py:232 ipam/filtersets.py:363 +#: ipam/filtersets.py:983 virtualization/filtersets.py:69 +#: virtualization/filtersets.py:197 vpn/filtersets.py:368 msgid "Site (ID)" msgstr "" -#: netbox/circuits/filtersets.py:233 netbox/circuits/filtersets.py:237 +#: circuits/filtersets.py:233 circuits/filtersets.py:237 msgid "Termination A (ID)" msgstr "" -#: netbox/circuits/filtersets.py:260 netbox/circuits/filtersets.py:320 -#: netbox/core/filtersets.py:77 netbox/core/filtersets.py:136 -#: netbox/core/filtersets.py:173 netbox/dcim/filtersets.py:751 -#: netbox/dcim/filtersets.py:1362 netbox/dcim/filtersets.py:2277 -#: netbox/extras/filtersets.py:41 netbox/extras/filtersets.py:63 -#: netbox/extras/filtersets.py:92 netbox/extras/filtersets.py:132 -#: netbox/extras/filtersets.py:181 netbox/extras/filtersets.py:209 -#: netbox/extras/filtersets.py:239 netbox/extras/filtersets.py:276 -#: netbox/extras/filtersets.py:348 netbox/extras/filtersets.py:391 -#: netbox/extras/filtersets.py:438 netbox/extras/filtersets.py:498 -#: netbox/extras/filtersets.py:657 netbox/extras/filtersets.py:703 -#: netbox/ipam/forms/model_forms.py:449 netbox/netbox/filtersets.py:282 -#: netbox/netbox/forms/__init__.py:22 netbox/netbox/forms/base.py:167 -#: netbox/templates/htmx/object_selector.html:28 -#: netbox/templates/inc/filter_list.html:46 -#: netbox/templates/ipam/ipaddress_assign.html:29 -#: netbox/templates/search.html:7 netbox/templates/search.html:26 -#: netbox/tenancy/filtersets.py:99 netbox/users/filtersets.py:23 -#: netbox/users/filtersets.py:57 netbox/users/filtersets.py:102 -#: netbox/users/filtersets.py:150 netbox/utilities/forms/forms.py:104 -#: netbox/utilities/templates/navigation/menu.html:16 +#: circuits/filtersets.py:260 circuits/filtersets.py:320 core/filtersets.py:77 +#: core/filtersets.py:136 core/filtersets.py:173 dcim/filtersets.py:751 +#: dcim/filtersets.py:1362 dcim/filtersets.py:2277 extras/filtersets.py:41 +#: extras/filtersets.py:63 extras/filtersets.py:92 extras/filtersets.py:132 +#: extras/filtersets.py:181 extras/filtersets.py:209 extras/filtersets.py:239 +#: extras/filtersets.py:276 extras/filtersets.py:348 extras/filtersets.py:391 +#: extras/filtersets.py:438 extras/filtersets.py:498 extras/filtersets.py:657 +#: extras/filtersets.py:703 ipam/forms/model_forms.py:449 +#: netbox/filtersets.py:282 netbox/forms/__init__.py:22 +#: netbox/forms/base.py:167 templates/htmx/object_selector.html:28 +#: templates/inc/filter_list.html:46 templates/ipam/ipaddress_assign.html:29 +#: templates/search.html:7 templates/search.html:26 tenancy/filtersets.py:99 +#: users/filtersets.py:23 users/filtersets.py:57 users/filtersets.py:102 +#: users/filtersets.py:150 utilities/forms/forms.py:104 +#: utilities/templates/navigation/menu.html:16 msgid "Search" msgstr "" -#: netbox/circuits/filtersets.py:264 netbox/circuits/forms/bulk_edit.py:172 -#: netbox/circuits/forms/bulk_edit.py:246 -#: netbox/circuits/forms/bulk_import.py:115 -#: netbox/circuits/forms/filtersets.py:198 -#: netbox/circuits/forms/filtersets.py:214 -#: netbox/circuits/forms/filtersets.py:260 -#: netbox/circuits/forms/model_forms.py:111 -#: netbox/circuits/forms/model_forms.py:133 -#: netbox/circuits/forms/model_forms.py:199 -#: netbox/circuits/tables/circuits.py:104 -#: netbox/circuits/tables/circuits.py:164 netbox/dcim/forms/connections.py:73 -#: netbox/templates/circuits/circuit.html:15 -#: netbox/templates/circuits/circuitgroupassignment.html:26 -#: netbox/templates/circuits/circuittermination.html:19 -#: netbox/templates/dcim/inc/cable_termination.html:55 -#: netbox/templates/dcim/trace/circuit.html:4 +#: circuits/filtersets.py:264 circuits/forms/bulk_edit.py:172 +#: circuits/forms/bulk_edit.py:246 circuits/forms/bulk_import.py:115 +#: circuits/forms/filtersets.py:198 circuits/forms/filtersets.py:214 +#: circuits/forms/filtersets.py:260 circuits/forms/model_forms.py:111 +#: circuits/forms/model_forms.py:133 circuits/forms/model_forms.py:199 +#: circuits/tables/circuits.py:104 circuits/tables/circuits.py:164 +#: dcim/forms/connections.py:73 templates/circuits/circuit.html:15 +#: templates/circuits/circuitgroupassignment.html:26 +#: templates/circuits/circuittermination.html:19 +#: templates/dcim/inc/cable_termination.html:55 +#: templates/dcim/trace/circuit.html:4 msgid "Circuit" msgstr "" -#: netbox/circuits/filtersets.py:278 +#: circuits/filtersets.py:278 msgid "ProviderNetwork (ID)" msgstr "" -#: netbox/circuits/filtersets.py:335 +#: circuits/filtersets.py:335 msgid "Circuit (ID)" msgstr "" -#: netbox/circuits/filtersets.py:341 +#: circuits/filtersets.py:341 msgid "Circuit (CID)" msgstr "" -#: netbox/circuits/filtersets.py:345 +#: circuits/filtersets.py:345 msgid "Circuit group (ID)" msgstr "" -#: netbox/circuits/filtersets.py:351 +#: circuits/filtersets.py:351 msgid "Circuit group (slug)" msgstr "" -#: netbox/circuits/forms/bulk_edit.py:30 netbox/circuits/forms/filtersets.py:56 -#: netbox/circuits/forms/model_forms.py:29 -#: netbox/circuits/tables/providers.py:33 netbox/dcim/forms/bulk_edit.py:128 -#: netbox/dcim/forms/filtersets.py:195 netbox/dcim/forms/model_forms.py:123 -#: netbox/dcim/tables/sites.py:94 netbox/ipam/models/asns.py:126 -#: netbox/ipam/tables/asn.py:27 netbox/ipam/views.py:213 -#: netbox/netbox/navigation/menu.py:172 netbox/netbox/navigation/menu.py:175 -#: netbox/templates/circuits/provider.html:23 +#: circuits/forms/bulk_edit.py:30 circuits/forms/filtersets.py:56 +#: circuits/forms/model_forms.py:29 circuits/tables/providers.py:33 +#: dcim/forms/bulk_edit.py:128 dcim/forms/filtersets.py:195 +#: dcim/forms/model_forms.py:123 dcim/tables/sites.py:94 +#: ipam/models/asns.py:126 ipam/tables/asn.py:27 ipam/views.py:213 +#: netbox/navigation/menu.py:172 netbox/navigation/menu.py:175 +#: templates/circuits/provider.html:23 msgid "ASNs" msgstr "" -#: netbox/circuits/forms/bulk_edit.py:34 netbox/circuits/forms/bulk_edit.py:56 -#: netbox/circuits/forms/bulk_edit.py:83 netbox/circuits/forms/bulk_edit.py:104 -#: netbox/circuits/forms/bulk_edit.py:164 -#: netbox/circuits/forms/bulk_edit.py:183 -#: netbox/circuits/forms/bulk_edit.py:228 netbox/core/forms/bulk_edit.py:28 -#: netbox/dcim/forms/bulk_create.py:35 netbox/dcim/forms/bulk_edit.py:73 -#: netbox/dcim/forms/bulk_edit.py:92 netbox/dcim/forms/bulk_edit.py:151 -#: netbox/dcim/forms/bulk_edit.py:192 netbox/dcim/forms/bulk_edit.py:210 -#: netbox/dcim/forms/bulk_edit.py:288 netbox/dcim/forms/bulk_edit.py:432 -#: netbox/dcim/forms/bulk_edit.py:466 netbox/dcim/forms/bulk_edit.py:481 -#: netbox/dcim/forms/bulk_edit.py:540 netbox/dcim/forms/bulk_edit.py:584 -#: netbox/dcim/forms/bulk_edit.py:618 netbox/dcim/forms/bulk_edit.py:642 -#: netbox/dcim/forms/bulk_edit.py:715 netbox/dcim/forms/bulk_edit.py:767 -#: netbox/dcim/forms/bulk_edit.py:819 netbox/dcim/forms/bulk_edit.py:842 -#: netbox/dcim/forms/bulk_edit.py:890 netbox/dcim/forms/bulk_edit.py:960 -#: netbox/dcim/forms/bulk_edit.py:1013 netbox/dcim/forms/bulk_edit.py:1048 -#: netbox/dcim/forms/bulk_edit.py:1088 netbox/dcim/forms/bulk_edit.py:1132 -#: netbox/dcim/forms/bulk_edit.py:1177 netbox/dcim/forms/bulk_edit.py:1204 -#: netbox/dcim/forms/bulk_edit.py:1222 netbox/dcim/forms/bulk_edit.py:1240 -#: netbox/dcim/forms/bulk_edit.py:1258 netbox/dcim/forms/bulk_edit.py:1682 -#: netbox/extras/forms/bulk_edit.py:39 netbox/extras/forms/bulk_edit.py:149 -#: netbox/extras/forms/bulk_edit.py:178 netbox/extras/forms/bulk_edit.py:208 -#: netbox/extras/forms/bulk_edit.py:256 netbox/extras/forms/bulk_edit.py:274 -#: netbox/extras/forms/bulk_edit.py:298 netbox/extras/forms/bulk_edit.py:312 -#: netbox/extras/forms/bulk_edit.py:339 netbox/extras/tables/tables.py:79 -#: netbox/ipam/forms/bulk_edit.py:53 netbox/ipam/forms/bulk_edit.py:73 -#: netbox/ipam/forms/bulk_edit.py:93 netbox/ipam/forms/bulk_edit.py:117 -#: netbox/ipam/forms/bulk_edit.py:146 netbox/ipam/forms/bulk_edit.py:175 -#: netbox/ipam/forms/bulk_edit.py:194 netbox/ipam/forms/bulk_edit.py:276 -#: netbox/ipam/forms/bulk_edit.py:321 netbox/ipam/forms/bulk_edit.py:369 -#: netbox/ipam/forms/bulk_edit.py:412 netbox/ipam/forms/bulk_edit.py:428 -#: netbox/ipam/forms/bulk_edit.py:516 netbox/ipam/forms/bulk_edit.py:547 -#: netbox/templates/account/token.html:35 -#: netbox/templates/circuits/circuit.html:59 -#: netbox/templates/circuits/circuitgroup.html:32 -#: netbox/templates/circuits/circuittype.html:26 -#: netbox/templates/circuits/inc/circuit_termination_fields.html:88 -#: netbox/templates/circuits/provider.html:33 -#: netbox/templates/circuits/providernetwork.html:32 -#: netbox/templates/core/datasource.html:54 -#: netbox/templates/core/plugin.html:80 netbox/templates/dcim/cable.html:36 -#: netbox/templates/dcim/consoleport.html:44 -#: netbox/templates/dcim/consoleserverport.html:44 -#: netbox/templates/dcim/device.html:94 netbox/templates/dcim/devicebay.html:32 -#: netbox/templates/dcim/devicerole.html:30 -#: netbox/templates/dcim/devicetype.html:33 -#: netbox/templates/dcim/frontport.html:58 -#: netbox/templates/dcim/interface.html:69 -#: netbox/templates/dcim/inventoryitem.html:60 -#: netbox/templates/dcim/inventoryitemrole.html:22 -#: netbox/templates/dcim/location.html:33 -#: netbox/templates/dcim/manufacturer.html:40 -#: netbox/templates/dcim/module.html:73 netbox/templates/dcim/modulebay.html:42 -#: netbox/templates/dcim/moduletype.html:26 -#: netbox/templates/dcim/platform.html:33 -#: netbox/templates/dcim/powerfeed.html:40 -#: netbox/templates/dcim/poweroutlet.html:40 -#: netbox/templates/dcim/powerpanel.html:30 -#: netbox/templates/dcim/powerport.html:40 netbox/templates/dcim/rack.html:53 -#: netbox/templates/dcim/rackreservation.html:62 -#: netbox/templates/dcim/rackrole.html:26 -#: netbox/templates/dcim/racktype.html:24 -#: netbox/templates/dcim/rearport.html:54 netbox/templates/dcim/region.html:33 -#: netbox/templates/dcim/site.html:60 netbox/templates/dcim/sitegroup.html:33 -#: netbox/templates/dcim/virtualchassis.html:31 -#: netbox/templates/extras/configcontext.html:21 -#: netbox/templates/extras/configtemplate.html:17 -#: netbox/templates/extras/customfield.html:34 -#: netbox/templates/extras/dashboard/widget_add.html:14 -#: netbox/templates/extras/eventrule.html:21 -#: netbox/templates/extras/exporttemplate.html:19 -#: netbox/templates/extras/notificationgroup.html:20 -#: netbox/templates/extras/savedfilter.html:17 -#: netbox/templates/extras/script_list.html:45 -#: netbox/templates/extras/tag.html:20 netbox/templates/extras/webhook.html:17 -#: netbox/templates/generic/bulk_import.html:120 -#: netbox/templates/ipam/aggregate.html:43 netbox/templates/ipam/asn.html:42 -#: netbox/templates/ipam/asnrange.html:38 -#: netbox/templates/ipam/fhrpgroup.html:34 -#: netbox/templates/ipam/ipaddress.html:55 -#: netbox/templates/ipam/iprange.html:67 netbox/templates/ipam/prefix.html:81 -#: netbox/templates/ipam/rir.html:26 netbox/templates/ipam/role.html:26 -#: netbox/templates/ipam/routetarget.html:21 -#: netbox/templates/ipam/service.html:50 -#: netbox/templates/ipam/servicetemplate.html:27 -#: netbox/templates/ipam/vlan.html:62 netbox/templates/ipam/vlangroup.html:34 -#: netbox/templates/ipam/vrf.html:33 netbox/templates/tenancy/contact.html:67 -#: netbox/templates/tenancy/contactgroup.html:25 -#: netbox/templates/tenancy/contactrole.html:22 -#: netbox/templates/tenancy/tenant.html:24 -#: netbox/templates/tenancy/tenantgroup.html:33 -#: netbox/templates/users/group.html:21 -#: netbox/templates/users/objectpermission.html:21 -#: netbox/templates/users/token.html:27 -#: netbox/templates/virtualization/cluster.html:25 -#: netbox/templates/virtualization/clustergroup.html:26 -#: netbox/templates/virtualization/clustertype.html:26 -#: netbox/templates/virtualization/virtualdisk.html:39 -#: netbox/templates/virtualization/virtualmachine.html:31 -#: netbox/templates/virtualization/vminterface.html:51 -#: netbox/templates/vpn/ikepolicy.html:17 -#: netbox/templates/vpn/ikeproposal.html:17 -#: netbox/templates/vpn/ipsecpolicy.html:17 -#: netbox/templates/vpn/ipsecprofile.html:17 -#: netbox/templates/vpn/ipsecprofile.html:40 -#: netbox/templates/vpn/ipsecprofile.html:73 -#: netbox/templates/vpn/ipsecproposal.html:17 -#: netbox/templates/vpn/l2vpn.html:26 netbox/templates/vpn/tunnel.html:33 -#: netbox/templates/vpn/tunnelgroup.html:30 -#: netbox/templates/wireless/wirelesslan.html:26 -#: netbox/templates/wireless/wirelesslangroup.html:33 -#: netbox/templates/wireless/wirelesslink.html:34 -#: netbox/tenancy/forms/bulk_edit.py:32 netbox/tenancy/forms/bulk_edit.py:80 -#: netbox/tenancy/forms/bulk_edit.py:122 netbox/users/forms/bulk_edit.py:64 -#: netbox/users/forms/bulk_edit.py:82 netbox/users/forms/bulk_edit.py:112 -#: netbox/virtualization/forms/bulk_edit.py:32 -#: netbox/virtualization/forms/bulk_edit.py:46 -#: netbox/virtualization/forms/bulk_edit.py:100 -#: netbox/virtualization/forms/bulk_edit.py:177 -#: netbox/virtualization/forms/bulk_edit.py:228 -#: netbox/virtualization/forms/bulk_edit.py:337 -#: netbox/vpn/forms/bulk_edit.py:28 netbox/vpn/forms/bulk_edit.py:64 -#: netbox/vpn/forms/bulk_edit.py:121 netbox/vpn/forms/bulk_edit.py:155 -#: netbox/vpn/forms/bulk_edit.py:190 netbox/vpn/forms/bulk_edit.py:215 -#: netbox/vpn/forms/bulk_edit.py:247 netbox/vpn/forms/bulk_edit.py:274 -#: netbox/wireless/forms/bulk_edit.py:29 netbox/wireless/forms/bulk_edit.py:82 -#: netbox/wireless/forms/bulk_edit.py:140 +#: circuits/forms/bulk_edit.py:34 circuits/forms/bulk_edit.py:56 +#: circuits/forms/bulk_edit.py:83 circuits/forms/bulk_edit.py:104 +#: circuits/forms/bulk_edit.py:164 circuits/forms/bulk_edit.py:183 +#: circuits/forms/bulk_edit.py:228 core/forms/bulk_edit.py:28 +#: dcim/forms/bulk_create.py:35 dcim/forms/bulk_edit.py:73 +#: dcim/forms/bulk_edit.py:92 dcim/forms/bulk_edit.py:151 +#: dcim/forms/bulk_edit.py:192 dcim/forms/bulk_edit.py:210 +#: dcim/forms/bulk_edit.py:288 dcim/forms/bulk_edit.py:432 +#: dcim/forms/bulk_edit.py:466 dcim/forms/bulk_edit.py:481 +#: dcim/forms/bulk_edit.py:540 dcim/forms/bulk_edit.py:584 +#: dcim/forms/bulk_edit.py:618 dcim/forms/bulk_edit.py:642 +#: dcim/forms/bulk_edit.py:715 dcim/forms/bulk_edit.py:767 +#: dcim/forms/bulk_edit.py:819 dcim/forms/bulk_edit.py:842 +#: dcim/forms/bulk_edit.py:890 dcim/forms/bulk_edit.py:960 +#: dcim/forms/bulk_edit.py:1013 dcim/forms/bulk_edit.py:1048 +#: dcim/forms/bulk_edit.py:1088 dcim/forms/bulk_edit.py:1132 +#: dcim/forms/bulk_edit.py:1177 dcim/forms/bulk_edit.py:1204 +#: dcim/forms/bulk_edit.py:1222 dcim/forms/bulk_edit.py:1240 +#: dcim/forms/bulk_edit.py:1258 dcim/forms/bulk_edit.py:1682 +#: extras/forms/bulk_edit.py:39 extras/forms/bulk_edit.py:149 +#: extras/forms/bulk_edit.py:178 extras/forms/bulk_edit.py:208 +#: extras/forms/bulk_edit.py:256 extras/forms/bulk_edit.py:274 +#: extras/forms/bulk_edit.py:298 extras/forms/bulk_edit.py:312 +#: extras/forms/bulk_edit.py:339 extras/tables/tables.py:79 +#: ipam/forms/bulk_edit.py:53 ipam/forms/bulk_edit.py:73 +#: ipam/forms/bulk_edit.py:93 ipam/forms/bulk_edit.py:117 +#: ipam/forms/bulk_edit.py:146 ipam/forms/bulk_edit.py:175 +#: ipam/forms/bulk_edit.py:194 ipam/forms/bulk_edit.py:276 +#: ipam/forms/bulk_edit.py:321 ipam/forms/bulk_edit.py:369 +#: ipam/forms/bulk_edit.py:412 ipam/forms/bulk_edit.py:428 +#: ipam/forms/bulk_edit.py:516 ipam/forms/bulk_edit.py:547 +#: templates/account/token.html:35 templates/circuits/circuit.html:59 +#: templates/circuits/circuitgroup.html:32 +#: templates/circuits/circuittype.html:26 +#: templates/circuits/inc/circuit_termination_fields.html:88 +#: templates/circuits/provider.html:33 +#: templates/circuits/providernetwork.html:32 templates/core/datasource.html:54 +#: templates/core/plugin.html:80 templates/dcim/cable.html:36 +#: templates/dcim/consoleport.html:44 templates/dcim/consoleserverport.html:44 +#: templates/dcim/device.html:94 templates/dcim/devicebay.html:32 +#: templates/dcim/devicerole.html:30 templates/dcim/devicetype.html:33 +#: templates/dcim/frontport.html:58 templates/dcim/interface.html:69 +#: templates/dcim/inventoryitem.html:60 +#: templates/dcim/inventoryitemrole.html:22 templates/dcim/location.html:33 +#: templates/dcim/manufacturer.html:40 templates/dcim/module.html:73 +#: templates/dcim/modulebay.html:42 templates/dcim/moduletype.html:37 +#: templates/dcim/platform.html:33 templates/dcim/powerfeed.html:40 +#: templates/dcim/poweroutlet.html:40 templates/dcim/powerpanel.html:30 +#: templates/dcim/powerport.html:40 templates/dcim/rack.html:53 +#: templates/dcim/rackreservation.html:62 templates/dcim/rackrole.html:26 +#: templates/dcim/racktype.html:24 templates/dcim/rearport.html:54 +#: templates/dcim/region.html:33 templates/dcim/site.html:60 +#: templates/dcim/sitegroup.html:33 templates/dcim/virtualchassis.html:31 +#: templates/extras/configcontext.html:21 +#: templates/extras/configtemplate.html:17 templates/extras/customfield.html:34 +#: templates/extras/dashboard/widget_add.html:14 +#: templates/extras/eventrule.html:21 templates/extras/exporttemplate.html:19 +#: templates/extras/notificationgroup.html:20 +#: templates/extras/savedfilter.html:17 templates/extras/script_list.html:45 +#: templates/extras/tag.html:20 templates/extras/webhook.html:17 +#: templates/generic/bulk_import.html:120 templates/ipam/aggregate.html:43 +#: templates/ipam/asn.html:42 templates/ipam/asnrange.html:38 +#: templates/ipam/fhrpgroup.html:34 templates/ipam/ipaddress.html:55 +#: templates/ipam/iprange.html:67 templates/ipam/prefix.html:81 +#: templates/ipam/rir.html:26 templates/ipam/role.html:26 +#: templates/ipam/routetarget.html:21 templates/ipam/service.html:50 +#: templates/ipam/servicetemplate.html:27 templates/ipam/vlan.html:62 +#: templates/ipam/vlangroup.html:34 templates/ipam/vrf.html:33 +#: templates/tenancy/contact.html:67 templates/tenancy/contactgroup.html:25 +#: templates/tenancy/contactrole.html:22 templates/tenancy/tenant.html:24 +#: templates/tenancy/tenantgroup.html:33 templates/users/group.html:21 +#: templates/users/objectpermission.html:21 templates/users/token.html:27 +#: templates/virtualization/cluster.html:25 +#: templates/virtualization/clustergroup.html:26 +#: templates/virtualization/clustertype.html:26 +#: templates/virtualization/virtualdisk.html:39 +#: templates/virtualization/virtualmachine.html:31 +#: templates/virtualization/vminterface.html:51 templates/vpn/ikepolicy.html:17 +#: templates/vpn/ikeproposal.html:17 templates/vpn/ipsecpolicy.html:17 +#: templates/vpn/ipsecprofile.html:17 templates/vpn/ipsecprofile.html:40 +#: templates/vpn/ipsecprofile.html:73 templates/vpn/ipsecproposal.html:17 +#: templates/vpn/l2vpn.html:26 templates/vpn/tunnel.html:33 +#: templates/vpn/tunnelgroup.html:30 templates/wireless/wirelesslan.html:26 +#: templates/wireless/wirelesslangroup.html:33 +#: templates/wireless/wirelesslink.html:34 tenancy/forms/bulk_edit.py:32 +#: tenancy/forms/bulk_edit.py:80 tenancy/forms/bulk_edit.py:122 +#: users/forms/bulk_edit.py:64 users/forms/bulk_edit.py:82 +#: users/forms/bulk_edit.py:112 virtualization/forms/bulk_edit.py:32 +#: virtualization/forms/bulk_edit.py:46 virtualization/forms/bulk_edit.py:100 +#: virtualization/forms/bulk_edit.py:177 virtualization/forms/bulk_edit.py:228 +#: virtualization/forms/bulk_edit.py:337 vpn/forms/bulk_edit.py:28 +#: vpn/forms/bulk_edit.py:64 vpn/forms/bulk_edit.py:121 +#: vpn/forms/bulk_edit.py:155 vpn/forms/bulk_edit.py:190 +#: vpn/forms/bulk_edit.py:215 vpn/forms/bulk_edit.py:247 +#: vpn/forms/bulk_edit.py:274 wireless/forms/bulk_edit.py:29 +#: wireless/forms/bulk_edit.py:82 wireless/forms/bulk_edit.py:140 msgid "Description" msgstr "" -#: netbox/circuits/forms/bulk_edit.py:51 netbox/circuits/forms/bulk_edit.py:73 -#: netbox/circuits/forms/bulk_edit.py:123 -#: netbox/circuits/forms/bulk_import.py:36 -#: netbox/circuits/forms/bulk_import.py:51 -#: netbox/circuits/forms/bulk_import.py:74 -#: netbox/circuits/forms/filtersets.py:70 -#: netbox/circuits/forms/filtersets.py:88 -#: netbox/circuits/forms/filtersets.py:116 -#: netbox/circuits/forms/filtersets.py:131 -#: netbox/circuits/forms/filtersets.py:199 -#: netbox/circuits/forms/filtersets.py:232 -#: netbox/circuits/forms/filtersets.py:255 -#: netbox/circuits/forms/model_forms.py:47 -#: netbox/circuits/forms/model_forms.py:61 -#: netbox/circuits/forms/model_forms.py:93 -#: netbox/circuits/tables/circuits.py:58 netbox/circuits/tables/circuits.py:108 -#: netbox/circuits/tables/circuits.py:160 -#: netbox/circuits/tables/providers.py:72 -#: netbox/circuits/tables/providers.py:103 -#: netbox/templates/circuits/circuit.html:18 -#: netbox/templates/circuits/circuittermination.html:25 -#: netbox/templates/circuits/provider.html:20 -#: netbox/templates/circuits/provideraccount.html:20 -#: netbox/templates/circuits/providernetwork.html:20 -#: netbox/templates/dcim/inc/cable_termination.html:51 +#: circuits/forms/bulk_edit.py:51 circuits/forms/bulk_edit.py:73 +#: circuits/forms/bulk_edit.py:123 circuits/forms/bulk_import.py:36 +#: circuits/forms/bulk_import.py:51 circuits/forms/bulk_import.py:74 +#: circuits/forms/filtersets.py:70 circuits/forms/filtersets.py:88 +#: circuits/forms/filtersets.py:116 circuits/forms/filtersets.py:131 +#: circuits/forms/filtersets.py:199 circuits/forms/filtersets.py:232 +#: circuits/forms/filtersets.py:255 circuits/forms/model_forms.py:47 +#: circuits/forms/model_forms.py:61 circuits/forms/model_forms.py:93 +#: circuits/tables/circuits.py:58 circuits/tables/circuits.py:108 +#: circuits/tables/circuits.py:160 circuits/tables/providers.py:72 +#: circuits/tables/providers.py:103 templates/circuits/circuit.html:18 +#: templates/circuits/circuittermination.html:25 +#: templates/circuits/provider.html:20 +#: templates/circuits/provideraccount.html:20 +#: templates/circuits/providernetwork.html:20 +#: templates/dcim/inc/cable_termination.html:51 msgid "Provider" msgstr "" -#: netbox/circuits/forms/bulk_edit.py:80 netbox/circuits/forms/filtersets.py:91 -#: netbox/templates/circuits/providernetwork.html:28 +#: circuits/forms/bulk_edit.py:80 circuits/forms/filtersets.py:91 +#: templates/circuits/providernetwork.html:28 msgid "Service ID" msgstr "" -#: netbox/circuits/forms/bulk_edit.py:100 -#: netbox/circuits/forms/filtersets.py:107 netbox/dcim/forms/bulk_edit.py:206 -#: netbox/dcim/forms/bulk_edit.py:604 netbox/dcim/forms/bulk_edit.py:804 -#: netbox/dcim/forms/bulk_edit.py:1173 netbox/dcim/forms/bulk_edit.py:1200 -#: netbox/dcim/forms/bulk_edit.py:1678 netbox/dcim/forms/filtersets.py:1064 -#: netbox/dcim/forms/filtersets.py:1455 netbox/dcim/forms/filtersets.py:1479 -#: netbox/dcim/tables/devices.py:704 netbox/dcim/tables/devices.py:761 -#: netbox/dcim/tables/devices.py:1003 netbox/dcim/tables/devicetypes.py:249 -#: netbox/dcim/tables/devicetypes.py:264 netbox/dcim/tables/racks.py:33 -#: netbox/extras/forms/bulk_edit.py:270 netbox/extras/tables/tables.py:443 -#: netbox/templates/circuits/circuittype.html:30 -#: netbox/templates/dcim/cable.html:40 netbox/templates/dcim/devicerole.html:34 -#: netbox/templates/dcim/frontport.html:40 -#: netbox/templates/dcim/inventoryitemrole.html:26 -#: netbox/templates/dcim/rackrole.html:30 -#: netbox/templates/dcim/rearport.html:40 netbox/templates/extras/tag.html:26 +#: circuits/forms/bulk_edit.py:100 circuits/forms/filtersets.py:107 +#: dcim/forms/bulk_edit.py:206 dcim/forms/bulk_edit.py:604 +#: dcim/forms/bulk_edit.py:804 dcim/forms/bulk_edit.py:1173 +#: dcim/forms/bulk_edit.py:1200 dcim/forms/bulk_edit.py:1678 +#: dcim/forms/filtersets.py:1064 dcim/forms/filtersets.py:1455 +#: dcim/forms/filtersets.py:1479 dcim/tables/devices.py:704 +#: dcim/tables/devices.py:761 dcim/tables/devices.py:1003 +#: dcim/tables/devicetypes.py:249 dcim/tables/devicetypes.py:264 +#: dcim/tables/racks.py:33 extras/forms/bulk_edit.py:270 +#: extras/tables/tables.py:443 templates/circuits/circuittype.html:30 +#: templates/dcim/cable.html:40 templates/dcim/devicerole.html:34 +#: templates/dcim/frontport.html:40 templates/dcim/inventoryitemrole.html:26 +#: templates/dcim/rackrole.html:30 templates/dcim/rearport.html:40 +#: templates/extras/tag.html:26 msgid "Color" msgstr "" -#: netbox/circuits/forms/bulk_edit.py:118 -#: netbox/circuits/forms/bulk_import.py:87 -#: netbox/circuits/forms/filtersets.py:126 netbox/core/forms/bulk_edit.py:18 -#: netbox/core/forms/filtersets.py:33 netbox/core/tables/change_logging.py:32 -#: netbox/core/tables/data.py:20 netbox/core/tables/jobs.py:18 -#: netbox/dcim/forms/bulk_edit.py:782 netbox/dcim/forms/bulk_edit.py:921 -#: netbox/dcim/forms/bulk_edit.py:989 netbox/dcim/forms/bulk_edit.py:1008 -#: netbox/dcim/forms/bulk_edit.py:1031 netbox/dcim/forms/bulk_edit.py:1073 -#: netbox/dcim/forms/bulk_edit.py:1117 netbox/dcim/forms/bulk_edit.py:1168 -#: netbox/dcim/forms/bulk_edit.py:1195 netbox/dcim/forms/bulk_import.py:188 -#: netbox/dcim/forms/bulk_import.py:260 netbox/dcim/forms/bulk_import.py:708 -#: netbox/dcim/forms/bulk_import.py:734 netbox/dcim/forms/bulk_import.py:760 -#: netbox/dcim/forms/bulk_import.py:780 netbox/dcim/forms/bulk_import.py:863 -#: netbox/dcim/forms/bulk_import.py:957 netbox/dcim/forms/bulk_import.py:999 -#: netbox/dcim/forms/bulk_import.py:1213 netbox/dcim/forms/bulk_import.py:1376 -#: netbox/dcim/forms/filtersets.py:955 netbox/dcim/forms/filtersets.py:1054 -#: netbox/dcim/forms/filtersets.py:1175 netbox/dcim/forms/filtersets.py:1247 -#: netbox/dcim/forms/filtersets.py:1272 netbox/dcim/forms/filtersets.py:1296 -#: netbox/dcim/forms/filtersets.py:1316 netbox/dcim/forms/filtersets.py:1353 -#: netbox/dcim/forms/filtersets.py:1450 netbox/dcim/forms/filtersets.py:1474 -#: netbox/dcim/forms/model_forms.py:703 netbox/dcim/forms/model_forms.py:709 -#: netbox/dcim/forms/object_import.py:84 netbox/dcim/forms/object_import.py:113 -#: netbox/dcim/forms/object_import.py:145 netbox/dcim/tables/devices.py:178 -#: netbox/dcim/tables/devices.py:814 netbox/dcim/tables/power.py:77 -#: netbox/dcim/tables/racks.py:138 netbox/extras/forms/bulk_import.py:42 -#: netbox/extras/tables/tables.py:405 netbox/extras/tables/tables.py:465 -#: netbox/netbox/tables/tables.py:240 netbox/templates/circuits/circuit.html:30 -#: netbox/templates/core/datasource.html:38 netbox/templates/dcim/cable.html:15 -#: netbox/templates/dcim/consoleport.html:36 -#: netbox/templates/dcim/consoleserverport.html:36 -#: netbox/templates/dcim/frontport.html:36 -#: netbox/templates/dcim/interface.html:46 -#: netbox/templates/dcim/interface.html:169 -#: netbox/templates/dcim/interface.html:311 -#: netbox/templates/dcim/powerfeed.html:32 -#: netbox/templates/dcim/poweroutlet.html:36 -#: netbox/templates/dcim/powerport.html:36 -#: netbox/templates/dcim/rearport.html:36 -#: netbox/templates/extras/eventrule.html:74 -#: netbox/templates/virtualization/cluster.html:17 -#: netbox/templates/vpn/l2vpn.html:22 -#: netbox/templates/wireless/inc/authentication_attrs.html:8 -#: netbox/templates/wireless/inc/wirelesslink_interface.html:14 -#: netbox/virtualization/forms/bulk_edit.py:60 -#: netbox/virtualization/forms/bulk_import.py:41 -#: netbox/virtualization/forms/filtersets.py:54 -#: netbox/virtualization/forms/model_forms.py:62 -#: netbox/virtualization/tables/clusters.py:66 -#: netbox/vpn/forms/bulk_edit.py:264 netbox/vpn/forms/bulk_import.py:264 -#: netbox/vpn/forms/filtersets.py:217 netbox/vpn/forms/model_forms.py:84 -#: netbox/vpn/forms/model_forms.py:119 netbox/vpn/forms/model_forms.py:231 +#: circuits/forms/bulk_edit.py:118 circuits/forms/bulk_import.py:87 +#: circuits/forms/filtersets.py:126 core/forms/bulk_edit.py:18 +#: core/forms/filtersets.py:33 core/tables/change_logging.py:32 +#: core/tables/data.py:20 core/tables/jobs.py:18 dcim/forms/bulk_edit.py:782 +#: dcim/forms/bulk_edit.py:921 dcim/forms/bulk_edit.py:989 +#: dcim/forms/bulk_edit.py:1008 dcim/forms/bulk_edit.py:1031 +#: dcim/forms/bulk_edit.py:1073 dcim/forms/bulk_edit.py:1117 +#: dcim/forms/bulk_edit.py:1168 dcim/forms/bulk_edit.py:1195 +#: dcim/forms/bulk_import.py:188 dcim/forms/bulk_import.py:260 +#: dcim/forms/bulk_import.py:708 dcim/forms/bulk_import.py:734 +#: dcim/forms/bulk_import.py:760 dcim/forms/bulk_import.py:780 +#: dcim/forms/bulk_import.py:863 dcim/forms/bulk_import.py:957 +#: dcim/forms/bulk_import.py:999 dcim/forms/bulk_import.py:1213 +#: dcim/forms/bulk_import.py:1376 dcim/forms/filtersets.py:955 +#: dcim/forms/filtersets.py:1054 dcim/forms/filtersets.py:1175 +#: dcim/forms/filtersets.py:1247 dcim/forms/filtersets.py:1272 +#: dcim/forms/filtersets.py:1296 dcim/forms/filtersets.py:1316 +#: dcim/forms/filtersets.py:1353 dcim/forms/filtersets.py:1450 +#: dcim/forms/filtersets.py:1474 dcim/forms/model_forms.py:703 +#: dcim/forms/model_forms.py:709 dcim/forms/object_import.py:84 +#: dcim/forms/object_import.py:113 dcim/forms/object_import.py:145 +#: dcim/tables/devices.py:178 dcim/tables/devices.py:814 +#: dcim/tables/power.py:77 dcim/tables/racks.py:138 +#: extras/forms/bulk_import.py:42 extras/tables/tables.py:405 +#: extras/tables/tables.py:465 netbox/tables/tables.py:240 +#: templates/circuits/circuit.html:30 templates/core/datasource.html:38 +#: templates/dcim/cable.html:15 templates/dcim/consoleport.html:36 +#: templates/dcim/consoleserverport.html:36 templates/dcim/frontport.html:36 +#: templates/dcim/interface.html:46 templates/dcim/interface.html:169 +#: templates/dcim/interface.html:311 templates/dcim/powerfeed.html:32 +#: templates/dcim/poweroutlet.html:36 templates/dcim/powerport.html:36 +#: templates/dcim/rearport.html:36 templates/extras/eventrule.html:74 +#: templates/virtualization/cluster.html:17 templates/vpn/l2vpn.html:22 +#: templates/wireless/inc/authentication_attrs.html:8 +#: templates/wireless/inc/wirelesslink_interface.html:14 +#: virtualization/forms/bulk_edit.py:60 virtualization/forms/bulk_import.py:41 +#: virtualization/forms/filtersets.py:54 virtualization/forms/model_forms.py:62 +#: virtualization/tables/clusters.py:66 vpn/forms/bulk_edit.py:264 +#: vpn/forms/bulk_import.py:264 vpn/forms/filtersets.py:217 +#: vpn/forms/model_forms.py:84 vpn/forms/model_forms.py:119 +#: vpn/forms/model_forms.py:231 msgid "Type" msgstr "" -#: netbox/circuits/forms/bulk_edit.py:128 -#: netbox/circuits/forms/bulk_import.py:80 -#: netbox/circuits/forms/filtersets.py:139 -#: netbox/circuits/forms/model_forms.py:98 +#: circuits/forms/bulk_edit.py:128 circuits/forms/bulk_import.py:80 +#: circuits/forms/filtersets.py:139 circuits/forms/model_forms.py:98 msgid "Provider account" msgstr "" -#: netbox/circuits/forms/bulk_edit.py:136 -#: netbox/circuits/forms/bulk_import.py:93 -#: netbox/circuits/forms/filtersets.py:150 netbox/core/forms/filtersets.py:38 -#: netbox/core/forms/filtersets.py:79 netbox/core/tables/data.py:23 -#: netbox/core/tables/jobs.py:26 netbox/core/tables/tasks.py:88 -#: netbox/dcim/forms/bulk_edit.py:106 netbox/dcim/forms/bulk_edit.py:181 -#: netbox/dcim/forms/bulk_edit.py:351 netbox/dcim/forms/bulk_edit.py:700 -#: netbox/dcim/forms/bulk_edit.py:756 netbox/dcim/forms/bulk_edit.py:788 -#: netbox/dcim/forms/bulk_edit.py:915 netbox/dcim/forms/bulk_edit.py:1701 -#: netbox/dcim/forms/bulk_import.py:88 netbox/dcim/forms/bulk_import.py:147 -#: netbox/dcim/forms/bulk_import.py:248 netbox/dcim/forms/bulk_import.py:505 -#: netbox/dcim/forms/bulk_import.py:659 netbox/dcim/forms/bulk_import.py:1207 -#: netbox/dcim/forms/bulk_import.py:1371 netbox/dcim/forms/bulk_import.py:1435 -#: netbox/dcim/forms/filtersets.py:178 netbox/dcim/forms/filtersets.py:237 -#: netbox/dcim/forms/filtersets.py:359 netbox/dcim/forms/filtersets.py:799 -#: netbox/dcim/forms/filtersets.py:924 netbox/dcim/forms/filtersets.py:958 -#: netbox/dcim/forms/filtersets.py:1059 netbox/dcim/forms/filtersets.py:1170 -#: netbox/dcim/tables/devices.py:140 netbox/dcim/tables/devices.py:817 -#: netbox/dcim/tables/devices.py:1063 netbox/dcim/tables/modules.py:69 -#: netbox/dcim/tables/power.py:74 netbox/dcim/tables/racks.py:126 -#: netbox/dcim/tables/sites.py:82 netbox/dcim/tables/sites.py:138 -#: netbox/ipam/forms/bulk_edit.py:256 netbox/ipam/forms/bulk_edit.py:306 -#: netbox/ipam/forms/bulk_edit.py:354 netbox/ipam/forms/bulk_edit.py:506 -#: netbox/ipam/forms/bulk_import.py:192 netbox/ipam/forms/bulk_import.py:257 -#: netbox/ipam/forms/bulk_import.py:293 netbox/ipam/forms/bulk_import.py:450 -#: netbox/ipam/forms/filtersets.py:210 netbox/ipam/forms/filtersets.py:281 -#: netbox/ipam/forms/filtersets.py:355 netbox/ipam/forms/filtersets.py:501 -#: netbox/ipam/forms/model_forms.py:468 netbox/ipam/tables/ip.py:237 -#: netbox/ipam/tables/ip.py:312 netbox/ipam/tables/ip.py:363 -#: netbox/ipam/tables/ip.py:426 netbox/ipam/tables/ip.py:453 -#: netbox/ipam/tables/vlans.py:126 netbox/ipam/tables/vlans.py:232 -#: netbox/templates/circuits/circuit.html:34 -#: netbox/templates/core/datasource.html:46 netbox/templates/core/job.html:48 -#: netbox/templates/core/rq_task.html:81 netbox/templates/core/system.html:18 -#: netbox/templates/dcim/cable.html:19 netbox/templates/dcim/device.html:178 -#: netbox/templates/dcim/location.html:45 netbox/templates/dcim/module.html:69 -#: netbox/templates/dcim/powerfeed.html:36 netbox/templates/dcim/rack.html:41 -#: netbox/templates/dcim/site.html:43 -#: netbox/templates/extras/script_list.html:47 -#: netbox/templates/ipam/ipaddress.html:37 -#: netbox/templates/ipam/iprange.html:54 netbox/templates/ipam/prefix.html:73 -#: netbox/templates/ipam/vlan.html:48 -#: netbox/templates/virtualization/cluster.html:21 -#: netbox/templates/virtualization/virtualmachine.html:19 -#: netbox/templates/vpn/tunnel.html:25 -#: netbox/templates/wireless/wirelesslan.html:22 -#: netbox/templates/wireless/wirelesslink.html:17 -#: netbox/users/forms/filtersets.py:32 netbox/users/forms/model_forms.py:194 -#: netbox/virtualization/forms/bulk_edit.py:70 -#: netbox/virtualization/forms/bulk_edit.py:118 -#: netbox/virtualization/forms/bulk_import.py:54 -#: netbox/virtualization/forms/bulk_import.py:80 -#: netbox/virtualization/forms/filtersets.py:62 -#: netbox/virtualization/forms/filtersets.py:160 -#: netbox/virtualization/tables/clusters.py:74 -#: netbox/virtualization/tables/virtualmachines.py:60 -#: netbox/vpn/forms/bulk_edit.py:39 netbox/vpn/forms/bulk_import.py:37 -#: netbox/vpn/forms/filtersets.py:47 netbox/vpn/tables/tunnels.py:48 -#: netbox/wireless/forms/bulk_edit.py:43 netbox/wireless/forms/bulk_edit.py:105 -#: netbox/wireless/forms/bulk_import.py:43 -#: netbox/wireless/forms/bulk_import.py:84 -#: netbox/wireless/forms/filtersets.py:49 -#: netbox/wireless/forms/filtersets.py:83 -#: netbox/wireless/tables/wirelesslan.py:52 -#: netbox/wireless/tables/wirelesslink.py:20 +#: circuits/forms/bulk_edit.py:136 circuits/forms/bulk_import.py:93 +#: circuits/forms/filtersets.py:150 core/forms/filtersets.py:38 +#: core/forms/filtersets.py:79 core/tables/data.py:23 core/tables/jobs.py:26 +#: core/tables/tasks.py:88 dcim/forms/bulk_edit.py:106 +#: dcim/forms/bulk_edit.py:181 dcim/forms/bulk_edit.py:351 +#: dcim/forms/bulk_edit.py:700 dcim/forms/bulk_edit.py:756 +#: dcim/forms/bulk_edit.py:788 dcim/forms/bulk_edit.py:915 +#: dcim/forms/bulk_edit.py:1701 dcim/forms/bulk_import.py:88 +#: dcim/forms/bulk_import.py:147 dcim/forms/bulk_import.py:248 +#: dcim/forms/bulk_import.py:505 dcim/forms/bulk_import.py:659 +#: dcim/forms/bulk_import.py:1207 dcim/forms/bulk_import.py:1371 +#: dcim/forms/bulk_import.py:1435 dcim/forms/filtersets.py:178 +#: dcim/forms/filtersets.py:237 dcim/forms/filtersets.py:359 +#: dcim/forms/filtersets.py:799 dcim/forms/filtersets.py:924 +#: dcim/forms/filtersets.py:958 dcim/forms/filtersets.py:1059 +#: dcim/forms/filtersets.py:1170 dcim/tables/devices.py:140 +#: dcim/tables/devices.py:817 dcim/tables/devices.py:1063 +#: dcim/tables/modules.py:69 dcim/tables/power.py:74 dcim/tables/racks.py:126 +#: dcim/tables/sites.py:82 dcim/tables/sites.py:138 ipam/forms/bulk_edit.py:256 +#: ipam/forms/bulk_edit.py:306 ipam/forms/bulk_edit.py:354 +#: ipam/forms/bulk_edit.py:506 ipam/forms/bulk_import.py:192 +#: ipam/forms/bulk_import.py:257 ipam/forms/bulk_import.py:293 +#: ipam/forms/bulk_import.py:450 ipam/forms/filtersets.py:210 +#: ipam/forms/filtersets.py:281 ipam/forms/filtersets.py:355 +#: ipam/forms/filtersets.py:501 ipam/forms/model_forms.py:468 +#: ipam/tables/ip.py:237 ipam/tables/ip.py:312 ipam/tables/ip.py:363 +#: ipam/tables/ip.py:426 ipam/tables/ip.py:453 ipam/tables/vlans.py:126 +#: ipam/tables/vlans.py:232 templates/circuits/circuit.html:34 +#: templates/core/datasource.html:46 templates/core/job.html:48 +#: templates/core/rq_task.html:81 templates/core/system.html:18 +#: templates/dcim/cable.html:19 templates/dcim/device.html:178 +#: templates/dcim/location.html:45 templates/dcim/module.html:69 +#: templates/dcim/powerfeed.html:36 templates/dcim/rack.html:41 +#: templates/dcim/site.html:43 templates/extras/script_list.html:47 +#: templates/ipam/ipaddress.html:37 templates/ipam/iprange.html:54 +#: templates/ipam/prefix.html:73 templates/ipam/vlan.html:48 +#: templates/virtualization/cluster.html:21 +#: templates/virtualization/virtualmachine.html:19 templates/vpn/tunnel.html:25 +#: templates/wireless/wirelesslan.html:22 +#: templates/wireless/wirelesslink.html:17 users/forms/filtersets.py:32 +#: users/forms/model_forms.py:194 virtualization/forms/bulk_edit.py:70 +#: virtualization/forms/bulk_edit.py:118 virtualization/forms/bulk_import.py:54 +#: virtualization/forms/bulk_import.py:80 virtualization/forms/filtersets.py:62 +#: virtualization/forms/filtersets.py:160 virtualization/tables/clusters.py:74 +#: virtualization/tables/virtualmachines.py:60 vpn/forms/bulk_edit.py:39 +#: vpn/forms/bulk_import.py:37 vpn/forms/filtersets.py:47 +#: vpn/tables/tunnels.py:48 wireless/forms/bulk_edit.py:43 +#: wireless/forms/bulk_edit.py:105 wireless/forms/bulk_import.py:43 +#: wireless/forms/bulk_import.py:84 wireless/forms/filtersets.py:49 +#: wireless/forms/filtersets.py:83 wireless/tables/wirelesslan.py:52 +#: wireless/tables/wirelesslink.py:20 msgid "Status" msgstr "" -#: netbox/circuits/forms/bulk_edit.py:142 -#: netbox/circuits/forms/bulk_edit.py:233 -#: netbox/circuits/forms/bulk_import.py:98 -#: netbox/circuits/forms/bulk_import.py:158 -#: netbox/circuits/forms/filtersets.py:119 -#: netbox/circuits/forms/filtersets.py:241 netbox/dcim/forms/bulk_edit.py:122 -#: netbox/dcim/forms/bulk_edit.py:187 netbox/dcim/forms/bulk_edit.py:346 -#: netbox/dcim/forms/bulk_edit.py:461 netbox/dcim/forms/bulk_edit.py:690 -#: netbox/dcim/forms/bulk_edit.py:794 netbox/dcim/forms/bulk_edit.py:1706 -#: netbox/dcim/forms/bulk_import.py:107 netbox/dcim/forms/bulk_import.py:152 -#: netbox/dcim/forms/bulk_import.py:241 netbox/dcim/forms/bulk_import.py:334 -#: netbox/dcim/forms/bulk_import.py:479 netbox/dcim/forms/bulk_import.py:1219 -#: netbox/dcim/forms/bulk_import.py:1428 netbox/dcim/forms/filtersets.py:173 -#: netbox/dcim/forms/filtersets.py:205 netbox/dcim/forms/filtersets.py:323 -#: netbox/dcim/forms/filtersets.py:399 netbox/dcim/forms/filtersets.py:420 -#: netbox/dcim/forms/filtersets.py:722 netbox/dcim/forms/filtersets.py:916 -#: netbox/dcim/forms/filtersets.py:978 netbox/dcim/forms/filtersets.py:1008 -#: netbox/dcim/forms/filtersets.py:1130 netbox/dcim/tables/power.py:88 -#: netbox/extras/filtersets.py:612 netbox/extras/forms/filtersets.py:323 -#: netbox/extras/forms/filtersets.py:396 netbox/ipam/forms/bulk_edit.py:43 -#: netbox/ipam/forms/bulk_edit.py:68 netbox/ipam/forms/bulk_edit.py:112 -#: netbox/ipam/forms/bulk_edit.py:141 netbox/ipam/forms/bulk_edit.py:166 -#: netbox/ipam/forms/bulk_edit.py:251 netbox/ipam/forms/bulk_edit.py:301 -#: netbox/ipam/forms/bulk_edit.py:349 netbox/ipam/forms/bulk_edit.py:501 -#: netbox/ipam/forms/bulk_import.py:38 netbox/ipam/forms/bulk_import.py:67 -#: netbox/ipam/forms/bulk_import.py:95 netbox/ipam/forms/bulk_import.py:115 -#: netbox/ipam/forms/bulk_import.py:135 netbox/ipam/forms/bulk_import.py:164 -#: netbox/ipam/forms/bulk_import.py:250 netbox/ipam/forms/bulk_import.py:286 -#: netbox/ipam/forms/bulk_import.py:443 netbox/ipam/forms/filtersets.py:48 -#: netbox/ipam/forms/filtersets.py:68 netbox/ipam/forms/filtersets.py:100 -#: netbox/ipam/forms/filtersets.py:120 netbox/ipam/forms/filtersets.py:143 -#: netbox/ipam/forms/filtersets.py:174 netbox/ipam/forms/filtersets.py:267 -#: netbox/ipam/forms/filtersets.py:310 netbox/ipam/forms/filtersets.py:469 -#: netbox/ipam/tables/ip.py:456 netbox/ipam/tables/vlans.py:229 -#: netbox/templates/circuits/circuit.html:38 -#: netbox/templates/circuits/circuitgroup.html:36 -#: netbox/templates/dcim/cable.html:23 netbox/templates/dcim/device.html:79 -#: netbox/templates/dcim/location.html:49 -#: netbox/templates/dcim/powerfeed.html:44 netbox/templates/dcim/rack.html:32 -#: netbox/templates/dcim/rackreservation.html:49 -#: netbox/templates/dcim/site.html:47 -#: netbox/templates/dcim/virtualdevicecontext.html:52 -#: netbox/templates/ipam/aggregate.html:30 netbox/templates/ipam/asn.html:33 -#: netbox/templates/ipam/asnrange.html:29 -#: netbox/templates/ipam/ipaddress.html:28 -#: netbox/templates/ipam/iprange.html:58 netbox/templates/ipam/prefix.html:29 -#: netbox/templates/ipam/routetarget.html:17 netbox/templates/ipam/vlan.html:39 -#: netbox/templates/ipam/vrf.html:20 netbox/templates/tenancy/tenant.html:17 -#: netbox/templates/virtualization/cluster.html:33 -#: netbox/templates/virtualization/virtualmachine.html:39 -#: netbox/templates/vpn/l2vpn.html:30 netbox/templates/vpn/tunnel.html:49 -#: netbox/templates/wireless/wirelesslan.html:34 -#: netbox/templates/wireless/wirelesslink.html:25 -#: netbox/tenancy/forms/forms.py:25 netbox/tenancy/forms/forms.py:48 -#: netbox/tenancy/forms/model_forms.py:52 netbox/tenancy/tables/columns.py:64 -#: netbox/virtualization/forms/bulk_edit.py:76 -#: netbox/virtualization/forms/bulk_edit.py:155 -#: netbox/virtualization/forms/bulk_import.py:66 -#: netbox/virtualization/forms/bulk_import.py:115 -#: netbox/virtualization/forms/filtersets.py:47 -#: netbox/virtualization/forms/filtersets.py:105 -#: netbox/vpn/forms/bulk_edit.py:59 netbox/vpn/forms/bulk_edit.py:269 -#: netbox/vpn/forms/bulk_import.py:59 netbox/vpn/forms/bulk_import.py:258 -#: netbox/vpn/forms/filtersets.py:214 netbox/wireless/forms/bulk_edit.py:63 -#: netbox/wireless/forms/bulk_edit.py:110 -#: netbox/wireless/forms/bulk_import.py:55 -#: netbox/wireless/forms/bulk_import.py:97 -#: netbox/wireless/forms/filtersets.py:35 -#: netbox/wireless/forms/filtersets.py:75 +#: circuits/forms/bulk_edit.py:142 circuits/forms/bulk_edit.py:233 +#: circuits/forms/bulk_import.py:98 circuits/forms/bulk_import.py:158 +#: circuits/forms/filtersets.py:119 circuits/forms/filtersets.py:241 +#: dcim/forms/bulk_edit.py:122 dcim/forms/bulk_edit.py:187 +#: dcim/forms/bulk_edit.py:346 dcim/forms/bulk_edit.py:461 +#: dcim/forms/bulk_edit.py:690 dcim/forms/bulk_edit.py:794 +#: dcim/forms/bulk_edit.py:1706 dcim/forms/bulk_import.py:107 +#: dcim/forms/bulk_import.py:152 dcim/forms/bulk_import.py:241 +#: dcim/forms/bulk_import.py:334 dcim/forms/bulk_import.py:479 +#: dcim/forms/bulk_import.py:1219 dcim/forms/bulk_import.py:1428 +#: dcim/forms/filtersets.py:173 dcim/forms/filtersets.py:205 +#: dcim/forms/filtersets.py:323 dcim/forms/filtersets.py:399 +#: dcim/forms/filtersets.py:420 dcim/forms/filtersets.py:722 +#: dcim/forms/filtersets.py:916 dcim/forms/filtersets.py:978 +#: dcim/forms/filtersets.py:1008 dcim/forms/filtersets.py:1130 +#: dcim/tables/power.py:88 extras/filtersets.py:612 +#: extras/forms/filtersets.py:323 extras/forms/filtersets.py:396 +#: ipam/forms/bulk_edit.py:43 ipam/forms/bulk_edit.py:68 +#: ipam/forms/bulk_edit.py:112 ipam/forms/bulk_edit.py:141 +#: ipam/forms/bulk_edit.py:166 ipam/forms/bulk_edit.py:251 +#: ipam/forms/bulk_edit.py:301 ipam/forms/bulk_edit.py:349 +#: ipam/forms/bulk_edit.py:501 ipam/forms/bulk_import.py:38 +#: ipam/forms/bulk_import.py:67 ipam/forms/bulk_import.py:95 +#: ipam/forms/bulk_import.py:115 ipam/forms/bulk_import.py:135 +#: ipam/forms/bulk_import.py:164 ipam/forms/bulk_import.py:250 +#: ipam/forms/bulk_import.py:286 ipam/forms/bulk_import.py:443 +#: ipam/forms/filtersets.py:48 ipam/forms/filtersets.py:68 +#: ipam/forms/filtersets.py:100 ipam/forms/filtersets.py:120 +#: ipam/forms/filtersets.py:143 ipam/forms/filtersets.py:174 +#: ipam/forms/filtersets.py:267 ipam/forms/filtersets.py:310 +#: ipam/forms/filtersets.py:469 ipam/tables/ip.py:456 ipam/tables/vlans.py:229 +#: templates/circuits/circuit.html:38 templates/circuits/circuitgroup.html:36 +#: templates/dcim/cable.html:23 templates/dcim/device.html:79 +#: templates/dcim/location.html:49 templates/dcim/powerfeed.html:44 +#: templates/dcim/rack.html:32 templates/dcim/rackreservation.html:49 +#: templates/dcim/site.html:47 templates/dcim/virtualdevicecontext.html:52 +#: templates/ipam/aggregate.html:30 templates/ipam/asn.html:33 +#: templates/ipam/asnrange.html:29 templates/ipam/ipaddress.html:28 +#: templates/ipam/iprange.html:58 templates/ipam/prefix.html:29 +#: templates/ipam/routetarget.html:17 templates/ipam/vlan.html:39 +#: templates/ipam/vrf.html:20 templates/tenancy/tenant.html:17 +#: templates/virtualization/cluster.html:33 +#: templates/virtualization/virtualmachine.html:39 templates/vpn/l2vpn.html:30 +#: templates/vpn/tunnel.html:49 templates/wireless/wirelesslan.html:34 +#: templates/wireless/wirelesslink.html:25 tenancy/forms/forms.py:25 +#: tenancy/forms/forms.py:48 tenancy/forms/model_forms.py:52 +#: tenancy/tables/columns.py:64 virtualization/forms/bulk_edit.py:76 +#: virtualization/forms/bulk_edit.py:155 virtualization/forms/bulk_import.py:66 +#: virtualization/forms/bulk_import.py:115 +#: virtualization/forms/filtersets.py:47 virtualization/forms/filtersets.py:105 +#: vpn/forms/bulk_edit.py:59 vpn/forms/bulk_edit.py:269 +#: vpn/forms/bulk_import.py:59 vpn/forms/bulk_import.py:258 +#: vpn/forms/filtersets.py:214 wireless/forms/bulk_edit.py:63 +#: wireless/forms/bulk_edit.py:110 wireless/forms/bulk_import.py:55 +#: wireless/forms/bulk_import.py:97 wireless/forms/filtersets.py:35 +#: wireless/forms/filtersets.py:75 msgid "Tenant" msgstr "" -#: netbox/circuits/forms/bulk_edit.py:147 -#: netbox/circuits/forms/filtersets.py:174 +#: circuits/forms/bulk_edit.py:147 circuits/forms/filtersets.py:174 msgid "Install date" msgstr "" -#: netbox/circuits/forms/bulk_edit.py:152 -#: netbox/circuits/forms/filtersets.py:179 +#: circuits/forms/bulk_edit.py:152 circuits/forms/filtersets.py:179 msgid "Termination date" msgstr "" -#: netbox/circuits/forms/bulk_edit.py:158 -#: netbox/circuits/forms/filtersets.py:186 +#: circuits/forms/bulk_edit.py:158 circuits/forms/filtersets.py:186 msgid "Commit rate (Kbps)" msgstr "" -#: netbox/circuits/forms/bulk_edit.py:173 -#: netbox/circuits/forms/model_forms.py:112 +#: circuits/forms/bulk_edit.py:173 circuits/forms/model_forms.py:112 msgid "Service Parameters" msgstr "" -#: netbox/circuits/forms/bulk_edit.py:174 -#: netbox/circuits/forms/model_forms.py:113 -#: netbox/circuits/forms/model_forms.py:183 -#: netbox/dcim/forms/model_forms.py:139 netbox/dcim/forms/model_forms.py:181 -#: netbox/dcim/forms/model_forms.py:266 netbox/dcim/forms/model_forms.py:323 -#: netbox/dcim/forms/model_forms.py:768 netbox/dcim/forms/model_forms.py:1692 -#: netbox/ipam/forms/model_forms.py:64 netbox/ipam/forms/model_forms.py:81 -#: netbox/ipam/forms/model_forms.py:115 netbox/ipam/forms/model_forms.py:136 -#: netbox/ipam/forms/model_forms.py:160 netbox/ipam/forms/model_forms.py:232 -#: netbox/ipam/forms/model_forms.py:261 netbox/ipam/forms/model_forms.py:316 -#: netbox/netbox/navigation/menu.py:24 -#: netbox/templates/dcim/device_edit.html:85 -#: netbox/templates/dcim/htmx/cable_edit.html:72 -#: netbox/templates/ipam/ipaddress_bulk_add.html:27 -#: netbox/templates/ipam/vlan_edit.html:22 -#: netbox/virtualization/forms/model_forms.py:80 -#: netbox/virtualization/forms/model_forms.py:222 -#: netbox/vpn/forms/bulk_edit.py:78 netbox/vpn/forms/filtersets.py:44 -#: netbox/vpn/forms/model_forms.py:62 netbox/vpn/forms/model_forms.py:147 -#: netbox/vpn/forms/model_forms.py:411 netbox/wireless/forms/model_forms.py:54 -#: netbox/wireless/forms/model_forms.py:170 +#: circuits/forms/bulk_edit.py:174 circuits/forms/model_forms.py:113 +#: circuits/forms/model_forms.py:183 dcim/forms/model_forms.py:139 +#: dcim/forms/model_forms.py:181 dcim/forms/model_forms.py:266 +#: dcim/forms/model_forms.py:323 dcim/forms/model_forms.py:768 +#: dcim/forms/model_forms.py:1692 ipam/forms/model_forms.py:64 +#: ipam/forms/model_forms.py:81 ipam/forms/model_forms.py:115 +#: ipam/forms/model_forms.py:136 ipam/forms/model_forms.py:160 +#: ipam/forms/model_forms.py:232 ipam/forms/model_forms.py:261 +#: ipam/forms/model_forms.py:316 netbox/navigation/menu.py:24 +#: templates/dcim/device_edit.html:85 templates/dcim/htmx/cable_edit.html:72 +#: templates/ipam/ipaddress_bulk_add.html:27 templates/ipam/vlan_edit.html:22 +#: virtualization/forms/model_forms.py:80 +#: virtualization/forms/model_forms.py:222 vpn/forms/bulk_edit.py:78 +#: vpn/forms/filtersets.py:44 vpn/forms/model_forms.py:62 +#: vpn/forms/model_forms.py:147 vpn/forms/model_forms.py:411 +#: wireless/forms/model_forms.py:54 wireless/forms/model_forms.py:170 msgid "Tenancy" msgstr "" -#: netbox/circuits/forms/bulk_edit.py:193 -#: netbox/circuits/forms/bulk_edit.py:217 -#: netbox/circuits/forms/model_forms.py:155 -#: netbox/circuits/tables/circuits.py:117 -#: netbox/templates/circuits/inc/circuit_termination_fields.html:62 -#: netbox/templates/circuits/providernetwork.html:17 +#: circuits/forms/bulk_edit.py:193 circuits/forms/bulk_edit.py:217 +#: circuits/forms/model_forms.py:155 circuits/tables/circuits.py:117 +#: templates/circuits/inc/circuit_termination_fields.html:62 +#: templates/circuits/providernetwork.html:17 msgid "Provider Network" msgstr "" -#: netbox/circuits/forms/bulk_edit.py:199 +#: circuits/forms/bulk_edit.py:199 msgid "Port speed (Kbps)" msgstr "" -#: netbox/circuits/forms/bulk_edit.py:203 +#: circuits/forms/bulk_edit.py:203 msgid "Upstream speed (Kbps)" msgstr "" -#: netbox/circuits/forms/bulk_edit.py:206 netbox/dcim/forms/bulk_edit.py:951 -#: netbox/dcim/forms/bulk_edit.py:1315 netbox/dcim/forms/bulk_edit.py:1332 -#: netbox/dcim/forms/bulk_edit.py:1349 netbox/dcim/forms/bulk_edit.py:1367 -#: netbox/dcim/forms/bulk_edit.py:1455 netbox/dcim/forms/bulk_edit.py:1594 -#: netbox/dcim/forms/bulk_edit.py:1611 +#: circuits/forms/bulk_edit.py:206 dcim/forms/bulk_edit.py:951 +#: dcim/forms/bulk_edit.py:1315 dcim/forms/bulk_edit.py:1332 +#: dcim/forms/bulk_edit.py:1349 dcim/forms/bulk_edit.py:1367 +#: dcim/forms/bulk_edit.py:1455 dcim/forms/bulk_edit.py:1594 +#: dcim/forms/bulk_edit.py:1611 msgid "Mark connected" msgstr "" -#: netbox/circuits/forms/bulk_edit.py:219 -#: netbox/circuits/forms/model_forms.py:157 -#: netbox/templates/circuits/inc/circuit_termination_fields.html:54 -#: netbox/templates/dcim/frontport.html:121 -#: netbox/templates/dcim/interface.html:193 -#: netbox/templates/dcim/rearport.html:111 +#: circuits/forms/bulk_edit.py:219 circuits/forms/model_forms.py:157 +#: templates/circuits/inc/circuit_termination_fields.html:54 +#: templates/dcim/frontport.html:121 templates/dcim/interface.html:193 +#: templates/dcim/rearport.html:111 msgid "Circuit Termination" msgstr "" -#: netbox/circuits/forms/bulk_edit.py:221 -#: netbox/circuits/forms/model_forms.py:159 +#: circuits/forms/bulk_edit.py:221 circuits/forms/model_forms.py:159 msgid "Termination Details" msgstr "" -#: netbox/circuits/forms/bulk_edit.py:251 -#: netbox/circuits/forms/filtersets.py:268 -#: netbox/circuits/tables/circuits.py:168 netbox/dcim/forms/model_forms.py:551 -#: netbox/templates/circuits/circuitgroupassignment.html:30 -#: netbox/templates/dcim/device.html:133 -#: netbox/templates/dcim/virtualchassis.html:68 -#: netbox/templates/dcim/virtualchassis_edit.html:56 -#: netbox/templates/ipam/inc/panels/fhrp_groups.html:26 -#: netbox/tenancy/forms/bulk_edit.py:147 netbox/tenancy/forms/filtersets.py:110 +#: circuits/forms/bulk_edit.py:251 circuits/forms/filtersets.py:268 +#: circuits/tables/circuits.py:168 dcim/forms/model_forms.py:551 +#: templates/circuits/circuitgroupassignment.html:30 +#: templates/dcim/device.html:133 templates/dcim/virtualchassis.html:68 +#: templates/dcim/virtualchassis_edit.html:56 +#: templates/ipam/inc/panels/fhrp_groups.html:26 tenancy/forms/bulk_edit.py:147 +#: tenancy/forms/filtersets.py:110 msgid "Priority" msgstr "" -#: netbox/circuits/forms/bulk_import.py:39 -#: netbox/circuits/forms/bulk_import.py:54 -#: netbox/circuits/forms/bulk_import.py:77 +#: circuits/forms/bulk_import.py:39 circuits/forms/bulk_import.py:54 +#: circuits/forms/bulk_import.py:77 msgid "Assigned provider" msgstr "" -#: netbox/circuits/forms/bulk_import.py:83 +#: circuits/forms/bulk_import.py:83 msgid "Assigned provider account" msgstr "" -#: netbox/circuits/forms/bulk_import.py:90 +#: circuits/forms/bulk_import.py:90 msgid "Type of circuit" msgstr "" -#: netbox/circuits/forms/bulk_import.py:95 netbox/dcim/forms/bulk_import.py:90 -#: netbox/dcim/forms/bulk_import.py:149 netbox/dcim/forms/bulk_import.py:250 -#: netbox/dcim/forms/bulk_import.py:507 netbox/dcim/forms/bulk_import.py:661 -#: netbox/dcim/forms/bulk_import.py:1373 netbox/ipam/forms/bulk_import.py:194 -#: netbox/ipam/forms/bulk_import.py:259 netbox/ipam/forms/bulk_import.py:295 -#: netbox/ipam/forms/bulk_import.py:452 -#: netbox/virtualization/forms/bulk_import.py:56 -#: netbox/virtualization/forms/bulk_import.py:82 -#: netbox/vpn/forms/bulk_import.py:39 netbox/wireless/forms/bulk_import.py:45 +#: circuits/forms/bulk_import.py:95 dcim/forms/bulk_import.py:90 +#: dcim/forms/bulk_import.py:149 dcim/forms/bulk_import.py:250 +#: dcim/forms/bulk_import.py:507 dcim/forms/bulk_import.py:661 +#: dcim/forms/bulk_import.py:1373 ipam/forms/bulk_import.py:194 +#: ipam/forms/bulk_import.py:259 ipam/forms/bulk_import.py:295 +#: ipam/forms/bulk_import.py:452 virtualization/forms/bulk_import.py:56 +#: virtualization/forms/bulk_import.py:82 vpn/forms/bulk_import.py:39 +#: wireless/forms/bulk_import.py:45 msgid "Operational status" msgstr "" -#: netbox/circuits/forms/bulk_import.py:102 -#: netbox/circuits/forms/bulk_import.py:162 -#: netbox/dcim/forms/bulk_import.py:111 netbox/dcim/forms/bulk_import.py:156 -#: netbox/dcim/forms/bulk_import.py:338 netbox/dcim/forms/bulk_import.py:483 -#: netbox/dcim/forms/bulk_import.py:1223 netbox/dcim/forms/bulk_import.py:1368 -#: netbox/dcim/forms/bulk_import.py:1432 netbox/ipam/forms/bulk_import.py:42 -#: netbox/ipam/forms/bulk_import.py:71 netbox/ipam/forms/bulk_import.py:99 -#: netbox/ipam/forms/bulk_import.py:119 netbox/ipam/forms/bulk_import.py:139 -#: netbox/ipam/forms/bulk_import.py:168 netbox/ipam/forms/bulk_import.py:254 -#: netbox/ipam/forms/bulk_import.py:290 netbox/ipam/forms/bulk_import.py:447 -#: netbox/virtualization/forms/bulk_import.py:70 -#: netbox/virtualization/forms/bulk_import.py:119 -#: netbox/vpn/forms/bulk_import.py:63 netbox/wireless/forms/bulk_import.py:59 -#: netbox/wireless/forms/bulk_import.py:101 +#: circuits/forms/bulk_import.py:102 circuits/forms/bulk_import.py:162 +#: dcim/forms/bulk_import.py:111 dcim/forms/bulk_import.py:156 +#: dcim/forms/bulk_import.py:338 dcim/forms/bulk_import.py:483 +#: dcim/forms/bulk_import.py:1223 dcim/forms/bulk_import.py:1368 +#: dcim/forms/bulk_import.py:1432 ipam/forms/bulk_import.py:42 +#: ipam/forms/bulk_import.py:71 ipam/forms/bulk_import.py:99 +#: ipam/forms/bulk_import.py:119 ipam/forms/bulk_import.py:139 +#: ipam/forms/bulk_import.py:168 ipam/forms/bulk_import.py:254 +#: ipam/forms/bulk_import.py:290 ipam/forms/bulk_import.py:447 +#: virtualization/forms/bulk_import.py:70 +#: virtualization/forms/bulk_import.py:119 vpn/forms/bulk_import.py:63 +#: wireless/forms/bulk_import.py:59 wireless/forms/bulk_import.py:101 msgid "Assigned tenant" msgstr "" -#: netbox/circuits/forms/bulk_import.py:120 -#: netbox/templates/circuits/inc/circuit_termination.html:6 -#: netbox/templates/circuits/inc/circuit_termination_fields.html:15 -#: netbox/templates/dcim/cable.html:68 netbox/templates/dcim/cable.html:72 -#: netbox/vpn/forms/bulk_import.py:100 netbox/vpn/forms/filtersets.py:77 +#: circuits/forms/bulk_import.py:120 +#: templates/circuits/inc/circuit_termination.html:6 +#: templates/circuits/inc/circuit_termination_fields.html:15 +#: templates/dcim/cable.html:68 templates/dcim/cable.html:72 +#: vpn/forms/bulk_import.py:100 vpn/forms/filtersets.py:77 msgid "Termination" msgstr "" -#: netbox/circuits/forms/bulk_import.py:130 -#: netbox/circuits/forms/filtersets.py:147 -#: netbox/circuits/forms/filtersets.py:227 -#: netbox/circuits/forms/model_forms.py:144 +#: circuits/forms/bulk_import.py:130 circuits/forms/filtersets.py:147 +#: circuits/forms/filtersets.py:227 circuits/forms/model_forms.py:144 msgid "Provider network" msgstr "" -#: netbox/circuits/forms/filtersets.py:30 -#: netbox/circuits/forms/filtersets.py:118 -#: netbox/circuits/forms/filtersets.py:200 netbox/dcim/forms/bulk_edit.py:338 -#: netbox/dcim/forms/bulk_edit.py:441 netbox/dcim/forms/bulk_edit.py:682 -#: netbox/dcim/forms/bulk_edit.py:729 netbox/dcim/forms/bulk_edit.py:882 -#: netbox/dcim/forms/bulk_import.py:235 netbox/dcim/forms/bulk_import.py:315 -#: netbox/dcim/forms/bulk_import.py:546 netbox/dcim/forms/bulk_import.py:1317 -#: netbox/dcim/forms/bulk_import.py:1351 netbox/dcim/forms/filtersets.py:95 -#: netbox/dcim/forms/filtersets.py:322 netbox/dcim/forms/filtersets.py:356 -#: netbox/dcim/forms/filtersets.py:396 netbox/dcim/forms/filtersets.py:447 -#: netbox/dcim/forms/filtersets.py:719 netbox/dcim/forms/filtersets.py:762 -#: netbox/dcim/forms/filtersets.py:977 netbox/dcim/forms/filtersets.py:1006 -#: netbox/dcim/forms/filtersets.py:1026 netbox/dcim/forms/filtersets.py:1090 -#: netbox/dcim/forms/filtersets.py:1120 netbox/dcim/forms/filtersets.py:1129 -#: netbox/dcim/forms/filtersets.py:1240 netbox/dcim/forms/filtersets.py:1264 -#: netbox/dcim/forms/filtersets.py:1289 netbox/dcim/forms/filtersets.py:1308 -#: netbox/dcim/forms/filtersets.py:1331 netbox/dcim/forms/filtersets.py:1442 -#: netbox/dcim/forms/filtersets.py:1466 netbox/dcim/forms/filtersets.py:1490 -#: netbox/dcim/forms/filtersets.py:1508 netbox/dcim/forms/filtersets.py:1525 -#: netbox/dcim/forms/model_forms.py:180 netbox/dcim/forms/model_forms.py:243 -#: netbox/dcim/forms/model_forms.py:468 netbox/dcim/forms/model_forms.py:728 -#: netbox/dcim/tables/devices.py:157 netbox/dcim/tables/power.py:30 -#: netbox/dcim/tables/racks.py:118 netbox/dcim/tables/racks.py:212 -#: netbox/extras/filtersets.py:536 netbox/extras/forms/filtersets.py:320 -#: netbox/ipam/forms/filtersets.py:173 netbox/ipam/forms/filtersets.py:414 -#: netbox/ipam/forms/filtersets.py:437 netbox/ipam/forms/filtersets.py:467 -#: netbox/templates/dcim/device.html:26 -#: netbox/templates/dcim/device_edit.html:30 -#: netbox/templates/dcim/inc/cable_termination.html:12 -#: netbox/templates/dcim/location.html:26 -#: netbox/templates/dcim/powerpanel.html:26 netbox/templates/dcim/rack.html:24 -#: netbox/templates/dcim/rackreservation.html:32 -#: netbox/virtualization/forms/filtersets.py:46 -#: netbox/virtualization/forms/filtersets.py:100 -#: netbox/wireless/forms/model_forms.py:87 -#: netbox/wireless/forms/model_forms.py:129 +#: circuits/forms/filtersets.py:30 circuits/forms/filtersets.py:118 +#: circuits/forms/filtersets.py:200 dcim/forms/bulk_edit.py:338 +#: dcim/forms/bulk_edit.py:441 dcim/forms/bulk_edit.py:682 +#: dcim/forms/bulk_edit.py:729 dcim/forms/bulk_edit.py:882 +#: dcim/forms/bulk_import.py:235 dcim/forms/bulk_import.py:315 +#: dcim/forms/bulk_import.py:546 dcim/forms/bulk_import.py:1317 +#: dcim/forms/bulk_import.py:1351 dcim/forms/filtersets.py:95 +#: dcim/forms/filtersets.py:322 dcim/forms/filtersets.py:356 +#: dcim/forms/filtersets.py:396 dcim/forms/filtersets.py:447 +#: dcim/forms/filtersets.py:719 dcim/forms/filtersets.py:762 +#: dcim/forms/filtersets.py:977 dcim/forms/filtersets.py:1006 +#: dcim/forms/filtersets.py:1026 dcim/forms/filtersets.py:1090 +#: dcim/forms/filtersets.py:1120 dcim/forms/filtersets.py:1129 +#: dcim/forms/filtersets.py:1240 dcim/forms/filtersets.py:1264 +#: dcim/forms/filtersets.py:1289 dcim/forms/filtersets.py:1308 +#: dcim/forms/filtersets.py:1331 dcim/forms/filtersets.py:1442 +#: dcim/forms/filtersets.py:1466 dcim/forms/filtersets.py:1490 +#: dcim/forms/filtersets.py:1508 dcim/forms/filtersets.py:1525 +#: dcim/forms/model_forms.py:180 dcim/forms/model_forms.py:243 +#: dcim/forms/model_forms.py:468 dcim/forms/model_forms.py:728 +#: dcim/tables/devices.py:157 dcim/tables/power.py:30 dcim/tables/racks.py:118 +#: dcim/tables/racks.py:212 extras/filtersets.py:536 +#: extras/forms/filtersets.py:320 ipam/forms/filtersets.py:173 +#: ipam/forms/filtersets.py:414 ipam/forms/filtersets.py:437 +#: ipam/forms/filtersets.py:467 templates/dcim/device.html:26 +#: templates/dcim/device_edit.html:30 +#: templates/dcim/inc/cable_termination.html:12 templates/dcim/location.html:26 +#: templates/dcim/powerpanel.html:26 templates/dcim/rack.html:24 +#: templates/dcim/rackreservation.html:32 virtualization/forms/filtersets.py:46 +#: virtualization/forms/filtersets.py:100 wireless/forms/model_forms.py:87 +#: wireless/forms/model_forms.py:129 msgid "Location" msgstr "" -#: netbox/circuits/forms/filtersets.py:32 -#: netbox/circuits/forms/filtersets.py:120 netbox/dcim/forms/filtersets.py:144 -#: netbox/dcim/forms/filtersets.py:158 netbox/dcim/forms/filtersets.py:174 -#: netbox/dcim/forms/filtersets.py:206 netbox/dcim/forms/filtersets.py:328 -#: netbox/dcim/forms/filtersets.py:400 netbox/dcim/forms/filtersets.py:471 -#: netbox/dcim/forms/filtersets.py:723 netbox/dcim/forms/filtersets.py:1091 -#: netbox/netbox/navigation/menu.py:31 netbox/netbox/navigation/menu.py:33 -#: netbox/tenancy/forms/filtersets.py:42 netbox/tenancy/tables/columns.py:70 -#: netbox/tenancy/tables/contacts.py:25 netbox/tenancy/views.py:19 -#: netbox/virtualization/forms/filtersets.py:37 -#: netbox/virtualization/forms/filtersets.py:48 -#: netbox/virtualization/forms/filtersets.py:106 +#: circuits/forms/filtersets.py:32 circuits/forms/filtersets.py:120 +#: dcim/forms/filtersets.py:144 dcim/forms/filtersets.py:158 +#: dcim/forms/filtersets.py:174 dcim/forms/filtersets.py:206 +#: dcim/forms/filtersets.py:328 dcim/forms/filtersets.py:400 +#: dcim/forms/filtersets.py:471 dcim/forms/filtersets.py:723 +#: dcim/forms/filtersets.py:1091 netbox/navigation/menu.py:31 +#: netbox/navigation/menu.py:33 tenancy/forms/filtersets.py:42 +#: tenancy/tables/columns.py:70 tenancy/tables/contacts.py:25 +#: tenancy/views.py:19 virtualization/forms/filtersets.py:37 +#: virtualization/forms/filtersets.py:48 virtualization/forms/filtersets.py:106 msgid "Contacts" msgstr "" -#: netbox/circuits/forms/filtersets.py:37 -#: netbox/circuits/forms/filtersets.py:157 netbox/dcim/forms/bulk_edit.py:112 -#: netbox/dcim/forms/bulk_edit.py:313 netbox/dcim/forms/bulk_edit.py:857 -#: netbox/dcim/forms/bulk_import.py:93 netbox/dcim/forms/filtersets.py:73 -#: netbox/dcim/forms/filtersets.py:185 netbox/dcim/forms/filtersets.py:211 -#: netbox/dcim/forms/filtersets.py:334 netbox/dcim/forms/filtersets.py:425 -#: netbox/dcim/forms/filtersets.py:739 netbox/dcim/forms/filtersets.py:983 -#: netbox/dcim/forms/filtersets.py:1013 netbox/dcim/forms/filtersets.py:1097 -#: netbox/dcim/forms/filtersets.py:1136 netbox/dcim/forms/filtersets.py:1576 -#: netbox/dcim/forms/filtersets.py:1600 netbox/dcim/forms/filtersets.py:1624 -#: netbox/dcim/forms/model_forms.py:112 netbox/dcim/forms/object_create.py:375 -#: netbox/dcim/tables/devices.py:143 netbox/dcim/tables/sites.py:85 -#: netbox/extras/filtersets.py:503 netbox/ipam/forms/bulk_edit.py:208 -#: netbox/ipam/forms/bulk_edit.py:474 netbox/ipam/forms/filtersets.py:217 -#: netbox/ipam/forms/filtersets.py:422 netbox/ipam/forms/filtersets.py:475 -#: netbox/templates/dcim/device.html:18 netbox/templates/dcim/rack.html:16 -#: netbox/templates/dcim/rackreservation.html:22 -#: netbox/templates/dcim/region.html:26 netbox/templates/dcim/site.html:31 -#: netbox/templates/ipam/prefix.html:49 netbox/templates/ipam/vlan.html:16 -#: netbox/virtualization/forms/bulk_edit.py:81 -#: netbox/virtualization/forms/filtersets.py:59 -#: netbox/virtualization/forms/filtersets.py:133 -#: netbox/virtualization/forms/model_forms.py:92 -#: netbox/vpn/forms/filtersets.py:257 +#: circuits/forms/filtersets.py:37 circuits/forms/filtersets.py:157 +#: dcim/forms/bulk_edit.py:112 dcim/forms/bulk_edit.py:313 +#: dcim/forms/bulk_edit.py:857 dcim/forms/bulk_import.py:93 +#: dcim/forms/filtersets.py:73 dcim/forms/filtersets.py:185 +#: dcim/forms/filtersets.py:211 dcim/forms/filtersets.py:334 +#: dcim/forms/filtersets.py:425 dcim/forms/filtersets.py:739 +#: dcim/forms/filtersets.py:983 dcim/forms/filtersets.py:1013 +#: dcim/forms/filtersets.py:1097 dcim/forms/filtersets.py:1136 +#: dcim/forms/filtersets.py:1576 dcim/forms/filtersets.py:1600 +#: dcim/forms/filtersets.py:1624 dcim/forms/model_forms.py:112 +#: dcim/forms/object_create.py:375 dcim/tables/devices.py:143 +#: dcim/tables/sites.py:85 extras/filtersets.py:503 ipam/forms/bulk_edit.py:208 +#: ipam/forms/bulk_edit.py:474 ipam/forms/filtersets.py:217 +#: ipam/forms/filtersets.py:422 ipam/forms/filtersets.py:475 +#: templates/dcim/device.html:18 templates/dcim/rack.html:16 +#: templates/dcim/rackreservation.html:22 templates/dcim/region.html:26 +#: templates/dcim/site.html:31 templates/ipam/prefix.html:49 +#: templates/ipam/vlan.html:16 virtualization/forms/bulk_edit.py:81 +#: virtualization/forms/filtersets.py:59 virtualization/forms/filtersets.py:133 +#: virtualization/forms/model_forms.py:92 vpn/forms/filtersets.py:257 msgid "Region" msgstr "" -#: netbox/circuits/forms/filtersets.py:42 -#: netbox/circuits/forms/filtersets.py:162 netbox/dcim/forms/bulk_edit.py:321 -#: netbox/dcim/forms/bulk_edit.py:865 netbox/dcim/forms/filtersets.py:78 -#: netbox/dcim/forms/filtersets.py:190 netbox/dcim/forms/filtersets.py:216 -#: netbox/dcim/forms/filtersets.py:347 netbox/dcim/forms/filtersets.py:430 -#: netbox/dcim/forms/filtersets.py:744 netbox/dcim/forms/filtersets.py:988 -#: netbox/dcim/forms/filtersets.py:1102 netbox/dcim/forms/filtersets.py:1141 -#: netbox/dcim/forms/object_create.py:383 netbox/extras/filtersets.py:520 -#: netbox/ipam/forms/bulk_edit.py:213 netbox/ipam/forms/bulk_edit.py:479 -#: netbox/ipam/forms/filtersets.py:222 netbox/ipam/forms/filtersets.py:427 -#: netbox/ipam/forms/filtersets.py:480 -#: netbox/virtualization/forms/bulk_edit.py:86 -#: netbox/virtualization/forms/filtersets.py:69 -#: netbox/virtualization/forms/filtersets.py:138 -#: netbox/virtualization/forms/model_forms.py:98 +#: circuits/forms/filtersets.py:42 circuits/forms/filtersets.py:162 +#: dcim/forms/bulk_edit.py:321 dcim/forms/bulk_edit.py:865 +#: dcim/forms/filtersets.py:78 dcim/forms/filtersets.py:190 +#: dcim/forms/filtersets.py:216 dcim/forms/filtersets.py:347 +#: dcim/forms/filtersets.py:430 dcim/forms/filtersets.py:744 +#: dcim/forms/filtersets.py:988 dcim/forms/filtersets.py:1102 +#: dcim/forms/filtersets.py:1141 dcim/forms/object_create.py:383 +#: extras/filtersets.py:520 ipam/forms/bulk_edit.py:213 +#: ipam/forms/bulk_edit.py:479 ipam/forms/filtersets.py:222 +#: ipam/forms/filtersets.py:427 ipam/forms/filtersets.py:480 +#: virtualization/forms/bulk_edit.py:86 virtualization/forms/filtersets.py:69 +#: virtualization/forms/filtersets.py:138 +#: virtualization/forms/model_forms.py:98 msgid "Site group" msgstr "" -#: netbox/circuits/forms/filtersets.py:65 -#: netbox/circuits/forms/filtersets.py:83 -#: netbox/circuits/forms/filtersets.py:102 -#: netbox/circuits/forms/filtersets.py:117 netbox/core/forms/filtersets.py:67 -#: netbox/core/forms/filtersets.py:135 netbox/dcim/forms/bulk_edit.py:828 -#: netbox/dcim/forms/filtersets.py:172 netbox/dcim/forms/filtersets.py:204 -#: netbox/dcim/forms/filtersets.py:915 netbox/dcim/forms/filtersets.py:1007 -#: netbox/dcim/forms/filtersets.py:1131 netbox/dcim/forms/filtersets.py:1239 -#: netbox/dcim/forms/filtersets.py:1263 netbox/dcim/forms/filtersets.py:1288 -#: netbox/dcim/forms/filtersets.py:1307 netbox/dcim/forms/filtersets.py:1327 -#: netbox/dcim/forms/filtersets.py:1441 netbox/dcim/forms/filtersets.py:1465 -#: netbox/dcim/forms/filtersets.py:1489 netbox/dcim/forms/filtersets.py:1507 -#: netbox/dcim/forms/filtersets.py:1523 netbox/extras/forms/bulk_edit.py:90 -#: netbox/extras/forms/filtersets.py:44 netbox/extras/forms/filtersets.py:134 -#: netbox/extras/forms/filtersets.py:165 netbox/extras/forms/filtersets.py:205 -#: netbox/extras/forms/filtersets.py:221 netbox/extras/forms/filtersets.py:252 -#: netbox/extras/forms/filtersets.py:276 netbox/extras/forms/filtersets.py:441 -#: netbox/ipam/forms/filtersets.py:99 netbox/ipam/forms/filtersets.py:266 -#: netbox/ipam/forms/filtersets.py:307 netbox/ipam/forms/filtersets.py:382 -#: netbox/ipam/forms/filtersets.py:468 netbox/ipam/forms/filtersets.py:527 -#: netbox/ipam/forms/filtersets.py:545 netbox/netbox/tables/tables.py:256 -#: netbox/virtualization/forms/filtersets.py:45 -#: netbox/virtualization/forms/filtersets.py:103 -#: netbox/virtualization/forms/filtersets.py:198 -#: netbox/virtualization/forms/filtersets.py:243 -#: netbox/vpn/forms/filtersets.py:213 netbox/wireless/forms/bulk_edit.py:150 -#: netbox/wireless/forms/filtersets.py:34 -#: netbox/wireless/forms/filtersets.py:74 +#: circuits/forms/filtersets.py:65 circuits/forms/filtersets.py:83 +#: circuits/forms/filtersets.py:102 circuits/forms/filtersets.py:117 +#: core/forms/filtersets.py:67 core/forms/filtersets.py:135 +#: dcim/forms/bulk_edit.py:828 dcim/forms/filtersets.py:172 +#: dcim/forms/filtersets.py:204 dcim/forms/filtersets.py:915 +#: dcim/forms/filtersets.py:1007 dcim/forms/filtersets.py:1131 +#: dcim/forms/filtersets.py:1239 dcim/forms/filtersets.py:1263 +#: dcim/forms/filtersets.py:1288 dcim/forms/filtersets.py:1307 +#: dcim/forms/filtersets.py:1327 dcim/forms/filtersets.py:1441 +#: dcim/forms/filtersets.py:1465 dcim/forms/filtersets.py:1489 +#: dcim/forms/filtersets.py:1507 dcim/forms/filtersets.py:1523 +#: extras/forms/bulk_edit.py:90 extras/forms/filtersets.py:44 +#: extras/forms/filtersets.py:134 extras/forms/filtersets.py:165 +#: extras/forms/filtersets.py:205 extras/forms/filtersets.py:221 +#: extras/forms/filtersets.py:252 extras/forms/filtersets.py:276 +#: extras/forms/filtersets.py:441 ipam/forms/filtersets.py:99 +#: ipam/forms/filtersets.py:266 ipam/forms/filtersets.py:307 +#: ipam/forms/filtersets.py:382 ipam/forms/filtersets.py:468 +#: ipam/forms/filtersets.py:527 ipam/forms/filtersets.py:545 +#: netbox/tables/tables.py:256 virtualization/forms/filtersets.py:45 +#: virtualization/forms/filtersets.py:103 +#: virtualization/forms/filtersets.py:198 +#: virtualization/forms/filtersets.py:243 vpn/forms/filtersets.py:213 +#: wireless/forms/bulk_edit.py:150 wireless/forms/filtersets.py:34 +#: wireless/forms/filtersets.py:74 msgid "Attributes" msgstr "" -#: netbox/circuits/forms/filtersets.py:73 netbox/circuits/tables/circuits.py:63 -#: netbox/circuits/tables/providers.py:66 -#: netbox/templates/circuits/circuit.html:22 -#: netbox/templates/circuits/provideraccount.html:24 +#: circuits/forms/filtersets.py:73 circuits/tables/circuits.py:63 +#: circuits/tables/providers.py:66 templates/circuits/circuit.html:22 +#: templates/circuits/provideraccount.html:24 msgid "Account" msgstr "" -#: netbox/circuits/forms/filtersets.py:217 +#: circuits/forms/filtersets.py:217 msgid "Term Side" msgstr "" -#: netbox/circuits/forms/filtersets.py:250 -#: netbox/extras/forms/model_forms.py:582 netbox/ipam/forms/filtersets.py:142 -#: netbox/ipam/forms/filtersets.py:546 netbox/ipam/forms/model_forms.py:323 -#: netbox/templates/extras/configcontext.html:60 -#: netbox/templates/ipam/ipaddress.html:59 -#: netbox/templates/ipam/vlan_edit.html:30 -#: netbox/tenancy/forms/filtersets.py:87 netbox/users/forms/model_forms.py:314 +#: circuits/forms/filtersets.py:250 extras/forms/model_forms.py:582 +#: ipam/forms/filtersets.py:142 ipam/forms/filtersets.py:546 +#: ipam/forms/model_forms.py:323 templates/extras/configcontext.html:60 +#: templates/ipam/ipaddress.html:59 templates/ipam/vlan_edit.html:30 +#: tenancy/forms/filtersets.py:87 users/forms/model_forms.py:314 msgid "Assignment" msgstr "" -#: netbox/circuits/forms/filtersets.py:265 -#: netbox/circuits/forms/model_forms.py:195 -#: netbox/circuits/tables/circuits.py:155 netbox/dcim/forms/bulk_edit.py:117 -#: netbox/dcim/forms/bulk_import.py:100 netbox/dcim/forms/model_forms.py:117 -#: netbox/dcim/tables/sites.py:89 netbox/extras/forms/filtersets.py:480 -#: netbox/ipam/filtersets.py:999 netbox/ipam/forms/bulk_edit.py:493 -#: netbox/ipam/forms/bulk_import.py:436 netbox/ipam/forms/model_forms.py:528 -#: netbox/ipam/tables/fhrp.py:67 netbox/ipam/tables/vlans.py:122 -#: netbox/ipam/tables/vlans.py:226 -#: netbox/templates/circuits/circuitgroupassignment.html:22 -#: netbox/templates/dcim/interface.html:284 netbox/templates/dcim/site.html:37 -#: netbox/templates/ipam/inc/panels/fhrp_groups.html:23 -#: netbox/templates/ipam/vlan.html:27 netbox/templates/tenancy/contact.html:21 -#: netbox/templates/tenancy/tenant.html:20 netbox/templates/users/group.html:6 -#: netbox/templates/users/group.html:14 -#: netbox/templates/virtualization/cluster.html:29 -#: netbox/templates/vpn/tunnel.html:29 -#: netbox/templates/wireless/wirelesslan.html:18 -#: netbox/tenancy/forms/bulk_edit.py:43 netbox/tenancy/forms/bulk_edit.py:94 -#: netbox/tenancy/forms/bulk_import.py:40 -#: netbox/tenancy/forms/bulk_import.py:81 netbox/tenancy/forms/filtersets.py:48 -#: netbox/tenancy/forms/filtersets.py:78 netbox/tenancy/forms/filtersets.py:97 -#: netbox/tenancy/forms/model_forms.py:45 -#: netbox/tenancy/forms/model_forms.py:97 -#: netbox/tenancy/forms/model_forms.py:122 netbox/tenancy/tables/contacts.py:60 -#: netbox/tenancy/tables/contacts.py:107 netbox/tenancy/tables/tenants.py:42 -#: 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 -#: netbox/virtualization/forms/bulk_edit.py:65 -#: netbox/virtualization/forms/bulk_import.py:47 -#: netbox/virtualization/forms/filtersets.py:85 -#: netbox/virtualization/forms/model_forms.py:66 -#: netbox/virtualization/tables/clusters.py:70 -#: netbox/vpn/forms/bulk_edit.py:112 netbox/vpn/forms/bulk_import.py:158 -#: netbox/vpn/forms/filtersets.py:116 netbox/vpn/tables/crypto.py:31 -#: netbox/vpn/tables/tunnels.py:44 netbox/wireless/forms/bulk_edit.py:48 -#: netbox/wireless/forms/bulk_import.py:36 -#: netbox/wireless/forms/filtersets.py:46 -#: netbox/wireless/forms/model_forms.py:40 -#: netbox/wireless/tables/wirelesslan.py:48 +#: circuits/forms/filtersets.py:265 circuits/forms/model_forms.py:195 +#: circuits/tables/circuits.py:155 dcim/forms/bulk_edit.py:117 +#: dcim/forms/bulk_import.py:100 dcim/forms/model_forms.py:117 +#: dcim/tables/sites.py:89 extras/forms/filtersets.py:480 +#: ipam/filtersets.py:999 ipam/forms/bulk_edit.py:493 +#: ipam/forms/bulk_import.py:436 ipam/forms/model_forms.py:528 +#: ipam/tables/fhrp.py:67 ipam/tables/vlans.py:122 ipam/tables/vlans.py:226 +#: templates/circuits/circuitgroupassignment.html:22 +#: templates/dcim/interface.html:284 templates/dcim/site.html:37 +#: templates/ipam/inc/panels/fhrp_groups.html:23 templates/ipam/vlan.html:27 +#: templates/tenancy/contact.html:21 templates/tenancy/tenant.html:20 +#: templates/users/group.html:6 templates/users/group.html:14 +#: templates/virtualization/cluster.html:29 templates/vpn/tunnel.html:29 +#: templates/wireless/wirelesslan.html:18 tenancy/forms/bulk_edit.py:43 +#: tenancy/forms/bulk_edit.py:94 tenancy/forms/bulk_import.py:40 +#: tenancy/forms/bulk_import.py:81 tenancy/forms/filtersets.py:48 +#: tenancy/forms/filtersets.py:78 tenancy/forms/filtersets.py:97 +#: tenancy/forms/model_forms.py:45 tenancy/forms/model_forms.py:97 +#: tenancy/forms/model_forms.py:122 tenancy/tables/contacts.py:60 +#: tenancy/tables/contacts.py:107 tenancy/tables/tenants.py:42 +#: users/filtersets.py:62 users/filtersets.py:185 users/forms/filtersets.py:31 +#: users/forms/filtersets.py:37 users/forms/filtersets.py:79 +#: virtualization/forms/bulk_edit.py:65 virtualization/forms/bulk_import.py:47 +#: virtualization/forms/filtersets.py:85 virtualization/forms/model_forms.py:66 +#: virtualization/tables/clusters.py:70 vpn/forms/bulk_edit.py:112 +#: vpn/forms/bulk_import.py:158 vpn/forms/filtersets.py:116 +#: vpn/tables/crypto.py:31 vpn/tables/tunnels.py:44 +#: wireless/forms/bulk_edit.py:48 wireless/forms/bulk_import.py:36 +#: wireless/forms/filtersets.py:46 wireless/forms/model_forms.py:40 +#: wireless/tables/wirelesslan.py:48 msgid "Group" msgstr "" -#: netbox/circuits/forms/model_forms.py:182 -#: netbox/templates/circuits/circuitgroup.html:25 +#: circuits/forms/model_forms.py:182 templates/circuits/circuitgroup.html:25 msgid "Circuit Group" msgstr "" -#: netbox/circuits/models/circuits.py:27 netbox/dcim/models/cables.py:67 -#: netbox/dcim/models/device_component_templates.py:517 -#: netbox/dcim/models/device_component_templates.py:617 -#: netbox/dcim/models/device_components.py:975 -#: netbox/dcim/models/device_components.py:1049 -#: netbox/dcim/models/device_components.py:1204 -#: netbox/dcim/models/devices.py:479 netbox/dcim/models/racks.py:224 -#: netbox/extras/models/tags.py:28 +#: circuits/models/circuits.py:27 dcim/models/cables.py:67 +#: dcim/models/device_component_templates.py:517 +#: dcim/models/device_component_templates.py:617 +#: dcim/models/device_components.py:975 dcim/models/device_components.py:1049 +#: dcim/models/device_components.py:1204 dcim/models/devices.py:479 +#: dcim/models/racks.py:224 extras/models/tags.py:28 msgid "color" msgstr "" -#: netbox/circuits/models/circuits.py:36 +#: circuits/models/circuits.py:36 msgid "circuit type" msgstr "" -#: netbox/circuits/models/circuits.py:37 +#: circuits/models/circuits.py:37 msgid "circuit types" msgstr "" -#: netbox/circuits/models/circuits.py:48 +#: circuits/models/circuits.py:48 msgid "circuit ID" msgstr "" -#: netbox/circuits/models/circuits.py:49 +#: circuits/models/circuits.py:49 msgid "Unique circuit ID" msgstr "" -#: netbox/circuits/models/circuits.py:69 netbox/core/models/data.py:52 -#: netbox/core/models/jobs.py:84 netbox/dcim/models/cables.py:49 -#: netbox/dcim/models/devices.py:653 netbox/dcim/models/devices.py:1173 -#: netbox/dcim/models/devices.py:1399 netbox/dcim/models/power.py:96 -#: netbox/dcim/models/racks.py:297 netbox/dcim/models/sites.py:154 -#: netbox/dcim/models/sites.py:266 netbox/ipam/models/ip.py:253 -#: netbox/ipam/models/ip.py:522 netbox/ipam/models/ip.py:730 -#: netbox/ipam/models/vlans.py:195 netbox/virtualization/models/clusters.py:74 -#: netbox/virtualization/models/virtualmachines.py:84 -#: netbox/vpn/models/tunnels.py:40 netbox/wireless/models.py:95 -#: netbox/wireless/models.py:159 +#: circuits/models/circuits.py:69 core/models/data.py:52 core/models/jobs.py:84 +#: dcim/models/cables.py:49 dcim/models/devices.py:653 +#: dcim/models/devices.py:1173 dcim/models/devices.py:1399 +#: dcim/models/power.py:96 dcim/models/racks.py:297 dcim/models/sites.py:154 +#: dcim/models/sites.py:266 ipam/models/ip.py:253 ipam/models/ip.py:522 +#: ipam/models/ip.py:730 ipam/models/vlans.py:195 +#: virtualization/models/clusters.py:74 +#: virtualization/models/virtualmachines.py:84 vpn/models/tunnels.py:40 +#: wireless/models.py:95 wireless/models.py:159 msgid "status" msgstr "" -#: netbox/circuits/models/circuits.py:84 netbox/templates/core/plugin.html:20 +#: circuits/models/circuits.py:84 templates/core/plugin.html:20 msgid "installed" msgstr "" -#: netbox/circuits/models/circuits.py:89 +#: circuits/models/circuits.py:89 msgid "terminates" msgstr "" -#: netbox/circuits/models/circuits.py:94 +#: circuits/models/circuits.py:94 msgid "commit rate (Kbps)" msgstr "" -#: netbox/circuits/models/circuits.py:95 +#: circuits/models/circuits.py:95 msgid "Committed rate" msgstr "" -#: netbox/circuits/models/circuits.py:137 +#: circuits/models/circuits.py:137 msgid "circuit" msgstr "" -#: netbox/circuits/models/circuits.py:138 +#: circuits/models/circuits.py:138 msgid "circuits" msgstr "" -#: netbox/circuits/models/circuits.py:170 +#: circuits/models/circuits.py:170 msgid "circuit group" msgstr "" -#: netbox/circuits/models/circuits.py:171 +#: circuits/models/circuits.py:171 msgid "circuit groups" msgstr "" -#: netbox/circuits/models/circuits.py:195 netbox/ipam/models/fhrp.py:93 -#: netbox/tenancy/models/contacts.py:134 +#: circuits/models/circuits.py:195 ipam/models/fhrp.py:93 +#: tenancy/models/contacts.py:134 msgid "priority" msgstr "" -#: netbox/circuits/models/circuits.py:213 +#: circuits/models/circuits.py:213 msgid "Circuit group assignment" msgstr "" -#: netbox/circuits/models/circuits.py:214 +#: circuits/models/circuits.py:214 msgid "Circuit group assignments" msgstr "" -#: netbox/circuits/models/circuits.py:240 +#: circuits/models/circuits.py:240 msgid "termination" msgstr "" -#: netbox/circuits/models/circuits.py:257 +#: circuits/models/circuits.py:257 msgid "port speed (Kbps)" msgstr "" -#: netbox/circuits/models/circuits.py:260 +#: circuits/models/circuits.py:260 msgid "Physical circuit speed" msgstr "" -#: netbox/circuits/models/circuits.py:265 +#: circuits/models/circuits.py:265 msgid "upstream speed (Kbps)" msgstr "" -#: netbox/circuits/models/circuits.py:266 +#: circuits/models/circuits.py:266 msgid "Upstream speed, if different from port speed" msgstr "" -#: netbox/circuits/models/circuits.py:271 +#: circuits/models/circuits.py:271 msgid "cross-connect ID" msgstr "" -#: netbox/circuits/models/circuits.py:272 +#: circuits/models/circuits.py:272 msgid "ID of the local cross-connect" msgstr "" -#: netbox/circuits/models/circuits.py:277 +#: circuits/models/circuits.py:277 msgid "patch panel/port(s)" msgstr "" -#: netbox/circuits/models/circuits.py:278 +#: circuits/models/circuits.py:278 msgid "Patch panel ID and port number(s)" msgstr "" -#: netbox/circuits/models/circuits.py:281 -#: netbox/dcim/models/device_component_templates.py:61 -#: netbox/dcim/models/device_components.py:68 netbox/dcim/models/racks.py:685 -#: netbox/extras/models/configs.py:45 netbox/extras/models/configs.py:219 -#: netbox/extras/models/customfields.py:125 netbox/extras/models/models.py:61 -#: netbox/extras/models/models.py:158 netbox/extras/models/models.py:396 -#: netbox/extras/models/models.py:511 netbox/extras/models/notifications.py:131 -#: netbox/extras/models/staging.py:31 netbox/extras/models/tags.py:32 -#: netbox/netbox/models/__init__.py:110 netbox/netbox/models/__init__.py:145 -#: netbox/netbox/models/__init__.py:191 netbox/users/models/permissions.py:24 -#: netbox/users/models/tokens.py:57 netbox/users/models/users.py:33 -#: netbox/virtualization/models/virtualmachines.py:289 +#: circuits/models/circuits.py:281 dcim/models/device_component_templates.py:61 +#: dcim/models/device_components.py:68 dcim/models/racks.py:685 +#: extras/models/configs.py:45 extras/models/configs.py:219 +#: extras/models/customfields.py:125 extras/models/models.py:61 +#: extras/models/models.py:158 extras/models/models.py:396 +#: extras/models/models.py:511 extras/models/notifications.py:131 +#: extras/models/staging.py:31 extras/models/tags.py:32 +#: netbox/models/__init__.py:110 netbox/models/__init__.py:145 +#: netbox/models/__init__.py:191 users/models/permissions.py:24 +#: users/models/tokens.py:57 users/models/users.py:33 +#: virtualization/models/virtualmachines.py:289 msgid "description" msgstr "" -#: netbox/circuits/models/circuits.py:294 +#: circuits/models/circuits.py:294 msgid "circuit termination" msgstr "" -#: netbox/circuits/models/circuits.py:295 +#: circuits/models/circuits.py:295 msgid "circuit terminations" msgstr "" -#: netbox/circuits/models/circuits.py:308 +#: circuits/models/circuits.py:308 msgid "" "A circuit termination must attach to either a site or a provider network." msgstr "" -#: netbox/circuits/models/circuits.py:310 +#: circuits/models/circuits.py:310 msgid "" "A circuit termination cannot attach to both a site and a provider network." msgstr "" -#: netbox/circuits/models/providers.py:22 -#: netbox/circuits/models/providers.py:66 -#: netbox/circuits/models/providers.py:104 netbox/core/models/data.py:39 -#: netbox/core/models/jobs.py:45 -#: netbox/dcim/models/device_component_templates.py:43 -#: netbox/dcim/models/device_components.py:53 netbox/dcim/models/devices.py:593 -#: netbox/dcim/models/devices.py:1330 netbox/dcim/models/devices.py:1395 -#: netbox/dcim/models/power.py:39 netbox/dcim/models/power.py:92 -#: netbox/dcim/models/racks.py:262 netbox/dcim/models/sites.py:138 -#: netbox/extras/models/configs.py:36 netbox/extras/models/configs.py:215 -#: netbox/extras/models/customfields.py:92 netbox/extras/models/models.py:56 -#: netbox/extras/models/models.py:153 netbox/extras/models/models.py:296 -#: netbox/extras/models/models.py:392 netbox/extras/models/models.py:501 -#: netbox/extras/models/models.py:596 netbox/extras/models/notifications.py:126 -#: netbox/extras/models/scripts.py:30 netbox/extras/models/staging.py:26 -#: netbox/ipam/models/asns.py:18 netbox/ipam/models/fhrp.py:25 -#: netbox/ipam/models/services.py:52 netbox/ipam/models/services.py:88 -#: netbox/ipam/models/vlans.py:36 netbox/ipam/models/vlans.py:184 -#: netbox/ipam/models/vrfs.py:22 netbox/ipam/models/vrfs.py:79 -#: netbox/netbox/models/__init__.py:137 netbox/netbox/models/__init__.py:181 -#: netbox/tenancy/models/contacts.py:64 netbox/tenancy/models/tenants.py:20 -#: netbox/tenancy/models/tenants.py:45 netbox/users/models/permissions.py:20 -#: netbox/users/models/users.py:28 netbox/virtualization/models/clusters.py:57 -#: netbox/virtualization/models/virtualmachines.py:72 -#: netbox/virtualization/models/virtualmachines.py:279 -#: netbox/vpn/models/crypto.py:24 netbox/vpn/models/crypto.py:71 -#: netbox/vpn/models/crypto.py:131 netbox/vpn/models/crypto.py:183 -#: netbox/vpn/models/crypto.py:221 netbox/vpn/models/l2vpn.py:22 -#: netbox/vpn/models/tunnels.py:35 netbox/wireless/models.py:51 +#: circuits/models/providers.py:22 circuits/models/providers.py:66 +#: circuits/models/providers.py:104 core/models/data.py:39 +#: core/models/jobs.py:45 dcim/models/device_component_templates.py:43 +#: dcim/models/device_components.py:53 dcim/models/devices.py:593 +#: dcim/models/devices.py:1330 dcim/models/devices.py:1395 +#: dcim/models/power.py:39 dcim/models/power.py:92 dcim/models/racks.py:262 +#: dcim/models/sites.py:138 extras/models/configs.py:36 +#: extras/models/configs.py:215 extras/models/customfields.py:92 +#: extras/models/models.py:56 extras/models/models.py:153 +#: extras/models/models.py:296 extras/models/models.py:392 +#: extras/models/models.py:501 extras/models/models.py:596 +#: extras/models/notifications.py:126 extras/models/scripts.py:30 +#: extras/models/staging.py:26 ipam/models/asns.py:18 ipam/models/fhrp.py:25 +#: ipam/models/services.py:52 ipam/models/services.py:88 +#: ipam/models/vlans.py:36 ipam/models/vlans.py:184 ipam/models/vrfs.py:22 +#: ipam/models/vrfs.py:79 netbox/models/__init__.py:137 +#: netbox/models/__init__.py:181 tenancy/models/contacts.py:64 +#: tenancy/models/tenants.py:20 tenancy/models/tenants.py:45 +#: users/models/permissions.py:20 users/models/users.py:28 +#: virtualization/models/clusters.py:57 +#: virtualization/models/virtualmachines.py:72 +#: virtualization/models/virtualmachines.py:279 vpn/models/crypto.py:24 +#: vpn/models/crypto.py:71 vpn/models/crypto.py:131 vpn/models/crypto.py:183 +#: vpn/models/crypto.py:221 vpn/models/l2vpn.py:22 vpn/models/tunnels.py:35 +#: wireless/models.py:51 msgid "name" msgstr "" -#: netbox/circuits/models/providers.py:25 +#: circuits/models/providers.py:25 msgid "Full name of the provider" msgstr "" -#: netbox/circuits/models/providers.py:28 netbox/dcim/models/devices.py:86 -#: netbox/dcim/models/racks.py:137 netbox/dcim/models/sites.py:149 -#: netbox/extras/models/models.py:506 netbox/ipam/models/asns.py:23 -#: netbox/ipam/models/vlans.py:40 netbox/netbox/models/__init__.py:141 -#: netbox/netbox/models/__init__.py:186 netbox/tenancy/models/tenants.py:25 -#: netbox/tenancy/models/tenants.py:49 netbox/vpn/models/l2vpn.py:27 -#: netbox/wireless/models.py:56 +#: circuits/models/providers.py:28 dcim/models/devices.py:86 +#: dcim/models/racks.py:137 dcim/models/sites.py:149 +#: extras/models/models.py:506 ipam/models/asns.py:23 ipam/models/vlans.py:40 +#: netbox/models/__init__.py:141 netbox/models/__init__.py:186 +#: tenancy/models/tenants.py:25 tenancy/models/tenants.py:49 +#: vpn/models/l2vpn.py:27 wireless/models.py:56 msgid "slug" msgstr "" -#: netbox/circuits/models/providers.py:42 +#: circuits/models/providers.py:42 msgid "provider" msgstr "" -#: netbox/circuits/models/providers.py:43 +#: circuits/models/providers.py:43 msgid "providers" msgstr "" -#: netbox/circuits/models/providers.py:63 +#: circuits/models/providers.py:63 msgid "account ID" msgstr "" -#: netbox/circuits/models/providers.py:86 +#: circuits/models/providers.py:86 msgid "provider account" msgstr "" -#: netbox/circuits/models/providers.py:87 +#: circuits/models/providers.py:87 msgid "provider accounts" msgstr "" -#: netbox/circuits/models/providers.py:115 +#: circuits/models/providers.py:115 msgid "service ID" msgstr "" -#: netbox/circuits/models/providers.py:126 +#: circuits/models/providers.py:126 msgid "provider network" msgstr "" -#: netbox/circuits/models/providers.py:127 +#: circuits/models/providers.py:127 msgid "provider networks" msgstr "" -#: netbox/circuits/tables/circuits.py:32 netbox/circuits/tables/circuits.py:132 -#: netbox/circuits/tables/providers.py:18 -#: netbox/circuits/tables/providers.py:69 -#: netbox/circuits/tables/providers.py:99 netbox/core/tables/data.py:16 -#: netbox/core/tables/jobs.py:14 netbox/core/tables/plugins.py:44 -#: netbox/core/tables/tasks.py:11 netbox/core/tables/tasks.py:115 -#: netbox/dcim/forms/filtersets.py:63 netbox/dcim/forms/object_create.py:43 -#: netbox/dcim/tables/devices.py:52 netbox/dcim/tables/devices.py:92 -#: netbox/dcim/tables/devices.py:134 netbox/dcim/tables/devices.py:289 -#: netbox/dcim/tables/devices.py:392 netbox/dcim/tables/devices.py:433 -#: netbox/dcim/tables/devices.py:482 netbox/dcim/tables/devices.py:531 -#: netbox/dcim/tables/devices.py:648 netbox/dcim/tables/devices.py:731 -#: netbox/dcim/tables/devices.py:778 netbox/dcim/tables/devices.py:841 -#: netbox/dcim/tables/devices.py:911 netbox/dcim/tables/devices.py:974 -#: netbox/dcim/tables/devices.py:994 netbox/dcim/tables/devices.py:1023 -#: netbox/dcim/tables/devices.py:1053 netbox/dcim/tables/devicetypes.py:31 -#: netbox/dcim/tables/power.py:22 netbox/dcim/tables/power.py:62 -#: netbox/dcim/tables/racks.py:24 netbox/dcim/tables/racks.py:113 -#: netbox/dcim/tables/sites.py:24 netbox/dcim/tables/sites.py:51 -#: netbox/dcim/tables/sites.py:78 netbox/dcim/tables/sites.py:130 -#: netbox/extras/forms/filtersets.py:213 netbox/extras/tables/tables.py:58 -#: netbox/extras/tables/tables.py:122 netbox/extras/tables/tables.py:155 -#: netbox/extras/tables/tables.py:180 netbox/extras/tables/tables.py:246 -#: netbox/extras/tables/tables.py:361 netbox/extras/tables/tables.py:378 -#: netbox/extras/tables/tables.py:401 netbox/extras/tables/tables.py:439 -#: netbox/extras/tables/tables.py:491 netbox/extras/tables/tables.py:514 -#: netbox/ipam/forms/bulk_edit.py:407 netbox/ipam/forms/filtersets.py:386 -#: netbox/ipam/tables/asn.py:16 netbox/ipam/tables/ip.py:85 -#: netbox/ipam/tables/ip.py:160 netbox/ipam/tables/services.py:15 -#: netbox/ipam/tables/services.py:40 netbox/ipam/tables/vlans.py:64 -#: netbox/ipam/tables/vlans.py:114 netbox/ipam/tables/vrfs.py:26 -#: netbox/ipam/tables/vrfs.py:68 netbox/templates/circuits/circuitgroup.html:28 -#: netbox/templates/circuits/circuittype.html:22 -#: netbox/templates/circuits/provideraccount.html:28 -#: netbox/templates/circuits/providernetwork.html:24 -#: netbox/templates/core/datasource.html:34 netbox/templates/core/job.html:44 -#: netbox/templates/core/plugin.html:54 netbox/templates/core/rq_worker.html:43 -#: netbox/templates/dcim/consoleport.html:28 -#: netbox/templates/dcim/consoleserverport.html:28 -#: netbox/templates/dcim/devicebay.html:24 -#: netbox/templates/dcim/devicerole.html:26 -#: netbox/templates/dcim/frontport.html:28 -#: netbox/templates/dcim/inc/interface_vlans_table.html:5 -#: netbox/templates/dcim/inc/panels/inventory_items.html:18 -#: netbox/templates/dcim/interface.html:38 -#: netbox/templates/dcim/interface.html:165 -#: netbox/templates/dcim/inventoryitem.html:28 -#: netbox/templates/dcim/inventoryitemrole.html:18 -#: netbox/templates/dcim/location.html:29 -#: netbox/templates/dcim/manufacturer.html:36 -#: netbox/templates/dcim/modulebay.html:30 -#: netbox/templates/dcim/platform.html:29 -#: netbox/templates/dcim/poweroutlet.html:28 -#: netbox/templates/dcim/powerport.html:28 -#: netbox/templates/dcim/rackrole.html:22 -#: netbox/templates/dcim/rearport.html:28 netbox/templates/dcim/region.html:29 -#: netbox/templates/dcim/sitegroup.html:29 -#: netbox/templates/dcim/virtualdevicecontext.html:18 -#: netbox/templates/extras/configcontext.html:13 -#: netbox/templates/extras/configtemplate.html:13 -#: netbox/templates/extras/customfield.html:13 -#: netbox/templates/extras/customlink.html:13 -#: netbox/templates/extras/eventrule.html:13 -#: netbox/templates/extras/exporttemplate.html:15 -#: netbox/templates/extras/notificationgroup.html:14 -#: netbox/templates/extras/savedfilter.html:13 -#: netbox/templates/extras/script_list.html:44 -#: netbox/templates/extras/tag.html:14 netbox/templates/extras/webhook.html:13 -#: netbox/templates/ipam/asnrange.html:15 -#: netbox/templates/ipam/fhrpgroup.html:30 netbox/templates/ipam/rir.html:22 -#: netbox/templates/ipam/role.html:22 netbox/templates/ipam/routetarget.html:13 -#: netbox/templates/ipam/service.html:24 -#: netbox/templates/ipam/servicetemplate.html:15 -#: netbox/templates/ipam/vlan.html:35 netbox/templates/ipam/vlangroup.html:30 -#: netbox/templates/tenancy/contact.html:25 -#: netbox/templates/tenancy/contactgroup.html:21 -#: netbox/templates/tenancy/contactrole.html:18 -#: netbox/templates/tenancy/tenantgroup.html:29 -#: netbox/templates/users/group.html:17 -#: netbox/templates/users/objectpermission.html:17 -#: netbox/templates/virtualization/cluster.html:13 -#: netbox/templates/virtualization/clustergroup.html:22 -#: netbox/templates/virtualization/clustertype.html:22 -#: netbox/templates/virtualization/virtualdisk.html:25 -#: netbox/templates/virtualization/virtualmachine.html:15 -#: netbox/templates/virtualization/vminterface.html:25 -#: netbox/templates/vpn/ikepolicy.html:13 -#: netbox/templates/vpn/ikeproposal.html:13 -#: netbox/templates/vpn/ipsecpolicy.html:13 -#: netbox/templates/vpn/ipsecprofile.html:13 -#: netbox/templates/vpn/ipsecprofile.html:36 -#: netbox/templates/vpn/ipsecprofile.html:69 -#: netbox/templates/vpn/ipsecproposal.html:13 -#: netbox/templates/vpn/l2vpn.html:14 netbox/templates/vpn/tunnel.html:21 -#: netbox/templates/vpn/tunnelgroup.html:26 -#: netbox/templates/wireless/wirelesslangroup.html:29 -#: netbox/tenancy/tables/contacts.py:19 netbox/tenancy/tables/contacts.py:41 -#: netbox/tenancy/tables/contacts.py:56 netbox/tenancy/tables/tenants.py:16 -#: netbox/tenancy/tables/tenants.py:38 netbox/users/tables.py:62 -#: netbox/users/tables.py:76 netbox/virtualization/forms/bulk_create.py:20 -#: netbox/virtualization/forms/object_create.py:13 -#: netbox/virtualization/forms/object_create.py:23 -#: netbox/virtualization/tables/clusters.py:17 -#: netbox/virtualization/tables/clusters.py:39 -#: netbox/virtualization/tables/clusters.py:62 -#: netbox/virtualization/tables/virtualmachines.py:55 -#: netbox/virtualization/tables/virtualmachines.py:139 -#: netbox/virtualization/tables/virtualmachines.py:194 -#: netbox/vpn/tables/crypto.py:18 netbox/vpn/tables/crypto.py:57 -#: netbox/vpn/tables/crypto.py:93 netbox/vpn/tables/crypto.py:129 -#: netbox/vpn/tables/crypto.py:158 netbox/vpn/tables/l2vpn.py:23 -#: netbox/vpn/tables/tunnels.py:18 netbox/vpn/tables/tunnels.py:40 -#: netbox/wireless/tables/wirelesslan.py:18 -#: netbox/wireless/tables/wirelesslan.py:79 +#: circuits/tables/circuits.py:32 circuits/tables/circuits.py:132 +#: circuits/tables/providers.py:18 circuits/tables/providers.py:69 +#: circuits/tables/providers.py:99 core/tables/data.py:16 +#: core/tables/jobs.py:14 core/tables/plugins.py:44 core/tables/tasks.py:11 +#: core/tables/tasks.py:115 dcim/forms/filtersets.py:63 +#: dcim/forms/object_create.py:43 dcim/tables/devices.py:52 +#: dcim/tables/devices.py:92 dcim/tables/devices.py:134 +#: dcim/tables/devices.py:289 dcim/tables/devices.py:392 +#: dcim/tables/devices.py:433 dcim/tables/devices.py:482 +#: dcim/tables/devices.py:531 dcim/tables/devices.py:648 +#: dcim/tables/devices.py:731 dcim/tables/devices.py:778 +#: dcim/tables/devices.py:841 dcim/tables/devices.py:911 +#: dcim/tables/devices.py:974 dcim/tables/devices.py:994 +#: dcim/tables/devices.py:1023 dcim/tables/devices.py:1053 +#: dcim/tables/devicetypes.py:31 dcim/tables/power.py:22 +#: dcim/tables/power.py:62 dcim/tables/racks.py:24 dcim/tables/racks.py:113 +#: dcim/tables/sites.py:24 dcim/tables/sites.py:51 dcim/tables/sites.py:78 +#: dcim/tables/sites.py:130 extras/forms/filtersets.py:213 +#: extras/tables/tables.py:58 extras/tables/tables.py:122 +#: extras/tables/tables.py:155 extras/tables/tables.py:180 +#: extras/tables/tables.py:246 extras/tables/tables.py:361 +#: extras/tables/tables.py:378 extras/tables/tables.py:401 +#: extras/tables/tables.py:439 extras/tables/tables.py:491 +#: extras/tables/tables.py:514 ipam/forms/bulk_edit.py:407 +#: ipam/forms/filtersets.py:386 ipam/tables/asn.py:16 ipam/tables/ip.py:85 +#: ipam/tables/ip.py:160 ipam/tables/services.py:15 ipam/tables/services.py:40 +#: ipam/tables/vlans.py:64 ipam/tables/vlans.py:114 ipam/tables/vrfs.py:26 +#: ipam/tables/vrfs.py:68 templates/circuits/circuitgroup.html:28 +#: templates/circuits/circuittype.html:22 +#: templates/circuits/provideraccount.html:28 +#: templates/circuits/providernetwork.html:24 templates/core/datasource.html:34 +#: templates/core/job.html:44 templates/core/plugin.html:54 +#: templates/core/rq_worker.html:43 templates/dcim/consoleport.html:28 +#: templates/dcim/consoleserverport.html:28 templates/dcim/devicebay.html:24 +#: templates/dcim/devicerole.html:26 templates/dcim/frontport.html:28 +#: templates/dcim/inc/interface_vlans_table.html:5 +#: templates/dcim/inc/panels/inventory_items.html:18 +#: templates/dcim/interface.html:38 templates/dcim/interface.html:165 +#: templates/dcim/inventoryitem.html:28 +#: templates/dcim/inventoryitemrole.html:18 templates/dcim/location.html:29 +#: templates/dcim/manufacturer.html:36 templates/dcim/modulebay.html:30 +#: templates/dcim/platform.html:29 templates/dcim/poweroutlet.html:28 +#: templates/dcim/powerport.html:28 templates/dcim/rackrole.html:22 +#: templates/dcim/rearport.html:28 templates/dcim/region.html:29 +#: templates/dcim/sitegroup.html:29 templates/dcim/virtualdevicecontext.html:18 +#: templates/extras/configcontext.html:13 +#: templates/extras/configtemplate.html:13 templates/extras/customfield.html:13 +#: templates/extras/customlink.html:13 templates/extras/eventrule.html:13 +#: templates/extras/exporttemplate.html:15 +#: templates/extras/notificationgroup.html:14 +#: templates/extras/savedfilter.html:13 templates/extras/script_list.html:44 +#: templates/extras/tag.html:14 templates/extras/webhook.html:13 +#: templates/ipam/asnrange.html:15 templates/ipam/fhrpgroup.html:30 +#: templates/ipam/rir.html:22 templates/ipam/role.html:22 +#: templates/ipam/routetarget.html:13 templates/ipam/service.html:24 +#: templates/ipam/servicetemplate.html:15 templates/ipam/vlan.html:35 +#: templates/ipam/vlangroup.html:30 templates/tenancy/contact.html:25 +#: templates/tenancy/contactgroup.html:21 templates/tenancy/contactrole.html:18 +#: templates/tenancy/tenantgroup.html:29 templates/users/group.html:17 +#: templates/users/objectpermission.html:17 +#: templates/virtualization/cluster.html:13 +#: templates/virtualization/clustergroup.html:22 +#: templates/virtualization/clustertype.html:22 +#: templates/virtualization/virtualdisk.html:25 +#: templates/virtualization/virtualmachine.html:15 +#: templates/virtualization/vminterface.html:25 templates/vpn/ikepolicy.html:13 +#: templates/vpn/ikeproposal.html:13 templates/vpn/ipsecpolicy.html:13 +#: templates/vpn/ipsecprofile.html:13 templates/vpn/ipsecprofile.html:36 +#: templates/vpn/ipsecprofile.html:69 templates/vpn/ipsecproposal.html:13 +#: templates/vpn/l2vpn.html:14 templates/vpn/tunnel.html:21 +#: templates/vpn/tunnelgroup.html:26 +#: templates/wireless/wirelesslangroup.html:29 tenancy/tables/contacts.py:19 +#: tenancy/tables/contacts.py:41 tenancy/tables/contacts.py:56 +#: tenancy/tables/tenants.py:16 tenancy/tables/tenants.py:38 users/tables.py:62 +#: users/tables.py:76 virtualization/forms/bulk_create.py:20 +#: virtualization/forms/object_create.py:13 +#: virtualization/forms/object_create.py:23 +#: virtualization/tables/clusters.py:17 virtualization/tables/clusters.py:39 +#: virtualization/tables/clusters.py:62 +#: virtualization/tables/virtualmachines.py:55 +#: virtualization/tables/virtualmachines.py:139 +#: virtualization/tables/virtualmachines.py:194 vpn/tables/crypto.py:18 +#: vpn/tables/crypto.py:57 vpn/tables/crypto.py:93 vpn/tables/crypto.py:129 +#: vpn/tables/crypto.py:158 vpn/tables/l2vpn.py:23 vpn/tables/tunnels.py:18 +#: vpn/tables/tunnels.py:40 wireless/tables/wirelesslan.py:18 +#: wireless/tables/wirelesslan.py:79 msgid "Name" msgstr "" -#: netbox/circuits/tables/circuits.py:41 netbox/circuits/tables/circuits.py:138 -#: netbox/circuits/tables/providers.py:45 -#: netbox/circuits/tables/providers.py:79 netbox/netbox/navigation/menu.py:266 -#: netbox/netbox/navigation/menu.py:270 netbox/netbox/navigation/menu.py:272 -#: netbox/templates/circuits/provider.html:57 -#: netbox/templates/circuits/provideraccount.html:44 -#: netbox/templates/circuits/providernetwork.html:50 +#: circuits/tables/circuits.py:41 circuits/tables/circuits.py:138 +#: circuits/tables/providers.py:45 circuits/tables/providers.py:79 +#: netbox/navigation/menu.py:266 netbox/navigation/menu.py:270 +#: netbox/navigation/menu.py:272 templates/circuits/provider.html:57 +#: templates/circuits/provideraccount.html:44 +#: templates/circuits/providernetwork.html:50 msgid "Circuits" msgstr "" -#: netbox/circuits/tables/circuits.py:55 -#: netbox/templates/circuits/circuit.html:26 +#: circuits/tables/circuits.py:55 templates/circuits/circuit.html:26 msgid "Circuit ID" msgstr "" -#: netbox/circuits/tables/circuits.py:69 -#: netbox/wireless/forms/model_forms.py:160 +#: circuits/tables/circuits.py:69 wireless/forms/model_forms.py:160 msgid "Side A" msgstr "" -#: netbox/circuits/tables/circuits.py:74 +#: circuits/tables/circuits.py:74 msgid "Side Z" msgstr "" -#: netbox/circuits/tables/circuits.py:77 -#: netbox/templates/circuits/circuit.html:55 +#: circuits/tables/circuits.py:77 templates/circuits/circuit.html:55 msgid "Commit Rate" msgstr "" -#: netbox/circuits/tables/circuits.py:80 netbox/circuits/tables/providers.py:48 -#: netbox/circuits/tables/providers.py:82 -#: netbox/circuits/tables/providers.py:107 netbox/dcim/tables/devices.py:1036 -#: netbox/dcim/tables/devicetypes.py:92 netbox/dcim/tables/modules.py:29 -#: netbox/dcim/tables/modules.py:72 netbox/dcim/tables/power.py:39 -#: netbox/dcim/tables/power.py:96 netbox/dcim/tables/racks.py:84 -#: netbox/dcim/tables/racks.py:145 netbox/dcim/tables/racks.py:225 -#: netbox/dcim/tables/sites.py:108 netbox/extras/tables/tables.py:582 -#: netbox/ipam/tables/asn.py:69 netbox/ipam/tables/fhrp.py:34 -#: netbox/ipam/tables/ip.py:136 netbox/ipam/tables/ip.py:275 -#: netbox/ipam/tables/ip.py:329 netbox/ipam/tables/ip.py:397 -#: netbox/ipam/tables/services.py:24 netbox/ipam/tables/services.py:54 -#: netbox/ipam/tables/vlans.py:145 netbox/ipam/tables/vrfs.py:47 -#: netbox/ipam/tables/vrfs.py:72 netbox/templates/dcim/htmx/cable_edit.html:89 -#: netbox/templates/generic/bulk_edit.html:86 -#: netbox/templates/inc/panels/comments.html:5 -#: netbox/tenancy/tables/contacts.py:68 netbox/tenancy/tables/tenants.py:46 -#: netbox/utilities/forms/fields/fields.py:29 -#: netbox/virtualization/tables/clusters.py:91 -#: netbox/virtualization/tables/virtualmachines.py:82 -#: netbox/vpn/tables/crypto.py:37 netbox/vpn/tables/crypto.py:74 -#: netbox/vpn/tables/crypto.py:109 netbox/vpn/tables/crypto.py:140 -#: netbox/vpn/tables/crypto.py:173 netbox/vpn/tables/l2vpn.py:37 -#: netbox/vpn/tables/tunnels.py:61 netbox/wireless/tables/wirelesslan.py:27 -#: netbox/wireless/tables/wirelesslan.py:58 +#: circuits/tables/circuits.py:80 circuits/tables/providers.py:48 +#: circuits/tables/providers.py:82 circuits/tables/providers.py:107 +#: dcim/tables/devices.py:1036 dcim/tables/devicetypes.py:92 +#: dcim/tables/modules.py:29 dcim/tables/modules.py:72 dcim/tables/power.py:39 +#: dcim/tables/power.py:96 dcim/tables/racks.py:84 dcim/tables/racks.py:145 +#: dcim/tables/racks.py:225 dcim/tables/sites.py:108 +#: extras/tables/tables.py:582 ipam/tables/asn.py:69 ipam/tables/fhrp.py:34 +#: ipam/tables/ip.py:136 ipam/tables/ip.py:275 ipam/tables/ip.py:329 +#: ipam/tables/ip.py:397 ipam/tables/services.py:24 ipam/tables/services.py:54 +#: ipam/tables/vlans.py:145 ipam/tables/vrfs.py:47 ipam/tables/vrfs.py:72 +#: templates/dcim/htmx/cable_edit.html:89 templates/generic/bulk_edit.html:86 +#: templates/inc/panels/comments.html:5 tenancy/tables/contacts.py:68 +#: tenancy/tables/tenants.py:46 utilities/forms/fields/fields.py:29 +#: virtualization/tables/clusters.py:91 +#: virtualization/tables/virtualmachines.py:82 vpn/tables/crypto.py:37 +#: vpn/tables/crypto.py:74 vpn/tables/crypto.py:109 vpn/tables/crypto.py:140 +#: vpn/tables/crypto.py:173 vpn/tables/l2vpn.py:37 vpn/tables/tunnels.py:61 +#: wireless/tables/wirelesslan.py:27 wireless/tables/wirelesslan.py:58 msgid "Comments" msgstr "" -#: netbox/circuits/tables/circuits.py:86 -#: netbox/templates/tenancy/contact.html:84 -#: netbox/tenancy/tables/contacts.py:73 +#: circuits/tables/circuits.py:86 templates/tenancy/contact.html:84 +#: tenancy/tables/contacts.py:73 msgid "Assignments" msgstr "" -#: netbox/circuits/tables/providers.py:23 +#: circuits/tables/providers.py:23 msgid "Accounts" msgstr "" -#: netbox/circuits/tables/providers.py:29 +#: circuits/tables/providers.py:29 msgid "Account Count" msgstr "" -#: netbox/circuits/tables/providers.py:39 netbox/dcim/tables/sites.py:100 +#: circuits/tables/providers.py:39 dcim/tables/sites.py:100 msgid "ASN Count" msgstr "" -#: netbox/circuits/views.py:331 +#: circuits/views.py:331 #, python-brace-format msgid "No terminations have been defined for circuit {circuit}." msgstr "" -#: netbox/circuits/views.py:380 +#: circuits/views.py:380 #, python-brace-format msgid "Swapped terminations for circuit {circuit}." msgstr "" -#: netbox/core/api/views.py:39 +#: core/api/views.py:39 msgid "This user does not have permission to synchronize this data source." msgstr "" -#: netbox/core/choices.py:18 +#: core/choices.py:18 msgid "New" msgstr "" -#: netbox/core/choices.py:19 netbox/core/constants.py:18 -#: netbox/core/tables/tasks.py:15 netbox/templates/core/rq_task.html:77 +#: core/choices.py:19 core/constants.py:18 core/tables/tasks.py:15 +#: templates/core/rq_task.html:77 msgid "Queued" msgstr "" -#: netbox/core/choices.py:20 +#: core/choices.py:20 msgid "Syncing" msgstr "" -#: netbox/core/choices.py:21 netbox/core/choices.py:57 -#: netbox/core/tables/jobs.py:41 netbox/templates/core/job.html:86 +#: core/choices.py:21 core/choices.py:57 core/tables/jobs.py:41 +#: templates/core/job.html:86 msgid "Completed" msgstr "" -#: netbox/core/choices.py:22 netbox/core/choices.py:59 -#: netbox/core/constants.py:20 netbox/core/tables/tasks.py:34 -#: netbox/dcim/choices.py:187 netbox/dcim/choices.py:239 -#: netbox/dcim/choices.py:1607 netbox/virtualization/choices.py:47 +#: core/choices.py:22 core/choices.py:59 core/constants.py:20 +#: core/tables/tasks.py:34 dcim/choices.py:187 dcim/choices.py:239 +#: dcim/choices.py:1607 virtualization/choices.py:47 msgid "Failed" msgstr "" -#: netbox/core/choices.py:35 netbox/netbox/navigation/menu.py:335 -#: netbox/netbox/navigation/menu.py:339 -#: netbox/templates/extras/script/base.html:14 -#: netbox/templates/extras/script_list.html:7 -#: netbox/templates/extras/script_list.html:12 -#: netbox/templates/extras/script_result.html:17 +#: core/choices.py:35 netbox/navigation/menu.py:335 +#: netbox/navigation/menu.py:339 templates/extras/script/base.html:14 +#: templates/extras/script_list.html:7 templates/extras/script_list.html:12 +#: templates/extras/script_result.html:17 msgid "Scripts" msgstr "" -#: netbox/core/choices.py:36 netbox/templates/extras/report/base.html:13 +#: core/choices.py:36 templates/extras/report/base.html:13 msgid "Reports" msgstr "" -#: netbox/core/choices.py:54 +#: core/choices.py:54 msgid "Pending" msgstr "" -#: netbox/core/choices.py:55 netbox/core/constants.py:23 -#: netbox/core/tables/jobs.py:32 netbox/core/tables/tasks.py:38 -#: netbox/templates/core/job.html:73 +#: core/choices.py:55 core/constants.py:23 core/tables/jobs.py:32 +#: core/tables/tasks.py:38 templates/core/job.html:73 msgid "Scheduled" msgstr "" -#: netbox/core/choices.py:56 +#: core/choices.py:56 msgid "Running" msgstr "" -#: netbox/core/choices.py:58 +#: core/choices.py:58 msgid "Errored" msgstr "" -#: netbox/core/choices.py:87 netbox/core/tables/plugins.py:63 -#: netbox/templates/generic/object.html:61 +#: core/choices.py:87 core/tables/plugins.py:63 +#: templates/generic/object.html:61 msgid "Updated" msgstr "" -#: netbox/core/choices.py:88 +#: core/choices.py:88 msgid "Deleted" msgstr "" -#: netbox/core/constants.py:19 netbox/core/tables/tasks.py:30 +#: core/constants.py:19 core/tables/tasks.py:30 msgid "Finished" msgstr "" -#: netbox/core/constants.py:21 netbox/core/tables/jobs.py:38 -#: netbox/templates/core/job.html:82 -#: netbox/templates/extras/htmx/script_result.html:8 +#: core/constants.py:21 core/tables/jobs.py:38 templates/core/job.html:82 +#: templates/extras/htmx/script_result.html:8 msgid "Started" msgstr "" -#: netbox/core/constants.py:22 netbox/core/tables/tasks.py:26 +#: core/constants.py:22 core/tables/tasks.py:26 msgid "Deferred" msgstr "" -#: netbox/core/constants.py:24 +#: core/constants.py:24 msgid "Stopped" msgstr "" -#: netbox/core/constants.py:25 +#: core/constants.py:25 msgid "Cancelled" msgstr "" -#: netbox/core/data_backends.py:32 netbox/core/tables/plugins.py:51 -#: netbox/templates/core/plugin.html:88 -#: netbox/templates/dcim/interface.html:216 +#: core/data_backends.py:32 core/tables/plugins.py:51 +#: templates/core/plugin.html:88 templates/dcim/interface.html:216 msgid "Local" msgstr "" -#: netbox/core/data_backends.py:50 netbox/core/tables/change_logging.py:20 -#: netbox/templates/account/profile.html:15 netbox/templates/users/user.html:17 -#: netbox/users/tables.py:31 +#: core/data_backends.py:50 core/tables/change_logging.py:20 +#: templates/account/profile.html:15 templates/users/user.html:17 +#: users/tables.py:31 msgid "Username" msgstr "" -#: netbox/core/data_backends.py:52 netbox/core/data_backends.py:58 +#: core/data_backends.py:52 core/data_backends.py:58 msgid "Only used for cloning with HTTP(S)" msgstr "" -#: netbox/core/data_backends.py:56 netbox/templates/account/base.html:23 -#: netbox/templates/account/password.html:12 -#: netbox/users/forms/model_forms.py:170 +#: core/data_backends.py:56 templates/account/base.html:23 +#: templates/account/password.html:12 users/forms/model_forms.py:170 msgid "Password" msgstr "" -#: netbox/core/data_backends.py:62 +#: core/data_backends.py:62 msgid "Branch" msgstr "" -#: netbox/core/data_backends.py:120 +#: core/data_backends.py:120 #, python-brace-format msgid "Fetching remote data failed ({name}): {error}" msgstr "" -#: netbox/core/data_backends.py:133 +#: core/data_backends.py:133 msgid "AWS access key ID" msgstr "" -#: netbox/core/data_backends.py:137 +#: core/data_backends.py:137 msgid "AWS secret access key" msgstr "" -#: netbox/core/events.py:27 +#: core/events.py:27 msgid "Object created" msgstr "" -#: netbox/core/events.py:28 +#: core/events.py:28 msgid "Object updated" msgstr "" -#: netbox/core/events.py:29 +#: core/events.py:29 msgid "Object deleted" msgstr "" -#: netbox/core/events.py:30 +#: core/events.py:30 msgid "Job started" msgstr "" -#: netbox/core/events.py:31 +#: core/events.py:31 msgid "Job completed" msgstr "" -#: netbox/core/events.py:32 +#: core/events.py:32 msgid "Job failed" msgstr "" -#: netbox/core/events.py:33 +#: core/events.py:33 msgid "Job errored" msgstr "" -#: netbox/core/filtersets.py:53 netbox/extras/filtersets.py:250 -#: netbox/extras/filtersets.py:633 netbox/extras/filtersets.py:661 +#: core/filtersets.py:53 extras/filtersets.py:250 extras/filtersets.py:633 +#: extras/filtersets.py:661 msgid "Data source (ID)" msgstr "" -#: netbox/core/filtersets.py:59 +#: core/filtersets.py:59 msgid "Data source (name)" msgstr "" -#: netbox/core/filtersets.py:145 netbox/dcim/filtersets.py:501 -#: netbox/extras/filtersets.py:287 netbox/extras/filtersets.py:331 -#: netbox/extras/filtersets.py:353 netbox/extras/filtersets.py:413 -#: netbox/users/filtersets.py:28 +#: core/filtersets.py:145 dcim/filtersets.py:501 extras/filtersets.py:287 +#: extras/filtersets.py:331 extras/filtersets.py:353 extras/filtersets.py:413 +#: users/filtersets.py:28 msgid "User (ID)" msgstr "" -#: netbox/core/filtersets.py:151 +#: core/filtersets.py:151 msgid "User name" msgstr "" -#: netbox/core/forms/bulk_edit.py:25 netbox/core/forms/filtersets.py:43 -#: netbox/core/tables/data.py:26 netbox/dcim/forms/bulk_edit.py:1122 -#: netbox/dcim/forms/bulk_edit.py:1400 netbox/dcim/forms/filtersets.py:1370 -#: netbox/dcim/tables/devices.py:553 netbox/dcim/tables/devicetypes.py:224 -#: netbox/extras/forms/bulk_edit.py:123 netbox/extras/forms/bulk_edit.py:187 -#: netbox/extras/forms/bulk_edit.py:246 netbox/extras/forms/filtersets.py:142 -#: netbox/extras/forms/filtersets.py:229 netbox/extras/forms/filtersets.py:294 -#: netbox/extras/tables/tables.py:162 netbox/extras/tables/tables.py:253 -#: netbox/extras/tables/tables.py:415 netbox/netbox/preferences.py:22 -#: netbox/templates/core/datasource.html:42 -#: netbox/templates/dcim/interface.html:61 -#: netbox/templates/extras/customlink.html:17 -#: netbox/templates/extras/eventrule.html:17 -#: netbox/templates/extras/savedfilter.html:25 -#: netbox/templates/users/objectpermission.html:25 -#: netbox/templates/virtualization/vminterface.html:29 -#: netbox/users/forms/bulk_edit.py:89 netbox/users/forms/filtersets.py:70 -#: netbox/users/tables.py:83 netbox/virtualization/forms/bulk_edit.py:217 -#: netbox/virtualization/forms/filtersets.py:215 +#: core/forms/bulk_edit.py:25 core/forms/filtersets.py:43 +#: core/tables/data.py:26 dcim/forms/bulk_edit.py:1122 +#: dcim/forms/bulk_edit.py:1400 dcim/forms/filtersets.py:1370 +#: dcim/tables/devices.py:553 dcim/tables/devicetypes.py:224 +#: extras/forms/bulk_edit.py:123 extras/forms/bulk_edit.py:187 +#: extras/forms/bulk_edit.py:246 extras/forms/filtersets.py:142 +#: extras/forms/filtersets.py:229 extras/forms/filtersets.py:294 +#: extras/tables/tables.py:162 extras/tables/tables.py:253 +#: extras/tables/tables.py:415 netbox/preferences.py:22 +#: templates/core/datasource.html:42 templates/dcim/interface.html:61 +#: templates/extras/customlink.html:17 templates/extras/eventrule.html:17 +#: templates/extras/savedfilter.html:25 +#: templates/users/objectpermission.html:25 +#: templates/virtualization/vminterface.html:29 users/forms/bulk_edit.py:89 +#: users/forms/filtersets.py:70 users/tables.py:83 +#: virtualization/forms/bulk_edit.py:217 virtualization/forms/filtersets.py:215 msgid "Enabled" msgstr "" -#: netbox/core/forms/bulk_edit.py:34 netbox/extras/forms/model_forms.py:285 -#: netbox/templates/extras/savedfilter.html:52 -#: netbox/vpn/forms/filtersets.py:97 netbox/vpn/forms/filtersets.py:127 -#: netbox/vpn/forms/filtersets.py:151 netbox/vpn/forms/filtersets.py:170 -#: netbox/vpn/forms/model_forms.py:301 netbox/vpn/forms/model_forms.py:321 -#: netbox/vpn/forms/model_forms.py:337 netbox/vpn/forms/model_forms.py:357 -#: netbox/vpn/forms/model_forms.py:380 +#: core/forms/bulk_edit.py:34 extras/forms/model_forms.py:285 +#: templates/extras/savedfilter.html:52 vpn/forms/filtersets.py:97 +#: vpn/forms/filtersets.py:127 vpn/forms/filtersets.py:151 +#: vpn/forms/filtersets.py:170 vpn/forms/model_forms.py:301 +#: vpn/forms/model_forms.py:321 vpn/forms/model_forms.py:337 +#: vpn/forms/model_forms.py:357 vpn/forms/model_forms.py:380 msgid "Parameters" msgstr "" -#: netbox/core/forms/bulk_edit.py:38 netbox/templates/core/datasource.html:68 +#: core/forms/bulk_edit.py:38 templates/core/datasource.html:68 msgid "Ignore rules" msgstr "" -#: netbox/core/forms/filtersets.py:30 netbox/core/forms/model_forms.py:97 -#: netbox/extras/forms/model_forms.py:248 -#: netbox/extras/forms/model_forms.py:578 -#: netbox/extras/forms/model_forms.py:632 netbox/extras/tables/tables.py:191 -#: netbox/extras/tables/tables.py:483 netbox/extras/tables/tables.py:518 -#: netbox/templates/core/datasource.html:31 -#: netbox/templates/dcim/device/render_config.html:18 -#: netbox/templates/extras/configcontext.html:29 -#: netbox/templates/extras/configtemplate.html:21 -#: netbox/templates/extras/exporttemplate.html:35 -#: netbox/templates/virtualization/virtualmachine/render_config.html:18 +#: core/forms/filtersets.py:30 core/forms/model_forms.py:97 +#: extras/forms/model_forms.py:248 extras/forms/model_forms.py:578 +#: extras/forms/model_forms.py:632 extras/tables/tables.py:191 +#: extras/tables/tables.py:483 extras/tables/tables.py:518 +#: templates/core/datasource.html:31 +#: templates/dcim/device/render_config.html:18 +#: templates/extras/configcontext.html:29 +#: templates/extras/configtemplate.html:21 +#: templates/extras/exporttemplate.html:35 +#: templates/virtualization/virtualmachine/render_config.html:18 msgid "Data Source" msgstr "" -#: netbox/core/forms/filtersets.py:55 netbox/core/forms/mixins.py:21 +#: core/forms/filtersets.py:55 core/forms/mixins.py:21 msgid "File" msgstr "" -#: netbox/core/forms/filtersets.py:60 netbox/core/forms/mixins.py:16 -#: netbox/extras/forms/filtersets.py:170 netbox/extras/forms/filtersets.py:328 -#: netbox/extras/forms/filtersets.py:413 +#: core/forms/filtersets.py:60 core/forms/mixins.py:16 +#: extras/forms/filtersets.py:170 extras/forms/filtersets.py:328 +#: extras/forms/filtersets.py:413 msgid "Data source" msgstr "" -#: netbox/core/forms/filtersets.py:70 netbox/extras/forms/filtersets.py:440 +#: core/forms/filtersets.py:70 extras/forms/filtersets.py:440 msgid "Creation" msgstr "" -#: netbox/core/forms/filtersets.py:74 netbox/core/forms/filtersets.py:160 -#: netbox/extras/forms/filtersets.py:461 netbox/extras/tables/tables.py:220 -#: netbox/extras/tables/tables.py:294 netbox/extras/tables/tables.py:326 -#: netbox/extras/tables/tables.py:571 netbox/templates/core/job.html:38 -#: netbox/templates/core/objectchange.html:52 -#: netbox/tenancy/tables/contacts.py:90 netbox/vpn/tables/l2vpn.py:59 +#: core/forms/filtersets.py:74 core/forms/filtersets.py:160 +#: extras/forms/filtersets.py:461 extras/tables/tables.py:220 +#: extras/tables/tables.py:294 extras/tables/tables.py:326 +#: extras/tables/tables.py:571 templates/core/job.html:38 +#: templates/core/objectchange.html:52 tenancy/tables/contacts.py:90 +#: vpn/tables/l2vpn.py:59 msgid "Object Type" msgstr "" -#: netbox/core/forms/filtersets.py:84 +#: core/forms/filtersets.py:84 msgid "Created after" msgstr "" -#: netbox/core/forms/filtersets.py:89 +#: core/forms/filtersets.py:89 msgid "Created before" msgstr "" -#: netbox/core/forms/filtersets.py:94 +#: core/forms/filtersets.py:94 msgid "Scheduled after" msgstr "" -#: netbox/core/forms/filtersets.py:99 +#: core/forms/filtersets.py:99 msgid "Scheduled before" msgstr "" -#: netbox/core/forms/filtersets.py:104 +#: core/forms/filtersets.py:104 msgid "Started after" msgstr "" -#: netbox/core/forms/filtersets.py:109 +#: core/forms/filtersets.py:109 msgid "Started before" msgstr "" -#: netbox/core/forms/filtersets.py:114 +#: core/forms/filtersets.py:114 msgid "Completed after" msgstr "" -#: netbox/core/forms/filtersets.py:119 +#: core/forms/filtersets.py:119 msgid "Completed before" msgstr "" -#: netbox/core/forms/filtersets.py:126 netbox/core/forms/filtersets.py:155 -#: netbox/dcim/forms/bulk_edit.py:456 netbox/dcim/forms/filtersets.py:418 -#: netbox/dcim/forms/filtersets.py:462 netbox/dcim/forms/model_forms.py:316 -#: netbox/extras/forms/filtersets.py:456 netbox/extras/forms/filtersets.py:475 -#: netbox/extras/tables/tables.py:302 netbox/extras/tables/tables.py:342 -#: netbox/templates/core/objectchange.html:36 -#: netbox/templates/dcim/rackreservation.html:58 -#: netbox/templates/extras/savedfilter.html:21 -#: netbox/templates/inc/user_menu.html:33 netbox/templates/users/token.html:21 -#: netbox/templates/users/user.html:6 netbox/templates/users/user.html:14 -#: netbox/users/filtersets.py:107 netbox/users/filtersets.py:174 -#: netbox/users/forms/filtersets.py:84 netbox/users/forms/filtersets.py:125 -#: netbox/users/forms/model_forms.py:155 netbox/users/forms/model_forms.py:192 -#: netbox/users/tables.py:19 +#: core/forms/filtersets.py:126 core/forms/filtersets.py:155 +#: dcim/forms/bulk_edit.py:456 dcim/forms/filtersets.py:418 +#: dcim/forms/filtersets.py:462 dcim/forms/model_forms.py:316 +#: extras/forms/filtersets.py:456 extras/forms/filtersets.py:475 +#: extras/tables/tables.py:302 extras/tables/tables.py:342 +#: templates/core/objectchange.html:36 templates/dcim/rackreservation.html:58 +#: templates/extras/savedfilter.html:21 templates/inc/user_menu.html:33 +#: templates/users/token.html:21 templates/users/user.html:6 +#: templates/users/user.html:14 users/filtersets.py:107 users/filtersets.py:174 +#: users/forms/filtersets.py:84 users/forms/filtersets.py:125 +#: users/forms/model_forms.py:155 users/forms/model_forms.py:192 +#: users/tables.py:19 msgid "User" msgstr "" -#: netbox/core/forms/filtersets.py:134 netbox/core/tables/change_logging.py:15 -#: netbox/extras/tables/tables.py:609 netbox/extras/tables/tables.py:646 -#: netbox/templates/core/objectchange.html:32 +#: core/forms/filtersets.py:134 core/tables/change_logging.py:15 +#: extras/tables/tables.py:609 extras/tables/tables.py:646 +#: templates/core/objectchange.html:32 msgid "Time" msgstr "" -#: netbox/core/forms/filtersets.py:139 netbox/extras/forms/filtersets.py:445 +#: core/forms/filtersets.py:139 extras/forms/filtersets.py:445 msgid "After" msgstr "" -#: netbox/core/forms/filtersets.py:144 netbox/extras/forms/filtersets.py:450 +#: core/forms/filtersets.py:144 extras/forms/filtersets.py:450 msgid "Before" msgstr "" -#: netbox/core/forms/filtersets.py:148 netbox/core/tables/change_logging.py:29 -#: netbox/extras/forms/model_forms.py:396 -#: netbox/templates/core/objectchange.html:46 -#: netbox/templates/extras/eventrule.html:71 +#: core/forms/filtersets.py:148 core/tables/change_logging.py:29 +#: extras/forms/model_forms.py:396 templates/core/objectchange.html:46 +#: templates/extras/eventrule.html:71 msgid "Action" msgstr "" -#: netbox/core/forms/model_forms.py:54 netbox/core/tables/data.py:46 -#: netbox/templates/core/datafile.html:27 -#: netbox/templates/extras/report/base.html:33 -#: netbox/templates/extras/script/base.html:32 +#: core/forms/model_forms.py:54 core/tables/data.py:46 +#: templates/core/datafile.html:27 templates/extras/report/base.html:33 +#: templates/extras/script/base.html:32 msgid "Source" msgstr "" -#: netbox/core/forms/model_forms.py:58 +#: core/forms/model_forms.py:58 msgid "Backend Parameters" msgstr "" -#: netbox/core/forms/model_forms.py:96 +#: core/forms/model_forms.py:96 msgid "File Upload" msgstr "" -#: netbox/core/forms/model_forms.py:108 +#: core/forms/model_forms.py:108 msgid "Cannot upload a file and sync from an existing file" msgstr "" -#: netbox/core/forms/model_forms.py:110 +#: core/forms/model_forms.py:110 msgid "Must upload a file or select a data file to sync" msgstr "" -#: netbox/core/forms/model_forms.py:153 -#: netbox/templates/dcim/rack_elevation_list.html:6 +#: core/forms/model_forms.py:153 templates/dcim/rack_elevation_list.html:6 msgid "Rack Elevations" msgstr "" -#: netbox/core/forms/model_forms.py:157 netbox/dcim/choices.py:1518 -#: netbox/dcim/forms/bulk_edit.py:969 netbox/dcim/forms/bulk_edit.py:1357 -#: netbox/dcim/forms/bulk_edit.py:1375 netbox/dcim/tables/racks.py:158 -#: netbox/netbox/navigation/menu.py:291 netbox/netbox/navigation/menu.py:295 +#: core/forms/model_forms.py:157 dcim/choices.py:1518 +#: dcim/forms/bulk_edit.py:969 dcim/forms/bulk_edit.py:1357 +#: dcim/forms/bulk_edit.py:1375 dcim/tables/racks.py:158 +#: netbox/navigation/menu.py:291 netbox/navigation/menu.py:295 msgid "Power" msgstr "" -#: netbox/core/forms/model_forms.py:159 netbox/netbox/navigation/menu.py:154 -#: netbox/templates/core/inc/config_data.html:37 +#: core/forms/model_forms.py:159 netbox/navigation/menu.py:154 +#: templates/core/inc/config_data.html:37 msgid "IPAM" msgstr "" -#: netbox/core/forms/model_forms.py:160 netbox/netbox/navigation/menu.py:230 -#: netbox/templates/core/inc/config_data.html:50 -#: netbox/vpn/forms/bulk_edit.py:77 netbox/vpn/forms/filtersets.py:43 -#: netbox/vpn/forms/model_forms.py:61 netbox/vpn/forms/model_forms.py:146 +#: core/forms/model_forms.py:160 netbox/navigation/menu.py:230 +#: templates/core/inc/config_data.html:50 vpn/forms/bulk_edit.py:77 +#: vpn/forms/filtersets.py:43 vpn/forms/model_forms.py:61 +#: vpn/forms/model_forms.py:146 msgid "Security" msgstr "" -#: netbox/core/forms/model_forms.py:161 -#: netbox/templates/core/inc/config_data.html:59 +#: core/forms/model_forms.py:161 templates/core/inc/config_data.html:59 msgid "Banners" msgstr "" -#: netbox/core/forms/model_forms.py:162 -#: netbox/templates/core/inc/config_data.html:80 +#: core/forms/model_forms.py:162 templates/core/inc/config_data.html:80 msgid "Pagination" msgstr "" -#: netbox/core/forms/model_forms.py:163 netbox/extras/forms/bulk_edit.py:92 -#: netbox/extras/forms/filtersets.py:47 netbox/extras/forms/model_forms.py:116 -#: netbox/extras/forms/model_forms.py:129 -#: netbox/templates/core/inc/config_data.html:93 +#: core/forms/model_forms.py:163 extras/forms/bulk_edit.py:92 +#: extras/forms/filtersets.py:47 extras/forms/model_forms.py:116 +#: extras/forms/model_forms.py:129 templates/core/inc/config_data.html:93 msgid "Validation" msgstr "" -#: netbox/core/forms/model_forms.py:164 -#: netbox/templates/account/preferences.html:6 +#: core/forms/model_forms.py:164 templates/account/preferences.html:6 msgid "User Preferences" msgstr "" -#: netbox/core/forms/model_forms.py:167 netbox/dcim/forms/filtersets.py:732 -#: netbox/templates/core/inc/config_data.html:127 -#: netbox/users/forms/model_forms.py:64 +#: core/forms/model_forms.py:167 dcim/forms/filtersets.py:732 +#: templates/core/inc/config_data.html:127 users/forms/model_forms.py:64 msgid "Miscellaneous" msgstr "" -#: netbox/core/forms/model_forms.py:169 +#: core/forms/model_forms.py:169 msgid "Config Revision" msgstr "" -#: netbox/core/forms/model_forms.py:208 +#: core/forms/model_forms.py:208 msgid "This parameter has been defined statically and cannot be modified." msgstr "" -#: netbox/core/forms/model_forms.py:216 +#: core/forms/model_forms.py:216 #, python-brace-format msgid "Current value: {value}" msgstr "" -#: netbox/core/forms/model_forms.py:218 +#: core/forms/model_forms.py:218 msgid " (default)" msgstr "" -#: netbox/core/models/change_logging.py:29 +#: core/models/change_logging.py:29 msgid "time" msgstr "" -#: netbox/core/models/change_logging.py:42 +#: core/models/change_logging.py:42 msgid "user name" msgstr "" -#: netbox/core/models/change_logging.py:47 +#: core/models/change_logging.py:47 msgid "request ID" msgstr "" -#: netbox/core/models/change_logging.py:52 netbox/extras/models/staging.py:69 +#: core/models/change_logging.py:52 extras/models/staging.py:69 msgid "action" msgstr "" -#: netbox/core/models/change_logging.py:86 +#: core/models/change_logging.py:86 msgid "pre-change data" msgstr "" -#: netbox/core/models/change_logging.py:92 +#: core/models/change_logging.py:92 msgid "post-change data" msgstr "" -#: netbox/core/models/change_logging.py:106 +#: core/models/change_logging.py:106 msgid "object change" msgstr "" -#: netbox/core/models/change_logging.py:107 +#: core/models/change_logging.py:107 msgid "object changes" msgstr "" -#: netbox/core/models/change_logging.py:123 +#: core/models/change_logging.py:123 #, python-brace-format msgid "Change logging is not supported for this object type ({type})." msgstr "" -#: netbox/core/models/config.py:18 netbox/core/models/data.py:266 -#: netbox/core/models/files.py:27 netbox/core/models/jobs.py:49 -#: netbox/extras/models/models.py:730 netbox/extras/models/notifications.py:39 -#: netbox/extras/models/notifications.py:186 -#: netbox/netbox/models/features.py:53 netbox/users/models/tokens.py:32 +#: core/models/config.py:18 core/models/data.py:266 core/models/files.py:27 +#: core/models/jobs.py:49 extras/models/models.py:730 +#: extras/models/notifications.py:39 extras/models/notifications.py:186 +#: netbox/models/features.py:53 users/models/tokens.py:32 msgid "created" msgstr "" -#: netbox/core/models/config.py:22 +#: core/models/config.py:22 msgid "comment" msgstr "" -#: netbox/core/models/config.py:29 +#: core/models/config.py:29 msgid "configuration data" msgstr "" -#: netbox/core/models/config.py:36 +#: core/models/config.py:36 msgid "config revision" msgstr "" -#: netbox/core/models/config.py:37 +#: core/models/config.py:37 msgid "config revisions" msgstr "" -#: netbox/core/models/config.py:41 +#: core/models/config.py:41 msgid "Default configuration" msgstr "" -#: netbox/core/models/config.py:43 +#: core/models/config.py:43 msgid "Current configuration" msgstr "" -#: netbox/core/models/config.py:44 +#: core/models/config.py:44 #, python-brace-format msgid "Config revision #{id}" msgstr "" -#: netbox/core/models/data.py:44 netbox/dcim/models/cables.py:43 -#: netbox/dcim/models/device_component_templates.py:203 -#: netbox/dcim/models/device_component_templates.py:237 -#: netbox/dcim/models/device_component_templates.py:272 -#: netbox/dcim/models/device_component_templates.py:334 -#: netbox/dcim/models/device_component_templates.py:413 -#: netbox/dcim/models/device_component_templates.py:512 -#: netbox/dcim/models/device_component_templates.py:612 -#: netbox/dcim/models/device_components.py:283 -#: netbox/dcim/models/device_components.py:312 -#: netbox/dcim/models/device_components.py:345 -#: netbox/dcim/models/device_components.py:463 -#: netbox/dcim/models/device_components.py:605 -#: netbox/dcim/models/device_components.py:970 -#: netbox/dcim/models/device_components.py:1044 netbox/dcim/models/power.py:102 -#: netbox/extras/models/customfields.py:78 netbox/extras/models/search.py:41 -#: netbox/virtualization/models/clusters.py:61 netbox/vpn/models/l2vpn.py:32 +#: core/models/data.py:44 dcim/models/cables.py:43 +#: dcim/models/device_component_templates.py:203 +#: dcim/models/device_component_templates.py:237 +#: dcim/models/device_component_templates.py:272 +#: dcim/models/device_component_templates.py:334 +#: dcim/models/device_component_templates.py:413 +#: dcim/models/device_component_templates.py:512 +#: dcim/models/device_component_templates.py:612 +#: dcim/models/device_components.py:283 dcim/models/device_components.py:312 +#: dcim/models/device_components.py:345 dcim/models/device_components.py:463 +#: dcim/models/device_components.py:605 dcim/models/device_components.py:970 +#: dcim/models/device_components.py:1044 dcim/models/power.py:102 +#: extras/models/customfields.py:78 extras/models/search.py:41 +#: virtualization/models/clusters.py:61 vpn/models/l2vpn.py:32 msgid "type" msgstr "" -#: netbox/core/models/data.py:49 netbox/extras/choices.py:37 -#: netbox/extras/models/models.py:164 netbox/extras/tables/tables.py:656 -#: netbox/templates/core/datasource.html:58 -#: netbox/templates/core/plugin.html:66 +#: core/models/data.py:49 extras/choices.py:37 extras/models/models.py:164 +#: extras/tables/tables.py:656 templates/core/datasource.html:58 +#: templates/core/plugin.html:66 msgid "URL" msgstr "" -#: netbox/core/models/data.py:59 -#: netbox/dcim/models/device_component_templates.py:418 -#: netbox/dcim/models/device_components.py:512 -#: netbox/extras/models/models.py:70 netbox/extras/models/models.py:301 -#: netbox/extras/models/models.py:526 netbox/users/models/permissions.py:29 +#: core/models/data.py:59 dcim/models/device_component_templates.py:418 +#: dcim/models/device_components.py:512 extras/models/models.py:70 +#: extras/models/models.py:301 extras/models/models.py:526 +#: users/models/permissions.py:29 msgid "enabled" msgstr "" -#: netbox/core/models/data.py:63 +#: core/models/data.py:63 msgid "ignore rules" msgstr "" -#: netbox/core/models/data.py:65 +#: core/models/data.py:65 msgid "Patterns (one per line) matching files to ignore when syncing" msgstr "" -#: netbox/core/models/data.py:68 netbox/extras/models/models.py:534 +#: core/models/data.py:68 extras/models/models.py:534 msgid "parameters" msgstr "" -#: netbox/core/models/data.py:73 +#: core/models/data.py:73 msgid "last synced" msgstr "" -#: netbox/core/models/data.py:81 +#: core/models/data.py:81 msgid "data source" msgstr "" -#: netbox/core/models/data.py:82 +#: core/models/data.py:82 msgid "data sources" msgstr "" -#: netbox/core/models/data.py:122 +#: core/models/data.py:122 #, python-brace-format msgid "Unknown backend type: {type}" msgstr "" -#: netbox/core/models/data.py:164 +#: core/models/data.py:164 msgid "Cannot initiate sync; syncing already in progress." msgstr "" -#: netbox/core/models/data.py:177 +#: core/models/data.py:177 msgid "" "There was an error initializing the backend. A dependency needs to be " "installed: " msgstr "" -#: netbox/core/models/data.py:270 netbox/core/models/files.py:31 -#: netbox/netbox/models/features.py:59 +#: core/models/data.py:270 core/models/files.py:31 netbox/models/features.py:59 msgid "last updated" msgstr "" -#: netbox/core/models/data.py:280 netbox/dcim/models/cables.py:444 +#: core/models/data.py:280 dcim/models/cables.py:444 msgid "path" msgstr "" -#: netbox/core/models/data.py:283 +#: core/models/data.py:283 msgid "File path relative to the data source's root" msgstr "" -#: netbox/core/models/data.py:287 netbox/ipam/models/ip.py:503 +#: core/models/data.py:287 ipam/models/ip.py:503 msgid "size" msgstr "" -#: netbox/core/models/data.py:290 +#: core/models/data.py:290 msgid "hash" msgstr "" -#: netbox/core/models/data.py:294 +#: core/models/data.py:294 msgid "Length must be 64 hexadecimal characters." msgstr "" -#: netbox/core/models/data.py:296 +#: core/models/data.py:296 msgid "SHA256 hash of the file data" msgstr "" -#: netbox/core/models/data.py:313 +#: core/models/data.py:313 msgid "data file" msgstr "" -#: netbox/core/models/data.py:314 +#: core/models/data.py:314 msgid "data files" msgstr "" -#: netbox/core/models/data.py:401 +#: core/models/data.py:401 msgid "auto sync record" msgstr "" -#: netbox/core/models/data.py:402 +#: core/models/data.py:402 msgid "auto sync records" msgstr "" -#: netbox/core/models/files.py:37 +#: core/models/files.py:37 msgid "file root" msgstr "" -#: netbox/core/models/files.py:42 +#: core/models/files.py:42 msgid "file path" msgstr "" -#: netbox/core/models/files.py:44 +#: core/models/files.py:44 msgid "File path relative to the designated root path" msgstr "" -#: netbox/core/models/files.py:61 +#: core/models/files.py:61 msgid "managed file" msgstr "" -#: netbox/core/models/files.py:62 +#: core/models/files.py:62 msgid "managed files" msgstr "" -#: netbox/core/models/jobs.py:53 +#: core/models/jobs.py:53 msgid "scheduled" msgstr "" -#: netbox/core/models/jobs.py:58 +#: core/models/jobs.py:58 msgid "interval" msgstr "" -#: netbox/core/models/jobs.py:64 +#: core/models/jobs.py:64 msgid "Recurrence interval (in minutes)" msgstr "" -#: netbox/core/models/jobs.py:67 +#: core/models/jobs.py:67 msgid "started" msgstr "" -#: netbox/core/models/jobs.py:72 +#: core/models/jobs.py:72 msgid "completed" msgstr "" -#: netbox/core/models/jobs.py:90 netbox/extras/models/models.py:101 -#: netbox/extras/models/staging.py:87 +#: core/models/jobs.py:90 extras/models/models.py:101 +#: extras/models/staging.py:87 msgid "data" msgstr "" -#: netbox/core/models/jobs.py:95 +#: core/models/jobs.py:95 msgid "error" msgstr "" -#: netbox/core/models/jobs.py:100 +#: core/models/jobs.py:100 msgid "job ID" msgstr "" -#: netbox/core/models/jobs.py:111 +#: core/models/jobs.py:111 msgid "job" msgstr "" -#: netbox/core/models/jobs.py:112 +#: core/models/jobs.py:112 msgid "jobs" msgstr "" -#: netbox/core/models/jobs.py:135 +#: core/models/jobs.py:135 #, python-brace-format msgid "Jobs cannot be assigned to this object type ({type})." msgstr "" -#: netbox/core/models/jobs.py:185 +#: core/models/jobs.py:185 #, python-brace-format msgid "Invalid status for job termination. Choices are: {choices}" msgstr "" -#: netbox/core/models/jobs.py:216 +#: core/models/jobs.py:216 msgid "" "enqueue() cannot be called with values for both schedule_at and immediate." msgstr "" -#: netbox/core/signals.py:126 +#: core/signals.py:126 #, python-brace-format msgid "Deletion is prevented by a protection rule: {message}" msgstr "" -#: netbox/core/tables/change_logging.py:25 -#: netbox/templates/account/profile.html:19 netbox/templates/users/user.html:21 +#: core/tables/change_logging.py:25 templates/account/profile.html:19 +#: templates/users/user.html:21 msgid "Full Name" msgstr "" -#: netbox/core/tables/change_logging.py:37 netbox/core/tables/jobs.py:21 -#: netbox/extras/choices.py:41 netbox/extras/tables/tables.py:279 -#: netbox/extras/tables/tables.py:297 netbox/extras/tables/tables.py:329 -#: netbox/extras/tables/tables.py:409 netbox/extras/tables/tables.py:470 -#: netbox/extras/tables/tables.py:576 netbox/extras/tables/tables.py:616 -#: netbox/extras/tables/tables.py:653 netbox/netbox/tables/tables.py:244 -#: netbox/templates/core/objectchange.html:58 -#: netbox/templates/extras/eventrule.html:78 -#: netbox/templates/extras/journalentry.html:18 -#: netbox/tenancy/tables/contacts.py:93 netbox/vpn/tables/l2vpn.py:64 +#: core/tables/change_logging.py:37 core/tables/jobs.py:21 extras/choices.py:41 +#: extras/tables/tables.py:279 extras/tables/tables.py:297 +#: extras/tables/tables.py:329 extras/tables/tables.py:409 +#: extras/tables/tables.py:470 extras/tables/tables.py:576 +#: extras/tables/tables.py:616 extras/tables/tables.py:653 +#: netbox/tables/tables.py:244 templates/core/objectchange.html:58 +#: templates/extras/eventrule.html:78 templates/extras/journalentry.html:18 +#: tenancy/tables/contacts.py:93 vpn/tables/l2vpn.py:64 msgid "Object" msgstr "" -#: netbox/core/tables/change_logging.py:42 -#: netbox/templates/core/objectchange.html:68 +#: core/tables/change_logging.py:42 templates/core/objectchange.html:68 msgid "Request ID" msgstr "" -#: netbox/core/tables/config.py:21 netbox/users/forms/filtersets.py:44 -#: netbox/users/tables.py:39 +#: core/tables/config.py:21 users/forms/filtersets.py:44 users/tables.py:39 msgid "Is Active" msgstr "" -#: netbox/core/tables/data.py:50 netbox/templates/core/datafile.html:31 +#: core/tables/data.py:50 templates/core/datafile.html:31 msgid "Path" msgstr "" -#: netbox/core/tables/data.py:54 -#: netbox/templates/extras/inc/result_pending.html:7 +#: core/tables/data.py:54 templates/extras/inc/result_pending.html:7 msgid "Last updated" msgstr "" -#: netbox/core/tables/jobs.py:10 netbox/core/tables/tasks.py:76 -#: netbox/dcim/tables/devicetypes.py:164 netbox/extras/tables/tables.py:216 -#: netbox/extras/tables/tables.py:460 netbox/netbox/tables/tables.py:189 -#: netbox/templates/dcim/virtualchassis_edit.html:52 -#: netbox/utilities/forms/forms.py:73 netbox/wireless/tables/wirelesslink.py:17 +#: core/tables/jobs.py:10 core/tables/tasks.py:76 +#: dcim/tables/devicetypes.py:164 extras/tables/tables.py:216 +#: extras/tables/tables.py:460 netbox/tables/tables.py:189 +#: templates/dcim/virtualchassis_edit.html:52 utilities/forms/forms.py:73 +#: wireless/tables/wirelesslink.py:17 msgid "ID" msgstr "" -#: netbox/core/tables/jobs.py:35 +#: core/tables/jobs.py:35 msgid "Interval" msgstr "" -#: netbox/core/tables/plugins.py:14 netbox/templates/vpn/ipsecprofile.html:44 -#: netbox/vpn/forms/bulk_edit.py:141 netbox/vpn/forms/bulk_import.py:172 -#: netbox/vpn/tables/crypto.py:61 +#: core/tables/plugins.py:14 templates/vpn/ipsecprofile.html:44 +#: vpn/forms/bulk_edit.py:141 vpn/forms/bulk_import.py:172 +#: vpn/tables/crypto.py:61 msgid "Version" msgstr "" -#: netbox/core/tables/plugins.py:19 netbox/templates/core/datafile.html:38 +#: core/tables/plugins.py:19 templates/core/datafile.html:38 msgid "Last Updated" msgstr "" -#: netbox/core/tables/plugins.py:23 +#: core/tables/plugins.py:23 msgid "Minimum NetBox Version" msgstr "" -#: netbox/core/tables/plugins.py:27 +#: core/tables/plugins.py:27 msgid "Maximum NetBox Version" msgstr "" -#: netbox/core/tables/plugins.py:31 netbox/core/tables/plugins.py:74 +#: core/tables/plugins.py:31 core/tables/plugins.py:74 msgid "No plugin data found" msgstr "" -#: netbox/core/tables/plugins.py:48 netbox/templates/core/plugin.html:62 +#: core/tables/plugins.py:48 templates/core/plugin.html:62 msgid "Author" msgstr "" -#: netbox/core/tables/plugins.py:54 +#: core/tables/plugins.py:54 msgid "Installed" msgstr "" -#: netbox/core/tables/plugins.py:57 netbox/templates/core/plugin.html:84 +#: core/tables/plugins.py:57 templates/core/plugin.html:84 msgid "Certified" msgstr "" -#: netbox/core/tables/plugins.py:60 +#: core/tables/plugins.py:60 msgid "Published" msgstr "" -#: netbox/core/tables/plugins.py:66 +#: core/tables/plugins.py:66 msgid "Installed Version" msgstr "" -#: netbox/core/tables/plugins.py:70 +#: core/tables/plugins.py:70 msgid "Latest Version" msgstr "" -#: netbox/core/tables/tasks.py:18 +#: core/tables/tasks.py:18 msgid "Oldest Task" msgstr "" -#: netbox/core/tables/tasks.py:42 netbox/templates/core/rq_worker_list.html:39 +#: core/tables/tasks.py:42 templates/core/rq_worker_list.html:39 msgid "Workers" msgstr "" -#: netbox/core/tables/tasks.py:46 netbox/vpn/tables/tunnels.py:88 +#: core/tables/tasks.py:46 vpn/tables/tunnels.py:88 msgid "Host" msgstr "" -#: netbox/core/tables/tasks.py:50 netbox/ipam/forms/filtersets.py:535 +#: core/tables/tasks.py:50 ipam/forms/filtersets.py:535 msgid "Port" msgstr "" -#: netbox/core/tables/tasks.py:54 +#: core/tables/tasks.py:54 msgid "DB" msgstr "" -#: netbox/core/tables/tasks.py:58 +#: core/tables/tasks.py:58 msgid "Scheduler PID" msgstr "" -#: netbox/core/tables/tasks.py:62 +#: core/tables/tasks.py:62 msgid "No queues found" msgstr "" -#: netbox/core/tables/tasks.py:82 +#: core/tables/tasks.py:82 msgid "Enqueued" msgstr "" -#: netbox/core/tables/tasks.py:85 +#: core/tables/tasks.py:85 msgid "Ended" msgstr "" -#: netbox/core/tables/tasks.py:93 netbox/templates/core/rq_task.html:85 +#: core/tables/tasks.py:93 templates/core/rq_task.html:85 msgid "Callable" msgstr "" -#: netbox/core/tables/tasks.py:97 +#: core/tables/tasks.py:97 msgid "No tasks found" msgstr "" -#: netbox/core/tables/tasks.py:118 netbox/templates/core/rq_worker.html:47 +#: core/tables/tasks.py:118 templates/core/rq_worker.html:47 msgid "State" msgstr "" -#: netbox/core/tables/tasks.py:121 netbox/templates/core/rq_worker.html:51 +#: core/tables/tasks.py:121 templates/core/rq_worker.html:51 msgid "Birth" msgstr "" -#: netbox/core/tables/tasks.py:124 netbox/templates/core/rq_worker.html:59 +#: core/tables/tasks.py:124 templates/core/rq_worker.html:59 msgid "PID" msgstr "" -#: netbox/core/tables/tasks.py:128 +#: core/tables/tasks.py:128 msgid "No workers found" msgstr "" -#: netbox/core/views.py:90 +#: core/views.py:90 #, python-brace-format msgid "Queued job #{id} to sync {datasource}" msgstr "" -#: netbox/core/views.py:319 +#: core/views.py:319 #, python-brace-format msgid "Restored configuration revision #{id}" msgstr "" -#: netbox/core/views.py:412 netbox/core/views.py:455 netbox/core/views.py:531 +#: core/views.py:412 core/views.py:455 core/views.py:531 #, python-brace-format msgid "Job {job_id} not found" msgstr "" -#: netbox/core/views.py:463 +#: core/views.py:463 #, python-brace-format msgid "Job {id} has been deleted." msgstr "" -#: netbox/core/views.py:465 +#: core/views.py:465 #, python-brace-format msgid "Error deleting job {id}: {error}" msgstr "" -#: netbox/core/views.py:478 netbox/core/views.py:496 +#: core/views.py:478 core/views.py:496 #, python-brace-format msgid "Job {id} not found." msgstr "" -#: netbox/core/views.py:484 +#: core/views.py:484 #, python-brace-format msgid "Job {id} has been re-enqueued." msgstr "" -#: netbox/core/views.py:519 +#: core/views.py:519 #, python-brace-format msgid "Job {id} has been enqueued." msgstr "" -#: netbox/core/views.py:538 +#: core/views.py:538 #, python-brace-format msgid "Job {id} has been stopped." msgstr "" -#: netbox/core/views.py:540 +#: core/views.py:540 #, python-brace-format msgid "Failed to stop job {id}" msgstr "" -#: netbox/core/views.py:678 +#: core/views.py:678 msgid "Plugins catalog could not be loaded" msgstr "" -#: netbox/core/views.py:712 +#: core/views.py:712 #, python-brace-format msgid "Plugin {name} not found" msgstr "" -#: netbox/dcim/api/serializers_/devices.py:49 -#: netbox/dcim/api/serializers_/devicetypes.py:25 +#: dcim/api/serializers_/devices.py:49 dcim/api/serializers_/devicetypes.py:25 msgid "Position (U)" msgstr "" -#: netbox/dcim/api/serializers_/racks.py:112 netbox/templates/dcim/rack.html:28 +#: dcim/api/serializers_/racks.py:112 templates/dcim/rack.html:28 msgid "Facility ID" msgstr "" -#: netbox/dcim/choices.py:21 netbox/virtualization/choices.py:21 +#: dcim/choices.py:21 virtualization/choices.py:21 msgid "Staging" msgstr "" -#: netbox/dcim/choices.py:23 netbox/dcim/choices.py:189 -#: netbox/dcim/choices.py:240 netbox/dcim/choices.py:1531 -#: netbox/virtualization/choices.py:23 netbox/virtualization/choices.py:48 +#: dcim/choices.py:23 dcim/choices.py:189 dcim/choices.py:240 +#: dcim/choices.py:1531 virtualization/choices.py:23 +#: virtualization/choices.py:48 msgid "Decommissioning" msgstr "" -#: netbox/dcim/choices.py:24 +#: dcim/choices.py:24 msgid "Retired" msgstr "" -#: netbox/dcim/choices.py:65 +#: dcim/choices.py:65 msgid "2-post frame" msgstr "" -#: netbox/dcim/choices.py:66 +#: dcim/choices.py:66 msgid "4-post frame" msgstr "" -#: netbox/dcim/choices.py:67 +#: dcim/choices.py:67 msgid "4-post cabinet" msgstr "" -#: netbox/dcim/choices.py:68 +#: dcim/choices.py:68 msgid "Wall-mounted frame" msgstr "" -#: netbox/dcim/choices.py:69 +#: dcim/choices.py:69 msgid "Wall-mounted frame (vertical)" msgstr "" -#: netbox/dcim/choices.py:70 +#: dcim/choices.py:70 msgid "Wall-mounted cabinet" msgstr "" -#: netbox/dcim/choices.py:71 +#: dcim/choices.py:71 msgid "Wall-mounted cabinet (vertical)" msgstr "" -#: netbox/dcim/choices.py:83 netbox/dcim/choices.py:84 -#: netbox/dcim/choices.py:85 netbox/dcim/choices.py:86 +#: dcim/choices.py:83 dcim/choices.py:84 dcim/choices.py:85 dcim/choices.py:86 #, python-brace-format msgid "{n} inches" msgstr "" -#: netbox/dcim/choices.py:100 netbox/ipam/choices.py:32 -#: netbox/ipam/choices.py:50 netbox/ipam/choices.py:70 -#: netbox/ipam/choices.py:155 netbox/wireless/choices.py:26 +#: dcim/choices.py:100 ipam/choices.py:32 ipam/choices.py:50 ipam/choices.py:70 +#: ipam/choices.py:155 wireless/choices.py:26 msgid "Reserved" msgstr "" -#: netbox/dcim/choices.py:101 netbox/templates/dcim/device.html:259 +#: dcim/choices.py:101 templates/dcim/device.html:259 msgid "Available" msgstr "" -#: netbox/dcim/choices.py:104 netbox/ipam/choices.py:33 -#: netbox/ipam/choices.py:51 netbox/ipam/choices.py:71 -#: netbox/ipam/choices.py:156 netbox/wireless/choices.py:28 +#: dcim/choices.py:104 ipam/choices.py:33 ipam/choices.py:51 ipam/choices.py:71 +#: ipam/choices.py:156 wireless/choices.py:28 msgid "Deprecated" msgstr "" -#: netbox/dcim/choices.py:114 -#: netbox/templates/dcim/inc/panels/racktype_dimensions.html:41 +#: dcim/choices.py:114 templates/dcim/inc/panels/racktype_dimensions.html:41 msgid "Millimeters" msgstr "" -#: netbox/dcim/choices.py:115 netbox/dcim/choices.py:1553 +#: dcim/choices.py:115 dcim/choices.py:1553 msgid "Inches" msgstr "" -#: netbox/dcim/choices.py:136 netbox/dcim/choices.py:207 -#: netbox/dcim/choices.py:254 +#: dcim/choices.py:136 dcim/choices.py:207 dcim/choices.py:254 msgid "Front to rear" msgstr "" -#: netbox/dcim/choices.py:137 netbox/dcim/choices.py:208 -#: netbox/dcim/choices.py:255 +#: dcim/choices.py:137 dcim/choices.py:208 dcim/choices.py:255 msgid "Rear to front" msgstr "" -#: netbox/dcim/choices.py:151 netbox/dcim/forms/bulk_edit.py:68 -#: netbox/dcim/forms/bulk_edit.py:87 netbox/dcim/forms/bulk_edit.py:173 -#: netbox/dcim/forms/bulk_edit.py:1405 netbox/dcim/forms/bulk_import.py:60 -#: netbox/dcim/forms/bulk_import.py:74 netbox/dcim/forms/bulk_import.py:137 -#: netbox/dcim/forms/bulk_import.py:566 netbox/dcim/forms/bulk_import.py:833 -#: netbox/dcim/forms/bulk_import.py:1088 netbox/dcim/forms/filtersets.py:234 -#: netbox/dcim/forms/model_forms.py:74 netbox/dcim/forms/model_forms.py:93 -#: netbox/dcim/forms/model_forms.py:170 netbox/dcim/forms/model_forms.py:1062 -#: netbox/dcim/forms/model_forms.py:1502 netbox/dcim/forms/object_import.py:176 -#: netbox/dcim/tables/devices.py:656 netbox/dcim/tables/devices.py:869 -#: netbox/dcim/tables/devices.py:954 netbox/extras/tables/tables.py:223 -#: netbox/ipam/tables/fhrp.py:59 netbox/ipam/tables/ip.py:378 -#: netbox/ipam/tables/services.py:44 netbox/templates/dcim/interface.html:102 -#: netbox/templates/dcim/interface.html:309 -#: netbox/templates/dcim/location.html:41 netbox/templates/dcim/region.html:37 -#: netbox/templates/dcim/sitegroup.html:37 -#: netbox/templates/ipam/service.html:28 -#: netbox/templates/tenancy/contactgroup.html:29 -#: netbox/templates/tenancy/tenantgroup.html:37 -#: netbox/templates/virtualization/vminterface.html:39 -#: netbox/templates/wireless/wirelesslangroup.html:37 -#: netbox/tenancy/forms/bulk_edit.py:27 netbox/tenancy/forms/bulk_edit.py:61 -#: netbox/tenancy/forms/bulk_import.py:24 -#: netbox/tenancy/forms/bulk_import.py:58 -#: netbox/tenancy/forms/model_forms.py:25 -#: netbox/tenancy/forms/model_forms.py:68 -#: netbox/virtualization/forms/bulk_edit.py:207 -#: netbox/virtualization/forms/bulk_import.py:151 -#: netbox/virtualization/tables/virtualmachines.py:162 -#: netbox/wireless/forms/bulk_edit.py:24 -#: netbox/wireless/forms/bulk_import.py:21 -#: netbox/wireless/forms/model_forms.py:21 +#: dcim/choices.py:151 dcim/forms/bulk_edit.py:68 dcim/forms/bulk_edit.py:87 +#: dcim/forms/bulk_edit.py:173 dcim/forms/bulk_edit.py:1405 +#: dcim/forms/bulk_import.py:60 dcim/forms/bulk_import.py:74 +#: dcim/forms/bulk_import.py:137 dcim/forms/bulk_import.py:566 +#: dcim/forms/bulk_import.py:833 dcim/forms/bulk_import.py:1088 +#: dcim/forms/filtersets.py:234 dcim/forms/model_forms.py:74 +#: dcim/forms/model_forms.py:93 dcim/forms/model_forms.py:170 +#: dcim/forms/model_forms.py:1062 dcim/forms/model_forms.py:1502 +#: dcim/forms/object_import.py:176 dcim/tables/devices.py:656 +#: dcim/tables/devices.py:869 dcim/tables/devices.py:954 +#: extras/tables/tables.py:223 ipam/tables/fhrp.py:59 ipam/tables/ip.py:378 +#: ipam/tables/services.py:44 templates/dcim/interface.html:102 +#: templates/dcim/interface.html:309 templates/dcim/location.html:41 +#: templates/dcim/region.html:37 templates/dcim/sitegroup.html:37 +#: templates/ipam/service.html:28 templates/tenancy/contactgroup.html:29 +#: templates/tenancy/tenantgroup.html:37 +#: templates/virtualization/vminterface.html:39 +#: templates/wireless/wirelesslangroup.html:37 tenancy/forms/bulk_edit.py:27 +#: tenancy/forms/bulk_edit.py:61 tenancy/forms/bulk_import.py:24 +#: tenancy/forms/bulk_import.py:58 tenancy/forms/model_forms.py:25 +#: tenancy/forms/model_forms.py:68 virtualization/forms/bulk_edit.py:207 +#: virtualization/forms/bulk_import.py:151 +#: virtualization/tables/virtualmachines.py:162 wireless/forms/bulk_edit.py:24 +#: wireless/forms/bulk_import.py:21 wireless/forms/model_forms.py:21 msgid "Parent" msgstr "" -#: netbox/dcim/choices.py:152 +#: dcim/choices.py:152 msgid "Child" msgstr "" -#: netbox/dcim/choices.py:166 netbox/templates/dcim/device.html:340 -#: netbox/templates/dcim/rack.html:133 -#: netbox/templates/dcim/rack_elevation_list.html:20 -#: netbox/templates/dcim/rackreservation.html:76 +#: dcim/choices.py:166 templates/dcim/device.html:340 +#: templates/dcim/rack.html:133 templates/dcim/rack_elevation_list.html:20 +#: templates/dcim/rackreservation.html:76 msgid "Front" msgstr "" -#: netbox/dcim/choices.py:167 netbox/templates/dcim/device.html:346 -#: netbox/templates/dcim/rack.html:139 -#: netbox/templates/dcim/rack_elevation_list.html:21 -#: netbox/templates/dcim/rackreservation.html:82 +#: dcim/choices.py:167 templates/dcim/device.html:346 +#: templates/dcim/rack.html:139 templates/dcim/rack_elevation_list.html:21 +#: templates/dcim/rackreservation.html:82 msgid "Rear" msgstr "" -#: netbox/dcim/choices.py:186 netbox/dcim/choices.py:238 -#: netbox/virtualization/choices.py:46 +#: dcim/choices.py:186 dcim/choices.py:238 virtualization/choices.py:46 msgid "Staged" msgstr "" -#: netbox/dcim/choices.py:188 +#: dcim/choices.py:188 msgid "Inventory" msgstr "" -#: netbox/dcim/choices.py:209 netbox/dcim/choices.py:256 +#: dcim/choices.py:209 dcim/choices.py:256 msgid "Left to right" msgstr "" -#: netbox/dcim/choices.py:210 netbox/dcim/choices.py:257 +#: dcim/choices.py:210 dcim/choices.py:257 msgid "Right to left" msgstr "" -#: netbox/dcim/choices.py:211 netbox/dcim/choices.py:258 +#: dcim/choices.py:211 dcim/choices.py:258 msgid "Side to rear" msgstr "" -#: netbox/dcim/choices.py:212 +#: dcim/choices.py:212 msgid "Rear to side" msgstr "" -#: netbox/dcim/choices.py:213 +#: dcim/choices.py:213 msgid "Bottom to top" msgstr "" -#: netbox/dcim/choices.py:214 +#: dcim/choices.py:214 msgid "Top to bottom" msgstr "" -#: netbox/dcim/choices.py:215 netbox/dcim/choices.py:259 -#: netbox/dcim/choices.py:1303 +#: dcim/choices.py:215 dcim/choices.py:259 dcim/choices.py:1303 msgid "Passive" msgstr "" -#: netbox/dcim/choices.py:216 +#: dcim/choices.py:216 msgid "Mixed" msgstr "" -#: netbox/dcim/choices.py:484 netbox/dcim/choices.py:733 +#: dcim/choices.py:484 dcim/choices.py:733 msgid "NEMA (Non-locking)" msgstr "" -#: netbox/dcim/choices.py:506 netbox/dcim/choices.py:755 +#: dcim/choices.py:506 dcim/choices.py:755 msgid "NEMA (Locking)" msgstr "" -#: netbox/dcim/choices.py:530 netbox/dcim/choices.py:779 +#: dcim/choices.py:530 dcim/choices.py:779 msgid "California Style" msgstr "" -#: netbox/dcim/choices.py:538 +#: dcim/choices.py:538 msgid "International/ITA" msgstr "" -#: netbox/dcim/choices.py:573 netbox/dcim/choices.py:814 +#: dcim/choices.py:573 dcim/choices.py:814 msgid "Proprietary" msgstr "" -#: netbox/dcim/choices.py:581 netbox/dcim/choices.py:824 -#: netbox/dcim/choices.py:1219 netbox/dcim/choices.py:1221 -#: netbox/dcim/choices.py:1447 netbox/dcim/choices.py:1449 -#: netbox/netbox/navigation/menu.py:200 +#: dcim/choices.py:581 dcim/choices.py:824 dcim/choices.py:1219 +#: dcim/choices.py:1221 dcim/choices.py:1447 dcim/choices.py:1449 +#: netbox/navigation/menu.py:200 msgid "Other" msgstr "" -#: netbox/dcim/choices.py:787 +#: dcim/choices.py:787 msgid "ITA/International" msgstr "" -#: netbox/dcim/choices.py:854 +#: dcim/choices.py:854 msgid "Physical" msgstr "" -#: netbox/dcim/choices.py:855 netbox/dcim/choices.py:1023 +#: dcim/choices.py:855 dcim/choices.py:1023 msgid "Virtual" msgstr "" -#: netbox/dcim/choices.py:856 netbox/dcim/choices.py:1097 -#: netbox/dcim/forms/bulk_edit.py:1515 netbox/dcim/forms/filtersets.py:1330 -#: netbox/dcim/forms/model_forms.py:988 netbox/dcim/forms/model_forms.py:1397 -#: netbox/netbox/navigation/menu.py:140 netbox/netbox/navigation/menu.py:144 -#: netbox/templates/dcim/interface.html:210 +#: dcim/choices.py:856 dcim/choices.py:1097 dcim/forms/bulk_edit.py:1515 +#: dcim/forms/filtersets.py:1330 dcim/forms/model_forms.py:988 +#: dcim/forms/model_forms.py:1397 netbox/navigation/menu.py:140 +#: netbox/navigation/menu.py:144 templates/dcim/interface.html:210 msgid "Wireless" msgstr "" -#: netbox/dcim/choices.py:1021 +#: dcim/choices.py:1021 msgid "Virtual interfaces" msgstr "" -#: netbox/dcim/choices.py:1024 netbox/dcim/forms/bulk_edit.py:1410 -#: netbox/dcim/forms/bulk_import.py:840 netbox/dcim/forms/model_forms.py:974 -#: netbox/dcim/tables/devices.py:660 netbox/templates/dcim/interface.html:106 -#: netbox/templates/virtualization/vminterface.html:43 -#: netbox/virtualization/forms/bulk_edit.py:212 -#: netbox/virtualization/forms/bulk_import.py:158 -#: netbox/virtualization/tables/virtualmachines.py:166 +#: dcim/choices.py:1024 dcim/forms/bulk_edit.py:1410 +#: dcim/forms/bulk_import.py:840 dcim/forms/model_forms.py:974 +#: dcim/tables/devices.py:660 templates/dcim/interface.html:106 +#: templates/virtualization/vminterface.html:43 +#: virtualization/forms/bulk_edit.py:212 +#: virtualization/forms/bulk_import.py:158 +#: virtualization/tables/virtualmachines.py:166 msgid "Bridge" msgstr "" -#: netbox/dcim/choices.py:1025 +#: dcim/choices.py:1025 msgid "Link Aggregation Group (LAG)" msgstr "" -#: netbox/dcim/choices.py:1029 +#: dcim/choices.py:1029 msgid "Ethernet (fixed)" msgstr "" -#: netbox/dcim/choices.py:1044 +#: dcim/choices.py:1044 msgid "Ethernet (modular)" msgstr "" -#: netbox/dcim/choices.py:1081 +#: dcim/choices.py:1081 msgid "Ethernet (backplane)" msgstr "" -#: netbox/dcim/choices.py:1113 +#: dcim/choices.py:1113 msgid "Cellular" msgstr "" -#: netbox/dcim/choices.py:1165 netbox/dcim/forms/filtersets.py:383 -#: netbox/dcim/forms/filtersets.py:809 netbox/dcim/forms/filtersets.py:963 -#: netbox/dcim/forms/filtersets.py:1542 -#: netbox/templates/dcim/inventoryitem.html:52 -#: netbox/templates/dcim/virtualchassis_edit.html:54 +#: dcim/choices.py:1165 dcim/forms/filtersets.py:383 +#: dcim/forms/filtersets.py:809 dcim/forms/filtersets.py:963 +#: dcim/forms/filtersets.py:1542 templates/dcim/inventoryitem.html:52 +#: templates/dcim/virtualchassis_edit.html:54 msgid "Serial" msgstr "" -#: netbox/dcim/choices.py:1180 +#: dcim/choices.py:1180 msgid "Coaxial" msgstr "" -#: netbox/dcim/choices.py:1200 +#: dcim/choices.py:1200 msgid "Stacking" msgstr "" -#: netbox/dcim/choices.py:1250 +#: dcim/choices.py:1250 msgid "Half" msgstr "" -#: netbox/dcim/choices.py:1251 +#: dcim/choices.py:1251 msgid "Full" msgstr "" -#: netbox/dcim/choices.py:1252 netbox/netbox/preferences.py:31 -#: netbox/wireless/choices.py:480 +#: dcim/choices.py:1252 netbox/preferences.py:31 wireless/choices.py:480 msgid "Auto" msgstr "" -#: netbox/dcim/choices.py:1263 +#: dcim/choices.py:1263 msgid "Access" msgstr "" -#: netbox/dcim/choices.py:1264 netbox/ipam/tables/vlans.py:172 -#: netbox/ipam/tables/vlans.py:217 -#: netbox/templates/dcim/inc/interface_vlans_table.html:7 +#: dcim/choices.py:1264 ipam/tables/vlans.py:172 ipam/tables/vlans.py:217 +#: templates/dcim/inc/interface_vlans_table.html:7 msgid "Tagged" msgstr "" -#: netbox/dcim/choices.py:1265 +#: dcim/choices.py:1265 msgid "Tagged (All)" msgstr "" -#: netbox/dcim/choices.py:1294 +#: dcim/choices.py:1294 msgid "IEEE Standard" msgstr "" -#: netbox/dcim/choices.py:1305 +#: dcim/choices.py:1305 msgid "Passive 24V (2-pair)" msgstr "" -#: netbox/dcim/choices.py:1306 +#: dcim/choices.py:1306 msgid "Passive 24V (4-pair)" msgstr "" -#: netbox/dcim/choices.py:1307 +#: dcim/choices.py:1307 msgid "Passive 48V (2-pair)" msgstr "" -#: netbox/dcim/choices.py:1308 +#: dcim/choices.py:1308 msgid "Passive 48V (4-pair)" msgstr "" -#: netbox/dcim/choices.py:1378 netbox/dcim/choices.py:1488 +#: dcim/choices.py:1378 dcim/choices.py:1488 msgid "Copper" msgstr "" -#: netbox/dcim/choices.py:1401 +#: dcim/choices.py:1401 msgid "Fiber Optic" msgstr "" -#: netbox/dcim/choices.py:1434 netbox/dcim/choices.py:1517 +#: dcim/choices.py:1434 dcim/choices.py:1517 msgid "USB" msgstr "" -#: netbox/dcim/choices.py:1504 +#: dcim/choices.py:1504 msgid "Fiber" msgstr "" -#: netbox/dcim/choices.py:1529 netbox/dcim/forms/filtersets.py:1227 +#: dcim/choices.py:1529 dcim/forms/filtersets.py:1227 msgid "Connected" msgstr "" -#: netbox/dcim/choices.py:1548 netbox/wireless/choices.py:497 +#: dcim/choices.py:1548 wireless/choices.py:497 msgid "Kilometers" msgstr "" -#: netbox/dcim/choices.py:1549 netbox/templates/dcim/cable_trace.html:65 -#: netbox/wireless/choices.py:498 +#: dcim/choices.py:1549 templates/dcim/cable_trace.html:65 +#: wireless/choices.py:498 msgid "Meters" msgstr "" -#: netbox/dcim/choices.py:1550 +#: dcim/choices.py:1550 msgid "Centimeters" msgstr "" -#: netbox/dcim/choices.py:1551 netbox/wireless/choices.py:499 +#: dcim/choices.py:1551 wireless/choices.py:499 msgid "Miles" msgstr "" -#: netbox/dcim/choices.py:1552 netbox/templates/dcim/cable_trace.html:66 -#: netbox/wireless/choices.py:500 +#: dcim/choices.py:1552 templates/dcim/cable_trace.html:66 +#: wireless/choices.py:500 msgid "Feet" msgstr "" -#: netbox/dcim/choices.py:1568 netbox/templates/dcim/device.html:327 -#: netbox/templates/dcim/rack.html:107 +#: dcim/choices.py:1568 templates/dcim/device.html:327 +#: templates/dcim/rack.html:107 msgid "Kilograms" msgstr "" -#: netbox/dcim/choices.py:1569 +#: dcim/choices.py:1569 msgid "Grams" msgstr "" -#: netbox/dcim/choices.py:1570 netbox/templates/dcim/device.html:328 -#: netbox/templates/dcim/rack.html:108 +#: dcim/choices.py:1570 templates/dcim/device.html:328 +#: templates/dcim/rack.html:108 msgid "Pounds" msgstr "" -#: netbox/dcim/choices.py:1571 +#: dcim/choices.py:1571 msgid "Ounces" msgstr "" -#: netbox/dcim/choices.py:1618 +#: dcim/choices.py:1618 msgid "Redundant" msgstr "" -#: netbox/dcim/choices.py:1639 +#: dcim/choices.py:1639 msgid "Single phase" msgstr "" -#: netbox/dcim/choices.py:1640 +#: dcim/choices.py:1640 msgid "Three-phase" msgstr "" -#: netbox/dcim/fields.py:45 +#: dcim/fields.py:45 #, python-brace-format msgid "Invalid MAC address format: {value}" msgstr "" -#: netbox/dcim/fields.py:71 +#: dcim/fields.py:71 #, python-brace-format msgid "Invalid WWN format: {value}" msgstr "" -#: netbox/dcim/filtersets.py:86 +#: dcim/filtersets.py:86 msgid "Parent region (ID)" msgstr "" -#: netbox/dcim/filtersets.py:92 +#: dcim/filtersets.py:92 msgid "Parent region (slug)" msgstr "" -#: netbox/dcim/filtersets.py:116 +#: dcim/filtersets.py:116 msgid "Parent site group (ID)" msgstr "" -#: netbox/dcim/filtersets.py:122 +#: dcim/filtersets.py:122 msgid "Parent site group (slug)" msgstr "" -#: netbox/dcim/filtersets.py:164 netbox/extras/filtersets.py:364 -#: netbox/ipam/filtersets.py:841 netbox/ipam/filtersets.py:993 +#: dcim/filtersets.py:164 extras/filtersets.py:364 ipam/filtersets.py:841 +#: ipam/filtersets.py:993 msgid "Group (ID)" msgstr "" -#: netbox/dcim/filtersets.py:170 +#: dcim/filtersets.py:170 msgid "Group (slug)" msgstr "" -#: netbox/dcim/filtersets.py:176 netbox/dcim/filtersets.py:181 +#: dcim/filtersets.py:176 dcim/filtersets.py:181 msgid "AS (ID)" msgstr "" -#: netbox/dcim/filtersets.py:246 +#: dcim/filtersets.py:246 msgid "Parent location (ID)" msgstr "" -#: netbox/dcim/filtersets.py:252 +#: dcim/filtersets.py:252 msgid "Parent location (slug)" msgstr "" -#: netbox/dcim/filtersets.py:258 netbox/dcim/filtersets.py:369 -#: netbox/dcim/filtersets.py:490 netbox/dcim/filtersets.py:1057 -#: netbox/dcim/filtersets.py:1404 netbox/dcim/filtersets.py:2182 +#: dcim/filtersets.py:258 dcim/filtersets.py:369 dcim/filtersets.py:490 +#: dcim/filtersets.py:1057 dcim/filtersets.py:1404 dcim/filtersets.py:2182 msgid "Location (ID)" msgstr "" -#: netbox/dcim/filtersets.py:265 netbox/dcim/filtersets.py:376 -#: netbox/dcim/filtersets.py:497 netbox/dcim/filtersets.py:1410 -#: netbox/extras/filtersets.py:542 +#: dcim/filtersets.py:265 dcim/filtersets.py:376 dcim/filtersets.py:497 +#: dcim/filtersets.py:1410 extras/filtersets.py:542 msgid "Location (slug)" msgstr "" -#: netbox/dcim/filtersets.py:296 netbox/dcim/filtersets.py:381 -#: netbox/dcim/filtersets.py:539 netbox/dcim/filtersets.py:678 -#: netbox/dcim/filtersets.py:882 netbox/dcim/filtersets.py:933 -#: netbox/dcim/filtersets.py:973 netbox/dcim/filtersets.py:1306 -#: netbox/dcim/filtersets.py:1840 +#: dcim/filtersets.py:296 dcim/filtersets.py:381 dcim/filtersets.py:539 +#: dcim/filtersets.py:678 dcim/filtersets.py:882 dcim/filtersets.py:933 +#: dcim/filtersets.py:973 dcim/filtersets.py:1306 dcim/filtersets.py:1840 msgid "Manufacturer (ID)" msgstr "" -#: netbox/dcim/filtersets.py:302 netbox/dcim/filtersets.py:387 -#: netbox/dcim/filtersets.py:545 netbox/dcim/filtersets.py:684 -#: netbox/dcim/filtersets.py:888 netbox/dcim/filtersets.py:939 -#: netbox/dcim/filtersets.py:979 netbox/dcim/filtersets.py:1312 -#: netbox/dcim/filtersets.py:1846 +#: dcim/filtersets.py:302 dcim/filtersets.py:387 dcim/filtersets.py:545 +#: dcim/filtersets.py:684 dcim/filtersets.py:888 dcim/filtersets.py:939 +#: dcim/filtersets.py:979 dcim/filtersets.py:1312 dcim/filtersets.py:1846 msgid "Manufacturer (slug)" msgstr "" -#: netbox/dcim/filtersets.py:393 +#: dcim/filtersets.py:393 msgid "Rack type (slug)" msgstr "" -#: netbox/dcim/filtersets.py:397 +#: dcim/filtersets.py:397 msgid "Rack type (ID)" msgstr "" -#: netbox/dcim/filtersets.py:411 netbox/dcim/filtersets.py:892 -#: netbox/dcim/filtersets.py:994 netbox/dcim/filtersets.py:1850 -#: netbox/ipam/filtersets.py:381 netbox/ipam/filtersets.py:493 -#: netbox/ipam/filtersets.py:1003 netbox/virtualization/filtersets.py:210 +#: dcim/filtersets.py:411 dcim/filtersets.py:892 dcim/filtersets.py:994 +#: dcim/filtersets.py:1850 ipam/filtersets.py:381 ipam/filtersets.py:493 +#: ipam/filtersets.py:1003 virtualization/filtersets.py:210 msgid "Role (ID)" msgstr "" -#: netbox/dcim/filtersets.py:417 netbox/dcim/filtersets.py:898 -#: netbox/dcim/filtersets.py:1000 netbox/dcim/filtersets.py:1856 -#: netbox/extras/filtersets.py:558 netbox/ipam/filtersets.py:387 -#: netbox/ipam/filtersets.py:499 netbox/ipam/filtersets.py:1009 -#: netbox/virtualization/filtersets.py:216 +#: dcim/filtersets.py:417 dcim/filtersets.py:898 dcim/filtersets.py:1000 +#: dcim/filtersets.py:1856 extras/filtersets.py:558 ipam/filtersets.py:387 +#: ipam/filtersets.py:499 ipam/filtersets.py:1009 +#: virtualization/filtersets.py:216 msgid "Role (slug)" msgstr "" -#: netbox/dcim/filtersets.py:447 netbox/dcim/filtersets.py:1062 -#: netbox/dcim/filtersets.py:1415 netbox/dcim/filtersets.py:2244 +#: dcim/filtersets.py:447 dcim/filtersets.py:1062 dcim/filtersets.py:1415 +#: dcim/filtersets.py:2244 msgid "Rack (ID)" msgstr "" -#: netbox/dcim/filtersets.py:507 netbox/extras/filtersets.py:293 -#: netbox/extras/filtersets.py:337 netbox/extras/filtersets.py:359 -#: netbox/extras/filtersets.py:419 netbox/users/filtersets.py:113 -#: netbox/users/filtersets.py:180 +#: dcim/filtersets.py:507 extras/filtersets.py:293 extras/filtersets.py:337 +#: extras/filtersets.py:359 extras/filtersets.py:419 users/filtersets.py:113 +#: users/filtersets.py:180 msgid "User (name)" msgstr "" -#: netbox/dcim/filtersets.py:549 +#: dcim/filtersets.py:549 msgid "Default platform (ID)" msgstr "" -#: netbox/dcim/filtersets.py:555 +#: dcim/filtersets.py:555 msgid "Default platform (slug)" msgstr "" -#: netbox/dcim/filtersets.py:558 netbox/dcim/forms/filtersets.py:517 +#: dcim/filtersets.py:558 dcim/forms/filtersets.py:517 msgid "Has a front image" msgstr "" -#: netbox/dcim/filtersets.py:562 netbox/dcim/forms/filtersets.py:524 +#: dcim/filtersets.py:562 dcim/forms/filtersets.py:524 msgid "Has a rear image" msgstr "" -#: netbox/dcim/filtersets.py:567 netbox/dcim/filtersets.py:688 -#: netbox/dcim/filtersets.py:1131 netbox/dcim/forms/filtersets.py:531 -#: netbox/dcim/forms/filtersets.py:627 netbox/dcim/forms/filtersets.py:848 +#: dcim/filtersets.py:567 dcim/filtersets.py:688 dcim/filtersets.py:1131 +#: dcim/forms/filtersets.py:531 dcim/forms/filtersets.py:627 +#: dcim/forms/filtersets.py:848 msgid "Has console ports" msgstr "" -#: netbox/dcim/filtersets.py:571 netbox/dcim/filtersets.py:692 -#: netbox/dcim/filtersets.py:1135 netbox/dcim/forms/filtersets.py:538 -#: netbox/dcim/forms/filtersets.py:634 netbox/dcim/forms/filtersets.py:855 +#: dcim/filtersets.py:571 dcim/filtersets.py:692 dcim/filtersets.py:1135 +#: dcim/forms/filtersets.py:538 dcim/forms/filtersets.py:634 +#: dcim/forms/filtersets.py:855 msgid "Has console server ports" msgstr "" -#: netbox/dcim/filtersets.py:575 netbox/dcim/filtersets.py:696 -#: netbox/dcim/filtersets.py:1139 netbox/dcim/forms/filtersets.py:545 -#: netbox/dcim/forms/filtersets.py:641 netbox/dcim/forms/filtersets.py:862 +#: dcim/filtersets.py:575 dcim/filtersets.py:696 dcim/filtersets.py:1139 +#: dcim/forms/filtersets.py:545 dcim/forms/filtersets.py:641 +#: dcim/forms/filtersets.py:862 msgid "Has power ports" msgstr "" -#: netbox/dcim/filtersets.py:579 netbox/dcim/filtersets.py:700 -#: netbox/dcim/filtersets.py:1143 netbox/dcim/forms/filtersets.py:552 -#: netbox/dcim/forms/filtersets.py:648 netbox/dcim/forms/filtersets.py:869 +#: dcim/filtersets.py:579 dcim/filtersets.py:700 dcim/filtersets.py:1143 +#: dcim/forms/filtersets.py:552 dcim/forms/filtersets.py:648 +#: dcim/forms/filtersets.py:869 msgid "Has power outlets" msgstr "" -#: netbox/dcim/filtersets.py:583 netbox/dcim/filtersets.py:704 -#: netbox/dcim/filtersets.py:1147 netbox/dcim/forms/filtersets.py:559 -#: netbox/dcim/forms/filtersets.py:655 netbox/dcim/forms/filtersets.py:876 +#: dcim/filtersets.py:583 dcim/filtersets.py:704 dcim/filtersets.py:1147 +#: dcim/forms/filtersets.py:559 dcim/forms/filtersets.py:655 +#: dcim/forms/filtersets.py:876 msgid "Has interfaces" msgstr "" -#: netbox/dcim/filtersets.py:587 netbox/dcim/filtersets.py:708 -#: netbox/dcim/filtersets.py:1151 netbox/dcim/forms/filtersets.py:566 -#: netbox/dcim/forms/filtersets.py:662 netbox/dcim/forms/filtersets.py:883 +#: dcim/filtersets.py:587 dcim/filtersets.py:708 dcim/filtersets.py:1151 +#: dcim/forms/filtersets.py:566 dcim/forms/filtersets.py:662 +#: dcim/forms/filtersets.py:883 msgid "Has pass-through ports" msgstr "" -#: netbox/dcim/filtersets.py:591 netbox/dcim/filtersets.py:1155 -#: netbox/dcim/forms/filtersets.py:580 +#: dcim/filtersets.py:591 dcim/filtersets.py:1155 dcim/forms/filtersets.py:580 msgid "Has module bays" msgstr "" -#: netbox/dcim/filtersets.py:595 netbox/dcim/filtersets.py:1159 -#: netbox/dcim/forms/filtersets.py:573 +#: dcim/filtersets.py:595 dcim/filtersets.py:1159 dcim/forms/filtersets.py:573 msgid "Has device bays" msgstr "" -#: netbox/dcim/filtersets.py:599 netbox/dcim/forms/filtersets.py:587 +#: dcim/filtersets.py:599 dcim/forms/filtersets.py:587 msgid "Has inventory items" msgstr "" -#: netbox/dcim/filtersets.py:756 netbox/dcim/filtersets.py:989 -#: netbox/dcim/filtersets.py:1436 +#: dcim/filtersets.py:756 dcim/filtersets.py:989 dcim/filtersets.py:1436 msgid "Device type (ID)" msgstr "" -#: netbox/dcim/filtersets.py:772 netbox/dcim/filtersets.py:1317 +#: dcim/filtersets.py:772 dcim/filtersets.py:1317 msgid "Module type (ID)" msgstr "" -#: netbox/dcim/filtersets.py:804 netbox/dcim/filtersets.py:1591 +#: dcim/filtersets.py:804 dcim/filtersets.py:1591 msgid "Power port (ID)" msgstr "" -#: netbox/dcim/filtersets.py:878 netbox/dcim/filtersets.py:1836 +#: dcim/filtersets.py:878 dcim/filtersets.py:1836 msgid "Parent inventory item (ID)" msgstr "" -#: netbox/dcim/filtersets.py:921 netbox/dcim/filtersets.py:947 -#: netbox/dcim/filtersets.py:1127 netbox/virtualization/filtersets.py:238 +#: dcim/filtersets.py:921 dcim/filtersets.py:947 dcim/filtersets.py:1127 +#: virtualization/filtersets.py:238 msgid "Config template (ID)" msgstr "" -#: netbox/dcim/filtersets.py:985 +#: dcim/filtersets.py:985 msgid "Device type (slug)" msgstr "" -#: netbox/dcim/filtersets.py:1005 +#: dcim/filtersets.py:1005 msgid "Parent Device (ID)" msgstr "" -#: netbox/dcim/filtersets.py:1009 netbox/virtualization/filtersets.py:220 +#: dcim/filtersets.py:1009 virtualization/filtersets.py:220 msgid "Platform (ID)" msgstr "" -#: netbox/dcim/filtersets.py:1015 netbox/extras/filtersets.py:569 -#: netbox/virtualization/filtersets.py:226 +#: dcim/filtersets.py:1015 extras/filtersets.py:569 +#: virtualization/filtersets.py:226 msgid "Platform (slug)" msgstr "" -#: netbox/dcim/filtersets.py:1051 netbox/dcim/filtersets.py:1399 -#: netbox/dcim/filtersets.py:1934 netbox/dcim/filtersets.py:2176 -#: netbox/dcim/filtersets.py:2235 +#: dcim/filtersets.py:1051 dcim/filtersets.py:1399 dcim/filtersets.py:1934 +#: dcim/filtersets.py:2176 dcim/filtersets.py:2235 msgid "Site name (slug)" msgstr "" -#: netbox/dcim/filtersets.py:1067 +#: dcim/filtersets.py:1067 msgid "Parent bay (ID)" msgstr "" -#: netbox/dcim/filtersets.py:1071 +#: dcim/filtersets.py:1071 msgid "VM cluster (ID)" msgstr "" -#: netbox/dcim/filtersets.py:1077 netbox/extras/filtersets.py:591 -#: netbox/virtualization/filtersets.py:136 +#: dcim/filtersets.py:1077 extras/filtersets.py:591 +#: virtualization/filtersets.py:136 msgid "Cluster group (slug)" msgstr "" -#: netbox/dcim/filtersets.py:1082 netbox/virtualization/filtersets.py:130 +#: dcim/filtersets.py:1082 virtualization/filtersets.py:130 msgid "Cluster group (ID)" msgstr "" -#: netbox/dcim/filtersets.py:1088 +#: dcim/filtersets.py:1088 msgid "Device model (slug)" msgstr "" -#: netbox/dcim/filtersets.py:1099 netbox/dcim/forms/bulk_edit.py:516 +#: dcim/filtersets.py:1099 dcim/forms/bulk_edit.py:516 msgid "Is full depth" msgstr "" -#: netbox/dcim/filtersets.py:1103 netbox/dcim/forms/common.py:18 -#: netbox/dcim/forms/filtersets.py:818 netbox/dcim/forms/filtersets.py:1385 -#: netbox/dcim/models/device_components.py:518 -#: netbox/virtualization/filtersets.py:230 -#: netbox/virtualization/filtersets.py:301 -#: netbox/virtualization/forms/filtersets.py:172 -#: netbox/virtualization/forms/filtersets.py:223 +#: dcim/filtersets.py:1103 dcim/forms/common.py:18 dcim/forms/filtersets.py:818 +#: dcim/forms/filtersets.py:1385 dcim/models/device_components.py:518 +#: virtualization/filtersets.py:230 virtualization/filtersets.py:301 +#: virtualization/forms/filtersets.py:172 +#: virtualization/forms/filtersets.py:223 msgid "MAC address" msgstr "" -#: netbox/dcim/filtersets.py:1110 netbox/dcim/filtersets.py:1274 -#: netbox/dcim/forms/filtersets.py:827 netbox/dcim/forms/filtersets.py:930 -#: netbox/virtualization/filtersets.py:234 -#: netbox/virtualization/forms/filtersets.py:176 +#: dcim/filtersets.py:1110 dcim/filtersets.py:1274 dcim/forms/filtersets.py:827 +#: dcim/forms/filtersets.py:930 virtualization/filtersets.py:234 +#: virtualization/forms/filtersets.py:176 msgid "Has a primary IP" msgstr "" -#: netbox/dcim/filtersets.py:1114 +#: dcim/filtersets.py:1114 msgid "Has an out-of-band IP" msgstr "" -#: netbox/dcim/filtersets.py:1119 +#: dcim/filtersets.py:1119 msgid "Virtual chassis (ID)" msgstr "" -#: netbox/dcim/filtersets.py:1123 +#: dcim/filtersets.py:1123 msgid "Is a virtual chassis member" msgstr "" -#: netbox/dcim/filtersets.py:1164 +#: dcim/filtersets.py:1164 msgid "OOB IP (ID)" msgstr "" -#: netbox/dcim/filtersets.py:1168 +#: dcim/filtersets.py:1168 msgid "Has virtual device context" msgstr "" -#: netbox/dcim/filtersets.py:1257 +#: dcim/filtersets.py:1257 msgid "VDC (ID)" msgstr "" -#: netbox/dcim/filtersets.py:1262 +#: dcim/filtersets.py:1262 msgid "Device model" msgstr "" -#: netbox/dcim/filtersets.py:1267 netbox/ipam/filtersets.py:632 -#: netbox/vpn/filtersets.py:102 netbox/vpn/filtersets.py:401 +#: dcim/filtersets.py:1267 ipam/filtersets.py:632 vpn/filtersets.py:102 +#: vpn/filtersets.py:401 msgid "Interface (ID)" msgstr "" -#: netbox/dcim/filtersets.py:1323 +#: dcim/filtersets.py:1323 msgid "Module type (model)" msgstr "" -#: netbox/dcim/filtersets.py:1329 +#: dcim/filtersets.py:1329 msgid "Module bay (ID)" msgstr "" -#: netbox/dcim/filtersets.py:1333 netbox/dcim/filtersets.py:1425 -#: netbox/ipam/filtersets.py:611 netbox/ipam/filtersets.py:851 -#: netbox/ipam/filtersets.py:1115 netbox/virtualization/filtersets.py:161 -#: netbox/vpn/filtersets.py:379 +#: dcim/filtersets.py:1333 dcim/filtersets.py:1425 ipam/filtersets.py:611 +#: ipam/filtersets.py:851 ipam/filtersets.py:1115 +#: virtualization/filtersets.py:161 vpn/filtersets.py:379 msgid "Device (ID)" msgstr "" -#: netbox/dcim/filtersets.py:1421 +#: dcim/filtersets.py:1421 msgid "Rack (name)" msgstr "" -#: netbox/dcim/filtersets.py:1431 netbox/ipam/filtersets.py:606 -#: netbox/ipam/filtersets.py:846 netbox/ipam/filtersets.py:1121 -#: netbox/vpn/filtersets.py:374 +#: dcim/filtersets.py:1431 ipam/filtersets.py:606 ipam/filtersets.py:846 +#: ipam/filtersets.py:1121 vpn/filtersets.py:374 msgid "Device (name)" msgstr "" -#: netbox/dcim/filtersets.py:1442 +#: dcim/filtersets.py:1442 msgid "Device type (model)" msgstr "" -#: netbox/dcim/filtersets.py:1447 +#: dcim/filtersets.py:1447 msgid "Device role (ID)" msgstr "" -#: netbox/dcim/filtersets.py:1453 +#: dcim/filtersets.py:1453 msgid "Device role (slug)" msgstr "" -#: netbox/dcim/filtersets.py:1458 +#: dcim/filtersets.py:1458 msgid "Virtual Chassis (ID)" msgstr "" -#: netbox/dcim/filtersets.py:1464 netbox/dcim/forms/filtersets.py:109 -#: netbox/dcim/tables/devices.py:206 netbox/netbox/navigation/menu.py:79 -#: netbox/templates/dcim/device.html:120 -#: netbox/templates/dcim/device_edit.html:93 -#: netbox/templates/dcim/virtualchassis.html:20 -#: netbox/templates/dcim/virtualchassis_add.html:8 -#: netbox/templates/dcim/virtualchassis_edit.html:24 +#: dcim/filtersets.py:1464 dcim/forms/filtersets.py:109 +#: dcim/tables/devices.py:206 netbox/navigation/menu.py:79 +#: templates/dcim/device.html:120 templates/dcim/device_edit.html:93 +#: templates/dcim/virtualchassis.html:20 +#: templates/dcim/virtualchassis_add.html:8 +#: templates/dcim/virtualchassis_edit.html:24 msgid "Virtual Chassis" msgstr "" -#: netbox/dcim/filtersets.py:1488 +#: dcim/filtersets.py:1488 msgid "Module (ID)" msgstr "" -#: netbox/dcim/filtersets.py:1495 +#: dcim/filtersets.py:1495 msgid "Cable (ID)" msgstr "" -#: netbox/dcim/filtersets.py:1604 netbox/ipam/forms/bulk_import.py:189 -#: netbox/vpn/forms/bulk_import.py:308 +#: dcim/filtersets.py:1604 ipam/forms/bulk_import.py:189 +#: vpn/forms/bulk_import.py:308 msgid "Assigned VLAN" msgstr "" -#: netbox/dcim/filtersets.py:1608 +#: dcim/filtersets.py:1608 msgid "Assigned VID" msgstr "" -#: netbox/dcim/filtersets.py:1613 netbox/dcim/forms/bulk_edit.py:1489 -#: netbox/dcim/forms/bulk_import.py:891 netbox/dcim/forms/filtersets.py:1428 -#: netbox/dcim/forms/model_forms.py:1378 -#: netbox/dcim/models/device_components.py:711 -#: netbox/dcim/tables/devices.py:626 netbox/ipam/filtersets.py:316 -#: netbox/ipam/filtersets.py:327 netbox/ipam/filtersets.py:483 -#: netbox/ipam/filtersets.py:584 netbox/ipam/filtersets.py:595 -#: netbox/ipam/forms/bulk_edit.py:242 netbox/ipam/forms/bulk_edit.py:298 -#: netbox/ipam/forms/bulk_edit.py:340 netbox/ipam/forms/bulk_import.py:157 -#: netbox/ipam/forms/bulk_import.py:243 netbox/ipam/forms/bulk_import.py:279 -#: netbox/ipam/forms/filtersets.py:67 netbox/ipam/forms/filtersets.py:172 -#: netbox/ipam/forms/filtersets.py:309 netbox/ipam/forms/model_forms.py:62 -#: netbox/ipam/forms/model_forms.py:202 netbox/ipam/forms/model_forms.py:247 -#: netbox/ipam/forms/model_forms.py:300 netbox/ipam/forms/model_forms.py:431 -#: netbox/ipam/forms/model_forms.py:445 netbox/ipam/forms/model_forms.py:459 -#: netbox/ipam/models/ip.py:233 netbox/ipam/models/ip.py:512 -#: netbox/ipam/models/ip.py:720 netbox/ipam/models/vrfs.py:62 -#: netbox/ipam/tables/ip.py:242 netbox/ipam/tables/ip.py:309 -#: netbox/ipam/tables/ip.py:360 netbox/ipam/tables/ip.py:450 -#: netbox/templates/dcim/interface.html:133 -#: netbox/templates/ipam/ipaddress.html:18 -#: netbox/templates/ipam/iprange.html:40 netbox/templates/ipam/prefix.html:19 -#: netbox/templates/ipam/vrf.html:7 netbox/templates/ipam/vrf.html:13 -#: netbox/templates/virtualization/vminterface.html:47 -#: netbox/virtualization/forms/bulk_edit.py:261 -#: netbox/virtualization/forms/bulk_import.py:171 -#: netbox/virtualization/forms/filtersets.py:228 -#: netbox/virtualization/forms/model_forms.py:344 -#: netbox/virtualization/models/virtualmachines.py:355 -#: netbox/virtualization/tables/virtualmachines.py:143 +#: dcim/filtersets.py:1613 dcim/forms/bulk_edit.py:1489 +#: dcim/forms/bulk_import.py:891 dcim/forms/filtersets.py:1428 +#: dcim/forms/model_forms.py:1378 dcim/models/device_components.py:711 +#: dcim/tables/devices.py:626 ipam/filtersets.py:316 ipam/filtersets.py:327 +#: ipam/filtersets.py:483 ipam/filtersets.py:584 ipam/filtersets.py:595 +#: ipam/forms/bulk_edit.py:242 ipam/forms/bulk_edit.py:298 +#: ipam/forms/bulk_edit.py:340 ipam/forms/bulk_import.py:157 +#: ipam/forms/bulk_import.py:243 ipam/forms/bulk_import.py:279 +#: ipam/forms/filtersets.py:67 ipam/forms/filtersets.py:172 +#: ipam/forms/filtersets.py:309 ipam/forms/model_forms.py:62 +#: ipam/forms/model_forms.py:202 ipam/forms/model_forms.py:247 +#: ipam/forms/model_forms.py:300 ipam/forms/model_forms.py:431 +#: ipam/forms/model_forms.py:445 ipam/forms/model_forms.py:459 +#: ipam/models/ip.py:233 ipam/models/ip.py:512 ipam/models/ip.py:720 +#: ipam/models/vrfs.py:62 ipam/tables/ip.py:242 ipam/tables/ip.py:309 +#: ipam/tables/ip.py:360 ipam/tables/ip.py:450 +#: templates/dcim/interface.html:133 templates/ipam/ipaddress.html:18 +#: templates/ipam/iprange.html:40 templates/ipam/prefix.html:19 +#: templates/ipam/vrf.html:7 templates/ipam/vrf.html:13 +#: templates/virtualization/vminterface.html:47 +#: virtualization/forms/bulk_edit.py:261 +#: virtualization/forms/bulk_import.py:171 +#: virtualization/forms/filtersets.py:228 +#: virtualization/forms/model_forms.py:344 +#: virtualization/models/virtualmachines.py:355 +#: virtualization/tables/virtualmachines.py:143 msgid "VRF" msgstr "" -#: netbox/dcim/filtersets.py:1619 netbox/ipam/filtersets.py:322 -#: netbox/ipam/filtersets.py:333 netbox/ipam/filtersets.py:489 -#: netbox/ipam/filtersets.py:590 netbox/ipam/filtersets.py:601 +#: dcim/filtersets.py:1619 ipam/filtersets.py:322 ipam/filtersets.py:333 +#: ipam/filtersets.py:489 ipam/filtersets.py:590 ipam/filtersets.py:601 msgid "VRF (RD)" msgstr "" -#: netbox/dcim/filtersets.py:1624 netbox/ipam/filtersets.py:1030 -#: netbox/vpn/filtersets.py:342 +#: dcim/filtersets.py:1624 ipam/filtersets.py:1030 vpn/filtersets.py:342 msgid "L2VPN (ID)" msgstr "" -#: netbox/dcim/filtersets.py:1630 netbox/dcim/forms/filtersets.py:1433 -#: netbox/dcim/tables/devices.py:570 netbox/ipam/filtersets.py:1036 -#: netbox/ipam/forms/filtersets.py:518 netbox/ipam/tables/vlans.py:137 -#: netbox/templates/dcim/interface.html:93 netbox/templates/ipam/vlan.html:66 -#: netbox/templates/vpn/l2vpntermination.html:12 -#: netbox/virtualization/forms/filtersets.py:233 -#: netbox/vpn/forms/bulk_import.py:280 netbox/vpn/forms/filtersets.py:246 -#: netbox/vpn/forms/model_forms.py:409 netbox/vpn/forms/model_forms.py:427 -#: netbox/vpn/models/l2vpn.py:63 netbox/vpn/tables/l2vpn.py:55 +#: dcim/filtersets.py:1630 dcim/forms/filtersets.py:1433 +#: dcim/tables/devices.py:570 ipam/filtersets.py:1036 +#: ipam/forms/filtersets.py:518 ipam/tables/vlans.py:137 +#: templates/dcim/interface.html:93 templates/ipam/vlan.html:66 +#: templates/vpn/l2vpntermination.html:12 +#: virtualization/forms/filtersets.py:233 vpn/forms/bulk_import.py:280 +#: vpn/forms/filtersets.py:246 vpn/forms/model_forms.py:409 +#: vpn/forms/model_forms.py:427 vpn/models/l2vpn.py:63 vpn/tables/l2vpn.py:55 msgid "L2VPN" msgstr "" -#: netbox/dcim/filtersets.py:1662 +#: dcim/filtersets.py:1662 msgid "Virtual Chassis Interfaces for Device" msgstr "" -#: netbox/dcim/filtersets.py:1667 +#: dcim/filtersets.py:1667 msgid "Virtual Chassis Interfaces for Device (ID)" msgstr "" -#: netbox/dcim/filtersets.py:1671 +#: dcim/filtersets.py:1671 msgid "Kind of interface" msgstr "" -#: netbox/dcim/filtersets.py:1676 netbox/virtualization/filtersets.py:293 +#: dcim/filtersets.py:1676 virtualization/filtersets.py:293 msgid "Parent interface (ID)" msgstr "" -#: netbox/dcim/filtersets.py:1681 netbox/virtualization/filtersets.py:298 +#: dcim/filtersets.py:1681 virtualization/filtersets.py:298 msgid "Bridged interface (ID)" msgstr "" -#: netbox/dcim/filtersets.py:1686 +#: dcim/filtersets.py:1686 msgid "LAG interface (ID)" msgstr "" -#: netbox/dcim/filtersets.py:1713 netbox/dcim/filtersets.py:1725 -#: netbox/dcim/forms/filtersets.py:1345 netbox/dcim/forms/model_forms.py:1690 -#: netbox/templates/dcim/virtualdevicecontext.html:15 +#: dcim/filtersets.py:1713 dcim/filtersets.py:1725 +#: dcim/forms/filtersets.py:1345 dcim/forms/model_forms.py:1690 +#: templates/dcim/virtualdevicecontext.html:15 msgid "Virtual Device Context" msgstr "" -#: netbox/dcim/filtersets.py:1719 +#: dcim/filtersets.py:1719 msgid "Virtual Device Context (Identifier)" msgstr "" -#: netbox/dcim/filtersets.py:1730 netbox/templates/wireless/wirelesslan.html:11 -#: netbox/wireless/forms/model_forms.py:53 +#: dcim/filtersets.py:1730 templates/wireless/wirelesslan.html:11 +#: wireless/forms/model_forms.py:53 msgid "Wireless LAN" msgstr "" -#: netbox/dcim/filtersets.py:1734 netbox/dcim/tables/devices.py:613 +#: dcim/filtersets.py:1734 dcim/tables/devices.py:613 msgid "Wireless link" msgstr "" -#: netbox/dcim/filtersets.py:1803 +#: dcim/filtersets.py:1803 msgid "Parent module bay (ID)" msgstr "" -#: netbox/dcim/filtersets.py:1808 +#: dcim/filtersets.py:1808 msgid "Installed module (ID)" msgstr "" -#: netbox/dcim/filtersets.py:1819 +#: dcim/filtersets.py:1819 msgid "Installed device (ID)" msgstr "" -#: netbox/dcim/filtersets.py:1825 +#: dcim/filtersets.py:1825 msgid "Installed device (name)" msgstr "" -#: netbox/dcim/filtersets.py:1891 +#: dcim/filtersets.py:1891 msgid "Master (ID)" msgstr "" -#: netbox/dcim/filtersets.py:1897 +#: dcim/filtersets.py:1897 msgid "Master (name)" msgstr "" -#: netbox/dcim/filtersets.py:1939 netbox/tenancy/filtersets.py:245 +#: dcim/filtersets.py:1939 tenancy/filtersets.py:245 msgid "Tenant (ID)" msgstr "" -#: netbox/dcim/filtersets.py:1945 netbox/extras/filtersets.py:618 -#: netbox/tenancy/filtersets.py:251 +#: dcim/filtersets.py:1945 extras/filtersets.py:618 tenancy/filtersets.py:251 msgid "Tenant (slug)" msgstr "" -#: netbox/dcim/filtersets.py:1981 netbox/dcim/forms/filtersets.py:1077 +#: dcim/filtersets.py:1981 dcim/forms/filtersets.py:1077 msgid "Unterminated" msgstr "" -#: netbox/dcim/filtersets.py:2239 +#: dcim/filtersets.py:2239 msgid "Power panel (ID)" msgstr "" -#: netbox/dcim/forms/bulk_create.py:40 netbox/extras/forms/filtersets.py:401 -#: netbox/extras/forms/model_forms.py:567 -#: netbox/extras/forms/model_forms.py:619 netbox/netbox/forms/base.py:86 -#: netbox/netbox/forms/mixins.py:81 netbox/netbox/tables/columns.py:478 -#: netbox/templates/circuits/inc/circuit_termination.html:32 -#: netbox/templates/generic/bulk_edit.html:65 -#: netbox/templates/inc/panels/tags.html:5 -#: netbox/utilities/forms/fields/fields.py:81 +#: dcim/forms/bulk_create.py:40 extras/forms/filtersets.py:401 +#: extras/forms/model_forms.py:567 extras/forms/model_forms.py:619 +#: netbox/forms/base.py:86 netbox/forms/mixins.py:81 +#: netbox/tables/columns.py:478 +#: templates/circuits/inc/circuit_termination.html:32 +#: templates/generic/bulk_edit.html:65 templates/inc/panels/tags.html:5 +#: utilities/forms/fields/fields.py:81 msgid "Tags" msgstr "" -#: netbox/dcim/forms/bulk_create.py:112 netbox/dcim/forms/filtersets.py:1498 -#: netbox/dcim/forms/model_forms.py:488 netbox/dcim/forms/model_forms.py:546 -#: netbox/dcim/forms/object_create.py:197 -#: netbox/dcim/forms/object_create.py:353 netbox/dcim/tables/devices.py:165 -#: netbox/dcim/tables/devices.py:707 netbox/dcim/tables/devicetypes.py:246 -#: netbox/templates/dcim/device.html:43 netbox/templates/dcim/device.html:131 -#: netbox/templates/dcim/modulebay.html:38 -#: netbox/templates/dcim/virtualchassis.html:66 -#: netbox/templates/dcim/virtualchassis_edit.html:55 +#: dcim/forms/bulk_create.py:112 dcim/forms/filtersets.py:1498 +#: dcim/forms/model_forms.py:488 dcim/forms/model_forms.py:546 +#: dcim/forms/object_create.py:197 dcim/forms/object_create.py:353 +#: dcim/tables/devices.py:165 dcim/tables/devices.py:707 +#: dcim/tables/devicetypes.py:246 templates/dcim/device.html:43 +#: templates/dcim/device.html:131 templates/dcim/modulebay.html:38 +#: templates/dcim/virtualchassis.html:66 +#: templates/dcim/virtualchassis_edit.html:55 msgid "Position" msgstr "" -#: netbox/dcim/forms/bulk_create.py:114 +#: dcim/forms/bulk_create.py:114 msgid "" "Alphanumeric ranges are supported. (Must match the number of names being " "created.)" msgstr "" -#: netbox/dcim/forms/bulk_edit.py:132 +#: dcim/forms/bulk_edit.py:132 msgid "Contact name" msgstr "" -#: netbox/dcim/forms/bulk_edit.py:137 +#: dcim/forms/bulk_edit.py:137 msgid "Contact phone" msgstr "" -#: netbox/dcim/forms/bulk_edit.py:143 +#: dcim/forms/bulk_edit.py:143 msgid "Contact E-mail" msgstr "" -#: netbox/dcim/forms/bulk_edit.py:146 netbox/dcim/forms/bulk_import.py:123 -#: netbox/dcim/forms/model_forms.py:128 +#: dcim/forms/bulk_edit.py:146 dcim/forms/bulk_import.py:123 +#: dcim/forms/model_forms.py:128 msgid "Time zone" msgstr "" -#: netbox/dcim/forms/bulk_edit.py:224 netbox/dcim/forms/bulk_edit.py:495 -#: netbox/dcim/forms/bulk_edit.py:559 netbox/dcim/forms/bulk_edit.py:632 -#: netbox/dcim/forms/bulk_edit.py:656 netbox/dcim/forms/bulk_edit.py:740 -#: netbox/dcim/forms/bulk_edit.py:1267 netbox/dcim/forms/bulk_edit.py:1660 -#: netbox/dcim/forms/bulk_import.py:182 netbox/dcim/forms/bulk_import.py:371 -#: netbox/dcim/forms/bulk_import.py:405 netbox/dcim/forms/bulk_import.py:450 -#: netbox/dcim/forms/bulk_import.py:486 netbox/dcim/forms/bulk_import.py:1082 -#: netbox/dcim/forms/filtersets.py:313 netbox/dcim/forms/filtersets.py:372 -#: netbox/dcim/forms/filtersets.py:494 netbox/dcim/forms/filtersets.py:619 -#: netbox/dcim/forms/filtersets.py:700 netbox/dcim/forms/filtersets.py:782 -#: netbox/dcim/forms/filtersets.py:947 netbox/dcim/forms/filtersets.py:1539 -#: netbox/dcim/forms/model_forms.py:207 netbox/dcim/forms/model_forms.py:337 -#: netbox/dcim/forms/model_forms.py:349 netbox/dcim/forms/model_forms.py:395 -#: netbox/dcim/forms/model_forms.py:436 netbox/dcim/forms/model_forms.py:1075 -#: netbox/dcim/forms/model_forms.py:1515 netbox/dcim/forms/object_import.py:187 -#: netbox/dcim/tables/devices.py:96 netbox/dcim/tables/devices.py:172 -#: netbox/dcim/tables/devices.py:940 netbox/dcim/tables/devicetypes.py:80 -#: netbox/dcim/tables/devicetypes.py:308 netbox/dcim/tables/modules.py:20 -#: netbox/dcim/tables/modules.py:60 netbox/dcim/tables/racks.py:58 -#: netbox/dcim/tables/racks.py:132 netbox/templates/dcim/devicetype.html:14 -#: netbox/templates/dcim/inventoryitem.html:44 -#: netbox/templates/dcim/manufacturer.html:33 -#: netbox/templates/dcim/modulebay.html:62 -#: netbox/templates/dcim/moduletype.html:14 -#: netbox/templates/dcim/platform.html:37 -#: netbox/templates/dcim/racktype.html:16 +#: dcim/forms/bulk_edit.py:224 dcim/forms/bulk_edit.py:495 +#: dcim/forms/bulk_edit.py:559 dcim/forms/bulk_edit.py:632 +#: dcim/forms/bulk_edit.py:656 dcim/forms/bulk_edit.py:740 +#: dcim/forms/bulk_edit.py:1267 dcim/forms/bulk_edit.py:1660 +#: dcim/forms/bulk_import.py:182 dcim/forms/bulk_import.py:371 +#: dcim/forms/bulk_import.py:405 dcim/forms/bulk_import.py:450 +#: dcim/forms/bulk_import.py:486 dcim/forms/bulk_import.py:1082 +#: dcim/forms/filtersets.py:313 dcim/forms/filtersets.py:372 +#: dcim/forms/filtersets.py:494 dcim/forms/filtersets.py:619 +#: dcim/forms/filtersets.py:700 dcim/forms/filtersets.py:782 +#: dcim/forms/filtersets.py:947 dcim/forms/filtersets.py:1539 +#: dcim/forms/model_forms.py:207 dcim/forms/model_forms.py:337 +#: dcim/forms/model_forms.py:349 dcim/forms/model_forms.py:395 +#: dcim/forms/model_forms.py:436 dcim/forms/model_forms.py:1075 +#: dcim/forms/model_forms.py:1515 dcim/forms/object_import.py:187 +#: dcim/tables/devices.py:96 dcim/tables/devices.py:172 +#: dcim/tables/devices.py:940 dcim/tables/devicetypes.py:80 +#: dcim/tables/devicetypes.py:308 dcim/tables/modules.py:20 +#: dcim/tables/modules.py:60 dcim/tables/racks.py:58 dcim/tables/racks.py:132 +#: templates/dcim/devicetype.html:14 templates/dcim/inventoryitem.html:44 +#: templates/dcim/manufacturer.html:33 templates/dcim/modulebay.html:62 +#: templates/dcim/moduletype.html:25 templates/dcim/platform.html:37 +#: templates/dcim/racktype.html:16 msgid "Manufacturer" msgstr "" -#: netbox/dcim/forms/bulk_edit.py:229 netbox/dcim/forms/bulk_edit.py:372 -#: netbox/dcim/forms/bulk_import.py:191 netbox/dcim/forms/bulk_import.py:263 -#: netbox/dcim/forms/filtersets.py:255 -#: netbox/templates/dcim/inc/panels/racktype_dimensions.html:6 +#: dcim/forms/bulk_edit.py:229 dcim/forms/bulk_edit.py:372 +#: dcim/forms/bulk_import.py:191 dcim/forms/bulk_import.py:263 +#: dcim/forms/filtersets.py:255 +#: templates/dcim/inc/panels/racktype_dimensions.html:6 msgid "Form factor" msgstr "" -#: netbox/dcim/forms/bulk_edit.py:234 netbox/dcim/forms/bulk_edit.py:377 -#: netbox/dcim/forms/bulk_import.py:199 netbox/dcim/forms/bulk_import.py:266 -#: netbox/dcim/forms/filtersets.py:260 -#: netbox/templates/dcim/inc/panels/racktype_dimensions.html:10 +#: dcim/forms/bulk_edit.py:234 dcim/forms/bulk_edit.py:377 +#: dcim/forms/bulk_import.py:199 dcim/forms/bulk_import.py:266 +#: dcim/forms/filtersets.py:260 +#: templates/dcim/inc/panels/racktype_dimensions.html:10 msgid "Width" msgstr "" -#: netbox/dcim/forms/bulk_edit.py:240 netbox/dcim/forms/bulk_edit.py:383 -#: netbox/templates/dcim/devicetype.html:37 +#: dcim/forms/bulk_edit.py:240 dcim/forms/bulk_edit.py:383 +#: templates/dcim/devicetype.html:37 msgid "Height (U)" msgstr "" -#: netbox/dcim/forms/bulk_edit.py:249 netbox/dcim/forms/bulk_edit.py:388 -#: netbox/dcim/forms/filtersets.py:274 +#: dcim/forms/bulk_edit.py:249 dcim/forms/bulk_edit.py:388 +#: dcim/forms/filtersets.py:274 msgid "Descending units" msgstr "" -#: netbox/dcim/forms/bulk_edit.py:252 netbox/dcim/forms/bulk_edit.py:391 +#: dcim/forms/bulk_edit.py:252 dcim/forms/bulk_edit.py:391 msgid "Outer width" msgstr "" -#: netbox/dcim/forms/bulk_edit.py:257 netbox/dcim/forms/bulk_edit.py:396 +#: dcim/forms/bulk_edit.py:257 dcim/forms/bulk_edit.py:396 msgid "Outer depth" msgstr "" -#: netbox/dcim/forms/bulk_edit.py:262 netbox/dcim/forms/bulk_edit.py:401 -#: netbox/dcim/forms/bulk_import.py:204 netbox/dcim/forms/bulk_import.py:271 +#: dcim/forms/bulk_edit.py:262 dcim/forms/bulk_edit.py:401 +#: dcim/forms/bulk_import.py:204 dcim/forms/bulk_import.py:271 msgid "Outer unit" msgstr "" -#: netbox/dcim/forms/bulk_edit.py:267 netbox/dcim/forms/bulk_edit.py:406 +#: dcim/forms/bulk_edit.py:267 dcim/forms/bulk_edit.py:406 msgid "Mounting depth" msgstr "" -#: netbox/dcim/forms/bulk_edit.py:272 netbox/dcim/forms/bulk_edit.py:299 -#: netbox/dcim/forms/bulk_edit.py:416 netbox/dcim/forms/bulk_edit.py:446 -#: netbox/dcim/forms/bulk_edit.py:529 netbox/dcim/forms/bulk_edit.py:552 -#: netbox/dcim/forms/bulk_edit.py:573 netbox/dcim/forms/bulk_edit.py:595 -#: netbox/dcim/forms/bulk_import.py:384 netbox/dcim/forms/bulk_import.py:416 -#: netbox/dcim/forms/filtersets.py:285 netbox/dcim/forms/filtersets.py:307 -#: netbox/dcim/forms/filtersets.py:327 netbox/dcim/forms/filtersets.py:401 -#: netbox/dcim/forms/filtersets.py:488 netbox/dcim/forms/filtersets.py:594 -#: netbox/dcim/forms/filtersets.py:613 netbox/dcim/forms/filtersets.py:674 -#: netbox/dcim/forms/model_forms.py:221 netbox/dcim/forms/model_forms.py:298 -#: netbox/dcim/tables/devicetypes.py:106 netbox/dcim/tables/modules.py:35 -#: netbox/dcim/tables/racks.py:74 netbox/dcim/tables/racks.py:172 -#: netbox/extras/forms/bulk_edit.py:53 netbox/extras/forms/bulk_edit.py:133 -#: netbox/extras/forms/bulk_edit.py:183 netbox/extras/forms/bulk_edit.py:288 -#: netbox/extras/forms/filtersets.py:64 netbox/extras/forms/filtersets.py:156 -#: netbox/extras/forms/filtersets.py:243 netbox/ipam/forms/bulk_edit.py:190 -#: netbox/templates/dcim/device.html:324 -#: netbox/templates/dcim/devicetype.html:49 -#: netbox/templates/dcim/moduletype.html:34 netbox/templates/dcim/rack.html:81 -#: netbox/templates/dcim/racktype.html:41 -#: netbox/templates/extras/configcontext.html:17 -#: netbox/templates/extras/customlink.html:25 -#: netbox/templates/extras/savedfilter.html:33 -#: netbox/templates/ipam/role.html:30 +#: dcim/forms/bulk_edit.py:272 dcim/forms/bulk_edit.py:299 +#: dcim/forms/bulk_edit.py:416 dcim/forms/bulk_edit.py:446 +#: dcim/forms/bulk_edit.py:529 dcim/forms/bulk_edit.py:552 +#: dcim/forms/bulk_edit.py:573 dcim/forms/bulk_edit.py:595 +#: dcim/forms/bulk_import.py:384 dcim/forms/bulk_import.py:416 +#: dcim/forms/filtersets.py:285 dcim/forms/filtersets.py:307 +#: dcim/forms/filtersets.py:327 dcim/forms/filtersets.py:401 +#: dcim/forms/filtersets.py:488 dcim/forms/filtersets.py:594 +#: dcim/forms/filtersets.py:613 dcim/forms/filtersets.py:674 +#: dcim/forms/model_forms.py:221 dcim/forms/model_forms.py:298 +#: dcim/tables/devicetypes.py:106 dcim/tables/modules.py:35 +#: dcim/tables/racks.py:74 dcim/tables/racks.py:172 +#: extras/forms/bulk_edit.py:53 extras/forms/bulk_edit.py:133 +#: extras/forms/bulk_edit.py:183 extras/forms/bulk_edit.py:288 +#: extras/forms/filtersets.py:64 extras/forms/filtersets.py:156 +#: extras/forms/filtersets.py:243 ipam/forms/bulk_edit.py:190 +#: templates/dcim/device.html:324 templates/dcim/devicetype.html:49 +#: templates/dcim/moduletype.html:45 templates/dcim/rack.html:81 +#: templates/dcim/racktype.html:41 templates/extras/configcontext.html:17 +#: templates/extras/customlink.html:25 templates/extras/savedfilter.html:33 +#: templates/ipam/role.html:30 msgid "Weight" msgstr "" -#: netbox/dcim/forms/bulk_edit.py:277 netbox/dcim/forms/bulk_edit.py:421 -#: netbox/dcim/forms/filtersets.py:290 +#: dcim/forms/bulk_edit.py:277 dcim/forms/bulk_edit.py:421 +#: dcim/forms/filtersets.py:290 msgid "Max weight" msgstr "" -#: netbox/dcim/forms/bulk_edit.py:282 netbox/dcim/forms/bulk_edit.py:426 -#: netbox/dcim/forms/bulk_edit.py:534 netbox/dcim/forms/bulk_edit.py:578 -#: netbox/dcim/forms/bulk_import.py:210 netbox/dcim/forms/bulk_import.py:283 -#: netbox/dcim/forms/bulk_import.py:389 netbox/dcim/forms/bulk_import.py:421 -#: netbox/dcim/forms/filtersets.py:295 netbox/dcim/forms/filtersets.py:598 -#: netbox/dcim/forms/filtersets.py:678 +#: dcim/forms/bulk_edit.py:282 dcim/forms/bulk_edit.py:426 +#: dcim/forms/bulk_edit.py:534 dcim/forms/bulk_edit.py:578 +#: dcim/forms/bulk_import.py:210 dcim/forms/bulk_import.py:283 +#: dcim/forms/bulk_import.py:389 dcim/forms/bulk_import.py:421 +#: dcim/forms/filtersets.py:295 dcim/forms/filtersets.py:598 +#: dcim/forms/filtersets.py:678 msgid "Weight unit" msgstr "" -#: netbox/dcim/forms/bulk_edit.py:296 netbox/dcim/forms/filtersets.py:305 -#: netbox/dcim/forms/model_forms.py:217 netbox/dcim/forms/model_forms.py:256 -#: netbox/templates/dcim/rack.html:45 netbox/templates/dcim/racktype.html:13 +#: dcim/forms/bulk_edit.py:296 dcim/forms/filtersets.py:305 +#: dcim/forms/model_forms.py:217 dcim/forms/model_forms.py:256 +#: templates/dcim/rack.html:45 templates/dcim/racktype.html:13 msgid "Rack Type" msgstr "" -#: netbox/dcim/forms/bulk_edit.py:298 netbox/dcim/forms/model_forms.py:220 -#: netbox/dcim/forms/model_forms.py:297 +#: dcim/forms/bulk_edit.py:298 dcim/forms/model_forms.py:220 +#: dcim/forms/model_forms.py:297 msgid "Outer Dimensions" msgstr "" -#: netbox/dcim/forms/bulk_edit.py:301 netbox/dcim/forms/model_forms.py:222 -#: netbox/dcim/forms/model_forms.py:299 netbox/templates/dcim/device.html:315 -#: netbox/templates/dcim/inc/panels/racktype_dimensions.html:3 +#: dcim/forms/bulk_edit.py:301 dcim/forms/model_forms.py:222 +#: dcim/forms/model_forms.py:299 templates/dcim/device.html:315 +#: templates/dcim/inc/panels/racktype_dimensions.html:3 msgid "Dimensions" msgstr "" -#: netbox/dcim/forms/bulk_edit.py:303 netbox/dcim/forms/filtersets.py:306 -#: netbox/dcim/forms/filtersets.py:326 netbox/dcim/forms/model_forms.py:224 -#: netbox/templates/dcim/inc/panels/racktype_numbering.html:3 +#: dcim/forms/bulk_edit.py:303 dcim/forms/filtersets.py:306 +#: dcim/forms/filtersets.py:326 dcim/forms/model_forms.py:224 +#: templates/dcim/inc/panels/racktype_numbering.html:3 msgid "Numbering" msgstr "" -#: netbox/dcim/forms/bulk_edit.py:357 netbox/dcim/forms/bulk_edit.py:1262 -#: netbox/dcim/forms/bulk_edit.py:1655 netbox/dcim/forms/bulk_import.py:253 -#: netbox/dcim/forms/bulk_import.py:1076 netbox/dcim/forms/filtersets.py:367 -#: netbox/dcim/forms/filtersets.py:777 netbox/dcim/forms/filtersets.py:1534 -#: netbox/dcim/forms/model_forms.py:251 netbox/dcim/forms/model_forms.py:1070 -#: netbox/dcim/forms/model_forms.py:1510 netbox/dcim/forms/object_import.py:181 -#: netbox/dcim/tables/devices.py:169 netbox/dcim/tables/devices.py:809 -#: netbox/dcim/tables/devices.py:937 netbox/dcim/tables/devicetypes.py:304 -#: netbox/dcim/tables/racks.py:129 netbox/extras/filtersets.py:552 -#: netbox/ipam/forms/bulk_edit.py:261 netbox/ipam/forms/bulk_edit.py:311 -#: netbox/ipam/forms/bulk_edit.py:359 netbox/ipam/forms/bulk_edit.py:511 -#: netbox/ipam/forms/bulk_import.py:197 netbox/ipam/forms/bulk_import.py:262 -#: netbox/ipam/forms/bulk_import.py:298 netbox/ipam/forms/bulk_import.py:455 -#: netbox/ipam/forms/filtersets.py:237 netbox/ipam/forms/filtersets.py:289 -#: netbox/ipam/forms/filtersets.py:360 netbox/ipam/forms/filtersets.py:509 -#: netbox/ipam/forms/model_forms.py:188 netbox/ipam/forms/model_forms.py:221 -#: netbox/ipam/forms/model_forms.py:250 netbox/ipam/forms/model_forms.py:643 -#: netbox/ipam/tables/ip.py:258 netbox/ipam/tables/ip.py:316 -#: netbox/ipam/tables/ip.py:367 netbox/ipam/tables/vlans.py:130 -#: netbox/ipam/tables/vlans.py:235 netbox/templates/dcim/device.html:182 -#: netbox/templates/dcim/inc/panels/inventory_items.html:20 -#: netbox/templates/dcim/interface.html:223 -#: netbox/templates/dcim/inventoryitem.html:36 -#: netbox/templates/dcim/rack.html:49 netbox/templates/ipam/ipaddress.html:41 -#: netbox/templates/ipam/iprange.html:50 netbox/templates/ipam/prefix.html:77 -#: netbox/templates/ipam/role.html:19 netbox/templates/ipam/vlan.html:52 -#: netbox/templates/virtualization/virtualmachine.html:23 -#: netbox/templates/vpn/tunneltermination.html:17 -#: netbox/templates/wireless/inc/wirelesslink_interface.html:20 -#: netbox/tenancy/forms/bulk_edit.py:142 netbox/tenancy/forms/filtersets.py:107 -#: netbox/tenancy/forms/model_forms.py:137 -#: netbox/tenancy/tables/contacts.py:102 -#: netbox/virtualization/forms/bulk_edit.py:145 -#: netbox/virtualization/forms/bulk_import.py:106 -#: netbox/virtualization/forms/filtersets.py:157 -#: netbox/virtualization/forms/model_forms.py:195 -#: netbox/virtualization/tables/virtualmachines.py:75 -#: netbox/vpn/forms/bulk_edit.py:87 netbox/vpn/forms/bulk_import.py:81 -#: netbox/vpn/forms/filtersets.py:85 netbox/vpn/forms/model_forms.py:78 -#: netbox/vpn/forms/model_forms.py:113 netbox/vpn/tables/tunnels.py:82 +#: dcim/forms/bulk_edit.py:357 dcim/forms/bulk_edit.py:1262 +#: dcim/forms/bulk_edit.py:1655 dcim/forms/bulk_import.py:253 +#: dcim/forms/bulk_import.py:1076 dcim/forms/filtersets.py:367 +#: dcim/forms/filtersets.py:777 dcim/forms/filtersets.py:1534 +#: dcim/forms/model_forms.py:251 dcim/forms/model_forms.py:1070 +#: dcim/forms/model_forms.py:1510 dcim/forms/object_import.py:181 +#: dcim/tables/devices.py:169 dcim/tables/devices.py:809 +#: dcim/tables/devices.py:937 dcim/tables/devicetypes.py:304 +#: dcim/tables/racks.py:129 extras/filtersets.py:552 +#: ipam/forms/bulk_edit.py:261 ipam/forms/bulk_edit.py:311 +#: ipam/forms/bulk_edit.py:359 ipam/forms/bulk_edit.py:511 +#: ipam/forms/bulk_import.py:197 ipam/forms/bulk_import.py:262 +#: ipam/forms/bulk_import.py:298 ipam/forms/bulk_import.py:455 +#: ipam/forms/filtersets.py:237 ipam/forms/filtersets.py:289 +#: ipam/forms/filtersets.py:360 ipam/forms/filtersets.py:509 +#: ipam/forms/model_forms.py:188 ipam/forms/model_forms.py:221 +#: ipam/forms/model_forms.py:250 ipam/forms/model_forms.py:643 +#: ipam/tables/ip.py:258 ipam/tables/ip.py:316 ipam/tables/ip.py:367 +#: ipam/tables/vlans.py:130 ipam/tables/vlans.py:235 +#: templates/dcim/device.html:182 +#: templates/dcim/inc/panels/inventory_items.html:20 +#: templates/dcim/interface.html:223 templates/dcim/inventoryitem.html:36 +#: templates/dcim/rack.html:49 templates/ipam/ipaddress.html:41 +#: templates/ipam/iprange.html:50 templates/ipam/prefix.html:77 +#: templates/ipam/role.html:19 templates/ipam/vlan.html:52 +#: templates/virtualization/virtualmachine.html:23 +#: templates/vpn/tunneltermination.html:17 +#: templates/wireless/inc/wirelesslink_interface.html:20 +#: tenancy/forms/bulk_edit.py:142 tenancy/forms/filtersets.py:107 +#: tenancy/forms/model_forms.py:137 tenancy/tables/contacts.py:102 +#: virtualization/forms/bulk_edit.py:145 +#: virtualization/forms/bulk_import.py:106 +#: virtualization/forms/filtersets.py:157 +#: virtualization/forms/model_forms.py:195 +#: virtualization/tables/virtualmachines.py:75 vpn/forms/bulk_edit.py:87 +#: vpn/forms/bulk_import.py:81 vpn/forms/filtersets.py:85 +#: vpn/forms/model_forms.py:78 vpn/forms/model_forms.py:113 +#: vpn/tables/tunnels.py:82 msgid "Role" msgstr "" -#: netbox/dcim/forms/bulk_edit.py:364 netbox/dcim/forms/bulk_edit.py:712 -#: netbox/dcim/forms/bulk_edit.py:764 netbox/templates/dcim/device.html:104 -#: netbox/templates/dcim/module.html:77 netbox/templates/dcim/modulebay.html:70 -#: netbox/templates/dcim/rack.html:57 -#: netbox/templates/virtualization/virtualmachine.html:35 +#: dcim/forms/bulk_edit.py:364 dcim/forms/bulk_edit.py:712 +#: dcim/forms/bulk_edit.py:764 templates/dcim/device.html:104 +#: templates/dcim/module.html:77 templates/dcim/modulebay.html:70 +#: templates/dcim/rack.html:57 templates/virtualization/virtualmachine.html:35 msgid "Serial Number" msgstr "" -#: netbox/dcim/forms/bulk_edit.py:367 netbox/dcim/forms/filtersets.py:387 -#: netbox/dcim/forms/filtersets.py:813 netbox/dcim/forms/filtersets.py:967 -#: netbox/dcim/forms/filtersets.py:1546 +#: dcim/forms/bulk_edit.py:367 dcim/forms/filtersets.py:387 +#: dcim/forms/filtersets.py:813 dcim/forms/filtersets.py:967 +#: dcim/forms/filtersets.py:1546 msgid "Asset tag" msgstr "" -#: netbox/dcim/forms/bulk_edit.py:411 netbox/dcim/forms/bulk_edit.py:524 -#: netbox/dcim/forms/bulk_edit.py:568 netbox/dcim/forms/bulk_edit.py:705 -#: netbox/dcim/forms/bulk_import.py:277 netbox/dcim/forms/bulk_import.py:410 -#: netbox/dcim/forms/bulk_import.py:580 netbox/dcim/forms/filtersets.py:280 -#: netbox/dcim/forms/filtersets.py:511 netbox/dcim/forms/filtersets.py:669 -#: netbox/dcim/forms/filtersets.py:804 netbox/templates/dcim/device.html:98 -#: netbox/templates/dcim/devicetype.html:65 -#: netbox/templates/dcim/moduletype.html:30 netbox/templates/dcim/rack.html:65 -#: netbox/templates/dcim/racktype.html:28 +#: dcim/forms/bulk_edit.py:411 dcim/forms/bulk_edit.py:524 +#: dcim/forms/bulk_edit.py:568 dcim/forms/bulk_edit.py:705 +#: dcim/forms/bulk_import.py:277 dcim/forms/bulk_import.py:410 +#: dcim/forms/bulk_import.py:580 dcim/forms/filtersets.py:280 +#: dcim/forms/filtersets.py:511 dcim/forms/filtersets.py:669 +#: dcim/forms/filtersets.py:804 templates/dcim/device.html:98 +#: templates/dcim/devicetype.html:65 templates/dcim/moduletype.html:41 +#: templates/dcim/rack.html:65 templates/dcim/racktype.html:28 msgid "Airflow" msgstr "" -#: netbox/dcim/forms/bulk_edit.py:440 netbox/dcim/forms/bulk_edit.py:910 -#: netbox/dcim/forms/bulk_import.py:322 netbox/dcim/forms/bulk_import.py:325 -#: netbox/dcim/forms/bulk_import.py:553 netbox/dcim/forms/bulk_import.py:1358 -#: netbox/dcim/forms/bulk_import.py:1362 netbox/dcim/forms/filtersets.py:104 -#: netbox/dcim/forms/filtersets.py:324 netbox/dcim/forms/filtersets.py:405 -#: netbox/dcim/forms/filtersets.py:419 netbox/dcim/forms/filtersets.py:457 -#: netbox/dcim/forms/filtersets.py:772 netbox/dcim/forms/filtersets.py:1035 -#: netbox/dcim/forms/filtersets.py:1167 netbox/dcim/forms/model_forms.py:264 -#: netbox/dcim/forms/model_forms.py:306 netbox/dcim/forms/model_forms.py:479 -#: netbox/dcim/forms/model_forms.py:755 netbox/dcim/forms/object_create.py:400 -#: netbox/dcim/tables/devices.py:161 netbox/dcim/tables/power.py:70 -#: netbox/dcim/tables/racks.py:217 netbox/ipam/forms/filtersets.py:442 -#: netbox/templates/dcim/device.html:30 -#: netbox/templates/dcim/inc/cable_termination.html:16 -#: netbox/templates/dcim/powerfeed.html:28 netbox/templates/dcim/rack.html:13 -#: netbox/templates/dcim/rack/base.html:4 -#: netbox/templates/dcim/rackreservation.html:19 -#: netbox/templates/dcim/rackreservation.html:36 -#: netbox/virtualization/forms/model_forms.py:113 +#: dcim/forms/bulk_edit.py:440 dcim/forms/bulk_edit.py:910 +#: dcim/forms/bulk_import.py:322 dcim/forms/bulk_import.py:325 +#: dcim/forms/bulk_import.py:553 dcim/forms/bulk_import.py:1358 +#: dcim/forms/bulk_import.py:1362 dcim/forms/filtersets.py:104 +#: dcim/forms/filtersets.py:324 dcim/forms/filtersets.py:405 +#: dcim/forms/filtersets.py:419 dcim/forms/filtersets.py:457 +#: dcim/forms/filtersets.py:772 dcim/forms/filtersets.py:1035 +#: dcim/forms/filtersets.py:1167 dcim/forms/model_forms.py:264 +#: dcim/forms/model_forms.py:306 dcim/forms/model_forms.py:479 +#: dcim/forms/model_forms.py:755 dcim/forms/object_create.py:400 +#: dcim/tables/devices.py:161 dcim/tables/power.py:70 dcim/tables/racks.py:217 +#: ipam/forms/filtersets.py:442 templates/dcim/device.html:30 +#: templates/dcim/inc/cable_termination.html:16 +#: templates/dcim/powerfeed.html:28 templates/dcim/rack.html:13 +#: templates/dcim/rack/base.html:4 templates/dcim/rackreservation.html:19 +#: templates/dcim/rackreservation.html:36 +#: virtualization/forms/model_forms.py:113 msgid "Rack" msgstr "" -#: netbox/dcim/forms/bulk_edit.py:444 netbox/dcim/forms/bulk_edit.py:730 -#: netbox/dcim/forms/filtersets.py:325 netbox/dcim/forms/filtersets.py:398 -#: netbox/dcim/forms/filtersets.py:481 netbox/dcim/forms/filtersets.py:608 -#: netbox/dcim/forms/filtersets.py:721 netbox/dcim/forms/filtersets.py:942 -#: netbox/dcim/forms/model_forms.py:670 netbox/dcim/forms/model_forms.py:1580 -#: netbox/templates/dcim/device_edit.html:20 +#: dcim/forms/bulk_edit.py:444 dcim/forms/bulk_edit.py:730 +#: dcim/forms/filtersets.py:325 dcim/forms/filtersets.py:398 +#: dcim/forms/filtersets.py:481 dcim/forms/filtersets.py:608 +#: dcim/forms/filtersets.py:721 dcim/forms/filtersets.py:942 +#: dcim/forms/model_forms.py:670 dcim/forms/model_forms.py:1580 +#: templates/dcim/device_edit.html:20 msgid "Hardware" msgstr "" -#: netbox/dcim/forms/bulk_edit.py:500 netbox/dcim/forms/bulk_import.py:377 -#: netbox/dcim/forms/filtersets.py:499 netbox/dcim/forms/model_forms.py:353 +#: dcim/forms/bulk_edit.py:500 dcim/forms/bulk_import.py:377 +#: dcim/forms/filtersets.py:499 dcim/forms/model_forms.py:353 msgid "Default platform" msgstr "" -#: netbox/dcim/forms/bulk_edit.py:505 netbox/dcim/forms/bulk_edit.py:564 -#: netbox/dcim/forms/filtersets.py:502 netbox/dcim/forms/filtersets.py:622 +#: dcim/forms/bulk_edit.py:505 dcim/forms/bulk_edit.py:564 +#: dcim/forms/filtersets.py:502 dcim/forms/filtersets.py:622 msgid "Part number" msgstr "" -#: netbox/dcim/forms/bulk_edit.py:509 +#: dcim/forms/bulk_edit.py:509 msgid "U height" msgstr "" -#: netbox/dcim/forms/bulk_edit.py:521 netbox/dcim/tables/devicetypes.py:102 +#: dcim/forms/bulk_edit.py:521 dcim/tables/devicetypes.py:102 msgid "Exclude from utilization" msgstr "" -#: netbox/dcim/forms/bulk_edit.py:550 netbox/dcim/forms/model_forms.py:368 -#: netbox/dcim/tables/devicetypes.py:77 netbox/templates/dcim/device.html:88 -#: netbox/templates/dcim/devicebay.html:52 netbox/templates/dcim/module.html:61 +#: dcim/forms/bulk_edit.py:550 dcim/forms/model_forms.py:368 +#: dcim/tables/devicetypes.py:77 templates/dcim/device.html:88 +#: templates/dcim/devicebay.html:52 templates/dcim/module.html:61 msgid "Device Type" msgstr "" -#: netbox/dcim/forms/bulk_edit.py:592 netbox/dcim/forms/model_forms.py:401 -#: netbox/dcim/tables/modules.py:17 netbox/dcim/tables/modules.py:65 -#: netbox/templates/dcim/module.html:65 netbox/templates/dcim/modulebay.html:66 -#: netbox/templates/dcim/moduletype.html:11 +#: dcim/forms/bulk_edit.py:592 dcim/forms/model_forms.py:401 +#: dcim/tables/modules.py:17 dcim/tables/modules.py:65 +#: templates/dcim/module.html:65 templates/dcim/modulebay.html:66 +#: templates/dcim/moduletype.html:22 msgid "Module Type" msgstr "" -#: netbox/dcim/forms/bulk_edit.py:596 netbox/dcim/forms/model_forms.py:371 -#: netbox/dcim/forms/model_forms.py:402 -#: netbox/templates/dcim/devicetype.html:11 +#: dcim/forms/bulk_edit.py:596 dcim/forms/model_forms.py:371 +#: dcim/forms/model_forms.py:402 templates/dcim/devicetype.html:11 msgid "Chassis" msgstr "" -#: netbox/dcim/forms/bulk_edit.py:610 netbox/dcim/models/devices.py:484 -#: netbox/dcim/tables/devices.py:67 +#: dcim/forms/bulk_edit.py:610 dcim/models/devices.py:484 +#: dcim/tables/devices.py:67 msgid "VM role" msgstr "" -#: netbox/dcim/forms/bulk_edit.py:613 netbox/dcim/forms/bulk_edit.py:637 -#: netbox/dcim/forms/bulk_edit.py:720 netbox/dcim/forms/bulk_import.py:434 -#: netbox/dcim/forms/bulk_import.py:438 netbox/dcim/forms/bulk_import.py:457 -#: netbox/dcim/forms/bulk_import.py:461 netbox/dcim/forms/bulk_import.py:586 -#: netbox/dcim/forms/bulk_import.py:590 netbox/dcim/forms/filtersets.py:689 -#: netbox/dcim/forms/filtersets.py:705 netbox/dcim/forms/filtersets.py:823 -#: netbox/dcim/forms/model_forms.py:415 netbox/dcim/forms/model_forms.py:441 -#: netbox/dcim/forms/model_forms.py:555 -#: netbox/virtualization/forms/bulk_import.py:132 -#: netbox/virtualization/forms/bulk_import.py:133 -#: netbox/virtualization/forms/filtersets.py:188 -#: netbox/virtualization/forms/model_forms.py:215 +#: dcim/forms/bulk_edit.py:613 dcim/forms/bulk_edit.py:637 +#: dcim/forms/bulk_edit.py:720 dcim/forms/bulk_import.py:434 +#: dcim/forms/bulk_import.py:438 dcim/forms/bulk_import.py:457 +#: dcim/forms/bulk_import.py:461 dcim/forms/bulk_import.py:586 +#: dcim/forms/bulk_import.py:590 dcim/forms/filtersets.py:689 +#: dcim/forms/filtersets.py:705 dcim/forms/filtersets.py:823 +#: dcim/forms/model_forms.py:415 dcim/forms/model_forms.py:441 +#: dcim/forms/model_forms.py:555 virtualization/forms/bulk_import.py:132 +#: virtualization/forms/bulk_import.py:133 +#: virtualization/forms/filtersets.py:188 +#: virtualization/forms/model_forms.py:215 msgid "Config template" msgstr "" -#: netbox/dcim/forms/bulk_edit.py:661 netbox/dcim/forms/bulk_edit.py:1061 -#: netbox/dcim/forms/bulk_import.py:492 netbox/dcim/forms/filtersets.py:114 -#: netbox/dcim/forms/model_forms.py:501 netbox/dcim/forms/model_forms.py:872 -#: netbox/dcim/forms/model_forms.py:889 netbox/extras/filtersets.py:547 +#: dcim/forms/bulk_edit.py:661 dcim/forms/bulk_edit.py:1061 +#: dcim/forms/bulk_import.py:492 dcim/forms/filtersets.py:114 +#: dcim/forms/model_forms.py:501 dcim/forms/model_forms.py:872 +#: dcim/forms/model_forms.py:889 extras/filtersets.py:547 msgid "Device type" msgstr "" -#: netbox/dcim/forms/bulk_edit.py:672 netbox/dcim/forms/bulk_import.py:473 -#: netbox/dcim/forms/filtersets.py:119 netbox/dcim/forms/model_forms.py:509 +#: dcim/forms/bulk_edit.py:672 dcim/forms/bulk_import.py:473 +#: dcim/forms/filtersets.py:119 dcim/forms/model_forms.py:509 msgid "Device role" msgstr "" -#: netbox/dcim/forms/bulk_edit.py:695 netbox/dcim/forms/bulk_import.py:498 -#: netbox/dcim/forms/filtersets.py:796 netbox/dcim/forms/model_forms.py:451 -#: netbox/dcim/forms/model_forms.py:513 netbox/dcim/tables/devices.py:182 -#: netbox/extras/filtersets.py:563 netbox/templates/dcim/device.html:186 -#: netbox/templates/dcim/platform.html:26 -#: netbox/templates/virtualization/virtualmachine.html:27 -#: netbox/virtualization/forms/bulk_edit.py:160 -#: netbox/virtualization/forms/bulk_import.py:122 -#: netbox/virtualization/forms/filtersets.py:168 -#: netbox/virtualization/forms/model_forms.py:203 -#: netbox/virtualization/tables/virtualmachines.py:79 +#: dcim/forms/bulk_edit.py:695 dcim/forms/bulk_import.py:498 +#: dcim/forms/filtersets.py:796 dcim/forms/model_forms.py:451 +#: dcim/forms/model_forms.py:513 dcim/tables/devices.py:182 +#: extras/filtersets.py:563 templates/dcim/device.html:186 +#: templates/dcim/platform.html:26 +#: templates/virtualization/virtualmachine.html:27 +#: virtualization/forms/bulk_edit.py:160 +#: virtualization/forms/bulk_import.py:122 +#: virtualization/forms/filtersets.py:168 +#: virtualization/forms/model_forms.py:203 +#: virtualization/tables/virtualmachines.py:79 msgid "Platform" msgstr "" -#: netbox/dcim/forms/bulk_edit.py:728 netbox/dcim/forms/bulk_edit.py:1281 -#: netbox/dcim/forms/bulk_edit.py:1650 netbox/dcim/forms/bulk_edit.py:1696 -#: netbox/dcim/forms/bulk_import.py:641 netbox/dcim/forms/bulk_import.py:703 -#: netbox/dcim/forms/bulk_import.py:729 netbox/dcim/forms/bulk_import.py:755 -#: netbox/dcim/forms/bulk_import.py:775 netbox/dcim/forms/bulk_import.py:828 -#: netbox/dcim/forms/bulk_import.py:946 netbox/dcim/forms/bulk_import.py:994 -#: netbox/dcim/forms/bulk_import.py:1011 netbox/dcim/forms/bulk_import.py:1023 -#: netbox/dcim/forms/bulk_import.py:1071 netbox/dcim/forms/bulk_import.py:1422 -#: netbox/dcim/forms/connections.py:24 netbox/dcim/forms/filtersets.py:131 -#: netbox/dcim/forms/filtersets.py:921 netbox/dcim/forms/filtersets.py:1051 -#: netbox/dcim/forms/filtersets.py:1242 netbox/dcim/forms/filtersets.py:1267 -#: netbox/dcim/forms/filtersets.py:1291 netbox/dcim/forms/filtersets.py:1311 -#: netbox/dcim/forms/filtersets.py:1334 netbox/dcim/forms/filtersets.py:1444 -#: netbox/dcim/forms/filtersets.py:1469 netbox/dcim/forms/filtersets.py:1493 -#: netbox/dcim/forms/filtersets.py:1511 netbox/dcim/forms/filtersets.py:1528 -#: netbox/dcim/forms/filtersets.py:1592 netbox/dcim/forms/filtersets.py:1616 -#: netbox/dcim/forms/filtersets.py:1640 netbox/dcim/forms/model_forms.py:633 -#: netbox/dcim/forms/model_forms.py:849 netbox/dcim/forms/model_forms.py:1208 -#: netbox/dcim/forms/model_forms.py:1664 netbox/dcim/forms/object_create.py:257 -#: netbox/dcim/tables/connections.py:22 netbox/dcim/tables/connections.py:41 -#: netbox/dcim/tables/connections.py:60 netbox/dcim/tables/devices.py:285 -#: netbox/dcim/tables/devices.py:371 netbox/dcim/tables/devices.py:412 -#: netbox/dcim/tables/devices.py:454 netbox/dcim/tables/devices.py:505 -#: netbox/dcim/tables/devices.py:597 netbox/dcim/tables/devices.py:697 -#: netbox/dcim/tables/devices.py:754 netbox/dcim/tables/devices.py:801 -#: netbox/dcim/tables/devices.py:861 netbox/dcim/tables/devices.py:930 -#: netbox/dcim/tables/devices.py:1057 netbox/dcim/tables/modules.py:52 -#: netbox/extras/forms/filtersets.py:321 netbox/ipam/forms/bulk_import.py:304 -#: netbox/ipam/forms/bulk_import.py:481 netbox/ipam/forms/filtersets.py:551 -#: netbox/ipam/forms/model_forms.py:319 netbox/ipam/forms/model_forms.py:679 -#: netbox/ipam/forms/model_forms.py:712 netbox/ipam/forms/model_forms.py:738 -#: netbox/ipam/tables/vlans.py:180 netbox/templates/dcim/consoleport.html:20 -#: netbox/templates/dcim/consoleserverport.html:20 -#: netbox/templates/dcim/device.html:15 netbox/templates/dcim/device.html:130 -#: netbox/templates/dcim/device_edit.html:10 -#: netbox/templates/dcim/devicebay.html:20 -#: netbox/templates/dcim/devicebay.html:48 -#: netbox/templates/dcim/frontport.html:20 -#: netbox/templates/dcim/interface.html:30 -#: netbox/templates/dcim/interface.html:161 -#: netbox/templates/dcim/inventoryitem.html:20 -#: netbox/templates/dcim/module.html:57 netbox/templates/dcim/modulebay.html:20 -#: netbox/templates/dcim/poweroutlet.html:20 -#: netbox/templates/dcim/powerport.html:20 -#: netbox/templates/dcim/rearport.html:20 -#: netbox/templates/dcim/virtualchassis.html:65 -#: netbox/templates/dcim/virtualchassis_edit.html:51 -#: netbox/templates/dcim/virtualdevicecontext.html:22 -#: netbox/templates/virtualization/virtualmachine.html:114 -#: netbox/templates/vpn/tunneltermination.html:23 -#: netbox/templates/wireless/inc/wirelesslink_interface.html:6 -#: netbox/virtualization/filtersets.py:167 -#: netbox/virtualization/forms/bulk_edit.py:137 -#: netbox/virtualization/forms/bulk_import.py:99 -#: netbox/virtualization/forms/filtersets.py:128 -#: netbox/virtualization/forms/model_forms.py:185 -#: netbox/virtualization/tables/virtualmachines.py:71 netbox/vpn/choices.py:44 -#: netbox/vpn/forms/bulk_import.py:86 netbox/vpn/forms/bulk_import.py:283 -#: netbox/vpn/forms/filtersets.py:275 netbox/vpn/forms/model_forms.py:90 -#: netbox/vpn/forms/model_forms.py:125 netbox/vpn/forms/model_forms.py:236 -#: netbox/vpn/forms/model_forms.py:453 netbox/wireless/forms/model_forms.py:99 -#: netbox/wireless/forms/model_forms.py:141 -#: netbox/wireless/tables/wirelesslan.py:75 +#: dcim/forms/bulk_edit.py:728 dcim/forms/bulk_edit.py:1281 +#: dcim/forms/bulk_edit.py:1650 dcim/forms/bulk_edit.py:1696 +#: dcim/forms/bulk_import.py:641 dcim/forms/bulk_import.py:703 +#: dcim/forms/bulk_import.py:729 dcim/forms/bulk_import.py:755 +#: dcim/forms/bulk_import.py:775 dcim/forms/bulk_import.py:828 +#: dcim/forms/bulk_import.py:946 dcim/forms/bulk_import.py:994 +#: dcim/forms/bulk_import.py:1011 dcim/forms/bulk_import.py:1023 +#: dcim/forms/bulk_import.py:1071 dcim/forms/bulk_import.py:1422 +#: dcim/forms/connections.py:24 dcim/forms/filtersets.py:131 +#: dcim/forms/filtersets.py:921 dcim/forms/filtersets.py:1051 +#: dcim/forms/filtersets.py:1242 dcim/forms/filtersets.py:1267 +#: dcim/forms/filtersets.py:1291 dcim/forms/filtersets.py:1311 +#: dcim/forms/filtersets.py:1334 dcim/forms/filtersets.py:1444 +#: dcim/forms/filtersets.py:1469 dcim/forms/filtersets.py:1493 +#: dcim/forms/filtersets.py:1511 dcim/forms/filtersets.py:1528 +#: dcim/forms/filtersets.py:1592 dcim/forms/filtersets.py:1616 +#: dcim/forms/filtersets.py:1640 dcim/forms/model_forms.py:633 +#: dcim/forms/model_forms.py:849 dcim/forms/model_forms.py:1208 +#: dcim/forms/model_forms.py:1664 dcim/forms/object_create.py:257 +#: dcim/tables/connections.py:22 dcim/tables/connections.py:41 +#: dcim/tables/connections.py:60 dcim/tables/devices.py:285 +#: dcim/tables/devices.py:371 dcim/tables/devices.py:412 +#: dcim/tables/devices.py:454 dcim/tables/devices.py:505 +#: dcim/tables/devices.py:597 dcim/tables/devices.py:697 +#: dcim/tables/devices.py:754 dcim/tables/devices.py:801 +#: dcim/tables/devices.py:861 dcim/tables/devices.py:930 +#: dcim/tables/devices.py:1057 dcim/tables/modules.py:52 +#: extras/forms/filtersets.py:321 ipam/forms/bulk_import.py:304 +#: ipam/forms/bulk_import.py:481 ipam/forms/filtersets.py:551 +#: ipam/forms/model_forms.py:319 ipam/forms/model_forms.py:679 +#: ipam/forms/model_forms.py:712 ipam/forms/model_forms.py:738 +#: ipam/tables/vlans.py:180 templates/dcim/consoleport.html:20 +#: templates/dcim/consoleserverport.html:20 templates/dcim/device.html:15 +#: templates/dcim/device.html:130 templates/dcim/device_edit.html:10 +#: templates/dcim/devicebay.html:20 templates/dcim/devicebay.html:48 +#: templates/dcim/frontport.html:20 templates/dcim/interface.html:30 +#: templates/dcim/interface.html:161 templates/dcim/inventoryitem.html:20 +#: templates/dcim/module.html:57 templates/dcim/modulebay.html:20 +#: templates/dcim/poweroutlet.html:20 templates/dcim/powerport.html:20 +#: templates/dcim/rearport.html:20 templates/dcim/virtualchassis.html:65 +#: templates/dcim/virtualchassis_edit.html:51 +#: templates/dcim/virtualdevicecontext.html:22 +#: templates/virtualization/virtualmachine.html:114 +#: templates/vpn/tunneltermination.html:23 +#: templates/wireless/inc/wirelesslink_interface.html:6 +#: virtualization/filtersets.py:167 virtualization/forms/bulk_edit.py:137 +#: virtualization/forms/bulk_import.py:99 +#: virtualization/forms/filtersets.py:128 +#: virtualization/forms/model_forms.py:185 +#: virtualization/tables/virtualmachines.py:71 vpn/choices.py:44 +#: vpn/forms/bulk_import.py:86 vpn/forms/bulk_import.py:283 +#: vpn/forms/filtersets.py:275 vpn/forms/model_forms.py:90 +#: vpn/forms/model_forms.py:125 vpn/forms/model_forms.py:236 +#: vpn/forms/model_forms.py:453 wireless/forms/model_forms.py:99 +#: wireless/forms/model_forms.py:141 wireless/tables/wirelesslan.py:75 msgid "Device" msgstr "" -#: netbox/dcim/forms/bulk_edit.py:731 -#: netbox/templates/extras/dashboard/widget_config.html:7 -#: netbox/virtualization/forms/bulk_edit.py:191 +#: dcim/forms/bulk_edit.py:731 templates/extras/dashboard/widget_config.html:7 +#: virtualization/forms/bulk_edit.py:191 msgid "Configuration" msgstr "" -#: netbox/dcim/forms/bulk_edit.py:745 netbox/dcim/forms/bulk_import.py:653 -#: netbox/dcim/forms/model_forms.py:647 netbox/dcim/forms/model_forms.py:897 +#: dcim/forms/bulk_edit.py:745 dcim/forms/bulk_import.py:653 +#: dcim/forms/model_forms.py:647 dcim/forms/model_forms.py:897 msgid "Module type" msgstr "" -#: netbox/dcim/forms/bulk_edit.py:799 netbox/dcim/forms/bulk_edit.py:984 -#: netbox/dcim/forms/bulk_edit.py:1003 netbox/dcim/forms/bulk_edit.py:1026 -#: netbox/dcim/forms/bulk_edit.py:1068 netbox/dcim/forms/bulk_edit.py:1112 -#: netbox/dcim/forms/bulk_edit.py:1163 netbox/dcim/forms/bulk_edit.py:1190 -#: netbox/dcim/forms/bulk_edit.py:1217 netbox/dcim/forms/bulk_edit.py:1235 -#: netbox/dcim/forms/bulk_edit.py:1253 netbox/dcim/forms/filtersets.py:67 -#: netbox/dcim/forms/object_create.py:46 netbox/templates/dcim/cable.html:32 -#: netbox/templates/dcim/consoleport.html:32 -#: netbox/templates/dcim/consoleserverport.html:32 -#: netbox/templates/dcim/devicebay.html:28 -#: netbox/templates/dcim/frontport.html:32 -#: netbox/templates/dcim/inc/panels/inventory_items.html:19 -#: netbox/templates/dcim/interface.html:42 -#: netbox/templates/dcim/inventoryitem.html:32 -#: netbox/templates/dcim/modulebay.html:34 -#: netbox/templates/dcim/poweroutlet.html:32 -#: netbox/templates/dcim/powerport.html:32 -#: netbox/templates/dcim/rearport.html:32 -#: netbox/templates/extras/customfield.html:26 -#: netbox/templates/generic/bulk_import.html:162 +#: dcim/forms/bulk_edit.py:799 dcim/forms/bulk_edit.py:984 +#: dcim/forms/bulk_edit.py:1003 dcim/forms/bulk_edit.py:1026 +#: dcim/forms/bulk_edit.py:1068 dcim/forms/bulk_edit.py:1112 +#: dcim/forms/bulk_edit.py:1163 dcim/forms/bulk_edit.py:1190 +#: dcim/forms/bulk_edit.py:1217 dcim/forms/bulk_edit.py:1235 +#: dcim/forms/bulk_edit.py:1253 dcim/forms/filtersets.py:67 +#: dcim/forms/object_create.py:46 templates/dcim/cable.html:32 +#: templates/dcim/consoleport.html:32 templates/dcim/consoleserverport.html:32 +#: templates/dcim/devicebay.html:28 templates/dcim/frontport.html:32 +#: templates/dcim/inc/panels/inventory_items.html:19 +#: templates/dcim/interface.html:42 templates/dcim/inventoryitem.html:32 +#: templates/dcim/modulebay.html:34 templates/dcim/poweroutlet.html:32 +#: templates/dcim/powerport.html:32 templates/dcim/rearport.html:32 +#: templates/extras/customfield.html:26 templates/generic/bulk_import.html:162 msgid "Label" msgstr "" -#: netbox/dcim/forms/bulk_edit.py:808 netbox/dcim/forms/filtersets.py:1068 -#: netbox/templates/dcim/cable.html:50 +#: dcim/forms/bulk_edit.py:808 dcim/forms/filtersets.py:1068 +#: templates/dcim/cable.html:50 msgid "Length" msgstr "" -#: netbox/dcim/forms/bulk_edit.py:813 netbox/dcim/forms/bulk_import.py:1226 -#: netbox/dcim/forms/bulk_import.py:1229 netbox/dcim/forms/filtersets.py:1072 +#: dcim/forms/bulk_edit.py:813 dcim/forms/bulk_import.py:1226 +#: dcim/forms/bulk_import.py:1229 dcim/forms/filtersets.py:1072 msgid "Length unit" msgstr "" -#: netbox/dcim/forms/bulk_edit.py:837 -#: netbox/templates/dcim/virtualchassis.html:23 +#: dcim/forms/bulk_edit.py:837 templates/dcim/virtualchassis.html:23 msgid "Domain" msgstr "" -#: netbox/dcim/forms/bulk_edit.py:905 netbox/dcim/forms/bulk_import.py:1345 -#: netbox/dcim/forms/filtersets.py:1158 netbox/dcim/forms/model_forms.py:750 +#: dcim/forms/bulk_edit.py:905 dcim/forms/bulk_import.py:1345 +#: dcim/forms/filtersets.py:1158 dcim/forms/model_forms.py:750 msgid "Power panel" msgstr "" -#: netbox/dcim/forms/bulk_edit.py:927 netbox/dcim/forms/bulk_import.py:1381 -#: netbox/dcim/forms/filtersets.py:1180 netbox/templates/dcim/powerfeed.html:83 +#: dcim/forms/bulk_edit.py:927 dcim/forms/bulk_import.py:1381 +#: dcim/forms/filtersets.py:1180 templates/dcim/powerfeed.html:83 msgid "Supply" msgstr "" -#: netbox/dcim/forms/bulk_edit.py:933 netbox/dcim/forms/bulk_import.py:1386 -#: netbox/dcim/forms/filtersets.py:1185 netbox/templates/dcim/powerfeed.html:95 +#: dcim/forms/bulk_edit.py:933 dcim/forms/bulk_import.py:1386 +#: dcim/forms/filtersets.py:1185 templates/dcim/powerfeed.html:95 msgid "Phase" msgstr "" -#: netbox/dcim/forms/bulk_edit.py:939 netbox/dcim/forms/filtersets.py:1190 -#: netbox/templates/dcim/powerfeed.html:87 +#: dcim/forms/bulk_edit.py:939 dcim/forms/filtersets.py:1190 +#: templates/dcim/powerfeed.html:87 msgid "Voltage" msgstr "" -#: netbox/dcim/forms/bulk_edit.py:943 netbox/dcim/forms/filtersets.py:1194 -#: netbox/templates/dcim/powerfeed.html:91 +#: dcim/forms/bulk_edit.py:943 dcim/forms/filtersets.py:1194 +#: templates/dcim/powerfeed.html:91 msgid "Amperage" msgstr "" -#: netbox/dcim/forms/bulk_edit.py:947 netbox/dcim/forms/filtersets.py:1198 +#: dcim/forms/bulk_edit.py:947 dcim/forms/filtersets.py:1198 msgid "Max utilization" msgstr "" -#: netbox/dcim/forms/bulk_edit.py:1036 +#: dcim/forms/bulk_edit.py:1036 msgid "Maximum draw" msgstr "" -#: netbox/dcim/forms/bulk_edit.py:1039 -#: netbox/dcim/models/device_component_templates.py:282 -#: netbox/dcim/models/device_components.py:356 +#: dcim/forms/bulk_edit.py:1039 dcim/models/device_component_templates.py:282 +#: dcim/models/device_components.py:356 msgid "Maximum power draw (watts)" msgstr "" -#: netbox/dcim/forms/bulk_edit.py:1042 +#: dcim/forms/bulk_edit.py:1042 msgid "Allocated draw" msgstr "" -#: netbox/dcim/forms/bulk_edit.py:1045 -#: netbox/dcim/models/device_component_templates.py:289 -#: netbox/dcim/models/device_components.py:363 +#: dcim/forms/bulk_edit.py:1045 dcim/models/device_component_templates.py:289 +#: dcim/models/device_components.py:363 msgid "Allocated power draw (watts)" msgstr "" -#: netbox/dcim/forms/bulk_edit.py:1078 netbox/dcim/forms/bulk_import.py:786 -#: netbox/dcim/forms/model_forms.py:953 netbox/dcim/forms/model_forms.py:1278 -#: netbox/dcim/forms/model_forms.py:1567 netbox/dcim/forms/object_import.py:55 +#: dcim/forms/bulk_edit.py:1078 dcim/forms/bulk_import.py:786 +#: dcim/forms/model_forms.py:953 dcim/forms/model_forms.py:1278 +#: dcim/forms/model_forms.py:1567 dcim/forms/object_import.py:55 msgid "Power port" msgstr "" -#: netbox/dcim/forms/bulk_edit.py:1083 netbox/dcim/forms/bulk_import.py:793 +#: dcim/forms/bulk_edit.py:1083 dcim/forms/bulk_import.py:793 msgid "Feed leg" msgstr "" -#: netbox/dcim/forms/bulk_edit.py:1129 netbox/dcim/forms/bulk_edit.py:1440 +#: dcim/forms/bulk_edit.py:1129 dcim/forms/bulk_edit.py:1440 msgid "Management only" msgstr "" -#: netbox/dcim/forms/bulk_edit.py:1139 netbox/dcim/forms/bulk_edit.py:1446 -#: netbox/dcim/forms/bulk_import.py:876 netbox/dcim/forms/filtersets.py:1394 -#: netbox/dcim/forms/object_import.py:90 -#: netbox/dcim/models/device_component_templates.py:437 -#: netbox/dcim/models/device_components.py:670 +#: dcim/forms/bulk_edit.py:1139 dcim/forms/bulk_edit.py:1446 +#: dcim/forms/bulk_import.py:876 dcim/forms/filtersets.py:1394 +#: dcim/forms/object_import.py:90 dcim/models/device_component_templates.py:437 +#: dcim/models/device_components.py:670 msgid "PoE mode" msgstr "" -#: netbox/dcim/forms/bulk_edit.py:1145 netbox/dcim/forms/bulk_edit.py:1452 -#: netbox/dcim/forms/bulk_import.py:882 netbox/dcim/forms/filtersets.py:1399 -#: netbox/dcim/forms/object_import.py:95 -#: netbox/dcim/models/device_component_templates.py:443 -#: netbox/dcim/models/device_components.py:676 +#: dcim/forms/bulk_edit.py:1145 dcim/forms/bulk_edit.py:1452 +#: dcim/forms/bulk_import.py:882 dcim/forms/filtersets.py:1399 +#: dcim/forms/object_import.py:95 dcim/models/device_component_templates.py:443 +#: dcim/models/device_components.py:676 msgid "PoE type" msgstr "" -#: netbox/dcim/forms/bulk_edit.py:1151 netbox/dcim/forms/filtersets.py:1404 -#: netbox/dcim/forms/object_import.py:100 +#: dcim/forms/bulk_edit.py:1151 dcim/forms/filtersets.py:1404 +#: dcim/forms/object_import.py:100 msgid "Wireless role" msgstr "" -#: netbox/dcim/forms/bulk_edit.py:1288 netbox/dcim/forms/model_forms.py:669 -#: netbox/dcim/forms/model_forms.py:1223 netbox/dcim/tables/devices.py:313 -#: netbox/templates/dcim/consoleport.html:24 -#: netbox/templates/dcim/consoleserverport.html:24 -#: netbox/templates/dcim/frontport.html:24 -#: netbox/templates/dcim/interface.html:34 netbox/templates/dcim/module.html:54 -#: netbox/templates/dcim/modulebay.html:26 -#: netbox/templates/dcim/modulebay.html:58 -#: netbox/templates/dcim/poweroutlet.html:24 -#: netbox/templates/dcim/powerport.html:24 -#: netbox/templates/dcim/rearport.html:24 +#: dcim/forms/bulk_edit.py:1288 dcim/forms/model_forms.py:669 +#: dcim/forms/model_forms.py:1223 dcim/tables/devices.py:313 +#: templates/dcim/consoleport.html:24 templates/dcim/consoleserverport.html:24 +#: templates/dcim/frontport.html:24 templates/dcim/interface.html:34 +#: templates/dcim/module.html:54 templates/dcim/modulebay.html:26 +#: templates/dcim/modulebay.html:58 templates/dcim/poweroutlet.html:24 +#: templates/dcim/powerport.html:24 templates/dcim/rearport.html:24 msgid "Module" msgstr "" -#: netbox/dcim/forms/bulk_edit.py:1420 netbox/dcim/tables/devices.py:665 -#: netbox/templates/dcim/interface.html:110 +#: dcim/forms/bulk_edit.py:1420 dcim/tables/devices.py:665 +#: templates/dcim/interface.html:110 msgid "LAG" msgstr "" -#: netbox/dcim/forms/bulk_edit.py:1425 netbox/dcim/forms/model_forms.py:1305 +#: dcim/forms/bulk_edit.py:1425 dcim/forms/model_forms.py:1305 msgid "Virtual device contexts" msgstr "" -#: netbox/dcim/forms/bulk_edit.py:1431 netbox/dcim/forms/bulk_import.py:714 -#: netbox/dcim/forms/bulk_import.py:740 netbox/dcim/forms/filtersets.py:1252 -#: netbox/dcim/forms/filtersets.py:1277 netbox/dcim/forms/filtersets.py:1358 -#: netbox/dcim/tables/devices.py:610 -#: netbox/templates/circuits/inc/circuit_termination_fields.html:67 -#: netbox/templates/dcim/consoleport.html:40 -#: netbox/templates/dcim/consoleserverport.html:40 +#: dcim/forms/bulk_edit.py:1431 dcim/forms/bulk_import.py:714 +#: dcim/forms/bulk_import.py:740 dcim/forms/filtersets.py:1252 +#: dcim/forms/filtersets.py:1277 dcim/forms/filtersets.py:1358 +#: dcim/tables/devices.py:610 +#: templates/circuits/inc/circuit_termination_fields.html:67 +#: templates/dcim/consoleport.html:40 templates/dcim/consoleserverport.html:40 msgid "Speed" msgstr "" -#: netbox/dcim/forms/bulk_edit.py:1460 netbox/dcim/forms/bulk_import.py:885 -#: netbox/templates/vpn/ikepolicy.html:25 -#: netbox/templates/vpn/ipsecprofile.html:21 -#: netbox/templates/vpn/ipsecprofile.html:48 -#: netbox/virtualization/forms/bulk_edit.py:233 -#: netbox/virtualization/forms/bulk_import.py:165 -#: netbox/vpn/forms/bulk_edit.py:146 netbox/vpn/forms/bulk_edit.py:232 -#: netbox/vpn/forms/bulk_import.py:176 netbox/vpn/forms/bulk_import.py:234 -#: netbox/vpn/forms/filtersets.py:135 netbox/vpn/forms/filtersets.py:178 -#: netbox/vpn/forms/filtersets.py:192 netbox/vpn/tables/crypto.py:64 -#: netbox/vpn/tables/crypto.py:162 +#: dcim/forms/bulk_edit.py:1460 dcim/forms/bulk_import.py:885 +#: templates/vpn/ikepolicy.html:25 templates/vpn/ipsecprofile.html:21 +#: templates/vpn/ipsecprofile.html:48 virtualization/forms/bulk_edit.py:233 +#: virtualization/forms/bulk_import.py:165 vpn/forms/bulk_edit.py:146 +#: vpn/forms/bulk_edit.py:232 vpn/forms/bulk_import.py:176 +#: vpn/forms/bulk_import.py:234 vpn/forms/filtersets.py:135 +#: vpn/forms/filtersets.py:178 vpn/forms/filtersets.py:192 +#: vpn/tables/crypto.py:64 vpn/tables/crypto.py:162 msgid "Mode" msgstr "" -#: netbox/dcim/forms/bulk_edit.py:1468 netbox/dcim/forms/model_forms.py:1354 -#: netbox/ipam/forms/bulk_import.py:178 netbox/ipam/forms/filtersets.py:498 -#: netbox/ipam/models/vlans.py:84 netbox/virtualization/forms/bulk_edit.py:240 -#: netbox/virtualization/forms/model_forms.py:321 +#: dcim/forms/bulk_edit.py:1468 dcim/forms/model_forms.py:1354 +#: ipam/forms/bulk_import.py:178 ipam/forms/filtersets.py:498 +#: ipam/models/vlans.py:84 virtualization/forms/bulk_edit.py:240 +#: virtualization/forms/model_forms.py:321 msgid "VLAN group" msgstr "" -#: netbox/dcim/forms/bulk_edit.py:1476 netbox/dcim/forms/model_forms.py:1360 -#: netbox/dcim/tables/devices.py:579 -#: netbox/virtualization/forms/bulk_edit.py:248 -#: netbox/virtualization/forms/model_forms.py:326 +#: dcim/forms/bulk_edit.py:1476 dcim/forms/model_forms.py:1360 +#: dcim/tables/devices.py:579 virtualization/forms/bulk_edit.py:248 +#: virtualization/forms/model_forms.py:326 msgid "Untagged VLAN" msgstr "" -#: netbox/dcim/forms/bulk_edit.py:1484 netbox/dcim/forms/model_forms.py:1369 -#: netbox/dcim/tables/devices.py:585 -#: netbox/virtualization/forms/bulk_edit.py:256 -#: netbox/virtualization/forms/model_forms.py:335 +#: dcim/forms/bulk_edit.py:1484 dcim/forms/model_forms.py:1369 +#: dcim/tables/devices.py:585 virtualization/forms/bulk_edit.py:256 +#: virtualization/forms/model_forms.py:335 msgid "Tagged VLANs" msgstr "" -#: netbox/dcim/forms/bulk_edit.py:1494 netbox/dcim/forms/model_forms.py:1341 +#: dcim/forms/bulk_edit.py:1494 dcim/forms/model_forms.py:1341 msgid "Wireless LAN group" msgstr "" -#: netbox/dcim/forms/bulk_edit.py:1499 netbox/dcim/forms/model_forms.py:1346 -#: netbox/dcim/tables/devices.py:619 netbox/netbox/navigation/menu.py:146 -#: netbox/templates/dcim/interface.html:280 -#: netbox/wireless/tables/wirelesslan.py:24 +#: dcim/forms/bulk_edit.py:1499 dcim/forms/model_forms.py:1346 +#: dcim/tables/devices.py:619 netbox/navigation/menu.py:146 +#: templates/dcim/interface.html:280 wireless/tables/wirelesslan.py:24 msgid "Wireless LANs" msgstr "" -#: netbox/dcim/forms/bulk_edit.py:1508 netbox/dcim/forms/filtersets.py:1328 -#: netbox/dcim/forms/model_forms.py:1390 netbox/ipam/forms/bulk_edit.py:286 -#: netbox/ipam/forms/bulk_edit.py:378 netbox/ipam/forms/filtersets.py:169 -#: netbox/templates/dcim/interface.html:122 -#: netbox/templates/ipam/prefix.html:95 -#: netbox/virtualization/forms/model_forms.py:349 +#: dcim/forms/bulk_edit.py:1508 dcim/forms/filtersets.py:1328 +#: dcim/forms/model_forms.py:1390 ipam/forms/bulk_edit.py:286 +#: ipam/forms/bulk_edit.py:378 ipam/forms/filtersets.py:169 +#: templates/dcim/interface.html:122 templates/ipam/prefix.html:95 +#: virtualization/forms/model_forms.py:349 msgid "Addressing" msgstr "" -#: netbox/dcim/forms/bulk_edit.py:1509 netbox/dcim/forms/filtersets.py:720 -#: netbox/dcim/forms/model_forms.py:1391 -#: netbox/virtualization/forms/model_forms.py:350 +#: dcim/forms/bulk_edit.py:1509 dcim/forms/filtersets.py:720 +#: dcim/forms/model_forms.py:1391 virtualization/forms/model_forms.py:350 msgid "Operation" msgstr "" -#: netbox/dcim/forms/bulk_edit.py:1510 netbox/dcim/forms/filtersets.py:1329 -#: netbox/dcim/forms/model_forms.py:987 netbox/dcim/forms/model_forms.py:1393 +#: dcim/forms/bulk_edit.py:1510 dcim/forms/filtersets.py:1329 +#: dcim/forms/model_forms.py:987 dcim/forms/model_forms.py:1393 msgid "PoE" msgstr "" -#: netbox/dcim/forms/bulk_edit.py:1511 netbox/dcim/forms/model_forms.py:1392 -#: netbox/templates/dcim/interface.html:99 -#: netbox/virtualization/forms/bulk_edit.py:267 -#: netbox/virtualization/forms/model_forms.py:351 +#: dcim/forms/bulk_edit.py:1511 dcim/forms/model_forms.py:1392 +#: templates/dcim/interface.html:99 virtualization/forms/bulk_edit.py:267 +#: virtualization/forms/model_forms.py:351 msgid "Related Interfaces" msgstr "" -#: netbox/dcim/forms/bulk_edit.py:1512 netbox/dcim/forms/model_forms.py:1394 -#: netbox/virtualization/forms/bulk_edit.py:268 -#: netbox/virtualization/forms/model_forms.py:352 +#: dcim/forms/bulk_edit.py:1512 dcim/forms/model_forms.py:1394 +#: virtualization/forms/bulk_edit.py:268 +#: virtualization/forms/model_forms.py:352 msgid "802.1Q Switching" msgstr "" -#: netbox/dcim/forms/bulk_edit.py:1574 netbox/dcim/forms/bulk_edit.py:1576 +#: dcim/forms/bulk_edit.py:1574 dcim/forms/bulk_edit.py:1576 msgid "Interface mode must be specified to assign VLANs" msgstr "" -#: netbox/dcim/forms/bulk_edit.py:1581 netbox/dcim/forms/common.py:50 +#: dcim/forms/bulk_edit.py:1581 dcim/forms/common.py:50 msgid "An access interface cannot have tagged VLANs assigned." msgstr "" -#: netbox/dcim/forms/bulk_import.py:64 +#: dcim/forms/bulk_import.py:64 msgid "Name of parent region" msgstr "" -#: netbox/dcim/forms/bulk_import.py:78 +#: dcim/forms/bulk_import.py:78 msgid "Name of parent site group" msgstr "" -#: netbox/dcim/forms/bulk_import.py:97 +#: dcim/forms/bulk_import.py:97 msgid "Assigned region" msgstr "" -#: netbox/dcim/forms/bulk_import.py:104 netbox/tenancy/forms/bulk_import.py:44 -#: netbox/tenancy/forms/bulk_import.py:85 -#: netbox/wireless/forms/bulk_import.py:40 +#: dcim/forms/bulk_import.py:104 tenancy/forms/bulk_import.py:44 +#: tenancy/forms/bulk_import.py:85 wireless/forms/bulk_import.py:40 msgid "Assigned group" msgstr "" -#: netbox/dcim/forms/bulk_import.py:123 +#: dcim/forms/bulk_import.py:123 msgid "available options" msgstr "" -#: netbox/dcim/forms/bulk_import.py:134 netbox/dcim/forms/bulk_import.py:543 -#: netbox/dcim/forms/bulk_import.py:1342 netbox/ipam/forms/bulk_import.py:175 -#: netbox/ipam/forms/bulk_import.py:433 -#: netbox/virtualization/forms/bulk_import.py:63 -#: netbox/virtualization/forms/bulk_import.py:89 +#: dcim/forms/bulk_import.py:134 dcim/forms/bulk_import.py:543 +#: dcim/forms/bulk_import.py:1342 ipam/forms/bulk_import.py:175 +#: ipam/forms/bulk_import.py:433 virtualization/forms/bulk_import.py:63 +#: virtualization/forms/bulk_import.py:89 msgid "Assigned site" msgstr "" -#: netbox/dcim/forms/bulk_import.py:141 +#: dcim/forms/bulk_import.py:141 msgid "Parent location" msgstr "" -#: netbox/dcim/forms/bulk_import.py:143 +#: dcim/forms/bulk_import.py:143 msgid "Location not found." msgstr "" -#: netbox/dcim/forms/bulk_import.py:185 +#: dcim/forms/bulk_import.py:185 msgid "The manufacturer of this rack type" msgstr "" -#: netbox/dcim/forms/bulk_import.py:196 +#: dcim/forms/bulk_import.py:196 msgid "The lowest-numbered position in the rack" msgstr "" -#: netbox/dcim/forms/bulk_import.py:201 netbox/dcim/forms/bulk_import.py:268 +#: dcim/forms/bulk_import.py:201 dcim/forms/bulk_import.py:268 msgid "Rail-to-rail width (in inches)" msgstr "" -#: netbox/dcim/forms/bulk_import.py:207 netbox/dcim/forms/bulk_import.py:274 +#: dcim/forms/bulk_import.py:207 dcim/forms/bulk_import.py:274 msgid "Unit for outer dimensions" msgstr "" -#: netbox/dcim/forms/bulk_import.py:213 netbox/dcim/forms/bulk_import.py:286 +#: dcim/forms/bulk_import.py:213 dcim/forms/bulk_import.py:286 msgid "Unit for rack weights" msgstr "" -#: netbox/dcim/forms/bulk_import.py:245 +#: dcim/forms/bulk_import.py:245 msgid "Name of assigned tenant" msgstr "" -#: netbox/dcim/forms/bulk_import.py:257 +#: dcim/forms/bulk_import.py:257 msgid "Name of assigned role" msgstr "" -#: netbox/dcim/forms/bulk_import.py:280 netbox/dcim/forms/bulk_import.py:413 -#: netbox/dcim/forms/bulk_import.py:583 +#: dcim/forms/bulk_import.py:280 dcim/forms/bulk_import.py:413 +#: dcim/forms/bulk_import.py:583 msgid "Airflow direction" msgstr "" -#: netbox/dcim/forms/bulk_import.py:312 +#: dcim/forms/bulk_import.py:312 msgid "Parent site" msgstr "" -#: netbox/dcim/forms/bulk_import.py:319 netbox/dcim/forms/bulk_import.py:1355 +#: dcim/forms/bulk_import.py:319 dcim/forms/bulk_import.py:1355 msgid "Rack's location (if any)" msgstr "" -#: netbox/dcim/forms/bulk_import.py:328 netbox/dcim/forms/model_forms.py:311 -#: netbox/dcim/tables/racks.py:222 -#: netbox/templates/dcim/rackreservation.html:12 -#: netbox/templates/dcim/rackreservation.html:45 +#: dcim/forms/bulk_import.py:328 dcim/forms/model_forms.py:311 +#: dcim/tables/racks.py:222 templates/dcim/rackreservation.html:12 +#: templates/dcim/rackreservation.html:45 msgid "Units" msgstr "" -#: netbox/dcim/forms/bulk_import.py:331 +#: dcim/forms/bulk_import.py:331 msgid "Comma-separated list of individual unit numbers" msgstr "" -#: netbox/dcim/forms/bulk_import.py:374 +#: dcim/forms/bulk_import.py:374 msgid "The manufacturer which produces this device type" msgstr "" -#: netbox/dcim/forms/bulk_import.py:381 +#: dcim/forms/bulk_import.py:381 msgid "The default platform for devices of this type (optional)" msgstr "" -#: netbox/dcim/forms/bulk_import.py:386 +#: dcim/forms/bulk_import.py:386 msgid "Device weight" msgstr "" -#: netbox/dcim/forms/bulk_import.py:392 +#: dcim/forms/bulk_import.py:392 msgid "Unit for device weight" msgstr "" -#: netbox/dcim/forms/bulk_import.py:418 +#: dcim/forms/bulk_import.py:418 msgid "Module weight" msgstr "" -#: netbox/dcim/forms/bulk_import.py:424 +#: dcim/forms/bulk_import.py:424 msgid "Unit for module weight" msgstr "" -#: netbox/dcim/forms/bulk_import.py:454 +#: dcim/forms/bulk_import.py:454 msgid "Limit platform assignments to this manufacturer" msgstr "" -#: netbox/dcim/forms/bulk_import.py:476 netbox/dcim/forms/bulk_import.py:1425 -#: netbox/tenancy/forms/bulk_import.py:106 +#: dcim/forms/bulk_import.py:476 dcim/forms/bulk_import.py:1425 +#: tenancy/forms/bulk_import.py:106 msgid "Assigned role" msgstr "" -#: netbox/dcim/forms/bulk_import.py:489 +#: dcim/forms/bulk_import.py:489 msgid "Device type manufacturer" msgstr "" -#: netbox/dcim/forms/bulk_import.py:495 +#: dcim/forms/bulk_import.py:495 msgid "Device type model" msgstr "" -#: netbox/dcim/forms/bulk_import.py:502 -#: netbox/virtualization/forms/bulk_import.py:126 +#: dcim/forms/bulk_import.py:502 virtualization/forms/bulk_import.py:126 msgid "Assigned platform" msgstr "" -#: netbox/dcim/forms/bulk_import.py:510 netbox/dcim/forms/bulk_import.py:514 -#: netbox/dcim/forms/model_forms.py:536 +#: dcim/forms/bulk_import.py:510 dcim/forms/bulk_import.py:514 +#: dcim/forms/model_forms.py:536 msgid "Virtual chassis" msgstr "" -#: netbox/dcim/forms/bulk_import.py:517 netbox/dcim/forms/filtersets.py:728 -#: netbox/dcim/forms/filtersets.py:898 netbox/dcim/forms/model_forms.py:522 -#: netbox/dcim/tables/devices.py:202 netbox/extras/filtersets.py:596 -#: netbox/extras/forms/filtersets.py:322 netbox/ipam/forms/filtersets.py:415 -#: netbox/ipam/forms/filtersets.py:447 netbox/templates/dcim/device.html:239 -#: netbox/templates/virtualization/cluster.html:10 -#: netbox/templates/virtualization/virtualmachine.html:92 -#: netbox/templates/virtualization/virtualmachine.html:101 -#: netbox/virtualization/filtersets.py:157 -#: netbox/virtualization/filtersets.py:277 -#: netbox/virtualization/forms/bulk_edit.py:129 -#: netbox/virtualization/forms/bulk_import.py:92 -#: netbox/virtualization/forms/filtersets.py:99 -#: netbox/virtualization/forms/filtersets.py:123 -#: netbox/virtualization/forms/filtersets.py:204 -#: netbox/virtualization/forms/model_forms.py:79 -#: netbox/virtualization/forms/model_forms.py:176 -#: netbox/virtualization/tables/virtualmachines.py:67 +#: dcim/forms/bulk_import.py:517 dcim/forms/filtersets.py:728 +#: dcim/forms/filtersets.py:898 dcim/forms/model_forms.py:522 +#: dcim/tables/devices.py:202 extras/filtersets.py:596 +#: extras/forms/filtersets.py:322 ipam/forms/filtersets.py:415 +#: ipam/forms/filtersets.py:447 templates/dcim/device.html:239 +#: templates/virtualization/cluster.html:10 +#: templates/virtualization/virtualmachine.html:92 +#: templates/virtualization/virtualmachine.html:101 +#: virtualization/filtersets.py:157 virtualization/filtersets.py:277 +#: virtualization/forms/bulk_edit.py:129 virtualization/forms/bulk_import.py:92 +#: virtualization/forms/filtersets.py:99 virtualization/forms/filtersets.py:123 +#: virtualization/forms/filtersets.py:204 +#: virtualization/forms/model_forms.py:79 +#: virtualization/forms/model_forms.py:176 +#: virtualization/tables/virtualmachines.py:67 msgid "Cluster" msgstr "" -#: netbox/dcim/forms/bulk_import.py:521 +#: dcim/forms/bulk_import.py:521 msgid "Virtualization cluster" msgstr "" -#: netbox/dcim/forms/bulk_import.py:550 +#: dcim/forms/bulk_import.py:550 msgid "Assigned location (if any)" msgstr "" -#: netbox/dcim/forms/bulk_import.py:557 +#: dcim/forms/bulk_import.py:557 msgid "Assigned rack (if any)" msgstr "" -#: netbox/dcim/forms/bulk_import.py:560 +#: dcim/forms/bulk_import.py:560 msgid "Face" msgstr "" -#: netbox/dcim/forms/bulk_import.py:563 +#: dcim/forms/bulk_import.py:563 msgid "Mounted rack face" msgstr "" -#: netbox/dcim/forms/bulk_import.py:570 +#: dcim/forms/bulk_import.py:570 msgid "Parent device (for child devices)" msgstr "" -#: netbox/dcim/forms/bulk_import.py:573 +#: dcim/forms/bulk_import.py:573 msgid "Device bay" msgstr "" -#: netbox/dcim/forms/bulk_import.py:577 +#: dcim/forms/bulk_import.py:577 msgid "Device bay in which this device is installed (for child devices)" msgstr "" -#: netbox/dcim/forms/bulk_import.py:644 +#: dcim/forms/bulk_import.py:644 msgid "The device in which this module is installed" msgstr "" -#: netbox/dcim/forms/bulk_import.py:647 netbox/dcim/forms/model_forms.py:640 +#: dcim/forms/bulk_import.py:647 dcim/forms/model_forms.py:640 msgid "Module bay" msgstr "" -#: netbox/dcim/forms/bulk_import.py:650 +#: dcim/forms/bulk_import.py:650 msgid "The module bay in which this module is installed" msgstr "" -#: netbox/dcim/forms/bulk_import.py:656 +#: dcim/forms/bulk_import.py:656 msgid "The type of module" msgstr "" -#: netbox/dcim/forms/bulk_import.py:664 netbox/dcim/forms/model_forms.py:656 +#: dcim/forms/bulk_import.py:664 dcim/forms/model_forms.py:656 msgid "Replicate components" msgstr "" -#: netbox/dcim/forms/bulk_import.py:666 +#: dcim/forms/bulk_import.py:666 msgid "" "Automatically populate components associated with this module type (enabled " "by default)" msgstr "" -#: netbox/dcim/forms/bulk_import.py:669 netbox/dcim/forms/model_forms.py:662 +#: dcim/forms/bulk_import.py:669 dcim/forms/model_forms.py:662 msgid "Adopt components" msgstr "" -#: netbox/dcim/forms/bulk_import.py:671 netbox/dcim/forms/model_forms.py:665 +#: dcim/forms/bulk_import.py:671 dcim/forms/model_forms.py:665 msgid "Adopt already existing components" msgstr "" -#: netbox/dcim/forms/bulk_import.py:711 netbox/dcim/forms/bulk_import.py:737 -#: netbox/dcim/forms/bulk_import.py:763 +#: dcim/forms/bulk_import.py:711 dcim/forms/bulk_import.py:737 +#: dcim/forms/bulk_import.py:763 msgid "Port type" msgstr "" -#: netbox/dcim/forms/bulk_import.py:719 netbox/dcim/forms/bulk_import.py:745 +#: dcim/forms/bulk_import.py:719 dcim/forms/bulk_import.py:745 msgid "Port speed in bps" msgstr "" -#: netbox/dcim/forms/bulk_import.py:783 +#: dcim/forms/bulk_import.py:783 msgid "Outlet type" msgstr "" -#: netbox/dcim/forms/bulk_import.py:790 +#: dcim/forms/bulk_import.py:790 msgid "Local power port which feeds this outlet" msgstr "" -#: netbox/dcim/forms/bulk_import.py:796 +#: dcim/forms/bulk_import.py:796 msgid "Electrical phase (for three-phase circuits)" msgstr "" -#: netbox/dcim/forms/bulk_import.py:837 netbox/dcim/forms/model_forms.py:1316 -#: netbox/virtualization/forms/bulk_import.py:155 -#: netbox/virtualization/forms/model_forms.py:305 +#: dcim/forms/bulk_import.py:837 dcim/forms/model_forms.py:1316 +#: virtualization/forms/bulk_import.py:155 +#: virtualization/forms/model_forms.py:305 msgid "Parent interface" msgstr "" -#: netbox/dcim/forms/bulk_import.py:844 netbox/dcim/forms/model_forms.py:1324 -#: netbox/virtualization/forms/bulk_import.py:162 -#: netbox/virtualization/forms/model_forms.py:313 +#: dcim/forms/bulk_import.py:844 dcim/forms/model_forms.py:1324 +#: virtualization/forms/bulk_import.py:162 +#: virtualization/forms/model_forms.py:313 msgid "Bridged interface" msgstr "" -#: netbox/dcim/forms/bulk_import.py:847 +#: dcim/forms/bulk_import.py:847 msgid "Lag" msgstr "" -#: netbox/dcim/forms/bulk_import.py:851 +#: dcim/forms/bulk_import.py:851 msgid "Parent LAG interface" msgstr "" -#: netbox/dcim/forms/bulk_import.py:854 +#: dcim/forms/bulk_import.py:854 msgid "Vdcs" msgstr "" -#: netbox/dcim/forms/bulk_import.py:859 +#: dcim/forms/bulk_import.py:859 msgid "VDC names separated by commas, encased with double quotes. Example:" msgstr "" -#: netbox/dcim/forms/bulk_import.py:865 +#: dcim/forms/bulk_import.py:865 msgid "Physical medium" msgstr "" -#: netbox/dcim/forms/bulk_import.py:868 netbox/dcim/forms/filtersets.py:1365 +#: dcim/forms/bulk_import.py:868 dcim/forms/filtersets.py:1365 msgid "Duplex" msgstr "" -#: netbox/dcim/forms/bulk_import.py:873 +#: dcim/forms/bulk_import.py:873 msgid "Poe mode" msgstr "" -#: netbox/dcim/forms/bulk_import.py:879 +#: dcim/forms/bulk_import.py:879 msgid "Poe type" msgstr "" -#: netbox/dcim/forms/bulk_import.py:888 -#: netbox/virtualization/forms/bulk_import.py:168 +#: dcim/forms/bulk_import.py:888 virtualization/forms/bulk_import.py:168 msgid "IEEE 802.1Q operational mode (for L2 interfaces)" msgstr "" -#: netbox/dcim/forms/bulk_import.py:895 netbox/ipam/forms/bulk_import.py:161 -#: netbox/ipam/forms/bulk_import.py:247 netbox/ipam/forms/bulk_import.py:283 -#: netbox/ipam/forms/filtersets.py:201 netbox/ipam/forms/filtersets.py:277 -#: netbox/ipam/forms/filtersets.py:336 -#: netbox/virtualization/forms/bulk_import.py:175 +#: dcim/forms/bulk_import.py:895 ipam/forms/bulk_import.py:161 +#: ipam/forms/bulk_import.py:247 ipam/forms/bulk_import.py:283 +#: ipam/forms/filtersets.py:201 ipam/forms/filtersets.py:277 +#: ipam/forms/filtersets.py:336 virtualization/forms/bulk_import.py:175 msgid "Assigned VRF" msgstr "" -#: netbox/dcim/forms/bulk_import.py:898 +#: dcim/forms/bulk_import.py:898 msgid "Rf role" msgstr "" -#: netbox/dcim/forms/bulk_import.py:901 +#: dcim/forms/bulk_import.py:901 msgid "Wireless role (AP/station)" msgstr "" -#: netbox/dcim/forms/bulk_import.py:937 +#: dcim/forms/bulk_import.py:937 #, python-brace-format msgid "VDC {vdc} is not assigned to device {device}" msgstr "" -#: netbox/dcim/forms/bulk_import.py:951 netbox/dcim/forms/model_forms.py:1000 -#: netbox/dcim/forms/model_forms.py:1575 netbox/dcim/forms/object_import.py:117 +#: dcim/forms/bulk_import.py:951 dcim/forms/model_forms.py:1000 +#: dcim/forms/model_forms.py:1575 dcim/forms/object_import.py:117 msgid "Rear port" msgstr "" -#: netbox/dcim/forms/bulk_import.py:954 +#: dcim/forms/bulk_import.py:954 msgid "Corresponding rear port" msgstr "" -#: netbox/dcim/forms/bulk_import.py:959 netbox/dcim/forms/bulk_import.py:1000 -#: netbox/dcim/forms/bulk_import.py:1216 +#: dcim/forms/bulk_import.py:959 dcim/forms/bulk_import.py:1000 +#: dcim/forms/bulk_import.py:1216 msgid "Physical medium classification" msgstr "" -#: netbox/dcim/forms/bulk_import.py:1028 netbox/dcim/tables/devices.py:822 +#: dcim/forms/bulk_import.py:1028 dcim/tables/devices.py:822 msgid "Installed device" msgstr "" -#: netbox/dcim/forms/bulk_import.py:1032 +#: dcim/forms/bulk_import.py:1032 msgid "Child device installed within this bay" msgstr "" -#: netbox/dcim/forms/bulk_import.py:1034 +#: dcim/forms/bulk_import.py:1034 msgid "Child device not found." msgstr "" -#: netbox/dcim/forms/bulk_import.py:1092 +#: dcim/forms/bulk_import.py:1092 msgid "Parent inventory item" msgstr "" -#: netbox/dcim/forms/bulk_import.py:1095 +#: dcim/forms/bulk_import.py:1095 msgid "Component type" msgstr "" -#: netbox/dcim/forms/bulk_import.py:1099 +#: dcim/forms/bulk_import.py:1099 msgid "Component Type" msgstr "" -#: netbox/dcim/forms/bulk_import.py:1102 +#: dcim/forms/bulk_import.py:1102 msgid "Compnent name" msgstr "" -#: netbox/dcim/forms/bulk_import.py:1104 +#: dcim/forms/bulk_import.py:1104 msgid "Component Name" msgstr "" -#: netbox/dcim/forms/bulk_import.py:1146 +#: dcim/forms/bulk_import.py:1146 #, python-brace-format msgid "Component not found: {device} - {component_name}" msgstr "" -#: netbox/dcim/forms/bulk_import.py:1171 +#: dcim/forms/bulk_import.py:1171 msgid "Side A device" msgstr "" -#: netbox/dcim/forms/bulk_import.py:1174 netbox/dcim/forms/bulk_import.py:1192 +#: dcim/forms/bulk_import.py:1174 dcim/forms/bulk_import.py:1192 msgid "Device name" msgstr "" -#: netbox/dcim/forms/bulk_import.py:1177 +#: dcim/forms/bulk_import.py:1177 msgid "Side A type" msgstr "" -#: netbox/dcim/forms/bulk_import.py:1180 netbox/dcim/forms/bulk_import.py:1198 +#: dcim/forms/bulk_import.py:1180 dcim/forms/bulk_import.py:1198 msgid "Termination type" msgstr "" -#: netbox/dcim/forms/bulk_import.py:1183 +#: dcim/forms/bulk_import.py:1183 msgid "Side A name" msgstr "" -#: netbox/dcim/forms/bulk_import.py:1184 netbox/dcim/forms/bulk_import.py:1202 +#: dcim/forms/bulk_import.py:1184 dcim/forms/bulk_import.py:1202 msgid "Termination name" msgstr "" -#: netbox/dcim/forms/bulk_import.py:1189 +#: dcim/forms/bulk_import.py:1189 msgid "Side B device" msgstr "" -#: netbox/dcim/forms/bulk_import.py:1195 +#: dcim/forms/bulk_import.py:1195 msgid "Side B type" msgstr "" -#: netbox/dcim/forms/bulk_import.py:1201 +#: dcim/forms/bulk_import.py:1201 msgid "Side B name" msgstr "" -#: netbox/dcim/forms/bulk_import.py:1210 -#: netbox/wireless/forms/bulk_import.py:86 +#: dcim/forms/bulk_import.py:1210 wireless/forms/bulk_import.py:86 msgid "Connection status" msgstr "" -#: netbox/dcim/forms/bulk_import.py:1262 +#: dcim/forms/bulk_import.py:1262 #, python-brace-format msgid "Side {side_upper}: {device} {termination_object} is already connected" msgstr "" -#: netbox/dcim/forms/bulk_import.py:1268 +#: dcim/forms/bulk_import.py:1268 #, python-brace-format msgid "{side_upper} side termination not found: {device} {name}" msgstr "" -#: netbox/dcim/forms/bulk_import.py:1293 netbox/dcim/forms/model_forms.py:785 -#: netbox/dcim/tables/devices.py:1027 netbox/templates/dcim/device.html:132 -#: netbox/templates/dcim/virtualchassis.html:27 -#: netbox/templates/dcim/virtualchassis.html:67 +#: dcim/forms/bulk_import.py:1293 dcim/forms/model_forms.py:785 +#: dcim/tables/devices.py:1027 templates/dcim/device.html:132 +#: templates/dcim/virtualchassis.html:27 templates/dcim/virtualchassis.html:67 msgid "Master" msgstr "" -#: netbox/dcim/forms/bulk_import.py:1297 +#: dcim/forms/bulk_import.py:1297 msgid "Master device" msgstr "" -#: netbox/dcim/forms/bulk_import.py:1314 +#: dcim/forms/bulk_import.py:1314 msgid "Name of parent site" msgstr "" -#: netbox/dcim/forms/bulk_import.py:1348 +#: dcim/forms/bulk_import.py:1348 msgid "Upstream power panel" msgstr "" -#: netbox/dcim/forms/bulk_import.py:1378 +#: dcim/forms/bulk_import.py:1378 msgid "Primary or redundant" msgstr "" -#: netbox/dcim/forms/bulk_import.py:1383 +#: dcim/forms/bulk_import.py:1383 msgid "Supply type (AC/DC)" msgstr "" -#: netbox/dcim/forms/bulk_import.py:1388 +#: dcim/forms/bulk_import.py:1388 msgid "Single or three-phase" msgstr "" -#: netbox/dcim/forms/bulk_import.py:1439 netbox/dcim/forms/model_forms.py:1670 -#: netbox/templates/dcim/device.html:190 -#: netbox/templates/dcim/virtualdevicecontext.html:30 -#: netbox/templates/virtualization/virtualmachine.html:52 +#: dcim/forms/bulk_import.py:1439 dcim/forms/model_forms.py:1670 +#: templates/dcim/device.html:190 templates/dcim/virtualdevicecontext.html:30 +#: templates/virtualization/virtualmachine.html:52 msgid "Primary IPv4" msgstr "" -#: netbox/dcim/forms/bulk_import.py:1443 +#: dcim/forms/bulk_import.py:1443 msgid "IPv4 address with mask, e.g. 1.2.3.4/24" msgstr "" -#: netbox/dcim/forms/bulk_import.py:1446 netbox/dcim/forms/model_forms.py:1679 -#: netbox/templates/dcim/device.html:206 -#: netbox/templates/dcim/virtualdevicecontext.html:41 -#: netbox/templates/virtualization/virtualmachine.html:68 +#: dcim/forms/bulk_import.py:1446 dcim/forms/model_forms.py:1679 +#: templates/dcim/device.html:206 templates/dcim/virtualdevicecontext.html:41 +#: templates/virtualization/virtualmachine.html:68 msgid "Primary IPv6" msgstr "" -#: netbox/dcim/forms/bulk_import.py:1450 +#: dcim/forms/bulk_import.py:1450 msgid "IPv6 address with prefix length, e.g. 2001:db8::1/64" msgstr "" -#: netbox/dcim/forms/common.py:24 netbox/dcim/models/device_components.py:527 -#: netbox/templates/dcim/interface.html:57 -#: netbox/templates/virtualization/vminterface.html:55 -#: netbox/virtualization/forms/bulk_edit.py:225 +#: dcim/forms/common.py:24 dcim/models/device_components.py:527 +#: templates/dcim/interface.html:57 +#: templates/virtualization/vminterface.html:55 +#: virtualization/forms/bulk_edit.py:225 msgid "MTU" msgstr "" -#: netbox/dcim/forms/common.py:65 +#: dcim/forms/common.py:65 #, python-brace-format msgid "" "The tagged VLANs ({vlans}) must belong to the same site as the interface's " "parent device/VM, or they must be global" msgstr "" -#: netbox/dcim/forms/common.py:126 +#: dcim/forms/common.py:126 msgid "" "Cannot install module with placeholder values in a module bay with no " "position defined." msgstr "" -#: netbox/dcim/forms/common.py:131 +#: dcim/forms/common.py:131 #, python-brace-format msgid "" "Cannot install module with placeholder values in a module bay tree {level} " "in tree but {tokens} placeholders given." msgstr "" -#: netbox/dcim/forms/common.py:144 +#: dcim/forms/common.py:144 #, python-brace-format msgid "Cannot adopt {model} {name} as it already belongs to a module" msgstr "" -#: netbox/dcim/forms/common.py:153 +#: dcim/forms/common.py:153 #, python-brace-format msgid "A {model} named {name} already exists" msgstr "" -#: netbox/dcim/forms/connections.py:49 netbox/dcim/forms/model_forms.py:738 -#: netbox/dcim/tables/power.py:66 -#: netbox/templates/dcim/inc/cable_termination.html:37 -#: netbox/templates/dcim/powerfeed.html:24 -#: netbox/templates/dcim/powerpanel.html:19 -#: netbox/templates/dcim/trace/powerpanel.html:4 +#: dcim/forms/connections.py:49 dcim/forms/model_forms.py:738 +#: dcim/tables/power.py:66 templates/dcim/inc/cable_termination.html:37 +#: templates/dcim/powerfeed.html:24 templates/dcim/powerpanel.html:19 +#: templates/dcim/trace/powerpanel.html:4 msgid "Power Panel" msgstr "" -#: netbox/dcim/forms/connections.py:58 netbox/dcim/forms/model_forms.py:765 -#: netbox/templates/dcim/powerfeed.html:21 -#: netbox/templates/dcim/powerport.html:80 +#: dcim/forms/connections.py:58 dcim/forms/model_forms.py:765 +#: templates/dcim/powerfeed.html:21 templates/dcim/powerport.html:80 msgid "Power Feed" msgstr "" -#: netbox/dcim/forms/connections.py:81 +#: dcim/forms/connections.py:81 msgid "Side" msgstr "" -#: netbox/dcim/forms/filtersets.py:136 netbox/dcim/tables/devices.py:295 +#: dcim/forms/filtersets.py:136 dcim/tables/devices.py:295 msgid "Device Status" msgstr "" -#: netbox/dcim/forms/filtersets.py:149 +#: dcim/forms/filtersets.py:149 msgid "Parent region" msgstr "" -#: netbox/dcim/forms/filtersets.py:163 netbox/tenancy/forms/bulk_import.py:28 -#: netbox/tenancy/forms/bulk_import.py:62 netbox/tenancy/forms/filtersets.py:33 -#: netbox/tenancy/forms/filtersets.py:62 -#: netbox/wireless/forms/bulk_import.py:25 -#: netbox/wireless/forms/filtersets.py:25 +#: dcim/forms/filtersets.py:163 tenancy/forms/bulk_import.py:28 +#: tenancy/forms/bulk_import.py:62 tenancy/forms/filtersets.py:33 +#: tenancy/forms/filtersets.py:62 wireless/forms/bulk_import.py:25 +#: wireless/forms/filtersets.py:25 msgid "Parent group" msgstr "" -#: netbox/dcim/forms/filtersets.py:242 netbox/templates/dcim/location.html:58 -#: netbox/templates/dcim/site.html:56 +#: dcim/forms/filtersets.py:242 templates/dcim/location.html:58 +#: templates/dcim/site.html:56 msgid "Facility" msgstr "" -#: netbox/dcim/forms/filtersets.py:380 +#: dcim/forms/filtersets.py:380 msgid "Rack type" msgstr "" -#: netbox/dcim/forms/filtersets.py:397 +#: dcim/forms/filtersets.py:397 msgid "Function" msgstr "" -#: netbox/dcim/forms/filtersets.py:483 netbox/dcim/forms/model_forms.py:373 -#: netbox/templates/inc/panels/image_attachments.html:6 +#: dcim/forms/filtersets.py:483 dcim/forms/model_forms.py:373 +#: templates/inc/panels/image_attachments.html:6 msgid "Images" msgstr "" -#: netbox/dcim/forms/filtersets.py:486 netbox/dcim/forms/filtersets.py:611 -#: netbox/dcim/forms/filtersets.py:726 +#: dcim/forms/filtersets.py:486 dcim/forms/filtersets.py:611 +#: dcim/forms/filtersets.py:726 msgid "Components" msgstr "" -#: netbox/dcim/forms/filtersets.py:506 +#: dcim/forms/filtersets.py:506 msgid "Subdevice role" msgstr "" -#: netbox/dcim/forms/filtersets.py:790 netbox/dcim/tables/racks.py:54 -#: netbox/templates/dcim/racktype.html:20 +#: dcim/forms/filtersets.py:790 dcim/tables/racks.py:54 +#: templates/dcim/racktype.html:20 msgid "Model" msgstr "" -#: netbox/dcim/forms/filtersets.py:834 +#: dcim/forms/filtersets.py:834 msgid "Has an OOB IP" msgstr "" -#: netbox/dcim/forms/filtersets.py:841 +#: dcim/forms/filtersets.py:841 msgid "Virtual chassis member" msgstr "" -#: netbox/dcim/forms/filtersets.py:890 +#: dcim/forms/filtersets.py:890 msgid "Has virtual device contexts" msgstr "" -#: netbox/dcim/forms/filtersets.py:903 netbox/extras/filtersets.py:585 -#: netbox/ipam/forms/filtersets.py:452 -#: netbox/virtualization/forms/filtersets.py:112 +#: dcim/forms/filtersets.py:903 extras/filtersets.py:585 +#: ipam/forms/filtersets.py:452 virtualization/forms/filtersets.py:112 msgid "Cluster group" msgstr "" -#: netbox/dcim/forms/filtersets.py:1210 +#: dcim/forms/filtersets.py:1210 msgid "Cabled" msgstr "" -#: netbox/dcim/forms/filtersets.py:1217 +#: dcim/forms/filtersets.py:1217 msgid "Occupied" msgstr "" -#: netbox/dcim/forms/filtersets.py:1244 netbox/dcim/forms/filtersets.py:1269 -#: netbox/dcim/forms/filtersets.py:1293 netbox/dcim/forms/filtersets.py:1313 -#: netbox/dcim/forms/filtersets.py:1336 netbox/dcim/tables/devices.py:364 -#: netbox/templates/dcim/consoleport.html:55 -#: netbox/templates/dcim/consoleserverport.html:55 -#: netbox/templates/dcim/frontport.html:69 -#: netbox/templates/dcim/interface.html:140 -#: netbox/templates/dcim/powerfeed.html:110 -#: netbox/templates/dcim/poweroutlet.html:59 -#: netbox/templates/dcim/powerport.html:59 -#: netbox/templates/dcim/rearport.html:65 +#: dcim/forms/filtersets.py:1244 dcim/forms/filtersets.py:1269 +#: dcim/forms/filtersets.py:1293 dcim/forms/filtersets.py:1313 +#: dcim/forms/filtersets.py:1336 dcim/tables/devices.py:364 +#: templates/dcim/consoleport.html:55 templates/dcim/consoleserverport.html:55 +#: templates/dcim/frontport.html:69 templates/dcim/interface.html:140 +#: templates/dcim/powerfeed.html:110 templates/dcim/poweroutlet.html:59 +#: templates/dcim/powerport.html:59 templates/dcim/rearport.html:65 msgid "Connection" msgstr "" -#: netbox/dcim/forms/filtersets.py:1348 netbox/extras/forms/bulk_edit.py:326 -#: netbox/extras/forms/bulk_import.py:247 netbox/extras/forms/filtersets.py:464 -#: netbox/extras/forms/model_forms.py:675 netbox/extras/tables/tables.py:579 -#: netbox/templates/extras/journalentry.html:30 +#: dcim/forms/filtersets.py:1348 extras/forms/bulk_edit.py:326 +#: extras/forms/bulk_import.py:247 extras/forms/filtersets.py:464 +#: extras/forms/model_forms.py:675 extras/tables/tables.py:579 +#: templates/extras/journalentry.html:30 msgid "Kind" msgstr "" -#: netbox/dcim/forms/filtersets.py:1377 +#: dcim/forms/filtersets.py:1377 msgid "Mgmt only" msgstr "" -#: netbox/dcim/forms/filtersets.py:1389 netbox/dcim/forms/model_forms.py:1383 -#: netbox/dcim/models/device_components.py:629 -#: netbox/templates/dcim/interface.html:129 +#: dcim/forms/filtersets.py:1389 dcim/forms/model_forms.py:1383 +#: dcim/models/device_components.py:629 templates/dcim/interface.html:129 msgid "WWN" msgstr "" -#: netbox/dcim/forms/filtersets.py:1409 +#: dcim/forms/filtersets.py:1409 msgid "Wireless channel" msgstr "" -#: netbox/dcim/forms/filtersets.py:1413 +#: dcim/forms/filtersets.py:1413 msgid "Channel frequency (MHz)" msgstr "" -#: netbox/dcim/forms/filtersets.py:1417 +#: dcim/forms/filtersets.py:1417 msgid "Channel width (MHz)" msgstr "" -#: netbox/dcim/forms/filtersets.py:1421 netbox/templates/dcim/interface.html:85 +#: dcim/forms/filtersets.py:1421 templates/dcim/interface.html:85 msgid "Transmit power (dBm)" msgstr "" -#: netbox/dcim/forms/filtersets.py:1446 netbox/dcim/forms/filtersets.py:1471 -#: netbox/dcim/tables/devices.py:327 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:50 -#: netbox/templates/dcim/inc/connection_endpoints.html:4 -#: netbox/templates/dcim/rearport.html:73 -#: netbox/templates/dcim/trace/cable.html:7 +#: dcim/forms/filtersets.py:1446 dcim/forms/filtersets.py:1471 +#: dcim/tables/devices.py:327 templates/dcim/cable.html:12 +#: templates/dcim/cable_trace.html:46 templates/dcim/frontport.html:77 +#: templates/dcim/htmx/cable_edit.html:50 +#: templates/dcim/inc/connection_endpoints.html:4 +#: templates/dcim/rearport.html:73 templates/dcim/trace/cable.html:7 msgid "Cable" msgstr "" -#: netbox/dcim/forms/filtersets.py:1550 netbox/dcim/tables/devices.py:949 +#: dcim/forms/filtersets.py:1550 dcim/tables/devices.py:949 msgid "Discovered" msgstr "" -#: netbox/dcim/forms/formsets.py:20 +#: dcim/forms/formsets.py:20 #, python-brace-format msgid "A virtual chassis member already exists in position {vc_position}." msgstr "" -#: netbox/dcim/forms/model_forms.py:140 +#: dcim/forms/model_forms.py:140 msgid "Contact Info" msgstr "" -#: netbox/dcim/forms/model_forms.py:195 netbox/templates/dcim/rackrole.html:19 +#: dcim/forms/model_forms.py:195 templates/dcim/rackrole.html:19 msgid "Rack Role" msgstr "" -#: netbox/dcim/forms/model_forms.py:212 netbox/dcim/forms/model_forms.py:362 -#: netbox/dcim/forms/model_forms.py:446 -#: netbox/utilities/forms/fields/fields.py:47 +#: dcim/forms/model_forms.py:212 dcim/forms/model_forms.py:362 +#: dcim/forms/model_forms.py:446 utilities/forms/fields/fields.py:47 msgid "Slug" msgstr "" -#: netbox/dcim/forms/model_forms.py:259 +#: dcim/forms/model_forms.py:259 msgid "Select a pre-defined rack type, or set physical characteristics below." msgstr "" -#: netbox/dcim/forms/model_forms.py:265 +#: dcim/forms/model_forms.py:265 msgid "Inventory Control" msgstr "" -#: netbox/dcim/forms/model_forms.py:313 +#: dcim/forms/model_forms.py:313 msgid "" "Comma-separated list of numeric unit IDs. A range may be specified using a " "hyphen." msgstr "" -#: netbox/dcim/forms/model_forms.py:322 netbox/dcim/tables/racks.py:202 +#: dcim/forms/model_forms.py:322 dcim/tables/racks.py:202 msgid "Reservation" msgstr "" -#: netbox/dcim/forms/model_forms.py:423 -#: netbox/templates/dcim/devicerole.html:23 +#: dcim/forms/model_forms.py:423 templates/dcim/devicerole.html:23 msgid "Device Role" msgstr "" -#: netbox/dcim/forms/model_forms.py:490 netbox/dcim/models/devices.py:644 +#: dcim/forms/model_forms.py:490 dcim/models/devices.py:644 msgid "The lowest-numbered unit occupied by the device" msgstr "" -#: netbox/dcim/forms/model_forms.py:547 +#: dcim/forms/model_forms.py:547 msgid "The position in the virtual chassis this device is identified by" msgstr "" -#: netbox/dcim/forms/model_forms.py:552 +#: dcim/forms/model_forms.py:552 msgid "The priority of the device in the virtual chassis" msgstr "" -#: netbox/dcim/forms/model_forms.py:659 +#: dcim/forms/model_forms.py:659 msgid "Automatically populate components associated with this module type" msgstr "" -#: netbox/dcim/forms/model_forms.py:767 +#: dcim/forms/model_forms.py:767 msgid "Characteristics" msgstr "" -#: netbox/dcim/forms/model_forms.py:1087 +#: dcim/forms/model_forms.py:1087 msgid "Console port template" msgstr "" -#: netbox/dcim/forms/model_forms.py:1095 +#: dcim/forms/model_forms.py:1095 msgid "Console server port template" msgstr "" -#: netbox/dcim/forms/model_forms.py:1103 +#: dcim/forms/model_forms.py:1103 msgid "Front port template" msgstr "" -#: netbox/dcim/forms/model_forms.py:1111 +#: dcim/forms/model_forms.py:1111 msgid "Interface template" msgstr "" -#: netbox/dcim/forms/model_forms.py:1119 +#: dcim/forms/model_forms.py:1119 msgid "Power outlet template" msgstr "" -#: netbox/dcim/forms/model_forms.py:1127 +#: dcim/forms/model_forms.py:1127 msgid "Power port template" msgstr "" -#: netbox/dcim/forms/model_forms.py:1135 +#: dcim/forms/model_forms.py:1135 msgid "Rear port template" msgstr "" -#: netbox/dcim/forms/model_forms.py:1144 netbox/dcim/forms/model_forms.py:1388 -#: netbox/dcim/forms/model_forms.py:1551 netbox/dcim/forms/model_forms.py:1583 -#: netbox/dcim/tables/connections.py:65 netbox/ipam/forms/bulk_import.py:318 -#: netbox/ipam/forms/model_forms.py:280 netbox/ipam/forms/model_forms.py:289 -#: netbox/ipam/tables/fhrp.py:64 netbox/ipam/tables/ip.py:372 -#: netbox/ipam/tables/vlans.py:169 -#: netbox/templates/circuits/inc/circuit_termination_fields.html:51 -#: netbox/templates/dcim/frontport.html:106 -#: netbox/templates/dcim/interface.html:27 -#: netbox/templates/dcim/interface.html:184 -#: netbox/templates/dcim/interface.html:310 -#: netbox/templates/dcim/rearport.html:102 -#: netbox/templates/virtualization/vminterface.html:18 -#: netbox/templates/vpn/tunneltermination.html:31 -#: netbox/templates/wireless/inc/wirelesslink_interface.html:10 -#: netbox/templates/wireless/wirelesslink.html:10 -#: netbox/templates/wireless/wirelesslink.html:55 -#: netbox/virtualization/forms/model_forms.py:348 -#: netbox/vpn/forms/bulk_import.py:297 netbox/vpn/forms/model_forms.py:436 -#: netbox/vpn/forms/model_forms.py:445 netbox/wireless/forms/model_forms.py:113 -#: netbox/wireless/forms/model_forms.py:155 +#: dcim/forms/model_forms.py:1144 dcim/forms/model_forms.py:1388 +#: dcim/forms/model_forms.py:1551 dcim/forms/model_forms.py:1583 +#: dcim/tables/connections.py:65 ipam/forms/bulk_import.py:318 +#: ipam/forms/model_forms.py:280 ipam/forms/model_forms.py:289 +#: ipam/tables/fhrp.py:64 ipam/tables/ip.py:372 ipam/tables/vlans.py:169 +#: templates/circuits/inc/circuit_termination_fields.html:51 +#: templates/dcim/frontport.html:106 templates/dcim/interface.html:27 +#: templates/dcim/interface.html:184 templates/dcim/interface.html:310 +#: templates/dcim/rearport.html:102 +#: templates/virtualization/vminterface.html:18 +#: templates/vpn/tunneltermination.html:31 +#: templates/wireless/inc/wirelesslink_interface.html:10 +#: templates/wireless/wirelesslink.html:10 +#: templates/wireless/wirelesslink.html:55 +#: virtualization/forms/model_forms.py:348 vpn/forms/bulk_import.py:297 +#: vpn/forms/model_forms.py:436 vpn/forms/model_forms.py:445 +#: wireless/forms/model_forms.py:113 wireless/forms/model_forms.py:155 msgid "Interface" msgstr "" -#: netbox/dcim/forms/model_forms.py:1145 netbox/dcim/forms/model_forms.py:1584 -#: netbox/dcim/tables/connections.py:27 -#: netbox/templates/dcim/consoleport.html:17 -#: netbox/templates/dcim/consoleserverport.html:74 -#: netbox/templates/dcim/frontport.html:112 +#: dcim/forms/model_forms.py:1145 dcim/forms/model_forms.py:1584 +#: dcim/tables/connections.py:27 templates/dcim/consoleport.html:17 +#: templates/dcim/consoleserverport.html:74 templates/dcim/frontport.html:112 msgid "Console Port" msgstr "" -#: netbox/dcim/forms/model_forms.py:1146 netbox/dcim/forms/model_forms.py:1585 -#: netbox/templates/dcim/consoleport.html:73 -#: netbox/templates/dcim/consoleserverport.html:17 -#: netbox/templates/dcim/frontport.html:109 +#: dcim/forms/model_forms.py:1146 dcim/forms/model_forms.py:1585 +#: templates/dcim/consoleport.html:73 templates/dcim/consoleserverport.html:17 +#: templates/dcim/frontport.html:109 msgid "Console Server Port" msgstr "" -#: netbox/dcim/forms/model_forms.py:1147 netbox/dcim/forms/model_forms.py:1586 -#: netbox/templates/circuits/inc/circuit_termination_fields.html:52 -#: netbox/templates/dcim/consoleport.html:76 -#: netbox/templates/dcim/consoleserverport.html:77 -#: netbox/templates/dcim/frontport.html:17 -#: netbox/templates/dcim/frontport.html:115 -#: netbox/templates/dcim/interface.html:187 -#: netbox/templates/dcim/rearport.html:105 +#: dcim/forms/model_forms.py:1147 dcim/forms/model_forms.py:1586 +#: templates/circuits/inc/circuit_termination_fields.html:52 +#: templates/dcim/consoleport.html:76 templates/dcim/consoleserverport.html:77 +#: templates/dcim/frontport.html:17 templates/dcim/frontport.html:115 +#: templates/dcim/interface.html:187 templates/dcim/rearport.html:105 msgid "Front Port" msgstr "" -#: netbox/dcim/forms/model_forms.py:1148 netbox/dcim/forms/model_forms.py:1587 -#: netbox/dcim/tables/devices.py:710 -#: netbox/templates/circuits/inc/circuit_termination_fields.html:53 -#: netbox/templates/dcim/consoleport.html:79 -#: netbox/templates/dcim/consoleserverport.html:80 -#: netbox/templates/dcim/frontport.html:50 -#: netbox/templates/dcim/frontport.html:118 -#: netbox/templates/dcim/interface.html:190 -#: netbox/templates/dcim/rearport.html:17 -#: netbox/templates/dcim/rearport.html:108 +#: dcim/forms/model_forms.py:1148 dcim/forms/model_forms.py:1587 +#: dcim/tables/devices.py:710 +#: templates/circuits/inc/circuit_termination_fields.html:53 +#: templates/dcim/consoleport.html:79 templates/dcim/consoleserverport.html:80 +#: templates/dcim/frontport.html:50 templates/dcim/frontport.html:118 +#: templates/dcim/interface.html:190 templates/dcim/rearport.html:17 +#: templates/dcim/rearport.html:108 msgid "Rear Port" msgstr "" -#: netbox/dcim/forms/model_forms.py:1149 netbox/dcim/forms/model_forms.py:1588 -#: netbox/dcim/tables/connections.py:46 netbox/dcim/tables/devices.py:512 -#: netbox/templates/dcim/poweroutlet.html:44 -#: netbox/templates/dcim/powerport.html:17 +#: dcim/forms/model_forms.py:1149 dcim/forms/model_forms.py:1588 +#: dcim/tables/connections.py:46 dcim/tables/devices.py:512 +#: templates/dcim/poweroutlet.html:44 templates/dcim/powerport.html:17 msgid "Power Port" msgstr "" -#: netbox/dcim/forms/model_forms.py:1150 netbox/dcim/forms/model_forms.py:1589 -#: netbox/templates/dcim/poweroutlet.html:17 -#: netbox/templates/dcim/powerport.html:77 +#: dcim/forms/model_forms.py:1150 dcim/forms/model_forms.py:1589 +#: templates/dcim/poweroutlet.html:17 templates/dcim/powerport.html:77 msgid "Power Outlet" msgstr "" -#: netbox/dcim/forms/model_forms.py:1152 netbox/dcim/forms/model_forms.py:1591 +#: dcim/forms/model_forms.py:1152 dcim/forms/model_forms.py:1591 msgid "Component Assignment" msgstr "" -#: netbox/dcim/forms/model_forms.py:1195 netbox/dcim/forms/model_forms.py:1638 +#: dcim/forms/model_forms.py:1195 dcim/forms/model_forms.py:1638 msgid "An InventoryItem can only be assigned to a single component." msgstr "" -#: netbox/dcim/forms/model_forms.py:1332 +#: dcim/forms/model_forms.py:1332 msgid "LAG interface" msgstr "" -#: netbox/dcim/forms/model_forms.py:1355 +#: dcim/forms/model_forms.py:1355 msgid "Filter VLANs available for assignment by group." msgstr "" -#: netbox/dcim/forms/model_forms.py:1484 +#: dcim/forms/model_forms.py:1484 msgid "Child Device" msgstr "" -#: netbox/dcim/forms/model_forms.py:1485 +#: dcim/forms/model_forms.py:1485 msgid "" "Child devices must first be created and assigned to the site and rack of the " "parent device." msgstr "" -#: netbox/dcim/forms/model_forms.py:1527 +#: dcim/forms/model_forms.py:1527 msgid "Console port" msgstr "" -#: netbox/dcim/forms/model_forms.py:1535 +#: dcim/forms/model_forms.py:1535 msgid "Console server port" msgstr "" -#: netbox/dcim/forms/model_forms.py:1543 +#: dcim/forms/model_forms.py:1543 msgid "Front port" msgstr "" -#: netbox/dcim/forms/model_forms.py:1559 +#: dcim/forms/model_forms.py:1559 msgid "Power outlet" msgstr "" -#: netbox/dcim/forms/model_forms.py:1579 -#: netbox/templates/dcim/inventoryitem.html:17 +#: dcim/forms/model_forms.py:1579 templates/dcim/inventoryitem.html:17 msgid "Inventory Item" msgstr "" -#: netbox/dcim/forms/model_forms.py:1652 -#: netbox/templates/dcim/inventoryitemrole.html:15 +#: dcim/forms/model_forms.py:1652 templates/dcim/inventoryitemrole.html:15 msgid "Inventory Item Role" msgstr "" -#: netbox/dcim/forms/object_create.py:48 netbox/dcim/forms/object_create.py:199 -#: netbox/dcim/forms/object_create.py:355 +#: dcim/forms/object_create.py:48 dcim/forms/object_create.py:199 +#: dcim/forms/object_create.py:355 msgid "" "Alphanumeric ranges are supported. (Must match the number of objects being " "created.)" msgstr "" -#: netbox/dcim/forms/object_create.py:68 +#: dcim/forms/object_create.py:68 #, python-brace-format msgid "" "The provided pattern specifies {value_count} values, but {pattern_count} are " "expected." msgstr "" -#: netbox/dcim/forms/object_create.py:110 -#: netbox/dcim/forms/object_create.py:271 netbox/dcim/tables/devices.py:252 +#: dcim/forms/object_create.py:110 dcim/forms/object_create.py:271 +#: dcim/tables/devices.py:252 msgid "Rear ports" msgstr "" -#: netbox/dcim/forms/object_create.py:111 -#: netbox/dcim/forms/object_create.py:272 +#: dcim/forms/object_create.py:111 dcim/forms/object_create.py:272 msgid "Select one rear port assignment for each front port being created." msgstr "" -#: netbox/dcim/forms/object_create.py:164 +#: dcim/forms/object_create.py:164 #, python-brace-format msgid "" "The number of front port templates to be created ({frontport_count}) must " "match the selected number of rear port positions ({rearport_count})." msgstr "" -#: netbox/dcim/forms/object_create.py:251 +#: dcim/forms/object_create.py:251 #, python-brace-format msgid "" "The string {module} will be replaced with the position of the " "assigned module, if any." msgstr "" -#: netbox/dcim/forms/object_create.py:320 +#: dcim/forms/object_create.py:320 #, python-brace-format msgid "" "The number of front ports to be created ({frontport_count}) must match the " "selected number of rear port positions ({rearport_count})." msgstr "" -#: netbox/dcim/forms/object_create.py:409 netbox/dcim/tables/devices.py:1033 -#: netbox/ipam/tables/fhrp.py:31 netbox/templates/dcim/virtualchassis.html:53 -#: netbox/templates/dcim/virtualchassis_edit.html:47 -#: netbox/templates/ipam/fhrpgroup.html:38 +#: dcim/forms/object_create.py:409 dcim/tables/devices.py:1033 +#: ipam/tables/fhrp.py:31 templates/dcim/virtualchassis.html:53 +#: templates/dcim/virtualchassis_edit.html:47 templates/ipam/fhrpgroup.html:38 msgid "Members" msgstr "" -#: netbox/dcim/forms/object_create.py:418 +#: dcim/forms/object_create.py:418 msgid "Initial position" msgstr "" -#: netbox/dcim/forms/object_create.py:421 +#: dcim/forms/object_create.py:421 msgid "" "Position of the first member device. Increases by one for each additional " "member." msgstr "" -#: netbox/dcim/forms/object_create.py:435 +#: dcim/forms/object_create.py:435 msgid "A position must be specified for the first VC member." msgstr "" -#: netbox/dcim/models/cables.py:62 -#: netbox/dcim/models/device_component_templates.py:55 -#: netbox/dcim/models/device_components.py:62 -#: netbox/extras/models/customfields.py:111 +#: dcim/models/cables.py:62 dcim/models/device_component_templates.py:55 +#: dcim/models/device_components.py:62 extras/models/customfields.py:111 msgid "label" msgstr "" -#: netbox/dcim/models/cables.py:71 +#: dcim/models/cables.py:71 msgid "length" msgstr "" -#: netbox/dcim/models/cables.py:78 +#: dcim/models/cables.py:78 msgid "length unit" msgstr "" -#: netbox/dcim/models/cables.py:95 +#: dcim/models/cables.py:95 msgid "cable" msgstr "" -#: netbox/dcim/models/cables.py:96 +#: dcim/models/cables.py:96 msgid "cables" msgstr "" -#: netbox/dcim/models/cables.py:165 +#: dcim/models/cables.py:165 msgid "Must specify a unit when setting a cable length" msgstr "" -#: netbox/dcim/models/cables.py:168 +#: dcim/models/cables.py:168 msgid "Must define A and B terminations when creating a new cable." msgstr "" -#: netbox/dcim/models/cables.py:175 +#: dcim/models/cables.py:175 msgid "Cannot connect different termination types to same end of cable." msgstr "" -#: netbox/dcim/models/cables.py:183 +#: dcim/models/cables.py:183 #, python-brace-format msgid "Incompatible termination types: {type_a} and {type_b}" msgstr "" -#: netbox/dcim/models/cables.py:193 +#: dcim/models/cables.py:193 msgid "A and B terminations cannot connect to the same object." msgstr "" -#: netbox/dcim/models/cables.py:260 netbox/ipam/models/asns.py:37 +#: dcim/models/cables.py:260 ipam/models/asns.py:37 msgid "end" msgstr "" -#: netbox/dcim/models/cables.py:313 +#: dcim/models/cables.py:313 msgid "cable termination" msgstr "" -#: netbox/dcim/models/cables.py:314 +#: dcim/models/cables.py:314 msgid "cable terminations" msgstr "" -#: netbox/dcim/models/cables.py:333 +#: dcim/models/cables.py:333 #, python-brace-format msgid "" "Duplicate termination found for {app_label}.{model} {termination_id}: cable " "{cable_pk}" msgstr "" -#: netbox/dcim/models/cables.py:343 +#: dcim/models/cables.py:343 #, python-brace-format msgid "Cables cannot be terminated to {type_display} interfaces" msgstr "" -#: netbox/dcim/models/cables.py:350 +#: dcim/models/cables.py:350 msgid "Circuit terminations attached to a provider network may not be cabled." msgstr "" -#: netbox/dcim/models/cables.py:448 netbox/extras/models/configs.py:50 +#: dcim/models/cables.py:448 extras/models/configs.py:50 msgid "is active" msgstr "" -#: netbox/dcim/models/cables.py:452 +#: dcim/models/cables.py:452 msgid "is complete" msgstr "" -#: netbox/dcim/models/cables.py:456 +#: dcim/models/cables.py:456 msgid "is split" msgstr "" -#: netbox/dcim/models/cables.py:464 +#: dcim/models/cables.py:464 msgid "cable path" msgstr "" -#: netbox/dcim/models/cables.py:465 +#: dcim/models/cables.py:465 msgid "cable paths" msgstr "" -#: netbox/dcim/models/device_component_templates.py:46 +#: dcim/models/device_component_templates.py:46 #, python-brace-format msgid "" "{module} is accepted as a substitution for the module bay position when " "attached to a module type." msgstr "" -#: netbox/dcim/models/device_component_templates.py:58 -#: netbox/dcim/models/device_components.py:65 +#: dcim/models/device_component_templates.py:58 +#: dcim/models/device_components.py:65 msgid "Physical label" msgstr "" -#: netbox/dcim/models/device_component_templates.py:103 +#: dcim/models/device_component_templates.py:103 msgid "Component templates cannot be moved to a different device type." msgstr "" -#: netbox/dcim/models/device_component_templates.py:154 +#: dcim/models/device_component_templates.py:154 msgid "" "A component template cannot be associated with both a device type and a " "module type." msgstr "" -#: netbox/dcim/models/device_component_templates.py:158 +#: dcim/models/device_component_templates.py:158 msgid "" "A component template must be associated with either a device type or a " "module type." msgstr "" -#: netbox/dcim/models/device_component_templates.py:212 +#: dcim/models/device_component_templates.py:212 msgid "console port template" msgstr "" -#: netbox/dcim/models/device_component_templates.py:213 +#: dcim/models/device_component_templates.py:213 msgid "console port templates" msgstr "" -#: netbox/dcim/models/device_component_templates.py:246 +#: dcim/models/device_component_templates.py:246 msgid "console server port template" msgstr "" -#: netbox/dcim/models/device_component_templates.py:247 +#: dcim/models/device_component_templates.py:247 msgid "console server port templates" msgstr "" -#: netbox/dcim/models/device_component_templates.py:278 -#: netbox/dcim/models/device_components.py:352 +#: dcim/models/device_component_templates.py:278 +#: dcim/models/device_components.py:352 msgid "maximum draw" msgstr "" -#: netbox/dcim/models/device_component_templates.py:285 -#: netbox/dcim/models/device_components.py:359 +#: dcim/models/device_component_templates.py:285 +#: dcim/models/device_components.py:359 msgid "allocated draw" msgstr "" -#: netbox/dcim/models/device_component_templates.py:295 +#: dcim/models/device_component_templates.py:295 msgid "power port template" msgstr "" -#: netbox/dcim/models/device_component_templates.py:296 +#: dcim/models/device_component_templates.py:296 msgid "power port templates" msgstr "" -#: netbox/dcim/models/device_component_templates.py:315 -#: netbox/dcim/models/device_components.py:382 +#: dcim/models/device_component_templates.py:315 +#: dcim/models/device_components.py:382 #, python-brace-format msgid "Allocated draw cannot exceed the maximum draw ({maximum_draw}W)." msgstr "" -#: netbox/dcim/models/device_component_templates.py:347 -#: netbox/dcim/models/device_components.py:477 +#: dcim/models/device_component_templates.py:347 +#: dcim/models/device_components.py:477 msgid "feed leg" msgstr "" -#: netbox/dcim/models/device_component_templates.py:351 -#: netbox/dcim/models/device_components.py:481 +#: dcim/models/device_component_templates.py:351 +#: dcim/models/device_components.py:481 msgid "Phase (for three-phase feeds)" msgstr "" -#: netbox/dcim/models/device_component_templates.py:357 +#: dcim/models/device_component_templates.py:357 msgid "power outlet template" msgstr "" -#: netbox/dcim/models/device_component_templates.py:358 +#: dcim/models/device_component_templates.py:358 msgid "power outlet templates" msgstr "" -#: netbox/dcim/models/device_component_templates.py:367 +#: dcim/models/device_component_templates.py:367 #, python-brace-format msgid "Parent power port ({power_port}) must belong to the same device type" msgstr "" -#: netbox/dcim/models/device_component_templates.py:371 +#: dcim/models/device_component_templates.py:371 #, python-brace-format msgid "Parent power port ({power_port}) must belong to the same module type" msgstr "" -#: netbox/dcim/models/device_component_templates.py:423 -#: netbox/dcim/models/device_components.py:611 +#: dcim/models/device_component_templates.py:423 +#: dcim/models/device_components.py:611 msgid "management only" msgstr "" -#: netbox/dcim/models/device_component_templates.py:431 -#: netbox/dcim/models/device_components.py:550 +#: dcim/models/device_component_templates.py:431 +#: dcim/models/device_components.py:550 msgid "bridge interface" msgstr "" -#: netbox/dcim/models/device_component_templates.py:449 -#: netbox/dcim/models/device_components.py:636 +#: dcim/models/device_component_templates.py:449 +#: dcim/models/device_components.py:636 msgid "wireless role" msgstr "" -#: netbox/dcim/models/device_component_templates.py:455 +#: dcim/models/device_component_templates.py:455 msgid "interface template" msgstr "" -#: netbox/dcim/models/device_component_templates.py:456 +#: dcim/models/device_component_templates.py:456 msgid "interface templates" msgstr "" -#: netbox/dcim/models/device_component_templates.py:463 -#: netbox/dcim/models/device_components.py:804 -#: netbox/virtualization/models/virtualmachines.py:405 +#: dcim/models/device_component_templates.py:463 +#: dcim/models/device_components.py:804 +#: virtualization/models/virtualmachines.py:405 msgid "An interface cannot be bridged to itself." msgstr "" -#: netbox/dcim/models/device_component_templates.py:466 +#: dcim/models/device_component_templates.py:466 #, python-brace-format msgid "Bridge interface ({bridge}) must belong to the same device type" msgstr "" -#: netbox/dcim/models/device_component_templates.py:470 +#: dcim/models/device_component_templates.py:470 #, python-brace-format msgid "Bridge interface ({bridge}) must belong to the same module type" msgstr "" -#: netbox/dcim/models/device_component_templates.py:526 -#: netbox/dcim/models/device_components.py:984 +#: dcim/models/device_component_templates.py:526 +#: dcim/models/device_components.py:984 msgid "rear port position" msgstr "" -#: netbox/dcim/models/device_component_templates.py:551 +#: dcim/models/device_component_templates.py:551 msgid "front port template" msgstr "" -#: netbox/dcim/models/device_component_templates.py:552 +#: dcim/models/device_component_templates.py:552 msgid "front port templates" msgstr "" -#: netbox/dcim/models/device_component_templates.py:562 +#: dcim/models/device_component_templates.py:562 #, python-brace-format msgid "Rear port ({name}) must belong to the same device type" msgstr "" -#: netbox/dcim/models/device_component_templates.py:568 +#: dcim/models/device_component_templates.py:568 #, python-brace-format msgid "" "Invalid rear port position ({position}); rear port {name} has only {count} " "positions" msgstr "" -#: netbox/dcim/models/device_component_templates.py:621 -#: netbox/dcim/models/device_components.py:1053 +#: dcim/models/device_component_templates.py:621 +#: dcim/models/device_components.py:1053 msgid "positions" msgstr "" -#: netbox/dcim/models/device_component_templates.py:632 +#: dcim/models/device_component_templates.py:632 msgid "rear port template" msgstr "" -#: netbox/dcim/models/device_component_templates.py:633 +#: dcim/models/device_component_templates.py:633 msgid "rear port templates" msgstr "" -#: netbox/dcim/models/device_component_templates.py:662 -#: netbox/dcim/models/device_components.py:1103 +#: dcim/models/device_component_templates.py:662 +#: dcim/models/device_components.py:1103 msgid "position" msgstr "" -#: netbox/dcim/models/device_component_templates.py:665 -#: netbox/dcim/models/device_components.py:1106 +#: dcim/models/device_component_templates.py:665 +#: dcim/models/device_components.py:1106 msgid "Identifier to reference when renaming installed components" msgstr "" -#: netbox/dcim/models/device_component_templates.py:671 +#: dcim/models/device_component_templates.py:671 msgid "module bay template" msgstr "" -#: netbox/dcim/models/device_component_templates.py:672 +#: dcim/models/device_component_templates.py:672 msgid "module bay templates" msgstr "" -#: netbox/dcim/models/device_component_templates.py:699 +#: dcim/models/device_component_templates.py:699 msgid "device bay template" msgstr "" -#: netbox/dcim/models/device_component_templates.py:700 +#: dcim/models/device_component_templates.py:700 msgid "device bay templates" msgstr "" -#: netbox/dcim/models/device_component_templates.py:713 +#: dcim/models/device_component_templates.py:713 #, python-brace-format msgid "" "Subdevice role of device type ({device_type}) must be set to \"parent\" to " "allow device bays." msgstr "" -#: netbox/dcim/models/device_component_templates.py:768 -#: netbox/dcim/models/device_components.py:1262 +#: dcim/models/device_component_templates.py:768 +#: dcim/models/device_components.py:1262 msgid "part ID" msgstr "" -#: netbox/dcim/models/device_component_templates.py:770 -#: netbox/dcim/models/device_components.py:1264 +#: dcim/models/device_component_templates.py:770 +#: dcim/models/device_components.py:1264 msgid "Manufacturer-assigned part identifier" msgstr "" -#: netbox/dcim/models/device_component_templates.py:787 +#: dcim/models/device_component_templates.py:787 msgid "inventory item template" msgstr "" -#: netbox/dcim/models/device_component_templates.py:788 +#: dcim/models/device_component_templates.py:788 msgid "inventory item templates" msgstr "" -#: netbox/dcim/models/device_components.py:105 +#: dcim/models/device_components.py:105 msgid "Components cannot be moved to a different device." msgstr "" -#: netbox/dcim/models/device_components.py:144 +#: dcim/models/device_components.py:144 msgid "cable end" msgstr "" -#: netbox/dcim/models/device_components.py:150 +#: dcim/models/device_components.py:150 msgid "mark connected" msgstr "" -#: netbox/dcim/models/device_components.py:152 +#: dcim/models/device_components.py:152 msgid "Treat as if a cable is connected" msgstr "" -#: netbox/dcim/models/device_components.py:170 +#: dcim/models/device_components.py:170 msgid "Must specify cable end (A or B) when attaching a cable." msgstr "" -#: netbox/dcim/models/device_components.py:174 +#: dcim/models/device_components.py:174 msgid "Cable end must not be set without a cable." msgstr "" -#: netbox/dcim/models/device_components.py:178 +#: dcim/models/device_components.py:178 msgid "Cannot mark as connected with a cable attached." msgstr "" -#: netbox/dcim/models/device_components.py:202 +#: dcim/models/device_components.py:202 #, python-brace-format msgid "{class_name} models must declare a parent_object property" msgstr "" -#: netbox/dcim/models/device_components.py:287 -#: netbox/dcim/models/device_components.py:316 -#: netbox/dcim/models/device_components.py:349 -#: netbox/dcim/models/device_components.py:467 +#: dcim/models/device_components.py:287 dcim/models/device_components.py:316 +#: dcim/models/device_components.py:349 dcim/models/device_components.py:467 msgid "Physical port type" msgstr "" -#: netbox/dcim/models/device_components.py:290 -#: netbox/dcim/models/device_components.py:319 +#: dcim/models/device_components.py:290 dcim/models/device_components.py:319 msgid "speed" msgstr "" -#: netbox/dcim/models/device_components.py:294 -#: netbox/dcim/models/device_components.py:323 +#: dcim/models/device_components.py:294 dcim/models/device_components.py:323 msgid "Port speed in bits per second" msgstr "" -#: netbox/dcim/models/device_components.py:300 +#: dcim/models/device_components.py:300 msgid "console port" msgstr "" -#: netbox/dcim/models/device_components.py:301 +#: dcim/models/device_components.py:301 msgid "console ports" msgstr "" -#: netbox/dcim/models/device_components.py:329 +#: dcim/models/device_components.py:329 msgid "console server port" msgstr "" -#: netbox/dcim/models/device_components.py:330 +#: dcim/models/device_components.py:330 msgid "console server ports" msgstr "" -#: netbox/dcim/models/device_components.py:369 +#: dcim/models/device_components.py:369 msgid "power port" msgstr "" -#: netbox/dcim/models/device_components.py:370 +#: dcim/models/device_components.py:370 msgid "power ports" msgstr "" -#: netbox/dcim/models/device_components.py:487 +#: dcim/models/device_components.py:487 msgid "power outlet" msgstr "" -#: netbox/dcim/models/device_components.py:488 +#: dcim/models/device_components.py:488 msgid "power outlets" msgstr "" -#: netbox/dcim/models/device_components.py:499 +#: dcim/models/device_components.py:499 #, python-brace-format msgid "Parent power port ({power_port}) must belong to the same device" msgstr "" -#: netbox/dcim/models/device_components.py:530 netbox/vpn/models/crypto.py:81 -#: netbox/vpn/models/crypto.py:226 +#: dcim/models/device_components.py:530 vpn/models/crypto.py:81 +#: vpn/models/crypto.py:226 msgid "mode" msgstr "" -#: netbox/dcim/models/device_components.py:534 +#: dcim/models/device_components.py:534 msgid "IEEE 802.1Q tagging strategy" msgstr "" -#: netbox/dcim/models/device_components.py:542 +#: dcim/models/device_components.py:542 msgid "parent interface" msgstr "" -#: netbox/dcim/models/device_components.py:602 +#: dcim/models/device_components.py:602 msgid "parent LAG" msgstr "" -#: netbox/dcim/models/device_components.py:612 +#: dcim/models/device_components.py:612 msgid "This interface is used only for out-of-band management" msgstr "" -#: netbox/dcim/models/device_components.py:617 +#: dcim/models/device_components.py:617 msgid "speed (Kbps)" msgstr "" -#: netbox/dcim/models/device_components.py:620 +#: dcim/models/device_components.py:620 msgid "duplex" msgstr "" -#: netbox/dcim/models/device_components.py:630 +#: dcim/models/device_components.py:630 msgid "64-bit World Wide Name" msgstr "" -#: netbox/dcim/models/device_components.py:642 +#: dcim/models/device_components.py:642 msgid "wireless channel" msgstr "" -#: netbox/dcim/models/device_components.py:649 +#: dcim/models/device_components.py:649 msgid "channel frequency (MHz)" msgstr "" -#: netbox/dcim/models/device_components.py:650 -#: netbox/dcim/models/device_components.py:658 +#: dcim/models/device_components.py:650 dcim/models/device_components.py:658 msgid "Populated by selected channel (if set)" msgstr "" -#: netbox/dcim/models/device_components.py:664 +#: dcim/models/device_components.py:664 msgid "transmit power (dBm)" msgstr "" -#: netbox/dcim/models/device_components.py:689 netbox/wireless/models.py:117 +#: dcim/models/device_components.py:689 wireless/models.py:117 msgid "wireless LANs" msgstr "" -#: netbox/dcim/models/device_components.py:697 -#: netbox/virtualization/models/virtualmachines.py:335 +#: dcim/models/device_components.py:697 +#: virtualization/models/virtualmachines.py:335 msgid "untagged VLAN" msgstr "" -#: netbox/dcim/models/device_components.py:703 -#: netbox/virtualization/models/virtualmachines.py:341 +#: dcim/models/device_components.py:703 +#: virtualization/models/virtualmachines.py:341 msgid "tagged VLANs" msgstr "" -#: netbox/dcim/models/device_components.py:745 -#: netbox/virtualization/models/virtualmachines.py:377 +#: dcim/models/device_components.py:745 +#: virtualization/models/virtualmachines.py:377 msgid "interface" msgstr "" -#: netbox/dcim/models/device_components.py:746 -#: netbox/virtualization/models/virtualmachines.py:378 +#: dcim/models/device_components.py:746 +#: virtualization/models/virtualmachines.py:378 msgid "interfaces" msgstr "" -#: netbox/dcim/models/device_components.py:757 +#: dcim/models/device_components.py:757 #, python-brace-format msgid "{display_type} interfaces cannot have a cable attached." msgstr "" -#: netbox/dcim/models/device_components.py:765 +#: dcim/models/device_components.py:765 #, python-brace-format msgid "{display_type} interfaces cannot be marked as connected." msgstr "" -#: netbox/dcim/models/device_components.py:774 -#: netbox/virtualization/models/virtualmachines.py:390 +#: dcim/models/device_components.py:774 +#: virtualization/models/virtualmachines.py:390 msgid "An interface cannot be its own parent." msgstr "" -#: netbox/dcim/models/device_components.py:778 +#: dcim/models/device_components.py:778 msgid "Only virtual interfaces may be assigned to a parent interface." msgstr "" -#: netbox/dcim/models/device_components.py:785 +#: dcim/models/device_components.py:785 #, python-brace-format msgid "" "The selected parent interface ({interface}) belongs to a different device " "({device})" msgstr "" -#: netbox/dcim/models/device_components.py:791 +#: dcim/models/device_components.py:791 #, python-brace-format msgid "" "The selected parent interface ({interface}) belongs to {device}, which is " "not part of virtual chassis {virtual_chassis}." msgstr "" -#: netbox/dcim/models/device_components.py:811 +#: dcim/models/device_components.py:811 #, python-brace-format msgid "" "The selected bridge interface ({bridge}) belongs to a different device " "({device})." msgstr "" -#: netbox/dcim/models/device_components.py:817 +#: dcim/models/device_components.py:817 #, python-brace-format msgid "" "The selected bridge interface ({interface}) belongs to {device}, which is " "not part of virtual chassis {virtual_chassis}." msgstr "" -#: netbox/dcim/models/device_components.py:828 +#: dcim/models/device_components.py:828 msgid "Virtual interfaces cannot have a parent LAG interface." msgstr "" -#: netbox/dcim/models/device_components.py:832 +#: dcim/models/device_components.py:832 msgid "A LAG interface cannot be its own parent." msgstr "" -#: netbox/dcim/models/device_components.py:839 +#: dcim/models/device_components.py:839 #, python-brace-format msgid "" "The selected LAG interface ({lag}) belongs to a different device ({device})." msgstr "" -#: netbox/dcim/models/device_components.py:845 +#: dcim/models/device_components.py:845 #, python-brace-format msgid "" "The selected LAG interface ({lag}) belongs to {device}, which is not part of " "virtual chassis {virtual_chassis}." msgstr "" -#: netbox/dcim/models/device_components.py:856 +#: dcim/models/device_components.py:856 msgid "Virtual interfaces cannot have a PoE mode." msgstr "" -#: netbox/dcim/models/device_components.py:860 +#: dcim/models/device_components.py:860 msgid "Virtual interfaces cannot have a PoE type." msgstr "" -#: netbox/dcim/models/device_components.py:866 +#: dcim/models/device_components.py:866 msgid "Must specify PoE mode when designating a PoE type." msgstr "" -#: netbox/dcim/models/device_components.py:873 +#: dcim/models/device_components.py:873 msgid "Wireless role may be set only on wireless interfaces." msgstr "" -#: netbox/dcim/models/device_components.py:875 +#: dcim/models/device_components.py:875 msgid "Channel may be set only on wireless interfaces." msgstr "" -#: netbox/dcim/models/device_components.py:881 +#: dcim/models/device_components.py:881 msgid "Channel frequency may be set only on wireless interfaces." msgstr "" -#: netbox/dcim/models/device_components.py:885 +#: dcim/models/device_components.py:885 msgid "Cannot specify custom frequency with channel selected." msgstr "" -#: netbox/dcim/models/device_components.py:891 +#: dcim/models/device_components.py:891 msgid "Channel width may be set only on wireless interfaces." msgstr "" -#: netbox/dcim/models/device_components.py:893 +#: dcim/models/device_components.py:893 msgid "Cannot specify custom width with channel selected." msgstr "" -#: netbox/dcim/models/device_components.py:901 +#: dcim/models/device_components.py:901 #, python-brace-format msgid "" "The untagged VLAN ({untagged_vlan}) must belong to the same site as the " "interface's parent device, or it must be global." msgstr "" -#: netbox/dcim/models/device_components.py:990 +#: dcim/models/device_components.py:990 msgid "Mapped position on corresponding rear port" msgstr "" -#: netbox/dcim/models/device_components.py:1006 +#: dcim/models/device_components.py:1006 msgid "front port" msgstr "" -#: netbox/dcim/models/device_components.py:1007 +#: dcim/models/device_components.py:1007 msgid "front ports" msgstr "" -#: netbox/dcim/models/device_components.py:1021 +#: dcim/models/device_components.py:1021 #, python-brace-format msgid "Rear port ({rear_port}) must belong to the same device" msgstr "" -#: netbox/dcim/models/device_components.py:1029 +#: dcim/models/device_components.py:1029 #, python-brace-format msgid "" "Invalid rear port position ({rear_port_position}): Rear port {name} has only " "{positions} positions." msgstr "" -#: netbox/dcim/models/device_components.py:1059 +#: dcim/models/device_components.py:1059 msgid "Number of front ports which may be mapped" msgstr "" -#: netbox/dcim/models/device_components.py:1064 +#: dcim/models/device_components.py:1064 msgid "rear port" msgstr "" -#: netbox/dcim/models/device_components.py:1065 +#: dcim/models/device_components.py:1065 msgid "rear ports" msgstr "" -#: netbox/dcim/models/device_components.py:1079 +#: dcim/models/device_components.py:1079 #, python-brace-format msgid "" "The number of positions cannot be less than the number of mapped front ports " "({frontport_count})" msgstr "" -#: netbox/dcim/models/device_components.py:1120 +#: dcim/models/device_components.py:1120 msgid "module bay" msgstr "" -#: netbox/dcim/models/device_components.py:1121 +#: dcim/models/device_components.py:1121 msgid "module bays" msgstr "" -#: netbox/dcim/models/device_components.py:1138 -#: netbox/dcim/models/devices.py:1224 +#: dcim/models/device_components.py:1138 dcim/models/devices.py:1224 msgid "A module bay cannot belong to a module installed within it." msgstr "" -#: netbox/dcim/models/device_components.py:1164 +#: dcim/models/device_components.py:1164 msgid "device bay" msgstr "" -#: netbox/dcim/models/device_components.py:1165 +#: dcim/models/device_components.py:1165 msgid "device bays" msgstr "" -#: netbox/dcim/models/device_components.py:1175 +#: dcim/models/device_components.py:1175 #, python-brace-format msgid "This type of device ({device_type}) does not support device bays." msgstr "" -#: netbox/dcim/models/device_components.py:1181 +#: dcim/models/device_components.py:1181 msgid "Cannot install a device into itself." msgstr "" -#: netbox/dcim/models/device_components.py:1189 +#: dcim/models/device_components.py:1189 #, python-brace-format msgid "" "Cannot install the specified device; device is already installed in {bay}." msgstr "" -#: netbox/dcim/models/device_components.py:1210 +#: dcim/models/device_components.py:1210 msgid "inventory item role" msgstr "" -#: netbox/dcim/models/device_components.py:1211 +#: dcim/models/device_components.py:1211 msgid "inventory item roles" msgstr "" -#: netbox/dcim/models/device_components.py:1268 -#: netbox/dcim/models/devices.py:607 netbox/dcim/models/devices.py:1181 -#: netbox/dcim/models/racks.py:313 -#: netbox/virtualization/models/virtualmachines.py:131 +#: dcim/models/device_components.py:1268 dcim/models/devices.py:607 +#: dcim/models/devices.py:1181 dcim/models/racks.py:313 +#: virtualization/models/virtualmachines.py:131 msgid "serial number" msgstr "" -#: netbox/dcim/models/device_components.py:1276 -#: netbox/dcim/models/devices.py:615 netbox/dcim/models/devices.py:1188 -#: netbox/dcim/models/racks.py:320 +#: dcim/models/device_components.py:1276 dcim/models/devices.py:615 +#: dcim/models/devices.py:1188 dcim/models/racks.py:320 msgid "asset tag" msgstr "" -#: netbox/dcim/models/device_components.py:1277 +#: dcim/models/device_components.py:1277 msgid "A unique tag used to identify this item" msgstr "" -#: netbox/dcim/models/device_components.py:1280 +#: dcim/models/device_components.py:1280 msgid "discovered" msgstr "" -#: netbox/dcim/models/device_components.py:1282 +#: dcim/models/device_components.py:1282 msgid "This item was automatically discovered" msgstr "" -#: netbox/dcim/models/device_components.py:1300 +#: dcim/models/device_components.py:1300 msgid "inventory item" msgstr "" -#: netbox/dcim/models/device_components.py:1301 +#: dcim/models/device_components.py:1301 msgid "inventory items" msgstr "" -#: netbox/dcim/models/device_components.py:1312 +#: dcim/models/device_components.py:1312 msgid "Cannot assign self as parent." msgstr "" -#: netbox/dcim/models/device_components.py:1320 +#: dcim/models/device_components.py:1320 msgid "Parent inventory item does not belong to the same device." msgstr "" -#: netbox/dcim/models/device_components.py:1326 +#: dcim/models/device_components.py:1326 msgid "Cannot move an inventory item with dependent children" msgstr "" -#: netbox/dcim/models/device_components.py:1334 +#: dcim/models/device_components.py:1334 msgid "Cannot assign inventory item to component on another device" msgstr "" -#: netbox/dcim/models/devices.py:54 +#: dcim/models/devices.py:54 msgid "manufacturer" msgstr "" -#: netbox/dcim/models/devices.py:55 +#: dcim/models/devices.py:55 msgid "manufacturers" msgstr "" -#: netbox/dcim/models/devices.py:82 netbox/dcim/models/devices.py:382 -#: netbox/dcim/models/racks.py:133 +#: dcim/models/devices.py:82 dcim/models/devices.py:382 +#: dcim/models/racks.py:133 msgid "model" msgstr "" -#: netbox/dcim/models/devices.py:95 +#: dcim/models/devices.py:95 msgid "default platform" msgstr "" -#: netbox/dcim/models/devices.py:98 netbox/dcim/models/devices.py:386 +#: dcim/models/devices.py:98 dcim/models/devices.py:386 msgid "part number" msgstr "" -#: netbox/dcim/models/devices.py:101 netbox/dcim/models/devices.py:389 +#: dcim/models/devices.py:101 dcim/models/devices.py:389 msgid "Discrete part number (optional)" msgstr "" -#: netbox/dcim/models/devices.py:107 netbox/dcim/models/racks.py:54 +#: dcim/models/devices.py:107 dcim/models/racks.py:54 msgid "height (U)" msgstr "" -#: netbox/dcim/models/devices.py:111 +#: dcim/models/devices.py:111 msgid "exclude from utilization" msgstr "" -#: netbox/dcim/models/devices.py:112 +#: dcim/models/devices.py:112 msgid "Devices of this type are excluded when calculating rack utilization." msgstr "" -#: netbox/dcim/models/devices.py:116 +#: dcim/models/devices.py:116 msgid "is full depth" msgstr "" -#: netbox/dcim/models/devices.py:117 +#: dcim/models/devices.py:117 msgid "Device consumes both front and rear rack faces." msgstr "" -#: netbox/dcim/models/devices.py:123 +#: dcim/models/devices.py:123 msgid "parent/child status" msgstr "" -#: netbox/dcim/models/devices.py:124 +#: dcim/models/devices.py:124 msgid "" "Parent devices house child devices in device bays. Leave blank if this " "device type is neither a parent nor a child." msgstr "" -#: netbox/dcim/models/devices.py:128 netbox/dcim/models/devices.py:392 -#: netbox/dcim/models/devices.py:659 netbox/dcim/models/racks.py:324 +#: dcim/models/devices.py:128 dcim/models/devices.py:392 +#: dcim/models/devices.py:659 dcim/models/racks.py:324 msgid "airflow" msgstr "" -#: netbox/dcim/models/devices.py:204 +#: dcim/models/devices.py:204 msgid "device type" msgstr "" -#: netbox/dcim/models/devices.py:205 +#: dcim/models/devices.py:205 msgid "device types" msgstr "" -#: netbox/dcim/models/devices.py:290 +#: dcim/models/devices.py:290 msgid "U height must be in increments of 0.5 rack units." msgstr "" -#: netbox/dcim/models/devices.py:307 +#: dcim/models/devices.py:307 #, python-brace-format msgid "" "Device {device} in rack {rack} does not have sufficient space to accommodate " "a height of {height}U" msgstr "" -#: netbox/dcim/models/devices.py:322 +#: dcim/models/devices.py:322 #, python-brace-format msgid "" "Unable to set 0U height: Found {racked_instance_count} " "instances already mounted within racks." msgstr "" -#: netbox/dcim/models/devices.py:331 +#: dcim/models/devices.py:331 msgid "" "Must delete all device bay templates associated with this device before " "declassifying it as a parent device." msgstr "" -#: netbox/dcim/models/devices.py:337 +#: dcim/models/devices.py:337 msgid "Child device types must be 0U." msgstr "" -#: netbox/dcim/models/devices.py:411 +#: dcim/models/devices.py:411 msgid "module type" msgstr "" -#: netbox/dcim/models/devices.py:412 +#: dcim/models/devices.py:412 msgid "module types" msgstr "" -#: netbox/dcim/models/devices.py:485 +#: dcim/models/devices.py:485 msgid "Virtual machines may be assigned to this role" msgstr "" -#: netbox/dcim/models/devices.py:497 +#: dcim/models/devices.py:497 msgid "device role" msgstr "" -#: netbox/dcim/models/devices.py:498 +#: dcim/models/devices.py:498 msgid "device roles" msgstr "" -#: netbox/dcim/models/devices.py:515 +#: dcim/models/devices.py:515 msgid "Optionally limit this platform to devices of a certain manufacturer" msgstr "" -#: netbox/dcim/models/devices.py:527 +#: dcim/models/devices.py:527 msgid "platform" msgstr "" -#: netbox/dcim/models/devices.py:528 +#: dcim/models/devices.py:528 msgid "platforms" msgstr "" -#: netbox/dcim/models/devices.py:576 +#: dcim/models/devices.py:576 msgid "The function this device serves" msgstr "" -#: netbox/dcim/models/devices.py:608 +#: dcim/models/devices.py:608 msgid "Chassis serial number, assigned by the manufacturer" msgstr "" -#: netbox/dcim/models/devices.py:616 netbox/dcim/models/devices.py:1189 +#: dcim/models/devices.py:616 dcim/models/devices.py:1189 msgid "A unique tag used to identify this device" msgstr "" -#: netbox/dcim/models/devices.py:643 +#: dcim/models/devices.py:643 msgid "position (U)" msgstr "" -#: netbox/dcim/models/devices.py:650 +#: dcim/models/devices.py:650 msgid "rack face" msgstr "" -#: netbox/dcim/models/devices.py:670 netbox/dcim/models/devices.py:1415 -#: netbox/virtualization/models/virtualmachines.py:100 +#: dcim/models/devices.py:670 dcim/models/devices.py:1415 +#: virtualization/models/virtualmachines.py:100 msgid "primary IPv4" msgstr "" -#: netbox/dcim/models/devices.py:678 netbox/dcim/models/devices.py:1423 -#: netbox/virtualization/models/virtualmachines.py:108 +#: dcim/models/devices.py:678 dcim/models/devices.py:1423 +#: virtualization/models/virtualmachines.py:108 msgid "primary IPv6" msgstr "" -#: netbox/dcim/models/devices.py:686 +#: dcim/models/devices.py:686 msgid "out-of-band IP" msgstr "" -#: netbox/dcim/models/devices.py:703 +#: dcim/models/devices.py:703 msgid "VC position" msgstr "" -#: netbox/dcim/models/devices.py:706 +#: dcim/models/devices.py:706 msgid "Virtual chassis position" msgstr "" -#: netbox/dcim/models/devices.py:709 +#: dcim/models/devices.py:709 msgid "VC priority" msgstr "" -#: netbox/dcim/models/devices.py:713 +#: dcim/models/devices.py:713 msgid "Virtual chassis master election priority" msgstr "" -#: netbox/dcim/models/devices.py:716 netbox/dcim/models/sites.py:207 +#: dcim/models/devices.py:716 dcim/models/sites.py:207 msgid "latitude" msgstr "" -#: netbox/dcim/models/devices.py:721 netbox/dcim/models/devices.py:729 -#: netbox/dcim/models/sites.py:212 netbox/dcim/models/sites.py:220 +#: dcim/models/devices.py:721 dcim/models/devices.py:729 +#: dcim/models/sites.py:212 dcim/models/sites.py:220 msgid "GPS coordinate in decimal format (xx.yyyyyy)" msgstr "" -#: netbox/dcim/models/devices.py:724 netbox/dcim/models/sites.py:215 +#: dcim/models/devices.py:724 dcim/models/sites.py:215 msgid "longitude" msgstr "" -#: netbox/dcim/models/devices.py:797 +#: dcim/models/devices.py:797 msgid "Device name must be unique per site." msgstr "" -#: netbox/dcim/models/devices.py:808 netbox/ipam/models/services.py:75 +#: dcim/models/devices.py:808 ipam/models/services.py:75 msgid "device" msgstr "" -#: netbox/dcim/models/devices.py:809 +#: dcim/models/devices.py:809 msgid "devices" msgstr "" -#: netbox/dcim/models/devices.py:835 +#: dcim/models/devices.py:835 #, python-brace-format msgid "Rack {rack} does not belong to site {site}." msgstr "" -#: netbox/dcim/models/devices.py:840 +#: dcim/models/devices.py:840 #, python-brace-format msgid "Location {location} does not belong to site {site}." msgstr "" -#: netbox/dcim/models/devices.py:846 +#: dcim/models/devices.py:846 #, python-brace-format msgid "Rack {rack} does not belong to location {location}." msgstr "" -#: netbox/dcim/models/devices.py:853 +#: dcim/models/devices.py:853 msgid "Cannot select a rack face without assigning a rack." msgstr "" -#: netbox/dcim/models/devices.py:857 +#: dcim/models/devices.py:857 msgid "Cannot select a rack position without assigning a rack." msgstr "" -#: netbox/dcim/models/devices.py:863 +#: dcim/models/devices.py:863 msgid "Position must be in increments of 0.5 rack units." msgstr "" -#: netbox/dcim/models/devices.py:867 +#: dcim/models/devices.py:867 msgid "Must specify rack face when defining rack position." msgstr "" -#: netbox/dcim/models/devices.py:875 +#: dcim/models/devices.py:875 #, python-brace-format msgid "A 0U device type ({device_type}) cannot be assigned to a rack position." msgstr "" -#: netbox/dcim/models/devices.py:886 +#: dcim/models/devices.py:886 msgid "" "Child device types cannot be assigned to a rack face. This is an attribute " "of the parent device." msgstr "" -#: netbox/dcim/models/devices.py:893 +#: dcim/models/devices.py:893 msgid "" "Child device types cannot be assigned to a rack position. This is an " "attribute of the parent device." msgstr "" -#: netbox/dcim/models/devices.py:907 +#: dcim/models/devices.py:907 #, python-brace-format msgid "" "U{position} is already occupied or does not have sufficient space to " "accommodate this device type: {device_type} ({u_height}U)" msgstr "" -#: netbox/dcim/models/devices.py:922 +#: dcim/models/devices.py:922 #, python-brace-format msgid "{ip} is not an IPv4 address." msgstr "" -#: netbox/dcim/models/devices.py:931 netbox/dcim/models/devices.py:946 +#: dcim/models/devices.py:931 dcim/models/devices.py:946 #, python-brace-format msgid "The specified IP address ({ip}) is not assigned to this device." msgstr "" -#: netbox/dcim/models/devices.py:937 +#: dcim/models/devices.py:937 #, python-brace-format msgid "{ip} is not an IPv6 address." msgstr "" -#: netbox/dcim/models/devices.py:964 +#: dcim/models/devices.py:964 #, python-brace-format msgid "" "The assigned platform is limited to {platform_manufacturer} device types, " "but this device's type belongs to {devicetype_manufacturer}." msgstr "" -#: netbox/dcim/models/devices.py:975 +#: dcim/models/devices.py:975 #, python-brace-format msgid "The assigned cluster belongs to a different site ({site})" msgstr "" -#: netbox/dcim/models/devices.py:983 +#: dcim/models/devices.py:983 msgid "A device assigned to a virtual chassis must have its position defined." msgstr "" -#: netbox/dcim/models/devices.py:988 +#: dcim/models/devices.py:988 #, python-brace-format msgid "" "Device cannot be removed from virtual chassis {virtual_chassis} because it " "is currently designated as its master." msgstr "" -#: netbox/dcim/models/devices.py:1196 +#: dcim/models/devices.py:1196 msgid "module" msgstr "" -#: netbox/dcim/models/devices.py:1197 +#: dcim/models/devices.py:1197 msgid "modules" msgstr "" -#: netbox/dcim/models/devices.py:1213 +#: dcim/models/devices.py:1213 #, python-brace-format msgid "" "Module must be installed within a module bay belonging to the assigned " "device ({device})." msgstr "" -#: netbox/dcim/models/devices.py:1334 +#: dcim/models/devices.py:1334 msgid "domain" msgstr "" -#: netbox/dcim/models/devices.py:1347 netbox/dcim/models/devices.py:1348 +#: dcim/models/devices.py:1347 dcim/models/devices.py:1348 msgid "virtual chassis" msgstr "" -#: netbox/dcim/models/devices.py:1363 +#: dcim/models/devices.py:1363 #, python-brace-format msgid "The selected master ({master}) is not assigned to this virtual chassis." msgstr "" -#: netbox/dcim/models/devices.py:1379 +#: dcim/models/devices.py:1379 #, python-brace-format msgid "" "Unable to delete virtual chassis {self}. There are member interfaces which " "form a cross-chassis LAG interfaces." msgstr "" -#: netbox/dcim/models/devices.py:1404 netbox/vpn/models/l2vpn.py:37 +#: dcim/models/devices.py:1404 vpn/models/l2vpn.py:37 msgid "identifier" msgstr "" -#: netbox/dcim/models/devices.py:1405 +#: dcim/models/devices.py:1405 msgid "Numeric identifier unique to the parent device" msgstr "" -#: netbox/dcim/models/devices.py:1433 netbox/extras/models/customfields.py:225 -#: netbox/extras/models/models.py:107 netbox/extras/models/models.py:694 -#: netbox/netbox/models/__init__.py:115 +#: dcim/models/devices.py:1433 extras/models/customfields.py:225 +#: extras/models/models.py:107 extras/models/models.py:694 +#: netbox/models/__init__.py:115 msgid "comments" msgstr "" -#: netbox/dcim/models/devices.py:1449 +#: dcim/models/devices.py:1449 msgid "virtual device context" msgstr "" -#: netbox/dcim/models/devices.py:1450 +#: dcim/models/devices.py:1450 msgid "virtual device contexts" msgstr "" -#: netbox/dcim/models/devices.py:1482 +#: dcim/models/devices.py:1482 #, python-brace-format msgid "{ip} is not an IPv{family} address." msgstr "" -#: netbox/dcim/models/devices.py:1488 +#: dcim/models/devices.py:1488 msgid "Primary IP address must belong to an interface on the assigned device." msgstr "" -#: netbox/dcim/models/mixins.py:15 netbox/extras/models/configs.py:41 -#: netbox/extras/models/models.py:313 netbox/extras/models/models.py:522 -#: netbox/extras/models/search.py:48 netbox/ipam/models/ip.py:194 +#: dcim/models/mixins.py:15 extras/models/configs.py:41 +#: extras/models/models.py:313 extras/models/models.py:522 +#: extras/models/search.py:48 ipam/models/ip.py:194 msgid "weight" msgstr "" -#: netbox/dcim/models/mixins.py:22 +#: dcim/models/mixins.py:22 msgid "weight unit" msgstr "" -#: netbox/dcim/models/mixins.py:51 +#: dcim/models/mixins.py:51 msgid "Must specify a unit when setting a weight" msgstr "" -#: netbox/dcim/models/power.py:55 +#: dcim/models/power.py:55 msgid "power panel" msgstr "" -#: netbox/dcim/models/power.py:56 +#: dcim/models/power.py:56 msgid "power panels" msgstr "" -#: netbox/dcim/models/power.py:70 +#: dcim/models/power.py:70 #, python-brace-format msgid "" "Location {location} ({location_site}) is in a different site than {site}" msgstr "" -#: netbox/dcim/models/power.py:108 +#: dcim/models/power.py:108 msgid "supply" msgstr "" -#: netbox/dcim/models/power.py:114 +#: dcim/models/power.py:114 msgid "phase" msgstr "" -#: netbox/dcim/models/power.py:120 +#: dcim/models/power.py:120 msgid "voltage" msgstr "" -#: netbox/dcim/models/power.py:125 +#: dcim/models/power.py:125 msgid "amperage" msgstr "" -#: netbox/dcim/models/power.py:130 +#: dcim/models/power.py:130 msgid "max utilization" msgstr "" -#: netbox/dcim/models/power.py:133 +#: dcim/models/power.py:133 msgid "Maximum permissible draw (percentage)" msgstr "" -#: netbox/dcim/models/power.py:136 +#: dcim/models/power.py:136 msgid "available power" msgstr "" -#: netbox/dcim/models/power.py:164 +#: dcim/models/power.py:164 msgid "power feed" msgstr "" -#: netbox/dcim/models/power.py:165 +#: dcim/models/power.py:165 msgid "power feeds" msgstr "" -#: netbox/dcim/models/power.py:179 +#: dcim/models/power.py:179 #, python-brace-format msgid "" "Rack {rack} ({rack_site}) and power panel {powerpanel} ({powerpanel_site}) " "are in different sites." msgstr "" -#: netbox/dcim/models/power.py:190 +#: dcim/models/power.py:190 msgid "Voltage cannot be negative for AC supply" msgstr "" -#: netbox/dcim/models/racks.py:47 +#: dcim/models/racks.py:47 msgid "width" msgstr "" -#: netbox/dcim/models/racks.py:48 +#: dcim/models/racks.py:48 msgid "Rail-to-rail width" msgstr "" -#: netbox/dcim/models/racks.py:56 +#: dcim/models/racks.py:56 msgid "Height in rack units" msgstr "" -#: netbox/dcim/models/racks.py:60 +#: dcim/models/racks.py:60 msgid "starting unit" msgstr "" -#: netbox/dcim/models/racks.py:62 +#: dcim/models/racks.py:62 msgid "Starting unit for rack" msgstr "" -#: netbox/dcim/models/racks.py:66 +#: dcim/models/racks.py:66 msgid "descending units" msgstr "" -#: netbox/dcim/models/racks.py:67 +#: dcim/models/racks.py:67 msgid "Units are numbered top-to-bottom" msgstr "" -#: netbox/dcim/models/racks.py:72 +#: dcim/models/racks.py:72 msgid "outer width" msgstr "" -#: netbox/dcim/models/racks.py:75 +#: dcim/models/racks.py:75 msgid "Outer dimension of rack (width)" msgstr "" -#: netbox/dcim/models/racks.py:78 +#: dcim/models/racks.py:78 msgid "outer depth" msgstr "" -#: netbox/dcim/models/racks.py:81 +#: dcim/models/racks.py:81 msgid "Outer dimension of rack (depth)" msgstr "" -#: netbox/dcim/models/racks.py:84 +#: dcim/models/racks.py:84 msgid "outer unit" msgstr "" -#: netbox/dcim/models/racks.py:90 +#: dcim/models/racks.py:90 msgid "mounting depth" msgstr "" -#: netbox/dcim/models/racks.py:94 +#: dcim/models/racks.py:94 msgid "" "Maximum depth of a mounted device, in millimeters. For four-post racks, this " "is the distance between the front and rear rails." msgstr "" -#: netbox/dcim/models/racks.py:102 +#: dcim/models/racks.py:102 msgid "max weight" msgstr "" -#: netbox/dcim/models/racks.py:105 +#: dcim/models/racks.py:105 msgid "Maximum load capacity for the rack" msgstr "" -#: netbox/dcim/models/racks.py:125 netbox/dcim/models/racks.py:252 +#: dcim/models/racks.py:125 dcim/models/racks.py:252 msgid "form factor" msgstr "" -#: netbox/dcim/models/racks.py:162 +#: dcim/models/racks.py:162 msgid "rack type" msgstr "" -#: netbox/dcim/models/racks.py:163 +#: dcim/models/racks.py:163 msgid "rack types" msgstr "" -#: netbox/dcim/models/racks.py:180 netbox/dcim/models/racks.py:379 +#: dcim/models/racks.py:180 dcim/models/racks.py:379 msgid "Must specify a unit when setting an outer width/depth" msgstr "" -#: netbox/dcim/models/racks.py:184 netbox/dcim/models/racks.py:383 +#: dcim/models/racks.py:184 dcim/models/racks.py:383 msgid "Must specify a unit when setting a maximum weight" msgstr "" -#: netbox/dcim/models/racks.py:230 +#: dcim/models/racks.py:230 msgid "rack role" msgstr "" -#: netbox/dcim/models/racks.py:231 +#: dcim/models/racks.py:231 msgid "rack roles" msgstr "" -#: netbox/dcim/models/racks.py:274 +#: dcim/models/racks.py:274 msgid "facility ID" msgstr "" -#: netbox/dcim/models/racks.py:275 +#: dcim/models/racks.py:275 msgid "Locally-assigned identifier" msgstr "" -#: netbox/dcim/models/racks.py:308 netbox/ipam/forms/bulk_import.py:201 -#: netbox/ipam/forms/bulk_import.py:266 netbox/ipam/forms/bulk_import.py:301 -#: netbox/ipam/forms/bulk_import.py:459 -#: netbox/virtualization/forms/bulk_import.py:112 +#: dcim/models/racks.py:308 ipam/forms/bulk_import.py:201 +#: ipam/forms/bulk_import.py:266 ipam/forms/bulk_import.py:301 +#: ipam/forms/bulk_import.py:459 virtualization/forms/bulk_import.py:112 msgid "Functional role" msgstr "" -#: netbox/dcim/models/racks.py:321 +#: dcim/models/racks.py:321 msgid "A unique tag used to identify this rack" msgstr "" -#: netbox/dcim/models/racks.py:359 +#: dcim/models/racks.py:359 msgid "rack" msgstr "" -#: netbox/dcim/models/racks.py:360 +#: dcim/models/racks.py:360 msgid "racks" msgstr "" -#: netbox/dcim/models/racks.py:375 +#: dcim/models/racks.py:375 #, python-brace-format msgid "Assigned location must belong to parent site ({site})." msgstr "" -#: netbox/dcim/models/racks.py:393 +#: dcim/models/racks.py:393 #, python-brace-format msgid "" "Rack must be at least {min_height}U tall to house currently installed " "devices." msgstr "" -#: netbox/dcim/models/racks.py:400 +#: dcim/models/racks.py:400 #, python-brace-format msgid "" "Rack unit numbering must begin at {position} or less to house currently " "installed devices." msgstr "" -#: netbox/dcim/models/racks.py:408 +#: dcim/models/racks.py:408 #, python-brace-format msgid "Location must be from the same site, {site}." msgstr "" -#: netbox/dcim/models/racks.py:670 +#: dcim/models/racks.py:670 msgid "units" msgstr "" -#: netbox/dcim/models/racks.py:696 +#: dcim/models/racks.py:696 msgid "rack reservation" msgstr "" -#: netbox/dcim/models/racks.py:697 +#: dcim/models/racks.py:697 msgid "rack reservations" msgstr "" -#: netbox/dcim/models/racks.py:714 +#: dcim/models/racks.py:714 #, python-brace-format msgid "Invalid unit(s) for {height}U rack: {unit_list}" msgstr "" -#: netbox/dcim/models/racks.py:727 +#: dcim/models/racks.py:727 #, python-brace-format msgid "The following units have already been reserved: {unit_list}" msgstr "" -#: netbox/dcim/models/sites.py:49 +#: dcim/models/sites.py:49 msgid "A top-level region with this name already exists." msgstr "" -#: netbox/dcim/models/sites.py:59 +#: dcim/models/sites.py:59 msgid "A top-level region with this slug already exists." msgstr "" -#: netbox/dcim/models/sites.py:62 +#: dcim/models/sites.py:62 msgid "region" msgstr "" -#: netbox/dcim/models/sites.py:63 +#: dcim/models/sites.py:63 msgid "regions" msgstr "" -#: netbox/dcim/models/sites.py:102 +#: dcim/models/sites.py:102 msgid "A top-level site group with this name already exists." msgstr "" -#: netbox/dcim/models/sites.py:112 +#: dcim/models/sites.py:112 msgid "A top-level site group with this slug already exists." msgstr "" -#: netbox/dcim/models/sites.py:115 +#: dcim/models/sites.py:115 msgid "site group" msgstr "" -#: netbox/dcim/models/sites.py:116 +#: dcim/models/sites.py:116 msgid "site groups" msgstr "" -#: netbox/dcim/models/sites.py:141 +#: dcim/models/sites.py:141 msgid "Full name of the site" msgstr "" -#: netbox/dcim/models/sites.py:181 netbox/dcim/models/sites.py:279 +#: dcim/models/sites.py:181 dcim/models/sites.py:279 msgid "facility" msgstr "" -#: netbox/dcim/models/sites.py:184 netbox/dcim/models/sites.py:282 +#: dcim/models/sites.py:184 dcim/models/sites.py:282 msgid "Local facility ID or description" msgstr "" -#: netbox/dcim/models/sites.py:195 +#: dcim/models/sites.py:195 msgid "physical address" msgstr "" -#: netbox/dcim/models/sites.py:198 +#: dcim/models/sites.py:198 msgid "Physical location of the building" msgstr "" -#: netbox/dcim/models/sites.py:201 +#: dcim/models/sites.py:201 msgid "shipping address" msgstr "" -#: netbox/dcim/models/sites.py:204 +#: dcim/models/sites.py:204 msgid "If different from the physical address" msgstr "" -#: netbox/dcim/models/sites.py:238 +#: dcim/models/sites.py:238 msgid "site" msgstr "" -#: netbox/dcim/models/sites.py:239 +#: dcim/models/sites.py:239 msgid "sites" msgstr "" -#: netbox/dcim/models/sites.py:309 +#: dcim/models/sites.py:309 msgid "A location with this name already exists within the specified site." msgstr "" -#: netbox/dcim/models/sites.py:319 +#: dcim/models/sites.py:319 msgid "A location with this slug already exists within the specified site." msgstr "" -#: netbox/dcim/models/sites.py:322 +#: dcim/models/sites.py:322 msgid "location" msgstr "" -#: netbox/dcim/models/sites.py:323 +#: dcim/models/sites.py:323 msgid "locations" msgstr "" -#: netbox/dcim/models/sites.py:337 +#: dcim/models/sites.py:337 #, python-brace-format msgid "Parent location ({parent}) must belong to the same site ({site})." msgstr "" -#: netbox/dcim/tables/cables.py:55 +#: dcim/tables/cables.py:55 msgid "Termination A" msgstr "" -#: netbox/dcim/tables/cables.py:60 +#: dcim/tables/cables.py:60 msgid "Termination B" msgstr "" -#: netbox/dcim/tables/cables.py:66 netbox/wireless/tables/wirelesslink.py:23 +#: dcim/tables/cables.py:66 wireless/tables/wirelesslink.py:23 msgid "Device A" msgstr "" -#: netbox/dcim/tables/cables.py:72 netbox/wireless/tables/wirelesslink.py:32 +#: dcim/tables/cables.py:72 wireless/tables/wirelesslink.py:32 msgid "Device B" msgstr "" -#: netbox/dcim/tables/cables.py:78 +#: dcim/tables/cables.py:78 msgid "Location A" msgstr "" -#: netbox/dcim/tables/cables.py:84 +#: dcim/tables/cables.py:84 msgid "Location B" msgstr "" -#: netbox/dcim/tables/cables.py:90 +#: dcim/tables/cables.py:90 msgid "Rack A" msgstr "" -#: netbox/dcim/tables/cables.py:96 +#: dcim/tables/cables.py:96 msgid "Rack B" msgstr "" -#: netbox/dcim/tables/cables.py:102 +#: dcim/tables/cables.py:102 msgid "Site A" msgstr "" -#: netbox/dcim/tables/cables.py:108 +#: dcim/tables/cables.py:108 msgid "Site B" msgstr "" -#: netbox/dcim/tables/connections.py:31 netbox/dcim/tables/connections.py:50 -#: netbox/dcim/tables/connections.py:71 -#: netbox/templates/dcim/inc/connection_endpoints.html:16 +#: dcim/tables/connections.py:31 dcim/tables/connections.py:50 +#: dcim/tables/connections.py:71 +#: templates/dcim/inc/connection_endpoints.html:16 msgid "Reachable" msgstr "" -#: netbox/dcim/tables/devices.py:58 netbox/dcim/tables/devices.py:106 -#: netbox/dcim/tables/racks.py:150 netbox/dcim/tables/sites.py:105 -#: netbox/dcim/tables/sites.py:148 netbox/extras/tables/tables.py:545 -#: netbox/netbox/navigation/menu.py:69 netbox/netbox/navigation/menu.py:73 -#: netbox/netbox/navigation/menu.py:75 -#: netbox/virtualization/forms/model_forms.py:122 -#: netbox/virtualization/tables/clusters.py:83 -#: netbox/virtualization/views.py:206 +#: dcim/tables/devices.py:58 dcim/tables/devices.py:106 +#: dcim/tables/racks.py:150 dcim/tables/sites.py:105 dcim/tables/sites.py:148 +#: extras/tables/tables.py:545 netbox/navigation/menu.py:69 +#: netbox/navigation/menu.py:73 netbox/navigation/menu.py:75 +#: virtualization/forms/model_forms.py:122 virtualization/tables/clusters.py:83 +#: virtualization/views.py:206 msgid "Devices" msgstr "" -#: netbox/dcim/tables/devices.py:63 netbox/dcim/tables/devices.py:111 -#: netbox/virtualization/tables/clusters.py:88 +#: dcim/tables/devices.py:63 dcim/tables/devices.py:111 +#: virtualization/tables/clusters.py:88 msgid "VMs" msgstr "" -#: netbox/dcim/tables/devices.py:100 netbox/dcim/tables/devices.py:216 -#: netbox/extras/forms/model_forms.py:630 netbox/templates/dcim/device.html:112 -#: netbox/templates/dcim/device/render_config.html:11 -#: netbox/templates/dcim/device/render_config.html:14 -#: netbox/templates/dcim/devicerole.html:44 -#: netbox/templates/dcim/platform.html:41 -#: netbox/templates/extras/configtemplate.html:10 -#: netbox/templates/virtualization/virtualmachine.html:48 -#: netbox/templates/virtualization/virtualmachine/render_config.html:11 -#: netbox/templates/virtualization/virtualmachine/render_config.html:14 -#: netbox/virtualization/tables/virtualmachines.py:107 +#: dcim/tables/devices.py:100 dcim/tables/devices.py:216 +#: extras/forms/model_forms.py:630 templates/dcim/device.html:112 +#: templates/dcim/device/render_config.html:11 +#: templates/dcim/device/render_config.html:14 +#: templates/dcim/devicerole.html:44 templates/dcim/platform.html:41 +#: templates/extras/configtemplate.html:10 +#: templates/virtualization/virtualmachine.html:48 +#: templates/virtualization/virtualmachine/render_config.html:11 +#: templates/virtualization/virtualmachine/render_config.html:14 +#: virtualization/tables/virtualmachines.py:107 msgid "Config Template" msgstr "" -#: netbox/dcim/tables/devices.py:150 netbox/templates/dcim/sitegroup.html:26 +#: dcim/tables/devices.py:150 templates/dcim/sitegroup.html:26 msgid "Site Group" msgstr "" -#: netbox/dcim/tables/devices.py:187 netbox/dcim/tables/devices.py:1068 -#: netbox/ipam/forms/bulk_import.py:503 netbox/ipam/forms/model_forms.py:306 -#: netbox/ipam/forms/model_forms.py:315 netbox/ipam/tables/ip.py:356 -#: netbox/ipam/tables/ip.py:423 netbox/ipam/tables/ip.py:446 -#: netbox/templates/ipam/ipaddress.html:11 -#: netbox/virtualization/tables/virtualmachines.py:95 +#: dcim/tables/devices.py:187 dcim/tables/devices.py:1068 +#: ipam/forms/bulk_import.py:503 ipam/forms/model_forms.py:306 +#: ipam/forms/model_forms.py:315 ipam/tables/ip.py:356 ipam/tables/ip.py:423 +#: ipam/tables/ip.py:446 templates/ipam/ipaddress.html:11 +#: virtualization/tables/virtualmachines.py:95 msgid "IP Address" msgstr "" -#: netbox/dcim/tables/devices.py:191 netbox/dcim/tables/devices.py:1072 -#: netbox/virtualization/tables/virtualmachines.py:86 +#: dcim/tables/devices.py:191 dcim/tables/devices.py:1072 +#: virtualization/tables/virtualmachines.py:86 msgid "IPv4 Address" msgstr "" -#: netbox/dcim/tables/devices.py:195 netbox/dcim/tables/devices.py:1076 -#: netbox/virtualization/tables/virtualmachines.py:90 +#: dcim/tables/devices.py:195 dcim/tables/devices.py:1076 +#: virtualization/tables/virtualmachines.py:90 msgid "IPv6 Address" msgstr "" -#: netbox/dcim/tables/devices.py:210 +#: dcim/tables/devices.py:210 msgid "VC Position" msgstr "" -#: netbox/dcim/tables/devices.py:213 +#: dcim/tables/devices.py:213 msgid "VC Priority" msgstr "" -#: netbox/dcim/tables/devices.py:220 netbox/templates/dcim/device_edit.html:38 -#: netbox/templates/dcim/devicebay_populate.html:16 +#: dcim/tables/devices.py:220 templates/dcim/device_edit.html:38 +#: templates/dcim/devicebay_populate.html:16 msgid "Parent Device" msgstr "" -#: netbox/dcim/tables/devices.py:225 +#: dcim/tables/devices.py:225 msgid "Position (Device Bay)" msgstr "" -#: netbox/dcim/tables/devices.py:234 +#: dcim/tables/devices.py:234 msgid "Console ports" msgstr "" -#: netbox/dcim/tables/devices.py:237 +#: dcim/tables/devices.py:237 msgid "Console server ports" msgstr "" -#: netbox/dcim/tables/devices.py:240 +#: dcim/tables/devices.py:240 msgid "Power ports" msgstr "" -#: netbox/dcim/tables/devices.py:243 +#: dcim/tables/devices.py:243 msgid "Power outlets" msgstr "" -#: netbox/dcim/tables/devices.py:246 netbox/dcim/tables/devices.py:1081 -#: netbox/dcim/tables/devicetypes.py:128 netbox/dcim/views.py:1042 -#: netbox/dcim/views.py:1281 netbox/dcim/views.py:1977 -#: netbox/netbox/navigation/menu.py:94 netbox/netbox/navigation/menu.py:250 -#: netbox/templates/dcim/device/base.html:37 -#: netbox/templates/dcim/device_list.html:43 -#: netbox/templates/dcim/devicetype/base.html:34 -#: netbox/templates/dcim/module.html:34 -#: netbox/templates/dcim/moduletype/base.html:34 -#: netbox/templates/dcim/virtualdevicecontext.html:61 -#: netbox/templates/dcim/virtualdevicecontext.html:81 -#: netbox/templates/virtualization/virtualmachine/base.html:27 -#: netbox/templates/virtualization/virtualmachine_list.html:14 -#: netbox/virtualization/tables/virtualmachines.py:101 -#: netbox/virtualization/views.py:366 netbox/wireless/tables/wirelesslan.py:55 +#: dcim/tables/devices.py:246 dcim/tables/devices.py:1081 +#: dcim/tables/devicetypes.py:128 dcim/views.py:1042 dcim/views.py:1281 +#: dcim/views.py:1977 netbox/navigation/menu.py:94 +#: netbox/navigation/menu.py:250 templates/dcim/device/base.html:37 +#: templates/dcim/device_list.html:43 templates/dcim/devicetype/base.html:34 +#: templates/dcim/inc/moduletype_buttons.html:25 templates/dcim/module.html:34 +#: templates/dcim/virtualdevicecontext.html:61 +#: templates/dcim/virtualdevicecontext.html:81 +#: templates/virtualization/virtualmachine/base.html:27 +#: templates/virtualization/virtualmachine_list.html:14 +#: virtualization/tables/virtualmachines.py:101 virtualization/views.py:366 +#: wireless/tables/wirelesslan.py:55 msgid "Interfaces" msgstr "" -#: netbox/dcim/tables/devices.py:249 +#: dcim/tables/devices.py:249 msgid "Front ports" msgstr "" -#: netbox/dcim/tables/devices.py:255 +#: dcim/tables/devices.py:255 msgid "Device bays" msgstr "" -#: netbox/dcim/tables/devices.py:258 +#: dcim/tables/devices.py:258 msgid "Module bays" msgstr "" -#: netbox/dcim/tables/devices.py:261 +#: dcim/tables/devices.py:261 msgid "Inventory items" msgstr "" -#: netbox/dcim/tables/devices.py:305 netbox/dcim/tables/modules.py:56 -#: netbox/templates/dcim/modulebay.html:17 +#: dcim/tables/devices.py:305 dcim/tables/modules.py:56 +#: templates/dcim/modulebay.html:17 msgid "Module Bay" msgstr "" -#: netbox/dcim/tables/devices.py:318 netbox/dcim/tables/devicetypes.py:47 -#: netbox/dcim/tables/devicetypes.py:143 netbox/dcim/views.py:1117 -#: netbox/dcim/views.py:2075 netbox/netbox/navigation/menu.py:103 -#: netbox/templates/dcim/device/base.html:52 -#: netbox/templates/dcim/device_list.html:71 -#: netbox/templates/dcim/devicetype/base.html:49 -#: netbox/templates/dcim/inc/panels/inventory_items.html:6 -#: netbox/templates/dcim/inventoryitemrole.html:32 +#: dcim/tables/devices.py:318 dcim/tables/devicetypes.py:47 +#: dcim/tables/devicetypes.py:143 dcim/views.py:1117 dcim/views.py:2075 +#: netbox/navigation/menu.py:103 templates/dcim/device/base.html:52 +#: templates/dcim/device_list.html:71 templates/dcim/devicetype/base.html:49 +#: templates/dcim/inc/panels/inventory_items.html:6 +#: templates/dcim/inventoryitemrole.html:32 msgid "Inventory Items" msgstr "" -#: netbox/dcim/tables/devices.py:333 +#: dcim/tables/devices.py:333 msgid "Cable Color" msgstr "" -#: netbox/dcim/tables/devices.py:339 +#: dcim/tables/devices.py:339 msgid "Link Peers" msgstr "" -#: netbox/dcim/tables/devices.py:342 +#: dcim/tables/devices.py:342 msgid "Mark Connected" msgstr "" -#: netbox/dcim/tables/devices.py:461 +#: dcim/tables/devices.py:461 msgid "Maximum draw (W)" msgstr "" -#: netbox/dcim/tables/devices.py:464 +#: dcim/tables/devices.py:464 msgid "Allocated draw (W)" msgstr "" -#: netbox/dcim/tables/devices.py:558 netbox/ipam/forms/model_forms.py:701 -#: netbox/ipam/tables/fhrp.py:28 netbox/ipam/views.py:596 -#: netbox/ipam/views.py:696 netbox/netbox/navigation/menu.py:158 -#: netbox/netbox/navigation/menu.py:160 -#: netbox/templates/dcim/interface.html:339 -#: netbox/templates/ipam/ipaddress_bulk_add.html:15 -#: netbox/templates/ipam/service.html:40 -#: netbox/templates/virtualization/vminterface.html:85 -#: netbox/vpn/tables/tunnels.py:98 +#: dcim/tables/devices.py:558 ipam/forms/model_forms.py:701 +#: ipam/tables/fhrp.py:28 ipam/views.py:596 ipam/views.py:696 +#: netbox/navigation/menu.py:158 netbox/navigation/menu.py:160 +#: templates/dcim/interface.html:339 templates/ipam/ipaddress_bulk_add.html:15 +#: templates/ipam/service.html:40 templates/virtualization/vminterface.html:85 +#: vpn/tables/tunnels.py:98 msgid "IP Addresses" msgstr "" -#: netbox/dcim/tables/devices.py:564 netbox/netbox/navigation/menu.py:202 -#: netbox/templates/ipam/inc/panels/fhrp_groups.html:6 +#: dcim/tables/devices.py:564 netbox/navigation/menu.py:202 +#: templates/ipam/inc/panels/fhrp_groups.html:6 msgid "FHRP Groups" msgstr "" -#: netbox/dcim/tables/devices.py:576 netbox/templates/dcim/interface.html:89 -#: netbox/templates/virtualization/vminterface.html:67 -#: netbox/templates/vpn/tunnel.html:18 -#: netbox/templates/vpn/tunneltermination.html:13 -#: netbox/vpn/forms/bulk_edit.py:76 netbox/vpn/forms/bulk_import.py:76 -#: netbox/vpn/forms/filtersets.py:42 netbox/vpn/forms/filtersets.py:82 -#: netbox/vpn/forms/model_forms.py:60 netbox/vpn/forms/model_forms.py:145 -#: netbox/vpn/tables/tunnels.py:78 +#: dcim/tables/devices.py:576 templates/dcim/interface.html:89 +#: templates/virtualization/vminterface.html:67 templates/vpn/tunnel.html:18 +#: templates/vpn/tunneltermination.html:13 vpn/forms/bulk_edit.py:76 +#: vpn/forms/bulk_import.py:76 vpn/forms/filtersets.py:42 +#: vpn/forms/filtersets.py:82 vpn/forms/model_forms.py:60 +#: vpn/forms/model_forms.py:145 vpn/tables/tunnels.py:78 msgid "Tunnel" msgstr "" -#: netbox/dcim/tables/devices.py:604 netbox/dcim/tables/devicetypes.py:227 -#: netbox/templates/dcim/interface.html:65 +#: dcim/tables/devices.py:604 dcim/tables/devicetypes.py:227 +#: templates/dcim/interface.html:65 msgid "Management Only" msgstr "" -#: netbox/dcim/tables/devices.py:623 +#: dcim/tables/devices.py:623 msgid "VDCs" msgstr "" -#: netbox/dcim/tables/devices.py:873 netbox/templates/dcim/modulebay.html:53 +#: dcim/tables/devices.py:873 templates/dcim/modulebay.html:53 msgid "Installed Module" msgstr "" -#: netbox/dcim/tables/devices.py:876 +#: dcim/tables/devices.py:876 msgid "Module Serial" msgstr "" -#: netbox/dcim/tables/devices.py:880 +#: dcim/tables/devices.py:880 msgid "Module Asset Tag" msgstr "" -#: netbox/dcim/tables/devices.py:889 +#: dcim/tables/devices.py:889 msgid "Module Status" msgstr "" -#: netbox/dcim/tables/devices.py:944 netbox/dcim/tables/devicetypes.py:312 -#: netbox/templates/dcim/inventoryitem.html:40 +#: dcim/tables/devices.py:944 dcim/tables/devicetypes.py:312 +#: templates/dcim/inventoryitem.html:40 msgid "Component" msgstr "" -#: netbox/dcim/tables/devices.py:1000 +#: dcim/tables/devices.py:1000 msgid "Items" msgstr "" -#: netbox/dcim/tables/devicetypes.py:37 netbox/netbox/navigation/menu.py:84 -#: netbox/netbox/navigation/menu.py:86 +#: dcim/tables/devicetypes.py:37 netbox/navigation/menu.py:84 +#: netbox/navigation/menu.py:86 msgid "Device Types" msgstr "" -#: netbox/dcim/tables/devicetypes.py:42 netbox/netbox/navigation/menu.py:87 +#: dcim/tables/devicetypes.py:42 netbox/navigation/menu.py:87 msgid "Module Types" msgstr "" -#: netbox/dcim/tables/devicetypes.py:52 netbox/extras/forms/filtersets.py:371 -#: netbox/extras/forms/model_forms.py:537 netbox/extras/tables/tables.py:540 -#: netbox/netbox/navigation/menu.py:78 +#: dcim/tables/devicetypes.py:52 extras/forms/filtersets.py:371 +#: extras/forms/model_forms.py:537 extras/tables/tables.py:540 +#: netbox/navigation/menu.py:78 msgid "Platforms" msgstr "" -#: netbox/dcim/tables/devicetypes.py:84 -#: netbox/templates/dcim/devicetype.html:29 +#: dcim/tables/devicetypes.py:84 templates/dcim/devicetype.html:29 msgid "Default Platform" msgstr "" -#: netbox/dcim/tables/devicetypes.py:88 -#: netbox/templates/dcim/devicetype.html:45 +#: dcim/tables/devicetypes.py:88 templates/dcim/devicetype.html:45 msgid "Full Depth" msgstr "" -#: netbox/dcim/tables/devicetypes.py:98 +#: dcim/tables/devicetypes.py:98 msgid "U Height" msgstr "" -#: netbox/dcim/tables/devicetypes.py:113 netbox/dcim/tables/modules.py:26 -#: netbox/dcim/tables/racks.py:89 +#: dcim/tables/devicetypes.py:113 dcim/tables/modules.py:26 +#: dcim/tables/racks.py:89 msgid "Instances" msgstr "" -#: netbox/dcim/tables/devicetypes.py:116 netbox/dcim/views.py:982 -#: netbox/dcim/views.py:1221 netbox/dcim/views.py:1913 -#: netbox/netbox/navigation/menu.py:97 -#: netbox/templates/dcim/device/base.html:25 -#: netbox/templates/dcim/device_list.html:15 -#: netbox/templates/dcim/devicetype/base.html:22 -#: netbox/templates/dcim/module.html:22 -#: netbox/templates/dcim/moduletype/base.html:22 +#: dcim/tables/devicetypes.py:116 dcim/views.py:982 dcim/views.py:1221 +#: dcim/views.py:1913 netbox/navigation/menu.py:97 +#: templates/dcim/device/base.html:25 templates/dcim/device_list.html:15 +#: templates/dcim/devicetype/base.html:22 +#: templates/dcim/inc/moduletype_buttons.html:13 templates/dcim/module.html:22 msgid "Console Ports" msgstr "" -#: netbox/dcim/tables/devicetypes.py:119 netbox/dcim/views.py:997 -#: netbox/dcim/views.py:1236 netbox/dcim/views.py:1929 -#: netbox/netbox/navigation/menu.py:98 -#: netbox/templates/dcim/device/base.html:28 -#: netbox/templates/dcim/device_list.html:22 -#: netbox/templates/dcim/devicetype/base.html:25 -#: netbox/templates/dcim/module.html:25 -#: netbox/templates/dcim/moduletype/base.html:25 +#: dcim/tables/devicetypes.py:119 dcim/views.py:997 dcim/views.py:1236 +#: dcim/views.py:1929 netbox/navigation/menu.py:98 +#: templates/dcim/device/base.html:28 templates/dcim/device_list.html:22 +#: templates/dcim/devicetype/base.html:25 +#: templates/dcim/inc/moduletype_buttons.html:16 templates/dcim/module.html:25 msgid "Console Server Ports" msgstr "" -#: netbox/dcim/tables/devicetypes.py:122 netbox/dcim/views.py:1012 -#: netbox/dcim/views.py:1251 netbox/dcim/views.py:1945 -#: netbox/netbox/navigation/menu.py:99 -#: netbox/templates/dcim/device/base.html:31 -#: netbox/templates/dcim/device_list.html:29 -#: netbox/templates/dcim/devicetype/base.html:28 -#: netbox/templates/dcim/module.html:28 -#: netbox/templates/dcim/moduletype/base.html:28 +#: dcim/tables/devicetypes.py:122 dcim/views.py:1012 dcim/views.py:1251 +#: dcim/views.py:1945 netbox/navigation/menu.py:99 +#: templates/dcim/device/base.html:31 templates/dcim/device_list.html:29 +#: templates/dcim/devicetype/base.html:28 +#: templates/dcim/inc/moduletype_buttons.html:19 templates/dcim/module.html:28 msgid "Power Ports" msgstr "" -#: netbox/dcim/tables/devicetypes.py:125 netbox/dcim/views.py:1027 -#: netbox/dcim/views.py:1266 netbox/dcim/views.py:1961 -#: netbox/netbox/navigation/menu.py:100 -#: netbox/templates/dcim/device/base.html:34 -#: netbox/templates/dcim/device_list.html:36 -#: netbox/templates/dcim/devicetype/base.html:31 -#: netbox/templates/dcim/module.html:31 -#: netbox/templates/dcim/moduletype/base.html:31 +#: dcim/tables/devicetypes.py:125 dcim/views.py:1027 dcim/views.py:1266 +#: dcim/views.py:1961 netbox/navigation/menu.py:100 +#: templates/dcim/device/base.html:34 templates/dcim/device_list.html:36 +#: templates/dcim/devicetype/base.html:31 +#: templates/dcim/inc/moduletype_buttons.html:22 templates/dcim/module.html:31 msgid "Power Outlets" msgstr "" -#: netbox/dcim/tables/devicetypes.py:131 netbox/dcim/views.py:1057 -#: netbox/dcim/views.py:1296 netbox/dcim/views.py:1999 -#: netbox/netbox/navigation/menu.py:95 -#: netbox/templates/dcim/device/base.html:40 -#: netbox/templates/dcim/devicetype/base.html:37 -#: netbox/templates/dcim/module.html:37 -#: netbox/templates/dcim/moduletype/base.html:37 +#: dcim/tables/devicetypes.py:131 dcim/views.py:1057 dcim/views.py:1296 +#: dcim/views.py:1999 netbox/navigation/menu.py:95 +#: templates/dcim/device/base.html:40 templates/dcim/devicetype/base.html:37 +#: templates/dcim/inc/moduletype_buttons.html:28 templates/dcim/module.html:37 msgid "Front Ports" msgstr "" -#: netbox/dcim/tables/devicetypes.py:134 netbox/dcim/views.py:1072 -#: netbox/dcim/views.py:1311 netbox/dcim/views.py:2015 -#: netbox/netbox/navigation/menu.py:96 -#: netbox/templates/dcim/device/base.html:43 -#: netbox/templates/dcim/device_list.html:50 -#: netbox/templates/dcim/devicetype/base.html:40 -#: netbox/templates/dcim/module.html:40 -#: netbox/templates/dcim/moduletype/base.html:40 +#: dcim/tables/devicetypes.py:134 dcim/views.py:1072 dcim/views.py:1311 +#: dcim/views.py:2015 netbox/navigation/menu.py:96 +#: templates/dcim/device/base.html:43 templates/dcim/device_list.html:50 +#: templates/dcim/devicetype/base.html:40 +#: templates/dcim/inc/moduletype_buttons.html:31 templates/dcim/module.html:40 msgid "Rear Ports" msgstr "" -#: netbox/dcim/tables/devicetypes.py:137 netbox/dcim/views.py:1102 -#: netbox/dcim/views.py:2055 netbox/netbox/navigation/menu.py:102 -#: netbox/templates/dcim/device/base.html:49 -#: netbox/templates/dcim/device_list.html:57 -#: netbox/templates/dcim/devicetype/base.html:46 +#: dcim/tables/devicetypes.py:137 dcim/views.py:1102 dcim/views.py:2055 +#: netbox/navigation/menu.py:102 templates/dcim/device/base.html:49 +#: templates/dcim/device_list.html:57 templates/dcim/devicetype/base.html:46 msgid "Device Bays" msgstr "" -#: netbox/dcim/tables/devicetypes.py:140 netbox/dcim/views.py:1087 -#: netbox/dcim/views.py:1326 netbox/dcim/views.py:2035 -#: netbox/netbox/navigation/menu.py:101 -#: netbox/templates/dcim/device/base.html:46 -#: netbox/templates/dcim/device_list.html:64 -#: netbox/templates/dcim/devicetype/base.html:43 -#: netbox/templates/dcim/module.html:43 -#: netbox/templates/dcim/moduletype/base.html:43 +#: dcim/tables/devicetypes.py:140 dcim/views.py:1087 dcim/views.py:1326 +#: dcim/views.py:2035 netbox/navigation/menu.py:101 +#: templates/dcim/device/base.html:46 templates/dcim/device_list.html:64 +#: templates/dcim/devicetype/base.html:43 +#: templates/dcim/inc/moduletype_buttons.html:34 templates/dcim/module.html:43 msgid "Module Bays" msgstr "" -#: netbox/dcim/tables/power.py:36 netbox/netbox/navigation/menu.py:297 -#: netbox/templates/dcim/powerpanel.html:51 +#: dcim/tables/power.py:36 netbox/navigation/menu.py:297 +#: templates/dcim/powerpanel.html:51 msgid "Power Feeds" msgstr "" -#: netbox/dcim/tables/power.py:80 netbox/templates/dcim/powerfeed.html:99 +#: dcim/tables/power.py:80 templates/dcim/powerfeed.html:99 msgid "Max Utilization" msgstr "" -#: netbox/dcim/tables/power.py:84 +#: dcim/tables/power.py:84 msgid "Available Power (VA)" msgstr "" -#: netbox/dcim/tables/racks.py:30 netbox/dcim/tables/sites.py:143 -#: netbox/netbox/navigation/menu.py:43 netbox/netbox/navigation/menu.py:47 -#: netbox/netbox/navigation/menu.py:49 +#: dcim/tables/racks.py:30 dcim/tables/sites.py:143 +#: netbox/navigation/menu.py:43 netbox/navigation/menu.py:47 +#: netbox/navigation/menu.py:49 msgid "Racks" msgstr "" -#: netbox/dcim/tables/racks.py:63 netbox/dcim/tables/racks.py:142 -#: netbox/templates/dcim/device.html:318 -#: netbox/templates/dcim/inc/panels/racktype_dimensions.html:14 +#: dcim/tables/racks.py:63 dcim/tables/racks.py:142 +#: templates/dcim/device.html:318 +#: templates/dcim/inc/panels/racktype_dimensions.html:14 msgid "Height" msgstr "" -#: netbox/dcim/tables/racks.py:67 netbox/dcim/tables/racks.py:165 -#: netbox/templates/dcim/inc/panels/racktype_dimensions.html:18 +#: dcim/tables/racks.py:67 dcim/tables/racks.py:165 +#: templates/dcim/inc/panels/racktype_dimensions.html:18 msgid "Outer Width" msgstr "" -#: netbox/dcim/tables/racks.py:71 netbox/dcim/tables/racks.py:169 -#: netbox/templates/dcim/inc/panels/racktype_dimensions.html:28 +#: dcim/tables/racks.py:71 dcim/tables/racks.py:169 +#: templates/dcim/inc/panels/racktype_dimensions.html:28 msgid "Outer Depth" msgstr "" -#: netbox/dcim/tables/racks.py:79 netbox/dcim/tables/racks.py:177 +#: dcim/tables/racks.py:79 dcim/tables/racks.py:177 msgid "Max Weight" msgstr "" -#: netbox/dcim/tables/racks.py:154 +#: dcim/tables/racks.py:154 msgid "Space" msgstr "" -#: netbox/dcim/tables/sites.py:30 netbox/dcim/tables/sites.py:57 -#: netbox/extras/forms/filtersets.py:351 netbox/extras/forms/model_forms.py:517 -#: netbox/ipam/forms/bulk_edit.py:131 netbox/ipam/forms/model_forms.py:153 -#: netbox/ipam/tables/asn.py:66 netbox/netbox/navigation/menu.py:15 -#: netbox/netbox/navigation/menu.py:17 +#: dcim/tables/sites.py:30 dcim/tables/sites.py:57 +#: extras/forms/filtersets.py:351 extras/forms/model_forms.py:517 +#: ipam/forms/bulk_edit.py:131 ipam/forms/model_forms.py:153 +#: ipam/tables/asn.py:66 netbox/navigation/menu.py:15 +#: netbox/navigation/menu.py:17 msgid "Sites" msgstr "" -#: netbox/dcim/tests/test_api.py:47 +#: dcim/tests/test_api.py:47 msgid "Test case must set peer_termination_type" msgstr "" -#: netbox/dcim/views.py:140 +#: dcim/views.py:140 #, python-brace-format msgid "Disconnected {count} {type}" msgstr "" -#: netbox/dcim/views.py:740 netbox/netbox/navigation/menu.py:51 +#: dcim/views.py:740 netbox/navigation/menu.py:51 msgid "Reservations" msgstr "" -#: netbox/dcim/views.py:759 netbox/templates/dcim/location.html:90 -#: netbox/templates/dcim/site.html:140 +#: dcim/views.py:759 templates/dcim/location.html:90 +#: templates/dcim/site.html:140 msgid "Non-Racked Devices" msgstr "" -#: netbox/dcim/views.py:2088 netbox/extras/forms/model_forms.py:577 -#: netbox/templates/extras/configcontext.html:10 -#: netbox/virtualization/forms/model_forms.py:225 -#: netbox/virtualization/views.py:407 +#: dcim/views.py:2088 extras/forms/model_forms.py:577 +#: templates/extras/configcontext.html:10 +#: virtualization/forms/model_forms.py:225 virtualization/views.py:407 msgid "Config Context" msgstr "" -#: netbox/dcim/views.py:2098 netbox/virtualization/views.py:417 +#: dcim/views.py:2098 virtualization/views.py:417 msgid "Render Config" msgstr "" -#: netbox/dcim/views.py:2131 netbox/virtualization/views.py:450 +#: dcim/views.py:2131 virtualization/views.py:450 #, python-brace-format msgid "An error occurred while rendering the template: {error}" msgstr "" -#: netbox/dcim/views.py:2149 netbox/extras/tables/tables.py:550 -#: netbox/netbox/navigation/menu.py:247 netbox/netbox/navigation/menu.py:249 -#: netbox/virtualization/views.py:180 +#: dcim/views.py:2149 extras/tables/tables.py:550 netbox/navigation/menu.py:247 +#: netbox/navigation/menu.py:249 virtualization/views.py:180 msgid "Virtual Machines" msgstr "" -#: netbox/dcim/views.py:2897 +#: dcim/views.py:2897 #, python-brace-format msgid "Installed device {device} in bay {device_bay}." msgstr "" -#: netbox/dcim/views.py:2938 +#: dcim/views.py:2938 #, python-brace-format msgid "Removed device {device} from bay {device_bay}." msgstr "" -#: netbox/dcim/views.py:3044 netbox/ipam/tables/ip.py:234 +#: dcim/views.py:3044 ipam/tables/ip.py:234 msgid "Children" msgstr "" -#: netbox/dcim/views.py:3510 +#: dcim/views.py:3510 #, python-brace-format msgid "Added member {device}" msgstr "" -#: netbox/dcim/views.py:3557 +#: dcim/views.py:3557 #, python-brace-format msgid "Unable to remove master device {device} from the virtual chassis." msgstr "" -#: netbox/dcim/views.py:3570 +#: dcim/views.py:3570 #, python-brace-format msgid "Removed {device} from virtual chassis {chassis}" msgstr "" -#: netbox/extras/api/customfields.py:89 +#: extras/api/customfields.py:89 #, python-brace-format msgid "Unknown related object(s): {name}" msgstr "" -#: netbox/extras/api/serializers_/customfields.py:73 +#: extras/api/serializers_/customfields.py:73 msgid "Changing the type of custom fields is not supported." msgstr "" -#: netbox/extras/api/serializers_/scripts.py:70 -#: netbox/extras/api/serializers_/scripts.py:75 +#: extras/api/serializers_/scripts.py:70 extras/api/serializers_/scripts.py:75 msgid "Scheduling is not enabled for this script." msgstr "" -#: netbox/extras/choices.py:30 netbox/extras/forms/misc.py:14 +#: extras/choices.py:30 extras/forms/misc.py:14 msgid "Text" msgstr "" -#: netbox/extras/choices.py:31 +#: extras/choices.py:31 msgid "Text (long)" msgstr "" -#: netbox/extras/choices.py:32 +#: extras/choices.py:32 msgid "Integer" msgstr "" -#: netbox/extras/choices.py:33 +#: extras/choices.py:33 msgid "Decimal" msgstr "" -#: netbox/extras/choices.py:34 +#: extras/choices.py:34 msgid "Boolean (true/false)" msgstr "" -#: netbox/extras/choices.py:35 +#: extras/choices.py:35 msgid "Date" msgstr "" -#: netbox/extras/choices.py:36 +#: extras/choices.py:36 msgid "Date & time" msgstr "" -#: netbox/extras/choices.py:38 +#: extras/choices.py:38 msgid "JSON" msgstr "" -#: netbox/extras/choices.py:39 +#: extras/choices.py:39 msgid "Selection" msgstr "" -#: netbox/extras/choices.py:40 +#: extras/choices.py:40 msgid "Multiple selection" msgstr "" -#: netbox/extras/choices.py:42 +#: extras/choices.py:42 msgid "Multiple objects" msgstr "" -#: netbox/extras/choices.py:53 netbox/netbox/preferences.py:21 -#: netbox/templates/extras/customfield.html:78 netbox/vpn/choices.py:20 -#: netbox/wireless/choices.py:27 +#: extras/choices.py:53 netbox/preferences.py:21 +#: templates/extras/customfield.html:78 vpn/choices.py:20 +#: wireless/choices.py:27 msgid "Disabled" msgstr "" -#: netbox/extras/choices.py:54 +#: extras/choices.py:54 msgid "Loose" msgstr "" -#: netbox/extras/choices.py:55 +#: extras/choices.py:55 msgid "Exact" msgstr "" -#: netbox/extras/choices.py:66 +#: extras/choices.py:66 msgid "Always" msgstr "" -#: netbox/extras/choices.py:67 +#: extras/choices.py:67 msgid "If set" msgstr "" -#: netbox/extras/choices.py:68 netbox/extras/choices.py:81 +#: extras/choices.py:68 extras/choices.py:81 msgid "Hidden" msgstr "" -#: netbox/extras/choices.py:79 +#: extras/choices.py:79 msgid "Yes" msgstr "" -#: netbox/extras/choices.py:80 +#: extras/choices.py:80 msgid "No" msgstr "" -#: netbox/extras/choices.py:108 netbox/templates/tenancy/contact.html:57 -#: netbox/tenancy/forms/bulk_edit.py:118 -#: netbox/wireless/forms/model_forms.py:168 +#: extras/choices.py:108 templates/tenancy/contact.html:57 +#: tenancy/forms/bulk_edit.py:118 wireless/forms/model_forms.py:168 msgid "Link" msgstr "" -#: netbox/extras/choices.py:124 +#: extras/choices.py:124 msgid "Newest" msgstr "" -#: netbox/extras/choices.py:125 +#: extras/choices.py:125 msgid "Oldest" msgstr "" -#: netbox/extras/choices.py:126 +#: extras/choices.py:126 msgid "Alphabetical (A-Z)" msgstr "" -#: netbox/extras/choices.py:127 +#: extras/choices.py:127 msgid "Alphabetical (Z-A)" msgstr "" -#: netbox/extras/choices.py:144 netbox/extras/choices.py:167 +#: extras/choices.py:144 extras/choices.py:167 msgid "Info" msgstr "" -#: netbox/extras/choices.py:145 netbox/extras/choices.py:168 +#: extras/choices.py:145 extras/choices.py:168 msgid "Success" msgstr "" -#: netbox/extras/choices.py:146 netbox/extras/choices.py:169 +#: extras/choices.py:146 extras/choices.py:169 msgid "Warning" msgstr "" -#: netbox/extras/choices.py:147 +#: extras/choices.py:147 msgid "Danger" msgstr "" -#: netbox/extras/choices.py:165 +#: extras/choices.py:165 msgid "Debug" msgstr "" -#: netbox/extras/choices.py:166 netbox/netbox/choices.py:101 +#: extras/choices.py:166 netbox/choices.py:101 msgid "Default" msgstr "" -#: netbox/extras/choices.py:170 +#: extras/choices.py:170 msgid "Failure" msgstr "" -#: netbox/extras/choices.py:186 +#: extras/choices.py:186 msgid "Hourly" msgstr "" -#: netbox/extras/choices.py:187 +#: extras/choices.py:187 msgid "12 hours" msgstr "" -#: netbox/extras/choices.py:188 +#: extras/choices.py:188 msgid "Daily" msgstr "" -#: netbox/extras/choices.py:189 +#: extras/choices.py:189 msgid "Weekly" msgstr "" -#: netbox/extras/choices.py:190 +#: extras/choices.py:190 msgid "30 days" msgstr "" -#: netbox/extras/choices.py:226 -#: netbox/templates/dcim/virtualchassis_edit.html:107 -#: netbox/templates/generic/bulk_add_component.html:68 -#: netbox/templates/generic/object_edit.html:47 -#: netbox/templates/generic/object_edit.html:80 -#: netbox/templates/ipam/inc/ipaddress_edit_header.html:7 +#: extras/choices.py:226 templates/dcim/virtualchassis_edit.html:107 +#: templates/generic/bulk_add_component.html:68 +#: templates/generic/object_edit.html:47 templates/generic/object_edit.html:80 +#: templates/ipam/inc/ipaddress_edit_header.html:7 msgid "Create" msgstr "" -#: netbox/extras/choices.py:227 +#: extras/choices.py:227 msgid "Update" msgstr "" -#: netbox/extras/choices.py:228 -#: netbox/templates/circuits/inc/circuit_termination.html:23 -#: netbox/templates/dcim/inc/panels/inventory_items.html:37 -#: netbox/templates/dcim/moduletype/component_templates.html:23 -#: netbox/templates/dcim/powerpanel.html:66 -#: netbox/templates/extras/script_list.html:35 -#: netbox/templates/generic/bulk_delete.html:20 -#: netbox/templates/generic/bulk_delete.html:66 -#: netbox/templates/generic/object_delete.html:19 -#: netbox/templates/htmx/delete_form.html:57 -#: netbox/templates/ipam/inc/panels/fhrp_groups.html:48 -#: netbox/templates/users/objectpermission.html:46 -#: netbox/utilities/templates/buttons/delete.html:11 +#: extras/choices.py:228 templates/circuits/inc/circuit_termination.html:23 +#: templates/dcim/inc/panels/inventory_items.html:37 +#: templates/dcim/powerpanel.html:66 templates/extras/script_list.html:35 +#: templates/generic/bulk_delete.html:20 templates/generic/bulk_delete.html:66 +#: templates/generic/object_delete.html:19 templates/htmx/delete_form.html:57 +#: templates/ipam/inc/panels/fhrp_groups.html:48 +#: templates/users/objectpermission.html:46 +#: utilities/templates/buttons/delete.html:11 msgid "Delete" msgstr "" -#: netbox/extras/choices.py:252 netbox/netbox/choices.py:57 -#: netbox/netbox/choices.py:102 +#: extras/choices.py:252 netbox/choices.py:57 netbox/choices.py:102 msgid "Blue" msgstr "" -#: netbox/extras/choices.py:253 netbox/netbox/choices.py:56 -#: netbox/netbox/choices.py:103 +#: extras/choices.py:253 netbox/choices.py:56 netbox/choices.py:103 msgid "Indigo" msgstr "" -#: netbox/extras/choices.py:254 netbox/netbox/choices.py:54 -#: netbox/netbox/choices.py:104 +#: extras/choices.py:254 netbox/choices.py:54 netbox/choices.py:104 msgid "Purple" msgstr "" -#: netbox/extras/choices.py:255 netbox/netbox/choices.py:51 -#: netbox/netbox/choices.py:105 +#: extras/choices.py:255 netbox/choices.py:51 netbox/choices.py:105 msgid "Pink" msgstr "" -#: netbox/extras/choices.py:256 netbox/netbox/choices.py:50 -#: netbox/netbox/choices.py:106 +#: extras/choices.py:256 netbox/choices.py:50 netbox/choices.py:106 msgid "Red" msgstr "" -#: netbox/extras/choices.py:257 netbox/netbox/choices.py:68 -#: netbox/netbox/choices.py:107 +#: extras/choices.py:257 netbox/choices.py:68 netbox/choices.py:107 msgid "Orange" msgstr "" -#: netbox/extras/choices.py:258 netbox/netbox/choices.py:66 -#: netbox/netbox/choices.py:108 +#: extras/choices.py:258 netbox/choices.py:66 netbox/choices.py:108 msgid "Yellow" msgstr "" -#: netbox/extras/choices.py:259 netbox/netbox/choices.py:63 -#: netbox/netbox/choices.py:109 +#: extras/choices.py:259 netbox/choices.py:63 netbox/choices.py:109 msgid "Green" msgstr "" -#: netbox/extras/choices.py:260 netbox/netbox/choices.py:60 -#: netbox/netbox/choices.py:110 +#: extras/choices.py:260 netbox/choices.py:60 netbox/choices.py:110 msgid "Teal" msgstr "" -#: netbox/extras/choices.py:261 netbox/netbox/choices.py:59 -#: netbox/netbox/choices.py:111 +#: extras/choices.py:261 netbox/choices.py:59 netbox/choices.py:111 msgid "Cyan" msgstr "" -#: netbox/extras/choices.py:262 netbox/netbox/choices.py:112 +#: extras/choices.py:262 netbox/choices.py:112 msgid "Gray" msgstr "" -#: netbox/extras/choices.py:263 netbox/netbox/choices.py:74 -#: netbox/netbox/choices.py:113 +#: extras/choices.py:263 netbox/choices.py:74 netbox/choices.py:113 msgid "Black" msgstr "" -#: netbox/extras/choices.py:264 netbox/netbox/choices.py:75 -#: netbox/netbox/choices.py:114 +#: extras/choices.py:264 netbox/choices.py:75 netbox/choices.py:114 msgid "White" msgstr "" -#: netbox/extras/choices.py:279 netbox/extras/forms/model_forms.py:353 -#: netbox/extras/forms/model_forms.py:430 -#: netbox/templates/extras/webhook.html:10 +#: extras/choices.py:279 extras/forms/model_forms.py:353 +#: extras/forms/model_forms.py:430 templates/extras/webhook.html:10 msgid "Webhook" msgstr "" -#: netbox/extras/choices.py:280 netbox/extras/forms/model_forms.py:418 -#: netbox/templates/extras/script/base.html:29 +#: extras/choices.py:280 extras/forms/model_forms.py:418 +#: templates/extras/script/base.html:29 msgid "Script" msgstr "" -#: netbox/extras/choices.py:281 +#: extras/choices.py:281 msgid "Notification" msgstr "" -#: netbox/extras/conditions.py:54 +#: extras/conditions.py:54 #, python-brace-format msgid "Unknown operator: {op}. Must be one of: {operators}" msgstr "" -#: netbox/extras/conditions.py:58 +#: extras/conditions.py:58 #, python-brace-format msgid "Unsupported value type: {value}" msgstr "" -#: netbox/extras/conditions.py:60 +#: extras/conditions.py:60 #, python-brace-format msgid "Invalid type for {op} operation: {value}" msgstr "" -#: netbox/extras/conditions.py:137 +#: extras/conditions.py:137 #, python-brace-format msgid "Ruleset must be a dictionary, not {ruleset}." msgstr "" -#: netbox/extras/conditions.py:142 +#: extras/conditions.py:142 msgid "Invalid logic type: must be 'AND' or 'OR'. Please check documentation." msgstr "" -#: netbox/extras/conditions.py:154 +#: extras/conditions.py:154 msgid "Incorrect key(s) informed. Please check documentation." msgstr "" -#: netbox/extras/dashboard/forms.py:38 +#: extras/dashboard/forms.py:38 msgid "Widget type" msgstr "" -#: netbox/extras/dashboard/utils.py:36 +#: extras/dashboard/utils.py:36 #, python-brace-format msgid "Unregistered widget class: {name}" msgstr "" -#: netbox/extras/dashboard/widgets.py:125 +#: extras/dashboard/widgets.py:125 #, python-brace-format msgid "{class_name} must define a render() method." msgstr "" -#: netbox/extras/dashboard/widgets.py:144 +#: extras/dashboard/widgets.py:144 msgid "Note" msgstr "" -#: netbox/extras/dashboard/widgets.py:145 +#: extras/dashboard/widgets.py:145 msgid "Display some arbitrary custom content. Markdown is supported." msgstr "" -#: netbox/extras/dashboard/widgets.py:158 +#: extras/dashboard/widgets.py:158 msgid "Object Counts" msgstr "" -#: netbox/extras/dashboard/widgets.py:159 +#: extras/dashboard/widgets.py:159 msgid "" "Display a set of NetBox models and the number of objects created for each " "type." msgstr "" -#: netbox/extras/dashboard/widgets.py:169 +#: extras/dashboard/widgets.py:169 msgid "Filters to apply when counting the number of objects" msgstr "" -#: netbox/extras/dashboard/widgets.py:177 +#: extras/dashboard/widgets.py:177 msgid "Invalid format. Object filters must be passed as a dictionary." msgstr "" -#: netbox/extras/dashboard/widgets.py:208 +#: extras/dashboard/widgets.py:208 msgid "Object List" msgstr "" -#: netbox/extras/dashboard/widgets.py:209 +#: extras/dashboard/widgets.py:209 msgid "Display an arbitrary list of objects." msgstr "" -#: netbox/extras/dashboard/widgets.py:222 +#: extras/dashboard/widgets.py:222 msgid "The default number of objects to display" msgstr "" -#: netbox/extras/dashboard/widgets.py:234 +#: extras/dashboard/widgets.py:234 msgid "Invalid format. URL parameters must be passed as a dictionary." msgstr "" -#: netbox/extras/dashboard/widgets.py:274 +#: extras/dashboard/widgets.py:274 msgid "RSS Feed" msgstr "" -#: netbox/extras/dashboard/widgets.py:279 +#: extras/dashboard/widgets.py:279 msgid "Embed an RSS feed from an external website." msgstr "" -#: netbox/extras/dashboard/widgets.py:286 +#: extras/dashboard/widgets.py:286 msgid "Feed URL" msgstr "" -#: netbox/extras/dashboard/widgets.py:291 +#: extras/dashboard/widgets.py:291 msgid "The maximum number of objects to display" msgstr "" -#: netbox/extras/dashboard/widgets.py:296 +#: extras/dashboard/widgets.py:296 msgid "How long to stored the cached content (in seconds)" msgstr "" -#: netbox/extras/dashboard/widgets.py:348 netbox/templates/account/base.html:10 -#: netbox/templates/account/bookmarks.html:7 -#: netbox/templates/inc/user_menu.html:48 +#: extras/dashboard/widgets.py:348 templates/account/base.html:10 +#: templates/account/bookmarks.html:7 templates/inc/user_menu.html:48 msgid "Bookmarks" msgstr "" -#: netbox/extras/dashboard/widgets.py:352 +#: extras/dashboard/widgets.py:352 msgid "Show your personal bookmarks" msgstr "" -#: netbox/extras/events.py:147 +#: extras/events.py:147 #, python-brace-format msgid "Unknown action type for an event rule: {action_type}" msgstr "" -#: netbox/extras/events.py:192 +#: extras/events.py:192 #, python-brace-format msgid "Cannot import events pipeline {name} error: {error}" msgstr "" -#: netbox/extras/filtersets.py:45 +#: extras/filtersets.py:45 msgid "Script module (ID)" msgstr "" -#: netbox/extras/filtersets.py:254 netbox/extras/filtersets.py:637 -#: netbox/extras/filtersets.py:665 +#: extras/filtersets.py:254 extras/filtersets.py:637 extras/filtersets.py:665 msgid "Data file (ID)" msgstr "" -#: netbox/extras/filtersets.py:370 netbox/users/filtersets.py:68 -#: netbox/users/filtersets.py:191 +#: extras/filtersets.py:370 users/filtersets.py:68 users/filtersets.py:191 msgid "Group (name)" msgstr "" -#: netbox/extras/filtersets.py:574 -#: netbox/virtualization/forms/filtersets.py:118 +#: extras/filtersets.py:574 virtualization/forms/filtersets.py:118 msgid "Cluster type" msgstr "" -#: netbox/extras/filtersets.py:580 netbox/virtualization/filtersets.py:95 -#: netbox/virtualization/filtersets.py:147 +#: extras/filtersets.py:580 virtualization/filtersets.py:95 +#: virtualization/filtersets.py:147 msgid "Cluster type (slug)" msgstr "" -#: netbox/extras/filtersets.py:601 netbox/tenancy/forms/forms.py:16 -#: netbox/tenancy/forms/forms.py:39 +#: extras/filtersets.py:601 tenancy/forms/forms.py:16 tenancy/forms/forms.py:39 msgid "Tenant group" msgstr "" -#: netbox/extras/filtersets.py:607 netbox/tenancy/filtersets.py:188 -#: netbox/tenancy/filtersets.py:208 +#: extras/filtersets.py:607 tenancy/filtersets.py:188 tenancy/filtersets.py:208 msgid "Tenant group (slug)" msgstr "" -#: netbox/extras/filtersets.py:623 netbox/extras/forms/model_forms.py:495 -#: netbox/templates/extras/tag.html:11 +#: extras/filtersets.py:623 extras/forms/model_forms.py:495 +#: templates/extras/tag.html:11 msgid "Tag" msgstr "" -#: netbox/extras/filtersets.py:629 +#: extras/filtersets.py:629 msgid "Tag (slug)" msgstr "" -#: netbox/extras/filtersets.py:689 netbox/extras/forms/filtersets.py:429 +#: extras/filtersets.py:689 extras/forms/filtersets.py:429 msgid "Has local config context data" msgstr "" -#: netbox/extras/forms/bulk_edit.py:35 netbox/extras/forms/filtersets.py:60 +#: extras/forms/bulk_edit.py:35 extras/forms/filtersets.py:60 msgid "Group name" msgstr "" -#: netbox/extras/forms/bulk_edit.py:43 netbox/extras/forms/filtersets.py:68 -#: netbox/extras/tables/tables.py:65 -#: netbox/templates/extras/customfield.html:38 -#: netbox/templates/generic/bulk_import.html:118 +#: extras/forms/bulk_edit.py:43 extras/forms/filtersets.py:68 +#: extras/tables/tables.py:65 templates/extras/customfield.html:38 +#: templates/generic/bulk_import.html:118 msgid "Required" msgstr "" -#: netbox/extras/forms/bulk_edit.py:48 netbox/extras/forms/filtersets.py:75 +#: extras/forms/bulk_edit.py:48 extras/forms/filtersets.py:75 msgid "Must be unique" msgstr "" -#: netbox/extras/forms/bulk_edit.py:61 netbox/extras/forms/bulk_import.py:60 -#: netbox/extras/forms/filtersets.py:89 -#: netbox/extras/models/customfields.py:209 +#: extras/forms/bulk_edit.py:61 extras/forms/bulk_import.py:60 +#: extras/forms/filtersets.py:89 extras/models/customfields.py:209 msgid "UI visible" msgstr "" -#: netbox/extras/forms/bulk_edit.py:66 netbox/extras/forms/bulk_import.py:66 -#: netbox/extras/forms/filtersets.py:94 -#: netbox/extras/models/customfields.py:216 +#: extras/forms/bulk_edit.py:66 extras/forms/bulk_import.py:66 +#: extras/forms/filtersets.py:94 extras/models/customfields.py:216 msgid "UI editable" msgstr "" -#: netbox/extras/forms/bulk_edit.py:71 netbox/extras/forms/filtersets.py:97 +#: extras/forms/bulk_edit.py:71 extras/forms/filtersets.py:97 msgid "Is cloneable" msgstr "" -#: netbox/extras/forms/bulk_edit.py:76 netbox/extras/forms/filtersets.py:104 +#: extras/forms/bulk_edit.py:76 extras/forms/filtersets.py:104 msgid "Minimum value" msgstr "" -#: netbox/extras/forms/bulk_edit.py:80 netbox/extras/forms/filtersets.py:108 +#: extras/forms/bulk_edit.py:80 extras/forms/filtersets.py:108 msgid "Maximum value" msgstr "" -#: netbox/extras/forms/bulk_edit.py:84 netbox/extras/forms/filtersets.py:112 +#: extras/forms/bulk_edit.py:84 extras/forms/filtersets.py:112 msgid "Validation regex" msgstr "" -#: netbox/extras/forms/bulk_edit.py:91 netbox/extras/forms/filtersets.py:46 -#: netbox/extras/forms/model_forms.py:76 -#: netbox/templates/extras/customfield.html:70 +#: extras/forms/bulk_edit.py:91 extras/forms/filtersets.py:46 +#: extras/forms/model_forms.py:76 templates/extras/customfield.html:70 msgid "Behavior" msgstr "" -#: netbox/extras/forms/bulk_edit.py:128 netbox/extras/forms/filtersets.py:149 +#: extras/forms/bulk_edit.py:128 extras/forms/filtersets.py:149 msgid "New window" msgstr "" -#: netbox/extras/forms/bulk_edit.py:137 +#: extras/forms/bulk_edit.py:137 msgid "Button class" msgstr "" -#: netbox/extras/forms/bulk_edit.py:154 netbox/extras/forms/filtersets.py:187 -#: netbox/extras/models/models.py:409 +#: extras/forms/bulk_edit.py:154 extras/forms/filtersets.py:187 +#: extras/models/models.py:409 msgid "MIME type" msgstr "" -#: netbox/extras/forms/bulk_edit.py:159 netbox/extras/forms/filtersets.py:190 +#: extras/forms/bulk_edit.py:159 extras/forms/filtersets.py:190 msgid "File extension" msgstr "" -#: netbox/extras/forms/bulk_edit.py:164 netbox/extras/forms/filtersets.py:194 +#: extras/forms/bulk_edit.py:164 extras/forms/filtersets.py:194 msgid "As attachment" msgstr "" -#: netbox/extras/forms/bulk_edit.py:192 netbox/extras/forms/filtersets.py:236 -#: netbox/extras/tables/tables.py:256 -#: netbox/templates/extras/savedfilter.html:29 +#: extras/forms/bulk_edit.py:192 extras/forms/filtersets.py:236 +#: extras/tables/tables.py:256 templates/extras/savedfilter.html:29 msgid "Shared" msgstr "" -#: netbox/extras/forms/bulk_edit.py:215 netbox/extras/forms/filtersets.py:265 -#: netbox/extras/models/models.py:174 +#: extras/forms/bulk_edit.py:215 extras/forms/filtersets.py:265 +#: extras/models/models.py:174 msgid "HTTP method" msgstr "" -#: netbox/extras/forms/bulk_edit.py:219 netbox/extras/forms/filtersets.py:259 -#: netbox/templates/extras/webhook.html:30 +#: extras/forms/bulk_edit.py:219 extras/forms/filtersets.py:259 +#: templates/extras/webhook.html:30 msgid "Payload URL" msgstr "" -#: netbox/extras/forms/bulk_edit.py:224 netbox/extras/models/models.py:214 +#: extras/forms/bulk_edit.py:224 extras/models/models.py:214 msgid "SSL verification" msgstr "" -#: netbox/extras/forms/bulk_edit.py:227 netbox/templates/extras/webhook.html:38 +#: extras/forms/bulk_edit.py:227 templates/extras/webhook.html:38 msgid "Secret" msgstr "" -#: netbox/extras/forms/bulk_edit.py:232 +#: extras/forms/bulk_edit.py:232 msgid "CA file path" msgstr "" -#: netbox/extras/forms/bulk_edit.py:253 netbox/extras/forms/bulk_import.py:192 -#: netbox/extras/forms/model_forms.py:377 +#: extras/forms/bulk_edit.py:253 extras/forms/bulk_import.py:192 +#: extras/forms/model_forms.py:377 msgid "Event types" msgstr "" -#: netbox/extras/forms/bulk_edit.py:293 +#: extras/forms/bulk_edit.py:293 msgid "Is active" msgstr "" -#: netbox/extras/forms/bulk_import.py:37 netbox/extras/forms/bulk_import.py:118 -#: netbox/extras/forms/bulk_import.py:139 -#: netbox/extras/forms/bulk_import.py:162 -#: netbox/extras/forms/bulk_import.py:186 netbox/extras/forms/filtersets.py:137 -#: netbox/extras/forms/filtersets.py:224 netbox/extras/forms/model_forms.py:47 -#: netbox/extras/forms/model_forms.py:205 -#: netbox/extras/forms/model_forms.py:237 -#: netbox/extras/forms/model_forms.py:278 -#: netbox/extras/forms/model_forms.py:372 -#: netbox/extras/forms/model_forms.py:489 netbox/users/forms/model_forms.py:276 +#: extras/forms/bulk_import.py:37 extras/forms/bulk_import.py:118 +#: extras/forms/bulk_import.py:139 extras/forms/bulk_import.py:162 +#: extras/forms/bulk_import.py:186 extras/forms/filtersets.py:137 +#: extras/forms/filtersets.py:224 extras/forms/model_forms.py:47 +#: extras/forms/model_forms.py:205 extras/forms/model_forms.py:237 +#: extras/forms/model_forms.py:278 extras/forms/model_forms.py:372 +#: extras/forms/model_forms.py:489 users/forms/model_forms.py:276 msgid "Object types" msgstr "" -#: netbox/extras/forms/bulk_import.py:39 netbox/extras/forms/bulk_import.py:120 -#: netbox/extras/forms/bulk_import.py:141 -#: netbox/extras/forms/bulk_import.py:164 -#: netbox/extras/forms/bulk_import.py:188 -#: netbox/tenancy/forms/bulk_import.py:96 +#: extras/forms/bulk_import.py:39 extras/forms/bulk_import.py:120 +#: extras/forms/bulk_import.py:141 extras/forms/bulk_import.py:164 +#: extras/forms/bulk_import.py:188 tenancy/forms/bulk_import.py:96 msgid "One or more assigned object types" msgstr "" -#: netbox/extras/forms/bulk_import.py:44 +#: extras/forms/bulk_import.py:44 msgid "Field data type (e.g. text, integer, etc.)" msgstr "" -#: netbox/extras/forms/bulk_import.py:47 netbox/extras/forms/filtersets.py:208 -#: netbox/extras/forms/filtersets.py:281 netbox/extras/forms/model_forms.py:304 -#: netbox/extras/forms/model_forms.py:341 netbox/tenancy/forms/filtersets.py:92 +#: extras/forms/bulk_import.py:47 extras/forms/filtersets.py:208 +#: extras/forms/filtersets.py:281 extras/forms/model_forms.py:304 +#: extras/forms/model_forms.py:341 tenancy/forms/filtersets.py:92 msgid "Object type" msgstr "" -#: netbox/extras/forms/bulk_import.py:50 +#: extras/forms/bulk_import.py:50 msgid "Object type (for object or multi-object fields)" msgstr "" -#: netbox/extras/forms/bulk_import.py:53 netbox/extras/forms/filtersets.py:84 +#: extras/forms/bulk_import.py:53 extras/forms/filtersets.py:84 msgid "Choice set" msgstr "" -#: netbox/extras/forms/bulk_import.py:57 +#: extras/forms/bulk_import.py:57 msgid "Choice set (for selection fields)" msgstr "" -#: netbox/extras/forms/bulk_import.py:63 +#: extras/forms/bulk_import.py:63 msgid "Whether the custom field is displayed in the UI" msgstr "" -#: netbox/extras/forms/bulk_import.py:69 +#: extras/forms/bulk_import.py:69 msgid "Whether the custom field is editable in the UI" msgstr "" -#: netbox/extras/forms/bulk_import.py:85 +#: extras/forms/bulk_import.py:85 msgid "The base set of predefined choices to use (if any)" msgstr "" -#: netbox/extras/forms/bulk_import.py:91 +#: extras/forms/bulk_import.py:91 msgid "" "Quoted string of comma-separated field choices with optional labels " "separated by colon: \"choice1:First Choice,choice2:Second Choice\"" msgstr "" -#: netbox/extras/forms/bulk_import.py:123 netbox/extras/models/models.py:323 +#: extras/forms/bulk_import.py:123 extras/models/models.py:323 msgid "button class" msgstr "" -#: netbox/extras/forms/bulk_import.py:126 netbox/extras/models/models.py:327 +#: extras/forms/bulk_import.py:126 extras/models/models.py:327 msgid "" "The class of the first link in a group will be used for the dropdown button" msgstr "" -#: netbox/extras/forms/bulk_import.py:193 +#: extras/forms/bulk_import.py:193 msgid "The event type(s) which will trigger this rule" msgstr "" -#: netbox/extras/forms/bulk_import.py:196 +#: extras/forms/bulk_import.py:196 msgid "Action object" msgstr "" -#: netbox/extras/forms/bulk_import.py:198 +#: extras/forms/bulk_import.py:198 msgid "Webhook name or script as dotted path module.Class" msgstr "" -#: netbox/extras/forms/bulk_import.py:219 +#: extras/forms/bulk_import.py:219 #, python-brace-format msgid "Webhook {name} not found" msgstr "" -#: netbox/extras/forms/bulk_import.py:228 +#: extras/forms/bulk_import.py:228 #, python-brace-format msgid "Script {name} not found" msgstr "" -#: netbox/extras/forms/bulk_import.py:244 +#: extras/forms/bulk_import.py:244 msgid "Assigned object type" msgstr "" -#: netbox/extras/forms/bulk_import.py:249 +#: extras/forms/bulk_import.py:249 msgid "The classification of entry" msgstr "" -#: netbox/extras/forms/bulk_import.py:261 -#: netbox/extras/forms/model_forms.py:320 netbox/netbox/navigation/menu.py:390 -#: netbox/templates/extras/notificationgroup.html:41 -#: netbox/templates/users/group.html:29 netbox/users/forms/model_forms.py:236 -#: netbox/users/forms/model_forms.py:248 netbox/users/forms/model_forms.py:300 -#: netbox/users/tables.py:102 +#: extras/forms/bulk_import.py:261 extras/forms/model_forms.py:320 +#: netbox/navigation/menu.py:390 templates/extras/notificationgroup.html:41 +#: templates/users/group.html:29 users/forms/model_forms.py:236 +#: users/forms/model_forms.py:248 users/forms/model_forms.py:300 +#: users/tables.py:102 msgid "Users" msgstr "" -#: netbox/extras/forms/bulk_import.py:265 +#: extras/forms/bulk_import.py:265 msgid "User names separated by commas, encased with double quotes" msgstr "" -#: netbox/extras/forms/bulk_import.py:268 -#: netbox/extras/forms/model_forms.py:315 netbox/netbox/navigation/menu.py:410 -#: netbox/templates/extras/notificationgroup.html:31 -#: netbox/users/forms/model_forms.py:181 netbox/users/forms/model_forms.py:193 -#: netbox/users/forms/model_forms.py:305 netbox/users/tables.py:35 -#: netbox/users/tables.py:106 +#: extras/forms/bulk_import.py:268 extras/forms/model_forms.py:315 +#: netbox/navigation/menu.py:410 templates/extras/notificationgroup.html:31 +#: users/forms/model_forms.py:181 users/forms/model_forms.py:193 +#: users/forms/model_forms.py:305 users/tables.py:35 users/tables.py:106 msgid "Groups" msgstr "" -#: netbox/extras/forms/bulk_import.py:272 +#: extras/forms/bulk_import.py:272 msgid "Group names separated by commas, encased with double quotes" msgstr "" -#: netbox/extras/forms/filtersets.py:52 netbox/extras/forms/model_forms.py:56 +#: extras/forms/filtersets.py:52 extras/forms/model_forms.py:56 msgid "Related object type" msgstr "" -#: netbox/extras/forms/filtersets.py:57 +#: extras/forms/filtersets.py:57 msgid "Field type" msgstr "" -#: netbox/extras/forms/filtersets.py:120 netbox/extras/forms/model_forms.py:157 -#: netbox/extras/tables/tables.py:91 -#: netbox/templates/generic/bulk_import.html:154 +#: extras/forms/filtersets.py:120 extras/forms/model_forms.py:157 +#: extras/tables/tables.py:91 templates/generic/bulk_import.html:154 msgid "Choices" msgstr "" -#: netbox/extras/forms/filtersets.py:164 netbox/extras/forms/filtersets.py:319 -#: netbox/extras/forms/filtersets.py:408 netbox/extras/forms/model_forms.py:572 -#: netbox/templates/core/job.html:96 netbox/templates/extras/eventrule.html:84 +#: extras/forms/filtersets.py:164 extras/forms/filtersets.py:319 +#: extras/forms/filtersets.py:408 extras/forms/model_forms.py:572 +#: templates/core/job.html:96 templates/extras/eventrule.html:84 msgid "Data" msgstr "" -#: netbox/extras/forms/filtersets.py:175 netbox/extras/forms/filtersets.py:333 -#: netbox/extras/forms/filtersets.py:418 netbox/netbox/choices.py:130 -#: netbox/utilities/forms/bulk_import.py:26 +#: extras/forms/filtersets.py:175 extras/forms/filtersets.py:333 +#: extras/forms/filtersets.py:418 netbox/choices.py:130 +#: utilities/forms/bulk_import.py:26 msgid "Data file" msgstr "" -#: netbox/extras/forms/filtersets.py:183 +#: extras/forms/filtersets.py:183 msgid "Content types" msgstr "" -#: netbox/extras/forms/filtersets.py:255 netbox/extras/models/models.py:179 +#: extras/forms/filtersets.py:255 extras/models/models.py:179 msgid "HTTP content type" msgstr "" -#: netbox/extras/forms/filtersets.py:286 +#: extras/forms/filtersets.py:286 msgid "Event type" msgstr "" -#: netbox/extras/forms/filtersets.py:291 +#: extras/forms/filtersets.py:291 msgid "Action type" msgstr "" -#: netbox/extras/forms/filtersets.py:307 +#: extras/forms/filtersets.py:307 msgid "Tagged object type" msgstr "" -#: netbox/extras/forms/filtersets.py:312 +#: extras/forms/filtersets.py:312 msgid "Allowed object type" msgstr "" -#: netbox/extras/forms/filtersets.py:341 netbox/extras/forms/model_forms.py:507 -#: netbox/netbox/navigation/menu.py:18 +#: extras/forms/filtersets.py:341 extras/forms/model_forms.py:507 +#: netbox/navigation/menu.py:18 msgid "Regions" msgstr "" -#: netbox/extras/forms/filtersets.py:346 netbox/extras/forms/model_forms.py:512 +#: extras/forms/filtersets.py:346 extras/forms/model_forms.py:512 msgid "Site groups" msgstr "" -#: netbox/extras/forms/filtersets.py:356 netbox/extras/forms/model_forms.py:522 -#: netbox/netbox/navigation/menu.py:20 netbox/templates/dcim/site.html:127 +#: extras/forms/filtersets.py:356 extras/forms/model_forms.py:522 +#: netbox/navigation/menu.py:20 templates/dcim/site.html:127 msgid "Locations" msgstr "" -#: netbox/extras/forms/filtersets.py:361 netbox/extras/forms/model_forms.py:527 +#: extras/forms/filtersets.py:361 extras/forms/model_forms.py:527 msgid "Device types" msgstr "" -#: netbox/extras/forms/filtersets.py:366 netbox/extras/forms/model_forms.py:532 +#: extras/forms/filtersets.py:366 extras/forms/model_forms.py:532 msgid "Roles" msgstr "" -#: netbox/extras/forms/filtersets.py:376 netbox/extras/forms/model_forms.py:542 +#: extras/forms/filtersets.py:376 extras/forms/model_forms.py:542 msgid "Cluster types" msgstr "" -#: netbox/extras/forms/filtersets.py:381 netbox/extras/forms/model_forms.py:547 +#: extras/forms/filtersets.py:381 extras/forms/model_forms.py:547 msgid "Cluster groups" msgstr "" -#: netbox/extras/forms/filtersets.py:386 netbox/extras/forms/model_forms.py:552 -#: netbox/netbox/navigation/menu.py:255 netbox/netbox/navigation/menu.py:257 -#: netbox/templates/virtualization/clustertype.html:30 -#: netbox/virtualization/tables/clusters.py:23 -#: netbox/virtualization/tables/clusters.py:45 +#: extras/forms/filtersets.py:386 extras/forms/model_forms.py:552 +#: netbox/navigation/menu.py:255 netbox/navigation/menu.py:257 +#: templates/virtualization/clustertype.html:30 +#: virtualization/tables/clusters.py:23 virtualization/tables/clusters.py:45 msgid "Clusters" msgstr "" -#: netbox/extras/forms/filtersets.py:391 netbox/extras/forms/model_forms.py:557 +#: extras/forms/filtersets.py:391 extras/forms/model_forms.py:557 msgid "Tenant groups" msgstr "" -#: netbox/extras/forms/model_forms.py:49 +#: extras/forms/model_forms.py:49 msgid "The type(s) of object that have this custom field" msgstr "" -#: netbox/extras/forms/model_forms.py:52 +#: extras/forms/model_forms.py:52 msgid "Default value" msgstr "" -#: netbox/extras/forms/model_forms.py:58 +#: extras/forms/model_forms.py:58 msgid "Type of the related object (for object/multi-object fields only)" msgstr "" -#: netbox/extras/forms/model_forms.py:61 -#: netbox/templates/extras/customfield.html:60 +#: extras/forms/model_forms.py:61 templates/extras/customfield.html:60 msgid "Related object filter" msgstr "" -#: netbox/extras/forms/model_forms.py:63 +#: extras/forms/model_forms.py:63 msgid "Specify query parameters as a JSON object." msgstr "" -#: netbox/extras/forms/model_forms.py:73 -#: netbox/templates/extras/customfield.html:10 +#: extras/forms/model_forms.py:73 templates/extras/customfield.html:10 msgid "Custom Field" msgstr "" -#: netbox/extras/forms/model_forms.py:85 +#: extras/forms/model_forms.py:85 msgid "" "The type of data stored in this field. For object/multi-object fields, " "select the related object type below." msgstr "" -#: netbox/extras/forms/model_forms.py:88 +#: extras/forms/model_forms.py:88 msgid "" "This will be displayed as help text for the form field. Markdown is " "supported." msgstr "" -#: netbox/extras/forms/model_forms.py:143 +#: extras/forms/model_forms.py:143 msgid "Related Object" msgstr "" -#: netbox/extras/forms/model_forms.py:169 +#: extras/forms/model_forms.py:169 msgid "" "Enter one choice per line. An optional label may be specified for each " "choice by appending it with a colon. Example:" msgstr "" -#: netbox/extras/forms/model_forms.py:212 -#: netbox/templates/extras/customlink.html:10 +#: extras/forms/model_forms.py:212 templates/extras/customlink.html:10 msgid "Custom Link" msgstr "" -#: netbox/extras/forms/model_forms.py:214 +#: extras/forms/model_forms.py:214 msgid "Templates" msgstr "" -#: netbox/extras/forms/model_forms.py:226 +#: extras/forms/model_forms.py:226 #, python-brace-format msgid "" "Jinja2 template code for the link text. Reference the object as {example}. " "Links which render as empty text will not be displayed." msgstr "" -#: netbox/extras/forms/model_forms.py:230 +#: extras/forms/model_forms.py:230 #, python-brace-format msgid "" "Jinja2 template code for the link URL. Reference the object as {example}." msgstr "" -#: netbox/extras/forms/model_forms.py:241 -#: netbox/extras/forms/model_forms.py:624 +#: extras/forms/model_forms.py:241 extras/forms/model_forms.py:624 msgid "Template code" msgstr "" -#: netbox/extras/forms/model_forms.py:247 -#: netbox/templates/extras/exporttemplate.html:12 +#: extras/forms/model_forms.py:247 templates/extras/exporttemplate.html:12 msgid "Export Template" msgstr "" -#: netbox/extras/forms/model_forms.py:249 +#: extras/forms/model_forms.py:249 msgid "Rendering" msgstr "" -#: netbox/extras/forms/model_forms.py:263 -#: netbox/extras/forms/model_forms.py:649 +#: extras/forms/model_forms.py:263 extras/forms/model_forms.py:649 msgid "Template content is populated from the remote source selected below." msgstr "" -#: netbox/extras/forms/model_forms.py:270 -#: netbox/extras/forms/model_forms.py:656 +#: extras/forms/model_forms.py:270 extras/forms/model_forms.py:656 msgid "Must specify either local content or a data file" msgstr "" -#: netbox/extras/forms/model_forms.py:284 netbox/netbox/forms/mixins.py:70 -#: netbox/templates/extras/savedfilter.html:10 +#: extras/forms/model_forms.py:284 netbox/forms/mixins.py:70 +#: templates/extras/savedfilter.html:10 msgid "Saved Filter" msgstr "" -#: netbox/extras/forms/model_forms.py:334 +#: extras/forms/model_forms.py:334 msgid "A notification group specify at least one user or group." msgstr "" -#: netbox/extras/forms/model_forms.py:356 -#: netbox/templates/extras/webhook.html:23 +#: extras/forms/model_forms.py:356 templates/extras/webhook.html:23 msgid "HTTP Request" msgstr "" -#: netbox/extras/forms/model_forms.py:358 -#: netbox/templates/extras/webhook.html:44 +#: extras/forms/model_forms.py:358 templates/extras/webhook.html:44 msgid "SSL" msgstr "" -#: netbox/extras/forms/model_forms.py:380 +#: extras/forms/model_forms.py:380 msgid "Action choice" msgstr "" -#: netbox/extras/forms/model_forms.py:385 +#: extras/forms/model_forms.py:385 msgid "Enter conditions in JSON format." msgstr "" -#: netbox/extras/forms/model_forms.py:389 +#: extras/forms/model_forms.py:389 msgid "" "Enter parameters to pass to the action in JSON format." msgstr "" -#: netbox/extras/forms/model_forms.py:394 -#: netbox/templates/extras/eventrule.html:10 +#: extras/forms/model_forms.py:394 templates/extras/eventrule.html:10 msgid "Event Rule" msgstr "" -#: netbox/extras/forms/model_forms.py:395 +#: extras/forms/model_forms.py:395 msgid "Triggers" msgstr "" -#: netbox/extras/forms/model_forms.py:442 +#: extras/forms/model_forms.py:442 msgid "Notification group" msgstr "" -#: netbox/extras/forms/model_forms.py:562 netbox/netbox/navigation/menu.py:26 -#: netbox/tenancy/tables/tenants.py:22 +#: extras/forms/model_forms.py:562 netbox/navigation/menu.py:26 +#: tenancy/tables/tenants.py:22 msgid "Tenants" msgstr "" -#: netbox/extras/forms/model_forms.py:606 +#: extras/forms/model_forms.py:606 msgid "Data is populated from the remote source selected below." msgstr "" -#: netbox/extras/forms/model_forms.py:612 +#: extras/forms/model_forms.py:612 msgid "Must specify either local data or a data file" msgstr "" -#: netbox/extras/forms/model_forms.py:631 -#: netbox/templates/core/datafile.html:55 +#: extras/forms/model_forms.py:631 templates/core/datafile.html:55 msgid "Content" msgstr "" -#: netbox/extras/forms/reports.py:17 netbox/extras/forms/scripts.py:23 +#: extras/forms/reports.py:17 extras/forms/scripts.py:23 msgid "Schedule at" msgstr "" -#: netbox/extras/forms/reports.py:18 +#: extras/forms/reports.py:18 msgid "Schedule execution of report to a set time" msgstr "" -#: netbox/extras/forms/reports.py:23 netbox/extras/forms/scripts.py:29 +#: extras/forms/reports.py:23 extras/forms/scripts.py:29 msgid "Recurs every" msgstr "" -#: netbox/extras/forms/reports.py:27 +#: extras/forms/reports.py:27 msgid "Interval at which this report is re-run (in minutes)" msgstr "" -#: netbox/extras/forms/reports.py:35 netbox/extras/forms/scripts.py:41 +#: extras/forms/reports.py:35 extras/forms/scripts.py:41 #, python-brace-format msgid " (current time: {now})" msgstr "" -#: netbox/extras/forms/reports.py:45 netbox/extras/forms/scripts.py:51 +#: extras/forms/reports.py:45 extras/forms/scripts.py:51 msgid "Scheduled time must be in the future." msgstr "" -#: netbox/extras/forms/scripts.py:17 +#: extras/forms/scripts.py:17 msgid "Commit changes" msgstr "" -#: netbox/extras/forms/scripts.py:18 +#: extras/forms/scripts.py:18 msgid "Commit changes to the database (uncheck for a dry-run)" msgstr "" -#: netbox/extras/forms/scripts.py:24 +#: extras/forms/scripts.py:24 msgid "Schedule execution of script to a set time" msgstr "" -#: netbox/extras/forms/scripts.py:33 +#: extras/forms/scripts.py:33 msgid "Interval at which this script is re-run (in minutes)" msgstr "" -#: netbox/extras/jobs.py:49 +#: extras/jobs.py:49 msgid "Database changes have been reverted automatically." msgstr "" -#: netbox/extras/jobs.py:55 +#: extras/jobs.py:55 msgid "Script aborted with error: " msgstr "" -#: netbox/extras/jobs.py:65 +#: extras/jobs.py:65 msgid "An exception occurred: " msgstr "" -#: netbox/extras/jobs.py:70 +#: extras/jobs.py:70 msgid "Database changes have been reverted due to error." msgstr "" -#: netbox/extras/management/commands/reindex.py:66 +#: extras/management/commands/reindex.py:66 msgid "No indexers found!" msgstr "" -#: netbox/extras/models/configs.py:130 +#: extras/models/configs.py:130 msgid "config context" msgstr "" -#: netbox/extras/models/configs.py:131 +#: extras/models/configs.py:131 msgid "config contexts" msgstr "" -#: netbox/extras/models/configs.py:149 netbox/extras/models/configs.py:205 +#: extras/models/configs.py:149 extras/models/configs.py:205 msgid "JSON data must be in object form. Example:" msgstr "" -#: netbox/extras/models/configs.py:169 +#: extras/models/configs.py:169 msgid "" "Local config context data takes precedence over source contexts in the final " "rendered config context" msgstr "" -#: netbox/extras/models/configs.py:224 +#: extras/models/configs.py:224 msgid "template code" msgstr "" -#: netbox/extras/models/configs.py:225 +#: extras/models/configs.py:225 msgid "Jinja2 template code." msgstr "" -#: netbox/extras/models/configs.py:228 +#: extras/models/configs.py:228 msgid "environment parameters" msgstr "" -#: netbox/extras/models/configs.py:233 +#: extras/models/configs.py:233 msgid "" "Any additional parameters to pass when constructing the Jinja2 " "environment." msgstr "" -#: netbox/extras/models/configs.py:240 +#: extras/models/configs.py:240 msgid "config template" msgstr "" -#: netbox/extras/models/configs.py:241 +#: extras/models/configs.py:241 msgid "config templates" msgstr "" -#: netbox/extras/models/customfields.py:75 +#: extras/models/customfields.py:75 msgid "The object(s) to which this field applies." msgstr "" -#: netbox/extras/models/customfields.py:82 +#: extras/models/customfields.py:82 msgid "The type of data this custom field holds" msgstr "" -#: netbox/extras/models/customfields.py:89 +#: extras/models/customfields.py:89 msgid "The type of NetBox object this field maps to (for object fields)" msgstr "" -#: netbox/extras/models/customfields.py:95 +#: extras/models/customfields.py:95 msgid "Internal field name" msgstr "" -#: netbox/extras/models/customfields.py:99 +#: extras/models/customfields.py:99 msgid "Only alphanumeric characters and underscores are allowed." msgstr "" -#: netbox/extras/models/customfields.py:104 +#: extras/models/customfields.py:104 msgid "Double underscores are not permitted in custom field names." msgstr "" -#: netbox/extras/models/customfields.py:115 +#: extras/models/customfields.py:115 msgid "" "Name of the field as displayed to users (if not provided, 'the field's name " "will be used)" msgstr "" -#: netbox/extras/models/customfields.py:119 netbox/extras/models/models.py:317 +#: extras/models/customfields.py:119 extras/models/models.py:317 msgid "group name" msgstr "" -#: netbox/extras/models/customfields.py:122 +#: extras/models/customfields.py:122 msgid "Custom fields within the same group will be displayed together" msgstr "" -#: netbox/extras/models/customfields.py:130 +#: extras/models/customfields.py:130 msgid "required" msgstr "" -#: netbox/extras/models/customfields.py:132 +#: extras/models/customfields.py:132 msgid "" "This field is required when creating new objects or editing an existing " "object." msgstr "" -#: netbox/extras/models/customfields.py:135 +#: extras/models/customfields.py:135 msgid "must be unique" msgstr "" -#: netbox/extras/models/customfields.py:137 +#: extras/models/customfields.py:137 msgid "The value of this field must be unique for the assigned object" msgstr "" -#: netbox/extras/models/customfields.py:140 +#: extras/models/customfields.py:140 msgid "search weight" msgstr "" -#: netbox/extras/models/customfields.py:143 +#: extras/models/customfields.py:143 msgid "" "Weighting for search. Lower values are considered more important. Fields " "with a search weight of zero will be ignored." msgstr "" -#: netbox/extras/models/customfields.py:148 +#: extras/models/customfields.py:148 msgid "filter logic" msgstr "" -#: netbox/extras/models/customfields.py:152 +#: extras/models/customfields.py:152 msgid "" "Loose matches any instance of a given string; exact matches the entire field." msgstr "" -#: netbox/extras/models/customfields.py:155 +#: extras/models/customfields.py:155 msgid "default" msgstr "" -#: netbox/extras/models/customfields.py:159 +#: extras/models/customfields.py:159 msgid "" "Default value for the field (must be a JSON value). Encapsulate strings with " "double quotes (e.g. \"Foo\")." msgstr "" -#: netbox/extras/models/customfields.py:166 +#: extras/models/customfields.py:166 msgid "" "Filter the object selection choices using a query_params dict (must be a " "JSON value).Encapsulate strings with double quotes (e.g. \"Foo\")." msgstr "" -#: netbox/extras/models/customfields.py:172 +#: extras/models/customfields.py:172 msgid "display weight" msgstr "" -#: netbox/extras/models/customfields.py:173 +#: extras/models/customfields.py:173 msgid "Fields with higher weights appear lower in a form." msgstr "" -#: netbox/extras/models/customfields.py:178 +#: extras/models/customfields.py:178 msgid "minimum value" msgstr "" -#: netbox/extras/models/customfields.py:179 +#: extras/models/customfields.py:179 msgid "Minimum allowed value (for numeric fields)" msgstr "" -#: netbox/extras/models/customfields.py:184 +#: extras/models/customfields.py:184 msgid "maximum value" msgstr "" -#: netbox/extras/models/customfields.py:185 +#: extras/models/customfields.py:185 msgid "Maximum allowed value (for numeric fields)" msgstr "" -#: netbox/extras/models/customfields.py:191 +#: extras/models/customfields.py:191 msgid "validation regex" msgstr "" -#: netbox/extras/models/customfields.py:193 +#: extras/models/customfields.py:193 #, python-brace-format msgid "" "Regular expression to enforce on text field values. Use ^ and $ to force " @@ -8076,261 +7555,259 @@ msgid "" "values to exactly three uppercase letters." msgstr "" -#: netbox/extras/models/customfields.py:201 +#: extras/models/customfields.py:201 msgid "choice set" msgstr "" -#: netbox/extras/models/customfields.py:210 +#: extras/models/customfields.py:210 msgid "Specifies whether the custom field is displayed in the UI" msgstr "" -#: netbox/extras/models/customfields.py:217 +#: extras/models/customfields.py:217 msgid "Specifies whether the custom field value can be edited in the UI" msgstr "" -#: netbox/extras/models/customfields.py:221 +#: extras/models/customfields.py:221 msgid "is cloneable" msgstr "" -#: netbox/extras/models/customfields.py:222 +#: extras/models/customfields.py:222 msgid "Replicate this value when cloning objects" msgstr "" -#: netbox/extras/models/customfields.py:239 +#: extras/models/customfields.py:239 msgid "custom field" msgstr "" -#: netbox/extras/models/customfields.py:240 +#: extras/models/customfields.py:240 msgid "custom fields" msgstr "" -#: netbox/extras/models/customfields.py:329 +#: extras/models/customfields.py:329 #, python-brace-format msgid "Invalid default value \"{value}\": {error}" msgstr "" -#: netbox/extras/models/customfields.py:336 +#: extras/models/customfields.py:336 msgid "A minimum value may be set only for numeric fields" msgstr "" -#: netbox/extras/models/customfields.py:338 +#: extras/models/customfields.py:338 msgid "A maximum value may be set only for numeric fields" msgstr "" -#: netbox/extras/models/customfields.py:348 +#: extras/models/customfields.py:348 msgid "Regular expression validation is supported only for text and URL fields" msgstr "" -#: netbox/extras/models/customfields.py:354 +#: extras/models/customfields.py:354 msgid "Uniqueness cannot be enforced for boolean fields" msgstr "" -#: netbox/extras/models/customfields.py:364 +#: extras/models/customfields.py:364 msgid "Selection fields must specify a set of choices." msgstr "" -#: netbox/extras/models/customfields.py:368 +#: extras/models/customfields.py:368 msgid "Choices may be set only on selection fields." msgstr "" -#: netbox/extras/models/customfields.py:375 +#: extras/models/customfields.py:375 msgid "Object fields must define an object type." msgstr "" -#: netbox/extras/models/customfields.py:379 +#: extras/models/customfields.py:379 #, python-brace-format msgid "{type} fields may not define an object type." msgstr "" -#: netbox/extras/models/customfields.py:386 +#: extras/models/customfields.py:386 msgid "A related object filter can be defined only for object fields." msgstr "" -#: netbox/extras/models/customfields.py:390 +#: extras/models/customfields.py:390 msgid "Filter must be defined as a dictionary mapping attributes to values." msgstr "" -#: netbox/extras/models/customfields.py:469 +#: extras/models/customfields.py:469 msgid "True" msgstr "" -#: netbox/extras/models/customfields.py:470 +#: extras/models/customfields.py:470 msgid "False" msgstr "" -#: netbox/extras/models/customfields.py:560 +#: extras/models/customfields.py:560 #, python-brace-format msgid "Values must match this regex: {regex}" msgstr "" -#: netbox/extras/models/customfields.py:654 +#: extras/models/customfields.py:654 msgid "Value must be a string." msgstr "" -#: netbox/extras/models/customfields.py:656 +#: extras/models/customfields.py:656 #, python-brace-format msgid "Value must match regex '{regex}'" msgstr "" -#: netbox/extras/models/customfields.py:661 +#: extras/models/customfields.py:661 msgid "Value must be an integer." msgstr "" -#: netbox/extras/models/customfields.py:664 -#: netbox/extras/models/customfields.py:679 +#: extras/models/customfields.py:664 extras/models/customfields.py:679 #, python-brace-format msgid "Value must be at least {minimum}" msgstr "" -#: netbox/extras/models/customfields.py:668 -#: netbox/extras/models/customfields.py:683 +#: extras/models/customfields.py:668 extras/models/customfields.py:683 #, python-brace-format msgid "Value must not exceed {maximum}" msgstr "" -#: netbox/extras/models/customfields.py:676 +#: extras/models/customfields.py:676 msgid "Value must be a decimal." msgstr "" -#: netbox/extras/models/customfields.py:688 +#: extras/models/customfields.py:688 msgid "Value must be true or false." msgstr "" -#: netbox/extras/models/customfields.py:696 +#: extras/models/customfields.py:696 msgid "Date values must be in ISO 8601 format (YYYY-MM-DD)." msgstr "" -#: netbox/extras/models/customfields.py:705 +#: extras/models/customfields.py:705 msgid "Date and time values must be in ISO 8601 format (YYYY-MM-DD HH:MM:SS)." msgstr "" -#: netbox/extras/models/customfields.py:712 +#: extras/models/customfields.py:712 #, python-brace-format msgid "Invalid choice ({value}) for choice set {choiceset}." msgstr "" -#: netbox/extras/models/customfields.py:722 +#: extras/models/customfields.py:722 #, python-brace-format msgid "Invalid choice(s) ({value}) for choice set {choiceset}." msgstr "" -#: netbox/extras/models/customfields.py:731 +#: extras/models/customfields.py:731 #, python-brace-format msgid "Value must be an object ID, not {type}" msgstr "" -#: netbox/extras/models/customfields.py:737 +#: extras/models/customfields.py:737 #, python-brace-format msgid "Value must be a list of object IDs, not {type}" msgstr "" -#: netbox/extras/models/customfields.py:741 +#: extras/models/customfields.py:741 #, python-brace-format msgid "Found invalid object ID: {id}" msgstr "" -#: netbox/extras/models/customfields.py:744 +#: extras/models/customfields.py:744 msgid "Required field cannot be empty." msgstr "" -#: netbox/extras/models/customfields.py:763 +#: extras/models/customfields.py:763 msgid "Base set of predefined choices (optional)" msgstr "" -#: netbox/extras/models/customfields.py:775 +#: extras/models/customfields.py:775 msgid "Choices are automatically ordered alphabetically" msgstr "" -#: netbox/extras/models/customfields.py:782 +#: extras/models/customfields.py:782 msgid "custom field choice set" msgstr "" -#: netbox/extras/models/customfields.py:783 +#: extras/models/customfields.py:783 msgid "custom field choice sets" msgstr "" -#: netbox/extras/models/customfields.py:825 +#: extras/models/customfields.py:825 msgid "Must define base or extra choices." msgstr "" -#: netbox/extras/models/customfields.py:849 +#: extras/models/customfields.py:849 #, python-brace-format msgid "" "Cannot remove choice {choice} as there are {model} objects which reference " "it." msgstr "" -#: netbox/extras/models/dashboard.py:18 +#: extras/models/dashboard.py:18 msgid "layout" msgstr "" -#: netbox/extras/models/dashboard.py:22 +#: extras/models/dashboard.py:22 msgid "config" msgstr "" -#: netbox/extras/models/dashboard.py:27 +#: extras/models/dashboard.py:27 msgid "dashboard" msgstr "" -#: netbox/extras/models/dashboard.py:28 +#: extras/models/dashboard.py:28 msgid "dashboards" msgstr "" -#: netbox/extras/models/models.py:52 +#: extras/models/models.py:52 msgid "object types" msgstr "" -#: netbox/extras/models/models.py:53 +#: extras/models/models.py:53 msgid "The object(s) to which this rule applies." msgstr "" -#: netbox/extras/models/models.py:67 +#: extras/models/models.py:67 msgid "The types of event which will trigger this rule." msgstr "" -#: netbox/extras/models/models.py:74 +#: extras/models/models.py:74 msgid "conditions" msgstr "" -#: netbox/extras/models/models.py:77 +#: extras/models/models.py:77 msgid "" "A set of conditions which determine whether the event will be generated." msgstr "" -#: netbox/extras/models/models.py:85 +#: extras/models/models.py:85 msgid "action type" msgstr "" -#: netbox/extras/models/models.py:104 +#: extras/models/models.py:104 msgid "Additional data to pass to the action object" msgstr "" -#: netbox/extras/models/models.py:116 +#: extras/models/models.py:116 msgid "event rule" msgstr "" -#: netbox/extras/models/models.py:117 +#: extras/models/models.py:117 msgid "event rules" msgstr "" -#: netbox/extras/models/models.py:166 +#: extras/models/models.py:166 msgid "" "This URL will be called using the HTTP method defined when the webhook is " "called. Jinja2 template processing is supported with the same context as the " "request body." msgstr "" -#: netbox/extras/models/models.py:181 +#: extras/models/models.py:181 msgid "" "The complete list of official content types is available here." msgstr "" -#: netbox/extras/models/models.py:186 +#: extras/models/models.py:186 msgid "additional headers" msgstr "" -#: netbox/extras/models/models.py:189 +#: extras/models/models.py:189 msgid "" "User-supplied HTTP headers to be sent with the request in addition to the " "HTTP content type. Headers should be defined in the format Name: " @@ -8338,11 +7815,11 @@ msgid "" "as the request body (below)." msgstr "" -#: netbox/extras/models/models.py:195 +#: extras/models/models.py:195 msgid "body template" msgstr "" -#: netbox/extras/models/models.py:198 +#: extras/models/models.py:198 msgid "" "Jinja2 template for a custom request body. If blank, a JSON object " "representing the change will be included. Available context data includes: " @@ -8350,4390 +7827,4253 @@ msgid "" "username, request_id, and data." msgstr "" -#: netbox/extras/models/models.py:204 +#: extras/models/models.py:204 msgid "secret" msgstr "" -#: netbox/extras/models/models.py:208 +#: extras/models/models.py:208 msgid "" "When provided, the request will include a X-Hook-Signature " "header containing a HMAC hex digest of the payload body using the secret as " "the key. The secret is not transmitted in the request." msgstr "" -#: netbox/extras/models/models.py:215 +#: extras/models/models.py:215 msgid "Enable SSL certificate verification. Disable with caution!" msgstr "" -#: netbox/extras/models/models.py:221 netbox/templates/extras/webhook.html:51 +#: extras/models/models.py:221 templates/extras/webhook.html:51 msgid "CA File Path" msgstr "" -#: netbox/extras/models/models.py:223 +#: extras/models/models.py:223 msgid "" "The specific CA certificate file to use for SSL verification. Leave blank to " "use the system defaults." msgstr "" -#: netbox/extras/models/models.py:234 +#: extras/models/models.py:234 msgid "webhook" msgstr "" -#: netbox/extras/models/models.py:235 +#: extras/models/models.py:235 msgid "webhooks" msgstr "" -#: netbox/extras/models/models.py:253 +#: extras/models/models.py:253 msgid "Do not specify a CA certificate file if SSL verification is disabled." msgstr "" -#: netbox/extras/models/models.py:293 +#: extras/models/models.py:293 msgid "The object type(s) to which this link applies." msgstr "" -#: netbox/extras/models/models.py:305 +#: extras/models/models.py:305 msgid "link text" msgstr "" -#: netbox/extras/models/models.py:306 +#: extras/models/models.py:306 msgid "Jinja2 template code for link text" msgstr "" -#: netbox/extras/models/models.py:309 +#: extras/models/models.py:309 msgid "link URL" msgstr "" -#: netbox/extras/models/models.py:310 +#: extras/models/models.py:310 msgid "Jinja2 template code for link URL" msgstr "" -#: netbox/extras/models/models.py:320 +#: extras/models/models.py:320 msgid "Links with the same group will appear as a dropdown menu" msgstr "" -#: netbox/extras/models/models.py:330 +#: extras/models/models.py:330 msgid "new window" msgstr "" -#: netbox/extras/models/models.py:332 +#: extras/models/models.py:332 msgid "Force link to open in a new window" msgstr "" -#: netbox/extras/models/models.py:341 +#: extras/models/models.py:341 msgid "custom link" msgstr "" -#: netbox/extras/models/models.py:342 +#: extras/models/models.py:342 msgid "custom links" msgstr "" -#: netbox/extras/models/models.py:389 +#: extras/models/models.py:389 msgid "The object type(s) to which this template applies." msgstr "" -#: netbox/extras/models/models.py:402 +#: extras/models/models.py:402 msgid "" "Jinja2 template code. The list of objects being exported is passed as a " "context variable named queryset." msgstr "" -#: netbox/extras/models/models.py:410 +#: extras/models/models.py:410 msgid "Defaults to text/plain; charset=utf-8" msgstr "" -#: netbox/extras/models/models.py:413 +#: extras/models/models.py:413 msgid "file extension" msgstr "" -#: netbox/extras/models/models.py:416 +#: extras/models/models.py:416 msgid "Extension to append to the rendered filename" msgstr "" -#: netbox/extras/models/models.py:419 +#: extras/models/models.py:419 msgid "as attachment" msgstr "" -#: netbox/extras/models/models.py:421 +#: extras/models/models.py:421 msgid "Download file as attachment" msgstr "" -#: netbox/extras/models/models.py:430 +#: extras/models/models.py:430 msgid "export template" msgstr "" -#: netbox/extras/models/models.py:431 +#: extras/models/models.py:431 msgid "export templates" msgstr "" -#: netbox/extras/models/models.py:448 +#: extras/models/models.py:448 #, python-brace-format msgid "\"{name}\" is a reserved name. Please choose a different name." msgstr "" -#: netbox/extras/models/models.py:498 +#: extras/models/models.py:498 msgid "The object type(s) to which this filter applies." msgstr "" -#: netbox/extras/models/models.py:530 +#: extras/models/models.py:530 msgid "shared" msgstr "" -#: netbox/extras/models/models.py:543 +#: extras/models/models.py:543 msgid "saved filter" msgstr "" -#: netbox/extras/models/models.py:544 +#: extras/models/models.py:544 msgid "saved filters" msgstr "" -#: netbox/extras/models/models.py:562 +#: extras/models/models.py:562 msgid "Filter parameters must be stored as a dictionary of keyword arguments." msgstr "" -#: netbox/extras/models/models.py:590 +#: extras/models/models.py:590 msgid "image height" msgstr "" -#: netbox/extras/models/models.py:593 +#: extras/models/models.py:593 msgid "image width" msgstr "" -#: netbox/extras/models/models.py:610 +#: extras/models/models.py:610 msgid "image attachment" msgstr "" -#: netbox/extras/models/models.py:611 +#: extras/models/models.py:611 msgid "image attachments" msgstr "" -#: netbox/extras/models/models.py:625 +#: extras/models/models.py:625 #, python-brace-format msgid "Image attachments cannot be assigned to this object type ({type})." msgstr "" -#: netbox/extras/models/models.py:688 +#: extras/models/models.py:688 msgid "kind" msgstr "" -#: netbox/extras/models/models.py:702 +#: extras/models/models.py:702 msgid "journal entry" msgstr "" -#: netbox/extras/models/models.py:703 +#: extras/models/models.py:703 msgid "journal entries" msgstr "" -#: netbox/extras/models/models.py:718 +#: extras/models/models.py:718 #, python-brace-format msgid "Journaling is not supported for this object type ({type})." msgstr "" -#: netbox/extras/models/models.py:760 +#: extras/models/models.py:760 msgid "bookmark" msgstr "" -#: netbox/extras/models/models.py:761 +#: extras/models/models.py:761 msgid "bookmarks" msgstr "" -#: netbox/extras/models/models.py:774 +#: extras/models/models.py:774 #, python-brace-format msgid "Bookmarks cannot be assigned to this object type ({type})." msgstr "" -#: netbox/extras/models/notifications.py:43 +#: extras/models/notifications.py:43 msgid "read" msgstr "" -#: netbox/extras/models/notifications.py:66 +#: extras/models/notifications.py:66 msgid "event" msgstr "" -#: netbox/extras/models/notifications.py:84 +#: extras/models/notifications.py:84 msgid "notification" msgstr "" -#: netbox/extras/models/notifications.py:85 +#: extras/models/notifications.py:85 msgid "notifications" msgstr "" -#: netbox/extras/models/notifications.py:99 -#: netbox/extras/models/notifications.py:234 +#: extras/models/notifications.py:99 extras/models/notifications.py:234 #, python-brace-format msgid "Objects of this type ({type}) do not support notifications." msgstr "" -#: netbox/extras/models/notifications.py:137 netbox/users/models/users.py:58 -#: netbox/users/models/users.py:77 +#: extras/models/notifications.py:137 users/models/users.py:58 +#: users/models/users.py:77 msgid "groups" msgstr "" -#: netbox/extras/models/notifications.py:143 netbox/users/models/users.py:93 +#: extras/models/notifications.py:143 users/models/users.py:93 msgid "users" msgstr "" -#: netbox/extras/models/notifications.py:152 +#: extras/models/notifications.py:152 msgid "notification group" msgstr "" -#: netbox/extras/models/notifications.py:153 +#: extras/models/notifications.py:153 msgid "notification groups" msgstr "" -#: netbox/extras/models/notifications.py:217 +#: extras/models/notifications.py:217 msgid "subscription" msgstr "" -#: netbox/extras/models/notifications.py:218 +#: extras/models/notifications.py:218 msgid "subscriptions" msgstr "" -#: netbox/extras/models/scripts.py:42 +#: extras/models/scripts.py:42 msgid "is executable" msgstr "" -#: netbox/extras/models/scripts.py:64 +#: extras/models/scripts.py:64 msgid "script" msgstr "" -#: netbox/extras/models/scripts.py:65 +#: extras/models/scripts.py:65 msgid "scripts" msgstr "" -#: netbox/extras/models/scripts.py:111 +#: extras/models/scripts.py:111 msgid "script module" msgstr "" -#: netbox/extras/models/scripts.py:112 +#: extras/models/scripts.py:112 msgid "script modules" msgstr "" -#: netbox/extras/models/search.py:22 +#: extras/models/search.py:22 msgid "timestamp" msgstr "" -#: netbox/extras/models/search.py:37 +#: extras/models/search.py:37 msgid "field" msgstr "" -#: netbox/extras/models/search.py:45 +#: extras/models/search.py:45 msgid "value" msgstr "" -#: netbox/extras/models/search.py:56 +#: extras/models/search.py:56 msgid "cached value" msgstr "" -#: netbox/extras/models/search.py:57 +#: extras/models/search.py:57 msgid "cached values" msgstr "" -#: netbox/extras/models/staging.py:44 +#: extras/models/staging.py:44 msgid "branch" msgstr "" -#: netbox/extras/models/staging.py:45 +#: extras/models/staging.py:45 msgid "branches" msgstr "" -#: netbox/extras/models/staging.py:97 +#: extras/models/staging.py:97 msgid "staged change" msgstr "" -#: netbox/extras/models/staging.py:98 +#: extras/models/staging.py:98 msgid "staged changes" msgstr "" -#: netbox/extras/models/tags.py:40 +#: extras/models/tags.py:40 msgid "The object type(s) to which this tag can be applied." msgstr "" -#: netbox/extras/models/tags.py:49 +#: extras/models/tags.py:49 msgid "tag" msgstr "" -#: netbox/extras/models/tags.py:50 +#: extras/models/tags.py:50 msgid "tags" msgstr "" -#: netbox/extras/models/tags.py:78 +#: extras/models/tags.py:78 msgid "tagged item" msgstr "" -#: netbox/extras/models/tags.py:79 +#: extras/models/tags.py:79 msgid "tagged items" msgstr "" -#: netbox/extras/scripts.py:429 +#: extras/scripts.py:429 msgid "Script Data" msgstr "" -#: netbox/extras/scripts.py:433 +#: extras/scripts.py:433 msgid "Script Execution Parameters" msgstr "" -#: netbox/extras/tables/columns.py:12 -#: netbox/templates/htmx/notifications.html:18 +#: extras/tables/columns.py:12 templates/htmx/notifications.html:18 msgid "Dismiss" msgstr "" -#: netbox/extras/tables/tables.py:62 netbox/extras/tables/tables.py:159 -#: netbox/extras/tables/tables.py:184 netbox/extras/tables/tables.py:250 -#: netbox/extras/tables/tables.py:276 netbox/extras/tables/tables.py:412 -#: netbox/extras/tables/tables.py:446 -#: netbox/templates/extras/customfield.html:105 -#: netbox/templates/extras/eventrule.html:27 -#: netbox/templates/users/objectpermission.html:64 netbox/users/tables.py:80 +#: extras/tables/tables.py:62 extras/tables/tables.py:159 +#: extras/tables/tables.py:184 extras/tables/tables.py:250 +#: extras/tables/tables.py:276 extras/tables/tables.py:412 +#: extras/tables/tables.py:446 templates/extras/customfield.html:105 +#: templates/extras/eventrule.html:27 templates/users/objectpermission.html:64 +#: users/tables.py:80 msgid "Object Types" msgstr "" -#: netbox/extras/tables/tables.py:69 +#: extras/tables/tables.py:69 msgid "Validate Uniqueness" msgstr "" -#: netbox/extras/tables/tables.py:73 +#: extras/tables/tables.py:73 msgid "Visible" msgstr "" -#: netbox/extras/tables/tables.py:76 +#: extras/tables/tables.py:76 msgid "Editable" msgstr "" -#: netbox/extras/tables/tables.py:82 +#: extras/tables/tables.py:82 msgid "Related Object Type" msgstr "" -#: netbox/extras/tables/tables.py:86 -#: netbox/templates/extras/customfield.html:51 +#: extras/tables/tables.py:86 templates/extras/customfield.html:51 msgid "Choice Set" msgstr "" -#: netbox/extras/tables/tables.py:94 +#: extras/tables/tables.py:94 msgid "Is Cloneable" msgstr "" -#: netbox/extras/tables/tables.py:98 -#: netbox/templates/extras/customfield.html:118 +#: extras/tables/tables.py:98 templates/extras/customfield.html:118 msgid "Minimum Value" msgstr "" -#: netbox/extras/tables/tables.py:101 -#: netbox/templates/extras/customfield.html:122 +#: extras/tables/tables.py:101 templates/extras/customfield.html:122 msgid "Maximum Value" msgstr "" -#: netbox/extras/tables/tables.py:104 +#: extras/tables/tables.py:104 msgid "Validation Regex" msgstr "" -#: netbox/extras/tables/tables.py:137 +#: extras/tables/tables.py:137 msgid "Count" msgstr "" -#: netbox/extras/tables/tables.py:140 +#: extras/tables/tables.py:140 msgid "Order Alphabetically" msgstr "" -#: netbox/extras/tables/tables.py:165 -#: netbox/templates/extras/customlink.html:33 +#: extras/tables/tables.py:165 templates/extras/customlink.html:33 msgid "New Window" msgstr "" -#: netbox/extras/tables/tables.py:187 +#: extras/tables/tables.py:187 msgid "As Attachment" msgstr "" -#: netbox/extras/tables/tables.py:195 netbox/extras/tables/tables.py:487 -#: netbox/extras/tables/tables.py:522 netbox/templates/core/datafile.html:24 -#: netbox/templates/dcim/device/render_config.html:22 -#: netbox/templates/extras/configcontext.html:39 -#: netbox/templates/extras/configtemplate.html:31 -#: netbox/templates/extras/exporttemplate.html:45 -#: netbox/templates/generic/bulk_import.html:35 -#: netbox/templates/virtualization/virtualmachine/render_config.html:22 +#: extras/tables/tables.py:195 extras/tables/tables.py:487 +#: extras/tables/tables.py:522 templates/core/datafile.html:24 +#: templates/dcim/device/render_config.html:22 +#: templates/extras/configcontext.html:39 +#: templates/extras/configtemplate.html:31 +#: templates/extras/exporttemplate.html:45 +#: templates/generic/bulk_import.html:35 +#: templates/virtualization/virtualmachine/render_config.html:22 msgid "Data File" msgstr "" -#: netbox/extras/tables/tables.py:200 netbox/extras/tables/tables.py:499 -#: netbox/extras/tables/tables.py:527 +#: extras/tables/tables.py:200 extras/tables/tables.py:499 +#: extras/tables/tables.py:527 msgid "Synced" msgstr "" -#: netbox/extras/tables/tables.py:227 +#: extras/tables/tables.py:227 msgid "Image" msgstr "" -#: netbox/extras/tables/tables.py:232 +#: extras/tables/tables.py:232 msgid "Size (Bytes)" msgstr "" -#: netbox/extras/tables/tables.py:339 +#: extras/tables/tables.py:339 msgid "Read" msgstr "" -#: netbox/extras/tables/tables.py:382 +#: extras/tables/tables.py:382 msgid "SSL Validation" msgstr "" -#: netbox/extras/tables/tables.py:418 netbox/templates/extras/eventrule.html:37 +#: extras/tables/tables.py:418 templates/extras/eventrule.html:37 msgid "Event Types" msgstr "" -#: netbox/extras/tables/tables.py:535 netbox/netbox/navigation/menu.py:77 -#: netbox/templates/dcim/devicerole.html:8 +#: extras/tables/tables.py:535 netbox/navigation/menu.py:77 +#: templates/dcim/devicerole.html:8 msgid "Device Roles" msgstr "" -#: netbox/extras/tables/tables.py:587 +#: extras/tables/tables.py:587 msgid "Comments (Short)" msgstr "" -#: netbox/extras/tables/tables.py:606 netbox/extras/tables/tables.py:640 +#: extras/tables/tables.py:606 extras/tables/tables.py:640 msgid "Line" msgstr "" -#: netbox/extras/tables/tables.py:613 netbox/extras/tables/tables.py:650 +#: extras/tables/tables.py:613 extras/tables/tables.py:650 msgid "Level" msgstr "" -#: netbox/extras/tables/tables.py:619 netbox/extras/tables/tables.py:659 +#: extras/tables/tables.py:619 extras/tables/tables.py:659 msgid "Message" msgstr "" -#: netbox/extras/tables/tables.py:643 +#: extras/tables/tables.py:643 msgid "Method" msgstr "" -#: netbox/extras/validators.py:15 +#: extras/validators.py:15 #, python-format msgid "Ensure this value is equal to %(limit_value)s." msgstr "" -#: netbox/extras/validators.py:26 +#: extras/validators.py:26 #, python-format msgid "Ensure this value does not equal %(limit_value)s." msgstr "" -#: netbox/extras/validators.py:37 +#: extras/validators.py:37 msgid "This field must be empty." msgstr "" -#: netbox/extras/validators.py:52 +#: extras/validators.py:52 msgid "This field must not be empty." msgstr "" -#: netbox/extras/validators.py:94 +#: extras/validators.py:94 msgid "Validation rules must be passed as a dictionary" msgstr "" -#: netbox/extras/validators.py:119 +#: extras/validators.py:119 #, python-brace-format msgid "Custom validation failed for {attribute}: {exception}" msgstr "" -#: netbox/extras/validators.py:133 +#: extras/validators.py:133 #, python-brace-format msgid "Invalid attribute \"{name}\" for request" msgstr "" -#: netbox/extras/validators.py:150 +#: extras/validators.py:150 #, python-brace-format msgid "Invalid attribute \"{name}\" for {model}" msgstr "" -#: netbox/extras/views.py:960 +#: extras/views.py:960 msgid "Your dashboard has been reset." msgstr "" -#: netbox/extras/views.py:1006 +#: extras/views.py:1006 msgid "Added widget: " msgstr "" -#: netbox/extras/views.py:1047 +#: extras/views.py:1047 msgid "Updated widget: " msgstr "" -#: netbox/extras/views.py:1083 +#: extras/views.py:1083 msgid "Deleted widget: " msgstr "" -#: netbox/extras/views.py:1085 +#: extras/views.py:1085 msgid "Error deleting widget: " msgstr "" -#: netbox/extras/views.py:1172 +#: extras/views.py:1172 msgid "Unable to run script: RQ worker process not running." msgstr "" -#: netbox/ipam/api/field_serializers.py:17 +#: ipam/api/field_serializers.py:17 msgid "Enter a valid IPv4 or IPv6 address with optional mask." msgstr "" -#: netbox/ipam/api/field_serializers.py:24 +#: ipam/api/field_serializers.py:24 #, python-brace-format msgid "Invalid IP address format: {data}" msgstr "" -#: netbox/ipam/api/field_serializers.py:37 +#: ipam/api/field_serializers.py:37 msgid "Enter a valid IPv4 or IPv6 prefix and mask in CIDR notation." msgstr "" -#: netbox/ipam/api/field_serializers.py:44 +#: ipam/api/field_serializers.py:44 #, python-brace-format msgid "Invalid IP prefix format: {data}" msgstr "" -#: netbox/ipam/api/views.py:358 +#: ipam/api/views.py:358 msgid "" "Insufficient space is available to accommodate the requested prefix size(s)" msgstr "" -#: netbox/ipam/choices.py:30 +#: ipam/choices.py:30 msgid "Container" msgstr "" -#: netbox/ipam/choices.py:72 +#: ipam/choices.py:72 msgid "DHCP" msgstr "" -#: netbox/ipam/choices.py:73 +#: ipam/choices.py:73 msgid "SLAAC" msgstr "" -#: netbox/ipam/choices.py:89 +#: ipam/choices.py:89 msgid "Loopback" msgstr "" -#: netbox/ipam/choices.py:91 +#: ipam/choices.py:91 msgid "Anycast" msgstr "" -#: netbox/ipam/choices.py:115 +#: ipam/choices.py:115 msgid "Standard" msgstr "" -#: netbox/ipam/choices.py:120 +#: ipam/choices.py:120 msgid "CheckPoint" msgstr "" -#: netbox/ipam/choices.py:123 +#: ipam/choices.py:123 msgid "Cisco" msgstr "" -#: netbox/ipam/choices.py:137 +#: ipam/choices.py:137 msgid "Plaintext" msgstr "" -#: netbox/ipam/fields.py:36 +#: ipam/fields.py:36 #, python-brace-format msgid "Invalid IP address format: {address}" msgstr "" -#: netbox/ipam/filtersets.py:48 netbox/vpn/filtersets.py:304 +#: ipam/filtersets.py:48 vpn/filtersets.py:304 msgid "Import target" msgstr "" -#: netbox/ipam/filtersets.py:54 netbox/vpn/filtersets.py:310 +#: ipam/filtersets.py:54 vpn/filtersets.py:310 msgid "Import target (name)" msgstr "" -#: netbox/ipam/filtersets.py:59 netbox/vpn/filtersets.py:315 +#: ipam/filtersets.py:59 vpn/filtersets.py:315 msgid "Export target" msgstr "" -#: netbox/ipam/filtersets.py:65 netbox/vpn/filtersets.py:321 +#: ipam/filtersets.py:65 vpn/filtersets.py:321 msgid "Export target (name)" msgstr "" -#: netbox/ipam/filtersets.py:86 +#: ipam/filtersets.py:86 msgid "Importing VRF" msgstr "" -#: netbox/ipam/filtersets.py:92 +#: ipam/filtersets.py:92 msgid "Import VRF (RD)" msgstr "" -#: netbox/ipam/filtersets.py:97 +#: ipam/filtersets.py:97 msgid "Exporting VRF" msgstr "" -#: netbox/ipam/filtersets.py:103 +#: ipam/filtersets.py:103 msgid "Export VRF (RD)" msgstr "" -#: netbox/ipam/filtersets.py:108 +#: ipam/filtersets.py:108 msgid "Importing L2VPN" msgstr "" -#: netbox/ipam/filtersets.py:114 +#: ipam/filtersets.py:114 msgid "Importing L2VPN (identifier)" msgstr "" -#: netbox/ipam/filtersets.py:119 +#: ipam/filtersets.py:119 msgid "Exporting L2VPN" msgstr "" -#: netbox/ipam/filtersets.py:125 +#: ipam/filtersets.py:125 msgid "Exporting L2VPN (identifier)" msgstr "" -#: netbox/ipam/filtersets.py:155 netbox/ipam/filtersets.py:281 -#: netbox/ipam/forms/model_forms.py:229 netbox/ipam/tables/ip.py:212 -#: netbox/templates/ipam/prefix.html:12 +#: ipam/filtersets.py:155 ipam/filtersets.py:281 ipam/forms/model_forms.py:229 +#: ipam/tables/ip.py:212 templates/ipam/prefix.html:12 msgid "Prefix" msgstr "" -#: netbox/ipam/filtersets.py:159 netbox/ipam/filtersets.py:198 -#: netbox/ipam/filtersets.py:221 +#: ipam/filtersets.py:159 ipam/filtersets.py:198 ipam/filtersets.py:221 msgid "RIR (ID)" msgstr "" -#: netbox/ipam/filtersets.py:165 netbox/ipam/filtersets.py:204 -#: netbox/ipam/filtersets.py:227 +#: ipam/filtersets.py:165 ipam/filtersets.py:204 ipam/filtersets.py:227 msgid "RIR (slug)" msgstr "" -#: netbox/ipam/filtersets.py:285 +#: ipam/filtersets.py:285 msgid "Within prefix" msgstr "" -#: netbox/ipam/filtersets.py:289 +#: ipam/filtersets.py:289 msgid "Within and including prefix" msgstr "" -#: netbox/ipam/filtersets.py:293 +#: ipam/filtersets.py:293 msgid "Prefixes which contain this prefix or IP" msgstr "" -#: netbox/ipam/filtersets.py:304 netbox/ipam/filtersets.py:572 -#: netbox/ipam/forms/bulk_edit.py:343 netbox/ipam/forms/filtersets.py:196 -#: netbox/ipam/forms/filtersets.py:331 +#: ipam/filtersets.py:304 ipam/filtersets.py:572 ipam/forms/bulk_edit.py:343 +#: ipam/forms/filtersets.py:196 ipam/forms/filtersets.py:331 msgid "Mask length" msgstr "" -#: netbox/ipam/filtersets.py:373 netbox/vpn/filtersets.py:427 +#: ipam/filtersets.py:373 vpn/filtersets.py:427 msgid "VLAN (ID)" msgstr "" -#: netbox/ipam/filtersets.py:377 netbox/vpn/filtersets.py:422 +#: ipam/filtersets.py:377 vpn/filtersets.py:422 msgid "VLAN number (1-4094)" msgstr "" -#: netbox/ipam/filtersets.py:471 netbox/ipam/filtersets.py:475 -#: netbox/ipam/filtersets.py:567 netbox/ipam/forms/model_forms.py:463 -#: netbox/templates/tenancy/contact.html:53 -#: netbox/tenancy/forms/bulk_edit.py:113 +#: ipam/filtersets.py:471 ipam/filtersets.py:475 ipam/filtersets.py:567 +#: ipam/forms/model_forms.py:463 templates/tenancy/contact.html:53 +#: tenancy/forms/bulk_edit.py:113 msgid "Address" msgstr "" -#: netbox/ipam/filtersets.py:479 +#: ipam/filtersets.py:479 msgid "Ranges which contain this prefix or IP" msgstr "" -#: netbox/ipam/filtersets.py:507 netbox/ipam/filtersets.py:563 +#: ipam/filtersets.py:507 ipam/filtersets.py:563 msgid "Parent prefix" msgstr "" -#: netbox/ipam/filtersets.py:616 netbox/ipam/filtersets.py:856 -#: netbox/ipam/filtersets.py:1131 netbox/vpn/filtersets.py:385 +#: ipam/filtersets.py:616 ipam/filtersets.py:856 ipam/filtersets.py:1131 +#: vpn/filtersets.py:385 msgid "Virtual machine (name)" msgstr "" -#: netbox/ipam/filtersets.py:621 netbox/ipam/filtersets.py:861 -#: netbox/ipam/filtersets.py:1125 netbox/virtualization/filtersets.py:282 -#: netbox/virtualization/filtersets.py:321 netbox/vpn/filtersets.py:390 +#: ipam/filtersets.py:621 ipam/filtersets.py:861 ipam/filtersets.py:1125 +#: virtualization/filtersets.py:282 virtualization/filtersets.py:321 +#: vpn/filtersets.py:390 msgid "Virtual machine (ID)" msgstr "" -#: netbox/ipam/filtersets.py:627 netbox/vpn/filtersets.py:97 -#: netbox/vpn/filtersets.py:396 +#: ipam/filtersets.py:627 vpn/filtersets.py:97 vpn/filtersets.py:396 msgid "Interface (name)" msgstr "" -#: netbox/ipam/filtersets.py:638 netbox/vpn/filtersets.py:108 -#: netbox/vpn/filtersets.py:407 +#: ipam/filtersets.py:638 vpn/filtersets.py:108 vpn/filtersets.py:407 msgid "VM interface (name)" msgstr "" -#: netbox/ipam/filtersets.py:643 netbox/vpn/filtersets.py:113 +#: ipam/filtersets.py:643 vpn/filtersets.py:113 msgid "VM interface (ID)" msgstr "" -#: netbox/ipam/filtersets.py:648 +#: ipam/filtersets.py:648 msgid "FHRP group (ID)" msgstr "" -#: netbox/ipam/filtersets.py:652 +#: ipam/filtersets.py:652 msgid "Is assigned to an interface" msgstr "" -#: netbox/ipam/filtersets.py:656 +#: ipam/filtersets.py:656 msgid "Is assigned" msgstr "" -#: netbox/ipam/filtersets.py:668 +#: ipam/filtersets.py:668 msgid "Service (ID)" msgstr "" -#: netbox/ipam/filtersets.py:673 +#: ipam/filtersets.py:673 msgid "NAT inside IP address (ID)" msgstr "" -#: netbox/ipam/filtersets.py:1041 netbox/ipam/forms/bulk_import.py:322 +#: ipam/filtersets.py:1041 ipam/forms/bulk_import.py:322 msgid "Assigned interface" msgstr "" -#: netbox/ipam/filtersets.py:1046 +#: ipam/filtersets.py:1046 msgid "Assigned VM interface" msgstr "" -#: netbox/ipam/filtersets.py:1136 +#: ipam/filtersets.py:1136 msgid "IP address (ID)" msgstr "" -#: netbox/ipam/filtersets.py:1142 netbox/ipam/models/ip.py:788 +#: ipam/filtersets.py:1142 ipam/models/ip.py:788 msgid "IP address" msgstr "" -#: netbox/ipam/filtersets.py:1167 +#: ipam/filtersets.py:1167 msgid "Primary IPv4 (ID)" msgstr "" -#: netbox/ipam/filtersets.py:1172 +#: ipam/filtersets.py:1172 msgid "Primary IPv6 (ID)" msgstr "" -#: netbox/ipam/formfields.py:14 +#: ipam/formfields.py:14 msgid "Enter a valid IPv4 or IPv6 address (without a mask)." msgstr "" -#: netbox/ipam/formfields.py:32 +#: ipam/formfields.py:32 #, python-brace-format msgid "Invalid IPv4/IPv6 address format: {address}" msgstr "" -#: netbox/ipam/formfields.py:37 +#: ipam/formfields.py:37 msgid "This field requires an IP address without a mask." msgstr "" -#: netbox/ipam/formfields.py:39 netbox/ipam/formfields.py:61 +#: ipam/formfields.py:39 ipam/formfields.py:61 msgid "Please specify a valid IPv4 or IPv6 address." msgstr "" -#: netbox/ipam/formfields.py:44 +#: ipam/formfields.py:44 msgid "Enter a valid IPv4 or IPv6 address (with CIDR mask)." msgstr "" -#: netbox/ipam/formfields.py:56 +#: ipam/formfields.py:56 msgid "CIDR mask (e.g. /24) is required." msgstr "" -#: netbox/ipam/forms/bulk_create.py:13 +#: ipam/forms/bulk_create.py:13 msgid "Address pattern" msgstr "" -#: netbox/ipam/forms/bulk_edit.py:50 +#: ipam/forms/bulk_edit.py:50 msgid "Enforce unique space" msgstr "" -#: netbox/ipam/forms/bulk_edit.py:88 +#: ipam/forms/bulk_edit.py:88 msgid "Is private" msgstr "" -#: netbox/ipam/forms/bulk_edit.py:109 netbox/ipam/forms/bulk_edit.py:138 -#: netbox/ipam/forms/bulk_edit.py:163 netbox/ipam/forms/bulk_import.py:89 -#: netbox/ipam/forms/bulk_import.py:109 netbox/ipam/forms/bulk_import.py:129 -#: netbox/ipam/forms/filtersets.py:110 netbox/ipam/forms/filtersets.py:125 -#: netbox/ipam/forms/filtersets.py:148 netbox/ipam/forms/model_forms.py:96 -#: netbox/ipam/forms/model_forms.py:109 netbox/ipam/forms/model_forms.py:131 -#: netbox/ipam/forms/model_forms.py:149 netbox/ipam/models/asns.py:31 -#: netbox/ipam/models/asns.py:103 netbox/ipam/models/ip.py:71 -#: netbox/ipam/models/ip.py:90 netbox/ipam/tables/asn.py:20 -#: netbox/ipam/tables/asn.py:45 netbox/templates/ipam/aggregate.html:18 -#: netbox/templates/ipam/asn.html:27 netbox/templates/ipam/asnrange.html:19 -#: netbox/templates/ipam/rir.html:19 +#: ipam/forms/bulk_edit.py:109 ipam/forms/bulk_edit.py:138 +#: ipam/forms/bulk_edit.py:163 ipam/forms/bulk_import.py:89 +#: ipam/forms/bulk_import.py:109 ipam/forms/bulk_import.py:129 +#: ipam/forms/filtersets.py:110 ipam/forms/filtersets.py:125 +#: ipam/forms/filtersets.py:148 ipam/forms/model_forms.py:96 +#: ipam/forms/model_forms.py:109 ipam/forms/model_forms.py:131 +#: ipam/forms/model_forms.py:149 ipam/models/asns.py:31 ipam/models/asns.py:103 +#: ipam/models/ip.py:71 ipam/models/ip.py:90 ipam/tables/asn.py:20 +#: ipam/tables/asn.py:45 templates/ipam/aggregate.html:18 +#: templates/ipam/asn.html:27 templates/ipam/asnrange.html:19 +#: templates/ipam/rir.html:19 msgid "RIR" msgstr "" -#: netbox/ipam/forms/bulk_edit.py:171 +#: ipam/forms/bulk_edit.py:171 msgid "Date added" msgstr "" -#: netbox/ipam/forms/bulk_edit.py:229 netbox/ipam/forms/model_forms.py:586 -#: netbox/ipam/forms/model_forms.py:633 netbox/ipam/tables/ip.py:251 -#: netbox/templates/ipam/vlan_edit.html:37 -#: netbox/templates/ipam/vlangroup.html:27 +#: ipam/forms/bulk_edit.py:229 ipam/forms/model_forms.py:586 +#: ipam/forms/model_forms.py:633 ipam/tables/ip.py:251 +#: templates/ipam/vlan_edit.html:37 templates/ipam/vlangroup.html:27 msgid "VLAN Group" msgstr "" -#: netbox/ipam/forms/bulk_edit.py:234 netbox/ipam/forms/bulk_import.py:185 -#: netbox/ipam/forms/filtersets.py:256 netbox/ipam/forms/model_forms.py:218 -#: netbox/ipam/models/vlans.py:234 netbox/ipam/tables/ip.py:255 -#: netbox/templates/ipam/prefix.html:60 netbox/templates/ipam/vlan.html:12 -#: netbox/templates/ipam/vlan/base.html:6 -#: netbox/templates/ipam/vlan_edit.html:10 -#: netbox/templates/wireless/wirelesslan.html:30 -#: netbox/vpn/forms/bulk_import.py:304 netbox/vpn/forms/filtersets.py:284 -#: netbox/vpn/forms/model_forms.py:433 netbox/vpn/forms/model_forms.py:452 -#: netbox/wireless/forms/bulk_edit.py:55 -#: netbox/wireless/forms/bulk_import.py:48 -#: netbox/wireless/forms/model_forms.py:48 netbox/wireless/models.py:102 +#: ipam/forms/bulk_edit.py:234 ipam/forms/bulk_import.py:185 +#: ipam/forms/filtersets.py:256 ipam/forms/model_forms.py:218 +#: ipam/models/vlans.py:234 ipam/tables/ip.py:255 templates/ipam/prefix.html:60 +#: templates/ipam/vlan.html:12 templates/ipam/vlan/base.html:6 +#: templates/ipam/vlan_edit.html:10 templates/wireless/wirelesslan.html:30 +#: vpn/forms/bulk_import.py:304 vpn/forms/filtersets.py:284 +#: vpn/forms/model_forms.py:433 vpn/forms/model_forms.py:452 +#: wireless/forms/bulk_edit.py:55 wireless/forms/bulk_import.py:48 +#: wireless/forms/model_forms.py:48 wireless/models.py:102 msgid "VLAN" msgstr "" -#: netbox/ipam/forms/bulk_edit.py:245 +#: ipam/forms/bulk_edit.py:245 msgid "Prefix length" msgstr "" -#: netbox/ipam/forms/bulk_edit.py:268 netbox/ipam/forms/filtersets.py:241 -#: netbox/templates/ipam/prefix.html:85 +#: ipam/forms/bulk_edit.py:268 ipam/forms/filtersets.py:241 +#: templates/ipam/prefix.html:85 msgid "Is a pool" msgstr "" -#: netbox/ipam/forms/bulk_edit.py:273 netbox/ipam/forms/bulk_edit.py:318 -#: netbox/ipam/forms/filtersets.py:248 netbox/ipam/forms/filtersets.py:293 -#: netbox/ipam/models/ip.py:272 netbox/ipam/models/ip.py:539 +#: ipam/forms/bulk_edit.py:273 ipam/forms/bulk_edit.py:318 +#: ipam/forms/filtersets.py:248 ipam/forms/filtersets.py:293 +#: ipam/models/ip.py:272 ipam/models/ip.py:539 msgid "Treat as fully utilized" msgstr "" -#: netbox/ipam/forms/bulk_edit.py:287 netbox/ipam/forms/filtersets.py:171 +#: ipam/forms/bulk_edit.py:287 ipam/forms/filtersets.py:171 msgid "VLAN Assignment" msgstr "" -#: netbox/ipam/forms/bulk_edit.py:366 netbox/ipam/models/ip.py:772 +#: ipam/forms/bulk_edit.py:366 ipam/models/ip.py:772 msgid "DNS name" msgstr "" -#: netbox/ipam/forms/bulk_edit.py:387 netbox/ipam/forms/bulk_edit.py:534 -#: netbox/ipam/forms/bulk_import.py:394 netbox/ipam/forms/bulk_import.py:469 -#: netbox/ipam/forms/bulk_import.py:495 netbox/ipam/forms/filtersets.py:390 -#: netbox/ipam/forms/filtersets.py:530 netbox/templates/ipam/fhrpgroup.html:22 -#: netbox/templates/ipam/inc/panels/fhrp_groups.html:24 -#: netbox/templates/ipam/service.html:32 -#: netbox/templates/ipam/servicetemplate.html:19 +#: ipam/forms/bulk_edit.py:387 ipam/forms/bulk_edit.py:534 +#: ipam/forms/bulk_import.py:394 ipam/forms/bulk_import.py:469 +#: ipam/forms/bulk_import.py:495 ipam/forms/filtersets.py:390 +#: ipam/forms/filtersets.py:530 templates/ipam/fhrpgroup.html:22 +#: templates/ipam/inc/panels/fhrp_groups.html:24 templates/ipam/service.html:32 +#: templates/ipam/servicetemplate.html:19 msgid "Protocol" msgstr "" -#: netbox/ipam/forms/bulk_edit.py:394 netbox/ipam/forms/filtersets.py:397 -#: netbox/ipam/tables/fhrp.py:22 netbox/templates/ipam/fhrpgroup.html:26 +#: ipam/forms/bulk_edit.py:394 ipam/forms/filtersets.py:397 +#: ipam/tables/fhrp.py:22 templates/ipam/fhrpgroup.html:26 msgid "Group ID" msgstr "" -#: netbox/ipam/forms/bulk_edit.py:399 netbox/ipam/forms/filtersets.py:402 -#: netbox/wireless/forms/bulk_edit.py:68 netbox/wireless/forms/bulk_edit.py:115 -#: netbox/wireless/forms/bulk_import.py:62 -#: netbox/wireless/forms/bulk_import.py:65 -#: netbox/wireless/forms/bulk_import.py:104 -#: netbox/wireless/forms/bulk_import.py:107 -#: netbox/wireless/forms/filtersets.py:54 -#: netbox/wireless/forms/filtersets.py:88 +#: ipam/forms/bulk_edit.py:399 ipam/forms/filtersets.py:402 +#: wireless/forms/bulk_edit.py:68 wireless/forms/bulk_edit.py:115 +#: wireless/forms/bulk_import.py:62 wireless/forms/bulk_import.py:65 +#: wireless/forms/bulk_import.py:104 wireless/forms/bulk_import.py:107 +#: wireless/forms/filtersets.py:54 wireless/forms/filtersets.py:88 msgid "Authentication type" msgstr "" -#: netbox/ipam/forms/bulk_edit.py:404 netbox/ipam/forms/filtersets.py:406 +#: ipam/forms/bulk_edit.py:404 ipam/forms/filtersets.py:406 msgid "Authentication key" msgstr "" -#: netbox/ipam/forms/bulk_edit.py:421 netbox/ipam/forms/filtersets.py:383 -#: netbox/ipam/forms/model_forms.py:474 netbox/netbox/navigation/menu.py:386 -#: netbox/templates/ipam/fhrpgroup.html:49 -#: netbox/templates/wireless/inc/authentication_attrs.html:5 -#: netbox/wireless/forms/bulk_edit.py:91 netbox/wireless/forms/bulk_edit.py:149 -#: netbox/wireless/forms/filtersets.py:36 -#: netbox/wireless/forms/filtersets.py:76 -#: netbox/wireless/forms/model_forms.py:55 -#: netbox/wireless/forms/model_forms.py:171 +#: ipam/forms/bulk_edit.py:421 ipam/forms/filtersets.py:383 +#: ipam/forms/model_forms.py:474 netbox/navigation/menu.py:386 +#: templates/ipam/fhrpgroup.html:49 +#: templates/wireless/inc/authentication_attrs.html:5 +#: wireless/forms/bulk_edit.py:91 wireless/forms/bulk_edit.py:149 +#: wireless/forms/filtersets.py:36 wireless/forms/filtersets.py:76 +#: wireless/forms/model_forms.py:55 wireless/forms/model_forms.py:171 msgid "Authentication" msgstr "" -#: netbox/ipam/forms/bulk_edit.py:436 netbox/ipam/forms/model_forms.py:575 +#: ipam/forms/bulk_edit.py:436 ipam/forms/model_forms.py:575 msgid "Scope type" msgstr "" -#: netbox/ipam/forms/bulk_edit.py:439 netbox/ipam/forms/bulk_edit.py:453 -#: netbox/ipam/forms/model_forms.py:578 netbox/ipam/forms/model_forms.py:588 -#: netbox/ipam/tables/vlans.py:71 netbox/templates/ipam/vlangroup.html:38 +#: ipam/forms/bulk_edit.py:439 ipam/forms/bulk_edit.py:453 +#: ipam/forms/model_forms.py:578 ipam/forms/model_forms.py:588 +#: ipam/tables/vlans.py:71 templates/ipam/vlangroup.html:38 msgid "Scope" msgstr "" -#: netbox/ipam/forms/bulk_edit.py:446 netbox/ipam/models/vlans.py:60 +#: ipam/forms/bulk_edit.py:446 ipam/models/vlans.py:60 msgid "VLAN ID ranges" msgstr "" -#: netbox/ipam/forms/bulk_edit.py:525 +#: ipam/forms/bulk_edit.py:525 msgid "Site & Group" msgstr "" -#: netbox/ipam/forms/bulk_edit.py:539 netbox/ipam/forms/model_forms.py:659 -#: netbox/ipam/forms/model_forms.py:691 netbox/ipam/tables/services.py:19 -#: netbox/ipam/tables/services.py:49 netbox/templates/ipam/service.html:36 -#: netbox/templates/ipam/servicetemplate.html:23 +#: ipam/forms/bulk_edit.py:539 ipam/forms/model_forms.py:659 +#: ipam/forms/model_forms.py:691 ipam/tables/services.py:19 +#: ipam/tables/services.py:49 templates/ipam/service.html:36 +#: templates/ipam/servicetemplate.html:23 msgid "Ports" msgstr "" -#: netbox/ipam/forms/bulk_import.py:48 +#: ipam/forms/bulk_import.py:48 msgid "Import route targets" msgstr "" -#: netbox/ipam/forms/bulk_import.py:54 +#: ipam/forms/bulk_import.py:54 msgid "Export route targets" msgstr "" -#: netbox/ipam/forms/bulk_import.py:92 netbox/ipam/forms/bulk_import.py:112 -#: netbox/ipam/forms/bulk_import.py:132 +#: ipam/forms/bulk_import.py:92 ipam/forms/bulk_import.py:112 +#: ipam/forms/bulk_import.py:132 msgid "Assigned RIR" msgstr "" -#: netbox/ipam/forms/bulk_import.py:182 +#: ipam/forms/bulk_import.py:182 msgid "VLAN's group (if any)" msgstr "" -#: netbox/ipam/forms/bulk_import.py:308 +#: ipam/forms/bulk_import.py:308 msgid "Parent device of assigned interface (if any)" msgstr "" -#: netbox/ipam/forms/bulk_import.py:311 netbox/ipam/forms/bulk_import.py:488 -#: netbox/ipam/forms/model_forms.py:685 netbox/virtualization/filtersets.py:288 -#: netbox/virtualization/filtersets.py:327 -#: netbox/virtualization/forms/bulk_edit.py:200 -#: netbox/virtualization/forms/bulk_edit.py:326 -#: netbox/virtualization/forms/bulk_import.py:146 -#: netbox/virtualization/forms/bulk_import.py:207 -#: netbox/virtualization/forms/filtersets.py:212 -#: netbox/virtualization/forms/filtersets.py:248 -#: netbox/virtualization/forms/model_forms.py:288 -#: netbox/vpn/forms/bulk_import.py:93 netbox/vpn/forms/bulk_import.py:290 +#: ipam/forms/bulk_import.py:311 ipam/forms/bulk_import.py:488 +#: ipam/forms/model_forms.py:685 virtualization/filtersets.py:288 +#: virtualization/filtersets.py:327 virtualization/forms/bulk_edit.py:200 +#: virtualization/forms/bulk_edit.py:326 +#: virtualization/forms/bulk_import.py:146 +#: virtualization/forms/bulk_import.py:207 +#: virtualization/forms/filtersets.py:212 +#: virtualization/forms/filtersets.py:248 +#: virtualization/forms/model_forms.py:288 vpn/forms/bulk_import.py:93 +#: vpn/forms/bulk_import.py:290 msgid "Virtual machine" msgstr "" -#: netbox/ipam/forms/bulk_import.py:315 +#: ipam/forms/bulk_import.py:315 msgid "Parent VM of assigned interface (if any)" msgstr "" -#: netbox/ipam/forms/bulk_import.py:325 +#: ipam/forms/bulk_import.py:325 msgid "Is primary" msgstr "" -#: netbox/ipam/forms/bulk_import.py:326 +#: ipam/forms/bulk_import.py:326 msgid "Make this the primary IP for the assigned device" msgstr "" -#: netbox/ipam/forms/bulk_import.py:365 +#: ipam/forms/bulk_import.py:365 msgid "No device or virtual machine specified; cannot set as primary IP" msgstr "" -#: netbox/ipam/forms/bulk_import.py:369 +#: ipam/forms/bulk_import.py:369 msgid "No interface specified; cannot set as primary IP" msgstr "" -#: netbox/ipam/forms/bulk_import.py:398 +#: ipam/forms/bulk_import.py:398 msgid "Auth type" msgstr "" -#: netbox/ipam/forms/bulk_import.py:413 +#: ipam/forms/bulk_import.py:413 msgid "Scope type (app & model)" msgstr "" -#: netbox/ipam/forms/bulk_import.py:440 +#: ipam/forms/bulk_import.py:440 msgid "Assigned VLAN group" msgstr "" -#: netbox/ipam/forms/bulk_import.py:471 netbox/ipam/forms/bulk_import.py:497 +#: ipam/forms/bulk_import.py:471 ipam/forms/bulk_import.py:497 msgid "IP protocol" msgstr "" -#: netbox/ipam/forms/bulk_import.py:485 +#: ipam/forms/bulk_import.py:485 msgid "Required if not assigned to a VM" msgstr "" -#: netbox/ipam/forms/bulk_import.py:492 +#: ipam/forms/bulk_import.py:492 msgid "Required if not assigned to a device" msgstr "" -#: netbox/ipam/forms/bulk_import.py:517 +#: ipam/forms/bulk_import.py:517 #, python-brace-format msgid "{ip} is not assigned to this device/VM." msgstr "" -#: netbox/ipam/forms/filtersets.py:47 netbox/ipam/forms/model_forms.py:63 -#: netbox/netbox/navigation/menu.py:189 netbox/vpn/forms/model_forms.py:410 +#: ipam/forms/filtersets.py:47 ipam/forms/model_forms.py:63 +#: netbox/navigation/menu.py:189 vpn/forms/model_forms.py:410 msgid "Route Targets" msgstr "" -#: netbox/ipam/forms/filtersets.py:53 netbox/ipam/forms/model_forms.py:50 -#: netbox/vpn/forms/filtersets.py:224 netbox/vpn/forms/model_forms.py:397 +#: ipam/forms/filtersets.py:53 ipam/forms/model_forms.py:50 +#: vpn/forms/filtersets.py:224 vpn/forms/model_forms.py:397 msgid "Import targets" msgstr "" -#: netbox/ipam/forms/filtersets.py:58 netbox/ipam/forms/model_forms.py:55 -#: netbox/vpn/forms/filtersets.py:229 netbox/vpn/forms/model_forms.py:402 +#: ipam/forms/filtersets.py:58 ipam/forms/model_forms.py:55 +#: vpn/forms/filtersets.py:229 vpn/forms/model_forms.py:402 msgid "Export targets" msgstr "" -#: netbox/ipam/forms/filtersets.py:73 +#: ipam/forms/filtersets.py:73 msgid "Imported by VRF" msgstr "" -#: netbox/ipam/forms/filtersets.py:78 +#: ipam/forms/filtersets.py:78 msgid "Exported by VRF" msgstr "" -#: netbox/ipam/forms/filtersets.py:87 netbox/ipam/tables/ip.py:89 -#: netbox/templates/ipam/rir.html:30 +#: ipam/forms/filtersets.py:87 ipam/tables/ip.py:89 templates/ipam/rir.html:30 msgid "Private" msgstr "" -#: netbox/ipam/forms/filtersets.py:105 netbox/ipam/forms/filtersets.py:191 -#: netbox/ipam/forms/filtersets.py:272 netbox/ipam/forms/filtersets.py:326 +#: ipam/forms/filtersets.py:105 ipam/forms/filtersets.py:191 +#: ipam/forms/filtersets.py:272 ipam/forms/filtersets.py:326 msgid "Address family" msgstr "" -#: netbox/ipam/forms/filtersets.py:119 netbox/templates/ipam/asnrange.html:25 +#: ipam/forms/filtersets.py:119 templates/ipam/asnrange.html:25 msgid "Range" msgstr "" -#: netbox/ipam/forms/filtersets.py:128 +#: ipam/forms/filtersets.py:128 msgid "Start" msgstr "" -#: netbox/ipam/forms/filtersets.py:132 +#: ipam/forms/filtersets.py:132 msgid "End" msgstr "" -#: netbox/ipam/forms/filtersets.py:186 +#: ipam/forms/filtersets.py:186 msgid "Search within" msgstr "" -#: netbox/ipam/forms/filtersets.py:207 netbox/ipam/forms/filtersets.py:342 +#: ipam/forms/filtersets.py:207 ipam/forms/filtersets.py:342 msgid "Present in VRF" msgstr "" -#: netbox/ipam/forms/filtersets.py:311 +#: ipam/forms/filtersets.py:311 msgid "Device/VM" msgstr "" -#: netbox/ipam/forms/filtersets.py:321 +#: ipam/forms/filtersets.py:321 msgid "Parent Prefix" msgstr "" -#: netbox/ipam/forms/filtersets.py:347 +#: ipam/forms/filtersets.py:347 msgid "Assigned Device" msgstr "" -#: netbox/ipam/forms/filtersets.py:352 +#: ipam/forms/filtersets.py:352 msgid "Assigned VM" msgstr "" -#: netbox/ipam/forms/filtersets.py:366 +#: ipam/forms/filtersets.py:366 msgid "Assigned to an interface" msgstr "" -#: netbox/ipam/forms/filtersets.py:373 netbox/templates/ipam/ipaddress.html:51 +#: ipam/forms/filtersets.py:373 templates/ipam/ipaddress.html:51 msgid "DNS Name" msgstr "" -#: netbox/ipam/forms/filtersets.py:416 netbox/ipam/models/vlans.py:235 -#: netbox/ipam/tables/ip.py:176 netbox/ipam/tables/vlans.py:82 -#: netbox/ipam/views.py:971 netbox/netbox/navigation/menu.py:193 -#: netbox/netbox/navigation/menu.py:195 +#: ipam/forms/filtersets.py:416 ipam/models/vlans.py:235 ipam/tables/ip.py:176 +#: ipam/tables/vlans.py:82 ipam/views.py:971 netbox/navigation/menu.py:193 +#: netbox/navigation/menu.py:195 msgid "VLANs" msgstr "" -#: netbox/ipam/forms/filtersets.py:457 +#: ipam/forms/filtersets.py:457 msgid "Contains VLAN ID" msgstr "" -#: netbox/ipam/forms/filtersets.py:513 netbox/ipam/models/vlans.py:176 -#: netbox/templates/ipam/vlan.html:31 +#: ipam/forms/filtersets.py:513 ipam/models/vlans.py:176 +#: templates/ipam/vlan.html:31 msgid "VLAN ID" msgstr "" -#: netbox/ipam/forms/filtersets.py:556 netbox/ipam/forms/model_forms.py:320 -#: netbox/ipam/forms/model_forms.py:713 netbox/ipam/forms/model_forms.py:739 -#: netbox/ipam/tables/vlans.py:195 -#: netbox/templates/virtualization/virtualdisk.html:21 -#: netbox/templates/virtualization/virtualmachine.html:12 -#: netbox/templates/virtualization/vminterface.html:21 -#: netbox/templates/vpn/tunneltermination.html:25 -#: netbox/virtualization/forms/filtersets.py:197 -#: netbox/virtualization/forms/filtersets.py:242 -#: netbox/virtualization/forms/model_forms.py:220 -#: netbox/virtualization/tables/virtualmachines.py:135 -#: netbox/virtualization/tables/virtualmachines.py:190 netbox/vpn/choices.py:45 -#: netbox/vpn/forms/filtersets.py:293 netbox/vpn/forms/model_forms.py:160 -#: netbox/vpn/forms/model_forms.py:171 netbox/vpn/forms/model_forms.py:273 -#: netbox/vpn/forms/model_forms.py:454 +#: ipam/forms/filtersets.py:556 ipam/forms/model_forms.py:320 +#: ipam/forms/model_forms.py:713 ipam/forms/model_forms.py:739 +#: ipam/tables/vlans.py:195 templates/virtualization/virtualdisk.html:21 +#: templates/virtualization/virtualmachine.html:12 +#: templates/virtualization/vminterface.html:21 +#: templates/vpn/tunneltermination.html:25 +#: virtualization/forms/filtersets.py:197 +#: virtualization/forms/filtersets.py:242 +#: virtualization/forms/model_forms.py:220 +#: virtualization/tables/virtualmachines.py:135 +#: virtualization/tables/virtualmachines.py:190 vpn/choices.py:45 +#: vpn/forms/filtersets.py:293 vpn/forms/model_forms.py:160 +#: vpn/forms/model_forms.py:171 vpn/forms/model_forms.py:273 +#: vpn/forms/model_forms.py:454 msgid "Virtual Machine" msgstr "" -#: netbox/ipam/forms/model_forms.py:80 -#: netbox/templates/ipam/routetarget.html:10 +#: ipam/forms/model_forms.py:80 templates/ipam/routetarget.html:10 msgid "Route Target" msgstr "" -#: netbox/ipam/forms/model_forms.py:114 netbox/ipam/tables/ip.py:117 -#: netbox/templates/ipam/aggregate.html:11 netbox/templates/ipam/prefix.html:38 +#: ipam/forms/model_forms.py:114 ipam/tables/ip.py:117 +#: templates/ipam/aggregate.html:11 templates/ipam/prefix.html:38 msgid "Aggregate" msgstr "" -#: netbox/ipam/forms/model_forms.py:135 netbox/templates/ipam/asnrange.html:12 +#: ipam/forms/model_forms.py:135 templates/ipam/asnrange.html:12 msgid "ASN Range" msgstr "" -#: netbox/ipam/forms/model_forms.py:231 +#: ipam/forms/model_forms.py:231 msgid "Site/VLAN Assignment" msgstr "" -#: netbox/ipam/forms/model_forms.py:259 netbox/templates/ipam/iprange.html:10 +#: ipam/forms/model_forms.py:259 templates/ipam/iprange.html:10 msgid "IP Range" msgstr "" -#: netbox/ipam/forms/model_forms.py:295 netbox/ipam/forms/model_forms.py:321 -#: netbox/ipam/forms/model_forms.py:473 netbox/templates/ipam/fhrpgroup.html:19 +#: ipam/forms/model_forms.py:295 ipam/forms/model_forms.py:321 +#: ipam/forms/model_forms.py:473 templates/ipam/fhrpgroup.html:19 msgid "FHRP Group" msgstr "" -#: netbox/ipam/forms/model_forms.py:310 +#: ipam/forms/model_forms.py:310 msgid "Make this the primary IP for the device/VM" msgstr "" -#: netbox/ipam/forms/model_forms.py:325 +#: ipam/forms/model_forms.py:325 msgid "NAT IP (Inside)" msgstr "" -#: netbox/ipam/forms/model_forms.py:384 +#: ipam/forms/model_forms.py:384 msgid "An IP address can only be assigned to a single object." msgstr "" -#: netbox/ipam/forms/model_forms.py:390 netbox/ipam/models/ip.py:897 +#: ipam/forms/model_forms.py:390 ipam/models/ip.py:897 msgid "" "Cannot reassign IP address while it is designated as the primary IP for the " "parent object" msgstr "" -#: netbox/ipam/forms/model_forms.py:400 +#: ipam/forms/model_forms.py:400 msgid "" "Only IP addresses assigned to an interface can be designated as primary IPs." msgstr "" -#: netbox/ipam/forms/model_forms.py:475 +#: ipam/forms/model_forms.py:475 msgid "Virtual IP Address" msgstr "" -#: netbox/ipam/forms/model_forms.py:560 +#: ipam/forms/model_forms.py:560 msgid "Assignment already exists" msgstr "" -#: netbox/ipam/forms/model_forms.py:569 netbox/templates/ipam/vlangroup.html:42 +#: ipam/forms/model_forms.py:569 templates/ipam/vlangroup.html:42 msgid "VLAN IDs" msgstr "" -#: netbox/ipam/forms/model_forms.py:587 +#: ipam/forms/model_forms.py:587 msgid "Child VLANs" msgstr "" -#: netbox/ipam/forms/model_forms.py:664 netbox/ipam/forms/model_forms.py:696 +#: ipam/forms/model_forms.py:664 ipam/forms/model_forms.py:696 msgid "" "Comma-separated list of one or more port numbers. A range may be specified " "using a hyphen." msgstr "" -#: netbox/ipam/forms/model_forms.py:669 -#: netbox/templates/ipam/servicetemplate.html:12 +#: ipam/forms/model_forms.py:669 templates/ipam/servicetemplate.html:12 msgid "Service Template" msgstr "" -#: netbox/ipam/forms/model_forms.py:716 +#: ipam/forms/model_forms.py:716 msgid "Port(s)" msgstr "" -#: netbox/ipam/forms/model_forms.py:717 netbox/ipam/forms/model_forms.py:745 -#: netbox/templates/ipam/service.html:21 +#: ipam/forms/model_forms.py:717 ipam/forms/model_forms.py:745 +#: templates/ipam/service.html:21 msgid "Service" msgstr "" -#: netbox/ipam/forms/model_forms.py:730 +#: ipam/forms/model_forms.py:730 msgid "Service template" msgstr "" -#: netbox/ipam/forms/model_forms.py:742 +#: ipam/forms/model_forms.py:742 msgid "From Template" msgstr "" -#: netbox/ipam/forms/model_forms.py:743 +#: ipam/forms/model_forms.py:743 msgid "Custom" msgstr "" -#: netbox/ipam/forms/model_forms.py:773 +#: ipam/forms/model_forms.py:773 msgid "" "Must specify name, protocol, and port(s) if not using a service template." msgstr "" -#: netbox/ipam/models/asns.py:34 +#: ipam/models/asns.py:34 msgid "start" msgstr "" -#: netbox/ipam/models/asns.py:51 +#: ipam/models/asns.py:51 msgid "ASN range" msgstr "" -#: netbox/ipam/models/asns.py:52 +#: ipam/models/asns.py:52 msgid "ASN ranges" msgstr "" -#: netbox/ipam/models/asns.py:72 +#: ipam/models/asns.py:72 #, python-brace-format msgid "Starting ASN ({start}) must be lower than ending ASN ({end})." msgstr "" -#: netbox/ipam/models/asns.py:104 +#: ipam/models/asns.py:104 msgid "Regional Internet Registry responsible for this AS number space" msgstr "" -#: netbox/ipam/models/asns.py:109 +#: ipam/models/asns.py:109 msgid "16- or 32-bit autonomous system number" msgstr "" -#: netbox/ipam/models/fhrp.py:22 +#: ipam/models/fhrp.py:22 msgid "group ID" msgstr "" -#: netbox/ipam/models/fhrp.py:30 netbox/ipam/models/services.py:22 +#: ipam/models/fhrp.py:30 ipam/models/services.py:22 msgid "protocol" msgstr "" -#: netbox/ipam/models/fhrp.py:38 netbox/wireless/models.py:28 +#: ipam/models/fhrp.py:38 wireless/models.py:28 msgid "authentication type" msgstr "" -#: netbox/ipam/models/fhrp.py:43 +#: ipam/models/fhrp.py:43 msgid "authentication key" msgstr "" -#: netbox/ipam/models/fhrp.py:56 +#: ipam/models/fhrp.py:56 msgid "FHRP group" msgstr "" -#: netbox/ipam/models/fhrp.py:57 +#: ipam/models/fhrp.py:57 msgid "FHRP groups" msgstr "" -#: netbox/ipam/models/fhrp.py:113 +#: ipam/models/fhrp.py:113 msgid "FHRP group assignment" msgstr "" -#: netbox/ipam/models/fhrp.py:114 +#: ipam/models/fhrp.py:114 msgid "FHRP group assignments" msgstr "" -#: netbox/ipam/models/ip.py:65 +#: ipam/models/ip.py:65 msgid "private" msgstr "" -#: netbox/ipam/models/ip.py:66 +#: ipam/models/ip.py:66 msgid "IP space managed by this RIR is considered private" msgstr "" -#: netbox/ipam/models/ip.py:72 netbox/netbox/navigation/menu.py:182 +#: ipam/models/ip.py:72 netbox/navigation/menu.py:182 msgid "RIRs" msgstr "" -#: netbox/ipam/models/ip.py:84 +#: ipam/models/ip.py:84 msgid "IPv4 or IPv6 network" msgstr "" -#: netbox/ipam/models/ip.py:91 +#: ipam/models/ip.py:91 msgid "Regional Internet Registry responsible for this IP space" msgstr "" -#: netbox/ipam/models/ip.py:101 +#: ipam/models/ip.py:101 msgid "date added" msgstr "" -#: netbox/ipam/models/ip.py:115 +#: ipam/models/ip.py:115 msgid "aggregate" msgstr "" -#: netbox/ipam/models/ip.py:116 +#: ipam/models/ip.py:116 msgid "aggregates" msgstr "" -#: netbox/ipam/models/ip.py:132 +#: ipam/models/ip.py:132 msgid "Cannot create aggregate with /0 mask." msgstr "" -#: netbox/ipam/models/ip.py:144 +#: ipam/models/ip.py:144 #, python-brace-format msgid "" "Aggregates cannot overlap. {prefix} is already covered by an existing " "aggregate ({aggregate})." msgstr "" -#: netbox/ipam/models/ip.py:158 +#: ipam/models/ip.py:158 #, python-brace-format msgid "" "Prefixes cannot overlap aggregates. {prefix} covers an existing aggregate " "({aggregate})." msgstr "" -#: netbox/ipam/models/ip.py:200 netbox/ipam/models/ip.py:737 -#: netbox/vpn/models/tunnels.py:114 +#: ipam/models/ip.py:200 ipam/models/ip.py:737 vpn/models/tunnels.py:114 msgid "role" msgstr "" -#: netbox/ipam/models/ip.py:201 +#: ipam/models/ip.py:201 msgid "roles" msgstr "" -#: netbox/ipam/models/ip.py:217 netbox/ipam/models/ip.py:293 +#: ipam/models/ip.py:217 ipam/models/ip.py:293 msgid "prefix" msgstr "" -#: netbox/ipam/models/ip.py:218 +#: ipam/models/ip.py:218 msgid "IPv4 or IPv6 network with mask" msgstr "" -#: netbox/ipam/models/ip.py:254 +#: ipam/models/ip.py:254 msgid "Operational status of this prefix" msgstr "" -#: netbox/ipam/models/ip.py:262 +#: ipam/models/ip.py:262 msgid "The primary function of this prefix" msgstr "" -#: netbox/ipam/models/ip.py:265 +#: ipam/models/ip.py:265 msgid "is a pool" msgstr "" -#: netbox/ipam/models/ip.py:267 +#: ipam/models/ip.py:267 msgid "All IP addresses within this prefix are considered usable" msgstr "" -#: netbox/ipam/models/ip.py:270 netbox/ipam/models/ip.py:537 +#: ipam/models/ip.py:270 ipam/models/ip.py:537 msgid "mark utilized" msgstr "" -#: netbox/ipam/models/ip.py:294 +#: ipam/models/ip.py:294 msgid "prefixes" msgstr "" -#: netbox/ipam/models/ip.py:317 +#: ipam/models/ip.py:317 msgid "Cannot create prefix with /0 mask." msgstr "" -#: netbox/ipam/models/ip.py:324 netbox/ipam/models/ip.py:874 +#: ipam/models/ip.py:324 ipam/models/ip.py:874 #, python-brace-format msgid "VRF {vrf}" msgstr "" -#: netbox/ipam/models/ip.py:324 netbox/ipam/models/ip.py:874 +#: ipam/models/ip.py:324 ipam/models/ip.py:874 msgid "global table" msgstr "" -#: netbox/ipam/models/ip.py:326 +#: ipam/models/ip.py:326 #, python-brace-format msgid "Duplicate prefix found in {table}: {prefix}" msgstr "" -#: netbox/ipam/models/ip.py:495 +#: ipam/models/ip.py:495 msgid "start address" msgstr "" -#: netbox/ipam/models/ip.py:496 netbox/ipam/models/ip.py:500 -#: netbox/ipam/models/ip.py:712 +#: ipam/models/ip.py:496 ipam/models/ip.py:500 ipam/models/ip.py:712 msgid "IPv4 or IPv6 address (with mask)" msgstr "" -#: netbox/ipam/models/ip.py:499 +#: ipam/models/ip.py:499 msgid "end address" msgstr "" -#: netbox/ipam/models/ip.py:526 +#: ipam/models/ip.py:526 msgid "Operational status of this range" msgstr "" -#: netbox/ipam/models/ip.py:534 +#: ipam/models/ip.py:534 msgid "The primary function of this range" msgstr "" -#: netbox/ipam/models/ip.py:548 +#: ipam/models/ip.py:548 msgid "IP range" msgstr "" -#: netbox/ipam/models/ip.py:549 +#: ipam/models/ip.py:549 msgid "IP ranges" msgstr "" -#: netbox/ipam/models/ip.py:565 +#: ipam/models/ip.py:565 msgid "Starting and ending IP address versions must match" msgstr "" -#: netbox/ipam/models/ip.py:571 +#: ipam/models/ip.py:571 msgid "Starting and ending IP address masks must match" msgstr "" -#: netbox/ipam/models/ip.py:578 +#: ipam/models/ip.py:578 #, python-brace-format msgid "" "Ending address must be greater than the starting address ({start_address})" msgstr "" -#: netbox/ipam/models/ip.py:590 +#: ipam/models/ip.py:590 #, python-brace-format msgid "Defined addresses overlap with range {overlapping_range} in VRF {vrf}" msgstr "" -#: netbox/ipam/models/ip.py:599 +#: ipam/models/ip.py:599 #, python-brace-format msgid "Defined range exceeds maximum supported size ({max_size})" msgstr "" -#: netbox/ipam/models/ip.py:711 netbox/tenancy/models/contacts.py:82 +#: ipam/models/ip.py:711 tenancy/models/contacts.py:82 msgid "address" msgstr "" -#: netbox/ipam/models/ip.py:734 +#: ipam/models/ip.py:734 msgid "The operational status of this IP" msgstr "" -#: netbox/ipam/models/ip.py:741 +#: ipam/models/ip.py:741 msgid "The functional role of this IP" msgstr "" -#: netbox/ipam/models/ip.py:765 netbox/templates/ipam/ipaddress.html:72 +#: ipam/models/ip.py:765 templates/ipam/ipaddress.html:72 msgid "NAT (inside)" msgstr "" -#: netbox/ipam/models/ip.py:766 +#: ipam/models/ip.py:766 msgid "The IP for which this address is the \"outside\" IP" msgstr "" -#: netbox/ipam/models/ip.py:773 +#: ipam/models/ip.py:773 msgid "Hostname or FQDN (not case-sensitive)" msgstr "" -#: netbox/ipam/models/ip.py:789 netbox/ipam/models/services.py:94 +#: ipam/models/ip.py:789 ipam/models/services.py:94 msgid "IP addresses" msgstr "" -#: netbox/ipam/models/ip.py:845 +#: ipam/models/ip.py:845 msgid "Cannot create IP address with /0 mask." msgstr "" -#: netbox/ipam/models/ip.py:851 +#: ipam/models/ip.py:851 #, python-brace-format msgid "{ip} is a network ID, which may not be assigned to an interface." msgstr "" -#: netbox/ipam/models/ip.py:862 +#: ipam/models/ip.py:862 #, python-brace-format msgid "{ip} is a broadcast address, which may not be assigned to an interface." msgstr "" -#: netbox/ipam/models/ip.py:876 +#: ipam/models/ip.py:876 #, python-brace-format msgid "Duplicate IP address found in {table}: {ipaddress}" msgstr "" -#: netbox/ipam/models/ip.py:903 +#: ipam/models/ip.py:903 msgid "Only IPv6 addresses can be assigned SLAAC status" msgstr "" -#: netbox/ipam/models/services.py:33 +#: ipam/models/services.py:33 msgid "port numbers" msgstr "" -#: netbox/ipam/models/services.py:59 +#: ipam/models/services.py:59 msgid "service template" msgstr "" -#: netbox/ipam/models/services.py:60 +#: ipam/models/services.py:60 msgid "service templates" msgstr "" -#: netbox/ipam/models/services.py:95 +#: ipam/models/services.py:95 msgid "The specific IP addresses (if any) to which this service is bound" msgstr "" -#: netbox/ipam/models/services.py:102 +#: ipam/models/services.py:102 msgid "service" msgstr "" -#: netbox/ipam/models/services.py:103 +#: ipam/models/services.py:103 msgid "services" msgstr "" -#: netbox/ipam/models/services.py:117 +#: ipam/models/services.py:117 msgid "" "A service cannot be associated with both a device and a virtual machine." msgstr "" -#: netbox/ipam/models/services.py:119 +#: ipam/models/services.py:119 msgid "A service must be associated with either a device or a virtual machine." msgstr "" -#: netbox/ipam/models/vlans.py:85 +#: ipam/models/vlans.py:85 msgid "VLAN groups" msgstr "" -#: netbox/ipam/models/vlans.py:95 +#: ipam/models/vlans.py:95 msgid "Cannot set scope_type without scope_id." msgstr "" -#: netbox/ipam/models/vlans.py:97 +#: ipam/models/vlans.py:97 msgid "Cannot set scope_id without scope_type." msgstr "" -#: netbox/ipam/models/vlans.py:101 +#: ipam/models/vlans.py:101 msgid "Ranges cannot overlap." msgstr "" -#: netbox/ipam/models/vlans.py:106 +#: ipam/models/vlans.py:106 #, python-brace-format msgid "" "Maximum child VID must be greater than or equal to minimum child VID " "({value})" msgstr "" -#: netbox/ipam/models/vlans.py:165 +#: ipam/models/vlans.py:165 msgid "The specific site to which this VLAN is assigned (if any)" msgstr "" -#: netbox/ipam/models/vlans.py:173 +#: ipam/models/vlans.py:173 msgid "VLAN group (optional)" msgstr "" -#: netbox/ipam/models/vlans.py:181 +#: ipam/models/vlans.py:181 msgid "Numeric VLAN ID (1-4094)" msgstr "" -#: netbox/ipam/models/vlans.py:199 +#: ipam/models/vlans.py:199 msgid "Operational status of this VLAN" msgstr "" -#: netbox/ipam/models/vlans.py:207 +#: ipam/models/vlans.py:207 msgid "The primary function of this VLAN" msgstr "" -#: netbox/ipam/models/vlans.py:250 +#: ipam/models/vlans.py:250 #, python-brace-format msgid "" "VLAN is assigned to group {group} (scope: {scope}); cannot also assign to " "site {site}." msgstr "" -#: netbox/ipam/models/vlans.py:259 +#: ipam/models/vlans.py:259 #, python-brace-format msgid "VID must be in ranges {ranges} for VLANs in group {group}" msgstr "" -#: netbox/ipam/models/vrfs.py:30 +#: ipam/models/vrfs.py:30 msgid "route distinguisher" msgstr "" -#: netbox/ipam/models/vrfs.py:31 +#: ipam/models/vrfs.py:31 msgid "Unique route distinguisher (as defined in RFC 4364)" msgstr "" -#: netbox/ipam/models/vrfs.py:42 +#: ipam/models/vrfs.py:42 msgid "enforce unique space" msgstr "" -#: netbox/ipam/models/vrfs.py:43 +#: ipam/models/vrfs.py:43 msgid "Prevent duplicate prefixes/IP addresses within this VRF" msgstr "" -#: netbox/ipam/models/vrfs.py:63 netbox/netbox/navigation/menu.py:186 -#: netbox/netbox/navigation/menu.py:188 +#: ipam/models/vrfs.py:63 netbox/navigation/menu.py:186 +#: netbox/navigation/menu.py:188 msgid "VRFs" msgstr "" -#: netbox/ipam/models/vrfs.py:82 +#: ipam/models/vrfs.py:82 msgid "Route target value (formatted in accordance with RFC 4360)" msgstr "" -#: netbox/ipam/models/vrfs.py:94 +#: ipam/models/vrfs.py:94 msgid "route target" msgstr "" -#: netbox/ipam/models/vrfs.py:95 +#: ipam/models/vrfs.py:95 msgid "route targets" msgstr "" -#: netbox/ipam/tables/asn.py:52 +#: ipam/tables/asn.py:52 msgid "ASDOT" msgstr "" -#: netbox/ipam/tables/asn.py:57 +#: ipam/tables/asn.py:57 msgid "Site Count" msgstr "" -#: netbox/ipam/tables/asn.py:62 +#: ipam/tables/asn.py:62 msgid "Provider Count" msgstr "" -#: netbox/ipam/tables/ip.py:95 netbox/netbox/navigation/menu.py:179 -#: netbox/netbox/navigation/menu.py:181 +#: ipam/tables/ip.py:95 netbox/navigation/menu.py:179 +#: netbox/navigation/menu.py:181 msgid "Aggregates" msgstr "" -#: netbox/ipam/tables/ip.py:125 +#: ipam/tables/ip.py:125 msgid "Added" msgstr "" -#: netbox/ipam/tables/ip.py:128 netbox/ipam/tables/ip.py:166 -#: netbox/ipam/tables/vlans.py:142 netbox/ipam/views.py:346 -#: netbox/netbox/navigation/menu.py:165 netbox/netbox/navigation/menu.py:167 -#: netbox/templates/ipam/vlan.html:84 +#: ipam/tables/ip.py:128 ipam/tables/ip.py:166 ipam/tables/vlans.py:142 +#: ipam/views.py:346 netbox/navigation/menu.py:165 +#: netbox/navigation/menu.py:167 templates/ipam/vlan.html:84 msgid "Prefixes" msgstr "" -#: netbox/ipam/tables/ip.py:131 netbox/ipam/tables/ip.py:270 -#: netbox/ipam/tables/ip.py:324 netbox/ipam/tables/vlans.py:86 -#: netbox/templates/dcim/device.html:260 -#: netbox/templates/ipam/aggregate.html:24 -#: netbox/templates/ipam/iprange.html:29 netbox/templates/ipam/prefix.html:106 +#: ipam/tables/ip.py:131 ipam/tables/ip.py:270 ipam/tables/ip.py:324 +#: ipam/tables/vlans.py:86 templates/dcim/device.html:260 +#: templates/ipam/aggregate.html:24 templates/ipam/iprange.html:29 +#: templates/ipam/prefix.html:106 msgid "Utilization" msgstr "" -#: netbox/ipam/tables/ip.py:171 netbox/netbox/navigation/menu.py:161 +#: ipam/tables/ip.py:171 netbox/navigation/menu.py:161 msgid "IP Ranges" msgstr "" -#: netbox/ipam/tables/ip.py:221 +#: ipam/tables/ip.py:221 msgid "Prefix (Flat)" msgstr "" -#: netbox/ipam/tables/ip.py:225 +#: ipam/tables/ip.py:225 msgid "Depth" msgstr "" -#: netbox/ipam/tables/ip.py:262 +#: ipam/tables/ip.py:262 msgid "Pool" msgstr "" -#: netbox/ipam/tables/ip.py:266 netbox/ipam/tables/ip.py:320 +#: ipam/tables/ip.py:266 ipam/tables/ip.py:320 msgid "Marked Utilized" msgstr "" -#: netbox/ipam/tables/ip.py:304 +#: ipam/tables/ip.py:304 msgid "Start address" msgstr "" -#: netbox/ipam/tables/ip.py:383 +#: ipam/tables/ip.py:383 msgid "NAT (Inside)" msgstr "" -#: netbox/ipam/tables/ip.py:388 +#: ipam/tables/ip.py:388 msgid "NAT (Outside)" msgstr "" -#: netbox/ipam/tables/ip.py:393 +#: ipam/tables/ip.py:393 msgid "Assigned" msgstr "" -#: netbox/ipam/tables/ip.py:429 netbox/templates/vpn/l2vpntermination.html:16 -#: netbox/vpn/forms/filtersets.py:240 +#: ipam/tables/ip.py:429 templates/vpn/l2vpntermination.html:16 +#: vpn/forms/filtersets.py:240 msgid "Assigned Object" msgstr "" -#: netbox/ipam/tables/vlans.py:68 +#: ipam/tables/vlans.py:68 msgid "Scope Type" msgstr "" -#: netbox/ipam/tables/vlans.py:76 +#: ipam/tables/vlans.py:76 msgid "VID Ranges" msgstr "" -#: netbox/ipam/tables/vlans.py:111 netbox/ipam/tables/vlans.py:214 -#: netbox/templates/dcim/inc/interface_vlans_table.html:4 +#: ipam/tables/vlans.py:111 ipam/tables/vlans.py:214 +#: templates/dcim/inc/interface_vlans_table.html:4 msgid "VID" msgstr "" -#: netbox/ipam/tables/vrfs.py:30 +#: ipam/tables/vrfs.py:30 msgid "RD" msgstr "" -#: netbox/ipam/tables/vrfs.py:33 +#: ipam/tables/vrfs.py:33 msgid "Unique" msgstr "" -#: netbox/ipam/tables/vrfs.py:37 netbox/vpn/tables/l2vpn.py:27 +#: ipam/tables/vrfs.py:37 vpn/tables/l2vpn.py:27 msgid "Import Targets" msgstr "" -#: netbox/ipam/tables/vrfs.py:42 netbox/vpn/tables/l2vpn.py:32 +#: ipam/tables/vrfs.py:42 vpn/tables/l2vpn.py:32 msgid "Export Targets" msgstr "" -#: netbox/ipam/validators.py:9 +#: ipam/validators.py:9 #, python-brace-format msgid "{prefix} is not a valid prefix. Did you mean {suggested}?" msgstr "" -#: netbox/ipam/validators.py:16 +#: ipam/validators.py:16 #, python-format msgid "The prefix length must be less than or equal to %(limit_value)s." msgstr "" -#: netbox/ipam/validators.py:24 +#: ipam/validators.py:24 #, python-format msgid "The prefix length must be greater than or equal to %(limit_value)s." msgstr "" -#: netbox/ipam/validators.py:33 +#: ipam/validators.py:33 msgid "" "Only alphanumeric characters, asterisks, hyphens, periods, and underscores " "are allowed in DNS names" msgstr "" -#: netbox/ipam/views.py:533 +#: ipam/views.py:533 msgid "Child Prefixes" msgstr "" -#: netbox/ipam/views.py:569 +#: ipam/views.py:569 msgid "Child Ranges" msgstr "" -#: netbox/ipam/views.py:898 +#: ipam/views.py:898 msgid "Related IPs" msgstr "" -#: netbox/ipam/views.py:1127 +#: ipam/views.py:1127 msgid "Device Interfaces" msgstr "" -#: netbox/ipam/views.py:1145 +#: ipam/views.py:1145 msgid "VM Interfaces" msgstr "" -#: netbox/netbox/api/fields.py:65 +#: netbox/api/fields.py:65 msgid "This field may not be blank." msgstr "" -#: netbox/netbox/api/fields.py:70 +#: netbox/api/fields.py:70 msgid "" "Value must be passed directly (e.g. \"foo\": 123); do not use a dictionary " "or list." msgstr "" -#: netbox/netbox/api/fields.py:91 +#: netbox/api/fields.py:91 #, python-brace-format msgid "{value} is not a valid choice." msgstr "" -#: netbox/netbox/api/fields.py:104 +#: netbox/api/fields.py:104 #, python-brace-format msgid "Invalid content type: {content_type}" msgstr "" -#: netbox/netbox/api/fields.py:105 +#: netbox/api/fields.py:105 msgid "Invalid value. Specify a content type as '.'." msgstr "" -#: netbox/netbox/api/fields.py:167 +#: netbox/api/fields.py:167 msgid "Ranges must be specified in the form (lower, upper)." msgstr "" -#: netbox/netbox/api/fields.py:169 +#: netbox/api/fields.py:169 msgid "Range boundaries must be defined as integers." msgstr "" -#: netbox/netbox/api/serializers/fields.py:40 +#: netbox/api/serializers/fields.py:40 #, python-brace-format msgid "{class_name} must implement get_view_name()" msgstr "" -#: netbox/netbox/authentication/__init__.py:138 +#: netbox/authentication/__init__.py:138 #, python-brace-format msgid "Invalid permission {permission} for model {model}" msgstr "" -#: netbox/netbox/choices.py:49 +#: netbox/choices.py:49 msgid "Dark Red" msgstr "" -#: netbox/netbox/choices.py:52 +#: netbox/choices.py:52 msgid "Rose" msgstr "" -#: netbox/netbox/choices.py:53 +#: netbox/choices.py:53 msgid "Fuchsia" msgstr "" -#: netbox/netbox/choices.py:55 +#: netbox/choices.py:55 msgid "Dark Purple" msgstr "" -#: netbox/netbox/choices.py:58 +#: netbox/choices.py:58 msgid "Light Blue" msgstr "" -#: netbox/netbox/choices.py:61 +#: netbox/choices.py:61 msgid "Aqua" msgstr "" -#: netbox/netbox/choices.py:62 +#: netbox/choices.py:62 msgid "Dark Green" msgstr "" -#: netbox/netbox/choices.py:64 +#: netbox/choices.py:64 msgid "Light Green" msgstr "" -#: netbox/netbox/choices.py:65 +#: netbox/choices.py:65 msgid "Lime" msgstr "" -#: netbox/netbox/choices.py:67 +#: netbox/choices.py:67 msgid "Amber" msgstr "" -#: netbox/netbox/choices.py:69 +#: netbox/choices.py:69 msgid "Dark Orange" msgstr "" -#: netbox/netbox/choices.py:70 +#: netbox/choices.py:70 msgid "Brown" msgstr "" -#: netbox/netbox/choices.py:71 +#: netbox/choices.py:71 msgid "Light Grey" msgstr "" -#: netbox/netbox/choices.py:72 +#: netbox/choices.py:72 msgid "Grey" msgstr "" -#: netbox/netbox/choices.py:73 +#: netbox/choices.py:73 msgid "Dark Grey" msgstr "" -#: netbox/netbox/choices.py:128 +#: netbox/choices.py:128 msgid "Direct" msgstr "" -#: netbox/netbox/choices.py:129 +#: netbox/choices.py:129 msgid "Upload" msgstr "" -#: netbox/netbox/choices.py:141 netbox/netbox/choices.py:155 +#: netbox/choices.py:141 netbox/choices.py:155 msgid "Auto-detect" msgstr "" -#: netbox/netbox/choices.py:156 +#: netbox/choices.py:156 msgid "Comma" msgstr "" -#: netbox/netbox/choices.py:157 +#: netbox/choices.py:157 msgid "Semicolon" msgstr "" -#: netbox/netbox/choices.py:158 +#: netbox/choices.py:158 msgid "Tab" msgstr "" -#: netbox/netbox/config/__init__.py:67 +#: netbox/config/__init__.py:67 #, python-brace-format msgid "Invalid configuration parameter: {item}" msgstr "" -#: netbox/netbox/config/parameters.py:22 -#: netbox/templates/core/inc/config_data.html:62 +#: netbox/config/parameters.py:22 templates/core/inc/config_data.html:62 msgid "Login banner" msgstr "" -#: netbox/netbox/config/parameters.py:24 +#: netbox/config/parameters.py:24 msgid "Additional content to display on the login page" msgstr "" -#: netbox/netbox/config/parameters.py:33 -#: netbox/templates/core/inc/config_data.html:66 +#: netbox/config/parameters.py:33 templates/core/inc/config_data.html:66 msgid "Maintenance banner" msgstr "" -#: netbox/netbox/config/parameters.py:35 +#: netbox/config/parameters.py:35 msgid "Additional content to display when in maintenance mode" msgstr "" -#: netbox/netbox/config/parameters.py:44 -#: netbox/templates/core/inc/config_data.html:70 +#: netbox/config/parameters.py:44 templates/core/inc/config_data.html:70 msgid "Top banner" msgstr "" -#: netbox/netbox/config/parameters.py:46 +#: netbox/config/parameters.py:46 msgid "Additional content to display at the top of every page" msgstr "" -#: netbox/netbox/config/parameters.py:55 -#: netbox/templates/core/inc/config_data.html:74 +#: netbox/config/parameters.py:55 templates/core/inc/config_data.html:74 msgid "Bottom banner" msgstr "" -#: netbox/netbox/config/parameters.py:57 +#: netbox/config/parameters.py:57 msgid "Additional content to display at the bottom of every page" msgstr "" -#: netbox/netbox/config/parameters.py:68 +#: netbox/config/parameters.py:68 msgid "Globally unique IP space" msgstr "" -#: netbox/netbox/config/parameters.py:70 +#: netbox/config/parameters.py:70 msgid "Enforce unique IP addressing within the global table" msgstr "" -#: netbox/netbox/config/parameters.py:75 -#: netbox/templates/core/inc/config_data.html:44 +#: netbox/config/parameters.py:75 templates/core/inc/config_data.html:44 msgid "Prefer IPv4" msgstr "" -#: netbox/netbox/config/parameters.py:77 +#: netbox/config/parameters.py:77 msgid "Prefer IPv4 addresses over IPv6" msgstr "" -#: netbox/netbox/config/parameters.py:84 +#: netbox/config/parameters.py:84 msgid "Rack unit height" msgstr "" -#: netbox/netbox/config/parameters.py:86 +#: netbox/config/parameters.py:86 msgid "Default unit height for rendered rack elevations" msgstr "" -#: netbox/netbox/config/parameters.py:91 +#: netbox/config/parameters.py:91 msgid "Rack unit width" msgstr "" -#: netbox/netbox/config/parameters.py:93 +#: netbox/config/parameters.py:93 msgid "Default unit width for rendered rack elevations" msgstr "" -#: netbox/netbox/config/parameters.py:100 +#: netbox/config/parameters.py:100 msgid "Powerfeed voltage" msgstr "" -#: netbox/netbox/config/parameters.py:102 +#: netbox/config/parameters.py:102 msgid "Default voltage for powerfeeds" msgstr "" -#: netbox/netbox/config/parameters.py:107 +#: netbox/config/parameters.py:107 msgid "Powerfeed amperage" msgstr "" -#: netbox/netbox/config/parameters.py:109 +#: netbox/config/parameters.py:109 msgid "Default amperage for powerfeeds" msgstr "" -#: netbox/netbox/config/parameters.py:114 +#: netbox/config/parameters.py:114 msgid "Powerfeed max utilization" msgstr "" -#: netbox/netbox/config/parameters.py:116 +#: netbox/config/parameters.py:116 msgid "Default max utilization for powerfeeds" msgstr "" -#: netbox/netbox/config/parameters.py:123 -#: netbox/templates/core/inc/config_data.html:53 +#: netbox/config/parameters.py:123 templates/core/inc/config_data.html:53 msgid "Allowed URL schemes" msgstr "" -#: netbox/netbox/config/parameters.py:128 +#: netbox/config/parameters.py:128 msgid "Permitted schemes for URLs in user-provided content" msgstr "" -#: netbox/netbox/config/parameters.py:136 +#: netbox/config/parameters.py:136 msgid "Default page size" msgstr "" -#: netbox/netbox/config/parameters.py:142 +#: netbox/config/parameters.py:142 msgid "Maximum page size" msgstr "" -#: netbox/netbox/config/parameters.py:150 -#: netbox/templates/core/inc/config_data.html:96 +#: netbox/config/parameters.py:150 templates/core/inc/config_data.html:96 msgid "Custom validators" msgstr "" -#: netbox/netbox/config/parameters.py:152 +#: netbox/config/parameters.py:152 msgid "Custom validation rules (JSON)" msgstr "" -#: netbox/netbox/config/parameters.py:160 -#: netbox/templates/core/inc/config_data.html:104 +#: netbox/config/parameters.py:160 templates/core/inc/config_data.html:104 msgid "Protection rules" msgstr "" -#: netbox/netbox/config/parameters.py:162 +#: netbox/config/parameters.py:162 msgid "Deletion protection rules (JSON)" msgstr "" -#: netbox/netbox/config/parameters.py:172 -#: netbox/templates/core/inc/config_data.html:117 +#: netbox/config/parameters.py:172 templates/core/inc/config_data.html:117 msgid "Default preferences" msgstr "" -#: netbox/netbox/config/parameters.py:174 +#: netbox/config/parameters.py:174 msgid "Default preferences for new users" msgstr "" -#: netbox/netbox/config/parameters.py:181 -#: netbox/templates/core/inc/config_data.html:129 +#: netbox/config/parameters.py:181 templates/core/inc/config_data.html:129 msgid "Maintenance mode" msgstr "" -#: netbox/netbox/config/parameters.py:183 +#: netbox/config/parameters.py:183 msgid "Enable maintenance mode" msgstr "" -#: netbox/netbox/config/parameters.py:188 -#: netbox/templates/core/inc/config_data.html:133 +#: netbox/config/parameters.py:188 templates/core/inc/config_data.html:133 msgid "GraphQL enabled" msgstr "" -#: netbox/netbox/config/parameters.py:190 +#: netbox/config/parameters.py:190 msgid "Enable the GraphQL API" msgstr "" -#: netbox/netbox/config/parameters.py:195 -#: netbox/templates/core/inc/config_data.html:137 +#: netbox/config/parameters.py:195 templates/core/inc/config_data.html:137 msgid "Changelog retention" msgstr "" -#: netbox/netbox/config/parameters.py:197 +#: netbox/config/parameters.py:197 msgid "Days to retain changelog history (set to zero for unlimited)" msgstr "" -#: netbox/netbox/config/parameters.py:202 +#: netbox/config/parameters.py:202 msgid "Job result retention" msgstr "" -#: netbox/netbox/config/parameters.py:204 +#: netbox/config/parameters.py:204 msgid "Days to retain job result history (set to zero for unlimited)" msgstr "" -#: netbox/netbox/config/parameters.py:209 -#: netbox/templates/core/inc/config_data.html:145 +#: netbox/config/parameters.py:209 templates/core/inc/config_data.html:145 msgid "Maps URL" msgstr "" -#: netbox/netbox/config/parameters.py:211 +#: netbox/config/parameters.py:211 msgid "Base URL for mapping geographic locations" msgstr "" -#: netbox/netbox/forms/__init__.py:12 +#: netbox/forms/__init__.py:12 msgid "Partial match" msgstr "" -#: netbox/netbox/forms/__init__.py:13 +#: netbox/forms/__init__.py:13 msgid "Exact match" msgstr "" -#: netbox/netbox/forms/__init__.py:14 +#: netbox/forms/__init__.py:14 msgid "Starts with" msgstr "" -#: netbox/netbox/forms/__init__.py:15 +#: netbox/forms/__init__.py:15 msgid "Ends with" msgstr "" -#: netbox/netbox/forms/__init__.py:16 +#: netbox/forms/__init__.py:16 msgid "Regex" msgstr "" -#: netbox/netbox/forms/__init__.py:34 +#: netbox/forms/__init__.py:34 msgid "Object type(s)" msgstr "" -#: netbox/netbox/forms/__init__.py:40 +#: netbox/forms/__init__.py:40 msgid "Lookup" msgstr "" -#: netbox/netbox/forms/base.py:90 +#: netbox/forms/base.py:90 msgid "" "Tag slugs separated by commas, encased with double quotes (e.g. \"tag1,tag2," "tag3\")" msgstr "" -#: netbox/netbox/forms/base.py:120 +#: netbox/forms/base.py:120 msgid "Add tags" msgstr "" -#: netbox/netbox/forms/base.py:125 +#: netbox/forms/base.py:125 msgid "Remove tags" msgstr "" -#: netbox/netbox/forms/mixins.py:38 +#: netbox/forms/mixins.py:38 #, python-brace-format msgid "{class_name} must specify a model class." msgstr "" -#: netbox/netbox/models/features.py:280 +#: netbox/models/features.py:280 #, python-brace-format msgid "Unknown field name '{name}' in custom field data." msgstr "" -#: netbox/netbox/models/features.py:286 +#: netbox/models/features.py:286 #, python-brace-format msgid "Invalid value for custom field '{name}': {error}" msgstr "" -#: netbox/netbox/models/features.py:295 +#: netbox/models/features.py:295 #, python-brace-format msgid "Custom field '{name}' must have a unique value." msgstr "" -#: netbox/netbox/models/features.py:302 +#: netbox/models/features.py:302 #, python-brace-format msgid "Missing required custom field '{name}'." msgstr "" -#: netbox/netbox/models/features.py:462 +#: netbox/models/features.py:462 msgid "Remote data source" msgstr "" -#: netbox/netbox/models/features.py:472 +#: netbox/models/features.py:472 msgid "data path" msgstr "" -#: netbox/netbox/models/features.py:476 +#: netbox/models/features.py:476 msgid "Path to remote file (relative to data source root)" msgstr "" -#: netbox/netbox/models/features.py:479 +#: netbox/models/features.py:479 msgid "auto sync enabled" msgstr "" -#: netbox/netbox/models/features.py:481 +#: netbox/models/features.py:481 msgid "Enable automatic synchronization of data when the data file is updated" msgstr "" -#: netbox/netbox/models/features.py:484 +#: netbox/models/features.py:484 msgid "date synced" msgstr "" -#: netbox/netbox/models/features.py:578 +#: netbox/models/features.py:578 #, python-brace-format msgid "{class_name} must implement a sync_data() method." msgstr "" -#: netbox/netbox/navigation/menu.py:11 +#: netbox/navigation/menu.py:11 msgid "Organization" msgstr "" -#: netbox/netbox/navigation/menu.py:19 +#: netbox/navigation/menu.py:19 msgid "Site Groups" msgstr "" -#: netbox/netbox/navigation/menu.py:27 +#: netbox/navigation/menu.py:27 msgid "Tenant Groups" msgstr "" -#: netbox/netbox/navigation/menu.py:34 +#: netbox/navigation/menu.py:34 msgid "Contact Groups" msgstr "" -#: netbox/netbox/navigation/menu.py:35 -#: netbox/templates/tenancy/contactrole.html:8 +#: netbox/navigation/menu.py:35 templates/tenancy/contactrole.html:8 msgid "Contact Roles" msgstr "" -#: netbox/netbox/navigation/menu.py:36 +#: netbox/navigation/menu.py:36 msgid "Contact Assignments" msgstr "" -#: netbox/netbox/navigation/menu.py:50 +#: netbox/navigation/menu.py:50 msgid "Rack Roles" msgstr "" -#: netbox/netbox/navigation/menu.py:54 +#: netbox/navigation/menu.py:54 msgid "Elevations" msgstr "" -#: netbox/netbox/navigation/menu.py:60 netbox/netbox/navigation/menu.py:62 +#: netbox/navigation/menu.py:60 netbox/navigation/menu.py:62 msgid "Rack Types" msgstr "" -#: netbox/netbox/navigation/menu.py:76 +#: netbox/navigation/menu.py:76 msgid "Modules" msgstr "" -#: netbox/netbox/navigation/menu.py:80 netbox/templates/dcim/device.html:160 -#: netbox/templates/dcim/virtualdevicecontext.html:8 +#: netbox/navigation/menu.py:80 templates/dcim/device.html:160 +#: templates/dcim/virtualdevicecontext.html:8 msgid "Virtual Device Contexts" msgstr "" -#: netbox/netbox/navigation/menu.py:88 +#: netbox/navigation/menu.py:88 msgid "Manufacturers" msgstr "" -#: netbox/netbox/navigation/menu.py:92 +#: netbox/navigation/menu.py:92 msgid "Device Components" msgstr "" -#: netbox/netbox/navigation/menu.py:104 -#: netbox/templates/dcim/inventoryitemrole.html:8 +#: netbox/navigation/menu.py:104 templates/dcim/inventoryitemrole.html:8 msgid "Inventory Item Roles" msgstr "" -#: netbox/netbox/navigation/menu.py:111 netbox/netbox/navigation/menu.py:115 +#: netbox/navigation/menu.py:111 netbox/navigation/menu.py:115 msgid "Connections" msgstr "" -#: netbox/netbox/navigation/menu.py:117 +#: netbox/navigation/menu.py:117 msgid "Cables" msgstr "" -#: netbox/netbox/navigation/menu.py:118 +#: netbox/navigation/menu.py:118 msgid "Wireless Links" msgstr "" -#: netbox/netbox/navigation/menu.py:121 +#: netbox/navigation/menu.py:121 msgid "Interface Connections" msgstr "" -#: netbox/netbox/navigation/menu.py:126 +#: netbox/navigation/menu.py:126 msgid "Console Connections" msgstr "" -#: netbox/netbox/navigation/menu.py:131 +#: netbox/navigation/menu.py:131 msgid "Power Connections" msgstr "" -#: netbox/netbox/navigation/menu.py:147 +#: netbox/navigation/menu.py:147 msgid "Wireless LAN Groups" msgstr "" -#: netbox/netbox/navigation/menu.py:168 +#: netbox/navigation/menu.py:168 msgid "Prefix & VLAN Roles" msgstr "" -#: netbox/netbox/navigation/menu.py:174 +#: netbox/navigation/menu.py:174 msgid "ASN Ranges" msgstr "" -#: netbox/netbox/navigation/menu.py:196 +#: netbox/navigation/menu.py:196 msgid "VLAN Groups" msgstr "" -#: netbox/netbox/navigation/menu.py:203 +#: netbox/navigation/menu.py:203 msgid "Service Templates" msgstr "" -#: netbox/netbox/navigation/menu.py:204 netbox/templates/dcim/device.html:302 -#: netbox/templates/ipam/ipaddress.html:118 -#: netbox/templates/virtualization/virtualmachine.html:154 +#: netbox/navigation/menu.py:204 templates/dcim/device.html:302 +#: templates/ipam/ipaddress.html:118 +#: templates/virtualization/virtualmachine.html:154 msgid "Services" msgstr "" -#: netbox/netbox/navigation/menu.py:211 +#: netbox/navigation/menu.py:211 msgid "VPN" msgstr "" -#: netbox/netbox/navigation/menu.py:215 netbox/netbox/navigation/menu.py:217 -#: netbox/vpn/tables/tunnels.py:24 +#: netbox/navigation/menu.py:215 netbox/navigation/menu.py:217 +#: vpn/tables/tunnels.py:24 msgid "Tunnels" msgstr "" -#: netbox/netbox/navigation/menu.py:218 netbox/templates/vpn/tunnelgroup.html:8 +#: netbox/navigation/menu.py:218 templates/vpn/tunnelgroup.html:8 msgid "Tunnel Groups" msgstr "" -#: netbox/netbox/navigation/menu.py:219 +#: netbox/navigation/menu.py:219 msgid "Tunnel Terminations" msgstr "" -#: netbox/netbox/navigation/menu.py:223 netbox/netbox/navigation/menu.py:225 -#: netbox/vpn/models/l2vpn.py:64 +#: netbox/navigation/menu.py:223 netbox/navigation/menu.py:225 +#: vpn/models/l2vpn.py:64 msgid "L2VPNs" msgstr "" -#: netbox/netbox/navigation/menu.py:226 netbox/templates/vpn/l2vpn.html:56 -#: netbox/templates/vpn/tunnel.html:72 netbox/vpn/tables/tunnels.py:58 +#: netbox/navigation/menu.py:226 templates/vpn/l2vpn.html:56 +#: templates/vpn/tunnel.html:72 vpn/tables/tunnels.py:58 msgid "Terminations" msgstr "" -#: netbox/netbox/navigation/menu.py:232 +#: netbox/navigation/menu.py:232 msgid "IKE Proposals" msgstr "" -#: netbox/netbox/navigation/menu.py:233 -#: netbox/templates/vpn/ikeproposal.html:41 +#: netbox/navigation/menu.py:233 templates/vpn/ikeproposal.html:41 msgid "IKE Policies" msgstr "" -#: netbox/netbox/navigation/menu.py:234 +#: netbox/navigation/menu.py:234 msgid "IPSec Proposals" msgstr "" -#: netbox/netbox/navigation/menu.py:235 -#: netbox/templates/vpn/ipsecproposal.html:37 +#: netbox/navigation/menu.py:235 templates/vpn/ipsecproposal.html:37 msgid "IPSec Policies" msgstr "" -#: netbox/netbox/navigation/menu.py:236 netbox/templates/vpn/ikepolicy.html:38 -#: netbox/templates/vpn/ipsecpolicy.html:25 +#: netbox/navigation/menu.py:236 templates/vpn/ikepolicy.html:38 +#: templates/vpn/ipsecpolicy.html:25 msgid "IPSec Profiles" msgstr "" -#: netbox/netbox/navigation/menu.py:243 -#: netbox/templates/dcim/device_edit.html:78 +#: netbox/navigation/menu.py:243 templates/dcim/device_edit.html:78 msgid "Virtualization" msgstr "" -#: netbox/netbox/navigation/menu.py:251 -#: netbox/templates/virtualization/virtualmachine.html:174 -#: netbox/templates/virtualization/virtualmachine/base.html:32 -#: netbox/templates/virtualization/virtualmachine_list.html:21 -#: netbox/virtualization/tables/virtualmachines.py:104 -#: netbox/virtualization/views.py:388 +#: netbox/navigation/menu.py:251 +#: templates/virtualization/virtualmachine.html:174 +#: templates/virtualization/virtualmachine/base.html:32 +#: templates/virtualization/virtualmachine_list.html:21 +#: virtualization/tables/virtualmachines.py:104 virtualization/views.py:388 msgid "Virtual Disks" msgstr "" -#: netbox/netbox/navigation/menu.py:258 +#: netbox/navigation/menu.py:258 msgid "Cluster Types" msgstr "" -#: netbox/netbox/navigation/menu.py:259 +#: netbox/navigation/menu.py:259 msgid "Cluster Groups" msgstr "" -#: netbox/netbox/navigation/menu.py:273 +#: netbox/navigation/menu.py:273 msgid "Circuit Types" msgstr "" -#: netbox/netbox/navigation/menu.py:274 +#: netbox/navigation/menu.py:274 msgid "Circuit Groups" msgstr "" -#: netbox/netbox/navigation/menu.py:275 -#: netbox/templates/circuits/circuit.html:66 +#: netbox/navigation/menu.py:275 templates/circuits/circuit.html:66 msgid "Group Assignments" msgstr "" -#: netbox/netbox/navigation/menu.py:276 +#: netbox/navigation/menu.py:276 msgid "Circuit Terminations" msgstr "" -#: netbox/netbox/navigation/menu.py:280 netbox/netbox/navigation/menu.py:282 +#: netbox/navigation/menu.py:280 netbox/navigation/menu.py:282 msgid "Providers" msgstr "" -#: netbox/netbox/navigation/menu.py:283 -#: netbox/templates/circuits/provider.html:51 +#: netbox/navigation/menu.py:283 templates/circuits/provider.html:51 msgid "Provider Accounts" msgstr "" -#: netbox/netbox/navigation/menu.py:284 +#: netbox/navigation/menu.py:284 msgid "Provider Networks" msgstr "" -#: netbox/netbox/navigation/menu.py:298 +#: netbox/navigation/menu.py:298 msgid "Power Panels" msgstr "" -#: netbox/netbox/navigation/menu.py:309 +#: netbox/navigation/menu.py:309 msgid "Configurations" msgstr "" -#: netbox/netbox/navigation/menu.py:311 +#: netbox/navigation/menu.py:311 msgid "Config Contexts" msgstr "" -#: netbox/netbox/navigation/menu.py:312 +#: netbox/navigation/menu.py:312 msgid "Config Templates" msgstr "" -#: netbox/netbox/navigation/menu.py:319 netbox/netbox/navigation/menu.py:323 +#: netbox/navigation/menu.py:319 netbox/navigation/menu.py:323 msgid "Customization" msgstr "" -#: netbox/netbox/navigation/menu.py:325 -#: netbox/templates/dcim/device_edit.html:103 -#: netbox/templates/dcim/htmx/cable_edit.html:81 -#: netbox/templates/dcim/virtualchassis_add.html:31 -#: netbox/templates/dcim/virtualchassis_edit.html:40 -#: netbox/templates/generic/bulk_edit.html:76 -#: netbox/templates/htmx/form.html:19 netbox/templates/inc/filter_list.html:30 -#: netbox/templates/inc/panels/custom_fields.html:7 -#: netbox/templates/ipam/ipaddress_bulk_add.html:35 -#: netbox/templates/ipam/vlan_edit.html:59 +#: netbox/navigation/menu.py:325 templates/dcim/device_edit.html:103 +#: templates/dcim/htmx/cable_edit.html:81 +#: templates/dcim/virtualchassis_add.html:31 +#: templates/dcim/virtualchassis_edit.html:40 +#: templates/generic/bulk_edit.html:76 templates/htmx/form.html:19 +#: templates/inc/filter_list.html:30 templates/inc/panels/custom_fields.html:7 +#: templates/ipam/ipaddress_bulk_add.html:35 templates/ipam/vlan_edit.html:59 msgid "Custom Fields" msgstr "" -#: netbox/netbox/navigation/menu.py:326 +#: netbox/navigation/menu.py:326 msgid "Custom Field Choices" msgstr "" -#: netbox/netbox/navigation/menu.py:327 +#: netbox/navigation/menu.py:327 msgid "Custom Links" msgstr "" -#: netbox/netbox/navigation/menu.py:328 +#: netbox/navigation/menu.py:328 msgid "Export Templates" msgstr "" -#: netbox/netbox/navigation/menu.py:329 +#: netbox/navigation/menu.py:329 msgid "Saved Filters" msgstr "" -#: netbox/netbox/navigation/menu.py:331 +#: netbox/navigation/menu.py:331 msgid "Image Attachments" msgstr "" -#: netbox/netbox/navigation/menu.py:349 +#: netbox/navigation/menu.py:349 msgid "Operations" msgstr "" -#: netbox/netbox/navigation/menu.py:353 +#: netbox/navigation/menu.py:353 msgid "Integrations" msgstr "" -#: netbox/netbox/navigation/menu.py:355 +#: netbox/navigation/menu.py:355 msgid "Data Sources" msgstr "" -#: netbox/netbox/navigation/menu.py:356 +#: netbox/navigation/menu.py:356 msgid "Event Rules" msgstr "" -#: netbox/netbox/navigation/menu.py:357 +#: netbox/navigation/menu.py:357 msgid "Webhooks" msgstr "" -#: netbox/netbox/navigation/menu.py:361 netbox/netbox/navigation/menu.py:365 -#: netbox/netbox/views/generic/feature_views.py:153 -#: netbox/templates/extras/report/base.html:37 -#: netbox/templates/extras/script/base.html:36 +#: netbox/navigation/menu.py:361 netbox/navigation/menu.py:365 +#: netbox/views/generic/feature_views.py:153 +#: templates/extras/report/base.html:37 templates/extras/script/base.html:36 msgid "Jobs" msgstr "" -#: netbox/netbox/navigation/menu.py:371 +#: netbox/navigation/menu.py:371 msgid "Logging" msgstr "" -#: netbox/netbox/navigation/menu.py:373 +#: netbox/navigation/menu.py:373 msgid "Notification Groups" msgstr "" -#: netbox/netbox/navigation/menu.py:374 +#: netbox/navigation/menu.py:374 msgid "Journal Entries" msgstr "" -#: netbox/netbox/navigation/menu.py:375 -#: netbox/templates/core/objectchange.html:9 -#: netbox/templates/core/objectchange_list.html:4 +#: netbox/navigation/menu.py:375 templates/core/objectchange.html:9 +#: templates/core/objectchange_list.html:4 msgid "Change Log" msgstr "" -#: netbox/netbox/navigation/menu.py:382 netbox/templates/inc/user_menu.html:29 +#: netbox/navigation/menu.py:382 templates/inc/user_menu.html:29 msgid "Admin" msgstr "" -#: netbox/netbox/navigation/menu.py:430 netbox/templates/account/base.html:27 -#: netbox/templates/inc/user_menu.html:57 +#: netbox/navigation/menu.py:430 templates/account/base.html:27 +#: templates/inc/user_menu.html:57 msgid "API Tokens" msgstr "" -#: netbox/netbox/navigation/menu.py:437 netbox/users/forms/model_forms.py:187 -#: netbox/users/forms/model_forms.py:195 netbox/users/forms/model_forms.py:242 -#: netbox/users/forms/model_forms.py:249 +#: netbox/navigation/menu.py:437 users/forms/model_forms.py:187 +#: users/forms/model_forms.py:195 users/forms/model_forms.py:242 +#: users/forms/model_forms.py:249 msgid "Permissions" msgstr "" -#: netbox/netbox/navigation/menu.py:445 netbox/netbox/navigation/menu.py:449 -#: netbox/templates/core/system.html:7 +#: netbox/navigation/menu.py:445 netbox/navigation/menu.py:449 +#: templates/core/system.html:7 msgid "System" msgstr "" -#: netbox/netbox/navigation/menu.py:454 netbox/netbox/navigation/menu.py:502 -#: netbox/templates/500.html:35 netbox/templates/account/preferences.html:22 -#: netbox/templates/core/plugin.html:13 -#: netbox/templates/core/plugin_list.html:7 -#: netbox/templates/core/plugin_list.html:12 +#: netbox/navigation/menu.py:454 netbox/navigation/menu.py:502 +#: templates/500.html:35 templates/account/preferences.html:22 +#: templates/core/plugin.html:13 templates/core/plugin_list.html:7 +#: templates/core/plugin_list.html:12 msgid "Plugins" msgstr "" -#: netbox/netbox/navigation/menu.py:459 +#: netbox/navigation/menu.py:459 msgid "Configuration History" msgstr "" -#: netbox/netbox/navigation/menu.py:465 netbox/templates/core/rq_task.html:8 -#: netbox/templates/core/rq_task_list.html:22 +#: netbox/navigation/menu.py:465 templates/core/rq_task.html:8 +#: templates/core/rq_task_list.html:22 msgid "Background Tasks" msgstr "" -#: netbox/netbox/plugins/navigation.py:47 -#: netbox/netbox/plugins/navigation.py:69 +#: netbox/plugins/navigation.py:47 netbox/plugins/navigation.py:69 msgid "Permissions must be passed as a tuple or list." msgstr "" -#: netbox/netbox/plugins/navigation.py:51 +#: netbox/plugins/navigation.py:51 msgid "Buttons must be passed as a tuple or list." msgstr "" -#: netbox/netbox/plugins/navigation.py:73 +#: netbox/plugins/navigation.py:73 msgid "Button color must be a choice within ButtonColorChoices." msgstr "" -#: netbox/netbox/plugins/registration.py:25 +#: netbox/plugins/registration.py:25 #, python-brace-format msgid "" "PluginTemplateExtension class {template_extension} was passed as an instance!" msgstr "" -#: netbox/netbox/plugins/registration.py:31 +#: netbox/plugins/registration.py:31 #, python-brace-format msgid "" "{template_extension} is not a subclass of netbox.plugins." "PluginTemplateExtension!" msgstr "" -#: netbox/netbox/plugins/registration.py:51 +#: netbox/plugins/registration.py:51 #, python-brace-format msgid "{item} must be an instance of netbox.plugins.PluginMenuItem" msgstr "" -#: netbox/netbox/plugins/registration.py:62 +#: netbox/plugins/registration.py:62 #, python-brace-format msgid "{menu_link} must be an instance of netbox.plugins.PluginMenuItem" msgstr "" -#: netbox/netbox/plugins/registration.py:67 +#: netbox/plugins/registration.py:67 #, python-brace-format msgid "{button} must be an instance of netbox.plugins.PluginMenuButton" msgstr "" -#: netbox/netbox/plugins/templates.py:37 +#: netbox/plugins/templates.py:37 msgid "extra_context must be a dictionary" msgstr "" -#: netbox/netbox/preferences.py:19 +#: netbox/preferences.py:19 msgid "HTMX Navigation" msgstr "" -#: netbox/netbox/preferences.py:24 +#: netbox/preferences.py:24 msgid "Enable dynamic UI navigation" msgstr "" -#: netbox/netbox/preferences.py:26 +#: netbox/preferences.py:26 msgid "Experimental feature" msgstr "" -#: netbox/netbox/preferences.py:29 +#: netbox/preferences.py:29 msgid "Language" msgstr "" -#: netbox/netbox/preferences.py:34 +#: netbox/preferences.py:34 msgid "Forces UI translation to the specified language" msgstr "" -#: netbox/netbox/preferences.py:36 +#: netbox/preferences.py:36 msgid "Support for translation has been disabled locally" msgstr "" -#: netbox/netbox/preferences.py:42 +#: netbox/preferences.py:42 msgid "Page length" msgstr "" -#: netbox/netbox/preferences.py:44 +#: netbox/preferences.py:44 msgid "The default number of objects to display per page" msgstr "" -#: netbox/netbox/preferences.py:48 +#: netbox/preferences.py:48 msgid "Paginator placement" msgstr "" -#: netbox/netbox/preferences.py:50 +#: netbox/preferences.py:50 msgid "Bottom" msgstr "" -#: netbox/netbox/preferences.py:51 +#: netbox/preferences.py:51 msgid "Top" msgstr "" -#: netbox/netbox/preferences.py:52 +#: netbox/preferences.py:52 msgid "Both" msgstr "" -#: netbox/netbox/preferences.py:55 +#: netbox/preferences.py:55 msgid "Where the paginator controls will be displayed relative to a table" msgstr "" -#: netbox/netbox/preferences.py:60 +#: netbox/preferences.py:60 msgid "Data format" msgstr "" -#: netbox/netbox/preferences.py:65 +#: netbox/preferences.py:65 msgid "The preferred syntax for displaying generic data within the UI" msgstr "" -#: netbox/netbox/registry.py:14 +#: netbox/registry.py:14 #, python-brace-format msgid "Invalid store: {key}" msgstr "" -#: netbox/netbox/registry.py:17 +#: netbox/registry.py:17 msgid "Cannot add stores to registry after initialization" msgstr "" -#: netbox/netbox/registry.py:20 +#: netbox/registry.py:20 msgid "Cannot delete stores from registry" msgstr "" -#: netbox/netbox/settings.py:760 +#: netbox/settings.py:760 msgid "Czech" msgstr "" -#: netbox/netbox/settings.py:761 +#: netbox/settings.py:761 msgid "Danish" msgstr "" -#: netbox/netbox/settings.py:762 +#: netbox/settings.py:762 msgid "German" msgstr "" -#: netbox/netbox/settings.py:763 +#: netbox/settings.py:763 msgid "English" msgstr "" -#: netbox/netbox/settings.py:764 +#: netbox/settings.py:764 msgid "Spanish" msgstr "" -#: netbox/netbox/settings.py:765 +#: netbox/settings.py:765 msgid "French" msgstr "" -#: netbox/netbox/settings.py:766 +#: netbox/settings.py:766 msgid "Italian" msgstr "" -#: netbox/netbox/settings.py:767 +#: netbox/settings.py:767 msgid "Japanese" msgstr "" -#: netbox/netbox/settings.py:768 +#: netbox/settings.py:768 msgid "Dutch" msgstr "" -#: netbox/netbox/settings.py:769 +#: netbox/settings.py:769 msgid "Polish" msgstr "" -#: netbox/netbox/settings.py:770 +#: netbox/settings.py:770 msgid "Portuguese" msgstr "" -#: netbox/netbox/settings.py:771 +#: netbox/settings.py:771 msgid "Russian" msgstr "" -#: netbox/netbox/settings.py:772 +#: netbox/settings.py:772 msgid "Turkish" msgstr "" -#: netbox/netbox/settings.py:773 +#: netbox/settings.py:773 msgid "Ukrainian" msgstr "" -#: netbox/netbox/settings.py:774 +#: netbox/settings.py:774 msgid "Chinese" msgstr "" -#: netbox/netbox/tables/columns.py:176 +#: netbox/tables/columns.py:176 msgid "Select all" msgstr "" -#: netbox/netbox/tables/columns.py:189 +#: netbox/tables/columns.py:189 msgid "Toggle all" msgstr "" -#: netbox/netbox/tables/columns.py:300 +#: netbox/tables/columns.py:300 msgid "Toggle Dropdown" msgstr "" -#: netbox/netbox/tables/columns.py:572 netbox/templates/core/job.html:53 +#: netbox/tables/columns.py:572 templates/core/job.html:53 msgid "Error" msgstr "" -#: netbox/netbox/tables/tables.py:58 +#: netbox/tables/tables.py:58 #, python-brace-format msgid "No {model_name} found" msgstr "" -#: netbox/netbox/tables/tables.py:249 -#: netbox/templates/generic/bulk_import.html:117 +#: netbox/tables/tables.py:249 templates/generic/bulk_import.html:117 msgid "Field" msgstr "" -#: netbox/netbox/tables/tables.py:252 +#: netbox/tables/tables.py:252 msgid "Value" msgstr "" -#: netbox/netbox/tests/dummy_plugin/navigation.py:29 +#: netbox/tests/dummy_plugin/navigation.py:29 msgid "Dummy Plugin" msgstr "" -#: netbox/netbox/views/generic/bulk_views.py:114 +#: netbox/views/generic/bulk_views.py:114 #, python-brace-format msgid "" "There was an error rendering the selected export template ({template}): " "{error}" msgstr "" -#: netbox/netbox/views/generic/bulk_views.py:416 +#: netbox/views/generic/bulk_views.py:416 #, python-brace-format msgid "Row {i}: Object with ID {id} does not exist" msgstr "" -#: netbox/netbox/views/generic/bulk_views.py:702 -#: netbox/netbox/views/generic/bulk_views.py:900 -#: netbox/netbox/views/generic/bulk_views.py:948 +#: netbox/views/generic/bulk_views.py:702 +#: netbox/views/generic/bulk_views.py:900 +#: netbox/views/generic/bulk_views.py:948 #, python-brace-format msgid "No {object_type} were selected." msgstr "" -#: netbox/netbox/views/generic/bulk_views.py:782 +#: netbox/views/generic/bulk_views.py:782 #, python-brace-format msgid "Renamed {count} {object_type}" msgstr "" -#: netbox/netbox/views/generic/bulk_views.py:878 +#: netbox/views/generic/bulk_views.py:878 #, python-brace-format msgid "Deleted {count} {object_type}" msgstr "" -#: netbox/netbox/views/generic/feature_views.py:40 +#: netbox/views/generic/feature_views.py:40 msgid "Changelog" msgstr "" -#: netbox/netbox/views/generic/feature_views.py:93 +#: netbox/views/generic/feature_views.py:93 msgid "Journal" msgstr "" -#: netbox/netbox/views/generic/feature_views.py:207 +#: netbox/views/generic/feature_views.py:207 msgid "Unable to synchronize data: No data file set." msgstr "" -#: netbox/netbox/views/generic/feature_views.py:211 +#: netbox/views/generic/feature_views.py:211 #, python-brace-format msgid "Synchronized data for {object_type} {object}." msgstr "" -#: netbox/netbox/views/generic/feature_views.py:236 +#: netbox/views/generic/feature_views.py:236 #, python-brace-format msgid "Synced {count} {object_type}" msgstr "" -#: netbox/netbox/views/generic/object_views.py:108 +#: netbox/views/generic/object_views.py:108 #, python-brace-format msgid "{class_name} must implement get_children()" msgstr "" -#: netbox/netbox/views/misc.py:44 +#: netbox/views/misc.py:44 msgid "" "There was an error loading the dashboard configuration. A default dashboard " "is in use." msgstr "" -#: netbox/templates/403.html:4 +#: templates/403.html:4 msgid "Access Denied" msgstr "" -#: netbox/templates/403.html:9 +#: templates/403.html:9 msgid "You do not have permission to access this page" msgstr "" -#: netbox/templates/404.html:4 +#: templates/404.html:4 msgid "Page Not Found" msgstr "" -#: netbox/templates/404.html:9 +#: templates/404.html:9 msgid "The requested page does not exist" msgstr "" -#: netbox/templates/500.html:7 netbox/templates/500.html:18 +#: templates/500.html:7 templates/500.html:18 msgid "Server Error" msgstr "" -#: netbox/templates/500.html:23 +#: templates/500.html:23 msgid "There was a problem with your request. Please contact an administrator" msgstr "" -#: netbox/templates/500.html:28 +#: templates/500.html:28 msgid "The complete exception is provided below" msgstr "" -#: netbox/templates/500.html:33 netbox/templates/core/system.html:40 +#: templates/500.html:33 templates/core/system.html:40 msgid "Python version" msgstr "" -#: netbox/templates/500.html:34 +#: templates/500.html:34 msgid "NetBox version" msgstr "" -#: netbox/templates/500.html:36 +#: templates/500.html:36 msgid "None installed" msgstr "" -#: netbox/templates/500.html:39 +#: templates/500.html:39 msgid "If further assistance is required, please post to the" msgstr "" -#: netbox/templates/500.html:39 +#: templates/500.html:39 msgid "NetBox discussion forum" msgstr "" -#: netbox/templates/500.html:39 +#: templates/500.html:39 msgid "on GitHub" msgstr "" -#: netbox/templates/500.html:42 netbox/templates/base/40x.html:17 +#: templates/500.html:42 templates/base/40x.html:17 msgid "Home Page" msgstr "" -#: netbox/templates/account/base.html:7 netbox/templates/inc/user_menu.html:45 -#: netbox/vpn/forms/bulk_edit.py:255 netbox/vpn/forms/filtersets.py:189 -#: netbox/vpn/forms/model_forms.py:379 +#: templates/account/base.html:7 templates/inc/user_menu.html:45 +#: vpn/forms/bulk_edit.py:255 vpn/forms/filtersets.py:189 +#: vpn/forms/model_forms.py:379 msgid "Profile" msgstr "" -#: netbox/templates/account/base.html:13 -#: netbox/templates/account/notifications.html:7 -#: netbox/templates/inc/user_menu.html:15 +#: templates/account/base.html:13 templates/account/notifications.html:7 +#: templates/inc/user_menu.html:15 msgid "Notifications" msgstr "" -#: netbox/templates/account/base.html:16 -#: netbox/templates/account/subscriptions.html:7 -#: netbox/templates/inc/user_menu.html:51 +#: templates/account/base.html:16 templates/account/subscriptions.html:7 +#: templates/inc/user_menu.html:51 msgid "Subscriptions" msgstr "" -#: netbox/templates/account/base.html:19 netbox/templates/inc/user_menu.html:54 +#: templates/account/base.html:19 templates/inc/user_menu.html:54 msgid "Preferences" msgstr "" -#: netbox/templates/account/password.html:5 +#: templates/account/password.html:5 msgid "Change Password" msgstr "" -#: netbox/templates/account/password.html:19 -#: netbox/templates/account/preferences.html:77 -#: netbox/templates/core/configrevision_restore.html:63 -#: netbox/templates/dcim/devicebay_populate.html:34 -#: netbox/templates/dcim/virtualchassis_add_member.html:26 -#: netbox/templates/dcim/virtualchassis_edit.html:103 -#: netbox/templates/extras/object_journal.html:26 -#: netbox/templates/extras/script.html:38 -#: netbox/templates/generic/bulk_add_component.html:67 -#: netbox/templates/generic/bulk_delete.html:65 -#: netbox/templates/generic/bulk_edit.html:106 -#: netbox/templates/generic/bulk_import.html:56 -#: netbox/templates/generic/bulk_import.html:78 -#: netbox/templates/generic/bulk_import.html:100 -#: netbox/templates/generic/bulk_remove.html:62 -#: netbox/templates/generic/bulk_rename.html:63 -#: netbox/templates/generic/confirmation_form.html:19 -#: netbox/templates/generic/object_edit.html:72 -#: netbox/templates/htmx/delete_form.html:53 -#: netbox/templates/htmx/delete_form.html:55 -#: netbox/templates/ipam/ipaddress_assign.html:28 -#: netbox/templates/virtualization/cluster_add_devices.html:30 +#: templates/account/password.html:19 templates/account/preferences.html:77 +#: templates/core/configrevision_restore.html:63 +#: templates/dcim/devicebay_populate.html:34 +#: templates/dcim/virtualchassis_add_member.html:26 +#: templates/dcim/virtualchassis_edit.html:103 +#: templates/extras/object_journal.html:26 templates/extras/script.html:38 +#: templates/generic/bulk_add_component.html:67 +#: templates/generic/bulk_delete.html:65 templates/generic/bulk_edit.html:106 +#: templates/generic/bulk_import.html:56 templates/generic/bulk_import.html:78 +#: templates/generic/bulk_import.html:100 templates/generic/bulk_remove.html:62 +#: templates/generic/bulk_rename.html:63 +#: templates/generic/confirmation_form.html:19 +#: templates/generic/object_edit.html:72 templates/htmx/delete_form.html:53 +#: templates/htmx/delete_form.html:55 templates/ipam/ipaddress_assign.html:28 +#: templates/virtualization/cluster_add_devices.html:30 msgid "Cancel" msgstr "" -#: netbox/templates/account/password.html:20 -#: netbox/templates/account/preferences.html:78 -#: netbox/templates/dcim/devicebay_populate.html:35 -#: netbox/templates/dcim/virtualchassis_add_member.html:28 -#: netbox/templates/dcim/virtualchassis_edit.html:105 -#: netbox/templates/extras/dashboard/widget_add.html:26 -#: netbox/templates/extras/dashboard/widget_config.html:19 -#: netbox/templates/extras/object_journal.html:27 -#: netbox/templates/generic/object_edit.html:75 -#: netbox/utilities/templates/helpers/applied_filters.html:16 -#: netbox/utilities/templates/helpers/table_config_form.html:40 +#: templates/account/password.html:20 templates/account/preferences.html:78 +#: templates/dcim/devicebay_populate.html:35 +#: templates/dcim/virtualchassis_add_member.html:28 +#: templates/dcim/virtualchassis_edit.html:105 +#: templates/extras/dashboard/widget_add.html:26 +#: templates/extras/dashboard/widget_config.html:19 +#: templates/extras/object_journal.html:27 +#: templates/generic/object_edit.html:75 +#: utilities/templates/helpers/applied_filters.html:16 +#: utilities/templates/helpers/table_config_form.html:40 msgid "Save" msgstr "" -#: netbox/templates/account/preferences.html:34 +#: templates/account/preferences.html:34 msgid "Table Configurations" msgstr "" -#: netbox/templates/account/preferences.html:39 +#: templates/account/preferences.html:39 msgid "Clear table preferences" msgstr "" -#: netbox/templates/account/preferences.html:47 +#: templates/account/preferences.html:47 msgid "Toggle All" msgstr "" -#: netbox/templates/account/preferences.html:49 +#: templates/account/preferences.html:49 msgid "Table" msgstr "" -#: netbox/templates/account/preferences.html:50 +#: templates/account/preferences.html:50 msgid "Ordering" msgstr "" -#: netbox/templates/account/preferences.html:51 +#: templates/account/preferences.html:51 msgid "Columns" msgstr "" -#: netbox/templates/account/preferences.html:71 -#: netbox/templates/dcim/cable_trace.html:113 -#: netbox/templates/extras/object_configcontext.html:43 +#: templates/account/preferences.html:71 templates/dcim/cable_trace.html:113 +#: templates/extras/object_configcontext.html:43 msgid "None found" msgstr "" -#: netbox/templates/account/profile.html:6 +#: templates/account/profile.html:6 msgid "User Profile" msgstr "" -#: netbox/templates/account/profile.html:12 +#: templates/account/profile.html:12 msgid "Account Details" msgstr "" -#: netbox/templates/account/profile.html:29 -#: netbox/templates/tenancy/contact.html:43 netbox/templates/users/user.html:25 -#: netbox/tenancy/forms/bulk_edit.py:109 +#: templates/account/profile.html:29 templates/tenancy/contact.html:43 +#: templates/users/user.html:25 tenancy/forms/bulk_edit.py:109 msgid "Email" msgstr "" -#: netbox/templates/account/profile.html:33 netbox/templates/users/user.html:29 +#: templates/account/profile.html:33 templates/users/user.html:29 msgid "Account Created" msgstr "" -#: netbox/templates/account/profile.html:37 netbox/templates/users/user.html:33 +#: templates/account/profile.html:37 templates/users/user.html:33 msgid "Last Login" msgstr "" -#: netbox/templates/account/profile.html:41 netbox/templates/users/user.html:45 +#: templates/account/profile.html:41 templates/users/user.html:45 msgid "Superuser" msgstr "" -#: netbox/templates/account/profile.html:45 -#: netbox/templates/inc/user_menu.html:31 netbox/templates/users/user.html:41 +#: templates/account/profile.html:45 templates/inc/user_menu.html:31 +#: templates/users/user.html:41 msgid "Staff" msgstr "" -#: netbox/templates/account/profile.html:53 -#: netbox/templates/users/objectpermission.html:82 -#: netbox/templates/users/user.html:53 +#: templates/account/profile.html:53 templates/users/objectpermission.html:82 +#: templates/users/user.html:53 msgid "Assigned Groups" msgstr "" -#: netbox/templates/account/profile.html:58 -#: netbox/templates/circuits/circuit_terminations_swap.html:18 -#: netbox/templates/circuits/circuit_terminations_swap.html:26 -#: netbox/templates/circuits/circuittermination.html:34 -#: netbox/templates/circuits/inc/circuit_termination.html:68 -#: netbox/templates/core/objectchange.html:124 -#: netbox/templates/core/objectchange.html:142 -#: netbox/templates/dcim/devicebay.html:59 -#: netbox/templates/dcim/inc/panels/inventory_items.html:45 -#: netbox/templates/dcim/interface.html:296 -#: netbox/templates/dcim/modulebay.html:80 -#: netbox/templates/extras/configcontext.html:70 -#: netbox/templates/extras/eventrule.html:66 -#: netbox/templates/extras/htmx/script_result.html:60 -#: netbox/templates/extras/webhook.html:65 -#: netbox/templates/extras/webhook.html:75 -#: netbox/templates/inc/panel_table.html:13 -#: netbox/templates/inc/panels/comments.html:10 -#: netbox/templates/ipam/inc/panels/fhrp_groups.html:56 -#: netbox/templates/users/group.html:34 netbox/templates/users/group.html:44 -#: netbox/templates/users/objectpermission.html:77 -#: netbox/templates/users/objectpermission.html:87 -#: netbox/templates/users/user.html:58 netbox/templates/users/user.html:68 +#: templates/account/profile.html:58 +#: templates/circuits/circuit_terminations_swap.html:18 +#: templates/circuits/circuit_terminations_swap.html:26 +#: templates/circuits/circuittermination.html:34 +#: templates/circuits/inc/circuit_termination.html:68 +#: templates/core/objectchange.html:124 templates/core/objectchange.html:142 +#: templates/dcim/devicebay.html:59 +#: templates/dcim/inc/panels/inventory_items.html:45 +#: templates/dcim/interface.html:296 templates/dcim/modulebay.html:80 +#: templates/extras/configcontext.html:70 templates/extras/eventrule.html:66 +#: templates/extras/htmx/script_result.html:60 templates/extras/webhook.html:65 +#: templates/extras/webhook.html:75 templates/inc/panel_table.html:13 +#: templates/inc/panels/comments.html:10 +#: templates/ipam/inc/panels/fhrp_groups.html:56 templates/users/group.html:34 +#: templates/users/group.html:44 templates/users/objectpermission.html:77 +#: templates/users/objectpermission.html:87 templates/users/user.html:58 +#: templates/users/user.html:68 msgid "None" msgstr "" -#: netbox/templates/account/profile.html:68 netbox/templates/users/user.html:78 +#: templates/account/profile.html:68 templates/users/user.html:78 msgid "Recent Activity" msgstr "" -#: netbox/templates/account/token.html:8 -#: netbox/templates/account/token_list.html:6 +#: templates/account/token.html:8 templates/account/token_list.html:6 msgid "My API Tokens" msgstr "" -#: netbox/templates/account/token.html:11 -#: netbox/templates/account/token.html:19 netbox/templates/users/token.html:6 -#: netbox/templates/users/token.html:14 netbox/users/forms/filtersets.py:120 +#: templates/account/token.html:11 templates/account/token.html:19 +#: templates/users/token.html:6 templates/users/token.html:14 +#: users/forms/filtersets.py:120 msgid "Token" msgstr "" -#: netbox/templates/account/token.html:39 netbox/templates/users/token.html:31 -#: netbox/users/forms/bulk_edit.py:107 +#: templates/account/token.html:39 templates/users/token.html:31 +#: users/forms/bulk_edit.py:107 msgid "Write enabled" msgstr "" -#: netbox/templates/account/token.html:51 netbox/templates/users/token.html:43 +#: templates/account/token.html:51 templates/users/token.html:43 msgid "Last used" msgstr "" -#: netbox/templates/account/token_list.html:12 +#: templates/account/token_list.html:12 msgid "Add a Token" msgstr "" -#: netbox/templates/base/base.html:22 netbox/templates/home.html:27 +#: templates/base/base.html:22 templates/home.html:27 msgid "Home" msgstr "" -#: netbox/templates/base/layout.html:25 +#: templates/base/layout.html:25 msgid "NetBox Motif" msgstr "" -#: netbox/templates/base/layout.html:38 netbox/templates/base/layout.html:39 -#: netbox/templates/login.html:14 netbox/templates/login.html:15 +#: templates/base/layout.html:38 templates/base/layout.html:39 +#: templates/login.html:14 templates/login.html:15 msgid "NetBox Logo" msgstr "" -#: netbox/templates/base/layout.html:150 netbox/templates/base/layout.html:151 +#: templates/base/layout.html:150 templates/base/layout.html:151 msgid "Docs" msgstr "" -#: netbox/templates/base/layout.html:156 netbox/templates/base/layout.html:157 -#: netbox/templates/rest_framework/api.html:10 +#: templates/base/layout.html:156 templates/base/layout.html:157 +#: templates/rest_framework/api.html:10 msgid "REST API" msgstr "" -#: netbox/templates/base/layout.html:162 netbox/templates/base/layout.html:163 +#: templates/base/layout.html:162 templates/base/layout.html:163 msgid "REST API documentation" msgstr "" -#: netbox/templates/base/layout.html:169 netbox/templates/base/layout.html:170 +#: templates/base/layout.html:169 templates/base/layout.html:170 msgid "GraphQL API" msgstr "" -#: netbox/templates/base/layout.html:185 netbox/templates/base/layout.html:186 +#: templates/base/layout.html:185 templates/base/layout.html:186 msgid "NetBox Labs Support" msgstr "" -#: netbox/templates/base/layout.html:194 netbox/templates/base/layout.html:195 +#: templates/base/layout.html:194 templates/base/layout.html:195 msgid "Source Code" msgstr "" -#: netbox/templates/base/layout.html:200 netbox/templates/base/layout.html:201 +#: templates/base/layout.html:200 templates/base/layout.html:201 msgid "Community" msgstr "" -#: netbox/templates/circuits/circuit.html:47 +#: templates/circuits/circuit.html:47 msgid "Install Date" msgstr "" -#: netbox/templates/circuits/circuit.html:51 +#: templates/circuits/circuit.html:51 msgid "Termination Date" msgstr "" -#: netbox/templates/circuits/circuit.html:70 -#: netbox/templates/ipam/inc/panels/fhrp_groups.html:15 +#: templates/circuits/circuit.html:70 +#: templates/ipam/inc/panels/fhrp_groups.html:15 msgid "Assign Group" msgstr "" -#: netbox/templates/circuits/circuit_terminations_swap.html:4 +#: templates/circuits/circuit_terminations_swap.html:4 msgid "Swap Circuit Terminations" msgstr "" -#: netbox/templates/circuits/circuit_terminations_swap.html:8 +#: templates/circuits/circuit_terminations_swap.html:8 #, python-format msgid "Swap these terminations for circuit %(circuit)s?" msgstr "" -#: netbox/templates/circuits/circuit_terminations_swap.html:14 +#: templates/circuits/circuit_terminations_swap.html:14 msgid "A side" msgstr "" -#: netbox/templates/circuits/circuit_terminations_swap.html:22 +#: templates/circuits/circuit_terminations_swap.html:22 msgid "Z side" msgstr "" -#: netbox/templates/circuits/circuitgroup.html:16 +#: templates/circuits/circuitgroup.html:16 msgid "Assign Circuit" msgstr "" -#: netbox/templates/circuits/circuitgroupassignment.html:19 +#: templates/circuits/circuitgroupassignment.html:19 msgid "Circuit Group Assignment" msgstr "" -#: netbox/templates/circuits/circuittype.html:10 +#: templates/circuits/circuittype.html:10 msgid "Add Circuit" msgstr "" -#: netbox/templates/circuits/circuittype.html:19 +#: templates/circuits/circuittype.html:19 msgid "Circuit Type" msgstr "" -#: netbox/templates/circuits/inc/circuit_termination.html:10 -#: netbox/templates/dcim/devicetype/component_templates.html:33 -#: netbox/templates/dcim/manufacturer.html:11 -#: netbox/templates/dcim/moduletype/component_templates.html:29 -#: netbox/templates/generic/bulk_add_component.html:22 -#: netbox/templates/users/objectpermission.html:38 -#: netbox/utilities/templates/buttons/add.html:4 -#: netbox/utilities/templates/helpers/table_config_form.html:20 +#: templates/circuits/inc/circuit_termination.html:10 +#: templates/dcim/manufacturer.html:11 +#: templates/generic/bulk_add_component.html:22 +#: templates/users/objectpermission.html:38 +#: utilities/templates/buttons/add.html:4 +#: utilities/templates/helpers/table_config_form.html:20 msgid "Add" msgstr "" -#: netbox/templates/circuits/inc/circuit_termination.html:15 -#: netbox/templates/circuits/inc/circuit_termination_fields.html:36 -#: netbox/templates/dcim/inc/panels/inventory_items.html:32 -#: netbox/templates/dcim/moduletype/component_templates.html:20 -#: netbox/templates/dcim/powerpanel.html:56 -#: netbox/templates/extras/script_list.html:30 -#: netbox/templates/generic/object_edit.html:47 -#: netbox/templates/ipam/inc/ipaddress_edit_header.html:7 -#: netbox/templates/ipam/inc/panels/fhrp_groups.html:43 -#: netbox/utilities/templates/buttons/edit.html:3 +#: templates/circuits/inc/circuit_termination.html:15 +#: templates/circuits/inc/circuit_termination_fields.html:36 +#: templates/dcim/inc/panels/inventory_items.html:32 +#: templates/dcim/powerpanel.html:56 templates/extras/script_list.html:30 +#: templates/generic/object_edit.html:47 +#: templates/ipam/inc/ipaddress_edit_header.html:7 +#: templates/ipam/inc/panels/fhrp_groups.html:43 +#: utilities/templates/buttons/edit.html:3 msgid "Edit" msgstr "" -#: netbox/templates/circuits/inc/circuit_termination.html:18 +#: templates/circuits/inc/circuit_termination.html:18 msgid "Swap" msgstr "" -#: netbox/templates/circuits/inc/circuit_termination_fields.html:19 -#: netbox/templates/dcim/consoleport.html:59 -#: netbox/templates/dcim/consoleserverport.html:60 -#: netbox/templates/dcim/powerfeed.html:114 +#: templates/circuits/inc/circuit_termination_fields.html:19 +#: templates/dcim/consoleport.html:59 templates/dcim/consoleserverport.html:60 +#: templates/dcim/powerfeed.html:114 msgid "Marked as connected" msgstr "" -#: netbox/templates/circuits/inc/circuit_termination_fields.html:21 +#: templates/circuits/inc/circuit_termination_fields.html:21 msgid "to" msgstr "" -#: netbox/templates/circuits/inc/circuit_termination_fields.html:31 -#: netbox/templates/circuits/inc/circuit_termination_fields.html:32 -#: netbox/templates/dcim/frontport.html:80 -#: netbox/templates/dcim/inc/connection_endpoints.html:7 -#: netbox/templates/dcim/interface.html:154 -#: netbox/templates/dcim/rearport.html:76 +#: templates/circuits/inc/circuit_termination_fields.html:31 +#: templates/circuits/inc/circuit_termination_fields.html:32 +#: templates/dcim/frontport.html:80 +#: templates/dcim/inc/connection_endpoints.html:7 +#: templates/dcim/interface.html:154 templates/dcim/rearport.html:76 msgid "Trace" msgstr "" -#: netbox/templates/circuits/inc/circuit_termination_fields.html:35 +#: templates/circuits/inc/circuit_termination_fields.html:35 msgid "Edit cable" msgstr "" -#: netbox/templates/circuits/inc/circuit_termination_fields.html:40 +#: templates/circuits/inc/circuit_termination_fields.html:40 msgid "Remove cable" msgstr "" -#: netbox/templates/circuits/inc/circuit_termination_fields.html:41 -#: netbox/templates/dcim/bulk_disconnect.html:5 -#: netbox/templates/dcim/device/consoleports.html:12 -#: netbox/templates/dcim/device/consoleserverports.html:12 -#: netbox/templates/dcim/device/frontports.html:12 -#: netbox/templates/dcim/device/interfaces.html:16 -#: netbox/templates/dcim/device/poweroutlets.html:12 -#: netbox/templates/dcim/device/powerports.html:12 -#: netbox/templates/dcim/device/rearports.html:12 -#: netbox/templates/dcim/powerpanel.html:61 +#: templates/circuits/inc/circuit_termination_fields.html:41 +#: templates/dcim/bulk_disconnect.html:5 +#: templates/dcim/device/consoleports.html:12 +#: templates/dcim/device/consoleserverports.html:12 +#: templates/dcim/device/frontports.html:12 +#: templates/dcim/device/interfaces.html:16 +#: templates/dcim/device/poweroutlets.html:12 +#: templates/dcim/device/powerports.html:12 +#: templates/dcim/device/rearports.html:12 templates/dcim/powerpanel.html:61 msgid "Disconnect" msgstr "" -#: netbox/templates/circuits/inc/circuit_termination_fields.html:48 -#: netbox/templates/dcim/consoleport.html:69 -#: netbox/templates/dcim/consoleserverport.html:70 -#: netbox/templates/dcim/frontport.html:102 -#: netbox/templates/dcim/interface.html:180 -#: netbox/templates/dcim/interface.html:200 -#: netbox/templates/dcim/powerfeed.html:127 -#: netbox/templates/dcim/poweroutlet.html:71 -#: netbox/templates/dcim/poweroutlet.html:72 -#: netbox/templates/dcim/powerport.html:73 -#: netbox/templates/dcim/rearport.html:98 +#: templates/circuits/inc/circuit_termination_fields.html:48 +#: templates/dcim/consoleport.html:69 templates/dcim/consoleserverport.html:70 +#: templates/dcim/frontport.html:102 templates/dcim/interface.html:180 +#: templates/dcim/interface.html:200 templates/dcim/powerfeed.html:127 +#: templates/dcim/poweroutlet.html:71 templates/dcim/poweroutlet.html:72 +#: templates/dcim/powerport.html:73 templates/dcim/rearport.html:98 msgid "Connect" msgstr "" -#: netbox/templates/circuits/inc/circuit_termination_fields.html:70 +#: templates/circuits/inc/circuit_termination_fields.html:70 msgid "Downstream" msgstr "" -#: netbox/templates/circuits/inc/circuit_termination_fields.html:71 +#: templates/circuits/inc/circuit_termination_fields.html:71 msgid "Upstream" msgstr "" -#: netbox/templates/circuits/inc/circuit_termination_fields.html:80 +#: templates/circuits/inc/circuit_termination_fields.html:80 msgid "Cross-Connect" msgstr "" -#: netbox/templates/circuits/inc/circuit_termination_fields.html:84 +#: templates/circuits/inc/circuit_termination_fields.html:84 msgid "Patch Panel/Port" msgstr "" -#: netbox/templates/circuits/provider.html:11 +#: templates/circuits/provider.html:11 msgid "Add circuit" msgstr "" -#: netbox/templates/circuits/provideraccount.html:17 +#: templates/circuits/provideraccount.html:17 msgid "Provider Account" msgstr "" -#: netbox/templates/core/configrevision.html:35 +#: templates/core/configrevision.html:35 msgid "Configuration Data" msgstr "" -#: netbox/templates/core/configrevision.html:40 +#: templates/core/configrevision.html:40 msgid "Comment" msgstr "" -#: netbox/templates/core/configrevision_restore.html:8 -#: netbox/templates/core/configrevision_restore.html:25 -#: netbox/templates/core/configrevision_restore.html:64 +#: templates/core/configrevision_restore.html:8 +#: templates/core/configrevision_restore.html:25 +#: templates/core/configrevision_restore.html:64 msgid "Restore" msgstr "" -#: netbox/templates/core/configrevision_restore.html:36 +#: templates/core/configrevision_restore.html:36 msgid "Parameter" msgstr "" -#: netbox/templates/core/configrevision_restore.html:37 +#: templates/core/configrevision_restore.html:37 msgid "Current Value" msgstr "" -#: netbox/templates/core/configrevision_restore.html:38 +#: templates/core/configrevision_restore.html:38 msgid "New Value" msgstr "" -#: netbox/templates/core/configrevision_restore.html:50 +#: templates/core/configrevision_restore.html:50 msgid "Changed" msgstr "" -#: netbox/templates/core/datafile.html:42 netbox/templates/ipam/iprange.html:25 -#: netbox/templates/virtualization/virtualdisk.html:29 -#: netbox/virtualization/tables/virtualmachines.py:198 +#: templates/core/datafile.html:42 templates/ipam/iprange.html:25 +#: templates/virtualization/virtualdisk.html:29 +#: virtualization/tables/virtualmachines.py:198 msgid "Size" msgstr "" -#: netbox/templates/core/datafile.html:43 +#: templates/core/datafile.html:43 msgid "bytes" msgstr "" -#: netbox/templates/core/datafile.html:46 +#: templates/core/datafile.html:46 msgid "SHA256 Hash" msgstr "" -#: netbox/templates/core/datasource.html:14 -#: netbox/templates/core/datasource.html:20 -#: netbox/utilities/templates/buttons/sync.html:5 +#: templates/core/datasource.html:14 templates/core/datasource.html:20 +#: utilities/templates/buttons/sync.html:5 msgid "Sync" msgstr "" -#: netbox/templates/core/datasource.html:50 +#: templates/core/datasource.html:50 msgid "Last synced" msgstr "" -#: netbox/templates/core/datasource.html:84 +#: templates/core/datasource.html:84 msgid "Backend" msgstr "" -#: netbox/templates/core/datasource.html:99 +#: templates/core/datasource.html:99 msgid "No parameters defined" msgstr "" -#: netbox/templates/core/datasource.html:114 +#: templates/core/datasource.html:114 msgid "Files" msgstr "" -#: netbox/templates/core/inc/config_data.html:7 +#: templates/core/inc/config_data.html:7 msgid "Rack elevations" msgstr "" -#: netbox/templates/core/inc/config_data.html:10 +#: templates/core/inc/config_data.html:10 msgid "Default unit height" msgstr "" -#: netbox/templates/core/inc/config_data.html:14 +#: templates/core/inc/config_data.html:14 msgid "Default unit width" msgstr "" -#: netbox/templates/core/inc/config_data.html:20 +#: templates/core/inc/config_data.html:20 msgid "Power feeds" msgstr "" -#: netbox/templates/core/inc/config_data.html:23 +#: templates/core/inc/config_data.html:23 msgid "Default voltage" msgstr "" -#: netbox/templates/core/inc/config_data.html:27 +#: templates/core/inc/config_data.html:27 msgid "Default amperage" msgstr "" -#: netbox/templates/core/inc/config_data.html:31 +#: templates/core/inc/config_data.html:31 msgid "Default max utilization" msgstr "" -#: netbox/templates/core/inc/config_data.html:40 +#: templates/core/inc/config_data.html:40 msgid "Enforce global unique" msgstr "" -#: netbox/templates/core/inc/config_data.html:83 +#: templates/core/inc/config_data.html:83 msgid "Paginate count" msgstr "" -#: netbox/templates/core/inc/config_data.html:87 +#: templates/core/inc/config_data.html:87 msgid "Max page size" msgstr "" -#: netbox/templates/core/inc/config_data.html:114 +#: templates/core/inc/config_data.html:114 msgid "User preferences" msgstr "" -#: netbox/templates/core/inc/config_data.html:141 +#: templates/core/inc/config_data.html:141 msgid "Job retention" msgstr "" -#: netbox/templates/core/job.html:35 netbox/templates/core/rq_task.html:12 -#: netbox/templates/core/rq_task.html:49 netbox/templates/core/rq_task.html:58 +#: templates/core/job.html:35 templates/core/rq_task.html:12 +#: templates/core/rq_task.html:49 templates/core/rq_task.html:58 msgid "Job" msgstr "" -#: netbox/templates/core/job.html:58 -#: netbox/templates/extras/journalentry.html:26 +#: templates/core/job.html:58 templates/extras/journalentry.html:26 msgid "Created By" msgstr "" -#: netbox/templates/core/job.html:66 +#: templates/core/job.html:66 msgid "Scheduling" msgstr "" -#: netbox/templates/core/job.html:77 +#: templates/core/job.html:77 #, python-format msgid "every %(interval)s minutes" msgstr "" -#: netbox/templates/core/objectchange.html:29 -#: netbox/templates/users/objectpermission.html:42 +#: templates/core/objectchange.html:29 templates/users/objectpermission.html:42 msgid "Change" msgstr "" -#: netbox/templates/core/objectchange.html:79 +#: templates/core/objectchange.html:79 msgid "Difference" msgstr "" -#: netbox/templates/core/objectchange.html:82 +#: templates/core/objectchange.html:82 msgid "Previous" msgstr "" -#: netbox/templates/core/objectchange.html:85 +#: templates/core/objectchange.html:85 msgid "Next" msgstr "" -#: netbox/templates/core/objectchange.html:93 +#: templates/core/objectchange.html:93 msgid "Object Created" msgstr "" -#: netbox/templates/core/objectchange.html:95 +#: templates/core/objectchange.html:95 msgid "Object Deleted" msgstr "" -#: netbox/templates/core/objectchange.html:97 +#: templates/core/objectchange.html:97 msgid "No Changes" msgstr "" -#: netbox/templates/core/objectchange.html:111 +#: templates/core/objectchange.html:111 msgid "Pre-Change Data" msgstr "" -#: netbox/templates/core/objectchange.html:122 +#: templates/core/objectchange.html:122 msgid "Warning: Comparing non-atomic change to previous change record" msgstr "" -#: netbox/templates/core/objectchange.html:131 +#: templates/core/objectchange.html:131 msgid "Post-Change Data" msgstr "" -#: netbox/templates/core/objectchange.html:162 +#: templates/core/objectchange.html:162 #, python-format msgid "See All %(count)s Changes" msgstr "" -#: netbox/templates/core/objectchange_list.html:9 -#: netbox/templates/extras/object_changelog.html:15 +#: templates/core/objectchange_list.html:9 +#: templates/extras/object_changelog.html:15 msgid "Change log retention" msgstr "" -#: netbox/templates/core/objectchange_list.html:9 -#: netbox/templates/extras/object_changelog.html:15 +#: templates/core/objectchange_list.html:9 +#: templates/extras/object_changelog.html:15 msgid "days" msgstr "" -#: netbox/templates/core/objectchange_list.html:9 -#: netbox/templates/extras/object_changelog.html:15 +#: templates/core/objectchange_list.html:9 +#: templates/extras/object_changelog.html:15 msgid "Indefinite" msgstr "" -#: netbox/templates/core/plugin.html:22 +#: templates/core/plugin.html:22 msgid "Not installed" msgstr "" -#: netbox/templates/core/plugin.html:33 +#: templates/core/plugin.html:33 msgid "Overview" msgstr "" -#: netbox/templates/core/plugin.html:39 +#: templates/core/plugin.html:39 msgid "Install" msgstr "" -#: netbox/templates/core/plugin.html:51 +#: templates/core/plugin.html:51 msgid "Plugin Details" msgstr "" -#: netbox/templates/core/plugin.html:58 +#: templates/core/plugin.html:58 msgid "Summary" msgstr "" -#: netbox/templates/core/plugin.html:76 +#: templates/core/plugin.html:76 msgid "License" msgstr "" -#: netbox/templates/core/plugin.html:96 +#: templates/core/plugin.html:96 msgid "Version History" msgstr "" -#: netbox/templates/core/plugin.html:107 +#: templates/core/plugin.html:107 msgid "Local Installation Instructions" msgstr "" -#: netbox/templates/core/rq_queue_list.html:5 -#: netbox/templates/core/rq_queue_list.html:13 -#: netbox/templates/core/rq_task_list.html:14 -#: netbox/templates/core/rq_worker.html:7 +#: templates/core/rq_queue_list.html:5 templates/core/rq_queue_list.html:13 +#: templates/core/rq_task_list.html:14 templates/core/rq_worker.html:7 msgid "Background Queues" msgstr "" -#: netbox/templates/core/rq_queue_list.html:24 -#: netbox/templates/core/rq_queue_list.html:25 -#: netbox/templates/core/rq_worker_list.html:49 -#: netbox/templates/core/rq_worker_list.html:50 -#: netbox/templates/extras/script_result.html:67 -#: netbox/templates/extras/script_result.html:69 -#: netbox/templates/inc/table_controls_htmx.html:30 -#: netbox/templates/inc/table_controls_htmx.html:33 +#: templates/core/rq_queue_list.html:24 templates/core/rq_queue_list.html:25 +#: templates/core/rq_worker_list.html:49 templates/core/rq_worker_list.html:50 +#: templates/extras/script_result.html:67 +#: templates/extras/script_result.html:69 +#: templates/inc/table_controls_htmx.html:30 +#: templates/inc/table_controls_htmx.html:33 msgid "Configure Table" msgstr "" -#: netbox/templates/core/rq_task.html:29 +#: templates/core/rq_task.html:29 msgid "Stop" msgstr "" -#: netbox/templates/core/rq_task.html:34 +#: templates/core/rq_task.html:34 msgid "Requeue" msgstr "" -#: netbox/templates/core/rq_task.html:39 +#: templates/core/rq_task.html:39 msgid "Enqueue" msgstr "" -#: netbox/templates/core/rq_task.html:61 +#: templates/core/rq_task.html:61 msgid "Queue" msgstr "" -#: netbox/templates/core/rq_task.html:65 +#: templates/core/rq_task.html:65 msgid "Timeout" msgstr "" -#: netbox/templates/core/rq_task.html:69 +#: templates/core/rq_task.html:69 msgid "Result TTL" msgstr "" -#: netbox/templates/core/rq_task.html:89 +#: templates/core/rq_task.html:89 msgid "Meta" msgstr "" -#: netbox/templates/core/rq_task.html:93 +#: templates/core/rq_task.html:93 msgid "Arguments" msgstr "" -#: netbox/templates/core/rq_task.html:97 +#: templates/core/rq_task.html:97 msgid "Keyword Arguments" msgstr "" -#: netbox/templates/core/rq_task.html:103 +#: templates/core/rq_task.html:103 msgid "Depends on" msgstr "" -#: netbox/templates/core/rq_task.html:109 +#: templates/core/rq_task.html:109 msgid "Exception" msgstr "" -#: netbox/templates/core/rq_task_list.html:28 +#: templates/core/rq_task_list.html:28 msgid "tasks in " msgstr "" -#: netbox/templates/core/rq_task_list.html:33 +#: templates/core/rq_task_list.html:33 msgid "Queued Jobs" msgstr "" -#: netbox/templates/core/rq_task_list.html:64 -#: netbox/templates/extras/script_result.html:86 +#: templates/core/rq_task_list.html:64 templates/extras/script_result.html:86 #, python-format msgid "" "Select all %(count)s %(object_type_plural)s matching query" msgstr "" -#: netbox/templates/core/rq_worker.html:10 +#: templates/core/rq_worker.html:10 msgid "Worker Info" msgstr "" -#: netbox/templates/core/rq_worker.html:31 -#: netbox/templates/core/rq_worker.html:40 +#: templates/core/rq_worker.html:31 templates/core/rq_worker.html:40 msgid "Worker" msgstr "" -#: netbox/templates/core/rq_worker.html:55 +#: templates/core/rq_worker.html:55 msgid "Queues" msgstr "" -#: netbox/templates/core/rq_worker.html:63 +#: templates/core/rq_worker.html:63 msgid "Curent Job" msgstr "" -#: netbox/templates/core/rq_worker.html:67 +#: templates/core/rq_worker.html:67 msgid "Successful job count" msgstr "" -#: netbox/templates/core/rq_worker.html:71 +#: templates/core/rq_worker.html:71 msgid "Failed job count" msgstr "" -#: netbox/templates/core/rq_worker.html:75 +#: templates/core/rq_worker.html:75 msgid "Total working time" msgstr "" -#: netbox/templates/core/rq_worker.html:76 +#: templates/core/rq_worker.html:76 msgid "seconds" msgstr "" -#: netbox/templates/core/rq_worker_list.html:13 -#: netbox/templates/core/rq_worker_list.html:21 +#: templates/core/rq_worker_list.html:13 templates/core/rq_worker_list.html:21 msgid "Background Workers" msgstr "" -#: netbox/templates/core/rq_worker_list.html:29 +#: templates/core/rq_worker_list.html:29 #, python-format msgid "Workers in %(queue_name)s" msgstr "" -#: netbox/templates/core/system.html:11 -#: netbox/utilities/templates/buttons/export.html:4 +#: templates/core/system.html:11 utilities/templates/buttons/export.html:4 msgid "Export" msgstr "" -#: netbox/templates/core/system.html:28 +#: templates/core/system.html:28 msgid "System Status" msgstr "" -#: netbox/templates/core/system.html:31 +#: templates/core/system.html:31 msgid "NetBox release" msgstr "" -#: netbox/templates/core/system.html:44 +#: templates/core/system.html:44 msgid "Django version" msgstr "" -#: netbox/templates/core/system.html:48 +#: templates/core/system.html:48 msgid "PostgreSQL version" msgstr "" -#: netbox/templates/core/system.html:52 +#: templates/core/system.html:52 msgid "Database name" msgstr "" -#: netbox/templates/core/system.html:56 +#: templates/core/system.html:56 msgid "Database size" msgstr "" -#: netbox/templates/core/system.html:61 +#: templates/core/system.html:61 msgid "Unavailable" msgstr "" -#: netbox/templates/core/system.html:66 +#: templates/core/system.html:66 msgid "RQ workers" msgstr "" -#: netbox/templates/core/system.html:69 +#: templates/core/system.html:69 msgid "default queue" msgstr "" -#: netbox/templates/core/system.html:73 +#: templates/core/system.html:73 msgid "System time" msgstr "" -#: netbox/templates/core/system.html:85 +#: templates/core/system.html:85 msgid "Current Configuration" msgstr "" -#: netbox/templates/dcim/bulk_disconnect.html:9 +#: templates/dcim/bulk_disconnect.html:9 #, python-format msgid "" "Are you sure you want to disconnect these %(count)s %(obj_type_plural)s?" msgstr "" -#: netbox/templates/dcim/cable_trace.html:10 +#: templates/dcim/cable_trace.html:10 #, python-format msgid "Cable Trace for %(object_type)s %(object)s" msgstr "" -#: netbox/templates/dcim/cable_trace.html:24 -#: netbox/templates/dcim/inc/rack_elevation.html:7 +#: templates/dcim/cable_trace.html:24 templates/dcim/inc/rack_elevation.html:7 msgid "Download SVG" msgstr "" -#: netbox/templates/dcim/cable_trace.html:30 +#: templates/dcim/cable_trace.html:30 msgid "Asymmetric Path" msgstr "" -#: netbox/templates/dcim/cable_trace.html:31 +#: templates/dcim/cable_trace.html:31 msgid "The nodes below have no links and result in an asymmetric path" msgstr "" -#: netbox/templates/dcim/cable_trace.html:38 +#: templates/dcim/cable_trace.html:38 msgid "Path split" msgstr "" -#: netbox/templates/dcim/cable_trace.html:39 +#: templates/dcim/cable_trace.html:39 msgid "Select a node below to continue" msgstr "" -#: netbox/templates/dcim/cable_trace.html:55 +#: templates/dcim/cable_trace.html:55 msgid "Trace Completed" msgstr "" -#: netbox/templates/dcim/cable_trace.html:58 +#: templates/dcim/cable_trace.html:58 msgid "Total segments" msgstr "" -#: netbox/templates/dcim/cable_trace.html:62 +#: templates/dcim/cable_trace.html:62 msgid "Total length" msgstr "" -#: netbox/templates/dcim/cable_trace.html:77 +#: templates/dcim/cable_trace.html:77 msgid "No paths found" msgstr "" -#: netbox/templates/dcim/cable_trace.html:85 +#: templates/dcim/cable_trace.html:85 msgid "Related Paths" msgstr "" -#: netbox/templates/dcim/cable_trace.html:89 +#: templates/dcim/cable_trace.html:89 msgid "Origin" msgstr "" -#: netbox/templates/dcim/cable_trace.html:90 +#: templates/dcim/cable_trace.html:90 msgid "Destination" msgstr "" -#: netbox/templates/dcim/cable_trace.html:91 +#: templates/dcim/cable_trace.html:91 msgid "Segments" msgstr "" -#: netbox/templates/dcim/cable_trace.html:104 +#: templates/dcim/cable_trace.html:104 msgid "Incomplete" msgstr "" -#: netbox/templates/dcim/component_list.html:14 +#: templates/dcim/component_list.html:14 msgid "Rename Selected" msgstr "" -#: netbox/templates/dcim/consoleport.html:65 -#: netbox/templates/dcim/consoleserverport.html:66 -#: netbox/templates/dcim/frontport.html:98 -#: netbox/templates/dcim/interface.html:176 -#: netbox/templates/dcim/poweroutlet.html:69 -#: netbox/templates/dcim/powerport.html:69 +#: templates/dcim/consoleport.html:65 templates/dcim/consoleserverport.html:66 +#: templates/dcim/frontport.html:98 templates/dcim/interface.html:176 +#: templates/dcim/poweroutlet.html:69 templates/dcim/powerport.html:69 msgid "Not Connected" msgstr "" -#: netbox/templates/dcim/device.html:34 +#: templates/dcim/device.html:34 msgid "Highlight device in rack" msgstr "" -#: netbox/templates/dcim/device.html:55 +#: templates/dcim/device.html:55 msgid "Not racked" msgstr "" -#: netbox/templates/dcim/device.html:62 netbox/templates/dcim/site.html:94 +#: templates/dcim/device.html:62 templates/dcim/site.html:94 msgid "GPS Coordinates" msgstr "" -#: netbox/templates/dcim/device.html:68 netbox/templates/dcim/site.html:81 -#: netbox/templates/dcim/site.html:100 +#: templates/dcim/device.html:68 templates/dcim/site.html:81 +#: templates/dcim/site.html:100 msgid "Map" msgstr "" -#: netbox/templates/dcim/device.html:108 -#: netbox/templates/dcim/inventoryitem.html:56 -#: netbox/templates/dcim/module.html:81 netbox/templates/dcim/modulebay.html:74 -#: netbox/templates/dcim/rack.html:61 +#: templates/dcim/device.html:108 templates/dcim/inventoryitem.html:56 +#: templates/dcim/module.html:81 templates/dcim/modulebay.html:74 +#: templates/dcim/rack.html:61 msgid "Asset Tag" msgstr "" -#: netbox/templates/dcim/device.html:123 +#: templates/dcim/device.html:123 msgid "View Virtual Chassis" msgstr "" -#: netbox/templates/dcim/device.html:164 +#: templates/dcim/device.html:164 msgid "Create VDC" msgstr "" -#: netbox/templates/dcim/device.html:175 -#: netbox/templates/dcim/device_edit.html:64 -#: netbox/virtualization/forms/model_forms.py:223 +#: templates/dcim/device.html:175 templates/dcim/device_edit.html:64 +#: virtualization/forms/model_forms.py:223 msgid "Management" msgstr "" -#: netbox/templates/dcim/device.html:195 netbox/templates/dcim/device.html:211 -#: netbox/templates/dcim/device.html:227 -#: netbox/templates/virtualization/virtualmachine.html:57 -#: netbox/templates/virtualization/virtualmachine.html:73 +#: templates/dcim/device.html:195 templates/dcim/device.html:211 +#: templates/dcim/device.html:227 +#: templates/virtualization/virtualmachine.html:57 +#: templates/virtualization/virtualmachine.html:73 msgid "NAT for" msgstr "" -#: netbox/templates/dcim/device.html:197 netbox/templates/dcim/device.html:213 -#: netbox/templates/dcim/device.html:229 -#: netbox/templates/virtualization/virtualmachine.html:59 -#: netbox/templates/virtualization/virtualmachine.html:75 +#: templates/dcim/device.html:197 templates/dcim/device.html:213 +#: templates/dcim/device.html:229 +#: templates/virtualization/virtualmachine.html:59 +#: templates/virtualization/virtualmachine.html:75 msgid "NAT" msgstr "" -#: netbox/templates/dcim/device.html:252 netbox/templates/dcim/rack.html:73 +#: templates/dcim/device.html:252 templates/dcim/rack.html:73 msgid "Power Utilization" msgstr "" -#: netbox/templates/dcim/device.html:256 +#: templates/dcim/device.html:256 msgid "Input" msgstr "" -#: netbox/templates/dcim/device.html:257 +#: templates/dcim/device.html:257 msgid "Outlets" msgstr "" -#: netbox/templates/dcim/device.html:258 +#: templates/dcim/device.html:258 msgid "Allocated" msgstr "" -#: netbox/templates/dcim/device.html:268 netbox/templates/dcim/device.html:270 -#: netbox/templates/dcim/device.html:286 -#: netbox/templates/dcim/powerfeed.html:67 +#: templates/dcim/device.html:268 templates/dcim/device.html:270 +#: templates/dcim/device.html:286 templates/dcim/powerfeed.html:67 msgid "VA" msgstr "" -#: netbox/templates/dcim/device.html:280 +#: templates/dcim/device.html:280 msgctxt "Leg of a power feed" msgid "Leg" msgstr "" -#: netbox/templates/dcim/device.html:306 -#: netbox/templates/virtualization/virtualmachine.html:158 +#: templates/dcim/device.html:306 +#: templates/virtualization/virtualmachine.html:158 msgid "Add a service" msgstr "" -#: netbox/templates/dcim/device/base.html:21 -#: netbox/templates/dcim/device_list.html:9 -#: netbox/templates/dcim/devicetype/base.html:18 -#: netbox/templates/dcim/module.html:18 -#: netbox/templates/dcim/moduletype/base.html:18 -#: netbox/templates/virtualization/virtualmachine/base.html:22 -#: netbox/templates/virtualization/virtualmachine_list.html:8 +#: templates/dcim/device/base.html:21 templates/dcim/device_list.html:9 +#: templates/dcim/devicetype/base.html:18 +#: templates/dcim/inc/moduletype_buttons.html:9 templates/dcim/module.html:18 +#: templates/virtualization/virtualmachine/base.html:22 +#: templates/virtualization/virtualmachine_list.html:8 msgid "Add Components" msgstr "" -#: netbox/templates/dcim/device/consoleports.html:24 +#: templates/dcim/device/consoleports.html:24 msgid "Add Console Ports" msgstr "" -#: netbox/templates/dcim/device/consoleserverports.html:24 +#: templates/dcim/device/consoleserverports.html:24 msgid "Add Console Server Ports" msgstr "" -#: netbox/templates/dcim/device/devicebays.html:10 +#: templates/dcim/device/devicebays.html:10 msgid "Add Device Bays" msgstr "" -#: netbox/templates/dcim/device/frontports.html:24 +#: templates/dcim/device/frontports.html:24 msgid "Add Front Ports" msgstr "" -#: netbox/templates/dcim/device/inc/interface_table_controls.html:9 +#: templates/dcim/device/inc/interface_table_controls.html:9 msgid "Hide Enabled" msgstr "" -#: netbox/templates/dcim/device/inc/interface_table_controls.html:10 +#: templates/dcim/device/inc/interface_table_controls.html:10 msgid "Hide Disabled" msgstr "" -#: netbox/templates/dcim/device/inc/interface_table_controls.html:11 +#: templates/dcim/device/inc/interface_table_controls.html:11 msgid "Hide Virtual" msgstr "" -#: netbox/templates/dcim/device/inc/interface_table_controls.html:12 +#: templates/dcim/device/inc/interface_table_controls.html:12 msgid "Hide Disconnected" msgstr "" -#: netbox/templates/dcim/device/interfaces.html:27 +#: templates/dcim/device/interfaces.html:27 msgid "Add Interfaces" msgstr "" -#: netbox/templates/dcim/device/inventory.html:10 -#: netbox/templates/dcim/inc/panels/inventory_items.html:10 +#: templates/dcim/device/inventory.html:10 +#: templates/dcim/inc/panels/inventory_items.html:10 msgid "Add Inventory Item" msgstr "" -#: netbox/templates/dcim/device/modulebays.html:10 +#: templates/dcim/device/modulebays.html:10 msgid "Add Module Bays" msgstr "" -#: netbox/templates/dcim/device/poweroutlets.html:24 +#: templates/dcim/device/poweroutlets.html:24 msgid "Add Power Outlets" msgstr "" -#: netbox/templates/dcim/device/powerports.html:24 +#: templates/dcim/device/powerports.html:24 msgid "Add Power Port" msgstr "" -#: netbox/templates/dcim/device/rearports.html:24 +#: templates/dcim/device/rearports.html:24 msgid "Add Rear Ports" msgstr "" -#: netbox/templates/dcim/device/render_config.html:5 -#: netbox/templates/virtualization/virtualmachine/render_config.html:5 +#: templates/dcim/device/render_config.html:5 +#: templates/virtualization/virtualmachine/render_config.html:5 msgid "Config" msgstr "" -#: netbox/templates/dcim/device/render_config.html:35 -#: netbox/templates/virtualization/virtualmachine/render_config.html:35 +#: templates/dcim/device/render_config.html:35 +#: templates/virtualization/virtualmachine/render_config.html:35 msgid "Context Data" msgstr "" -#: netbox/templates/dcim/device/render_config.html:53 -#: netbox/templates/virtualization/virtualmachine/render_config.html:53 +#: templates/dcim/device/render_config.html:53 +#: templates/virtualization/virtualmachine/render_config.html:53 msgid "Rendered Config" msgstr "" -#: netbox/templates/dcim/device/render_config.html:55 -#: netbox/templates/virtualization/virtualmachine/render_config.html:55 +#: templates/dcim/device/render_config.html:55 +#: templates/virtualization/virtualmachine/render_config.html:55 msgid "Download" msgstr "" -#: netbox/templates/dcim/device/render_config.html:61 -#: netbox/templates/virtualization/virtualmachine/render_config.html:61 +#: templates/dcim/device/render_config.html:61 +#: templates/virtualization/virtualmachine/render_config.html:61 msgid "No configuration template found" msgstr "" -#: netbox/templates/dcim/device_edit.html:44 +#: templates/dcim/device_edit.html:44 msgid "Parent Bay" msgstr "" -#: netbox/templates/dcim/device_edit.html:48 -#: netbox/utilities/templates/form_helpers/render_field.html:22 +#: templates/dcim/device_edit.html:48 +#: utilities/templates/form_helpers/render_field.html:22 msgid "Regenerate Slug" msgstr "" -#: netbox/templates/dcim/device_edit.html:49 -#: netbox/templates/generic/bulk_remove.html:21 -#: netbox/utilities/templates/helpers/table_config_form.html:23 +#: templates/dcim/device_edit.html:49 templates/generic/bulk_remove.html:21 +#: utilities/templates/helpers/table_config_form.html:23 msgid "Remove" msgstr "" -#: netbox/templates/dcim/device_edit.html:110 +#: templates/dcim/device_edit.html:110 msgid "Local Config Context Data" msgstr "" -#: netbox/templates/dcim/device_list.html:82 -#: netbox/templates/dcim/moduletype/component_templates.html:17 -#: netbox/templates/generic/bulk_rename.html:57 -#: netbox/templates/virtualization/virtualmachine/interfaces.html:11 -#: netbox/templates/virtualization/virtualmachine/virtual_disks.html:11 +#: templates/dcim/device_list.html:82 templates/generic/bulk_rename.html:57 +#: templates/virtualization/virtualmachine/interfaces.html:11 +#: templates/virtualization/virtualmachine/virtual_disks.html:11 msgid "Rename" msgstr "" -#: netbox/templates/dcim/devicebay.html:17 +#: templates/dcim/devicebay.html:17 msgid "Device Bay" msgstr "" -#: netbox/templates/dcim/devicebay.html:43 +#: templates/dcim/devicebay.html:43 msgid "Installed Device" msgstr "" -#: netbox/templates/dcim/devicebay_depopulate.html:6 +#: templates/dcim/devicebay_depopulate.html:6 #, python-format msgid "Remove %(device)s from %(device_bay)s?" msgstr "" -#: netbox/templates/dcim/devicebay_depopulate.html:13 +#: templates/dcim/devicebay_depopulate.html:13 #, python-format msgid "" "Are you sure you want to remove %(device)s from " "%(device_bay)s?" msgstr "" -#: netbox/templates/dcim/devicebay_populate.html:13 +#: templates/dcim/devicebay_populate.html:13 msgid "Populate" msgstr "" -#: netbox/templates/dcim/devicebay_populate.html:22 +#: templates/dcim/devicebay_populate.html:22 msgid "Bay" msgstr "" -#: netbox/templates/dcim/devicerole.html:14 -#: netbox/templates/dcim/platform.html:17 +#: templates/dcim/devicerole.html:14 templates/dcim/platform.html:17 msgid "Add Device" msgstr "" -#: netbox/templates/dcim/devicerole.html:40 +#: templates/dcim/devicerole.html:40 msgid "VM Role" msgstr "" -#: netbox/templates/dcim/devicetype.html:18 -#: netbox/templates/dcim/moduletype.html:18 +#: templates/dcim/devicetype.html:18 templates/dcim/moduletype.html:29 msgid "Model Name" msgstr "" -#: netbox/templates/dcim/devicetype.html:25 -#: netbox/templates/dcim/moduletype.html:22 +#: templates/dcim/devicetype.html:25 templates/dcim/moduletype.html:33 msgid "Part Number" msgstr "" -#: netbox/templates/dcim/devicetype.html:41 +#: templates/dcim/devicetype.html:41 msgid "Exclude From Utilization" msgstr "" -#: netbox/templates/dcim/devicetype.html:59 +#: templates/dcim/devicetype.html:59 msgid "Parent/Child" msgstr "" -#: netbox/templates/dcim/devicetype.html:71 +#: templates/dcim/devicetype.html:71 msgid "Front Image" msgstr "" -#: netbox/templates/dcim/devicetype.html:83 +#: templates/dcim/devicetype.html:83 msgid "Rear Image" msgstr "" -#: netbox/templates/dcim/frontport.html:54 +#: templates/dcim/frontport.html:54 msgid "Rear Port Position" msgstr "" -#: netbox/templates/dcim/frontport.html:72 -#: netbox/templates/dcim/interface.html:144 -#: netbox/templates/dcim/poweroutlet.html:63 -#: netbox/templates/dcim/powerport.html:63 -#: netbox/templates/dcim/rearport.html:68 +#: templates/dcim/frontport.html:72 templates/dcim/interface.html:144 +#: templates/dcim/poweroutlet.html:63 templates/dcim/powerport.html:63 +#: templates/dcim/rearport.html:68 msgid "Marked as Connected" msgstr "" -#: netbox/templates/dcim/frontport.html:86 -#: netbox/templates/dcim/rearport.html:82 +#: templates/dcim/frontport.html:86 templates/dcim/rearport.html:82 msgid "Connection Status" msgstr "" -#: netbox/templates/dcim/htmx/cable_edit.html:10 +#: templates/dcim/htmx/cable_edit.html:10 msgid "A Side" msgstr "" -#: netbox/templates/dcim/htmx/cable_edit.html:30 +#: templates/dcim/htmx/cable_edit.html:30 msgid "B Side" msgstr "" -#: netbox/templates/dcim/inc/cable_termination.html:65 +#: templates/dcim/inc/cable_termination.html:65 msgid "No termination" msgstr "" -#: netbox/templates/dcim/inc/cable_toggle_buttons.html:3 +#: templates/dcim/inc/cable_toggle_buttons.html:3 msgid "Mark Planned" msgstr "" -#: netbox/templates/dcim/inc/cable_toggle_buttons.html:6 +#: templates/dcim/inc/cable_toggle_buttons.html:6 msgid "Mark Installed" msgstr "" -#: netbox/templates/dcim/inc/connection_endpoints.html:13 +#: templates/dcim/inc/connection_endpoints.html:13 msgid "Path Status" msgstr "" -#: netbox/templates/dcim/inc/connection_endpoints.html:18 +#: templates/dcim/inc/connection_endpoints.html:18 msgid "Not Reachable" msgstr "" -#: netbox/templates/dcim/inc/connection_endpoints.html:23 +#: templates/dcim/inc/connection_endpoints.html:23 msgid "Path Endpoints" msgstr "" -#: netbox/templates/dcim/inc/endpoint_connection.html:8 -#: netbox/templates/dcim/powerfeed.html:120 -#: netbox/templates/dcim/rearport.html:94 +#: templates/dcim/inc/endpoint_connection.html:8 +#: templates/dcim/powerfeed.html:120 templates/dcim/rearport.html:94 msgid "Not connected" msgstr "" -#: netbox/templates/dcim/inc/interface_vlans_table.html:6 +#: templates/dcim/inc/interface_vlans_table.html:6 msgid "Untagged" msgstr "" -#: netbox/templates/dcim/inc/interface_vlans_table.html:37 +#: templates/dcim/inc/interface_vlans_table.html:37 msgid "No VLANs Assigned" msgstr "" -#: netbox/templates/dcim/inc/interface_vlans_table.html:44 -#: netbox/templates/ipam/prefix_list.html:16 -#: netbox/templates/ipam/prefix_list.html:33 +#: templates/dcim/inc/interface_vlans_table.html:44 +#: templates/ipam/prefix_list.html:16 templates/ipam/prefix_list.html:33 msgid "Clear" msgstr "" -#: netbox/templates/dcim/inc/interface_vlans_table.html:47 +#: templates/dcim/inc/interface_vlans_table.html:47 msgid "Clear All" msgstr "" -#: netbox/templates/dcim/inc/panels/racktype_dimensions.html:38 +#: templates/dcim/inc/panels/racktype_dimensions.html:38 msgid "Mounting Depth" msgstr "" -#: netbox/templates/dcim/inc/panels/racktype_numbering.html:6 +#: templates/dcim/inc/panels/racktype_numbering.html:6 msgid "Starting Unit" msgstr "" -#: netbox/templates/dcim/inc/panels/racktype_numbering.html:10 +#: templates/dcim/inc/panels/racktype_numbering.html:10 msgid "Descending Units" msgstr "" -#: netbox/templates/dcim/inc/rack_elevation.html:3 +#: templates/dcim/inc/rack_elevation.html:3 msgid "Rack elevation" msgstr "" -#: netbox/templates/dcim/interface.html:17 +#: templates/dcim/interface.html:17 msgid "Add Child Interface" msgstr "" -#: netbox/templates/dcim/interface.html:50 +#: templates/dcim/interface.html:50 msgid "Speed/Duplex" msgstr "" -#: netbox/templates/dcim/interface.html:73 +#: templates/dcim/interface.html:73 msgid "PoE Mode" msgstr "" -#: netbox/templates/dcim/interface.html:77 +#: templates/dcim/interface.html:77 msgid "PoE Type" msgstr "" -#: netbox/templates/dcim/interface.html:81 -#: netbox/templates/virtualization/vminterface.html:63 +#: templates/dcim/interface.html:81 +#: templates/virtualization/vminterface.html:63 msgid "802.1Q Mode" msgstr "" -#: netbox/templates/dcim/interface.html:125 -#: netbox/templates/virtualization/vminterface.html:59 +#: templates/dcim/interface.html:125 +#: templates/virtualization/vminterface.html:59 msgid "MAC Address" msgstr "" -#: netbox/templates/dcim/interface.html:151 +#: templates/dcim/interface.html:151 msgid "Wireless Link" msgstr "" -#: netbox/templates/dcim/interface.html:218 netbox/vpn/choices.py:55 +#: templates/dcim/interface.html:218 vpn/choices.py:55 msgid "Peer" msgstr "" -#: netbox/templates/dcim/interface.html:230 -#: netbox/templates/wireless/inc/wirelesslink_interface.html:26 +#: templates/dcim/interface.html:230 +#: templates/wireless/inc/wirelesslink_interface.html:26 msgid "Channel" msgstr "" -#: netbox/templates/dcim/interface.html:239 -#: netbox/templates/wireless/inc/wirelesslink_interface.html:32 +#: templates/dcim/interface.html:239 +#: templates/wireless/inc/wirelesslink_interface.html:32 msgid "Channel Frequency" msgstr "" -#: netbox/templates/dcim/interface.html:242 -#: netbox/templates/dcim/interface.html:250 -#: netbox/templates/dcim/interface.html:261 -#: netbox/templates/dcim/interface.html:269 +#: templates/dcim/interface.html:242 templates/dcim/interface.html:250 +#: templates/dcim/interface.html:261 templates/dcim/interface.html:269 msgid "MHz" msgstr "" -#: netbox/templates/dcim/interface.html:258 -#: netbox/templates/wireless/inc/wirelesslink_interface.html:42 +#: templates/dcim/interface.html:258 +#: templates/wireless/inc/wirelesslink_interface.html:42 msgid "Channel Width" msgstr "" -#: netbox/templates/dcim/interface.html:285 -#: netbox/templates/wireless/wirelesslan.html:14 -#: netbox/templates/wireless/wirelesslink.html:21 -#: netbox/wireless/forms/bulk_edit.py:60 netbox/wireless/forms/bulk_edit.py:102 -#: netbox/wireless/forms/filtersets.py:40 -#: netbox/wireless/forms/filtersets.py:80 netbox/wireless/models.py:82 -#: netbox/wireless/models.py:156 netbox/wireless/tables/wirelesslan.py:44 +#: templates/dcim/interface.html:285 templates/wireless/wirelesslan.html:14 +#: templates/wireless/wirelesslink.html:21 wireless/forms/bulk_edit.py:60 +#: wireless/forms/bulk_edit.py:102 wireless/forms/filtersets.py:40 +#: wireless/forms/filtersets.py:80 wireless/models.py:82 wireless/models.py:156 +#: wireless/tables/wirelesslan.py:44 msgid "SSID" msgstr "" -#: netbox/templates/dcim/interface.html:305 +#: templates/dcim/interface.html:305 msgid "LAG Members" msgstr "" -#: netbox/templates/dcim/interface.html:323 +#: templates/dcim/interface.html:323 msgid "No member interfaces" msgstr "" -#: netbox/templates/dcim/interface.html:343 -#: netbox/templates/ipam/fhrpgroup.html:73 -#: netbox/templates/ipam/iprange/ip_addresses.html:7 -#: netbox/templates/ipam/prefix/ip_addresses.html:7 -#: netbox/templates/virtualization/vminterface.html:89 +#: templates/dcim/interface.html:343 templates/ipam/fhrpgroup.html:73 +#: templates/ipam/iprange/ip_addresses.html:7 +#: templates/ipam/prefix/ip_addresses.html:7 +#: templates/virtualization/vminterface.html:89 msgid "Add IP Address" msgstr "" -#: netbox/templates/dcim/inventoryitem.html:24 +#: templates/dcim/inventoryitem.html:24 msgid "Parent Item" msgstr "" -#: netbox/templates/dcim/inventoryitem.html:48 +#: templates/dcim/inventoryitem.html:48 msgid "Part ID" msgstr "" -#: netbox/templates/dcim/location.html:17 +#: templates/dcim/location.html:17 msgid "Add Child Location" msgstr "" -#: netbox/templates/dcim/location.html:77 +#: templates/dcim/location.html:77 msgid "Child Locations" msgstr "" -#: netbox/templates/dcim/location.html:81 netbox/templates/dcim/site.html:131 +#: templates/dcim/location.html:81 templates/dcim/site.html:131 msgid "Add a Location" msgstr "" -#: netbox/templates/dcim/location.html:94 netbox/templates/dcim/site.html:144 +#: templates/dcim/location.html:94 templates/dcim/site.html:144 msgid "Add a Device" msgstr "" -#: netbox/templates/dcim/manufacturer.html:16 +#: templates/dcim/manufacturer.html:16 msgid "Add Device Type" msgstr "" -#: netbox/templates/dcim/manufacturer.html:21 +#: templates/dcim/manufacturer.html:21 msgid "Add Module Type" msgstr "" -#: netbox/templates/dcim/powerfeed.html:53 +#: templates/dcim/powerfeed.html:53 msgid "Connected Device" msgstr "" -#: netbox/templates/dcim/powerfeed.html:63 +#: templates/dcim/powerfeed.html:63 msgid "Utilization (Allocated" msgstr "" -#: netbox/templates/dcim/powerfeed.html:80 +#: templates/dcim/powerfeed.html:80 msgid "Electrical Characteristics" msgstr "" -#: netbox/templates/dcim/powerfeed.html:88 +#: templates/dcim/powerfeed.html:88 msgctxt "Abbreviation for volts" msgid "V" msgstr "" -#: netbox/templates/dcim/powerfeed.html:92 +#: templates/dcim/powerfeed.html:92 msgctxt "Abbreviation for amperes" msgid "A" msgstr "" -#: netbox/templates/dcim/poweroutlet.html:48 +#: templates/dcim/poweroutlet.html:48 msgid "Feed Leg" msgstr "" -#: netbox/templates/dcim/powerpanel.html:72 +#: templates/dcim/powerpanel.html:72 msgid "Add Power Feeds" msgstr "" -#: netbox/templates/dcim/powerport.html:44 +#: templates/dcim/powerport.html:44 msgid "Maximum Draw" msgstr "" -#: netbox/templates/dcim/powerport.html:48 +#: templates/dcim/powerport.html:48 msgid "Allocated Draw" msgstr "" -#: netbox/templates/dcim/rack.html:69 +#: templates/dcim/rack.html:69 msgid "Space Utilization" msgstr "" -#: netbox/templates/dcim/rack.html:84 netbox/templates/dcim/racktype.html:44 +#: templates/dcim/rack.html:84 templates/dcim/racktype.html:44 msgid "Rack Weight" msgstr "" -#: netbox/templates/dcim/rack.html:94 netbox/templates/dcim/racktype.html:54 +#: templates/dcim/rack.html:94 templates/dcim/racktype.html:54 msgid "Maximum Weight" msgstr "" -#: netbox/templates/dcim/rack.html:104 +#: templates/dcim/rack.html:104 msgid "Total Weight" msgstr "" -#: netbox/templates/dcim/rack.html:125 -#: netbox/templates/dcim/rack_elevation_list.html:15 +#: templates/dcim/rack.html:125 templates/dcim/rack_elevation_list.html:15 msgid "Images and Labels" msgstr "" -#: netbox/templates/dcim/rack.html:126 -#: netbox/templates/dcim/rack_elevation_list.html:16 +#: templates/dcim/rack.html:126 templates/dcim/rack_elevation_list.html:16 msgid "Images only" msgstr "" -#: netbox/templates/dcim/rack.html:127 -#: netbox/templates/dcim/rack_elevation_list.html:17 +#: templates/dcim/rack.html:127 templates/dcim/rack_elevation_list.html:17 msgid "Labels only" msgstr "" -#: netbox/templates/dcim/rack/reservations.html:8 +#: templates/dcim/rack/reservations.html:8 msgid "Add reservation" msgstr "" -#: netbox/templates/dcim/rack_elevation_list.html:12 +#: templates/dcim/rack_elevation_list.html:12 msgid "View List" msgstr "" -#: netbox/templates/dcim/rack_elevation_list.html:14 +#: templates/dcim/rack_elevation_list.html:14 msgid "Select rack view" msgstr "" -#: netbox/templates/dcim/rack_elevation_list.html:25 +#: templates/dcim/rack_elevation_list.html:25 msgid "Sort By" msgstr "" -#: netbox/templates/dcim/rack_elevation_list.html:74 +#: templates/dcim/rack_elevation_list.html:74 msgid "No Racks Found" msgstr "" -#: netbox/templates/dcim/rack_list.html:8 +#: templates/dcim/rack_list.html:8 msgid "View Elevations" msgstr "" -#: netbox/templates/dcim/rackreservation.html:42 +#: templates/dcim/rackreservation.html:42 msgid "Reservation Details" msgstr "" -#: netbox/templates/dcim/rackrole.html:10 +#: templates/dcim/rackrole.html:10 msgid "Add Rack" msgstr "" -#: netbox/templates/dcim/rearport.html:50 +#: templates/dcim/rearport.html:50 msgid "Positions" msgstr "" -#: netbox/templates/dcim/region.html:17 netbox/templates/dcim/sitegroup.html:17 +#: templates/dcim/region.html:17 templates/dcim/sitegroup.html:17 msgid "Add Site" msgstr "" -#: netbox/templates/dcim/region.html:55 +#: templates/dcim/region.html:55 msgid "Child Regions" msgstr "" -#: netbox/templates/dcim/region.html:59 +#: templates/dcim/region.html:59 msgid "Add Region" msgstr "" -#: netbox/templates/dcim/site.html:64 +#: templates/dcim/site.html:64 msgid "Time Zone" msgstr "" -#: netbox/templates/dcim/site.html:67 +#: templates/dcim/site.html:67 msgid "UTC" msgstr "" -#: netbox/templates/dcim/site.html:68 +#: templates/dcim/site.html:68 msgid "Site time" msgstr "" -#: netbox/templates/dcim/site.html:75 +#: templates/dcim/site.html:75 msgid "Physical Address" msgstr "" -#: netbox/templates/dcim/site.html:90 +#: templates/dcim/site.html:90 msgid "Shipping Address" msgstr "" -#: netbox/templates/dcim/sitegroup.html:55 -#: netbox/templates/tenancy/contactgroup.html:46 -#: netbox/templates/tenancy/tenantgroup.html:55 -#: netbox/templates/wireless/wirelesslangroup.html:55 +#: templates/dcim/sitegroup.html:55 templates/tenancy/contactgroup.html:46 +#: templates/tenancy/tenantgroup.html:55 +#: templates/wireless/wirelesslangroup.html:55 msgid "Child Groups" msgstr "" -#: netbox/templates/dcim/sitegroup.html:59 +#: templates/dcim/sitegroup.html:59 msgid "Add Site Group" msgstr "" -#: netbox/templates/dcim/trace/attachment.html:5 -#: netbox/templates/extras/exporttemplate.html:31 +#: templates/dcim/trace/attachment.html:5 +#: templates/extras/exporttemplate.html:31 msgid "Attachment" msgstr "" -#: netbox/templates/dcim/virtualchassis.html:57 +#: templates/dcim/virtualchassis.html:57 msgid "Add Member" msgstr "" -#: netbox/templates/dcim/virtualchassis_add.html:18 +#: templates/dcim/virtualchassis_add.html:18 msgid "Member Devices" msgstr "" -#: netbox/templates/dcim/virtualchassis_add_member.html:10 +#: templates/dcim/virtualchassis_add_member.html:10 #, python-format msgid "Add New Member to Virtual Chassis %(virtual_chassis)s" msgstr "" -#: netbox/templates/dcim/virtualchassis_add_member.html:19 +#: templates/dcim/virtualchassis_add_member.html:19 msgid "Add New Member" msgstr "" -#: netbox/templates/dcim/virtualchassis_add_member.html:27 -#: netbox/templates/generic/object_edit.html:78 -#: netbox/templates/users/objectpermission.html:31 -#: netbox/users/forms/filtersets.py:67 netbox/users/forms/model_forms.py:312 +#: templates/dcim/virtualchassis_add_member.html:27 +#: templates/generic/object_edit.html:78 +#: templates/users/objectpermission.html:31 users/forms/filtersets.py:67 +#: users/forms/model_forms.py:312 msgid "Actions" msgstr "" -#: netbox/templates/dcim/virtualchassis_add_member.html:29 +#: templates/dcim/virtualchassis_add_member.html:29 msgid "Save & Add Another" msgstr "" -#: netbox/templates/dcim/virtualchassis_edit.html:7 +#: templates/dcim/virtualchassis_edit.html:7 #, python-format msgid "Editing Virtual Chassis %(name)s" msgstr "" -#: netbox/templates/dcim/virtualchassis_edit.html:53 +#: templates/dcim/virtualchassis_edit.html:53 msgid "Rack/Unit" msgstr "" -#: netbox/templates/dcim/virtualchassis_remove_member.html:5 +#: templates/dcim/virtualchassis_remove_member.html:5 msgid "Remove Virtual Chassis Member" msgstr "" -#: netbox/templates/dcim/virtualchassis_remove_member.html:9 +#: templates/dcim/virtualchassis_remove_member.html:9 #, python-format msgid "" "Are you sure you want to remove %(device)s from virtual " "chassis %(name)s?" msgstr "" -#: netbox/templates/dcim/virtualdevicecontext.html:26 -#: netbox/templates/vpn/l2vpn.html:18 +#: templates/dcim/virtualdevicecontext.html:26 templates/vpn/l2vpn.html:18 msgid "Identifier" msgstr "" -#: netbox/templates/exceptions/import_error.html:6 +#: templates/exceptions/import_error.html:6 msgid "" "A module import error occurred during this request. Common causes include " "the following:" msgstr "" -#: netbox/templates/exceptions/import_error.html:10 +#: templates/exceptions/import_error.html:10 msgid "Missing required packages" msgstr "" -#: netbox/templates/exceptions/import_error.html:11 +#: templates/exceptions/import_error.html:11 msgid "" "This installation of NetBox might be missing one or more required Python " "packages. These packages are listed in requirements.txt and " @@ -12743,28 +12083,28 @@ msgid "" "of required packages." msgstr "" -#: netbox/templates/exceptions/import_error.html:20 +#: templates/exceptions/import_error.html:20 msgid "WSGI service not restarted after upgrade" msgstr "" -#: netbox/templates/exceptions/import_error.html:21 +#: templates/exceptions/import_error.html:21 msgid "" "If this installation has recently been upgraded, check that the WSGI service " "(e.g. gunicorn or uWSGI) has been restarted. This ensures that the new code " "is running." msgstr "" -#: netbox/templates/exceptions/permission_error.html:6 +#: templates/exceptions/permission_error.html:6 msgid "" "A file permission error was detected while processing this request. Common " "causes include the following:" msgstr "" -#: netbox/templates/exceptions/permission_error.html:10 +#: templates/exceptions/permission_error.html:10 msgid "Insufficient write permission to the media root" msgstr "" -#: netbox/templates/exceptions/permission_error.html:11 +#: templates/exceptions/permission_error.html:11 #, python-format msgid "" "The configured media root is %(media_root)s. Ensure that the " @@ -12772,372 +12112,367 @@ msgid "" "path." msgstr "" -#: netbox/templates/exceptions/programming_error.html:6 +#: templates/exceptions/programming_error.html:6 msgid "" "A database programming error was detected while processing this request. " "Common causes include the following:" msgstr "" -#: netbox/templates/exceptions/programming_error.html:10 +#: templates/exceptions/programming_error.html:10 msgid "Database migrations missing" msgstr "" -#: netbox/templates/exceptions/programming_error.html:11 +#: templates/exceptions/programming_error.html:11 msgid "" "When upgrading to a new NetBox release, the upgrade script must be run to " "apply any new database migrations. You can run migrations manually by " "executing python3 manage.py migrate from the command line." msgstr "" -#: netbox/templates/exceptions/programming_error.html:18 +#: templates/exceptions/programming_error.html:18 msgid "Unsupported PostgreSQL version" msgstr "" -#: netbox/templates/exceptions/programming_error.html:19 +#: templates/exceptions/programming_error.html:19 msgid "" "Ensure that PostgreSQL version 12 or later is in use. You can check this by " "connecting to the database using NetBox's credentials and issuing a query " "for SELECT VERSION()." msgstr "" -#: netbox/templates/extras/configcontext.html:45 -#: netbox/templates/extras/configtemplate.html:37 -#: netbox/templates/extras/exporttemplate.html:51 +#: templates/extras/configcontext.html:45 +#: templates/extras/configtemplate.html:37 +#: templates/extras/exporttemplate.html:51 msgid "The data file associated with this object has been deleted" msgstr "" -#: netbox/templates/extras/configcontext.html:54 -#: netbox/templates/extras/configtemplate.html:46 -#: netbox/templates/extras/exporttemplate.html:60 +#: templates/extras/configcontext.html:54 +#: templates/extras/configtemplate.html:46 +#: templates/extras/exporttemplate.html:60 msgid "Data Synced" msgstr "" -#: netbox/templates/extras/configcontext_list.html:7 -#: netbox/templates/extras/configtemplate_list.html:7 -#: netbox/templates/extras/exporttemplate_list.html:7 +#: templates/extras/configcontext_list.html:7 +#: templates/extras/configtemplate_list.html:7 +#: templates/extras/exporttemplate_list.html:7 msgid "Sync Data" msgstr "" -#: netbox/templates/extras/configtemplate.html:56 +#: templates/extras/configtemplate.html:56 msgid "Environment Parameters" msgstr "" -#: netbox/templates/extras/configtemplate.html:67 -#: netbox/templates/extras/exporttemplate.html:79 +#: templates/extras/configtemplate.html:67 +#: templates/extras/exporttemplate.html:79 msgid "Template" msgstr "" -#: netbox/templates/extras/customfield.html:30 -#: netbox/templates/extras/customlink.html:21 +#: templates/extras/customfield.html:30 templates/extras/customlink.html:21 msgid "Group Name" msgstr "" -#: netbox/templates/extras/customfield.html:42 +#: templates/extras/customfield.html:42 msgid "Must be Unique" msgstr "" -#: netbox/templates/extras/customfield.html:46 +#: templates/extras/customfield.html:46 msgid "Cloneable" msgstr "" -#: netbox/templates/extras/customfield.html:56 +#: templates/extras/customfield.html:56 msgid "Default Value" msgstr "" -#: netbox/templates/extras/customfield.html:73 +#: templates/extras/customfield.html:73 msgid "Search Weight" msgstr "" -#: netbox/templates/extras/customfield.html:83 +#: templates/extras/customfield.html:83 msgid "Filter Logic" msgstr "" -#: netbox/templates/extras/customfield.html:87 +#: templates/extras/customfield.html:87 msgid "Display Weight" msgstr "" -#: netbox/templates/extras/customfield.html:91 +#: templates/extras/customfield.html:91 msgid "UI Visible" msgstr "" -#: netbox/templates/extras/customfield.html:95 +#: templates/extras/customfield.html:95 msgid "UI Editable" msgstr "" -#: netbox/templates/extras/customfield.html:115 +#: templates/extras/customfield.html:115 msgid "Validation Rules" msgstr "" -#: netbox/templates/extras/customfield.html:126 +#: templates/extras/customfield.html:126 msgid "Regular Expression" msgstr "" -#: netbox/templates/extras/customlink.html:29 +#: templates/extras/customlink.html:29 msgid "Button Class" msgstr "" -#: netbox/templates/extras/customlink.html:39 -#: netbox/templates/extras/exporttemplate.html:66 -#: netbox/templates/extras/savedfilter.html:39 +#: templates/extras/customlink.html:39 templates/extras/exporttemplate.html:66 +#: templates/extras/savedfilter.html:39 msgid "Assigned Models" msgstr "" -#: netbox/templates/extras/customlink.html:52 +#: templates/extras/customlink.html:52 msgid "Link Text" msgstr "" -#: netbox/templates/extras/customlink.html:58 +#: templates/extras/customlink.html:58 msgid "Link URL" msgstr "" -#: netbox/templates/extras/dashboard/reset.html:4 netbox/templates/home.html:66 +#: templates/extras/dashboard/reset.html:4 templates/home.html:66 msgid "Reset Dashboard" msgstr "" -#: netbox/templates/extras/dashboard/reset.html:8 +#: templates/extras/dashboard/reset.html:8 msgid "" "This will remove all configured widgets and restore the " "default dashboard configuration." msgstr "" -#: netbox/templates/extras/dashboard/reset.html:13 +#: templates/extras/dashboard/reset.html:13 msgid "" "This change affects only your dashboard, and will not impact other " "users." msgstr "" -#: netbox/templates/extras/dashboard/widget.html:21 +#: templates/extras/dashboard/widget.html:21 msgid "widget configuration" msgstr "" -#: netbox/templates/extras/dashboard/widget.html:36 +#: templates/extras/dashboard/widget.html:36 msgid "Close widget" msgstr "" -#: netbox/templates/extras/dashboard/widget_add.html:7 +#: templates/extras/dashboard/widget_add.html:7 msgid "Add a Widget" msgstr "" -#: netbox/templates/extras/dashboard/widgets/bookmarks.html:14 +#: templates/extras/dashboard/widgets/bookmarks.html:14 msgid "No bookmarks have been added yet." msgstr "" -#: netbox/templates/extras/dashboard/widgets/objectcounts.html:10 +#: templates/extras/dashboard/widgets/objectcounts.html:10 msgid "No permission" msgstr "" -#: netbox/templates/extras/dashboard/widgets/objectlist.html:6 +#: templates/extras/dashboard/widgets/objectlist.html:6 msgid "No permission to view this content" msgstr "" -#: netbox/templates/extras/dashboard/widgets/objectlist.html:10 +#: templates/extras/dashboard/widgets/objectlist.html:10 msgid "Unable to load content. Invalid view name" msgstr "" -#: netbox/templates/extras/dashboard/widgets/rssfeed.html:12 +#: templates/extras/dashboard/widgets/rssfeed.html:12 msgid "No content found" msgstr "" -#: netbox/templates/extras/dashboard/widgets/rssfeed.html:18 +#: templates/extras/dashboard/widgets/rssfeed.html:18 msgid "There was a problem fetching the RSS feed" msgstr "" -#: netbox/templates/extras/dashboard/widgets/rssfeed.html:21 +#: templates/extras/dashboard/widgets/rssfeed.html:21 msgid "HTTP" msgstr "" -#: netbox/templates/extras/eventrule.html:61 +#: templates/extras/eventrule.html:61 msgid "Conditions" msgstr "" -#: netbox/templates/extras/exporttemplate.html:23 +#: templates/extras/exporttemplate.html:23 msgid "MIME Type" msgstr "" -#: netbox/templates/extras/exporttemplate.html:27 +#: templates/extras/exporttemplate.html:27 msgid "File Extension" msgstr "" -#: netbox/templates/extras/htmx/script_result.html:10 +#: templates/extras/htmx/script_result.html:10 msgid "Scheduled for" msgstr "" -#: netbox/templates/extras/htmx/script_result.html:15 +#: templates/extras/htmx/script_result.html:15 msgid "Duration" msgstr "" -#: netbox/templates/extras/htmx/script_result.html:23 +#: templates/extras/htmx/script_result.html:23 msgid "Test Summary" msgstr "" -#: netbox/templates/extras/htmx/script_result.html:43 +#: templates/extras/htmx/script_result.html:43 msgid "Log" msgstr "" -#: netbox/templates/extras/htmx/script_result.html:56 +#: templates/extras/htmx/script_result.html:56 msgid "Output" msgstr "" -#: netbox/templates/extras/inc/result_pending.html:4 +#: templates/extras/inc/result_pending.html:4 msgid "Loading" msgstr "" -#: netbox/templates/extras/inc/result_pending.html:6 +#: templates/extras/inc/result_pending.html:6 msgid "Results pending" msgstr "" -#: netbox/templates/extras/journalentry.html:15 +#: templates/extras/journalentry.html:15 msgid "Journal Entry" msgstr "" -#: netbox/templates/extras/notificationgroup.html:11 +#: templates/extras/notificationgroup.html:11 msgid "Notification Group" msgstr "" -#: netbox/templates/extras/notificationgroup.html:36 -#: netbox/templates/extras/notificationgroup.html:46 -#: netbox/utilities/templates/widgets/clearable_file_input.html:12 +#: templates/extras/notificationgroup.html:36 +#: templates/extras/notificationgroup.html:46 +#: utilities/templates/widgets/clearable_file_input.html:12 msgid "None assigned" msgstr "" -#: netbox/templates/extras/object_configcontext.html:19 +#: templates/extras/object_configcontext.html:19 msgid "The local config context overwrites all source contexts" msgstr "" -#: netbox/templates/extras/object_configcontext.html:25 +#: templates/extras/object_configcontext.html:25 msgid "Source Contexts" msgstr "" -#: netbox/templates/extras/object_journal.html:17 +#: templates/extras/object_journal.html:17 msgid "New Journal Entry" msgstr "" -#: netbox/templates/extras/report/base.html:30 +#: templates/extras/report/base.html:30 msgid "Report" msgstr "" -#: netbox/templates/extras/script.html:14 +#: templates/extras/script.html:14 msgid "You do not have permission to run scripts" msgstr "" -#: netbox/templates/extras/script.html:41 -#: netbox/templates/extras/script.html:45 -#: netbox/templates/extras/script_list.html:86 +#: templates/extras/script.html:41 templates/extras/script.html:45 +#: templates/extras/script_list.html:86 msgid "Run Script" msgstr "" -#: netbox/templates/extras/script.html:51 -#: netbox/templates/extras/script/source.html:10 +#: templates/extras/script.html:51 templates/extras/script/source.html:10 msgid "Error loading script" msgstr "" -#: netbox/templates/extras/script/jobs.html:16 +#: templates/extras/script/jobs.html:16 msgid "Script no longer exists in the source file." msgstr "" -#: netbox/templates/extras/script_list.html:46 +#: templates/extras/script_list.html:46 msgid "Last Run" msgstr "" -#: netbox/templates/extras/script_list.html:61 +#: templates/extras/script_list.html:61 msgid "Script is no longer present in the source file" msgstr "" -#: netbox/templates/extras/script_list.html:74 +#: templates/extras/script_list.html:74 msgid "Never" msgstr "" -#: netbox/templates/extras/script_list.html:84 +#: templates/extras/script_list.html:84 msgid "Run Again" msgstr "" -#: netbox/templates/extras/script_list.html:138 +#: templates/extras/script_list.html:138 msgid "No Scripts Found" msgstr "" -#: netbox/templates/extras/script_list.html:141 +#: templates/extras/script_list.html:141 #, python-format msgid "" "Get started by creating a script from " "an uploaded file or data source." msgstr "" -#: netbox/templates/extras/script_result.html:35 -#: netbox/templates/generic/object_list.html:50 netbox/templates/search.html:13 +#: templates/extras/script_result.html:35 templates/generic/object_list.html:50 +#: templates/search.html:13 msgid "Results" msgstr "" -#: netbox/templates/extras/script_result.html:46 +#: templates/extras/script_result.html:46 msgid "Log threshold" msgstr "" -#: netbox/templates/extras/script_result.html:56 +#: templates/extras/script_result.html:56 msgid "All" msgstr "" -#: netbox/templates/extras/tag.html:32 +#: templates/extras/tag.html:32 msgid "Tagged Items" msgstr "" -#: netbox/templates/extras/tag.html:43 +#: templates/extras/tag.html:43 msgid "Allowed Object Types" msgstr "" -#: netbox/templates/extras/tag.html:51 +#: templates/extras/tag.html:51 msgid "Any" msgstr "" -#: netbox/templates/extras/tag.html:57 +#: templates/extras/tag.html:57 msgid "Tagged Item Types" msgstr "" -#: netbox/templates/extras/tag.html:81 +#: templates/extras/tag.html:81 msgid "Tagged Objects" msgstr "" -#: netbox/templates/extras/webhook.html:26 +#: templates/extras/webhook.html:26 msgid "HTTP Method" msgstr "" -#: netbox/templates/extras/webhook.html:34 +#: templates/extras/webhook.html:34 msgid "HTTP Content Type" msgstr "" -#: netbox/templates/extras/webhook.html:47 +#: templates/extras/webhook.html:47 msgid "SSL Verification" msgstr "" -#: netbox/templates/extras/webhook.html:60 +#: templates/extras/webhook.html:60 msgid "Additional Headers" msgstr "" -#: netbox/templates/extras/webhook.html:70 +#: templates/extras/webhook.html:70 msgid "Body Template" msgstr "" -#: netbox/templates/generic/bulk_add_component.html:29 +#: templates/generic/bulk_add_component.html:29 msgid "Bulk Creation" msgstr "" -#: netbox/templates/generic/bulk_add_component.html:34 -#: netbox/templates/generic/bulk_delete.html:32 -#: netbox/templates/generic/bulk_edit.html:33 +#: templates/generic/bulk_add_component.html:34 +#: templates/generic/bulk_delete.html:32 templates/generic/bulk_edit.html:33 msgid "Selected Objects" msgstr "" -#: netbox/templates/generic/bulk_add_component.html:58 +#: templates/generic/bulk_add_component.html:58 msgid "to Add" msgstr "" -#: netbox/templates/generic/bulk_delete.html:27 +#: templates/generic/bulk_delete.html:27 msgid "Bulk Delete" msgstr "" -#: netbox/templates/generic/bulk_delete.html:49 +#: templates/generic/bulk_delete.html:49 msgid "Confirm Bulk Deletion" msgstr "" -#: netbox/templates/generic/bulk_delete.html:50 +#: templates/generic/bulk_delete.html:50 #, python-format msgid "" "The following operation will delete %(count)s " @@ -13145,82 +12480,79 @@ msgid "" "this action." msgstr "" -#: netbox/templates/generic/bulk_edit.html:21 -#: netbox/templates/generic/object_edit.html:22 +#: templates/generic/bulk_edit.html:21 templates/generic/object_edit.html:22 msgid "Editing" msgstr "" -#: netbox/templates/generic/bulk_edit.html:28 +#: templates/generic/bulk_edit.html:28 msgid "Bulk Edit" msgstr "" -#: netbox/templates/generic/bulk_edit.html:107 -#: netbox/templates/generic/bulk_rename.html:66 +#: templates/generic/bulk_edit.html:107 templates/generic/bulk_rename.html:66 msgid "Apply" msgstr "" -#: netbox/templates/generic/bulk_import.html:19 +#: templates/generic/bulk_import.html:19 msgid "Bulk Import" msgstr "" -#: netbox/templates/generic/bulk_import.html:25 +#: templates/generic/bulk_import.html:25 msgid "Direct Import" msgstr "" -#: netbox/templates/generic/bulk_import.html:30 +#: templates/generic/bulk_import.html:30 msgid "Upload File" msgstr "" -#: netbox/templates/generic/bulk_import.html:58 -#: netbox/templates/generic/bulk_import.html:80 -#: netbox/templates/generic/bulk_import.html:102 +#: templates/generic/bulk_import.html:58 templates/generic/bulk_import.html:80 +#: templates/generic/bulk_import.html:102 msgid "Submit" msgstr "" -#: netbox/templates/generic/bulk_import.html:113 +#: templates/generic/bulk_import.html:113 msgid "Field Options" msgstr "" -#: netbox/templates/generic/bulk_import.html:119 +#: templates/generic/bulk_import.html:119 msgid "Accessor" msgstr "" -#: netbox/templates/generic/bulk_import.html:148 +#: templates/generic/bulk_import.html:148 msgid "choices" msgstr "" -#: netbox/templates/generic/bulk_import.html:161 +#: templates/generic/bulk_import.html:161 msgid "Import Value" msgstr "" -#: netbox/templates/generic/bulk_import.html:181 +#: templates/generic/bulk_import.html:181 msgid "Format: YYYY-MM-DD" msgstr "" -#: netbox/templates/generic/bulk_import.html:183 +#: templates/generic/bulk_import.html:183 msgid "Specify true or false" msgstr "" -#: netbox/templates/generic/bulk_import.html:195 +#: templates/generic/bulk_import.html:195 msgid "Required fields must be specified for all objects." msgstr "" -#: netbox/templates/generic/bulk_import.html:201 +#: templates/generic/bulk_import.html:201 #, python-format msgid "" "Related objects may be referenced by any unique attribute. For example, " "%(example)s would identify a VRF by its route distinguisher." msgstr "" -#: netbox/templates/generic/bulk_remove.html:28 +#: templates/generic/bulk_remove.html:28 msgid "Bulk Remove" msgstr "" -#: netbox/templates/generic/bulk_remove.html:42 +#: templates/generic/bulk_remove.html:42 msgid "Confirm Bulk Removal" msgstr "" -#: netbox/templates/generic/bulk_remove.html:43 +#: templates/generic/bulk_remove.html:43 #, python-format msgid "" "The following operation will remove %(count)s %(obj_type_plural)s from " @@ -13228,442 +12560,440 @@ msgid "" "removed and confirm below." msgstr "" -#: netbox/templates/generic/bulk_remove.html:64 +#: templates/generic/bulk_remove.html:64 #, python-format msgid "Remove these %(count)s %(obj_type_plural)s" msgstr "" -#: netbox/templates/generic/bulk_rename.html:20 +#: templates/generic/bulk_rename.html:20 msgid "Renaming" msgstr "" -#: netbox/templates/generic/bulk_rename.html:27 +#: templates/generic/bulk_rename.html:27 msgid "Bulk Rename" msgstr "" -#: netbox/templates/generic/bulk_rename.html:39 +#: templates/generic/bulk_rename.html:39 msgid "Current Name" msgstr "" -#: netbox/templates/generic/bulk_rename.html:40 +#: templates/generic/bulk_rename.html:40 msgid "New Name" msgstr "" -#: netbox/templates/generic/bulk_rename.html:64 -#: netbox/utilities/templates/widgets/markdown_input.html:11 +#: templates/generic/bulk_rename.html:64 +#: utilities/templates/widgets/markdown_input.html:11 msgid "Preview" msgstr "" -#: netbox/templates/generic/confirmation_form.html:16 +#: templates/generic/confirmation_form.html:16 msgid "Are you sure" msgstr "" -#: netbox/templates/generic/confirmation_form.html:20 +#: templates/generic/confirmation_form.html:20 msgid "Confirm" msgstr "" -#: netbox/templates/generic/object_children.html:47 -#: netbox/utilities/templates/buttons/bulk_edit.html:4 +#: templates/generic/object_children.html:47 +#: utilities/templates/buttons/bulk_edit.html:4 msgid "Edit Selected" msgstr "" -#: netbox/templates/generic/object_children.html:61 -#: netbox/utilities/templates/buttons/bulk_delete.html:4 +#: templates/generic/object_children.html:61 +#: utilities/templates/buttons/bulk_delete.html:4 msgid "Delete Selected" msgstr "" -#: netbox/templates/generic/object_edit.html:24 +#: templates/generic/object_edit.html:24 #, python-format msgid "Add a new %(object_type)s" msgstr "" -#: netbox/templates/generic/object_edit.html:35 +#: templates/generic/object_edit.html:35 msgid "View model documentation" msgstr "" -#: netbox/templates/generic/object_edit.html:36 +#: templates/generic/object_edit.html:36 msgid "Help" msgstr "" -#: netbox/templates/generic/object_edit.html:83 +#: templates/generic/object_edit.html:83 msgid "Create & Add Another" msgstr "" -#: netbox/templates/generic/object_list.html:57 +#: templates/generic/object_list.html:57 msgid "Filters" msgstr "" -#: netbox/templates/generic/object_list.html:88 +#: templates/generic/object_list.html:88 #, python-format msgid "" "Select all %(count)s " "%(object_type_plural)s matching query" msgstr "" -#: netbox/templates/home.html:15 +#: templates/home.html:15 msgid "New Release Available" msgstr "" -#: netbox/templates/home.html:16 +#: templates/home.html:16 msgid "is available" msgstr "" -#: netbox/templates/home.html:18 +#: templates/home.html:18 msgctxt "Document title" msgid "Upgrade Instructions" msgstr "" -#: netbox/templates/home.html:40 +#: templates/home.html:40 msgid "Unlock Dashboard" msgstr "" -#: netbox/templates/home.html:49 +#: templates/home.html:49 msgid "Lock Dashboard" msgstr "" -#: netbox/templates/home.html:60 +#: templates/home.html:60 msgid "Add Widget" msgstr "" -#: netbox/templates/home.html:63 +#: templates/home.html:63 msgid "Save Layout" msgstr "" -#: netbox/templates/htmx/delete_form.html:7 +#: templates/htmx/delete_form.html:7 msgid "Confirm Deletion" msgstr "" -#: netbox/templates/htmx/delete_form.html:11 +#: templates/htmx/delete_form.html:11 #, python-format msgid "" "Are you sure you want to delete " "%(object_type)s %(object)s?" msgstr "" -#: netbox/templates/htmx/delete_form.html:17 +#: templates/htmx/delete_form.html:17 msgid "The following objects will be deleted as a result of this action." msgstr "" -#: netbox/templates/htmx/notifications.html:15 +#: templates/htmx/notifications.html:15 msgid "ago" msgstr "" -#: netbox/templates/htmx/notifications.html:26 +#: templates/htmx/notifications.html:26 msgid "No unread notifications" msgstr "" -#: netbox/templates/htmx/notifications.html:31 +#: templates/htmx/notifications.html:31 msgid "All notifications" msgstr "" -#: netbox/templates/htmx/object_selector.html:5 +#: templates/htmx/object_selector.html:5 msgid "Select" msgstr "" -#: netbox/templates/inc/filter_list.html:43 -#: netbox/utilities/templates/helpers/table_config_form.html:39 +#: templates/inc/filter_list.html:43 +#: utilities/templates/helpers/table_config_form.html:39 msgid "Reset" msgstr "" -#: netbox/templates/inc/light_toggle.html:4 +#: templates/inc/light_toggle.html:4 msgid "Enable dark mode" msgstr "" -#: netbox/templates/inc/light_toggle.html:7 +#: templates/inc/light_toggle.html:7 msgid "Enable light mode" msgstr "" -#: netbox/templates/inc/missing_prerequisites.html:8 +#: templates/inc/missing_prerequisites.html:8 #, python-format msgid "" "Before you can add a %(model)s you must first create a " "%(prerequisite_model)s." msgstr "" -#: netbox/templates/inc/paginator.html:15 +#: templates/inc/paginator.html:15 msgid "Page selection" msgstr "" -#: netbox/templates/inc/paginator.html:75 +#: templates/inc/paginator.html:75 #, python-format msgid "Showing %(start)s-%(end)s of %(total)s" msgstr "" -#: netbox/templates/inc/paginator.html:82 +#: templates/inc/paginator.html:82 msgid "Pagination options" msgstr "" -#: netbox/templates/inc/paginator.html:86 +#: templates/inc/paginator.html:86 msgid "Per Page" msgstr "" -#: netbox/templates/inc/panels/image_attachments.html:10 +#: templates/inc/panels/image_attachments.html:10 msgid "Attach an image" msgstr "" -#: netbox/templates/inc/panels/related_objects.html:5 +#: templates/inc/panels/related_objects.html:5 msgid "Related Objects" msgstr "" -#: netbox/templates/inc/panels/tags.html:11 +#: templates/inc/panels/tags.html:11 msgid "No tags assigned" msgstr "" -#: netbox/templates/inc/sync_warning.html:10 +#: templates/inc/sync_warning.html:10 msgid "Data is out of sync with upstream file" msgstr "" -#: netbox/templates/inc/table_controls_htmx.html:7 +#: templates/inc/table_controls_htmx.html:7 msgid "Quick search" msgstr "" -#: netbox/templates/inc/table_controls_htmx.html:20 +#: templates/inc/table_controls_htmx.html:20 msgid "Saved filter" msgstr "" -#: netbox/templates/inc/table_htmx.html:18 +#: templates/inc/table_htmx.html:18 msgid "Clear ordering" msgstr "" -#: netbox/templates/inc/user_menu.html:6 +#: templates/inc/user_menu.html:6 msgid "Help center" msgstr "" -#: netbox/templates/inc/user_menu.html:41 +#: templates/inc/user_menu.html:41 msgid "Django Admin" msgstr "" -#: netbox/templates/inc/user_menu.html:61 +#: templates/inc/user_menu.html:61 msgid "Log Out" msgstr "" -#: netbox/templates/inc/user_menu.html:68 netbox/templates/login.html:38 +#: templates/inc/user_menu.html:68 templates/login.html:38 msgid "Log In" msgstr "" -#: netbox/templates/ipam/aggregate.html:14 -#: netbox/templates/ipam/ipaddress.html:14 -#: netbox/templates/ipam/iprange.html:13 netbox/templates/ipam/prefix.html:15 +#: templates/ipam/aggregate.html:14 templates/ipam/ipaddress.html:14 +#: templates/ipam/iprange.html:13 templates/ipam/prefix.html:15 msgid "Family" msgstr "" -#: netbox/templates/ipam/aggregate.html:39 +#: templates/ipam/aggregate.html:39 msgid "Date Added" msgstr "" -#: netbox/templates/ipam/aggregate/prefixes.html:8 -#: netbox/templates/ipam/prefix/prefixes.html:8 -#: netbox/templates/ipam/role.html:10 +#: templates/ipam/aggregate/prefixes.html:8 +#: templates/ipam/prefix/prefixes.html:8 templates/ipam/role.html:10 msgid "Add Prefix" msgstr "" -#: netbox/templates/ipam/asn.html:23 +#: templates/ipam/asn.html:23 msgid "AS Number" msgstr "" -#: netbox/templates/ipam/fhrpgroup.html:52 +#: templates/ipam/fhrpgroup.html:52 msgid "Authentication Type" msgstr "" -#: netbox/templates/ipam/fhrpgroup.html:56 +#: templates/ipam/fhrpgroup.html:56 msgid "Authentication Key" msgstr "" -#: netbox/templates/ipam/fhrpgroup.html:69 +#: templates/ipam/fhrpgroup.html:69 msgid "Virtual IP Addresses" msgstr "" -#: netbox/templates/ipam/inc/ipaddress_edit_header.html:13 +#: templates/ipam/inc/ipaddress_edit_header.html:13 msgid "Assign IP" msgstr "" -#: netbox/templates/ipam/inc/ipaddress_edit_header.html:19 +#: templates/ipam/inc/ipaddress_edit_header.html:19 msgid "Bulk Create" msgstr "" -#: netbox/templates/ipam/inc/panels/fhrp_groups.html:10 +#: templates/ipam/inc/panels/fhrp_groups.html:10 msgid "Create Group" msgstr "" -#: netbox/templates/ipam/inc/panels/fhrp_groups.html:25 +#: templates/ipam/inc/panels/fhrp_groups.html:25 msgid "Virtual IPs" msgstr "" -#: netbox/templates/ipam/inc/toggle_available.html:7 +#: templates/ipam/inc/toggle_available.html:7 msgid "Show Assigned" msgstr "" -#: netbox/templates/ipam/inc/toggle_available.html:10 +#: templates/ipam/inc/toggle_available.html:10 msgid "Show Available" msgstr "" -#: netbox/templates/ipam/inc/toggle_available.html:13 +#: templates/ipam/inc/toggle_available.html:13 msgid "Show All" msgstr "" -#: netbox/templates/ipam/ipaddress.html:23 -#: netbox/templates/ipam/iprange.html:45 netbox/templates/ipam/prefix.html:24 +#: templates/ipam/ipaddress.html:23 templates/ipam/iprange.html:45 +#: templates/ipam/prefix.html:24 msgid "Global" msgstr "" -#: netbox/templates/ipam/ipaddress.html:85 +#: templates/ipam/ipaddress.html:85 msgid "NAT (outside)" msgstr "" -#: netbox/templates/ipam/ipaddress_assign.html:8 +#: templates/ipam/ipaddress_assign.html:8 msgid "Assign an IP Address" msgstr "" -#: netbox/templates/ipam/ipaddress_assign.html:22 +#: templates/ipam/ipaddress_assign.html:22 msgid "Select IP Address" msgstr "" -#: netbox/templates/ipam/ipaddress_assign.html:35 +#: templates/ipam/ipaddress_assign.html:35 msgid "Search Results" msgstr "" -#: netbox/templates/ipam/ipaddress_bulk_add.html:6 +#: templates/ipam/ipaddress_bulk_add.html:6 msgid "Bulk Add IP Addresses" msgstr "" -#: netbox/templates/ipam/iprange.html:17 +#: templates/ipam/iprange.html:17 msgid "Starting Address" msgstr "" -#: netbox/templates/ipam/iprange.html:21 +#: templates/ipam/iprange.html:21 msgid "Ending Address" msgstr "" -#: netbox/templates/ipam/iprange.html:33 netbox/templates/ipam/prefix.html:110 +#: templates/ipam/iprange.html:33 templates/ipam/prefix.html:110 msgid "Marked fully utilized" msgstr "" -#: netbox/templates/ipam/prefix.html:99 +#: templates/ipam/prefix.html:99 msgid "Addressing Details" msgstr "" -#: netbox/templates/ipam/prefix.html:118 +#: templates/ipam/prefix.html:118 msgid "Child IPs" msgstr "" -#: netbox/templates/ipam/prefix.html:126 +#: templates/ipam/prefix.html:126 msgid "Available IPs" msgstr "" -#: netbox/templates/ipam/prefix.html:138 +#: templates/ipam/prefix.html:138 msgid "First available IP" msgstr "" -#: netbox/templates/ipam/prefix.html:179 +#: templates/ipam/prefix.html:179 msgid "Prefix Details" msgstr "" -#: netbox/templates/ipam/prefix.html:185 +#: templates/ipam/prefix.html:185 msgid "Network Address" msgstr "" -#: netbox/templates/ipam/prefix.html:189 +#: templates/ipam/prefix.html:189 msgid "Network Mask" msgstr "" -#: netbox/templates/ipam/prefix.html:193 +#: templates/ipam/prefix.html:193 msgid "Wildcard Mask" msgstr "" -#: netbox/templates/ipam/prefix.html:197 +#: templates/ipam/prefix.html:197 msgid "Broadcast Address" msgstr "" -#: netbox/templates/ipam/prefix/ip_ranges.html:7 +#: templates/ipam/prefix/ip_ranges.html:7 msgid "Add IP Range" msgstr "" -#: netbox/templates/ipam/prefix_list.html:7 +#: templates/ipam/prefix_list.html:7 msgid "Hide Depth Indicators" msgstr "" -#: netbox/templates/ipam/prefix_list.html:11 +#: templates/ipam/prefix_list.html:11 msgid "Max Depth" msgstr "" -#: netbox/templates/ipam/prefix_list.html:28 +#: templates/ipam/prefix_list.html:28 msgid "Max Length" msgstr "" -#: netbox/templates/ipam/rir.html:10 +#: templates/ipam/rir.html:10 msgid "Add Aggregate" msgstr "" -#: netbox/templates/ipam/routetarget.html:38 +#: templates/ipam/routetarget.html:38 msgid "Importing VRFs" msgstr "" -#: netbox/templates/ipam/routetarget.html:44 +#: templates/ipam/routetarget.html:44 msgid "Exporting VRFs" msgstr "" -#: netbox/templates/ipam/routetarget.html:52 +#: templates/ipam/routetarget.html:52 msgid "Importing L2VPNs" msgstr "" -#: netbox/templates/ipam/routetarget.html:58 +#: templates/ipam/routetarget.html:58 msgid "Exporting L2VPNs" msgstr "" -#: netbox/templates/ipam/vlan.html:88 +#: templates/ipam/vlan.html:88 msgid "Add a Prefix" msgstr "" -#: netbox/templates/ipam/vlangroup.html:18 +#: templates/ipam/vlangroup.html:18 msgid "Add VLAN" msgstr "" -#: netbox/templates/ipam/vrf.html:16 +#: templates/ipam/vrf.html:16 msgid "Route Distinguisher" msgstr "" -#: netbox/templates/ipam/vrf.html:29 +#: templates/ipam/vrf.html:29 msgid "Unique IP Space" msgstr "" -#: netbox/templates/login.html:29 -#: netbox/utilities/templates/form_helpers/render_errors.html:7 +#: templates/login.html:29 +#: utilities/templates/form_helpers/render_errors.html:7 msgid "Errors" msgstr "" -#: netbox/templates/login.html:69 +#: templates/login.html:69 msgid "Sign In" msgstr "" -#: netbox/templates/login.html:77 +#: templates/login.html:77 msgctxt "Denotes an alternative option" msgid "Or" msgstr "" -#: netbox/templates/media_failure.html:7 +#: templates/media_failure.html:7 msgid "Static Media Failure - NetBox" msgstr "" -#: netbox/templates/media_failure.html:21 +#: templates/media_failure.html:21 msgid "Static Media Failure" msgstr "" -#: netbox/templates/media_failure.html:23 +#: templates/media_failure.html:23 msgid "The following static media file failed to load" msgstr "" -#: netbox/templates/media_failure.html:26 +#: templates/media_failure.html:26 msgid "Check the following" msgstr "" -#: netbox/templates/media_failure.html:29 +#: templates/media_failure.html:29 msgid "" "manage.py collectstatic was run during the most recent upgrade. " "This installs the most recent iteration of each static file into the static " "root path." msgstr "" -#: netbox/templates/media_failure.html:35 +#: templates/media_failure.html:35 #, python-format msgid "" "The HTTP service (e.g. nginx or Apache) is configured to serve files from " @@ -13671,1914 +13001,1879 @@ msgid "" "installation documentation for further guidance." msgstr "" -#: netbox/templates/media_failure.html:47 +#: templates/media_failure.html:47 #, python-format msgid "" "The file %(filename)s exists in the static root directory and " "is readable by the HTTP server." msgstr "" -#: netbox/templates/media_failure.html:55 +#: templates/media_failure.html:55 #, python-format msgid "" "Click here to attempt loading NetBox again." msgstr "" -#: netbox/templates/tenancy/contact.html:18 netbox/tenancy/filtersets.py:147 -#: netbox/tenancy/forms/bulk_edit.py:137 netbox/tenancy/forms/filtersets.py:102 -#: netbox/tenancy/forms/forms.py:56 netbox/tenancy/forms/model_forms.py:106 -#: netbox/tenancy/forms/model_forms.py:130 netbox/tenancy/tables/contacts.py:98 +#: templates/tenancy/contact.html:18 tenancy/filtersets.py:147 +#: tenancy/forms/bulk_edit.py:137 tenancy/forms/filtersets.py:102 +#: tenancy/forms/forms.py:56 tenancy/forms/model_forms.py:106 +#: tenancy/forms/model_forms.py:130 tenancy/tables/contacts.py:98 msgid "Contact" msgstr "" -#: netbox/templates/tenancy/contact.html:29 -#: netbox/tenancy/forms/bulk_edit.py:99 +#: templates/tenancy/contact.html:29 tenancy/forms/bulk_edit.py:99 msgid "Title" msgstr "" -#: netbox/templates/tenancy/contact.html:33 -#: netbox/tenancy/forms/bulk_edit.py:104 netbox/tenancy/tables/contacts.py:64 +#: templates/tenancy/contact.html:33 tenancy/forms/bulk_edit.py:104 +#: tenancy/tables/contacts.py:64 msgid "Phone" msgstr "" -#: netbox/templates/tenancy/contactgroup.html:18 -#: netbox/tenancy/forms/forms.py:66 netbox/tenancy/forms/model_forms.py:75 +#: templates/tenancy/contactgroup.html:18 tenancy/forms/forms.py:66 +#: tenancy/forms/model_forms.py:75 msgid "Contact Group" msgstr "" -#: netbox/templates/tenancy/contactgroup.html:50 +#: templates/tenancy/contactgroup.html:50 msgid "Add Contact Group" msgstr "" -#: netbox/templates/tenancy/contactrole.html:15 -#: netbox/tenancy/filtersets.py:152 netbox/tenancy/forms/forms.py:61 -#: netbox/tenancy/forms/model_forms.py:87 +#: templates/tenancy/contactrole.html:15 tenancy/filtersets.py:152 +#: tenancy/forms/forms.py:61 tenancy/forms/model_forms.py:87 msgid "Contact Role" msgstr "" -#: netbox/templates/tenancy/object_contacts.html:9 +#: templates/tenancy/object_contacts.html:9 msgid "Add a contact" msgstr "" -#: netbox/templates/tenancy/tenantgroup.html:17 +#: templates/tenancy/tenantgroup.html:17 msgid "Add Tenant" msgstr "" -#: netbox/templates/tenancy/tenantgroup.html:26 -#: netbox/tenancy/forms/model_forms.py:32 netbox/tenancy/tables/columns.py:51 -#: netbox/tenancy/tables/columns.py:61 +#: templates/tenancy/tenantgroup.html:26 tenancy/forms/model_forms.py:32 +#: tenancy/tables/columns.py:51 tenancy/tables/columns.py:61 msgid "Tenant Group" msgstr "" -#: netbox/templates/tenancy/tenantgroup.html:59 +#: templates/tenancy/tenantgroup.html:59 msgid "Add Tenant Group" msgstr "" -#: netbox/templates/users/group.html:39 netbox/templates/users/user.html:63 +#: templates/users/group.html:39 templates/users/user.html:63 msgid "Assigned Permissions" msgstr "" -#: netbox/templates/users/objectpermission.html:6 -#: netbox/templates/users/objectpermission.html:14 -#: netbox/users/forms/filtersets.py:66 +#: templates/users/objectpermission.html:6 +#: templates/users/objectpermission.html:14 users/forms/filtersets.py:66 msgid "Permission" msgstr "" -#: netbox/templates/users/objectpermission.html:34 +#: templates/users/objectpermission.html:34 msgid "View" msgstr "" -#: netbox/templates/users/objectpermission.html:52 -#: netbox/users/forms/model_forms.py:315 +#: templates/users/objectpermission.html:52 users/forms/model_forms.py:315 msgid "Constraints" msgstr "" -#: netbox/templates/users/objectpermission.html:72 +#: templates/users/objectpermission.html:72 msgid "Assigned Users" msgstr "" -#: netbox/templates/virtualization/cluster.html:52 +#: templates/virtualization/cluster.html:52 msgid "Allocated Resources" msgstr "" -#: netbox/templates/virtualization/cluster.html:55 -#: netbox/templates/virtualization/virtualmachine.html:125 +#: templates/virtualization/cluster.html:55 +#: templates/virtualization/virtualmachine.html:125 msgid "Virtual CPUs" msgstr "" -#: netbox/templates/virtualization/cluster.html:59 -#: netbox/templates/virtualization/virtualmachine.html:129 +#: templates/virtualization/cluster.html:59 +#: templates/virtualization/virtualmachine.html:129 msgid "Memory" msgstr "" -#: netbox/templates/virtualization/cluster.html:69 -#: netbox/templates/virtualization/virtualmachine.html:140 +#: templates/virtualization/cluster.html:69 +#: templates/virtualization/virtualmachine.html:140 msgid "Disk Space" msgstr "" -#: netbox/templates/virtualization/cluster/base.html:18 +#: templates/virtualization/cluster/base.html:18 msgid "Add Virtual Machine" msgstr "" -#: netbox/templates/virtualization/cluster/base.html:24 +#: templates/virtualization/cluster/base.html:24 msgid "Assign Device" msgstr "" -#: netbox/templates/virtualization/cluster/devices.html:10 +#: templates/virtualization/cluster/devices.html:10 msgid "Remove Selected" msgstr "" -#: netbox/templates/virtualization/cluster_add_devices.html:9 +#: templates/virtualization/cluster_add_devices.html:9 #, python-format msgid "Add Device to Cluster %(cluster)s" msgstr "" -#: netbox/templates/virtualization/cluster_add_devices.html:23 +#: templates/virtualization/cluster_add_devices.html:23 msgid "Device Selection" msgstr "" -#: netbox/templates/virtualization/cluster_add_devices.html:31 +#: templates/virtualization/cluster_add_devices.html:31 msgid "Add Devices" msgstr "" -#: netbox/templates/virtualization/clustergroup.html:10 -#: netbox/templates/virtualization/clustertype.html:10 +#: templates/virtualization/clustergroup.html:10 +#: templates/virtualization/clustertype.html:10 msgid "Add Cluster" msgstr "" -#: netbox/templates/virtualization/clustergroup.html:19 -#: netbox/virtualization/forms/model_forms.py:50 +#: templates/virtualization/clustergroup.html:19 +#: virtualization/forms/model_forms.py:50 msgid "Cluster Group" msgstr "" -#: netbox/templates/virtualization/clustertype.html:19 -#: netbox/templates/virtualization/virtualmachine.html:110 -#: netbox/virtualization/forms/model_forms.py:36 +#: templates/virtualization/clustertype.html:19 +#: templates/virtualization/virtualmachine.html:110 +#: virtualization/forms/model_forms.py:36 msgid "Cluster Type" msgstr "" -#: netbox/templates/virtualization/virtualdisk.html:18 +#: templates/virtualization/virtualdisk.html:18 msgid "Virtual Disk" msgstr "" -#: netbox/templates/virtualization/virtualmachine.html:122 -#: netbox/virtualization/forms/bulk_edit.py:190 -#: netbox/virtualization/forms/model_forms.py:224 +#: templates/virtualization/virtualmachine.html:122 +#: virtualization/forms/bulk_edit.py:190 +#: virtualization/forms/model_forms.py:224 msgid "Resources" msgstr "" -#: netbox/templates/virtualization/virtualmachine.html:178 +#: templates/virtualization/virtualmachine.html:178 msgid "Add Virtual Disk" msgstr "" -#: netbox/templates/vpn/ikepolicy.html:10 -#: netbox/templates/vpn/ipsecprofile.html:33 netbox/vpn/tables/crypto.py:166 +#: templates/vpn/ikepolicy.html:10 templates/vpn/ipsecprofile.html:33 +#: vpn/tables/crypto.py:166 msgid "IKE Policy" msgstr "" -#: netbox/templates/vpn/ikepolicy.html:21 +#: templates/vpn/ikepolicy.html:21 msgid "IKE Version" msgstr "" -#: netbox/templates/vpn/ikepolicy.html:29 +#: templates/vpn/ikepolicy.html:29 msgid "Pre-Shared Key" msgstr "" -#: netbox/templates/vpn/ikepolicy.html:33 -#: netbox/templates/wireless/inc/authentication_attrs.html:20 +#: templates/vpn/ikepolicy.html:33 +#: templates/wireless/inc/authentication_attrs.html:20 msgid "Show Secret" msgstr "" -#: netbox/templates/vpn/ikepolicy.html:57 -#: netbox/templates/vpn/ipsecpolicy.html:45 -#: netbox/templates/vpn/ipsecprofile.html:52 -#: netbox/templates/vpn/ipsecprofile.html:77 -#: netbox/vpn/forms/model_forms.py:316 netbox/vpn/forms/model_forms.py:352 -#: netbox/vpn/tables/crypto.py:68 netbox/vpn/tables/crypto.py:134 +#: templates/vpn/ikepolicy.html:57 templates/vpn/ipsecpolicy.html:45 +#: templates/vpn/ipsecprofile.html:52 templates/vpn/ipsecprofile.html:77 +#: vpn/forms/model_forms.py:316 vpn/forms/model_forms.py:352 +#: vpn/tables/crypto.py:68 vpn/tables/crypto.py:134 msgid "Proposals" msgstr "" -#: netbox/templates/vpn/ikeproposal.html:10 +#: templates/vpn/ikeproposal.html:10 msgid "IKE Proposal" msgstr "" -#: netbox/templates/vpn/ikeproposal.html:21 netbox/vpn/forms/bulk_edit.py:97 -#: netbox/vpn/forms/bulk_import.py:145 netbox/vpn/forms/filtersets.py:101 +#: templates/vpn/ikeproposal.html:21 vpn/forms/bulk_edit.py:97 +#: vpn/forms/bulk_import.py:145 vpn/forms/filtersets.py:101 msgid "Authentication method" msgstr "" -#: netbox/templates/vpn/ikeproposal.html:25 -#: netbox/templates/vpn/ipsecproposal.html:21 netbox/vpn/forms/bulk_edit.py:102 -#: netbox/vpn/forms/bulk_edit.py:172 netbox/vpn/forms/bulk_import.py:149 -#: netbox/vpn/forms/bulk_import.py:195 netbox/vpn/forms/filtersets.py:106 -#: netbox/vpn/forms/filtersets.py:154 +#: templates/vpn/ikeproposal.html:25 templates/vpn/ipsecproposal.html:21 +#: vpn/forms/bulk_edit.py:102 vpn/forms/bulk_edit.py:172 +#: vpn/forms/bulk_import.py:149 vpn/forms/bulk_import.py:195 +#: vpn/forms/filtersets.py:106 vpn/forms/filtersets.py:154 msgid "Encryption algorithm" msgstr "" -#: netbox/templates/vpn/ikeproposal.html:29 -#: netbox/templates/vpn/ipsecproposal.html:25 netbox/vpn/forms/bulk_edit.py:107 -#: netbox/vpn/forms/bulk_edit.py:177 netbox/vpn/forms/bulk_import.py:153 -#: netbox/vpn/forms/bulk_import.py:200 netbox/vpn/forms/filtersets.py:111 -#: netbox/vpn/forms/filtersets.py:159 +#: templates/vpn/ikeproposal.html:29 templates/vpn/ipsecproposal.html:25 +#: vpn/forms/bulk_edit.py:107 vpn/forms/bulk_edit.py:177 +#: vpn/forms/bulk_import.py:153 vpn/forms/bulk_import.py:200 +#: vpn/forms/filtersets.py:111 vpn/forms/filtersets.py:159 msgid "Authentication algorithm" msgstr "" -#: netbox/templates/vpn/ikeproposal.html:33 +#: templates/vpn/ikeproposal.html:33 msgid "DH group" msgstr "" -#: netbox/templates/vpn/ikeproposal.html:37 -#: netbox/templates/vpn/ipsecproposal.html:29 netbox/vpn/forms/bulk_edit.py:182 -#: netbox/vpn/models/crypto.py:146 +#: templates/vpn/ikeproposal.html:37 templates/vpn/ipsecproposal.html:29 +#: vpn/forms/bulk_edit.py:182 vpn/models/crypto.py:146 msgid "SA lifetime (seconds)" msgstr "" -#: netbox/templates/vpn/ipsecpolicy.html:10 -#: netbox/templates/vpn/ipsecprofile.html:66 netbox/vpn/tables/crypto.py:170 +#: templates/vpn/ipsecpolicy.html:10 templates/vpn/ipsecprofile.html:66 +#: vpn/tables/crypto.py:170 msgid "IPSec Policy" msgstr "" -#: netbox/templates/vpn/ipsecpolicy.html:21 netbox/vpn/forms/bulk_edit.py:210 -#: netbox/vpn/models/crypto.py:193 +#: templates/vpn/ipsecpolicy.html:21 vpn/forms/bulk_edit.py:210 +#: vpn/models/crypto.py:193 msgid "PFS group" msgstr "" -#: netbox/templates/vpn/ipsecprofile.html:10 netbox/vpn/forms/model_forms.py:54 +#: templates/vpn/ipsecprofile.html:10 vpn/forms/model_forms.py:54 msgid "IPSec Profile" msgstr "" -#: netbox/templates/vpn/ipsecprofile.html:89 netbox/vpn/tables/crypto.py:137 +#: templates/vpn/ipsecprofile.html:89 vpn/tables/crypto.py:137 msgid "PFS Group" msgstr "" -#: netbox/templates/vpn/ipsecproposal.html:10 +#: templates/vpn/ipsecproposal.html:10 msgid "IPSec Proposal" msgstr "" -#: netbox/templates/vpn/ipsecproposal.html:33 netbox/vpn/forms/bulk_edit.py:186 -#: netbox/vpn/models/crypto.py:152 +#: templates/vpn/ipsecproposal.html:33 vpn/forms/bulk_edit.py:186 +#: vpn/models/crypto.py:152 msgid "SA lifetime (KB)" msgstr "" -#: netbox/templates/vpn/l2vpn.html:11 -#: netbox/templates/vpn/l2vpntermination.html:9 +#: templates/vpn/l2vpn.html:11 templates/vpn/l2vpntermination.html:9 msgid "L2VPN Attributes" msgstr "" -#: netbox/templates/vpn/l2vpn.html:60 netbox/templates/vpn/tunnel.html:76 +#: templates/vpn/l2vpn.html:60 templates/vpn/tunnel.html:76 msgid "Add a Termination" msgstr "" -#: netbox/templates/vpn/tunnel.html:9 +#: templates/vpn/tunnel.html:9 msgid "Add Termination" msgstr "" -#: netbox/templates/vpn/tunnel.html:37 netbox/vpn/forms/bulk_edit.py:49 -#: netbox/vpn/forms/bulk_import.py:48 netbox/vpn/forms/filtersets.py:57 +#: templates/vpn/tunnel.html:37 vpn/forms/bulk_edit.py:49 +#: vpn/forms/bulk_import.py:48 vpn/forms/filtersets.py:57 msgid "Encapsulation" msgstr "" -#: netbox/templates/vpn/tunnel.html:41 netbox/vpn/forms/bulk_edit.py:55 -#: netbox/vpn/forms/bulk_import.py:53 netbox/vpn/forms/filtersets.py:64 -#: netbox/vpn/models/crypto.py:250 netbox/vpn/tables/tunnels.py:51 +#: templates/vpn/tunnel.html:41 vpn/forms/bulk_edit.py:55 +#: vpn/forms/bulk_import.py:53 vpn/forms/filtersets.py:64 +#: vpn/models/crypto.py:250 vpn/tables/tunnels.py:51 msgid "IPSec profile" msgstr "" -#: netbox/templates/vpn/tunnel.html:45 netbox/vpn/forms/bulk_edit.py:69 -#: netbox/vpn/forms/filtersets.py:68 +#: templates/vpn/tunnel.html:45 vpn/forms/bulk_edit.py:69 +#: vpn/forms/filtersets.py:68 msgid "Tunnel ID" msgstr "" -#: netbox/templates/vpn/tunnelgroup.html:14 +#: templates/vpn/tunnelgroup.html:14 msgid "Add Tunnel" msgstr "" -#: netbox/templates/vpn/tunnelgroup.html:23 netbox/vpn/forms/model_forms.py:36 -#: netbox/vpn/forms/model_forms.py:49 +#: templates/vpn/tunnelgroup.html:23 vpn/forms/model_forms.py:36 +#: vpn/forms/model_forms.py:49 msgid "Tunnel Group" msgstr "" -#: netbox/templates/vpn/tunneltermination.html:10 +#: templates/vpn/tunneltermination.html:10 msgid "Tunnel Termination" msgstr "" -#: netbox/templates/vpn/tunneltermination.html:35 -#: netbox/vpn/forms/bulk_import.py:107 netbox/vpn/forms/model_forms.py:102 -#: netbox/vpn/forms/model_forms.py:138 netbox/vpn/forms/model_forms.py:247 -#: netbox/vpn/tables/tunnels.py:101 +#: templates/vpn/tunneltermination.html:35 vpn/forms/bulk_import.py:107 +#: vpn/forms/model_forms.py:102 vpn/forms/model_forms.py:138 +#: vpn/forms/model_forms.py:247 vpn/tables/tunnels.py:101 msgid "Outside IP" msgstr "" -#: netbox/templates/vpn/tunneltermination.html:51 +#: templates/vpn/tunneltermination.html:51 msgid "Peer Terminations" msgstr "" -#: netbox/templates/wireless/inc/authentication_attrs.html:12 +#: templates/wireless/inc/authentication_attrs.html:12 msgid "Cipher" msgstr "" -#: netbox/templates/wireless/inc/authentication_attrs.html:16 +#: templates/wireless/inc/authentication_attrs.html:16 msgid "PSK" msgstr "" -#: netbox/templates/wireless/inc/wirelesslink_interface.html:35 -#: netbox/templates/wireless/inc/wirelesslink_interface.html:45 +#: templates/wireless/inc/wirelesslink_interface.html:35 +#: templates/wireless/inc/wirelesslink_interface.html:45 msgctxt "Abbreviation for megahertz" msgid "MHz" msgstr "" -#: netbox/templates/wireless/wirelesslan.html:57 +#: templates/wireless/wirelesslan.html:57 msgid "Attached Interfaces" msgstr "" -#: netbox/templates/wireless/wirelesslangroup.html:17 +#: templates/wireless/wirelesslangroup.html:17 msgid "Add Wireless LAN" msgstr "" -#: netbox/templates/wireless/wirelesslangroup.html:26 -#: netbox/wireless/forms/model_forms.py:28 +#: templates/wireless/wirelesslangroup.html:26 wireless/forms/model_forms.py:28 msgid "Wireless LAN Group" msgstr "" -#: netbox/templates/wireless/wirelesslangroup.html:59 +#: templates/wireless/wirelesslangroup.html:59 msgid "Add Wireless LAN Group" msgstr "" -#: netbox/templates/wireless/wirelesslink.html:14 +#: templates/wireless/wirelesslink.html:14 msgid "Link Properties" msgstr "" -#: netbox/templates/wireless/wirelesslink.html:38 -#: netbox/wireless/forms/bulk_edit.py:129 -#: netbox/wireless/forms/filtersets.py:102 -#: netbox/wireless/forms/model_forms.py:165 +#: templates/wireless/wirelesslink.html:38 wireless/forms/bulk_edit.py:129 +#: wireless/forms/filtersets.py:102 wireless/forms/model_forms.py:165 msgid "Distance" msgstr "" -#: netbox/tenancy/filtersets.py:28 +#: tenancy/filtersets.py:28 msgid "Parent contact group (ID)" msgstr "" -#: netbox/tenancy/filtersets.py:34 +#: tenancy/filtersets.py:34 msgid "Parent contact group (slug)" msgstr "" -#: netbox/tenancy/filtersets.py:40 netbox/tenancy/filtersets.py:67 -#: netbox/tenancy/filtersets.py:110 +#: tenancy/filtersets.py:40 tenancy/filtersets.py:67 tenancy/filtersets.py:110 msgid "Contact group (ID)" msgstr "" -#: netbox/tenancy/filtersets.py:47 netbox/tenancy/filtersets.py:74 -#: netbox/tenancy/filtersets.py:117 +#: tenancy/filtersets.py:47 tenancy/filtersets.py:74 tenancy/filtersets.py:117 msgid "Contact group (slug)" msgstr "" -#: netbox/tenancy/filtersets.py:104 +#: tenancy/filtersets.py:104 msgid "Contact (ID)" msgstr "" -#: netbox/tenancy/filtersets.py:121 +#: tenancy/filtersets.py:121 msgid "Contact role (ID)" msgstr "" -#: netbox/tenancy/filtersets.py:127 +#: tenancy/filtersets.py:127 msgid "Contact role (slug)" msgstr "" -#: netbox/tenancy/filtersets.py:158 +#: tenancy/filtersets.py:158 msgid "Contact group" msgstr "" -#: netbox/tenancy/filtersets.py:169 +#: tenancy/filtersets.py:169 msgid "Parent tenant group (ID)" msgstr "" -#: netbox/tenancy/filtersets.py:175 +#: tenancy/filtersets.py:175 msgid "Parent tenant group (slug)" msgstr "" -#: netbox/tenancy/filtersets.py:181 netbox/tenancy/filtersets.py:201 +#: tenancy/filtersets.py:181 tenancy/filtersets.py:201 msgid "Tenant group (ID)" msgstr "" -#: netbox/tenancy/filtersets.py:234 +#: tenancy/filtersets.py:234 msgid "Tenant Group (ID)" msgstr "" -#: netbox/tenancy/filtersets.py:241 +#: tenancy/filtersets.py:241 msgid "Tenant Group (slug)" msgstr "" -#: netbox/tenancy/forms/bulk_edit.py:66 +#: tenancy/forms/bulk_edit.py:66 msgid "Desciption" msgstr "" -#: netbox/tenancy/forms/bulk_import.py:101 +#: tenancy/forms/bulk_import.py:101 msgid "Assigned contact" msgstr "" -#: netbox/tenancy/models/contacts.py:32 +#: tenancy/models/contacts.py:32 msgid "contact group" msgstr "" -#: netbox/tenancy/models/contacts.py:33 +#: tenancy/models/contacts.py:33 msgid "contact groups" msgstr "" -#: netbox/tenancy/models/contacts.py:48 +#: tenancy/models/contacts.py:48 msgid "contact role" msgstr "" -#: netbox/tenancy/models/contacts.py:49 +#: tenancy/models/contacts.py:49 msgid "contact roles" msgstr "" -#: netbox/tenancy/models/contacts.py:68 +#: tenancy/models/contacts.py:68 msgid "title" msgstr "" -#: netbox/tenancy/models/contacts.py:73 +#: tenancy/models/contacts.py:73 msgid "phone" msgstr "" -#: netbox/tenancy/models/contacts.py:78 +#: tenancy/models/contacts.py:78 msgid "email" msgstr "" -#: netbox/tenancy/models/contacts.py:87 +#: tenancy/models/contacts.py:87 msgid "link" msgstr "" -#: netbox/tenancy/models/contacts.py:103 +#: tenancy/models/contacts.py:103 msgid "contact" msgstr "" -#: netbox/tenancy/models/contacts.py:104 +#: tenancy/models/contacts.py:104 msgid "contacts" msgstr "" -#: netbox/tenancy/models/contacts.py:153 +#: tenancy/models/contacts.py:153 msgid "contact assignment" msgstr "" -#: netbox/tenancy/models/contacts.py:154 +#: tenancy/models/contacts.py:154 msgid "contact assignments" msgstr "" -#: netbox/tenancy/models/contacts.py:170 +#: tenancy/models/contacts.py:170 #, python-brace-format msgid "Contacts cannot be assigned to this object type ({type})." msgstr "" -#: netbox/tenancy/models/tenants.py:32 +#: tenancy/models/tenants.py:32 msgid "tenant group" msgstr "" -#: netbox/tenancy/models/tenants.py:33 +#: tenancy/models/tenants.py:33 msgid "tenant groups" msgstr "" -#: netbox/tenancy/models/tenants.py:70 +#: tenancy/models/tenants.py:70 msgid "Tenant name must be unique per group." msgstr "" -#: netbox/tenancy/models/tenants.py:80 +#: tenancy/models/tenants.py:80 msgid "Tenant slug must be unique per group." msgstr "" -#: netbox/tenancy/models/tenants.py:88 +#: tenancy/models/tenants.py:88 msgid "tenant" msgstr "" -#: netbox/tenancy/models/tenants.py:89 +#: tenancy/models/tenants.py:89 msgid "tenants" msgstr "" -#: netbox/tenancy/tables/contacts.py:112 +#: tenancy/tables/contacts.py:112 msgid "Contact Title" msgstr "" -#: netbox/tenancy/tables/contacts.py:116 +#: tenancy/tables/contacts.py:116 msgid "Contact Phone" msgstr "" -#: netbox/tenancy/tables/contacts.py:121 +#: tenancy/tables/contacts.py:121 msgid "Contact Email" msgstr "" -#: netbox/tenancy/tables/contacts.py:125 +#: tenancy/tables/contacts.py:125 msgid "Contact Address" msgstr "" -#: netbox/tenancy/tables/contacts.py:129 +#: tenancy/tables/contacts.py:129 msgid "Contact Link" msgstr "" -#: netbox/tenancy/tables/contacts.py:133 +#: tenancy/tables/contacts.py:133 msgid "Contact Description" msgstr "" -#: netbox/users/filtersets.py:33 netbox/users/filtersets.py:73 +#: users/filtersets.py:33 users/filtersets.py:73 msgid "Permission (ID)" msgstr "" -#: netbox/users/filtersets.py:38 netbox/users/filtersets.py:78 +#: users/filtersets.py:38 users/filtersets.py:78 msgid "Notification group (ID)" msgstr "" -#: netbox/users/forms/bulk_edit.py:26 +#: users/forms/bulk_edit.py:26 msgid "First name" msgstr "" -#: netbox/users/forms/bulk_edit.py:31 +#: users/forms/bulk_edit.py:31 msgid "Last name" msgstr "" -#: netbox/users/forms/bulk_edit.py:43 +#: users/forms/bulk_edit.py:43 msgid "Staff status" msgstr "" -#: netbox/users/forms/bulk_edit.py:48 +#: users/forms/bulk_edit.py:48 msgid "Superuser status" msgstr "" -#: netbox/users/forms/bulk_import.py:41 +#: users/forms/bulk_import.py:41 msgid "If no key is provided, one will be generated automatically." msgstr "" -#: netbox/users/forms/filtersets.py:51 netbox/users/tables.py:42 +#: users/forms/filtersets.py:51 users/tables.py:42 msgid "Is Staff" msgstr "" -#: netbox/users/forms/filtersets.py:58 netbox/users/tables.py:45 +#: users/forms/filtersets.py:58 users/tables.py:45 msgid "Is Superuser" msgstr "" -#: netbox/users/forms/filtersets.py:91 netbox/users/tables.py:86 +#: users/forms/filtersets.py:91 users/tables.py:86 msgid "Can View" msgstr "" -#: netbox/users/forms/filtersets.py:98 netbox/users/tables.py:89 +#: users/forms/filtersets.py:98 users/tables.py:89 msgid "Can Add" msgstr "" -#: netbox/users/forms/filtersets.py:105 netbox/users/tables.py:92 +#: users/forms/filtersets.py:105 users/tables.py:92 msgid "Can Change" msgstr "" -#: netbox/users/forms/filtersets.py:112 netbox/users/tables.py:95 +#: users/forms/filtersets.py:112 users/tables.py:95 msgid "Can Delete" msgstr "" -#: netbox/users/forms/model_forms.py:62 +#: users/forms/model_forms.py:62 msgid "User Interface" msgstr "" -#: netbox/users/forms/model_forms.py:114 +#: users/forms/model_forms.py:114 msgid "" "Keys must be at least 40 characters in length. Be sure to record " "your key prior to submitting this form, as it may no longer be " "accessible once the token has been created." msgstr "" -#: netbox/users/forms/model_forms.py:126 +#: users/forms/model_forms.py:126 msgid "" "Allowed IPv4/IPv6 networks from where the token can be used. Leave blank for " "no restrictions. Example: 10.1.1.0/24,192.168.10.16/32,2001:" "db8:1::/64" msgstr "" -#: netbox/users/forms/model_forms.py:175 +#: users/forms/model_forms.py:175 msgid "Confirm password" msgstr "" -#: netbox/users/forms/model_forms.py:178 +#: users/forms/model_forms.py:178 msgid "Enter the same password as before, for verification." msgstr "" -#: netbox/users/forms/model_forms.py:227 +#: users/forms/model_forms.py:227 msgid "Passwords do not match! Please check your input and try again." msgstr "" -#: netbox/users/forms/model_forms.py:294 +#: users/forms/model_forms.py:294 msgid "Additional actions" msgstr "" -#: netbox/users/forms/model_forms.py:297 +#: users/forms/model_forms.py:297 msgid "Actions granted in addition to those listed above" msgstr "" -#: netbox/users/forms/model_forms.py:313 +#: users/forms/model_forms.py:313 msgid "Objects" msgstr "" -#: netbox/users/forms/model_forms.py:325 +#: users/forms/model_forms.py:325 msgid "" "JSON expression of a queryset filter that will return only permitted " "objects. Leave null to match all objects of this type. A list of multiple " "objects will result in a logical OR operation." msgstr "" -#: netbox/users/forms/model_forms.py:364 +#: users/forms/model_forms.py:364 msgid "At least one action must be selected." msgstr "" -#: netbox/users/forms/model_forms.py:382 +#: users/forms/model_forms.py:382 #, python-brace-format msgid "Invalid filter for {model}: {error}" msgstr "" -#: netbox/users/models/permissions.py:39 +#: users/models/permissions.py:39 msgid "The list of actions granted by this permission" msgstr "" -#: netbox/users/models/permissions.py:44 +#: users/models/permissions.py:44 msgid "constraints" msgstr "" -#: netbox/users/models/permissions.py:45 +#: users/models/permissions.py:45 msgid "Queryset filter matching the applicable objects of the selected type(s)" msgstr "" -#: netbox/users/models/permissions.py:52 +#: users/models/permissions.py:52 msgid "permission" msgstr "" -#: netbox/users/models/permissions.py:53 netbox/users/models/users.py:47 +#: users/models/permissions.py:53 users/models/users.py:47 msgid "permissions" msgstr "" -#: netbox/users/models/preferences.py:29 netbox/users/models/preferences.py:30 +#: users/models/preferences.py:29 users/models/preferences.py:30 msgid "user preferences" msgstr "" -#: netbox/users/models/preferences.py:97 +#: users/models/preferences.py:97 #, python-brace-format msgid "Key '{path}' is a leaf node; cannot assign new keys" msgstr "" -#: netbox/users/models/preferences.py:109 +#: users/models/preferences.py:109 #, python-brace-format msgid "Key '{path}' is a dictionary; cannot assign a non-dictionary value" msgstr "" -#: netbox/users/models/tokens.py:36 +#: users/models/tokens.py:36 msgid "expires" msgstr "" -#: netbox/users/models/tokens.py:41 +#: users/models/tokens.py:41 msgid "last used" msgstr "" -#: netbox/users/models/tokens.py:46 +#: users/models/tokens.py:46 msgid "key" msgstr "" -#: netbox/users/models/tokens.py:52 +#: users/models/tokens.py:52 msgid "write enabled" msgstr "" -#: netbox/users/models/tokens.py:54 +#: users/models/tokens.py:54 msgid "Permit create/update/delete operations using this key" msgstr "" -#: netbox/users/models/tokens.py:65 +#: users/models/tokens.py:65 msgid "allowed IPs" msgstr "" -#: netbox/users/models/tokens.py:67 +#: users/models/tokens.py:67 msgid "" "Allowed IPv4/IPv6 networks from where the token can be used. Leave blank for " "no restrictions. Ex: \"10.1.1.0/24, 192.168.10.16/32, 2001:DB8:1::/64\"" msgstr "" -#: netbox/users/models/tokens.py:75 +#: users/models/tokens.py:75 msgid "token" msgstr "" -#: netbox/users/models/tokens.py:76 +#: users/models/tokens.py:76 msgid "tokens" msgstr "" -#: netbox/users/models/users.py:57 netbox/vpn/models/crypto.py:42 +#: users/models/users.py:57 vpn/models/crypto.py:42 msgid "group" msgstr "" -#: netbox/users/models/users.py:92 +#: users/models/users.py:92 msgid "user" msgstr "" -#: netbox/users/models/users.py:104 +#: users/models/users.py:104 msgid "A user with this username already exists." msgstr "" -#: netbox/users/tables.py:98 +#: users/tables.py:98 msgid "Custom Actions" msgstr "" -#: netbox/utilities/api.py:153 +#: utilities/api.py:153 #, python-brace-format msgid "Related object not found using the provided attributes: {params}" msgstr "" -#: netbox/utilities/api.py:156 +#: utilities/api.py:156 #, python-brace-format msgid "Multiple objects match the provided attributes: {params}" msgstr "" -#: netbox/utilities/api.py:168 +#: utilities/api.py:168 #, python-brace-format msgid "" "Related objects must be referenced by numeric ID or by dictionary of " "attributes. Received an unrecognized value: {value}" msgstr "" -#: netbox/utilities/api.py:177 +#: utilities/api.py:177 #, python-brace-format msgid "Related object not found using the provided numeric ID: {id}" msgstr "" -#: netbox/utilities/choices.py:19 +#: utilities/choices.py:19 #, python-brace-format msgid "{name} has a key defined but CHOICES is not a list" msgstr "" -#: netbox/utilities/conversion.py:19 +#: utilities/conversion.py:19 msgid "Weight must be a positive number" msgstr "" -#: netbox/utilities/conversion.py:21 +#: utilities/conversion.py:21 #, python-brace-format msgid "Invalid value '{weight}' for weight (must be a number)" msgstr "" -#: netbox/utilities/conversion.py:32 netbox/utilities/conversion.py:62 +#: utilities/conversion.py:32 utilities/conversion.py:62 #, python-brace-format msgid "Unknown unit {unit}. Must be one of the following: {valid_units}" msgstr "" -#: netbox/utilities/conversion.py:45 +#: utilities/conversion.py:45 msgid "Length must be a positive number" msgstr "" -#: netbox/utilities/conversion.py:47 +#: utilities/conversion.py:47 #, python-brace-format msgid "Invalid value '{length}' for length (must be a number)" msgstr "" -#: netbox/utilities/error_handlers.py:31 +#: utilities/error_handlers.py:31 #, python-brace-format msgid "" "Unable to delete {objects}. {count} dependent objects were " "found: " msgstr "" -#: netbox/utilities/error_handlers.py:33 +#: utilities/error_handlers.py:33 msgid "More than 50" msgstr "" -#: netbox/utilities/fields.py:30 +#: utilities/fields.py:30 msgid "RGB color in hexadecimal. Example: " msgstr "" -#: netbox/utilities/fields.py:159 +#: utilities/fields.py:159 #, python-format msgid "" "%s(%r) is invalid. to_model parameter to CounterCacheField must be a string " "in the format 'app.model'" msgstr "" -#: netbox/utilities/fields.py:169 +#: utilities/fields.py:169 #, python-format msgid "" "%s(%r) is invalid. to_field parameter to CounterCacheField must be a string " "in the format 'field'" msgstr "" -#: netbox/utilities/forms/bulk_import.py:23 +#: utilities/forms/bulk_import.py:23 msgid "Enter object data in CSV, JSON or YAML format." msgstr "" -#: netbox/utilities/forms/bulk_import.py:36 +#: utilities/forms/bulk_import.py:36 msgid "CSV delimiter" msgstr "" -#: netbox/utilities/forms/bulk_import.py:37 +#: utilities/forms/bulk_import.py:37 msgid "The character which delimits CSV fields. Applies only to CSV format." msgstr "" -#: netbox/utilities/forms/bulk_import.py:51 +#: utilities/forms/bulk_import.py:51 msgid "Form data must be empty when uploading/selecting a file." msgstr "" -#: netbox/utilities/forms/bulk_import.py:80 +#: utilities/forms/bulk_import.py:80 #, python-brace-format msgid "Unknown data format: {format}" msgstr "" -#: netbox/utilities/forms/bulk_import.py:100 +#: utilities/forms/bulk_import.py:100 msgid "Unable to detect data format. Please specify." msgstr "" -#: netbox/utilities/forms/bulk_import.py:123 +#: utilities/forms/bulk_import.py:123 msgid "Invalid CSV delimiter" msgstr "" -#: netbox/utilities/forms/bulk_import.py:167 +#: utilities/forms/bulk_import.py:167 msgid "" "Invalid YAML data. Data must be in the form of multiple documents, or a " "single document comprising a list of dictionaries." msgstr "" -#: netbox/utilities/forms/fields/array.py:20 +#: utilities/forms/fields/array.py:20 #, python-brace-format msgid "" "Invalid list ({value}). Must be numeric and ranges must be in ascending " "order." msgstr "" -#: netbox/utilities/forms/fields/array.py:40 +#: utilities/forms/fields/array.py:40 msgid "" "Specify one or more numeric ranges separated by commas. Example: " "1-5,20-30" msgstr "" -#: netbox/utilities/forms/fields/array.py:47 +#: utilities/forms/fields/array.py:47 #, python-brace-format msgid "" "Invalid ranges ({value}). Must be a range of integers in ascending order." msgstr "" -#: netbox/utilities/forms/fields/csv.py:44 +#: utilities/forms/fields/csv.py:44 #, python-brace-format msgid "Invalid value for a multiple choice field: {value}" msgstr "" -#: netbox/utilities/forms/fields/csv.py:57 -#: netbox/utilities/forms/fields/csv.py:78 +#: utilities/forms/fields/csv.py:57 utilities/forms/fields/csv.py:78 #, python-format msgid "Object not found: %(value)s" msgstr "" -#: netbox/utilities/forms/fields/csv.py:65 +#: utilities/forms/fields/csv.py:65 #, python-brace-format msgid "" "\"{value}\" is not a unique value for this field; multiple objects were found" msgstr "" -#: netbox/utilities/forms/fields/csv.py:69 +#: utilities/forms/fields/csv.py:69 #, python-brace-format msgid "\"{field_name}\" is an invalid accessor field name." msgstr "" -#: netbox/utilities/forms/fields/csv.py:101 +#: utilities/forms/fields/csv.py:101 msgid "Object type must be specified as \".\"" msgstr "" -#: netbox/utilities/forms/fields/csv.py:105 +#: utilities/forms/fields/csv.py:105 msgid "Invalid object type" msgstr "" -#: netbox/utilities/forms/fields/expandable.py:25 +#: utilities/forms/fields/expandable.py:25 msgid "" "Alphanumeric ranges are supported for bulk creation. Mixed cases and types " "within a single range are not supported (example: [ge,xe]-0/0/[0-9])." msgstr "" -#: netbox/utilities/forms/fields/expandable.py:46 +#: utilities/forms/fields/expandable.py:46 msgid "" "Specify a numeric range to create multiple IPs.
Example: 192.0.2." "[1,5,100-254]/24" msgstr "" -#: netbox/utilities/forms/fields/fields.py:31 +#: utilities/forms/fields/fields.py:31 #, python-brace-format msgid "" " Markdown syntax is supported" msgstr "" -#: netbox/utilities/forms/fields/fields.py:48 +#: utilities/forms/fields/fields.py:48 msgid "URL-friendly unique shorthand" msgstr "" -#: netbox/utilities/forms/fields/fields.py:101 +#: utilities/forms/fields/fields.py:101 msgid "Enter context data in JSON format." msgstr "" -#: netbox/utilities/forms/fields/fields.py:124 +#: utilities/forms/fields/fields.py:124 msgid "MAC address must be in EUI-48 format" msgstr "" -#: netbox/utilities/forms/forms.py:52 +#: utilities/forms/forms.py:52 msgid "Use regular expressions" msgstr "" -#: netbox/utilities/forms/forms.py:75 +#: utilities/forms/forms.py:75 msgid "" "Numeric ID of an existing object to update (if not creating a new object)" msgstr "" -#: netbox/utilities/forms/forms.py:92 +#: utilities/forms/forms.py:92 #, python-brace-format msgid "Unrecognized header: {name}" msgstr "" -#: netbox/utilities/forms/forms.py:118 +#: utilities/forms/forms.py:118 msgid "Available Columns" msgstr "" -#: netbox/utilities/forms/forms.py:126 +#: utilities/forms/forms.py:126 msgid "Selected Columns" msgstr "" -#: netbox/utilities/forms/mixins.py:44 +#: utilities/forms/mixins.py:44 msgid "" "This object has been modified since the form was rendered. Please consult " "the object's change log for details." msgstr "" -#: netbox/utilities/forms/utils.py:42 netbox/utilities/forms/utils.py:68 -#: netbox/utilities/forms/utils.py:85 netbox/utilities/forms/utils.py:87 +#: utilities/forms/utils.py:42 utilities/forms/utils.py:68 +#: utilities/forms/utils.py:85 utilities/forms/utils.py:87 #, python-brace-format msgid "Range \"{value}\" is invalid." msgstr "" -#: netbox/utilities/forms/utils.py:74 +#: utilities/forms/utils.py:74 #, python-brace-format msgid "" "Invalid range: Ending value ({end}) must be greater than beginning value " "({begin})." msgstr "" -#: netbox/utilities/forms/utils.py:232 +#: utilities/forms/utils.py:232 #, python-brace-format msgid "Duplicate or conflicting column header for \"{field}\"" msgstr "" -#: netbox/utilities/forms/utils.py:238 +#: utilities/forms/utils.py:238 #, python-brace-format msgid "Duplicate or conflicting column header for \"{header}\"" msgstr "" -#: netbox/utilities/forms/utils.py:247 +#: utilities/forms/utils.py:247 #, python-brace-format msgid "Row {row}: Expected {count_expected} columns but found {count_found}" msgstr "" -#: netbox/utilities/forms/utils.py:270 +#: utilities/forms/utils.py:270 #, python-brace-format msgid "Unexpected column header \"{field}\" found." msgstr "" -#: netbox/utilities/forms/utils.py:272 +#: utilities/forms/utils.py:272 #, python-brace-format msgid "Column \"{field}\" is not a related object; cannot use dots" msgstr "" -#: netbox/utilities/forms/utils.py:276 +#: utilities/forms/utils.py:276 #, python-brace-format msgid "Invalid related object attribute for column \"{field}\": {to_field}" msgstr "" -#: netbox/utilities/forms/utils.py:284 +#: utilities/forms/utils.py:284 #, python-brace-format msgid "Required column header \"{header}\" not found." msgstr "" -#: netbox/utilities/forms/widgets/apiselect.py:124 +#: utilities/forms/widgets/apiselect.py:124 #, python-brace-format msgid "Missing required value for dynamic query param: '{dynamic_params}'" msgstr "" -#: netbox/utilities/forms/widgets/apiselect.py:141 +#: utilities/forms/widgets/apiselect.py:141 #, python-brace-format msgid "Missing required value for static query param: '{static_params}'" msgstr "" -#: netbox/utilities/password_validation.py:13 +#: utilities/password_validation.py:13 msgid "Password must have at least one numeral." msgstr "" -#: netbox/utilities/password_validation.py:18 +#: utilities/password_validation.py:18 msgid "Password must have at least one uppercase letter." msgstr "" -#: netbox/utilities/password_validation.py:23 +#: utilities/password_validation.py:23 msgid "Password must have at least one lowercase letter." msgstr "" -#: netbox/utilities/password_validation.py:27 +#: utilities/password_validation.py:27 msgid "" "Your password must contain at least one numeral, one uppercase letter and " "one lowercase letter." msgstr "" -#: netbox/utilities/permissions.py:42 +#: utilities/permissions.py:42 #, python-brace-format msgid "" "Invalid permission name: {name}. Must be in the format ." "_" msgstr "" -#: netbox/utilities/permissions.py:60 +#: utilities/permissions.py:60 #, python-brace-format msgid "Unknown app_label/model_name for {name}" msgstr "" -#: netbox/utilities/request.py:76 +#: utilities/request.py:76 #, python-brace-format msgid "Invalid IP address set for {header}: {ip}" msgstr "" -#: netbox/utilities/tables.py:47 +#: utilities/tables.py:47 #, python-brace-format msgid "A column named {name} is already defined for table {table_name}" msgstr "" -#: netbox/utilities/templates/builtins/customfield_value.html:30 +#: utilities/templates/builtins/customfield_value.html:30 msgid "Not defined" msgstr "" -#: netbox/utilities/templates/buttons/bookmark.html:9 +#: utilities/templates/buttons/bookmark.html:9 msgid "Unbookmark" msgstr "" -#: netbox/utilities/templates/buttons/bookmark.html:13 +#: utilities/templates/buttons/bookmark.html:13 msgid "Bookmark" msgstr "" -#: netbox/utilities/templates/buttons/clone.html:4 +#: utilities/templates/buttons/clone.html:4 msgid "Clone" msgstr "" -#: netbox/utilities/templates/buttons/export.html:7 +#: utilities/templates/buttons/export.html:7 msgid "Current View" msgstr "" -#: netbox/utilities/templates/buttons/export.html:8 +#: utilities/templates/buttons/export.html:8 msgid "All Data" msgstr "" -#: netbox/utilities/templates/buttons/export.html:28 +#: utilities/templates/buttons/export.html:28 msgid "Add export template" msgstr "" -#: netbox/utilities/templates/buttons/import.html:4 +#: utilities/templates/buttons/import.html:4 msgid "Import" msgstr "" -#: netbox/utilities/templates/buttons/subscribe.html:10 +#: utilities/templates/buttons/subscribe.html:10 msgid "Unsubscribe" msgstr "" -#: netbox/utilities/templates/buttons/subscribe.html:14 +#: utilities/templates/buttons/subscribe.html:14 msgid "Subscribe" msgstr "" -#: netbox/utilities/templates/form_helpers/render_field.html:41 +#: utilities/templates/form_helpers/render_field.html:41 msgid "Copy to clipboard" msgstr "" -#: netbox/utilities/templates/form_helpers/render_field.html:57 +#: utilities/templates/form_helpers/render_field.html:57 msgid "This field is required" msgstr "" -#: netbox/utilities/templates/form_helpers/render_field.html:70 +#: utilities/templates/form_helpers/render_field.html:70 msgid "Set Null" msgstr "" -#: netbox/utilities/templates/helpers/applied_filters.html:11 +#: utilities/templates/helpers/applied_filters.html:11 msgid "Clear all" msgstr "" -#: netbox/utilities/templates/helpers/table_config_form.html:8 +#: utilities/templates/helpers/table_config_form.html:8 msgid "Table Configuration" msgstr "" -#: netbox/utilities/templates/helpers/table_config_form.html:31 +#: utilities/templates/helpers/table_config_form.html:31 msgid "Move Up" msgstr "" -#: netbox/utilities/templates/helpers/table_config_form.html:34 +#: utilities/templates/helpers/table_config_form.html:34 msgid "Move Down" msgstr "" -#: netbox/utilities/templates/navigation/menu.html:14 +#: utilities/templates/navigation/menu.html:14 msgid "Search…" msgstr "" -#: netbox/utilities/templates/navigation/menu.html:14 +#: utilities/templates/navigation/menu.html:14 msgid "Search NetBox" msgstr "" -#: netbox/utilities/templates/widgets/apiselect.html:7 +#: utilities/templates/widgets/apiselect.html:7 msgid "Open selector" msgstr "" -#: netbox/utilities/templates/widgets/markdown_input.html:6 +#: utilities/templates/widgets/markdown_input.html:6 msgid "Write" msgstr "" -#: netbox/utilities/testing/views.py:632 +#: utilities/testing/views.py:632 msgid "The test must define csv_update_data." msgstr "" -#: netbox/utilities/validators.py:65 +#: utilities/validators.py:65 #, python-brace-format msgid "{value} is not a valid regular expression." msgstr "" -#: netbox/utilities/views.py:57 +#: utilities/views.py:57 #, python-brace-format msgid "{self.__class__.__name__} must implement get_required_permission()" msgstr "" -#: netbox/utilities/views.py:93 +#: utilities/views.py:93 #, python-brace-format msgid "{class_name} must implement get_required_permission()" msgstr "" -#: netbox/utilities/views.py:117 +#: utilities/views.py:117 #, python-brace-format msgid "" "{class_name} has no queryset defined. ObjectPermissionRequiredMixin may only " "be used on views which define a base queryset" msgstr "" -#: netbox/virtualization/filtersets.py:79 +#: virtualization/filtersets.py:79 msgid "Parent group (ID)" msgstr "" -#: netbox/virtualization/filtersets.py:85 +#: virtualization/filtersets.py:85 msgid "Parent group (slug)" msgstr "" -#: netbox/virtualization/filtersets.py:89 -#: netbox/virtualization/filtersets.py:141 +#: virtualization/filtersets.py:89 virtualization/filtersets.py:141 msgid "Cluster type (ID)" msgstr "" -#: netbox/virtualization/filtersets.py:151 -#: netbox/virtualization/filtersets.py:271 +#: virtualization/filtersets.py:151 virtualization/filtersets.py:271 msgid "Cluster (ID)" msgstr "" -#: netbox/virtualization/forms/bulk_edit.py:166 -#: netbox/virtualization/models/virtualmachines.py:115 +#: virtualization/forms/bulk_edit.py:166 +#: virtualization/models/virtualmachines.py:115 msgid "vCPUs" msgstr "" -#: netbox/virtualization/forms/bulk_edit.py:170 +#: virtualization/forms/bulk_edit.py:170 msgid "Memory (MB)" msgstr "" -#: netbox/virtualization/forms/bulk_edit.py:174 +#: virtualization/forms/bulk_edit.py:174 msgid "Disk (GB)" msgstr "" -#: netbox/virtualization/forms/bulk_edit.py:334 -#: netbox/virtualization/forms/filtersets.py:251 +#: virtualization/forms/bulk_edit.py:334 virtualization/forms/filtersets.py:251 msgid "Size (GB)" msgstr "" -#: netbox/virtualization/forms/bulk_import.py:44 +#: virtualization/forms/bulk_import.py:44 msgid "Type of cluster" msgstr "" -#: netbox/virtualization/forms/bulk_import.py:51 +#: virtualization/forms/bulk_import.py:51 msgid "Assigned cluster group" msgstr "" -#: netbox/virtualization/forms/bulk_import.py:96 +#: virtualization/forms/bulk_import.py:96 msgid "Assigned cluster" msgstr "" -#: netbox/virtualization/forms/bulk_import.py:103 +#: virtualization/forms/bulk_import.py:103 msgid "Assigned device within cluster" msgstr "" -#: netbox/virtualization/forms/filtersets.py:183 +#: virtualization/forms/filtersets.py:183 msgid "Serial number" msgstr "" -#: netbox/virtualization/forms/model_forms.py:153 +#: virtualization/forms/model_forms.py:153 #, python-brace-format msgid "" "{device} belongs to a different site ({device_site}) than the cluster " "({cluster_site})" msgstr "" -#: netbox/virtualization/forms/model_forms.py:192 +#: virtualization/forms/model_forms.py:192 msgid "Optionally pin this VM to a specific host device within the cluster" msgstr "" -#: netbox/virtualization/forms/model_forms.py:221 +#: virtualization/forms/model_forms.py:221 msgid "Site/Cluster" msgstr "" -#: netbox/virtualization/forms/model_forms.py:244 +#: virtualization/forms/model_forms.py:244 msgid "Disk size is managed via the attachment of virtual disks." msgstr "" -#: netbox/virtualization/forms/model_forms.py:372 -#: netbox/virtualization/tables/virtualmachines.py:111 +#: virtualization/forms/model_forms.py:372 +#: virtualization/tables/virtualmachines.py:111 msgid "Disk" msgstr "" -#: netbox/virtualization/models/clusters.py:25 +#: virtualization/models/clusters.py:25 msgid "cluster type" msgstr "" -#: netbox/virtualization/models/clusters.py:26 +#: virtualization/models/clusters.py:26 msgid "cluster types" msgstr "" -#: netbox/virtualization/models/clusters.py:45 +#: virtualization/models/clusters.py:45 msgid "cluster group" msgstr "" -#: netbox/virtualization/models/clusters.py:46 +#: virtualization/models/clusters.py:46 msgid "cluster groups" msgstr "" -#: netbox/virtualization/models/clusters.py:121 +#: virtualization/models/clusters.py:121 msgid "cluster" msgstr "" -#: netbox/virtualization/models/clusters.py:122 +#: virtualization/models/clusters.py:122 msgid "clusters" msgstr "" -#: netbox/virtualization/models/clusters.py:141 +#: virtualization/models/clusters.py:141 #, python-brace-format msgid "" "{count} devices are assigned as hosts for this cluster but are not in site " "{site}" msgstr "" -#: netbox/virtualization/models/virtualmachines.py:123 +#: virtualization/models/virtualmachines.py:123 msgid "memory (MB)" msgstr "" -#: netbox/virtualization/models/virtualmachines.py:128 +#: virtualization/models/virtualmachines.py:128 msgid "disk (MB)" msgstr "" -#: netbox/virtualization/models/virtualmachines.py:166 +#: virtualization/models/virtualmachines.py:166 msgid "Virtual machine name must be unique per cluster." msgstr "" -#: netbox/virtualization/models/virtualmachines.py:169 +#: virtualization/models/virtualmachines.py:169 msgid "virtual machine" msgstr "" -#: netbox/virtualization/models/virtualmachines.py:170 +#: virtualization/models/virtualmachines.py:170 msgid "virtual machines" msgstr "" -#: netbox/virtualization/models/virtualmachines.py:184 +#: virtualization/models/virtualmachines.py:184 msgid "A virtual machine must be assigned to a site and/or cluster." msgstr "" -#: netbox/virtualization/models/virtualmachines.py:191 +#: virtualization/models/virtualmachines.py:191 #, python-brace-format msgid "The selected cluster ({cluster}) is not assigned to this site ({site})." msgstr "" -#: netbox/virtualization/models/virtualmachines.py:198 +#: virtualization/models/virtualmachines.py:198 msgid "Must specify a cluster when assigning a host device." msgstr "" -#: netbox/virtualization/models/virtualmachines.py:203 +#: virtualization/models/virtualmachines.py:203 #, python-brace-format msgid "" "The selected device ({device}) is not assigned to this cluster ({cluster})." msgstr "" -#: netbox/virtualization/models/virtualmachines.py:215 +#: virtualization/models/virtualmachines.py:215 #, python-brace-format msgid "" "The specified disk size ({size}) must match the aggregate size of assigned " "virtual disks ({total_size})." msgstr "" -#: netbox/virtualization/models/virtualmachines.py:229 +#: virtualization/models/virtualmachines.py:229 #, python-brace-format msgid "Must be an IPv{family} address. ({ip} is an IPv{version} address.)" msgstr "" -#: netbox/virtualization/models/virtualmachines.py:238 +#: virtualization/models/virtualmachines.py:238 #, python-brace-format msgid "The specified IP address ({ip}) is not assigned to this VM." msgstr "" -#: netbox/virtualization/models/virtualmachines.py:396 +#: virtualization/models/virtualmachines.py:396 #, python-brace-format msgid "" "The selected parent interface ({parent}) belongs to a different virtual " "machine ({virtual_machine})." msgstr "" -#: netbox/virtualization/models/virtualmachines.py:411 +#: virtualization/models/virtualmachines.py:411 #, python-brace-format msgid "" "The selected bridge interface ({bridge}) belongs to a different virtual " "machine ({virtual_machine})." msgstr "" -#: netbox/virtualization/models/virtualmachines.py:422 +#: virtualization/models/virtualmachines.py:422 #, python-brace-format msgid "" "The untagged VLAN ({untagged_vlan}) must belong to the same site as the " "interface's parent virtual machine, or it must be global." msgstr "" -#: netbox/virtualization/models/virtualmachines.py:434 +#: virtualization/models/virtualmachines.py:434 msgid "size (MB)" msgstr "" -#: netbox/virtualization/models/virtualmachines.py:438 +#: virtualization/models/virtualmachines.py:438 msgid "virtual disk" msgstr "" -#: netbox/virtualization/models/virtualmachines.py:439 +#: virtualization/models/virtualmachines.py:439 msgid "virtual disks" msgstr "" -#: netbox/virtualization/views.py:275 +#: virtualization/views.py:275 #, python-brace-format msgid "Added {count} devices to cluster {cluster}" msgstr "" -#: netbox/virtualization/views.py:310 +#: virtualization/views.py:310 #, python-brace-format msgid "Removed {count} devices from cluster {cluster}" msgstr "" -#: netbox/vpn/choices.py:31 +#: vpn/choices.py:31 msgid "IPsec - Transport" msgstr "" -#: netbox/vpn/choices.py:32 +#: vpn/choices.py:32 msgid "IPsec - Tunnel" msgstr "" -#: netbox/vpn/choices.py:33 +#: vpn/choices.py:33 msgid "IP-in-IP" msgstr "" -#: netbox/vpn/choices.py:34 +#: vpn/choices.py:34 msgid "GRE" msgstr "" -#: netbox/vpn/choices.py:56 +#: vpn/choices.py:56 msgid "Hub" msgstr "" -#: netbox/vpn/choices.py:57 +#: vpn/choices.py:57 msgid "Spoke" msgstr "" -#: netbox/vpn/choices.py:80 +#: vpn/choices.py:80 msgid "Aggressive" msgstr "" -#: netbox/vpn/choices.py:81 +#: vpn/choices.py:81 msgid "Main" msgstr "" -#: netbox/vpn/choices.py:92 +#: vpn/choices.py:92 msgid "Pre-shared keys" msgstr "" -#: netbox/vpn/choices.py:93 +#: vpn/choices.py:93 msgid "Certificates" msgstr "" -#: netbox/vpn/choices.py:94 +#: vpn/choices.py:94 msgid "RSA signatures" msgstr "" -#: netbox/vpn/choices.py:95 +#: vpn/choices.py:95 msgid "DSA signatures" msgstr "" -#: netbox/vpn/choices.py:178 netbox/vpn/choices.py:179 -#: netbox/vpn/choices.py:180 netbox/vpn/choices.py:181 -#: netbox/vpn/choices.py:182 netbox/vpn/choices.py:183 -#: netbox/vpn/choices.py:184 netbox/vpn/choices.py:185 -#: netbox/vpn/choices.py:186 netbox/vpn/choices.py:187 -#: netbox/vpn/choices.py:188 netbox/vpn/choices.py:189 -#: netbox/vpn/choices.py:190 netbox/vpn/choices.py:191 -#: netbox/vpn/choices.py:192 netbox/vpn/choices.py:193 -#: netbox/vpn/choices.py:194 netbox/vpn/choices.py:195 -#: netbox/vpn/choices.py:196 netbox/vpn/choices.py:197 -#: netbox/vpn/choices.py:198 netbox/vpn/choices.py:199 -#: netbox/vpn/choices.py:200 netbox/vpn/choices.py:201 +#: vpn/choices.py:178 vpn/choices.py:179 vpn/choices.py:180 vpn/choices.py:181 +#: vpn/choices.py:182 vpn/choices.py:183 vpn/choices.py:184 vpn/choices.py:185 +#: vpn/choices.py:186 vpn/choices.py:187 vpn/choices.py:188 vpn/choices.py:189 +#: vpn/choices.py:190 vpn/choices.py:191 vpn/choices.py:192 vpn/choices.py:193 +#: vpn/choices.py:194 vpn/choices.py:195 vpn/choices.py:196 vpn/choices.py:197 +#: vpn/choices.py:198 vpn/choices.py:199 vpn/choices.py:200 vpn/choices.py:201 #, python-brace-format msgid "Group {n}" msgstr "" -#: netbox/vpn/choices.py:243 +#: vpn/choices.py:243 msgid "Ethernet Private LAN" msgstr "" -#: netbox/vpn/choices.py:244 +#: vpn/choices.py:244 msgid "Ethernet Virtual Private LAN" msgstr "" -#: netbox/vpn/choices.py:247 +#: vpn/choices.py:247 msgid "Ethernet Private Tree" msgstr "" -#: netbox/vpn/choices.py:248 +#: vpn/choices.py:248 msgid "Ethernet Virtual Private Tree" msgstr "" -#: netbox/vpn/filtersets.py:41 +#: vpn/filtersets.py:41 msgid "Tunnel group (ID)" msgstr "" -#: netbox/vpn/filtersets.py:47 +#: vpn/filtersets.py:47 msgid "Tunnel group (slug)" msgstr "" -#: netbox/vpn/filtersets.py:54 +#: vpn/filtersets.py:54 msgid "IPSec profile (ID)" msgstr "" -#: netbox/vpn/filtersets.py:60 +#: vpn/filtersets.py:60 msgid "IPSec profile (name)" msgstr "" -#: netbox/vpn/filtersets.py:81 +#: vpn/filtersets.py:81 msgid "Tunnel (ID)" msgstr "" -#: netbox/vpn/filtersets.py:87 +#: vpn/filtersets.py:87 msgid "Tunnel (name)" msgstr "" -#: netbox/vpn/filtersets.py:118 +#: vpn/filtersets.py:118 msgid "Outside IP (ID)" msgstr "" -#: netbox/vpn/filtersets.py:130 netbox/vpn/filtersets.py:263 +#: vpn/filtersets.py:130 vpn/filtersets.py:263 msgid "IKE policy (ID)" msgstr "" -#: netbox/vpn/filtersets.py:136 netbox/vpn/filtersets.py:269 +#: vpn/filtersets.py:136 vpn/filtersets.py:269 msgid "IKE policy (name)" msgstr "" -#: netbox/vpn/filtersets.py:200 netbox/vpn/filtersets.py:273 +#: vpn/filtersets.py:200 vpn/filtersets.py:273 msgid "IPSec policy (ID)" msgstr "" -#: netbox/vpn/filtersets.py:206 netbox/vpn/filtersets.py:279 +#: vpn/filtersets.py:206 vpn/filtersets.py:279 msgid "IPSec policy (name)" msgstr "" -#: netbox/vpn/filtersets.py:348 +#: vpn/filtersets.py:348 msgid "L2VPN (slug)" msgstr "" -#: netbox/vpn/filtersets.py:412 +#: vpn/filtersets.py:412 msgid "VM Interface (ID)" msgstr "" -#: netbox/vpn/filtersets.py:418 +#: vpn/filtersets.py:418 msgid "VLAN (name)" msgstr "" -#: netbox/vpn/forms/bulk_edit.py:45 netbox/vpn/forms/bulk_import.py:42 -#: netbox/vpn/forms/filtersets.py:54 +#: vpn/forms/bulk_edit.py:45 vpn/forms/bulk_import.py:42 +#: vpn/forms/filtersets.py:54 msgid "Tunnel group" msgstr "" -#: netbox/vpn/forms/bulk_edit.py:117 netbox/vpn/models/crypto.py:47 +#: vpn/forms/bulk_edit.py:117 vpn/models/crypto.py:47 msgid "SA lifetime" msgstr "" -#: netbox/vpn/forms/bulk_edit.py:151 netbox/wireless/forms/bulk_edit.py:79 -#: netbox/wireless/forms/bulk_edit.py:126 -#: netbox/wireless/forms/filtersets.py:64 -#: netbox/wireless/forms/filtersets.py:98 +#: vpn/forms/bulk_edit.py:151 wireless/forms/bulk_edit.py:79 +#: wireless/forms/bulk_edit.py:126 wireless/forms/filtersets.py:64 +#: wireless/forms/filtersets.py:98 msgid "Pre-shared key" msgstr "" -#: netbox/vpn/forms/bulk_edit.py:237 netbox/vpn/forms/bulk_import.py:239 -#: netbox/vpn/forms/filtersets.py:199 netbox/vpn/forms/model_forms.py:370 -#: netbox/vpn/models/crypto.py:104 +#: vpn/forms/bulk_edit.py:237 vpn/forms/bulk_import.py:239 +#: vpn/forms/filtersets.py:199 vpn/forms/model_forms.py:370 +#: vpn/models/crypto.py:104 msgid "IKE policy" msgstr "" -#: netbox/vpn/forms/bulk_edit.py:242 netbox/vpn/forms/bulk_import.py:244 -#: netbox/vpn/forms/filtersets.py:204 netbox/vpn/forms/model_forms.py:374 -#: netbox/vpn/models/crypto.py:209 +#: vpn/forms/bulk_edit.py:242 vpn/forms/bulk_import.py:244 +#: vpn/forms/filtersets.py:204 vpn/forms/model_forms.py:374 +#: vpn/models/crypto.py:209 msgid "IPSec policy" msgstr "" -#: netbox/vpn/forms/bulk_import.py:50 +#: vpn/forms/bulk_import.py:50 msgid "Tunnel encapsulation" msgstr "" -#: netbox/vpn/forms/bulk_import.py:83 +#: vpn/forms/bulk_import.py:83 msgid "Operational role" msgstr "" -#: netbox/vpn/forms/bulk_import.py:90 +#: vpn/forms/bulk_import.py:90 msgid "Parent device of assigned interface" msgstr "" -#: netbox/vpn/forms/bulk_import.py:97 +#: vpn/forms/bulk_import.py:97 msgid "Parent VM of assigned interface" msgstr "" -#: netbox/vpn/forms/bulk_import.py:104 +#: vpn/forms/bulk_import.py:104 msgid "Device or virtual machine interface" msgstr "" -#: netbox/vpn/forms/bulk_import.py:183 +#: vpn/forms/bulk_import.py:183 msgid "IKE proposal(s)" msgstr "" -#: netbox/vpn/forms/bulk_import.py:215 netbox/vpn/models/crypto.py:197 +#: vpn/forms/bulk_import.py:215 vpn/models/crypto.py:197 msgid "Diffie-Hellman group for Perfect Forward Secrecy" msgstr "" -#: netbox/vpn/forms/bulk_import.py:222 +#: vpn/forms/bulk_import.py:222 msgid "IPSec proposal(s)" msgstr "" -#: netbox/vpn/forms/bulk_import.py:236 +#: vpn/forms/bulk_import.py:236 msgid "IPSec protocol" msgstr "" -#: netbox/vpn/forms/bulk_import.py:266 +#: vpn/forms/bulk_import.py:266 msgid "L2VPN type" msgstr "" -#: netbox/vpn/forms/bulk_import.py:287 +#: vpn/forms/bulk_import.py:287 msgid "Parent device (for interface)" msgstr "" -#: netbox/vpn/forms/bulk_import.py:294 +#: vpn/forms/bulk_import.py:294 msgid "Parent virtual machine (for interface)" msgstr "" -#: netbox/vpn/forms/bulk_import.py:301 +#: vpn/forms/bulk_import.py:301 msgid "Assigned interface (device or VM)" msgstr "" -#: netbox/vpn/forms/bulk_import.py:334 +#: vpn/forms/bulk_import.py:334 msgid "Cannot import device and VM interface terminations simultaneously." msgstr "" -#: netbox/vpn/forms/bulk_import.py:336 +#: vpn/forms/bulk_import.py:336 msgid "Each termination must specify either an interface or a VLAN." msgstr "" -#: netbox/vpn/forms/bulk_import.py:338 +#: vpn/forms/bulk_import.py:338 msgid "Cannot assign both an interface and a VLAN." msgstr "" -#: netbox/vpn/forms/filtersets.py:130 +#: vpn/forms/filtersets.py:130 msgid "IKE version" msgstr "" -#: netbox/vpn/forms/filtersets.py:142 netbox/vpn/forms/filtersets.py:175 -#: netbox/vpn/forms/model_forms.py:298 netbox/vpn/forms/model_forms.py:334 +#: vpn/forms/filtersets.py:142 vpn/forms/filtersets.py:175 +#: vpn/forms/model_forms.py:298 vpn/forms/model_forms.py:334 msgid "Proposal" msgstr "" -#: netbox/vpn/forms/filtersets.py:251 +#: vpn/forms/filtersets.py:251 msgid "Assigned Object Type" msgstr "" -#: netbox/vpn/forms/model_forms.py:95 netbox/vpn/forms/model_forms.py:130 -#: netbox/vpn/forms/model_forms.py:240 netbox/vpn/tables/tunnels.py:91 +#: vpn/forms/model_forms.py:95 vpn/forms/model_forms.py:130 +#: vpn/forms/model_forms.py:240 vpn/tables/tunnels.py:91 msgid "Tunnel interface" msgstr "" -#: netbox/vpn/forms/model_forms.py:150 +#: vpn/forms/model_forms.py:150 msgid "First Termination" msgstr "" -#: netbox/vpn/forms/model_forms.py:153 +#: vpn/forms/model_forms.py:153 msgid "Second Termination" msgstr "" -#: netbox/vpn/forms/model_forms.py:197 +#: vpn/forms/model_forms.py:197 msgid "This parameter is required when defining a termination." msgstr "" -#: netbox/vpn/forms/model_forms.py:320 netbox/vpn/forms/model_forms.py:356 +#: vpn/forms/model_forms.py:320 vpn/forms/model_forms.py:356 msgid "Policy" msgstr "" -#: netbox/vpn/forms/model_forms.py:487 +#: vpn/forms/model_forms.py:487 msgid "A termination must specify an interface or VLAN." msgstr "" -#: netbox/vpn/forms/model_forms.py:489 +#: vpn/forms/model_forms.py:489 msgid "" "A termination can only have one terminating object (an interface or VLAN)." msgstr "" -#: netbox/vpn/models/crypto.py:33 +#: vpn/models/crypto.py:33 msgid "encryption algorithm" msgstr "" -#: netbox/vpn/models/crypto.py:37 +#: vpn/models/crypto.py:37 msgid "authentication algorithm" msgstr "" -#: netbox/vpn/models/crypto.py:44 +#: vpn/models/crypto.py:44 msgid "Diffie-Hellman group ID" msgstr "" -#: netbox/vpn/models/crypto.py:50 +#: vpn/models/crypto.py:50 msgid "Security association lifetime (in seconds)" msgstr "" -#: netbox/vpn/models/crypto.py:59 +#: vpn/models/crypto.py:59 msgid "IKE proposal" msgstr "" -#: netbox/vpn/models/crypto.py:60 +#: vpn/models/crypto.py:60 msgid "IKE proposals" msgstr "" -#: netbox/vpn/models/crypto.py:76 +#: vpn/models/crypto.py:76 msgid "version" msgstr "" -#: netbox/vpn/models/crypto.py:88 netbox/vpn/models/crypto.py:190 +#: vpn/models/crypto.py:88 vpn/models/crypto.py:190 msgid "proposals" msgstr "" -#: netbox/vpn/models/crypto.py:91 netbox/wireless/models.py:39 +#: vpn/models/crypto.py:91 wireless/models.py:39 msgid "pre-shared key" msgstr "" -#: netbox/vpn/models/crypto.py:105 +#: vpn/models/crypto.py:105 msgid "IKE policies" msgstr "" -#: netbox/vpn/models/crypto.py:118 +#: vpn/models/crypto.py:118 msgid "Mode is required for selected IKE version" msgstr "" -#: netbox/vpn/models/crypto.py:122 +#: vpn/models/crypto.py:122 msgid "Mode cannot be used for selected IKE version" msgstr "" -#: netbox/vpn/models/crypto.py:136 +#: vpn/models/crypto.py:136 msgid "encryption" msgstr "" -#: netbox/vpn/models/crypto.py:141 +#: vpn/models/crypto.py:141 msgid "authentication" msgstr "" -#: netbox/vpn/models/crypto.py:149 +#: vpn/models/crypto.py:149 msgid "Security association lifetime (seconds)" msgstr "" -#: netbox/vpn/models/crypto.py:155 +#: vpn/models/crypto.py:155 msgid "Security association lifetime (in kilobytes)" msgstr "" -#: netbox/vpn/models/crypto.py:164 +#: vpn/models/crypto.py:164 msgid "IPSec proposal" msgstr "" -#: netbox/vpn/models/crypto.py:165 +#: vpn/models/crypto.py:165 msgid "IPSec proposals" msgstr "" -#: netbox/vpn/models/crypto.py:178 +#: vpn/models/crypto.py:178 msgid "Encryption and/or authentication algorithm must be defined" msgstr "" -#: netbox/vpn/models/crypto.py:210 +#: vpn/models/crypto.py:210 msgid "IPSec policies" msgstr "" -#: netbox/vpn/models/crypto.py:251 +#: vpn/models/crypto.py:251 msgid "IPSec profiles" msgstr "" -#: netbox/vpn/models/l2vpn.py:116 +#: vpn/models/l2vpn.py:116 msgid "L2VPN termination" msgstr "" -#: netbox/vpn/models/l2vpn.py:117 +#: vpn/models/l2vpn.py:117 msgid "L2VPN terminations" msgstr "" -#: netbox/vpn/models/l2vpn.py:135 +#: vpn/models/l2vpn.py:135 #, python-brace-format msgid "L2VPN Termination already assigned ({assigned_object})" msgstr "" -#: netbox/vpn/models/l2vpn.py:147 +#: vpn/models/l2vpn.py:147 #, python-brace-format msgid "" "{l2vpn_type} L2VPNs cannot have more than two terminations; found " "{terminations_count} already defined." msgstr "" -#: netbox/vpn/models/tunnels.py:26 +#: vpn/models/tunnels.py:26 msgid "tunnel group" msgstr "" -#: netbox/vpn/models/tunnels.py:27 +#: vpn/models/tunnels.py:27 msgid "tunnel groups" msgstr "" -#: netbox/vpn/models/tunnels.py:53 +#: vpn/models/tunnels.py:53 msgid "encapsulation" msgstr "" -#: netbox/vpn/models/tunnels.py:72 +#: vpn/models/tunnels.py:72 msgid "tunnel ID" msgstr "" -#: netbox/vpn/models/tunnels.py:94 +#: vpn/models/tunnels.py:94 msgid "tunnel" msgstr "" -#: netbox/vpn/models/tunnels.py:95 +#: vpn/models/tunnels.py:95 msgid "tunnels" msgstr "" -#: netbox/vpn/models/tunnels.py:153 +#: vpn/models/tunnels.py:153 msgid "An object may be terminated to only one tunnel at a time." msgstr "" -#: netbox/vpn/models/tunnels.py:156 +#: vpn/models/tunnels.py:156 msgid "tunnel termination" msgstr "" -#: netbox/vpn/models/tunnels.py:157 +#: vpn/models/tunnels.py:157 msgid "tunnel terminations" msgstr "" -#: netbox/vpn/models/tunnels.py:174 +#: vpn/models/tunnels.py:174 #, python-brace-format msgid "{name} is already attached to a tunnel ({tunnel})." msgstr "" -#: netbox/vpn/tables/crypto.py:22 +#: vpn/tables/crypto.py:22 msgid "Authentication Method" msgstr "" -#: netbox/vpn/tables/crypto.py:25 netbox/vpn/tables/crypto.py:97 +#: vpn/tables/crypto.py:25 vpn/tables/crypto.py:97 msgid "Encryption Algorithm" msgstr "" -#: netbox/vpn/tables/crypto.py:28 netbox/vpn/tables/crypto.py:100 +#: vpn/tables/crypto.py:28 vpn/tables/crypto.py:100 msgid "Authentication Algorithm" msgstr "" -#: netbox/vpn/tables/crypto.py:34 +#: vpn/tables/crypto.py:34 msgid "SA Lifetime" msgstr "" -#: netbox/vpn/tables/crypto.py:71 +#: vpn/tables/crypto.py:71 msgid "Pre-shared Key" msgstr "" -#: netbox/vpn/tables/crypto.py:103 +#: vpn/tables/crypto.py:103 msgid "SA Lifetime (Seconds)" msgstr "" -#: netbox/vpn/tables/crypto.py:106 +#: vpn/tables/crypto.py:106 msgid "SA Lifetime (KB)" msgstr "" -#: netbox/vpn/tables/l2vpn.py:69 +#: vpn/tables/l2vpn.py:69 msgid "Object Parent" msgstr "" -#: netbox/vpn/tables/l2vpn.py:74 +#: vpn/tables/l2vpn.py:74 msgid "Object Site" msgstr "" -#: netbox/wireless/choices.py:11 +#: wireless/choices.py:11 msgid "Access point" msgstr "" -#: netbox/wireless/choices.py:12 +#: wireless/choices.py:12 msgid "Station" msgstr "" -#: netbox/wireless/choices.py:467 +#: wireless/choices.py:467 msgid "Open" msgstr "" -#: netbox/wireless/choices.py:469 +#: wireless/choices.py:469 msgid "WPA Personal (PSK)" msgstr "" -#: netbox/wireless/choices.py:470 +#: wireless/choices.py:470 msgid "WPA Enterprise" msgstr "" -#: netbox/wireless/forms/bulk_edit.py:73 netbox/wireless/forms/bulk_edit.py:120 -#: netbox/wireless/forms/bulk_import.py:68 -#: netbox/wireless/forms/bulk_import.py:71 -#: netbox/wireless/forms/bulk_import.py:110 -#: netbox/wireless/forms/bulk_import.py:113 -#: netbox/wireless/forms/filtersets.py:59 -#: netbox/wireless/forms/filtersets.py:93 +#: wireless/forms/bulk_edit.py:73 wireless/forms/bulk_edit.py:120 +#: wireless/forms/bulk_import.py:68 wireless/forms/bulk_import.py:71 +#: wireless/forms/bulk_import.py:110 wireless/forms/bulk_import.py:113 +#: wireless/forms/filtersets.py:59 wireless/forms/filtersets.py:93 msgid "Authentication cipher" msgstr "" -#: netbox/wireless/forms/bulk_edit.py:134 -#: netbox/wireless/forms/bulk_import.py:116 -#: netbox/wireless/forms/bulk_import.py:119 -#: netbox/wireless/forms/filtersets.py:106 +#: wireless/forms/bulk_edit.py:134 wireless/forms/bulk_import.py:116 +#: wireless/forms/bulk_import.py:119 wireless/forms/filtersets.py:106 msgid "Distance unit" msgstr "" -#: netbox/wireless/forms/bulk_import.py:52 +#: wireless/forms/bulk_import.py:52 msgid "Bridged VLAN" msgstr "" -#: netbox/wireless/forms/bulk_import.py:89 -#: netbox/wireless/tables/wirelesslink.py:28 +#: wireless/forms/bulk_import.py:89 wireless/tables/wirelesslink.py:28 msgid "Interface A" msgstr "" -#: netbox/wireless/forms/bulk_import.py:93 -#: netbox/wireless/tables/wirelesslink.py:37 +#: wireless/forms/bulk_import.py:93 wireless/tables/wirelesslink.py:37 msgid "Interface B" msgstr "" -#: netbox/wireless/forms/model_forms.py:161 +#: wireless/forms/model_forms.py:161 msgid "Side B" msgstr "" -#: netbox/wireless/models.py:31 +#: wireless/models.py:31 msgid "authentication cipher" msgstr "" -#: netbox/wireless/models.py:69 +#: wireless/models.py:69 msgid "wireless LAN group" msgstr "" -#: netbox/wireless/models.py:70 +#: wireless/models.py:70 msgid "wireless LAN groups" msgstr "" -#: netbox/wireless/models.py:116 +#: wireless/models.py:116 msgid "wireless LAN" msgstr "" -#: netbox/wireless/models.py:144 +#: wireless/models.py:144 msgid "interface A" msgstr "" -#: netbox/wireless/models.py:151 +#: wireless/models.py:151 msgid "interface B" msgstr "" -#: netbox/wireless/models.py:165 +#: wireless/models.py:165 msgid "distance" msgstr "" -#: netbox/wireless/models.py:172 +#: wireless/models.py:172 msgid "distance unit" msgstr "" -#: netbox/wireless/models.py:219 +#: wireless/models.py:219 msgid "wireless link" msgstr "" -#: netbox/wireless/models.py:220 +#: wireless/models.py:220 msgid "wireless links" msgstr "" -#: netbox/wireless/models.py:236 +#: wireless/models.py:236 msgid "Must specify a unit when setting a wireless distance" msgstr "" -#: netbox/wireless/models.py:242 netbox/wireless/models.py:248 +#: wireless/models.py:242 wireless/models.py:248 #, python-brace-format msgid "{type} is not a wireless interface." msgstr "" -#: netbox/wireless/utils.py:16 +#: wireless/utils.py:16 #, python-brace-format msgid "Invalid channel value: {channel}" msgstr "" -#: netbox/wireless/utils.py:26 +#: wireless/utils.py:26 #, python-brace-format msgid "Invalid channel attribute: {name}" msgstr "" From f56843333d26f5d605599a0808cccafb8a79c319 Mon Sep 17 00:00:00 2001 From: Jeremy Stretch Date: Mon, 28 Oct 2024 16:07:50 -0400 Subject: [PATCH 31/35] Pin rq to <2.0 --- base_requirements.txt | 4 ++++ requirements.txt | 1 + 2 files changed, 5 insertions(+) diff --git a/base_requirements.txt b/base_requirements.txt index 76955a6e1..aba5ad0d2 100644 --- a/base_requirements.txt +++ b/base_requirements.txt @@ -116,6 +116,10 @@ PyYAML # https://github.com/psf/requests/blob/main/HISTORY.md requests +# rq +# https://github.com/rq/rq/blob/master/CHANGES.md +rq<=2.0 + # Social authentication framework # https://github.com/python-social-auth/social-core/blob/master/CHANGELOG.md social-auth-core diff --git a/requirements.txt b/requirements.txt index 3b9c68969..5a2e3d2b0 100644 --- a/requirements.txt +++ b/requirements.txt @@ -28,6 +28,7 @@ Pillow==10.4.0 psycopg[c,pool]==3.2.3 PyYAML==6.0.2 requests==2.32.3 +rq==1.16.2 social-auth-app-django==5.4.2 social-auth-core==4.5.4 strawberry-graphql==0.246.2 From f0eb8b9c64c14567d92f8ca859985b51eec8a528 Mon Sep 17 00:00:00 2001 From: Jeremy Stretch Date: Mon, 28 Oct 2024 16:13:34 -0400 Subject: [PATCH 32/35] Pin rq to LESS THAN v2.0 --- base_requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/base_requirements.txt b/base_requirements.txt index aba5ad0d2..e131ffc99 100644 --- a/base_requirements.txt +++ b/base_requirements.txt @@ -118,7 +118,7 @@ requests # rq # https://github.com/rq/rq/blob/master/CHANGES.md -rq<=2.0 +rq<2.0 # Social authentication framework # https://github.com/python-social-auth/social-core/blob/master/CHANGELOG.md From dba6e532c45a90b552f4e03a2bce28cf574b55b8 Mon Sep 17 00:00:00 2001 From: Jeremy Stretch Date: Mon, 28 Oct 2024 16:17:59 -0400 Subject: [PATCH 33/35] Pin django-rq to <3.0 --- base_requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/base_requirements.txt b/base_requirements.txt index e131ffc99..2147731e2 100644 --- a/base_requirements.txt +++ b/base_requirements.txt @@ -42,7 +42,7 @@ django-rich # Django integration for RQ (Reqis queuing) # https://github.com/rq/django-rq/blob/master/CHANGELOG.md -django-rq +django-rq<3.0 # Abstraction models for rendering and paginating HTML tables # https://github.com/jieter/django-tables2/blob/master/CHANGELOG.md From c383086aac33e05f4664f1e1ce5f056ba739df97 Mon Sep 17 00:00:00 2001 From: "transifex-integration[bot]" <43880903+transifex-integration[bot]@users.noreply.github.com> Date: Mon, 28 Oct 2024 16:50:34 -0400 Subject: [PATCH 34/35] Updates for project NetBox (#17875) * Translate django.po in cs 100% translated source file: 'django.po' on 'cs'. * Translate django.po in de 100% translated source file: 'django.po' on 'de'. * Translate django.po in es 100% translated source file: 'django.po' on 'es'. * Translate django.po in it 100% translated source file: 'django.po' on 'it'. * Translate django.po in tr 100% translated source file: 'django.po' on 'tr'. * Translate django.po in fr 100% translated source file: 'django.po' on 'fr'. * Translate django.po in ja 100% translated source file: 'django.po' on 'ja'. * Translate django.po in pt 100% translated source file: 'django.po' on 'pt'. * Translate django.po in da 100% translated source file: 'django.po' on 'da'. * Translate django.po in nl 100% translated source file: 'django.po' on 'nl'. * Translate django.po in zh 100% translated source file: 'django.po' on 'zh'. * Translate django.po in ru 100% translated source file: 'django.po' on 'ru'. * Translate django.po in uk 100% translated source file: 'django.po' on 'uk'. * Translate django.po in pl 100% translated source file: 'django.po' on 'pl'. --------- Co-authored-by: transifex-integration[bot] <43880903+transifex-integration[bot]@users.noreply.github.com> --- netbox/translations/cs/LC_MESSAGES/django.po | 10952 ++++++++-------- netbox/translations/da/LC_MESSAGES/django.po | 10952 ++++++++-------- netbox/translations/de/LC_MESSAGES/django.po | 10952 ++++++++-------- netbox/translations/es/LC_MESSAGES/django.po | 10952 ++++++++-------- netbox/translations/fr/LC_MESSAGES/django.po | 10952 ++++++++-------- netbox/translations/it/LC_MESSAGES/django.po | 10952 ++++++++-------- netbox/translations/ja/LC_MESSAGES/django.po | 10952 ++++++++-------- netbox/translations/nl/LC_MESSAGES/django.po | 10952 ++++++++-------- netbox/translations/pl/LC_MESSAGES/django.po | 11008 ++++++++--------- netbox/translations/pt/LC_MESSAGES/django.po | 10952 ++++++++-------- netbox/translations/ru/LC_MESSAGES/django.po | 10952 ++++++++-------- netbox/translations/tr/LC_MESSAGES/django.po | 10952 ++++++++-------- netbox/translations/uk/LC_MESSAGES/django.po | 10954 ++++++++-------- netbox/translations/zh/LC_MESSAGES/django.po | 10952 ++++++++-------- 14 files changed, 71373 insertions(+), 82013 deletions(-) diff --git a/netbox/translations/cs/LC_MESSAGES/django.po b/netbox/translations/cs/LC_MESSAGES/django.po index b583f13f7..2f557dcc9 100644 --- a/netbox/translations/cs/LC_MESSAGES/django.po +++ b/netbox/translations/cs/LC_MESSAGES/django.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-12 05:02+0000\n" +"POT-Creation-Date: 2024-10-28 19:20+0000\n" "PO-Revision-Date: 2023-10-30 17:48+0000\n" "Last-Translator: Pavel Valach, 2024\n" "Language-Team: Czech (https://app.transifex.com/netbox-community/teams/178115/cs/)\n" @@ -23,3419 +23,3088 @@ msgstr "" "Language: cs\n" "Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" -#: netbox/account/tables.py:27 netbox/templates/account/token.html:22 -#: netbox/templates/users/token.html:17 netbox/users/forms/bulk_import.py:39 -#: netbox/users/forms/model_forms.py:112 +#: account/tables.py:27 templates/account/token.html:22 +#: templates/users/token.html:17 users/forms/bulk_import.py:39 +#: users/forms/model_forms.py:112 msgid "Key" msgstr "Klíč" -#: netbox/account/tables.py:31 netbox/users/forms/filtersets.py:132 +#: account/tables.py:31 users/forms/filtersets.py:132 msgid "Write Enabled" msgstr "Zapisování povoleno" -#: netbox/account/tables.py:35 netbox/core/choices.py:86 -#: netbox/core/tables/jobs.py:29 netbox/core/tables/tasks.py:79 -#: netbox/extras/tables/tables.py:335 netbox/extras/tables/tables.py:566 -#: netbox/templates/account/token.html:43 -#: netbox/templates/core/configrevision.html:26 -#: netbox/templates/core/configrevision_restore.html:12 -#: netbox/templates/core/job.html:69 netbox/templates/core/rq_task.html:16 -#: netbox/templates/core/rq_task.html:73 -#: netbox/templates/core/rq_worker.html:14 -#: netbox/templates/extras/htmx/script_result.html:12 -#: netbox/templates/extras/journalentry.html:22 -#: netbox/templates/generic/object.html:58 -#: netbox/templates/users/token.html:35 +#: account/tables.py:35 core/choices.py:86 core/tables/jobs.py:29 +#: core/tables/tasks.py:79 extras/tables/tables.py:335 +#: extras/tables/tables.py:566 templates/account/token.html:43 +#: templates/core/configrevision.html:26 +#: templates/core/configrevision_restore.html:12 templates/core/job.html:69 +#: templates/core/rq_task.html:16 templates/core/rq_task.html:73 +#: templates/core/rq_worker.html:14 +#: templates/extras/htmx/script_result.html:12 +#: templates/extras/journalentry.html:22 templates/generic/object.html:58 +#: templates/users/token.html:35 msgid "Created" msgstr "Vytvořeno" -#: netbox/account/tables.py:39 netbox/templates/account/token.html:47 -#: netbox/templates/users/token.html:39 netbox/users/forms/bulk_edit.py:117 -#: netbox/users/forms/filtersets.py:136 +#: account/tables.py:39 templates/account/token.html:47 +#: templates/users/token.html:39 users/forms/bulk_edit.py:117 +#: users/forms/filtersets.py:136 msgid "Expires" msgstr "Platnost vyprší" -#: netbox/account/tables.py:42 netbox/users/forms/filtersets.py:141 +#: account/tables.py:42 users/forms/filtersets.py:141 msgid "Last Used" msgstr "Naposledy použitý" -#: netbox/account/tables.py:45 netbox/templates/account/token.html:55 -#: netbox/templates/users/token.html:47 netbox/users/forms/bulk_edit.py:122 -#: netbox/users/forms/model_forms.py:124 +#: account/tables.py:45 templates/account/token.html:55 +#: templates/users/token.html:47 users/forms/bulk_edit.py:122 +#: users/forms/model_forms.py:124 msgid "Allowed IPs" msgstr "Povolené IP adresy" -#: netbox/account/views.py:114 +#: account/views.py:114 #, python-brace-format msgid "Logged in as {user}." msgstr "Přihlášen jako {user}." -#: netbox/account/views.py:164 +#: account/views.py:164 msgid "You have logged out." msgstr "Odhlásili jste se." -#: netbox/account/views.py:216 +#: account/views.py:216 msgid "Your preferences have been updated." msgstr "Vaše preference byly aktualizovány." -#: netbox/account/views.py:239 +#: account/views.py:239 msgid "LDAP-authenticated user credentials cannot be changed within NetBox." msgstr "Uživatelské pověření ověřené LDAP nelze v NetBoxu změnit." -#: netbox/account/views.py:254 +#: account/views.py:254 msgid "Your password has been changed successfully." 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:185 -#: netbox/dcim/choices.py:237 netbox/dcim/choices.py:1530 -#: netbox/dcim/choices.py:1606 netbox/dcim/choices.py:1656 -#: netbox/virtualization/choices.py:20 netbox/virtualization/choices.py:45 -#: netbox/vpn/choices.py:18 +#: circuits/choices.py:21 dcim/choices.py:20 dcim/choices.py:102 +#: dcim/choices.py:185 dcim/choices.py:237 dcim/choices.py:1530 +#: dcim/choices.py:1606 dcim/choices.py:1656 virtualization/choices.py:20 +#: virtualization/choices.py:45 vpn/choices.py:18 msgid "Planned" msgstr "Plánované" -#: netbox/circuits/choices.py:22 netbox/netbox/navigation/menu.py:305 +#: circuits/choices.py:22 netbox/navigation/menu.py:305 msgid "Provisioning" msgstr "Zajišťování" -#: netbox/circuits/choices.py:23 netbox/core/tables/tasks.py:22 -#: netbox/dcim/choices.py:22 netbox/dcim/choices.py:103 -#: netbox/dcim/choices.py:184 netbox/dcim/choices.py:236 -#: netbox/dcim/choices.py:1605 netbox/dcim/choices.py:1655 -#: netbox/extras/tables/tables.py:495 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:25 -#: netbox/templates/users/user.html:37 netbox/users/forms/bulk_edit.py:38 -#: netbox/virtualization/choices.py:22 netbox/virtualization/choices.py:44 -#: netbox/vpn/choices.py:19 netbox/wireless/choices.py:25 +#: circuits/choices.py:23 core/tables/tasks.py:22 dcim/choices.py:22 +#: dcim/choices.py:103 dcim/choices.py:184 dcim/choices.py:236 +#: dcim/choices.py:1605 dcim/choices.py:1655 extras/tables/tables.py:495 +#: ipam/choices.py:31 ipam/choices.py:49 ipam/choices.py:69 +#: ipam/choices.py:154 templates/extras/configcontext.html:25 +#: templates/users/user.html:37 users/forms/bulk_edit.py:38 +#: virtualization/choices.py:22 virtualization/choices.py:44 vpn/choices.py:19 +#: wireless/choices.py:25 msgid "Active" msgstr "Aktivní" -#: netbox/circuits/choices.py:24 netbox/dcim/choices.py:183 -#: netbox/dcim/choices.py:235 netbox/dcim/choices.py:1604 -#: netbox/dcim/choices.py:1657 netbox/virtualization/choices.py:24 -#: netbox/virtualization/choices.py:43 +#: circuits/choices.py:24 dcim/choices.py:183 dcim/choices.py:235 +#: dcim/choices.py:1604 dcim/choices.py:1657 virtualization/choices.py:24 +#: virtualization/choices.py:43 msgid "Offline" msgstr "Vypnuto" -#: netbox/circuits/choices.py:25 +#: circuits/choices.py:25 msgid "Deprovisioning" msgstr "Zrušení přidělování" -#: netbox/circuits/choices.py:26 +#: circuits/choices.py:26 msgid "Decommissioned" msgstr "Vyřazeno z provozu" -#: netbox/circuits/choices.py:90 netbox/dcim/choices.py:1617 -#: netbox/tenancy/choices.py:17 +#: circuits/choices.py:90 dcim/choices.py:1617 tenancy/choices.py:17 msgid "Primary" msgstr "Primární" -#: netbox/circuits/choices.py:91 netbox/ipam/choices.py:90 -#: netbox/tenancy/choices.py:18 +#: circuits/choices.py:91 ipam/choices.py:90 tenancy/choices.py:18 msgid "Secondary" msgstr "Sekundární" -#: netbox/circuits/choices.py:92 netbox/tenancy/choices.py:19 +#: circuits/choices.py:92 tenancy/choices.py:19 msgid "Tertiary" msgstr "Terciární" -#: netbox/circuits/choices.py:93 netbox/tenancy/choices.py:20 +#: circuits/choices.py:93 tenancy/choices.py:20 msgid "Inactive" msgstr "Neaktivní" -#: netbox/circuits/filtersets.py:31 netbox/circuits/filtersets.py:198 -#: netbox/dcim/filtersets.py:98 netbox/dcim/filtersets.py:152 -#: netbox/dcim/filtersets.py:212 netbox/dcim/filtersets.py:333 -#: netbox/dcim/filtersets.py:464 netbox/dcim/filtersets.py:1021 -#: netbox/dcim/filtersets.py:1368 netbox/dcim/filtersets.py:1903 -#: netbox/dcim/filtersets.py:2146 netbox/dcim/filtersets.py:2204 -#: netbox/ipam/filtersets.py:339 netbox/ipam/filtersets.py:959 -#: netbox/virtualization/filtersets.py:45 -#: netbox/virtualization/filtersets.py:173 netbox/vpn/filtersets.py:358 +#: circuits/filtersets.py:31 circuits/filtersets.py:198 dcim/filtersets.py:98 +#: dcim/filtersets.py:152 dcim/filtersets.py:212 dcim/filtersets.py:333 +#: dcim/filtersets.py:464 dcim/filtersets.py:1021 dcim/filtersets.py:1368 +#: dcim/filtersets.py:1903 dcim/filtersets.py:2146 dcim/filtersets.py:2204 +#: ipam/filtersets.py:339 ipam/filtersets.py:959 +#: virtualization/filtersets.py:45 virtualization/filtersets.py:173 +#: vpn/filtersets.py:358 msgid "Region (ID)" msgstr "Region (ID)" -#: netbox/circuits/filtersets.py:38 netbox/circuits/filtersets.py:205 -#: netbox/dcim/filtersets.py:105 netbox/dcim/filtersets.py:158 -#: netbox/dcim/filtersets.py:219 netbox/dcim/filtersets.py:340 -#: netbox/dcim/filtersets.py:471 netbox/dcim/filtersets.py:1028 -#: netbox/dcim/filtersets.py:1375 netbox/dcim/filtersets.py:1910 -#: netbox/dcim/filtersets.py:2153 netbox/dcim/filtersets.py:2211 -#: netbox/extras/filtersets.py:509 netbox/ipam/filtersets.py:346 -#: netbox/ipam/filtersets.py:966 netbox/virtualization/filtersets.py:52 -#: netbox/virtualization/filtersets.py:180 netbox/vpn/filtersets.py:353 +#: circuits/filtersets.py:38 circuits/filtersets.py:205 dcim/filtersets.py:105 +#: dcim/filtersets.py:158 dcim/filtersets.py:219 dcim/filtersets.py:340 +#: dcim/filtersets.py:471 dcim/filtersets.py:1028 dcim/filtersets.py:1375 +#: dcim/filtersets.py:1910 dcim/filtersets.py:2153 dcim/filtersets.py:2211 +#: extras/filtersets.py:509 ipam/filtersets.py:346 ipam/filtersets.py:966 +#: virtualization/filtersets.py:52 virtualization/filtersets.py:180 +#: vpn/filtersets.py:353 msgid "Region (slug)" msgstr "Region (zkratka)" -#: netbox/circuits/filtersets.py:44 netbox/circuits/filtersets.py:211 -#: netbox/dcim/filtersets.py:128 netbox/dcim/filtersets.py:225 -#: netbox/dcim/filtersets.py:346 netbox/dcim/filtersets.py:477 -#: netbox/dcim/filtersets.py:1034 netbox/dcim/filtersets.py:1381 -#: netbox/dcim/filtersets.py:1916 netbox/dcim/filtersets.py:2159 -#: netbox/dcim/filtersets.py:2217 netbox/ipam/filtersets.py:352 -#: netbox/ipam/filtersets.py:972 netbox/virtualization/filtersets.py:58 -#: netbox/virtualization/filtersets.py:186 +#: circuits/filtersets.py:44 circuits/filtersets.py:211 dcim/filtersets.py:128 +#: dcim/filtersets.py:225 dcim/filtersets.py:346 dcim/filtersets.py:477 +#: dcim/filtersets.py:1034 dcim/filtersets.py:1381 dcim/filtersets.py:1916 +#: dcim/filtersets.py:2159 dcim/filtersets.py:2217 ipam/filtersets.py:352 +#: ipam/filtersets.py:972 virtualization/filtersets.py:58 +#: virtualization/filtersets.py:186 msgid "Site group (ID)" msgstr "Skupina stránek (ID)" -#: netbox/circuits/filtersets.py:51 netbox/circuits/filtersets.py:218 -#: netbox/dcim/filtersets.py:135 netbox/dcim/filtersets.py:232 -#: netbox/dcim/filtersets.py:353 netbox/dcim/filtersets.py:484 -#: netbox/dcim/filtersets.py:1041 netbox/dcim/filtersets.py:1388 -#: netbox/dcim/filtersets.py:1923 netbox/dcim/filtersets.py:2166 -#: netbox/dcim/filtersets.py:2224 netbox/extras/filtersets.py:515 -#: netbox/ipam/filtersets.py:359 netbox/ipam/filtersets.py:979 -#: netbox/virtualization/filtersets.py:65 -#: netbox/virtualization/filtersets.py:193 +#: circuits/filtersets.py:51 circuits/filtersets.py:218 dcim/filtersets.py:135 +#: dcim/filtersets.py:232 dcim/filtersets.py:353 dcim/filtersets.py:484 +#: dcim/filtersets.py:1041 dcim/filtersets.py:1388 dcim/filtersets.py:1923 +#: dcim/filtersets.py:2166 dcim/filtersets.py:2224 extras/filtersets.py:515 +#: ipam/filtersets.py:359 ipam/filtersets.py:979 +#: virtualization/filtersets.py:65 virtualization/filtersets.py:193 msgid "Site group (slug)" msgstr "Skupina stránek (slug)" -#: netbox/circuits/filtersets.py:56 netbox/circuits/forms/bulk_edit.py:188 -#: netbox/circuits/forms/bulk_edit.py:216 -#: netbox/circuits/forms/bulk_import.py:124 -#: netbox/circuits/forms/filtersets.py:51 -#: netbox/circuits/forms/filtersets.py:171 -#: netbox/circuits/forms/filtersets.py:209 -#: netbox/circuits/forms/model_forms.py:138 -#: netbox/circuits/forms/model_forms.py:154 -#: netbox/circuits/tables/circuits.py:113 netbox/dcim/forms/bulk_edit.py:168 -#: netbox/dcim/forms/bulk_edit.py:329 netbox/dcim/forms/bulk_edit.py:677 -#: netbox/dcim/forms/bulk_edit.py:873 netbox/dcim/forms/bulk_import.py:131 -#: netbox/dcim/forms/bulk_import.py:230 netbox/dcim/forms/bulk_import.py:309 -#: netbox/dcim/forms/bulk_import.py:540 netbox/dcim/forms/bulk_import.py:1311 -#: netbox/dcim/forms/bulk_import.py:1339 netbox/dcim/forms/filtersets.py:87 -#: netbox/dcim/forms/filtersets.py:225 netbox/dcim/forms/filtersets.py:342 -#: netbox/dcim/forms/filtersets.py:439 netbox/dcim/forms/filtersets.py:753 -#: netbox/dcim/forms/filtersets.py:997 netbox/dcim/forms/filtersets.py:1021 -#: netbox/dcim/forms/filtersets.py:1111 netbox/dcim/forms/filtersets.py:1149 -#: netbox/dcim/forms/filtersets.py:1584 netbox/dcim/forms/filtersets.py:1608 -#: netbox/dcim/forms/filtersets.py:1632 netbox/dcim/forms/model_forms.py:137 -#: netbox/dcim/forms/model_forms.py:165 netbox/dcim/forms/model_forms.py:238 -#: netbox/dcim/forms/model_forms.py:463 netbox/dcim/forms/model_forms.py:723 -#: netbox/dcim/forms/object_create.py:391 netbox/dcim/tables/devices.py:153 -#: netbox/dcim/tables/power.py:26 netbox/dcim/tables/power.py:93 -#: netbox/dcim/tables/racks.py:122 netbox/dcim/tables/racks.py:207 -#: netbox/dcim/tables/sites.py:134 netbox/extras/filtersets.py:525 -#: netbox/ipam/forms/bulk_edit.py:217 netbox/ipam/forms/bulk_edit.py:284 -#: netbox/ipam/forms/bulk_edit.py:451 netbox/ipam/forms/bulk_edit.py:529 -#: netbox/ipam/forms/bulk_import.py:171 netbox/ipam/forms/bulk_import.py:429 -#: netbox/ipam/forms/filtersets.py:153 netbox/ipam/forms/filtersets.py:231 -#: netbox/ipam/forms/filtersets.py:432 netbox/ipam/forms/filtersets.py:489 -#: netbox/ipam/forms/model_forms.py:205 netbox/ipam/forms/model_forms.py:636 -#: netbox/ipam/tables/ip.py:245 netbox/ipam/tables/vlans.py:118 -#: netbox/ipam/tables/vlans.py:221 -#: netbox/templates/circuits/inc/circuit_termination_fields.html:6 -#: netbox/templates/dcim/device.html:22 -#: netbox/templates/dcim/inc/cable_termination.html:8 -#: netbox/templates/dcim/inc/cable_termination.html:33 -#: netbox/templates/dcim/location.html:37 -#: netbox/templates/dcim/powerpanel.html:22 netbox/templates/dcim/rack.html:20 -#: netbox/templates/dcim/rackreservation.html:28 -#: netbox/templates/dcim/site.html:28 netbox/templates/ipam/prefix.html:56 -#: netbox/templates/ipam/vlan.html:23 netbox/templates/ipam/vlan_edit.html:40 -#: netbox/templates/virtualization/cluster.html:42 -#: netbox/templates/virtualization/virtualmachine.html:95 -#: netbox/virtualization/forms/bulk_edit.py:91 -#: netbox/virtualization/forms/bulk_edit.py:109 -#: netbox/virtualization/forms/bulk_edit.py:124 -#: netbox/virtualization/forms/bulk_import.py:59 -#: netbox/virtualization/forms/bulk_import.py:85 -#: netbox/virtualization/forms/filtersets.py:79 -#: netbox/virtualization/forms/filtersets.py:148 -#: netbox/virtualization/forms/model_forms.py:71 -#: netbox/virtualization/forms/model_forms.py:104 -#: netbox/virtualization/forms/model_forms.py:171 -#: netbox/virtualization/tables/clusters.py:77 -#: netbox/virtualization/tables/virtualmachines.py:63 -#: netbox/vpn/forms/filtersets.py:266 netbox/wireless/forms/model_forms.py:76 -#: netbox/wireless/forms/model_forms.py:118 +#: circuits/filtersets.py:56 circuits/forms/bulk_edit.py:188 +#: circuits/forms/bulk_edit.py:216 circuits/forms/bulk_import.py:124 +#: circuits/forms/filtersets.py:51 circuits/forms/filtersets.py:171 +#: circuits/forms/filtersets.py:209 circuits/forms/model_forms.py:138 +#: circuits/forms/model_forms.py:154 circuits/tables/circuits.py:113 +#: dcim/forms/bulk_edit.py:168 dcim/forms/bulk_edit.py:329 +#: dcim/forms/bulk_edit.py:677 dcim/forms/bulk_edit.py:873 +#: dcim/forms/bulk_import.py:131 dcim/forms/bulk_import.py:230 +#: dcim/forms/bulk_import.py:309 dcim/forms/bulk_import.py:540 +#: dcim/forms/bulk_import.py:1311 dcim/forms/bulk_import.py:1339 +#: dcim/forms/filtersets.py:87 dcim/forms/filtersets.py:225 +#: dcim/forms/filtersets.py:342 dcim/forms/filtersets.py:439 +#: dcim/forms/filtersets.py:753 dcim/forms/filtersets.py:997 +#: dcim/forms/filtersets.py:1021 dcim/forms/filtersets.py:1111 +#: dcim/forms/filtersets.py:1149 dcim/forms/filtersets.py:1584 +#: dcim/forms/filtersets.py:1608 dcim/forms/filtersets.py:1632 +#: dcim/forms/model_forms.py:137 dcim/forms/model_forms.py:165 +#: dcim/forms/model_forms.py:238 dcim/forms/model_forms.py:463 +#: dcim/forms/model_forms.py:723 dcim/forms/object_create.py:391 +#: dcim/tables/devices.py:153 dcim/tables/power.py:26 dcim/tables/power.py:93 +#: dcim/tables/racks.py:122 dcim/tables/racks.py:207 dcim/tables/sites.py:134 +#: extras/filtersets.py:525 ipam/forms/bulk_edit.py:218 +#: ipam/forms/bulk_edit.py:285 ipam/forms/bulk_edit.py:484 +#: ipam/forms/bulk_import.py:171 ipam/forms/bulk_import.py:429 +#: ipam/forms/filtersets.py:153 ipam/forms/filtersets.py:231 +#: ipam/forms/filtersets.py:432 ipam/forms/filtersets.py:489 +#: ipam/forms/model_forms.py:205 ipam/forms/model_forms.py:636 +#: ipam/tables/ip.py:245 ipam/tables/vlans.py:118 ipam/tables/vlans.py:221 +#: templates/circuits/inc/circuit_termination_fields.html:6 +#: templates/dcim/device.html:22 templates/dcim/inc/cable_termination.html:8 +#: templates/dcim/inc/cable_termination.html:33 +#: templates/dcim/location.html:37 templates/dcim/powerpanel.html:22 +#: templates/dcim/rack.html:20 templates/dcim/rackreservation.html:28 +#: templates/dcim/site.html:28 templates/ipam/prefix.html:56 +#: templates/ipam/vlan.html:23 templates/ipam/vlan_edit.html:40 +#: templates/virtualization/cluster.html:42 +#: templates/virtualization/virtualmachine.html:95 +#: virtualization/forms/bulk_edit.py:91 virtualization/forms/bulk_edit.py:109 +#: virtualization/forms/bulk_edit.py:124 +#: virtualization/forms/bulk_import.py:59 +#: virtualization/forms/bulk_import.py:85 +#: virtualization/forms/filtersets.py:79 +#: virtualization/forms/filtersets.py:148 +#: virtualization/forms/model_forms.py:71 +#: virtualization/forms/model_forms.py:104 +#: virtualization/forms/model_forms.py:171 +#: virtualization/tables/clusters.py:77 +#: virtualization/tables/virtualmachines.py:63 vpn/forms/filtersets.py:266 +#: wireless/forms/model_forms.py:76 wireless/forms/model_forms.py:118 msgid "Site" msgstr "Stránky" -#: netbox/circuits/filtersets.py:62 netbox/circuits/filtersets.py:229 -#: netbox/circuits/filtersets.py:274 netbox/dcim/filtersets.py:242 -#: netbox/dcim/filtersets.py:363 netbox/dcim/filtersets.py:458 -#: netbox/extras/filtersets.py:531 netbox/ipam/filtersets.py:238 -#: netbox/ipam/filtersets.py:369 netbox/ipam/filtersets.py:989 -#: netbox/virtualization/filtersets.py:75 -#: netbox/virtualization/filtersets.py:203 netbox/vpn/filtersets.py:363 +#: circuits/filtersets.py:62 circuits/filtersets.py:229 +#: circuits/filtersets.py:274 dcim/filtersets.py:242 dcim/filtersets.py:363 +#: dcim/filtersets.py:458 extras/filtersets.py:531 ipam/filtersets.py:238 +#: ipam/filtersets.py:369 ipam/filtersets.py:989 +#: virtualization/filtersets.py:75 virtualization/filtersets.py:203 +#: vpn/filtersets.py:363 msgid "Site (slug)" msgstr "Místo (slug)" -#: netbox/circuits/filtersets.py:67 +#: circuits/filtersets.py:67 msgid "ASN (ID)" msgstr "ASN (ID)" -#: netbox/circuits/filtersets.py:73 netbox/circuits/forms/filtersets.py:31 -#: netbox/ipam/forms/model_forms.py:159 netbox/ipam/models/asns.py:108 -#: netbox/ipam/models/asns.py:125 netbox/ipam/tables/asn.py:41 -#: netbox/templates/ipam/asn.html:20 +#: circuits/filtersets.py:73 circuits/forms/filtersets.py:31 +#: ipam/forms/model_forms.py:159 ipam/models/asns.py:108 +#: ipam/models/asns.py:125 ipam/tables/asn.py:41 templates/ipam/asn.html:20 msgid "ASN" msgstr "ASN" -#: netbox/circuits/filtersets.py:95 netbox/circuits/filtersets.py:122 -#: netbox/circuits/filtersets.py:156 netbox/circuits/filtersets.py:283 -#: netbox/circuits/filtersets.py:325 netbox/ipam/filtersets.py:243 +#: circuits/filtersets.py:95 circuits/filtersets.py:122 +#: circuits/filtersets.py:156 circuits/filtersets.py:283 +#: circuits/filtersets.py:325 ipam/filtersets.py:243 msgid "Provider (ID)" msgstr "Poskytovatel (ID)" -#: netbox/circuits/filtersets.py:101 netbox/circuits/filtersets.py:128 -#: netbox/circuits/filtersets.py:162 netbox/circuits/filtersets.py:289 -#: netbox/circuits/filtersets.py:331 netbox/ipam/filtersets.py:249 +#: circuits/filtersets.py:101 circuits/filtersets.py:128 +#: circuits/filtersets.py:162 circuits/filtersets.py:289 +#: circuits/filtersets.py:331 ipam/filtersets.py:249 msgid "Provider (slug)" msgstr "Poskytovatel (slug)" -#: netbox/circuits/filtersets.py:167 +#: circuits/filtersets.py:167 msgid "Provider account (ID)" msgstr "Účet poskytovatele (ID)" -#: netbox/circuits/filtersets.py:173 +#: circuits/filtersets.py:173 msgid "Provider account (account)" msgstr "Účet poskytovatele (účet)" -#: netbox/circuits/filtersets.py:178 +#: circuits/filtersets.py:178 msgid "Provider network (ID)" msgstr "Síť poskytovatele (ID)" -#: netbox/circuits/filtersets.py:182 +#: circuits/filtersets.py:182 msgid "Circuit type (ID)" msgstr "Typ okruhu (ID)" -#: netbox/circuits/filtersets.py:188 +#: circuits/filtersets.py:188 msgid "Circuit type (slug)" msgstr "Typ okruhu (URL zkratka)" -#: netbox/circuits/filtersets.py:223 netbox/circuits/filtersets.py:268 -#: netbox/dcim/filtersets.py:236 netbox/dcim/filtersets.py:357 -#: netbox/dcim/filtersets.py:452 netbox/dcim/filtersets.py:1045 -#: netbox/dcim/filtersets.py:1393 netbox/dcim/filtersets.py:1928 -#: netbox/dcim/filtersets.py:2170 netbox/dcim/filtersets.py:2229 -#: netbox/ipam/filtersets.py:232 netbox/ipam/filtersets.py:363 -#: netbox/ipam/filtersets.py:983 netbox/virtualization/filtersets.py:69 -#: netbox/virtualization/filtersets.py:197 netbox/vpn/filtersets.py:368 +#: circuits/filtersets.py:223 circuits/filtersets.py:268 +#: dcim/filtersets.py:236 dcim/filtersets.py:357 dcim/filtersets.py:452 +#: dcim/filtersets.py:1045 dcim/filtersets.py:1393 dcim/filtersets.py:1928 +#: dcim/filtersets.py:2170 dcim/filtersets.py:2229 ipam/filtersets.py:232 +#: ipam/filtersets.py:363 ipam/filtersets.py:983 +#: virtualization/filtersets.py:69 virtualization/filtersets.py:197 +#: vpn/filtersets.py:368 msgid "Site (ID)" msgstr "Stránky (ID)" -#: netbox/circuits/filtersets.py:233 netbox/circuits/filtersets.py:237 +#: circuits/filtersets.py:233 circuits/filtersets.py:237 msgid "Termination A (ID)" msgstr "Zakončení A (ID)" -#: netbox/circuits/filtersets.py:260 netbox/circuits/filtersets.py:320 -#: netbox/core/filtersets.py:77 netbox/core/filtersets.py:136 -#: netbox/core/filtersets.py:173 netbox/dcim/filtersets.py:751 -#: netbox/dcim/filtersets.py:1362 netbox/dcim/filtersets.py:2277 -#: netbox/extras/filtersets.py:41 netbox/extras/filtersets.py:63 -#: netbox/extras/filtersets.py:92 netbox/extras/filtersets.py:132 -#: netbox/extras/filtersets.py:181 netbox/extras/filtersets.py:209 -#: netbox/extras/filtersets.py:239 netbox/extras/filtersets.py:276 -#: netbox/extras/filtersets.py:348 netbox/extras/filtersets.py:391 -#: netbox/extras/filtersets.py:438 netbox/extras/filtersets.py:498 -#: netbox/extras/filtersets.py:657 netbox/extras/filtersets.py:703 -#: netbox/ipam/forms/model_forms.py:449 netbox/netbox/filtersets.py:282 -#: netbox/netbox/forms/__init__.py:22 netbox/netbox/forms/base.py:167 -#: netbox/templates/htmx/object_selector.html:28 -#: netbox/templates/inc/filter_list.html:45 -#: netbox/templates/ipam/ipaddress_assign.html:29 -#: netbox/templates/search.html:7 netbox/templates/search.html:26 -#: netbox/tenancy/filtersets.py:99 netbox/users/filtersets.py:23 -#: netbox/users/filtersets.py:57 netbox/users/filtersets.py:102 -#: netbox/users/filtersets.py:150 netbox/utilities/forms/forms.py:104 -#: netbox/utilities/templates/navigation/menu.html:16 +#: circuits/filtersets.py:260 circuits/filtersets.py:320 core/filtersets.py:77 +#: core/filtersets.py:136 core/filtersets.py:173 dcim/filtersets.py:751 +#: dcim/filtersets.py:1362 dcim/filtersets.py:2277 extras/filtersets.py:41 +#: extras/filtersets.py:63 extras/filtersets.py:92 extras/filtersets.py:132 +#: extras/filtersets.py:181 extras/filtersets.py:209 extras/filtersets.py:239 +#: extras/filtersets.py:276 extras/filtersets.py:348 extras/filtersets.py:391 +#: extras/filtersets.py:438 extras/filtersets.py:498 extras/filtersets.py:657 +#: extras/filtersets.py:703 ipam/forms/model_forms.py:449 +#: netbox/filtersets.py:282 netbox/forms/__init__.py:22 +#: netbox/forms/base.py:167 templates/htmx/object_selector.html:28 +#: templates/inc/filter_list.html:46 templates/ipam/ipaddress_assign.html:29 +#: templates/search.html:7 templates/search.html:26 tenancy/filtersets.py:99 +#: users/filtersets.py:23 users/filtersets.py:57 users/filtersets.py:102 +#: users/filtersets.py:150 utilities/forms/forms.py:104 +#: utilities/templates/navigation/menu.html:16 msgid "Search" msgstr "Vyhledávání" -#: netbox/circuits/filtersets.py:264 netbox/circuits/forms/bulk_edit.py:172 -#: netbox/circuits/forms/bulk_edit.py:246 -#: netbox/circuits/forms/bulk_import.py:115 -#: netbox/circuits/forms/filtersets.py:198 -#: netbox/circuits/forms/filtersets.py:214 -#: netbox/circuits/forms/filtersets.py:260 -#: netbox/circuits/forms/model_forms.py:111 -#: netbox/circuits/forms/model_forms.py:133 -#: netbox/circuits/forms/model_forms.py:199 -#: netbox/circuits/tables/circuits.py:104 -#: netbox/circuits/tables/circuits.py:164 netbox/dcim/forms/connections.py:73 -#: netbox/templates/circuits/circuit.html:15 -#: netbox/templates/circuits/circuitgroupassignment.html:26 -#: netbox/templates/circuits/circuittermination.html:19 -#: netbox/templates/dcim/inc/cable_termination.html:55 -#: netbox/templates/dcim/trace/circuit.html:4 +#: circuits/filtersets.py:264 circuits/forms/bulk_edit.py:172 +#: circuits/forms/bulk_edit.py:246 circuits/forms/bulk_import.py:115 +#: circuits/forms/filtersets.py:198 circuits/forms/filtersets.py:214 +#: circuits/forms/filtersets.py:260 circuits/forms/model_forms.py:111 +#: circuits/forms/model_forms.py:133 circuits/forms/model_forms.py:199 +#: circuits/tables/circuits.py:104 circuits/tables/circuits.py:164 +#: dcim/forms/connections.py:73 templates/circuits/circuit.html:15 +#: templates/circuits/circuitgroupassignment.html:26 +#: templates/circuits/circuittermination.html:19 +#: templates/dcim/inc/cable_termination.html:55 +#: templates/dcim/trace/circuit.html:4 msgid "Circuit" msgstr "Okruh" -#: netbox/circuits/filtersets.py:278 +#: circuits/filtersets.py:278 msgid "ProviderNetwork (ID)" msgstr "Síť poskytovatele (ID)" -#: netbox/circuits/filtersets.py:335 +#: circuits/filtersets.py:335 msgid "Circuit (ID)" msgstr "Obvod (ID)" -#: netbox/circuits/filtersets.py:341 +#: circuits/filtersets.py:341 msgid "Circuit (CID)" msgstr "Obvod (CID)" -#: netbox/circuits/filtersets.py:345 +#: circuits/filtersets.py:345 msgid "Circuit group (ID)" msgstr "Skupina obvodů (ID)" -#: netbox/circuits/filtersets.py:351 +#: circuits/filtersets.py:351 msgid "Circuit group (slug)" msgstr "Skupina okruhů (slug)" -#: netbox/circuits/forms/bulk_edit.py:30 -#: netbox/circuits/forms/filtersets.py:56 -#: netbox/circuits/forms/model_forms.py:29 -#: netbox/circuits/tables/providers.py:33 netbox/dcim/forms/bulk_edit.py:128 -#: netbox/dcim/forms/filtersets.py:195 netbox/dcim/forms/model_forms.py:123 -#: netbox/dcim/tables/sites.py:94 netbox/ipam/models/asns.py:126 -#: netbox/ipam/tables/asn.py:27 netbox/ipam/views.py:213 -#: netbox/netbox/navigation/menu.py:172 netbox/netbox/navigation/menu.py:175 -#: netbox/templates/circuits/provider.html:23 +#: circuits/forms/bulk_edit.py:30 circuits/forms/filtersets.py:56 +#: circuits/forms/model_forms.py:29 circuits/tables/providers.py:33 +#: dcim/forms/bulk_edit.py:128 dcim/forms/filtersets.py:195 +#: dcim/forms/model_forms.py:123 dcim/tables/sites.py:94 +#: ipam/models/asns.py:126 ipam/tables/asn.py:27 ipam/views.py:213 +#: netbox/navigation/menu.py:172 netbox/navigation/menu.py:175 +#: templates/circuits/provider.html:23 msgid "ASNs" msgstr "ASN" -#: netbox/circuits/forms/bulk_edit.py:34 netbox/circuits/forms/bulk_edit.py:56 -#: netbox/circuits/forms/bulk_edit.py:83 -#: netbox/circuits/forms/bulk_edit.py:104 -#: netbox/circuits/forms/bulk_edit.py:164 -#: netbox/circuits/forms/bulk_edit.py:183 -#: netbox/circuits/forms/bulk_edit.py:228 netbox/core/forms/bulk_edit.py:28 -#: netbox/dcim/forms/bulk_create.py:35 netbox/dcim/forms/bulk_edit.py:73 -#: netbox/dcim/forms/bulk_edit.py:92 netbox/dcim/forms/bulk_edit.py:151 -#: netbox/dcim/forms/bulk_edit.py:192 netbox/dcim/forms/bulk_edit.py:210 -#: netbox/dcim/forms/bulk_edit.py:288 netbox/dcim/forms/bulk_edit.py:432 -#: netbox/dcim/forms/bulk_edit.py:466 netbox/dcim/forms/bulk_edit.py:481 -#: netbox/dcim/forms/bulk_edit.py:540 netbox/dcim/forms/bulk_edit.py:584 -#: netbox/dcim/forms/bulk_edit.py:618 netbox/dcim/forms/bulk_edit.py:642 -#: netbox/dcim/forms/bulk_edit.py:715 netbox/dcim/forms/bulk_edit.py:767 -#: netbox/dcim/forms/bulk_edit.py:819 netbox/dcim/forms/bulk_edit.py:842 -#: netbox/dcim/forms/bulk_edit.py:890 netbox/dcim/forms/bulk_edit.py:960 -#: netbox/dcim/forms/bulk_edit.py:1013 netbox/dcim/forms/bulk_edit.py:1048 -#: netbox/dcim/forms/bulk_edit.py:1088 netbox/dcim/forms/bulk_edit.py:1132 -#: netbox/dcim/forms/bulk_edit.py:1177 netbox/dcim/forms/bulk_edit.py:1204 -#: netbox/dcim/forms/bulk_edit.py:1222 netbox/dcim/forms/bulk_edit.py:1240 -#: netbox/dcim/forms/bulk_edit.py:1258 netbox/dcim/forms/bulk_edit.py:1682 -#: netbox/extras/forms/bulk_edit.py:39 netbox/extras/forms/bulk_edit.py:149 -#: netbox/extras/forms/bulk_edit.py:178 netbox/extras/forms/bulk_edit.py:208 -#: netbox/extras/forms/bulk_edit.py:256 netbox/extras/forms/bulk_edit.py:274 -#: netbox/extras/forms/bulk_edit.py:298 netbox/extras/forms/bulk_edit.py:312 -#: netbox/extras/forms/bulk_edit.py:339 netbox/extras/tables/tables.py:79 -#: netbox/ipam/forms/bulk_edit.py:52 netbox/ipam/forms/bulk_edit.py:72 -#: netbox/ipam/forms/bulk_edit.py:92 netbox/ipam/forms/bulk_edit.py:116 -#: netbox/ipam/forms/bulk_edit.py:145 netbox/ipam/forms/bulk_edit.py:174 -#: netbox/ipam/forms/bulk_edit.py:193 netbox/ipam/forms/bulk_edit.py:275 -#: netbox/ipam/forms/bulk_edit.py:320 netbox/ipam/forms/bulk_edit.py:368 -#: netbox/ipam/forms/bulk_edit.py:411 netbox/ipam/forms/bulk_edit.py:427 -#: netbox/ipam/forms/bulk_edit.py:561 netbox/ipam/forms/bulk_edit.py:592 -#: netbox/templates/account/token.html:35 -#: netbox/templates/circuits/circuit.html:59 -#: netbox/templates/circuits/circuitgroup.html:32 -#: netbox/templates/circuits/circuittype.html:26 -#: netbox/templates/circuits/inc/circuit_termination_fields.html:88 -#: netbox/templates/circuits/provider.html:33 -#: netbox/templates/circuits/providernetwork.html:32 -#: netbox/templates/core/datasource.html:54 -#: netbox/templates/core/plugin.html:79 netbox/templates/dcim/cable.html:36 -#: netbox/templates/dcim/consoleport.html:44 -#: netbox/templates/dcim/consoleserverport.html:44 -#: netbox/templates/dcim/device.html:94 -#: netbox/templates/dcim/devicebay.html:32 -#: netbox/templates/dcim/devicerole.html:30 -#: netbox/templates/dcim/devicetype.html:33 -#: netbox/templates/dcim/frontport.html:58 -#: netbox/templates/dcim/interface.html:69 -#: netbox/templates/dcim/inventoryitem.html:60 -#: netbox/templates/dcim/inventoryitemrole.html:22 -#: netbox/templates/dcim/location.html:33 -#: netbox/templates/dcim/manufacturer.html:40 -#: netbox/templates/dcim/module.html:73 -#: netbox/templates/dcim/modulebay.html:42 -#: netbox/templates/dcim/moduletype.html:26 -#: netbox/templates/dcim/platform.html:33 -#: netbox/templates/dcim/powerfeed.html:40 -#: netbox/templates/dcim/poweroutlet.html:40 -#: netbox/templates/dcim/powerpanel.html:30 -#: netbox/templates/dcim/powerport.html:40 netbox/templates/dcim/rack.html:53 -#: netbox/templates/dcim/rackreservation.html:62 -#: netbox/templates/dcim/rackrole.html:26 -#: netbox/templates/dcim/racktype.html:24 -#: netbox/templates/dcim/rearport.html:54 netbox/templates/dcim/region.html:33 -#: netbox/templates/dcim/site.html:60 netbox/templates/dcim/sitegroup.html:33 -#: netbox/templates/dcim/virtualchassis.html:31 -#: netbox/templates/extras/configcontext.html:21 -#: netbox/templates/extras/configtemplate.html:17 -#: netbox/templates/extras/customfield.html:34 -#: netbox/templates/extras/dashboard/widget_add.html:14 -#: netbox/templates/extras/eventrule.html:21 -#: netbox/templates/extras/exporttemplate.html:19 -#: netbox/templates/extras/notificationgroup.html:20 -#: netbox/templates/extras/savedfilter.html:17 -#: netbox/templates/extras/script_list.html:45 -#: netbox/templates/extras/tag.html:20 netbox/templates/extras/webhook.html:17 -#: netbox/templates/generic/bulk_import.html:120 -#: netbox/templates/ipam/aggregate.html:43 netbox/templates/ipam/asn.html:42 -#: netbox/templates/ipam/asnrange.html:38 -#: netbox/templates/ipam/fhrpgroup.html:34 -#: netbox/templates/ipam/ipaddress.html:55 -#: netbox/templates/ipam/iprange.html:67 netbox/templates/ipam/prefix.html:81 -#: netbox/templates/ipam/rir.html:26 netbox/templates/ipam/role.html:26 -#: netbox/templates/ipam/routetarget.html:21 -#: netbox/templates/ipam/service.html:50 -#: netbox/templates/ipam/servicetemplate.html:27 -#: netbox/templates/ipam/vlan.html:62 netbox/templates/ipam/vlangroup.html:34 -#: netbox/templates/ipam/vrf.html:33 netbox/templates/tenancy/contact.html:67 -#: netbox/templates/tenancy/contactgroup.html:25 -#: netbox/templates/tenancy/contactrole.html:22 -#: netbox/templates/tenancy/tenant.html:24 -#: netbox/templates/tenancy/tenantgroup.html:33 -#: netbox/templates/users/group.html:21 -#: netbox/templates/users/objectpermission.html:21 -#: netbox/templates/users/token.html:27 -#: netbox/templates/virtualization/cluster.html:25 -#: netbox/templates/virtualization/clustergroup.html:26 -#: netbox/templates/virtualization/clustertype.html:26 -#: netbox/templates/virtualization/virtualdisk.html:39 -#: netbox/templates/virtualization/virtualmachine.html:31 -#: netbox/templates/virtualization/vminterface.html:51 -#: netbox/templates/vpn/ikepolicy.html:17 -#: netbox/templates/vpn/ikeproposal.html:17 -#: netbox/templates/vpn/ipsecpolicy.html:17 -#: netbox/templates/vpn/ipsecprofile.html:17 -#: netbox/templates/vpn/ipsecprofile.html:40 -#: netbox/templates/vpn/ipsecprofile.html:73 -#: netbox/templates/vpn/ipsecproposal.html:17 -#: netbox/templates/vpn/l2vpn.html:26 netbox/templates/vpn/tunnel.html:33 -#: netbox/templates/vpn/tunnelgroup.html:30 -#: netbox/templates/wireless/wirelesslan.html:26 -#: netbox/templates/wireless/wirelesslangroup.html:33 -#: netbox/templates/wireless/wirelesslink.html:34 -#: netbox/tenancy/forms/bulk_edit.py:32 netbox/tenancy/forms/bulk_edit.py:80 -#: netbox/tenancy/forms/bulk_edit.py:122 netbox/users/forms/bulk_edit.py:64 -#: netbox/users/forms/bulk_edit.py:82 netbox/users/forms/bulk_edit.py:112 -#: netbox/virtualization/forms/bulk_edit.py:32 -#: netbox/virtualization/forms/bulk_edit.py:46 -#: netbox/virtualization/forms/bulk_edit.py:100 -#: netbox/virtualization/forms/bulk_edit.py:177 -#: netbox/virtualization/forms/bulk_edit.py:228 -#: netbox/virtualization/forms/bulk_edit.py:337 -#: netbox/vpn/forms/bulk_edit.py:28 netbox/vpn/forms/bulk_edit.py:64 -#: netbox/vpn/forms/bulk_edit.py:121 netbox/vpn/forms/bulk_edit.py:155 -#: netbox/vpn/forms/bulk_edit.py:190 netbox/vpn/forms/bulk_edit.py:215 -#: netbox/vpn/forms/bulk_edit.py:247 netbox/vpn/forms/bulk_edit.py:274 -#: netbox/wireless/forms/bulk_edit.py:29 netbox/wireless/forms/bulk_edit.py:82 -#: netbox/wireless/forms/bulk_edit.py:140 +#: circuits/forms/bulk_edit.py:34 circuits/forms/bulk_edit.py:56 +#: circuits/forms/bulk_edit.py:83 circuits/forms/bulk_edit.py:104 +#: circuits/forms/bulk_edit.py:164 circuits/forms/bulk_edit.py:183 +#: circuits/forms/bulk_edit.py:228 core/forms/bulk_edit.py:28 +#: dcim/forms/bulk_create.py:35 dcim/forms/bulk_edit.py:73 +#: dcim/forms/bulk_edit.py:92 dcim/forms/bulk_edit.py:151 +#: dcim/forms/bulk_edit.py:192 dcim/forms/bulk_edit.py:210 +#: dcim/forms/bulk_edit.py:288 dcim/forms/bulk_edit.py:432 +#: dcim/forms/bulk_edit.py:466 dcim/forms/bulk_edit.py:481 +#: dcim/forms/bulk_edit.py:540 dcim/forms/bulk_edit.py:584 +#: dcim/forms/bulk_edit.py:618 dcim/forms/bulk_edit.py:642 +#: dcim/forms/bulk_edit.py:715 dcim/forms/bulk_edit.py:767 +#: dcim/forms/bulk_edit.py:819 dcim/forms/bulk_edit.py:842 +#: dcim/forms/bulk_edit.py:890 dcim/forms/bulk_edit.py:960 +#: dcim/forms/bulk_edit.py:1013 dcim/forms/bulk_edit.py:1048 +#: dcim/forms/bulk_edit.py:1088 dcim/forms/bulk_edit.py:1132 +#: dcim/forms/bulk_edit.py:1177 dcim/forms/bulk_edit.py:1204 +#: dcim/forms/bulk_edit.py:1222 dcim/forms/bulk_edit.py:1240 +#: dcim/forms/bulk_edit.py:1258 dcim/forms/bulk_edit.py:1682 +#: extras/forms/bulk_edit.py:39 extras/forms/bulk_edit.py:149 +#: extras/forms/bulk_edit.py:178 extras/forms/bulk_edit.py:208 +#: extras/forms/bulk_edit.py:256 extras/forms/bulk_edit.py:274 +#: extras/forms/bulk_edit.py:298 extras/forms/bulk_edit.py:312 +#: extras/forms/bulk_edit.py:339 extras/tables/tables.py:79 +#: ipam/forms/bulk_edit.py:53 ipam/forms/bulk_edit.py:73 +#: ipam/forms/bulk_edit.py:93 ipam/forms/bulk_edit.py:117 +#: ipam/forms/bulk_edit.py:146 ipam/forms/bulk_edit.py:175 +#: ipam/forms/bulk_edit.py:194 ipam/forms/bulk_edit.py:276 +#: ipam/forms/bulk_edit.py:321 ipam/forms/bulk_edit.py:369 +#: ipam/forms/bulk_edit.py:412 ipam/forms/bulk_edit.py:428 +#: ipam/forms/bulk_edit.py:516 ipam/forms/bulk_edit.py:547 +#: templates/account/token.html:35 templates/circuits/circuit.html:59 +#: templates/circuits/circuitgroup.html:32 +#: templates/circuits/circuittype.html:26 +#: templates/circuits/inc/circuit_termination_fields.html:88 +#: templates/circuits/provider.html:33 +#: templates/circuits/providernetwork.html:32 +#: templates/core/datasource.html:54 templates/core/plugin.html:80 +#: templates/dcim/cable.html:36 templates/dcim/consoleport.html:44 +#: templates/dcim/consoleserverport.html:44 templates/dcim/device.html:94 +#: templates/dcim/devicebay.html:32 templates/dcim/devicerole.html:30 +#: templates/dcim/devicetype.html:33 templates/dcim/frontport.html:58 +#: templates/dcim/interface.html:69 templates/dcim/inventoryitem.html:60 +#: templates/dcim/inventoryitemrole.html:22 templates/dcim/location.html:33 +#: templates/dcim/manufacturer.html:40 templates/dcim/module.html:73 +#: templates/dcim/modulebay.html:42 templates/dcim/moduletype.html:37 +#: templates/dcim/platform.html:33 templates/dcim/powerfeed.html:40 +#: templates/dcim/poweroutlet.html:40 templates/dcim/powerpanel.html:30 +#: templates/dcim/powerport.html:40 templates/dcim/rack.html:53 +#: templates/dcim/rackreservation.html:62 templates/dcim/rackrole.html:26 +#: templates/dcim/racktype.html:24 templates/dcim/rearport.html:54 +#: templates/dcim/region.html:33 templates/dcim/site.html:60 +#: templates/dcim/sitegroup.html:33 templates/dcim/virtualchassis.html:31 +#: templates/extras/configcontext.html:21 +#: templates/extras/configtemplate.html:17 +#: templates/extras/customfield.html:34 +#: templates/extras/dashboard/widget_add.html:14 +#: templates/extras/eventrule.html:21 templates/extras/exporttemplate.html:19 +#: templates/extras/notificationgroup.html:20 +#: templates/extras/savedfilter.html:17 templates/extras/script_list.html:45 +#: templates/extras/tag.html:20 templates/extras/webhook.html:17 +#: templates/generic/bulk_import.html:120 templates/ipam/aggregate.html:43 +#: templates/ipam/asn.html:42 templates/ipam/asnrange.html:38 +#: templates/ipam/fhrpgroup.html:34 templates/ipam/ipaddress.html:55 +#: templates/ipam/iprange.html:67 templates/ipam/prefix.html:81 +#: templates/ipam/rir.html:26 templates/ipam/role.html:26 +#: templates/ipam/routetarget.html:21 templates/ipam/service.html:50 +#: templates/ipam/servicetemplate.html:27 templates/ipam/vlan.html:62 +#: templates/ipam/vlangroup.html:34 templates/ipam/vrf.html:33 +#: templates/tenancy/contact.html:67 templates/tenancy/contactgroup.html:25 +#: templates/tenancy/contactrole.html:22 templates/tenancy/tenant.html:24 +#: templates/tenancy/tenantgroup.html:33 templates/users/group.html:21 +#: templates/users/objectpermission.html:21 templates/users/token.html:27 +#: templates/virtualization/cluster.html:25 +#: templates/virtualization/clustergroup.html:26 +#: templates/virtualization/clustertype.html:26 +#: templates/virtualization/virtualdisk.html:39 +#: templates/virtualization/virtualmachine.html:31 +#: templates/virtualization/vminterface.html:51 +#: templates/vpn/ikepolicy.html:17 templates/vpn/ikeproposal.html:17 +#: templates/vpn/ipsecpolicy.html:17 templates/vpn/ipsecprofile.html:17 +#: templates/vpn/ipsecprofile.html:40 templates/vpn/ipsecprofile.html:73 +#: templates/vpn/ipsecproposal.html:17 templates/vpn/l2vpn.html:26 +#: templates/vpn/tunnel.html:33 templates/vpn/tunnelgroup.html:30 +#: templates/wireless/wirelesslan.html:26 +#: templates/wireless/wirelesslangroup.html:33 +#: templates/wireless/wirelesslink.html:34 tenancy/forms/bulk_edit.py:32 +#: tenancy/forms/bulk_edit.py:80 tenancy/forms/bulk_edit.py:122 +#: users/forms/bulk_edit.py:64 users/forms/bulk_edit.py:82 +#: users/forms/bulk_edit.py:112 virtualization/forms/bulk_edit.py:32 +#: virtualization/forms/bulk_edit.py:46 virtualization/forms/bulk_edit.py:100 +#: virtualization/forms/bulk_edit.py:177 virtualization/forms/bulk_edit.py:228 +#: virtualization/forms/bulk_edit.py:337 vpn/forms/bulk_edit.py:28 +#: vpn/forms/bulk_edit.py:64 vpn/forms/bulk_edit.py:121 +#: vpn/forms/bulk_edit.py:155 vpn/forms/bulk_edit.py:190 +#: vpn/forms/bulk_edit.py:215 vpn/forms/bulk_edit.py:247 +#: vpn/forms/bulk_edit.py:274 wireless/forms/bulk_edit.py:29 +#: wireless/forms/bulk_edit.py:82 wireless/forms/bulk_edit.py:140 msgid "Description" msgstr "Popis" -#: netbox/circuits/forms/bulk_edit.py:51 netbox/circuits/forms/bulk_edit.py:73 -#: netbox/circuits/forms/bulk_edit.py:123 -#: netbox/circuits/forms/bulk_import.py:36 -#: netbox/circuits/forms/bulk_import.py:51 -#: netbox/circuits/forms/bulk_import.py:74 -#: netbox/circuits/forms/filtersets.py:70 -#: netbox/circuits/forms/filtersets.py:88 -#: netbox/circuits/forms/filtersets.py:116 -#: netbox/circuits/forms/filtersets.py:131 -#: netbox/circuits/forms/filtersets.py:199 -#: netbox/circuits/forms/filtersets.py:232 -#: netbox/circuits/forms/filtersets.py:255 -#: netbox/circuits/forms/model_forms.py:47 -#: netbox/circuits/forms/model_forms.py:61 -#: netbox/circuits/forms/model_forms.py:93 -#: netbox/circuits/tables/circuits.py:58 -#: netbox/circuits/tables/circuits.py:108 -#: netbox/circuits/tables/circuits.py:160 -#: netbox/circuits/tables/providers.py:72 -#: netbox/circuits/tables/providers.py:103 -#: netbox/templates/circuits/circuit.html:18 -#: netbox/templates/circuits/circuittermination.html:25 -#: netbox/templates/circuits/provider.html:20 -#: netbox/templates/circuits/provideraccount.html:20 -#: netbox/templates/circuits/providernetwork.html:20 -#: netbox/templates/dcim/inc/cable_termination.html:51 +#: circuits/forms/bulk_edit.py:51 circuits/forms/bulk_edit.py:73 +#: circuits/forms/bulk_edit.py:123 circuits/forms/bulk_import.py:36 +#: circuits/forms/bulk_import.py:51 circuits/forms/bulk_import.py:74 +#: circuits/forms/filtersets.py:70 circuits/forms/filtersets.py:88 +#: circuits/forms/filtersets.py:116 circuits/forms/filtersets.py:131 +#: circuits/forms/filtersets.py:199 circuits/forms/filtersets.py:232 +#: circuits/forms/filtersets.py:255 circuits/forms/model_forms.py:47 +#: circuits/forms/model_forms.py:61 circuits/forms/model_forms.py:93 +#: circuits/tables/circuits.py:58 circuits/tables/circuits.py:108 +#: circuits/tables/circuits.py:160 circuits/tables/providers.py:72 +#: circuits/tables/providers.py:103 templates/circuits/circuit.html:18 +#: templates/circuits/circuittermination.html:25 +#: templates/circuits/provider.html:20 +#: templates/circuits/provideraccount.html:20 +#: templates/circuits/providernetwork.html:20 +#: templates/dcim/inc/cable_termination.html:51 msgid "Provider" msgstr "Poskytovatel" -#: netbox/circuits/forms/bulk_edit.py:80 -#: netbox/circuits/forms/filtersets.py:91 -#: netbox/templates/circuits/providernetwork.html:28 +#: circuits/forms/bulk_edit.py:80 circuits/forms/filtersets.py:91 +#: templates/circuits/providernetwork.html:28 msgid "Service ID" msgstr "ID služby" -#: netbox/circuits/forms/bulk_edit.py:100 -#: netbox/circuits/forms/filtersets.py:107 netbox/dcim/forms/bulk_edit.py:206 -#: netbox/dcim/forms/bulk_edit.py:604 netbox/dcim/forms/bulk_edit.py:804 -#: netbox/dcim/forms/bulk_edit.py:1173 netbox/dcim/forms/bulk_edit.py:1200 -#: netbox/dcim/forms/bulk_edit.py:1678 netbox/dcim/forms/filtersets.py:1064 -#: netbox/dcim/forms/filtersets.py:1455 netbox/dcim/forms/filtersets.py:1479 -#: netbox/dcim/tables/devices.py:704 netbox/dcim/tables/devices.py:761 -#: netbox/dcim/tables/devices.py:1003 netbox/dcim/tables/devicetypes.py:249 -#: netbox/dcim/tables/devicetypes.py:264 netbox/dcim/tables/racks.py:33 -#: netbox/extras/forms/bulk_edit.py:270 netbox/extras/tables/tables.py:443 -#: netbox/templates/circuits/circuittype.html:30 -#: netbox/templates/dcim/cable.html:40 -#: netbox/templates/dcim/devicerole.html:34 -#: netbox/templates/dcim/frontport.html:40 -#: netbox/templates/dcim/inventoryitemrole.html:26 -#: netbox/templates/dcim/rackrole.html:30 -#: netbox/templates/dcim/rearport.html:40 netbox/templates/extras/tag.html:26 +#: circuits/forms/bulk_edit.py:100 circuits/forms/filtersets.py:107 +#: dcim/forms/bulk_edit.py:206 dcim/forms/bulk_edit.py:604 +#: dcim/forms/bulk_edit.py:804 dcim/forms/bulk_edit.py:1173 +#: dcim/forms/bulk_edit.py:1200 dcim/forms/bulk_edit.py:1678 +#: dcim/forms/filtersets.py:1064 dcim/forms/filtersets.py:1455 +#: dcim/forms/filtersets.py:1479 dcim/tables/devices.py:704 +#: dcim/tables/devices.py:761 dcim/tables/devices.py:1003 +#: dcim/tables/devicetypes.py:249 dcim/tables/devicetypes.py:264 +#: dcim/tables/racks.py:33 extras/forms/bulk_edit.py:270 +#: extras/tables/tables.py:443 templates/circuits/circuittype.html:30 +#: templates/dcim/cable.html:40 templates/dcim/devicerole.html:34 +#: templates/dcim/frontport.html:40 templates/dcim/inventoryitemrole.html:26 +#: templates/dcim/rackrole.html:30 templates/dcim/rearport.html:40 +#: templates/extras/tag.html:26 msgid "Color" msgstr "Barva" -#: netbox/circuits/forms/bulk_edit.py:118 -#: netbox/circuits/forms/bulk_import.py:87 -#: netbox/circuits/forms/filtersets.py:126 netbox/core/forms/bulk_edit.py:18 -#: netbox/core/forms/filtersets.py:33 netbox/core/tables/change_logging.py:32 -#: netbox/core/tables/data.py:20 netbox/core/tables/jobs.py:18 -#: netbox/dcim/forms/bulk_edit.py:782 netbox/dcim/forms/bulk_edit.py:921 -#: netbox/dcim/forms/bulk_edit.py:989 netbox/dcim/forms/bulk_edit.py:1008 -#: netbox/dcim/forms/bulk_edit.py:1031 netbox/dcim/forms/bulk_edit.py:1073 -#: netbox/dcim/forms/bulk_edit.py:1117 netbox/dcim/forms/bulk_edit.py:1168 -#: netbox/dcim/forms/bulk_edit.py:1195 netbox/dcim/forms/bulk_import.py:188 -#: netbox/dcim/forms/bulk_import.py:260 netbox/dcim/forms/bulk_import.py:708 -#: netbox/dcim/forms/bulk_import.py:734 netbox/dcim/forms/bulk_import.py:760 -#: netbox/dcim/forms/bulk_import.py:780 netbox/dcim/forms/bulk_import.py:863 -#: netbox/dcim/forms/bulk_import.py:957 netbox/dcim/forms/bulk_import.py:999 -#: netbox/dcim/forms/bulk_import.py:1213 netbox/dcim/forms/bulk_import.py:1376 -#: netbox/dcim/forms/filtersets.py:955 netbox/dcim/forms/filtersets.py:1054 -#: netbox/dcim/forms/filtersets.py:1175 netbox/dcim/forms/filtersets.py:1247 -#: netbox/dcim/forms/filtersets.py:1272 netbox/dcim/forms/filtersets.py:1296 -#: netbox/dcim/forms/filtersets.py:1316 netbox/dcim/forms/filtersets.py:1353 -#: netbox/dcim/forms/filtersets.py:1450 netbox/dcim/forms/filtersets.py:1474 -#: netbox/dcim/forms/model_forms.py:703 netbox/dcim/forms/model_forms.py:709 -#: netbox/dcim/forms/object_import.py:84 -#: netbox/dcim/forms/object_import.py:113 -#: netbox/dcim/forms/object_import.py:145 netbox/dcim/tables/devices.py:178 -#: netbox/dcim/tables/devices.py:814 netbox/dcim/tables/power.py:77 -#: netbox/dcim/tables/racks.py:138 netbox/extras/forms/bulk_import.py:42 -#: netbox/extras/tables/tables.py:405 netbox/extras/tables/tables.py:465 -#: netbox/netbox/tables/tables.py:240 -#: netbox/templates/circuits/circuit.html:30 -#: netbox/templates/core/datasource.html:38 -#: netbox/templates/dcim/cable.html:15 -#: netbox/templates/dcim/consoleport.html:36 -#: netbox/templates/dcim/consoleserverport.html:36 -#: netbox/templates/dcim/frontport.html:36 -#: netbox/templates/dcim/interface.html:46 -#: netbox/templates/dcim/interface.html:169 -#: netbox/templates/dcim/interface.html:311 -#: netbox/templates/dcim/powerfeed.html:32 -#: netbox/templates/dcim/poweroutlet.html:36 -#: netbox/templates/dcim/powerport.html:36 -#: netbox/templates/dcim/rearport.html:36 -#: netbox/templates/extras/eventrule.html:74 -#: netbox/templates/virtualization/cluster.html:17 -#: netbox/templates/vpn/l2vpn.html:22 -#: netbox/templates/wireless/inc/authentication_attrs.html:8 -#: netbox/templates/wireless/inc/wirelesslink_interface.html:14 -#: netbox/virtualization/forms/bulk_edit.py:60 -#: netbox/virtualization/forms/bulk_import.py:41 -#: netbox/virtualization/forms/filtersets.py:54 -#: netbox/virtualization/forms/model_forms.py:62 -#: netbox/virtualization/tables/clusters.py:66 -#: netbox/vpn/forms/bulk_edit.py:264 netbox/vpn/forms/bulk_import.py:264 -#: netbox/vpn/forms/filtersets.py:217 netbox/vpn/forms/model_forms.py:84 -#: netbox/vpn/forms/model_forms.py:119 netbox/vpn/forms/model_forms.py:231 +#: circuits/forms/bulk_edit.py:118 circuits/forms/bulk_import.py:87 +#: circuits/forms/filtersets.py:126 core/forms/bulk_edit.py:18 +#: core/forms/filtersets.py:33 core/tables/change_logging.py:32 +#: core/tables/data.py:20 core/tables/jobs.py:18 dcim/forms/bulk_edit.py:782 +#: dcim/forms/bulk_edit.py:921 dcim/forms/bulk_edit.py:989 +#: dcim/forms/bulk_edit.py:1008 dcim/forms/bulk_edit.py:1031 +#: dcim/forms/bulk_edit.py:1073 dcim/forms/bulk_edit.py:1117 +#: dcim/forms/bulk_edit.py:1168 dcim/forms/bulk_edit.py:1195 +#: dcim/forms/bulk_import.py:188 dcim/forms/bulk_import.py:260 +#: dcim/forms/bulk_import.py:708 dcim/forms/bulk_import.py:734 +#: dcim/forms/bulk_import.py:760 dcim/forms/bulk_import.py:780 +#: dcim/forms/bulk_import.py:863 dcim/forms/bulk_import.py:957 +#: dcim/forms/bulk_import.py:999 dcim/forms/bulk_import.py:1213 +#: dcim/forms/bulk_import.py:1376 dcim/forms/filtersets.py:955 +#: dcim/forms/filtersets.py:1054 dcim/forms/filtersets.py:1175 +#: dcim/forms/filtersets.py:1247 dcim/forms/filtersets.py:1272 +#: dcim/forms/filtersets.py:1296 dcim/forms/filtersets.py:1316 +#: dcim/forms/filtersets.py:1353 dcim/forms/filtersets.py:1450 +#: dcim/forms/filtersets.py:1474 dcim/forms/model_forms.py:703 +#: dcim/forms/model_forms.py:709 dcim/forms/object_import.py:84 +#: dcim/forms/object_import.py:113 dcim/forms/object_import.py:145 +#: dcim/tables/devices.py:178 dcim/tables/devices.py:814 +#: dcim/tables/power.py:77 dcim/tables/racks.py:138 +#: extras/forms/bulk_import.py:42 extras/tables/tables.py:405 +#: extras/tables/tables.py:465 netbox/tables/tables.py:240 +#: templates/circuits/circuit.html:30 templates/core/datasource.html:38 +#: templates/dcim/cable.html:15 templates/dcim/consoleport.html:36 +#: templates/dcim/consoleserverport.html:36 templates/dcim/frontport.html:36 +#: templates/dcim/interface.html:46 templates/dcim/interface.html:169 +#: templates/dcim/interface.html:311 templates/dcim/powerfeed.html:32 +#: templates/dcim/poweroutlet.html:36 templates/dcim/powerport.html:36 +#: templates/dcim/rearport.html:36 templates/extras/eventrule.html:74 +#: templates/virtualization/cluster.html:17 templates/vpn/l2vpn.html:22 +#: templates/wireless/inc/authentication_attrs.html:8 +#: templates/wireless/inc/wirelesslink_interface.html:14 +#: virtualization/forms/bulk_edit.py:60 virtualization/forms/bulk_import.py:41 +#: virtualization/forms/filtersets.py:54 +#: virtualization/forms/model_forms.py:62 virtualization/tables/clusters.py:66 +#: vpn/forms/bulk_edit.py:264 vpn/forms/bulk_import.py:264 +#: vpn/forms/filtersets.py:217 vpn/forms/model_forms.py:84 +#: vpn/forms/model_forms.py:119 vpn/forms/model_forms.py:231 msgid "Type" msgstr "Typ" -#: netbox/circuits/forms/bulk_edit.py:128 -#: netbox/circuits/forms/bulk_import.py:80 -#: netbox/circuits/forms/filtersets.py:139 -#: netbox/circuits/forms/model_forms.py:98 +#: circuits/forms/bulk_edit.py:128 circuits/forms/bulk_import.py:80 +#: circuits/forms/filtersets.py:139 circuits/forms/model_forms.py:98 msgid "Provider account" msgstr "Účet poskytovatele" -#: netbox/circuits/forms/bulk_edit.py:136 -#: netbox/circuits/forms/bulk_import.py:93 -#: netbox/circuits/forms/filtersets.py:150 netbox/core/forms/filtersets.py:38 -#: netbox/core/forms/filtersets.py:79 netbox/core/tables/data.py:23 -#: netbox/core/tables/jobs.py:26 netbox/core/tables/tasks.py:88 -#: netbox/dcim/forms/bulk_edit.py:106 netbox/dcim/forms/bulk_edit.py:181 -#: netbox/dcim/forms/bulk_edit.py:351 netbox/dcim/forms/bulk_edit.py:700 -#: netbox/dcim/forms/bulk_edit.py:756 netbox/dcim/forms/bulk_edit.py:788 -#: netbox/dcim/forms/bulk_edit.py:915 netbox/dcim/forms/bulk_edit.py:1701 -#: netbox/dcim/forms/bulk_import.py:88 netbox/dcim/forms/bulk_import.py:147 -#: netbox/dcim/forms/bulk_import.py:248 netbox/dcim/forms/bulk_import.py:505 -#: netbox/dcim/forms/bulk_import.py:659 netbox/dcim/forms/bulk_import.py:1207 -#: netbox/dcim/forms/bulk_import.py:1371 netbox/dcim/forms/bulk_import.py:1435 -#: netbox/dcim/forms/filtersets.py:178 netbox/dcim/forms/filtersets.py:237 -#: netbox/dcim/forms/filtersets.py:359 netbox/dcim/forms/filtersets.py:799 -#: netbox/dcim/forms/filtersets.py:924 netbox/dcim/forms/filtersets.py:958 -#: netbox/dcim/forms/filtersets.py:1059 netbox/dcim/forms/filtersets.py:1170 -#: netbox/dcim/tables/devices.py:140 netbox/dcim/tables/devices.py:817 -#: netbox/dcim/tables/devices.py:1063 netbox/dcim/tables/modules.py:69 -#: netbox/dcim/tables/power.py:74 netbox/dcim/tables/racks.py:126 -#: netbox/dcim/tables/sites.py:82 netbox/dcim/tables/sites.py:138 -#: netbox/ipam/forms/bulk_edit.py:255 netbox/ipam/forms/bulk_edit.py:305 -#: netbox/ipam/forms/bulk_edit.py:353 netbox/ipam/forms/bulk_edit.py:551 -#: netbox/ipam/forms/bulk_import.py:192 netbox/ipam/forms/bulk_import.py:257 -#: netbox/ipam/forms/bulk_import.py:293 netbox/ipam/forms/bulk_import.py:450 -#: netbox/ipam/forms/filtersets.py:210 netbox/ipam/forms/filtersets.py:281 -#: netbox/ipam/forms/filtersets.py:355 netbox/ipam/forms/filtersets.py:501 -#: netbox/ipam/forms/model_forms.py:468 netbox/ipam/tables/ip.py:237 -#: netbox/ipam/tables/ip.py:312 netbox/ipam/tables/ip.py:363 -#: netbox/ipam/tables/ip.py:426 netbox/ipam/tables/ip.py:453 -#: netbox/ipam/tables/vlans.py:126 netbox/ipam/tables/vlans.py:232 -#: netbox/templates/circuits/circuit.html:34 -#: netbox/templates/core/datasource.html:46 netbox/templates/core/job.html:48 -#: netbox/templates/core/rq_task.html:81 netbox/templates/core/system.html:18 -#: netbox/templates/dcim/cable.html:19 netbox/templates/dcim/device.html:178 -#: netbox/templates/dcim/location.html:45 netbox/templates/dcim/module.html:69 -#: netbox/templates/dcim/powerfeed.html:36 netbox/templates/dcim/rack.html:41 -#: netbox/templates/dcim/site.html:43 -#: netbox/templates/extras/script_list.html:47 -#: netbox/templates/ipam/ipaddress.html:37 -#: netbox/templates/ipam/iprange.html:54 netbox/templates/ipam/prefix.html:73 -#: netbox/templates/ipam/vlan.html:48 -#: netbox/templates/virtualization/cluster.html:21 -#: netbox/templates/virtualization/virtualmachine.html:19 -#: netbox/templates/vpn/tunnel.html:25 -#: netbox/templates/wireless/wirelesslan.html:22 -#: netbox/templates/wireless/wirelesslink.html:17 -#: netbox/users/forms/filtersets.py:32 netbox/users/forms/model_forms.py:194 -#: netbox/virtualization/forms/bulk_edit.py:70 -#: netbox/virtualization/forms/bulk_edit.py:118 -#: netbox/virtualization/forms/bulk_import.py:54 -#: netbox/virtualization/forms/bulk_import.py:80 -#: netbox/virtualization/forms/filtersets.py:62 -#: netbox/virtualization/forms/filtersets.py:160 -#: netbox/virtualization/tables/clusters.py:74 -#: netbox/virtualization/tables/virtualmachines.py:60 -#: netbox/vpn/forms/bulk_edit.py:39 netbox/vpn/forms/bulk_import.py:37 -#: netbox/vpn/forms/filtersets.py:47 netbox/vpn/tables/tunnels.py:48 -#: netbox/wireless/forms/bulk_edit.py:43 -#: netbox/wireless/forms/bulk_edit.py:105 -#: netbox/wireless/forms/bulk_import.py:43 -#: netbox/wireless/forms/bulk_import.py:84 -#: netbox/wireless/forms/filtersets.py:49 -#: netbox/wireless/forms/filtersets.py:83 -#: netbox/wireless/tables/wirelesslan.py:52 -#: netbox/wireless/tables/wirelesslink.py:20 +#: circuits/forms/bulk_edit.py:136 circuits/forms/bulk_import.py:93 +#: circuits/forms/filtersets.py:150 core/forms/filtersets.py:38 +#: core/forms/filtersets.py:79 core/tables/data.py:23 core/tables/jobs.py:26 +#: core/tables/tasks.py:88 dcim/forms/bulk_edit.py:106 +#: dcim/forms/bulk_edit.py:181 dcim/forms/bulk_edit.py:351 +#: dcim/forms/bulk_edit.py:700 dcim/forms/bulk_edit.py:756 +#: dcim/forms/bulk_edit.py:788 dcim/forms/bulk_edit.py:915 +#: dcim/forms/bulk_edit.py:1701 dcim/forms/bulk_import.py:88 +#: dcim/forms/bulk_import.py:147 dcim/forms/bulk_import.py:248 +#: dcim/forms/bulk_import.py:505 dcim/forms/bulk_import.py:659 +#: dcim/forms/bulk_import.py:1207 dcim/forms/bulk_import.py:1371 +#: dcim/forms/bulk_import.py:1435 dcim/forms/filtersets.py:178 +#: dcim/forms/filtersets.py:237 dcim/forms/filtersets.py:359 +#: dcim/forms/filtersets.py:799 dcim/forms/filtersets.py:924 +#: dcim/forms/filtersets.py:958 dcim/forms/filtersets.py:1059 +#: dcim/forms/filtersets.py:1170 dcim/tables/devices.py:140 +#: dcim/tables/devices.py:817 dcim/tables/devices.py:1063 +#: dcim/tables/modules.py:69 dcim/tables/power.py:74 dcim/tables/racks.py:126 +#: dcim/tables/sites.py:82 dcim/tables/sites.py:138 +#: ipam/forms/bulk_edit.py:256 ipam/forms/bulk_edit.py:306 +#: ipam/forms/bulk_edit.py:354 ipam/forms/bulk_edit.py:506 +#: ipam/forms/bulk_import.py:192 ipam/forms/bulk_import.py:257 +#: ipam/forms/bulk_import.py:293 ipam/forms/bulk_import.py:450 +#: ipam/forms/filtersets.py:210 ipam/forms/filtersets.py:281 +#: ipam/forms/filtersets.py:355 ipam/forms/filtersets.py:501 +#: ipam/forms/model_forms.py:468 ipam/tables/ip.py:237 ipam/tables/ip.py:312 +#: ipam/tables/ip.py:363 ipam/tables/ip.py:426 ipam/tables/ip.py:453 +#: ipam/tables/vlans.py:126 ipam/tables/vlans.py:232 +#: templates/circuits/circuit.html:34 templates/core/datasource.html:46 +#: templates/core/job.html:48 templates/core/rq_task.html:81 +#: templates/core/system.html:18 templates/dcim/cable.html:19 +#: templates/dcim/device.html:178 templates/dcim/location.html:45 +#: templates/dcim/module.html:69 templates/dcim/powerfeed.html:36 +#: templates/dcim/rack.html:41 templates/dcim/site.html:43 +#: templates/extras/script_list.html:47 templates/ipam/ipaddress.html:37 +#: templates/ipam/iprange.html:54 templates/ipam/prefix.html:73 +#: templates/ipam/vlan.html:48 templates/virtualization/cluster.html:21 +#: templates/virtualization/virtualmachine.html:19 +#: templates/vpn/tunnel.html:25 templates/wireless/wirelesslan.html:22 +#: templates/wireless/wirelesslink.html:17 users/forms/filtersets.py:32 +#: users/forms/model_forms.py:194 virtualization/forms/bulk_edit.py:70 +#: virtualization/forms/bulk_edit.py:118 +#: virtualization/forms/bulk_import.py:54 +#: virtualization/forms/bulk_import.py:80 +#: virtualization/forms/filtersets.py:62 +#: virtualization/forms/filtersets.py:160 virtualization/tables/clusters.py:74 +#: virtualization/tables/virtualmachines.py:60 vpn/forms/bulk_edit.py:39 +#: vpn/forms/bulk_import.py:37 vpn/forms/filtersets.py:47 +#: vpn/tables/tunnels.py:48 wireless/forms/bulk_edit.py:43 +#: wireless/forms/bulk_edit.py:105 wireless/forms/bulk_import.py:43 +#: wireless/forms/bulk_import.py:84 wireless/forms/filtersets.py:49 +#: wireless/forms/filtersets.py:83 wireless/tables/wirelesslan.py:52 +#: wireless/tables/wirelesslink.py:20 msgid "Status" msgstr "Stav" -#: netbox/circuits/forms/bulk_edit.py:142 -#: netbox/circuits/forms/bulk_edit.py:233 -#: netbox/circuits/forms/bulk_import.py:98 -#: netbox/circuits/forms/bulk_import.py:158 -#: netbox/circuits/forms/filtersets.py:119 -#: netbox/circuits/forms/filtersets.py:241 netbox/dcim/forms/bulk_edit.py:122 -#: netbox/dcim/forms/bulk_edit.py:187 netbox/dcim/forms/bulk_edit.py:346 -#: netbox/dcim/forms/bulk_edit.py:461 netbox/dcim/forms/bulk_edit.py:690 -#: netbox/dcim/forms/bulk_edit.py:794 netbox/dcim/forms/bulk_edit.py:1706 -#: netbox/dcim/forms/bulk_import.py:107 netbox/dcim/forms/bulk_import.py:152 -#: netbox/dcim/forms/bulk_import.py:241 netbox/dcim/forms/bulk_import.py:334 -#: netbox/dcim/forms/bulk_import.py:479 netbox/dcim/forms/bulk_import.py:1219 -#: netbox/dcim/forms/bulk_import.py:1428 netbox/dcim/forms/filtersets.py:173 -#: netbox/dcim/forms/filtersets.py:205 netbox/dcim/forms/filtersets.py:323 -#: netbox/dcim/forms/filtersets.py:399 netbox/dcim/forms/filtersets.py:420 -#: netbox/dcim/forms/filtersets.py:722 netbox/dcim/forms/filtersets.py:916 -#: netbox/dcim/forms/filtersets.py:978 netbox/dcim/forms/filtersets.py:1008 -#: netbox/dcim/forms/filtersets.py:1130 netbox/dcim/tables/power.py:88 -#: netbox/extras/filtersets.py:612 netbox/extras/forms/filtersets.py:323 -#: netbox/extras/forms/filtersets.py:396 netbox/ipam/forms/bulk_edit.py:42 -#: netbox/ipam/forms/bulk_edit.py:67 netbox/ipam/forms/bulk_edit.py:111 -#: netbox/ipam/forms/bulk_edit.py:140 netbox/ipam/forms/bulk_edit.py:165 -#: netbox/ipam/forms/bulk_edit.py:250 netbox/ipam/forms/bulk_edit.py:300 -#: netbox/ipam/forms/bulk_edit.py:348 netbox/ipam/forms/bulk_edit.py:546 -#: netbox/ipam/forms/bulk_import.py:38 netbox/ipam/forms/bulk_import.py:67 -#: netbox/ipam/forms/bulk_import.py:95 netbox/ipam/forms/bulk_import.py:115 -#: netbox/ipam/forms/bulk_import.py:135 netbox/ipam/forms/bulk_import.py:164 -#: netbox/ipam/forms/bulk_import.py:250 netbox/ipam/forms/bulk_import.py:286 -#: netbox/ipam/forms/bulk_import.py:443 netbox/ipam/forms/filtersets.py:48 -#: netbox/ipam/forms/filtersets.py:68 netbox/ipam/forms/filtersets.py:100 -#: netbox/ipam/forms/filtersets.py:120 netbox/ipam/forms/filtersets.py:143 -#: netbox/ipam/forms/filtersets.py:174 netbox/ipam/forms/filtersets.py:267 -#: netbox/ipam/forms/filtersets.py:310 netbox/ipam/forms/filtersets.py:469 -#: netbox/ipam/tables/ip.py:456 netbox/ipam/tables/vlans.py:229 -#: netbox/templates/circuits/circuit.html:38 -#: netbox/templates/circuits/circuitgroup.html:36 -#: netbox/templates/dcim/cable.html:23 netbox/templates/dcim/device.html:79 -#: netbox/templates/dcim/location.html:49 -#: netbox/templates/dcim/powerfeed.html:44 netbox/templates/dcim/rack.html:32 -#: netbox/templates/dcim/rackreservation.html:49 -#: netbox/templates/dcim/site.html:47 -#: netbox/templates/dcim/virtualdevicecontext.html:52 -#: netbox/templates/ipam/aggregate.html:30 netbox/templates/ipam/asn.html:33 -#: netbox/templates/ipam/asnrange.html:29 -#: netbox/templates/ipam/ipaddress.html:28 -#: netbox/templates/ipam/iprange.html:58 netbox/templates/ipam/prefix.html:29 -#: netbox/templates/ipam/routetarget.html:17 -#: netbox/templates/ipam/vlan.html:39 netbox/templates/ipam/vrf.html:20 -#: netbox/templates/tenancy/tenant.html:17 -#: netbox/templates/virtualization/cluster.html:33 -#: netbox/templates/virtualization/virtualmachine.html:39 -#: netbox/templates/vpn/l2vpn.html:30 netbox/templates/vpn/tunnel.html:49 -#: netbox/templates/wireless/wirelesslan.html:34 -#: netbox/templates/wireless/wirelesslink.html:25 -#: netbox/tenancy/forms/forms.py:25 netbox/tenancy/forms/forms.py:48 -#: netbox/tenancy/forms/model_forms.py:52 netbox/tenancy/tables/columns.py:64 -#: netbox/virtualization/forms/bulk_edit.py:76 -#: netbox/virtualization/forms/bulk_edit.py:155 -#: netbox/virtualization/forms/bulk_import.py:66 -#: netbox/virtualization/forms/bulk_import.py:115 -#: netbox/virtualization/forms/filtersets.py:47 -#: netbox/virtualization/forms/filtersets.py:105 -#: netbox/vpn/forms/bulk_edit.py:59 netbox/vpn/forms/bulk_edit.py:269 -#: netbox/vpn/forms/bulk_import.py:59 netbox/vpn/forms/bulk_import.py:258 -#: netbox/vpn/forms/filtersets.py:214 netbox/wireless/forms/bulk_edit.py:63 -#: netbox/wireless/forms/bulk_edit.py:110 -#: netbox/wireless/forms/bulk_import.py:55 -#: netbox/wireless/forms/bulk_import.py:97 -#: netbox/wireless/forms/filtersets.py:35 -#: netbox/wireless/forms/filtersets.py:75 +#: circuits/forms/bulk_edit.py:142 circuits/forms/bulk_edit.py:233 +#: circuits/forms/bulk_import.py:98 circuits/forms/bulk_import.py:158 +#: circuits/forms/filtersets.py:119 circuits/forms/filtersets.py:241 +#: dcim/forms/bulk_edit.py:122 dcim/forms/bulk_edit.py:187 +#: dcim/forms/bulk_edit.py:346 dcim/forms/bulk_edit.py:461 +#: dcim/forms/bulk_edit.py:690 dcim/forms/bulk_edit.py:794 +#: dcim/forms/bulk_edit.py:1706 dcim/forms/bulk_import.py:107 +#: dcim/forms/bulk_import.py:152 dcim/forms/bulk_import.py:241 +#: dcim/forms/bulk_import.py:334 dcim/forms/bulk_import.py:479 +#: dcim/forms/bulk_import.py:1219 dcim/forms/bulk_import.py:1428 +#: dcim/forms/filtersets.py:173 dcim/forms/filtersets.py:205 +#: dcim/forms/filtersets.py:323 dcim/forms/filtersets.py:399 +#: dcim/forms/filtersets.py:420 dcim/forms/filtersets.py:722 +#: dcim/forms/filtersets.py:916 dcim/forms/filtersets.py:978 +#: dcim/forms/filtersets.py:1008 dcim/forms/filtersets.py:1130 +#: dcim/tables/power.py:88 extras/filtersets.py:612 +#: extras/forms/filtersets.py:323 extras/forms/filtersets.py:396 +#: ipam/forms/bulk_edit.py:43 ipam/forms/bulk_edit.py:68 +#: ipam/forms/bulk_edit.py:112 ipam/forms/bulk_edit.py:141 +#: ipam/forms/bulk_edit.py:166 ipam/forms/bulk_edit.py:251 +#: ipam/forms/bulk_edit.py:301 ipam/forms/bulk_edit.py:349 +#: ipam/forms/bulk_edit.py:501 ipam/forms/bulk_import.py:38 +#: ipam/forms/bulk_import.py:67 ipam/forms/bulk_import.py:95 +#: ipam/forms/bulk_import.py:115 ipam/forms/bulk_import.py:135 +#: ipam/forms/bulk_import.py:164 ipam/forms/bulk_import.py:250 +#: ipam/forms/bulk_import.py:286 ipam/forms/bulk_import.py:443 +#: ipam/forms/filtersets.py:48 ipam/forms/filtersets.py:68 +#: ipam/forms/filtersets.py:100 ipam/forms/filtersets.py:120 +#: ipam/forms/filtersets.py:143 ipam/forms/filtersets.py:174 +#: ipam/forms/filtersets.py:267 ipam/forms/filtersets.py:310 +#: ipam/forms/filtersets.py:469 ipam/tables/ip.py:456 ipam/tables/vlans.py:229 +#: templates/circuits/circuit.html:38 templates/circuits/circuitgroup.html:36 +#: templates/dcim/cable.html:23 templates/dcim/device.html:79 +#: templates/dcim/location.html:49 templates/dcim/powerfeed.html:44 +#: templates/dcim/rack.html:32 templates/dcim/rackreservation.html:49 +#: templates/dcim/site.html:47 templates/dcim/virtualdevicecontext.html:52 +#: templates/ipam/aggregate.html:30 templates/ipam/asn.html:33 +#: templates/ipam/asnrange.html:29 templates/ipam/ipaddress.html:28 +#: templates/ipam/iprange.html:58 templates/ipam/prefix.html:29 +#: templates/ipam/routetarget.html:17 templates/ipam/vlan.html:39 +#: templates/ipam/vrf.html:20 templates/tenancy/tenant.html:17 +#: templates/virtualization/cluster.html:33 +#: templates/virtualization/virtualmachine.html:39 templates/vpn/l2vpn.html:30 +#: templates/vpn/tunnel.html:49 templates/wireless/wirelesslan.html:34 +#: templates/wireless/wirelesslink.html:25 tenancy/forms/forms.py:25 +#: tenancy/forms/forms.py:48 tenancy/forms/model_forms.py:52 +#: tenancy/tables/columns.py:64 virtualization/forms/bulk_edit.py:76 +#: virtualization/forms/bulk_edit.py:155 +#: virtualization/forms/bulk_import.py:66 +#: virtualization/forms/bulk_import.py:115 +#: virtualization/forms/filtersets.py:47 +#: virtualization/forms/filtersets.py:105 vpn/forms/bulk_edit.py:59 +#: vpn/forms/bulk_edit.py:269 vpn/forms/bulk_import.py:59 +#: vpn/forms/bulk_import.py:258 vpn/forms/filtersets.py:214 +#: wireless/forms/bulk_edit.py:63 wireless/forms/bulk_edit.py:110 +#: wireless/forms/bulk_import.py:55 wireless/forms/bulk_import.py:97 +#: wireless/forms/filtersets.py:35 wireless/forms/filtersets.py:75 msgid "Tenant" msgstr "Nájemce" -#: netbox/circuits/forms/bulk_edit.py:147 -#: netbox/circuits/forms/filtersets.py:174 +#: circuits/forms/bulk_edit.py:147 circuits/forms/filtersets.py:174 msgid "Install date" msgstr "Datum instalace" -#: netbox/circuits/forms/bulk_edit.py:152 -#: netbox/circuits/forms/filtersets.py:179 +#: circuits/forms/bulk_edit.py:152 circuits/forms/filtersets.py:179 msgid "Termination date" msgstr "Datum ukončení" -#: netbox/circuits/forms/bulk_edit.py:158 -#: netbox/circuits/forms/filtersets.py:186 +#: circuits/forms/bulk_edit.py:158 circuits/forms/filtersets.py:186 msgid "Commit rate (Kbps)" msgstr "Rychlost odevzdání (Kbps)" -#: netbox/circuits/forms/bulk_edit.py:173 -#: netbox/circuits/forms/model_forms.py:112 +#: circuits/forms/bulk_edit.py:173 circuits/forms/model_forms.py:112 msgid "Service Parameters" msgstr "Parametry služby" -#: netbox/circuits/forms/bulk_edit.py:174 -#: netbox/circuits/forms/model_forms.py:113 -#: netbox/circuits/forms/model_forms.py:183 -#: netbox/dcim/forms/model_forms.py:139 netbox/dcim/forms/model_forms.py:181 -#: netbox/dcim/forms/model_forms.py:266 netbox/dcim/forms/model_forms.py:323 -#: netbox/dcim/forms/model_forms.py:768 netbox/dcim/forms/model_forms.py:1692 -#: netbox/ipam/forms/model_forms.py:64 netbox/ipam/forms/model_forms.py:81 -#: netbox/ipam/forms/model_forms.py:115 netbox/ipam/forms/model_forms.py:136 -#: netbox/ipam/forms/model_forms.py:160 netbox/ipam/forms/model_forms.py:232 -#: netbox/ipam/forms/model_forms.py:261 netbox/ipam/forms/model_forms.py:316 -#: netbox/netbox/navigation/menu.py:24 -#: netbox/templates/dcim/device_edit.html:85 -#: netbox/templates/dcim/htmx/cable_edit.html:72 -#: netbox/templates/ipam/ipaddress_bulk_add.html:27 -#: netbox/templates/ipam/vlan_edit.html:22 -#: netbox/virtualization/forms/model_forms.py:80 -#: netbox/virtualization/forms/model_forms.py:222 -#: netbox/vpn/forms/bulk_edit.py:78 netbox/vpn/forms/filtersets.py:44 -#: netbox/vpn/forms/model_forms.py:62 netbox/vpn/forms/model_forms.py:147 -#: netbox/vpn/forms/model_forms.py:411 netbox/wireless/forms/model_forms.py:54 -#: netbox/wireless/forms/model_forms.py:170 +#: circuits/forms/bulk_edit.py:174 circuits/forms/model_forms.py:113 +#: circuits/forms/model_forms.py:183 dcim/forms/model_forms.py:139 +#: dcim/forms/model_forms.py:181 dcim/forms/model_forms.py:266 +#: dcim/forms/model_forms.py:323 dcim/forms/model_forms.py:768 +#: dcim/forms/model_forms.py:1692 ipam/forms/model_forms.py:64 +#: ipam/forms/model_forms.py:81 ipam/forms/model_forms.py:115 +#: ipam/forms/model_forms.py:136 ipam/forms/model_forms.py:160 +#: ipam/forms/model_forms.py:232 ipam/forms/model_forms.py:261 +#: ipam/forms/model_forms.py:316 netbox/navigation/menu.py:24 +#: templates/dcim/device_edit.html:85 templates/dcim/htmx/cable_edit.html:72 +#: templates/ipam/ipaddress_bulk_add.html:27 templates/ipam/vlan_edit.html:22 +#: virtualization/forms/model_forms.py:80 +#: virtualization/forms/model_forms.py:222 vpn/forms/bulk_edit.py:78 +#: vpn/forms/filtersets.py:44 vpn/forms/model_forms.py:62 +#: vpn/forms/model_forms.py:147 vpn/forms/model_forms.py:411 +#: wireless/forms/model_forms.py:54 wireless/forms/model_forms.py:170 msgid "Tenancy" msgstr "Nájem" -#: netbox/circuits/forms/bulk_edit.py:193 -#: netbox/circuits/forms/bulk_edit.py:217 -#: netbox/circuits/forms/model_forms.py:155 -#: netbox/circuits/tables/circuits.py:117 -#: netbox/templates/circuits/inc/circuit_termination_fields.html:62 -#: netbox/templates/circuits/providernetwork.html:17 +#: circuits/forms/bulk_edit.py:193 circuits/forms/bulk_edit.py:217 +#: circuits/forms/model_forms.py:155 circuits/tables/circuits.py:117 +#: templates/circuits/inc/circuit_termination_fields.html:62 +#: templates/circuits/providernetwork.html:17 msgid "Provider Network" msgstr "Síť poskytovatele" -#: netbox/circuits/forms/bulk_edit.py:199 +#: circuits/forms/bulk_edit.py:199 msgid "Port speed (Kbps)" msgstr "Rychlost portu (Kbps)" -#: netbox/circuits/forms/bulk_edit.py:203 +#: circuits/forms/bulk_edit.py:203 msgid "Upstream speed (Kbps)" msgstr "Odchozí rychlost (Kbps)" -#: netbox/circuits/forms/bulk_edit.py:206 netbox/dcim/forms/bulk_edit.py:951 -#: netbox/dcim/forms/bulk_edit.py:1315 netbox/dcim/forms/bulk_edit.py:1332 -#: netbox/dcim/forms/bulk_edit.py:1349 netbox/dcim/forms/bulk_edit.py:1367 -#: netbox/dcim/forms/bulk_edit.py:1455 netbox/dcim/forms/bulk_edit.py:1594 -#: netbox/dcim/forms/bulk_edit.py:1611 +#: circuits/forms/bulk_edit.py:206 dcim/forms/bulk_edit.py:951 +#: dcim/forms/bulk_edit.py:1315 dcim/forms/bulk_edit.py:1332 +#: dcim/forms/bulk_edit.py:1349 dcim/forms/bulk_edit.py:1367 +#: dcim/forms/bulk_edit.py:1455 dcim/forms/bulk_edit.py:1594 +#: dcim/forms/bulk_edit.py:1611 msgid "Mark connected" msgstr "Označit jako zapojené" -#: netbox/circuits/forms/bulk_edit.py:219 -#: netbox/circuits/forms/model_forms.py:157 -#: netbox/templates/circuits/inc/circuit_termination_fields.html:54 -#: netbox/templates/dcim/frontport.html:121 -#: netbox/templates/dcim/interface.html:193 -#: netbox/templates/dcim/rearport.html:111 +#: circuits/forms/bulk_edit.py:219 circuits/forms/model_forms.py:157 +#: templates/circuits/inc/circuit_termination_fields.html:54 +#: templates/dcim/frontport.html:121 templates/dcim/interface.html:193 +#: templates/dcim/rearport.html:111 msgid "Circuit Termination" msgstr "Zakončení okruhu" -#: netbox/circuits/forms/bulk_edit.py:221 -#: netbox/circuits/forms/model_forms.py:159 +#: circuits/forms/bulk_edit.py:221 circuits/forms/model_forms.py:159 msgid "Termination Details" msgstr "Podrobnosti o zakončení" -#: netbox/circuits/forms/bulk_edit.py:251 -#: netbox/circuits/forms/filtersets.py:268 -#: netbox/circuits/tables/circuits.py:168 netbox/dcim/forms/model_forms.py:551 -#: netbox/templates/circuits/circuitgroupassignment.html:30 -#: netbox/templates/dcim/device.html:133 -#: netbox/templates/dcim/virtualchassis.html:68 -#: netbox/templates/dcim/virtualchassis_edit.html:56 -#: netbox/templates/ipam/inc/panels/fhrp_groups.html:26 -#: netbox/tenancy/forms/bulk_edit.py:147 -#: netbox/tenancy/forms/filtersets.py:110 +#: circuits/forms/bulk_edit.py:251 circuits/forms/filtersets.py:268 +#: circuits/tables/circuits.py:168 dcim/forms/model_forms.py:551 +#: templates/circuits/circuitgroupassignment.html:30 +#: templates/dcim/device.html:133 templates/dcim/virtualchassis.html:68 +#: templates/dcim/virtualchassis_edit.html:56 +#: templates/ipam/inc/panels/fhrp_groups.html:26 +#: tenancy/forms/bulk_edit.py:147 tenancy/forms/filtersets.py:110 msgid "Priority" msgstr "Priorita" -#: netbox/circuits/forms/bulk_import.py:39 -#: netbox/circuits/forms/bulk_import.py:54 -#: netbox/circuits/forms/bulk_import.py:77 +#: circuits/forms/bulk_import.py:39 circuits/forms/bulk_import.py:54 +#: circuits/forms/bulk_import.py:77 msgid "Assigned provider" msgstr "Přiřazený poskytovatel" -#: netbox/circuits/forms/bulk_import.py:83 +#: circuits/forms/bulk_import.py:83 msgid "Assigned provider account" msgstr "Přiřazený účet poskytovatele" -#: netbox/circuits/forms/bulk_import.py:90 +#: circuits/forms/bulk_import.py:90 msgid "Type of circuit" msgstr "Typ okruhu" -#: netbox/circuits/forms/bulk_import.py:95 netbox/dcim/forms/bulk_import.py:90 -#: netbox/dcim/forms/bulk_import.py:149 netbox/dcim/forms/bulk_import.py:250 -#: netbox/dcim/forms/bulk_import.py:507 netbox/dcim/forms/bulk_import.py:661 -#: netbox/dcim/forms/bulk_import.py:1373 netbox/ipam/forms/bulk_import.py:194 -#: netbox/ipam/forms/bulk_import.py:259 netbox/ipam/forms/bulk_import.py:295 -#: netbox/ipam/forms/bulk_import.py:452 -#: netbox/virtualization/forms/bulk_import.py:56 -#: netbox/virtualization/forms/bulk_import.py:82 -#: netbox/vpn/forms/bulk_import.py:39 netbox/wireless/forms/bulk_import.py:45 +#: circuits/forms/bulk_import.py:95 dcim/forms/bulk_import.py:90 +#: dcim/forms/bulk_import.py:149 dcim/forms/bulk_import.py:250 +#: dcim/forms/bulk_import.py:507 dcim/forms/bulk_import.py:661 +#: dcim/forms/bulk_import.py:1373 ipam/forms/bulk_import.py:194 +#: ipam/forms/bulk_import.py:259 ipam/forms/bulk_import.py:295 +#: ipam/forms/bulk_import.py:452 virtualization/forms/bulk_import.py:56 +#: virtualization/forms/bulk_import.py:82 vpn/forms/bulk_import.py:39 +#: wireless/forms/bulk_import.py:45 msgid "Operational status" msgstr "Provozní stav" -#: netbox/circuits/forms/bulk_import.py:102 -#: netbox/circuits/forms/bulk_import.py:162 -#: netbox/dcim/forms/bulk_import.py:111 netbox/dcim/forms/bulk_import.py:156 -#: netbox/dcim/forms/bulk_import.py:338 netbox/dcim/forms/bulk_import.py:483 -#: netbox/dcim/forms/bulk_import.py:1223 netbox/dcim/forms/bulk_import.py:1368 -#: netbox/dcim/forms/bulk_import.py:1432 netbox/ipam/forms/bulk_import.py:42 -#: netbox/ipam/forms/bulk_import.py:71 netbox/ipam/forms/bulk_import.py:99 -#: netbox/ipam/forms/bulk_import.py:119 netbox/ipam/forms/bulk_import.py:139 -#: netbox/ipam/forms/bulk_import.py:168 netbox/ipam/forms/bulk_import.py:254 -#: netbox/ipam/forms/bulk_import.py:290 netbox/ipam/forms/bulk_import.py:447 -#: netbox/virtualization/forms/bulk_import.py:70 -#: netbox/virtualization/forms/bulk_import.py:119 -#: netbox/vpn/forms/bulk_import.py:63 netbox/wireless/forms/bulk_import.py:59 -#: netbox/wireless/forms/bulk_import.py:101 +#: circuits/forms/bulk_import.py:102 circuits/forms/bulk_import.py:162 +#: dcim/forms/bulk_import.py:111 dcim/forms/bulk_import.py:156 +#: dcim/forms/bulk_import.py:338 dcim/forms/bulk_import.py:483 +#: dcim/forms/bulk_import.py:1223 dcim/forms/bulk_import.py:1368 +#: dcim/forms/bulk_import.py:1432 ipam/forms/bulk_import.py:42 +#: ipam/forms/bulk_import.py:71 ipam/forms/bulk_import.py:99 +#: ipam/forms/bulk_import.py:119 ipam/forms/bulk_import.py:139 +#: ipam/forms/bulk_import.py:168 ipam/forms/bulk_import.py:254 +#: ipam/forms/bulk_import.py:290 ipam/forms/bulk_import.py:447 +#: virtualization/forms/bulk_import.py:70 +#: virtualization/forms/bulk_import.py:119 vpn/forms/bulk_import.py:63 +#: wireless/forms/bulk_import.py:59 wireless/forms/bulk_import.py:101 msgid "Assigned tenant" msgstr "Přidělený nájemce" -#: netbox/circuits/forms/bulk_import.py:120 -#: netbox/templates/circuits/inc/circuit_termination.html:6 -#: netbox/templates/circuits/inc/circuit_termination_fields.html:15 -#: netbox/templates/dcim/cable.html:68 netbox/templates/dcim/cable.html:72 -#: netbox/vpn/forms/bulk_import.py:100 netbox/vpn/forms/filtersets.py:77 +#: circuits/forms/bulk_import.py:120 +#: templates/circuits/inc/circuit_termination.html:6 +#: templates/circuits/inc/circuit_termination_fields.html:15 +#: templates/dcim/cable.html:68 templates/dcim/cable.html:72 +#: vpn/forms/bulk_import.py:100 vpn/forms/filtersets.py:77 msgid "Termination" msgstr "Zakončení" -#: netbox/circuits/forms/bulk_import.py:130 -#: netbox/circuits/forms/filtersets.py:147 -#: netbox/circuits/forms/filtersets.py:227 -#: netbox/circuits/forms/model_forms.py:144 +#: circuits/forms/bulk_import.py:130 circuits/forms/filtersets.py:147 +#: circuits/forms/filtersets.py:227 circuits/forms/model_forms.py:144 msgid "Provider network" msgstr "Síť poskytovatele" -#: netbox/circuits/forms/filtersets.py:30 -#: netbox/circuits/forms/filtersets.py:118 -#: netbox/circuits/forms/filtersets.py:200 netbox/dcim/forms/bulk_edit.py:338 -#: netbox/dcim/forms/bulk_edit.py:441 netbox/dcim/forms/bulk_edit.py:682 -#: netbox/dcim/forms/bulk_edit.py:729 netbox/dcim/forms/bulk_edit.py:882 -#: netbox/dcim/forms/bulk_import.py:235 netbox/dcim/forms/bulk_import.py:315 -#: netbox/dcim/forms/bulk_import.py:546 netbox/dcim/forms/bulk_import.py:1317 -#: netbox/dcim/forms/bulk_import.py:1351 netbox/dcim/forms/filtersets.py:95 -#: netbox/dcim/forms/filtersets.py:322 netbox/dcim/forms/filtersets.py:356 -#: netbox/dcim/forms/filtersets.py:396 netbox/dcim/forms/filtersets.py:447 -#: netbox/dcim/forms/filtersets.py:719 netbox/dcim/forms/filtersets.py:762 -#: netbox/dcim/forms/filtersets.py:977 netbox/dcim/forms/filtersets.py:1006 -#: netbox/dcim/forms/filtersets.py:1026 netbox/dcim/forms/filtersets.py:1090 -#: netbox/dcim/forms/filtersets.py:1120 netbox/dcim/forms/filtersets.py:1129 -#: netbox/dcim/forms/filtersets.py:1240 netbox/dcim/forms/filtersets.py:1264 -#: netbox/dcim/forms/filtersets.py:1289 netbox/dcim/forms/filtersets.py:1308 -#: netbox/dcim/forms/filtersets.py:1331 netbox/dcim/forms/filtersets.py:1442 -#: netbox/dcim/forms/filtersets.py:1466 netbox/dcim/forms/filtersets.py:1490 -#: netbox/dcim/forms/filtersets.py:1508 netbox/dcim/forms/filtersets.py:1525 -#: netbox/dcim/forms/model_forms.py:180 netbox/dcim/forms/model_forms.py:243 -#: netbox/dcim/forms/model_forms.py:468 netbox/dcim/forms/model_forms.py:728 -#: netbox/dcim/tables/devices.py:157 netbox/dcim/tables/power.py:30 -#: netbox/dcim/tables/racks.py:118 netbox/dcim/tables/racks.py:212 -#: netbox/extras/filtersets.py:536 netbox/extras/forms/filtersets.py:320 -#: netbox/ipam/forms/bulk_edit.py:460 netbox/ipam/forms/filtersets.py:173 -#: netbox/ipam/forms/filtersets.py:414 netbox/ipam/forms/filtersets.py:437 -#: netbox/ipam/forms/filtersets.py:467 netbox/templates/dcim/device.html:26 -#: netbox/templates/dcim/device_edit.html:30 -#: netbox/templates/dcim/inc/cable_termination.html:12 -#: netbox/templates/dcim/location.html:26 -#: netbox/templates/dcim/powerpanel.html:26 netbox/templates/dcim/rack.html:24 -#: netbox/templates/dcim/rackreservation.html:32 -#: netbox/virtualization/forms/filtersets.py:46 -#: netbox/virtualization/forms/filtersets.py:100 -#: netbox/wireless/forms/model_forms.py:87 -#: netbox/wireless/forms/model_forms.py:129 +#: circuits/forms/filtersets.py:30 circuits/forms/filtersets.py:118 +#: circuits/forms/filtersets.py:200 dcim/forms/bulk_edit.py:338 +#: dcim/forms/bulk_edit.py:441 dcim/forms/bulk_edit.py:682 +#: dcim/forms/bulk_edit.py:729 dcim/forms/bulk_edit.py:882 +#: dcim/forms/bulk_import.py:235 dcim/forms/bulk_import.py:315 +#: dcim/forms/bulk_import.py:546 dcim/forms/bulk_import.py:1317 +#: dcim/forms/bulk_import.py:1351 dcim/forms/filtersets.py:95 +#: dcim/forms/filtersets.py:322 dcim/forms/filtersets.py:356 +#: dcim/forms/filtersets.py:396 dcim/forms/filtersets.py:447 +#: dcim/forms/filtersets.py:719 dcim/forms/filtersets.py:762 +#: dcim/forms/filtersets.py:977 dcim/forms/filtersets.py:1006 +#: dcim/forms/filtersets.py:1026 dcim/forms/filtersets.py:1090 +#: dcim/forms/filtersets.py:1120 dcim/forms/filtersets.py:1129 +#: dcim/forms/filtersets.py:1240 dcim/forms/filtersets.py:1264 +#: dcim/forms/filtersets.py:1289 dcim/forms/filtersets.py:1308 +#: dcim/forms/filtersets.py:1331 dcim/forms/filtersets.py:1442 +#: dcim/forms/filtersets.py:1466 dcim/forms/filtersets.py:1490 +#: dcim/forms/filtersets.py:1508 dcim/forms/filtersets.py:1525 +#: dcim/forms/model_forms.py:180 dcim/forms/model_forms.py:243 +#: dcim/forms/model_forms.py:468 dcim/forms/model_forms.py:728 +#: dcim/tables/devices.py:157 dcim/tables/power.py:30 dcim/tables/racks.py:118 +#: dcim/tables/racks.py:212 extras/filtersets.py:536 +#: extras/forms/filtersets.py:320 ipam/forms/filtersets.py:173 +#: ipam/forms/filtersets.py:414 ipam/forms/filtersets.py:437 +#: ipam/forms/filtersets.py:467 templates/dcim/device.html:26 +#: templates/dcim/device_edit.html:30 +#: templates/dcim/inc/cable_termination.html:12 +#: templates/dcim/location.html:26 templates/dcim/powerpanel.html:26 +#: templates/dcim/rack.html:24 templates/dcim/rackreservation.html:32 +#: virtualization/forms/filtersets.py:46 +#: virtualization/forms/filtersets.py:100 wireless/forms/model_forms.py:87 +#: wireless/forms/model_forms.py:129 msgid "Location" msgstr "Lokace" -#: netbox/circuits/forms/filtersets.py:32 -#: netbox/circuits/forms/filtersets.py:120 netbox/dcim/forms/filtersets.py:144 -#: netbox/dcim/forms/filtersets.py:158 netbox/dcim/forms/filtersets.py:174 -#: netbox/dcim/forms/filtersets.py:206 netbox/dcim/forms/filtersets.py:328 -#: netbox/dcim/forms/filtersets.py:400 netbox/dcim/forms/filtersets.py:471 -#: netbox/dcim/forms/filtersets.py:723 netbox/dcim/forms/filtersets.py:1091 -#: netbox/netbox/navigation/menu.py:31 netbox/netbox/navigation/menu.py:33 -#: netbox/tenancy/forms/filtersets.py:42 netbox/tenancy/tables/columns.py:70 -#: netbox/tenancy/tables/contacts.py:25 netbox/tenancy/views.py:19 -#: netbox/virtualization/forms/filtersets.py:37 -#: netbox/virtualization/forms/filtersets.py:48 -#: netbox/virtualization/forms/filtersets.py:106 +#: circuits/forms/filtersets.py:32 circuits/forms/filtersets.py:120 +#: dcim/forms/filtersets.py:144 dcim/forms/filtersets.py:158 +#: dcim/forms/filtersets.py:174 dcim/forms/filtersets.py:206 +#: dcim/forms/filtersets.py:328 dcim/forms/filtersets.py:400 +#: dcim/forms/filtersets.py:471 dcim/forms/filtersets.py:723 +#: dcim/forms/filtersets.py:1091 netbox/navigation/menu.py:31 +#: netbox/navigation/menu.py:33 tenancy/forms/filtersets.py:42 +#: tenancy/tables/columns.py:70 tenancy/tables/contacts.py:25 +#: tenancy/views.py:19 virtualization/forms/filtersets.py:37 +#: virtualization/forms/filtersets.py:48 +#: virtualization/forms/filtersets.py:106 msgid "Contacts" msgstr "Kontakty" -#: netbox/circuits/forms/filtersets.py:37 -#: netbox/circuits/forms/filtersets.py:157 netbox/dcim/forms/bulk_edit.py:112 -#: netbox/dcim/forms/bulk_edit.py:313 netbox/dcim/forms/bulk_edit.py:857 -#: netbox/dcim/forms/bulk_import.py:93 netbox/dcim/forms/filtersets.py:73 -#: netbox/dcim/forms/filtersets.py:185 netbox/dcim/forms/filtersets.py:211 -#: netbox/dcim/forms/filtersets.py:334 netbox/dcim/forms/filtersets.py:425 -#: netbox/dcim/forms/filtersets.py:739 netbox/dcim/forms/filtersets.py:983 -#: netbox/dcim/forms/filtersets.py:1013 netbox/dcim/forms/filtersets.py:1097 -#: netbox/dcim/forms/filtersets.py:1136 netbox/dcim/forms/filtersets.py:1576 -#: netbox/dcim/forms/filtersets.py:1600 netbox/dcim/forms/filtersets.py:1624 -#: netbox/dcim/forms/model_forms.py:112 netbox/dcim/forms/object_create.py:375 -#: netbox/dcim/tables/devices.py:143 netbox/dcim/tables/sites.py:85 -#: netbox/extras/filtersets.py:503 netbox/ipam/forms/bulk_edit.py:207 -#: netbox/ipam/forms/bulk_edit.py:441 netbox/ipam/forms/bulk_edit.py:519 -#: netbox/ipam/forms/filtersets.py:217 netbox/ipam/forms/filtersets.py:422 -#: netbox/ipam/forms/filtersets.py:475 netbox/templates/dcim/device.html:18 -#: netbox/templates/dcim/rack.html:16 -#: netbox/templates/dcim/rackreservation.html:22 -#: netbox/templates/dcim/region.html:26 netbox/templates/dcim/site.html:31 -#: netbox/templates/ipam/prefix.html:49 netbox/templates/ipam/vlan.html:16 -#: netbox/virtualization/forms/bulk_edit.py:81 -#: netbox/virtualization/forms/filtersets.py:59 -#: netbox/virtualization/forms/filtersets.py:133 -#: netbox/virtualization/forms/model_forms.py:92 -#: netbox/vpn/forms/filtersets.py:257 +#: circuits/forms/filtersets.py:37 circuits/forms/filtersets.py:157 +#: dcim/forms/bulk_edit.py:112 dcim/forms/bulk_edit.py:313 +#: dcim/forms/bulk_edit.py:857 dcim/forms/bulk_import.py:93 +#: dcim/forms/filtersets.py:73 dcim/forms/filtersets.py:185 +#: dcim/forms/filtersets.py:211 dcim/forms/filtersets.py:334 +#: dcim/forms/filtersets.py:425 dcim/forms/filtersets.py:739 +#: dcim/forms/filtersets.py:983 dcim/forms/filtersets.py:1013 +#: dcim/forms/filtersets.py:1097 dcim/forms/filtersets.py:1136 +#: dcim/forms/filtersets.py:1576 dcim/forms/filtersets.py:1600 +#: dcim/forms/filtersets.py:1624 dcim/forms/model_forms.py:112 +#: dcim/forms/object_create.py:375 dcim/tables/devices.py:143 +#: dcim/tables/sites.py:85 extras/filtersets.py:503 +#: ipam/forms/bulk_edit.py:208 ipam/forms/bulk_edit.py:474 +#: ipam/forms/filtersets.py:217 ipam/forms/filtersets.py:422 +#: ipam/forms/filtersets.py:475 templates/dcim/device.html:18 +#: templates/dcim/rack.html:16 templates/dcim/rackreservation.html:22 +#: templates/dcim/region.html:26 templates/dcim/site.html:31 +#: templates/ipam/prefix.html:49 templates/ipam/vlan.html:16 +#: virtualization/forms/bulk_edit.py:81 virtualization/forms/filtersets.py:59 +#: virtualization/forms/filtersets.py:133 +#: virtualization/forms/model_forms.py:92 vpn/forms/filtersets.py:257 msgid "Region" msgstr "Region" -#: netbox/circuits/forms/filtersets.py:42 -#: netbox/circuits/forms/filtersets.py:162 netbox/dcim/forms/bulk_edit.py:321 -#: netbox/dcim/forms/bulk_edit.py:865 netbox/dcim/forms/filtersets.py:78 -#: netbox/dcim/forms/filtersets.py:190 netbox/dcim/forms/filtersets.py:216 -#: netbox/dcim/forms/filtersets.py:347 netbox/dcim/forms/filtersets.py:430 -#: netbox/dcim/forms/filtersets.py:744 netbox/dcim/forms/filtersets.py:988 -#: netbox/dcim/forms/filtersets.py:1102 netbox/dcim/forms/filtersets.py:1141 -#: netbox/dcim/forms/object_create.py:383 netbox/extras/filtersets.py:520 -#: netbox/ipam/forms/bulk_edit.py:212 netbox/ipam/forms/bulk_edit.py:448 -#: netbox/ipam/forms/bulk_edit.py:524 netbox/ipam/forms/filtersets.py:222 -#: netbox/ipam/forms/filtersets.py:427 netbox/ipam/forms/filtersets.py:480 -#: netbox/virtualization/forms/bulk_edit.py:86 -#: netbox/virtualization/forms/filtersets.py:69 -#: netbox/virtualization/forms/filtersets.py:138 -#: netbox/virtualization/forms/model_forms.py:98 +#: circuits/forms/filtersets.py:42 circuits/forms/filtersets.py:162 +#: dcim/forms/bulk_edit.py:321 dcim/forms/bulk_edit.py:865 +#: dcim/forms/filtersets.py:78 dcim/forms/filtersets.py:190 +#: dcim/forms/filtersets.py:216 dcim/forms/filtersets.py:347 +#: dcim/forms/filtersets.py:430 dcim/forms/filtersets.py:744 +#: dcim/forms/filtersets.py:988 dcim/forms/filtersets.py:1102 +#: dcim/forms/filtersets.py:1141 dcim/forms/object_create.py:383 +#: extras/filtersets.py:520 ipam/forms/bulk_edit.py:213 +#: ipam/forms/bulk_edit.py:479 ipam/forms/filtersets.py:222 +#: ipam/forms/filtersets.py:427 ipam/forms/filtersets.py:480 +#: virtualization/forms/bulk_edit.py:86 virtualization/forms/filtersets.py:69 +#: virtualization/forms/filtersets.py:138 +#: virtualization/forms/model_forms.py:98 msgid "Site group" msgstr "Skupina stránek" -#: netbox/circuits/forms/filtersets.py:65 -#: netbox/circuits/forms/filtersets.py:83 -#: netbox/circuits/forms/filtersets.py:102 -#: netbox/circuits/forms/filtersets.py:117 netbox/core/forms/filtersets.py:67 -#: netbox/core/forms/filtersets.py:135 netbox/dcim/forms/bulk_edit.py:828 -#: netbox/dcim/forms/filtersets.py:172 netbox/dcim/forms/filtersets.py:204 -#: netbox/dcim/forms/filtersets.py:915 netbox/dcim/forms/filtersets.py:1007 -#: netbox/dcim/forms/filtersets.py:1131 netbox/dcim/forms/filtersets.py:1239 -#: netbox/dcim/forms/filtersets.py:1263 netbox/dcim/forms/filtersets.py:1288 -#: netbox/dcim/forms/filtersets.py:1307 netbox/dcim/forms/filtersets.py:1327 -#: netbox/dcim/forms/filtersets.py:1441 netbox/dcim/forms/filtersets.py:1465 -#: netbox/dcim/forms/filtersets.py:1489 netbox/dcim/forms/filtersets.py:1507 -#: netbox/dcim/forms/filtersets.py:1523 netbox/extras/forms/bulk_edit.py:90 -#: netbox/extras/forms/filtersets.py:44 netbox/extras/forms/filtersets.py:134 -#: netbox/extras/forms/filtersets.py:165 netbox/extras/forms/filtersets.py:205 -#: netbox/extras/forms/filtersets.py:221 netbox/extras/forms/filtersets.py:252 -#: netbox/extras/forms/filtersets.py:276 netbox/extras/forms/filtersets.py:441 -#: netbox/ipam/forms/filtersets.py:99 netbox/ipam/forms/filtersets.py:266 -#: netbox/ipam/forms/filtersets.py:307 netbox/ipam/forms/filtersets.py:382 -#: netbox/ipam/forms/filtersets.py:468 netbox/ipam/forms/filtersets.py:527 -#: netbox/ipam/forms/filtersets.py:545 netbox/netbox/tables/tables.py:256 -#: netbox/virtualization/forms/filtersets.py:45 -#: netbox/virtualization/forms/filtersets.py:103 -#: netbox/virtualization/forms/filtersets.py:198 -#: netbox/virtualization/forms/filtersets.py:243 -#: netbox/vpn/forms/filtersets.py:213 netbox/wireless/forms/bulk_edit.py:150 -#: netbox/wireless/forms/filtersets.py:34 -#: netbox/wireless/forms/filtersets.py:74 +#: circuits/forms/filtersets.py:65 circuits/forms/filtersets.py:83 +#: circuits/forms/filtersets.py:102 circuits/forms/filtersets.py:117 +#: core/forms/filtersets.py:67 core/forms/filtersets.py:135 +#: dcim/forms/bulk_edit.py:828 dcim/forms/filtersets.py:172 +#: dcim/forms/filtersets.py:204 dcim/forms/filtersets.py:915 +#: dcim/forms/filtersets.py:1007 dcim/forms/filtersets.py:1131 +#: dcim/forms/filtersets.py:1239 dcim/forms/filtersets.py:1263 +#: dcim/forms/filtersets.py:1288 dcim/forms/filtersets.py:1307 +#: dcim/forms/filtersets.py:1327 dcim/forms/filtersets.py:1441 +#: dcim/forms/filtersets.py:1465 dcim/forms/filtersets.py:1489 +#: dcim/forms/filtersets.py:1507 dcim/forms/filtersets.py:1523 +#: extras/forms/bulk_edit.py:90 extras/forms/filtersets.py:44 +#: extras/forms/filtersets.py:134 extras/forms/filtersets.py:165 +#: extras/forms/filtersets.py:205 extras/forms/filtersets.py:221 +#: extras/forms/filtersets.py:252 extras/forms/filtersets.py:276 +#: extras/forms/filtersets.py:441 ipam/forms/filtersets.py:99 +#: ipam/forms/filtersets.py:266 ipam/forms/filtersets.py:307 +#: ipam/forms/filtersets.py:382 ipam/forms/filtersets.py:468 +#: ipam/forms/filtersets.py:527 ipam/forms/filtersets.py:545 +#: netbox/tables/tables.py:256 virtualization/forms/filtersets.py:45 +#: virtualization/forms/filtersets.py:103 +#: virtualization/forms/filtersets.py:198 +#: virtualization/forms/filtersets.py:243 vpn/forms/filtersets.py:213 +#: wireless/forms/bulk_edit.py:150 wireless/forms/filtersets.py:34 +#: wireless/forms/filtersets.py:74 msgid "Attributes" msgstr "Atributy" -#: netbox/circuits/forms/filtersets.py:73 -#: netbox/circuits/tables/circuits.py:63 -#: netbox/circuits/tables/providers.py:66 -#: netbox/templates/circuits/circuit.html:22 -#: netbox/templates/circuits/provideraccount.html:24 +#: circuits/forms/filtersets.py:73 circuits/tables/circuits.py:63 +#: circuits/tables/providers.py:66 templates/circuits/circuit.html:22 +#: templates/circuits/provideraccount.html:24 msgid "Account" msgstr "Účet" -#: netbox/circuits/forms/filtersets.py:217 +#: circuits/forms/filtersets.py:217 msgid "Term Side" msgstr "Strana termínu" -#: netbox/circuits/forms/filtersets.py:250 -#: netbox/extras/forms/model_forms.py:582 netbox/ipam/forms/filtersets.py:142 -#: netbox/ipam/forms/filtersets.py:546 netbox/ipam/forms/model_forms.py:323 -#: netbox/templates/extras/configcontext.html:60 -#: netbox/templates/ipam/ipaddress.html:59 -#: netbox/templates/ipam/vlan_edit.html:30 -#: netbox/tenancy/forms/filtersets.py:87 netbox/users/forms/model_forms.py:314 +#: circuits/forms/filtersets.py:250 extras/forms/model_forms.py:582 +#: ipam/forms/filtersets.py:142 ipam/forms/filtersets.py:546 +#: ipam/forms/model_forms.py:323 templates/extras/configcontext.html:60 +#: templates/ipam/ipaddress.html:59 templates/ipam/vlan_edit.html:30 +#: tenancy/forms/filtersets.py:87 users/forms/model_forms.py:314 msgid "Assignment" msgstr "Přiřazení" -#: netbox/circuits/forms/filtersets.py:265 -#: netbox/circuits/forms/model_forms.py:195 -#: netbox/circuits/tables/circuits.py:155 netbox/dcim/forms/bulk_edit.py:117 -#: netbox/dcim/forms/bulk_import.py:100 netbox/dcim/forms/model_forms.py:117 -#: netbox/dcim/tables/sites.py:89 netbox/extras/forms/filtersets.py:480 -#: netbox/ipam/filtersets.py:999 netbox/ipam/forms/bulk_edit.py:538 -#: netbox/ipam/forms/bulk_import.py:436 netbox/ipam/forms/model_forms.py:528 -#: netbox/ipam/tables/fhrp.py:67 netbox/ipam/tables/vlans.py:122 -#: netbox/ipam/tables/vlans.py:226 -#: netbox/templates/circuits/circuitgroupassignment.html:22 -#: netbox/templates/dcim/interface.html:284 netbox/templates/dcim/site.html:37 -#: netbox/templates/ipam/inc/panels/fhrp_groups.html:23 -#: netbox/templates/ipam/vlan.html:27 netbox/templates/tenancy/contact.html:21 -#: netbox/templates/tenancy/tenant.html:20 netbox/templates/users/group.html:6 -#: netbox/templates/users/group.html:14 -#: netbox/templates/virtualization/cluster.html:29 -#: netbox/templates/vpn/tunnel.html:29 -#: netbox/templates/wireless/wirelesslan.html:18 -#: netbox/tenancy/forms/bulk_edit.py:43 netbox/tenancy/forms/bulk_edit.py:94 -#: netbox/tenancy/forms/bulk_import.py:40 -#: netbox/tenancy/forms/bulk_import.py:81 -#: netbox/tenancy/forms/filtersets.py:48 netbox/tenancy/forms/filtersets.py:78 -#: netbox/tenancy/forms/filtersets.py:97 -#: netbox/tenancy/forms/model_forms.py:45 -#: netbox/tenancy/forms/model_forms.py:97 -#: netbox/tenancy/forms/model_forms.py:122 -#: netbox/tenancy/tables/contacts.py:60 netbox/tenancy/tables/contacts.py:107 -#: netbox/tenancy/tables/tenants.py:42 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 -#: netbox/virtualization/forms/bulk_edit.py:65 -#: netbox/virtualization/forms/bulk_import.py:47 -#: netbox/virtualization/forms/filtersets.py:85 -#: netbox/virtualization/forms/model_forms.py:66 -#: netbox/virtualization/tables/clusters.py:70 -#: netbox/vpn/forms/bulk_edit.py:112 netbox/vpn/forms/bulk_import.py:158 -#: netbox/vpn/forms/filtersets.py:116 netbox/vpn/tables/crypto.py:31 -#: netbox/vpn/tables/tunnels.py:44 netbox/wireless/forms/bulk_edit.py:48 -#: netbox/wireless/forms/bulk_import.py:36 -#: netbox/wireless/forms/filtersets.py:46 -#: netbox/wireless/forms/model_forms.py:40 -#: netbox/wireless/tables/wirelesslan.py:48 +#: circuits/forms/filtersets.py:265 circuits/forms/model_forms.py:195 +#: circuits/tables/circuits.py:155 dcim/forms/bulk_edit.py:117 +#: dcim/forms/bulk_import.py:100 dcim/forms/model_forms.py:117 +#: dcim/tables/sites.py:89 extras/forms/filtersets.py:480 +#: ipam/filtersets.py:999 ipam/forms/bulk_edit.py:493 +#: ipam/forms/bulk_import.py:436 ipam/forms/model_forms.py:528 +#: ipam/tables/fhrp.py:67 ipam/tables/vlans.py:122 ipam/tables/vlans.py:226 +#: templates/circuits/circuitgroupassignment.html:22 +#: templates/dcim/interface.html:284 templates/dcim/site.html:37 +#: templates/ipam/inc/panels/fhrp_groups.html:23 templates/ipam/vlan.html:27 +#: templates/tenancy/contact.html:21 templates/tenancy/tenant.html:20 +#: templates/users/group.html:6 templates/users/group.html:14 +#: templates/virtualization/cluster.html:29 templates/vpn/tunnel.html:29 +#: templates/wireless/wirelesslan.html:18 tenancy/forms/bulk_edit.py:43 +#: tenancy/forms/bulk_edit.py:94 tenancy/forms/bulk_import.py:40 +#: tenancy/forms/bulk_import.py:81 tenancy/forms/filtersets.py:48 +#: tenancy/forms/filtersets.py:78 tenancy/forms/filtersets.py:97 +#: tenancy/forms/model_forms.py:45 tenancy/forms/model_forms.py:97 +#: tenancy/forms/model_forms.py:122 tenancy/tables/contacts.py:60 +#: tenancy/tables/contacts.py:107 tenancy/tables/tenants.py:42 +#: users/filtersets.py:62 users/filtersets.py:185 users/forms/filtersets.py:31 +#: users/forms/filtersets.py:37 users/forms/filtersets.py:79 +#: virtualization/forms/bulk_edit.py:65 virtualization/forms/bulk_import.py:47 +#: virtualization/forms/filtersets.py:85 +#: virtualization/forms/model_forms.py:66 virtualization/tables/clusters.py:70 +#: vpn/forms/bulk_edit.py:112 vpn/forms/bulk_import.py:158 +#: vpn/forms/filtersets.py:116 vpn/tables/crypto.py:31 +#: vpn/tables/tunnels.py:44 wireless/forms/bulk_edit.py:48 +#: wireless/forms/bulk_import.py:36 wireless/forms/filtersets.py:46 +#: wireless/forms/model_forms.py:40 wireless/tables/wirelesslan.py:48 msgid "Group" msgstr "Skupina" -#: netbox/circuits/forms/model_forms.py:182 -#: netbox/templates/circuits/circuitgroup.html:25 +#: circuits/forms/model_forms.py:182 templates/circuits/circuitgroup.html:25 msgid "Circuit Group" msgstr "Skupina okruhů" -#: netbox/circuits/models/circuits.py:27 netbox/dcim/models/cables.py:67 -#: netbox/dcim/models/device_component_templates.py:517 -#: netbox/dcim/models/device_component_templates.py:617 -#: netbox/dcim/models/device_components.py:975 -#: netbox/dcim/models/device_components.py:1049 -#: netbox/dcim/models/device_components.py:1204 -#: netbox/dcim/models/devices.py:479 netbox/dcim/models/racks.py:224 -#: netbox/extras/models/tags.py:28 +#: circuits/models/circuits.py:27 dcim/models/cables.py:67 +#: dcim/models/device_component_templates.py:517 +#: dcim/models/device_component_templates.py:617 +#: dcim/models/device_components.py:975 dcim/models/device_components.py:1049 +#: dcim/models/device_components.py:1204 dcim/models/devices.py:479 +#: dcim/models/racks.py:224 extras/models/tags.py:28 msgid "color" msgstr "barva" -#: netbox/circuits/models/circuits.py:36 +#: circuits/models/circuits.py:36 msgid "circuit type" msgstr "typ obvodu" -#: netbox/circuits/models/circuits.py:37 +#: circuits/models/circuits.py:37 msgid "circuit types" msgstr "typy obvodů" -#: netbox/circuits/models/circuits.py:48 +#: circuits/models/circuits.py:48 msgid "circuit ID" msgstr "ID obvodu" -#: netbox/circuits/models/circuits.py:49 +#: circuits/models/circuits.py:49 msgid "Unique circuit ID" msgstr "Jedinečné ID obvodu" -#: netbox/circuits/models/circuits.py:69 netbox/core/models/data.py:52 -#: netbox/core/models/jobs.py:84 netbox/dcim/models/cables.py:49 -#: netbox/dcim/models/devices.py:653 netbox/dcim/models/devices.py:1173 -#: netbox/dcim/models/devices.py:1399 netbox/dcim/models/power.py:96 -#: netbox/dcim/models/racks.py:297 netbox/dcim/models/sites.py:154 -#: netbox/dcim/models/sites.py:266 netbox/ipam/models/ip.py:253 -#: netbox/ipam/models/ip.py:522 netbox/ipam/models/ip.py:730 -#: netbox/ipam/models/vlans.py:195 netbox/virtualization/models/clusters.py:74 -#: netbox/virtualization/models/virtualmachines.py:84 -#: netbox/vpn/models/tunnels.py:40 netbox/wireless/models.py:95 -#: netbox/wireless/models.py:159 +#: circuits/models/circuits.py:69 core/models/data.py:52 +#: core/models/jobs.py:84 dcim/models/cables.py:49 dcim/models/devices.py:653 +#: dcim/models/devices.py:1173 dcim/models/devices.py:1399 +#: dcim/models/power.py:96 dcim/models/racks.py:297 dcim/models/sites.py:154 +#: dcim/models/sites.py:266 ipam/models/ip.py:253 ipam/models/ip.py:522 +#: ipam/models/ip.py:730 ipam/models/vlans.py:195 +#: virtualization/models/clusters.py:74 +#: virtualization/models/virtualmachines.py:84 vpn/models/tunnels.py:40 +#: wireless/models.py:95 wireless/models.py:159 msgid "status" msgstr "stav" -#: netbox/circuits/models/circuits.py:84 netbox/templates/core/plugin.html:19 +#: circuits/models/circuits.py:84 templates/core/plugin.html:20 msgid "installed" msgstr "nainstalován" -#: netbox/circuits/models/circuits.py:89 +#: circuits/models/circuits.py:89 msgid "terminates" msgstr "ukončí" -#: netbox/circuits/models/circuits.py:94 +#: circuits/models/circuits.py:94 msgid "commit rate (Kbps)" msgstr "rychlost odevzdání (Kbps)" -#: netbox/circuits/models/circuits.py:95 +#: circuits/models/circuits.py:95 msgid "Committed rate" msgstr "Závazná sazba" -#: netbox/circuits/models/circuits.py:137 +#: circuits/models/circuits.py:137 msgid "circuit" msgstr "okruh" -#: netbox/circuits/models/circuits.py:138 +#: circuits/models/circuits.py:138 msgid "circuits" msgstr "okruhy" -#: netbox/circuits/models/circuits.py:170 +#: circuits/models/circuits.py:170 msgid "circuit group" msgstr "skupina obvodů" -#: netbox/circuits/models/circuits.py:171 +#: circuits/models/circuits.py:171 msgid "circuit groups" msgstr "skupiny obvodů" -#: netbox/circuits/models/circuits.py:195 netbox/ipam/models/fhrp.py:93 -#: netbox/tenancy/models/contacts.py:134 +#: circuits/models/circuits.py:195 ipam/models/fhrp.py:93 +#: tenancy/models/contacts.py:134 msgid "priority" msgstr "přednost" -#: netbox/circuits/models/circuits.py:213 +#: circuits/models/circuits.py:213 msgid "Circuit group assignment" msgstr "Přiřazení skupiny obvodů" -#: netbox/circuits/models/circuits.py:214 +#: circuits/models/circuits.py:214 msgid "Circuit group assignments" msgstr "Přiřazení skupin obvodů" -#: netbox/circuits/models/circuits.py:240 +#: circuits/models/circuits.py:240 msgid "termination" msgstr "zakončení" -#: netbox/circuits/models/circuits.py:257 +#: circuits/models/circuits.py:257 msgid "port speed (Kbps)" msgstr "rychlost portu (Kbps)" -#: netbox/circuits/models/circuits.py:260 +#: circuits/models/circuits.py:260 msgid "Physical circuit speed" msgstr "Rychlost fyzického obvodu" -#: netbox/circuits/models/circuits.py:265 +#: circuits/models/circuits.py:265 msgid "upstream speed (Kbps)" msgstr "rychlost proti proudu (Kbps)" -#: netbox/circuits/models/circuits.py:266 +#: circuits/models/circuits.py:266 msgid "Upstream speed, if different from port speed" msgstr "Rychlost proti proudu, pokud se liší od rychlosti portu" -#: netbox/circuits/models/circuits.py:271 +#: circuits/models/circuits.py:271 msgid "cross-connect ID" msgstr "ID křížového připojení" -#: netbox/circuits/models/circuits.py:272 +#: circuits/models/circuits.py:272 msgid "ID of the local cross-connect" msgstr "ID místního křížového připojení" -#: netbox/circuits/models/circuits.py:277 +#: circuits/models/circuits.py:277 msgid "patch panel/port(s)" msgstr "propojovací panel/port(y)" -#: netbox/circuits/models/circuits.py:278 +#: circuits/models/circuits.py:278 msgid "Patch panel ID and port number(s)" msgstr "ID propojovacího panelu a číslo portu/ů" -#: netbox/circuits/models/circuits.py:281 -#: netbox/dcim/models/device_component_templates.py:61 -#: netbox/dcim/models/device_components.py:68 netbox/dcim/models/racks.py:685 -#: netbox/extras/models/configs.py:45 netbox/extras/models/configs.py:219 -#: netbox/extras/models/customfields.py:125 netbox/extras/models/models.py:61 -#: netbox/extras/models/models.py:158 netbox/extras/models/models.py:396 -#: netbox/extras/models/models.py:511 -#: netbox/extras/models/notifications.py:131 -#: netbox/extras/models/staging.py:31 netbox/extras/models/tags.py:32 -#: netbox/netbox/models/__init__.py:110 netbox/netbox/models/__init__.py:145 -#: netbox/netbox/models/__init__.py:191 netbox/users/models/permissions.py:24 -#: netbox/users/models/tokens.py:57 netbox/users/models/users.py:33 -#: netbox/virtualization/models/virtualmachines.py:289 +#: circuits/models/circuits.py:281 +#: dcim/models/device_component_templates.py:61 +#: dcim/models/device_components.py:68 dcim/models/racks.py:685 +#: extras/models/configs.py:45 extras/models/configs.py:219 +#: extras/models/customfields.py:125 extras/models/models.py:61 +#: extras/models/models.py:158 extras/models/models.py:396 +#: extras/models/models.py:511 extras/models/notifications.py:131 +#: extras/models/staging.py:31 extras/models/tags.py:32 +#: netbox/models/__init__.py:110 netbox/models/__init__.py:145 +#: netbox/models/__init__.py:191 users/models/permissions.py:24 +#: users/models/tokens.py:57 users/models/users.py:33 +#: virtualization/models/virtualmachines.py:289 msgid "description" msgstr "popis" -#: netbox/circuits/models/circuits.py:294 +#: circuits/models/circuits.py:294 msgid "circuit termination" msgstr "zakončení okruhu" -#: netbox/circuits/models/circuits.py:295 +#: circuits/models/circuits.py:295 msgid "circuit terminations" msgstr "zakončení okruhů" -#: netbox/circuits/models/circuits.py:308 +#: circuits/models/circuits.py:308 msgid "" "A circuit termination must attach to either a site or a provider network." msgstr "" "Zakončení okruhu se musí připojit buď k místu, nebo k síti poskytovatele." -#: netbox/circuits/models/circuits.py:310 +#: circuits/models/circuits.py:310 msgid "" "A circuit termination cannot attach to both a site and a provider network." msgstr "" "Zakončení okruhu se nemůže připojit jak k síti webu, tak k síti " "poskytovatele." -#: netbox/circuits/models/providers.py:22 -#: netbox/circuits/models/providers.py:66 -#: netbox/circuits/models/providers.py:104 netbox/core/models/data.py:39 -#: netbox/core/models/jobs.py:45 -#: netbox/dcim/models/device_component_templates.py:43 -#: netbox/dcim/models/device_components.py:53 -#: netbox/dcim/models/devices.py:593 netbox/dcim/models/devices.py:1330 -#: netbox/dcim/models/devices.py:1395 netbox/dcim/models/power.py:39 -#: netbox/dcim/models/power.py:92 netbox/dcim/models/racks.py:262 -#: netbox/dcim/models/sites.py:138 netbox/extras/models/configs.py:36 -#: netbox/extras/models/configs.py:215 netbox/extras/models/customfields.py:92 -#: netbox/extras/models/models.py:56 netbox/extras/models/models.py:153 -#: netbox/extras/models/models.py:296 netbox/extras/models/models.py:392 -#: netbox/extras/models/models.py:501 netbox/extras/models/models.py:596 -#: netbox/extras/models/notifications.py:126 -#: netbox/extras/models/scripts.py:30 netbox/extras/models/staging.py:26 -#: netbox/ipam/models/asns.py:18 netbox/ipam/models/fhrp.py:25 -#: netbox/ipam/models/services.py:52 netbox/ipam/models/services.py:88 -#: netbox/ipam/models/vlans.py:36 netbox/ipam/models/vlans.py:184 -#: netbox/ipam/models/vrfs.py:22 netbox/ipam/models/vrfs.py:79 -#: netbox/netbox/models/__init__.py:137 netbox/netbox/models/__init__.py:181 -#: netbox/tenancy/models/contacts.py:64 netbox/tenancy/models/tenants.py:20 -#: netbox/tenancy/models/tenants.py:45 netbox/users/models/permissions.py:20 -#: netbox/users/models/users.py:28 netbox/virtualization/models/clusters.py:57 -#: netbox/virtualization/models/virtualmachines.py:72 -#: netbox/virtualization/models/virtualmachines.py:279 -#: netbox/vpn/models/crypto.py:24 netbox/vpn/models/crypto.py:71 -#: netbox/vpn/models/crypto.py:131 netbox/vpn/models/crypto.py:183 -#: netbox/vpn/models/crypto.py:221 netbox/vpn/models/l2vpn.py:22 -#: netbox/vpn/models/tunnels.py:35 netbox/wireless/models.py:51 +#: circuits/models/providers.py:22 circuits/models/providers.py:66 +#: circuits/models/providers.py:104 core/models/data.py:39 +#: core/models/jobs.py:45 dcim/models/device_component_templates.py:43 +#: dcim/models/device_components.py:53 dcim/models/devices.py:593 +#: dcim/models/devices.py:1330 dcim/models/devices.py:1395 +#: dcim/models/power.py:39 dcim/models/power.py:92 dcim/models/racks.py:262 +#: dcim/models/sites.py:138 extras/models/configs.py:36 +#: extras/models/configs.py:215 extras/models/customfields.py:92 +#: extras/models/models.py:56 extras/models/models.py:153 +#: extras/models/models.py:296 extras/models/models.py:392 +#: extras/models/models.py:501 extras/models/models.py:596 +#: extras/models/notifications.py:126 extras/models/scripts.py:30 +#: extras/models/staging.py:26 ipam/models/asns.py:18 ipam/models/fhrp.py:25 +#: ipam/models/services.py:52 ipam/models/services.py:88 +#: ipam/models/vlans.py:36 ipam/models/vlans.py:184 ipam/models/vrfs.py:22 +#: ipam/models/vrfs.py:79 netbox/models/__init__.py:137 +#: netbox/models/__init__.py:181 tenancy/models/contacts.py:64 +#: tenancy/models/tenants.py:20 tenancy/models/tenants.py:45 +#: users/models/permissions.py:20 users/models/users.py:28 +#: virtualization/models/clusters.py:57 +#: virtualization/models/virtualmachines.py:72 +#: virtualization/models/virtualmachines.py:279 vpn/models/crypto.py:24 +#: vpn/models/crypto.py:71 vpn/models/crypto.py:131 vpn/models/crypto.py:183 +#: vpn/models/crypto.py:221 vpn/models/l2vpn.py:22 vpn/models/tunnels.py:35 +#: wireless/models.py:51 msgid "name" msgstr "jméno" -#: netbox/circuits/models/providers.py:25 +#: circuits/models/providers.py:25 msgid "Full name of the provider" msgstr "Celé jméno poskytovatele" -#: netbox/circuits/models/providers.py:28 netbox/dcim/models/devices.py:86 -#: netbox/dcim/models/racks.py:137 netbox/dcim/models/sites.py:149 -#: netbox/extras/models/models.py:506 netbox/ipam/models/asns.py:23 -#: netbox/ipam/models/vlans.py:40 netbox/netbox/models/__init__.py:141 -#: netbox/netbox/models/__init__.py:186 netbox/tenancy/models/tenants.py:25 -#: netbox/tenancy/models/tenants.py:49 netbox/vpn/models/l2vpn.py:27 -#: netbox/wireless/models.py:56 +#: circuits/models/providers.py:28 dcim/models/devices.py:86 +#: dcim/models/racks.py:137 dcim/models/sites.py:149 +#: extras/models/models.py:506 ipam/models/asns.py:23 ipam/models/vlans.py:40 +#: netbox/models/__init__.py:141 netbox/models/__init__.py:186 +#: tenancy/models/tenants.py:25 tenancy/models/tenants.py:49 +#: vpn/models/l2vpn.py:27 wireless/models.py:56 msgid "slug" msgstr "slug" -#: netbox/circuits/models/providers.py:42 +#: circuits/models/providers.py:42 msgid "provider" msgstr "poskytovatel" -#: netbox/circuits/models/providers.py:43 +#: circuits/models/providers.py:43 msgid "providers" msgstr "poskytovatelů" -#: netbox/circuits/models/providers.py:63 +#: circuits/models/providers.py:63 msgid "account ID" msgstr "ID účtu" -#: netbox/circuits/models/providers.py:86 +#: circuits/models/providers.py:86 msgid "provider account" msgstr "účet poskytovatele" -#: netbox/circuits/models/providers.py:87 +#: circuits/models/providers.py:87 msgid "provider accounts" msgstr "účty poskytovatele" -#: netbox/circuits/models/providers.py:115 +#: circuits/models/providers.py:115 msgid "service ID" msgstr "ID služby" -#: netbox/circuits/models/providers.py:126 +#: circuits/models/providers.py:126 msgid "provider network" msgstr "síť poskytovatelů" -#: netbox/circuits/models/providers.py:127 +#: circuits/models/providers.py:127 msgid "provider networks" msgstr "sítě poskytovatelů" -#: netbox/circuits/tables/circuits.py:32 -#: netbox/circuits/tables/circuits.py:132 -#: netbox/circuits/tables/providers.py:18 -#: netbox/circuits/tables/providers.py:69 -#: netbox/circuits/tables/providers.py:99 netbox/core/tables/data.py:16 -#: netbox/core/tables/jobs.py:14 netbox/core/tables/plugins.py:44 -#: netbox/core/tables/tasks.py:11 netbox/core/tables/tasks.py:115 -#: netbox/dcim/forms/filtersets.py:63 netbox/dcim/forms/object_create.py:43 -#: netbox/dcim/tables/devices.py:52 netbox/dcim/tables/devices.py:92 -#: netbox/dcim/tables/devices.py:134 netbox/dcim/tables/devices.py:289 -#: netbox/dcim/tables/devices.py:392 netbox/dcim/tables/devices.py:433 -#: netbox/dcim/tables/devices.py:482 netbox/dcim/tables/devices.py:531 -#: netbox/dcim/tables/devices.py:648 netbox/dcim/tables/devices.py:731 -#: netbox/dcim/tables/devices.py:778 netbox/dcim/tables/devices.py:841 -#: netbox/dcim/tables/devices.py:911 netbox/dcim/tables/devices.py:974 -#: netbox/dcim/tables/devices.py:994 netbox/dcim/tables/devices.py:1023 -#: netbox/dcim/tables/devices.py:1053 netbox/dcim/tables/devicetypes.py:31 -#: netbox/dcim/tables/power.py:22 netbox/dcim/tables/power.py:62 -#: netbox/dcim/tables/racks.py:24 netbox/dcim/tables/racks.py:113 -#: netbox/dcim/tables/sites.py:24 netbox/dcim/tables/sites.py:51 -#: netbox/dcim/tables/sites.py:78 netbox/dcim/tables/sites.py:130 -#: netbox/extras/forms/filtersets.py:213 netbox/extras/tables/tables.py:58 -#: netbox/extras/tables/tables.py:122 netbox/extras/tables/tables.py:155 -#: netbox/extras/tables/tables.py:180 netbox/extras/tables/tables.py:246 -#: netbox/extras/tables/tables.py:361 netbox/extras/tables/tables.py:378 -#: netbox/extras/tables/tables.py:401 netbox/extras/tables/tables.py:439 -#: netbox/extras/tables/tables.py:491 netbox/extras/tables/tables.py:514 -#: netbox/ipam/forms/bulk_edit.py:406 netbox/ipam/forms/filtersets.py:386 -#: netbox/ipam/tables/asn.py:16 netbox/ipam/tables/ip.py:85 -#: netbox/ipam/tables/ip.py:160 netbox/ipam/tables/services.py:15 -#: netbox/ipam/tables/services.py:40 netbox/ipam/tables/vlans.py:64 -#: netbox/ipam/tables/vlans.py:114 netbox/ipam/tables/vrfs.py:26 -#: netbox/ipam/tables/vrfs.py:68 -#: netbox/templates/circuits/circuitgroup.html:28 -#: netbox/templates/circuits/circuittype.html:22 -#: netbox/templates/circuits/provideraccount.html:28 -#: netbox/templates/circuits/providernetwork.html:24 -#: netbox/templates/core/datasource.html:34 netbox/templates/core/job.html:44 -#: netbox/templates/core/plugin.html:53 -#: netbox/templates/core/rq_worker.html:43 -#: netbox/templates/dcim/consoleport.html:28 -#: netbox/templates/dcim/consoleserverport.html:28 -#: netbox/templates/dcim/devicebay.html:24 -#: netbox/templates/dcim/devicerole.html:26 -#: netbox/templates/dcim/frontport.html:28 -#: netbox/templates/dcim/inc/interface_vlans_table.html:5 -#: netbox/templates/dcim/inc/panels/inventory_items.html:18 -#: netbox/templates/dcim/interface.html:38 -#: netbox/templates/dcim/interface.html:165 -#: netbox/templates/dcim/inventoryitem.html:28 -#: netbox/templates/dcim/inventoryitemrole.html:18 -#: netbox/templates/dcim/location.html:29 -#: netbox/templates/dcim/manufacturer.html:36 -#: netbox/templates/dcim/modulebay.html:30 -#: netbox/templates/dcim/platform.html:29 -#: netbox/templates/dcim/poweroutlet.html:28 -#: netbox/templates/dcim/powerport.html:28 -#: netbox/templates/dcim/rackrole.html:22 -#: netbox/templates/dcim/rearport.html:28 netbox/templates/dcim/region.html:29 -#: netbox/templates/dcim/sitegroup.html:29 -#: netbox/templates/dcim/virtualdevicecontext.html:18 -#: netbox/templates/extras/configcontext.html:13 -#: netbox/templates/extras/configtemplate.html:13 -#: netbox/templates/extras/customfield.html:13 -#: netbox/templates/extras/customlink.html:13 -#: netbox/templates/extras/eventrule.html:13 -#: netbox/templates/extras/exporttemplate.html:15 -#: netbox/templates/extras/notificationgroup.html:14 -#: netbox/templates/extras/savedfilter.html:13 -#: netbox/templates/extras/script_list.html:44 -#: netbox/templates/extras/tag.html:14 netbox/templates/extras/webhook.html:13 -#: netbox/templates/ipam/asnrange.html:15 -#: netbox/templates/ipam/fhrpgroup.html:30 netbox/templates/ipam/rir.html:22 -#: netbox/templates/ipam/role.html:22 -#: netbox/templates/ipam/routetarget.html:13 -#: netbox/templates/ipam/service.html:24 -#: netbox/templates/ipam/servicetemplate.html:15 -#: netbox/templates/ipam/vlan.html:35 netbox/templates/ipam/vlangroup.html:30 -#: netbox/templates/tenancy/contact.html:25 -#: netbox/templates/tenancy/contactgroup.html:21 -#: netbox/templates/tenancy/contactrole.html:18 -#: netbox/templates/tenancy/tenantgroup.html:29 -#: netbox/templates/users/group.html:17 -#: netbox/templates/users/objectpermission.html:17 -#: netbox/templates/virtualization/cluster.html:13 -#: netbox/templates/virtualization/clustergroup.html:22 -#: netbox/templates/virtualization/clustertype.html:22 -#: netbox/templates/virtualization/virtualdisk.html:25 -#: netbox/templates/virtualization/virtualmachine.html:15 -#: netbox/templates/virtualization/vminterface.html:25 -#: netbox/templates/vpn/ikepolicy.html:13 -#: netbox/templates/vpn/ikeproposal.html:13 -#: netbox/templates/vpn/ipsecpolicy.html:13 -#: netbox/templates/vpn/ipsecprofile.html:13 -#: netbox/templates/vpn/ipsecprofile.html:36 -#: netbox/templates/vpn/ipsecprofile.html:69 -#: netbox/templates/vpn/ipsecproposal.html:13 -#: netbox/templates/vpn/l2vpn.html:14 netbox/templates/vpn/tunnel.html:21 -#: netbox/templates/vpn/tunnelgroup.html:26 -#: netbox/templates/wireless/wirelesslangroup.html:29 -#: netbox/tenancy/tables/contacts.py:19 netbox/tenancy/tables/contacts.py:41 -#: netbox/tenancy/tables/contacts.py:56 netbox/tenancy/tables/tenants.py:16 -#: netbox/tenancy/tables/tenants.py:38 netbox/users/tables.py:62 -#: netbox/users/tables.py:76 netbox/virtualization/forms/bulk_create.py:20 -#: netbox/virtualization/forms/object_create.py:13 -#: netbox/virtualization/forms/object_create.py:23 -#: netbox/virtualization/tables/clusters.py:17 -#: netbox/virtualization/tables/clusters.py:39 -#: netbox/virtualization/tables/clusters.py:62 -#: netbox/virtualization/tables/virtualmachines.py:55 -#: netbox/virtualization/tables/virtualmachines.py:139 -#: netbox/virtualization/tables/virtualmachines.py:194 -#: netbox/vpn/tables/crypto.py:18 netbox/vpn/tables/crypto.py:57 -#: netbox/vpn/tables/crypto.py:93 netbox/vpn/tables/crypto.py:129 -#: netbox/vpn/tables/crypto.py:158 netbox/vpn/tables/l2vpn.py:23 -#: netbox/vpn/tables/tunnels.py:18 netbox/vpn/tables/tunnels.py:40 -#: netbox/wireless/tables/wirelesslan.py:18 -#: netbox/wireless/tables/wirelesslan.py:79 +#: circuits/tables/circuits.py:32 circuits/tables/circuits.py:132 +#: circuits/tables/providers.py:18 circuits/tables/providers.py:69 +#: circuits/tables/providers.py:99 core/tables/data.py:16 +#: core/tables/jobs.py:14 core/tables/plugins.py:44 core/tables/tasks.py:11 +#: core/tables/tasks.py:115 dcim/forms/filtersets.py:63 +#: dcim/forms/object_create.py:43 dcim/tables/devices.py:52 +#: dcim/tables/devices.py:92 dcim/tables/devices.py:134 +#: dcim/tables/devices.py:289 dcim/tables/devices.py:392 +#: dcim/tables/devices.py:433 dcim/tables/devices.py:482 +#: dcim/tables/devices.py:531 dcim/tables/devices.py:648 +#: dcim/tables/devices.py:731 dcim/tables/devices.py:778 +#: dcim/tables/devices.py:841 dcim/tables/devices.py:911 +#: dcim/tables/devices.py:974 dcim/tables/devices.py:994 +#: dcim/tables/devices.py:1023 dcim/tables/devices.py:1053 +#: dcim/tables/devicetypes.py:31 dcim/tables/power.py:22 +#: dcim/tables/power.py:62 dcim/tables/racks.py:24 dcim/tables/racks.py:113 +#: dcim/tables/sites.py:24 dcim/tables/sites.py:51 dcim/tables/sites.py:78 +#: dcim/tables/sites.py:130 extras/forms/filtersets.py:213 +#: extras/tables/tables.py:58 extras/tables/tables.py:122 +#: extras/tables/tables.py:155 extras/tables/tables.py:180 +#: extras/tables/tables.py:246 extras/tables/tables.py:361 +#: extras/tables/tables.py:378 extras/tables/tables.py:401 +#: extras/tables/tables.py:439 extras/tables/tables.py:491 +#: extras/tables/tables.py:514 ipam/forms/bulk_edit.py:407 +#: ipam/forms/filtersets.py:386 ipam/tables/asn.py:16 ipam/tables/ip.py:85 +#: ipam/tables/ip.py:160 ipam/tables/services.py:15 ipam/tables/services.py:40 +#: ipam/tables/vlans.py:64 ipam/tables/vlans.py:114 ipam/tables/vrfs.py:26 +#: ipam/tables/vrfs.py:68 templates/circuits/circuitgroup.html:28 +#: templates/circuits/circuittype.html:22 +#: templates/circuits/provideraccount.html:28 +#: templates/circuits/providernetwork.html:24 +#: templates/core/datasource.html:34 templates/core/job.html:44 +#: templates/core/plugin.html:54 templates/core/rq_worker.html:43 +#: templates/dcim/consoleport.html:28 templates/dcim/consoleserverport.html:28 +#: templates/dcim/devicebay.html:24 templates/dcim/devicerole.html:26 +#: templates/dcim/frontport.html:28 +#: templates/dcim/inc/interface_vlans_table.html:5 +#: templates/dcim/inc/panels/inventory_items.html:18 +#: templates/dcim/interface.html:38 templates/dcim/interface.html:165 +#: templates/dcim/inventoryitem.html:28 +#: templates/dcim/inventoryitemrole.html:18 templates/dcim/location.html:29 +#: templates/dcim/manufacturer.html:36 templates/dcim/modulebay.html:30 +#: templates/dcim/platform.html:29 templates/dcim/poweroutlet.html:28 +#: templates/dcim/powerport.html:28 templates/dcim/rackrole.html:22 +#: templates/dcim/rearport.html:28 templates/dcim/region.html:29 +#: templates/dcim/sitegroup.html:29 +#: templates/dcim/virtualdevicecontext.html:18 +#: templates/extras/configcontext.html:13 +#: templates/extras/configtemplate.html:13 +#: templates/extras/customfield.html:13 templates/extras/customlink.html:13 +#: templates/extras/eventrule.html:13 templates/extras/exporttemplate.html:15 +#: templates/extras/notificationgroup.html:14 +#: templates/extras/savedfilter.html:13 templates/extras/script_list.html:44 +#: templates/extras/tag.html:14 templates/extras/webhook.html:13 +#: templates/ipam/asnrange.html:15 templates/ipam/fhrpgroup.html:30 +#: templates/ipam/rir.html:22 templates/ipam/role.html:22 +#: templates/ipam/routetarget.html:13 templates/ipam/service.html:24 +#: templates/ipam/servicetemplate.html:15 templates/ipam/vlan.html:35 +#: templates/ipam/vlangroup.html:30 templates/tenancy/contact.html:25 +#: templates/tenancy/contactgroup.html:21 +#: templates/tenancy/contactrole.html:18 templates/tenancy/tenantgroup.html:29 +#: templates/users/group.html:17 templates/users/objectpermission.html:17 +#: templates/virtualization/cluster.html:13 +#: templates/virtualization/clustergroup.html:22 +#: templates/virtualization/clustertype.html:22 +#: templates/virtualization/virtualdisk.html:25 +#: templates/virtualization/virtualmachine.html:15 +#: templates/virtualization/vminterface.html:25 +#: templates/vpn/ikepolicy.html:13 templates/vpn/ikeproposal.html:13 +#: templates/vpn/ipsecpolicy.html:13 templates/vpn/ipsecprofile.html:13 +#: templates/vpn/ipsecprofile.html:36 templates/vpn/ipsecprofile.html:69 +#: templates/vpn/ipsecproposal.html:13 templates/vpn/l2vpn.html:14 +#: templates/vpn/tunnel.html:21 templates/vpn/tunnelgroup.html:26 +#: templates/wireless/wirelesslangroup.html:29 tenancy/tables/contacts.py:19 +#: tenancy/tables/contacts.py:41 tenancy/tables/contacts.py:56 +#: tenancy/tables/tenants.py:16 tenancy/tables/tenants.py:38 +#: users/tables.py:62 users/tables.py:76 +#: virtualization/forms/bulk_create.py:20 +#: virtualization/forms/object_create.py:13 +#: virtualization/forms/object_create.py:23 +#: virtualization/tables/clusters.py:17 virtualization/tables/clusters.py:39 +#: virtualization/tables/clusters.py:62 +#: virtualization/tables/virtualmachines.py:55 +#: virtualization/tables/virtualmachines.py:139 +#: virtualization/tables/virtualmachines.py:194 vpn/tables/crypto.py:18 +#: vpn/tables/crypto.py:57 vpn/tables/crypto.py:93 vpn/tables/crypto.py:129 +#: vpn/tables/crypto.py:158 vpn/tables/l2vpn.py:23 vpn/tables/tunnels.py:18 +#: vpn/tables/tunnels.py:40 wireless/tables/wirelesslan.py:18 +#: wireless/tables/wirelesslan.py:79 msgid "Name" msgstr "Jméno" -#: netbox/circuits/tables/circuits.py:41 -#: netbox/circuits/tables/circuits.py:138 -#: netbox/circuits/tables/providers.py:45 -#: netbox/circuits/tables/providers.py:79 netbox/netbox/navigation/menu.py:266 -#: netbox/netbox/navigation/menu.py:270 netbox/netbox/navigation/menu.py:272 -#: netbox/templates/circuits/provider.html:57 -#: netbox/templates/circuits/provideraccount.html:44 -#: netbox/templates/circuits/providernetwork.html:50 +#: circuits/tables/circuits.py:41 circuits/tables/circuits.py:138 +#: circuits/tables/providers.py:45 circuits/tables/providers.py:79 +#: netbox/navigation/menu.py:266 netbox/navigation/menu.py:270 +#: netbox/navigation/menu.py:272 templates/circuits/provider.html:57 +#: templates/circuits/provideraccount.html:44 +#: templates/circuits/providernetwork.html:50 msgid "Circuits" msgstr "Okruhy" -#: netbox/circuits/tables/circuits.py:55 -#: netbox/templates/circuits/circuit.html:26 +#: circuits/tables/circuits.py:55 templates/circuits/circuit.html:26 msgid "Circuit ID" msgstr "ID okruhu" -#: netbox/circuits/tables/circuits.py:69 -#: netbox/wireless/forms/model_forms.py:160 +#: circuits/tables/circuits.py:69 wireless/forms/model_forms.py:160 msgid "Side A" msgstr "Strana A" -#: netbox/circuits/tables/circuits.py:74 +#: circuits/tables/circuits.py:74 msgid "Side Z" msgstr "Strana Z" -#: netbox/circuits/tables/circuits.py:77 -#: netbox/templates/circuits/circuit.html:55 +#: circuits/tables/circuits.py:77 templates/circuits/circuit.html:55 msgid "Commit Rate" msgstr "Míra odevzdání" -#: netbox/circuits/tables/circuits.py:80 -#: netbox/circuits/tables/providers.py:48 -#: netbox/circuits/tables/providers.py:82 -#: netbox/circuits/tables/providers.py:107 netbox/dcim/tables/devices.py:1036 -#: netbox/dcim/tables/devicetypes.py:92 netbox/dcim/tables/modules.py:29 -#: netbox/dcim/tables/modules.py:72 netbox/dcim/tables/power.py:39 -#: netbox/dcim/tables/power.py:96 netbox/dcim/tables/racks.py:84 -#: netbox/dcim/tables/racks.py:145 netbox/dcim/tables/racks.py:225 -#: netbox/dcim/tables/sites.py:108 netbox/extras/tables/tables.py:582 -#: netbox/ipam/tables/asn.py:69 netbox/ipam/tables/fhrp.py:34 -#: netbox/ipam/tables/ip.py:136 netbox/ipam/tables/ip.py:275 -#: netbox/ipam/tables/ip.py:329 netbox/ipam/tables/ip.py:397 -#: netbox/ipam/tables/services.py:24 netbox/ipam/tables/services.py:54 -#: netbox/ipam/tables/vlans.py:145 netbox/ipam/tables/vrfs.py:47 -#: netbox/ipam/tables/vrfs.py:72 netbox/templates/dcim/htmx/cable_edit.html:89 -#: netbox/templates/generic/bulk_edit.html:86 -#: netbox/templates/inc/panels/comments.html:5 -#: netbox/tenancy/tables/contacts.py:68 netbox/tenancy/tables/tenants.py:46 -#: netbox/utilities/forms/fields/fields.py:29 -#: netbox/virtualization/tables/clusters.py:91 -#: netbox/virtualization/tables/virtualmachines.py:82 -#: netbox/vpn/tables/crypto.py:37 netbox/vpn/tables/crypto.py:74 -#: netbox/vpn/tables/crypto.py:109 netbox/vpn/tables/crypto.py:140 -#: netbox/vpn/tables/crypto.py:173 netbox/vpn/tables/l2vpn.py:37 -#: netbox/vpn/tables/tunnels.py:61 netbox/wireless/tables/wirelesslan.py:27 -#: netbox/wireless/tables/wirelesslan.py:58 +#: circuits/tables/circuits.py:80 circuits/tables/providers.py:48 +#: circuits/tables/providers.py:82 circuits/tables/providers.py:107 +#: dcim/tables/devices.py:1036 dcim/tables/devicetypes.py:92 +#: dcim/tables/modules.py:29 dcim/tables/modules.py:72 dcim/tables/power.py:39 +#: dcim/tables/power.py:96 dcim/tables/racks.py:84 dcim/tables/racks.py:145 +#: dcim/tables/racks.py:225 dcim/tables/sites.py:108 +#: extras/tables/tables.py:582 ipam/tables/asn.py:69 ipam/tables/fhrp.py:34 +#: ipam/tables/ip.py:136 ipam/tables/ip.py:275 ipam/tables/ip.py:329 +#: ipam/tables/ip.py:397 ipam/tables/services.py:24 ipam/tables/services.py:54 +#: ipam/tables/vlans.py:145 ipam/tables/vrfs.py:47 ipam/tables/vrfs.py:72 +#: templates/dcim/htmx/cable_edit.html:89 templates/generic/bulk_edit.html:86 +#: templates/inc/panels/comments.html:5 tenancy/tables/contacts.py:68 +#: tenancy/tables/tenants.py:46 utilities/forms/fields/fields.py:29 +#: virtualization/tables/clusters.py:91 +#: virtualization/tables/virtualmachines.py:82 vpn/tables/crypto.py:37 +#: vpn/tables/crypto.py:74 vpn/tables/crypto.py:109 vpn/tables/crypto.py:140 +#: vpn/tables/crypto.py:173 vpn/tables/l2vpn.py:37 vpn/tables/tunnels.py:61 +#: wireless/tables/wirelesslan.py:27 wireless/tables/wirelesslan.py:58 msgid "Comments" msgstr "Komentář" -#: netbox/circuits/tables/circuits.py:86 -#: netbox/templates/tenancy/contact.html:84 -#: netbox/tenancy/tables/contacts.py:73 +#: circuits/tables/circuits.py:86 templates/tenancy/contact.html:84 +#: tenancy/tables/contacts.py:73 msgid "Assignments" msgstr "Úkoly" -#: netbox/circuits/tables/providers.py:23 +#: circuits/tables/providers.py:23 msgid "Accounts" msgstr "Účty" -#: netbox/circuits/tables/providers.py:29 +#: circuits/tables/providers.py:29 msgid "Account Count" msgstr "Počet účtů" -#: netbox/circuits/tables/providers.py:39 netbox/dcim/tables/sites.py:100 +#: circuits/tables/providers.py:39 dcim/tables/sites.py:100 msgid "ASN Count" msgstr "Počet ASN" -#: netbox/circuits/views.py:331 +#: circuits/views.py:331 #, python-brace-format msgid "No terminations have been defined for circuit {circuit}." msgstr "Pro obvod nebyla definována žádná zakončení {circuit}." -#: netbox/circuits/views.py:380 +#: circuits/views.py:380 #, python-brace-format msgid "Swapped terminations for circuit {circuit}." msgstr "Vyměněné zakončení pro obvod {circuit}." -#: netbox/core/api/views.py:39 +#: core/api/views.py:39 msgid "This user does not have permission to synchronize this data source." msgstr "Tento uživatel nemá oprávnění synchronizovat tento zdroj dat." -#: netbox/core/choices.py:18 +#: core/choices.py:18 msgid "New" msgstr "Nový" -#: netbox/core/choices.py:19 netbox/core/constants.py:18 -#: netbox/core/tables/tasks.py:15 netbox/templates/core/rq_task.html:77 +#: core/choices.py:19 core/constants.py:18 core/tables/tasks.py:15 +#: templates/core/rq_task.html:77 msgid "Queued" msgstr "Ve frontě" -#: netbox/core/choices.py:20 +#: core/choices.py:20 msgid "Syncing" msgstr "Synchronizace" -#: netbox/core/choices.py:21 netbox/core/choices.py:57 -#: netbox/core/tables/jobs.py:41 netbox/templates/core/job.html:86 +#: core/choices.py:21 core/choices.py:57 core/tables/jobs.py:41 +#: templates/core/job.html:86 msgid "Completed" msgstr "Dokončeno" -#: netbox/core/choices.py:22 netbox/core/choices.py:59 -#: netbox/core/constants.py:20 netbox/core/tables/tasks.py:34 -#: netbox/dcim/choices.py:187 netbox/dcim/choices.py:239 -#: netbox/dcim/choices.py:1607 netbox/virtualization/choices.py:47 +#: core/choices.py:22 core/choices.py:59 core/constants.py:20 +#: core/tables/tasks.py:34 dcim/choices.py:187 dcim/choices.py:239 +#: dcim/choices.py:1607 virtualization/choices.py:47 msgid "Failed" msgstr "Neuspěl" -#: netbox/core/choices.py:35 netbox/netbox/navigation/menu.py:335 -#: netbox/netbox/navigation/menu.py:339 -#: netbox/templates/extras/script/base.html:14 -#: netbox/templates/extras/script_list.html:7 -#: netbox/templates/extras/script_list.html:12 -#: netbox/templates/extras/script_result.html:17 +#: core/choices.py:35 netbox/navigation/menu.py:335 +#: netbox/navigation/menu.py:339 templates/extras/script/base.html:14 +#: templates/extras/script_list.html:7 templates/extras/script_list.html:12 +#: templates/extras/script_result.html:17 msgid "Scripts" msgstr "Skripty" -#: netbox/core/choices.py:36 netbox/templates/extras/report/base.html:13 +#: core/choices.py:36 templates/extras/report/base.html:13 msgid "Reports" msgstr "Zprávy" -#: netbox/core/choices.py:54 +#: core/choices.py:54 msgid "Pending" msgstr "Čeká" -#: netbox/core/choices.py:55 netbox/core/constants.py:23 -#: netbox/core/tables/jobs.py:32 netbox/core/tables/tasks.py:38 -#: netbox/templates/core/job.html:73 +#: core/choices.py:55 core/constants.py:23 core/tables/jobs.py:32 +#: core/tables/tasks.py:38 templates/core/job.html:73 msgid "Scheduled" msgstr "Naplánováno" -#: netbox/core/choices.py:56 +#: core/choices.py:56 msgid "Running" msgstr "Běh" -#: netbox/core/choices.py:58 +#: core/choices.py:58 msgid "Errored" msgstr "Chyba" -#: netbox/core/choices.py:87 netbox/core/tables/plugins.py:63 -#: netbox/templates/generic/object.html:61 +#: core/choices.py:87 core/tables/plugins.py:63 +#: templates/generic/object.html:61 msgid "Updated" msgstr "aktualizováno" -#: netbox/core/choices.py:88 +#: core/choices.py:88 msgid "Deleted" msgstr "Vymazáno" -#: netbox/core/constants.py:19 netbox/core/tables/tasks.py:30 +#: core/constants.py:19 core/tables/tasks.py:30 msgid "Finished" msgstr "Dokončeno" -#: netbox/core/constants.py:21 netbox/core/tables/jobs.py:38 -#: netbox/templates/core/job.html:82 -#: netbox/templates/extras/htmx/script_result.html:8 +#: core/constants.py:21 core/tables/jobs.py:38 templates/core/job.html:82 +#: templates/extras/htmx/script_result.html:8 msgid "Started" msgstr "Zahájeno" -#: netbox/core/constants.py:22 netbox/core/tables/tasks.py:26 +#: core/constants.py:22 core/tables/tasks.py:26 msgid "Deferred" msgstr "Odloženo" -#: netbox/core/constants.py:24 +#: core/constants.py:24 msgid "Stopped" msgstr "Zastaveno" -#: netbox/core/constants.py:25 +#: core/constants.py:25 msgid "Cancelled" msgstr "Zrušeno" -#: netbox/core/data_backends.py:32 netbox/core/tables/plugins.py:51 -#: netbox/templates/core/plugin.html:87 -#: netbox/templates/dcim/interface.html:216 +#: core/data_backends.py:32 core/tables/plugins.py:51 +#: templates/core/plugin.html:88 templates/dcim/interface.html:216 msgid "Local" msgstr "Místní" -#: netbox/core/data_backends.py:50 netbox/core/tables/change_logging.py:20 -#: netbox/templates/account/profile.html:15 -#: netbox/templates/users/user.html:17 netbox/users/tables.py:31 +#: core/data_backends.py:50 core/tables/change_logging.py:20 +#: templates/account/profile.html:15 templates/users/user.html:17 +#: users/tables.py:31 msgid "Username" msgstr "Uživatelské jméno" -#: netbox/core/data_backends.py:52 netbox/core/data_backends.py:58 +#: core/data_backends.py:52 core/data_backends.py:58 msgid "Only used for cloning with HTTP(S)" msgstr "Používá se pouze pro klonování pomocí HTTP (S)" -#: netbox/core/data_backends.py:56 netbox/templates/account/base.html:23 -#: netbox/templates/account/password.html:12 -#: netbox/users/forms/model_forms.py:170 +#: core/data_backends.py:56 templates/account/base.html:23 +#: templates/account/password.html:12 users/forms/model_forms.py:170 msgid "Password" msgstr "Heslo" -#: netbox/core/data_backends.py:62 +#: core/data_backends.py:62 msgid "Branch" msgstr "Větev" -#: netbox/core/data_backends.py:120 +#: core/data_backends.py:120 #, python-brace-format msgid "Fetching remote data failed ({name}): {error}" msgstr "Načítání vzdálených dat se nezdařilo ({name}): {error}" -#: netbox/core/data_backends.py:133 +#: core/data_backends.py:133 msgid "AWS access key ID" msgstr "ID přístupového klíče AWS" -#: netbox/core/data_backends.py:137 +#: core/data_backends.py:137 msgid "AWS secret access key" msgstr "Tajný přístupový klíč AWS" -#: netbox/core/events.py:27 +#: core/events.py:27 msgid "Object created" msgstr "Vytvořený objekt" -#: netbox/core/events.py:28 +#: core/events.py:28 msgid "Object updated" msgstr "Objekt aktualizován" -#: netbox/core/events.py:29 +#: core/events.py:29 msgid "Object deleted" msgstr "Objekt odstraněn" -#: netbox/core/events.py:30 +#: core/events.py:30 msgid "Job started" msgstr "Práce byla zahájena" -#: netbox/core/events.py:31 +#: core/events.py:31 msgid "Job completed" msgstr "Úloha dokončena" -#: netbox/core/events.py:32 +#: core/events.py:32 msgid "Job failed" msgstr "Úloha selhala" -#: netbox/core/events.py:33 +#: core/events.py:33 msgid "Job errored" msgstr "Chyba v úloze" -#: netbox/core/filtersets.py:53 netbox/extras/filtersets.py:250 -#: netbox/extras/filtersets.py:633 netbox/extras/filtersets.py:661 +#: core/filtersets.py:53 extras/filtersets.py:250 extras/filtersets.py:633 +#: extras/filtersets.py:661 msgid "Data source (ID)" msgstr "Zdroj dat (ID)" -#: netbox/core/filtersets.py:59 +#: core/filtersets.py:59 msgid "Data source (name)" msgstr "Zdroj dat (název)" -#: netbox/core/filtersets.py:145 netbox/dcim/filtersets.py:501 -#: netbox/extras/filtersets.py:287 netbox/extras/filtersets.py:331 -#: netbox/extras/filtersets.py:353 netbox/extras/filtersets.py:413 -#: netbox/users/filtersets.py:28 +#: core/filtersets.py:145 dcim/filtersets.py:501 extras/filtersets.py:287 +#: extras/filtersets.py:331 extras/filtersets.py:353 extras/filtersets.py:413 +#: users/filtersets.py:28 msgid "User (ID)" msgstr "Uživatel (ID)" -#: netbox/core/filtersets.py:151 +#: core/filtersets.py:151 msgid "User name" msgstr "Uživatelské jméno" -#: netbox/core/forms/bulk_edit.py:25 netbox/core/forms/filtersets.py:43 -#: netbox/core/tables/data.py:26 netbox/dcim/forms/bulk_edit.py:1122 -#: netbox/dcim/forms/bulk_edit.py:1400 netbox/dcim/forms/filtersets.py:1370 -#: netbox/dcim/tables/devices.py:553 netbox/dcim/tables/devicetypes.py:224 -#: netbox/extras/forms/bulk_edit.py:123 netbox/extras/forms/bulk_edit.py:187 -#: netbox/extras/forms/bulk_edit.py:246 netbox/extras/forms/filtersets.py:142 -#: netbox/extras/forms/filtersets.py:229 netbox/extras/forms/filtersets.py:294 -#: netbox/extras/tables/tables.py:162 netbox/extras/tables/tables.py:253 -#: netbox/extras/tables/tables.py:415 netbox/netbox/preferences.py:22 -#: netbox/templates/core/datasource.html:42 -#: netbox/templates/dcim/interface.html:61 -#: netbox/templates/extras/customlink.html:17 -#: netbox/templates/extras/eventrule.html:17 -#: netbox/templates/extras/savedfilter.html:25 -#: netbox/templates/users/objectpermission.html:25 -#: netbox/templates/virtualization/vminterface.html:29 -#: netbox/users/forms/bulk_edit.py:89 netbox/users/forms/filtersets.py:70 -#: netbox/users/tables.py:83 netbox/virtualization/forms/bulk_edit.py:217 -#: netbox/virtualization/forms/filtersets.py:215 +#: core/forms/bulk_edit.py:25 core/forms/filtersets.py:43 +#: core/tables/data.py:26 dcim/forms/bulk_edit.py:1122 +#: dcim/forms/bulk_edit.py:1400 dcim/forms/filtersets.py:1370 +#: dcim/tables/devices.py:553 dcim/tables/devicetypes.py:224 +#: extras/forms/bulk_edit.py:123 extras/forms/bulk_edit.py:187 +#: extras/forms/bulk_edit.py:246 extras/forms/filtersets.py:142 +#: extras/forms/filtersets.py:229 extras/forms/filtersets.py:294 +#: extras/tables/tables.py:162 extras/tables/tables.py:253 +#: extras/tables/tables.py:415 netbox/preferences.py:22 +#: templates/core/datasource.html:42 templates/dcim/interface.html:61 +#: templates/extras/customlink.html:17 templates/extras/eventrule.html:17 +#: templates/extras/savedfilter.html:25 +#: templates/users/objectpermission.html:25 +#: templates/virtualization/vminterface.html:29 users/forms/bulk_edit.py:89 +#: users/forms/filtersets.py:70 users/tables.py:83 +#: virtualization/forms/bulk_edit.py:217 +#: virtualization/forms/filtersets.py:215 msgid "Enabled" msgstr "Povoleno" -#: netbox/core/forms/bulk_edit.py:34 netbox/extras/forms/model_forms.py:285 -#: netbox/templates/extras/savedfilter.html:52 -#: netbox/vpn/forms/filtersets.py:97 netbox/vpn/forms/filtersets.py:127 -#: netbox/vpn/forms/filtersets.py:151 netbox/vpn/forms/filtersets.py:170 -#: netbox/vpn/forms/model_forms.py:301 netbox/vpn/forms/model_forms.py:321 -#: netbox/vpn/forms/model_forms.py:337 netbox/vpn/forms/model_forms.py:357 -#: netbox/vpn/forms/model_forms.py:380 +#: core/forms/bulk_edit.py:34 extras/forms/model_forms.py:285 +#: templates/extras/savedfilter.html:52 vpn/forms/filtersets.py:97 +#: vpn/forms/filtersets.py:127 vpn/forms/filtersets.py:151 +#: vpn/forms/filtersets.py:170 vpn/forms/model_forms.py:301 +#: vpn/forms/model_forms.py:321 vpn/forms/model_forms.py:337 +#: vpn/forms/model_forms.py:357 vpn/forms/model_forms.py:380 msgid "Parameters" msgstr "Parametry" -#: netbox/core/forms/bulk_edit.py:38 netbox/templates/core/datasource.html:68 +#: core/forms/bulk_edit.py:38 templates/core/datasource.html:68 msgid "Ignore rules" msgstr "Ignorovat pravidla" -#: netbox/core/forms/filtersets.py:30 netbox/core/forms/model_forms.py:97 -#: netbox/extras/forms/model_forms.py:248 -#: netbox/extras/forms/model_forms.py:578 -#: netbox/extras/forms/model_forms.py:632 netbox/extras/tables/tables.py:191 -#: netbox/extras/tables/tables.py:483 netbox/extras/tables/tables.py:518 -#: netbox/templates/core/datasource.html:31 -#: netbox/templates/dcim/device/render_config.html:18 -#: netbox/templates/extras/configcontext.html:29 -#: netbox/templates/extras/configtemplate.html:21 -#: netbox/templates/extras/exporttemplate.html:35 -#: netbox/templates/virtualization/virtualmachine/render_config.html:18 +#: core/forms/filtersets.py:30 core/forms/model_forms.py:97 +#: extras/forms/model_forms.py:248 extras/forms/model_forms.py:578 +#: extras/forms/model_forms.py:632 extras/tables/tables.py:191 +#: extras/tables/tables.py:483 extras/tables/tables.py:518 +#: templates/core/datasource.html:31 +#: templates/dcim/device/render_config.html:18 +#: templates/extras/configcontext.html:29 +#: templates/extras/configtemplate.html:21 +#: templates/extras/exporttemplate.html:35 +#: templates/virtualization/virtualmachine/render_config.html:18 msgid "Data Source" msgstr "Zdroj dat" -#: netbox/core/forms/filtersets.py:55 netbox/core/forms/mixins.py:21 +#: core/forms/filtersets.py:55 core/forms/mixins.py:21 msgid "File" msgstr "Soubor" -#: netbox/core/forms/filtersets.py:60 netbox/core/forms/mixins.py:16 -#: netbox/extras/forms/filtersets.py:170 netbox/extras/forms/filtersets.py:328 -#: netbox/extras/forms/filtersets.py:413 +#: core/forms/filtersets.py:60 core/forms/mixins.py:16 +#: extras/forms/filtersets.py:170 extras/forms/filtersets.py:328 +#: extras/forms/filtersets.py:413 msgid "Data source" msgstr "Zdroj dat" -#: netbox/core/forms/filtersets.py:70 netbox/extras/forms/filtersets.py:440 +#: core/forms/filtersets.py:70 extras/forms/filtersets.py:440 msgid "Creation" msgstr "Stvoření" -#: netbox/core/forms/filtersets.py:74 netbox/core/forms/filtersets.py:160 -#: netbox/extras/forms/filtersets.py:461 netbox/extras/tables/tables.py:220 -#: netbox/extras/tables/tables.py:294 netbox/extras/tables/tables.py:326 -#: netbox/extras/tables/tables.py:571 netbox/templates/core/job.html:38 -#: netbox/templates/core/objectchange.html:52 -#: netbox/tenancy/tables/contacts.py:90 netbox/vpn/tables/l2vpn.py:59 +#: core/forms/filtersets.py:74 core/forms/filtersets.py:160 +#: extras/forms/filtersets.py:461 extras/tables/tables.py:220 +#: extras/tables/tables.py:294 extras/tables/tables.py:326 +#: extras/tables/tables.py:571 templates/core/job.html:38 +#: templates/core/objectchange.html:52 tenancy/tables/contacts.py:90 +#: vpn/tables/l2vpn.py:59 msgid "Object Type" msgstr "Typ objektu" -#: netbox/core/forms/filtersets.py:84 +#: core/forms/filtersets.py:84 msgid "Created after" msgstr "Vytvořeno po" -#: netbox/core/forms/filtersets.py:89 +#: core/forms/filtersets.py:89 msgid "Created before" msgstr "Vytvořeno dříve" -#: netbox/core/forms/filtersets.py:94 +#: core/forms/filtersets.py:94 msgid "Scheduled after" msgstr "Naplánováno po" -#: netbox/core/forms/filtersets.py:99 +#: core/forms/filtersets.py:99 msgid "Scheduled before" msgstr "Naplánováno dříve" -#: netbox/core/forms/filtersets.py:104 +#: core/forms/filtersets.py:104 msgid "Started after" msgstr "Začalo po" -#: netbox/core/forms/filtersets.py:109 +#: core/forms/filtersets.py:109 msgid "Started before" msgstr "Začalo dříve" -#: netbox/core/forms/filtersets.py:114 +#: core/forms/filtersets.py:114 msgid "Completed after" msgstr "Dokončeno po" -#: netbox/core/forms/filtersets.py:119 +#: core/forms/filtersets.py:119 msgid "Completed before" msgstr "Dokončeno dříve" -#: netbox/core/forms/filtersets.py:126 netbox/core/forms/filtersets.py:155 -#: netbox/dcim/forms/bulk_edit.py:456 netbox/dcim/forms/filtersets.py:418 -#: netbox/dcim/forms/filtersets.py:462 netbox/dcim/forms/model_forms.py:316 -#: netbox/extras/forms/filtersets.py:456 netbox/extras/forms/filtersets.py:475 -#: netbox/extras/tables/tables.py:302 netbox/extras/tables/tables.py:342 -#: netbox/templates/core/objectchange.html:36 -#: netbox/templates/dcim/rackreservation.html:58 -#: netbox/templates/extras/savedfilter.html:21 -#: netbox/templates/inc/user_menu.html:33 netbox/templates/users/token.html:21 -#: netbox/templates/users/user.html:6 netbox/templates/users/user.html:14 -#: netbox/users/filtersets.py:107 netbox/users/filtersets.py:174 -#: netbox/users/forms/filtersets.py:84 netbox/users/forms/filtersets.py:125 -#: netbox/users/forms/model_forms.py:155 netbox/users/forms/model_forms.py:192 -#: netbox/users/tables.py:19 +#: core/forms/filtersets.py:126 core/forms/filtersets.py:155 +#: dcim/forms/bulk_edit.py:456 dcim/forms/filtersets.py:418 +#: dcim/forms/filtersets.py:462 dcim/forms/model_forms.py:316 +#: extras/forms/filtersets.py:456 extras/forms/filtersets.py:475 +#: extras/tables/tables.py:302 extras/tables/tables.py:342 +#: templates/core/objectchange.html:36 templates/dcim/rackreservation.html:58 +#: templates/extras/savedfilter.html:21 templates/inc/user_menu.html:33 +#: templates/users/token.html:21 templates/users/user.html:6 +#: templates/users/user.html:14 users/filtersets.py:107 +#: users/filtersets.py:174 users/forms/filtersets.py:84 +#: users/forms/filtersets.py:125 users/forms/model_forms.py:155 +#: users/forms/model_forms.py:192 users/tables.py:19 msgid "User" msgstr "Uživatel" -#: netbox/core/forms/filtersets.py:134 netbox/core/tables/change_logging.py:15 -#: netbox/extras/tables/tables.py:609 netbox/extras/tables/tables.py:646 -#: netbox/templates/core/objectchange.html:32 +#: core/forms/filtersets.py:134 core/tables/change_logging.py:15 +#: extras/tables/tables.py:609 extras/tables/tables.py:646 +#: templates/core/objectchange.html:32 msgid "Time" msgstr "Čas" -#: netbox/core/forms/filtersets.py:139 netbox/extras/forms/filtersets.py:445 +#: core/forms/filtersets.py:139 extras/forms/filtersets.py:445 msgid "After" msgstr "Po" -#: netbox/core/forms/filtersets.py:144 netbox/extras/forms/filtersets.py:450 +#: core/forms/filtersets.py:144 extras/forms/filtersets.py:450 msgid "Before" msgstr "Dříve" -#: netbox/core/forms/filtersets.py:148 netbox/core/tables/change_logging.py:29 -#: netbox/extras/forms/model_forms.py:396 -#: netbox/templates/core/objectchange.html:46 -#: netbox/templates/extras/eventrule.html:71 +#: core/forms/filtersets.py:148 core/tables/change_logging.py:29 +#: extras/forms/model_forms.py:396 templates/core/objectchange.html:46 +#: templates/extras/eventrule.html:71 msgid "Action" msgstr "Akce" -#: netbox/core/forms/model_forms.py:54 netbox/core/tables/data.py:46 -#: netbox/templates/core/datafile.html:27 -#: netbox/templates/extras/report/base.html:33 -#: netbox/templates/extras/script/base.html:32 +#: core/forms/model_forms.py:54 core/tables/data.py:46 +#: templates/core/datafile.html:27 templates/extras/report/base.html:33 +#: templates/extras/script/base.html:32 msgid "Source" msgstr "Zdroj" -#: netbox/core/forms/model_forms.py:58 +#: core/forms/model_forms.py:58 msgid "Backend Parameters" msgstr "Parametry backendu" -#: netbox/core/forms/model_forms.py:96 +#: core/forms/model_forms.py:96 msgid "File Upload" msgstr "Nahrávání souboru" -#: netbox/core/forms/model_forms.py:108 +#: core/forms/model_forms.py:108 msgid "Cannot upload a file and sync from an existing file" msgstr "Nelze nahrát soubor a synchronizovat z existujícího souboru" -#: netbox/core/forms/model_forms.py:110 +#: core/forms/model_forms.py:110 msgid "Must upload a file or select a data file to sync" msgstr "" "Musíte nahrát soubor nebo vybrat datový soubor, který chcete synchronizovat" -#: netbox/core/forms/model_forms.py:153 -#: netbox/templates/dcim/rack_elevation_list.html:6 +#: core/forms/model_forms.py:153 templates/dcim/rack_elevation_list.html:6 msgid "Rack Elevations" msgstr "Výšky stojanů" -#: netbox/core/forms/model_forms.py:157 netbox/dcim/choices.py:1518 -#: netbox/dcim/forms/bulk_edit.py:969 netbox/dcim/forms/bulk_edit.py:1357 -#: netbox/dcim/forms/bulk_edit.py:1375 netbox/dcim/tables/racks.py:158 -#: netbox/netbox/navigation/menu.py:291 netbox/netbox/navigation/menu.py:295 +#: core/forms/model_forms.py:157 dcim/choices.py:1518 +#: dcim/forms/bulk_edit.py:969 dcim/forms/bulk_edit.py:1357 +#: dcim/forms/bulk_edit.py:1375 dcim/tables/racks.py:158 +#: netbox/navigation/menu.py:291 netbox/navigation/menu.py:295 msgid "Power" msgstr "Napájení" -#: netbox/core/forms/model_forms.py:159 netbox/netbox/navigation/menu.py:154 -#: netbox/templates/core/inc/config_data.html:37 +#: core/forms/model_forms.py:159 netbox/navigation/menu.py:154 +#: templates/core/inc/config_data.html:37 msgid "IPAM" msgstr "IPAM" -#: netbox/core/forms/model_forms.py:160 netbox/netbox/navigation/menu.py:230 -#: netbox/templates/core/inc/config_data.html:50 -#: netbox/vpn/forms/bulk_edit.py:77 netbox/vpn/forms/filtersets.py:43 -#: netbox/vpn/forms/model_forms.py:61 netbox/vpn/forms/model_forms.py:146 +#: core/forms/model_forms.py:160 netbox/navigation/menu.py:230 +#: templates/core/inc/config_data.html:50 vpn/forms/bulk_edit.py:77 +#: vpn/forms/filtersets.py:43 vpn/forms/model_forms.py:61 +#: vpn/forms/model_forms.py:146 msgid "Security" msgstr "Zabezpečení" -#: netbox/core/forms/model_forms.py:161 -#: netbox/templates/core/inc/config_data.html:59 +#: core/forms/model_forms.py:161 templates/core/inc/config_data.html:59 msgid "Banners" msgstr "Bannery" -#: netbox/core/forms/model_forms.py:162 -#: netbox/templates/core/inc/config_data.html:80 +#: core/forms/model_forms.py:162 templates/core/inc/config_data.html:80 msgid "Pagination" msgstr "Stránkování" -#: netbox/core/forms/model_forms.py:163 netbox/extras/forms/bulk_edit.py:92 -#: netbox/extras/forms/filtersets.py:47 netbox/extras/forms/model_forms.py:116 -#: netbox/extras/forms/model_forms.py:129 -#: netbox/templates/core/inc/config_data.html:93 +#: core/forms/model_forms.py:163 extras/forms/bulk_edit.py:92 +#: extras/forms/filtersets.py:47 extras/forms/model_forms.py:116 +#: extras/forms/model_forms.py:129 templates/core/inc/config_data.html:93 msgid "Validation" msgstr "Validace" -#: netbox/core/forms/model_forms.py:164 -#: netbox/templates/account/preferences.html:6 +#: core/forms/model_forms.py:164 templates/account/preferences.html:6 msgid "User Preferences" msgstr "Uživatelské předvolby" -#: netbox/core/forms/model_forms.py:167 netbox/dcim/forms/filtersets.py:732 -#: netbox/templates/core/inc/config_data.html:127 -#: netbox/users/forms/model_forms.py:64 +#: core/forms/model_forms.py:167 dcim/forms/filtersets.py:732 +#: templates/core/inc/config_data.html:127 users/forms/model_forms.py:64 msgid "Miscellaneous" msgstr "Různé" -#: netbox/core/forms/model_forms.py:169 +#: core/forms/model_forms.py:169 msgid "Config Revision" msgstr "Revize konfigurace" -#: netbox/core/forms/model_forms.py:208 +#: core/forms/model_forms.py:208 msgid "This parameter has been defined statically and cannot be modified." msgstr "Tento parametr byl definován staticky a nelze jej změnit." -#: netbox/core/forms/model_forms.py:216 +#: core/forms/model_forms.py:216 #, python-brace-format msgid "Current value: {value}" msgstr "Aktuální hodnota: {value}" -#: netbox/core/forms/model_forms.py:218 +#: core/forms/model_forms.py:218 msgid " (default)" msgstr " (výchozí)" -#: netbox/core/models/change_logging.py:29 +#: core/models/change_logging.py:29 msgid "time" msgstr "čas" -#: netbox/core/models/change_logging.py:42 +#: core/models/change_logging.py:42 msgid "user name" msgstr "Uživatelské jméno" -#: netbox/core/models/change_logging.py:47 +#: core/models/change_logging.py:47 msgid "request ID" msgstr "ID požadavku" -#: netbox/core/models/change_logging.py:52 netbox/extras/models/staging.py:69 +#: core/models/change_logging.py:52 extras/models/staging.py:69 msgid "action" msgstr "akce" -#: netbox/core/models/change_logging.py:86 +#: core/models/change_logging.py:86 msgid "pre-change data" msgstr "údaje před změnou" -#: netbox/core/models/change_logging.py:92 +#: core/models/change_logging.py:92 msgid "post-change data" msgstr "údaje po změně" -#: netbox/core/models/change_logging.py:106 +#: core/models/change_logging.py:106 msgid "object change" msgstr "změna objektu" -#: netbox/core/models/change_logging.py:107 +#: core/models/change_logging.py:107 msgid "object changes" msgstr "změny objektu" -#: netbox/core/models/change_logging.py:123 +#: core/models/change_logging.py:123 #, python-brace-format msgid "Change logging is not supported for this object type ({type})." msgstr "Protokolování změn není u tohoto typu objektu podporováno ({type})." -#: netbox/core/models/config.py:18 netbox/core/models/data.py:266 -#: netbox/core/models/files.py:27 netbox/core/models/jobs.py:49 -#: netbox/extras/models/models.py:730 netbox/extras/models/notifications.py:39 -#: netbox/extras/models/notifications.py:186 -#: netbox/netbox/models/features.py:53 netbox/users/models/tokens.py:32 +#: core/models/config.py:18 core/models/data.py:266 core/models/files.py:27 +#: core/models/jobs.py:49 extras/models/models.py:730 +#: extras/models/notifications.py:39 extras/models/notifications.py:186 +#: netbox/models/features.py:53 users/models/tokens.py:32 msgid "created" msgstr "vytvořil" -#: netbox/core/models/config.py:22 +#: core/models/config.py:22 msgid "comment" msgstr "komentář" -#: netbox/core/models/config.py:29 +#: core/models/config.py:29 msgid "configuration data" msgstr "konfigurační data" -#: netbox/core/models/config.py:36 +#: core/models/config.py:36 msgid "config revision" msgstr "revize konfigurace" -#: netbox/core/models/config.py:37 +#: core/models/config.py:37 msgid "config revisions" msgstr "revize konfigurace" -#: netbox/core/models/config.py:41 +#: core/models/config.py:41 msgid "Default configuration" msgstr "Výchozí konfigurace" -#: netbox/core/models/config.py:43 +#: core/models/config.py:43 msgid "Current configuration" msgstr "Aktuální konfigurace" -#: netbox/core/models/config.py:44 +#: core/models/config.py:44 #, python-brace-format msgid "Config revision #{id}" msgstr "Revize konfigurace #{id}" -#: netbox/core/models/data.py:44 netbox/dcim/models/cables.py:43 -#: netbox/dcim/models/device_component_templates.py:203 -#: netbox/dcim/models/device_component_templates.py:237 -#: netbox/dcim/models/device_component_templates.py:272 -#: netbox/dcim/models/device_component_templates.py:334 -#: netbox/dcim/models/device_component_templates.py:413 -#: netbox/dcim/models/device_component_templates.py:512 -#: netbox/dcim/models/device_component_templates.py:612 -#: netbox/dcim/models/device_components.py:283 -#: netbox/dcim/models/device_components.py:312 -#: netbox/dcim/models/device_components.py:345 -#: netbox/dcim/models/device_components.py:463 -#: netbox/dcim/models/device_components.py:605 -#: netbox/dcim/models/device_components.py:970 -#: netbox/dcim/models/device_components.py:1044 -#: netbox/dcim/models/power.py:102 netbox/extras/models/customfields.py:78 -#: netbox/extras/models/search.py:41 -#: netbox/virtualization/models/clusters.py:61 netbox/vpn/models/l2vpn.py:32 +#: core/models/data.py:44 dcim/models/cables.py:43 +#: dcim/models/device_component_templates.py:203 +#: dcim/models/device_component_templates.py:237 +#: dcim/models/device_component_templates.py:272 +#: dcim/models/device_component_templates.py:334 +#: dcim/models/device_component_templates.py:413 +#: dcim/models/device_component_templates.py:512 +#: dcim/models/device_component_templates.py:612 +#: dcim/models/device_components.py:283 dcim/models/device_components.py:312 +#: dcim/models/device_components.py:345 dcim/models/device_components.py:463 +#: dcim/models/device_components.py:605 dcim/models/device_components.py:970 +#: dcim/models/device_components.py:1044 dcim/models/power.py:102 +#: extras/models/customfields.py:78 extras/models/search.py:41 +#: virtualization/models/clusters.py:61 vpn/models/l2vpn.py:32 msgid "type" msgstr "typ" -#: netbox/core/models/data.py:49 netbox/extras/choices.py:37 -#: netbox/extras/models/models.py:164 netbox/extras/tables/tables.py:656 -#: netbox/templates/core/datasource.html:58 -#: netbox/templates/core/plugin.html:65 +#: core/models/data.py:49 extras/choices.py:37 extras/models/models.py:164 +#: extras/tables/tables.py:656 templates/core/datasource.html:58 +#: templates/core/plugin.html:66 msgid "URL" msgstr "URL" -#: netbox/core/models/data.py:59 -#: netbox/dcim/models/device_component_templates.py:418 -#: netbox/dcim/models/device_components.py:512 -#: netbox/extras/models/models.py:70 netbox/extras/models/models.py:301 -#: netbox/extras/models/models.py:526 netbox/users/models/permissions.py:29 +#: core/models/data.py:59 dcim/models/device_component_templates.py:418 +#: dcim/models/device_components.py:512 extras/models/models.py:70 +#: extras/models/models.py:301 extras/models/models.py:526 +#: users/models/permissions.py:29 msgid "enabled" msgstr "povoleno" -#: netbox/core/models/data.py:63 +#: core/models/data.py:63 msgid "ignore rules" msgstr "ignorovat pravidla" -#: netbox/core/models/data.py:65 +#: core/models/data.py:65 msgid "Patterns (one per line) matching files to ignore when syncing" msgstr "" "Vzory (jeden na řádek) odpovídající soubory, které mají být ignorovány při " "synchronizaci" -#: netbox/core/models/data.py:68 netbox/extras/models/models.py:534 +#: core/models/data.py:68 extras/models/models.py:534 msgid "parameters" msgstr "parametry" -#: netbox/core/models/data.py:73 +#: core/models/data.py:73 msgid "last synced" msgstr "naposledy synchronizováno" -#: netbox/core/models/data.py:81 +#: core/models/data.py:81 msgid "data source" msgstr "zdroj dat" -#: netbox/core/models/data.py:82 +#: core/models/data.py:82 msgid "data sources" msgstr "datové zdroje" -#: netbox/core/models/data.py:122 +#: core/models/data.py:122 #, python-brace-format msgid "Unknown backend type: {type}" msgstr "Neznámý typ backendu: {type}" -#: netbox/core/models/data.py:164 +#: core/models/data.py:164 msgid "Cannot initiate sync; syncing already in progress." msgstr "Synchronizaci nelze spustit; synchronizace již probíhá." -#: netbox/core/models/data.py:177 +#: core/models/data.py:177 msgid "" "There was an error initializing the backend. A dependency needs to be " "installed: " msgstr "" "Při inicializaci backendu došlo k chybě. Je třeba nainstalovat závislost: " -#: netbox/core/models/data.py:270 netbox/core/models/files.py:31 -#: netbox/netbox/models/features.py:59 +#: core/models/data.py:270 core/models/files.py:31 +#: netbox/models/features.py:59 msgid "last updated" msgstr "naposledy aktualizováno" -#: netbox/core/models/data.py:280 netbox/dcim/models/cables.py:444 +#: core/models/data.py:280 dcim/models/cables.py:444 msgid "path" msgstr "cesta" -#: netbox/core/models/data.py:283 +#: core/models/data.py:283 msgid "File path relative to the data source's root" msgstr "Cesta k souboru vzhledem ke kořenovému zdroji dat." -#: netbox/core/models/data.py:287 netbox/ipam/models/ip.py:503 +#: core/models/data.py:287 ipam/models/ip.py:503 msgid "size" msgstr "velikost" -#: netbox/core/models/data.py:290 +#: core/models/data.py:290 msgid "hash" msgstr "hash" -#: netbox/core/models/data.py:294 +#: core/models/data.py:294 msgid "Length must be 64 hexadecimal characters." msgstr "Délka musí být 64 hexadecimálních znaků." -#: netbox/core/models/data.py:296 +#: core/models/data.py:296 msgid "SHA256 hash of the file data" msgstr "SHA256 hash dat souboru" -#: netbox/core/models/data.py:313 +#: core/models/data.py:313 msgid "data file" msgstr "datový soubor" -#: netbox/core/models/data.py:314 +#: core/models/data.py:314 msgid "data files" msgstr "datové soubory" -#: netbox/core/models/data.py:401 +#: core/models/data.py:401 msgid "auto sync record" msgstr "záznam automatické synchronizace" -#: netbox/core/models/data.py:402 +#: core/models/data.py:402 msgid "auto sync records" msgstr "automatická synchronizace záznamů" -#: netbox/core/models/files.py:37 +#: core/models/files.py:37 msgid "file root" msgstr "kořenový soubor" -#: netbox/core/models/files.py:42 +#: core/models/files.py:42 msgid "file path" msgstr "cesta k souboru" -#: netbox/core/models/files.py:44 +#: core/models/files.py:44 msgid "File path relative to the designated root path" msgstr "Cesta k souboru vzhledem k určené kořenové cestě" -#: netbox/core/models/files.py:61 +#: core/models/files.py:61 msgid "managed file" msgstr "spravovaný soubor" -#: netbox/core/models/files.py:62 +#: core/models/files.py:62 msgid "managed files" msgstr "spravované soubory" -#: netbox/core/models/jobs.py:53 +#: core/models/jobs.py:53 msgid "scheduled" msgstr "naplánováno" -#: netbox/core/models/jobs.py:58 +#: core/models/jobs.py:58 msgid "interval" msgstr "interval" -#: netbox/core/models/jobs.py:64 +#: core/models/jobs.py:64 msgid "Recurrence interval (in minutes)" msgstr "Interval opakování (v minutách)" -#: netbox/core/models/jobs.py:67 +#: core/models/jobs.py:67 msgid "started" msgstr "začal" -#: netbox/core/models/jobs.py:72 +#: core/models/jobs.py:72 msgid "completed" msgstr "dokončena" -#: netbox/core/models/jobs.py:90 netbox/extras/models/models.py:101 -#: netbox/extras/models/staging.py:87 +#: core/models/jobs.py:90 extras/models/models.py:101 +#: extras/models/staging.py:87 msgid "data" msgstr "data" -#: netbox/core/models/jobs.py:95 +#: core/models/jobs.py:95 msgid "error" msgstr "chyba" -#: netbox/core/models/jobs.py:100 +#: core/models/jobs.py:100 msgid "job ID" msgstr "ID úlohy" -#: netbox/core/models/jobs.py:111 +#: core/models/jobs.py:111 msgid "job" msgstr "práce" -#: netbox/core/models/jobs.py:112 +#: core/models/jobs.py:112 msgid "jobs" msgstr "pracovní místa" -#: netbox/core/models/jobs.py:135 +#: core/models/jobs.py:135 #, python-brace-format msgid "Jobs cannot be assigned to this object type ({type})." msgstr "K tomuto typu objektu nelze přiřadit úlohy ({type})." -#: netbox/core/models/jobs.py:185 +#: core/models/jobs.py:185 #, python-brace-format msgid "Invalid status for job termination. Choices are: {choices}" msgstr "Neplatný stav pro ukončení úlohy. Možnosti jsou: {choices}" -#: netbox/core/models/jobs.py:216 +#: core/models/jobs.py:216 msgid "" "enqueue() cannot be called with values for both schedule_at and immediate." msgstr "enqueue () nelze volat s hodnotami pro schedule_at a instant." -#: netbox/core/signals.py:126 +#: core/signals.py:126 #, python-brace-format msgid "Deletion is prevented by a protection rule: {message}" msgstr "Odstranění brání pravidlo ochrany: {message}" -#: netbox/core/tables/change_logging.py:25 -#: netbox/templates/account/profile.html:19 -#: netbox/templates/users/user.html:21 +#: core/tables/change_logging.py:25 templates/account/profile.html:19 +#: templates/users/user.html:21 msgid "Full Name" msgstr "Celé jméno" -#: netbox/core/tables/change_logging.py:37 netbox/core/tables/jobs.py:21 -#: netbox/extras/choices.py:41 netbox/extras/tables/tables.py:279 -#: netbox/extras/tables/tables.py:297 netbox/extras/tables/tables.py:329 -#: netbox/extras/tables/tables.py:409 netbox/extras/tables/tables.py:470 -#: netbox/extras/tables/tables.py:576 netbox/extras/tables/tables.py:616 -#: netbox/extras/tables/tables.py:653 netbox/netbox/tables/tables.py:244 -#: netbox/templates/core/objectchange.html:58 -#: netbox/templates/extras/eventrule.html:78 -#: netbox/templates/extras/journalentry.html:18 -#: netbox/tenancy/tables/contacts.py:93 netbox/vpn/tables/l2vpn.py:64 +#: core/tables/change_logging.py:37 core/tables/jobs.py:21 +#: extras/choices.py:41 extras/tables/tables.py:279 +#: extras/tables/tables.py:297 extras/tables/tables.py:329 +#: extras/tables/tables.py:409 extras/tables/tables.py:470 +#: extras/tables/tables.py:576 extras/tables/tables.py:616 +#: extras/tables/tables.py:653 netbox/tables/tables.py:244 +#: templates/core/objectchange.html:58 templates/extras/eventrule.html:78 +#: templates/extras/journalentry.html:18 tenancy/tables/contacts.py:93 +#: vpn/tables/l2vpn.py:64 msgid "Object" msgstr "Objekt" -#: netbox/core/tables/change_logging.py:42 -#: netbox/templates/core/objectchange.html:68 +#: core/tables/change_logging.py:42 templates/core/objectchange.html:68 msgid "Request ID" msgstr "ID požadavku" -#: netbox/core/tables/config.py:21 netbox/users/forms/filtersets.py:44 -#: netbox/users/tables.py:39 +#: core/tables/config.py:21 users/forms/filtersets.py:44 users/tables.py:39 msgid "Is Active" msgstr "Je aktivní" -#: netbox/core/tables/data.py:50 netbox/templates/core/datafile.html:31 +#: core/tables/data.py:50 templates/core/datafile.html:31 msgid "Path" msgstr "Cesta" -#: netbox/core/tables/data.py:54 -#: netbox/templates/extras/inc/result_pending.html:7 +#: core/tables/data.py:54 templates/extras/inc/result_pending.html:7 msgid "Last updated" msgstr "Naposledy aktualizováno" -#: netbox/core/tables/jobs.py:10 netbox/core/tables/tasks.py:76 -#: netbox/dcim/tables/devicetypes.py:164 netbox/extras/tables/tables.py:216 -#: netbox/extras/tables/tables.py:460 netbox/netbox/tables/tables.py:189 -#: netbox/templates/dcim/virtualchassis_edit.html:52 -#: netbox/utilities/forms/forms.py:73 -#: netbox/wireless/tables/wirelesslink.py:17 +#: core/tables/jobs.py:10 core/tables/tasks.py:76 +#: dcim/tables/devicetypes.py:164 extras/tables/tables.py:216 +#: extras/tables/tables.py:460 netbox/tables/tables.py:189 +#: templates/dcim/virtualchassis_edit.html:52 utilities/forms/forms.py:73 +#: wireless/tables/wirelesslink.py:17 msgid "ID" msgstr "ID" -#: netbox/core/tables/jobs.py:35 +#: core/tables/jobs.py:35 msgid "Interval" msgstr "Interval" -#: netbox/core/tables/plugins.py:14 netbox/templates/vpn/ipsecprofile.html:44 -#: netbox/vpn/forms/bulk_edit.py:141 netbox/vpn/forms/bulk_import.py:172 -#: netbox/vpn/tables/crypto.py:61 +#: core/tables/plugins.py:14 templates/vpn/ipsecprofile.html:44 +#: vpn/forms/bulk_edit.py:141 vpn/forms/bulk_import.py:172 +#: vpn/tables/crypto.py:61 msgid "Version" msgstr "Verze" -#: netbox/core/tables/plugins.py:19 netbox/templates/core/datafile.html:38 +#: core/tables/plugins.py:19 templates/core/datafile.html:38 msgid "Last Updated" msgstr "Naposledy aktualizováno" -#: netbox/core/tables/plugins.py:23 +#: core/tables/plugins.py:23 msgid "Minimum NetBox Version" msgstr "Minimální verze NetBoxu" -#: netbox/core/tables/plugins.py:27 +#: core/tables/plugins.py:27 msgid "Maximum NetBox Version" msgstr "Maximální verze NetBoxu" -#: netbox/core/tables/plugins.py:31 netbox/core/tables/plugins.py:74 +#: core/tables/plugins.py:31 core/tables/plugins.py:74 msgid "No plugin data found" msgstr "Nebyla nalezena žádná data pluginu" -#: netbox/core/tables/plugins.py:48 netbox/templates/core/plugin.html:61 +#: core/tables/plugins.py:48 templates/core/plugin.html:62 msgid "Author" msgstr "Autor" -#: netbox/core/tables/plugins.py:54 +#: core/tables/plugins.py:54 msgid "Installed" msgstr "Nainstalováno" -#: netbox/core/tables/plugins.py:57 netbox/templates/core/plugin.html:83 +#: core/tables/plugins.py:57 templates/core/plugin.html:84 msgid "Certified" msgstr "Certifikováno" -#: netbox/core/tables/plugins.py:60 +#: core/tables/plugins.py:60 msgid "Published" msgstr "Zveřejněno" -#: netbox/core/tables/plugins.py:66 +#: core/tables/plugins.py:66 msgid "Installed Version" msgstr "Nainstalovaná verze" -#: netbox/core/tables/plugins.py:70 +#: core/tables/plugins.py:70 msgid "Latest Version" msgstr "Nejnovější verze" -#: netbox/core/tables/tasks.py:18 +#: core/tables/tasks.py:18 msgid "Oldest Task" msgstr "Nejstarší úkol" -#: netbox/core/tables/tasks.py:42 netbox/templates/core/rq_worker_list.html:39 +#: core/tables/tasks.py:42 templates/core/rq_worker_list.html:39 msgid "Workers" msgstr "Pracovníci" -#: netbox/core/tables/tasks.py:46 netbox/vpn/tables/tunnels.py:88 +#: core/tables/tasks.py:46 vpn/tables/tunnels.py:88 msgid "Host" msgstr "Hostitel" -#: netbox/core/tables/tasks.py:50 netbox/ipam/forms/filtersets.py:535 +#: core/tables/tasks.py:50 ipam/forms/filtersets.py:535 msgid "Port" msgstr "Přístav" -#: netbox/core/tables/tasks.py:54 +#: core/tables/tasks.py:54 msgid "DB" msgstr "DB" -#: netbox/core/tables/tasks.py:58 +#: core/tables/tasks.py:58 msgid "Scheduler PID" msgstr "Plánovač PID" -#: netbox/core/tables/tasks.py:62 +#: core/tables/tasks.py:62 msgid "No queues found" msgstr "Nebyly nalezeny žádné fronty" -#: netbox/core/tables/tasks.py:82 +#: core/tables/tasks.py:82 msgid "Enqueued" msgstr "Ve frontě" -#: netbox/core/tables/tasks.py:85 +#: core/tables/tasks.py:85 msgid "Ended" msgstr "Ukončeno" -#: netbox/core/tables/tasks.py:93 netbox/templates/core/rq_task.html:85 +#: core/tables/tasks.py:93 templates/core/rq_task.html:85 msgid "Callable" msgstr "Volatelný" -#: netbox/core/tables/tasks.py:97 +#: core/tables/tasks.py:97 msgid "No tasks found" msgstr "Nebyly nalezeny žádné úkoly" -#: netbox/core/tables/tasks.py:118 netbox/templates/core/rq_worker.html:47 +#: core/tables/tasks.py:118 templates/core/rq_worker.html:47 msgid "State" msgstr "státu" -#: netbox/core/tables/tasks.py:121 netbox/templates/core/rq_worker.html:51 +#: core/tables/tasks.py:121 templates/core/rq_worker.html:51 msgid "Birth" msgstr "Narození" -#: netbox/core/tables/tasks.py:124 netbox/templates/core/rq_worker.html:59 +#: core/tables/tasks.py:124 templates/core/rq_worker.html:59 msgid "PID" msgstr "PID" -#: netbox/core/tables/tasks.py:128 +#: core/tables/tasks.py:128 msgid "No workers found" msgstr "Nebyli nalezeni žádní pracovníci" -#: netbox/core/views.py:90 +#: core/views.py:90 #, python-brace-format msgid "Queued job #{id} to sync {datasource}" msgstr "Úloha ve frontě #{id} synchronizovat {datasource}" -#: netbox/core/views.py:319 +#: core/views.py:319 #, python-brace-format msgid "Restored configuration revision #{id}" msgstr "Obnovená revize konfigurace #{id}" -#: netbox/core/views.py:412 netbox/core/views.py:455 netbox/core/views.py:531 +#: core/views.py:412 core/views.py:455 core/views.py:531 #, python-brace-format msgid "Job {job_id} not found" msgstr "Práce {job_id} nenalezeno" -#: netbox/core/views.py:463 +#: core/views.py:463 #, python-brace-format msgid "Job {id} has been deleted." msgstr "Práce {id} byl vymazán." -#: netbox/core/views.py:465 +#: core/views.py:465 #, python-brace-format msgid "Error deleting job {id}: {error}" msgstr "Chyba při mazání úlohy {id}: {error}" -#: netbox/core/views.py:478 netbox/core/views.py:496 +#: core/views.py:478 core/views.py:496 #, python-brace-format msgid "Job {id} not found." msgstr "Práce {id} nenalezeno." -#: netbox/core/views.py:484 +#: core/views.py:484 #, python-brace-format msgid "Job {id} has been re-enqueued." msgstr "Práce {id} byla znovu zařazena do fronty." -#: netbox/core/views.py:519 +#: core/views.py:519 #, python-brace-format msgid "Job {id} has been enqueued." msgstr "Práce {id} byl zařazen do fronty." -#: netbox/core/views.py:538 +#: core/views.py:538 #, python-brace-format msgid "Job {id} has been stopped." msgstr "Práce {id} byl zastaven." -#: netbox/core/views.py:540 +#: core/views.py:540 #, python-brace-format msgid "Failed to stop job {id}" msgstr "Nepodařilo se zastavit úlohu {id}" -#: netbox/core/views.py:678 +#: core/views.py:678 msgid "Plugins catalog could not be loaded" msgstr "Katalog pluginů nelze načíst" -#: netbox/core/views.py:712 +#: core/views.py:712 #, python-brace-format msgid "Plugin {name} not found" msgstr "Plugin {name} nenalezeno" -#: netbox/dcim/api/serializers_/devices.py:49 -#: netbox/dcim/api/serializers_/devicetypes.py:25 +#: dcim/api/serializers_/devices.py:49 dcim/api/serializers_/devicetypes.py:25 msgid "Position (U)" msgstr "Pozice (U)" -#: netbox/dcim/api/serializers_/racks.py:112 -#: netbox/templates/dcim/rack.html:28 +#: dcim/api/serializers_/racks.py:112 templates/dcim/rack.html:28 msgid "Facility ID" msgstr "ID objektu" -#: netbox/dcim/choices.py:21 netbox/virtualization/choices.py:21 +#: dcim/choices.py:21 virtualization/choices.py:21 msgid "Staging" msgstr "Inscenace" -#: netbox/dcim/choices.py:23 netbox/dcim/choices.py:189 -#: netbox/dcim/choices.py:240 netbox/dcim/choices.py:1531 -#: netbox/virtualization/choices.py:23 netbox/virtualization/choices.py:48 +#: dcim/choices.py:23 dcim/choices.py:189 dcim/choices.py:240 +#: dcim/choices.py:1531 virtualization/choices.py:23 +#: virtualization/choices.py:48 msgid "Decommissioning" msgstr "Vyřazení z provozu" -#: netbox/dcim/choices.py:24 +#: dcim/choices.py:24 msgid "Retired" msgstr "Důchodce" -#: netbox/dcim/choices.py:65 +#: dcim/choices.py:65 msgid "2-post frame" msgstr "2-sloupový rám" -#: netbox/dcim/choices.py:66 +#: dcim/choices.py:66 msgid "4-post frame" msgstr "4-sloupový rám" -#: netbox/dcim/choices.py:67 +#: dcim/choices.py:67 msgid "4-post cabinet" msgstr "4-sloupová skříňka" -#: netbox/dcim/choices.py:68 +#: dcim/choices.py:68 msgid "Wall-mounted frame" msgstr "Nástěnný rám" -#: netbox/dcim/choices.py:69 +#: dcim/choices.py:69 msgid "Wall-mounted frame (vertical)" msgstr "Nástěnný rám (vertikální)" -#: netbox/dcim/choices.py:70 +#: dcim/choices.py:70 msgid "Wall-mounted cabinet" msgstr "Nástěnná skříňka" -#: netbox/dcim/choices.py:71 +#: dcim/choices.py:71 msgid "Wall-mounted cabinet (vertical)" msgstr "Nástěnná skříň (vertikální)" -#: netbox/dcim/choices.py:83 netbox/dcim/choices.py:84 -#: netbox/dcim/choices.py:85 netbox/dcim/choices.py:86 +#: dcim/choices.py:83 dcim/choices.py:84 dcim/choices.py:85 dcim/choices.py:86 #, python-brace-format msgid "{n} inches" msgstr "{n} palců" -#: netbox/dcim/choices.py:100 netbox/ipam/choices.py:32 -#: netbox/ipam/choices.py:50 netbox/ipam/choices.py:70 -#: netbox/ipam/choices.py:155 netbox/wireless/choices.py:26 +#: dcim/choices.py:100 ipam/choices.py:32 ipam/choices.py:50 +#: ipam/choices.py:70 ipam/choices.py:155 wireless/choices.py:26 msgid "Reserved" msgstr "Rezervováno" -#: netbox/dcim/choices.py:101 netbox/templates/dcim/device.html:259 +#: dcim/choices.py:101 templates/dcim/device.html:259 msgid "Available" msgstr "K dispozici" -#: netbox/dcim/choices.py:104 netbox/ipam/choices.py:33 -#: netbox/ipam/choices.py:51 netbox/ipam/choices.py:71 -#: netbox/ipam/choices.py:156 netbox/wireless/choices.py:28 +#: dcim/choices.py:104 ipam/choices.py:33 ipam/choices.py:51 +#: ipam/choices.py:71 ipam/choices.py:156 wireless/choices.py:28 msgid "Deprecated" msgstr "Zastaralé" -#: netbox/dcim/choices.py:114 -#: netbox/templates/dcim/inc/panels/racktype_dimensions.html:41 +#: dcim/choices.py:114 templates/dcim/inc/panels/racktype_dimensions.html:41 msgid "Millimeters" msgstr "Milimetry" -#: netbox/dcim/choices.py:115 netbox/dcim/choices.py:1553 +#: dcim/choices.py:115 dcim/choices.py:1553 msgid "Inches" msgstr "palce" -#: netbox/dcim/choices.py:136 netbox/dcim/choices.py:207 -#: netbox/dcim/choices.py:254 +#: dcim/choices.py:136 dcim/choices.py:207 dcim/choices.py:254 msgid "Front to rear" msgstr "Zepředu dozadu" -#: netbox/dcim/choices.py:137 netbox/dcim/choices.py:208 -#: netbox/dcim/choices.py:255 +#: dcim/choices.py:137 dcim/choices.py:208 dcim/choices.py:255 msgid "Rear to front" msgstr "Zezadu dopředu" -#: netbox/dcim/choices.py:151 netbox/dcim/forms/bulk_edit.py:68 -#: netbox/dcim/forms/bulk_edit.py:87 netbox/dcim/forms/bulk_edit.py:173 -#: netbox/dcim/forms/bulk_edit.py:1405 netbox/dcim/forms/bulk_import.py:60 -#: netbox/dcim/forms/bulk_import.py:74 netbox/dcim/forms/bulk_import.py:137 -#: netbox/dcim/forms/bulk_import.py:566 netbox/dcim/forms/bulk_import.py:833 -#: netbox/dcim/forms/bulk_import.py:1088 netbox/dcim/forms/filtersets.py:234 -#: netbox/dcim/forms/model_forms.py:74 netbox/dcim/forms/model_forms.py:93 -#: netbox/dcim/forms/model_forms.py:170 netbox/dcim/forms/model_forms.py:1062 -#: netbox/dcim/forms/model_forms.py:1502 -#: netbox/dcim/forms/object_import.py:176 netbox/dcim/tables/devices.py:656 -#: netbox/dcim/tables/devices.py:869 netbox/dcim/tables/devices.py:954 -#: netbox/extras/tables/tables.py:223 netbox/ipam/tables/fhrp.py:59 -#: netbox/ipam/tables/ip.py:378 netbox/ipam/tables/services.py:44 -#: netbox/templates/dcim/interface.html:102 -#: netbox/templates/dcim/interface.html:309 -#: netbox/templates/dcim/location.html:41 netbox/templates/dcim/region.html:37 -#: netbox/templates/dcim/sitegroup.html:37 -#: netbox/templates/ipam/service.html:28 -#: netbox/templates/tenancy/contactgroup.html:29 -#: netbox/templates/tenancy/tenantgroup.html:37 -#: netbox/templates/virtualization/vminterface.html:39 -#: netbox/templates/wireless/wirelesslangroup.html:37 -#: netbox/tenancy/forms/bulk_edit.py:27 netbox/tenancy/forms/bulk_edit.py:61 -#: netbox/tenancy/forms/bulk_import.py:24 -#: netbox/tenancy/forms/bulk_import.py:58 -#: netbox/tenancy/forms/model_forms.py:25 -#: netbox/tenancy/forms/model_forms.py:68 -#: netbox/virtualization/forms/bulk_edit.py:207 -#: netbox/virtualization/forms/bulk_import.py:151 -#: netbox/virtualization/tables/virtualmachines.py:162 -#: netbox/wireless/forms/bulk_edit.py:24 -#: netbox/wireless/forms/bulk_import.py:21 -#: netbox/wireless/forms/model_forms.py:21 +#: dcim/choices.py:151 dcim/forms/bulk_edit.py:68 dcim/forms/bulk_edit.py:87 +#: dcim/forms/bulk_edit.py:173 dcim/forms/bulk_edit.py:1405 +#: dcim/forms/bulk_import.py:60 dcim/forms/bulk_import.py:74 +#: dcim/forms/bulk_import.py:137 dcim/forms/bulk_import.py:566 +#: dcim/forms/bulk_import.py:833 dcim/forms/bulk_import.py:1088 +#: dcim/forms/filtersets.py:234 dcim/forms/model_forms.py:74 +#: dcim/forms/model_forms.py:93 dcim/forms/model_forms.py:170 +#: dcim/forms/model_forms.py:1062 dcim/forms/model_forms.py:1502 +#: dcim/forms/object_import.py:176 dcim/tables/devices.py:656 +#: dcim/tables/devices.py:869 dcim/tables/devices.py:954 +#: extras/tables/tables.py:223 ipam/tables/fhrp.py:59 ipam/tables/ip.py:378 +#: ipam/tables/services.py:44 templates/dcim/interface.html:102 +#: templates/dcim/interface.html:309 templates/dcim/location.html:41 +#: templates/dcim/region.html:37 templates/dcim/sitegroup.html:37 +#: templates/ipam/service.html:28 templates/tenancy/contactgroup.html:29 +#: templates/tenancy/tenantgroup.html:37 +#: templates/virtualization/vminterface.html:39 +#: templates/wireless/wirelesslangroup.html:37 tenancy/forms/bulk_edit.py:27 +#: tenancy/forms/bulk_edit.py:61 tenancy/forms/bulk_import.py:24 +#: tenancy/forms/bulk_import.py:58 tenancy/forms/model_forms.py:25 +#: tenancy/forms/model_forms.py:68 virtualization/forms/bulk_edit.py:207 +#: virtualization/forms/bulk_import.py:151 +#: virtualization/tables/virtualmachines.py:162 wireless/forms/bulk_edit.py:24 +#: wireless/forms/bulk_import.py:21 wireless/forms/model_forms.py:21 msgid "Parent" msgstr "Rodič" -#: netbox/dcim/choices.py:152 +#: dcim/choices.py:152 msgid "Child" msgstr "Dítě" -#: netbox/dcim/choices.py:166 netbox/templates/dcim/device.html:340 -#: netbox/templates/dcim/rack.html:133 -#: netbox/templates/dcim/rack_elevation_list.html:20 -#: netbox/templates/dcim/rackreservation.html:76 +#: dcim/choices.py:166 templates/dcim/device.html:340 +#: templates/dcim/rack.html:133 templates/dcim/rack_elevation_list.html:20 +#: templates/dcim/rackreservation.html:76 msgid "Front" msgstr "Přední" -#: netbox/dcim/choices.py:167 netbox/templates/dcim/device.html:346 -#: netbox/templates/dcim/rack.html:139 -#: netbox/templates/dcim/rack_elevation_list.html:21 -#: netbox/templates/dcim/rackreservation.html:82 +#: dcim/choices.py:167 templates/dcim/device.html:346 +#: templates/dcim/rack.html:139 templates/dcim/rack_elevation_list.html:21 +#: templates/dcim/rackreservation.html:82 msgid "Rear" msgstr "Zadní" -#: netbox/dcim/choices.py:186 netbox/dcim/choices.py:238 -#: netbox/virtualization/choices.py:46 +#: dcim/choices.py:186 dcim/choices.py:238 virtualization/choices.py:46 msgid "Staged" msgstr "Inscenovaný" -#: netbox/dcim/choices.py:188 +#: dcim/choices.py:188 msgid "Inventory" msgstr "Inventář" -#: netbox/dcim/choices.py:209 netbox/dcim/choices.py:256 +#: dcim/choices.py:209 dcim/choices.py:256 msgid "Left to right" msgstr "Zleva doprava" -#: netbox/dcim/choices.py:210 netbox/dcim/choices.py:257 +#: dcim/choices.py:210 dcim/choices.py:257 msgid "Right to left" msgstr "Zprava doleva" -#: netbox/dcim/choices.py:211 netbox/dcim/choices.py:258 +#: dcim/choices.py:211 dcim/choices.py:258 msgid "Side to rear" msgstr "Ze strany dozadu" -#: netbox/dcim/choices.py:212 +#: dcim/choices.py:212 msgid "Rear to side" msgstr "Zezadu na stranu" -#: netbox/dcim/choices.py:213 +#: dcim/choices.py:213 msgid "Bottom to top" msgstr "Zdola nahoru" -#: netbox/dcim/choices.py:214 +#: dcim/choices.py:214 msgid "Top to bottom" msgstr "Nahoru dolů" -#: netbox/dcim/choices.py:215 netbox/dcim/choices.py:259 -#: netbox/dcim/choices.py:1303 +#: dcim/choices.py:215 dcim/choices.py:259 dcim/choices.py:1303 msgid "Passive" msgstr "pasivní" -#: netbox/dcim/choices.py:216 +#: dcim/choices.py:216 msgid "Mixed" msgstr "Smíšené" -#: netbox/dcim/choices.py:484 netbox/dcim/choices.py:733 +#: dcim/choices.py:484 dcim/choices.py:733 msgid "NEMA (Non-locking)" msgstr "NEMA (bez blokování)" -#: netbox/dcim/choices.py:506 netbox/dcim/choices.py:755 +#: dcim/choices.py:506 dcim/choices.py:755 msgid "NEMA (Locking)" msgstr "NEMA (zamykání)" -#: netbox/dcim/choices.py:530 netbox/dcim/choices.py:779 +#: dcim/choices.py:530 dcim/choices.py:779 msgid "California Style" msgstr "Kalifornský styl" -#: netbox/dcim/choices.py:538 +#: dcim/choices.py:538 msgid "International/ITA" msgstr "Mezinárodní/ITA" -#: netbox/dcim/choices.py:573 netbox/dcim/choices.py:814 +#: dcim/choices.py:573 dcim/choices.py:814 msgid "Proprietary" msgstr "Proprietární" -#: netbox/dcim/choices.py:581 netbox/dcim/choices.py:824 -#: netbox/dcim/choices.py:1219 netbox/dcim/choices.py:1221 -#: netbox/dcim/choices.py:1447 netbox/dcim/choices.py:1449 -#: netbox/netbox/navigation/menu.py:200 +#: dcim/choices.py:581 dcim/choices.py:824 dcim/choices.py:1219 +#: dcim/choices.py:1221 dcim/choices.py:1447 dcim/choices.py:1449 +#: netbox/navigation/menu.py:200 msgid "Other" msgstr "Ostatní" -#: netbox/dcim/choices.py:787 +#: dcim/choices.py:787 msgid "ITA/International" msgstr "ITA/Mezinárodní" -#: netbox/dcim/choices.py:854 +#: dcim/choices.py:854 msgid "Physical" msgstr "Fyzické" -#: netbox/dcim/choices.py:855 netbox/dcim/choices.py:1023 +#: dcim/choices.py:855 dcim/choices.py:1023 msgid "Virtual" msgstr "Virtuální" -#: netbox/dcim/choices.py:856 netbox/dcim/choices.py:1097 -#: netbox/dcim/forms/bulk_edit.py:1515 netbox/dcim/forms/filtersets.py:1330 -#: netbox/dcim/forms/model_forms.py:988 netbox/dcim/forms/model_forms.py:1397 -#: netbox/netbox/navigation/menu.py:140 netbox/netbox/navigation/menu.py:144 -#: netbox/templates/dcim/interface.html:210 +#: dcim/choices.py:856 dcim/choices.py:1097 dcim/forms/bulk_edit.py:1515 +#: dcim/forms/filtersets.py:1330 dcim/forms/model_forms.py:988 +#: dcim/forms/model_forms.py:1397 netbox/navigation/menu.py:140 +#: netbox/navigation/menu.py:144 templates/dcim/interface.html:210 msgid "Wireless" msgstr "Bezdrátové" -#: netbox/dcim/choices.py:1021 +#: dcim/choices.py:1021 msgid "Virtual interfaces" msgstr "Virtuální rozhraní" -#: netbox/dcim/choices.py:1024 netbox/dcim/forms/bulk_edit.py:1410 -#: netbox/dcim/forms/bulk_import.py:840 netbox/dcim/forms/model_forms.py:974 -#: netbox/dcim/tables/devices.py:660 netbox/templates/dcim/interface.html:106 -#: netbox/templates/virtualization/vminterface.html:43 -#: netbox/virtualization/forms/bulk_edit.py:212 -#: netbox/virtualization/forms/bulk_import.py:158 -#: netbox/virtualization/tables/virtualmachines.py:166 +#: dcim/choices.py:1024 dcim/forms/bulk_edit.py:1410 +#: dcim/forms/bulk_import.py:840 dcim/forms/model_forms.py:974 +#: dcim/tables/devices.py:660 templates/dcim/interface.html:106 +#: templates/virtualization/vminterface.html:43 +#: virtualization/forms/bulk_edit.py:212 +#: virtualization/forms/bulk_import.py:158 +#: virtualization/tables/virtualmachines.py:166 msgid "Bridge" msgstr "Most" -#: netbox/dcim/choices.py:1025 +#: dcim/choices.py:1025 msgid "Link Aggregation Group (LAG)" msgstr "Agregační skupina (LAG)" -#: netbox/dcim/choices.py:1029 +#: dcim/choices.py:1029 msgid "Ethernet (fixed)" msgstr "Ethernet (pevný)" -#: netbox/dcim/choices.py:1044 +#: dcim/choices.py:1044 msgid "Ethernet (modular)" msgstr "Ethernet (modulární)" -#: netbox/dcim/choices.py:1081 +#: dcim/choices.py:1081 msgid "Ethernet (backplane)" msgstr "Ethernet (propojovací deska)" -#: netbox/dcim/choices.py:1113 +#: dcim/choices.py:1113 msgid "Cellular" msgstr "Buněčný" -#: netbox/dcim/choices.py:1165 netbox/dcim/forms/filtersets.py:383 -#: netbox/dcim/forms/filtersets.py:809 netbox/dcim/forms/filtersets.py:963 -#: netbox/dcim/forms/filtersets.py:1542 -#: netbox/templates/dcim/inventoryitem.html:52 -#: netbox/templates/dcim/virtualchassis_edit.html:54 +#: dcim/choices.py:1165 dcim/forms/filtersets.py:383 +#: dcim/forms/filtersets.py:809 dcim/forms/filtersets.py:963 +#: dcim/forms/filtersets.py:1542 templates/dcim/inventoryitem.html:52 +#: templates/dcim/virtualchassis_edit.html:54 msgid "Serial" msgstr "Sériový" -#: netbox/dcim/choices.py:1180 +#: dcim/choices.py:1180 msgid "Coaxial" msgstr "Koaxiální" -#: netbox/dcim/choices.py:1200 +#: dcim/choices.py:1200 msgid "Stacking" msgstr "Stohování" -#: netbox/dcim/choices.py:1250 +#: dcim/choices.py:1250 msgid "Half" msgstr "Poloviční" -#: netbox/dcim/choices.py:1251 +#: dcim/choices.py:1251 msgid "Full" msgstr "Plný" -#: netbox/dcim/choices.py:1252 netbox/netbox/preferences.py:31 -#: netbox/wireless/choices.py:480 +#: dcim/choices.py:1252 netbox/preferences.py:31 wireless/choices.py:480 msgid "Auto" msgstr "Auto" -#: netbox/dcim/choices.py:1263 +#: dcim/choices.py:1263 msgid "Access" msgstr "Přístup" -#: netbox/dcim/choices.py:1264 netbox/ipam/tables/vlans.py:172 -#: netbox/ipam/tables/vlans.py:217 -#: netbox/templates/dcim/inc/interface_vlans_table.html:7 +#: dcim/choices.py:1264 ipam/tables/vlans.py:172 ipam/tables/vlans.py:217 +#: templates/dcim/inc/interface_vlans_table.html:7 msgid "Tagged" msgstr "Označeno" -#: netbox/dcim/choices.py:1265 +#: dcim/choices.py:1265 msgid "Tagged (All)" msgstr "Označeno (Vše)" -#: netbox/dcim/choices.py:1294 +#: dcim/choices.py:1294 msgid "IEEE Standard" msgstr "Norma IEEE" -#: netbox/dcim/choices.py:1305 +#: dcim/choices.py:1305 msgid "Passive 24V (2-pair)" msgstr "Pasivní 24V (2 páry)" -#: netbox/dcim/choices.py:1306 +#: dcim/choices.py:1306 msgid "Passive 24V (4-pair)" msgstr "Pasivní 24V (4 páry)" -#: netbox/dcim/choices.py:1307 +#: dcim/choices.py:1307 msgid "Passive 48V (2-pair)" msgstr "Pasivní 48V (2 páry)" -#: netbox/dcim/choices.py:1308 +#: dcim/choices.py:1308 msgid "Passive 48V (4-pair)" msgstr "Pasivní 48V (4 páry)" -#: netbox/dcim/choices.py:1378 netbox/dcim/choices.py:1488 +#: dcim/choices.py:1378 dcim/choices.py:1488 msgid "Copper" msgstr "měď" -#: netbox/dcim/choices.py:1401 +#: dcim/choices.py:1401 msgid "Fiber Optic" msgstr "Optická vlákna" -#: netbox/dcim/choices.py:1434 netbox/dcim/choices.py:1517 +#: dcim/choices.py:1434 dcim/choices.py:1517 msgid "USB" msgstr "USB" -#: netbox/dcim/choices.py:1504 +#: dcim/choices.py:1504 msgid "Fiber" msgstr "Vlákno" -#: netbox/dcim/choices.py:1529 netbox/dcim/forms/filtersets.py:1227 +#: dcim/choices.py:1529 dcim/forms/filtersets.py:1227 msgid "Connected" msgstr "Připojeno" -#: netbox/dcim/choices.py:1548 netbox/wireless/choices.py:497 +#: dcim/choices.py:1548 wireless/choices.py:497 msgid "Kilometers" msgstr "Kilometry" -#: netbox/dcim/choices.py:1549 netbox/templates/dcim/cable_trace.html:65 -#: netbox/wireless/choices.py:498 +#: dcim/choices.py:1549 templates/dcim/cable_trace.html:65 +#: wireless/choices.py:498 msgid "Meters" msgstr "Metry" -#: netbox/dcim/choices.py:1550 +#: dcim/choices.py:1550 msgid "Centimeters" msgstr "Centimetry" -#: netbox/dcim/choices.py:1551 netbox/wireless/choices.py:499 +#: dcim/choices.py:1551 wireless/choices.py:499 msgid "Miles" msgstr "Míle" -#: netbox/dcim/choices.py:1552 netbox/templates/dcim/cable_trace.html:66 -#: netbox/wireless/choices.py:500 +#: dcim/choices.py:1552 templates/dcim/cable_trace.html:66 +#: wireless/choices.py:500 msgid "Feet" msgstr "Stopy" -#: netbox/dcim/choices.py:1568 netbox/templates/dcim/device.html:327 -#: netbox/templates/dcim/rack.html:107 +#: dcim/choices.py:1568 templates/dcim/device.html:327 +#: templates/dcim/rack.html:107 msgid "Kilograms" msgstr "Kilogramy" -#: netbox/dcim/choices.py:1569 +#: dcim/choices.py:1569 msgid "Grams" msgstr "Gramy" -#: netbox/dcim/choices.py:1570 netbox/templates/dcim/device.html:328 -#: netbox/templates/dcim/rack.html:108 +#: dcim/choices.py:1570 templates/dcim/device.html:328 +#: templates/dcim/rack.html:108 msgid "Pounds" msgstr "libry" -#: netbox/dcim/choices.py:1571 +#: dcim/choices.py:1571 msgid "Ounces" msgstr "Unce" -#: netbox/dcim/choices.py:1618 +#: dcim/choices.py:1618 msgid "Redundant" msgstr "Redundantní" -#: netbox/dcim/choices.py:1639 +#: dcim/choices.py:1639 msgid "Single phase" msgstr "Jednofázový" -#: netbox/dcim/choices.py:1640 +#: dcim/choices.py:1640 msgid "Three-phase" msgstr "Třífázový" -#: netbox/dcim/fields.py:45 +#: dcim/fields.py:45 #, python-brace-format msgid "Invalid MAC address format: {value}" msgstr "Neplatný formát MAC adresy: {value}" -#: netbox/dcim/fields.py:71 +#: dcim/fields.py:71 #, python-brace-format msgid "Invalid WWN format: {value}" msgstr "Neplatný formát WWN: {value}" -#: netbox/dcim/filtersets.py:86 +#: dcim/filtersets.py:86 msgid "Parent region (ID)" msgstr "Nadřazená oblast (ID)" -#: netbox/dcim/filtersets.py:92 +#: dcim/filtersets.py:92 msgid "Parent region (slug)" msgstr "Nadřazená oblast (URL zkratka)" -#: netbox/dcim/filtersets.py:116 +#: dcim/filtersets.py:116 msgid "Parent site group (ID)" msgstr "Nadřazená skupina webů (ID)" -#: netbox/dcim/filtersets.py:122 +#: dcim/filtersets.py:122 msgid "Parent site group (slug)" msgstr "Nadřazená skupina stránek (slimák)" -#: netbox/dcim/filtersets.py:164 netbox/extras/filtersets.py:364 -#: netbox/ipam/filtersets.py:841 netbox/ipam/filtersets.py:993 +#: dcim/filtersets.py:164 extras/filtersets.py:364 ipam/filtersets.py:841 +#: ipam/filtersets.py:993 msgid "Group (ID)" msgstr "Skupina (ID)" -#: netbox/dcim/filtersets.py:170 +#: dcim/filtersets.py:170 msgid "Group (slug)" msgstr "Skupina (slug)" -#: netbox/dcim/filtersets.py:176 netbox/dcim/filtersets.py:181 +#: dcim/filtersets.py:176 dcim/filtersets.py:181 msgid "AS (ID)" msgstr "AS (ID)" -#: netbox/dcim/filtersets.py:246 +#: dcim/filtersets.py:246 msgid "Parent location (ID)" msgstr "Nadřazené umístění (ID)" -#: netbox/dcim/filtersets.py:252 +#: dcim/filtersets.py:252 msgid "Parent location (slug)" msgstr "Rodičovské umístění (slug)" -#: netbox/dcim/filtersets.py:258 netbox/dcim/filtersets.py:369 -#: netbox/dcim/filtersets.py:490 netbox/dcim/filtersets.py:1057 -#: netbox/dcim/filtersets.py:1404 netbox/dcim/filtersets.py:2182 +#: dcim/filtersets.py:258 dcim/filtersets.py:369 dcim/filtersets.py:490 +#: dcim/filtersets.py:1057 dcim/filtersets.py:1404 dcim/filtersets.py:2182 msgid "Location (ID)" msgstr "Umístění (ID)" -#: netbox/dcim/filtersets.py:265 netbox/dcim/filtersets.py:376 -#: netbox/dcim/filtersets.py:497 netbox/dcim/filtersets.py:1410 -#: netbox/extras/filtersets.py:542 +#: dcim/filtersets.py:265 dcim/filtersets.py:376 dcim/filtersets.py:497 +#: dcim/filtersets.py:1410 extras/filtersets.py:542 msgid "Location (slug)" msgstr "Umístění (slug)" -#: netbox/dcim/filtersets.py:296 netbox/dcim/filtersets.py:381 -#: netbox/dcim/filtersets.py:539 netbox/dcim/filtersets.py:678 -#: netbox/dcim/filtersets.py:882 netbox/dcim/filtersets.py:933 -#: netbox/dcim/filtersets.py:973 netbox/dcim/filtersets.py:1306 -#: netbox/dcim/filtersets.py:1840 +#: dcim/filtersets.py:296 dcim/filtersets.py:381 dcim/filtersets.py:539 +#: dcim/filtersets.py:678 dcim/filtersets.py:882 dcim/filtersets.py:933 +#: dcim/filtersets.py:973 dcim/filtersets.py:1306 dcim/filtersets.py:1840 msgid "Manufacturer (ID)" msgstr "Výrobce (ID)" -#: netbox/dcim/filtersets.py:302 netbox/dcim/filtersets.py:387 -#: netbox/dcim/filtersets.py:545 netbox/dcim/filtersets.py:684 -#: netbox/dcim/filtersets.py:888 netbox/dcim/filtersets.py:939 -#: netbox/dcim/filtersets.py:979 netbox/dcim/filtersets.py:1312 -#: netbox/dcim/filtersets.py:1846 +#: dcim/filtersets.py:302 dcim/filtersets.py:387 dcim/filtersets.py:545 +#: dcim/filtersets.py:684 dcim/filtersets.py:888 dcim/filtersets.py:939 +#: dcim/filtersets.py:979 dcim/filtersets.py:1312 dcim/filtersets.py:1846 msgid "Manufacturer (slug)" msgstr "Výrobce (slug)" -#: netbox/dcim/filtersets.py:393 +#: dcim/filtersets.py:393 msgid "Rack type (slug)" msgstr "Typ stojanu (slug)" -#: netbox/dcim/filtersets.py:397 +#: dcim/filtersets.py:397 msgid "Rack type (ID)" msgstr "Typ stojanu (ID)" -#: netbox/dcim/filtersets.py:411 netbox/dcim/filtersets.py:892 -#: netbox/dcim/filtersets.py:994 netbox/dcim/filtersets.py:1850 -#: netbox/ipam/filtersets.py:381 netbox/ipam/filtersets.py:493 -#: netbox/ipam/filtersets.py:1003 netbox/virtualization/filtersets.py:210 +#: dcim/filtersets.py:411 dcim/filtersets.py:892 dcim/filtersets.py:994 +#: dcim/filtersets.py:1850 ipam/filtersets.py:381 ipam/filtersets.py:493 +#: ipam/filtersets.py:1003 virtualization/filtersets.py:210 msgid "Role (ID)" msgstr "Role (ID)" -#: netbox/dcim/filtersets.py:417 netbox/dcim/filtersets.py:898 -#: netbox/dcim/filtersets.py:1000 netbox/dcim/filtersets.py:1856 -#: netbox/extras/filtersets.py:558 netbox/ipam/filtersets.py:387 -#: netbox/ipam/filtersets.py:499 netbox/ipam/filtersets.py:1009 -#: netbox/virtualization/filtersets.py:216 +#: dcim/filtersets.py:417 dcim/filtersets.py:898 dcim/filtersets.py:1000 +#: dcim/filtersets.py:1856 extras/filtersets.py:558 ipam/filtersets.py:387 +#: ipam/filtersets.py:499 ipam/filtersets.py:1009 +#: virtualization/filtersets.py:216 msgid "Role (slug)" msgstr "Role (slug)" -#: netbox/dcim/filtersets.py:447 netbox/dcim/filtersets.py:1062 -#: netbox/dcim/filtersets.py:1415 netbox/dcim/filtersets.py:2244 +#: dcim/filtersets.py:447 dcim/filtersets.py:1062 dcim/filtersets.py:1415 +#: dcim/filtersets.py:2244 msgid "Rack (ID)" msgstr "Stojan (ID)" -#: netbox/dcim/filtersets.py:507 netbox/extras/filtersets.py:293 -#: netbox/extras/filtersets.py:337 netbox/extras/filtersets.py:359 -#: netbox/extras/filtersets.py:419 netbox/users/filtersets.py:113 -#: netbox/users/filtersets.py:180 +#: dcim/filtersets.py:507 extras/filtersets.py:293 extras/filtersets.py:337 +#: extras/filtersets.py:359 extras/filtersets.py:419 users/filtersets.py:113 +#: users/filtersets.py:180 msgid "User (name)" msgstr "Uživatel (jméno)" -#: netbox/dcim/filtersets.py:549 +#: dcim/filtersets.py:549 msgid "Default platform (ID)" msgstr "Výchozí platforma (ID)" -#: netbox/dcim/filtersets.py:555 +#: dcim/filtersets.py:555 msgid "Default platform (slug)" msgstr "Výchozí platforma (slug)" -#: netbox/dcim/filtersets.py:558 netbox/dcim/forms/filtersets.py:517 +#: dcim/filtersets.py:558 dcim/forms/filtersets.py:517 msgid "Has a front image" msgstr "Má přední obrázek" -#: netbox/dcim/filtersets.py:562 netbox/dcim/forms/filtersets.py:524 +#: dcim/filtersets.py:562 dcim/forms/filtersets.py:524 msgid "Has a rear image" msgstr "Má zadní obrázek" -#: netbox/dcim/filtersets.py:567 netbox/dcim/filtersets.py:688 -#: netbox/dcim/filtersets.py:1131 netbox/dcim/forms/filtersets.py:531 -#: netbox/dcim/forms/filtersets.py:627 netbox/dcim/forms/filtersets.py:848 +#: dcim/filtersets.py:567 dcim/filtersets.py:688 dcim/filtersets.py:1131 +#: dcim/forms/filtersets.py:531 dcim/forms/filtersets.py:627 +#: dcim/forms/filtersets.py:848 msgid "Has console ports" msgstr "Má konzolové porty" -#: netbox/dcim/filtersets.py:571 netbox/dcim/filtersets.py:692 -#: netbox/dcim/filtersets.py:1135 netbox/dcim/forms/filtersets.py:538 -#: netbox/dcim/forms/filtersets.py:634 netbox/dcim/forms/filtersets.py:855 +#: dcim/filtersets.py:571 dcim/filtersets.py:692 dcim/filtersets.py:1135 +#: dcim/forms/filtersets.py:538 dcim/forms/filtersets.py:634 +#: dcim/forms/filtersets.py:855 msgid "Has console server ports" msgstr "Má porty konzolového serveru" -#: netbox/dcim/filtersets.py:575 netbox/dcim/filtersets.py:696 -#: netbox/dcim/filtersets.py:1139 netbox/dcim/forms/filtersets.py:545 -#: netbox/dcim/forms/filtersets.py:641 netbox/dcim/forms/filtersets.py:862 +#: dcim/filtersets.py:575 dcim/filtersets.py:696 dcim/filtersets.py:1139 +#: dcim/forms/filtersets.py:545 dcim/forms/filtersets.py:641 +#: dcim/forms/filtersets.py:862 msgid "Has power ports" msgstr "Má napájecí porty" -#: netbox/dcim/filtersets.py:579 netbox/dcim/filtersets.py:700 -#: netbox/dcim/filtersets.py:1143 netbox/dcim/forms/filtersets.py:552 -#: netbox/dcim/forms/filtersets.py:648 netbox/dcim/forms/filtersets.py:869 +#: dcim/filtersets.py:579 dcim/filtersets.py:700 dcim/filtersets.py:1143 +#: dcim/forms/filtersets.py:552 dcim/forms/filtersets.py:648 +#: dcim/forms/filtersets.py:869 msgid "Has power outlets" msgstr "Má elektrické zásuvky" -#: netbox/dcim/filtersets.py:583 netbox/dcim/filtersets.py:704 -#: netbox/dcim/filtersets.py:1147 netbox/dcim/forms/filtersets.py:559 -#: netbox/dcim/forms/filtersets.py:655 netbox/dcim/forms/filtersets.py:876 +#: dcim/filtersets.py:583 dcim/filtersets.py:704 dcim/filtersets.py:1147 +#: dcim/forms/filtersets.py:559 dcim/forms/filtersets.py:655 +#: dcim/forms/filtersets.py:876 msgid "Has interfaces" msgstr "Má rozhraní" -#: netbox/dcim/filtersets.py:587 netbox/dcim/filtersets.py:708 -#: netbox/dcim/filtersets.py:1151 netbox/dcim/forms/filtersets.py:566 -#: netbox/dcim/forms/filtersets.py:662 netbox/dcim/forms/filtersets.py:883 +#: dcim/filtersets.py:587 dcim/filtersets.py:708 dcim/filtersets.py:1151 +#: dcim/forms/filtersets.py:566 dcim/forms/filtersets.py:662 +#: dcim/forms/filtersets.py:883 msgid "Has pass-through ports" msgstr "Má průchozí porty" -#: netbox/dcim/filtersets.py:591 netbox/dcim/filtersets.py:1155 -#: netbox/dcim/forms/filtersets.py:580 +#: dcim/filtersets.py:591 dcim/filtersets.py:1155 dcim/forms/filtersets.py:580 msgid "Has module bays" msgstr "Má pozice pro moduly" -#: netbox/dcim/filtersets.py:595 netbox/dcim/filtersets.py:1159 -#: netbox/dcim/forms/filtersets.py:573 +#: dcim/filtersets.py:595 dcim/filtersets.py:1159 dcim/forms/filtersets.py:573 msgid "Has device bays" msgstr "Má pozice pro zařízení" -#: netbox/dcim/filtersets.py:599 netbox/dcim/forms/filtersets.py:587 +#: dcim/filtersets.py:599 dcim/forms/filtersets.py:587 msgid "Has inventory items" msgstr "Má položky inventáře" -#: netbox/dcim/filtersets.py:756 netbox/dcim/filtersets.py:989 -#: netbox/dcim/filtersets.py:1436 +#: dcim/filtersets.py:756 dcim/filtersets.py:989 dcim/filtersets.py:1436 msgid "Device type (ID)" msgstr "Typ zařízení (ID)" -#: netbox/dcim/filtersets.py:772 netbox/dcim/filtersets.py:1317 +#: dcim/filtersets.py:772 dcim/filtersets.py:1317 msgid "Module type (ID)" msgstr "Typ modulu (ID)" -#: netbox/dcim/filtersets.py:804 netbox/dcim/filtersets.py:1591 +#: dcim/filtersets.py:804 dcim/filtersets.py:1591 msgid "Power port (ID)" msgstr "Napájecí port (ID)" -#: netbox/dcim/filtersets.py:878 netbox/dcim/filtersets.py:1836 +#: dcim/filtersets.py:878 dcim/filtersets.py:1836 msgid "Parent inventory item (ID)" msgstr "Nadřazená položka inventáře (ID)" -#: netbox/dcim/filtersets.py:921 netbox/dcim/filtersets.py:947 -#: netbox/dcim/filtersets.py:1127 netbox/virtualization/filtersets.py:238 +#: dcim/filtersets.py:921 dcim/filtersets.py:947 dcim/filtersets.py:1127 +#: virtualization/filtersets.py:238 msgid "Config template (ID)" msgstr "Konfigurační šablona (ID)" -#: netbox/dcim/filtersets.py:985 +#: dcim/filtersets.py:985 msgid "Device type (slug)" msgstr "Typ zařízení (slug)" -#: netbox/dcim/filtersets.py:1005 +#: dcim/filtersets.py:1005 msgid "Parent Device (ID)" msgstr "Rodičovské zařízení (ID)" -#: netbox/dcim/filtersets.py:1009 netbox/virtualization/filtersets.py:220 +#: dcim/filtersets.py:1009 virtualization/filtersets.py:220 msgid "Platform (ID)" msgstr "Platforma (ID)" -#: netbox/dcim/filtersets.py:1015 netbox/extras/filtersets.py:569 -#: netbox/virtualization/filtersets.py:226 +#: dcim/filtersets.py:1015 extras/filtersets.py:569 +#: virtualization/filtersets.py:226 msgid "Platform (slug)" msgstr "Platforma (URL zkratka)" -#: netbox/dcim/filtersets.py:1051 netbox/dcim/filtersets.py:1399 -#: netbox/dcim/filtersets.py:1934 netbox/dcim/filtersets.py:2176 -#: netbox/dcim/filtersets.py:2235 +#: dcim/filtersets.py:1051 dcim/filtersets.py:1399 dcim/filtersets.py:1934 +#: dcim/filtersets.py:2176 dcim/filtersets.py:2235 msgid "Site name (slug)" msgstr "Název lokality (slug)" -#: netbox/dcim/filtersets.py:1067 +#: dcim/filtersets.py:1067 msgid "Parent bay (ID)" msgstr "Rodičovská zátoka (ID)" -#: netbox/dcim/filtersets.py:1071 +#: dcim/filtersets.py:1071 msgid "VM cluster (ID)" msgstr "Cluster virtuálních počítačů (ID)" -#: netbox/dcim/filtersets.py:1077 netbox/extras/filtersets.py:591 -#: netbox/virtualization/filtersets.py:136 +#: dcim/filtersets.py:1077 extras/filtersets.py:591 +#: virtualization/filtersets.py:136 msgid "Cluster group (slug)" msgstr "Skupina klastru (slug)" -#: netbox/dcim/filtersets.py:1082 netbox/virtualization/filtersets.py:130 +#: dcim/filtersets.py:1082 virtualization/filtersets.py:130 msgid "Cluster group (ID)" msgstr "Skupina clusteru (ID)" -#: netbox/dcim/filtersets.py:1088 +#: dcim/filtersets.py:1088 msgid "Device model (slug)" msgstr "Model zařízení (slug)" -#: netbox/dcim/filtersets.py:1099 netbox/dcim/forms/bulk_edit.py:516 +#: dcim/filtersets.py:1099 dcim/forms/bulk_edit.py:516 msgid "Is full depth" msgstr "Je plná hloubka" -#: netbox/dcim/filtersets.py:1103 netbox/dcim/forms/common.py:18 -#: netbox/dcim/forms/filtersets.py:818 netbox/dcim/forms/filtersets.py:1385 -#: netbox/dcim/models/device_components.py:518 -#: netbox/virtualization/filtersets.py:230 -#: netbox/virtualization/filtersets.py:301 -#: netbox/virtualization/forms/filtersets.py:172 -#: netbox/virtualization/forms/filtersets.py:223 +#: dcim/filtersets.py:1103 dcim/forms/common.py:18 +#: dcim/forms/filtersets.py:818 dcim/forms/filtersets.py:1385 +#: dcim/models/device_components.py:518 virtualization/filtersets.py:230 +#: virtualization/filtersets.py:301 virtualization/forms/filtersets.py:172 +#: virtualization/forms/filtersets.py:223 msgid "MAC address" msgstr "MAC adresa" -#: netbox/dcim/filtersets.py:1110 netbox/dcim/filtersets.py:1274 -#: netbox/dcim/forms/filtersets.py:827 netbox/dcim/forms/filtersets.py:930 -#: netbox/virtualization/filtersets.py:234 -#: netbox/virtualization/forms/filtersets.py:176 +#: dcim/filtersets.py:1110 dcim/filtersets.py:1274 +#: dcim/forms/filtersets.py:827 dcim/forms/filtersets.py:930 +#: virtualization/filtersets.py:234 virtualization/forms/filtersets.py:176 msgid "Has a primary IP" msgstr "Má primární IP" -#: netbox/dcim/filtersets.py:1114 +#: dcim/filtersets.py:1114 msgid "Has an out-of-band IP" msgstr "Má IP mimo pásmo" -#: netbox/dcim/filtersets.py:1119 +#: dcim/filtersets.py:1119 msgid "Virtual chassis (ID)" msgstr "Virtuální podvozek (ID)" -#: netbox/dcim/filtersets.py:1123 +#: dcim/filtersets.py:1123 msgid "Is a virtual chassis member" msgstr "Je virtuální člen šasi" -#: netbox/dcim/filtersets.py:1164 +#: dcim/filtersets.py:1164 msgid "OOB IP (ID)" msgstr "OOB IP (ID)" -#: netbox/dcim/filtersets.py:1168 +#: dcim/filtersets.py:1168 msgid "Has virtual device context" msgstr "Má kontext virtuálního zařízení" -#: netbox/dcim/filtersets.py:1257 +#: dcim/filtersets.py:1257 msgid "VDC (ID)" msgstr "VDC (ID)" -#: netbox/dcim/filtersets.py:1262 +#: dcim/filtersets.py:1262 msgid "Device model" msgstr "Model zařízení" -#: netbox/dcim/filtersets.py:1267 netbox/ipam/filtersets.py:632 -#: netbox/vpn/filtersets.py:102 netbox/vpn/filtersets.py:401 +#: dcim/filtersets.py:1267 ipam/filtersets.py:632 vpn/filtersets.py:102 +#: vpn/filtersets.py:401 msgid "Interface (ID)" msgstr "Rozhraní (ID)" -#: netbox/dcim/filtersets.py:1323 +#: dcim/filtersets.py:1323 msgid "Module type (model)" msgstr "Typ modulu (model)" -#: netbox/dcim/filtersets.py:1329 +#: dcim/filtersets.py:1329 msgid "Module bay (ID)" msgstr "Modulová přihrádka (ID)" -#: netbox/dcim/filtersets.py:1333 netbox/dcim/filtersets.py:1425 -#: netbox/ipam/filtersets.py:611 netbox/ipam/filtersets.py:851 -#: netbox/ipam/filtersets.py:1115 netbox/virtualization/filtersets.py:161 -#: netbox/vpn/filtersets.py:379 +#: dcim/filtersets.py:1333 dcim/filtersets.py:1425 ipam/filtersets.py:611 +#: ipam/filtersets.py:851 ipam/filtersets.py:1115 +#: virtualization/filtersets.py:161 vpn/filtersets.py:379 msgid "Device (ID)" msgstr "Zařízení (ID)" -#: netbox/dcim/filtersets.py:1421 +#: dcim/filtersets.py:1421 msgid "Rack (name)" msgstr "Stojan (název)" -#: netbox/dcim/filtersets.py:1431 netbox/ipam/filtersets.py:606 -#: netbox/ipam/filtersets.py:846 netbox/ipam/filtersets.py:1121 -#: netbox/vpn/filtersets.py:374 +#: dcim/filtersets.py:1431 ipam/filtersets.py:606 ipam/filtersets.py:846 +#: ipam/filtersets.py:1121 vpn/filtersets.py:374 msgid "Device (name)" msgstr "Zařízení (název)" -#: netbox/dcim/filtersets.py:1442 +#: dcim/filtersets.py:1442 msgid "Device type (model)" msgstr "Typ zařízení (model)" -#: netbox/dcim/filtersets.py:1447 +#: dcim/filtersets.py:1447 msgid "Device role (ID)" msgstr "Role zařízení (ID)" -#: netbox/dcim/filtersets.py:1453 +#: dcim/filtersets.py:1453 msgid "Device role (slug)" msgstr "Role zařízení (slug)" -#: netbox/dcim/filtersets.py:1458 +#: dcim/filtersets.py:1458 msgid "Virtual Chassis (ID)" msgstr "Virtuální šasi (ID)" -#: netbox/dcim/filtersets.py:1464 netbox/dcim/forms/filtersets.py:109 -#: netbox/dcim/tables/devices.py:206 netbox/netbox/navigation/menu.py:79 -#: netbox/templates/dcim/device.html:120 -#: netbox/templates/dcim/device_edit.html:93 -#: netbox/templates/dcim/virtualchassis.html:20 -#: netbox/templates/dcim/virtualchassis_add.html:8 -#: netbox/templates/dcim/virtualchassis_edit.html:24 +#: dcim/filtersets.py:1464 dcim/forms/filtersets.py:109 +#: dcim/tables/devices.py:206 netbox/navigation/menu.py:79 +#: templates/dcim/device.html:120 templates/dcim/device_edit.html:93 +#: templates/dcim/virtualchassis.html:20 +#: templates/dcim/virtualchassis_add.html:8 +#: templates/dcim/virtualchassis_edit.html:24 msgid "Virtual Chassis" msgstr "Virtuální šasi" -#: netbox/dcim/filtersets.py:1488 +#: dcim/filtersets.py:1488 msgid "Module (ID)" msgstr "Modul (ID)" -#: netbox/dcim/filtersets.py:1495 +#: dcim/filtersets.py:1495 msgid "Cable (ID)" msgstr "Kabel (ID)" -#: netbox/dcim/filtersets.py:1604 netbox/ipam/forms/bulk_import.py:189 -#: netbox/vpn/forms/bulk_import.py:308 +#: dcim/filtersets.py:1604 ipam/forms/bulk_import.py:189 +#: vpn/forms/bulk_import.py:308 msgid "Assigned VLAN" msgstr "Přiřazená VLAN" -#: netbox/dcim/filtersets.py:1608 +#: dcim/filtersets.py:1608 msgid "Assigned VID" msgstr "Přiřazené VID" -#: netbox/dcim/filtersets.py:1613 netbox/dcim/forms/bulk_edit.py:1489 -#: netbox/dcim/forms/bulk_import.py:891 netbox/dcim/forms/filtersets.py:1428 -#: netbox/dcim/forms/model_forms.py:1378 -#: netbox/dcim/models/device_components.py:711 -#: netbox/dcim/tables/devices.py:626 netbox/ipam/filtersets.py:316 -#: netbox/ipam/filtersets.py:327 netbox/ipam/filtersets.py:483 -#: netbox/ipam/filtersets.py:584 netbox/ipam/filtersets.py:595 -#: netbox/ipam/forms/bulk_edit.py:241 netbox/ipam/forms/bulk_edit.py:297 -#: netbox/ipam/forms/bulk_edit.py:339 netbox/ipam/forms/bulk_import.py:157 -#: netbox/ipam/forms/bulk_import.py:243 netbox/ipam/forms/bulk_import.py:279 -#: netbox/ipam/forms/filtersets.py:67 netbox/ipam/forms/filtersets.py:172 -#: netbox/ipam/forms/filtersets.py:309 netbox/ipam/forms/model_forms.py:62 -#: netbox/ipam/forms/model_forms.py:202 netbox/ipam/forms/model_forms.py:247 -#: netbox/ipam/forms/model_forms.py:300 netbox/ipam/forms/model_forms.py:431 -#: netbox/ipam/forms/model_forms.py:445 netbox/ipam/forms/model_forms.py:459 -#: netbox/ipam/models/ip.py:233 netbox/ipam/models/ip.py:512 -#: netbox/ipam/models/ip.py:720 netbox/ipam/models/vrfs.py:62 -#: netbox/ipam/tables/ip.py:242 netbox/ipam/tables/ip.py:309 -#: netbox/ipam/tables/ip.py:360 netbox/ipam/tables/ip.py:450 -#: netbox/templates/dcim/interface.html:133 -#: netbox/templates/ipam/ipaddress.html:18 -#: netbox/templates/ipam/iprange.html:40 netbox/templates/ipam/prefix.html:19 -#: netbox/templates/ipam/vrf.html:7 netbox/templates/ipam/vrf.html:13 -#: netbox/templates/virtualization/vminterface.html:47 -#: netbox/virtualization/forms/bulk_edit.py:261 -#: netbox/virtualization/forms/bulk_import.py:171 -#: netbox/virtualization/forms/filtersets.py:228 -#: netbox/virtualization/forms/model_forms.py:344 -#: netbox/virtualization/models/virtualmachines.py:355 -#: netbox/virtualization/tables/virtualmachines.py:143 +#: dcim/filtersets.py:1613 dcim/forms/bulk_edit.py:1489 +#: dcim/forms/bulk_import.py:891 dcim/forms/filtersets.py:1428 +#: dcim/forms/model_forms.py:1378 dcim/models/device_components.py:711 +#: dcim/tables/devices.py:626 ipam/filtersets.py:316 ipam/filtersets.py:327 +#: ipam/filtersets.py:483 ipam/filtersets.py:584 ipam/filtersets.py:595 +#: ipam/forms/bulk_edit.py:242 ipam/forms/bulk_edit.py:298 +#: ipam/forms/bulk_edit.py:340 ipam/forms/bulk_import.py:157 +#: ipam/forms/bulk_import.py:243 ipam/forms/bulk_import.py:279 +#: ipam/forms/filtersets.py:67 ipam/forms/filtersets.py:172 +#: ipam/forms/filtersets.py:309 ipam/forms/model_forms.py:62 +#: ipam/forms/model_forms.py:202 ipam/forms/model_forms.py:247 +#: ipam/forms/model_forms.py:300 ipam/forms/model_forms.py:431 +#: ipam/forms/model_forms.py:445 ipam/forms/model_forms.py:459 +#: ipam/models/ip.py:233 ipam/models/ip.py:512 ipam/models/ip.py:720 +#: ipam/models/vrfs.py:62 ipam/tables/ip.py:242 ipam/tables/ip.py:309 +#: ipam/tables/ip.py:360 ipam/tables/ip.py:450 +#: templates/dcim/interface.html:133 templates/ipam/ipaddress.html:18 +#: templates/ipam/iprange.html:40 templates/ipam/prefix.html:19 +#: templates/ipam/vrf.html:7 templates/ipam/vrf.html:13 +#: templates/virtualization/vminterface.html:47 +#: virtualization/forms/bulk_edit.py:261 +#: virtualization/forms/bulk_import.py:171 +#: virtualization/forms/filtersets.py:228 +#: virtualization/forms/model_forms.py:344 +#: virtualization/models/virtualmachines.py:355 +#: virtualization/tables/virtualmachines.py:143 msgid "VRF" msgstr "VRF" -#: netbox/dcim/filtersets.py:1619 netbox/ipam/filtersets.py:322 -#: netbox/ipam/filtersets.py:333 netbox/ipam/filtersets.py:489 -#: netbox/ipam/filtersets.py:590 netbox/ipam/filtersets.py:601 +#: dcim/filtersets.py:1619 ipam/filtersets.py:322 ipam/filtersets.py:333 +#: ipam/filtersets.py:489 ipam/filtersets.py:590 ipam/filtersets.py:601 msgid "VRF (RD)" msgstr "VRF (RD)" -#: netbox/dcim/filtersets.py:1624 netbox/ipam/filtersets.py:1030 -#: netbox/vpn/filtersets.py:342 +#: dcim/filtersets.py:1624 ipam/filtersets.py:1030 vpn/filtersets.py:342 msgid "L2VPN (ID)" msgstr "L2VPN (ID)" -#: netbox/dcim/filtersets.py:1630 netbox/dcim/forms/filtersets.py:1433 -#: netbox/dcim/tables/devices.py:570 netbox/ipam/filtersets.py:1036 -#: netbox/ipam/forms/filtersets.py:518 netbox/ipam/tables/vlans.py:137 -#: netbox/templates/dcim/interface.html:93 netbox/templates/ipam/vlan.html:66 -#: netbox/templates/vpn/l2vpntermination.html:12 -#: netbox/virtualization/forms/filtersets.py:233 -#: netbox/vpn/forms/bulk_import.py:280 netbox/vpn/forms/filtersets.py:246 -#: netbox/vpn/forms/model_forms.py:409 netbox/vpn/forms/model_forms.py:427 -#: netbox/vpn/models/l2vpn.py:63 netbox/vpn/tables/l2vpn.py:55 +#: dcim/filtersets.py:1630 dcim/forms/filtersets.py:1433 +#: dcim/tables/devices.py:570 ipam/filtersets.py:1036 +#: ipam/forms/filtersets.py:518 ipam/tables/vlans.py:137 +#: templates/dcim/interface.html:93 templates/ipam/vlan.html:66 +#: templates/vpn/l2vpntermination.html:12 +#: virtualization/forms/filtersets.py:233 vpn/forms/bulk_import.py:280 +#: vpn/forms/filtersets.py:246 vpn/forms/model_forms.py:409 +#: vpn/forms/model_forms.py:427 vpn/models/l2vpn.py:63 vpn/tables/l2vpn.py:55 msgid "L2VPN" msgstr "L2VPN" -#: netbox/dcim/filtersets.py:1662 +#: dcim/filtersets.py:1662 msgid "Virtual Chassis Interfaces for Device" msgstr "Virtuální rozhraní šasi pro zařízení" -#: netbox/dcim/filtersets.py:1667 +#: dcim/filtersets.py:1667 msgid "Virtual Chassis Interfaces for Device (ID)" msgstr "Virtuální rozhraní šasi pro zařízení (ID)" -#: netbox/dcim/filtersets.py:1671 +#: dcim/filtersets.py:1671 msgid "Kind of interface" msgstr "Druh rozhraní" -#: netbox/dcim/filtersets.py:1676 netbox/virtualization/filtersets.py:293 +#: dcim/filtersets.py:1676 virtualization/filtersets.py:293 msgid "Parent interface (ID)" msgstr "Rodičovské rozhraní (ID)" -#: netbox/dcim/filtersets.py:1681 netbox/virtualization/filtersets.py:298 +#: dcim/filtersets.py:1681 virtualization/filtersets.py:298 msgid "Bridged interface (ID)" msgstr "Přemostěné rozhraní (ID)" -#: netbox/dcim/filtersets.py:1686 +#: dcim/filtersets.py:1686 msgid "LAG interface (ID)" msgstr "Rozhraní LAG (ID)" -#: netbox/dcim/filtersets.py:1713 netbox/dcim/filtersets.py:1725 -#: netbox/dcim/forms/filtersets.py:1345 netbox/dcim/forms/model_forms.py:1690 -#: netbox/templates/dcim/virtualdevicecontext.html:15 +#: dcim/filtersets.py:1713 dcim/filtersets.py:1725 +#: dcim/forms/filtersets.py:1345 dcim/forms/model_forms.py:1690 +#: templates/dcim/virtualdevicecontext.html:15 msgid "Virtual Device Context" msgstr "Kontext virtuálního zařízení" -#: netbox/dcim/filtersets.py:1719 +#: dcim/filtersets.py:1719 msgid "Virtual Device Context (Identifier)" msgstr "Kontext virtuálního zařízení (identifikátor)" -#: netbox/dcim/filtersets.py:1730 -#: netbox/templates/wireless/wirelesslan.html:11 -#: netbox/wireless/forms/model_forms.py:53 +#: dcim/filtersets.py:1730 templates/wireless/wirelesslan.html:11 +#: wireless/forms/model_forms.py:53 msgid "Wireless LAN" msgstr "Bezdrátová síť LAN" -#: netbox/dcim/filtersets.py:1734 netbox/dcim/tables/devices.py:613 +#: dcim/filtersets.py:1734 dcim/tables/devices.py:613 msgid "Wireless link" msgstr "Bezdrátové spojení" -#: netbox/dcim/filtersets.py:1803 +#: dcim/filtersets.py:1803 msgid "Parent module bay (ID)" msgstr "Pozice nadřazeného modulu (ID)" -#: netbox/dcim/filtersets.py:1808 +#: dcim/filtersets.py:1808 msgid "Installed module (ID)" msgstr "Instalovaný modul (ID)" -#: netbox/dcim/filtersets.py:1819 +#: dcim/filtersets.py:1819 msgid "Installed device (ID)" msgstr "Instalované zařízení (ID)" -#: netbox/dcim/filtersets.py:1825 +#: dcim/filtersets.py:1825 msgid "Installed device (name)" msgstr "Instalované zařízení (název)" -#: netbox/dcim/filtersets.py:1891 +#: dcim/filtersets.py:1891 msgid "Master (ID)" msgstr "Mistr (ID)" -#: netbox/dcim/filtersets.py:1897 +#: dcim/filtersets.py:1897 msgid "Master (name)" msgstr "Mistr (jméno)" -#: netbox/dcim/filtersets.py:1939 netbox/tenancy/filtersets.py:245 +#: dcim/filtersets.py:1939 tenancy/filtersets.py:245 msgid "Tenant (ID)" msgstr "Nájemce (ID)" -#: netbox/dcim/filtersets.py:1945 netbox/extras/filtersets.py:618 -#: netbox/tenancy/filtersets.py:251 +#: dcim/filtersets.py:1945 extras/filtersets.py:618 tenancy/filtersets.py:251 msgid "Tenant (slug)" msgstr "Nájemce (slug)" -#: netbox/dcim/filtersets.py:1981 netbox/dcim/forms/filtersets.py:1077 +#: dcim/filtersets.py:1981 dcim/forms/filtersets.py:1077 msgid "Unterminated" msgstr "Neukončený" -#: netbox/dcim/filtersets.py:2239 +#: dcim/filtersets.py:2239 msgid "Power panel (ID)" msgstr "Napájecí panel (ID)" -#: netbox/dcim/forms/bulk_create.py:40 netbox/extras/forms/filtersets.py:401 -#: netbox/extras/forms/model_forms.py:567 -#: netbox/extras/forms/model_forms.py:619 netbox/netbox/forms/base.py:86 -#: netbox/netbox/forms/mixins.py:81 netbox/netbox/tables/columns.py:478 -#: netbox/templates/circuits/inc/circuit_termination.html:32 -#: netbox/templates/generic/bulk_edit.html:65 -#: netbox/templates/inc/panels/tags.html:5 -#: netbox/utilities/forms/fields/fields.py:81 +#: dcim/forms/bulk_create.py:40 extras/forms/filtersets.py:401 +#: extras/forms/model_forms.py:567 extras/forms/model_forms.py:619 +#: netbox/forms/base.py:86 netbox/forms/mixins.py:81 +#: netbox/tables/columns.py:478 +#: templates/circuits/inc/circuit_termination.html:32 +#: templates/generic/bulk_edit.html:65 templates/inc/panels/tags.html:5 +#: utilities/forms/fields/fields.py:81 msgid "Tags" msgstr "Značky" -#: netbox/dcim/forms/bulk_create.py:112 netbox/dcim/forms/filtersets.py:1498 -#: netbox/dcim/forms/model_forms.py:488 netbox/dcim/forms/model_forms.py:546 -#: netbox/dcim/forms/object_create.py:197 -#: netbox/dcim/forms/object_create.py:353 netbox/dcim/tables/devices.py:165 -#: netbox/dcim/tables/devices.py:707 netbox/dcim/tables/devicetypes.py:246 -#: netbox/templates/dcim/device.html:43 netbox/templates/dcim/device.html:131 -#: netbox/templates/dcim/modulebay.html:38 -#: netbox/templates/dcim/virtualchassis.html:66 -#: netbox/templates/dcim/virtualchassis_edit.html:55 +#: dcim/forms/bulk_create.py:112 dcim/forms/filtersets.py:1498 +#: dcim/forms/model_forms.py:488 dcim/forms/model_forms.py:546 +#: dcim/forms/object_create.py:197 dcim/forms/object_create.py:353 +#: dcim/tables/devices.py:165 dcim/tables/devices.py:707 +#: dcim/tables/devicetypes.py:246 templates/dcim/device.html:43 +#: templates/dcim/device.html:131 templates/dcim/modulebay.html:38 +#: templates/dcim/virtualchassis.html:66 +#: templates/dcim/virtualchassis_edit.html:55 msgid "Position" msgstr "Pozice" -#: netbox/dcim/forms/bulk_create.py:114 +#: dcim/forms/bulk_create.py:114 msgid "" "Alphanumeric ranges are supported. (Must match the number of names being " "created.)" @@ -3443,887 +3112,825 @@ msgstr "" "Podporovány jsou alfanumerické rozsahy. (Musí odpovídat počtu vytvořených " "jmen.)" -#: netbox/dcim/forms/bulk_edit.py:132 +#: dcim/forms/bulk_edit.py:132 msgid "Contact name" msgstr "Kontaktní jméno" -#: netbox/dcim/forms/bulk_edit.py:137 +#: dcim/forms/bulk_edit.py:137 msgid "Contact phone" msgstr "Kontaktní telefon" -#: netbox/dcim/forms/bulk_edit.py:143 +#: dcim/forms/bulk_edit.py:143 msgid "Contact E-mail" msgstr "Kontaktní e-mail" -#: netbox/dcim/forms/bulk_edit.py:146 netbox/dcim/forms/bulk_import.py:123 -#: netbox/dcim/forms/model_forms.py:128 +#: dcim/forms/bulk_edit.py:146 dcim/forms/bulk_import.py:123 +#: dcim/forms/model_forms.py:128 msgid "Time zone" msgstr "Časové pásmo" -#: netbox/dcim/forms/bulk_edit.py:224 netbox/dcim/forms/bulk_edit.py:495 -#: netbox/dcim/forms/bulk_edit.py:559 netbox/dcim/forms/bulk_edit.py:632 -#: netbox/dcim/forms/bulk_edit.py:656 netbox/dcim/forms/bulk_edit.py:740 -#: netbox/dcim/forms/bulk_edit.py:1267 netbox/dcim/forms/bulk_edit.py:1660 -#: netbox/dcim/forms/bulk_import.py:182 netbox/dcim/forms/bulk_import.py:371 -#: netbox/dcim/forms/bulk_import.py:405 netbox/dcim/forms/bulk_import.py:450 -#: netbox/dcim/forms/bulk_import.py:486 netbox/dcim/forms/bulk_import.py:1082 -#: netbox/dcim/forms/filtersets.py:313 netbox/dcim/forms/filtersets.py:372 -#: netbox/dcim/forms/filtersets.py:494 netbox/dcim/forms/filtersets.py:619 -#: netbox/dcim/forms/filtersets.py:700 netbox/dcim/forms/filtersets.py:782 -#: netbox/dcim/forms/filtersets.py:947 netbox/dcim/forms/filtersets.py:1539 -#: netbox/dcim/forms/model_forms.py:207 netbox/dcim/forms/model_forms.py:337 -#: netbox/dcim/forms/model_forms.py:349 netbox/dcim/forms/model_forms.py:395 -#: netbox/dcim/forms/model_forms.py:436 netbox/dcim/forms/model_forms.py:1075 -#: netbox/dcim/forms/model_forms.py:1515 -#: netbox/dcim/forms/object_import.py:187 netbox/dcim/tables/devices.py:96 -#: netbox/dcim/tables/devices.py:172 netbox/dcim/tables/devices.py:940 -#: netbox/dcim/tables/devicetypes.py:80 netbox/dcim/tables/devicetypes.py:308 -#: netbox/dcim/tables/modules.py:20 netbox/dcim/tables/modules.py:60 -#: netbox/dcim/tables/racks.py:58 netbox/dcim/tables/racks.py:132 -#: netbox/templates/dcim/devicetype.html:14 -#: netbox/templates/dcim/inventoryitem.html:44 -#: netbox/templates/dcim/manufacturer.html:33 -#: netbox/templates/dcim/modulebay.html:62 -#: netbox/templates/dcim/moduletype.html:14 -#: netbox/templates/dcim/platform.html:37 -#: netbox/templates/dcim/racktype.html:16 +#: dcim/forms/bulk_edit.py:224 dcim/forms/bulk_edit.py:495 +#: dcim/forms/bulk_edit.py:559 dcim/forms/bulk_edit.py:632 +#: dcim/forms/bulk_edit.py:656 dcim/forms/bulk_edit.py:740 +#: dcim/forms/bulk_edit.py:1267 dcim/forms/bulk_edit.py:1660 +#: dcim/forms/bulk_import.py:182 dcim/forms/bulk_import.py:371 +#: dcim/forms/bulk_import.py:405 dcim/forms/bulk_import.py:450 +#: dcim/forms/bulk_import.py:486 dcim/forms/bulk_import.py:1082 +#: dcim/forms/filtersets.py:313 dcim/forms/filtersets.py:372 +#: dcim/forms/filtersets.py:494 dcim/forms/filtersets.py:619 +#: dcim/forms/filtersets.py:700 dcim/forms/filtersets.py:782 +#: dcim/forms/filtersets.py:947 dcim/forms/filtersets.py:1539 +#: dcim/forms/model_forms.py:207 dcim/forms/model_forms.py:337 +#: dcim/forms/model_forms.py:349 dcim/forms/model_forms.py:395 +#: dcim/forms/model_forms.py:436 dcim/forms/model_forms.py:1075 +#: dcim/forms/model_forms.py:1515 dcim/forms/object_import.py:187 +#: dcim/tables/devices.py:96 dcim/tables/devices.py:172 +#: dcim/tables/devices.py:940 dcim/tables/devicetypes.py:80 +#: dcim/tables/devicetypes.py:308 dcim/tables/modules.py:20 +#: dcim/tables/modules.py:60 dcim/tables/racks.py:58 dcim/tables/racks.py:132 +#: templates/dcim/devicetype.html:14 templates/dcim/inventoryitem.html:44 +#: templates/dcim/manufacturer.html:33 templates/dcim/modulebay.html:62 +#: templates/dcim/moduletype.html:25 templates/dcim/platform.html:37 +#: templates/dcim/racktype.html:16 msgid "Manufacturer" msgstr "Výrobce" -#: netbox/dcim/forms/bulk_edit.py:229 netbox/dcim/forms/bulk_edit.py:372 -#: netbox/dcim/forms/bulk_import.py:191 netbox/dcim/forms/bulk_import.py:263 -#: netbox/dcim/forms/filtersets.py:255 -#: netbox/templates/dcim/inc/panels/racktype_dimensions.html:6 +#: dcim/forms/bulk_edit.py:229 dcim/forms/bulk_edit.py:372 +#: dcim/forms/bulk_import.py:191 dcim/forms/bulk_import.py:263 +#: dcim/forms/filtersets.py:255 +#: templates/dcim/inc/panels/racktype_dimensions.html:6 msgid "Form factor" msgstr "Tvarový faktor" -#: netbox/dcim/forms/bulk_edit.py:234 netbox/dcim/forms/bulk_edit.py:377 -#: netbox/dcim/forms/bulk_import.py:199 netbox/dcim/forms/bulk_import.py:266 -#: netbox/dcim/forms/filtersets.py:260 -#: netbox/templates/dcim/inc/panels/racktype_dimensions.html:10 +#: dcim/forms/bulk_edit.py:234 dcim/forms/bulk_edit.py:377 +#: dcim/forms/bulk_import.py:199 dcim/forms/bulk_import.py:266 +#: dcim/forms/filtersets.py:260 +#: templates/dcim/inc/panels/racktype_dimensions.html:10 msgid "Width" msgstr "Šířka" -#: netbox/dcim/forms/bulk_edit.py:240 netbox/dcim/forms/bulk_edit.py:383 -#: netbox/templates/dcim/devicetype.html:37 +#: dcim/forms/bulk_edit.py:240 dcim/forms/bulk_edit.py:383 +#: templates/dcim/devicetype.html:37 msgid "Height (U)" msgstr "Výška (U)" -#: netbox/dcim/forms/bulk_edit.py:249 netbox/dcim/forms/bulk_edit.py:388 -#: netbox/dcim/forms/filtersets.py:274 +#: dcim/forms/bulk_edit.py:249 dcim/forms/bulk_edit.py:388 +#: dcim/forms/filtersets.py:274 msgid "Descending units" msgstr "Sestupné jednotky" -#: netbox/dcim/forms/bulk_edit.py:252 netbox/dcim/forms/bulk_edit.py:391 +#: dcim/forms/bulk_edit.py:252 dcim/forms/bulk_edit.py:391 msgid "Outer width" msgstr "Vnější šířka" -#: netbox/dcim/forms/bulk_edit.py:257 netbox/dcim/forms/bulk_edit.py:396 +#: dcim/forms/bulk_edit.py:257 dcim/forms/bulk_edit.py:396 msgid "Outer depth" msgstr "Vnější hloubka" -#: netbox/dcim/forms/bulk_edit.py:262 netbox/dcim/forms/bulk_edit.py:401 -#: netbox/dcim/forms/bulk_import.py:204 netbox/dcim/forms/bulk_import.py:271 +#: dcim/forms/bulk_edit.py:262 dcim/forms/bulk_edit.py:401 +#: dcim/forms/bulk_import.py:204 dcim/forms/bulk_import.py:271 msgid "Outer unit" msgstr "Vnější jednotka" -#: netbox/dcim/forms/bulk_edit.py:267 netbox/dcim/forms/bulk_edit.py:406 +#: dcim/forms/bulk_edit.py:267 dcim/forms/bulk_edit.py:406 msgid "Mounting depth" msgstr "Hloubka montáže" -#: netbox/dcim/forms/bulk_edit.py:272 netbox/dcim/forms/bulk_edit.py:299 -#: netbox/dcim/forms/bulk_edit.py:416 netbox/dcim/forms/bulk_edit.py:446 -#: netbox/dcim/forms/bulk_edit.py:529 netbox/dcim/forms/bulk_edit.py:552 -#: netbox/dcim/forms/bulk_edit.py:573 netbox/dcim/forms/bulk_edit.py:595 -#: netbox/dcim/forms/bulk_import.py:384 netbox/dcim/forms/bulk_import.py:416 -#: netbox/dcim/forms/filtersets.py:285 netbox/dcim/forms/filtersets.py:307 -#: netbox/dcim/forms/filtersets.py:327 netbox/dcim/forms/filtersets.py:401 -#: netbox/dcim/forms/filtersets.py:488 netbox/dcim/forms/filtersets.py:594 -#: netbox/dcim/forms/filtersets.py:613 netbox/dcim/forms/filtersets.py:674 -#: netbox/dcim/forms/model_forms.py:221 netbox/dcim/forms/model_forms.py:298 -#: netbox/dcim/tables/devicetypes.py:106 netbox/dcim/tables/modules.py:35 -#: netbox/dcim/tables/racks.py:74 netbox/dcim/tables/racks.py:172 -#: netbox/extras/forms/bulk_edit.py:53 netbox/extras/forms/bulk_edit.py:133 -#: netbox/extras/forms/bulk_edit.py:183 netbox/extras/forms/bulk_edit.py:288 -#: netbox/extras/forms/filtersets.py:64 netbox/extras/forms/filtersets.py:156 -#: netbox/extras/forms/filtersets.py:243 netbox/ipam/forms/bulk_edit.py:189 -#: netbox/templates/dcim/device.html:324 -#: netbox/templates/dcim/devicetype.html:49 -#: netbox/templates/dcim/moduletype.html:34 netbox/templates/dcim/rack.html:81 -#: netbox/templates/dcim/racktype.html:41 -#: netbox/templates/extras/configcontext.html:17 -#: netbox/templates/extras/customlink.html:25 -#: netbox/templates/extras/savedfilter.html:33 -#: netbox/templates/ipam/role.html:30 +#: dcim/forms/bulk_edit.py:272 dcim/forms/bulk_edit.py:299 +#: dcim/forms/bulk_edit.py:416 dcim/forms/bulk_edit.py:446 +#: dcim/forms/bulk_edit.py:529 dcim/forms/bulk_edit.py:552 +#: dcim/forms/bulk_edit.py:573 dcim/forms/bulk_edit.py:595 +#: dcim/forms/bulk_import.py:384 dcim/forms/bulk_import.py:416 +#: dcim/forms/filtersets.py:285 dcim/forms/filtersets.py:307 +#: dcim/forms/filtersets.py:327 dcim/forms/filtersets.py:401 +#: dcim/forms/filtersets.py:488 dcim/forms/filtersets.py:594 +#: dcim/forms/filtersets.py:613 dcim/forms/filtersets.py:674 +#: dcim/forms/model_forms.py:221 dcim/forms/model_forms.py:298 +#: dcim/tables/devicetypes.py:106 dcim/tables/modules.py:35 +#: dcim/tables/racks.py:74 dcim/tables/racks.py:172 +#: extras/forms/bulk_edit.py:53 extras/forms/bulk_edit.py:133 +#: extras/forms/bulk_edit.py:183 extras/forms/bulk_edit.py:288 +#: extras/forms/filtersets.py:64 extras/forms/filtersets.py:156 +#: extras/forms/filtersets.py:243 ipam/forms/bulk_edit.py:190 +#: templates/dcim/device.html:324 templates/dcim/devicetype.html:49 +#: templates/dcim/moduletype.html:45 templates/dcim/rack.html:81 +#: templates/dcim/racktype.html:41 templates/extras/configcontext.html:17 +#: templates/extras/customlink.html:25 templates/extras/savedfilter.html:33 +#: templates/ipam/role.html:30 msgid "Weight" msgstr "Hmotnost" -#: netbox/dcim/forms/bulk_edit.py:277 netbox/dcim/forms/bulk_edit.py:421 -#: netbox/dcim/forms/filtersets.py:290 +#: dcim/forms/bulk_edit.py:277 dcim/forms/bulk_edit.py:421 +#: dcim/forms/filtersets.py:290 msgid "Max weight" msgstr "Max. hmotnost" -#: netbox/dcim/forms/bulk_edit.py:282 netbox/dcim/forms/bulk_edit.py:426 -#: netbox/dcim/forms/bulk_edit.py:534 netbox/dcim/forms/bulk_edit.py:578 -#: netbox/dcim/forms/bulk_import.py:210 netbox/dcim/forms/bulk_import.py:283 -#: netbox/dcim/forms/bulk_import.py:389 netbox/dcim/forms/bulk_import.py:421 -#: netbox/dcim/forms/filtersets.py:295 netbox/dcim/forms/filtersets.py:598 -#: netbox/dcim/forms/filtersets.py:678 +#: dcim/forms/bulk_edit.py:282 dcim/forms/bulk_edit.py:426 +#: dcim/forms/bulk_edit.py:534 dcim/forms/bulk_edit.py:578 +#: dcim/forms/bulk_import.py:210 dcim/forms/bulk_import.py:283 +#: dcim/forms/bulk_import.py:389 dcim/forms/bulk_import.py:421 +#: dcim/forms/filtersets.py:295 dcim/forms/filtersets.py:598 +#: dcim/forms/filtersets.py:678 msgid "Weight unit" msgstr "Jednotka hmotnosti" -#: netbox/dcim/forms/bulk_edit.py:296 netbox/dcim/forms/filtersets.py:305 -#: netbox/dcim/forms/model_forms.py:217 netbox/dcim/forms/model_forms.py:256 -#: netbox/templates/dcim/rack.html:45 netbox/templates/dcim/racktype.html:13 +#: dcim/forms/bulk_edit.py:296 dcim/forms/filtersets.py:305 +#: dcim/forms/model_forms.py:217 dcim/forms/model_forms.py:256 +#: templates/dcim/rack.html:45 templates/dcim/racktype.html:13 msgid "Rack Type" msgstr "Typ stojanu" -#: netbox/dcim/forms/bulk_edit.py:298 netbox/dcim/forms/model_forms.py:220 -#: netbox/dcim/forms/model_forms.py:297 +#: dcim/forms/bulk_edit.py:298 dcim/forms/model_forms.py:220 +#: dcim/forms/model_forms.py:297 msgid "Outer Dimensions" msgstr "Vnější rozměry" -#: netbox/dcim/forms/bulk_edit.py:301 netbox/dcim/forms/model_forms.py:222 -#: netbox/dcim/forms/model_forms.py:299 netbox/templates/dcim/device.html:315 -#: netbox/templates/dcim/inc/panels/racktype_dimensions.html:3 +#: dcim/forms/bulk_edit.py:301 dcim/forms/model_forms.py:222 +#: dcim/forms/model_forms.py:299 templates/dcim/device.html:315 +#: templates/dcim/inc/panels/racktype_dimensions.html:3 msgid "Dimensions" msgstr "Rozměry" -#: netbox/dcim/forms/bulk_edit.py:303 netbox/dcim/forms/filtersets.py:306 -#: netbox/dcim/forms/filtersets.py:326 netbox/dcim/forms/model_forms.py:224 -#: netbox/templates/dcim/inc/panels/racktype_numbering.html:3 +#: dcim/forms/bulk_edit.py:303 dcim/forms/filtersets.py:306 +#: dcim/forms/filtersets.py:326 dcim/forms/model_forms.py:224 +#: templates/dcim/inc/panels/racktype_numbering.html:3 msgid "Numbering" msgstr "Číslování" -#: netbox/dcim/forms/bulk_edit.py:357 netbox/dcim/forms/bulk_edit.py:1262 -#: netbox/dcim/forms/bulk_edit.py:1655 netbox/dcim/forms/bulk_import.py:253 -#: netbox/dcim/forms/bulk_import.py:1076 netbox/dcim/forms/filtersets.py:367 -#: netbox/dcim/forms/filtersets.py:777 netbox/dcim/forms/filtersets.py:1534 -#: netbox/dcim/forms/model_forms.py:251 netbox/dcim/forms/model_forms.py:1070 -#: netbox/dcim/forms/model_forms.py:1510 -#: netbox/dcim/forms/object_import.py:181 netbox/dcim/tables/devices.py:169 -#: netbox/dcim/tables/devices.py:809 netbox/dcim/tables/devices.py:937 -#: netbox/dcim/tables/devicetypes.py:304 netbox/dcim/tables/racks.py:129 -#: netbox/extras/filtersets.py:552 netbox/ipam/forms/bulk_edit.py:260 -#: netbox/ipam/forms/bulk_edit.py:310 netbox/ipam/forms/bulk_edit.py:358 -#: netbox/ipam/forms/bulk_edit.py:556 netbox/ipam/forms/bulk_import.py:197 -#: netbox/ipam/forms/bulk_import.py:262 netbox/ipam/forms/bulk_import.py:298 -#: netbox/ipam/forms/bulk_import.py:455 netbox/ipam/forms/filtersets.py:237 -#: netbox/ipam/forms/filtersets.py:289 netbox/ipam/forms/filtersets.py:360 -#: netbox/ipam/forms/filtersets.py:509 netbox/ipam/forms/model_forms.py:188 -#: netbox/ipam/forms/model_forms.py:221 netbox/ipam/forms/model_forms.py:250 -#: netbox/ipam/forms/model_forms.py:643 netbox/ipam/tables/ip.py:258 -#: netbox/ipam/tables/ip.py:316 netbox/ipam/tables/ip.py:367 -#: netbox/ipam/tables/vlans.py:130 netbox/ipam/tables/vlans.py:235 -#: netbox/templates/dcim/device.html:182 -#: netbox/templates/dcim/inc/panels/inventory_items.html:20 -#: netbox/templates/dcim/interface.html:223 -#: netbox/templates/dcim/inventoryitem.html:36 -#: netbox/templates/dcim/rack.html:49 netbox/templates/ipam/ipaddress.html:41 -#: netbox/templates/ipam/iprange.html:50 netbox/templates/ipam/prefix.html:77 -#: netbox/templates/ipam/role.html:19 netbox/templates/ipam/vlan.html:52 -#: netbox/templates/virtualization/virtualmachine.html:23 -#: netbox/templates/vpn/tunneltermination.html:17 -#: netbox/templates/wireless/inc/wirelesslink_interface.html:20 -#: netbox/tenancy/forms/bulk_edit.py:142 -#: netbox/tenancy/forms/filtersets.py:107 -#: netbox/tenancy/forms/model_forms.py:137 -#: netbox/tenancy/tables/contacts.py:102 -#: netbox/virtualization/forms/bulk_edit.py:145 -#: netbox/virtualization/forms/bulk_import.py:106 -#: netbox/virtualization/forms/filtersets.py:157 -#: netbox/virtualization/forms/model_forms.py:195 -#: netbox/virtualization/tables/virtualmachines.py:75 -#: netbox/vpn/forms/bulk_edit.py:87 netbox/vpn/forms/bulk_import.py:81 -#: netbox/vpn/forms/filtersets.py:85 netbox/vpn/forms/model_forms.py:78 -#: netbox/vpn/forms/model_forms.py:113 netbox/vpn/tables/tunnels.py:82 +#: dcim/forms/bulk_edit.py:357 dcim/forms/bulk_edit.py:1262 +#: dcim/forms/bulk_edit.py:1655 dcim/forms/bulk_import.py:253 +#: dcim/forms/bulk_import.py:1076 dcim/forms/filtersets.py:367 +#: dcim/forms/filtersets.py:777 dcim/forms/filtersets.py:1534 +#: dcim/forms/model_forms.py:251 dcim/forms/model_forms.py:1070 +#: dcim/forms/model_forms.py:1510 dcim/forms/object_import.py:181 +#: dcim/tables/devices.py:169 dcim/tables/devices.py:809 +#: dcim/tables/devices.py:937 dcim/tables/devicetypes.py:304 +#: dcim/tables/racks.py:129 extras/filtersets.py:552 +#: ipam/forms/bulk_edit.py:261 ipam/forms/bulk_edit.py:311 +#: ipam/forms/bulk_edit.py:359 ipam/forms/bulk_edit.py:511 +#: ipam/forms/bulk_import.py:197 ipam/forms/bulk_import.py:262 +#: ipam/forms/bulk_import.py:298 ipam/forms/bulk_import.py:455 +#: ipam/forms/filtersets.py:237 ipam/forms/filtersets.py:289 +#: ipam/forms/filtersets.py:360 ipam/forms/filtersets.py:509 +#: ipam/forms/model_forms.py:188 ipam/forms/model_forms.py:221 +#: ipam/forms/model_forms.py:250 ipam/forms/model_forms.py:643 +#: ipam/tables/ip.py:258 ipam/tables/ip.py:316 ipam/tables/ip.py:367 +#: ipam/tables/vlans.py:130 ipam/tables/vlans.py:235 +#: templates/dcim/device.html:182 +#: templates/dcim/inc/panels/inventory_items.html:20 +#: templates/dcim/interface.html:223 templates/dcim/inventoryitem.html:36 +#: templates/dcim/rack.html:49 templates/ipam/ipaddress.html:41 +#: templates/ipam/iprange.html:50 templates/ipam/prefix.html:77 +#: templates/ipam/role.html:19 templates/ipam/vlan.html:52 +#: templates/virtualization/virtualmachine.html:23 +#: templates/vpn/tunneltermination.html:17 +#: templates/wireless/inc/wirelesslink_interface.html:20 +#: tenancy/forms/bulk_edit.py:142 tenancy/forms/filtersets.py:107 +#: tenancy/forms/model_forms.py:137 tenancy/tables/contacts.py:102 +#: virtualization/forms/bulk_edit.py:145 +#: virtualization/forms/bulk_import.py:106 +#: virtualization/forms/filtersets.py:157 +#: virtualization/forms/model_forms.py:195 +#: virtualization/tables/virtualmachines.py:75 vpn/forms/bulk_edit.py:87 +#: vpn/forms/bulk_import.py:81 vpn/forms/filtersets.py:85 +#: vpn/forms/model_forms.py:78 vpn/forms/model_forms.py:113 +#: vpn/tables/tunnels.py:82 msgid "Role" msgstr "Role" -#: netbox/dcim/forms/bulk_edit.py:364 netbox/dcim/forms/bulk_edit.py:712 -#: netbox/dcim/forms/bulk_edit.py:764 netbox/templates/dcim/device.html:104 -#: netbox/templates/dcim/module.html:77 -#: netbox/templates/dcim/modulebay.html:70 netbox/templates/dcim/rack.html:57 -#: netbox/templates/virtualization/virtualmachine.html:35 +#: dcim/forms/bulk_edit.py:364 dcim/forms/bulk_edit.py:712 +#: dcim/forms/bulk_edit.py:764 templates/dcim/device.html:104 +#: templates/dcim/module.html:77 templates/dcim/modulebay.html:70 +#: templates/dcim/rack.html:57 templates/virtualization/virtualmachine.html:35 msgid "Serial Number" msgstr "Sériové číslo" -#: netbox/dcim/forms/bulk_edit.py:367 netbox/dcim/forms/filtersets.py:387 -#: netbox/dcim/forms/filtersets.py:813 netbox/dcim/forms/filtersets.py:967 -#: netbox/dcim/forms/filtersets.py:1546 +#: dcim/forms/bulk_edit.py:367 dcim/forms/filtersets.py:387 +#: dcim/forms/filtersets.py:813 dcim/forms/filtersets.py:967 +#: dcim/forms/filtersets.py:1546 msgid "Asset tag" msgstr "Inventární číslo" -#: netbox/dcim/forms/bulk_edit.py:411 netbox/dcim/forms/bulk_edit.py:524 -#: netbox/dcim/forms/bulk_edit.py:568 netbox/dcim/forms/bulk_edit.py:705 -#: netbox/dcim/forms/bulk_import.py:277 netbox/dcim/forms/bulk_import.py:410 -#: netbox/dcim/forms/bulk_import.py:580 netbox/dcim/forms/filtersets.py:280 -#: netbox/dcim/forms/filtersets.py:511 netbox/dcim/forms/filtersets.py:669 -#: netbox/dcim/forms/filtersets.py:804 netbox/templates/dcim/device.html:98 -#: netbox/templates/dcim/devicetype.html:65 -#: netbox/templates/dcim/moduletype.html:30 netbox/templates/dcim/rack.html:65 -#: netbox/templates/dcim/racktype.html:28 +#: dcim/forms/bulk_edit.py:411 dcim/forms/bulk_edit.py:524 +#: dcim/forms/bulk_edit.py:568 dcim/forms/bulk_edit.py:705 +#: dcim/forms/bulk_import.py:277 dcim/forms/bulk_import.py:410 +#: dcim/forms/bulk_import.py:580 dcim/forms/filtersets.py:280 +#: dcim/forms/filtersets.py:511 dcim/forms/filtersets.py:669 +#: dcim/forms/filtersets.py:804 templates/dcim/device.html:98 +#: templates/dcim/devicetype.html:65 templates/dcim/moduletype.html:41 +#: templates/dcim/rack.html:65 templates/dcim/racktype.html:28 msgid "Airflow" msgstr "Proudění vzduchu" -#: netbox/dcim/forms/bulk_edit.py:440 netbox/dcim/forms/bulk_edit.py:910 -#: netbox/dcim/forms/bulk_import.py:322 netbox/dcim/forms/bulk_import.py:325 -#: netbox/dcim/forms/bulk_import.py:553 netbox/dcim/forms/bulk_import.py:1358 -#: netbox/dcim/forms/bulk_import.py:1362 netbox/dcim/forms/filtersets.py:104 -#: netbox/dcim/forms/filtersets.py:324 netbox/dcim/forms/filtersets.py:405 -#: netbox/dcim/forms/filtersets.py:419 netbox/dcim/forms/filtersets.py:457 -#: netbox/dcim/forms/filtersets.py:772 netbox/dcim/forms/filtersets.py:1035 -#: netbox/dcim/forms/filtersets.py:1167 netbox/dcim/forms/model_forms.py:264 -#: netbox/dcim/forms/model_forms.py:306 netbox/dcim/forms/model_forms.py:479 -#: netbox/dcim/forms/model_forms.py:755 netbox/dcim/forms/object_create.py:400 -#: netbox/dcim/tables/devices.py:161 netbox/dcim/tables/power.py:70 -#: netbox/dcim/tables/racks.py:217 netbox/ipam/forms/bulk_edit.py:468 -#: netbox/ipam/forms/filtersets.py:442 netbox/templates/dcim/device.html:30 -#: netbox/templates/dcim/inc/cable_termination.html:16 -#: netbox/templates/dcim/powerfeed.html:28 netbox/templates/dcim/rack.html:13 -#: netbox/templates/dcim/rack/base.html:4 -#: netbox/templates/dcim/rackreservation.html:19 -#: netbox/templates/dcim/rackreservation.html:36 -#: netbox/virtualization/forms/model_forms.py:113 +#: dcim/forms/bulk_edit.py:440 dcim/forms/bulk_edit.py:910 +#: dcim/forms/bulk_import.py:322 dcim/forms/bulk_import.py:325 +#: dcim/forms/bulk_import.py:553 dcim/forms/bulk_import.py:1358 +#: dcim/forms/bulk_import.py:1362 dcim/forms/filtersets.py:104 +#: dcim/forms/filtersets.py:324 dcim/forms/filtersets.py:405 +#: dcim/forms/filtersets.py:419 dcim/forms/filtersets.py:457 +#: dcim/forms/filtersets.py:772 dcim/forms/filtersets.py:1035 +#: dcim/forms/filtersets.py:1167 dcim/forms/model_forms.py:264 +#: dcim/forms/model_forms.py:306 dcim/forms/model_forms.py:479 +#: dcim/forms/model_forms.py:755 dcim/forms/object_create.py:400 +#: dcim/tables/devices.py:161 dcim/tables/power.py:70 dcim/tables/racks.py:217 +#: ipam/forms/filtersets.py:442 templates/dcim/device.html:30 +#: templates/dcim/inc/cable_termination.html:16 +#: templates/dcim/powerfeed.html:28 templates/dcim/rack.html:13 +#: templates/dcim/rack/base.html:4 templates/dcim/rackreservation.html:19 +#: templates/dcim/rackreservation.html:36 +#: virtualization/forms/model_forms.py:113 msgid "Rack" msgstr "Stojan" -#: netbox/dcim/forms/bulk_edit.py:444 netbox/dcim/forms/bulk_edit.py:730 -#: netbox/dcim/forms/filtersets.py:325 netbox/dcim/forms/filtersets.py:398 -#: netbox/dcim/forms/filtersets.py:481 netbox/dcim/forms/filtersets.py:608 -#: netbox/dcim/forms/filtersets.py:721 netbox/dcim/forms/filtersets.py:942 -#: netbox/dcim/forms/model_forms.py:670 netbox/dcim/forms/model_forms.py:1580 -#: netbox/templates/dcim/device_edit.html:20 +#: dcim/forms/bulk_edit.py:444 dcim/forms/bulk_edit.py:730 +#: dcim/forms/filtersets.py:325 dcim/forms/filtersets.py:398 +#: dcim/forms/filtersets.py:481 dcim/forms/filtersets.py:608 +#: dcim/forms/filtersets.py:721 dcim/forms/filtersets.py:942 +#: dcim/forms/model_forms.py:670 dcim/forms/model_forms.py:1580 +#: templates/dcim/device_edit.html:20 msgid "Hardware" msgstr "Hardware" -#: netbox/dcim/forms/bulk_edit.py:500 netbox/dcim/forms/bulk_import.py:377 -#: netbox/dcim/forms/filtersets.py:499 netbox/dcim/forms/model_forms.py:353 +#: dcim/forms/bulk_edit.py:500 dcim/forms/bulk_import.py:377 +#: dcim/forms/filtersets.py:499 dcim/forms/model_forms.py:353 msgid "Default platform" msgstr "Výchozí platforma" -#: netbox/dcim/forms/bulk_edit.py:505 netbox/dcim/forms/bulk_edit.py:564 -#: netbox/dcim/forms/filtersets.py:502 netbox/dcim/forms/filtersets.py:622 +#: dcim/forms/bulk_edit.py:505 dcim/forms/bulk_edit.py:564 +#: dcim/forms/filtersets.py:502 dcim/forms/filtersets.py:622 msgid "Part number" msgstr "Číslo dílu" -#: netbox/dcim/forms/bulk_edit.py:509 +#: dcim/forms/bulk_edit.py:509 msgid "U height" msgstr "Výška U pozic" -#: netbox/dcim/forms/bulk_edit.py:521 netbox/dcim/tables/devicetypes.py:102 +#: dcim/forms/bulk_edit.py:521 dcim/tables/devicetypes.py:102 msgid "Exclude from utilization" msgstr "Vyloučit z využití" -#: netbox/dcim/forms/bulk_edit.py:550 netbox/dcim/forms/model_forms.py:368 -#: netbox/dcim/tables/devicetypes.py:77 netbox/templates/dcim/device.html:88 -#: netbox/templates/dcim/devicebay.html:52 -#: netbox/templates/dcim/module.html:61 +#: dcim/forms/bulk_edit.py:550 dcim/forms/model_forms.py:368 +#: dcim/tables/devicetypes.py:77 templates/dcim/device.html:88 +#: templates/dcim/devicebay.html:52 templates/dcim/module.html:61 msgid "Device Type" msgstr "Typ zařízení" -#: netbox/dcim/forms/bulk_edit.py:592 netbox/dcim/forms/model_forms.py:401 -#: netbox/dcim/tables/modules.py:17 netbox/dcim/tables/modules.py:65 -#: netbox/templates/dcim/module.html:65 -#: netbox/templates/dcim/modulebay.html:66 -#: netbox/templates/dcim/moduletype.html:11 +#: dcim/forms/bulk_edit.py:592 dcim/forms/model_forms.py:401 +#: dcim/tables/modules.py:17 dcim/tables/modules.py:65 +#: templates/dcim/module.html:65 templates/dcim/modulebay.html:66 +#: templates/dcim/moduletype.html:22 msgid "Module Type" msgstr "Typ modulu" -#: netbox/dcim/forms/bulk_edit.py:596 netbox/dcim/forms/model_forms.py:371 -#: netbox/dcim/forms/model_forms.py:402 -#: netbox/templates/dcim/devicetype.html:11 +#: dcim/forms/bulk_edit.py:596 dcim/forms/model_forms.py:371 +#: dcim/forms/model_forms.py:402 templates/dcim/devicetype.html:11 msgid "Chassis" msgstr "Šasi" -#: netbox/dcim/forms/bulk_edit.py:610 netbox/dcim/models/devices.py:484 -#: netbox/dcim/tables/devices.py:67 +#: dcim/forms/bulk_edit.py:610 dcim/models/devices.py:484 +#: dcim/tables/devices.py:67 msgid "VM role" msgstr "Role virtuálního počítače" -#: netbox/dcim/forms/bulk_edit.py:613 netbox/dcim/forms/bulk_edit.py:637 -#: netbox/dcim/forms/bulk_edit.py:720 netbox/dcim/forms/bulk_import.py:434 -#: netbox/dcim/forms/bulk_import.py:438 netbox/dcim/forms/bulk_import.py:457 -#: netbox/dcim/forms/bulk_import.py:461 netbox/dcim/forms/bulk_import.py:586 -#: netbox/dcim/forms/bulk_import.py:590 netbox/dcim/forms/filtersets.py:689 -#: netbox/dcim/forms/filtersets.py:705 netbox/dcim/forms/filtersets.py:823 -#: netbox/dcim/forms/model_forms.py:415 netbox/dcim/forms/model_forms.py:441 -#: netbox/dcim/forms/model_forms.py:555 -#: netbox/virtualization/forms/bulk_import.py:132 -#: netbox/virtualization/forms/bulk_import.py:133 -#: netbox/virtualization/forms/filtersets.py:188 -#: netbox/virtualization/forms/model_forms.py:215 +#: dcim/forms/bulk_edit.py:613 dcim/forms/bulk_edit.py:637 +#: dcim/forms/bulk_edit.py:720 dcim/forms/bulk_import.py:434 +#: dcim/forms/bulk_import.py:438 dcim/forms/bulk_import.py:457 +#: dcim/forms/bulk_import.py:461 dcim/forms/bulk_import.py:586 +#: dcim/forms/bulk_import.py:590 dcim/forms/filtersets.py:689 +#: dcim/forms/filtersets.py:705 dcim/forms/filtersets.py:823 +#: dcim/forms/model_forms.py:415 dcim/forms/model_forms.py:441 +#: dcim/forms/model_forms.py:555 virtualization/forms/bulk_import.py:132 +#: virtualization/forms/bulk_import.py:133 +#: virtualization/forms/filtersets.py:188 +#: virtualization/forms/model_forms.py:215 msgid "Config template" msgstr "Konfigurační šablona" -#: netbox/dcim/forms/bulk_edit.py:661 netbox/dcim/forms/bulk_edit.py:1061 -#: netbox/dcim/forms/bulk_import.py:492 netbox/dcim/forms/filtersets.py:114 -#: netbox/dcim/forms/model_forms.py:501 netbox/dcim/forms/model_forms.py:872 -#: netbox/dcim/forms/model_forms.py:889 netbox/extras/filtersets.py:547 +#: dcim/forms/bulk_edit.py:661 dcim/forms/bulk_edit.py:1061 +#: dcim/forms/bulk_import.py:492 dcim/forms/filtersets.py:114 +#: dcim/forms/model_forms.py:501 dcim/forms/model_forms.py:872 +#: dcim/forms/model_forms.py:889 extras/filtersets.py:547 msgid "Device type" msgstr "Typ zařízení" -#: netbox/dcim/forms/bulk_edit.py:672 netbox/dcim/forms/bulk_import.py:473 -#: netbox/dcim/forms/filtersets.py:119 netbox/dcim/forms/model_forms.py:509 +#: dcim/forms/bulk_edit.py:672 dcim/forms/bulk_import.py:473 +#: dcim/forms/filtersets.py:119 dcim/forms/model_forms.py:509 msgid "Device role" msgstr "Role zařízení" -#: netbox/dcim/forms/bulk_edit.py:695 netbox/dcim/forms/bulk_import.py:498 -#: netbox/dcim/forms/filtersets.py:796 netbox/dcim/forms/model_forms.py:451 -#: netbox/dcim/forms/model_forms.py:513 netbox/dcim/tables/devices.py:182 -#: netbox/extras/filtersets.py:563 netbox/templates/dcim/device.html:186 -#: netbox/templates/dcim/platform.html:26 -#: netbox/templates/virtualization/virtualmachine.html:27 -#: netbox/virtualization/forms/bulk_edit.py:160 -#: netbox/virtualization/forms/bulk_import.py:122 -#: netbox/virtualization/forms/filtersets.py:168 -#: netbox/virtualization/forms/model_forms.py:203 -#: netbox/virtualization/tables/virtualmachines.py:79 +#: dcim/forms/bulk_edit.py:695 dcim/forms/bulk_import.py:498 +#: dcim/forms/filtersets.py:796 dcim/forms/model_forms.py:451 +#: dcim/forms/model_forms.py:513 dcim/tables/devices.py:182 +#: extras/filtersets.py:563 templates/dcim/device.html:186 +#: templates/dcim/platform.html:26 +#: templates/virtualization/virtualmachine.html:27 +#: virtualization/forms/bulk_edit.py:160 +#: virtualization/forms/bulk_import.py:122 +#: virtualization/forms/filtersets.py:168 +#: virtualization/forms/model_forms.py:203 +#: virtualization/tables/virtualmachines.py:79 msgid "Platform" msgstr "Nástupiště" -#: netbox/dcim/forms/bulk_edit.py:728 netbox/dcim/forms/bulk_edit.py:1281 -#: netbox/dcim/forms/bulk_edit.py:1650 netbox/dcim/forms/bulk_edit.py:1696 -#: netbox/dcim/forms/bulk_import.py:641 netbox/dcim/forms/bulk_import.py:703 -#: netbox/dcim/forms/bulk_import.py:729 netbox/dcim/forms/bulk_import.py:755 -#: netbox/dcim/forms/bulk_import.py:775 netbox/dcim/forms/bulk_import.py:828 -#: netbox/dcim/forms/bulk_import.py:946 netbox/dcim/forms/bulk_import.py:994 -#: netbox/dcim/forms/bulk_import.py:1011 netbox/dcim/forms/bulk_import.py:1023 -#: netbox/dcim/forms/bulk_import.py:1071 netbox/dcim/forms/bulk_import.py:1422 -#: netbox/dcim/forms/connections.py:24 netbox/dcim/forms/filtersets.py:131 -#: netbox/dcim/forms/filtersets.py:921 netbox/dcim/forms/filtersets.py:1051 -#: netbox/dcim/forms/filtersets.py:1242 netbox/dcim/forms/filtersets.py:1267 -#: netbox/dcim/forms/filtersets.py:1291 netbox/dcim/forms/filtersets.py:1311 -#: netbox/dcim/forms/filtersets.py:1334 netbox/dcim/forms/filtersets.py:1444 -#: netbox/dcim/forms/filtersets.py:1469 netbox/dcim/forms/filtersets.py:1493 -#: netbox/dcim/forms/filtersets.py:1511 netbox/dcim/forms/filtersets.py:1528 -#: netbox/dcim/forms/filtersets.py:1592 netbox/dcim/forms/filtersets.py:1616 -#: netbox/dcim/forms/filtersets.py:1640 netbox/dcim/forms/model_forms.py:633 -#: netbox/dcim/forms/model_forms.py:849 netbox/dcim/forms/model_forms.py:1208 -#: netbox/dcim/forms/model_forms.py:1664 -#: netbox/dcim/forms/object_create.py:257 netbox/dcim/tables/connections.py:22 -#: netbox/dcim/tables/connections.py:41 netbox/dcim/tables/connections.py:60 -#: netbox/dcim/tables/devices.py:285 netbox/dcim/tables/devices.py:371 -#: netbox/dcim/tables/devices.py:412 netbox/dcim/tables/devices.py:454 -#: netbox/dcim/tables/devices.py:505 netbox/dcim/tables/devices.py:597 -#: netbox/dcim/tables/devices.py:697 netbox/dcim/tables/devices.py:754 -#: netbox/dcim/tables/devices.py:801 netbox/dcim/tables/devices.py:861 -#: netbox/dcim/tables/devices.py:930 netbox/dcim/tables/devices.py:1057 -#: netbox/dcim/tables/modules.py:52 netbox/extras/forms/filtersets.py:321 -#: netbox/ipam/forms/bulk_import.py:304 netbox/ipam/forms/bulk_import.py:481 -#: netbox/ipam/forms/filtersets.py:551 netbox/ipam/forms/model_forms.py:319 -#: netbox/ipam/forms/model_forms.py:679 netbox/ipam/forms/model_forms.py:712 -#: netbox/ipam/forms/model_forms.py:738 netbox/ipam/tables/vlans.py:180 -#: netbox/templates/dcim/consoleport.html:20 -#: netbox/templates/dcim/consoleserverport.html:20 -#: netbox/templates/dcim/device.html:15 netbox/templates/dcim/device.html:130 -#: netbox/templates/dcim/device_edit.html:10 -#: netbox/templates/dcim/devicebay.html:20 -#: netbox/templates/dcim/devicebay.html:48 -#: netbox/templates/dcim/frontport.html:20 -#: netbox/templates/dcim/interface.html:30 -#: netbox/templates/dcim/interface.html:161 -#: netbox/templates/dcim/inventoryitem.html:20 -#: netbox/templates/dcim/module.html:57 -#: netbox/templates/dcim/modulebay.html:20 -#: netbox/templates/dcim/poweroutlet.html:20 -#: netbox/templates/dcim/powerport.html:20 -#: netbox/templates/dcim/rearport.html:20 -#: netbox/templates/dcim/virtualchassis.html:65 -#: netbox/templates/dcim/virtualchassis_edit.html:51 -#: netbox/templates/dcim/virtualdevicecontext.html:22 -#: netbox/templates/virtualization/virtualmachine.html:114 -#: netbox/templates/vpn/tunneltermination.html:23 -#: netbox/templates/wireless/inc/wirelesslink_interface.html:6 -#: netbox/virtualization/filtersets.py:167 -#: netbox/virtualization/forms/bulk_edit.py:137 -#: netbox/virtualization/forms/bulk_import.py:99 -#: netbox/virtualization/forms/filtersets.py:128 -#: netbox/virtualization/forms/model_forms.py:185 -#: netbox/virtualization/tables/virtualmachines.py:71 netbox/vpn/choices.py:44 -#: netbox/vpn/forms/bulk_import.py:86 netbox/vpn/forms/bulk_import.py:283 -#: netbox/vpn/forms/filtersets.py:275 netbox/vpn/forms/model_forms.py:90 -#: netbox/vpn/forms/model_forms.py:125 netbox/vpn/forms/model_forms.py:236 -#: netbox/vpn/forms/model_forms.py:453 netbox/wireless/forms/model_forms.py:99 -#: netbox/wireless/forms/model_forms.py:141 -#: netbox/wireless/tables/wirelesslan.py:75 +#: dcim/forms/bulk_edit.py:728 dcim/forms/bulk_edit.py:1281 +#: dcim/forms/bulk_edit.py:1650 dcim/forms/bulk_edit.py:1696 +#: dcim/forms/bulk_import.py:641 dcim/forms/bulk_import.py:703 +#: dcim/forms/bulk_import.py:729 dcim/forms/bulk_import.py:755 +#: dcim/forms/bulk_import.py:775 dcim/forms/bulk_import.py:828 +#: dcim/forms/bulk_import.py:946 dcim/forms/bulk_import.py:994 +#: dcim/forms/bulk_import.py:1011 dcim/forms/bulk_import.py:1023 +#: dcim/forms/bulk_import.py:1071 dcim/forms/bulk_import.py:1422 +#: dcim/forms/connections.py:24 dcim/forms/filtersets.py:131 +#: dcim/forms/filtersets.py:921 dcim/forms/filtersets.py:1051 +#: dcim/forms/filtersets.py:1242 dcim/forms/filtersets.py:1267 +#: dcim/forms/filtersets.py:1291 dcim/forms/filtersets.py:1311 +#: dcim/forms/filtersets.py:1334 dcim/forms/filtersets.py:1444 +#: dcim/forms/filtersets.py:1469 dcim/forms/filtersets.py:1493 +#: dcim/forms/filtersets.py:1511 dcim/forms/filtersets.py:1528 +#: dcim/forms/filtersets.py:1592 dcim/forms/filtersets.py:1616 +#: dcim/forms/filtersets.py:1640 dcim/forms/model_forms.py:633 +#: dcim/forms/model_forms.py:849 dcim/forms/model_forms.py:1208 +#: dcim/forms/model_forms.py:1664 dcim/forms/object_create.py:257 +#: dcim/tables/connections.py:22 dcim/tables/connections.py:41 +#: dcim/tables/connections.py:60 dcim/tables/devices.py:285 +#: dcim/tables/devices.py:371 dcim/tables/devices.py:412 +#: dcim/tables/devices.py:454 dcim/tables/devices.py:505 +#: dcim/tables/devices.py:597 dcim/tables/devices.py:697 +#: dcim/tables/devices.py:754 dcim/tables/devices.py:801 +#: dcim/tables/devices.py:861 dcim/tables/devices.py:930 +#: dcim/tables/devices.py:1057 dcim/tables/modules.py:52 +#: extras/forms/filtersets.py:321 ipam/forms/bulk_import.py:304 +#: ipam/forms/bulk_import.py:481 ipam/forms/filtersets.py:551 +#: ipam/forms/model_forms.py:319 ipam/forms/model_forms.py:679 +#: ipam/forms/model_forms.py:712 ipam/forms/model_forms.py:738 +#: ipam/tables/vlans.py:180 templates/dcim/consoleport.html:20 +#: templates/dcim/consoleserverport.html:20 templates/dcim/device.html:15 +#: templates/dcim/device.html:130 templates/dcim/device_edit.html:10 +#: templates/dcim/devicebay.html:20 templates/dcim/devicebay.html:48 +#: templates/dcim/frontport.html:20 templates/dcim/interface.html:30 +#: templates/dcim/interface.html:161 templates/dcim/inventoryitem.html:20 +#: templates/dcim/module.html:57 templates/dcim/modulebay.html:20 +#: templates/dcim/poweroutlet.html:20 templates/dcim/powerport.html:20 +#: templates/dcim/rearport.html:20 templates/dcim/virtualchassis.html:65 +#: templates/dcim/virtualchassis_edit.html:51 +#: templates/dcim/virtualdevicecontext.html:22 +#: templates/virtualization/virtualmachine.html:114 +#: templates/vpn/tunneltermination.html:23 +#: templates/wireless/inc/wirelesslink_interface.html:6 +#: virtualization/filtersets.py:167 virtualization/forms/bulk_edit.py:137 +#: virtualization/forms/bulk_import.py:99 +#: virtualization/forms/filtersets.py:128 +#: virtualization/forms/model_forms.py:185 +#: virtualization/tables/virtualmachines.py:71 vpn/choices.py:44 +#: vpn/forms/bulk_import.py:86 vpn/forms/bulk_import.py:283 +#: vpn/forms/filtersets.py:275 vpn/forms/model_forms.py:90 +#: vpn/forms/model_forms.py:125 vpn/forms/model_forms.py:236 +#: vpn/forms/model_forms.py:453 wireless/forms/model_forms.py:99 +#: wireless/forms/model_forms.py:141 wireless/tables/wirelesslan.py:75 msgid "Device" msgstr "Zařízení" -#: netbox/dcim/forms/bulk_edit.py:731 -#: netbox/templates/extras/dashboard/widget_config.html:7 -#: netbox/virtualization/forms/bulk_edit.py:191 +#: dcim/forms/bulk_edit.py:731 templates/extras/dashboard/widget_config.html:7 +#: virtualization/forms/bulk_edit.py:191 msgid "Configuration" msgstr "Konfigurace" -#: netbox/dcim/forms/bulk_edit.py:745 netbox/dcim/forms/bulk_import.py:653 -#: netbox/dcim/forms/model_forms.py:647 netbox/dcim/forms/model_forms.py:897 +#: dcim/forms/bulk_edit.py:745 dcim/forms/bulk_import.py:653 +#: dcim/forms/model_forms.py:647 dcim/forms/model_forms.py:897 msgid "Module type" msgstr "Typ modulu" -#: netbox/dcim/forms/bulk_edit.py:799 netbox/dcim/forms/bulk_edit.py:984 -#: netbox/dcim/forms/bulk_edit.py:1003 netbox/dcim/forms/bulk_edit.py:1026 -#: netbox/dcim/forms/bulk_edit.py:1068 netbox/dcim/forms/bulk_edit.py:1112 -#: netbox/dcim/forms/bulk_edit.py:1163 netbox/dcim/forms/bulk_edit.py:1190 -#: netbox/dcim/forms/bulk_edit.py:1217 netbox/dcim/forms/bulk_edit.py:1235 -#: netbox/dcim/forms/bulk_edit.py:1253 netbox/dcim/forms/filtersets.py:67 -#: netbox/dcim/forms/object_create.py:46 netbox/templates/dcim/cable.html:32 -#: netbox/templates/dcim/consoleport.html:32 -#: netbox/templates/dcim/consoleserverport.html:32 -#: netbox/templates/dcim/devicebay.html:28 -#: netbox/templates/dcim/frontport.html:32 -#: netbox/templates/dcim/inc/panels/inventory_items.html:19 -#: netbox/templates/dcim/interface.html:42 -#: netbox/templates/dcim/inventoryitem.html:32 -#: netbox/templates/dcim/modulebay.html:34 -#: netbox/templates/dcim/poweroutlet.html:32 -#: netbox/templates/dcim/powerport.html:32 -#: netbox/templates/dcim/rearport.html:32 -#: netbox/templates/extras/customfield.html:26 -#: netbox/templates/generic/bulk_import.html:162 +#: dcim/forms/bulk_edit.py:799 dcim/forms/bulk_edit.py:984 +#: dcim/forms/bulk_edit.py:1003 dcim/forms/bulk_edit.py:1026 +#: dcim/forms/bulk_edit.py:1068 dcim/forms/bulk_edit.py:1112 +#: dcim/forms/bulk_edit.py:1163 dcim/forms/bulk_edit.py:1190 +#: dcim/forms/bulk_edit.py:1217 dcim/forms/bulk_edit.py:1235 +#: dcim/forms/bulk_edit.py:1253 dcim/forms/filtersets.py:67 +#: dcim/forms/object_create.py:46 templates/dcim/cable.html:32 +#: templates/dcim/consoleport.html:32 templates/dcim/consoleserverport.html:32 +#: templates/dcim/devicebay.html:28 templates/dcim/frontport.html:32 +#: templates/dcim/inc/panels/inventory_items.html:19 +#: templates/dcim/interface.html:42 templates/dcim/inventoryitem.html:32 +#: templates/dcim/modulebay.html:34 templates/dcim/poweroutlet.html:32 +#: templates/dcim/powerport.html:32 templates/dcim/rearport.html:32 +#: templates/extras/customfield.html:26 templates/generic/bulk_import.html:162 msgid "Label" msgstr "Štítek" -#: netbox/dcim/forms/bulk_edit.py:808 netbox/dcim/forms/filtersets.py:1068 -#: netbox/templates/dcim/cable.html:50 +#: dcim/forms/bulk_edit.py:808 dcim/forms/filtersets.py:1068 +#: templates/dcim/cable.html:50 msgid "Length" msgstr "Délka" -#: netbox/dcim/forms/bulk_edit.py:813 netbox/dcim/forms/bulk_import.py:1226 -#: netbox/dcim/forms/bulk_import.py:1229 netbox/dcim/forms/filtersets.py:1072 +#: dcim/forms/bulk_edit.py:813 dcim/forms/bulk_import.py:1226 +#: dcim/forms/bulk_import.py:1229 dcim/forms/filtersets.py:1072 msgid "Length unit" msgstr "Jednotka délky" -#: netbox/dcim/forms/bulk_edit.py:837 -#: netbox/templates/dcim/virtualchassis.html:23 +#: dcim/forms/bulk_edit.py:837 templates/dcim/virtualchassis.html:23 msgid "Domain" msgstr "Doména" -#: netbox/dcim/forms/bulk_edit.py:905 netbox/dcim/forms/bulk_import.py:1345 -#: netbox/dcim/forms/filtersets.py:1158 netbox/dcim/forms/model_forms.py:750 +#: dcim/forms/bulk_edit.py:905 dcim/forms/bulk_import.py:1345 +#: dcim/forms/filtersets.py:1158 dcim/forms/model_forms.py:750 msgid "Power panel" msgstr "Napájecí panel" -#: netbox/dcim/forms/bulk_edit.py:927 netbox/dcim/forms/bulk_import.py:1381 -#: netbox/dcim/forms/filtersets.py:1180 -#: netbox/templates/dcim/powerfeed.html:83 +#: dcim/forms/bulk_edit.py:927 dcim/forms/bulk_import.py:1381 +#: dcim/forms/filtersets.py:1180 templates/dcim/powerfeed.html:83 msgid "Supply" msgstr "Zdroj" -#: netbox/dcim/forms/bulk_edit.py:933 netbox/dcim/forms/bulk_import.py:1386 -#: netbox/dcim/forms/filtersets.py:1185 -#: netbox/templates/dcim/powerfeed.html:95 +#: dcim/forms/bulk_edit.py:933 dcim/forms/bulk_import.py:1386 +#: dcim/forms/filtersets.py:1185 templates/dcim/powerfeed.html:95 msgid "Phase" msgstr "Fáze" -#: netbox/dcim/forms/bulk_edit.py:939 netbox/dcim/forms/filtersets.py:1190 -#: netbox/templates/dcim/powerfeed.html:87 +#: dcim/forms/bulk_edit.py:939 dcim/forms/filtersets.py:1190 +#: templates/dcim/powerfeed.html:87 msgid "Voltage" msgstr "Napětí" -#: netbox/dcim/forms/bulk_edit.py:943 netbox/dcim/forms/filtersets.py:1194 -#: netbox/templates/dcim/powerfeed.html:91 +#: dcim/forms/bulk_edit.py:943 dcim/forms/filtersets.py:1194 +#: templates/dcim/powerfeed.html:91 msgid "Amperage" msgstr "Proud" -#: netbox/dcim/forms/bulk_edit.py:947 netbox/dcim/forms/filtersets.py:1198 +#: dcim/forms/bulk_edit.py:947 dcim/forms/filtersets.py:1198 msgid "Max utilization" msgstr "Maximální využití" -#: netbox/dcim/forms/bulk_edit.py:1036 +#: dcim/forms/bulk_edit.py:1036 msgid "Maximum draw" msgstr "Maximální příkon" -#: netbox/dcim/forms/bulk_edit.py:1039 -#: netbox/dcim/models/device_component_templates.py:282 -#: netbox/dcim/models/device_components.py:356 +#: dcim/forms/bulk_edit.py:1039 dcim/models/device_component_templates.py:282 +#: dcim/models/device_components.py:356 msgid "Maximum power draw (watts)" msgstr "Maximální příkon (W)" -#: netbox/dcim/forms/bulk_edit.py:1042 +#: dcim/forms/bulk_edit.py:1042 msgid "Allocated draw" msgstr "Přidělený příkon" -#: netbox/dcim/forms/bulk_edit.py:1045 -#: netbox/dcim/models/device_component_templates.py:289 -#: netbox/dcim/models/device_components.py:363 +#: dcim/forms/bulk_edit.py:1045 dcim/models/device_component_templates.py:289 +#: dcim/models/device_components.py:363 msgid "Allocated power draw (watts)" msgstr "Přidělený příkon (W)" -#: netbox/dcim/forms/bulk_edit.py:1078 netbox/dcim/forms/bulk_import.py:786 -#: netbox/dcim/forms/model_forms.py:953 netbox/dcim/forms/model_forms.py:1278 -#: netbox/dcim/forms/model_forms.py:1567 netbox/dcim/forms/object_import.py:55 +#: dcim/forms/bulk_edit.py:1078 dcim/forms/bulk_import.py:786 +#: dcim/forms/model_forms.py:953 dcim/forms/model_forms.py:1278 +#: dcim/forms/model_forms.py:1567 dcim/forms/object_import.py:55 msgid "Power port" msgstr "Napájecí port" -#: netbox/dcim/forms/bulk_edit.py:1083 netbox/dcim/forms/bulk_import.py:793 +#: dcim/forms/bulk_edit.py:1083 dcim/forms/bulk_import.py:793 msgid "Feed leg" msgstr "Napájecí větev" -#: netbox/dcim/forms/bulk_edit.py:1129 netbox/dcim/forms/bulk_edit.py:1440 +#: dcim/forms/bulk_edit.py:1129 dcim/forms/bulk_edit.py:1440 msgid "Management only" msgstr "Pouze správa" -#: netbox/dcim/forms/bulk_edit.py:1139 netbox/dcim/forms/bulk_edit.py:1446 -#: netbox/dcim/forms/bulk_import.py:876 netbox/dcim/forms/filtersets.py:1394 -#: netbox/dcim/forms/object_import.py:90 -#: netbox/dcim/models/device_component_templates.py:437 -#: netbox/dcim/models/device_components.py:670 +#: dcim/forms/bulk_edit.py:1139 dcim/forms/bulk_edit.py:1446 +#: dcim/forms/bulk_import.py:876 dcim/forms/filtersets.py:1394 +#: dcim/forms/object_import.py:90 +#: dcim/models/device_component_templates.py:437 +#: dcim/models/device_components.py:670 msgid "PoE mode" msgstr "Režim PoE" -#: netbox/dcim/forms/bulk_edit.py:1145 netbox/dcim/forms/bulk_edit.py:1452 -#: netbox/dcim/forms/bulk_import.py:882 netbox/dcim/forms/filtersets.py:1399 -#: netbox/dcim/forms/object_import.py:95 -#: netbox/dcim/models/device_component_templates.py:443 -#: netbox/dcim/models/device_components.py:676 +#: dcim/forms/bulk_edit.py:1145 dcim/forms/bulk_edit.py:1452 +#: dcim/forms/bulk_import.py:882 dcim/forms/filtersets.py:1399 +#: dcim/forms/object_import.py:95 +#: dcim/models/device_component_templates.py:443 +#: dcim/models/device_components.py:676 msgid "PoE type" msgstr "Typ PoE" -#: netbox/dcim/forms/bulk_edit.py:1151 netbox/dcim/forms/filtersets.py:1404 -#: netbox/dcim/forms/object_import.py:100 +#: dcim/forms/bulk_edit.py:1151 dcim/forms/filtersets.py:1404 +#: dcim/forms/object_import.py:100 msgid "Wireless role" msgstr "Bezdrátová role" -#: netbox/dcim/forms/bulk_edit.py:1288 netbox/dcim/forms/model_forms.py:669 -#: netbox/dcim/forms/model_forms.py:1223 netbox/dcim/tables/devices.py:313 -#: netbox/templates/dcim/consoleport.html:24 -#: netbox/templates/dcim/consoleserverport.html:24 -#: netbox/templates/dcim/frontport.html:24 -#: netbox/templates/dcim/interface.html:34 -#: netbox/templates/dcim/module.html:54 -#: netbox/templates/dcim/modulebay.html:26 -#: netbox/templates/dcim/modulebay.html:58 -#: netbox/templates/dcim/poweroutlet.html:24 -#: netbox/templates/dcim/powerport.html:24 -#: netbox/templates/dcim/rearport.html:24 +#: dcim/forms/bulk_edit.py:1288 dcim/forms/model_forms.py:669 +#: dcim/forms/model_forms.py:1223 dcim/tables/devices.py:313 +#: templates/dcim/consoleport.html:24 templates/dcim/consoleserverport.html:24 +#: templates/dcim/frontport.html:24 templates/dcim/interface.html:34 +#: templates/dcim/module.html:54 templates/dcim/modulebay.html:26 +#: templates/dcim/modulebay.html:58 templates/dcim/poweroutlet.html:24 +#: templates/dcim/powerport.html:24 templates/dcim/rearport.html:24 msgid "Module" msgstr "Modul" -#: netbox/dcim/forms/bulk_edit.py:1420 netbox/dcim/tables/devices.py:665 -#: netbox/templates/dcim/interface.html:110 +#: dcim/forms/bulk_edit.py:1420 dcim/tables/devices.py:665 +#: templates/dcim/interface.html:110 msgid "LAG" msgstr "Agregační skupina" -#: netbox/dcim/forms/bulk_edit.py:1425 netbox/dcim/forms/model_forms.py:1305 +#: dcim/forms/bulk_edit.py:1425 dcim/forms/model_forms.py:1305 msgid "Virtual device contexts" msgstr "Kontexty virtuálních zařízení" -#: netbox/dcim/forms/bulk_edit.py:1431 netbox/dcim/forms/bulk_import.py:714 -#: netbox/dcim/forms/bulk_import.py:740 netbox/dcim/forms/filtersets.py:1252 -#: netbox/dcim/forms/filtersets.py:1277 netbox/dcim/forms/filtersets.py:1358 -#: netbox/dcim/tables/devices.py:610 -#: netbox/templates/circuits/inc/circuit_termination_fields.html:67 -#: netbox/templates/dcim/consoleport.html:40 -#: netbox/templates/dcim/consoleserverport.html:40 +#: dcim/forms/bulk_edit.py:1431 dcim/forms/bulk_import.py:714 +#: dcim/forms/bulk_import.py:740 dcim/forms/filtersets.py:1252 +#: dcim/forms/filtersets.py:1277 dcim/forms/filtersets.py:1358 +#: dcim/tables/devices.py:610 +#: templates/circuits/inc/circuit_termination_fields.html:67 +#: templates/dcim/consoleport.html:40 templates/dcim/consoleserverport.html:40 msgid "Speed" msgstr "Rychlost" -#: netbox/dcim/forms/bulk_edit.py:1460 netbox/dcim/forms/bulk_import.py:885 -#: netbox/templates/vpn/ikepolicy.html:25 -#: netbox/templates/vpn/ipsecprofile.html:21 -#: netbox/templates/vpn/ipsecprofile.html:48 -#: netbox/virtualization/forms/bulk_edit.py:233 -#: netbox/virtualization/forms/bulk_import.py:165 -#: netbox/vpn/forms/bulk_edit.py:146 netbox/vpn/forms/bulk_edit.py:232 -#: netbox/vpn/forms/bulk_import.py:176 netbox/vpn/forms/bulk_import.py:234 -#: netbox/vpn/forms/filtersets.py:135 netbox/vpn/forms/filtersets.py:178 -#: netbox/vpn/forms/filtersets.py:192 netbox/vpn/tables/crypto.py:64 -#: netbox/vpn/tables/crypto.py:162 +#: dcim/forms/bulk_edit.py:1460 dcim/forms/bulk_import.py:885 +#: templates/vpn/ikepolicy.html:25 templates/vpn/ipsecprofile.html:21 +#: templates/vpn/ipsecprofile.html:48 virtualization/forms/bulk_edit.py:233 +#: virtualization/forms/bulk_import.py:165 vpn/forms/bulk_edit.py:146 +#: vpn/forms/bulk_edit.py:232 vpn/forms/bulk_import.py:176 +#: vpn/forms/bulk_import.py:234 vpn/forms/filtersets.py:135 +#: vpn/forms/filtersets.py:178 vpn/forms/filtersets.py:192 +#: vpn/tables/crypto.py:64 vpn/tables/crypto.py:162 msgid "Mode" msgstr "Režim" -#: netbox/dcim/forms/bulk_edit.py:1468 netbox/dcim/forms/model_forms.py:1354 -#: netbox/ipam/forms/bulk_import.py:178 netbox/ipam/forms/filtersets.py:498 -#: netbox/ipam/models/vlans.py:84 netbox/virtualization/forms/bulk_edit.py:240 -#: netbox/virtualization/forms/model_forms.py:321 +#: dcim/forms/bulk_edit.py:1468 dcim/forms/model_forms.py:1354 +#: ipam/forms/bulk_import.py:178 ipam/forms/filtersets.py:498 +#: ipam/models/vlans.py:84 virtualization/forms/bulk_edit.py:240 +#: virtualization/forms/model_forms.py:321 msgid "VLAN group" msgstr "Skupina VLAN" -#: netbox/dcim/forms/bulk_edit.py:1476 netbox/dcim/forms/model_forms.py:1360 -#: netbox/dcim/tables/devices.py:579 -#: netbox/virtualization/forms/bulk_edit.py:248 -#: netbox/virtualization/forms/model_forms.py:326 +#: dcim/forms/bulk_edit.py:1476 dcim/forms/model_forms.py:1360 +#: dcim/tables/devices.py:579 virtualization/forms/bulk_edit.py:248 +#: virtualization/forms/model_forms.py:326 msgid "Untagged VLAN" msgstr "Neznačené VLAN" -#: netbox/dcim/forms/bulk_edit.py:1484 netbox/dcim/forms/model_forms.py:1369 -#: netbox/dcim/tables/devices.py:585 -#: netbox/virtualization/forms/bulk_edit.py:256 -#: netbox/virtualization/forms/model_forms.py:335 +#: dcim/forms/bulk_edit.py:1484 dcim/forms/model_forms.py:1369 +#: dcim/tables/devices.py:585 virtualization/forms/bulk_edit.py:256 +#: virtualization/forms/model_forms.py:335 msgid "Tagged VLANs" msgstr "Označené VLAN" -#: netbox/dcim/forms/bulk_edit.py:1494 netbox/dcim/forms/model_forms.py:1341 +#: dcim/forms/bulk_edit.py:1494 dcim/forms/model_forms.py:1341 msgid "Wireless LAN group" msgstr "Skupina bezdrátových sítí" -#: netbox/dcim/forms/bulk_edit.py:1499 netbox/dcim/forms/model_forms.py:1346 -#: netbox/dcim/tables/devices.py:619 netbox/netbox/navigation/menu.py:146 -#: netbox/templates/dcim/interface.html:280 -#: netbox/wireless/tables/wirelesslan.py:24 +#: dcim/forms/bulk_edit.py:1499 dcim/forms/model_forms.py:1346 +#: dcim/tables/devices.py:619 netbox/navigation/menu.py:146 +#: templates/dcim/interface.html:280 wireless/tables/wirelesslan.py:24 msgid "Wireless LANs" msgstr "Bezdrátové LAN sítě" -#: netbox/dcim/forms/bulk_edit.py:1508 netbox/dcim/forms/filtersets.py:1328 -#: netbox/dcim/forms/model_forms.py:1390 netbox/ipam/forms/bulk_edit.py:285 -#: netbox/ipam/forms/bulk_edit.py:377 netbox/ipam/forms/filtersets.py:169 -#: netbox/templates/dcim/interface.html:122 -#: netbox/templates/ipam/prefix.html:95 -#: netbox/virtualization/forms/model_forms.py:349 +#: dcim/forms/bulk_edit.py:1508 dcim/forms/filtersets.py:1328 +#: dcim/forms/model_forms.py:1390 ipam/forms/bulk_edit.py:286 +#: ipam/forms/bulk_edit.py:378 ipam/forms/filtersets.py:169 +#: templates/dcim/interface.html:122 templates/ipam/prefix.html:95 +#: virtualization/forms/model_forms.py:349 msgid "Addressing" msgstr "Adresování" -#: netbox/dcim/forms/bulk_edit.py:1509 netbox/dcim/forms/filtersets.py:720 -#: netbox/dcim/forms/model_forms.py:1391 -#: netbox/virtualization/forms/model_forms.py:350 +#: dcim/forms/bulk_edit.py:1509 dcim/forms/filtersets.py:720 +#: dcim/forms/model_forms.py:1391 virtualization/forms/model_forms.py:350 msgid "Operation" msgstr "Operace" -#: netbox/dcim/forms/bulk_edit.py:1510 netbox/dcim/forms/filtersets.py:1329 -#: netbox/dcim/forms/model_forms.py:987 netbox/dcim/forms/model_forms.py:1393 +#: dcim/forms/bulk_edit.py:1510 dcim/forms/filtersets.py:1329 +#: dcim/forms/model_forms.py:987 dcim/forms/model_forms.py:1393 msgid "PoE" msgstr "PoE" -#: netbox/dcim/forms/bulk_edit.py:1511 netbox/dcim/forms/model_forms.py:1392 -#: netbox/templates/dcim/interface.html:99 -#: netbox/virtualization/forms/bulk_edit.py:267 -#: netbox/virtualization/forms/model_forms.py:351 +#: dcim/forms/bulk_edit.py:1511 dcim/forms/model_forms.py:1392 +#: templates/dcim/interface.html:99 virtualization/forms/bulk_edit.py:267 +#: virtualization/forms/model_forms.py:351 msgid "Related Interfaces" msgstr "Související rozhraní" -#: netbox/dcim/forms/bulk_edit.py:1512 netbox/dcim/forms/model_forms.py:1394 -#: netbox/virtualization/forms/bulk_edit.py:268 -#: netbox/virtualization/forms/model_forms.py:352 +#: dcim/forms/bulk_edit.py:1512 dcim/forms/model_forms.py:1394 +#: virtualization/forms/bulk_edit.py:268 +#: virtualization/forms/model_forms.py:352 msgid "802.1Q Switching" msgstr "Přepínání 802.1Q" -#: netbox/dcim/forms/bulk_edit.py:1574 netbox/dcim/forms/bulk_edit.py:1576 +#: dcim/forms/bulk_edit.py:1574 dcim/forms/bulk_edit.py:1576 msgid "Interface mode must be specified to assign VLANs" msgstr "Pro přiřazení sítí VLAN musí být zadán režim rozhraní" -#: netbox/dcim/forms/bulk_edit.py:1581 netbox/dcim/forms/common.py:50 +#: dcim/forms/bulk_edit.py:1581 dcim/forms/common.py:50 msgid "An access interface cannot have tagged VLANs assigned." msgstr "Přístupovému rozhraní nelze přiřadit označené sítě VLAN." -#: netbox/dcim/forms/bulk_import.py:64 +#: dcim/forms/bulk_import.py:64 msgid "Name of parent region" msgstr "Název nadřazené oblasti" -#: netbox/dcim/forms/bulk_import.py:78 +#: dcim/forms/bulk_import.py:78 msgid "Name of parent site group" msgstr "Název nadřazené skupiny webů" -#: netbox/dcim/forms/bulk_import.py:97 +#: dcim/forms/bulk_import.py:97 msgid "Assigned region" msgstr "Přiřazená oblast" -#: netbox/dcim/forms/bulk_import.py:104 netbox/tenancy/forms/bulk_import.py:44 -#: netbox/tenancy/forms/bulk_import.py:85 -#: netbox/wireless/forms/bulk_import.py:40 +#: dcim/forms/bulk_import.py:104 tenancy/forms/bulk_import.py:44 +#: tenancy/forms/bulk_import.py:85 wireless/forms/bulk_import.py:40 msgid "Assigned group" msgstr "Přiřazená skupina" -#: netbox/dcim/forms/bulk_import.py:123 +#: dcim/forms/bulk_import.py:123 msgid "available options" msgstr "dostupné možnosti" -#: netbox/dcim/forms/bulk_import.py:134 netbox/dcim/forms/bulk_import.py:543 -#: netbox/dcim/forms/bulk_import.py:1342 netbox/ipam/forms/bulk_import.py:175 -#: netbox/ipam/forms/bulk_import.py:433 -#: netbox/virtualization/forms/bulk_import.py:63 -#: netbox/virtualization/forms/bulk_import.py:89 +#: dcim/forms/bulk_import.py:134 dcim/forms/bulk_import.py:543 +#: dcim/forms/bulk_import.py:1342 ipam/forms/bulk_import.py:175 +#: ipam/forms/bulk_import.py:433 virtualization/forms/bulk_import.py:63 +#: virtualization/forms/bulk_import.py:89 msgid "Assigned site" msgstr "Přiřazené místo" -#: netbox/dcim/forms/bulk_import.py:141 +#: dcim/forms/bulk_import.py:141 msgid "Parent location" msgstr "Rodičovská lokalita" -#: netbox/dcim/forms/bulk_import.py:143 +#: dcim/forms/bulk_import.py:143 msgid "Location not found." msgstr "Místo nenalezeno." -#: netbox/dcim/forms/bulk_import.py:185 +#: dcim/forms/bulk_import.py:185 msgid "The manufacturer of this rack type" msgstr "Výrobce tohoto typu stojanu" -#: netbox/dcim/forms/bulk_import.py:196 +#: dcim/forms/bulk_import.py:196 msgid "The lowest-numbered position in the rack" msgstr "Nejnižší očíslovaná pozice v regálu" -#: netbox/dcim/forms/bulk_import.py:201 netbox/dcim/forms/bulk_import.py:268 +#: dcim/forms/bulk_import.py:201 dcim/forms/bulk_import.py:268 msgid "Rail-to-rail width (in inches)" msgstr "Šířka kolejnice k kolejnici (v palcích)" -#: netbox/dcim/forms/bulk_import.py:207 netbox/dcim/forms/bulk_import.py:274 +#: dcim/forms/bulk_import.py:207 dcim/forms/bulk_import.py:274 msgid "Unit for outer dimensions" msgstr "Jednotka pro vnější rozměry" -#: netbox/dcim/forms/bulk_import.py:213 netbox/dcim/forms/bulk_import.py:286 +#: dcim/forms/bulk_import.py:213 dcim/forms/bulk_import.py:286 msgid "Unit for rack weights" msgstr "Jednotka pro regálové závaží" -#: netbox/dcim/forms/bulk_import.py:245 +#: dcim/forms/bulk_import.py:245 msgid "Name of assigned tenant" msgstr "Jméno přiděleného nájemce" -#: netbox/dcim/forms/bulk_import.py:257 +#: dcim/forms/bulk_import.py:257 msgid "Name of assigned role" msgstr "Název přiřazené role" -#: netbox/dcim/forms/bulk_import.py:280 netbox/dcim/forms/bulk_import.py:413 -#: netbox/dcim/forms/bulk_import.py:583 +#: dcim/forms/bulk_import.py:280 dcim/forms/bulk_import.py:413 +#: dcim/forms/bulk_import.py:583 msgid "Airflow direction" msgstr "Směr proudění vzduchu" -#: netbox/dcim/forms/bulk_import.py:312 +#: dcim/forms/bulk_import.py:312 msgid "Parent site" msgstr "Nadřazený web" -#: netbox/dcim/forms/bulk_import.py:319 netbox/dcim/forms/bulk_import.py:1355 +#: dcim/forms/bulk_import.py:319 dcim/forms/bulk_import.py:1355 msgid "Rack's location (if any)" msgstr "Umístění stojanu (pokud existuje)" -#: netbox/dcim/forms/bulk_import.py:328 netbox/dcim/forms/model_forms.py:311 -#: netbox/dcim/tables/racks.py:222 -#: netbox/templates/dcim/rackreservation.html:12 -#: netbox/templates/dcim/rackreservation.html:45 +#: dcim/forms/bulk_import.py:328 dcim/forms/model_forms.py:311 +#: dcim/tables/racks.py:222 templates/dcim/rackreservation.html:12 +#: templates/dcim/rackreservation.html:45 msgid "Units" msgstr "Jednotky" -#: netbox/dcim/forms/bulk_import.py:331 +#: dcim/forms/bulk_import.py:331 msgid "Comma-separated list of individual unit numbers" msgstr "Seznam jednotlivých čísel jednotek oddělených čárkami" -#: netbox/dcim/forms/bulk_import.py:374 +#: dcim/forms/bulk_import.py:374 msgid "The manufacturer which produces this device type" msgstr "Výrobce, který vyrábí tento typ zařízení" -#: netbox/dcim/forms/bulk_import.py:381 +#: dcim/forms/bulk_import.py:381 msgid "The default platform for devices of this type (optional)" msgstr "Výchozí platforma pro zařízení tohoto typu (volitelné)" -#: netbox/dcim/forms/bulk_import.py:386 +#: dcim/forms/bulk_import.py:386 msgid "Device weight" msgstr "Hmotnost zařízení" -#: netbox/dcim/forms/bulk_import.py:392 +#: dcim/forms/bulk_import.py:392 msgid "Unit for device weight" msgstr "Jednotka pro hmotnost zařízení" -#: netbox/dcim/forms/bulk_import.py:418 +#: dcim/forms/bulk_import.py:418 msgid "Module weight" msgstr "Hmotnost modulu" -#: netbox/dcim/forms/bulk_import.py:424 +#: dcim/forms/bulk_import.py:424 msgid "Unit for module weight" msgstr "Jednotka pro hmotnost modulu" -#: netbox/dcim/forms/bulk_import.py:454 +#: dcim/forms/bulk_import.py:454 msgid "Limit platform assignments to this manufacturer" msgstr "Omezte přiřazení platformy tomuto výrobci" -#: netbox/dcim/forms/bulk_import.py:476 netbox/dcim/forms/bulk_import.py:1425 -#: netbox/tenancy/forms/bulk_import.py:106 +#: dcim/forms/bulk_import.py:476 dcim/forms/bulk_import.py:1425 +#: tenancy/forms/bulk_import.py:106 msgid "Assigned role" msgstr "Přidělená role" -#: netbox/dcim/forms/bulk_import.py:489 +#: dcim/forms/bulk_import.py:489 msgid "Device type manufacturer" msgstr "Výrobce typu zařízení" -#: netbox/dcim/forms/bulk_import.py:495 +#: dcim/forms/bulk_import.py:495 msgid "Device type model" msgstr "Model typu zařízení" -#: netbox/dcim/forms/bulk_import.py:502 -#: netbox/virtualization/forms/bulk_import.py:126 +#: dcim/forms/bulk_import.py:502 virtualization/forms/bulk_import.py:126 msgid "Assigned platform" msgstr "Přiřazená platforma" -#: netbox/dcim/forms/bulk_import.py:510 netbox/dcim/forms/bulk_import.py:514 -#: netbox/dcim/forms/model_forms.py:536 +#: dcim/forms/bulk_import.py:510 dcim/forms/bulk_import.py:514 +#: dcim/forms/model_forms.py:536 msgid "Virtual chassis" msgstr "Virtuální podvozek" -#: netbox/dcim/forms/bulk_import.py:517 netbox/dcim/forms/filtersets.py:728 -#: netbox/dcim/forms/filtersets.py:898 netbox/dcim/forms/model_forms.py:522 -#: netbox/dcim/tables/devices.py:202 netbox/extras/filtersets.py:596 -#: netbox/extras/forms/filtersets.py:322 netbox/ipam/forms/bulk_edit.py:482 -#: netbox/ipam/forms/filtersets.py:415 netbox/ipam/forms/filtersets.py:447 -#: netbox/templates/dcim/device.html:239 -#: netbox/templates/virtualization/cluster.html:10 -#: netbox/templates/virtualization/virtualmachine.html:92 -#: netbox/templates/virtualization/virtualmachine.html:101 -#: netbox/virtualization/filtersets.py:157 -#: netbox/virtualization/filtersets.py:277 -#: netbox/virtualization/forms/bulk_edit.py:129 -#: netbox/virtualization/forms/bulk_import.py:92 -#: netbox/virtualization/forms/filtersets.py:99 -#: netbox/virtualization/forms/filtersets.py:123 -#: netbox/virtualization/forms/filtersets.py:204 -#: netbox/virtualization/forms/model_forms.py:79 -#: netbox/virtualization/forms/model_forms.py:176 -#: netbox/virtualization/tables/virtualmachines.py:67 +#: dcim/forms/bulk_import.py:517 dcim/forms/filtersets.py:728 +#: dcim/forms/filtersets.py:898 dcim/forms/model_forms.py:522 +#: dcim/tables/devices.py:202 extras/filtersets.py:596 +#: extras/forms/filtersets.py:322 ipam/forms/filtersets.py:415 +#: ipam/forms/filtersets.py:447 templates/dcim/device.html:239 +#: templates/virtualization/cluster.html:10 +#: templates/virtualization/virtualmachine.html:92 +#: templates/virtualization/virtualmachine.html:101 +#: virtualization/filtersets.py:157 virtualization/filtersets.py:277 +#: virtualization/forms/bulk_edit.py:129 +#: virtualization/forms/bulk_import.py:92 +#: virtualization/forms/filtersets.py:99 +#: virtualization/forms/filtersets.py:123 +#: virtualization/forms/filtersets.py:204 +#: virtualization/forms/model_forms.py:79 +#: virtualization/forms/model_forms.py:176 +#: virtualization/tables/virtualmachines.py:67 msgid "Cluster" msgstr "Klastr" -#: netbox/dcim/forms/bulk_import.py:521 +#: dcim/forms/bulk_import.py:521 msgid "Virtualization cluster" msgstr "Virtualizační klastr" -#: netbox/dcim/forms/bulk_import.py:550 +#: dcim/forms/bulk_import.py:550 msgid "Assigned location (if any)" msgstr "Přiřazené umístění (pokud existuje)" -#: netbox/dcim/forms/bulk_import.py:557 +#: dcim/forms/bulk_import.py:557 msgid "Assigned rack (if any)" msgstr "Přiřazený stojan (pokud existuje)" -#: netbox/dcim/forms/bulk_import.py:560 +#: dcim/forms/bulk_import.py:560 msgid "Face" msgstr "Tvář" -#: netbox/dcim/forms/bulk_import.py:563 +#: dcim/forms/bulk_import.py:563 msgid "Mounted rack face" msgstr "Namontovaná plocha stojanu" -#: netbox/dcim/forms/bulk_import.py:570 +#: dcim/forms/bulk_import.py:570 msgid "Parent device (for child devices)" msgstr "Rodičovské zařízení (pro podřízená zařízení)" -#: netbox/dcim/forms/bulk_import.py:573 +#: dcim/forms/bulk_import.py:573 msgid "Device bay" msgstr "Místo pro zařízení" -#: netbox/dcim/forms/bulk_import.py:577 +#: dcim/forms/bulk_import.py:577 msgid "Device bay in which this device is installed (for child devices)" msgstr "" "Místo pro zařízení, ve kterém je toto zařízení nainstalováno (pro podřízená " "zařízení)" -#: netbox/dcim/forms/bulk_import.py:644 +#: dcim/forms/bulk_import.py:644 msgid "The device in which this module is installed" msgstr "Zařízení, ve kterém je tento modul nainstalován" -#: netbox/dcim/forms/bulk_import.py:647 netbox/dcim/forms/model_forms.py:640 +#: dcim/forms/bulk_import.py:647 dcim/forms/model_forms.py:640 msgid "Module bay" msgstr "Modulová přihrádka" -#: netbox/dcim/forms/bulk_import.py:650 +#: dcim/forms/bulk_import.py:650 msgid "The module bay in which this module is installed" msgstr "Místo modulu, ve kterém je tento modul nainstalován" -#: netbox/dcim/forms/bulk_import.py:656 +#: dcim/forms/bulk_import.py:656 msgid "The type of module" msgstr "Typ modulu" -#: netbox/dcim/forms/bulk_import.py:664 netbox/dcim/forms/model_forms.py:656 +#: dcim/forms/bulk_import.py:664 dcim/forms/model_forms.py:656 msgid "Replicate components" msgstr "Replikace komponent" -#: netbox/dcim/forms/bulk_import.py:666 +#: dcim/forms/bulk_import.py:666 msgid "" "Automatically populate components associated with this module type (enabled " "by default)" @@ -4331,269 +3938,262 @@ msgstr "" "Automaticky naplnit komponenty přidružené k tomuto typu modulu (ve výchozím " "nastavení povoleno)" -#: netbox/dcim/forms/bulk_import.py:669 netbox/dcim/forms/model_forms.py:662 +#: dcim/forms/bulk_import.py:669 dcim/forms/model_forms.py:662 msgid "Adopt components" msgstr "Přijměte komponenty" -#: netbox/dcim/forms/bulk_import.py:671 netbox/dcim/forms/model_forms.py:665 +#: dcim/forms/bulk_import.py:671 dcim/forms/model_forms.py:665 msgid "Adopt already existing components" msgstr "Přijměte již existující komponenty" -#: netbox/dcim/forms/bulk_import.py:711 netbox/dcim/forms/bulk_import.py:737 -#: netbox/dcim/forms/bulk_import.py:763 +#: dcim/forms/bulk_import.py:711 dcim/forms/bulk_import.py:737 +#: dcim/forms/bulk_import.py:763 msgid "Port type" msgstr "Typ portu" -#: netbox/dcim/forms/bulk_import.py:719 netbox/dcim/forms/bulk_import.py:745 +#: dcim/forms/bulk_import.py:719 dcim/forms/bulk_import.py:745 msgid "Port speed in bps" msgstr "Rychlost portu v bps" -#: netbox/dcim/forms/bulk_import.py:783 +#: dcim/forms/bulk_import.py:783 msgid "Outlet type" msgstr "Typ výstupu" -#: netbox/dcim/forms/bulk_import.py:790 +#: dcim/forms/bulk_import.py:790 msgid "Local power port which feeds this outlet" msgstr "Místní napájecí port, který napájí tuto zásuvku" -#: netbox/dcim/forms/bulk_import.py:796 +#: dcim/forms/bulk_import.py:796 msgid "Electrical phase (for three-phase circuits)" msgstr "Elektrická fáze (pro třífázové obvody)" -#: netbox/dcim/forms/bulk_import.py:837 netbox/dcim/forms/model_forms.py:1316 -#: netbox/virtualization/forms/bulk_import.py:155 -#: netbox/virtualization/forms/model_forms.py:305 +#: dcim/forms/bulk_import.py:837 dcim/forms/model_forms.py:1316 +#: virtualization/forms/bulk_import.py:155 +#: virtualization/forms/model_forms.py:305 msgid "Parent interface" msgstr "Nadřazené rozhraní" -#: netbox/dcim/forms/bulk_import.py:844 netbox/dcim/forms/model_forms.py:1324 -#: netbox/virtualization/forms/bulk_import.py:162 -#: netbox/virtualization/forms/model_forms.py:313 +#: dcim/forms/bulk_import.py:844 dcim/forms/model_forms.py:1324 +#: virtualization/forms/bulk_import.py:162 +#: virtualization/forms/model_forms.py:313 msgid "Bridged interface" msgstr "Přemostěné rozhraní" -#: netbox/dcim/forms/bulk_import.py:847 +#: dcim/forms/bulk_import.py:847 msgid "Lag" msgstr "Zpoždění" -#: netbox/dcim/forms/bulk_import.py:851 +#: dcim/forms/bulk_import.py:851 msgid "Parent LAG interface" msgstr "Nadřazené rozhraní LAG" -#: netbox/dcim/forms/bulk_import.py:854 +#: dcim/forms/bulk_import.py:854 msgid "Vdcs" msgstr "Vdcs" -#: netbox/dcim/forms/bulk_import.py:859 +#: dcim/forms/bulk_import.py:859 msgid "VDC names separated by commas, encased with double quotes. Example:" msgstr "Názvy VDC oddělené čárkami, uzavřené dvojitými uvozovkami. Příklad:" -#: netbox/dcim/forms/bulk_import.py:865 +#: dcim/forms/bulk_import.py:865 msgid "Physical medium" msgstr "Fyzické médium" -#: netbox/dcim/forms/bulk_import.py:868 netbox/dcim/forms/filtersets.py:1365 +#: dcim/forms/bulk_import.py:868 dcim/forms/filtersets.py:1365 msgid "Duplex" msgstr "Dvoupodlažní" -#: netbox/dcim/forms/bulk_import.py:873 +#: dcim/forms/bulk_import.py:873 msgid "Poe mode" msgstr "Režim Poe" -#: netbox/dcim/forms/bulk_import.py:879 +#: dcim/forms/bulk_import.py:879 msgid "Poe type" msgstr "Typ Poe" -#: netbox/dcim/forms/bulk_import.py:888 -#: netbox/virtualization/forms/bulk_import.py:168 +#: dcim/forms/bulk_import.py:888 virtualization/forms/bulk_import.py:168 msgid "IEEE 802.1Q operational mode (for L2 interfaces)" msgstr "Provozní režim IEEE 802.1Q (pro rozhraní L2)" -#: netbox/dcim/forms/bulk_import.py:895 netbox/ipam/forms/bulk_import.py:161 -#: netbox/ipam/forms/bulk_import.py:247 netbox/ipam/forms/bulk_import.py:283 -#: netbox/ipam/forms/filtersets.py:201 netbox/ipam/forms/filtersets.py:277 -#: netbox/ipam/forms/filtersets.py:336 -#: netbox/virtualization/forms/bulk_import.py:175 +#: dcim/forms/bulk_import.py:895 ipam/forms/bulk_import.py:161 +#: ipam/forms/bulk_import.py:247 ipam/forms/bulk_import.py:283 +#: ipam/forms/filtersets.py:201 ipam/forms/filtersets.py:277 +#: ipam/forms/filtersets.py:336 virtualization/forms/bulk_import.py:175 msgid "Assigned VRF" msgstr "Přiřazené VRF" -#: netbox/dcim/forms/bulk_import.py:898 +#: dcim/forms/bulk_import.py:898 msgid "Rf role" msgstr "Rf role" -#: netbox/dcim/forms/bulk_import.py:901 +#: dcim/forms/bulk_import.py:901 msgid "Wireless role (AP/station)" msgstr "Bezdrátová role (AP/stanice)" -#: netbox/dcim/forms/bulk_import.py:937 +#: dcim/forms/bulk_import.py:937 #, python-brace-format msgid "VDC {vdc} is not assigned to device {device}" msgstr "VDC {vdc} není přiřazen k zařízení {device}" -#: netbox/dcim/forms/bulk_import.py:951 netbox/dcim/forms/model_forms.py:1000 -#: netbox/dcim/forms/model_forms.py:1575 -#: netbox/dcim/forms/object_import.py:117 +#: dcim/forms/bulk_import.py:951 dcim/forms/model_forms.py:1000 +#: dcim/forms/model_forms.py:1575 dcim/forms/object_import.py:117 msgid "Rear port" msgstr "Zadní port" -#: netbox/dcim/forms/bulk_import.py:954 +#: dcim/forms/bulk_import.py:954 msgid "Corresponding rear port" msgstr "Odpovídající zadní port" -#: netbox/dcim/forms/bulk_import.py:959 netbox/dcim/forms/bulk_import.py:1000 -#: netbox/dcim/forms/bulk_import.py:1216 +#: dcim/forms/bulk_import.py:959 dcim/forms/bulk_import.py:1000 +#: dcim/forms/bulk_import.py:1216 msgid "Physical medium classification" msgstr "Klasifikace fyzického média" -#: netbox/dcim/forms/bulk_import.py:1028 netbox/dcim/tables/devices.py:822 +#: dcim/forms/bulk_import.py:1028 dcim/tables/devices.py:822 msgid "Installed device" msgstr "Nainstalované zařízení" -#: netbox/dcim/forms/bulk_import.py:1032 +#: dcim/forms/bulk_import.py:1032 msgid "Child device installed within this bay" msgstr "Dětské zařízení instalované v této pozici" -#: netbox/dcim/forms/bulk_import.py:1034 +#: dcim/forms/bulk_import.py:1034 msgid "Child device not found." msgstr "Dětské zařízení nebylo nalezeno." -#: netbox/dcim/forms/bulk_import.py:1092 +#: dcim/forms/bulk_import.py:1092 msgid "Parent inventory item" msgstr "Nadřazená položka inventáře" -#: netbox/dcim/forms/bulk_import.py:1095 +#: dcim/forms/bulk_import.py:1095 msgid "Component type" msgstr "Typ komponenty" -#: netbox/dcim/forms/bulk_import.py:1099 +#: dcim/forms/bulk_import.py:1099 msgid "Component Type" msgstr "Typ komponenty" -#: netbox/dcim/forms/bulk_import.py:1102 +#: dcim/forms/bulk_import.py:1102 msgid "Compnent name" msgstr "Název komponenty" -#: netbox/dcim/forms/bulk_import.py:1104 +#: dcim/forms/bulk_import.py:1104 msgid "Component Name" msgstr "Název komponenty" -#: netbox/dcim/forms/bulk_import.py:1146 +#: dcim/forms/bulk_import.py:1146 #, python-brace-format msgid "Component not found: {device} - {component_name}" msgstr "Komponenta nebyla nalezena: {device} - {component_name}" -#: netbox/dcim/forms/bulk_import.py:1171 +#: dcim/forms/bulk_import.py:1171 msgid "Side A device" msgstr "Zařízení na straně A" -#: netbox/dcim/forms/bulk_import.py:1174 netbox/dcim/forms/bulk_import.py:1192 +#: dcim/forms/bulk_import.py:1174 dcim/forms/bulk_import.py:1192 msgid "Device name" msgstr "Název zařízení" -#: netbox/dcim/forms/bulk_import.py:1177 +#: dcim/forms/bulk_import.py:1177 msgid "Side A type" msgstr "Typ strany A" -#: netbox/dcim/forms/bulk_import.py:1180 netbox/dcim/forms/bulk_import.py:1198 +#: dcim/forms/bulk_import.py:1180 dcim/forms/bulk_import.py:1198 msgid "Termination type" msgstr "Typ ukončení" -#: netbox/dcim/forms/bulk_import.py:1183 +#: dcim/forms/bulk_import.py:1183 msgid "Side A name" msgstr "Jméno strany A" -#: netbox/dcim/forms/bulk_import.py:1184 netbox/dcim/forms/bulk_import.py:1202 +#: dcim/forms/bulk_import.py:1184 dcim/forms/bulk_import.py:1202 msgid "Termination name" msgstr "Název ukončení" -#: netbox/dcim/forms/bulk_import.py:1189 +#: dcim/forms/bulk_import.py:1189 msgid "Side B device" msgstr "Zařízení na straně B" -#: netbox/dcim/forms/bulk_import.py:1195 +#: dcim/forms/bulk_import.py:1195 msgid "Side B type" msgstr "Typ strany B" -#: netbox/dcim/forms/bulk_import.py:1201 +#: dcim/forms/bulk_import.py:1201 msgid "Side B name" msgstr "Název strany B" -#: netbox/dcim/forms/bulk_import.py:1210 -#: netbox/wireless/forms/bulk_import.py:86 +#: dcim/forms/bulk_import.py:1210 wireless/forms/bulk_import.py:86 msgid "Connection status" msgstr "Stav připojení" -#: netbox/dcim/forms/bulk_import.py:1262 +#: dcim/forms/bulk_import.py:1262 #, python-brace-format msgid "Side {side_upper}: {device} {termination_object} is already connected" msgstr "Strana {side_upper}: {device} {termination_object} je již připojeno" -#: netbox/dcim/forms/bulk_import.py:1268 +#: dcim/forms/bulk_import.py:1268 #, python-brace-format msgid "{side_upper} side termination not found: {device} {name}" msgstr "Zakončení strany {side_upper} nebylo nalezeno: {device} {name}" -#: netbox/dcim/forms/bulk_import.py:1293 netbox/dcim/forms/model_forms.py:785 -#: netbox/dcim/tables/devices.py:1027 netbox/templates/dcim/device.html:132 -#: netbox/templates/dcim/virtualchassis.html:27 -#: netbox/templates/dcim/virtualchassis.html:67 +#: dcim/forms/bulk_import.py:1293 dcim/forms/model_forms.py:785 +#: dcim/tables/devices.py:1027 templates/dcim/device.html:132 +#: templates/dcim/virtualchassis.html:27 templates/dcim/virtualchassis.html:67 msgid "Master" msgstr "Hlavní" -#: netbox/dcim/forms/bulk_import.py:1297 +#: dcim/forms/bulk_import.py:1297 msgid "Master device" msgstr "Hlavní zařízení" -#: netbox/dcim/forms/bulk_import.py:1314 +#: dcim/forms/bulk_import.py:1314 msgid "Name of parent site" msgstr "Název nadřazeného webu" -#: netbox/dcim/forms/bulk_import.py:1348 +#: dcim/forms/bulk_import.py:1348 msgid "Upstream power panel" msgstr "Nadřazený napájecí panel" -#: netbox/dcim/forms/bulk_import.py:1378 +#: dcim/forms/bulk_import.py:1378 msgid "Primary or redundant" msgstr "Primární nebo redundantní" -#: netbox/dcim/forms/bulk_import.py:1383 +#: dcim/forms/bulk_import.py:1383 msgid "Supply type (AC/DC)" msgstr "Typ napájení (AC/DC)" -#: netbox/dcim/forms/bulk_import.py:1388 +#: dcim/forms/bulk_import.py:1388 msgid "Single or three-phase" msgstr "Jednofázové nebo třífázové" -#: netbox/dcim/forms/bulk_import.py:1439 netbox/dcim/forms/model_forms.py:1670 -#: netbox/templates/dcim/device.html:190 -#: netbox/templates/dcim/virtualdevicecontext.html:30 -#: netbox/templates/virtualization/virtualmachine.html:52 +#: dcim/forms/bulk_import.py:1439 dcim/forms/model_forms.py:1670 +#: templates/dcim/device.html:190 templates/dcim/virtualdevicecontext.html:30 +#: templates/virtualization/virtualmachine.html:52 msgid "Primary IPv4" msgstr "Primární IPv4" -#: netbox/dcim/forms/bulk_import.py:1443 +#: dcim/forms/bulk_import.py:1443 msgid "IPv4 address with mask, e.g. 1.2.3.4/24" msgstr "IPv4 adresa s maskou, např. 1.2.3.4/24" -#: netbox/dcim/forms/bulk_import.py:1446 netbox/dcim/forms/model_forms.py:1679 -#: netbox/templates/dcim/device.html:206 -#: netbox/templates/dcim/virtualdevicecontext.html:41 -#: netbox/templates/virtualization/virtualmachine.html:68 +#: dcim/forms/bulk_import.py:1446 dcim/forms/model_forms.py:1679 +#: templates/dcim/device.html:206 templates/dcim/virtualdevicecontext.html:41 +#: templates/virtualization/virtualmachine.html:68 msgid "Primary IPv6" msgstr "Primární IPv6" -#: netbox/dcim/forms/bulk_import.py:1450 +#: dcim/forms/bulk_import.py:1450 msgid "IPv6 address with prefix length, e.g. 2001:db8::1/64" msgstr "IPv6 adresa s délkou předpony, např. 2001:db8: :1/64" -#: netbox/dcim/forms/common.py:24 netbox/dcim/models/device_components.py:527 -#: netbox/templates/dcim/interface.html:57 -#: netbox/templates/virtualization/vminterface.html:55 -#: netbox/virtualization/forms/bulk_edit.py:225 +#: dcim/forms/common.py:24 dcim/models/device_components.py:527 +#: templates/dcim/interface.html:57 +#: templates/virtualization/vminterface.html:55 +#: virtualization/forms/bulk_edit.py:225 msgid "MTU" msgstr "MTU" -#: netbox/dcim/forms/common.py:65 +#: dcim/forms/common.py:65 #, python-brace-format msgid "" "The tagged VLANs ({vlans}) must belong to the same site as the interface's " @@ -4602,7 +4202,7 @@ msgstr "" "Označené VLAN ({vlans}) musí patřit ke stejnému webu jako nadřazené " "zařízení/VM rozhraní, nebo musí být globální" -#: netbox/dcim/forms/common.py:126 +#: dcim/forms/common.py:126 msgid "" "Cannot install module with placeholder values in a module bay with no " "position defined." @@ -4610,7 +4210,7 @@ msgstr "" "Nelze nainstalovat modul se zástupnými hodnotami do pozice modulu bez " "definované polohy." -#: netbox/dcim/forms/common.py:131 +#: dcim/forms/common.py:131 #, python-brace-format msgid "" "Cannot install module with placeholder values in a module bay tree {level} " @@ -4619,202 +4219,187 @@ msgstr "" "Nelze nainstalovat modul se zástupnými hodnotami do stromu modulu {level} na" " stromě, ale {tokens} zadané zástupné symboly." -#: netbox/dcim/forms/common.py:144 +#: dcim/forms/common.py:144 #, python-brace-format msgid "Cannot adopt {model} {name} as it already belongs to a module" msgstr "Nelze adoptovat {model} {name}, protože již patří do modulu" -#: netbox/dcim/forms/common.py:153 +#: dcim/forms/common.py:153 #, python-brace-format msgid "A {model} named {name} already exists" msgstr "{model} pojmenovaný {name} již existuje" -#: netbox/dcim/forms/connections.py:49 netbox/dcim/forms/model_forms.py:738 -#: netbox/dcim/tables/power.py:66 -#: netbox/templates/dcim/inc/cable_termination.html:37 -#: netbox/templates/dcim/powerfeed.html:24 -#: netbox/templates/dcim/powerpanel.html:19 -#: netbox/templates/dcim/trace/powerpanel.html:4 +#: dcim/forms/connections.py:49 dcim/forms/model_forms.py:738 +#: dcim/tables/power.py:66 templates/dcim/inc/cable_termination.html:37 +#: templates/dcim/powerfeed.html:24 templates/dcim/powerpanel.html:19 +#: templates/dcim/trace/powerpanel.html:4 msgid "Power Panel" msgstr "Napájecí panel" -#: netbox/dcim/forms/connections.py:58 netbox/dcim/forms/model_forms.py:765 -#: netbox/templates/dcim/powerfeed.html:21 -#: netbox/templates/dcim/powerport.html:80 +#: dcim/forms/connections.py:58 dcim/forms/model_forms.py:765 +#: templates/dcim/powerfeed.html:21 templates/dcim/powerport.html:80 msgid "Power Feed" msgstr "Napájecí zdroj" -#: netbox/dcim/forms/connections.py:81 +#: dcim/forms/connections.py:81 msgid "Side" msgstr "Strana" -#: netbox/dcim/forms/filtersets.py:136 netbox/dcim/tables/devices.py:295 +#: dcim/forms/filtersets.py:136 dcim/tables/devices.py:295 msgid "Device Status" msgstr "Stav zařízení" -#: netbox/dcim/forms/filtersets.py:149 +#: dcim/forms/filtersets.py:149 msgid "Parent region" msgstr "Nadřazená oblast" -#: netbox/dcim/forms/filtersets.py:163 netbox/tenancy/forms/bulk_import.py:28 -#: netbox/tenancy/forms/bulk_import.py:62 -#: netbox/tenancy/forms/filtersets.py:33 netbox/tenancy/forms/filtersets.py:62 -#: netbox/wireless/forms/bulk_import.py:25 -#: netbox/wireless/forms/filtersets.py:25 +#: dcim/forms/filtersets.py:163 tenancy/forms/bulk_import.py:28 +#: tenancy/forms/bulk_import.py:62 tenancy/forms/filtersets.py:33 +#: tenancy/forms/filtersets.py:62 wireless/forms/bulk_import.py:25 +#: wireless/forms/filtersets.py:25 msgid "Parent group" msgstr "Rodičovská skupina" -#: netbox/dcim/forms/filtersets.py:242 netbox/templates/dcim/location.html:58 -#: netbox/templates/dcim/site.html:56 +#: dcim/forms/filtersets.py:242 templates/dcim/location.html:58 +#: templates/dcim/site.html:56 msgid "Facility" msgstr "Zařízení" -#: netbox/dcim/forms/filtersets.py:380 +#: dcim/forms/filtersets.py:380 msgid "Rack type" msgstr "Typ stojanu" -#: netbox/dcim/forms/filtersets.py:397 +#: dcim/forms/filtersets.py:397 msgid "Function" msgstr "Funkce" -#: netbox/dcim/forms/filtersets.py:483 netbox/dcim/forms/model_forms.py:373 -#: netbox/templates/inc/panels/image_attachments.html:6 +#: dcim/forms/filtersets.py:483 dcim/forms/model_forms.py:373 +#: templates/inc/panels/image_attachments.html:6 msgid "Images" msgstr "Obrázky" -#: netbox/dcim/forms/filtersets.py:486 netbox/dcim/forms/filtersets.py:611 -#: netbox/dcim/forms/filtersets.py:726 +#: dcim/forms/filtersets.py:486 dcim/forms/filtersets.py:611 +#: dcim/forms/filtersets.py:726 msgid "Components" msgstr "Komponenty" -#: netbox/dcim/forms/filtersets.py:506 +#: dcim/forms/filtersets.py:506 msgid "Subdevice role" msgstr "Role dílčího zařízení" -#: netbox/dcim/forms/filtersets.py:790 netbox/dcim/tables/racks.py:54 -#: netbox/templates/dcim/racktype.html:20 +#: dcim/forms/filtersets.py:790 dcim/tables/racks.py:54 +#: templates/dcim/racktype.html:20 msgid "Model" msgstr "Model" -#: netbox/dcim/forms/filtersets.py:834 +#: dcim/forms/filtersets.py:834 msgid "Has an OOB IP" msgstr "Má IP OOB" -#: netbox/dcim/forms/filtersets.py:841 +#: dcim/forms/filtersets.py:841 msgid "Virtual chassis member" msgstr "Člen virtuálního šasi" -#: netbox/dcim/forms/filtersets.py:890 +#: dcim/forms/filtersets.py:890 msgid "Has virtual device contexts" msgstr "Má kontexty virtuálních zařízení" -#: netbox/dcim/forms/filtersets.py:903 netbox/extras/filtersets.py:585 -#: netbox/ipam/forms/bulk_edit.py:479 netbox/ipam/forms/filtersets.py:452 -#: netbox/virtualization/forms/filtersets.py:112 +#: dcim/forms/filtersets.py:903 extras/filtersets.py:585 +#: ipam/forms/filtersets.py:452 virtualization/forms/filtersets.py:112 msgid "Cluster group" msgstr "Skupina klastru" -#: netbox/dcim/forms/filtersets.py:1210 +#: dcim/forms/filtersets.py:1210 msgid "Cabled" msgstr "Kabelový" -#: netbox/dcim/forms/filtersets.py:1217 +#: dcim/forms/filtersets.py:1217 msgid "Occupied" msgstr "Obsazeno" -#: netbox/dcim/forms/filtersets.py:1244 netbox/dcim/forms/filtersets.py:1269 -#: netbox/dcim/forms/filtersets.py:1293 netbox/dcim/forms/filtersets.py:1313 -#: netbox/dcim/forms/filtersets.py:1336 netbox/dcim/tables/devices.py:364 -#: netbox/templates/dcim/consoleport.html:55 -#: netbox/templates/dcim/consoleserverport.html:55 -#: netbox/templates/dcim/frontport.html:69 -#: netbox/templates/dcim/interface.html:140 -#: netbox/templates/dcim/powerfeed.html:110 -#: netbox/templates/dcim/poweroutlet.html:59 -#: netbox/templates/dcim/powerport.html:59 -#: netbox/templates/dcim/rearport.html:65 +#: dcim/forms/filtersets.py:1244 dcim/forms/filtersets.py:1269 +#: dcim/forms/filtersets.py:1293 dcim/forms/filtersets.py:1313 +#: dcim/forms/filtersets.py:1336 dcim/tables/devices.py:364 +#: templates/dcim/consoleport.html:55 templates/dcim/consoleserverport.html:55 +#: templates/dcim/frontport.html:69 templates/dcim/interface.html:140 +#: templates/dcim/powerfeed.html:110 templates/dcim/poweroutlet.html:59 +#: templates/dcim/powerport.html:59 templates/dcim/rearport.html:65 msgid "Connection" msgstr "Připojení" -#: netbox/dcim/forms/filtersets.py:1348 netbox/extras/forms/bulk_edit.py:326 -#: netbox/extras/forms/bulk_import.py:247 -#: netbox/extras/forms/filtersets.py:464 -#: netbox/extras/forms/model_forms.py:675 netbox/extras/tables/tables.py:579 -#: netbox/templates/extras/journalentry.html:30 +#: dcim/forms/filtersets.py:1348 extras/forms/bulk_edit.py:326 +#: extras/forms/bulk_import.py:247 extras/forms/filtersets.py:464 +#: extras/forms/model_forms.py:675 extras/tables/tables.py:579 +#: templates/extras/journalentry.html:30 msgid "Kind" msgstr "Druh" -#: netbox/dcim/forms/filtersets.py:1377 +#: dcim/forms/filtersets.py:1377 msgid "Mgmt only" msgstr "Pouze správa" -#: netbox/dcim/forms/filtersets.py:1389 netbox/dcim/forms/model_forms.py:1383 -#: netbox/dcim/models/device_components.py:629 -#: netbox/templates/dcim/interface.html:129 +#: dcim/forms/filtersets.py:1389 dcim/forms/model_forms.py:1383 +#: dcim/models/device_components.py:629 templates/dcim/interface.html:129 msgid "WWN" msgstr "WWN" -#: netbox/dcim/forms/filtersets.py:1409 +#: dcim/forms/filtersets.py:1409 msgid "Wireless channel" msgstr "Bezdrátový kanál" -#: netbox/dcim/forms/filtersets.py:1413 +#: dcim/forms/filtersets.py:1413 msgid "Channel frequency (MHz)" msgstr "Frekvence kanálu (MHz)" -#: netbox/dcim/forms/filtersets.py:1417 +#: dcim/forms/filtersets.py:1417 msgid "Channel width (MHz)" msgstr "Šířka kanálu (MHz)" -#: netbox/dcim/forms/filtersets.py:1421 -#: netbox/templates/dcim/interface.html:85 +#: dcim/forms/filtersets.py:1421 templates/dcim/interface.html:85 msgid "Transmit power (dBm)" msgstr "Vysílací výkon (dBm)" -#: netbox/dcim/forms/filtersets.py:1446 netbox/dcim/forms/filtersets.py:1471 -#: netbox/dcim/tables/devices.py:327 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:50 -#: netbox/templates/dcim/inc/connection_endpoints.html:4 -#: netbox/templates/dcim/rearport.html:73 -#: netbox/templates/dcim/trace/cable.html:7 +#: dcim/forms/filtersets.py:1446 dcim/forms/filtersets.py:1471 +#: dcim/tables/devices.py:327 templates/dcim/cable.html:12 +#: templates/dcim/cable_trace.html:46 templates/dcim/frontport.html:77 +#: templates/dcim/htmx/cable_edit.html:50 +#: templates/dcim/inc/connection_endpoints.html:4 +#: templates/dcim/rearport.html:73 templates/dcim/trace/cable.html:7 msgid "Cable" msgstr "Kabel" -#: netbox/dcim/forms/filtersets.py:1550 netbox/dcim/tables/devices.py:949 +#: dcim/forms/filtersets.py:1550 dcim/tables/devices.py:949 msgid "Discovered" msgstr "objeveno" -#: netbox/dcim/forms/formsets.py:20 +#: dcim/forms/formsets.py:20 #, python-brace-format msgid "A virtual chassis member already exists in position {vc_position}." msgstr "Člen virtuálního šasi na pozici {vc_position} již existuje." -#: netbox/dcim/forms/model_forms.py:140 +#: dcim/forms/model_forms.py:140 msgid "Contact Info" msgstr "Kontaktní informace" -#: netbox/dcim/forms/model_forms.py:195 netbox/templates/dcim/rackrole.html:19 +#: dcim/forms/model_forms.py:195 templates/dcim/rackrole.html:19 msgid "Rack Role" msgstr "Role stojanu" -#: netbox/dcim/forms/model_forms.py:212 netbox/dcim/forms/model_forms.py:362 -#: netbox/dcim/forms/model_forms.py:446 -#: netbox/utilities/forms/fields/fields.py:47 +#: dcim/forms/model_forms.py:212 dcim/forms/model_forms.py:362 +#: dcim/forms/model_forms.py:446 utilities/forms/fields/fields.py:47 msgid "Slug" msgstr "URL zkratka" -#: netbox/dcim/forms/model_forms.py:259 +#: dcim/forms/model_forms.py:259 msgid "Select a pre-defined rack type, or set physical characteristics below." msgstr "" "Vyberte předdefinovaný typ stojanu nebo nastavte fyzikální vlastnosti níže." -#: netbox/dcim/forms/model_forms.py:265 +#: dcim/forms/model_forms.py:265 msgid "Inventory Control" msgstr "Řízení zásob" -#: netbox/dcim/forms/model_forms.py:313 +#: dcim/forms/model_forms.py:313 msgid "" "Comma-separated list of numeric unit IDs. A range may be specified using a " "hyphen." @@ -4822,161 +4407,144 @@ msgstr "" "Seznam číselných ID jednotek oddělený čárkami. Rozsah lze zadat pomocí " "pomlčky." -#: netbox/dcim/forms/model_forms.py:322 netbox/dcim/tables/racks.py:202 +#: dcim/forms/model_forms.py:322 dcim/tables/racks.py:202 msgid "Reservation" msgstr "Rezervace" -#: netbox/dcim/forms/model_forms.py:423 -#: netbox/templates/dcim/devicerole.html:23 +#: dcim/forms/model_forms.py:423 templates/dcim/devicerole.html:23 msgid "Device Role" msgstr "Role zařízení" -#: netbox/dcim/forms/model_forms.py:490 netbox/dcim/models/devices.py:644 +#: dcim/forms/model_forms.py:490 dcim/models/devices.py:644 msgid "The lowest-numbered unit occupied by the device" msgstr "Nejnižší číslovaná pozice obsazená zařízením" -#: netbox/dcim/forms/model_forms.py:547 +#: dcim/forms/model_forms.py:547 msgid "The position in the virtual chassis this device is identified by" msgstr "Poloha ve virtuálním podvozku tohoto zařízení je identifikována" -#: netbox/dcim/forms/model_forms.py:552 +#: dcim/forms/model_forms.py:552 msgid "The priority of the device in the virtual chassis" msgstr "Priorita zařízení ve virtuálním šasi" -#: netbox/dcim/forms/model_forms.py:659 +#: dcim/forms/model_forms.py:659 msgid "Automatically populate components associated with this module type" msgstr "Automaticky naplnit komponenty přidružené k tomuto typu modulu" -#: netbox/dcim/forms/model_forms.py:767 +#: dcim/forms/model_forms.py:767 msgid "Characteristics" msgstr "Charakteristika" -#: netbox/dcim/forms/model_forms.py:1087 +#: dcim/forms/model_forms.py:1087 msgid "Console port template" msgstr "Šablona portu konzoly" -#: netbox/dcim/forms/model_forms.py:1095 +#: dcim/forms/model_forms.py:1095 msgid "Console server port template" msgstr "Šablona portu konzolového serveru" -#: netbox/dcim/forms/model_forms.py:1103 +#: dcim/forms/model_forms.py:1103 msgid "Front port template" msgstr "Šablona předního portu" -#: netbox/dcim/forms/model_forms.py:1111 +#: dcim/forms/model_forms.py:1111 msgid "Interface template" msgstr "Šablona rozhraní" -#: netbox/dcim/forms/model_forms.py:1119 +#: dcim/forms/model_forms.py:1119 msgid "Power outlet template" msgstr "Šablona elektrické zásuvky" -#: netbox/dcim/forms/model_forms.py:1127 +#: dcim/forms/model_forms.py:1127 msgid "Power port template" msgstr "Šablona napájecího portu" -#: netbox/dcim/forms/model_forms.py:1135 +#: dcim/forms/model_forms.py:1135 msgid "Rear port template" msgstr "Šablona zadního portu" -#: netbox/dcim/forms/model_forms.py:1144 netbox/dcim/forms/model_forms.py:1388 -#: netbox/dcim/forms/model_forms.py:1551 netbox/dcim/forms/model_forms.py:1583 -#: netbox/dcim/tables/connections.py:65 netbox/ipam/forms/bulk_import.py:318 -#: netbox/ipam/forms/model_forms.py:280 netbox/ipam/forms/model_forms.py:289 -#: netbox/ipam/tables/fhrp.py:64 netbox/ipam/tables/ip.py:372 -#: netbox/ipam/tables/vlans.py:169 -#: netbox/templates/circuits/inc/circuit_termination_fields.html:51 -#: netbox/templates/dcim/frontport.html:106 -#: netbox/templates/dcim/interface.html:27 -#: netbox/templates/dcim/interface.html:184 -#: netbox/templates/dcim/interface.html:310 -#: netbox/templates/dcim/rearport.html:102 -#: netbox/templates/virtualization/vminterface.html:18 -#: netbox/templates/vpn/tunneltermination.html:31 -#: netbox/templates/wireless/inc/wirelesslink_interface.html:10 -#: netbox/templates/wireless/wirelesslink.html:10 -#: netbox/templates/wireless/wirelesslink.html:55 -#: netbox/virtualization/forms/model_forms.py:348 -#: netbox/vpn/forms/bulk_import.py:297 netbox/vpn/forms/model_forms.py:436 -#: netbox/vpn/forms/model_forms.py:445 -#: netbox/wireless/forms/model_forms.py:113 -#: netbox/wireless/forms/model_forms.py:155 +#: dcim/forms/model_forms.py:1144 dcim/forms/model_forms.py:1388 +#: dcim/forms/model_forms.py:1551 dcim/forms/model_forms.py:1583 +#: dcim/tables/connections.py:65 ipam/forms/bulk_import.py:318 +#: ipam/forms/model_forms.py:280 ipam/forms/model_forms.py:289 +#: ipam/tables/fhrp.py:64 ipam/tables/ip.py:372 ipam/tables/vlans.py:169 +#: templates/circuits/inc/circuit_termination_fields.html:51 +#: templates/dcim/frontport.html:106 templates/dcim/interface.html:27 +#: templates/dcim/interface.html:184 templates/dcim/interface.html:310 +#: templates/dcim/rearport.html:102 +#: templates/virtualization/vminterface.html:18 +#: templates/vpn/tunneltermination.html:31 +#: templates/wireless/inc/wirelesslink_interface.html:10 +#: templates/wireless/wirelesslink.html:10 +#: templates/wireless/wirelesslink.html:55 +#: virtualization/forms/model_forms.py:348 vpn/forms/bulk_import.py:297 +#: vpn/forms/model_forms.py:436 vpn/forms/model_forms.py:445 +#: wireless/forms/model_forms.py:113 wireless/forms/model_forms.py:155 msgid "Interface" msgstr "Rozhraní" -#: netbox/dcim/forms/model_forms.py:1145 netbox/dcim/forms/model_forms.py:1584 -#: netbox/dcim/tables/connections.py:27 -#: netbox/templates/dcim/consoleport.html:17 -#: netbox/templates/dcim/consoleserverport.html:74 -#: netbox/templates/dcim/frontport.html:112 +#: dcim/forms/model_forms.py:1145 dcim/forms/model_forms.py:1584 +#: dcim/tables/connections.py:27 templates/dcim/consoleport.html:17 +#: templates/dcim/consoleserverport.html:74 templates/dcim/frontport.html:112 msgid "Console Port" msgstr "Port konzoly" -#: netbox/dcim/forms/model_forms.py:1146 netbox/dcim/forms/model_forms.py:1585 -#: netbox/templates/dcim/consoleport.html:73 -#: netbox/templates/dcim/consoleserverport.html:17 -#: netbox/templates/dcim/frontport.html:109 +#: dcim/forms/model_forms.py:1146 dcim/forms/model_forms.py:1585 +#: templates/dcim/consoleport.html:73 templates/dcim/consoleserverport.html:17 +#: templates/dcim/frontport.html:109 msgid "Console Server Port" msgstr "Port konzolového serveru" -#: netbox/dcim/forms/model_forms.py:1147 netbox/dcim/forms/model_forms.py:1586 -#: netbox/templates/circuits/inc/circuit_termination_fields.html:52 -#: netbox/templates/dcim/consoleport.html:76 -#: netbox/templates/dcim/consoleserverport.html:77 -#: netbox/templates/dcim/frontport.html:17 -#: netbox/templates/dcim/frontport.html:115 -#: netbox/templates/dcim/interface.html:187 -#: netbox/templates/dcim/rearport.html:105 +#: dcim/forms/model_forms.py:1147 dcim/forms/model_forms.py:1586 +#: templates/circuits/inc/circuit_termination_fields.html:52 +#: templates/dcim/consoleport.html:76 templates/dcim/consoleserverport.html:77 +#: templates/dcim/frontport.html:17 templates/dcim/frontport.html:115 +#: templates/dcim/interface.html:187 templates/dcim/rearport.html:105 msgid "Front Port" msgstr "Přední port" -#: netbox/dcim/forms/model_forms.py:1148 netbox/dcim/forms/model_forms.py:1587 -#: netbox/dcim/tables/devices.py:710 -#: netbox/templates/circuits/inc/circuit_termination_fields.html:53 -#: netbox/templates/dcim/consoleport.html:79 -#: netbox/templates/dcim/consoleserverport.html:80 -#: netbox/templates/dcim/frontport.html:50 -#: netbox/templates/dcim/frontport.html:118 -#: netbox/templates/dcim/interface.html:190 -#: netbox/templates/dcim/rearport.html:17 -#: netbox/templates/dcim/rearport.html:108 +#: dcim/forms/model_forms.py:1148 dcim/forms/model_forms.py:1587 +#: dcim/tables/devices.py:710 +#: templates/circuits/inc/circuit_termination_fields.html:53 +#: templates/dcim/consoleport.html:79 templates/dcim/consoleserverport.html:80 +#: templates/dcim/frontport.html:50 templates/dcim/frontport.html:118 +#: templates/dcim/interface.html:190 templates/dcim/rearport.html:17 +#: templates/dcim/rearport.html:108 msgid "Rear Port" msgstr "Zadní port" -#: netbox/dcim/forms/model_forms.py:1149 netbox/dcim/forms/model_forms.py:1588 -#: netbox/dcim/tables/connections.py:46 netbox/dcim/tables/devices.py:512 -#: netbox/templates/dcim/poweroutlet.html:44 -#: netbox/templates/dcim/powerport.html:17 +#: dcim/forms/model_forms.py:1149 dcim/forms/model_forms.py:1588 +#: dcim/tables/connections.py:46 dcim/tables/devices.py:512 +#: templates/dcim/poweroutlet.html:44 templates/dcim/powerport.html:17 msgid "Power Port" msgstr "Napájecí port" -#: netbox/dcim/forms/model_forms.py:1150 netbox/dcim/forms/model_forms.py:1589 -#: netbox/templates/dcim/poweroutlet.html:17 -#: netbox/templates/dcim/powerport.html:77 +#: dcim/forms/model_forms.py:1150 dcim/forms/model_forms.py:1589 +#: templates/dcim/poweroutlet.html:17 templates/dcim/powerport.html:77 msgid "Power Outlet" msgstr "Napájecí zásuvka" -#: netbox/dcim/forms/model_forms.py:1152 netbox/dcim/forms/model_forms.py:1591 +#: dcim/forms/model_forms.py:1152 dcim/forms/model_forms.py:1591 msgid "Component Assignment" msgstr "Přiřazení komponent" -#: netbox/dcim/forms/model_forms.py:1195 netbox/dcim/forms/model_forms.py:1638 +#: dcim/forms/model_forms.py:1195 dcim/forms/model_forms.py:1638 msgid "An InventoryItem can only be assigned to a single component." msgstr "InventoryItem lze přiřadit pouze k jedné komponentě." -#: netbox/dcim/forms/model_forms.py:1332 +#: dcim/forms/model_forms.py:1332 msgid "LAG interface" msgstr "Rozhraní LAG" -#: netbox/dcim/forms/model_forms.py:1355 +#: dcim/forms/model_forms.py:1355 msgid "Filter VLANs available for assignment by group." msgstr "Filtrujte sítě VLAN dostupné pro přiřazení podle skupiny." -#: netbox/dcim/forms/model_forms.py:1484 +#: dcim/forms/model_forms.py:1484 msgid "Child Device" msgstr "Podřazené zařízení" -#: netbox/dcim/forms/model_forms.py:1485 +#: dcim/forms/model_forms.py:1485 msgid "" "Child devices must first be created and assigned to the site and rack of the" " parent device." @@ -4984,35 +4552,32 @@ msgstr "" "Podřízená zařízení musí být nejprve vytvořena a přiřazena k staveništi a " "stojanu nadřazeného zařízení." -#: netbox/dcim/forms/model_forms.py:1527 +#: dcim/forms/model_forms.py:1527 msgid "Console port" msgstr "Port konzoly" -#: netbox/dcim/forms/model_forms.py:1535 +#: dcim/forms/model_forms.py:1535 msgid "Console server port" msgstr "Port konzolového serveru" -#: netbox/dcim/forms/model_forms.py:1543 +#: dcim/forms/model_forms.py:1543 msgid "Front port" msgstr "Přední port" -#: netbox/dcim/forms/model_forms.py:1559 +#: dcim/forms/model_forms.py:1559 msgid "Power outlet" msgstr "Napájecí zásuvka" -#: netbox/dcim/forms/model_forms.py:1579 -#: netbox/templates/dcim/inventoryitem.html:17 +#: dcim/forms/model_forms.py:1579 templates/dcim/inventoryitem.html:17 msgid "Inventory Item" msgstr "Položka inventáře" -#: netbox/dcim/forms/model_forms.py:1652 -#: netbox/templates/dcim/inventoryitemrole.html:15 +#: dcim/forms/model_forms.py:1652 templates/dcim/inventoryitemrole.html:15 msgid "Inventory Item Role" msgstr "Role položky inventáře" -#: netbox/dcim/forms/object_create.py:48 -#: netbox/dcim/forms/object_create.py:199 -#: netbox/dcim/forms/object_create.py:355 +#: dcim/forms/object_create.py:48 dcim/forms/object_create.py:199 +#: dcim/forms/object_create.py:355 msgid "" "Alphanumeric ranges are supported. (Must match the number of objects being " "created.)" @@ -5020,7 +4585,7 @@ msgstr "" "Podporovány jsou alfanumerické rozsahy. (Musí odpovídat počtu vytvořených " "objektů.)" -#: netbox/dcim/forms/object_create.py:68 +#: dcim/forms/object_create.py:68 #, python-brace-format msgid "" "The provided pattern specifies {value_count} values, but {pattern_count} are" @@ -5029,18 +4594,17 @@ msgstr "" "Poskytnutý vzor určuje {value_count} hodnot, ale očekáváno je " "{pattern_count}." -#: netbox/dcim/forms/object_create.py:110 -#: netbox/dcim/forms/object_create.py:271 netbox/dcim/tables/devices.py:252 +#: dcim/forms/object_create.py:110 dcim/forms/object_create.py:271 +#: dcim/tables/devices.py:252 msgid "Rear ports" msgstr "Zadní porty" -#: netbox/dcim/forms/object_create.py:111 -#: netbox/dcim/forms/object_create.py:272 +#: dcim/forms/object_create.py:111 dcim/forms/object_create.py:272 msgid "Select one rear port assignment for each front port being created." msgstr "" "Vyberte jedno přiřazení zadního portu pro každý vytvořený přední port." -#: netbox/dcim/forms/object_create.py:164 +#: dcim/forms/object_create.py:164 #, python-brace-format msgid "" "The number of front port templates to be created ({frontport_count}) must " @@ -5049,7 +4613,7 @@ msgstr "" "Počet šablon 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:251 +#: dcim/forms/object_create.py:251 #, python-brace-format msgid "" "The string {module} will be replaced with the position of the " @@ -5058,7 +4622,7 @@ msgstr "" "Řetězec {module} bude nahrazen polohou přiřazeného modulu, " "pokud existuje." -#: netbox/dcim/forms/object_create.py:320 +#: dcim/forms/object_create.py:320 #, python-brace-format msgid "" "The number of front ports to be created ({frontport_count}) must match the " @@ -5067,84 +4631,81 @@ 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:409 netbox/dcim/tables/devices.py:1033 -#: netbox/ipam/tables/fhrp.py:31 netbox/templates/dcim/virtualchassis.html:53 -#: netbox/templates/dcim/virtualchassis_edit.html:47 -#: netbox/templates/ipam/fhrpgroup.html:38 +#: dcim/forms/object_create.py:409 dcim/tables/devices.py:1033 +#: ipam/tables/fhrp.py:31 templates/dcim/virtualchassis.html:53 +#: templates/dcim/virtualchassis_edit.html:47 templates/ipam/fhrpgroup.html:38 msgid "Members" msgstr "Členové" -#: netbox/dcim/forms/object_create.py:418 +#: dcim/forms/object_create.py:418 msgid "Initial position" msgstr "Počáteční pozice" -#: netbox/dcim/forms/object_create.py:421 +#: dcim/forms/object_create.py:421 msgid "" "Position of the first member device. Increases by one for each additional " "member." msgstr "Pozice prvního člena. Zvýší se o jeden pro každého dalšího člena." -#: netbox/dcim/forms/object_create.py:435 +#: dcim/forms/object_create.py:435 msgid "A position must be specified for the first VC member." msgstr "Pro prvního člena virtuálnáho šasi musí být specifikována pozice." -#: netbox/dcim/models/cables.py:62 -#: netbox/dcim/models/device_component_templates.py:55 -#: netbox/dcim/models/device_components.py:62 -#: netbox/extras/models/customfields.py:111 +#: dcim/models/cables.py:62 dcim/models/device_component_templates.py:55 +#: dcim/models/device_components.py:62 extras/models/customfields.py:111 msgid "label" msgstr "štítek" -#: netbox/dcim/models/cables.py:71 +#: dcim/models/cables.py:71 msgid "length" msgstr "délka" -#: netbox/dcim/models/cables.py:78 +#: dcim/models/cables.py:78 msgid "length unit" msgstr "jednotka délky" -#: netbox/dcim/models/cables.py:95 +#: dcim/models/cables.py:95 msgid "cable" msgstr "kabel" -#: netbox/dcim/models/cables.py:96 +#: dcim/models/cables.py:96 msgid "cables" msgstr "kabely" -#: netbox/dcim/models/cables.py:165 +#: dcim/models/cables.py:165 msgid "Must specify a unit when setting a cable length" msgstr "Při nastavování délky kabelu je nutné zadat jednotku" -#: netbox/dcim/models/cables.py:168 +#: dcim/models/cables.py:168 msgid "Must define A and B terminations when creating a new cable." msgstr "Při vytváření nového kabelu je nutné definovat zakončení A a B." -#: netbox/dcim/models/cables.py:175 +#: dcim/models/cables.py:175 msgid "Cannot connect different termination types to same end of cable." msgstr "Nelze připojit různé typy zakončení ke stejnému konci kabelu." -#: netbox/dcim/models/cables.py:183 +#: dcim/models/cables.py:183 #, python-brace-format msgid "Incompatible termination types: {type_a} and {type_b}" msgstr "Nekompatibilní typy ukončení: {type_a} a {type_b}" -#: netbox/dcim/models/cables.py:193 +#: dcim/models/cables.py:193 msgid "A and B terminations cannot connect to the same object." msgstr "Koncovky A a B se nemohou připojit ke stejnému objektu." -#: netbox/dcim/models/cables.py:260 netbox/ipam/models/asns.py:37 +#: dcim/models/cables.py:260 ipam/models/asns.py:37 msgid "end" msgstr "konec" -#: netbox/dcim/models/cables.py:313 +#: dcim/models/cables.py:313 msgid "cable termination" msgstr "zakončení kabelu" -#: netbox/dcim/models/cables.py:314 +#: dcim/models/cables.py:314 msgid "cable terminations" msgstr "zakončení kabelů" -#: netbox/dcim/models/cables.py:333 +#: dcim/models/cables.py:333 #, python-brace-format msgid "" "Duplicate termination found for {app_label}.{model} {termination_id}: cable " @@ -5153,37 +4714,37 @@ msgstr "" "Nalezeno duplicitní ukončení pro {app_label}.{model} {termination_id}: kabel" " {cable_pk}" -#: netbox/dcim/models/cables.py:343 +#: dcim/models/cables.py:343 #, python-brace-format msgid "Cables cannot be terminated to {type_display} interfaces" msgstr "Kabely nelze zakončit v {type_display} rozhraní" -#: netbox/dcim/models/cables.py:350 +#: dcim/models/cables.py:350 msgid "Circuit terminations attached to a provider network may not be cabled." msgstr "" "Zakončení okruhů připojené k síti poskytovatele nemusí být kabelovány." -#: netbox/dcim/models/cables.py:448 netbox/extras/models/configs.py:50 +#: dcim/models/cables.py:448 extras/models/configs.py:50 msgid "is active" msgstr "je aktivní" -#: netbox/dcim/models/cables.py:452 +#: dcim/models/cables.py:452 msgid "is complete" msgstr "je kompletní" -#: netbox/dcim/models/cables.py:456 +#: dcim/models/cables.py:456 msgid "is split" msgstr "je rozdělen" -#: netbox/dcim/models/cables.py:464 +#: dcim/models/cables.py:464 msgid "cable path" msgstr "trasa kabelu" -#: netbox/dcim/models/cables.py:465 +#: dcim/models/cables.py:465 msgid "cable paths" msgstr "trasy kabelů" -#: netbox/dcim/models/device_component_templates.py:46 +#: dcim/models/device_component_templates.py:46 #, python-brace-format msgid "" "{module} is accepted as a substitution for the module bay position when " @@ -5192,23 +4753,23 @@ msgstr "" "{module} je akceptován jako náhrada za pozici modulu, když je připojen k " "typu modulu." -#: netbox/dcim/models/device_component_templates.py:58 -#: netbox/dcim/models/device_components.py:65 +#: dcim/models/device_component_templates.py:58 +#: dcim/models/device_components.py:65 msgid "Physical label" msgstr "Fyzický popisek" -#: netbox/dcim/models/device_component_templates.py:103 +#: dcim/models/device_component_templates.py:103 msgid "Component templates cannot be moved to a different device type." msgstr "Šablony komponent nelze přesunout na jiný typ zařízení." -#: netbox/dcim/models/device_component_templates.py:154 +#: dcim/models/device_component_templates.py:154 msgid "" "A component template cannot be associated with both a device type and a " "module type." msgstr "" "Šablonu komponenty nelze přidružit zároveň k typu zařízení a k typu modulu." -#: netbox/dcim/models/device_component_templates.py:158 +#: dcim/models/device_component_templates.py:158 msgid "" "A component template must be associated with either a device type or a " "module type." @@ -5216,135 +4777,135 @@ msgstr "" "Šablona komponenty musí být přiřazena buď k typu zařízení, nebo k typu " "modulu." -#: netbox/dcim/models/device_component_templates.py:212 +#: dcim/models/device_component_templates.py:212 msgid "console port template" msgstr "šablona portu konzoly" -#: netbox/dcim/models/device_component_templates.py:213 +#: dcim/models/device_component_templates.py:213 msgid "console port templates" msgstr "šablony portů konzoly" -#: netbox/dcim/models/device_component_templates.py:246 +#: dcim/models/device_component_templates.py:246 msgid "console server port template" msgstr "šablona portu konzolového serveru" -#: netbox/dcim/models/device_component_templates.py:247 +#: dcim/models/device_component_templates.py:247 msgid "console server port templates" msgstr "šablony portů konzolového serveru" -#: netbox/dcim/models/device_component_templates.py:278 -#: netbox/dcim/models/device_components.py:352 +#: dcim/models/device_component_templates.py:278 +#: dcim/models/device_components.py:352 msgid "maximum draw" msgstr "maximální příkon" -#: netbox/dcim/models/device_component_templates.py:285 -#: netbox/dcim/models/device_components.py:359 +#: dcim/models/device_component_templates.py:285 +#: dcim/models/device_components.py:359 msgid "allocated draw" msgstr "přidělený příkon" -#: netbox/dcim/models/device_component_templates.py:295 +#: dcim/models/device_component_templates.py:295 msgid "power port template" msgstr "šablona napájecího portu" -#: netbox/dcim/models/device_component_templates.py:296 +#: dcim/models/device_component_templates.py:296 msgid "power port templates" msgstr "šablony napájecích portů" -#: netbox/dcim/models/device_component_templates.py:315 -#: netbox/dcim/models/device_components.py:382 +#: dcim/models/device_component_templates.py:315 +#: dcim/models/device_components.py:382 #, python-brace-format msgid "Allocated draw cannot exceed the maximum draw ({maximum_draw}W)." msgstr "Přidělený příkon nesmí překročit maximální příkon ({maximum_draw}W)." -#: netbox/dcim/models/device_component_templates.py:347 -#: netbox/dcim/models/device_components.py:477 +#: dcim/models/device_component_templates.py:347 +#: dcim/models/device_components.py:477 msgid "feed leg" msgstr "napájecí větev" -#: netbox/dcim/models/device_component_templates.py:351 -#: netbox/dcim/models/device_components.py:481 +#: dcim/models/device_component_templates.py:351 +#: dcim/models/device_components.py:481 msgid "Phase (for three-phase feeds)" msgstr "Fáze (pro třífázové napájení)" -#: netbox/dcim/models/device_component_templates.py:357 +#: dcim/models/device_component_templates.py:357 msgid "power outlet template" msgstr "šablona elektrické zásuvky" -#: netbox/dcim/models/device_component_templates.py:358 +#: dcim/models/device_component_templates.py:358 msgid "power outlet templates" msgstr "šablony zásuvek" -#: netbox/dcim/models/device_component_templates.py:367 +#: dcim/models/device_component_templates.py:367 #, python-brace-format msgid "Parent power port ({power_port}) must belong to the same device type" msgstr "" "Rodičovský napájecí port ({power_port}) musí patřit ke stejnému typu " "zařízení" -#: netbox/dcim/models/device_component_templates.py:371 +#: dcim/models/device_component_templates.py:371 #, python-brace-format msgid "Parent power port ({power_port}) must belong to the same module type" msgstr "" "Rodičovský napájecí port ({power_port}) musí patřit ke stejnému typu modulu" -#: netbox/dcim/models/device_component_templates.py:423 -#: netbox/dcim/models/device_components.py:611 +#: dcim/models/device_component_templates.py:423 +#: dcim/models/device_components.py:611 msgid "management only" msgstr "pouze řízení" -#: netbox/dcim/models/device_component_templates.py:431 -#: netbox/dcim/models/device_components.py:550 +#: dcim/models/device_component_templates.py:431 +#: dcim/models/device_components.py:550 msgid "bridge interface" msgstr "rozhraní mostu" -#: netbox/dcim/models/device_component_templates.py:449 -#: netbox/dcim/models/device_components.py:636 +#: dcim/models/device_component_templates.py:449 +#: dcim/models/device_components.py:636 msgid "wireless role" msgstr "bezdrátová role" -#: netbox/dcim/models/device_component_templates.py:455 +#: dcim/models/device_component_templates.py:455 msgid "interface template" msgstr "šablona rozhraní" -#: netbox/dcim/models/device_component_templates.py:456 +#: dcim/models/device_component_templates.py:456 msgid "interface templates" msgstr "šablony rozhraní" -#: netbox/dcim/models/device_component_templates.py:463 -#: netbox/dcim/models/device_components.py:804 -#: netbox/virtualization/models/virtualmachines.py:405 +#: dcim/models/device_component_templates.py:463 +#: dcim/models/device_components.py:804 +#: virtualization/models/virtualmachines.py:405 msgid "An interface cannot be bridged to itself." msgstr "Rozhraní nemůže být přemostěno samo od sebe." -#: netbox/dcim/models/device_component_templates.py:466 +#: dcim/models/device_component_templates.py:466 #, python-brace-format msgid "Bridge interface ({bridge}) must belong to the same device type" msgstr "Rozhraní můstku ({bridge}) musí patřit ke stejnému typu zařízení" -#: netbox/dcim/models/device_component_templates.py:470 +#: dcim/models/device_component_templates.py:470 #, python-brace-format msgid "Bridge interface ({bridge}) must belong to the same module type" msgstr "Rozhraní můstku ({bridge}) musí patřit ke stejnému typu modulu" -#: netbox/dcim/models/device_component_templates.py:526 -#: netbox/dcim/models/device_components.py:984 +#: dcim/models/device_component_templates.py:526 +#: dcim/models/device_components.py:984 msgid "rear port position" msgstr "pozice zadního portu" -#: netbox/dcim/models/device_component_templates.py:551 +#: dcim/models/device_component_templates.py:551 msgid "front port template" msgstr "šablona předního portu" -#: netbox/dcim/models/device_component_templates.py:552 +#: dcim/models/device_component_templates.py:552 msgid "front port templates" msgstr "šablony předního portu" -#: netbox/dcim/models/device_component_templates.py:562 +#: dcim/models/device_component_templates.py:562 #, python-brace-format msgid "Rear port ({name}) must belong to the same device type" msgstr "Zadní port ({name}) musí patřit ke stejnému typu zařízení" -#: netbox/dcim/models/device_component_templates.py:568 +#: dcim/models/device_component_templates.py:568 #, python-brace-format msgid "" "Invalid rear port position ({position}); rear port {name} has only {count} " @@ -5353,48 +4914,48 @@ msgstr "" "Neplatná poloha zadního portu ({position}); zadní port {name} má pouze " "{count} pozice" -#: netbox/dcim/models/device_component_templates.py:621 -#: netbox/dcim/models/device_components.py:1053 +#: dcim/models/device_component_templates.py:621 +#: dcim/models/device_components.py:1053 msgid "positions" msgstr "pozice" -#: netbox/dcim/models/device_component_templates.py:632 +#: dcim/models/device_component_templates.py:632 msgid "rear port template" msgstr "šablona zadního portu" -#: netbox/dcim/models/device_component_templates.py:633 +#: dcim/models/device_component_templates.py:633 msgid "rear port templates" msgstr "šablony zadních portů" -#: netbox/dcim/models/device_component_templates.py:662 -#: netbox/dcim/models/device_components.py:1103 +#: dcim/models/device_component_templates.py:662 +#: dcim/models/device_components.py:1103 msgid "position" msgstr "pozice" -#: netbox/dcim/models/device_component_templates.py:665 -#: netbox/dcim/models/device_components.py:1106 +#: dcim/models/device_component_templates.py:665 +#: dcim/models/device_components.py:1106 msgid "Identifier to reference when renaming installed components" msgstr "" "Identifikátor, na který se má odkazovat při přejmenování nainstalovaných " "komponent" -#: netbox/dcim/models/device_component_templates.py:671 +#: dcim/models/device_component_templates.py:671 msgid "module bay template" msgstr "šablona moduární šachty" -#: netbox/dcim/models/device_component_templates.py:672 +#: dcim/models/device_component_templates.py:672 msgid "module bay templates" msgstr "šablony modulárních šachet" -#: netbox/dcim/models/device_component_templates.py:699 +#: dcim/models/device_component_templates.py:699 msgid "device bay template" msgstr "šablona pozice zařízení" -#: netbox/dcim/models/device_component_templates.py:700 +#: dcim/models/device_component_templates.py:700 msgid "device bay templates" msgstr "šablony rozvaděčů zařízení" -#: netbox/dcim/models/device_component_templates.py:713 +#: dcim/models/device_component_templates.py:713 #, python-brace-format msgid "" "Subdevice role of device type ({device_type}) must be set to \"parent\" to " @@ -5403,206 +4964,201 @@ msgstr "" "Role dílčího zařízení typu zařízení ({device_type}) musí být nastaveno na " "„rodič“, aby bylo možné povolit pozice zařízení." -#: netbox/dcim/models/device_component_templates.py:768 -#: netbox/dcim/models/device_components.py:1262 +#: dcim/models/device_component_templates.py:768 +#: dcim/models/device_components.py:1262 msgid "part ID" msgstr "ID součásti" -#: netbox/dcim/models/device_component_templates.py:770 -#: netbox/dcim/models/device_components.py:1264 +#: dcim/models/device_component_templates.py:770 +#: dcim/models/device_components.py:1264 msgid "Manufacturer-assigned part identifier" msgstr "Identifikátor součásti přiřazený výrobcem" -#: netbox/dcim/models/device_component_templates.py:787 +#: dcim/models/device_component_templates.py:787 msgid "inventory item template" msgstr "šablona položky inventáře" -#: netbox/dcim/models/device_component_templates.py:788 +#: dcim/models/device_component_templates.py:788 msgid "inventory item templates" msgstr "šablony položek inventáře" -#: netbox/dcim/models/device_components.py:105 +#: dcim/models/device_components.py:105 msgid "Components cannot be moved to a different device." msgstr "Komponenty nelze přesunout do jiného zařízení." -#: netbox/dcim/models/device_components.py:144 +#: dcim/models/device_components.py:144 msgid "cable end" msgstr "konec kabelu" -#: netbox/dcim/models/device_components.py:150 +#: dcim/models/device_components.py:150 msgid "mark connected" msgstr "označit připojený" -#: netbox/dcim/models/device_components.py:152 +#: dcim/models/device_components.py:152 msgid "Treat as if a cable is connected" msgstr "Považovat za připojený" -#: netbox/dcim/models/device_components.py:170 +#: dcim/models/device_components.py:170 msgid "Must specify cable end (A or B) when attaching a cable." msgstr "Při připojování kabelu je nutné zadat konec kabelu (A nebo B)." -#: netbox/dcim/models/device_components.py:174 +#: dcim/models/device_components.py:174 msgid "Cable end must not be set without a cable." msgstr "Konec kabelu nesmí být nastaven bez kabelu." -#: netbox/dcim/models/device_components.py:178 +#: dcim/models/device_components.py:178 msgid "Cannot mark as connected with a cable attached." msgstr "Nelze označit jako připojený s připojeným kabelem." -#: netbox/dcim/models/device_components.py:202 +#: dcim/models/device_components.py:202 #, python-brace-format msgid "{class_name} models must declare a parent_object property" msgstr "{class_name} modely musí deklarovat vlastnost parent_object" -#: netbox/dcim/models/device_components.py:287 -#: netbox/dcim/models/device_components.py:316 -#: netbox/dcim/models/device_components.py:349 -#: netbox/dcim/models/device_components.py:467 +#: dcim/models/device_components.py:287 dcim/models/device_components.py:316 +#: dcim/models/device_components.py:349 dcim/models/device_components.py:467 msgid "Physical port type" msgstr "Fyzický typ portu" -#: netbox/dcim/models/device_components.py:290 -#: netbox/dcim/models/device_components.py:319 +#: dcim/models/device_components.py:290 dcim/models/device_components.py:319 msgid "speed" msgstr "rychlost" -#: netbox/dcim/models/device_components.py:294 -#: netbox/dcim/models/device_components.py:323 +#: dcim/models/device_components.py:294 dcim/models/device_components.py:323 msgid "Port speed in bits per second" msgstr "Rychlost portu v bitech za sekundu" -#: netbox/dcim/models/device_components.py:300 +#: dcim/models/device_components.py:300 msgid "console port" msgstr "konzolový port" -#: netbox/dcim/models/device_components.py:301 +#: dcim/models/device_components.py:301 msgid "console ports" msgstr "konzolové porty" -#: netbox/dcim/models/device_components.py:329 +#: dcim/models/device_components.py:329 msgid "console server port" msgstr "port konzolového serveru" -#: netbox/dcim/models/device_components.py:330 +#: dcim/models/device_components.py:330 msgid "console server ports" msgstr "porty konzolového serveru" -#: netbox/dcim/models/device_components.py:369 +#: dcim/models/device_components.py:369 msgid "power port" msgstr "napájecí port" -#: netbox/dcim/models/device_components.py:370 +#: dcim/models/device_components.py:370 msgid "power ports" msgstr "napájecí porty" -#: netbox/dcim/models/device_components.py:487 +#: dcim/models/device_components.py:487 msgid "power outlet" msgstr "elektrická zásuvka" -#: netbox/dcim/models/device_components.py:488 +#: dcim/models/device_components.py:488 msgid "power outlets" msgstr "elektrické zásuvky" -#: netbox/dcim/models/device_components.py:499 +#: dcim/models/device_components.py:499 #, python-brace-format msgid "Parent power port ({power_port}) must belong to the same device" msgstr "" "Rodičovský napájecí port ({power_port}) musí patřit ke stejnému zařízení" -#: netbox/dcim/models/device_components.py:530 netbox/vpn/models/crypto.py:81 -#: netbox/vpn/models/crypto.py:226 +#: dcim/models/device_components.py:530 vpn/models/crypto.py:81 +#: vpn/models/crypto.py:226 msgid "mode" msgstr "režim" -#: netbox/dcim/models/device_components.py:534 +#: dcim/models/device_components.py:534 msgid "IEEE 802.1Q tagging strategy" msgstr "Strategie označování IEEE 802.1Q" -#: netbox/dcim/models/device_components.py:542 +#: dcim/models/device_components.py:542 msgid "parent interface" msgstr "nadřazené rozhraní" -#: netbox/dcim/models/device_components.py:602 +#: dcim/models/device_components.py:602 msgid "parent LAG" msgstr "nadřazená MAS" -#: netbox/dcim/models/device_components.py:612 +#: dcim/models/device_components.py:612 msgid "This interface is used only for out-of-band management" msgstr "Toto rozhraní se používá pouze pro správu mimo pásmo" -#: netbox/dcim/models/device_components.py:617 +#: dcim/models/device_components.py:617 msgid "speed (Kbps)" msgstr "Rychlost (Kbps)" -#: netbox/dcim/models/device_components.py:620 +#: dcim/models/device_components.py:620 msgid "duplex" msgstr "duplexní" -#: netbox/dcim/models/device_components.py:630 +#: dcim/models/device_components.py:630 msgid "64-bit World Wide Name" msgstr "64bitový celosvětový název" -#: netbox/dcim/models/device_components.py:642 +#: dcim/models/device_components.py:642 msgid "wireless channel" msgstr "bezdrátový kanál" -#: netbox/dcim/models/device_components.py:649 +#: dcim/models/device_components.py:649 msgid "channel frequency (MHz)" msgstr "frekvence kanálu (MHz)" -#: netbox/dcim/models/device_components.py:650 -#: netbox/dcim/models/device_components.py:658 +#: dcim/models/device_components.py:650 dcim/models/device_components.py:658 msgid "Populated by selected channel (if set)" msgstr "Vyplněno vybraným kanálem (pokud je nastaven)" -#: netbox/dcim/models/device_components.py:664 +#: dcim/models/device_components.py:664 msgid "transmit power (dBm)" msgstr "vysílací výkon (dBm)" -#: netbox/dcim/models/device_components.py:689 netbox/wireless/models.py:117 +#: dcim/models/device_components.py:689 wireless/models.py:117 msgid "wireless LANs" msgstr "bezdrátové sítě LAN" -#: netbox/dcim/models/device_components.py:697 -#: netbox/virtualization/models/virtualmachines.py:335 +#: dcim/models/device_components.py:697 +#: virtualization/models/virtualmachines.py:335 msgid "untagged VLAN" msgstr "neoznačené VLAN" -#: netbox/dcim/models/device_components.py:703 -#: netbox/virtualization/models/virtualmachines.py:341 +#: dcim/models/device_components.py:703 +#: virtualization/models/virtualmachines.py:341 msgid "tagged VLANs" msgstr "označené VLAN" -#: netbox/dcim/models/device_components.py:745 -#: netbox/virtualization/models/virtualmachines.py:377 +#: dcim/models/device_components.py:745 +#: virtualization/models/virtualmachines.py:377 msgid "interface" msgstr "rozhraní" -#: netbox/dcim/models/device_components.py:746 -#: netbox/virtualization/models/virtualmachines.py:378 +#: dcim/models/device_components.py:746 +#: virtualization/models/virtualmachines.py:378 msgid "interfaces" msgstr "rozhraní" -#: netbox/dcim/models/device_components.py:757 +#: dcim/models/device_components.py:757 #, python-brace-format msgid "{display_type} interfaces cannot have a cable attached." msgstr "{display_type} Rozhraní nemůže mít připojený kabel." -#: netbox/dcim/models/device_components.py:765 +#: dcim/models/device_components.py:765 #, python-brace-format msgid "{display_type} interfaces cannot be marked as connected." msgstr "{display_type} rozhraní nelze označit jako připojená." -#: netbox/dcim/models/device_components.py:774 -#: netbox/virtualization/models/virtualmachines.py:390 +#: dcim/models/device_components.py:774 +#: virtualization/models/virtualmachines.py:390 msgid "An interface cannot be its own parent." msgstr "Rozhraní nemůže být svým vlastním rodičem." -#: netbox/dcim/models/device_components.py:778 +#: dcim/models/device_components.py:778 msgid "Only virtual interfaces may be assigned to a parent interface." msgstr "K nadřazenému rozhraní lze přiřadit pouze virtuální rozhraní." -#: netbox/dcim/models/device_components.py:785 +#: dcim/models/device_components.py:785 #, python-brace-format msgid "" "The selected parent interface ({interface}) belongs to a different device " @@ -5610,7 +5166,7 @@ msgid "" msgstr "" "Vybrané nadřazené rozhraní ({interface}) patří k jinému zařízení ({device})" -#: netbox/dcim/models/device_components.py:791 +#: dcim/models/device_components.py:791 #, python-brace-format msgid "" "The selected parent interface ({interface}) belongs to {device}, which is " @@ -5619,7 +5175,7 @@ msgstr "" "Vybrané nadřazené rozhraní ({interface}) patří {device}, která není součástí" " virtuálního podvozku {virtual_chassis}." -#: netbox/dcim/models/device_components.py:811 +#: dcim/models/device_components.py:811 #, python-brace-format msgid "" "The selected bridge interface ({bridge}) belongs to a different device " @@ -5627,7 +5183,7 @@ msgid "" msgstr "" "Vybrané rozhraní můstku ({bridge}) patří k jinému zařízení ({device})." -#: netbox/dcim/models/device_components.py:817 +#: dcim/models/device_components.py:817 #, python-brace-format msgid "" "The selected bridge interface ({interface}) belongs to {device}, which is " @@ -5636,21 +5192,21 @@ msgstr "" "Vybrané rozhraní můstku ({interface}) patří {device}, která není součástí " "virtuálního podvozku {virtual_chassis}." -#: netbox/dcim/models/device_components.py:828 +#: dcim/models/device_components.py:828 msgid "Virtual interfaces cannot have a parent LAG interface." msgstr "Virtuální rozhraní nemohou mít nadřazené rozhraní LAG." -#: netbox/dcim/models/device_components.py:832 +#: dcim/models/device_components.py:832 msgid "A LAG interface cannot be its own parent." msgstr "Rozhraní MAS nemůže být vlastním rodičem." -#: netbox/dcim/models/device_components.py:839 +#: dcim/models/device_components.py:839 #, python-brace-format msgid "" "The selected LAG interface ({lag}) belongs to a different device ({device})." msgstr "Vybrané rozhraní LAG ({lag}) patří k jinému zařízení ({device})." -#: netbox/dcim/models/device_components.py:845 +#: dcim/models/device_components.py:845 #, python-brace-format msgid "" "The selected LAG interface ({lag}) belongs to {device}, which is not part of" @@ -5659,44 +5215,44 @@ msgstr "" "Vybrané rozhraní LAG ({lag}) patří {device}, která není součástí virtuálního" " podvozku {virtual_chassis}." -#: netbox/dcim/models/device_components.py:856 +#: dcim/models/device_components.py:856 msgid "Virtual interfaces cannot have a PoE mode." msgstr "Virtuální rozhraní nemohou mít režim PoE." -#: netbox/dcim/models/device_components.py:860 +#: dcim/models/device_components.py:860 msgid "Virtual interfaces cannot have a PoE type." msgstr "Virtuální rozhraní nemohou mít typ PoE." -#: netbox/dcim/models/device_components.py:866 +#: dcim/models/device_components.py:866 msgid "Must specify PoE mode when designating a PoE type." msgstr "Při určování typu PoE musí specifikovat režim PoE." -#: netbox/dcim/models/device_components.py:873 +#: dcim/models/device_components.py:873 msgid "Wireless role may be set only on wireless interfaces." msgstr "" "Role bezdrátové sítě může být nastavena pouze na bezdrátových rozhraních." -#: netbox/dcim/models/device_components.py:875 +#: dcim/models/device_components.py:875 msgid "Channel may be set only on wireless interfaces." msgstr "Kanál lze nastavit pouze na bezdrátových rozhraních." -#: netbox/dcim/models/device_components.py:881 +#: dcim/models/device_components.py:881 msgid "Channel frequency may be set only on wireless interfaces." msgstr "Frekvence kanálu může být nastavena pouze na bezdrátových rozhraních." -#: netbox/dcim/models/device_components.py:885 +#: dcim/models/device_components.py:885 msgid "Cannot specify custom frequency with channel selected." msgstr "Nelze určit vlastní frekvenci s vybraným kanálem." -#: netbox/dcim/models/device_components.py:891 +#: dcim/models/device_components.py:891 msgid "Channel width may be set only on wireless interfaces." msgstr "Šířku kanálu lze nastavit pouze na bezdrátových rozhraních." -#: netbox/dcim/models/device_components.py:893 +#: dcim/models/device_components.py:893 msgid "Cannot specify custom width with channel selected." msgstr "Nelze určit vlastní šířku s vybraným kanálem." -#: netbox/dcim/models/device_components.py:901 +#: dcim/models/device_components.py:901 #, python-brace-format msgid "" "The untagged VLAN ({untagged_vlan}) must belong to the same site as the " @@ -5705,24 +5261,24 @@ 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í." -#: netbox/dcim/models/device_components.py:990 +#: dcim/models/device_components.py:990 msgid "Mapped position on corresponding rear port" msgstr "Mapovaná poloha na odpovídajícím zadním portu" -#: netbox/dcim/models/device_components.py:1006 +#: dcim/models/device_components.py:1006 msgid "front port" msgstr "přední port" -#: netbox/dcim/models/device_components.py:1007 +#: dcim/models/device_components.py:1007 msgid "front ports" msgstr "přední porty" -#: netbox/dcim/models/device_components.py:1021 +#: dcim/models/device_components.py:1021 #, python-brace-format msgid "Rear port ({rear_port}) must belong to the same device" msgstr "Zadní port ({rear_port}) musí patřit ke stejnému zařízení" -#: netbox/dcim/models/device_components.py:1029 +#: dcim/models/device_components.py:1029 #, python-brace-format msgid "" "Invalid rear port position ({rear_port_position}): Rear port {name} has only" @@ -5731,19 +5287,19 @@ msgstr "" "Neplatná poloha zadního portu ({rear_port_position}): Zadní port {name} má " "pouze {positions} pozice." -#: netbox/dcim/models/device_components.py:1059 +#: dcim/models/device_components.py:1059 msgid "Number of front ports which may be mapped" msgstr "Počet předních portů, které lze mapovat" -#: netbox/dcim/models/device_components.py:1064 +#: dcim/models/device_components.py:1064 msgid "rear port" msgstr "zadní port" -#: netbox/dcim/models/device_components.py:1065 +#: dcim/models/device_components.py:1065 msgid "rear ports" msgstr "zadní porty" -#: netbox/dcim/models/device_components.py:1079 +#: dcim/models/device_components.py:1079 #, python-brace-format msgid "" "The number of positions cannot be less than the number of mapped front ports" @@ -5752,150 +5308,147 @@ msgstr "" "Počet pozic nesmí být menší než počet mapovaných předních portů " "({frontport_count})" -#: netbox/dcim/models/device_components.py:1120 +#: dcim/models/device_components.py:1120 msgid "module bay" msgstr "přihrádka modulů" -#: netbox/dcim/models/device_components.py:1121 +#: dcim/models/device_components.py:1121 msgid "module bays" msgstr "pozice modulů" -#: netbox/dcim/models/device_components.py:1138 -#: netbox/dcim/models/devices.py:1224 +#: dcim/models/device_components.py:1138 dcim/models/devices.py:1224 msgid "A module bay cannot belong to a module installed within it." msgstr "Pozice modulu nemůže patřit k modulu nainstalovanému v ní." -#: netbox/dcim/models/device_components.py:1164 +#: dcim/models/device_components.py:1164 msgid "device bay" msgstr "pozice zařízení" -#: netbox/dcim/models/device_components.py:1165 +#: dcim/models/device_components.py:1165 msgid "device bays" msgstr "pozice zařízení" -#: netbox/dcim/models/device_components.py:1175 +#: dcim/models/device_components.py:1175 #, python-brace-format msgid "This type of device ({device_type}) does not support device bays." msgstr "Tento typ zařízení ({device_type}) nepodporuje pozice zařízení." -#: netbox/dcim/models/device_components.py:1181 +#: dcim/models/device_components.py:1181 msgid "Cannot install a device into itself." msgstr "Nelze nainstalovat zařízení do sebe." -#: netbox/dcim/models/device_components.py:1189 +#: dcim/models/device_components.py:1189 #, python-brace-format msgid "" "Cannot install the specified device; device is already installed in {bay}." msgstr "" "Nelze nainstalovat určené zařízení; zařízení je již nainstalováno {bay}." -#: netbox/dcim/models/device_components.py:1210 +#: dcim/models/device_components.py:1210 msgid "inventory item role" msgstr "role položky inventáře" -#: netbox/dcim/models/device_components.py:1211 +#: dcim/models/device_components.py:1211 msgid "inventory item roles" msgstr "role položek zásob" -#: netbox/dcim/models/device_components.py:1268 -#: netbox/dcim/models/devices.py:607 netbox/dcim/models/devices.py:1181 -#: netbox/dcim/models/racks.py:313 -#: netbox/virtualization/models/virtualmachines.py:131 +#: dcim/models/device_components.py:1268 dcim/models/devices.py:607 +#: dcim/models/devices.py:1181 dcim/models/racks.py:313 +#: virtualization/models/virtualmachines.py:131 msgid "serial number" msgstr "sériové číslo" -#: netbox/dcim/models/device_components.py:1276 -#: netbox/dcim/models/devices.py:615 netbox/dcim/models/devices.py:1188 -#: netbox/dcim/models/racks.py:320 +#: dcim/models/device_components.py:1276 dcim/models/devices.py:615 +#: dcim/models/devices.py:1188 dcim/models/racks.py:320 msgid "asset tag" msgstr "štítek majetku" -#: netbox/dcim/models/device_components.py:1277 +#: dcim/models/device_components.py:1277 msgid "A unique tag used to identify this item" msgstr "Jedinečná značka použitá k identifikaci této položky" -#: netbox/dcim/models/device_components.py:1280 +#: dcim/models/device_components.py:1280 msgid "discovered" msgstr "objeveny" -#: netbox/dcim/models/device_components.py:1282 +#: dcim/models/device_components.py:1282 msgid "This item was automatically discovered" msgstr "Tato položka byla automaticky objevena" -#: netbox/dcim/models/device_components.py:1300 +#: dcim/models/device_components.py:1300 msgid "inventory item" msgstr "položka inventáře" -#: netbox/dcim/models/device_components.py:1301 +#: dcim/models/device_components.py:1301 msgid "inventory items" msgstr "inventární položky" -#: netbox/dcim/models/device_components.py:1312 +#: dcim/models/device_components.py:1312 msgid "Cannot assign self as parent." msgstr "Nelze přiřadit sebe jako rodiče." -#: netbox/dcim/models/device_components.py:1320 +#: dcim/models/device_components.py:1320 msgid "Parent inventory item does not belong to the same device." msgstr "Nadřazená položka inventáře nepatří do stejného zařízení." -#: netbox/dcim/models/device_components.py:1326 +#: dcim/models/device_components.py:1326 msgid "Cannot move an inventory item with dependent children" msgstr "Nelze přesunout položku inventáře se závislými podřízenými" -#: netbox/dcim/models/device_components.py:1334 +#: dcim/models/device_components.py:1334 msgid "Cannot assign inventory item to component on another device" msgstr "Nelze přiřadit skladovou položku ke komponentě na jiném zařízení" -#: netbox/dcim/models/devices.py:54 +#: dcim/models/devices.py:54 msgid "manufacturer" msgstr "výrobce" -#: netbox/dcim/models/devices.py:55 +#: dcim/models/devices.py:55 msgid "manufacturers" msgstr "výrobci" -#: netbox/dcim/models/devices.py:82 netbox/dcim/models/devices.py:382 -#: netbox/dcim/models/racks.py:133 +#: dcim/models/devices.py:82 dcim/models/devices.py:382 +#: dcim/models/racks.py:133 msgid "model" msgstr "modelka" -#: netbox/dcim/models/devices.py:95 +#: dcim/models/devices.py:95 msgid "default platform" msgstr "výchozí platforma" -#: netbox/dcim/models/devices.py:98 netbox/dcim/models/devices.py:386 +#: dcim/models/devices.py:98 dcim/models/devices.py:386 msgid "part number" msgstr "číslo dílu" -#: netbox/dcim/models/devices.py:101 netbox/dcim/models/devices.py:389 +#: dcim/models/devices.py:101 dcim/models/devices.py:389 msgid "Discrete part number (optional)" msgstr "Diskrétní číslo dílu (volitelné)" -#: netbox/dcim/models/devices.py:107 netbox/dcim/models/racks.py:54 +#: dcim/models/devices.py:107 dcim/models/racks.py:54 msgid "height (U)" msgstr "výška (U)" -#: netbox/dcim/models/devices.py:111 +#: dcim/models/devices.py:111 msgid "exclude from utilization" msgstr "vyloučit z využití" -#: netbox/dcim/models/devices.py:112 +#: dcim/models/devices.py:112 msgid "Devices of this type are excluded when calculating rack utilization." msgstr "Zařízení tohoto typu jsou vyloučena při výpočtu využití stojanu." -#: netbox/dcim/models/devices.py:116 +#: dcim/models/devices.py:116 msgid "is full depth" msgstr "je plná hloubka" -#: netbox/dcim/models/devices.py:117 +#: dcim/models/devices.py:117 msgid "Device consumes both front and rear rack faces." msgstr "Zařízení spotřebovává přední i zadní stranu stojanu." -#: netbox/dcim/models/devices.py:123 +#: dcim/models/devices.py:123 msgid "parent/child status" msgstr "stav rodiče/dítěte" -#: netbox/dcim/models/devices.py:124 +#: dcim/models/devices.py:124 msgid "" "Parent devices house child devices in device bays. Leave blank if this " "device type is neither a parent nor a child." @@ -5903,24 +5456,24 @@ msgstr "" "Rodičovská zařízení ukládají podřízená zařízení do pozic zařízení. Pokud " "tento typ zařízení není rodičem ani dítětem, ponechte prázdné." -#: netbox/dcim/models/devices.py:128 netbox/dcim/models/devices.py:392 -#: netbox/dcim/models/devices.py:659 netbox/dcim/models/racks.py:324 +#: dcim/models/devices.py:128 dcim/models/devices.py:392 +#: dcim/models/devices.py:659 dcim/models/racks.py:324 msgid "airflow" msgstr "proud vzduchu" -#: netbox/dcim/models/devices.py:204 +#: dcim/models/devices.py:204 msgid "device type" msgstr "typ zařízení" -#: netbox/dcim/models/devices.py:205 +#: dcim/models/devices.py:205 msgid "device types" msgstr "typy zařízení" -#: netbox/dcim/models/devices.py:290 +#: dcim/models/devices.py:290 msgid "U height must be in increments of 0.5 rack units." msgstr "Výška U musí být v krocích po 0,5 regálových jednotek." -#: netbox/dcim/models/devices.py:307 +#: dcim/models/devices.py:307 #, python-brace-format msgid "" "Device {device} in rack {rack} does not have sufficient space to accommodate" @@ -5929,7 +5482,7 @@ msgstr "" "Zařízení {device} v stojanu {rack} nemá dostatek prostoru pro umístění výšky" " {height}U" -#: netbox/dcim/models/devices.py:322 +#: dcim/models/devices.py:322 #, python-brace-format msgid "" "Unable to set 0U height: Found {racked_instance_count} " @@ -5938,7 +5491,7 @@ msgstr "" "Nelze nastavit výšku 0U: Nalezeno {racked_instance_count} " "instancí již namontované v regálech." -#: netbox/dcim/models/devices.py:331 +#: dcim/models/devices.py:331 msgid "" "Must delete all device bay templates associated with this device before " "declassifying it as a parent device." @@ -5946,155 +5499,155 @@ msgstr "" "Před odtajněním jako nadřazeného zařízení je nutné odstranit všechny šablony" " rozmístění zařízení přidružené k tomuto zařízení." -#: netbox/dcim/models/devices.py:337 +#: dcim/models/devices.py:337 msgid "Child device types must be 0U." msgstr "Typ dětského zařízení musí být 0U." -#: netbox/dcim/models/devices.py:411 +#: dcim/models/devices.py:411 msgid "module type" msgstr "typ modulu" -#: netbox/dcim/models/devices.py:412 +#: dcim/models/devices.py:412 msgid "module types" msgstr "typy modulů" -#: netbox/dcim/models/devices.py:485 +#: dcim/models/devices.py:485 msgid "Virtual machines may be assigned to this role" msgstr "Virtuální počítače mohou být přiřazeny k této roli" -#: netbox/dcim/models/devices.py:497 +#: dcim/models/devices.py:497 msgid "device role" msgstr "role zařízení" -#: netbox/dcim/models/devices.py:498 +#: dcim/models/devices.py:498 msgid "device roles" msgstr "role zařízení" -#: netbox/dcim/models/devices.py:515 +#: dcim/models/devices.py:515 msgid "Optionally limit this platform to devices of a certain manufacturer" msgstr "Volitelně omezit tuto platformu na zařízení určitého výrobce" -#: netbox/dcim/models/devices.py:527 +#: dcim/models/devices.py:527 msgid "platform" msgstr "platforma" -#: netbox/dcim/models/devices.py:528 +#: dcim/models/devices.py:528 msgid "platforms" msgstr "platformy" -#: netbox/dcim/models/devices.py:576 +#: dcim/models/devices.py:576 msgid "The function this device serves" msgstr "Funkce, kterou toto zařízení slouží" -#: netbox/dcim/models/devices.py:608 +#: dcim/models/devices.py:608 msgid "Chassis serial number, assigned by the manufacturer" msgstr "Sériové číslo podvozku přidělené výrobcem" -#: netbox/dcim/models/devices.py:616 netbox/dcim/models/devices.py:1189 +#: dcim/models/devices.py:616 dcim/models/devices.py:1189 msgid "A unique tag used to identify this device" msgstr "Jedinečná značka použitá k identifikaci tohoto zařízení" -#: netbox/dcim/models/devices.py:643 +#: dcim/models/devices.py:643 msgid "position (U)" msgstr "poloha (U)" -#: netbox/dcim/models/devices.py:650 +#: dcim/models/devices.py:650 msgid "rack face" msgstr "plocha stojanu" -#: netbox/dcim/models/devices.py:670 netbox/dcim/models/devices.py:1415 -#: netbox/virtualization/models/virtualmachines.py:100 +#: dcim/models/devices.py:670 dcim/models/devices.py:1415 +#: virtualization/models/virtualmachines.py:100 msgid "primary IPv4" msgstr "primární IPv4" -#: netbox/dcim/models/devices.py:678 netbox/dcim/models/devices.py:1423 -#: netbox/virtualization/models/virtualmachines.py:108 +#: dcim/models/devices.py:678 dcim/models/devices.py:1423 +#: virtualization/models/virtualmachines.py:108 msgid "primary IPv6" msgstr "primární IPv6" -#: netbox/dcim/models/devices.py:686 +#: dcim/models/devices.py:686 msgid "out-of-band IP" msgstr "IP mimo pásmo" -#: netbox/dcim/models/devices.py:703 +#: dcim/models/devices.py:703 msgid "VC position" msgstr "Pozice VC" -#: netbox/dcim/models/devices.py:706 +#: dcim/models/devices.py:706 msgid "Virtual chassis position" msgstr "Virtuální poloha podvozku" -#: netbox/dcim/models/devices.py:709 +#: dcim/models/devices.py:709 msgid "VC priority" msgstr "Priorita VC" -#: netbox/dcim/models/devices.py:713 +#: dcim/models/devices.py:713 msgid "Virtual chassis master election priority" msgstr "Priorita volby hlavního virtuálního šasi" -#: netbox/dcim/models/devices.py:716 netbox/dcim/models/sites.py:207 +#: dcim/models/devices.py:716 dcim/models/sites.py:207 msgid "latitude" msgstr "zeměpisná šířka" -#: netbox/dcim/models/devices.py:721 netbox/dcim/models/devices.py:729 -#: netbox/dcim/models/sites.py:212 netbox/dcim/models/sites.py:220 +#: dcim/models/devices.py:721 dcim/models/devices.py:729 +#: dcim/models/sites.py:212 dcim/models/sites.py:220 msgid "GPS coordinate in decimal format (xx.yyyyyy)" msgstr "Souřadnice GPS v desetinném formátu (xx.rrrrrr)" -#: netbox/dcim/models/devices.py:724 netbox/dcim/models/sites.py:215 +#: dcim/models/devices.py:724 dcim/models/sites.py:215 msgid "longitude" msgstr "zeměpisná délka" -#: netbox/dcim/models/devices.py:797 +#: dcim/models/devices.py:797 msgid "Device name must be unique per site." msgstr "Název zařízení musí být pro každou lokalitu jedinečný." -#: netbox/dcim/models/devices.py:808 netbox/ipam/models/services.py:75 +#: dcim/models/devices.py:808 ipam/models/services.py:75 msgid "device" msgstr "zařízení" -#: netbox/dcim/models/devices.py:809 +#: dcim/models/devices.py:809 msgid "devices" msgstr "zařízení" -#: netbox/dcim/models/devices.py:835 +#: dcim/models/devices.py:835 #, python-brace-format msgid "Rack {rack} does not belong to site {site}." msgstr "Stojan {rack} nepatří k webu {site}." -#: netbox/dcim/models/devices.py:840 +#: dcim/models/devices.py:840 #, python-brace-format msgid "Location {location} does not belong to site {site}." msgstr "Lokace {location} nepatří k webu {site}." -#: netbox/dcim/models/devices.py:846 +#: dcim/models/devices.py:846 #, python-brace-format msgid "Rack {rack} does not belong to location {location}." msgstr "Stojan {rack} nepatří do lokality {location}." -#: netbox/dcim/models/devices.py:853 +#: dcim/models/devices.py:853 msgid "Cannot select a rack face without assigning a rack." msgstr "Nelze vybrat plochu stojanu bez přiřazení stojanu." -#: netbox/dcim/models/devices.py:857 +#: dcim/models/devices.py:857 msgid "Cannot select a rack position without assigning a rack." msgstr "Bez přiřazení stojanu nelze vybrat polohu stojanu." -#: netbox/dcim/models/devices.py:863 +#: dcim/models/devices.py:863 msgid "Position must be in increments of 0.5 rack units." msgstr "Poloha musí být v krocích po 0,5 regálových jednotek." -#: netbox/dcim/models/devices.py:867 +#: dcim/models/devices.py:867 msgid "Must specify rack face when defining rack position." msgstr "Při definování polohy stojanu je nutné zadat plochu stojanu." -#: netbox/dcim/models/devices.py:875 +#: dcim/models/devices.py:875 #, python-brace-format msgid "" "A 0U device type ({device_type}) cannot be assigned to a rack position." msgstr "Typ zařízení 0U ({device_type}) nelze přiřadit k poloze stojanu." -#: netbox/dcim/models/devices.py:886 +#: dcim/models/devices.py:886 msgid "" "Child device types cannot be assigned to a rack face. This is an attribute " "of the parent device." @@ -6102,7 +5655,7 @@ msgstr "" "Podřízené typy zařízení nelze přiřadit k ploše stojanu. Toto je atribut " "nadřazeného zařízení." -#: netbox/dcim/models/devices.py:893 +#: dcim/models/devices.py:893 msgid "" "Child device types cannot be assigned to a rack position. This is an " "attribute of the parent device." @@ -6110,7 +5663,7 @@ msgstr "" "Podřízené typy zařízení nelze přiřadit k poloze stojanu. Toto je atribut " "nadřazeného zařízení." -#: netbox/dcim/models/devices.py:907 +#: dcim/models/devices.py:907 #, python-brace-format msgid "" "U{position} is already occupied or does not have sufficient space to " @@ -6119,22 +5672,22 @@ msgstr "" "U{position} je již obsazeno nebo nemá dostatek místa pro umístění tohoto " "typu zařízení: {device_type} ({u_height}U)" -#: netbox/dcim/models/devices.py:922 +#: dcim/models/devices.py:922 #, python-brace-format msgid "{ip} is not an IPv4 address." msgstr "{ip} Nejedná se o IPv4 adresu." -#: netbox/dcim/models/devices.py:931 netbox/dcim/models/devices.py:946 +#: dcim/models/devices.py:931 dcim/models/devices.py:946 #, python-brace-format msgid "The specified IP address ({ip}) is not assigned to this device." msgstr "Zadaná adresa IP ({ip}) není přiřazen k tomuto zařízení." -#: netbox/dcim/models/devices.py:937 +#: dcim/models/devices.py:937 #, python-brace-format msgid "{ip} is not an IPv6 address." msgstr "{ip} Nejedná se o IPv6 adresu." -#: netbox/dcim/models/devices.py:964 +#: dcim/models/devices.py:964 #, python-brace-format msgid "" "The assigned platform is limited to {platform_manufacturer} device types, " @@ -6143,16 +5696,16 @@ msgstr "" "Přiřazená platforma je omezena na {platform_manufacturer} typy zařízení, ale" " tento typ zařízení patří {devicetype_manufacturer}." -#: netbox/dcim/models/devices.py:975 +#: dcim/models/devices.py:975 #, python-brace-format msgid "The assigned cluster belongs to a different site ({site})" msgstr "Přiřazený cluster patří do jiné lokality ({site})" -#: netbox/dcim/models/devices.py:983 +#: dcim/models/devices.py:983 msgid "A device assigned to a virtual chassis must have its position defined." msgstr "Zařízení přiřazené k virtuálnímu šasi musí mít definovanou polohu." -#: netbox/dcim/models/devices.py:988 +#: dcim/models/devices.py:988 #, python-brace-format msgid "" "Device cannot be removed from virtual chassis {virtual_chassis} because it " @@ -6161,15 +5714,15 @@ msgstr "" "Zařízení nelze odebrat z virtuálního šasi {virtual_chassis} protože je v " "současné době označen jako jeho pán." -#: netbox/dcim/models/devices.py:1196 +#: dcim/models/devices.py:1196 msgid "module" msgstr "modul" -#: netbox/dcim/models/devices.py:1197 +#: dcim/models/devices.py:1197 msgid "modules" msgstr "moduly" -#: netbox/dcim/models/devices.py:1213 +#: dcim/models/devices.py:1213 #, python-brace-format msgid "" "Module must be installed within a module bay belonging to the assigned " @@ -6177,22 +5730,22 @@ msgid "" msgstr "" "Modul musí být instalován v modulu patřící přiřazenému zařízení ({device})." -#: netbox/dcim/models/devices.py:1334 +#: dcim/models/devices.py:1334 msgid "domain" msgstr "doména" -#: netbox/dcim/models/devices.py:1347 netbox/dcim/models/devices.py:1348 +#: dcim/models/devices.py:1347 dcim/models/devices.py:1348 msgid "virtual chassis" msgstr "virtuální podvozek" -#: netbox/dcim/models/devices.py:1363 +#: dcim/models/devices.py:1363 #, python-brace-format msgid "" "The selected master ({master}) is not assigned to this virtual chassis." msgstr "" "Vybraný master ({master}) není přiřazena k tomuto virtuálnímu podvozku." -#: netbox/dcim/models/devices.py:1379 +#: dcim/models/devices.py:1379 #, python-brace-format msgid "" "Unable to delete virtual chassis {self}. There are member interfaces which " @@ -6201,102 +5754,102 @@ msgstr "" "Nelze odstranit virtuální šasi {self}. Existují členská rozhraní, která " "tvoří rozhraní LAG napříč podvozky." -#: netbox/dcim/models/devices.py:1404 netbox/vpn/models/l2vpn.py:37 +#: dcim/models/devices.py:1404 vpn/models/l2vpn.py:37 msgid "identifier" msgstr "identifikátor" -#: netbox/dcim/models/devices.py:1405 +#: dcim/models/devices.py:1405 msgid "Numeric identifier unique to the parent device" msgstr "Numerický identifikátor jedinečný pro nadřazené zařízení" -#: netbox/dcim/models/devices.py:1433 netbox/extras/models/customfields.py:225 -#: netbox/extras/models/models.py:107 netbox/extras/models/models.py:694 -#: netbox/netbox/models/__init__.py:115 +#: dcim/models/devices.py:1433 extras/models/customfields.py:225 +#: extras/models/models.py:107 extras/models/models.py:694 +#: netbox/models/__init__.py:115 msgid "comments" msgstr "komentáře" -#: netbox/dcim/models/devices.py:1449 +#: dcim/models/devices.py:1449 msgid "virtual device context" msgstr "kontext virtuálního zařízení" -#: netbox/dcim/models/devices.py:1450 +#: dcim/models/devices.py:1450 msgid "virtual device contexts" msgstr "kontexty virtuálních zařízení" -#: netbox/dcim/models/devices.py:1482 +#: dcim/models/devices.py:1482 #, python-brace-format msgid "{ip} is not an IPv{family} address." msgstr "{ip} není IPV{family} adresa." -#: netbox/dcim/models/devices.py:1488 +#: dcim/models/devices.py:1488 msgid "Primary IP address must belong to an interface on the assigned device." msgstr "Primární IP adresa musí patřit k rozhraní na přiřazeném zařízení." -#: netbox/dcim/models/mixins.py:15 netbox/extras/models/configs.py:41 -#: netbox/extras/models/models.py:313 netbox/extras/models/models.py:522 -#: netbox/extras/models/search.py:48 netbox/ipam/models/ip.py:194 +#: dcim/models/mixins.py:15 extras/models/configs.py:41 +#: extras/models/models.py:313 extras/models/models.py:522 +#: extras/models/search.py:48 ipam/models/ip.py:194 msgid "weight" msgstr "váha" -#: netbox/dcim/models/mixins.py:22 +#: dcim/models/mixins.py:22 msgid "weight unit" msgstr "hmotnostní jednotka" -#: netbox/dcim/models/mixins.py:51 +#: dcim/models/mixins.py:51 msgid "Must specify a unit when setting a weight" msgstr "Při nastavování hmotnosti je nutné zadat jednotku" -#: netbox/dcim/models/power.py:55 +#: dcim/models/power.py:55 msgid "power panel" msgstr "napájecí panel" -#: netbox/dcim/models/power.py:56 +#: dcim/models/power.py:56 msgid "power panels" msgstr "napájecí panely" -#: netbox/dcim/models/power.py:70 +#: dcim/models/power.py:70 #, 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}" -#: netbox/dcim/models/power.py:108 +#: dcim/models/power.py:108 msgid "supply" msgstr "zásobování" -#: netbox/dcim/models/power.py:114 +#: dcim/models/power.py:114 msgid "phase" msgstr "fáze" -#: netbox/dcim/models/power.py:120 +#: dcim/models/power.py:120 msgid "voltage" msgstr "napětí" -#: netbox/dcim/models/power.py:125 +#: dcim/models/power.py:125 msgid "amperage" msgstr "proud proudu" -#: netbox/dcim/models/power.py:130 +#: dcim/models/power.py:130 msgid "max utilization" msgstr "maximální využití" -#: netbox/dcim/models/power.py:133 +#: dcim/models/power.py:133 msgid "Maximum permissible draw (percentage)" msgstr "Maximální přípustné tažení (v procentech)" -#: netbox/dcim/models/power.py:136 +#: dcim/models/power.py:136 msgid "available power" msgstr "dostupný výkon" -#: netbox/dcim/models/power.py:164 +#: dcim/models/power.py:164 msgid "power feed" msgstr "napájecí zdroj" -#: netbox/dcim/models/power.py:165 +#: dcim/models/power.py:165 msgid "power feeds" msgstr "napájecí zdroje" -#: netbox/dcim/models/power.py:179 +#: dcim/models/power.py:179 #, python-brace-format msgid "" "Rack {rack} ({rack_site}) and power panel {powerpanel} ({powerpanel_site}) " @@ -6305,63 +5858,63 @@ msgstr "" "Stojan {rack} ({rack_site}) a napájecí panel {powerpanel} " "({powerpanel_site}) jsou na různých místech." -#: netbox/dcim/models/power.py:190 +#: dcim/models/power.py:190 msgid "Voltage cannot be negative for AC supply" msgstr "Napětí nemůže být záporné pro napájení střídavým proudem" -#: netbox/dcim/models/racks.py:47 +#: dcim/models/racks.py:47 msgid "width" msgstr "Šířka" -#: netbox/dcim/models/racks.py:48 +#: dcim/models/racks.py:48 msgid "Rail-to-rail width" msgstr "Šířka kolejnice k kolejnici" -#: netbox/dcim/models/racks.py:56 +#: dcim/models/racks.py:56 msgid "Height in rack units" msgstr "Výška v regálových jednotkách" -#: netbox/dcim/models/racks.py:60 +#: dcim/models/racks.py:60 msgid "starting unit" msgstr "startovací jednotka" -#: netbox/dcim/models/racks.py:62 +#: dcim/models/racks.py:62 msgid "Starting unit for rack" msgstr "Startovací jednotka pro regál" -#: netbox/dcim/models/racks.py:66 +#: dcim/models/racks.py:66 msgid "descending units" msgstr "sestupné jednotky" -#: netbox/dcim/models/racks.py:67 +#: dcim/models/racks.py:67 msgid "Units are numbered top-to-bottom" msgstr "Jednotky jsou číslovány shora dolů" -#: netbox/dcim/models/racks.py:72 +#: dcim/models/racks.py:72 msgid "outer width" msgstr "vnější šířka" -#: netbox/dcim/models/racks.py:75 +#: dcim/models/racks.py:75 msgid "Outer dimension of rack (width)" msgstr "Vnější rozměr stojanu (šířka)" -#: netbox/dcim/models/racks.py:78 +#: dcim/models/racks.py:78 msgid "outer depth" msgstr "vnější hloubka" -#: netbox/dcim/models/racks.py:81 +#: dcim/models/racks.py:81 msgid "Outer dimension of rack (depth)" msgstr "Vnější rozměr stojanu (hloubka)" -#: netbox/dcim/models/racks.py:84 +#: dcim/models/racks.py:84 msgid "outer unit" msgstr "vnější jednotka" -#: netbox/dcim/models/racks.py:90 +#: dcim/models/racks.py:90 msgid "mounting depth" msgstr "montážní hloubka" -#: netbox/dcim/models/racks.py:94 +#: dcim/models/racks.py:94 msgid "" "Maximum depth of a mounted device, in millimeters. For four-post racks, this" " is the distance between the front and rear rails." @@ -6369,75 +5922,74 @@ msgstr "" "Maximální hloubka namontovaného zařízení v milimetrech. U čtyřsloupkových " "regálů se jedná o vzdálenost mezi přední a zadní kolejnicí." -#: netbox/dcim/models/racks.py:102 +#: dcim/models/racks.py:102 msgid "max weight" msgstr "max. hmotnost" -#: netbox/dcim/models/racks.py:105 +#: dcim/models/racks.py:105 msgid "Maximum load capacity for the rack" msgstr "Maximální nosnost stojanu" -#: netbox/dcim/models/racks.py:125 netbox/dcim/models/racks.py:252 +#: dcim/models/racks.py:125 dcim/models/racks.py:252 msgid "form factor" msgstr "tvarový faktor" -#: netbox/dcim/models/racks.py:162 +#: dcim/models/racks.py:162 msgid "rack type" msgstr "typ stojanu" -#: netbox/dcim/models/racks.py:163 +#: dcim/models/racks.py:163 msgid "rack types" msgstr "typy stojanů" -#: netbox/dcim/models/racks.py:180 netbox/dcim/models/racks.py:379 +#: dcim/models/racks.py:180 dcim/models/racks.py:379 msgid "Must specify a unit when setting an outer width/depth" msgstr "Při nastavování vnější šířky/hloubky musí zadat jednotku" -#: netbox/dcim/models/racks.py:184 netbox/dcim/models/racks.py:383 +#: dcim/models/racks.py:184 dcim/models/racks.py:383 msgid "Must specify a unit when setting a maximum weight" msgstr "Při nastavování maximální hmotnosti musí specifikovat jednotku" -#: netbox/dcim/models/racks.py:230 +#: dcim/models/racks.py:230 msgid "rack role" msgstr "role stojanu" -#: netbox/dcim/models/racks.py:231 +#: dcim/models/racks.py:231 msgid "rack roles" msgstr "role stojanu" -#: netbox/dcim/models/racks.py:274 +#: dcim/models/racks.py:274 msgid "facility ID" msgstr "ID zařízení" -#: netbox/dcim/models/racks.py:275 +#: dcim/models/racks.py:275 msgid "Locally-assigned identifier" msgstr "Lokálně přiřazený identifikátor" -#: netbox/dcim/models/racks.py:308 netbox/ipam/forms/bulk_import.py:201 -#: netbox/ipam/forms/bulk_import.py:266 netbox/ipam/forms/bulk_import.py:301 -#: netbox/ipam/forms/bulk_import.py:459 -#: netbox/virtualization/forms/bulk_import.py:112 +#: dcim/models/racks.py:308 ipam/forms/bulk_import.py:201 +#: ipam/forms/bulk_import.py:266 ipam/forms/bulk_import.py:301 +#: ipam/forms/bulk_import.py:459 virtualization/forms/bulk_import.py:112 msgid "Functional role" msgstr "Funkční role" -#: netbox/dcim/models/racks.py:321 +#: dcim/models/racks.py:321 msgid "A unique tag used to identify this rack" msgstr "Jedinečná značka použitá k identifikaci tohoto stojanu" -#: netbox/dcim/models/racks.py:359 +#: dcim/models/racks.py:359 msgid "rack" msgstr "nosič" -#: netbox/dcim/models/racks.py:360 +#: dcim/models/racks.py:360 msgid "racks" msgstr "regály" -#: netbox/dcim/models/racks.py:375 +#: dcim/models/racks.py:375 #, 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})." -#: netbox/dcim/models/racks.py:393 +#: dcim/models/racks.py:393 #, python-brace-format msgid "" "Rack must be at least {min_height}U tall to house currently installed " @@ -6446,7 +5998,7 @@ msgstr "" "Stojan musí být alespoň {min_height}U vysoký k uložení aktuálně " "nainstalovaných zařízení." -#: netbox/dcim/models/racks.py:400 +#: dcim/models/racks.py:400 #, python-brace-format msgid "" "Rack unit numbering must begin at {position} or less to house currently " @@ -6455,1239 +6007,1154 @@ msgstr "" "Číslování regálových jednotek musí začínat na {position} nebo méně pro " "umístění aktuálně nainstalovaných zařízení." -#: netbox/dcim/models/racks.py:408 +#: dcim/models/racks.py:408 #, 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}." -#: netbox/dcim/models/racks.py:670 +#: dcim/models/racks.py:670 msgid "units" msgstr "jednotky" -#: netbox/dcim/models/racks.py:696 +#: dcim/models/racks.py:696 msgid "rack reservation" msgstr "rezervace stojanu" -#: netbox/dcim/models/racks.py:697 +#: dcim/models/racks.py:697 msgid "rack reservations" msgstr "rezervace stojanů" -#: netbox/dcim/models/racks.py:714 +#: dcim/models/racks.py:714 #, python-brace-format msgid "Invalid unit(s) for {height}U rack: {unit_list}" msgstr "Neplatná jednotka (y) pro {height}U stojan: {unit_list}" -#: netbox/dcim/models/racks.py:727 +#: dcim/models/racks.py:727 #, python-brace-format msgid "The following units have already been reserved: {unit_list}" msgstr "Následující jednotky již byly rezervovány: {unit_list}" -#: netbox/dcim/models/sites.py:49 +#: dcim/models/sites.py:49 msgid "A top-level region with this name already exists." msgstr "Oblast nejvyšší úrovně s tímto názvem již existuje." -#: netbox/dcim/models/sites.py:59 +#: dcim/models/sites.py:59 msgid "A top-level region with this slug already exists." msgstr "Oblast nejvyšší úrovně s tímto slimákem již existuje." -#: netbox/dcim/models/sites.py:62 +#: dcim/models/sites.py:62 msgid "region" msgstr "region" -#: netbox/dcim/models/sites.py:63 +#: dcim/models/sites.py:63 msgid "regions" msgstr "regiony" -#: netbox/dcim/models/sites.py:102 +#: dcim/models/sites.py:102 msgid "A top-level site group with this name already exists." msgstr "Skupina webů nejvyšší úrovně s tímto názvem již existuje." -#: netbox/dcim/models/sites.py:112 +#: dcim/models/sites.py:112 msgid "A top-level site group with this slug already exists." msgstr "Skupina webů nejvyšší úrovně s tímto slimákem již existuje." -#: netbox/dcim/models/sites.py:115 +#: dcim/models/sites.py:115 msgid "site group" msgstr "skupina stránek" -#: netbox/dcim/models/sites.py:116 +#: dcim/models/sites.py:116 msgid "site groups" msgstr "skupiny webů" -#: netbox/dcim/models/sites.py:141 +#: dcim/models/sites.py:141 msgid "Full name of the site" msgstr "Úplný název webu" -#: netbox/dcim/models/sites.py:181 netbox/dcim/models/sites.py:279 +#: dcim/models/sites.py:181 dcim/models/sites.py:279 msgid "facility" msgstr "zařízení" -#: netbox/dcim/models/sites.py:184 netbox/dcim/models/sites.py:282 +#: dcim/models/sites.py:184 dcim/models/sites.py:282 msgid "Local facility ID or description" msgstr "ID nebo popis místního zařízení" -#: netbox/dcim/models/sites.py:195 +#: dcim/models/sites.py:195 msgid "physical address" msgstr "fyzická adresa" -#: netbox/dcim/models/sites.py:198 +#: dcim/models/sites.py:198 msgid "Physical location of the building" msgstr "Fyzické umístění budovy" -#: netbox/dcim/models/sites.py:201 +#: dcim/models/sites.py:201 msgid "shipping address" msgstr "dodací adresa" -#: netbox/dcim/models/sites.py:204 +#: dcim/models/sites.py:204 msgid "If different from the physical address" msgstr "Pokud se liší od fyzické adresy" -#: netbox/dcim/models/sites.py:238 +#: dcim/models/sites.py:238 msgid "site" msgstr "stránky" -#: netbox/dcim/models/sites.py:239 +#: dcim/models/sites.py:239 msgid "sites" msgstr "stránky" -#: netbox/dcim/models/sites.py:309 +#: dcim/models/sites.py:309 msgid "A location with this name already exists within the specified site." msgstr "Umístění s tímto názvem již existuje v zadaném webu." -#: netbox/dcim/models/sites.py:319 +#: dcim/models/sites.py:319 msgid "A location with this slug already exists within the specified site." msgstr "Umístění s tímto slimákem již existuje v zadaném webu." -#: netbox/dcim/models/sites.py:322 +#: dcim/models/sites.py:322 msgid "location" msgstr "lokace" -#: netbox/dcim/models/sites.py:323 +#: dcim/models/sites.py:323 msgid "locations" msgstr "lokalitách" -#: netbox/dcim/models/sites.py:337 +#: dcim/models/sites.py:337 #, python-brace-format msgid "Parent location ({parent}) must belong to the same site ({site})." msgstr "Rodičovská lokalita ({parent}) musí patřit ke stejnému webu ({site})." -#: netbox/dcim/tables/cables.py:55 +#: dcim/tables/cables.py:55 msgid "Termination A" msgstr "Ukončení A" -#: netbox/dcim/tables/cables.py:60 +#: dcim/tables/cables.py:60 msgid "Termination B" msgstr "Ukončení B" -#: netbox/dcim/tables/cables.py:66 netbox/wireless/tables/wirelesslink.py:23 +#: dcim/tables/cables.py:66 wireless/tables/wirelesslink.py:23 msgid "Device A" msgstr "Zařízení A" -#: netbox/dcim/tables/cables.py:72 netbox/wireless/tables/wirelesslink.py:32 +#: dcim/tables/cables.py:72 wireless/tables/wirelesslink.py:32 msgid "Device B" msgstr "Zařízení B" -#: netbox/dcim/tables/cables.py:78 +#: dcim/tables/cables.py:78 msgid "Location A" msgstr "Lokalita A" -#: netbox/dcim/tables/cables.py:84 +#: dcim/tables/cables.py:84 msgid "Location B" msgstr "Lokalita B" -#: netbox/dcim/tables/cables.py:90 +#: dcim/tables/cables.py:90 msgid "Rack A" msgstr "Stojan A" -#: netbox/dcim/tables/cables.py:96 +#: dcim/tables/cables.py:96 msgid "Rack B" msgstr "Stojan B" -#: netbox/dcim/tables/cables.py:102 +#: dcim/tables/cables.py:102 msgid "Site A" msgstr "Stránky A" -#: netbox/dcim/tables/cables.py:108 +#: dcim/tables/cables.py:108 msgid "Site B" msgstr "Místo B" -#: netbox/dcim/tables/connections.py:31 netbox/dcim/tables/connections.py:50 -#: netbox/dcim/tables/connections.py:71 -#: netbox/templates/dcim/inc/connection_endpoints.html:16 +#: dcim/tables/connections.py:31 dcim/tables/connections.py:50 +#: dcim/tables/connections.py:71 +#: templates/dcim/inc/connection_endpoints.html:16 msgid "Reachable" msgstr "Dosažitelný" -#: netbox/dcim/tables/devices.py:58 netbox/dcim/tables/devices.py:106 -#: netbox/dcim/tables/racks.py:150 netbox/dcim/tables/sites.py:105 -#: netbox/dcim/tables/sites.py:148 netbox/extras/tables/tables.py:545 -#: netbox/netbox/navigation/menu.py:69 netbox/netbox/navigation/menu.py:73 -#: netbox/netbox/navigation/menu.py:75 -#: netbox/virtualization/forms/model_forms.py:122 -#: netbox/virtualization/tables/clusters.py:83 -#: netbox/virtualization/views.py:206 +#: dcim/tables/devices.py:58 dcim/tables/devices.py:106 +#: dcim/tables/racks.py:150 dcim/tables/sites.py:105 dcim/tables/sites.py:148 +#: extras/tables/tables.py:545 netbox/navigation/menu.py:69 +#: netbox/navigation/menu.py:73 netbox/navigation/menu.py:75 +#: virtualization/forms/model_forms.py:122 +#: virtualization/tables/clusters.py:83 virtualization/views.py:206 msgid "Devices" msgstr "Přístroje" -#: netbox/dcim/tables/devices.py:63 netbox/dcim/tables/devices.py:111 -#: netbox/virtualization/tables/clusters.py:88 +#: dcim/tables/devices.py:63 dcim/tables/devices.py:111 +#: virtualization/tables/clusters.py:88 msgid "VMs" msgstr "Virtuální stroje" -#: netbox/dcim/tables/devices.py:100 netbox/dcim/tables/devices.py:216 -#: netbox/extras/forms/model_forms.py:630 -#: netbox/templates/dcim/device.html:112 -#: netbox/templates/dcim/device/render_config.html:11 -#: netbox/templates/dcim/device/render_config.html:14 -#: netbox/templates/dcim/devicerole.html:44 -#: netbox/templates/dcim/platform.html:41 -#: netbox/templates/extras/configtemplate.html:10 -#: netbox/templates/virtualization/virtualmachine.html:48 -#: netbox/templates/virtualization/virtualmachine/render_config.html:11 -#: netbox/templates/virtualization/virtualmachine/render_config.html:14 -#: netbox/virtualization/tables/virtualmachines.py:107 +#: dcim/tables/devices.py:100 dcim/tables/devices.py:216 +#: extras/forms/model_forms.py:630 templates/dcim/device.html:112 +#: templates/dcim/device/render_config.html:11 +#: templates/dcim/device/render_config.html:14 +#: templates/dcim/devicerole.html:44 templates/dcim/platform.html:41 +#: templates/extras/configtemplate.html:10 +#: templates/virtualization/virtualmachine.html:48 +#: templates/virtualization/virtualmachine/render_config.html:11 +#: templates/virtualization/virtualmachine/render_config.html:14 +#: virtualization/tables/virtualmachines.py:107 msgid "Config Template" msgstr "Konfigurační šablona" -#: netbox/dcim/tables/devices.py:150 netbox/templates/dcim/sitegroup.html:26 +#: dcim/tables/devices.py:150 templates/dcim/sitegroup.html:26 msgid "Site Group" msgstr "Skupina stránek" -#: netbox/dcim/tables/devices.py:187 netbox/dcim/tables/devices.py:1068 -#: netbox/ipam/forms/bulk_import.py:503 netbox/ipam/forms/model_forms.py:306 -#: netbox/ipam/forms/model_forms.py:315 netbox/ipam/tables/ip.py:356 -#: netbox/ipam/tables/ip.py:423 netbox/ipam/tables/ip.py:446 -#: netbox/templates/ipam/ipaddress.html:11 -#: netbox/virtualization/tables/virtualmachines.py:95 +#: dcim/tables/devices.py:187 dcim/tables/devices.py:1068 +#: ipam/forms/bulk_import.py:503 ipam/forms/model_forms.py:306 +#: ipam/forms/model_forms.py:315 ipam/tables/ip.py:356 ipam/tables/ip.py:423 +#: ipam/tables/ip.py:446 templates/ipam/ipaddress.html:11 +#: virtualization/tables/virtualmachines.py:95 msgid "IP Address" msgstr "IP adresa" -#: netbox/dcim/tables/devices.py:191 netbox/dcim/tables/devices.py:1072 -#: netbox/virtualization/tables/virtualmachines.py:86 +#: dcim/tables/devices.py:191 dcim/tables/devices.py:1072 +#: virtualization/tables/virtualmachines.py:86 msgid "IPv4 Address" msgstr "IPv4 Adresa" -#: netbox/dcim/tables/devices.py:195 netbox/dcim/tables/devices.py:1076 -#: netbox/virtualization/tables/virtualmachines.py:90 +#: dcim/tables/devices.py:195 dcim/tables/devices.py:1076 +#: virtualization/tables/virtualmachines.py:90 msgid "IPv6 Address" msgstr "Adresa IPv6" -#: netbox/dcim/tables/devices.py:210 +#: dcim/tables/devices.py:210 msgid "VC Position" msgstr "Pozice VC" -#: netbox/dcim/tables/devices.py:213 +#: dcim/tables/devices.py:213 msgid "VC Priority" msgstr "Priorita VC" -#: netbox/dcim/tables/devices.py:220 netbox/templates/dcim/device_edit.html:38 -#: netbox/templates/dcim/devicebay_populate.html:16 +#: dcim/tables/devices.py:220 templates/dcim/device_edit.html:38 +#: templates/dcim/devicebay_populate.html:16 msgid "Parent Device" msgstr "Rodičovské zařízení" -#: netbox/dcim/tables/devices.py:225 +#: dcim/tables/devices.py:225 msgid "Position (Device Bay)" msgstr "Pozice (pole pro zařízení)" -#: netbox/dcim/tables/devices.py:234 +#: dcim/tables/devices.py:234 msgid "Console ports" msgstr "Porty konzoly" -#: netbox/dcim/tables/devices.py:237 +#: dcim/tables/devices.py:237 msgid "Console server ports" msgstr "Porty konzolového serveru" -#: netbox/dcim/tables/devices.py:240 +#: dcim/tables/devices.py:240 msgid "Power ports" msgstr "Napájecí porty" -#: netbox/dcim/tables/devices.py:243 +#: dcim/tables/devices.py:243 msgid "Power outlets" msgstr "Elektrické zásuvky" -#: netbox/dcim/tables/devices.py:246 netbox/dcim/tables/devices.py:1081 -#: netbox/dcim/tables/devicetypes.py:128 netbox/dcim/views.py:1042 -#: netbox/dcim/views.py:1281 netbox/dcim/views.py:1977 -#: netbox/netbox/navigation/menu.py:94 netbox/netbox/navigation/menu.py:250 -#: netbox/templates/dcim/device/base.html:37 -#: netbox/templates/dcim/device_list.html:43 -#: netbox/templates/dcim/devicetype/base.html:34 -#: netbox/templates/dcim/module.html:34 -#: netbox/templates/dcim/moduletype/base.html:34 -#: netbox/templates/dcim/virtualdevicecontext.html:61 -#: netbox/templates/dcim/virtualdevicecontext.html:81 -#: netbox/templates/virtualization/virtualmachine/base.html:27 -#: netbox/templates/virtualization/virtualmachine_list.html:14 -#: netbox/virtualization/tables/virtualmachines.py:101 -#: netbox/virtualization/views.py:366 netbox/wireless/tables/wirelesslan.py:55 +#: dcim/tables/devices.py:246 dcim/tables/devices.py:1081 +#: dcim/tables/devicetypes.py:128 dcim/views.py:1042 dcim/views.py:1281 +#: dcim/views.py:1977 netbox/navigation/menu.py:94 +#: netbox/navigation/menu.py:250 templates/dcim/device/base.html:37 +#: templates/dcim/device_list.html:43 templates/dcim/devicetype/base.html:34 +#: templates/dcim/inc/moduletype_buttons.html:25 templates/dcim/module.html:34 +#: templates/dcim/virtualdevicecontext.html:61 +#: templates/dcim/virtualdevicecontext.html:81 +#: templates/virtualization/virtualmachine/base.html:27 +#: templates/virtualization/virtualmachine_list.html:14 +#: virtualization/tables/virtualmachines.py:101 virtualization/views.py:366 +#: wireless/tables/wirelesslan.py:55 msgid "Interfaces" msgstr "Rozhraní" -#: netbox/dcim/tables/devices.py:249 +#: dcim/tables/devices.py:249 msgid "Front ports" msgstr "Přední porty" -#: netbox/dcim/tables/devices.py:255 +#: dcim/tables/devices.py:255 msgid "Device bays" msgstr "Pozice zařízení" -#: netbox/dcim/tables/devices.py:258 +#: dcim/tables/devices.py:258 msgid "Module bays" msgstr "Modulové pozice" -#: netbox/dcim/tables/devices.py:261 +#: dcim/tables/devices.py:261 msgid "Inventory items" msgstr "Inventární položky" -#: netbox/dcim/tables/devices.py:305 netbox/dcim/tables/modules.py:56 -#: netbox/templates/dcim/modulebay.html:17 +#: dcim/tables/devices.py:305 dcim/tables/modules.py:56 +#: templates/dcim/modulebay.html:17 msgid "Module Bay" msgstr "Modulová přihrádka" -#: netbox/dcim/tables/devices.py:318 netbox/dcim/tables/devicetypes.py:47 -#: netbox/dcim/tables/devicetypes.py:143 netbox/dcim/views.py:1117 -#: netbox/dcim/views.py:2075 netbox/netbox/navigation/menu.py:103 -#: netbox/templates/dcim/device/base.html:52 -#: netbox/templates/dcim/device_list.html:71 -#: netbox/templates/dcim/devicetype/base.html:49 -#: netbox/templates/dcim/inc/panels/inventory_items.html:6 -#: netbox/templates/dcim/inventoryitemrole.html:32 +#: dcim/tables/devices.py:318 dcim/tables/devicetypes.py:47 +#: dcim/tables/devicetypes.py:143 dcim/views.py:1117 dcim/views.py:2075 +#: netbox/navigation/menu.py:103 templates/dcim/device/base.html:52 +#: templates/dcim/device_list.html:71 templates/dcim/devicetype/base.html:49 +#: templates/dcim/inc/panels/inventory_items.html:6 +#: templates/dcim/inventoryitemrole.html:32 msgid "Inventory Items" msgstr "Inventární položky" -#: netbox/dcim/tables/devices.py:333 +#: dcim/tables/devices.py:333 msgid "Cable Color" msgstr "Barva kabelu" -#: netbox/dcim/tables/devices.py:339 +#: dcim/tables/devices.py:339 msgid "Link Peers" msgstr "Propojit vrstevníky" -#: netbox/dcim/tables/devices.py:342 +#: dcim/tables/devices.py:342 msgid "Mark Connected" msgstr "Označit Připojeno" -#: netbox/dcim/tables/devices.py:461 +#: dcim/tables/devices.py:461 msgid "Maximum draw (W)" msgstr "Maximální tažení (W)" -#: netbox/dcim/tables/devices.py:464 +#: dcim/tables/devices.py:464 msgid "Allocated draw (W)" msgstr "Přidělené losování (W)" -#: netbox/dcim/tables/devices.py:558 netbox/ipam/forms/model_forms.py:701 -#: netbox/ipam/tables/fhrp.py:28 netbox/ipam/views.py:596 -#: netbox/ipam/views.py:696 netbox/netbox/navigation/menu.py:158 -#: netbox/netbox/navigation/menu.py:160 -#: netbox/templates/dcim/interface.html:339 -#: netbox/templates/ipam/ipaddress_bulk_add.html:15 -#: netbox/templates/ipam/service.html:40 -#: netbox/templates/virtualization/vminterface.html:85 -#: netbox/vpn/tables/tunnels.py:98 +#: dcim/tables/devices.py:558 ipam/forms/model_forms.py:701 +#: ipam/tables/fhrp.py:28 ipam/views.py:596 ipam/views.py:696 +#: netbox/navigation/menu.py:158 netbox/navigation/menu.py:160 +#: templates/dcim/interface.html:339 templates/ipam/ipaddress_bulk_add.html:15 +#: templates/ipam/service.html:40 templates/virtualization/vminterface.html:85 +#: vpn/tables/tunnels.py:98 msgid "IP Addresses" msgstr "IP adresy" -#: netbox/dcim/tables/devices.py:564 netbox/netbox/navigation/menu.py:202 -#: netbox/templates/ipam/inc/panels/fhrp_groups.html:6 +#: dcim/tables/devices.py:564 netbox/navigation/menu.py:202 +#: templates/ipam/inc/panels/fhrp_groups.html:6 msgid "FHRP Groups" msgstr "Skupiny FHRP" -#: netbox/dcim/tables/devices.py:576 netbox/templates/dcim/interface.html:89 -#: netbox/templates/virtualization/vminterface.html:67 -#: netbox/templates/vpn/tunnel.html:18 -#: netbox/templates/vpn/tunneltermination.html:13 -#: netbox/vpn/forms/bulk_edit.py:76 netbox/vpn/forms/bulk_import.py:76 -#: netbox/vpn/forms/filtersets.py:42 netbox/vpn/forms/filtersets.py:82 -#: netbox/vpn/forms/model_forms.py:60 netbox/vpn/forms/model_forms.py:145 -#: netbox/vpn/tables/tunnels.py:78 +#: dcim/tables/devices.py:576 templates/dcim/interface.html:89 +#: templates/virtualization/vminterface.html:67 templates/vpn/tunnel.html:18 +#: templates/vpn/tunneltermination.html:13 vpn/forms/bulk_edit.py:76 +#: vpn/forms/bulk_import.py:76 vpn/forms/filtersets.py:42 +#: vpn/forms/filtersets.py:82 vpn/forms/model_forms.py:60 +#: vpn/forms/model_forms.py:145 vpn/tables/tunnels.py:78 msgid "Tunnel" msgstr "Tunel" -#: netbox/dcim/tables/devices.py:604 netbox/dcim/tables/devicetypes.py:227 -#: netbox/templates/dcim/interface.html:65 +#: dcim/tables/devices.py:604 dcim/tables/devicetypes.py:227 +#: templates/dcim/interface.html:65 msgid "Management Only" msgstr "Pouze správa" -#: netbox/dcim/tables/devices.py:623 +#: dcim/tables/devices.py:623 msgid "VDCs" msgstr "VDC" -#: netbox/dcim/tables/devices.py:873 netbox/templates/dcim/modulebay.html:53 +#: dcim/tables/devices.py:873 templates/dcim/modulebay.html:53 msgid "Installed Module" msgstr "Instalovaný modul" -#: netbox/dcim/tables/devices.py:876 +#: dcim/tables/devices.py:876 msgid "Module Serial" msgstr "Sériový modul" -#: netbox/dcim/tables/devices.py:880 +#: dcim/tables/devices.py:880 msgid "Module Asset Tag" msgstr "Štítek aktiv modulu" -#: netbox/dcim/tables/devices.py:889 +#: dcim/tables/devices.py:889 msgid "Module Status" msgstr "Stav modulu" -#: netbox/dcim/tables/devices.py:944 netbox/dcim/tables/devicetypes.py:312 -#: netbox/templates/dcim/inventoryitem.html:40 +#: dcim/tables/devices.py:944 dcim/tables/devicetypes.py:312 +#: templates/dcim/inventoryitem.html:40 msgid "Component" msgstr "Komponenta" -#: netbox/dcim/tables/devices.py:1000 +#: dcim/tables/devices.py:1000 msgid "Items" msgstr "Položky" -#: netbox/dcim/tables/devicetypes.py:37 netbox/netbox/navigation/menu.py:84 -#: netbox/netbox/navigation/menu.py:86 +#: dcim/tables/devicetypes.py:37 netbox/navigation/menu.py:84 +#: netbox/navigation/menu.py:86 msgid "Device Types" msgstr "Typy zařízení" -#: netbox/dcim/tables/devicetypes.py:42 netbox/netbox/navigation/menu.py:87 +#: dcim/tables/devicetypes.py:42 netbox/navigation/menu.py:87 msgid "Module Types" msgstr "Typy modulů" -#: netbox/dcim/tables/devicetypes.py:52 netbox/extras/forms/filtersets.py:371 -#: netbox/extras/forms/model_forms.py:537 netbox/extras/tables/tables.py:540 -#: netbox/netbox/navigation/menu.py:78 +#: dcim/tables/devicetypes.py:52 extras/forms/filtersets.py:371 +#: extras/forms/model_forms.py:537 extras/tables/tables.py:540 +#: netbox/navigation/menu.py:78 msgid "Platforms" msgstr "Platformy" -#: netbox/dcim/tables/devicetypes.py:84 -#: netbox/templates/dcim/devicetype.html:29 +#: dcim/tables/devicetypes.py:84 templates/dcim/devicetype.html:29 msgid "Default Platform" msgstr "Výchozí platforma" -#: netbox/dcim/tables/devicetypes.py:88 -#: netbox/templates/dcim/devicetype.html:45 +#: dcim/tables/devicetypes.py:88 templates/dcim/devicetype.html:45 msgid "Full Depth" msgstr "Plná hloubka" -#: netbox/dcim/tables/devicetypes.py:98 +#: dcim/tables/devicetypes.py:98 msgid "U Height" msgstr "Výška U" -#: netbox/dcim/tables/devicetypes.py:113 netbox/dcim/tables/modules.py:26 -#: netbox/dcim/tables/racks.py:89 +#: dcim/tables/devicetypes.py:113 dcim/tables/modules.py:26 +#: dcim/tables/racks.py:89 msgid "Instances" msgstr "Instance" -#: netbox/dcim/tables/devicetypes.py:116 netbox/dcim/views.py:982 -#: netbox/dcim/views.py:1221 netbox/dcim/views.py:1913 -#: netbox/netbox/navigation/menu.py:97 -#: netbox/templates/dcim/device/base.html:25 -#: netbox/templates/dcim/device_list.html:15 -#: netbox/templates/dcim/devicetype/base.html:22 -#: netbox/templates/dcim/module.html:22 -#: netbox/templates/dcim/moduletype/base.html:22 +#: dcim/tables/devicetypes.py:116 dcim/views.py:982 dcim/views.py:1221 +#: dcim/views.py:1913 netbox/navigation/menu.py:97 +#: templates/dcim/device/base.html:25 templates/dcim/device_list.html:15 +#: templates/dcim/devicetype/base.html:22 +#: templates/dcim/inc/moduletype_buttons.html:13 templates/dcim/module.html:22 msgid "Console Ports" msgstr "Porty konzoly" -#: netbox/dcim/tables/devicetypes.py:119 netbox/dcim/views.py:997 -#: netbox/dcim/views.py:1236 netbox/dcim/views.py:1929 -#: netbox/netbox/navigation/menu.py:98 -#: netbox/templates/dcim/device/base.html:28 -#: netbox/templates/dcim/device_list.html:22 -#: netbox/templates/dcim/devicetype/base.html:25 -#: netbox/templates/dcim/module.html:25 -#: netbox/templates/dcim/moduletype/base.html:25 +#: dcim/tables/devicetypes.py:119 dcim/views.py:997 dcim/views.py:1236 +#: dcim/views.py:1929 netbox/navigation/menu.py:98 +#: templates/dcim/device/base.html:28 templates/dcim/device_list.html:22 +#: templates/dcim/devicetype/base.html:25 +#: templates/dcim/inc/moduletype_buttons.html:16 templates/dcim/module.html:25 msgid "Console Server Ports" msgstr "Porty konzolového serveru" -#: netbox/dcim/tables/devicetypes.py:122 netbox/dcim/views.py:1012 -#: netbox/dcim/views.py:1251 netbox/dcim/views.py:1945 -#: netbox/netbox/navigation/menu.py:99 -#: netbox/templates/dcim/device/base.html:31 -#: netbox/templates/dcim/device_list.html:29 -#: netbox/templates/dcim/devicetype/base.html:28 -#: netbox/templates/dcim/module.html:28 -#: netbox/templates/dcim/moduletype/base.html:28 +#: dcim/tables/devicetypes.py:122 dcim/views.py:1012 dcim/views.py:1251 +#: dcim/views.py:1945 netbox/navigation/menu.py:99 +#: templates/dcim/device/base.html:31 templates/dcim/device_list.html:29 +#: templates/dcim/devicetype/base.html:28 +#: templates/dcim/inc/moduletype_buttons.html:19 templates/dcim/module.html:28 msgid "Power Ports" msgstr "Napájecí porty" -#: netbox/dcim/tables/devicetypes.py:125 netbox/dcim/views.py:1027 -#: netbox/dcim/views.py:1266 netbox/dcim/views.py:1961 -#: netbox/netbox/navigation/menu.py:100 -#: netbox/templates/dcim/device/base.html:34 -#: netbox/templates/dcim/device_list.html:36 -#: netbox/templates/dcim/devicetype/base.html:31 -#: netbox/templates/dcim/module.html:31 -#: netbox/templates/dcim/moduletype/base.html:31 +#: dcim/tables/devicetypes.py:125 dcim/views.py:1027 dcim/views.py:1266 +#: dcim/views.py:1961 netbox/navigation/menu.py:100 +#: templates/dcim/device/base.html:34 templates/dcim/device_list.html:36 +#: templates/dcim/devicetype/base.html:31 +#: templates/dcim/inc/moduletype_buttons.html:22 templates/dcim/module.html:31 msgid "Power Outlets" msgstr "Napájecí zásuvky" -#: netbox/dcim/tables/devicetypes.py:131 netbox/dcim/views.py:1057 -#: netbox/dcim/views.py:1296 netbox/dcim/views.py:1999 -#: netbox/netbox/navigation/menu.py:95 -#: netbox/templates/dcim/device/base.html:40 -#: netbox/templates/dcim/devicetype/base.html:37 -#: netbox/templates/dcim/module.html:37 -#: netbox/templates/dcim/moduletype/base.html:37 +#: dcim/tables/devicetypes.py:131 dcim/views.py:1057 dcim/views.py:1296 +#: dcim/views.py:1999 netbox/navigation/menu.py:95 +#: templates/dcim/device/base.html:40 templates/dcim/devicetype/base.html:37 +#: templates/dcim/inc/moduletype_buttons.html:28 templates/dcim/module.html:37 msgid "Front Ports" msgstr "Přední porty" -#: netbox/dcim/tables/devicetypes.py:134 netbox/dcim/views.py:1072 -#: netbox/dcim/views.py:1311 netbox/dcim/views.py:2015 -#: netbox/netbox/navigation/menu.py:96 -#: netbox/templates/dcim/device/base.html:43 -#: netbox/templates/dcim/device_list.html:50 -#: netbox/templates/dcim/devicetype/base.html:40 -#: netbox/templates/dcim/module.html:40 -#: netbox/templates/dcim/moduletype/base.html:40 +#: dcim/tables/devicetypes.py:134 dcim/views.py:1072 dcim/views.py:1311 +#: dcim/views.py:2015 netbox/navigation/menu.py:96 +#: templates/dcim/device/base.html:43 templates/dcim/device_list.html:50 +#: templates/dcim/devicetype/base.html:40 +#: templates/dcim/inc/moduletype_buttons.html:31 templates/dcim/module.html:40 msgid "Rear Ports" msgstr "Zadní porty" -#: netbox/dcim/tables/devicetypes.py:137 netbox/dcim/views.py:1102 -#: netbox/dcim/views.py:2055 netbox/netbox/navigation/menu.py:102 -#: netbox/templates/dcim/device/base.html:49 -#: netbox/templates/dcim/device_list.html:57 -#: netbox/templates/dcim/devicetype/base.html:46 +#: dcim/tables/devicetypes.py:137 dcim/views.py:1102 dcim/views.py:2055 +#: netbox/navigation/menu.py:102 templates/dcim/device/base.html:49 +#: templates/dcim/device_list.html:57 templates/dcim/devicetype/base.html:46 msgid "Device Bays" msgstr "Pozice pro zařízení" -#: netbox/dcim/tables/devicetypes.py:140 netbox/dcim/views.py:1087 -#: netbox/dcim/views.py:1326 netbox/dcim/views.py:2035 -#: netbox/netbox/navigation/menu.py:101 -#: netbox/templates/dcim/device/base.html:46 -#: netbox/templates/dcim/device_list.html:64 -#: netbox/templates/dcim/devicetype/base.html:43 -#: netbox/templates/dcim/module.html:43 -#: netbox/templates/dcim/moduletype/base.html:43 +#: dcim/tables/devicetypes.py:140 dcim/views.py:1087 dcim/views.py:1326 +#: dcim/views.py:2035 netbox/navigation/menu.py:101 +#: templates/dcim/device/base.html:46 templates/dcim/device_list.html:64 +#: templates/dcim/devicetype/base.html:43 +#: templates/dcim/inc/moduletype_buttons.html:34 templates/dcim/module.html:43 msgid "Module Bays" msgstr "Modulové pozice" -#: netbox/dcim/tables/power.py:36 netbox/netbox/navigation/menu.py:297 -#: netbox/templates/dcim/powerpanel.html:51 +#: dcim/tables/power.py:36 netbox/navigation/menu.py:297 +#: templates/dcim/powerpanel.html:51 msgid "Power Feeds" msgstr "Napájecí zdroje" -#: netbox/dcim/tables/power.py:80 netbox/templates/dcim/powerfeed.html:99 +#: dcim/tables/power.py:80 templates/dcim/powerfeed.html:99 msgid "Max Utilization" msgstr "Maximální využití" -#: netbox/dcim/tables/power.py:84 +#: dcim/tables/power.py:84 msgid "Available Power (VA)" msgstr "Dostupný výkon (VA)" -#: netbox/dcim/tables/racks.py:30 netbox/dcim/tables/sites.py:143 -#: netbox/netbox/navigation/menu.py:43 netbox/netbox/navigation/menu.py:47 -#: netbox/netbox/navigation/menu.py:49 +#: dcim/tables/racks.py:30 dcim/tables/sites.py:143 +#: netbox/navigation/menu.py:43 netbox/navigation/menu.py:47 +#: netbox/navigation/menu.py:49 msgid "Racks" msgstr "Stojany" -#: netbox/dcim/tables/racks.py:63 netbox/dcim/tables/racks.py:142 -#: netbox/templates/dcim/device.html:318 -#: netbox/templates/dcim/inc/panels/racktype_dimensions.html:14 +#: dcim/tables/racks.py:63 dcim/tables/racks.py:142 +#: templates/dcim/device.html:318 +#: templates/dcim/inc/panels/racktype_dimensions.html:14 msgid "Height" msgstr "Výška" -#: netbox/dcim/tables/racks.py:67 netbox/dcim/tables/racks.py:165 -#: netbox/templates/dcim/inc/panels/racktype_dimensions.html:18 +#: dcim/tables/racks.py:67 dcim/tables/racks.py:165 +#: templates/dcim/inc/panels/racktype_dimensions.html:18 msgid "Outer Width" msgstr "Vnější šířka" -#: netbox/dcim/tables/racks.py:71 netbox/dcim/tables/racks.py:169 -#: netbox/templates/dcim/inc/panels/racktype_dimensions.html:28 +#: dcim/tables/racks.py:71 dcim/tables/racks.py:169 +#: templates/dcim/inc/panels/racktype_dimensions.html:28 msgid "Outer Depth" msgstr "Vnější hloubka" -#: netbox/dcim/tables/racks.py:79 netbox/dcim/tables/racks.py:177 +#: dcim/tables/racks.py:79 dcim/tables/racks.py:177 msgid "Max Weight" msgstr "Max. hmotnost" -#: netbox/dcim/tables/racks.py:154 +#: dcim/tables/racks.py:154 msgid "Space" msgstr "Prostor" -#: netbox/dcim/tables/sites.py:30 netbox/dcim/tables/sites.py:57 -#: netbox/extras/forms/filtersets.py:351 -#: netbox/extras/forms/model_forms.py:517 netbox/ipam/forms/bulk_edit.py:130 -#: netbox/ipam/forms/model_forms.py:153 netbox/ipam/tables/asn.py:66 -#: netbox/netbox/navigation/menu.py:15 netbox/netbox/navigation/menu.py:17 +#: dcim/tables/sites.py:30 dcim/tables/sites.py:57 +#: extras/forms/filtersets.py:351 extras/forms/model_forms.py:517 +#: ipam/forms/bulk_edit.py:131 ipam/forms/model_forms.py:153 +#: ipam/tables/asn.py:66 netbox/navigation/menu.py:15 +#: netbox/navigation/menu.py:17 msgid "Sites" msgstr "Stránky" -#: netbox/dcim/tests/test_api.py:47 +#: dcim/tests/test_api.py:47 msgid "Test case must set peer_termination_type" msgstr "Testovací případ musí nastavit peer_termination_type" -#: netbox/dcim/views.py:140 +#: dcim/views.py:140 #, python-brace-format msgid "Disconnected {count} {type}" msgstr "Odpojeno {count} {type}" -#: netbox/dcim/views.py:740 netbox/netbox/navigation/menu.py:51 +#: dcim/views.py:740 netbox/navigation/menu.py:51 msgid "Reservations" msgstr "Rezervace" -#: netbox/dcim/views.py:759 netbox/templates/dcim/location.html:90 -#: netbox/templates/dcim/site.html:140 +#: dcim/views.py:759 templates/dcim/location.html:90 +#: templates/dcim/site.html:140 msgid "Non-Racked Devices" msgstr "Zařízení bez racku" -#: netbox/dcim/views.py:2088 netbox/extras/forms/model_forms.py:577 -#: netbox/templates/extras/configcontext.html:10 -#: netbox/virtualization/forms/model_forms.py:225 -#: netbox/virtualization/views.py:407 +#: dcim/views.py:2088 extras/forms/model_forms.py:577 +#: templates/extras/configcontext.html:10 +#: virtualization/forms/model_forms.py:225 virtualization/views.py:407 msgid "Config Context" msgstr "Kontext konfigurace" -#: netbox/dcim/views.py:2098 netbox/virtualization/views.py:417 +#: dcim/views.py:2098 virtualization/views.py:417 msgid "Render Config" msgstr "Konfigurace rendrování" -#: netbox/dcim/views.py:2131 netbox/virtualization/views.py:450 +#: dcim/views.py:2131 virtualization/views.py:450 #, python-brace-format msgid "An error occurred while rendering the template: {error}" msgstr "Při vykreslování šablony došlo k chybě: {error}" -#: netbox/dcim/views.py:2149 netbox/extras/tables/tables.py:550 -#: netbox/netbox/navigation/menu.py:247 netbox/netbox/navigation/menu.py:249 -#: netbox/virtualization/views.py:180 +#: dcim/views.py:2149 extras/tables/tables.py:550 +#: netbox/navigation/menu.py:247 netbox/navigation/menu.py:249 +#: virtualization/views.py:180 msgid "Virtual Machines" msgstr "Virtuální stroje" -#: netbox/dcim/views.py:2897 +#: dcim/views.py:2897 #, python-brace-format msgid "Installed device {device} in bay {device_bay}." msgstr "Nainstalované zařízení {device} v zátoce {device_bay}." -#: netbox/dcim/views.py:2938 +#: dcim/views.py:2938 #, python-brace-format msgid "Removed device {device} from bay {device_bay}." msgstr "Odstraněné zařízení {device} od zátoky {device_bay}." -#: netbox/dcim/views.py:3044 netbox/ipam/tables/ip.py:234 +#: dcim/views.py:3044 ipam/tables/ip.py:234 msgid "Children" msgstr "Děti" -#: netbox/dcim/views.py:3510 +#: dcim/views.py:3510 #, python-brace-format msgid "Added member {device}" msgstr "Přidán člen {device}" -#: netbox/dcim/views.py:3557 +#: dcim/views.py:3557 #, python-brace-format msgid "Unable to remove master device {device} from the virtual chassis." msgstr "Nelze odebrat hlavní zařízení {device} z virtuálního podvozku." -#: netbox/dcim/views.py:3570 +#: dcim/views.py:3570 #, python-brace-format msgid "Removed {device} from virtual chassis {chassis}" msgstr "Odstraněno {device} z virtuálního šasi {chassis}" -#: netbox/extras/api/customfields.py:89 +#: extras/api/customfields.py:89 #, python-brace-format msgid "Unknown related object(s): {name}" msgstr "Neznámý související objekt (y): {name}" -#: netbox/extras/api/serializers_/customfields.py:73 +#: extras/api/serializers_/customfields.py:73 msgid "Changing the type of custom fields is not supported." msgstr "Změna typu vlastních polí není podporována." -#: netbox/extras/api/serializers_/scripts.py:70 -#: netbox/extras/api/serializers_/scripts.py:75 +#: extras/api/serializers_/scripts.py:70 extras/api/serializers_/scripts.py:75 msgid "Scheduling is not enabled for this script." msgstr "Plánování není pro tento skript povoleno." -#: netbox/extras/choices.py:30 netbox/extras/forms/misc.py:14 +#: extras/choices.py:30 extras/forms/misc.py:14 msgid "Text" msgstr "Text" -#: netbox/extras/choices.py:31 +#: extras/choices.py:31 msgid "Text (long)" msgstr "Text (dlouhý)" -#: netbox/extras/choices.py:32 +#: extras/choices.py:32 msgid "Integer" msgstr "Celočíselné" -#: netbox/extras/choices.py:33 +#: extras/choices.py:33 msgid "Decimal" msgstr "Desetinné" -#: netbox/extras/choices.py:34 +#: extras/choices.py:34 msgid "Boolean (true/false)" msgstr "Boolean (pravda/nepravda)" -#: netbox/extras/choices.py:35 +#: extras/choices.py:35 msgid "Date" msgstr "Rande" -#: netbox/extras/choices.py:36 +#: extras/choices.py:36 msgid "Date & time" msgstr "Datum a čas" -#: netbox/extras/choices.py:38 +#: extras/choices.py:38 msgid "JSON" msgstr "JSON" -#: netbox/extras/choices.py:39 +#: extras/choices.py:39 msgid "Selection" msgstr "Výběr" -#: netbox/extras/choices.py:40 +#: extras/choices.py:40 msgid "Multiple selection" msgstr "Vícenásobný výběr" -#: netbox/extras/choices.py:42 +#: extras/choices.py:42 msgid "Multiple objects" msgstr "Více objektů" -#: netbox/extras/choices.py:53 netbox/netbox/preferences.py:21 -#: netbox/templates/extras/customfield.html:78 netbox/vpn/choices.py:20 -#: netbox/wireless/choices.py:27 +#: extras/choices.py:53 netbox/preferences.py:21 +#: templates/extras/customfield.html:78 vpn/choices.py:20 +#: wireless/choices.py:27 msgid "Disabled" msgstr "Zakázané" -#: netbox/extras/choices.py:54 +#: extras/choices.py:54 msgid "Loose" msgstr "Volný" -#: netbox/extras/choices.py:55 +#: extras/choices.py:55 msgid "Exact" msgstr "Přesný" -#: netbox/extras/choices.py:66 +#: extras/choices.py:66 msgid "Always" msgstr "Vždy" -#: netbox/extras/choices.py:67 +#: extras/choices.py:67 msgid "If set" msgstr "Pokud je nastaveno" -#: netbox/extras/choices.py:68 netbox/extras/choices.py:81 +#: extras/choices.py:68 extras/choices.py:81 msgid "Hidden" msgstr "Skrytý" -#: netbox/extras/choices.py:79 +#: extras/choices.py:79 msgid "Yes" msgstr "Ano" -#: netbox/extras/choices.py:80 +#: extras/choices.py:80 msgid "No" msgstr "Ne" -#: netbox/extras/choices.py:108 netbox/templates/tenancy/contact.html:57 -#: netbox/tenancy/forms/bulk_edit.py:118 -#: netbox/wireless/forms/model_forms.py:168 +#: extras/choices.py:108 templates/tenancy/contact.html:57 +#: tenancy/forms/bulk_edit.py:118 wireless/forms/model_forms.py:168 msgid "Link" msgstr "Odkaz" -#: netbox/extras/choices.py:124 +#: extras/choices.py:124 msgid "Newest" msgstr "Nejnovější" -#: netbox/extras/choices.py:125 +#: extras/choices.py:125 msgid "Oldest" msgstr "Nejstarší" -#: netbox/extras/choices.py:126 +#: extras/choices.py:126 msgid "Alphabetical (A-Z)" msgstr "Abecedně (A-Z)" -#: netbox/extras/choices.py:127 +#: extras/choices.py:127 msgid "Alphabetical (Z-A)" msgstr "Abecedně (Z-A)" -#: netbox/extras/choices.py:144 netbox/extras/choices.py:167 +#: extras/choices.py:144 extras/choices.py:167 msgid "Info" msgstr "Informace" -#: netbox/extras/choices.py:145 netbox/extras/choices.py:168 +#: extras/choices.py:145 extras/choices.py:168 msgid "Success" msgstr "Úspěch" -#: netbox/extras/choices.py:146 netbox/extras/choices.py:169 +#: extras/choices.py:146 extras/choices.py:169 msgid "Warning" msgstr "Varování" -#: netbox/extras/choices.py:147 +#: extras/choices.py:147 msgid "Danger" msgstr "Nebezpečí" -#: netbox/extras/choices.py:165 +#: extras/choices.py:165 msgid "Debug" msgstr "Ladění" -#: netbox/extras/choices.py:166 netbox/netbox/choices.py:101 +#: extras/choices.py:166 netbox/choices.py:101 msgid "Default" msgstr "Výchozí" -#: netbox/extras/choices.py:170 +#: extras/choices.py:170 msgid "Failure" msgstr "Porucha" -#: netbox/extras/choices.py:186 +#: extras/choices.py:186 msgid "Hourly" msgstr "Hodinová" -#: netbox/extras/choices.py:187 +#: extras/choices.py:187 msgid "12 hours" msgstr "12 hodin" -#: netbox/extras/choices.py:188 +#: extras/choices.py:188 msgid "Daily" msgstr "Denně" -#: netbox/extras/choices.py:189 +#: extras/choices.py:189 msgid "Weekly" msgstr "Týdenní" -#: netbox/extras/choices.py:190 +#: extras/choices.py:190 msgid "30 days" msgstr "30 dní" -#: netbox/extras/choices.py:226 -#: netbox/templates/dcim/virtualchassis_edit.html:107 -#: netbox/templates/generic/bulk_add_component.html:68 -#: netbox/templates/generic/object_edit.html:47 -#: netbox/templates/generic/object_edit.html:80 -#: netbox/templates/ipam/inc/ipaddress_edit_header.html:7 +#: extras/choices.py:226 templates/dcim/virtualchassis_edit.html:107 +#: templates/generic/bulk_add_component.html:68 +#: templates/generic/object_edit.html:47 templates/generic/object_edit.html:80 +#: templates/ipam/inc/ipaddress_edit_header.html:7 msgid "Create" msgstr "Vytvořit" -#: netbox/extras/choices.py:227 +#: extras/choices.py:227 msgid "Update" msgstr "Aktualizovat" -#: netbox/extras/choices.py:228 -#: netbox/templates/circuits/inc/circuit_termination.html:23 -#: netbox/templates/dcim/inc/panels/inventory_items.html:37 -#: netbox/templates/dcim/moduletype/component_templates.html:23 -#: netbox/templates/dcim/powerpanel.html:66 -#: netbox/templates/extras/script_list.html:35 -#: netbox/templates/generic/bulk_delete.html:20 -#: netbox/templates/generic/bulk_delete.html:66 -#: netbox/templates/generic/object_delete.html:19 -#: netbox/templates/htmx/delete_form.html:57 -#: netbox/templates/ipam/inc/panels/fhrp_groups.html:48 -#: netbox/templates/users/objectpermission.html:46 -#: netbox/utilities/templates/buttons/delete.html:11 +#: extras/choices.py:228 templates/circuits/inc/circuit_termination.html:23 +#: templates/dcim/inc/panels/inventory_items.html:37 +#: templates/dcim/powerpanel.html:66 templates/extras/script_list.html:35 +#: templates/generic/bulk_delete.html:20 templates/generic/bulk_delete.html:66 +#: templates/generic/object_delete.html:19 templates/htmx/delete_form.html:57 +#: templates/ipam/inc/panels/fhrp_groups.html:48 +#: templates/users/objectpermission.html:46 +#: utilities/templates/buttons/delete.html:11 msgid "Delete" msgstr "Odstranit" -#: netbox/extras/choices.py:252 netbox/netbox/choices.py:57 -#: netbox/netbox/choices.py:102 +#: extras/choices.py:252 netbox/choices.py:57 netbox/choices.py:102 msgid "Blue" msgstr "Modrý" -#: netbox/extras/choices.py:253 netbox/netbox/choices.py:56 -#: netbox/netbox/choices.py:103 +#: extras/choices.py:253 netbox/choices.py:56 netbox/choices.py:103 msgid "Indigo" msgstr "Indigo" -#: netbox/extras/choices.py:254 netbox/netbox/choices.py:54 -#: netbox/netbox/choices.py:104 +#: extras/choices.py:254 netbox/choices.py:54 netbox/choices.py:104 msgid "Purple" msgstr "Nachový" -#: netbox/extras/choices.py:255 netbox/netbox/choices.py:51 -#: netbox/netbox/choices.py:105 +#: extras/choices.py:255 netbox/choices.py:51 netbox/choices.py:105 msgid "Pink" msgstr "Růžový" -#: netbox/extras/choices.py:256 netbox/netbox/choices.py:50 -#: netbox/netbox/choices.py:106 +#: extras/choices.py:256 netbox/choices.py:50 netbox/choices.py:106 msgid "Red" msgstr "Červené" -#: netbox/extras/choices.py:257 netbox/netbox/choices.py:68 -#: netbox/netbox/choices.py:107 +#: extras/choices.py:257 netbox/choices.py:68 netbox/choices.py:107 msgid "Orange" msgstr "oranžový" -#: netbox/extras/choices.py:258 netbox/netbox/choices.py:66 -#: netbox/netbox/choices.py:108 +#: extras/choices.py:258 netbox/choices.py:66 netbox/choices.py:108 msgid "Yellow" msgstr "Žlutá" -#: netbox/extras/choices.py:259 netbox/netbox/choices.py:63 -#: netbox/netbox/choices.py:109 +#: extras/choices.py:259 netbox/choices.py:63 netbox/choices.py:109 msgid "Green" msgstr "Zelená" -#: netbox/extras/choices.py:260 netbox/netbox/choices.py:60 -#: netbox/netbox/choices.py:110 +#: extras/choices.py:260 netbox/choices.py:60 netbox/choices.py:110 msgid "Teal" msgstr "Šedozelená" -#: netbox/extras/choices.py:261 netbox/netbox/choices.py:59 -#: netbox/netbox/choices.py:111 +#: extras/choices.py:261 netbox/choices.py:59 netbox/choices.py:111 msgid "Cyan" msgstr "Azurová" -#: netbox/extras/choices.py:262 netbox/netbox/choices.py:112 +#: extras/choices.py:262 netbox/choices.py:112 msgid "Gray" msgstr "Šedá" -#: netbox/extras/choices.py:263 netbox/netbox/choices.py:74 -#: netbox/netbox/choices.py:113 +#: extras/choices.py:263 netbox/choices.py:74 netbox/choices.py:113 msgid "Black" msgstr "Černá" -#: netbox/extras/choices.py:264 netbox/netbox/choices.py:75 -#: netbox/netbox/choices.py:114 +#: extras/choices.py:264 netbox/choices.py:75 netbox/choices.py:114 msgid "White" msgstr "Bílá" -#: netbox/extras/choices.py:279 netbox/extras/forms/model_forms.py:353 -#: netbox/extras/forms/model_forms.py:430 -#: netbox/templates/extras/webhook.html:10 +#: extras/choices.py:279 extras/forms/model_forms.py:353 +#: extras/forms/model_forms.py:430 templates/extras/webhook.html:10 msgid "Webhook" msgstr "Webový háček" -#: netbox/extras/choices.py:280 netbox/extras/forms/model_forms.py:418 -#: netbox/templates/extras/script/base.html:29 +#: extras/choices.py:280 extras/forms/model_forms.py:418 +#: templates/extras/script/base.html:29 msgid "Script" msgstr "Skript" -#: netbox/extras/choices.py:281 +#: extras/choices.py:281 msgid "Notification" msgstr "Oznámení" -#: netbox/extras/conditions.py:54 +#: extras/conditions.py:54 #, python-brace-format msgid "Unknown operator: {op}. Must be one of: {operators}" msgstr "Neznámý operátor: {op}. Musí to být jeden z: {operators}" -#: netbox/extras/conditions.py:58 +#: extras/conditions.py:58 #, python-brace-format msgid "Unsupported value type: {value}" msgstr "Nepodporovaný typ hodnoty: {value}" -#: netbox/extras/conditions.py:60 +#: extras/conditions.py:60 #, python-brace-format msgid "Invalid type for {op} operation: {value}" msgstr "Neplatný typ pro {op} Provoz: {value}" -#: netbox/extras/conditions.py:137 +#: extras/conditions.py:137 #, python-brace-format msgid "Ruleset must be a dictionary, not {ruleset}." msgstr "Sada pravidel musí být slovník, ne {ruleset}." -#: netbox/extras/conditions.py:142 +#: extras/conditions.py:142 msgid "Invalid logic type: must be 'AND' or 'OR'. Please check documentation." msgstr "" "Neplatný typ logiky: musí být „AND“ nebo „OR“. Zkontrolujte prosím " "dokumentaci." -#: netbox/extras/conditions.py:154 +#: extras/conditions.py:154 msgid "Incorrect key(s) informed. Please check documentation." msgstr "Nesprávný klíč (klíče) informován. Zkontrolujte prosím dokumentaci." -#: netbox/extras/dashboard/forms.py:38 +#: extras/dashboard/forms.py:38 msgid "Widget type" msgstr "Typ widgetu" -#: netbox/extras/dashboard/utils.py:36 +#: extras/dashboard/utils.py:36 #, python-brace-format msgid "Unregistered widget class: {name}" msgstr "Neregistrovaná třída widgetu: {name}" -#: netbox/extras/dashboard/widgets.py:125 +#: extras/dashboard/widgets.py:125 #, python-brace-format msgid "{class_name} must define a render() method." msgstr "{class_name} musí definovat metodu render ()." -#: netbox/extras/dashboard/widgets.py:144 +#: extras/dashboard/widgets.py:144 msgid "Note" msgstr "Poznámka" -#: netbox/extras/dashboard/widgets.py:145 +#: extras/dashboard/widgets.py:145 msgid "Display some arbitrary custom content. Markdown is supported." msgstr "Zobrazí nějaký libovolný vlastní obsah. Markdown je podporován." -#: netbox/extras/dashboard/widgets.py:158 +#: extras/dashboard/widgets.py:158 msgid "Object Counts" msgstr "Počty objektů" -#: netbox/extras/dashboard/widgets.py:159 +#: extras/dashboard/widgets.py:159 msgid "" "Display a set of NetBox models and the number of objects created for each " "type." msgstr "Zobrazí sadu modelů NetBox a počet objektů vytvořených pro každý typ." -#: netbox/extras/dashboard/widgets.py:169 +#: extras/dashboard/widgets.py:169 msgid "Filters to apply when counting the number of objects" msgstr "Filtry, které se použijí při počítání počtu objektů" -#: netbox/extras/dashboard/widgets.py:177 +#: extras/dashboard/widgets.py:177 msgid "Invalid format. Object filters must be passed as a dictionary." msgstr "Neplatný formát. Objektové filtry musí být předány jako slovník." -#: netbox/extras/dashboard/widgets.py:208 +#: extras/dashboard/widgets.py:208 msgid "Object List" msgstr "Seznam objektů" -#: netbox/extras/dashboard/widgets.py:209 +#: extras/dashboard/widgets.py:209 msgid "Display an arbitrary list of objects." msgstr "Zobrazí libovolný seznam objektů." -#: netbox/extras/dashboard/widgets.py:222 +#: extras/dashboard/widgets.py:222 msgid "The default number of objects to display" msgstr "Výchozí počet objektů k zobrazení" -#: netbox/extras/dashboard/widgets.py:234 +#: extras/dashboard/widgets.py:234 msgid "Invalid format. URL parameters must be passed as a dictionary." msgstr "Neplatný formát. Parametry URL musí být předány jako slovník." -#: netbox/extras/dashboard/widgets.py:274 +#: extras/dashboard/widgets.py:274 msgid "RSS Feed" msgstr "RSS kanál" -#: netbox/extras/dashboard/widgets.py:279 +#: extras/dashboard/widgets.py:279 msgid "Embed an RSS feed from an external website." msgstr "Vložte kanál RSS z externího webu." -#: netbox/extras/dashboard/widgets.py:286 +#: extras/dashboard/widgets.py:286 msgid "Feed URL" msgstr "Adresa URL zdroje" -#: netbox/extras/dashboard/widgets.py:291 +#: extras/dashboard/widgets.py:291 msgid "The maximum number of objects to display" msgstr "Maximální počet objektů, které se mají zobrazit" -#: netbox/extras/dashboard/widgets.py:296 +#: extras/dashboard/widgets.py:296 msgid "How long to stored the cached content (in seconds)" msgstr "Jak dlouho uložit obsah uložený v mezipaměti (v sekundách)" -#: netbox/extras/dashboard/widgets.py:348 -#: netbox/templates/account/base.html:10 -#: netbox/templates/account/bookmarks.html:7 -#: netbox/templates/inc/user_menu.html:48 +#: extras/dashboard/widgets.py:348 templates/account/base.html:10 +#: templates/account/bookmarks.html:7 templates/inc/user_menu.html:48 msgid "Bookmarks" msgstr "Záložky" -#: netbox/extras/dashboard/widgets.py:352 +#: extras/dashboard/widgets.py:352 msgid "Show your personal bookmarks" msgstr "Zobrazit své osobní záložky" -#: netbox/extras/events.py:147 +#: extras/events.py:147 #, python-brace-format msgid "Unknown action type for an event rule: {action_type}" msgstr "Neznámý typ akce pro pravidlo události: {action_type}" -#: netbox/extras/events.py:192 +#: extras/events.py:192 #, python-brace-format msgid "Cannot import events pipeline {name} error: {error}" msgstr "Nelze importovat kanál událostí {name} chyba: {error}" -#: netbox/extras/filtersets.py:45 +#: extras/filtersets.py:45 msgid "Script module (ID)" msgstr "Skriptový modul (ID)" -#: netbox/extras/filtersets.py:254 netbox/extras/filtersets.py:637 -#: netbox/extras/filtersets.py:665 +#: extras/filtersets.py:254 extras/filtersets.py:637 extras/filtersets.py:665 msgid "Data file (ID)" msgstr "Datový soubor (ID)" -#: netbox/extras/filtersets.py:370 netbox/users/filtersets.py:68 -#: netbox/users/filtersets.py:191 +#: extras/filtersets.py:370 users/filtersets.py:68 users/filtersets.py:191 msgid "Group (name)" msgstr "Skupina (název)" -#: netbox/extras/filtersets.py:574 -#: netbox/virtualization/forms/filtersets.py:118 +#: extras/filtersets.py:574 virtualization/forms/filtersets.py:118 msgid "Cluster type" msgstr "Typ clusteru" -#: netbox/extras/filtersets.py:580 netbox/virtualization/filtersets.py:95 -#: netbox/virtualization/filtersets.py:147 +#: extras/filtersets.py:580 virtualization/filtersets.py:95 +#: virtualization/filtersets.py:147 msgid "Cluster type (slug)" msgstr "Typ klastru (slug)" -#: netbox/extras/filtersets.py:601 netbox/tenancy/forms/forms.py:16 -#: netbox/tenancy/forms/forms.py:39 +#: extras/filtersets.py:601 tenancy/forms/forms.py:16 +#: tenancy/forms/forms.py:39 msgid "Tenant group" msgstr "Skupina nájemců" -#: netbox/extras/filtersets.py:607 netbox/tenancy/filtersets.py:188 -#: netbox/tenancy/filtersets.py:208 +#: extras/filtersets.py:607 tenancy/filtersets.py:188 +#: tenancy/filtersets.py:208 msgid "Tenant group (slug)" msgstr "Skupina nájemců (slug)" -#: netbox/extras/filtersets.py:623 netbox/extras/forms/model_forms.py:495 -#: netbox/templates/extras/tag.html:11 +#: extras/filtersets.py:623 extras/forms/model_forms.py:495 +#: templates/extras/tag.html:11 msgid "Tag" msgstr "Značka" -#: netbox/extras/filtersets.py:629 +#: extras/filtersets.py:629 msgid "Tag (slug)" msgstr "Štítek (slug)" -#: netbox/extras/filtersets.py:689 netbox/extras/forms/filtersets.py:429 +#: extras/filtersets.py:689 extras/forms/filtersets.py:429 msgid "Has local config context data" msgstr "Má místní kontextová data konfigurace" -#: netbox/extras/forms/bulk_edit.py:35 netbox/extras/forms/filtersets.py:60 +#: extras/forms/bulk_edit.py:35 extras/forms/filtersets.py:60 msgid "Group name" msgstr "Název skupiny" -#: netbox/extras/forms/bulk_edit.py:43 netbox/extras/forms/filtersets.py:68 -#: netbox/extras/tables/tables.py:65 -#: netbox/templates/extras/customfield.html:38 -#: netbox/templates/generic/bulk_import.html:118 +#: extras/forms/bulk_edit.py:43 extras/forms/filtersets.py:68 +#: extras/tables/tables.py:65 templates/extras/customfield.html:38 +#: templates/generic/bulk_import.html:118 msgid "Required" msgstr "Požadováno" -#: netbox/extras/forms/bulk_edit.py:48 netbox/extras/forms/filtersets.py:75 +#: extras/forms/bulk_edit.py:48 extras/forms/filtersets.py:75 msgid "Must be unique" msgstr "Musí být jedinečný" -#: netbox/extras/forms/bulk_edit.py:61 netbox/extras/forms/bulk_import.py:60 -#: netbox/extras/forms/filtersets.py:89 -#: netbox/extras/models/customfields.py:209 +#: extras/forms/bulk_edit.py:61 extras/forms/bulk_import.py:60 +#: extras/forms/filtersets.py:89 extras/models/customfields.py:209 msgid "UI visible" msgstr "Uživatelské rozhraní viditelné" -#: netbox/extras/forms/bulk_edit.py:66 netbox/extras/forms/bulk_import.py:66 -#: netbox/extras/forms/filtersets.py:94 -#: netbox/extras/models/customfields.py:216 +#: extras/forms/bulk_edit.py:66 extras/forms/bulk_import.py:66 +#: extras/forms/filtersets.py:94 extras/models/customfields.py:216 msgid "UI editable" msgstr "Upravitelné uživatelské rozhraní" -#: netbox/extras/forms/bulk_edit.py:71 netbox/extras/forms/filtersets.py:97 +#: extras/forms/bulk_edit.py:71 extras/forms/filtersets.py:97 msgid "Is cloneable" msgstr "Je klonovatelný" -#: netbox/extras/forms/bulk_edit.py:76 netbox/extras/forms/filtersets.py:104 +#: extras/forms/bulk_edit.py:76 extras/forms/filtersets.py:104 msgid "Minimum value" msgstr "Minimální hodnota" -#: netbox/extras/forms/bulk_edit.py:80 netbox/extras/forms/filtersets.py:108 +#: extras/forms/bulk_edit.py:80 extras/forms/filtersets.py:108 msgid "Maximum value" msgstr "Maximální hodnota" -#: netbox/extras/forms/bulk_edit.py:84 netbox/extras/forms/filtersets.py:112 +#: extras/forms/bulk_edit.py:84 extras/forms/filtersets.py:112 msgid "Validation regex" msgstr "Ověření regex" -#: netbox/extras/forms/bulk_edit.py:91 netbox/extras/forms/filtersets.py:46 -#: netbox/extras/forms/model_forms.py:76 -#: netbox/templates/extras/customfield.html:70 +#: extras/forms/bulk_edit.py:91 extras/forms/filtersets.py:46 +#: extras/forms/model_forms.py:76 templates/extras/customfield.html:70 msgid "Behavior" msgstr "Chování" -#: netbox/extras/forms/bulk_edit.py:128 netbox/extras/forms/filtersets.py:149 +#: extras/forms/bulk_edit.py:128 extras/forms/filtersets.py:149 msgid "New window" msgstr "Nové okno" -#: netbox/extras/forms/bulk_edit.py:137 +#: extras/forms/bulk_edit.py:137 msgid "Button class" msgstr "Třída tlačítek" -#: netbox/extras/forms/bulk_edit.py:154 netbox/extras/forms/filtersets.py:187 -#: netbox/extras/models/models.py:409 +#: extras/forms/bulk_edit.py:154 extras/forms/filtersets.py:187 +#: extras/models/models.py:409 msgid "MIME type" msgstr "Typ MIME" -#: netbox/extras/forms/bulk_edit.py:159 netbox/extras/forms/filtersets.py:190 +#: extras/forms/bulk_edit.py:159 extras/forms/filtersets.py:190 msgid "File extension" msgstr "přípona souboru" -#: netbox/extras/forms/bulk_edit.py:164 netbox/extras/forms/filtersets.py:194 +#: extras/forms/bulk_edit.py:164 extras/forms/filtersets.py:194 msgid "As attachment" msgstr "Jako příloha" -#: netbox/extras/forms/bulk_edit.py:192 netbox/extras/forms/filtersets.py:236 -#: netbox/extras/tables/tables.py:256 -#: netbox/templates/extras/savedfilter.html:29 +#: extras/forms/bulk_edit.py:192 extras/forms/filtersets.py:236 +#: extras/tables/tables.py:256 templates/extras/savedfilter.html:29 msgid "Shared" msgstr "Sdílené" -#: netbox/extras/forms/bulk_edit.py:215 netbox/extras/forms/filtersets.py:265 -#: netbox/extras/models/models.py:174 +#: extras/forms/bulk_edit.py:215 extras/forms/filtersets.py:265 +#: extras/models/models.py:174 msgid "HTTP method" msgstr "Metoda HTTP" -#: netbox/extras/forms/bulk_edit.py:219 netbox/extras/forms/filtersets.py:259 -#: netbox/templates/extras/webhook.html:30 +#: extras/forms/bulk_edit.py:219 extras/forms/filtersets.py:259 +#: templates/extras/webhook.html:30 msgid "Payload URL" msgstr "Adresa URL užitečného zatížení" -#: netbox/extras/forms/bulk_edit.py:224 netbox/extras/models/models.py:214 +#: extras/forms/bulk_edit.py:224 extras/models/models.py:214 msgid "SSL verification" msgstr "Ověření SSL" -#: netbox/extras/forms/bulk_edit.py:227 -#: netbox/templates/extras/webhook.html:38 +#: extras/forms/bulk_edit.py:227 templates/extras/webhook.html:38 msgid "Secret" msgstr "Tajemství" -#: netbox/extras/forms/bulk_edit.py:232 +#: extras/forms/bulk_edit.py:232 msgid "CA file path" msgstr "Cesta k souboru CA" -#: netbox/extras/forms/bulk_edit.py:253 netbox/extras/forms/bulk_import.py:192 -#: netbox/extras/forms/model_forms.py:377 +#: extras/forms/bulk_edit.py:253 extras/forms/bulk_import.py:192 +#: extras/forms/model_forms.py:377 msgid "Event types" msgstr "Typy událostí" -#: netbox/extras/forms/bulk_edit.py:293 +#: extras/forms/bulk_edit.py:293 msgid "Is active" msgstr "Je aktivní" -#: netbox/extras/forms/bulk_import.py:37 -#: netbox/extras/forms/bulk_import.py:118 -#: netbox/extras/forms/bulk_import.py:139 -#: netbox/extras/forms/bulk_import.py:162 -#: netbox/extras/forms/bulk_import.py:186 -#: netbox/extras/forms/filtersets.py:137 netbox/extras/forms/filtersets.py:224 -#: netbox/extras/forms/model_forms.py:47 -#: netbox/extras/forms/model_forms.py:205 -#: netbox/extras/forms/model_forms.py:237 -#: netbox/extras/forms/model_forms.py:278 -#: netbox/extras/forms/model_forms.py:372 -#: netbox/extras/forms/model_forms.py:489 -#: netbox/users/forms/model_forms.py:276 +#: extras/forms/bulk_import.py:37 extras/forms/bulk_import.py:118 +#: extras/forms/bulk_import.py:139 extras/forms/bulk_import.py:162 +#: extras/forms/bulk_import.py:186 extras/forms/filtersets.py:137 +#: extras/forms/filtersets.py:224 extras/forms/model_forms.py:47 +#: extras/forms/model_forms.py:205 extras/forms/model_forms.py:237 +#: extras/forms/model_forms.py:278 extras/forms/model_forms.py:372 +#: extras/forms/model_forms.py:489 users/forms/model_forms.py:276 msgid "Object types" msgstr "Typy objektů" -#: netbox/extras/forms/bulk_import.py:39 -#: netbox/extras/forms/bulk_import.py:120 -#: netbox/extras/forms/bulk_import.py:141 -#: netbox/extras/forms/bulk_import.py:164 -#: netbox/extras/forms/bulk_import.py:188 -#: netbox/tenancy/forms/bulk_import.py:96 +#: extras/forms/bulk_import.py:39 extras/forms/bulk_import.py:120 +#: extras/forms/bulk_import.py:141 extras/forms/bulk_import.py:164 +#: extras/forms/bulk_import.py:188 tenancy/forms/bulk_import.py:96 msgid "One or more assigned object types" msgstr "Jeden nebo více přiřazených typů objektů" -#: netbox/extras/forms/bulk_import.py:44 +#: extras/forms/bulk_import.py:44 msgid "Field data type (e.g. text, integer, etc.)" msgstr "Datový typ pole (např. text, celé číslo atd.)" -#: netbox/extras/forms/bulk_import.py:47 netbox/extras/forms/filtersets.py:208 -#: netbox/extras/forms/filtersets.py:281 -#: netbox/extras/forms/model_forms.py:304 -#: netbox/extras/forms/model_forms.py:341 -#: netbox/tenancy/forms/filtersets.py:92 +#: extras/forms/bulk_import.py:47 extras/forms/filtersets.py:208 +#: extras/forms/filtersets.py:281 extras/forms/model_forms.py:304 +#: extras/forms/model_forms.py:341 tenancy/forms/filtersets.py:92 msgid "Object type" msgstr "Typ objektu" -#: netbox/extras/forms/bulk_import.py:50 +#: extras/forms/bulk_import.py:50 msgid "Object type (for object or multi-object fields)" msgstr "Typ objektu (pro pole objektu nebo více objektů)" -#: netbox/extras/forms/bulk_import.py:53 netbox/extras/forms/filtersets.py:84 +#: extras/forms/bulk_import.py:53 extras/forms/filtersets.py:84 msgid "Choice set" msgstr "Sada na výběr" -#: netbox/extras/forms/bulk_import.py:57 +#: extras/forms/bulk_import.py:57 msgid "Choice set (for selection fields)" msgstr "Sada možností (pro výběrová pole)" -#: netbox/extras/forms/bulk_import.py:63 +#: extras/forms/bulk_import.py:63 msgid "Whether the custom field is displayed in the UI" msgstr "Zda je uživatelské pole zobrazeno v uživatelském rozhraní" -#: netbox/extras/forms/bulk_import.py:69 +#: extras/forms/bulk_import.py:69 msgid "Whether the custom field is editable in the UI" msgstr "Zda je vlastní pole upravitelné v uživatelském rozhraní" -#: netbox/extras/forms/bulk_import.py:85 +#: extras/forms/bulk_import.py:85 msgid "The base set of predefined choices to use (if any)" msgstr "Základní sada předdefinovaných možností k použití (pokud existují)" -#: netbox/extras/forms/bulk_import.py:91 +#: extras/forms/bulk_import.py:91 msgid "" "Quoted string of comma-separated field choices with optional labels " "separated by colon: \"choice1:First Choice,choice2:Second Choice\"" @@ -7695,199 +7162,183 @@ msgstr "" "Uváděný řetězec možností polí oddělených čárkami s volitelnými popisky " "oddělenými dvojtečkou: „výběr:1: první volba, výběra2:druhá volba“" -#: netbox/extras/forms/bulk_import.py:123 netbox/extras/models/models.py:323 +#: extras/forms/bulk_import.py:123 extras/models/models.py:323 msgid "button class" msgstr "třída tlačítek" -#: netbox/extras/forms/bulk_import.py:126 netbox/extras/models/models.py:327 +#: extras/forms/bulk_import.py:126 extras/models/models.py:327 msgid "" "The class of the first link in a group will be used for the dropdown button" msgstr "Třída prvního odkazu ve skupině bude použita pro rozevírací tlačítko" -#: netbox/extras/forms/bulk_import.py:193 +#: extras/forms/bulk_import.py:193 msgid "The event type(s) which will trigger this rule" msgstr "Typ (y) události, které spustí toto pravidlo" -#: netbox/extras/forms/bulk_import.py:196 +#: extras/forms/bulk_import.py:196 msgid "Action object" msgstr "Akční objekt" -#: netbox/extras/forms/bulk_import.py:198 +#: extras/forms/bulk_import.py:198 msgid "Webhook name or script as dotted path module.Class" msgstr "Název nebo skript Webhooku jako tečkovaná cesta module.Class" -#: netbox/extras/forms/bulk_import.py:219 +#: extras/forms/bulk_import.py:219 #, python-brace-format msgid "Webhook {name} not found" msgstr "Webový háček {name} nenalezeno" -#: netbox/extras/forms/bulk_import.py:228 +#: extras/forms/bulk_import.py:228 #, python-brace-format msgid "Script {name} not found" msgstr "Skript {name} nenalezeno" -#: netbox/extras/forms/bulk_import.py:244 +#: extras/forms/bulk_import.py:244 msgid "Assigned object type" msgstr "Typ přiřazeného objektu" -#: netbox/extras/forms/bulk_import.py:249 +#: extras/forms/bulk_import.py:249 msgid "The classification of entry" msgstr "Klasifikace vstupu" -#: netbox/extras/forms/bulk_import.py:261 -#: netbox/extras/forms/model_forms.py:320 netbox/netbox/navigation/menu.py:390 -#: netbox/templates/extras/notificationgroup.html:41 -#: netbox/templates/users/group.html:29 netbox/users/forms/model_forms.py:236 -#: netbox/users/forms/model_forms.py:248 netbox/users/forms/model_forms.py:300 -#: netbox/users/tables.py:102 +#: extras/forms/bulk_import.py:261 extras/forms/model_forms.py:320 +#: netbox/navigation/menu.py:390 templates/extras/notificationgroup.html:41 +#: templates/users/group.html:29 users/forms/model_forms.py:236 +#: users/forms/model_forms.py:248 users/forms/model_forms.py:300 +#: users/tables.py:102 msgid "Users" msgstr "Uživatelé" -#: netbox/extras/forms/bulk_import.py:265 +#: extras/forms/bulk_import.py:265 msgid "User names separated by commas, encased with double quotes" msgstr "Uživatelská jména oddělená čárkami, uzavřená dvojitými uvozovkami" -#: netbox/extras/forms/bulk_import.py:268 -#: netbox/extras/forms/model_forms.py:315 netbox/netbox/navigation/menu.py:410 -#: netbox/templates/extras/notificationgroup.html:31 -#: netbox/users/forms/model_forms.py:181 netbox/users/forms/model_forms.py:193 -#: netbox/users/forms/model_forms.py:305 netbox/users/tables.py:35 -#: netbox/users/tables.py:106 +#: extras/forms/bulk_import.py:268 extras/forms/model_forms.py:315 +#: netbox/navigation/menu.py:410 templates/extras/notificationgroup.html:31 +#: users/forms/model_forms.py:181 users/forms/model_forms.py:193 +#: users/forms/model_forms.py:305 users/tables.py:35 users/tables.py:106 msgid "Groups" msgstr "Skupiny" -#: netbox/extras/forms/bulk_import.py:272 +#: extras/forms/bulk_import.py:272 msgid "Group names separated by commas, encased with double quotes" msgstr "Názvy skupin oddělené čárkami, uzavřené dvojitými uvozovkami" -#: netbox/extras/forms/filtersets.py:52 netbox/extras/forms/model_forms.py:56 +#: extras/forms/filtersets.py:52 extras/forms/model_forms.py:56 msgid "Related object type" msgstr "Typ souvisejícího objektu" -#: netbox/extras/forms/filtersets.py:57 +#: extras/forms/filtersets.py:57 msgid "Field type" msgstr "Typ pole" -#: netbox/extras/forms/filtersets.py:120 -#: netbox/extras/forms/model_forms.py:157 netbox/extras/tables/tables.py:91 -#: netbox/templates/generic/bulk_import.html:154 +#: extras/forms/filtersets.py:120 extras/forms/model_forms.py:157 +#: extras/tables/tables.py:91 templates/generic/bulk_import.html:154 msgid "Choices" msgstr "Možnosti" -#: netbox/extras/forms/filtersets.py:164 netbox/extras/forms/filtersets.py:319 -#: netbox/extras/forms/filtersets.py:408 -#: netbox/extras/forms/model_forms.py:572 netbox/templates/core/job.html:96 -#: netbox/templates/extras/eventrule.html:84 +#: extras/forms/filtersets.py:164 extras/forms/filtersets.py:319 +#: extras/forms/filtersets.py:408 extras/forms/model_forms.py:572 +#: templates/core/job.html:96 templates/extras/eventrule.html:84 msgid "Data" msgstr "Údaje" -#: netbox/extras/forms/filtersets.py:175 netbox/extras/forms/filtersets.py:333 -#: netbox/extras/forms/filtersets.py:418 netbox/netbox/choices.py:130 -#: netbox/utilities/forms/bulk_import.py:26 +#: extras/forms/filtersets.py:175 extras/forms/filtersets.py:333 +#: extras/forms/filtersets.py:418 netbox/choices.py:130 +#: utilities/forms/bulk_import.py:26 msgid "Data file" msgstr "Datový soubor" -#: netbox/extras/forms/filtersets.py:183 +#: extras/forms/filtersets.py:183 msgid "Content types" msgstr "Typy obsahu" -#: netbox/extras/forms/filtersets.py:255 netbox/extras/models/models.py:179 +#: extras/forms/filtersets.py:255 extras/models/models.py:179 msgid "HTTP content type" msgstr "Typ obsahu HTTP" -#: netbox/extras/forms/filtersets.py:286 +#: extras/forms/filtersets.py:286 msgid "Event type" msgstr "Typ události" -#: netbox/extras/forms/filtersets.py:291 +#: extras/forms/filtersets.py:291 msgid "Action type" msgstr "Typ akce" -#: netbox/extras/forms/filtersets.py:307 +#: extras/forms/filtersets.py:307 msgid "Tagged object type" msgstr "Typ označeného objektu" -#: netbox/extras/forms/filtersets.py:312 +#: extras/forms/filtersets.py:312 msgid "Allowed object type" msgstr "Povolený typ objektu" -#: netbox/extras/forms/filtersets.py:341 -#: netbox/extras/forms/model_forms.py:507 netbox/netbox/navigation/menu.py:18 +#: extras/forms/filtersets.py:341 extras/forms/model_forms.py:507 +#: netbox/navigation/menu.py:18 msgid "Regions" msgstr "Regiony" -#: netbox/extras/forms/filtersets.py:346 -#: netbox/extras/forms/model_forms.py:512 +#: extras/forms/filtersets.py:346 extras/forms/model_forms.py:512 msgid "Site groups" msgstr "Skupiny webů" -#: netbox/extras/forms/filtersets.py:356 -#: netbox/extras/forms/model_forms.py:522 netbox/netbox/navigation/menu.py:20 -#: netbox/templates/dcim/site.html:127 +#: extras/forms/filtersets.py:356 extras/forms/model_forms.py:522 +#: netbox/navigation/menu.py:20 templates/dcim/site.html:127 msgid "Locations" msgstr "Lokality" -#: netbox/extras/forms/filtersets.py:361 -#: netbox/extras/forms/model_forms.py:527 +#: extras/forms/filtersets.py:361 extras/forms/model_forms.py:527 msgid "Device types" msgstr "Typy zařízení" -#: netbox/extras/forms/filtersets.py:366 -#: netbox/extras/forms/model_forms.py:532 +#: extras/forms/filtersets.py:366 extras/forms/model_forms.py:532 msgid "Roles" msgstr "Role" -#: netbox/extras/forms/filtersets.py:376 -#: netbox/extras/forms/model_forms.py:542 +#: extras/forms/filtersets.py:376 extras/forms/model_forms.py:542 msgid "Cluster types" msgstr "Typy klastrů" -#: netbox/extras/forms/filtersets.py:381 -#: netbox/extras/forms/model_forms.py:547 +#: extras/forms/filtersets.py:381 extras/forms/model_forms.py:547 msgid "Cluster groups" msgstr "Skupiny klastrů" -#: netbox/extras/forms/filtersets.py:386 -#: netbox/extras/forms/model_forms.py:552 netbox/netbox/navigation/menu.py:255 -#: netbox/netbox/navigation/menu.py:257 -#: netbox/templates/virtualization/clustertype.html:30 -#: netbox/virtualization/tables/clusters.py:23 -#: netbox/virtualization/tables/clusters.py:45 +#: extras/forms/filtersets.py:386 extras/forms/model_forms.py:552 +#: netbox/navigation/menu.py:255 netbox/navigation/menu.py:257 +#: templates/virtualization/clustertype.html:30 +#: virtualization/tables/clusters.py:23 virtualization/tables/clusters.py:45 msgid "Clusters" msgstr "Klastry" -#: netbox/extras/forms/filtersets.py:391 -#: netbox/extras/forms/model_forms.py:557 +#: extras/forms/filtersets.py:391 extras/forms/model_forms.py:557 msgid "Tenant groups" msgstr "Skupiny nájemců" -#: netbox/extras/forms/model_forms.py:49 +#: extras/forms/model_forms.py:49 msgid "The type(s) of object that have this custom field" msgstr "Typ (y) objektu, který má toto vlastní pole" -#: netbox/extras/forms/model_forms.py:52 +#: extras/forms/model_forms.py:52 msgid "Default value" msgstr "Výchozí hodnota" -#: netbox/extras/forms/model_forms.py:58 +#: extras/forms/model_forms.py:58 msgid "Type of the related object (for object/multi-object fields only)" msgstr "Typ souvisejícího objektu (pouze pro pole objektu/více objektů)" -#: netbox/extras/forms/model_forms.py:61 -#: netbox/templates/extras/customfield.html:60 +#: extras/forms/model_forms.py:61 templates/extras/customfield.html:60 msgid "Related object filter" msgstr "Související filtr objektů" -#: netbox/extras/forms/model_forms.py:63 +#: extras/forms/model_forms.py:63 msgid "Specify query parameters as a JSON object." msgstr "Zadejte parametry dotazu jako objekt JSON." -#: netbox/extras/forms/model_forms.py:73 -#: netbox/templates/extras/customfield.html:10 +#: extras/forms/model_forms.py:73 templates/extras/customfield.html:10 msgid "Custom Field" msgstr "Vlastní pole" -#: netbox/extras/forms/model_forms.py:85 +#: extras/forms/model_forms.py:85 msgid "" "The type of data stored in this field. For object/multi-object fields, " "select the related object type below." @@ -7895,18 +7346,18 @@ msgstr "" "Typ dat uložených v tomto poli. U polí objekt/více objektů vyberte níže " "související typ objektu." -#: netbox/extras/forms/model_forms.py:88 +#: extras/forms/model_forms.py:88 msgid "" "This will be displayed as help text for the form field. Markdown is " "supported." msgstr "" "Zobrazí se jako text nápovědy pro pole formuláře. Je podporován markdown." -#: netbox/extras/forms/model_forms.py:143 +#: extras/forms/model_forms.py:143 msgid "Related Object" msgstr "Související objekt" -#: netbox/extras/forms/model_forms.py:169 +#: extras/forms/model_forms.py:169 msgid "" "Enter one choice per line. An optional label may be specified for each " "choice by appending it with a colon. Example:" @@ -7914,16 +7365,15 @@ msgstr "" "Zadejte jednu volbu na řádek. Pro každou volbu lze zadat volitelný popisek " "přidáním dvojtečky. Příklad:" -#: netbox/extras/forms/model_forms.py:212 -#: netbox/templates/extras/customlink.html:10 +#: extras/forms/model_forms.py:212 templates/extras/customlink.html:10 msgid "Custom Link" msgstr "Vlastní odkaz" -#: netbox/extras/forms/model_forms.py:214 +#: extras/forms/model_forms.py:214 msgid "Templates" msgstr "Šablony" -#: netbox/extras/forms/model_forms.py:226 +#: extras/forms/model_forms.py:226 #, python-brace-format msgid "" "Jinja2 template code for the link text. Reference the object as {example}. " @@ -7932,7 +7382,7 @@ msgstr "" "Kód šablony Jinja2 pro text odkazu. Referovat na objekt jako {example}. " "Odkazy, které se vykreslují jako prázdný text, se nezobrazí." -#: netbox/extras/forms/model_forms.py:230 +#: extras/forms/model_forms.py:230 #, python-brace-format msgid "" "Jinja2 template code for the link URL. Reference the object as {example}." @@ -7940,58 +7390,52 @@ msgstr "" "Kód šablony Jinja2 pro adresu URL odkazu. Referovat na objekt jako " "{example}." -#: netbox/extras/forms/model_forms.py:241 -#: netbox/extras/forms/model_forms.py:624 +#: extras/forms/model_forms.py:241 extras/forms/model_forms.py:624 msgid "Template code" msgstr "Kód šablony" -#: netbox/extras/forms/model_forms.py:247 -#: netbox/templates/extras/exporttemplate.html:12 +#: extras/forms/model_forms.py:247 templates/extras/exporttemplate.html:12 msgid "Export Template" msgstr "Šablona exportu" -#: netbox/extras/forms/model_forms.py:249 +#: extras/forms/model_forms.py:249 msgid "Rendering" msgstr "Vykreslování" -#: netbox/extras/forms/model_forms.py:263 -#: netbox/extras/forms/model_forms.py:649 +#: extras/forms/model_forms.py:263 extras/forms/model_forms.py:649 msgid "Template content is populated from the remote source selected below." msgstr "Obsah šablony je vyplněn ze vzdáleného zdroje vybraného níže." -#: netbox/extras/forms/model_forms.py:270 -#: netbox/extras/forms/model_forms.py:656 +#: extras/forms/model_forms.py:270 extras/forms/model_forms.py:656 msgid "Must specify either local content or a data file" msgstr "Musí zadat místní obsah nebo datový soubor" -#: netbox/extras/forms/model_forms.py:284 netbox/netbox/forms/mixins.py:70 -#: netbox/templates/extras/savedfilter.html:10 +#: extras/forms/model_forms.py:284 netbox/forms/mixins.py:70 +#: templates/extras/savedfilter.html:10 msgid "Saved Filter" msgstr "Uložený filtr" -#: netbox/extras/forms/model_forms.py:334 +#: extras/forms/model_forms.py:334 msgid "A notification group specify at least one user or group." msgstr "Skupina oznámení určuje alespoň jednoho uživatele nebo skupinu." -#: netbox/extras/forms/model_forms.py:356 -#: netbox/templates/extras/webhook.html:23 +#: extras/forms/model_forms.py:356 templates/extras/webhook.html:23 msgid "HTTP Request" msgstr "HTTP požadavek" -#: netbox/extras/forms/model_forms.py:358 -#: netbox/templates/extras/webhook.html:44 +#: extras/forms/model_forms.py:358 templates/extras/webhook.html:44 msgid "SSL" msgstr "SSL" -#: netbox/extras/forms/model_forms.py:380 +#: extras/forms/model_forms.py:380 msgid "Action choice" msgstr "Volba akce" -#: netbox/extras/forms/model_forms.py:385 +#: extras/forms/model_forms.py:385 msgid "Enter conditions in JSON format." msgstr "Zadejte podmínky do JSON Formát." -#: netbox/extras/forms/model_forms.py:389 +#: extras/forms/model_forms.py:389 msgid "" "Enter parameters to pass to the action in JSON format." @@ -7999,111 +7443,109 @@ msgstr "" "Zadejte parametry, které chcete předat akci v JSON Formát." -#: netbox/extras/forms/model_forms.py:394 -#: netbox/templates/extras/eventrule.html:10 +#: extras/forms/model_forms.py:394 templates/extras/eventrule.html:10 msgid "Event Rule" msgstr "Pravidlo události" -#: netbox/extras/forms/model_forms.py:395 +#: extras/forms/model_forms.py:395 msgid "Triggers" msgstr "Spouštěče" -#: netbox/extras/forms/model_forms.py:442 +#: extras/forms/model_forms.py:442 msgid "Notification group" msgstr "Skupina oznámení" -#: netbox/extras/forms/model_forms.py:562 netbox/netbox/navigation/menu.py:26 -#: netbox/tenancy/tables/tenants.py:22 +#: extras/forms/model_forms.py:562 netbox/navigation/menu.py:26 +#: tenancy/tables/tenants.py:22 msgid "Tenants" msgstr "Nájemci" -#: netbox/extras/forms/model_forms.py:606 +#: extras/forms/model_forms.py:606 msgid "Data is populated from the remote source selected below." msgstr "Data jsou vyplněna ze vzdáleného zdroje vybraného níže." -#: netbox/extras/forms/model_forms.py:612 +#: extras/forms/model_forms.py:612 msgid "Must specify either local data or a data file" msgstr "Musí zadat buď lokální data nebo datový soubor" -#: netbox/extras/forms/model_forms.py:631 -#: netbox/templates/core/datafile.html:55 +#: extras/forms/model_forms.py:631 templates/core/datafile.html:55 msgid "Content" msgstr "Obsah" -#: netbox/extras/forms/reports.py:17 netbox/extras/forms/scripts.py:23 +#: extras/forms/reports.py:17 extras/forms/scripts.py:23 msgid "Schedule at" msgstr "Plán na" -#: netbox/extras/forms/reports.py:18 +#: extras/forms/reports.py:18 msgid "Schedule execution of report to a set time" msgstr "Naplánujte spuštění sestavy na nastavený čas" -#: netbox/extras/forms/reports.py:23 netbox/extras/forms/scripts.py:29 +#: extras/forms/reports.py:23 extras/forms/scripts.py:29 msgid "Recurs every" msgstr "Opakuje se každý" -#: netbox/extras/forms/reports.py:27 +#: extras/forms/reports.py:27 msgid "Interval at which this report is re-run (in minutes)" msgstr "Interval, ve kterém je tato zpráva znovu spuštěna (v minutách)" -#: netbox/extras/forms/reports.py:35 netbox/extras/forms/scripts.py:41 +#: extras/forms/reports.py:35 extras/forms/scripts.py:41 #, python-brace-format msgid " (current time: {now})" msgstr " (aktuální čas: {now})" -#: netbox/extras/forms/reports.py:45 netbox/extras/forms/scripts.py:51 +#: extras/forms/reports.py:45 extras/forms/scripts.py:51 msgid "Scheduled time must be in the future." msgstr "Naplánovaný čas musí být v budoucnu." -#: netbox/extras/forms/scripts.py:17 +#: extras/forms/scripts.py:17 msgid "Commit changes" msgstr "Odevzdat změny" -#: netbox/extras/forms/scripts.py:18 +#: extras/forms/scripts.py:18 msgid "Commit changes to the database (uncheck for a dry-run)" msgstr "Odevzdat změny do databáze (zrušte zaškrtnutí u suchého spuštění)" -#: netbox/extras/forms/scripts.py:24 +#: extras/forms/scripts.py:24 msgid "Schedule execution of script to a set time" msgstr "Naplánujte spuštění skriptu na nastavený čas" -#: netbox/extras/forms/scripts.py:33 +#: extras/forms/scripts.py:33 msgid "Interval at which this script is re-run (in minutes)" msgstr "Interval, ve kterém je tento skript znovu spuštěn (v minutách)" -#: netbox/extras/jobs.py:49 +#: extras/jobs.py:49 msgid "Database changes have been reverted automatically." msgstr "Změny v databázi byly automaticky vráceny." -#: netbox/extras/jobs.py:56 +#: extras/jobs.py:55 msgid "Script aborted with error: " msgstr "Skript byl přerušen s chybou: " -#: netbox/extras/jobs.py:66 +#: extras/jobs.py:65 msgid "An exception occurred: " msgstr "Došlo k výjimce: " -#: netbox/extras/jobs.py:71 +#: extras/jobs.py:70 msgid "Database changes have been reverted due to error." msgstr "Změny databáze byly vráceny kvůli chybě." -#: netbox/extras/management/commands/reindex.py:66 +#: extras/management/commands/reindex.py:66 msgid "No indexers found!" msgstr "Nebyly nalezeny žádné indexátory!" -#: netbox/extras/models/configs.py:130 +#: extras/models/configs.py:130 msgid "config context" msgstr "kontext konfigurace" -#: netbox/extras/models/configs.py:131 +#: extras/models/configs.py:131 msgid "config contexts" msgstr "kontexty konfigurace" -#: netbox/extras/models/configs.py:149 netbox/extras/models/configs.py:205 +#: extras/models/configs.py:149 extras/models/configs.py:205 msgid "JSON data must be in object form. Example:" msgstr "Data JSON musí být ve formě objektu. Příklad:" -#: netbox/extras/models/configs.py:169 +#: extras/models/configs.py:169 msgid "" "Local config context data takes precedence over source contexts in the final" " rendered config context" @@ -8111,19 +7553,19 @@ msgstr "" "Lokální kontextová data konfigurace mají přednost před zdrojovými kontexty v" " konečném rendrovaném kontextu konfigurace" -#: netbox/extras/models/configs.py:224 +#: extras/models/configs.py:224 msgid "template code" msgstr "kód šablony" -#: netbox/extras/models/configs.py:225 +#: extras/models/configs.py:225 msgid "Jinja2 template code." msgstr "Kód šablony Jinja2." -#: netbox/extras/models/configs.py:228 +#: extras/models/configs.py:228 msgid "environment parameters" msgstr "parametry prostředí" -#: netbox/extras/models/configs.py:233 +#: extras/models/configs.py:233 msgid "" "Any additional" @@ -8133,39 +7575,39 @@ msgstr "" "href=\"https://jinja.palletsprojects.com/en/3.1.x/api/#jinja2.Environment\">další" " parametry projít při konstrukci prostředí Jinja2." -#: netbox/extras/models/configs.py:240 +#: extras/models/configs.py:240 msgid "config template" msgstr "šablona konfigurace" -#: netbox/extras/models/configs.py:241 +#: extras/models/configs.py:241 msgid "config templates" msgstr "konfigurační šablony" -#: netbox/extras/models/customfields.py:75 +#: extras/models/customfields.py:75 msgid "The object(s) to which this field applies." msgstr "Objekt (objekty), na které se toto pole vztahuje." -#: netbox/extras/models/customfields.py:82 +#: extras/models/customfields.py:82 msgid "The type of data this custom field holds" msgstr "Typ dat obsažených v tomto uživatelském poli" -#: netbox/extras/models/customfields.py:89 +#: extras/models/customfields.py:89 msgid "The type of NetBox object this field maps to (for object fields)" msgstr "Typ objektu NetBox, na který se toto pole mapuje (pro objektová pole)" -#: netbox/extras/models/customfields.py:95 +#: extras/models/customfields.py:95 msgid "Internal field name" msgstr "Název interního pole" -#: netbox/extras/models/customfields.py:99 +#: extras/models/customfields.py:99 msgid "Only alphanumeric characters and underscores are allowed." msgstr "Povoleny jsou pouze alfanumerické znaky a podtržítka." -#: netbox/extras/models/customfields.py:104 +#: extras/models/customfields.py:104 msgid "Double underscores are not permitted in custom field names." msgstr "Dvojité podtržítko není povoleno v názvech vlastních polí." -#: netbox/extras/models/customfields.py:115 +#: extras/models/customfields.py:115 msgid "" "Name of the field as displayed to users (if not provided, 'the field's name " "will be used)" @@ -8173,19 +7615,19 @@ msgstr "" "Název pole zobrazeného uživatelům (pokud není uvedeno, použije se název " "pole)" -#: netbox/extras/models/customfields.py:119 netbox/extras/models/models.py:317 +#: extras/models/customfields.py:119 extras/models/models.py:317 msgid "group name" msgstr "název skupiny" -#: netbox/extras/models/customfields.py:122 +#: extras/models/customfields.py:122 msgid "Custom fields within the same group will be displayed together" msgstr "Vlastní pole ve stejné skupině se zobrazí společně" -#: netbox/extras/models/customfields.py:130 +#: extras/models/customfields.py:130 msgid "required" msgstr "požadované" -#: netbox/extras/models/customfields.py:132 +#: extras/models/customfields.py:132 msgid "" "This field is required when creating new objects or editing an existing " "object." @@ -8193,19 +7635,19 @@ msgstr "" "Toto pole je povinné při vytváření nových objektů nebo při úpravách " "existujícího objektu." -#: netbox/extras/models/customfields.py:135 +#: extras/models/customfields.py:135 msgid "must be unique" msgstr "Musí být unikátní" -#: netbox/extras/models/customfields.py:137 +#: extras/models/customfields.py:137 msgid "The value of this field must be unique for the assigned object" msgstr "Hodnota tohoto pole musí být jedinečná pro přiřazený objekt" -#: netbox/extras/models/customfields.py:140 +#: extras/models/customfields.py:140 msgid "search weight" msgstr "hmotnost vyhledávání" -#: netbox/extras/models/customfields.py:143 +#: extras/models/customfields.py:143 msgid "" "Weighting for search. Lower values are considered more important. Fields " "with a search weight of zero will be ignored." @@ -8213,11 +7655,11 @@ msgstr "" "Vážení pro vyhledávání. Nižší hodnoty jsou považovány za důležitější. Pole s" " váhou vyhledávání nula budou ignorována." -#: netbox/extras/models/customfields.py:148 +#: extras/models/customfields.py:148 msgid "filter logic" msgstr "filtrační logika" -#: netbox/extras/models/customfields.py:152 +#: extras/models/customfields.py:152 msgid "" "Loose matches any instance of a given string; exact matches the entire " "field." @@ -8225,11 +7667,11 @@ msgstr "" "Loose odpovídá libovolné instanci daného řetězce; přesně odpovídá celému " "poli." -#: netbox/extras/models/customfields.py:155 +#: extras/models/customfields.py:155 msgid "default" msgstr "selhání" -#: netbox/extras/models/customfields.py:159 +#: extras/models/customfields.py:159 msgid "" "Default value for the field (must be a JSON value). Encapsulate strings with" " double quotes (e.g. \"Foo\")." @@ -8237,7 +7679,7 @@ msgstr "" "Výchozí hodnota pole (musí být hodnota JSON). Zapouzdřit řetězce s dvojitými" " uvozovkami (např. „Foo“)." -#: netbox/extras/models/customfields.py:166 +#: extras/models/customfields.py:166 msgid "" "Filter the object selection choices using a query_params dict (must be a " "JSON value).Encapsulate strings with double quotes (e.g. \"Foo\")." @@ -8245,35 +7687,35 @@ msgstr "" "Filtrujte volby výběru objektů pomocí dikt query_params (musí být hodnota " "JSON). Zapouzdřete řetězce dvojitými uvozovkami (např. „Foo“)." -#: netbox/extras/models/customfields.py:172 +#: extras/models/customfields.py:172 msgid "display weight" msgstr "hmotnost displeje" -#: netbox/extras/models/customfields.py:173 +#: extras/models/customfields.py:173 msgid "Fields with higher weights appear lower in a form." msgstr "Pole s vyšší hmotností se ve formuláři zobrazují níže." -#: netbox/extras/models/customfields.py:178 +#: extras/models/customfields.py:178 msgid "minimum value" msgstr "minimální hodnota" -#: netbox/extras/models/customfields.py:179 +#: extras/models/customfields.py:179 msgid "Minimum allowed value (for numeric fields)" msgstr "Minimální povolená hodnota (pro číselná pole)" -#: netbox/extras/models/customfields.py:184 +#: extras/models/customfields.py:184 msgid "maximum value" msgstr "maximální hodnota" -#: netbox/extras/models/customfields.py:185 +#: extras/models/customfields.py:185 msgid "Maximum allowed value (for numeric fields)" msgstr "Maximální povolená hodnota (pro číselná pole)" -#: netbox/extras/models/customfields.py:191 +#: extras/models/customfields.py:191 msgid "validation regex" msgstr "validační regex" -#: netbox/extras/models/customfields.py:193 +#: extras/models/customfields.py:193 #, python-brace-format msgid "" "Regular expression to enforce on text field values. Use ^ and $ to force " @@ -8284,188 +7726,186 @@ msgstr "" "vynucení shody celého řetězce. Například, ^ [A-Z]{3}$ omezí " "hodnoty na přesně tři velká písmena." -#: netbox/extras/models/customfields.py:201 +#: extras/models/customfields.py:201 msgid "choice set" msgstr "výběrová sada" -#: netbox/extras/models/customfields.py:210 +#: extras/models/customfields.py:210 msgid "Specifies whether the custom field is displayed in the UI" msgstr "Určuje, zda se uživatelské pole zobrazí v uživatelském rozhraní" -#: netbox/extras/models/customfields.py:217 +#: extras/models/customfields.py:217 msgid "Specifies whether the custom field value can be edited in the UI" msgstr "" "Určuje, zda lze uživatelskou hodnotu pole upravovat v uživatelském rozhraní" -#: netbox/extras/models/customfields.py:221 +#: extras/models/customfields.py:221 msgid "is cloneable" msgstr "je klonovatelný" -#: netbox/extras/models/customfields.py:222 +#: extras/models/customfields.py:222 msgid "Replicate this value when cloning objects" msgstr "Replikujte tuto hodnotu při klonování objektů" -#: netbox/extras/models/customfields.py:239 +#: extras/models/customfields.py:239 msgid "custom field" msgstr "vlastní pole" -#: netbox/extras/models/customfields.py:240 +#: extras/models/customfields.py:240 msgid "custom fields" msgstr "vlastní pole" -#: netbox/extras/models/customfields.py:329 +#: extras/models/customfields.py:329 #, python-brace-format msgid "Invalid default value \"{value}\": {error}" msgstr "Neplatná výchozí hodnota“{value}„: {error}" -#: netbox/extras/models/customfields.py:336 +#: extras/models/customfields.py:336 msgid "A minimum value may be set only for numeric fields" msgstr "Minimální hodnota může být nastavena pouze pro číselná pole" -#: netbox/extras/models/customfields.py:338 +#: extras/models/customfields.py:338 msgid "A maximum value may be set only for numeric fields" msgstr "Maximální hodnota může být nastavena pouze pro číselná pole" -#: netbox/extras/models/customfields.py:348 +#: extras/models/customfields.py:348 msgid "" "Regular expression validation is supported only for text and URL fields" msgstr "" "Ověření regulárních výrazů je podporováno pouze pro textová pole a pole URL" -#: netbox/extras/models/customfields.py:354 +#: extras/models/customfields.py:354 msgid "Uniqueness cannot be enforced for boolean fields" msgstr "Jedinečnost nelze vynutit u booleovských polí" -#: netbox/extras/models/customfields.py:364 +#: extras/models/customfields.py:364 msgid "Selection fields must specify a set of choices." msgstr "Výběrová pole musí specifikovat sadu možností." -#: netbox/extras/models/customfields.py:368 +#: extras/models/customfields.py:368 msgid "Choices may be set only on selection fields." msgstr "Volby lze nastavit pouze na výběrových polích." -#: netbox/extras/models/customfields.py:375 +#: extras/models/customfields.py:375 msgid "Object fields must define an object type." msgstr "Pole objektu musí definovat typ objektu." -#: netbox/extras/models/customfields.py:379 +#: extras/models/customfields.py:379 #, python-brace-format msgid "{type} fields may not define an object type." msgstr "{type} pole nemusí definovat typ objektu." -#: netbox/extras/models/customfields.py:386 +#: extras/models/customfields.py:386 msgid "A related object filter can be defined only for object fields." msgstr "Související filtr objektů lze definovat pouze pro pole objektů." -#: netbox/extras/models/customfields.py:390 +#: extras/models/customfields.py:390 msgid "Filter must be defined as a dictionary mapping attributes to values." msgstr "Filtr musí být definován jako slovník mapující atributy na hodnoty." -#: netbox/extras/models/customfields.py:469 +#: extras/models/customfields.py:469 msgid "True" msgstr "Pravda" -#: netbox/extras/models/customfields.py:470 +#: extras/models/customfields.py:470 msgid "False" msgstr "Nepravdivé" -#: netbox/extras/models/customfields.py:560 +#: extras/models/customfields.py:560 #, python-brace-format msgid "Values must match this regex: {regex}" msgstr "Hodnoty se musí shodovat s tímto regexem: {regex}" -#: netbox/extras/models/customfields.py:654 +#: extras/models/customfields.py:654 msgid "Value must be a string." msgstr "Hodnota musí být řetězec." -#: netbox/extras/models/customfields.py:656 +#: extras/models/customfields.py:656 #, python-brace-format msgid "Value must match regex '{regex}'" msgstr "Hodnota musí odpovídat regex '{regex}'" -#: netbox/extras/models/customfields.py:661 +#: extras/models/customfields.py:661 msgid "Value must be an integer." msgstr "Hodnota musí být celé číslo." -#: netbox/extras/models/customfields.py:664 -#: netbox/extras/models/customfields.py:679 +#: extras/models/customfields.py:664 extras/models/customfields.py:679 #, python-brace-format msgid "Value must be at least {minimum}" msgstr "Hodnota musí být alespoň {minimum}" -#: netbox/extras/models/customfields.py:668 -#: netbox/extras/models/customfields.py:683 +#: extras/models/customfields.py:668 extras/models/customfields.py:683 #, python-brace-format msgid "Value must not exceed {maximum}" msgstr "Hodnota nesmí překročit {maximum}" -#: netbox/extras/models/customfields.py:676 +#: extras/models/customfields.py:676 msgid "Value must be a decimal." msgstr "Hodnota musí být desetinná." -#: netbox/extras/models/customfields.py:688 +#: extras/models/customfields.py:688 msgid "Value must be true or false." msgstr "Hodnota musí být pravdivá nebo nepravdivá." -#: netbox/extras/models/customfields.py:696 +#: extras/models/customfields.py:696 msgid "Date values must be in ISO 8601 format (YYYY-MM-DD)." msgstr "Hodnoty data musí být ve formátu ISO 8601 (RRRR-MM-DD)." -#: netbox/extras/models/customfields.py:705 +#: extras/models/customfields.py:705 msgid "Date and time values must be in ISO 8601 format (YYYY-MM-DD HH:MM:SS)." msgstr "" "Hodnoty data a času musí být ve formátu ISO 8601 (RRRR-MM-DD HH:MM:SS)." -#: netbox/extras/models/customfields.py:712 +#: extras/models/customfields.py:712 #, python-brace-format msgid "Invalid choice ({value}) for choice set {choiceset}." msgstr "Neplatná volba ({value}) pro volitelnou sadu {choiceset}." -#: netbox/extras/models/customfields.py:722 +#: extras/models/customfields.py:722 #, python-brace-format msgid "Invalid choice(s) ({value}) for choice set {choiceset}." msgstr "Neplatná volba (y){value}) pro volitelnou sadu {choiceset}." -#: netbox/extras/models/customfields.py:731 +#: extras/models/customfields.py:731 #, python-brace-format msgid "Value must be an object ID, not {type}" msgstr "Hodnota musí být ID objektu, ne {type}" -#: netbox/extras/models/customfields.py:737 +#: extras/models/customfields.py:737 #, python-brace-format msgid "Value must be a list of object IDs, not {type}" msgstr "Hodnota musí být seznam ID objektů, ne {type}" -#: netbox/extras/models/customfields.py:741 +#: extras/models/customfields.py:741 #, python-brace-format msgid "Found invalid object ID: {id}" msgstr "Nalezeno neplatné ID objektu: {id}" -#: netbox/extras/models/customfields.py:744 +#: extras/models/customfields.py:744 msgid "Required field cannot be empty." msgstr "Povinné pole nesmí být prázdné." -#: netbox/extras/models/customfields.py:763 +#: extras/models/customfields.py:763 msgid "Base set of predefined choices (optional)" msgstr "Základní sada předdefinovaných možností (volitelné)" -#: netbox/extras/models/customfields.py:775 +#: extras/models/customfields.py:775 msgid "Choices are automatically ordered alphabetically" msgstr "Volby jsou automaticky seřazeny abecedně" -#: netbox/extras/models/customfields.py:782 +#: extras/models/customfields.py:782 msgid "custom field choice set" msgstr "vlastní sada výběru polí" -#: netbox/extras/models/customfields.py:783 +#: extras/models/customfields.py:783 msgid "custom field choice sets" msgstr "vlastní sady výběru polí" -#: netbox/extras/models/customfields.py:825 +#: extras/models/customfields.py:825 msgid "Must define base or extra choices." msgstr "Musí definovat základní nebo další možnosti." -#: netbox/extras/models/customfields.py:849 +#: extras/models/customfields.py:849 #, python-brace-format msgid "" "Cannot remove choice {choice} as there are {model} objects which reference " @@ -8474,60 +7914,60 @@ msgstr "" "Nelze odebrat volbu {choice} jak existují {model} objekty, které na něj " "odkazují." -#: netbox/extras/models/dashboard.py:18 +#: extras/models/dashboard.py:18 msgid "layout" msgstr "rozložení" -#: netbox/extras/models/dashboard.py:22 +#: extras/models/dashboard.py:22 msgid "config" msgstr "konfigurace" -#: netbox/extras/models/dashboard.py:27 +#: extras/models/dashboard.py:27 msgid "dashboard" msgstr "přístrojová deska" -#: netbox/extras/models/dashboard.py:28 +#: extras/models/dashboard.py:28 msgid "dashboards" msgstr "řídicí panely" -#: netbox/extras/models/models.py:52 +#: extras/models/models.py:52 msgid "object types" msgstr "typy objektů" -#: netbox/extras/models/models.py:53 +#: extras/models/models.py:53 msgid "The object(s) to which this rule applies." msgstr "Předmět (objekty), na které se toto pravidlo vztahuje." -#: netbox/extras/models/models.py:67 +#: extras/models/models.py:67 msgid "The types of event which will trigger this rule." msgstr "Typy událostí, které spustí toto pravidlo." -#: netbox/extras/models/models.py:74 +#: extras/models/models.py:74 msgid "conditions" msgstr "podmínky" -#: netbox/extras/models/models.py:77 +#: extras/models/models.py:77 msgid "" "A set of conditions which determine whether the event will be generated." msgstr "Sada podmínek, které určují, zda bude událost generována." -#: netbox/extras/models/models.py:85 +#: extras/models/models.py:85 msgid "action type" msgstr "typ akce" -#: netbox/extras/models/models.py:104 +#: extras/models/models.py:104 msgid "Additional data to pass to the action object" msgstr "Další data, která mají být předána objektu akce" -#: netbox/extras/models/models.py:116 +#: extras/models/models.py:116 msgid "event rule" msgstr "pravidlo události" -#: netbox/extras/models/models.py:117 +#: extras/models/models.py:117 msgid "event rules" msgstr "pravidla události" -#: netbox/extras/models/models.py:166 +#: extras/models/models.py:166 msgid "" "This URL will be called using the HTTP method defined when the webhook is " "called. Jinja2 template processing is supported with the same context as the" @@ -8537,7 +7977,7 @@ msgstr "" "webhooku. Zpracování šablony Jinja2 je podporováno ve stejném kontextu jako " "tělo požadavku." -#: netbox/extras/models/models.py:181 +#: extras/models/models.py:181 msgid "" "The complete list of official content types is available tady." -#: netbox/extras/models/models.py:186 +#: extras/models/models.py:186 msgid "additional headers" msgstr "další záhlaví" -#: netbox/extras/models/models.py:189 +#: extras/models/models.py:189 msgid "" "User-supplied HTTP headers to be sent with the request in addition to the " "HTTP content type. Headers should be defined in the format Name: " @@ -8563,11 +8003,11 @@ msgstr "" "Hodnota. Zpracování šablony Jinja2 je podporováno ve stejném kontextu" " jako tělo požadavku (níže)." -#: netbox/extras/models/models.py:195 +#: extras/models/models.py:195 msgid "body template" msgstr "šablona těla" -#: netbox/extras/models/models.py:198 +#: extras/models/models.py:198 msgid "" "Jinja2 template for a custom request body. If blank, a JSON object " "representing the change will be included. Available context data includes: " @@ -8580,11 +8020,11 @@ msgstr "" "uživatelské jméno, identifikační číslo požadavku, " "a data." -#: netbox/extras/models/models.py:204 +#: extras/models/models.py:204 msgid "secret" msgstr "tajemství" -#: netbox/extras/models/models.py:208 +#: extras/models/models.py:208 msgid "" "When provided, the request will include a X-Hook-Signature " "header containing a HMAC hex digest of the payload body using the secret as " @@ -8594,15 +8034,15 @@ msgstr "" " hlavička obsahující hexový přehled HMAC těla užitečného zatížení s použitím" " tajemství jako klíče. Tajemství není v žádosti předáno." -#: netbox/extras/models/models.py:215 +#: extras/models/models.py:215 msgid "Enable SSL certificate verification. Disable with caution!" msgstr "Povolit ověření certifikátu SSL. Zakázat s opatrností!" -#: netbox/extras/models/models.py:221 netbox/templates/extras/webhook.html:51 +#: extras/models/models.py:221 templates/extras/webhook.html:51 msgid "CA File Path" msgstr "Cesta k souboru CA" -#: netbox/extras/models/models.py:223 +#: extras/models/models.py:223 msgid "" "The specific CA certificate file to use for SSL verification. Leave blank to" " use the system defaults." @@ -8610,65 +8050,65 @@ msgstr "" "Specifický soubor certifikátu CA, který se použije pro ověření SSL. Chcete-" "li použít výchozí nastavení systému, ponechte prázdné." -#: netbox/extras/models/models.py:234 +#: extras/models/models.py:234 msgid "webhook" msgstr "webový háček" -#: netbox/extras/models/models.py:235 +#: extras/models/models.py:235 msgid "webhooks" msgstr "webhooky" -#: netbox/extras/models/models.py:253 +#: extras/models/models.py:253 msgid "Do not specify a CA certificate file if SSL verification is disabled." msgstr "" "Pokud je ověřování SSL zakázáno, neurčujte soubor certifikátu certifikační " "autority." -#: netbox/extras/models/models.py:293 +#: extras/models/models.py:293 msgid "The object type(s) to which this link applies." msgstr "Typ objektu (typy), na které se toto spojení vztahuje." -#: netbox/extras/models/models.py:305 +#: extras/models/models.py:305 msgid "link text" msgstr "text odkazu" -#: netbox/extras/models/models.py:306 +#: extras/models/models.py:306 msgid "Jinja2 template code for link text" msgstr "Kód šablony Jinja2 pro text odkazu" -#: netbox/extras/models/models.py:309 +#: extras/models/models.py:309 msgid "link URL" msgstr "URL odkazu" -#: netbox/extras/models/models.py:310 +#: extras/models/models.py:310 msgid "Jinja2 template code for link URL" msgstr "Kód šablony Jinja2 pro URL odkazu" -#: netbox/extras/models/models.py:320 +#: extras/models/models.py:320 msgid "Links with the same group will appear as a dropdown menu" msgstr "Odkazy se stejnou skupinou se zobrazí jako rozbalovací nabídka" -#: netbox/extras/models/models.py:330 +#: extras/models/models.py:330 msgid "new window" msgstr "nové okno" -#: netbox/extras/models/models.py:332 +#: extras/models/models.py:332 msgid "Force link to open in a new window" msgstr "Vynutit otevření odkazu v novém okně" -#: netbox/extras/models/models.py:341 +#: extras/models/models.py:341 msgid "custom link" msgstr "vlastní odkaz" -#: netbox/extras/models/models.py:342 +#: extras/models/models.py:342 msgid "custom links" msgstr "vlastní odkazy" -#: netbox/extras/models/models.py:389 +#: extras/models/models.py:389 msgid "The object type(s) to which this template applies." msgstr "Typ (typy) objektu, na které se tato šablona vztahuje." -#: netbox/extras/models/models.py:402 +#: extras/models/models.py:402 msgid "" "Jinja2 template code. The list of objects being exported is passed as a " "context variable named queryset." @@ -8676,1085 +8116,1050 @@ msgstr "" "Kód šablony Jinja2. Seznam exportovaných objektů je předán jako kontextová " "proměnná s názvem queryset." -#: netbox/extras/models/models.py:410 +#: extras/models/models.py:410 msgid "Defaults to text/plain; charset=utf-8" msgstr "Výchozí hodnota text/prostý; znaková sada = utf-8" -#: netbox/extras/models/models.py:413 +#: extras/models/models.py:413 msgid "file extension" msgstr "přípona souboru" -#: netbox/extras/models/models.py:416 +#: extras/models/models.py:416 msgid "Extension to append to the rendered filename" msgstr "Rozšíření pro připojení k rendrovanému názvu souboru" -#: netbox/extras/models/models.py:419 +#: extras/models/models.py:419 msgid "as attachment" msgstr "jako příloha" -#: netbox/extras/models/models.py:421 +#: extras/models/models.py:421 msgid "Download file as attachment" msgstr "Stáhnout soubor jako přílohu" -#: netbox/extras/models/models.py:430 +#: extras/models/models.py:430 msgid "export template" msgstr "šablona exportu" -#: netbox/extras/models/models.py:431 +#: extras/models/models.py:431 msgid "export templates" msgstr "exportovat šablony" -#: netbox/extras/models/models.py:448 +#: extras/models/models.py:448 #, python-brace-format msgid "\"{name}\" is a reserved name. Please choose a different name." msgstr "„{name}„je vyhrazené jméno. Zvolte prosím jiné jméno." -#: netbox/extras/models/models.py:498 +#: extras/models/models.py:498 msgid "The object type(s) to which this filter applies." msgstr "Typ objektu (typy), na které se tento filtr vztahuje." -#: netbox/extras/models/models.py:530 +#: extras/models/models.py:530 msgid "shared" msgstr "sdílené" -#: netbox/extras/models/models.py:543 +#: extras/models/models.py:543 msgid "saved filter" msgstr "uložený filtr" -#: netbox/extras/models/models.py:544 +#: extras/models/models.py:544 msgid "saved filters" msgstr "uložené filtry" -#: netbox/extras/models/models.py:562 +#: extras/models/models.py:562 msgid "Filter parameters must be stored as a dictionary of keyword arguments." msgstr "" "Parametry filtru musí být uloženy jako slovník argumentů klíčových slov." -#: netbox/extras/models/models.py:590 +#: extras/models/models.py:590 msgid "image height" msgstr "výška obrazu" -#: netbox/extras/models/models.py:593 +#: extras/models/models.py:593 msgid "image width" msgstr "šířka obrazu" -#: netbox/extras/models/models.py:610 +#: extras/models/models.py:610 msgid "image attachment" msgstr "příloha obrázku" -#: netbox/extras/models/models.py:611 +#: extras/models/models.py:611 msgid "image attachments" msgstr "obrazové přílohy" -#: netbox/extras/models/models.py:625 +#: extras/models/models.py:625 #, python-brace-format msgid "Image attachments cannot be assigned to this object type ({type})." msgstr "K tomuto typu objektu nelze přiřadit přílohy obrázků ({type})." -#: netbox/extras/models/models.py:688 +#: extras/models/models.py:688 msgid "kind" msgstr "laskavý" -#: netbox/extras/models/models.py:702 +#: extras/models/models.py:702 msgid "journal entry" msgstr "zápis do deníku" -#: netbox/extras/models/models.py:703 +#: extras/models/models.py:703 msgid "journal entries" msgstr "zápisy do deníku" -#: netbox/extras/models/models.py:718 +#: extras/models/models.py:718 #, python-brace-format msgid "Journaling is not supported for this object type ({type})." msgstr "Žurnálování není pro tento typ objektu podporováno ({type})." -#: netbox/extras/models/models.py:760 +#: extras/models/models.py:760 msgid "bookmark" msgstr "záložka" -#: netbox/extras/models/models.py:761 +#: extras/models/models.py:761 msgid "bookmarks" msgstr "záložky" -#: netbox/extras/models/models.py:774 +#: extras/models/models.py:774 #, python-brace-format msgid "Bookmarks cannot be assigned to this object type ({type})." msgstr "K tomuto typu objektu nelze přiřadit záložky ({type})." -#: netbox/extras/models/notifications.py:43 +#: extras/models/notifications.py:43 msgid "read" msgstr "číst" -#: netbox/extras/models/notifications.py:66 +#: extras/models/notifications.py:66 msgid "event" msgstr "událost" -#: netbox/extras/models/notifications.py:84 +#: extras/models/notifications.py:84 msgid "notification" msgstr "oznámení" -#: netbox/extras/models/notifications.py:85 +#: extras/models/notifications.py:85 msgid "notifications" msgstr "oznámení" -#: netbox/extras/models/notifications.py:99 -#: netbox/extras/models/notifications.py:234 +#: extras/models/notifications.py:99 extras/models/notifications.py:234 #, python-brace-format msgid "Objects of this type ({type}) do not support notifications." msgstr "Objekty tohoto typu ({type}) nepodporují oznámení." -#: netbox/extras/models/notifications.py:137 netbox/users/models/users.py:58 -#: netbox/users/models/users.py:77 +#: extras/models/notifications.py:137 users/models/users.py:58 +#: users/models/users.py:77 msgid "groups" msgstr "skupin" -#: netbox/extras/models/notifications.py:143 netbox/users/models/users.py:93 +#: extras/models/notifications.py:143 users/models/users.py:93 msgid "users" msgstr "uživatelé" -#: netbox/extras/models/notifications.py:152 +#: extras/models/notifications.py:152 msgid "notification group" msgstr "oznamovací skupina" -#: netbox/extras/models/notifications.py:153 +#: extras/models/notifications.py:153 msgid "notification groups" msgstr "skupiny oznámení" -#: netbox/extras/models/notifications.py:217 +#: extras/models/notifications.py:217 msgid "subscription" msgstr "předplatné" -#: netbox/extras/models/notifications.py:218 +#: extras/models/notifications.py:218 msgid "subscriptions" msgstr "předplatné" -#: netbox/extras/models/scripts.py:42 +#: extras/models/scripts.py:42 msgid "is executable" msgstr "je spustitelný" -#: netbox/extras/models/scripts.py:64 +#: extras/models/scripts.py:64 msgid "script" msgstr "skript" -#: netbox/extras/models/scripts.py:65 +#: extras/models/scripts.py:65 msgid "scripts" msgstr "skripty" -#: netbox/extras/models/scripts.py:111 +#: extras/models/scripts.py:111 msgid "script module" msgstr "skriptový modul" -#: netbox/extras/models/scripts.py:112 +#: extras/models/scripts.py:112 msgid "script modules" msgstr "skriptové moduly" -#: netbox/extras/models/search.py:22 +#: extras/models/search.py:22 msgid "timestamp" msgstr "časové razítko" -#: netbox/extras/models/search.py:37 +#: extras/models/search.py:37 msgid "field" msgstr "pole" -#: netbox/extras/models/search.py:45 +#: extras/models/search.py:45 msgid "value" msgstr "hodnota" -#: netbox/extras/models/search.py:56 +#: extras/models/search.py:56 msgid "cached value" msgstr "hodnota uložená v mezipaměti" -#: netbox/extras/models/search.py:57 +#: extras/models/search.py:57 msgid "cached values" msgstr "hodnoty uložené v mezipaměti" -#: netbox/extras/models/staging.py:44 +#: extras/models/staging.py:44 msgid "branch" msgstr "větev" -#: netbox/extras/models/staging.py:45 +#: extras/models/staging.py:45 msgid "branches" msgstr "poboček" -#: netbox/extras/models/staging.py:97 +#: extras/models/staging.py:97 msgid "staged change" msgstr "postupná změna" -#: netbox/extras/models/staging.py:98 +#: extras/models/staging.py:98 msgid "staged changes" msgstr "postupné změny" -#: netbox/extras/models/tags.py:40 +#: extras/models/tags.py:40 msgid "The object type(s) to which this tag can be applied." msgstr "Typ objektu (typy), na které lze tento tag použít." -#: netbox/extras/models/tags.py:49 +#: extras/models/tags.py:49 msgid "tag" msgstr "štítek" -#: netbox/extras/models/tags.py:50 +#: extras/models/tags.py:50 msgid "tags" msgstr "tagy" -#: netbox/extras/models/tags.py:78 +#: extras/models/tags.py:78 msgid "tagged item" msgstr "označená položka" -#: netbox/extras/models/tags.py:79 +#: extras/models/tags.py:79 msgid "tagged items" msgstr "označené položky" -#: netbox/extras/scripts.py:429 +#: extras/scripts.py:429 msgid "Script Data" msgstr "Data skriptu" -#: netbox/extras/scripts.py:433 +#: extras/scripts.py:433 msgid "Script Execution Parameters" msgstr "Parametry spuštění skriptu" -#: netbox/extras/tables/columns.py:12 -#: netbox/templates/htmx/notifications.html:18 +#: extras/tables/columns.py:12 templates/htmx/notifications.html:18 msgid "Dismiss" msgstr "Odmítnout" -#: netbox/extras/tables/tables.py:62 netbox/extras/tables/tables.py:159 -#: netbox/extras/tables/tables.py:184 netbox/extras/tables/tables.py:250 -#: netbox/extras/tables/tables.py:276 netbox/extras/tables/tables.py:412 -#: netbox/extras/tables/tables.py:446 -#: netbox/templates/extras/customfield.html:105 -#: netbox/templates/extras/eventrule.html:27 -#: netbox/templates/users/objectpermission.html:64 netbox/users/tables.py:80 +#: extras/tables/tables.py:62 extras/tables/tables.py:159 +#: extras/tables/tables.py:184 extras/tables/tables.py:250 +#: extras/tables/tables.py:276 extras/tables/tables.py:412 +#: extras/tables/tables.py:446 templates/extras/customfield.html:105 +#: templates/extras/eventrule.html:27 templates/users/objectpermission.html:64 +#: users/tables.py:80 msgid "Object Types" msgstr "Typy objektů" -#: netbox/extras/tables/tables.py:69 +#: extras/tables/tables.py:69 msgid "Validate Uniqueness" msgstr "Ověřte jedinečnost" -#: netbox/extras/tables/tables.py:73 +#: extras/tables/tables.py:73 msgid "Visible" msgstr "Viditelné" -#: netbox/extras/tables/tables.py:76 +#: extras/tables/tables.py:76 msgid "Editable" msgstr "Upravitelné" -#: netbox/extras/tables/tables.py:82 +#: extras/tables/tables.py:82 msgid "Related Object Type" msgstr "Typ souvisejícího objektu" -#: netbox/extras/tables/tables.py:86 -#: netbox/templates/extras/customfield.html:51 +#: extras/tables/tables.py:86 templates/extras/customfield.html:51 msgid "Choice Set" msgstr "Sada výběru" -#: netbox/extras/tables/tables.py:94 +#: extras/tables/tables.py:94 msgid "Is Cloneable" msgstr "Je klonovatelný" -#: netbox/extras/tables/tables.py:98 -#: netbox/templates/extras/customfield.html:118 +#: extras/tables/tables.py:98 templates/extras/customfield.html:118 msgid "Minimum Value" msgstr "Minimální hodnota" -#: netbox/extras/tables/tables.py:101 -#: netbox/templates/extras/customfield.html:122 +#: extras/tables/tables.py:101 templates/extras/customfield.html:122 msgid "Maximum Value" msgstr "Maximální hodnota" -#: netbox/extras/tables/tables.py:104 +#: extras/tables/tables.py:104 msgid "Validation Regex" msgstr "Ověření Regex" -#: netbox/extras/tables/tables.py:137 +#: extras/tables/tables.py:137 msgid "Count" msgstr "počítat" -#: netbox/extras/tables/tables.py:140 +#: extras/tables/tables.py:140 msgid "Order Alphabetically" msgstr "Řadit abecedně" -#: netbox/extras/tables/tables.py:165 -#: netbox/templates/extras/customlink.html:33 +#: extras/tables/tables.py:165 templates/extras/customlink.html:33 msgid "New Window" msgstr "Nové okno" -#: netbox/extras/tables/tables.py:187 +#: extras/tables/tables.py:187 msgid "As Attachment" msgstr "Jako příloha" -#: netbox/extras/tables/tables.py:195 netbox/extras/tables/tables.py:487 -#: netbox/extras/tables/tables.py:522 netbox/templates/core/datafile.html:24 -#: netbox/templates/dcim/device/render_config.html:22 -#: netbox/templates/extras/configcontext.html:39 -#: netbox/templates/extras/configtemplate.html:31 -#: netbox/templates/extras/exporttemplate.html:45 -#: netbox/templates/generic/bulk_import.html:35 -#: netbox/templates/virtualization/virtualmachine/render_config.html:22 +#: extras/tables/tables.py:195 extras/tables/tables.py:487 +#: extras/tables/tables.py:522 templates/core/datafile.html:24 +#: templates/dcim/device/render_config.html:22 +#: templates/extras/configcontext.html:39 +#: templates/extras/configtemplate.html:31 +#: templates/extras/exporttemplate.html:45 +#: templates/generic/bulk_import.html:35 +#: templates/virtualization/virtualmachine/render_config.html:22 msgid "Data File" msgstr "Datový soubor" -#: netbox/extras/tables/tables.py:200 netbox/extras/tables/tables.py:499 -#: netbox/extras/tables/tables.py:527 +#: extras/tables/tables.py:200 extras/tables/tables.py:499 +#: extras/tables/tables.py:527 msgid "Synced" msgstr "Synchronizováno" -#: netbox/extras/tables/tables.py:227 +#: extras/tables/tables.py:227 msgid "Image" msgstr "Obrázek" -#: netbox/extras/tables/tables.py:232 +#: extras/tables/tables.py:232 msgid "Size (Bytes)" msgstr "Velikost (bajty)" -#: netbox/extras/tables/tables.py:339 +#: extras/tables/tables.py:339 msgid "Read" msgstr "Číst" -#: netbox/extras/tables/tables.py:382 +#: extras/tables/tables.py:382 msgid "SSL Validation" msgstr "Ověření SSL" -#: netbox/extras/tables/tables.py:418 -#: netbox/templates/extras/eventrule.html:37 +#: extras/tables/tables.py:418 templates/extras/eventrule.html:37 msgid "Event Types" msgstr "Typy událostí" -#: netbox/extras/tables/tables.py:535 netbox/netbox/navigation/menu.py:77 -#: netbox/templates/dcim/devicerole.html:8 +#: extras/tables/tables.py:535 netbox/navigation/menu.py:77 +#: templates/dcim/devicerole.html:8 msgid "Device Roles" msgstr "Role zařízení" -#: netbox/extras/tables/tables.py:587 +#: extras/tables/tables.py:587 msgid "Comments (Short)" msgstr "Komentáře (krátký)" -#: netbox/extras/tables/tables.py:606 netbox/extras/tables/tables.py:640 +#: extras/tables/tables.py:606 extras/tables/tables.py:640 msgid "Line" msgstr "Linka" -#: netbox/extras/tables/tables.py:613 netbox/extras/tables/tables.py:650 +#: extras/tables/tables.py:613 extras/tables/tables.py:650 msgid "Level" msgstr "Úroveň" -#: netbox/extras/tables/tables.py:619 netbox/extras/tables/tables.py:659 +#: extras/tables/tables.py:619 extras/tables/tables.py:659 msgid "Message" msgstr "Zpráva" -#: netbox/extras/tables/tables.py:643 +#: extras/tables/tables.py:643 msgid "Method" msgstr "Metoda" -#: netbox/extras/validators.py:15 +#: extras/validators.py:15 #, python-format msgid "Ensure this value is equal to %(limit_value)s." msgstr "Ujistěte se, že tato hodnota se rovná %(limit_value)s." -#: netbox/extras/validators.py:26 +#: extras/validators.py:26 #, python-format msgid "Ensure this value does not equal %(limit_value)s." msgstr "Ujistěte se, že tato hodnota není stejná %(limit_value)s." -#: netbox/extras/validators.py:37 +#: extras/validators.py:37 msgid "This field must be empty." msgstr "Toto pole musí být prázdné." -#: netbox/extras/validators.py:52 +#: extras/validators.py:52 msgid "This field must not be empty." msgstr "Toto pole nesmí být prázdné." -#: netbox/extras/validators.py:94 +#: extras/validators.py:94 msgid "Validation rules must be passed as a dictionary" msgstr "Ověřovací pravidla musí být předána jako slovník" -#: netbox/extras/validators.py:119 +#: extras/validators.py:119 #, python-brace-format msgid "Custom validation failed for {attribute}: {exception}" msgstr "Vlastní ověření se nezdařilo pro {attribute}: {exception}" -#: netbox/extras/validators.py:133 +#: extras/validators.py:133 #, python-brace-format msgid "Invalid attribute \"{name}\" for request" msgstr "Neplatný atribut“{name}„na vyžádání" -#: netbox/extras/validators.py:150 +#: extras/validators.py:150 #, python-brace-format msgid "Invalid attribute \"{name}\" for {model}" msgstr "Neplatný atribut“{name}„pro {model}" -#: netbox/extras/views.py:960 +#: extras/views.py:960 msgid "Your dashboard has been reset." msgstr "Váš řídicí panel byl resetován." -#: netbox/extras/views.py:1006 +#: extras/views.py:1006 msgid "Added widget: " msgstr "Přidán widget: " -#: netbox/extras/views.py:1047 +#: extras/views.py:1047 msgid "Updated widget: " msgstr "Aktualizovaný widget: " -#: netbox/extras/views.py:1083 +#: extras/views.py:1083 msgid "Deleted widget: " msgstr "Odstraněný widget: " -#: netbox/extras/views.py:1085 +#: extras/views.py:1085 msgid "Error deleting widget: " msgstr "Chyba při mazání widgetu: " -#: netbox/extras/views.py:1172 +#: extras/views.py:1172 msgid "Unable to run script: RQ worker process not running." msgstr "Nelze spustit skript: Proces RQ Worker není spuštěn." -#: netbox/ipam/api/field_serializers.py:17 +#: ipam/api/field_serializers.py:17 msgid "Enter a valid IPv4 or IPv6 address with optional mask." msgstr "Zadejte platnou adresu IPv4 nebo IPv6 s volitelnou maskou." -#: netbox/ipam/api/field_serializers.py:24 +#: ipam/api/field_serializers.py:24 #, python-brace-format msgid "Invalid IP address format: {data}" msgstr "Neplatný formát IP adresy: {data}" -#: netbox/ipam/api/field_serializers.py:37 +#: ipam/api/field_serializers.py:37 msgid "Enter a valid IPv4 or IPv6 prefix and mask in CIDR notation." msgstr "Zadejte platnou předponu a masku IPv4 nebo IPv6 v zápisu CIDR." -#: netbox/ipam/api/field_serializers.py:44 +#: ipam/api/field_serializers.py:44 #, python-brace-format msgid "Invalid IP prefix format: {data}" msgstr "Neplatný formát předpony IP: {data}" -#: netbox/ipam/api/views.py:358 +#: ipam/api/views.py:358 msgid "" "Insufficient space is available to accommodate the requested prefix size(s)" msgstr "" "Není k dispozici dostatek místa pro umístění požadované velikosti prefixu" -#: netbox/ipam/choices.py:30 +#: ipam/choices.py:30 msgid "Container" msgstr "Kontejner" -#: netbox/ipam/choices.py:72 +#: ipam/choices.py:72 msgid "DHCP" msgstr "DHCP" -#: netbox/ipam/choices.py:73 +#: ipam/choices.py:73 msgid "SLAAC" msgstr "SLAAK" -#: netbox/ipam/choices.py:89 +#: ipam/choices.py:89 msgid "Loopback" msgstr "Zpětná smyčka" -#: netbox/ipam/choices.py:91 +#: ipam/choices.py:91 msgid "Anycast" msgstr "Anycast" -#: netbox/ipam/choices.py:115 +#: ipam/choices.py:115 msgid "Standard" msgstr "Standardní" -#: netbox/ipam/choices.py:120 +#: ipam/choices.py:120 msgid "CheckPoint" msgstr "Kontrolní bod" -#: netbox/ipam/choices.py:123 +#: ipam/choices.py:123 msgid "Cisco" msgstr "Cisco" -#: netbox/ipam/choices.py:137 +#: ipam/choices.py:137 msgid "Plaintext" msgstr "Prostý text" -#: netbox/ipam/fields.py:36 +#: ipam/fields.py:36 #, python-brace-format msgid "Invalid IP address format: {address}" msgstr "Neplatný formát IP adresy: {address}" -#: netbox/ipam/filtersets.py:48 netbox/vpn/filtersets.py:304 +#: ipam/filtersets.py:48 vpn/filtersets.py:304 msgid "Import target" msgstr "Cíl importu" -#: netbox/ipam/filtersets.py:54 netbox/vpn/filtersets.py:310 +#: ipam/filtersets.py:54 vpn/filtersets.py:310 msgid "Import target (name)" msgstr "Cíl importu (název)" -#: netbox/ipam/filtersets.py:59 netbox/vpn/filtersets.py:315 +#: ipam/filtersets.py:59 vpn/filtersets.py:315 msgid "Export target" msgstr "Cíl exportu" -#: netbox/ipam/filtersets.py:65 netbox/vpn/filtersets.py:321 +#: ipam/filtersets.py:65 vpn/filtersets.py:321 msgid "Export target (name)" msgstr "Cíl exportu (název)" -#: netbox/ipam/filtersets.py:86 +#: ipam/filtersets.py:86 msgid "Importing VRF" msgstr "Import VRF" -#: netbox/ipam/filtersets.py:92 +#: ipam/filtersets.py:92 msgid "Import VRF (RD)" msgstr "Importovat VRF (RD)" -#: netbox/ipam/filtersets.py:97 +#: ipam/filtersets.py:97 msgid "Exporting VRF" msgstr "Export VRF" -#: netbox/ipam/filtersets.py:103 +#: ipam/filtersets.py:103 msgid "Export VRF (RD)" msgstr "Export VRF (RD)" -#: netbox/ipam/filtersets.py:108 +#: ipam/filtersets.py:108 msgid "Importing L2VPN" msgstr "Import L2VPN" -#: netbox/ipam/filtersets.py:114 +#: ipam/filtersets.py:114 msgid "Importing L2VPN (identifier)" msgstr "Import L2VPN (identifikátor)" -#: netbox/ipam/filtersets.py:119 +#: ipam/filtersets.py:119 msgid "Exporting L2VPN" msgstr "Export L2VPN" -#: netbox/ipam/filtersets.py:125 +#: ipam/filtersets.py:125 msgid "Exporting L2VPN (identifier)" msgstr "Export L2VPN (identifikátor)" -#: netbox/ipam/filtersets.py:155 netbox/ipam/filtersets.py:281 -#: netbox/ipam/forms/model_forms.py:229 netbox/ipam/tables/ip.py:212 -#: netbox/templates/ipam/prefix.html:12 +#: ipam/filtersets.py:155 ipam/filtersets.py:281 ipam/forms/model_forms.py:229 +#: ipam/tables/ip.py:212 templates/ipam/prefix.html:12 msgid "Prefix" msgstr "Předpona" -#: netbox/ipam/filtersets.py:159 netbox/ipam/filtersets.py:198 -#: netbox/ipam/filtersets.py:221 +#: ipam/filtersets.py:159 ipam/filtersets.py:198 ipam/filtersets.py:221 msgid "RIR (ID)" msgstr "RIR (ID)" -#: netbox/ipam/filtersets.py:165 netbox/ipam/filtersets.py:204 -#: netbox/ipam/filtersets.py:227 +#: ipam/filtersets.py:165 ipam/filtersets.py:204 ipam/filtersets.py:227 msgid "RIR (slug)" msgstr "RIR (slug)" -#: netbox/ipam/filtersets.py:285 +#: ipam/filtersets.py:285 msgid "Within prefix" msgstr "V rámci předpony" -#: netbox/ipam/filtersets.py:289 +#: ipam/filtersets.py:289 msgid "Within and including prefix" msgstr "V rámci a včetně prefixu" -#: netbox/ipam/filtersets.py:293 +#: ipam/filtersets.py:293 msgid "Prefixes which contain this prefix or IP" msgstr "Předpony, které obsahují tuto předponu nebo IP" -#: netbox/ipam/filtersets.py:304 netbox/ipam/filtersets.py:572 -#: netbox/ipam/forms/bulk_edit.py:342 netbox/ipam/forms/filtersets.py:196 -#: netbox/ipam/forms/filtersets.py:331 +#: ipam/filtersets.py:304 ipam/filtersets.py:572 ipam/forms/bulk_edit.py:343 +#: ipam/forms/filtersets.py:196 ipam/forms/filtersets.py:331 msgid "Mask length" msgstr "Délka masky" -#: netbox/ipam/filtersets.py:373 netbox/vpn/filtersets.py:427 +#: ipam/filtersets.py:373 vpn/filtersets.py:427 msgid "VLAN (ID)" msgstr "VLAN (ID)" -#: netbox/ipam/filtersets.py:377 netbox/vpn/filtersets.py:422 +#: ipam/filtersets.py:377 vpn/filtersets.py:422 msgid "VLAN number (1-4094)" msgstr "Číslo VLAN (1-4094)" -#: netbox/ipam/filtersets.py:471 netbox/ipam/filtersets.py:475 -#: netbox/ipam/filtersets.py:567 netbox/ipam/forms/model_forms.py:463 -#: netbox/templates/tenancy/contact.html:53 -#: netbox/tenancy/forms/bulk_edit.py:113 +#: ipam/filtersets.py:471 ipam/filtersets.py:475 ipam/filtersets.py:567 +#: ipam/forms/model_forms.py:463 templates/tenancy/contact.html:53 +#: tenancy/forms/bulk_edit.py:113 msgid "Address" msgstr "Adresa" -#: netbox/ipam/filtersets.py:479 +#: ipam/filtersets.py:479 msgid "Ranges which contain this prefix or IP" msgstr "Rozsahy, které obsahují tuto předponu nebo IP" -#: netbox/ipam/filtersets.py:507 netbox/ipam/filtersets.py:563 +#: ipam/filtersets.py:507 ipam/filtersets.py:563 msgid "Parent prefix" msgstr "Nadřazená předpona" -#: netbox/ipam/filtersets.py:616 netbox/ipam/filtersets.py:856 -#: netbox/ipam/filtersets.py:1131 netbox/vpn/filtersets.py:385 +#: ipam/filtersets.py:616 ipam/filtersets.py:856 ipam/filtersets.py:1131 +#: vpn/filtersets.py:385 msgid "Virtual machine (name)" msgstr "Virtuální počítač (název)" -#: netbox/ipam/filtersets.py:621 netbox/ipam/filtersets.py:861 -#: netbox/ipam/filtersets.py:1125 netbox/virtualization/filtersets.py:282 -#: netbox/virtualization/filtersets.py:321 netbox/vpn/filtersets.py:390 +#: ipam/filtersets.py:621 ipam/filtersets.py:861 ipam/filtersets.py:1125 +#: virtualization/filtersets.py:282 virtualization/filtersets.py:321 +#: vpn/filtersets.py:390 msgid "Virtual machine (ID)" msgstr "Virtuální počítač (ID)" -#: netbox/ipam/filtersets.py:627 netbox/vpn/filtersets.py:97 -#: netbox/vpn/filtersets.py:396 +#: ipam/filtersets.py:627 vpn/filtersets.py:97 vpn/filtersets.py:396 msgid "Interface (name)" msgstr "Rozhraní (název)" -#: netbox/ipam/filtersets.py:638 netbox/vpn/filtersets.py:108 -#: netbox/vpn/filtersets.py:407 +#: ipam/filtersets.py:638 vpn/filtersets.py:108 vpn/filtersets.py:407 msgid "VM interface (name)" msgstr "Rozhraní virtuálního počítače (název)" -#: netbox/ipam/filtersets.py:643 netbox/vpn/filtersets.py:113 +#: ipam/filtersets.py:643 vpn/filtersets.py:113 msgid "VM interface (ID)" msgstr "Rozhraní virtuálního počítače (ID)" -#: netbox/ipam/filtersets.py:648 +#: ipam/filtersets.py:648 msgid "FHRP group (ID)" msgstr "Skupina FHRP (ID)" -#: netbox/ipam/filtersets.py:652 +#: ipam/filtersets.py:652 msgid "Is assigned to an interface" msgstr "Je přiřazen k rozhraní" -#: netbox/ipam/filtersets.py:656 +#: ipam/filtersets.py:656 msgid "Is assigned" msgstr "Je přiřazen" -#: netbox/ipam/filtersets.py:668 +#: ipam/filtersets.py:668 msgid "Service (ID)" msgstr "Služba (ID)" -#: netbox/ipam/filtersets.py:673 +#: ipam/filtersets.py:673 msgid "NAT inside IP address (ID)" msgstr "NAT uvnitř IP adresy (ID)" -#: netbox/ipam/filtersets.py:1041 netbox/ipam/forms/bulk_import.py:322 +#: ipam/filtersets.py:1041 ipam/forms/bulk_import.py:322 msgid "Assigned interface" msgstr "Přiřazené rozhraní" -#: netbox/ipam/filtersets.py:1046 +#: ipam/filtersets.py:1046 msgid "Assigned VM interface" msgstr "Přiřazené rozhraní virtuálního počítače" -#: netbox/ipam/filtersets.py:1136 +#: ipam/filtersets.py:1136 msgid "IP address (ID)" msgstr "IP adresa (ID)" -#: netbox/ipam/filtersets.py:1142 netbox/ipam/models/ip.py:788 +#: ipam/filtersets.py:1142 ipam/models/ip.py:788 msgid "IP address" msgstr "IP adresa" -#: netbox/ipam/filtersets.py:1167 +#: ipam/filtersets.py:1167 msgid "Primary IPv4 (ID)" msgstr "Primární IPv4 (ID)" -#: netbox/ipam/filtersets.py:1172 +#: ipam/filtersets.py:1172 msgid "Primary IPv6 (ID)" msgstr "Primární IPv6 (ID)" -#: netbox/ipam/formfields.py:14 +#: ipam/formfields.py:14 msgid "Enter a valid IPv4 or IPv6 address (without a mask)." msgstr "Zadejte platnou adresu IPv4 nebo IPv6 (bez masky)." -#: netbox/ipam/formfields.py:32 +#: ipam/formfields.py:32 #, python-brace-format msgid "Invalid IPv4/IPv6 address format: {address}" msgstr "Neplatný formát adresy IPv4/IPv6: {address}" -#: netbox/ipam/formfields.py:37 +#: ipam/formfields.py:37 msgid "This field requires an IP address without a mask." msgstr "Toto pole vyžaduje IP adresu bez masky." -#: netbox/ipam/formfields.py:39 netbox/ipam/formfields.py:61 +#: ipam/formfields.py:39 ipam/formfields.py:61 msgid "Please specify a valid IPv4 or IPv6 address." msgstr "Zadejte platnou adresu IPv4 nebo IPv6." -#: netbox/ipam/formfields.py:44 +#: ipam/formfields.py:44 msgid "Enter a valid IPv4 or IPv6 address (with CIDR mask)." msgstr "Zadejte platnou adresu IPv4 nebo IPv6 (s maskou CIDR)." -#: netbox/ipam/formfields.py:56 +#: ipam/formfields.py:56 msgid "CIDR mask (e.g. /24) is required." msgstr "Je vyžadována maska CIDR (např. /24)." -#: netbox/ipam/forms/bulk_create.py:13 +#: ipam/forms/bulk_create.py:13 msgid "Address pattern" msgstr "Vzor adresy" -#: netbox/ipam/forms/bulk_edit.py:49 +#: ipam/forms/bulk_edit.py:50 msgid "Enforce unique space" msgstr "Vynutit jedinečný prostor" -#: netbox/ipam/forms/bulk_edit.py:87 +#: ipam/forms/bulk_edit.py:88 msgid "Is private" msgstr "Je soukromý" -#: netbox/ipam/forms/bulk_edit.py:108 netbox/ipam/forms/bulk_edit.py:137 -#: netbox/ipam/forms/bulk_edit.py:162 netbox/ipam/forms/bulk_import.py:89 -#: netbox/ipam/forms/bulk_import.py:109 netbox/ipam/forms/bulk_import.py:129 -#: netbox/ipam/forms/filtersets.py:110 netbox/ipam/forms/filtersets.py:125 -#: netbox/ipam/forms/filtersets.py:148 netbox/ipam/forms/model_forms.py:96 -#: netbox/ipam/forms/model_forms.py:109 netbox/ipam/forms/model_forms.py:131 -#: netbox/ipam/forms/model_forms.py:149 netbox/ipam/models/asns.py:31 -#: netbox/ipam/models/asns.py:103 netbox/ipam/models/ip.py:71 -#: netbox/ipam/models/ip.py:90 netbox/ipam/tables/asn.py:20 -#: netbox/ipam/tables/asn.py:45 netbox/templates/ipam/aggregate.html:18 -#: netbox/templates/ipam/asn.html:27 netbox/templates/ipam/asnrange.html:19 -#: netbox/templates/ipam/rir.html:19 +#: ipam/forms/bulk_edit.py:109 ipam/forms/bulk_edit.py:138 +#: ipam/forms/bulk_edit.py:163 ipam/forms/bulk_import.py:89 +#: ipam/forms/bulk_import.py:109 ipam/forms/bulk_import.py:129 +#: ipam/forms/filtersets.py:110 ipam/forms/filtersets.py:125 +#: ipam/forms/filtersets.py:148 ipam/forms/model_forms.py:96 +#: ipam/forms/model_forms.py:109 ipam/forms/model_forms.py:131 +#: ipam/forms/model_forms.py:149 ipam/models/asns.py:31 +#: ipam/models/asns.py:103 ipam/models/ip.py:71 ipam/models/ip.py:90 +#: ipam/tables/asn.py:20 ipam/tables/asn.py:45 +#: templates/ipam/aggregate.html:18 templates/ipam/asn.html:27 +#: templates/ipam/asnrange.html:19 templates/ipam/rir.html:19 msgid "RIR" msgstr "RIR" -#: netbox/ipam/forms/bulk_edit.py:170 +#: ipam/forms/bulk_edit.py:171 msgid "Date added" msgstr "Datum přidání" -#: netbox/ipam/forms/bulk_edit.py:228 netbox/ipam/forms/model_forms.py:586 -#: netbox/ipam/forms/model_forms.py:633 netbox/ipam/tables/ip.py:251 -#: netbox/templates/ipam/vlan_edit.html:37 -#: netbox/templates/ipam/vlangroup.html:27 +#: ipam/forms/bulk_edit.py:229 ipam/forms/model_forms.py:586 +#: ipam/forms/model_forms.py:633 ipam/tables/ip.py:251 +#: templates/ipam/vlan_edit.html:37 templates/ipam/vlangroup.html:27 msgid "VLAN Group" msgstr "Skupina VLAN" -#: netbox/ipam/forms/bulk_edit.py:233 netbox/ipam/forms/bulk_import.py:185 -#: netbox/ipam/forms/filtersets.py:256 netbox/ipam/forms/model_forms.py:218 -#: netbox/ipam/models/vlans.py:234 netbox/ipam/tables/ip.py:255 -#: netbox/templates/ipam/prefix.html:60 netbox/templates/ipam/vlan.html:12 -#: netbox/templates/ipam/vlan/base.html:6 -#: netbox/templates/ipam/vlan_edit.html:10 -#: netbox/templates/wireless/wirelesslan.html:30 -#: netbox/vpn/forms/bulk_import.py:304 netbox/vpn/forms/filtersets.py:284 -#: netbox/vpn/forms/model_forms.py:433 netbox/vpn/forms/model_forms.py:452 -#: netbox/wireless/forms/bulk_edit.py:55 -#: netbox/wireless/forms/bulk_import.py:48 -#: netbox/wireless/forms/model_forms.py:48 netbox/wireless/models.py:102 +#: ipam/forms/bulk_edit.py:234 ipam/forms/bulk_import.py:185 +#: ipam/forms/filtersets.py:256 ipam/forms/model_forms.py:218 +#: ipam/models/vlans.py:234 ipam/tables/ip.py:255 +#: templates/ipam/prefix.html:60 templates/ipam/vlan.html:12 +#: templates/ipam/vlan/base.html:6 templates/ipam/vlan_edit.html:10 +#: templates/wireless/wirelesslan.html:30 vpn/forms/bulk_import.py:304 +#: vpn/forms/filtersets.py:284 vpn/forms/model_forms.py:433 +#: vpn/forms/model_forms.py:452 wireless/forms/bulk_edit.py:55 +#: wireless/forms/bulk_import.py:48 wireless/forms/model_forms.py:48 +#: wireless/models.py:102 msgid "VLAN" msgstr "WLAN" -#: netbox/ipam/forms/bulk_edit.py:244 +#: ipam/forms/bulk_edit.py:245 msgid "Prefix length" msgstr "Délka předpony" -#: netbox/ipam/forms/bulk_edit.py:267 netbox/ipam/forms/filtersets.py:241 -#: netbox/templates/ipam/prefix.html:85 +#: ipam/forms/bulk_edit.py:268 ipam/forms/filtersets.py:241 +#: templates/ipam/prefix.html:85 msgid "Is a pool" msgstr "Je bazén" -#: netbox/ipam/forms/bulk_edit.py:272 netbox/ipam/forms/bulk_edit.py:317 -#: netbox/ipam/forms/filtersets.py:248 netbox/ipam/forms/filtersets.py:293 -#: netbox/ipam/models/ip.py:272 netbox/ipam/models/ip.py:539 +#: ipam/forms/bulk_edit.py:273 ipam/forms/bulk_edit.py:318 +#: ipam/forms/filtersets.py:248 ipam/forms/filtersets.py:293 +#: ipam/models/ip.py:272 ipam/models/ip.py:539 msgid "Treat as fully utilized" msgstr "Zacházejte jako plně využívané" -#: netbox/ipam/forms/bulk_edit.py:286 netbox/ipam/forms/filtersets.py:171 +#: ipam/forms/bulk_edit.py:287 ipam/forms/filtersets.py:171 msgid "VLAN Assignment" msgstr "Přiřazení VLAN" -#: netbox/ipam/forms/bulk_edit.py:365 netbox/ipam/models/ip.py:772 +#: ipam/forms/bulk_edit.py:366 ipam/models/ip.py:772 msgid "DNS name" msgstr "Název DNS" -#: netbox/ipam/forms/bulk_edit.py:386 netbox/ipam/forms/bulk_edit.py:579 -#: netbox/ipam/forms/bulk_import.py:394 netbox/ipam/forms/bulk_import.py:469 -#: netbox/ipam/forms/bulk_import.py:495 netbox/ipam/forms/filtersets.py:390 -#: netbox/ipam/forms/filtersets.py:530 netbox/templates/ipam/fhrpgroup.html:22 -#: netbox/templates/ipam/inc/panels/fhrp_groups.html:24 -#: netbox/templates/ipam/service.html:32 -#: netbox/templates/ipam/servicetemplate.html:19 +#: ipam/forms/bulk_edit.py:387 ipam/forms/bulk_edit.py:534 +#: ipam/forms/bulk_import.py:394 ipam/forms/bulk_import.py:469 +#: ipam/forms/bulk_import.py:495 ipam/forms/filtersets.py:390 +#: ipam/forms/filtersets.py:530 templates/ipam/fhrpgroup.html:22 +#: templates/ipam/inc/panels/fhrp_groups.html:24 +#: templates/ipam/service.html:32 templates/ipam/servicetemplate.html:19 msgid "Protocol" msgstr "protokolu" -#: netbox/ipam/forms/bulk_edit.py:393 netbox/ipam/forms/filtersets.py:397 -#: netbox/ipam/tables/fhrp.py:22 netbox/templates/ipam/fhrpgroup.html:26 +#: ipam/forms/bulk_edit.py:394 ipam/forms/filtersets.py:397 +#: ipam/tables/fhrp.py:22 templates/ipam/fhrpgroup.html:26 msgid "Group ID" msgstr "ID skupiny" -#: netbox/ipam/forms/bulk_edit.py:398 netbox/ipam/forms/filtersets.py:402 -#: netbox/wireless/forms/bulk_edit.py:68 -#: netbox/wireless/forms/bulk_edit.py:115 -#: netbox/wireless/forms/bulk_import.py:62 -#: netbox/wireless/forms/bulk_import.py:65 -#: netbox/wireless/forms/bulk_import.py:104 -#: netbox/wireless/forms/bulk_import.py:107 -#: netbox/wireless/forms/filtersets.py:54 -#: netbox/wireless/forms/filtersets.py:88 +#: ipam/forms/bulk_edit.py:399 ipam/forms/filtersets.py:402 +#: wireless/forms/bulk_edit.py:68 wireless/forms/bulk_edit.py:115 +#: wireless/forms/bulk_import.py:62 wireless/forms/bulk_import.py:65 +#: wireless/forms/bulk_import.py:104 wireless/forms/bulk_import.py:107 +#: wireless/forms/filtersets.py:54 wireless/forms/filtersets.py:88 msgid "Authentication type" msgstr "Typ autentizace" -#: netbox/ipam/forms/bulk_edit.py:403 netbox/ipam/forms/filtersets.py:406 +#: ipam/forms/bulk_edit.py:404 ipam/forms/filtersets.py:406 msgid "Authentication key" msgstr "Ověřovací klíč" -#: netbox/ipam/forms/bulk_edit.py:420 netbox/ipam/forms/filtersets.py:383 -#: netbox/ipam/forms/model_forms.py:474 netbox/netbox/navigation/menu.py:386 -#: netbox/templates/ipam/fhrpgroup.html:49 -#: netbox/templates/wireless/inc/authentication_attrs.html:5 -#: netbox/wireless/forms/bulk_edit.py:91 -#: netbox/wireless/forms/bulk_edit.py:149 -#: netbox/wireless/forms/filtersets.py:36 -#: netbox/wireless/forms/filtersets.py:76 -#: netbox/wireless/forms/model_forms.py:55 -#: netbox/wireless/forms/model_forms.py:171 +#: ipam/forms/bulk_edit.py:421 ipam/forms/filtersets.py:383 +#: ipam/forms/model_forms.py:474 netbox/navigation/menu.py:386 +#: templates/ipam/fhrpgroup.html:49 +#: templates/wireless/inc/authentication_attrs.html:5 +#: wireless/forms/bulk_edit.py:91 wireless/forms/bulk_edit.py:149 +#: wireless/forms/filtersets.py:36 wireless/forms/filtersets.py:76 +#: wireless/forms/model_forms.py:55 wireless/forms/model_forms.py:171 msgid "Authentication" msgstr "Autentizace" -#: netbox/ipam/forms/bulk_edit.py:432 netbox/ipam/forms/model_forms.py:575 +#: ipam/forms/bulk_edit.py:436 ipam/forms/model_forms.py:575 msgid "Scope type" msgstr "Typ rozsahu" -#: netbox/ipam/forms/bulk_edit.py:490 netbox/ipam/models/vlans.py:60 -msgid "VLAN ID ranges" -msgstr "Rozsahy ID VLAN" - -#: netbox/ipam/forms/bulk_edit.py:498 netbox/ipam/forms/model_forms.py:578 -#: netbox/ipam/forms/model_forms.py:588 netbox/ipam/tables/vlans.py:71 -#: netbox/templates/ipam/vlangroup.html:38 +#: ipam/forms/bulk_edit.py:439 ipam/forms/bulk_edit.py:453 +#: ipam/forms/model_forms.py:578 ipam/forms/model_forms.py:588 +#: ipam/tables/vlans.py:71 templates/ipam/vlangroup.html:38 msgid "Scope" msgstr "Rozsah" -#: netbox/ipam/forms/bulk_edit.py:570 +#: ipam/forms/bulk_edit.py:446 ipam/models/vlans.py:60 +msgid "VLAN ID ranges" +msgstr "Rozsahy ID VLAN" + +#: ipam/forms/bulk_edit.py:525 msgid "Site & Group" msgstr "Stránky a skupina" -#: netbox/ipam/forms/bulk_edit.py:584 netbox/ipam/forms/model_forms.py:659 -#: netbox/ipam/forms/model_forms.py:691 netbox/ipam/tables/services.py:19 -#: netbox/ipam/tables/services.py:49 netbox/templates/ipam/service.html:36 -#: netbox/templates/ipam/servicetemplate.html:23 +#: ipam/forms/bulk_edit.py:539 ipam/forms/model_forms.py:659 +#: ipam/forms/model_forms.py:691 ipam/tables/services.py:19 +#: ipam/tables/services.py:49 templates/ipam/service.html:36 +#: templates/ipam/servicetemplate.html:23 msgid "Ports" msgstr "Přístavy" -#: netbox/ipam/forms/bulk_import.py:48 +#: ipam/forms/bulk_import.py:48 msgid "Import route targets" msgstr "Importovat cíle trasy" -#: netbox/ipam/forms/bulk_import.py:54 +#: ipam/forms/bulk_import.py:54 msgid "Export route targets" msgstr "Exportovat cíle trasy" -#: netbox/ipam/forms/bulk_import.py:92 netbox/ipam/forms/bulk_import.py:112 -#: netbox/ipam/forms/bulk_import.py:132 +#: ipam/forms/bulk_import.py:92 ipam/forms/bulk_import.py:112 +#: ipam/forms/bulk_import.py:132 msgid "Assigned RIR" msgstr "Přiřazené RIR" -#: netbox/ipam/forms/bulk_import.py:182 +#: ipam/forms/bulk_import.py:182 msgid "VLAN's group (if any)" msgstr "Skupina VLAN (pokud existuje)" -#: netbox/ipam/forms/bulk_import.py:308 +#: ipam/forms/bulk_import.py:308 msgid "Parent device of assigned interface (if any)" msgstr "Nadřazené zařízení přiřazeného rozhraní (pokud existuje)" -#: netbox/ipam/forms/bulk_import.py:311 netbox/ipam/forms/bulk_import.py:488 -#: netbox/ipam/forms/model_forms.py:685 -#: netbox/virtualization/filtersets.py:288 -#: netbox/virtualization/filtersets.py:327 -#: netbox/virtualization/forms/bulk_edit.py:200 -#: netbox/virtualization/forms/bulk_edit.py:326 -#: netbox/virtualization/forms/bulk_import.py:146 -#: netbox/virtualization/forms/bulk_import.py:207 -#: netbox/virtualization/forms/filtersets.py:212 -#: netbox/virtualization/forms/filtersets.py:248 -#: netbox/virtualization/forms/model_forms.py:288 -#: netbox/vpn/forms/bulk_import.py:93 netbox/vpn/forms/bulk_import.py:290 +#: ipam/forms/bulk_import.py:311 ipam/forms/bulk_import.py:488 +#: ipam/forms/model_forms.py:685 virtualization/filtersets.py:288 +#: virtualization/filtersets.py:327 virtualization/forms/bulk_edit.py:200 +#: virtualization/forms/bulk_edit.py:326 +#: virtualization/forms/bulk_import.py:146 +#: virtualization/forms/bulk_import.py:207 +#: virtualization/forms/filtersets.py:212 +#: virtualization/forms/filtersets.py:248 +#: virtualization/forms/model_forms.py:288 vpn/forms/bulk_import.py:93 +#: vpn/forms/bulk_import.py:290 msgid "Virtual machine" msgstr "Virtuální stroj" -#: netbox/ipam/forms/bulk_import.py:315 +#: ipam/forms/bulk_import.py:315 msgid "Parent VM of assigned interface (if any)" msgstr "Nadřazený virtuální počítač přiřazeného rozhraní (pokud existuje)" -#: netbox/ipam/forms/bulk_import.py:325 +#: ipam/forms/bulk_import.py:325 msgid "Is primary" msgstr "Je primární" -#: netbox/ipam/forms/bulk_import.py:326 +#: ipam/forms/bulk_import.py:326 msgid "Make this the primary IP for the assigned device" msgstr "Nastavte to jako primární IP pro přiřazené zařízení" -#: netbox/ipam/forms/bulk_import.py:365 +#: ipam/forms/bulk_import.py:365 msgid "No device or virtual machine specified; cannot set as primary IP" msgstr "" "Není určeno žádné zařízení ani virtuální počítač; nelze nastavit jako " "primární IP" -#: netbox/ipam/forms/bulk_import.py:369 +#: ipam/forms/bulk_import.py:369 msgid "No interface specified; cannot set as primary IP" msgstr "Není určeno žádné rozhraní; nelze nastavit jako primární IP" -#: netbox/ipam/forms/bulk_import.py:398 +#: ipam/forms/bulk_import.py:398 msgid "Auth type" msgstr "Typ autentizace" -#: netbox/ipam/forms/bulk_import.py:413 +#: ipam/forms/bulk_import.py:413 msgid "Scope type (app & model)" msgstr "Typ rozsahu (aplikace a model)" -#: netbox/ipam/forms/bulk_import.py:440 +#: ipam/forms/bulk_import.py:440 msgid "Assigned VLAN group" msgstr "Přiřazená skupina VLAN" -#: netbox/ipam/forms/bulk_import.py:471 netbox/ipam/forms/bulk_import.py:497 +#: ipam/forms/bulk_import.py:471 ipam/forms/bulk_import.py:497 msgid "IP protocol" msgstr "Protokol IP" -#: netbox/ipam/forms/bulk_import.py:485 +#: ipam/forms/bulk_import.py:485 msgid "Required if not assigned to a VM" msgstr "Vyžadováno, pokud není přiřazeno k virtuálnímu počítači" -#: netbox/ipam/forms/bulk_import.py:492 +#: ipam/forms/bulk_import.py:492 msgid "Required if not assigned to a device" msgstr "Požadováno, pokud není přiřazeno k zařízení" -#: netbox/ipam/forms/bulk_import.py:517 +#: ipam/forms/bulk_import.py:517 #, python-brace-format msgid "{ip} is not assigned to this device/VM." msgstr "{ip} není přiřazen k tomuto zařízení/virtuálnímu počítači." -#: netbox/ipam/forms/filtersets.py:47 netbox/ipam/forms/model_forms.py:63 -#: netbox/netbox/navigation/menu.py:189 netbox/vpn/forms/model_forms.py:410 +#: ipam/forms/filtersets.py:47 ipam/forms/model_forms.py:63 +#: netbox/navigation/menu.py:189 vpn/forms/model_forms.py:410 msgid "Route Targets" msgstr "Cíle trasy" -#: netbox/ipam/forms/filtersets.py:53 netbox/ipam/forms/model_forms.py:50 -#: netbox/vpn/forms/filtersets.py:224 netbox/vpn/forms/model_forms.py:397 +#: ipam/forms/filtersets.py:53 ipam/forms/model_forms.py:50 +#: vpn/forms/filtersets.py:224 vpn/forms/model_forms.py:397 msgid "Import targets" msgstr "Importovat cíle" -#: netbox/ipam/forms/filtersets.py:58 netbox/ipam/forms/model_forms.py:55 -#: netbox/vpn/forms/filtersets.py:229 netbox/vpn/forms/model_forms.py:402 +#: ipam/forms/filtersets.py:58 ipam/forms/model_forms.py:55 +#: vpn/forms/filtersets.py:229 vpn/forms/model_forms.py:402 msgid "Export targets" msgstr "Cíle exportu" -#: netbox/ipam/forms/filtersets.py:73 +#: ipam/forms/filtersets.py:73 msgid "Imported by VRF" msgstr "Importováno VRF" -#: netbox/ipam/forms/filtersets.py:78 +#: ipam/forms/filtersets.py:78 msgid "Exported by VRF" msgstr "Exportováno VRF" -#: netbox/ipam/forms/filtersets.py:87 netbox/ipam/tables/ip.py:89 -#: netbox/templates/ipam/rir.html:30 +#: ipam/forms/filtersets.py:87 ipam/tables/ip.py:89 templates/ipam/rir.html:30 msgid "Private" msgstr "Soukromé" -#: netbox/ipam/forms/filtersets.py:105 netbox/ipam/forms/filtersets.py:191 -#: netbox/ipam/forms/filtersets.py:272 netbox/ipam/forms/filtersets.py:326 +#: ipam/forms/filtersets.py:105 ipam/forms/filtersets.py:191 +#: ipam/forms/filtersets.py:272 ipam/forms/filtersets.py:326 msgid "Address family" msgstr "Rodina adres" -#: netbox/ipam/forms/filtersets.py:119 netbox/templates/ipam/asnrange.html:25 +#: ipam/forms/filtersets.py:119 templates/ipam/asnrange.html:25 msgid "Range" msgstr "Rozsah" -#: netbox/ipam/forms/filtersets.py:128 +#: ipam/forms/filtersets.py:128 msgid "Start" msgstr "Začít" -#: netbox/ipam/forms/filtersets.py:132 +#: ipam/forms/filtersets.py:132 msgid "End" msgstr "Konec" -#: netbox/ipam/forms/filtersets.py:186 +#: ipam/forms/filtersets.py:186 msgid "Search within" msgstr "Vyhledávání uvnitř" -#: netbox/ipam/forms/filtersets.py:207 netbox/ipam/forms/filtersets.py:342 +#: ipam/forms/filtersets.py:207 ipam/forms/filtersets.py:342 msgid "Present in VRF" msgstr "Přítomnost ve VRF" -#: netbox/ipam/forms/filtersets.py:311 +#: ipam/forms/filtersets.py:311 msgid "Device/VM" msgstr "Zařízení/VM" -#: netbox/ipam/forms/filtersets.py:321 +#: ipam/forms/filtersets.py:321 msgid "Parent Prefix" msgstr "Nadřazená předpona" -#: netbox/ipam/forms/filtersets.py:347 +#: ipam/forms/filtersets.py:347 msgid "Assigned Device" msgstr "Přiřazené zařízení" -#: netbox/ipam/forms/filtersets.py:352 +#: ipam/forms/filtersets.py:352 msgid "Assigned VM" msgstr "Přiřazený virtuální počítač" -#: netbox/ipam/forms/filtersets.py:366 +#: ipam/forms/filtersets.py:366 msgid "Assigned to an interface" msgstr "Přiřazeno k rozhraní" -#: netbox/ipam/forms/filtersets.py:373 netbox/templates/ipam/ipaddress.html:51 +#: ipam/forms/filtersets.py:373 templates/ipam/ipaddress.html:51 msgid "DNS Name" msgstr "Název DNS" -#: netbox/ipam/forms/filtersets.py:416 netbox/ipam/models/vlans.py:235 -#: netbox/ipam/tables/ip.py:176 netbox/ipam/tables/vlans.py:82 -#: netbox/ipam/views.py:971 netbox/netbox/navigation/menu.py:193 -#: netbox/netbox/navigation/menu.py:195 +#: ipam/forms/filtersets.py:416 ipam/models/vlans.py:235 ipam/tables/ip.py:176 +#: ipam/tables/vlans.py:82 ipam/views.py:971 netbox/navigation/menu.py:193 +#: netbox/navigation/menu.py:195 msgid "VLANs" msgstr "VLAN" -#: netbox/ipam/forms/filtersets.py:457 +#: ipam/forms/filtersets.py:457 msgid "Contains VLAN ID" msgstr "Obsahuje VLAN ID" -#: netbox/ipam/forms/filtersets.py:513 netbox/ipam/models/vlans.py:176 -#: netbox/templates/ipam/vlan.html:31 +#: ipam/forms/filtersets.py:513 ipam/models/vlans.py:176 +#: templates/ipam/vlan.html:31 msgid "VLAN ID" msgstr "ID VLAN" -#: netbox/ipam/forms/filtersets.py:556 netbox/ipam/forms/model_forms.py:320 -#: netbox/ipam/forms/model_forms.py:713 netbox/ipam/forms/model_forms.py:739 -#: netbox/ipam/tables/vlans.py:195 -#: netbox/templates/virtualization/virtualdisk.html:21 -#: netbox/templates/virtualization/virtualmachine.html:12 -#: netbox/templates/virtualization/vminterface.html:21 -#: netbox/templates/vpn/tunneltermination.html:25 -#: netbox/virtualization/forms/filtersets.py:197 -#: netbox/virtualization/forms/filtersets.py:242 -#: netbox/virtualization/forms/model_forms.py:220 -#: netbox/virtualization/tables/virtualmachines.py:135 -#: netbox/virtualization/tables/virtualmachines.py:190 -#: netbox/vpn/choices.py:45 netbox/vpn/forms/filtersets.py:293 -#: netbox/vpn/forms/model_forms.py:160 netbox/vpn/forms/model_forms.py:171 -#: netbox/vpn/forms/model_forms.py:273 netbox/vpn/forms/model_forms.py:454 +#: ipam/forms/filtersets.py:556 ipam/forms/model_forms.py:320 +#: ipam/forms/model_forms.py:713 ipam/forms/model_forms.py:739 +#: ipam/tables/vlans.py:195 templates/virtualization/virtualdisk.html:21 +#: templates/virtualization/virtualmachine.html:12 +#: templates/virtualization/vminterface.html:21 +#: templates/vpn/tunneltermination.html:25 +#: virtualization/forms/filtersets.py:197 +#: virtualization/forms/filtersets.py:242 +#: virtualization/forms/model_forms.py:220 +#: virtualization/tables/virtualmachines.py:135 +#: virtualization/tables/virtualmachines.py:190 vpn/choices.py:45 +#: vpn/forms/filtersets.py:293 vpn/forms/model_forms.py:160 +#: vpn/forms/model_forms.py:171 vpn/forms/model_forms.py:273 +#: vpn/forms/model_forms.py:454 msgid "Virtual Machine" msgstr "Virtuální stroj" -#: netbox/ipam/forms/model_forms.py:80 -#: netbox/templates/ipam/routetarget.html:10 +#: ipam/forms/model_forms.py:80 templates/ipam/routetarget.html:10 msgid "Route Target" msgstr "Cíl trasy" -#: netbox/ipam/forms/model_forms.py:114 netbox/ipam/tables/ip.py:117 -#: netbox/templates/ipam/aggregate.html:11 -#: netbox/templates/ipam/prefix.html:38 +#: ipam/forms/model_forms.py:114 ipam/tables/ip.py:117 +#: templates/ipam/aggregate.html:11 templates/ipam/prefix.html:38 msgid "Aggregate" msgstr "Agregát" -#: netbox/ipam/forms/model_forms.py:135 netbox/templates/ipam/asnrange.html:12 +#: ipam/forms/model_forms.py:135 templates/ipam/asnrange.html:12 msgid "ASN Range" msgstr "Řada ASN" -#: netbox/ipam/forms/model_forms.py:231 +#: ipam/forms/model_forms.py:231 msgid "Site/VLAN Assignment" msgstr "Přiřazení webu/VLAN" -#: netbox/ipam/forms/model_forms.py:259 netbox/templates/ipam/iprange.html:10 +#: ipam/forms/model_forms.py:259 templates/ipam/iprange.html:10 msgid "IP Range" msgstr "Rozsah IP" -#: netbox/ipam/forms/model_forms.py:295 netbox/ipam/forms/model_forms.py:321 -#: netbox/ipam/forms/model_forms.py:473 -#: netbox/templates/ipam/fhrpgroup.html:19 +#: ipam/forms/model_forms.py:295 ipam/forms/model_forms.py:321 +#: ipam/forms/model_forms.py:473 templates/ipam/fhrpgroup.html:19 msgid "FHRP Group" msgstr "Skupina FHRP" -#: netbox/ipam/forms/model_forms.py:310 +#: ipam/forms/model_forms.py:310 msgid "Make this the primary IP for the device/VM" msgstr "Nastavte z něj primární IP pro zařízení/virtuální počítač" -#: netbox/ipam/forms/model_forms.py:325 +#: ipam/forms/model_forms.py:325 msgid "NAT IP (Inside)" msgstr "NAT IP (uvnitř)" -#: netbox/ipam/forms/model_forms.py:384 +#: ipam/forms/model_forms.py:384 msgid "An IP address can only be assigned to a single object." msgstr "IP adresu lze přiřadit pouze jednomu objektu." -#: netbox/ipam/forms/model_forms.py:390 netbox/ipam/models/ip.py:897 +#: ipam/forms/model_forms.py:390 ipam/models/ip.py:897 msgid "" "Cannot reassign IP address while it is designated as the primary IP for the " "parent object" @@ -9762,30 +9167,29 @@ msgstr "" "Nelze znovu přiřadit adresu IP, pokud je určena jako primární IP pro " "nadřazený objekt" -#: netbox/ipam/forms/model_forms.py:400 +#: ipam/forms/model_forms.py:400 msgid "" "Only IP addresses assigned to an interface can be designated as primary IPs." msgstr "" "Jako primární IP adresy lze označit pouze adresy IP přiřazené k rozhraní." -#: netbox/ipam/forms/model_forms.py:475 +#: ipam/forms/model_forms.py:475 msgid "Virtual IP Address" msgstr "Virtuální IP adresa" -#: netbox/ipam/forms/model_forms.py:560 +#: ipam/forms/model_forms.py:560 msgid "Assignment already exists" msgstr "Přiřazení již existuje" -#: netbox/ipam/forms/model_forms.py:569 -#: netbox/templates/ipam/vlangroup.html:42 +#: ipam/forms/model_forms.py:569 templates/ipam/vlangroup.html:42 msgid "VLAN IDs" msgstr "ID VLAN" -#: netbox/ipam/forms/model_forms.py:587 +#: ipam/forms/model_forms.py:587 msgid "Child VLANs" msgstr "Dětské sítě VLAN" -#: netbox/ipam/forms/model_forms.py:664 netbox/ipam/forms/model_forms.py:696 +#: ipam/forms/model_forms.py:664 ipam/forms/model_forms.py:696 msgid "" "Comma-separated list of one or more port numbers. A range may be specified " "using a hyphen." @@ -9793,132 +9197,131 @@ msgstr "" "Seznam jednoho nebo více čísel portů oddělený čárkami. Rozsah lze zadat " "pomocí pomlčky." -#: netbox/ipam/forms/model_forms.py:669 -#: netbox/templates/ipam/servicetemplate.html:12 +#: ipam/forms/model_forms.py:669 templates/ipam/servicetemplate.html:12 msgid "Service Template" msgstr "Šablona služby" -#: netbox/ipam/forms/model_forms.py:716 +#: ipam/forms/model_forms.py:716 msgid "Port(s)" msgstr "Přístav (y)" -#: netbox/ipam/forms/model_forms.py:717 netbox/ipam/forms/model_forms.py:745 -#: netbox/templates/ipam/service.html:21 +#: ipam/forms/model_forms.py:717 ipam/forms/model_forms.py:745 +#: templates/ipam/service.html:21 msgid "Service" msgstr "Servisní služby" -#: netbox/ipam/forms/model_forms.py:730 +#: ipam/forms/model_forms.py:730 msgid "Service template" msgstr "Šablona služby" -#: netbox/ipam/forms/model_forms.py:742 +#: ipam/forms/model_forms.py:742 msgid "From Template" msgstr "Z šablony" -#: netbox/ipam/forms/model_forms.py:743 +#: ipam/forms/model_forms.py:743 msgid "Custom" msgstr "Zvyk" -#: netbox/ipam/forms/model_forms.py:773 +#: ipam/forms/model_forms.py:773 msgid "" "Must specify name, protocol, and port(s) if not using a service template." msgstr "" "Pokud nepoužíváte šablonu služby, musíte zadat název, protokol a port (y)." -#: netbox/ipam/models/asns.py:34 +#: ipam/models/asns.py:34 msgid "start" msgstr "začít" -#: netbox/ipam/models/asns.py:51 +#: ipam/models/asns.py:51 msgid "ASN range" msgstr "Řada ASN" -#: netbox/ipam/models/asns.py:52 +#: ipam/models/asns.py:52 msgid "ASN ranges" msgstr "Rozsahy ASN" -#: netbox/ipam/models/asns.py:72 +#: ipam/models/asns.py:72 #, python-brace-format msgid "Starting ASN ({start}) must be lower than ending ASN ({end})." msgstr "Spuštění ASN ({start}) musí být nižší než koncová ASN ({end})." -#: netbox/ipam/models/asns.py:104 +#: ipam/models/asns.py:104 msgid "Regional Internet Registry responsible for this AS number space" msgstr "Regionální internetový registr odpovědný za tento číselný prostor AS" -#: netbox/ipam/models/asns.py:109 +#: ipam/models/asns.py:109 msgid "16- or 32-bit autonomous system number" msgstr "16- nebo 32bitové autonomní systémové číslo" -#: netbox/ipam/models/fhrp.py:22 +#: ipam/models/fhrp.py:22 msgid "group ID" msgstr "ID skupiny" -#: netbox/ipam/models/fhrp.py:30 netbox/ipam/models/services.py:22 +#: ipam/models/fhrp.py:30 ipam/models/services.py:22 msgid "protocol" msgstr "protokol" -#: netbox/ipam/models/fhrp.py:38 netbox/wireless/models.py:28 +#: ipam/models/fhrp.py:38 wireless/models.py:28 msgid "authentication type" msgstr "typ ověřování" -#: netbox/ipam/models/fhrp.py:43 +#: ipam/models/fhrp.py:43 msgid "authentication key" msgstr "ověřovací klíč" -#: netbox/ipam/models/fhrp.py:56 +#: ipam/models/fhrp.py:56 msgid "FHRP group" msgstr "Skupina FHRP" -#: netbox/ipam/models/fhrp.py:57 +#: ipam/models/fhrp.py:57 msgid "FHRP groups" msgstr "Skupiny FHRP" -#: netbox/ipam/models/fhrp.py:113 +#: ipam/models/fhrp.py:113 msgid "FHRP group assignment" msgstr "Přiřazení skupiny FHRP" -#: netbox/ipam/models/fhrp.py:114 +#: ipam/models/fhrp.py:114 msgid "FHRP group assignments" msgstr "Skupinové přiřazení FHRP" -#: netbox/ipam/models/ip.py:65 +#: ipam/models/ip.py:65 msgid "private" msgstr "soukromá" -#: netbox/ipam/models/ip.py:66 +#: ipam/models/ip.py:66 msgid "IP space managed by this RIR is considered private" msgstr "IP prostor spravovaný tímto RIR je považován za soukromý" -#: netbox/ipam/models/ip.py:72 netbox/netbox/navigation/menu.py:182 +#: ipam/models/ip.py:72 netbox/navigation/menu.py:182 msgid "RIRs" msgstr "RIR" -#: netbox/ipam/models/ip.py:84 +#: ipam/models/ip.py:84 msgid "IPv4 or IPv6 network" msgstr "Síť IPv4 nebo IPv6" -#: netbox/ipam/models/ip.py:91 +#: ipam/models/ip.py:91 msgid "Regional Internet Registry responsible for this IP space" msgstr "Regionální internetový registr odpovědný za tento IP prostor" -#: netbox/ipam/models/ip.py:101 +#: ipam/models/ip.py:101 msgid "date added" msgstr "datum přidání" -#: netbox/ipam/models/ip.py:115 +#: ipam/models/ip.py:115 msgid "aggregate" msgstr "agregát" -#: netbox/ipam/models/ip.py:116 +#: ipam/models/ip.py:116 msgid "aggregates" msgstr "agregáty" -#: netbox/ipam/models/ip.py:132 +#: ipam/models/ip.py:132 msgid "Cannot create aggregate with /0 mask." msgstr "Nelze vytvořit agregát s maskou /0." -#: netbox/ipam/models/ip.py:144 +#: ipam/models/ip.py:144 #, python-brace-format msgid "" "Aggregates cannot overlap. {prefix} is already covered by an existing " @@ -9927,7 +9330,7 @@ msgstr "" "Agregáty se nemohou překrývat. {prefix} je již pokryto stávajícím agregátem " "({aggregate})." -#: netbox/ipam/models/ip.py:158 +#: ipam/models/ip.py:158 #, python-brace-format msgid "" "Prefixes cannot overlap aggregates. {prefix} covers an existing aggregate " @@ -9936,224 +9339,222 @@ msgstr "" "Předpony nemohou překrývat agregáty. {prefix} pokrývá existující agregát " "({aggregate})." -#: netbox/ipam/models/ip.py:200 netbox/ipam/models/ip.py:737 -#: netbox/vpn/models/tunnels.py:114 +#: ipam/models/ip.py:200 ipam/models/ip.py:737 vpn/models/tunnels.py:114 msgid "role" msgstr "role" -#: netbox/ipam/models/ip.py:201 +#: ipam/models/ip.py:201 msgid "roles" msgstr "rolí" -#: netbox/ipam/models/ip.py:217 netbox/ipam/models/ip.py:293 +#: ipam/models/ip.py:217 ipam/models/ip.py:293 msgid "prefix" msgstr "předpona" -#: netbox/ipam/models/ip.py:218 +#: ipam/models/ip.py:218 msgid "IPv4 or IPv6 network with mask" msgstr "Síť IPv4 nebo IPv6 s maskou" -#: netbox/ipam/models/ip.py:254 +#: ipam/models/ip.py:254 msgid "Operational status of this prefix" msgstr "Provozní stav této předpony" -#: netbox/ipam/models/ip.py:262 +#: ipam/models/ip.py:262 msgid "The primary function of this prefix" msgstr "Primární funkce této předpony" -#: netbox/ipam/models/ip.py:265 +#: ipam/models/ip.py:265 msgid "is a pool" msgstr "je bazén" -#: netbox/ipam/models/ip.py:267 +#: ipam/models/ip.py:267 msgid "All IP addresses within this prefix are considered usable" msgstr "Všechny IP adresy v rámci této prefixy jsou považovány za použitelné" -#: netbox/ipam/models/ip.py:270 netbox/ipam/models/ip.py:537 +#: ipam/models/ip.py:270 ipam/models/ip.py:537 msgid "mark utilized" msgstr "použitá značka" -#: netbox/ipam/models/ip.py:294 +#: ipam/models/ip.py:294 msgid "prefixes" msgstr "předpony" -#: netbox/ipam/models/ip.py:317 +#: ipam/models/ip.py:317 msgid "Cannot create prefix with /0 mask." msgstr "Nelze vytvořit předponu s maskou /0." -#: netbox/ipam/models/ip.py:324 netbox/ipam/models/ip.py:874 +#: ipam/models/ip.py:324 ipam/models/ip.py:874 #, python-brace-format msgid "VRF {vrf}" msgstr "VRF {vrf}" -#: netbox/ipam/models/ip.py:324 netbox/ipam/models/ip.py:874 +#: ipam/models/ip.py:324 ipam/models/ip.py:874 msgid "global table" msgstr "globální tabulka" -#: netbox/ipam/models/ip.py:326 +#: ipam/models/ip.py:326 #, python-brace-format msgid "Duplicate prefix found in {table}: {prefix}" msgstr "Duplicitní předpona nalezena v {table}: {prefix}" -#: netbox/ipam/models/ip.py:495 +#: ipam/models/ip.py:495 msgid "start address" msgstr "Počáteční adresa" -#: netbox/ipam/models/ip.py:496 netbox/ipam/models/ip.py:500 -#: netbox/ipam/models/ip.py:712 +#: ipam/models/ip.py:496 ipam/models/ip.py:500 ipam/models/ip.py:712 msgid "IPv4 or IPv6 address (with mask)" msgstr "Adresa IPv4 nebo IPv6 (s maskou)" -#: netbox/ipam/models/ip.py:499 +#: ipam/models/ip.py:499 msgid "end address" msgstr "koncová adresa" -#: netbox/ipam/models/ip.py:526 +#: ipam/models/ip.py:526 msgid "Operational status of this range" msgstr "Provozní stav tohoto rozsahu" -#: netbox/ipam/models/ip.py:534 +#: ipam/models/ip.py:534 msgid "The primary function of this range" msgstr "Primární funkce tohoto rozsahu" -#: netbox/ipam/models/ip.py:548 +#: ipam/models/ip.py:548 msgid "IP range" msgstr "Rozsah IP" -#: netbox/ipam/models/ip.py:549 +#: ipam/models/ip.py:549 msgid "IP ranges" msgstr "Rozsahy IP" -#: netbox/ipam/models/ip.py:565 +#: ipam/models/ip.py:565 msgid "Starting and ending IP address versions must match" msgstr "Počáteční a koncová verze IP adresy se musí shodovat" -#: netbox/ipam/models/ip.py:571 +#: ipam/models/ip.py:571 msgid "Starting and ending IP address masks must match" msgstr "Počáteční a koncová maska IP adresy se musí shodovat" -#: netbox/ipam/models/ip.py:578 +#: ipam/models/ip.py:578 #, python-brace-format msgid "" "Ending address must be greater than the starting address ({start_address})" msgstr "Koncová adresa musí být větší než počáteční adresa ({start_address})" -#: netbox/ipam/models/ip.py:590 +#: ipam/models/ip.py:590 #, python-brace-format msgid "Defined addresses overlap with range {overlapping_range} in VRF {vrf}" msgstr "" "Definované adresy se překrývají s rozsahem {overlapping_range} na VRF {vrf}" -#: netbox/ipam/models/ip.py:599 +#: ipam/models/ip.py:599 #, python-brace-format msgid "Defined range exceeds maximum supported size ({max_size})" msgstr "" "Definovaný rozsah přesahuje maximální podporovanou velikost ({max_size})" -#: netbox/ipam/models/ip.py:711 netbox/tenancy/models/contacts.py:82 +#: ipam/models/ip.py:711 tenancy/models/contacts.py:82 msgid "address" msgstr "adresa" -#: netbox/ipam/models/ip.py:734 +#: ipam/models/ip.py:734 msgid "The operational status of this IP" msgstr "Provozní stav tohoto IP" -#: netbox/ipam/models/ip.py:741 +#: ipam/models/ip.py:741 msgid "The functional role of this IP" msgstr "Funkční role tohoto IP" -#: netbox/ipam/models/ip.py:765 netbox/templates/ipam/ipaddress.html:72 +#: ipam/models/ip.py:765 templates/ipam/ipaddress.html:72 msgid "NAT (inside)" msgstr "NAT (uvnitř)" -#: netbox/ipam/models/ip.py:766 +#: ipam/models/ip.py:766 msgid "The IP for which this address is the \"outside\" IP" msgstr "IP, pro kterou je tato adresa „vnější“ IP" -#: netbox/ipam/models/ip.py:773 +#: ipam/models/ip.py:773 msgid "Hostname or FQDN (not case-sensitive)" msgstr "Název hostitele nebo FQDN (nerozlišuje velká a malá písmena)" -#: netbox/ipam/models/ip.py:789 netbox/ipam/models/services.py:94 +#: ipam/models/ip.py:789 ipam/models/services.py:94 msgid "IP addresses" msgstr "IP adresy" -#: netbox/ipam/models/ip.py:845 +#: ipam/models/ip.py:845 msgid "Cannot create IP address with /0 mask." msgstr "Nelze vytvořit IP adresu s maskou /0." -#: netbox/ipam/models/ip.py:851 +#: ipam/models/ip.py:851 #, python-brace-format msgid "{ip} is a network ID, which may not be assigned to an interface." msgstr "{ip} je síťové ID, které nemusí být přiřazeno rozhraní." -#: netbox/ipam/models/ip.py:862 +#: ipam/models/ip.py:862 #, python-brace-format msgid "" "{ip} is a broadcast address, which may not be assigned to an interface." msgstr "{ip} je vysílací adresa, která nemusí být přiřazena k rozhraní." -#: netbox/ipam/models/ip.py:876 +#: ipam/models/ip.py:876 #, python-brace-format msgid "Duplicate IP address found in {table}: {ipaddress}" msgstr "Duplicitní adresa IP nalezena v {table}: {ipaddress}" -#: netbox/ipam/models/ip.py:903 +#: ipam/models/ip.py:903 msgid "Only IPv6 addresses can be assigned SLAAC status" msgstr "Stav SLAAC lze přiřadit pouze adresám IPv6" -#: netbox/ipam/models/services.py:33 +#: ipam/models/services.py:33 msgid "port numbers" msgstr "čísla portů" -#: netbox/ipam/models/services.py:59 +#: ipam/models/services.py:59 msgid "service template" msgstr "šablona služby" -#: netbox/ipam/models/services.py:60 +#: ipam/models/services.py:60 msgid "service templates" msgstr "šablony služeb" -#: netbox/ipam/models/services.py:95 +#: ipam/models/services.py:95 msgid "The specific IP addresses (if any) to which this service is bound" msgstr "Konkrétní IP adresy (pokud existují), na které je tato služba vázána" -#: netbox/ipam/models/services.py:102 +#: ipam/models/services.py:102 msgid "service" msgstr "služba" -#: netbox/ipam/models/services.py:103 +#: ipam/models/services.py:103 msgid "services" msgstr "služby" -#: netbox/ipam/models/services.py:117 +#: ipam/models/services.py:117 msgid "" "A service cannot be associated with both a device and a virtual machine." msgstr "Službu nelze přidružit jak k zařízení, tak k virtuálnímu počítači." -#: netbox/ipam/models/services.py:119 +#: ipam/models/services.py:119 msgid "" "A service must be associated with either a device or a virtual machine." msgstr "" "Služba musí být přidružena buď k zařízení, nebo k virtuálnímu počítači." -#: netbox/ipam/models/vlans.py:85 +#: ipam/models/vlans.py:85 msgid "VLAN groups" msgstr "Skupiny VLAN" -#: netbox/ipam/models/vlans.py:95 +#: ipam/models/vlans.py:95 msgid "Cannot set scope_type without scope_id." msgstr "Nelze nastavit scope_type bez scope_id." -#: netbox/ipam/models/vlans.py:97 +#: ipam/models/vlans.py:97 msgid "Cannot set scope_id without scope_type." msgstr "Nelze nastavit scope_id bez scope_type." -#: netbox/ipam/models/vlans.py:101 +#: ipam/models/vlans.py:101 msgid "Ranges cannot overlap." msgstr "Rozsahy se nemohou překrývat." -#: netbox/ipam/models/vlans.py:106 +#: ipam/models/vlans.py:106 #, python-brace-format msgid "" "Maximum child VID must be greater than or equal to minimum child VID " @@ -10162,27 +9563,27 @@ msgstr "" "Maximální dětský VID musí být větší nebo roven minimálnímu dětskému VID " "({value})" -#: netbox/ipam/models/vlans.py:165 +#: ipam/models/vlans.py:165 msgid "The specific site to which this VLAN is assigned (if any)" msgstr "Konkrétní místo, ke kterému je tato VLAN přiřazena (pokud existuje)" -#: netbox/ipam/models/vlans.py:173 +#: ipam/models/vlans.py:173 msgid "VLAN group (optional)" msgstr "Skupina VLAN (volitelné)" -#: netbox/ipam/models/vlans.py:181 +#: ipam/models/vlans.py:181 msgid "Numeric VLAN ID (1-4094)" msgstr "Numerické ID VLAN (1-4094)" -#: netbox/ipam/models/vlans.py:199 +#: ipam/models/vlans.py:199 msgid "Operational status of this VLAN" msgstr "Provozní stav této VLAN" -#: netbox/ipam/models/vlans.py:207 +#: ipam/models/vlans.py:207 msgid "The primary function of this VLAN" msgstr "Primární funkce této VLAN" -#: netbox/ipam/models/vlans.py:250 +#: ipam/models/vlans.py:250 #, python-brace-format msgid "" "VLAN is assigned to group {group} (scope: {scope}); cannot also assign to " @@ -10191,166 +9592,164 @@ msgstr "" "VLAN je přiřazena ke skupině {group} (oblast působnosti: {scope}); nelze " "také přiřadit k webu {site}." -#: netbox/ipam/models/vlans.py:259 +#: ipam/models/vlans.py:259 #, python-brace-format msgid "VID must be in ranges {ranges} for VLANs in group {group}" msgstr "VID musí být v rozmezí {ranges} pro sítě VLAN ve skupině {group}" -#: netbox/ipam/models/vrfs.py:30 +#: ipam/models/vrfs.py:30 msgid "route distinguisher" msgstr "rozlišovač trasy" -#: netbox/ipam/models/vrfs.py:31 +#: ipam/models/vrfs.py:31 msgid "Unique route distinguisher (as defined in RFC 4364)" msgstr "Jedinečný rozlišovač tras (podle definice v RFC 4364)" -#: netbox/ipam/models/vrfs.py:42 +#: ipam/models/vrfs.py:42 msgid "enforce unique space" msgstr "vynutit jedinečný prostor" -#: netbox/ipam/models/vrfs.py:43 +#: ipam/models/vrfs.py:43 msgid "Prevent duplicate prefixes/IP addresses within this VRF" msgstr "Zabraňte duplicitním předponům/IP adresám v tomto VRF" -#: netbox/ipam/models/vrfs.py:63 netbox/netbox/navigation/menu.py:186 -#: netbox/netbox/navigation/menu.py:188 +#: ipam/models/vrfs.py:63 netbox/navigation/menu.py:186 +#: netbox/navigation/menu.py:188 msgid "VRFs" msgstr "VRF" -#: netbox/ipam/models/vrfs.py:82 +#: ipam/models/vrfs.py:82 msgid "Route target value (formatted in accordance with RFC 4360)" msgstr "Cílová hodnota trasy (formátovaná v souladu s RFC 4360)" -#: netbox/ipam/models/vrfs.py:94 +#: ipam/models/vrfs.py:94 msgid "route target" msgstr "cíl trasy" -#: netbox/ipam/models/vrfs.py:95 +#: ipam/models/vrfs.py:95 msgid "route targets" msgstr "cíle trasy" -#: netbox/ipam/tables/asn.py:52 +#: ipam/tables/asn.py:52 msgid "ASDOT" msgstr "ASDOT" -#: netbox/ipam/tables/asn.py:57 +#: ipam/tables/asn.py:57 msgid "Site Count" msgstr "Počet stránek" -#: netbox/ipam/tables/asn.py:62 +#: ipam/tables/asn.py:62 msgid "Provider Count" msgstr "Počet poskytovatelů" -#: netbox/ipam/tables/ip.py:95 netbox/netbox/navigation/menu.py:179 -#: netbox/netbox/navigation/menu.py:181 +#: ipam/tables/ip.py:95 netbox/navigation/menu.py:179 +#: netbox/navigation/menu.py:181 msgid "Aggregates" msgstr "Agregáty" -#: netbox/ipam/tables/ip.py:125 +#: ipam/tables/ip.py:125 msgid "Added" msgstr "Přidal" -#: netbox/ipam/tables/ip.py:128 netbox/ipam/tables/ip.py:166 -#: netbox/ipam/tables/vlans.py:142 netbox/ipam/views.py:346 -#: netbox/netbox/navigation/menu.py:165 netbox/netbox/navigation/menu.py:167 -#: netbox/templates/ipam/vlan.html:84 +#: ipam/tables/ip.py:128 ipam/tables/ip.py:166 ipam/tables/vlans.py:142 +#: ipam/views.py:346 netbox/navigation/menu.py:165 +#: netbox/navigation/menu.py:167 templates/ipam/vlan.html:84 msgid "Prefixes" msgstr "Předpony" -#: netbox/ipam/tables/ip.py:131 netbox/ipam/tables/ip.py:270 -#: netbox/ipam/tables/ip.py:324 netbox/ipam/tables/vlans.py:86 -#: netbox/templates/dcim/device.html:260 -#: netbox/templates/ipam/aggregate.html:24 -#: netbox/templates/ipam/iprange.html:29 netbox/templates/ipam/prefix.html:106 +#: ipam/tables/ip.py:131 ipam/tables/ip.py:270 ipam/tables/ip.py:324 +#: ipam/tables/vlans.py:86 templates/dcim/device.html:260 +#: templates/ipam/aggregate.html:24 templates/ipam/iprange.html:29 +#: templates/ipam/prefix.html:106 msgid "Utilization" msgstr "Využití" -#: netbox/ipam/tables/ip.py:171 netbox/netbox/navigation/menu.py:161 +#: ipam/tables/ip.py:171 netbox/navigation/menu.py:161 msgid "IP Ranges" msgstr "Rozsahy IP" -#: netbox/ipam/tables/ip.py:221 +#: ipam/tables/ip.py:221 msgid "Prefix (Flat)" msgstr "Předpona (plochá)" -#: netbox/ipam/tables/ip.py:225 +#: ipam/tables/ip.py:225 msgid "Depth" msgstr "Hloubka" -#: netbox/ipam/tables/ip.py:262 +#: ipam/tables/ip.py:262 msgid "Pool" msgstr "Bazén" -#: netbox/ipam/tables/ip.py:266 netbox/ipam/tables/ip.py:320 +#: ipam/tables/ip.py:266 ipam/tables/ip.py:320 msgid "Marked Utilized" msgstr "Označeno Využito" -#: netbox/ipam/tables/ip.py:304 +#: ipam/tables/ip.py:304 msgid "Start address" msgstr "Počáteční adresa" -#: netbox/ipam/tables/ip.py:383 +#: ipam/tables/ip.py:383 msgid "NAT (Inside)" msgstr "NAT (uvnitř)" -#: netbox/ipam/tables/ip.py:388 +#: ipam/tables/ip.py:388 msgid "NAT (Outside)" msgstr "NAT (venku)" -#: netbox/ipam/tables/ip.py:393 +#: ipam/tables/ip.py:393 msgid "Assigned" msgstr "Přiřazeno" -#: netbox/ipam/tables/ip.py:429 netbox/templates/vpn/l2vpntermination.html:16 -#: netbox/vpn/forms/filtersets.py:240 +#: ipam/tables/ip.py:429 templates/vpn/l2vpntermination.html:16 +#: vpn/forms/filtersets.py:240 msgid "Assigned Object" msgstr "Přiřazený objekt" -#: netbox/ipam/tables/vlans.py:68 +#: ipam/tables/vlans.py:68 msgid "Scope Type" msgstr "Typ rozsahu" -#: netbox/ipam/tables/vlans.py:76 +#: ipam/tables/vlans.py:76 msgid "VID Ranges" msgstr "Rozsahy VID" -#: netbox/ipam/tables/vlans.py:111 netbox/ipam/tables/vlans.py:214 -#: netbox/templates/dcim/inc/interface_vlans_table.html:4 +#: ipam/tables/vlans.py:111 ipam/tables/vlans.py:214 +#: templates/dcim/inc/interface_vlans_table.html:4 msgid "VID" msgstr "VIDIO" -#: netbox/ipam/tables/vrfs.py:30 +#: ipam/tables/vrfs.py:30 msgid "RD" msgstr "RD" -#: netbox/ipam/tables/vrfs.py:33 +#: ipam/tables/vrfs.py:33 msgid "Unique" msgstr "Unikátní" -#: netbox/ipam/tables/vrfs.py:37 netbox/vpn/tables/l2vpn.py:27 +#: ipam/tables/vrfs.py:37 vpn/tables/l2vpn.py:27 msgid "Import Targets" msgstr "Importovat cíle" -#: netbox/ipam/tables/vrfs.py:42 netbox/vpn/tables/l2vpn.py:32 +#: ipam/tables/vrfs.py:42 vpn/tables/l2vpn.py:32 msgid "Export Targets" msgstr "Cíle exportu" -#: netbox/ipam/validators.py:9 +#: ipam/validators.py:9 #, python-brace-format msgid "{prefix} is not a valid prefix. Did you mean {suggested}?" msgstr "{prefix} není platná předpona. Mysleli jste {suggested}?" -#: netbox/ipam/validators.py:16 +#: ipam/validators.py:16 #, python-format msgid "The prefix length must be less than or equal to %(limit_value)s." msgstr "Délka předpony musí být menší nebo rovna %(limit_value)s." -#: netbox/ipam/validators.py:24 +#: ipam/validators.py:24 #, python-format msgid "The prefix length must be greater than or equal to %(limit_value)s." msgstr "Délka předpony musí být větší nebo rovna %(limit_value)s." -#: netbox/ipam/validators.py:33 +#: ipam/validators.py:33 msgid "" "Only alphanumeric characters, asterisks, hyphens, periods, and underscores " "are allowed in DNS names" @@ -10358,31 +9757,31 @@ msgstr "" "V názvech DNS jsou povoleny pouze alfanumerické znaky, hvězdičky, pomlčky, " "tečky a podtržítka" -#: netbox/ipam/views.py:533 +#: ipam/views.py:533 msgid "Child Prefixes" msgstr "Dětské předpony" -#: netbox/ipam/views.py:569 +#: ipam/views.py:569 msgid "Child Ranges" msgstr "Dětské rozsahy" -#: netbox/ipam/views.py:898 +#: ipam/views.py:898 msgid "Related IPs" msgstr "Související IP adresy" -#: netbox/ipam/views.py:1127 +#: ipam/views.py:1127 msgid "Device Interfaces" msgstr "Rozhraní zařízení" -#: netbox/ipam/views.py:1145 +#: ipam/views.py:1145 msgid "VM Interfaces" msgstr "Rozhraní virtuálních počítačů" -#: netbox/netbox/api/fields.py:65 +#: netbox/api/fields.py:65 msgid "This field may not be blank." msgstr "Toto pole nesmí být prázdné." -#: netbox/netbox/api/fields.py:70 +#: netbox/api/fields.py:70 msgid "" "Value must be passed directly (e.g. \"foo\": 123); do not use a dictionary " "or list." @@ -10390,338 +9789,325 @@ msgstr "" "Hodnota musí být předána přímo (např. „foo“: 123); nepoužívejte slovník ani " "seznam." -#: netbox/netbox/api/fields.py:91 +#: netbox/api/fields.py:91 #, python-brace-format msgid "{value} is not a valid choice." msgstr "{value} není platná volba." -#: netbox/netbox/api/fields.py:104 +#: netbox/api/fields.py:104 #, python-brace-format msgid "Invalid content type: {content_type}" msgstr "Neplatný typ obsahu: {content_type}" -#: netbox/netbox/api/fields.py:105 +#: netbox/api/fields.py:105 msgid "Invalid value. Specify a content type as '.'." msgstr "Neplatná hodnota. Zadejte typ obsahu jako '.„." -#: netbox/netbox/api/fields.py:167 +#: netbox/api/fields.py:167 msgid "Ranges must be specified in the form (lower, upper)." msgstr "Rozsahy musí být specifikovány ve formuláři (dolní, horní)." -#: netbox/netbox/api/fields.py:169 +#: netbox/api/fields.py:169 msgid "Range boundaries must be defined as integers." msgstr "Hranice rozsahu musí být definovány jako celá čísla." -#: netbox/netbox/api/serializers/fields.py:40 +#: netbox/api/serializers/fields.py:40 #, python-brace-format msgid "{class_name} must implement get_view_name()" msgstr "{class_name} musí implementovat get_view_name ()" -#: netbox/netbox/authentication/__init__.py:138 +#: netbox/authentication/__init__.py:138 #, python-brace-format msgid "Invalid permission {permission} for model {model}" msgstr "Neplatné oprávnění {permission} pro model {model}" -#: netbox/netbox/choices.py:49 +#: netbox/choices.py:49 msgid "Dark Red" msgstr "Tmavě červená" -#: netbox/netbox/choices.py:52 +#: netbox/choices.py:52 msgid "Rose" msgstr "růže" -#: netbox/netbox/choices.py:53 +#: netbox/choices.py:53 msgid "Fuchsia" msgstr "Fuchsiová" -#: netbox/netbox/choices.py:55 +#: netbox/choices.py:55 msgid "Dark Purple" msgstr "Tmavě fialová" -#: netbox/netbox/choices.py:58 +#: netbox/choices.py:58 msgid "Light Blue" msgstr "Světle modrá" -#: netbox/netbox/choices.py:61 +#: netbox/choices.py:61 msgid "Aqua" msgstr "Aqua" -#: netbox/netbox/choices.py:62 +#: netbox/choices.py:62 msgid "Dark Green" msgstr "Tmavě zelená" -#: netbox/netbox/choices.py:64 +#: netbox/choices.py:64 msgid "Light Green" msgstr "Světle zelená" -#: netbox/netbox/choices.py:65 +#: netbox/choices.py:65 msgid "Lime" msgstr "Limetka" -#: netbox/netbox/choices.py:67 +#: netbox/choices.py:67 msgid "Amber" msgstr "Jantar" -#: netbox/netbox/choices.py:69 +#: netbox/choices.py:69 msgid "Dark Orange" msgstr "Tmavě oranžová" -#: netbox/netbox/choices.py:70 +#: netbox/choices.py:70 msgid "Brown" msgstr "Hnědý" -#: netbox/netbox/choices.py:71 +#: netbox/choices.py:71 msgid "Light Grey" msgstr "Světle šedá" -#: netbox/netbox/choices.py:72 +#: netbox/choices.py:72 msgid "Grey" msgstr "Šedá" -#: netbox/netbox/choices.py:73 +#: netbox/choices.py:73 msgid "Dark Grey" msgstr "Tmavě šedá" -#: netbox/netbox/choices.py:128 +#: netbox/choices.py:128 msgid "Direct" msgstr "Přímo" -#: netbox/netbox/choices.py:129 +#: netbox/choices.py:129 msgid "Upload" msgstr "Nahrát" -#: netbox/netbox/choices.py:141 netbox/netbox/choices.py:155 +#: netbox/choices.py:141 netbox/choices.py:155 msgid "Auto-detect" msgstr "Automatická detekce" -#: netbox/netbox/choices.py:156 +#: netbox/choices.py:156 msgid "Comma" msgstr "Čárka" -#: netbox/netbox/choices.py:157 +#: netbox/choices.py:157 msgid "Semicolon" msgstr "Středník" -#: netbox/netbox/choices.py:158 +#: netbox/choices.py:158 msgid "Tab" msgstr "Záložka" -#: netbox/netbox/config/__init__.py:67 +#: netbox/config/__init__.py:67 #, python-brace-format msgid "Invalid configuration parameter: {item}" msgstr "Neplatný parametr konfigurace: {item}" -#: netbox/netbox/config/parameters.py:22 -#: netbox/templates/core/inc/config_data.html:62 +#: netbox/config/parameters.py:22 templates/core/inc/config_data.html:62 msgid "Login banner" msgstr "Přihlašovací banner" -#: netbox/netbox/config/parameters.py:24 +#: netbox/config/parameters.py:24 msgid "Additional content to display on the login page" msgstr "Další obsah k zobrazení na přihlašovací stránce" -#: netbox/netbox/config/parameters.py:33 -#: netbox/templates/core/inc/config_data.html:66 +#: netbox/config/parameters.py:33 templates/core/inc/config_data.html:66 msgid "Maintenance banner" msgstr "Banner údržby" -#: netbox/netbox/config/parameters.py:35 +#: netbox/config/parameters.py:35 msgid "Additional content to display when in maintenance mode" msgstr "Další obsah k zobrazení v režimu údržby" -#: netbox/netbox/config/parameters.py:44 -#: netbox/templates/core/inc/config_data.html:70 +#: netbox/config/parameters.py:44 templates/core/inc/config_data.html:70 msgid "Top banner" msgstr "Horní banner" -#: netbox/netbox/config/parameters.py:46 +#: netbox/config/parameters.py:46 msgid "Additional content to display at the top of every page" msgstr "Další obsah, který se má zobrazit v horní části každé stránky" -#: netbox/netbox/config/parameters.py:55 -#: netbox/templates/core/inc/config_data.html:74 +#: netbox/config/parameters.py:55 templates/core/inc/config_data.html:74 msgid "Bottom banner" msgstr "Spodní banner" -#: netbox/netbox/config/parameters.py:57 +#: netbox/config/parameters.py:57 msgid "Additional content to display at the bottom of every page" msgstr "Další obsah, který se má zobrazit v dolní části každé stránky" -#: netbox/netbox/config/parameters.py:68 +#: netbox/config/parameters.py:68 msgid "Globally unique IP space" msgstr "Globálně jedinečný IP prostor" -#: netbox/netbox/config/parameters.py:70 +#: netbox/config/parameters.py:70 msgid "Enforce unique IP addressing within the global table" msgstr "Vynutit jedinečné IP adresování v globální tabulce" -#: netbox/netbox/config/parameters.py:75 -#: netbox/templates/core/inc/config_data.html:44 +#: netbox/config/parameters.py:75 templates/core/inc/config_data.html:44 msgid "Prefer IPv4" msgstr "Upřednostňujte IPv4" -#: netbox/netbox/config/parameters.py:77 +#: netbox/config/parameters.py:77 msgid "Prefer IPv4 addresses over IPv6" msgstr "Upřednostňujte IPv4 adresy před IPv6" -#: netbox/netbox/config/parameters.py:84 +#: netbox/config/parameters.py:84 msgid "Rack unit height" msgstr "Výška regálu" -#: netbox/netbox/config/parameters.py:86 +#: netbox/config/parameters.py:86 msgid "Default unit height for rendered rack elevations" msgstr "Výchozí výška jednotky pro rendrované výšky stojanu" -#: netbox/netbox/config/parameters.py:91 +#: netbox/config/parameters.py:91 msgid "Rack unit width" msgstr "Šířka regálu" -#: netbox/netbox/config/parameters.py:93 +#: netbox/config/parameters.py:93 msgid "Default unit width for rendered rack elevations" msgstr "Výchozí šířka jednotky pro rendrované výšky stojanu" -#: netbox/netbox/config/parameters.py:100 +#: netbox/config/parameters.py:100 msgid "Powerfeed voltage" msgstr "Napájecí napětí" -#: netbox/netbox/config/parameters.py:102 +#: netbox/config/parameters.py:102 msgid "Default voltage for powerfeeds" msgstr "Výchozí napětí pro napájecí zdroje" -#: netbox/netbox/config/parameters.py:107 +#: netbox/config/parameters.py:107 msgid "Powerfeed amperage" msgstr "Napájecí proud" -#: netbox/netbox/config/parameters.py:109 +#: netbox/config/parameters.py:109 msgid "Default amperage for powerfeeds" msgstr "Výchozí proud pro napájecí zdroje" -#: netbox/netbox/config/parameters.py:114 +#: netbox/config/parameters.py:114 msgid "Powerfeed max utilization" msgstr "Maximální využití napájecího zdroje" -#: netbox/netbox/config/parameters.py:116 +#: netbox/config/parameters.py:116 msgid "Default max utilization for powerfeeds" msgstr "Výchozí maximální využití pro napájecí zdroje" -#: netbox/netbox/config/parameters.py:123 -#: netbox/templates/core/inc/config_data.html:53 +#: netbox/config/parameters.py:123 templates/core/inc/config_data.html:53 msgid "Allowed URL schemes" msgstr "Povolená schémata adres URL" -#: netbox/netbox/config/parameters.py:128 +#: netbox/config/parameters.py:128 msgid "Permitted schemes for URLs in user-provided content" msgstr "Povolená schémata pro adresy URL v obsahu poskytovaném uživatelem" -#: netbox/netbox/config/parameters.py:136 +#: netbox/config/parameters.py:136 msgid "Default page size" msgstr "Výchozí velikost stránky" -#: netbox/netbox/config/parameters.py:142 +#: netbox/config/parameters.py:142 msgid "Maximum page size" msgstr "Maximální velikost stránky" -#: netbox/netbox/config/parameters.py:150 -#: netbox/templates/core/inc/config_data.html:96 +#: netbox/config/parameters.py:150 templates/core/inc/config_data.html:96 msgid "Custom validators" msgstr "Vlastní validátory" -#: netbox/netbox/config/parameters.py:152 +#: netbox/config/parameters.py:152 msgid "Custom validation rules (JSON)" msgstr "Vlastní ověřovací pravidla (JSON)" -#: netbox/netbox/config/parameters.py:160 -#: netbox/templates/core/inc/config_data.html:104 +#: netbox/config/parameters.py:160 templates/core/inc/config_data.html:104 msgid "Protection rules" msgstr "Pravidla ochrany" -#: netbox/netbox/config/parameters.py:162 +#: netbox/config/parameters.py:162 msgid "Deletion protection rules (JSON)" msgstr "Pravidla ochrany proti mazání (JSON)" -#: netbox/netbox/config/parameters.py:172 -#: netbox/templates/core/inc/config_data.html:117 +#: netbox/config/parameters.py:172 templates/core/inc/config_data.html:117 msgid "Default preferences" msgstr "Výchozí předvolby" -#: netbox/netbox/config/parameters.py:174 +#: netbox/config/parameters.py:174 msgid "Default preferences for new users" msgstr "Výchozí předvolby pro nové uživatele" -#: netbox/netbox/config/parameters.py:181 -#: netbox/templates/core/inc/config_data.html:129 +#: netbox/config/parameters.py:181 templates/core/inc/config_data.html:129 msgid "Maintenance mode" msgstr "Režim údržby" -#: netbox/netbox/config/parameters.py:183 +#: netbox/config/parameters.py:183 msgid "Enable maintenance mode" msgstr "Povolit režim údržby" -#: netbox/netbox/config/parameters.py:188 -#: netbox/templates/core/inc/config_data.html:133 +#: netbox/config/parameters.py:188 templates/core/inc/config_data.html:133 msgid "GraphQL enabled" msgstr "GraphQL povoleno" -#: netbox/netbox/config/parameters.py:190 +#: netbox/config/parameters.py:190 msgid "Enable the GraphQL API" msgstr "Povolte rozhraní GraphQL API" -#: netbox/netbox/config/parameters.py:195 -#: netbox/templates/core/inc/config_data.html:137 +#: netbox/config/parameters.py:195 templates/core/inc/config_data.html:137 msgid "Changelog retention" msgstr "Zachování seznamu změn" -#: netbox/netbox/config/parameters.py:197 +#: netbox/config/parameters.py:197 msgid "Days to retain changelog history (set to zero for unlimited)" msgstr "Dny pro uchování historie changelogu (neomezeně nastaveno na nulu)" -#: netbox/netbox/config/parameters.py:202 +#: netbox/config/parameters.py:202 msgid "Job result retention" msgstr "Zachování výsledků úlohy" -#: netbox/netbox/config/parameters.py:204 +#: netbox/config/parameters.py:204 msgid "Days to retain job result history (set to zero for unlimited)" msgstr "" "Dny pro uchování historie výsledků úlohy (neomezeně nastaveno na nulu)" -#: netbox/netbox/config/parameters.py:209 -#: netbox/templates/core/inc/config_data.html:145 +#: netbox/config/parameters.py:209 templates/core/inc/config_data.html:145 msgid "Maps URL" msgstr "URL mapy" -#: netbox/netbox/config/parameters.py:211 +#: netbox/config/parameters.py:211 msgid "Base URL for mapping geographic locations" msgstr "Základní adresa URL pro mapování geografických lokalit" -#: netbox/netbox/forms/__init__.py:12 +#: netbox/forms/__init__.py:12 msgid "Partial match" msgstr "Částečná shoda" -#: netbox/netbox/forms/__init__.py:13 +#: netbox/forms/__init__.py:13 msgid "Exact match" msgstr "Přesná shoda" -#: netbox/netbox/forms/__init__.py:14 +#: netbox/forms/__init__.py:14 msgid "Starts with" msgstr "Začíná s" -#: netbox/netbox/forms/__init__.py:15 +#: netbox/forms/__init__.py:15 msgid "Ends with" msgstr "Končí" -#: netbox/netbox/forms/__init__.py:16 +#: netbox/forms/__init__.py:16 msgid "Regex" msgstr "Regex" -#: netbox/netbox/forms/__init__.py:34 +#: netbox/forms/__init__.py:34 msgid "Object type(s)" msgstr "Typ (typy) objektu" -#: netbox/netbox/forms/__init__.py:40 +#: netbox/forms/__init__.py:40 msgid "Lookup" msgstr "Vyhledávání" -#: netbox/netbox/forms/base.py:90 +#: netbox/forms/base.py:90 msgid "" "Tag slugs separated by commas, encased with double quotes (e.g. " "\"tag1,tag2,tag3\")" @@ -10729,430 +10115,414 @@ msgstr "" "Označte slimáky oddělené čárkami, uzavřené dvojitými uvozovkami (např. " "„tag1, tag2, tag3\")" -#: netbox/netbox/forms/base.py:120 +#: netbox/forms/base.py:120 msgid "Add tags" msgstr "Přidat štítky" -#: netbox/netbox/forms/base.py:125 +#: netbox/forms/base.py:125 msgid "Remove tags" msgstr "Odstranit značky" -#: netbox/netbox/forms/mixins.py:38 +#: netbox/forms/mixins.py:38 #, python-brace-format msgid "{class_name} must specify a model class." msgstr "{class_name} musí zadat třídu modelu." -#: netbox/netbox/models/features.py:280 +#: netbox/models/features.py:280 #, python-brace-format msgid "Unknown field name '{name}' in custom field data." msgstr "Neznámý název pole '{name}'v datech vlastního pole." -#: netbox/netbox/models/features.py:286 +#: netbox/models/features.py:286 #, python-brace-format msgid "Invalid value for custom field '{name}': {error}" msgstr "Neplatná hodnota pro vlastní pole '{name}„: {error}" -#: netbox/netbox/models/features.py:295 +#: netbox/models/features.py:295 #, python-brace-format msgid "Custom field '{name}' must have a unique value." msgstr "Vlastní pole '{name}Musí mít jedinečnou hodnotu." -#: netbox/netbox/models/features.py:302 +#: netbox/models/features.py:302 #, python-brace-format msgid "Missing required custom field '{name}'." msgstr "Chybí povinné vlastní pole '{name}„." -#: netbox/netbox/models/features.py:462 +#: netbox/models/features.py:462 msgid "Remote data source" msgstr "Vzdálený zdroj dat" -#: netbox/netbox/models/features.py:472 +#: netbox/models/features.py:472 msgid "data path" msgstr "datová cesta" -#: netbox/netbox/models/features.py:476 +#: netbox/models/features.py:476 msgid "Path to remote file (relative to data source root)" msgstr "Cesta ke vzdálenému souboru (vzhledem k kořenovému zdroji dat)" -#: netbox/netbox/models/features.py:479 +#: netbox/models/features.py:479 msgid "auto sync enabled" msgstr "automatická synchronizace povolena" -#: netbox/netbox/models/features.py:481 +#: netbox/models/features.py:481 msgid "Enable automatic synchronization of data when the data file is updated" msgstr "" "Povolit automatickou synchronizaci dat při aktualizaci datového souboru" -#: netbox/netbox/models/features.py:484 +#: netbox/models/features.py:484 msgid "date synced" msgstr "datum synchronizováno" -#: netbox/netbox/models/features.py:578 +#: netbox/models/features.py:578 #, python-brace-format msgid "{class_name} must implement a sync_data() method." msgstr "{class_name} musí implementovat metodu sync_data ()." -#: netbox/netbox/navigation/menu.py:11 +#: netbox/navigation/menu.py:11 msgid "Organization" msgstr "Organizace" -#: netbox/netbox/navigation/menu.py:19 +#: netbox/navigation/menu.py:19 msgid "Site Groups" msgstr "Skupiny webů" -#: netbox/netbox/navigation/menu.py:27 +#: netbox/navigation/menu.py:27 msgid "Tenant Groups" msgstr "Skupiny nájemců" -#: netbox/netbox/navigation/menu.py:34 +#: netbox/navigation/menu.py:34 msgid "Contact Groups" msgstr "Skupiny kontaktů" -#: netbox/netbox/navigation/menu.py:35 -#: netbox/templates/tenancy/contactrole.html:8 +#: netbox/navigation/menu.py:35 templates/tenancy/contactrole.html:8 msgid "Contact Roles" msgstr "Kontaktní role" -#: netbox/netbox/navigation/menu.py:36 +#: netbox/navigation/menu.py:36 msgid "Contact Assignments" msgstr "Kontaktní přiřazení" -#: netbox/netbox/navigation/menu.py:50 +#: netbox/navigation/menu.py:50 msgid "Rack Roles" msgstr "Role stojanu" -#: netbox/netbox/navigation/menu.py:54 +#: netbox/navigation/menu.py:54 msgid "Elevations" msgstr "Nadmořská výška" -#: netbox/netbox/navigation/menu.py:60 netbox/netbox/navigation/menu.py:62 +#: netbox/navigation/menu.py:60 netbox/navigation/menu.py:62 msgid "Rack Types" msgstr "Typy stojanů" -#: netbox/netbox/navigation/menu.py:76 +#: netbox/navigation/menu.py:76 msgid "Modules" msgstr "Moduly" -#: netbox/netbox/navigation/menu.py:80 netbox/templates/dcim/device.html:160 -#: netbox/templates/dcim/virtualdevicecontext.html:8 +#: netbox/navigation/menu.py:80 templates/dcim/device.html:160 +#: templates/dcim/virtualdevicecontext.html:8 msgid "Virtual Device Contexts" msgstr "Kontexty virtuálních zařízení" -#: netbox/netbox/navigation/menu.py:88 +#: netbox/navigation/menu.py:88 msgid "Manufacturers" msgstr "Výrobci" -#: netbox/netbox/navigation/menu.py:92 +#: netbox/navigation/menu.py:92 msgid "Device Components" msgstr "Komponenty zařízení" -#: netbox/netbox/navigation/menu.py:104 -#: netbox/templates/dcim/inventoryitemrole.html:8 +#: netbox/navigation/menu.py:104 templates/dcim/inventoryitemrole.html:8 msgid "Inventory Item Roles" msgstr "Role položek inventáře" -#: netbox/netbox/navigation/menu.py:111 netbox/netbox/navigation/menu.py:115 +#: netbox/navigation/menu.py:111 netbox/navigation/menu.py:115 msgid "Connections" msgstr "Spojení" -#: netbox/netbox/navigation/menu.py:117 +#: netbox/navigation/menu.py:117 msgid "Cables" msgstr "Kabely" -#: netbox/netbox/navigation/menu.py:118 +#: netbox/navigation/menu.py:118 msgid "Wireless Links" msgstr "Bezdrátové spoje" -#: netbox/netbox/navigation/menu.py:121 +#: netbox/navigation/menu.py:121 msgid "Interface Connections" msgstr "Připojení rozhraní" -#: netbox/netbox/navigation/menu.py:126 +#: netbox/navigation/menu.py:126 msgid "Console Connections" msgstr "Připojení konzoly" -#: netbox/netbox/navigation/menu.py:131 +#: netbox/navigation/menu.py:131 msgid "Power Connections" msgstr "Napájecí připojení" -#: netbox/netbox/navigation/menu.py:147 +#: netbox/navigation/menu.py:147 msgid "Wireless LAN Groups" msgstr "Skupiny bezdrátových sítí" -#: netbox/netbox/navigation/menu.py:168 +#: netbox/navigation/menu.py:168 msgid "Prefix & VLAN Roles" msgstr "Role síťových rozsahů a VLAN" -#: netbox/netbox/navigation/menu.py:174 +#: netbox/navigation/menu.py:174 msgid "ASN Ranges" msgstr "Rozsahy ASN" -#: netbox/netbox/navigation/menu.py:196 +#: netbox/navigation/menu.py:196 msgid "VLAN Groups" msgstr "Skupiny VLAN" -#: netbox/netbox/navigation/menu.py:203 +#: netbox/navigation/menu.py:203 msgid "Service Templates" msgstr "Šablony služeb" -#: netbox/netbox/navigation/menu.py:204 netbox/templates/dcim/device.html:302 -#: netbox/templates/ipam/ipaddress.html:118 -#: netbox/templates/virtualization/virtualmachine.html:154 +#: netbox/navigation/menu.py:204 templates/dcim/device.html:302 +#: templates/ipam/ipaddress.html:118 +#: templates/virtualization/virtualmachine.html:154 msgid "Services" msgstr "Služby" -#: netbox/netbox/navigation/menu.py:211 +#: netbox/navigation/menu.py:211 msgid "VPN" msgstr "VPN" -#: netbox/netbox/navigation/menu.py:215 netbox/netbox/navigation/menu.py:217 -#: netbox/vpn/tables/tunnels.py:24 +#: netbox/navigation/menu.py:215 netbox/navigation/menu.py:217 +#: vpn/tables/tunnels.py:24 msgid "Tunnels" msgstr "Tunely" -#: netbox/netbox/navigation/menu.py:218 -#: netbox/templates/vpn/tunnelgroup.html:8 +#: netbox/navigation/menu.py:218 templates/vpn/tunnelgroup.html:8 msgid "Tunnel Groups" msgstr "Skupiny tunelů" -#: netbox/netbox/navigation/menu.py:219 +#: netbox/navigation/menu.py:219 msgid "Tunnel Terminations" msgstr "Zakončení tunelů" -#: netbox/netbox/navigation/menu.py:223 netbox/netbox/navigation/menu.py:225 -#: netbox/vpn/models/l2vpn.py:64 +#: netbox/navigation/menu.py:223 netbox/navigation/menu.py:225 +#: vpn/models/l2vpn.py:64 msgid "L2VPNs" msgstr "L2VPN" -#: netbox/netbox/navigation/menu.py:226 netbox/templates/vpn/l2vpn.html:56 -#: netbox/templates/vpn/tunnel.html:72 netbox/vpn/tables/tunnels.py:58 +#: netbox/navigation/menu.py:226 templates/vpn/l2vpn.html:56 +#: templates/vpn/tunnel.html:72 vpn/tables/tunnels.py:58 msgid "Terminations" msgstr "Zakončení" -#: netbox/netbox/navigation/menu.py:232 +#: netbox/navigation/menu.py:232 msgid "IKE Proposals" msgstr "Návrhy IKE" -#: netbox/netbox/navigation/menu.py:233 -#: netbox/templates/vpn/ikeproposal.html:41 +#: netbox/navigation/menu.py:233 templates/vpn/ikeproposal.html:41 msgid "IKE Policies" msgstr "Zásady IKE" -#: netbox/netbox/navigation/menu.py:234 +#: netbox/navigation/menu.py:234 msgid "IPSec Proposals" msgstr "Návrhy IPsec" -#: netbox/netbox/navigation/menu.py:235 -#: netbox/templates/vpn/ipsecproposal.html:37 +#: netbox/navigation/menu.py:235 templates/vpn/ipsecproposal.html:37 msgid "IPSec Policies" msgstr "Zásady protokolu IPsec" -#: netbox/netbox/navigation/menu.py:236 netbox/templates/vpn/ikepolicy.html:38 -#: netbox/templates/vpn/ipsecpolicy.html:25 +#: netbox/navigation/menu.py:236 templates/vpn/ikepolicy.html:38 +#: templates/vpn/ipsecpolicy.html:25 msgid "IPSec Profiles" msgstr "Profily IPsec" -#: netbox/netbox/navigation/menu.py:243 -#: netbox/templates/dcim/device_edit.html:78 +#: netbox/navigation/menu.py:243 templates/dcim/device_edit.html:78 msgid "Virtualization" msgstr "Virtualizace" -#: netbox/netbox/navigation/menu.py:251 -#: netbox/templates/virtualization/virtualmachine.html:174 -#: netbox/templates/virtualization/virtualmachine/base.html:32 -#: netbox/templates/virtualization/virtualmachine_list.html:21 -#: netbox/virtualization/tables/virtualmachines.py:104 -#: netbox/virtualization/views.py:388 +#: netbox/navigation/menu.py:251 +#: templates/virtualization/virtualmachine.html:174 +#: templates/virtualization/virtualmachine/base.html:32 +#: templates/virtualization/virtualmachine_list.html:21 +#: virtualization/tables/virtualmachines.py:104 virtualization/views.py:388 msgid "Virtual Disks" msgstr "Virtuální disky" -#: netbox/netbox/navigation/menu.py:258 +#: netbox/navigation/menu.py:258 msgid "Cluster Types" msgstr "Typy klastrů" -#: netbox/netbox/navigation/menu.py:259 +#: netbox/navigation/menu.py:259 msgid "Cluster Groups" msgstr "Skupiny klastrů" -#: netbox/netbox/navigation/menu.py:273 +#: netbox/navigation/menu.py:273 msgid "Circuit Types" msgstr "Typy obvodů" -#: netbox/netbox/navigation/menu.py:274 +#: netbox/navigation/menu.py:274 msgid "Circuit Groups" msgstr "Skupiny obvodů" -#: netbox/netbox/navigation/menu.py:275 -#: netbox/templates/circuits/circuit.html:66 +#: netbox/navigation/menu.py:275 templates/circuits/circuit.html:66 msgid "Group Assignments" msgstr "Skupinové úkoly" -#: netbox/netbox/navigation/menu.py:276 +#: netbox/navigation/menu.py:276 msgid "Circuit Terminations" msgstr "Ukončení obvodů" -#: netbox/netbox/navigation/menu.py:280 netbox/netbox/navigation/menu.py:282 +#: netbox/navigation/menu.py:280 netbox/navigation/menu.py:282 msgid "Providers" msgstr "Poskytovatelé" -#: netbox/netbox/navigation/menu.py:283 -#: netbox/templates/circuits/provider.html:51 +#: netbox/navigation/menu.py:283 templates/circuits/provider.html:51 msgid "Provider Accounts" msgstr "Účty poskytovatele" -#: netbox/netbox/navigation/menu.py:284 +#: netbox/navigation/menu.py:284 msgid "Provider Networks" msgstr "Sítě poskytovatelů" -#: netbox/netbox/navigation/menu.py:298 +#: netbox/navigation/menu.py:298 msgid "Power Panels" msgstr "Napájecí panely" -#: netbox/netbox/navigation/menu.py:309 +#: netbox/navigation/menu.py:309 msgid "Configurations" msgstr "Konfigurace" -#: netbox/netbox/navigation/menu.py:311 +#: netbox/navigation/menu.py:311 msgid "Config Contexts" msgstr "Kontexty konfigurace" -#: netbox/netbox/navigation/menu.py:312 +#: netbox/navigation/menu.py:312 msgid "Config Templates" msgstr "Konfigurační šablony" -#: netbox/netbox/navigation/menu.py:319 netbox/netbox/navigation/menu.py:323 +#: netbox/navigation/menu.py:319 netbox/navigation/menu.py:323 msgid "Customization" msgstr "Přizpůsobení" -#: netbox/netbox/navigation/menu.py:325 -#: netbox/templates/dcim/device_edit.html:103 -#: netbox/templates/dcim/htmx/cable_edit.html:81 -#: netbox/templates/dcim/virtualchassis_add.html:31 -#: netbox/templates/dcim/virtualchassis_edit.html:40 -#: netbox/templates/generic/bulk_edit.html:76 -#: netbox/templates/htmx/form.html:19 netbox/templates/inc/filter_list.html:30 -#: netbox/templates/inc/panels/custom_fields.html:7 -#: netbox/templates/ipam/ipaddress_bulk_add.html:35 -#: netbox/templates/ipam/vlan_edit.html:59 +#: netbox/navigation/menu.py:325 templates/dcim/device_edit.html:103 +#: templates/dcim/htmx/cable_edit.html:81 +#: templates/dcim/virtualchassis_add.html:31 +#: templates/dcim/virtualchassis_edit.html:40 +#: templates/generic/bulk_edit.html:76 templates/htmx/form.html:19 +#: templates/inc/filter_list.html:30 templates/inc/panels/custom_fields.html:7 +#: templates/ipam/ipaddress_bulk_add.html:35 templates/ipam/vlan_edit.html:59 msgid "Custom Fields" msgstr "Vlastní pole" -#: netbox/netbox/navigation/menu.py:326 +#: netbox/navigation/menu.py:326 msgid "Custom Field Choices" msgstr "Volby uživatelských polí" -#: netbox/netbox/navigation/menu.py:327 +#: netbox/navigation/menu.py:327 msgid "Custom Links" msgstr "Vlastní odkazy" -#: netbox/netbox/navigation/menu.py:328 +#: netbox/navigation/menu.py:328 msgid "Export Templates" msgstr "Exportovat šablony" -#: netbox/netbox/navigation/menu.py:329 +#: netbox/navigation/menu.py:329 msgid "Saved Filters" msgstr "Uložené filtry" -#: netbox/netbox/navigation/menu.py:331 +#: netbox/navigation/menu.py:331 msgid "Image Attachments" msgstr "Přílohy obrázků" -#: netbox/netbox/navigation/menu.py:349 +#: netbox/navigation/menu.py:349 msgid "Operations" msgstr "Operace" -#: netbox/netbox/navigation/menu.py:353 +#: netbox/navigation/menu.py:353 msgid "Integrations" msgstr "Integrace" -#: netbox/netbox/navigation/menu.py:355 +#: netbox/navigation/menu.py:355 msgid "Data Sources" msgstr "Zdroje dat" -#: netbox/netbox/navigation/menu.py:356 +#: netbox/navigation/menu.py:356 msgid "Event Rules" msgstr "Pravidla události" -#: netbox/netbox/navigation/menu.py:357 +#: netbox/navigation/menu.py:357 msgid "Webhooks" msgstr "Webhooky" -#: netbox/netbox/navigation/menu.py:361 netbox/netbox/navigation/menu.py:365 -#: netbox/netbox/views/generic/feature_views.py:153 -#: netbox/templates/extras/report/base.html:37 -#: netbox/templates/extras/script/base.html:36 +#: netbox/navigation/menu.py:361 netbox/navigation/menu.py:365 +#: netbox/views/generic/feature_views.py:153 +#: templates/extras/report/base.html:37 templates/extras/script/base.html:36 msgid "Jobs" msgstr "Pracovní místa" -#: netbox/netbox/navigation/menu.py:371 +#: netbox/navigation/menu.py:371 msgid "Logging" msgstr "Protokolování" -#: netbox/netbox/navigation/menu.py:373 +#: netbox/navigation/menu.py:373 msgid "Notification Groups" msgstr "Skupiny oznámení" -#: netbox/netbox/navigation/menu.py:374 +#: netbox/navigation/menu.py:374 msgid "Journal Entries" msgstr "Záznamy deníku" -#: netbox/netbox/navigation/menu.py:375 -#: netbox/templates/core/objectchange.html:9 -#: netbox/templates/core/objectchange_list.html:4 +#: netbox/navigation/menu.py:375 templates/core/objectchange.html:9 +#: templates/core/objectchange_list.html:4 msgid "Change Log" msgstr "Protokol změn" -#: netbox/netbox/navigation/menu.py:382 netbox/templates/inc/user_menu.html:29 +#: netbox/navigation/menu.py:382 templates/inc/user_menu.html:29 msgid "Admin" msgstr "Administrátor" -#: netbox/netbox/navigation/menu.py:430 netbox/templates/account/base.html:27 -#: netbox/templates/inc/user_menu.html:57 +#: netbox/navigation/menu.py:430 templates/account/base.html:27 +#: templates/inc/user_menu.html:57 msgid "API Tokens" msgstr "Tokeny API" -#: netbox/netbox/navigation/menu.py:437 netbox/users/forms/model_forms.py:187 -#: netbox/users/forms/model_forms.py:195 netbox/users/forms/model_forms.py:242 -#: netbox/users/forms/model_forms.py:249 +#: netbox/navigation/menu.py:437 users/forms/model_forms.py:187 +#: users/forms/model_forms.py:195 users/forms/model_forms.py:242 +#: users/forms/model_forms.py:249 msgid "Permissions" msgstr "Oprávnění" -#: netbox/netbox/navigation/menu.py:445 netbox/netbox/navigation/menu.py:449 -#: netbox/templates/core/system.html:7 +#: netbox/navigation/menu.py:445 netbox/navigation/menu.py:449 +#: templates/core/system.html:7 msgid "System" msgstr "Systém" -#: netbox/netbox/navigation/menu.py:454 netbox/netbox/navigation/menu.py:502 -#: netbox/templates/500.html:35 netbox/templates/account/preferences.html:22 -#: netbox/templates/core/plugin.html:12 -#: netbox/templates/core/plugin_list.html:7 -#: netbox/templates/core/plugin_list.html:12 +#: netbox/navigation/menu.py:454 netbox/navigation/menu.py:502 +#: templates/500.html:35 templates/account/preferences.html:22 +#: templates/core/plugin.html:13 templates/core/plugin_list.html:7 +#: templates/core/plugin_list.html:12 msgid "Plugins" msgstr "Pluginy" -#: netbox/netbox/navigation/menu.py:459 +#: netbox/navigation/menu.py:459 msgid "Configuration History" msgstr "Historie konfigurace" -#: netbox/netbox/navigation/menu.py:465 netbox/templates/core/rq_task.html:8 -#: netbox/templates/core/rq_task_list.html:22 +#: netbox/navigation/menu.py:465 templates/core/rq_task.html:8 +#: templates/core/rq_task_list.html:22 msgid "Background Tasks" msgstr "Úkoly na pozadí" -#: netbox/netbox/plugins/navigation.py:47 -#: netbox/netbox/plugins/navigation.py:69 +#: netbox/plugins/navigation.py:47 netbox/plugins/navigation.py:69 msgid "Permissions must be passed as a tuple or list." msgstr "Oprávnění musí být předána jako dvojice nebo seznam." -#: netbox/netbox/plugins/navigation.py:51 +#: netbox/plugins/navigation.py:51 msgid "Buttons must be passed as a tuple or list." msgstr "Tlačítka musí být předána jako dvojice nebo seznam." -#: netbox/netbox/plugins/navigation.py:73 +#: netbox/plugins/navigation.py:73 msgid "Button color must be a choice within ButtonColorChoices." msgstr "Barva tlačítka musí být volbou z ButtonColorChoices." -#: netbox/netbox/plugins/registration.py:25 +#: netbox/plugins/registration.py:25 #, python-brace-format msgid "" "PluginTemplateExtension class {template_extension} was passed as an " @@ -11160,7 +10530,7 @@ msgid "" msgstr "" "Třída PluginTemplateExtension {template_extension} byl předán jako instance!" -#: netbox/netbox/plugins/registration.py:31 +#: netbox/plugins/registration.py:31 #, python-brace-format msgid "" "{template_extension} is not a subclass of " @@ -11168,194 +10538,193 @@ msgid "" msgstr "" "{template_extension} není podtřídou Netbox.Plugins.PluginTemplateExtension!" -#: netbox/netbox/plugins/registration.py:51 +#: netbox/plugins/registration.py:51 #, python-brace-format msgid "{item} must be an instance of netbox.plugins.PluginMenuItem" msgstr "{item} musí být instancí Netbox.Plugins.PluginMenuItem" -#: netbox/netbox/plugins/registration.py:62 +#: netbox/plugins/registration.py:62 #, python-brace-format msgid "{menu_link} must be an instance of netbox.plugins.PluginMenuItem" msgstr "{menu_link} musí být instancí Netbox.Plugins.PluginMenuItem" -#: netbox/netbox/plugins/registration.py:67 +#: netbox/plugins/registration.py:67 #, python-brace-format msgid "{button} must be an instance of netbox.plugins.PluginMenuButton" msgstr "{button} musí být instancí Netbox.Plugins.PluginMenuButton" -#: netbox/netbox/plugins/templates.py:37 +#: netbox/plugins/templates.py:37 msgid "extra_context must be a dictionary" msgstr "extra_context musí být slovník" -#: netbox/netbox/preferences.py:19 +#: netbox/preferences.py:19 msgid "HTMX Navigation" msgstr "Navigace HTMX" -#: netbox/netbox/preferences.py:24 +#: netbox/preferences.py:24 msgid "Enable dynamic UI navigation" msgstr "Povolit dynamickou navigaci uživatelským rozhraním" -#: netbox/netbox/preferences.py:26 +#: netbox/preferences.py:26 msgid "Experimental feature" msgstr "Experimentální funkce" -#: netbox/netbox/preferences.py:29 +#: netbox/preferences.py:29 msgid "Language" msgstr "Jazyk" -#: netbox/netbox/preferences.py:34 +#: netbox/preferences.py:34 msgid "Forces UI translation to the specified language" msgstr "Vynucuje překlad uživatelského rozhraní do zadaného jazyka" -#: netbox/netbox/preferences.py:36 +#: netbox/preferences.py:36 msgid "Support for translation has been disabled locally" msgstr "Podpora překladu byla lokálně zakázána" -#: netbox/netbox/preferences.py:42 +#: netbox/preferences.py:42 msgid "Page length" msgstr "Délka stránky" -#: netbox/netbox/preferences.py:44 +#: netbox/preferences.py:44 msgid "The default number of objects to display per page" msgstr "Výchozí počet objektů, které se mají zobrazit na stránce" -#: netbox/netbox/preferences.py:48 +#: netbox/preferences.py:48 msgid "Paginator placement" msgstr "Umístění stránkování" -#: netbox/netbox/preferences.py:50 +#: netbox/preferences.py:50 msgid "Bottom" msgstr "Dole" -#: netbox/netbox/preferences.py:51 +#: netbox/preferences.py:51 msgid "Top" msgstr "Nahoře" -#: netbox/netbox/preferences.py:52 +#: netbox/preferences.py:52 msgid "Both" msgstr "Obojí" -#: netbox/netbox/preferences.py:55 +#: netbox/preferences.py:55 msgid "Where the paginator controls will be displayed relative to a table" msgstr "Kde budou ovládací prvky stránkování zobrazeny vzhledem k tabulce" -#: netbox/netbox/preferences.py:60 +#: netbox/preferences.py:60 msgid "Data format" msgstr "Formát dat" -#: netbox/netbox/preferences.py:65 +#: netbox/preferences.py:65 msgid "The preferred syntax for displaying generic data within the UI" msgstr "" "Preferovaná syntaxe pro zobrazení obecných dat v uživatelském rozhraní" -#: netbox/netbox/registry.py:14 +#: netbox/registry.py:14 #, python-brace-format msgid "Invalid store: {key}" msgstr "Neplatné úložiště: {key}" -#: netbox/netbox/registry.py:17 +#: netbox/registry.py:17 msgid "Cannot add stores to registry after initialization" msgstr "Po inicializaci nelze do registru přidat úložiště" -#: netbox/netbox/registry.py:20 +#: netbox/registry.py:20 msgid "Cannot delete stores from registry" msgstr "Nelze odstranit obchody z registru" -#: netbox/netbox/settings.py:760 +#: netbox/settings.py:760 msgid "Czech" msgstr "Čeština" -#: netbox/netbox/settings.py:761 +#: netbox/settings.py:761 msgid "Danish" msgstr "Dánština" -#: netbox/netbox/settings.py:762 +#: netbox/settings.py:762 msgid "German" msgstr "Němčina" -#: netbox/netbox/settings.py:763 +#: netbox/settings.py:763 msgid "English" msgstr "Angličtina" -#: netbox/netbox/settings.py:764 +#: netbox/settings.py:764 msgid "Spanish" msgstr "Španělština" -#: netbox/netbox/settings.py:765 +#: netbox/settings.py:765 msgid "French" msgstr "Francouzština" -#: netbox/netbox/settings.py:766 +#: netbox/settings.py:766 msgid "Italian" msgstr "Italština" -#: netbox/netbox/settings.py:767 +#: netbox/settings.py:767 msgid "Japanese" msgstr "Japonština" -#: netbox/netbox/settings.py:768 +#: netbox/settings.py:768 msgid "Dutch" msgstr "Holandština" -#: netbox/netbox/settings.py:769 +#: netbox/settings.py:769 msgid "Polish" msgstr "Polština" -#: netbox/netbox/settings.py:770 +#: netbox/settings.py:770 msgid "Portuguese" msgstr "Portugalština" -#: netbox/netbox/settings.py:771 +#: netbox/settings.py:771 msgid "Russian" msgstr "Ruština" -#: netbox/netbox/settings.py:772 +#: netbox/settings.py:772 msgid "Turkish" msgstr "Turečtina" -#: netbox/netbox/settings.py:773 +#: netbox/settings.py:773 msgid "Ukrainian" msgstr "Ukrajinština" -#: netbox/netbox/settings.py:774 +#: netbox/settings.py:774 msgid "Chinese" msgstr "Čínština" -#: netbox/netbox/tables/columns.py:176 +#: netbox/tables/columns.py:176 msgid "Select all" msgstr "Vybrat vše" -#: netbox/netbox/tables/columns.py:189 +#: netbox/tables/columns.py:189 msgid "Toggle all" msgstr "Přepnout vše" -#: netbox/netbox/tables/columns.py:300 +#: netbox/tables/columns.py:300 msgid "Toggle Dropdown" msgstr "Přepnout rozevírací nabídku" -#: netbox/netbox/tables/columns.py:572 netbox/templates/core/job.html:53 +#: netbox/tables/columns.py:572 templates/core/job.html:53 msgid "Error" msgstr "Chyba" -#: netbox/netbox/tables/tables.py:58 +#: netbox/tables/tables.py:58 #, python-brace-format msgid "No {model_name} found" msgstr "{model_name} nenalezeno" -#: netbox/netbox/tables/tables.py:249 -#: netbox/templates/generic/bulk_import.html:117 +#: netbox/tables/tables.py:249 templates/generic/bulk_import.html:117 msgid "Field" msgstr "Pole" -#: netbox/netbox/tables/tables.py:252 +#: netbox/tables/tables.py:252 msgid "Value" msgstr "Hodnota" -#: netbox/netbox/tests/dummy_plugin/navigation.py:29 +#: netbox/tests/dummy_plugin/navigation.py:29 msgid "Dummy Plugin" msgstr "Dummy Plugin" -#: netbox/netbox/views/generic/bulk_views.py:114 +#: netbox/views/generic/bulk_views.py:114 #, python-brace-format msgid "" "There was an error rendering the selected export template ({template}): " @@ -11363,56 +10732,56 @@ msgid "" msgstr "" "Při vykreslování vybrané šablony exportu došlo k chybě ({template}): {error}" -#: netbox/netbox/views/generic/bulk_views.py:416 +#: netbox/views/generic/bulk_views.py:416 #, python-brace-format msgid "Row {i}: Object with ID {id} does not exist" msgstr "Řádek {i}: Objekt s ID {id} neexistuje" -#: netbox/netbox/views/generic/bulk_views.py:699 -#: netbox/netbox/views/generic/bulk_views.py:897 -#: netbox/netbox/views/generic/bulk_views.py:945 +#: netbox/views/generic/bulk_views.py:702 +#: netbox/views/generic/bulk_views.py:900 +#: netbox/views/generic/bulk_views.py:948 #, python-brace-format msgid "No {object_type} were selected." msgstr "Ne {object_type} Byly vybrány." -#: netbox/netbox/views/generic/bulk_views.py:779 +#: netbox/views/generic/bulk_views.py:782 #, python-brace-format msgid "Renamed {count} {object_type}" msgstr "Přejmenováno {count} {object_type}" -#: netbox/netbox/views/generic/bulk_views.py:875 +#: netbox/views/generic/bulk_views.py:878 #, python-brace-format msgid "Deleted {count} {object_type}" msgstr "Vymazáno {count} {object_type}" -#: netbox/netbox/views/generic/feature_views.py:40 +#: netbox/views/generic/feature_views.py:40 msgid "Changelog" msgstr "Seznam změn" -#: netbox/netbox/views/generic/feature_views.py:93 +#: netbox/views/generic/feature_views.py:93 msgid "Journal" msgstr "věstníku" -#: netbox/netbox/views/generic/feature_views.py:207 +#: netbox/views/generic/feature_views.py:207 msgid "Unable to synchronize data: No data file set." msgstr "Nelze synchronizovat data: Žádný datový soubor není nastaven." -#: netbox/netbox/views/generic/feature_views.py:211 +#: netbox/views/generic/feature_views.py:211 #, python-brace-format msgid "Synchronized data for {object_type} {object}." msgstr "Synchronizovaná data pro {object_type} {object}." -#: netbox/netbox/views/generic/feature_views.py:236 +#: netbox/views/generic/feature_views.py:236 #, python-brace-format msgid "Synced {count} {object_type}" msgstr "Synchronizováno {count} {object_type}" -#: netbox/netbox/views/generic/object_views.py:108 +#: netbox/views/generic/object_views.py:108 #, python-brace-format msgid "{class_name} must implement get_children()" msgstr "{class_name} musí implementovat get_children ()" -#: netbox/netbox/views/misc.py:44 +#: netbox/views/misc.py:44 msgid "" "There was an error loading the dashboard configuration. A default dashboard " "is in use." @@ -11420,747 +10789,702 @@ msgstr "" "Při načítání konfigurace řídicího panelu došlo k chybě. Používá se výchozí " "řídicí panel." -#: netbox/templates/403.html:4 +#: templates/403.html:4 msgid "Access Denied" msgstr "Přístup odepřen" -#: netbox/templates/403.html:9 +#: templates/403.html:9 msgid "You do not have permission to access this page" msgstr "Nemáte oprávnění k přístupu na tuto stránku" -#: netbox/templates/404.html:4 +#: templates/404.html:4 msgid "Page Not Found" msgstr "Stránka nenalezena" -#: netbox/templates/404.html:9 +#: templates/404.html:9 msgid "The requested page does not exist" msgstr "Požadovaná stránka neexistuje" -#: netbox/templates/500.html:7 netbox/templates/500.html:18 +#: templates/500.html:7 templates/500.html:18 msgid "Server Error" msgstr "Chyba serveru" -#: netbox/templates/500.html:23 +#: templates/500.html:23 msgid "There was a problem with your request. Please contact an administrator" msgstr "Došlo k problému s vaší žádostí. Obraťte se prosím na administrátora" -#: netbox/templates/500.html:28 +#: templates/500.html:28 msgid "The complete exception is provided below" msgstr "Úplná výjimka je uvedena níže" -#: netbox/templates/500.html:33 netbox/templates/core/system.html:40 +#: templates/500.html:33 templates/core/system.html:40 msgid "Python version" msgstr "Verze Python" -#: netbox/templates/500.html:34 +#: templates/500.html:34 msgid "NetBox version" msgstr "Verze NetBox" -#: netbox/templates/500.html:36 +#: templates/500.html:36 msgid "None installed" msgstr "Není nainstalován" -#: netbox/templates/500.html:39 +#: templates/500.html:39 msgid "If further assistance is required, please post to the" msgstr "Pokud je vyžadována další pomoc, pošlete prosím příspěvek na" -#: netbox/templates/500.html:39 +#: templates/500.html:39 msgid "NetBox discussion forum" msgstr "NetBox diskusní fórum" -#: netbox/templates/500.html:39 +#: templates/500.html:39 msgid "on GitHub" msgstr "na GitHubu" -#: netbox/templates/500.html:42 netbox/templates/base/40x.html:17 +#: templates/500.html:42 templates/base/40x.html:17 msgid "Home Page" msgstr "Domovská stránka" -#: netbox/templates/account/base.html:7 netbox/templates/inc/user_menu.html:45 -#: netbox/vpn/forms/bulk_edit.py:255 netbox/vpn/forms/filtersets.py:189 -#: netbox/vpn/forms/model_forms.py:379 +#: templates/account/base.html:7 templates/inc/user_menu.html:45 +#: vpn/forms/bulk_edit.py:255 vpn/forms/filtersets.py:189 +#: vpn/forms/model_forms.py:379 msgid "Profile" msgstr "Profil" -#: netbox/templates/account/base.html:13 -#: netbox/templates/account/notifications.html:7 -#: netbox/templates/inc/user_menu.html:15 +#: templates/account/base.html:13 templates/account/notifications.html:7 +#: templates/inc/user_menu.html:15 msgid "Notifications" msgstr "Oznámení" -#: netbox/templates/account/base.html:16 -#: netbox/templates/account/subscriptions.html:7 -#: netbox/templates/inc/user_menu.html:51 +#: templates/account/base.html:16 templates/account/subscriptions.html:7 +#: templates/inc/user_menu.html:51 msgid "Subscriptions" msgstr "Předplatné" -#: netbox/templates/account/base.html:19 -#: netbox/templates/inc/user_menu.html:54 +#: templates/account/base.html:19 templates/inc/user_menu.html:54 msgid "Preferences" msgstr "Předvolby" -#: netbox/templates/account/password.html:5 +#: templates/account/password.html:5 msgid "Change Password" msgstr "Změnit heslo" -#: netbox/templates/account/password.html:19 -#: netbox/templates/account/preferences.html:77 -#: netbox/templates/core/configrevision_restore.html:63 -#: netbox/templates/dcim/devicebay_populate.html:34 -#: netbox/templates/dcim/virtualchassis_add_member.html:26 -#: netbox/templates/dcim/virtualchassis_edit.html:103 -#: netbox/templates/extras/object_journal.html:26 -#: netbox/templates/extras/script.html:38 -#: netbox/templates/generic/bulk_add_component.html:67 -#: netbox/templates/generic/bulk_delete.html:65 -#: netbox/templates/generic/bulk_edit.html:106 -#: netbox/templates/generic/bulk_import.html:56 -#: netbox/templates/generic/bulk_import.html:78 -#: netbox/templates/generic/bulk_import.html:100 -#: netbox/templates/generic/bulk_remove.html:62 -#: netbox/templates/generic/bulk_rename.html:63 -#: netbox/templates/generic/confirmation_form.html:19 -#: netbox/templates/generic/object_edit.html:72 -#: netbox/templates/htmx/delete_form.html:53 -#: netbox/templates/htmx/delete_form.html:55 -#: netbox/templates/ipam/ipaddress_assign.html:28 -#: netbox/templates/virtualization/cluster_add_devices.html:30 +#: templates/account/password.html:19 templates/account/preferences.html:77 +#: templates/core/configrevision_restore.html:63 +#: templates/dcim/devicebay_populate.html:34 +#: templates/dcim/virtualchassis_add_member.html:26 +#: templates/dcim/virtualchassis_edit.html:103 +#: templates/extras/object_journal.html:26 templates/extras/script.html:38 +#: templates/generic/bulk_add_component.html:67 +#: templates/generic/bulk_delete.html:65 templates/generic/bulk_edit.html:106 +#: templates/generic/bulk_import.html:56 templates/generic/bulk_import.html:78 +#: templates/generic/bulk_import.html:100 +#: templates/generic/bulk_remove.html:62 templates/generic/bulk_rename.html:63 +#: templates/generic/confirmation_form.html:19 +#: templates/generic/object_edit.html:72 templates/htmx/delete_form.html:53 +#: templates/htmx/delete_form.html:55 templates/ipam/ipaddress_assign.html:28 +#: templates/virtualization/cluster_add_devices.html:30 msgid "Cancel" msgstr "Zrušit" -#: netbox/templates/account/password.html:20 -#: netbox/templates/account/preferences.html:78 -#: netbox/templates/dcim/devicebay_populate.html:35 -#: netbox/templates/dcim/virtualchassis_add_member.html:28 -#: netbox/templates/dcim/virtualchassis_edit.html:105 -#: netbox/templates/extras/dashboard/widget_add.html:26 -#: netbox/templates/extras/dashboard/widget_config.html:19 -#: netbox/templates/extras/object_journal.html:27 -#: netbox/templates/generic/object_edit.html:75 -#: netbox/utilities/templates/helpers/applied_filters.html:16 -#: netbox/utilities/templates/helpers/table_config_form.html:40 +#: templates/account/password.html:20 templates/account/preferences.html:78 +#: templates/dcim/devicebay_populate.html:35 +#: templates/dcim/virtualchassis_add_member.html:28 +#: templates/dcim/virtualchassis_edit.html:105 +#: templates/extras/dashboard/widget_add.html:26 +#: templates/extras/dashboard/widget_config.html:19 +#: templates/extras/object_journal.html:27 +#: templates/generic/object_edit.html:75 +#: utilities/templates/helpers/applied_filters.html:16 +#: utilities/templates/helpers/table_config_form.html:40 msgid "Save" msgstr "Uložit" -#: netbox/templates/account/preferences.html:34 +#: templates/account/preferences.html:34 msgid "Table Configurations" msgstr "Konfigurace tabulky" -#: netbox/templates/account/preferences.html:39 +#: templates/account/preferences.html:39 msgid "Clear table preferences" msgstr "Vymazat předvolby tabulky" -#: netbox/templates/account/preferences.html:47 +#: templates/account/preferences.html:47 msgid "Toggle All" msgstr "Přepnout vše" -#: netbox/templates/account/preferences.html:49 +#: templates/account/preferences.html:49 msgid "Table" msgstr "tabulka" -#: netbox/templates/account/preferences.html:50 +#: templates/account/preferences.html:50 msgid "Ordering" msgstr "Objednávání" -#: netbox/templates/account/preferences.html:51 +#: templates/account/preferences.html:51 msgid "Columns" msgstr "Sloupce" -#: netbox/templates/account/preferences.html:71 -#: netbox/templates/dcim/cable_trace.html:113 -#: netbox/templates/extras/object_configcontext.html:43 +#: templates/account/preferences.html:71 templates/dcim/cable_trace.html:113 +#: templates/extras/object_configcontext.html:43 msgid "None found" msgstr "Žádný nenalezen" -#: netbox/templates/account/profile.html:6 +#: templates/account/profile.html:6 msgid "User Profile" msgstr "Profil uživatele" -#: netbox/templates/account/profile.html:12 +#: templates/account/profile.html:12 msgid "Account Details" msgstr "Podrobnosti o účtu" -#: netbox/templates/account/profile.html:29 -#: netbox/templates/tenancy/contact.html:43 -#: netbox/templates/users/user.html:25 netbox/tenancy/forms/bulk_edit.py:109 +#: templates/account/profile.html:29 templates/tenancy/contact.html:43 +#: templates/users/user.html:25 tenancy/forms/bulk_edit.py:109 msgid "Email" msgstr "E-mailem" -#: netbox/templates/account/profile.html:33 -#: netbox/templates/users/user.html:29 +#: templates/account/profile.html:33 templates/users/user.html:29 msgid "Account Created" msgstr "Účet vytvořený" -#: netbox/templates/account/profile.html:37 -#: netbox/templates/users/user.html:33 +#: templates/account/profile.html:37 templates/users/user.html:33 msgid "Last Login" msgstr "Poslední přihlášení" -#: netbox/templates/account/profile.html:41 -#: netbox/templates/users/user.html:45 +#: templates/account/profile.html:41 templates/users/user.html:45 msgid "Superuser" msgstr "Superuživatel" -#: netbox/templates/account/profile.html:45 -#: netbox/templates/inc/user_menu.html:31 netbox/templates/users/user.html:41 +#: templates/account/profile.html:45 templates/inc/user_menu.html:31 +#: templates/users/user.html:41 msgid "Staff" msgstr "Zaměstnanci" -#: netbox/templates/account/profile.html:53 -#: netbox/templates/users/objectpermission.html:82 -#: netbox/templates/users/user.html:53 +#: templates/account/profile.html:53 templates/users/objectpermission.html:82 +#: templates/users/user.html:53 msgid "Assigned Groups" msgstr "Přiřazené skupiny" -#: netbox/templates/account/profile.html:58 -#: netbox/templates/circuits/circuit_terminations_swap.html:18 -#: netbox/templates/circuits/circuit_terminations_swap.html:26 -#: netbox/templates/circuits/circuittermination.html:34 -#: netbox/templates/circuits/inc/circuit_termination.html:68 -#: netbox/templates/core/objectchange.html:124 -#: netbox/templates/core/objectchange.html:142 -#: netbox/templates/dcim/devicebay.html:59 -#: netbox/templates/dcim/inc/panels/inventory_items.html:45 -#: netbox/templates/dcim/interface.html:296 -#: netbox/templates/dcim/modulebay.html:80 -#: netbox/templates/extras/configcontext.html:70 -#: netbox/templates/extras/eventrule.html:66 -#: netbox/templates/extras/htmx/script_result.html:60 -#: netbox/templates/extras/webhook.html:65 -#: netbox/templates/extras/webhook.html:75 -#: netbox/templates/inc/panel_table.html:13 -#: netbox/templates/inc/panels/comments.html:10 -#: netbox/templates/ipam/inc/panels/fhrp_groups.html:56 -#: netbox/templates/users/group.html:34 netbox/templates/users/group.html:44 -#: netbox/templates/users/objectpermission.html:77 -#: netbox/templates/users/objectpermission.html:87 -#: netbox/templates/users/user.html:58 netbox/templates/users/user.html:68 +#: templates/account/profile.html:58 +#: templates/circuits/circuit_terminations_swap.html:18 +#: templates/circuits/circuit_terminations_swap.html:26 +#: templates/circuits/circuittermination.html:34 +#: templates/circuits/inc/circuit_termination.html:68 +#: templates/core/objectchange.html:124 templates/core/objectchange.html:142 +#: templates/dcim/devicebay.html:59 +#: templates/dcim/inc/panels/inventory_items.html:45 +#: templates/dcim/interface.html:296 templates/dcim/modulebay.html:80 +#: templates/extras/configcontext.html:70 templates/extras/eventrule.html:66 +#: templates/extras/htmx/script_result.html:60 +#: templates/extras/webhook.html:65 templates/extras/webhook.html:75 +#: templates/inc/panel_table.html:13 templates/inc/panels/comments.html:10 +#: templates/ipam/inc/panels/fhrp_groups.html:56 templates/users/group.html:34 +#: templates/users/group.html:44 templates/users/objectpermission.html:77 +#: templates/users/objectpermission.html:87 templates/users/user.html:58 +#: templates/users/user.html:68 msgid "None" msgstr "Žádný" -#: netbox/templates/account/profile.html:68 -#: netbox/templates/users/user.html:78 +#: templates/account/profile.html:68 templates/users/user.html:78 msgid "Recent Activity" msgstr "Nedávná aktivita" -#: netbox/templates/account/token.html:8 -#: netbox/templates/account/token_list.html:6 +#: templates/account/token.html:8 templates/account/token_list.html:6 msgid "My API Tokens" msgstr "Moje tokeny API" -#: netbox/templates/account/token.html:11 -#: netbox/templates/account/token.html:19 netbox/templates/users/token.html:6 -#: netbox/templates/users/token.html:14 netbox/users/forms/filtersets.py:120 +#: templates/account/token.html:11 templates/account/token.html:19 +#: templates/users/token.html:6 templates/users/token.html:14 +#: users/forms/filtersets.py:120 msgid "Token" msgstr "Žeton" -#: netbox/templates/account/token.html:39 netbox/templates/users/token.html:31 -#: netbox/users/forms/bulk_edit.py:107 +#: templates/account/token.html:39 templates/users/token.html:31 +#: users/forms/bulk_edit.py:107 msgid "Write enabled" msgstr "Zapisování povoleno" -#: netbox/templates/account/token.html:51 netbox/templates/users/token.html:43 +#: templates/account/token.html:51 templates/users/token.html:43 msgid "Last used" msgstr "Naposledy použitý" -#: netbox/templates/account/token_list.html:12 +#: templates/account/token_list.html:12 msgid "Add a Token" msgstr "Přidání žetonu" -#: netbox/templates/base/base.html:22 netbox/templates/home.html:27 +#: templates/base/base.html:22 templates/home.html:27 msgid "Home" msgstr "Domov" -#: netbox/templates/base/layout.html:25 +#: templates/base/layout.html:25 msgid "NetBox Motif" msgstr "NetBox motiv" -#: netbox/templates/base/layout.html:38 netbox/templates/base/layout.html:39 -#: netbox/templates/login.html:14 netbox/templates/login.html:15 +#: templates/base/layout.html:38 templates/base/layout.html:39 +#: templates/login.html:14 templates/login.html:15 msgid "NetBox Logo" msgstr "NetBox Logo" -#: netbox/templates/base/layout.html:150 netbox/templates/base/layout.html:151 +#: templates/base/layout.html:150 templates/base/layout.html:151 msgid "Docs" msgstr "Dokumentace" -#: netbox/templates/base/layout.html:156 netbox/templates/base/layout.html:157 -#: netbox/templates/rest_framework/api.html:10 +#: templates/base/layout.html:156 templates/base/layout.html:157 +#: templates/rest_framework/api.html:10 msgid "REST API" msgstr "REST API" -#: netbox/templates/base/layout.html:162 netbox/templates/base/layout.html:163 +#: templates/base/layout.html:162 templates/base/layout.html:163 msgid "REST API documentation" msgstr "Dokumentace REST API" -#: netbox/templates/base/layout.html:169 netbox/templates/base/layout.html:170 +#: templates/base/layout.html:169 templates/base/layout.html:170 msgid "GraphQL API" msgstr "GraphQL API" -#: netbox/templates/base/layout.html:185 netbox/templates/base/layout.html:186 +#: templates/base/layout.html:185 templates/base/layout.html:186 msgid "NetBox Labs Support" msgstr "Podpora NetBox Labs" -#: netbox/templates/base/layout.html:194 netbox/templates/base/layout.html:195 +#: templates/base/layout.html:194 templates/base/layout.html:195 msgid "Source Code" msgstr "Zdrojový kód" -#: netbox/templates/base/layout.html:200 netbox/templates/base/layout.html:201 +#: templates/base/layout.html:200 templates/base/layout.html:201 msgid "Community" msgstr "Komunita" -#: netbox/templates/circuits/circuit.html:47 +#: templates/circuits/circuit.html:47 msgid "Install Date" msgstr "Datum instalace" -#: netbox/templates/circuits/circuit.html:51 +#: templates/circuits/circuit.html:51 msgid "Termination Date" msgstr "Datum ukončení" -#: netbox/templates/circuits/circuit.html:70 -#: netbox/templates/ipam/inc/panels/fhrp_groups.html:15 +#: templates/circuits/circuit.html:70 +#: templates/ipam/inc/panels/fhrp_groups.html:15 msgid "Assign Group" msgstr "Přiřadit skupinu" -#: netbox/templates/circuits/circuit_terminations_swap.html:4 +#: templates/circuits/circuit_terminations_swap.html:4 msgid "Swap Circuit Terminations" msgstr "Ukončení výměnných obvodů" -#: netbox/templates/circuits/circuit_terminations_swap.html:8 +#: templates/circuits/circuit_terminations_swap.html:8 #, python-format msgid "Swap these terminations for circuit %(circuit)s?" msgstr "Vyměňte tato zakončení za obvod %(circuit)s?" -#: netbox/templates/circuits/circuit_terminations_swap.html:14 +#: templates/circuits/circuit_terminations_swap.html:14 msgid "A side" msgstr "Strana" -#: netbox/templates/circuits/circuit_terminations_swap.html:22 +#: templates/circuits/circuit_terminations_swap.html:22 msgid "Z side" msgstr "Strana Z" -#: netbox/templates/circuits/circuitgroup.html:16 +#: templates/circuits/circuitgroup.html:16 msgid "Assign Circuit" msgstr "Přiřadit obvod" -#: netbox/templates/circuits/circuitgroupassignment.html:19 +#: templates/circuits/circuitgroupassignment.html:19 msgid "Circuit Group Assignment" msgstr "Přiřazení skupiny obvodů" -#: netbox/templates/circuits/circuittype.html:10 +#: templates/circuits/circuittype.html:10 msgid "Add Circuit" msgstr "Přidat obvod" -#: netbox/templates/circuits/circuittype.html:19 +#: templates/circuits/circuittype.html:19 msgid "Circuit Type" msgstr "Typ obvodu" -#: netbox/templates/circuits/inc/circuit_termination.html:10 -#: netbox/templates/dcim/devicetype/component_templates.html:33 -#: netbox/templates/dcim/manufacturer.html:11 -#: netbox/templates/dcim/moduletype/component_templates.html:29 -#: netbox/templates/generic/bulk_add_component.html:22 -#: netbox/templates/users/objectpermission.html:38 -#: netbox/utilities/templates/buttons/add.html:4 -#: netbox/utilities/templates/helpers/table_config_form.html:20 +#: templates/circuits/inc/circuit_termination.html:10 +#: templates/dcim/manufacturer.html:11 +#: templates/generic/bulk_add_component.html:22 +#: templates/users/objectpermission.html:38 +#: utilities/templates/buttons/add.html:4 +#: utilities/templates/helpers/table_config_form.html:20 msgid "Add" msgstr "Přidat" -#: netbox/templates/circuits/inc/circuit_termination.html:15 -#: netbox/templates/circuits/inc/circuit_termination_fields.html:36 -#: netbox/templates/dcim/inc/panels/inventory_items.html:32 -#: netbox/templates/dcim/moduletype/component_templates.html:20 -#: netbox/templates/dcim/powerpanel.html:56 -#: netbox/templates/extras/script_list.html:30 -#: netbox/templates/generic/object_edit.html:47 -#: netbox/templates/ipam/inc/ipaddress_edit_header.html:7 -#: netbox/templates/ipam/inc/panels/fhrp_groups.html:43 -#: netbox/utilities/templates/buttons/edit.html:3 +#: templates/circuits/inc/circuit_termination.html:15 +#: templates/circuits/inc/circuit_termination_fields.html:36 +#: templates/dcim/inc/panels/inventory_items.html:32 +#: templates/dcim/powerpanel.html:56 templates/extras/script_list.html:30 +#: templates/generic/object_edit.html:47 +#: templates/ipam/inc/ipaddress_edit_header.html:7 +#: templates/ipam/inc/panels/fhrp_groups.html:43 +#: utilities/templates/buttons/edit.html:3 msgid "Edit" msgstr "Upravit" -#: netbox/templates/circuits/inc/circuit_termination.html:18 +#: templates/circuits/inc/circuit_termination.html:18 msgid "Swap" msgstr "Výměna" -#: netbox/templates/circuits/inc/circuit_termination_fields.html:19 -#: netbox/templates/dcim/consoleport.html:59 -#: netbox/templates/dcim/consoleserverport.html:60 -#: netbox/templates/dcim/powerfeed.html:114 +#: templates/circuits/inc/circuit_termination_fields.html:19 +#: templates/dcim/consoleport.html:59 templates/dcim/consoleserverport.html:60 +#: templates/dcim/powerfeed.html:114 msgid "Marked as connected" msgstr "Označeno jako připojeno" -#: netbox/templates/circuits/inc/circuit_termination_fields.html:21 +#: templates/circuits/inc/circuit_termination_fields.html:21 msgid "to" msgstr "do" -#: netbox/templates/circuits/inc/circuit_termination_fields.html:31 -#: netbox/templates/circuits/inc/circuit_termination_fields.html:32 -#: netbox/templates/dcim/frontport.html:80 -#: netbox/templates/dcim/inc/connection_endpoints.html:7 -#: netbox/templates/dcim/interface.html:154 -#: netbox/templates/dcim/rearport.html:76 +#: templates/circuits/inc/circuit_termination_fields.html:31 +#: templates/circuits/inc/circuit_termination_fields.html:32 +#: templates/dcim/frontport.html:80 +#: templates/dcim/inc/connection_endpoints.html:7 +#: templates/dcim/interface.html:154 templates/dcim/rearport.html:76 msgid "Trace" msgstr "Stopa" -#: netbox/templates/circuits/inc/circuit_termination_fields.html:35 +#: templates/circuits/inc/circuit_termination_fields.html:35 msgid "Edit cable" msgstr "Upravit kabel" -#: netbox/templates/circuits/inc/circuit_termination_fields.html:40 +#: templates/circuits/inc/circuit_termination_fields.html:40 msgid "Remove cable" msgstr "Odstraňte kabel" -#: netbox/templates/circuits/inc/circuit_termination_fields.html:41 -#: netbox/templates/dcim/bulk_disconnect.html:5 -#: netbox/templates/dcim/device/consoleports.html:12 -#: netbox/templates/dcim/device/consoleserverports.html:12 -#: netbox/templates/dcim/device/frontports.html:12 -#: netbox/templates/dcim/device/interfaces.html:16 -#: netbox/templates/dcim/device/poweroutlets.html:12 -#: netbox/templates/dcim/device/powerports.html:12 -#: netbox/templates/dcim/device/rearports.html:12 -#: netbox/templates/dcim/powerpanel.html:61 +#: templates/circuits/inc/circuit_termination_fields.html:41 +#: templates/dcim/bulk_disconnect.html:5 +#: templates/dcim/device/consoleports.html:12 +#: templates/dcim/device/consoleserverports.html:12 +#: templates/dcim/device/frontports.html:12 +#: templates/dcim/device/interfaces.html:16 +#: templates/dcim/device/poweroutlets.html:12 +#: templates/dcim/device/powerports.html:12 +#: templates/dcim/device/rearports.html:12 templates/dcim/powerpanel.html:61 msgid "Disconnect" msgstr "Odpojit" -#: netbox/templates/circuits/inc/circuit_termination_fields.html:48 -#: netbox/templates/dcim/consoleport.html:69 -#: netbox/templates/dcim/consoleserverport.html:70 -#: netbox/templates/dcim/frontport.html:102 -#: netbox/templates/dcim/interface.html:180 -#: netbox/templates/dcim/interface.html:200 -#: netbox/templates/dcim/powerfeed.html:127 -#: netbox/templates/dcim/poweroutlet.html:71 -#: netbox/templates/dcim/poweroutlet.html:72 -#: netbox/templates/dcim/powerport.html:73 -#: netbox/templates/dcim/rearport.html:98 +#: templates/circuits/inc/circuit_termination_fields.html:48 +#: templates/dcim/consoleport.html:69 templates/dcim/consoleserverport.html:70 +#: templates/dcim/frontport.html:102 templates/dcim/interface.html:180 +#: templates/dcim/interface.html:200 templates/dcim/powerfeed.html:127 +#: templates/dcim/poweroutlet.html:71 templates/dcim/poweroutlet.html:72 +#: templates/dcim/powerport.html:73 templates/dcim/rearport.html:98 msgid "Connect" msgstr "Připojit" -#: netbox/templates/circuits/inc/circuit_termination_fields.html:70 +#: templates/circuits/inc/circuit_termination_fields.html:70 msgid "Downstream" msgstr "Po proudu" -#: netbox/templates/circuits/inc/circuit_termination_fields.html:71 +#: templates/circuits/inc/circuit_termination_fields.html:71 msgid "Upstream" msgstr "Nad proudem" -#: netbox/templates/circuits/inc/circuit_termination_fields.html:80 +#: templates/circuits/inc/circuit_termination_fields.html:80 msgid "Cross-Connect" msgstr "Křížové připojení" -#: netbox/templates/circuits/inc/circuit_termination_fields.html:84 +#: templates/circuits/inc/circuit_termination_fields.html:84 msgid "Patch Panel/Port" msgstr "Patch panel/port" -#: netbox/templates/circuits/provider.html:11 +#: templates/circuits/provider.html:11 msgid "Add circuit" msgstr "Přidat obvod" -#: netbox/templates/circuits/provideraccount.html:17 +#: templates/circuits/provideraccount.html:17 msgid "Provider Account" msgstr "Účet poskytovatele" -#: netbox/templates/core/configrevision.html:35 +#: templates/core/configrevision.html:35 msgid "Configuration Data" msgstr "Konfigurační data" -#: netbox/templates/core/configrevision.html:40 +#: templates/core/configrevision.html:40 msgid "Comment" msgstr "Komentář" -#: netbox/templates/core/configrevision_restore.html:8 -#: netbox/templates/core/configrevision_restore.html:25 -#: netbox/templates/core/configrevision_restore.html:64 +#: templates/core/configrevision_restore.html:8 +#: templates/core/configrevision_restore.html:25 +#: templates/core/configrevision_restore.html:64 msgid "Restore" msgstr "Obnovit" -#: netbox/templates/core/configrevision_restore.html:36 +#: templates/core/configrevision_restore.html:36 msgid "Parameter" msgstr "Parametr" -#: netbox/templates/core/configrevision_restore.html:37 +#: templates/core/configrevision_restore.html:37 msgid "Current Value" msgstr "Aktuální hodnota" -#: netbox/templates/core/configrevision_restore.html:38 +#: templates/core/configrevision_restore.html:38 msgid "New Value" msgstr "Nová hodnota" -#: netbox/templates/core/configrevision_restore.html:50 +#: templates/core/configrevision_restore.html:50 msgid "Changed" msgstr "Změněno" -#: netbox/templates/core/datafile.html:42 -#: netbox/templates/ipam/iprange.html:25 -#: netbox/templates/virtualization/virtualdisk.html:29 -#: netbox/virtualization/tables/virtualmachines.py:198 +#: templates/core/datafile.html:42 templates/ipam/iprange.html:25 +#: templates/virtualization/virtualdisk.html:29 +#: virtualization/tables/virtualmachines.py:198 msgid "Size" msgstr "Velikost" -#: netbox/templates/core/datafile.html:43 +#: templates/core/datafile.html:43 msgid "bytes" msgstr "bajtů" -#: netbox/templates/core/datafile.html:46 +#: templates/core/datafile.html:46 msgid "SHA256 Hash" msgstr "SHA256 hash" -#: netbox/templates/core/datasource.html:14 -#: netbox/templates/core/datasource.html:20 -#: netbox/utilities/templates/buttons/sync.html:5 +#: templates/core/datasource.html:14 templates/core/datasource.html:20 +#: utilities/templates/buttons/sync.html:5 msgid "Sync" msgstr "Synchronizovat" -#: netbox/templates/core/datasource.html:50 +#: templates/core/datasource.html:50 msgid "Last synced" msgstr "Naposledy synchronizováno" -#: netbox/templates/core/datasource.html:84 +#: templates/core/datasource.html:84 msgid "Backend" msgstr "Backend" -#: netbox/templates/core/datasource.html:99 +#: templates/core/datasource.html:99 msgid "No parameters defined" msgstr "Nebyly definovány žádné parametry" -#: netbox/templates/core/datasource.html:114 +#: templates/core/datasource.html:114 msgid "Files" msgstr "Soubory" -#: netbox/templates/core/inc/config_data.html:7 +#: templates/core/inc/config_data.html:7 msgid "Rack elevations" msgstr "Výšky stojanů" -#: netbox/templates/core/inc/config_data.html:10 +#: templates/core/inc/config_data.html:10 msgid "Default unit height" msgstr "Výchozí výška jednotky" -#: netbox/templates/core/inc/config_data.html:14 +#: templates/core/inc/config_data.html:14 msgid "Default unit width" msgstr "Výchozí šířka jednotky" -#: netbox/templates/core/inc/config_data.html:20 +#: templates/core/inc/config_data.html:20 msgid "Power feeds" msgstr "Napájecí zdroje" -#: netbox/templates/core/inc/config_data.html:23 +#: templates/core/inc/config_data.html:23 msgid "Default voltage" msgstr "Výchozí napětí" -#: netbox/templates/core/inc/config_data.html:27 +#: templates/core/inc/config_data.html:27 msgid "Default amperage" msgstr "Výchozí proud" -#: netbox/templates/core/inc/config_data.html:31 +#: templates/core/inc/config_data.html:31 msgid "Default max utilization" msgstr "Výchozí maximální využití" -#: netbox/templates/core/inc/config_data.html:40 +#: templates/core/inc/config_data.html:40 msgid "Enforce global unique" msgstr "Vynutit globální jedinečnost" -#: netbox/templates/core/inc/config_data.html:83 +#: templates/core/inc/config_data.html:83 msgid "Paginate count" msgstr "Počet stránek" -#: netbox/templates/core/inc/config_data.html:87 +#: templates/core/inc/config_data.html:87 msgid "Max page size" msgstr "Maximální velikost stránky" -#: netbox/templates/core/inc/config_data.html:114 +#: templates/core/inc/config_data.html:114 msgid "User preferences" msgstr "Uživatelské preference" -#: netbox/templates/core/inc/config_data.html:141 +#: templates/core/inc/config_data.html:141 msgid "Job retention" msgstr "Zachování pracovních míst" -#: netbox/templates/core/job.html:35 netbox/templates/core/rq_task.html:12 -#: netbox/templates/core/rq_task.html:49 netbox/templates/core/rq_task.html:58 +#: templates/core/job.html:35 templates/core/rq_task.html:12 +#: templates/core/rq_task.html:49 templates/core/rq_task.html:58 msgid "Job" msgstr "Práce" -#: netbox/templates/core/job.html:58 -#: netbox/templates/extras/journalentry.html:26 +#: templates/core/job.html:58 templates/extras/journalentry.html:26 msgid "Created By" msgstr "Vytvořil" -#: netbox/templates/core/job.html:66 +#: templates/core/job.html:66 msgid "Scheduling" msgstr "Plánování" -#: netbox/templates/core/job.html:77 +#: templates/core/job.html:77 #, python-format msgid "every %(interval)s minutes" msgstr "každá %(interval)s minut" -#: netbox/templates/core/objectchange.html:29 -#: netbox/templates/users/objectpermission.html:42 +#: templates/core/objectchange.html:29 +#: templates/users/objectpermission.html:42 msgid "Change" msgstr "Změna" -#: netbox/templates/core/objectchange.html:79 +#: templates/core/objectchange.html:79 msgid "Difference" msgstr "Rozdíl" -#: netbox/templates/core/objectchange.html:82 +#: templates/core/objectchange.html:82 msgid "Previous" msgstr "Předchozí" -#: netbox/templates/core/objectchange.html:85 +#: templates/core/objectchange.html:85 msgid "Next" msgstr "Další" -#: netbox/templates/core/objectchange.html:93 +#: templates/core/objectchange.html:93 msgid "Object Created" msgstr "Vytvořený objekt" -#: netbox/templates/core/objectchange.html:95 +#: templates/core/objectchange.html:95 msgid "Object Deleted" msgstr "Objekt odstraněn" -#: netbox/templates/core/objectchange.html:97 +#: templates/core/objectchange.html:97 msgid "No Changes" msgstr "Žádné změny" -#: netbox/templates/core/objectchange.html:111 +#: templates/core/objectchange.html:111 msgid "Pre-Change Data" msgstr "Data před změnou" -#: netbox/templates/core/objectchange.html:122 +#: templates/core/objectchange.html:122 msgid "Warning: Comparing non-atomic change to previous change record" msgstr "Upozornění: Porovnání neatomové změny s předchozím záznamem změny" -#: netbox/templates/core/objectchange.html:131 +#: templates/core/objectchange.html:131 msgid "Post-Change Data" msgstr "Údaje po změně" -#: netbox/templates/core/objectchange.html:162 +#: templates/core/objectchange.html:162 #, python-format msgid "See All %(count)s Changes" msgstr "Zobrazit vše %(count)s Mění" -#: netbox/templates/core/objectchange_list.html:9 -#: netbox/templates/extras/object_changelog.html:15 +#: templates/core/objectchange_list.html:9 +#: templates/extras/object_changelog.html:15 msgid "Change log retention" msgstr "Změnit uchovávání protokolu" -#: netbox/templates/core/objectchange_list.html:9 -#: netbox/templates/extras/object_changelog.html:15 +#: templates/core/objectchange_list.html:9 +#: templates/extras/object_changelog.html:15 msgid "days" msgstr "dní" -#: netbox/templates/core/objectchange_list.html:9 -#: netbox/templates/extras/object_changelog.html:15 +#: templates/core/objectchange_list.html:9 +#: templates/extras/object_changelog.html:15 msgid "Indefinite" msgstr "Neurčitý" -#: netbox/templates/core/plugin.html:21 +#: templates/core/plugin.html:22 msgid "Not installed" msgstr "Není nainstalován" -#: netbox/templates/core/plugin.html:32 +#: templates/core/plugin.html:33 msgid "Overview" msgstr "Přehled" -#: netbox/templates/core/plugin.html:38 +#: templates/core/plugin.html:39 msgid "Install" msgstr "Nainstalovat" -#: netbox/templates/core/plugin.html:50 +#: templates/core/plugin.html:51 msgid "Plugin Details" msgstr "Podrobnosti o pluginu" -#: netbox/templates/core/plugin.html:57 +#: templates/core/plugin.html:58 msgid "Summary" msgstr "Souhrn" -#: netbox/templates/core/plugin.html:75 +#: templates/core/plugin.html:76 msgid "License" msgstr "Licence" -#: netbox/templates/core/plugin.html:95 +#: templates/core/plugin.html:96 msgid "Version History" msgstr "Historie verzí" -#: netbox/templates/core/plugin.html:106 +#: templates/core/plugin.html:107 msgid "Local Installation Instructions" msgstr "Pokyny k místní instalaci" -#: netbox/templates/core/rq_queue_list.html:5 -#: netbox/templates/core/rq_queue_list.html:13 -#: netbox/templates/core/rq_task_list.html:14 -#: netbox/templates/core/rq_worker.html:7 +#: templates/core/rq_queue_list.html:5 templates/core/rq_queue_list.html:13 +#: templates/core/rq_task_list.html:14 templates/core/rq_worker.html:7 msgid "Background Queues" msgstr "Fronty na pozadí" -#: netbox/templates/core/rq_queue_list.html:24 -#: netbox/templates/core/rq_queue_list.html:25 -#: netbox/templates/core/rq_worker_list.html:49 -#: netbox/templates/core/rq_worker_list.html:50 -#: netbox/templates/extras/script_result.html:67 -#: netbox/templates/extras/script_result.html:69 -#: netbox/templates/inc/table_controls_htmx.html:30 -#: netbox/templates/inc/table_controls_htmx.html:33 +#: templates/core/rq_queue_list.html:24 templates/core/rq_queue_list.html:25 +#: templates/core/rq_worker_list.html:49 templates/core/rq_worker_list.html:50 +#: templates/extras/script_result.html:67 +#: templates/extras/script_result.html:69 +#: templates/inc/table_controls_htmx.html:30 +#: templates/inc/table_controls_htmx.html:33 msgid "Configure Table" msgstr "Konfigurovat tabulku" -#: netbox/templates/core/rq_task.html:29 +#: templates/core/rq_task.html:29 msgid "Stop" msgstr "Zastavit" -#: netbox/templates/core/rq_task.html:34 +#: templates/core/rq_task.html:34 msgid "Requeue" msgstr "Požadavek" -#: netbox/templates/core/rq_task.html:39 +#: templates/core/rq_task.html:39 msgid "Enqueue" msgstr "Zapojte se do fronty" -#: netbox/templates/core/rq_task.html:61 +#: templates/core/rq_task.html:61 msgid "Queue" msgstr "Fronta" -#: netbox/templates/core/rq_task.html:65 +#: templates/core/rq_task.html:65 msgid "Timeout" msgstr "Časový limit" -#: netbox/templates/core/rq_task.html:69 +#: templates/core/rq_task.html:69 msgid "Result TTL" msgstr "Výsledek TTL" -#: netbox/templates/core/rq_task.html:89 +#: templates/core/rq_task.html:89 msgid "Meta" msgstr "Meta" -#: netbox/templates/core/rq_task.html:93 +#: templates/core/rq_task.html:93 msgid "Arguments" msgstr "Argumenty" -#: netbox/templates/core/rq_task.html:97 +#: templates/core/rq_task.html:97 msgid "Keyword Arguments" msgstr "Argumenty klíčových slov" -#: netbox/templates/core/rq_task.html:103 +#: templates/core/rq_task.html:103 msgid "Depends on" msgstr "Závisí na" -#: netbox/templates/core/rq_task.html:109 +#: templates/core/rq_task.html:109 msgid "Exception" msgstr "Výjimka" -#: netbox/templates/core/rq_task_list.html:28 +#: templates/core/rq_task_list.html:28 msgid "tasks in " msgstr "úkoly v " -#: netbox/templates/core/rq_task_list.html:33 +#: templates/core/rq_task_list.html:33 msgid "Queued Jobs" msgstr "Úlohy ve frontě" -#: netbox/templates/core/rq_task_list.html:64 -#: netbox/templates/extras/script_result.html:86 +#: templates/core/rq_task_list.html:64 templates/extras/script_result.html:86 #, python-format msgid "" "Select all %(count)s %(object_type_plural)s matching query" @@ -12168,396 +11492,381 @@ msgstr "" "Vybrat všichni %(count)s %(object_type_plural)s " "odpovídající dotaz" -#: netbox/templates/core/rq_worker.html:10 +#: templates/core/rq_worker.html:10 msgid "Worker Info" msgstr "Informace o pracovníkovi" -#: netbox/templates/core/rq_worker.html:31 -#: netbox/templates/core/rq_worker.html:40 +#: templates/core/rq_worker.html:31 templates/core/rq_worker.html:40 msgid "Worker" msgstr "Pracovník" -#: netbox/templates/core/rq_worker.html:55 +#: templates/core/rq_worker.html:55 msgid "Queues" msgstr "Fronty" -#: netbox/templates/core/rq_worker.html:63 +#: templates/core/rq_worker.html:63 msgid "Curent Job" msgstr "Aktuální úloha" -#: netbox/templates/core/rq_worker.html:67 +#: templates/core/rq_worker.html:67 msgid "Successful job count" msgstr "Počet úspěšných úloh" -#: netbox/templates/core/rq_worker.html:71 +#: templates/core/rq_worker.html:71 msgid "Failed job count" msgstr "Počet neúspěšných úloh" -#: netbox/templates/core/rq_worker.html:75 +#: templates/core/rq_worker.html:75 msgid "Total working time" msgstr "Celková pracovní doba" -#: netbox/templates/core/rq_worker.html:76 +#: templates/core/rq_worker.html:76 msgid "seconds" msgstr "sekund" -#: netbox/templates/core/rq_worker_list.html:13 -#: netbox/templates/core/rq_worker_list.html:21 +#: templates/core/rq_worker_list.html:13 templates/core/rq_worker_list.html:21 msgid "Background Workers" msgstr "Pracovníci na pozadí" -#: netbox/templates/core/rq_worker_list.html:29 +#: templates/core/rq_worker_list.html:29 #, python-format msgid "Workers in %(queue_name)s" msgstr "Pracovníci v %(queue_name)s" -#: netbox/templates/core/system.html:11 -#: netbox/utilities/templates/buttons/export.html:4 +#: templates/core/system.html:11 utilities/templates/buttons/export.html:4 msgid "Export" msgstr "Export" -#: netbox/templates/core/system.html:28 +#: templates/core/system.html:28 msgid "System Status" msgstr "Stav systému" -#: netbox/templates/core/system.html:31 +#: templates/core/system.html:31 msgid "NetBox release" msgstr "Vydání NetBox" -#: netbox/templates/core/system.html:44 +#: templates/core/system.html:44 msgid "Django version" msgstr "Verze Django" -#: netbox/templates/core/system.html:48 +#: templates/core/system.html:48 msgid "PostgreSQL version" msgstr "PostgreSQL verze" -#: netbox/templates/core/system.html:52 +#: templates/core/system.html:52 msgid "Database name" msgstr "Název databáze" -#: netbox/templates/core/system.html:56 +#: templates/core/system.html:56 msgid "Database size" msgstr "Velikost databáze" -#: netbox/templates/core/system.html:61 +#: templates/core/system.html:61 msgid "Unavailable" msgstr "Nedostupné" -#: netbox/templates/core/system.html:66 +#: templates/core/system.html:66 msgid "RQ workers" msgstr "Pracovníci RQ" -#: netbox/templates/core/system.html:69 +#: templates/core/system.html:69 msgid "default queue" msgstr "výchozí fronta" -#: netbox/templates/core/system.html:73 +#: templates/core/system.html:73 msgid "System time" msgstr "Systémový čas" -#: netbox/templates/core/system.html:85 +#: templates/core/system.html:85 msgid "Current Configuration" msgstr "Aktuální konfigurace" -#: netbox/templates/dcim/bulk_disconnect.html:9 +#: templates/dcim/bulk_disconnect.html:9 #, python-format msgid "" "Are you sure you want to disconnect these %(count)s %(obj_type_plural)s?" msgstr "Jste si jisti, že je chcete odpojit %(count)s %(obj_type_plural)s?" -#: netbox/templates/dcim/cable_trace.html:10 +#: templates/dcim/cable_trace.html:10 #, python-format msgid "Cable Trace for %(object_type)s %(object)s" msgstr "Trace kabelů pro %(object_type)s %(object)s" -#: netbox/templates/dcim/cable_trace.html:24 -#: netbox/templates/dcim/inc/rack_elevation.html:7 +#: templates/dcim/cable_trace.html:24 templates/dcim/inc/rack_elevation.html:7 msgid "Download SVG" msgstr "Stáhnout SVG" -#: netbox/templates/dcim/cable_trace.html:30 +#: templates/dcim/cable_trace.html:30 msgid "Asymmetric Path" msgstr "Asymetrická cesta" -#: netbox/templates/dcim/cable_trace.html:31 +#: templates/dcim/cable_trace.html:31 msgid "The nodes below have no links and result in an asymmetric path" msgstr "Níže uvedené uzly nemají žádné odkazy a vedou k asymetrické cestě" -#: netbox/templates/dcim/cable_trace.html:38 +#: templates/dcim/cable_trace.html:38 msgid "Path split" msgstr "Rozdělení cesty" -#: netbox/templates/dcim/cable_trace.html:39 +#: templates/dcim/cable_trace.html:39 msgid "Select a node below to continue" msgstr "Chcete-li pokračovat, vyberte uzel níže" -#: netbox/templates/dcim/cable_trace.html:55 +#: templates/dcim/cable_trace.html:55 msgid "Trace Completed" msgstr "Sledování dokončeno" -#: netbox/templates/dcim/cable_trace.html:58 +#: templates/dcim/cable_trace.html:58 msgid "Total segments" msgstr "Celkem segmentů" -#: netbox/templates/dcim/cable_trace.html:62 +#: templates/dcim/cable_trace.html:62 msgid "Total length" msgstr "Celková délka" -#: netbox/templates/dcim/cable_trace.html:77 +#: templates/dcim/cable_trace.html:77 msgid "No paths found" msgstr "Nebyly nalezeny žádné cesty" -#: netbox/templates/dcim/cable_trace.html:85 +#: templates/dcim/cable_trace.html:85 msgid "Related Paths" msgstr "Související cesty" -#: netbox/templates/dcim/cable_trace.html:89 +#: templates/dcim/cable_trace.html:89 msgid "Origin" msgstr "Původ" -#: netbox/templates/dcim/cable_trace.html:90 +#: templates/dcim/cable_trace.html:90 msgid "Destination" msgstr "Cíl" -#: netbox/templates/dcim/cable_trace.html:91 +#: templates/dcim/cable_trace.html:91 msgid "Segments" msgstr "Segmenty" -#: netbox/templates/dcim/cable_trace.html:104 +#: templates/dcim/cable_trace.html:104 msgid "Incomplete" msgstr "neúplný" -#: netbox/templates/dcim/component_list.html:14 +#: templates/dcim/component_list.html:14 msgid "Rename Selected" msgstr "Přejmenovat vybrané" -#: netbox/templates/dcim/consoleport.html:65 -#: netbox/templates/dcim/consoleserverport.html:66 -#: netbox/templates/dcim/frontport.html:98 -#: netbox/templates/dcim/interface.html:176 -#: netbox/templates/dcim/poweroutlet.html:69 -#: netbox/templates/dcim/powerport.html:69 +#: templates/dcim/consoleport.html:65 templates/dcim/consoleserverport.html:66 +#: templates/dcim/frontport.html:98 templates/dcim/interface.html:176 +#: templates/dcim/poweroutlet.html:69 templates/dcim/powerport.html:69 msgid "Not Connected" msgstr "Není připojen" -#: netbox/templates/dcim/device.html:34 +#: templates/dcim/device.html:34 msgid "Highlight device in rack" msgstr "Zvýrazněte zařízení v stojanu" -#: netbox/templates/dcim/device.html:55 +#: templates/dcim/device.html:55 msgid "Not racked" msgstr "Není v racku" -#: netbox/templates/dcim/device.html:62 netbox/templates/dcim/site.html:94 +#: templates/dcim/device.html:62 templates/dcim/site.html:94 msgid "GPS Coordinates" msgstr "GPS souřadnice" -#: netbox/templates/dcim/device.html:68 netbox/templates/dcim/site.html:81 -#: netbox/templates/dcim/site.html:100 +#: templates/dcim/device.html:68 templates/dcim/site.html:81 +#: templates/dcim/site.html:100 msgid "Map" msgstr "Mapa" -#: netbox/templates/dcim/device.html:108 -#: netbox/templates/dcim/inventoryitem.html:56 -#: netbox/templates/dcim/module.html:81 -#: netbox/templates/dcim/modulebay.html:74 netbox/templates/dcim/rack.html:61 +#: templates/dcim/device.html:108 templates/dcim/inventoryitem.html:56 +#: templates/dcim/module.html:81 templates/dcim/modulebay.html:74 +#: templates/dcim/rack.html:61 msgid "Asset Tag" msgstr "Značka majetku" -#: netbox/templates/dcim/device.html:123 +#: templates/dcim/device.html:123 msgid "View Virtual Chassis" msgstr "Zobrazit virtuální šasi" -#: netbox/templates/dcim/device.html:164 +#: templates/dcim/device.html:164 msgid "Create VDC" msgstr "Vytvořit VDC" -#: netbox/templates/dcim/device.html:175 -#: netbox/templates/dcim/device_edit.html:64 -#: netbox/virtualization/forms/model_forms.py:223 +#: templates/dcim/device.html:175 templates/dcim/device_edit.html:64 +#: virtualization/forms/model_forms.py:223 msgid "Management" msgstr "Řízení" -#: netbox/templates/dcim/device.html:195 netbox/templates/dcim/device.html:211 -#: netbox/templates/dcim/device.html:227 -#: netbox/templates/virtualization/virtualmachine.html:57 -#: netbox/templates/virtualization/virtualmachine.html:73 +#: templates/dcim/device.html:195 templates/dcim/device.html:211 +#: templates/dcim/device.html:227 +#: templates/virtualization/virtualmachine.html:57 +#: templates/virtualization/virtualmachine.html:73 msgid "NAT for" msgstr "NAT pro" -#: netbox/templates/dcim/device.html:197 netbox/templates/dcim/device.html:213 -#: netbox/templates/dcim/device.html:229 -#: netbox/templates/virtualization/virtualmachine.html:59 -#: netbox/templates/virtualization/virtualmachine.html:75 +#: templates/dcim/device.html:197 templates/dcim/device.html:213 +#: templates/dcim/device.html:229 +#: templates/virtualization/virtualmachine.html:59 +#: templates/virtualization/virtualmachine.html:75 msgid "NAT" msgstr "THE NIGHT" -#: netbox/templates/dcim/device.html:252 netbox/templates/dcim/rack.html:73 +#: templates/dcim/device.html:252 templates/dcim/rack.html:73 msgid "Power Utilization" msgstr "Využití energie" -#: netbox/templates/dcim/device.html:256 +#: templates/dcim/device.html:256 msgid "Input" msgstr "Vstup" -#: netbox/templates/dcim/device.html:257 +#: templates/dcim/device.html:257 msgid "Outlets" msgstr "Výstupy" -#: netbox/templates/dcim/device.html:258 +#: templates/dcim/device.html:258 msgid "Allocated" msgstr "Přiděleno" -#: netbox/templates/dcim/device.html:268 netbox/templates/dcim/device.html:270 -#: netbox/templates/dcim/device.html:286 -#: netbox/templates/dcim/powerfeed.html:67 +#: templates/dcim/device.html:268 templates/dcim/device.html:270 +#: templates/dcim/device.html:286 templates/dcim/powerfeed.html:67 msgid "VA" msgstr "VA" -#: netbox/templates/dcim/device.html:280 +#: templates/dcim/device.html:280 msgctxt "Leg of a power feed" msgid "Leg" msgstr "větev" -#: netbox/templates/dcim/device.html:306 -#: netbox/templates/virtualization/virtualmachine.html:158 +#: templates/dcim/device.html:306 +#: templates/virtualization/virtualmachine.html:158 msgid "Add a service" msgstr "Přidat službu" -#: netbox/templates/dcim/device/base.html:21 -#: netbox/templates/dcim/device_list.html:9 -#: netbox/templates/dcim/devicetype/base.html:18 -#: netbox/templates/dcim/module.html:18 -#: netbox/templates/dcim/moduletype/base.html:18 -#: netbox/templates/virtualization/virtualmachine/base.html:22 -#: netbox/templates/virtualization/virtualmachine_list.html:8 +#: templates/dcim/device/base.html:21 templates/dcim/device_list.html:9 +#: templates/dcim/devicetype/base.html:18 +#: templates/dcim/inc/moduletype_buttons.html:9 templates/dcim/module.html:18 +#: templates/virtualization/virtualmachine/base.html:22 +#: templates/virtualization/virtualmachine_list.html:8 msgid "Add Components" msgstr "Přidat komponenty" -#: netbox/templates/dcim/device/consoleports.html:24 +#: templates/dcim/device/consoleports.html:24 msgid "Add Console Ports" msgstr "Přidání portů konzoly" -#: netbox/templates/dcim/device/consoleserverports.html:24 +#: templates/dcim/device/consoleserverports.html:24 msgid "Add Console Server Ports" msgstr "Přidání portů konzolového serveru" -#: netbox/templates/dcim/device/devicebays.html:10 +#: templates/dcim/device/devicebays.html:10 msgid "Add Device Bays" msgstr "Přidání pozic zařízení" -#: netbox/templates/dcim/device/frontports.html:24 +#: templates/dcim/device/frontports.html:24 msgid "Add Front Ports" msgstr "Přidat přední porty" -#: netbox/templates/dcim/device/inc/interface_table_controls.html:9 +#: templates/dcim/device/inc/interface_table_controls.html:9 msgid "Hide Enabled" msgstr "Skrýt Povoleno" -#: netbox/templates/dcim/device/inc/interface_table_controls.html:10 +#: templates/dcim/device/inc/interface_table_controls.html:10 msgid "Hide Disabled" msgstr "Skrýt Zakázáno" -#: netbox/templates/dcim/device/inc/interface_table_controls.html:11 +#: templates/dcim/device/inc/interface_table_controls.html:11 msgid "Hide Virtual" msgstr "Skrýt virtuální" -#: netbox/templates/dcim/device/inc/interface_table_controls.html:12 +#: templates/dcim/device/inc/interface_table_controls.html:12 msgid "Hide Disconnected" msgstr "Skrýt odpojeno" -#: netbox/templates/dcim/device/interfaces.html:27 +#: templates/dcim/device/interfaces.html:27 msgid "Add Interfaces" msgstr "Přidat rozhraní" -#: netbox/templates/dcim/device/inventory.html:10 -#: netbox/templates/dcim/inc/panels/inventory_items.html:10 +#: templates/dcim/device/inventory.html:10 +#: templates/dcim/inc/panels/inventory_items.html:10 msgid "Add Inventory Item" msgstr "Přidat položku inventáře" -#: netbox/templates/dcim/device/modulebays.html:10 +#: templates/dcim/device/modulebays.html:10 msgid "Add Module Bays" msgstr "Přidat pozice modulů" -#: netbox/templates/dcim/device/poweroutlets.html:24 +#: templates/dcim/device/poweroutlets.html:24 msgid "Add Power Outlets" msgstr "Přidejte elektrické zásuvky" -#: netbox/templates/dcim/device/powerports.html:24 +#: templates/dcim/device/powerports.html:24 msgid "Add Power Port" msgstr "Přidat napájecí port" -#: netbox/templates/dcim/device/rearports.html:24 +#: templates/dcim/device/rearports.html:24 msgid "Add Rear Ports" msgstr "Přidat zadní porty" -#: netbox/templates/dcim/device/render_config.html:5 -#: netbox/templates/virtualization/virtualmachine/render_config.html:5 +#: templates/dcim/device/render_config.html:5 +#: templates/virtualization/virtualmachine/render_config.html:5 msgid "Config" msgstr "Konfigurace" -#: netbox/templates/dcim/device/render_config.html:35 -#: netbox/templates/virtualization/virtualmachine/render_config.html:35 +#: templates/dcim/device/render_config.html:35 +#: templates/virtualization/virtualmachine/render_config.html:35 msgid "Context Data" msgstr "Kontextová data" -#: netbox/templates/dcim/device/render_config.html:53 -#: netbox/templates/virtualization/virtualmachine/render_config.html:53 +#: templates/dcim/device/render_config.html:53 +#: templates/virtualization/virtualmachine/render_config.html:53 msgid "Rendered Config" msgstr "Rendrovaná konfigurace" -#: netbox/templates/dcim/device/render_config.html:55 -#: netbox/templates/virtualization/virtualmachine/render_config.html:55 +#: templates/dcim/device/render_config.html:55 +#: templates/virtualization/virtualmachine/render_config.html:55 msgid "Download" msgstr "Ke stažení" -#: netbox/templates/dcim/device/render_config.html:61 -#: netbox/templates/virtualization/virtualmachine/render_config.html:61 +#: templates/dcim/device/render_config.html:61 +#: templates/virtualization/virtualmachine/render_config.html:61 msgid "No configuration template found" msgstr "Nebyla nalezena žádná šablona konfigurace" -#: netbox/templates/dcim/device_edit.html:44 +#: templates/dcim/device_edit.html:44 msgid "Parent Bay" msgstr "Mateřská zátoka" -#: netbox/templates/dcim/device_edit.html:48 -#: netbox/utilities/templates/form_helpers/render_field.html:22 +#: templates/dcim/device_edit.html:48 +#: utilities/templates/form_helpers/render_field.html:22 msgid "Regenerate Slug" msgstr "Přegenerovat slug" -#: netbox/templates/dcim/device_edit.html:49 -#: netbox/templates/generic/bulk_remove.html:21 -#: netbox/utilities/templates/helpers/table_config_form.html:23 +#: templates/dcim/device_edit.html:49 templates/generic/bulk_remove.html:21 +#: utilities/templates/helpers/table_config_form.html:23 msgid "Remove" msgstr "Odstranit" -#: netbox/templates/dcim/device_edit.html:110 +#: templates/dcim/device_edit.html:110 msgid "Local Config Context Data" msgstr "Kontextová data místní konfigurace" -#: netbox/templates/dcim/device_list.html:82 -#: netbox/templates/dcim/moduletype/component_templates.html:17 -#: netbox/templates/generic/bulk_rename.html:57 -#: netbox/templates/virtualization/virtualmachine/interfaces.html:11 -#: netbox/templates/virtualization/virtualmachine/virtual_disks.html:11 +#: templates/dcim/device_list.html:82 templates/generic/bulk_rename.html:57 +#: templates/virtualization/virtualmachine/interfaces.html:11 +#: templates/virtualization/virtualmachine/virtual_disks.html:11 msgid "Rename" msgstr "Přejmenovat" -#: netbox/templates/dcim/devicebay.html:17 +#: templates/dcim/devicebay.html:17 msgid "Device Bay" msgstr "Rozložení zařízení" -#: netbox/templates/dcim/devicebay.html:43 +#: templates/dcim/devicebay.html:43 msgid "Installed Device" msgstr "Nainstalované zařízení" -#: netbox/templates/dcim/devicebay_depopulate.html:6 +#: templates/dcim/devicebay_depopulate.html:6 #, python-format msgid "Remove %(device)s from %(device_bay)s?" msgstr "Odstranit %(device)s od %(device_bay)s?" -#: netbox/templates/dcim/devicebay_depopulate.html:13 +#: templates/dcim/devicebay_depopulate.html:13 #, python-format msgid "" "Are you sure you want to remove %(device)s from " @@ -12566,449 +11875,430 @@ msgstr "" "Jste si jisti, že chcete odstranit %(device)s od " "%(device_bay)s?" -#: netbox/templates/dcim/devicebay_populate.html:13 +#: templates/dcim/devicebay_populate.html:13 msgid "Populate" msgstr "Obývat" -#: netbox/templates/dcim/devicebay_populate.html:22 +#: templates/dcim/devicebay_populate.html:22 msgid "Bay" msgstr "Záliv" -#: netbox/templates/dcim/devicerole.html:14 -#: netbox/templates/dcim/platform.html:17 +#: templates/dcim/devicerole.html:14 templates/dcim/platform.html:17 msgid "Add Device" msgstr "Přidat zařízení" -#: netbox/templates/dcim/devicerole.html:40 +#: templates/dcim/devicerole.html:40 msgid "VM Role" msgstr "Role virtuálního počítače" -#: netbox/templates/dcim/devicetype.html:18 -#: netbox/templates/dcim/moduletype.html:18 +#: templates/dcim/devicetype.html:18 templates/dcim/moduletype.html:29 msgid "Model Name" msgstr "Název modelu" -#: netbox/templates/dcim/devicetype.html:25 -#: netbox/templates/dcim/moduletype.html:22 +#: templates/dcim/devicetype.html:25 templates/dcim/moduletype.html:33 msgid "Part Number" msgstr "Číslo dílu" -#: netbox/templates/dcim/devicetype.html:41 +#: templates/dcim/devicetype.html:41 msgid "Exclude From Utilization" msgstr "Vyloučit z využití" -#: netbox/templates/dcim/devicetype.html:59 +#: templates/dcim/devicetype.html:59 msgid "Parent/Child" msgstr "Rodič/Dítě" -#: netbox/templates/dcim/devicetype.html:71 +#: templates/dcim/devicetype.html:71 msgid "Front Image" msgstr "Přední obrázek" -#: netbox/templates/dcim/devicetype.html:83 +#: templates/dcim/devicetype.html:83 msgid "Rear Image" msgstr "Zadní obraz" -#: netbox/templates/dcim/frontport.html:54 +#: templates/dcim/frontport.html:54 msgid "Rear Port Position" msgstr "Pozice zadního portu" -#: netbox/templates/dcim/frontport.html:72 -#: netbox/templates/dcim/interface.html:144 -#: netbox/templates/dcim/poweroutlet.html:63 -#: netbox/templates/dcim/powerport.html:63 -#: netbox/templates/dcim/rearport.html:68 +#: templates/dcim/frontport.html:72 templates/dcim/interface.html:144 +#: templates/dcim/poweroutlet.html:63 templates/dcim/powerport.html:63 +#: templates/dcim/rearport.html:68 msgid "Marked as Connected" msgstr "Označeno jako Připojeno" -#: netbox/templates/dcim/frontport.html:86 -#: netbox/templates/dcim/rearport.html:82 +#: templates/dcim/frontport.html:86 templates/dcim/rearport.html:82 msgid "Connection Status" msgstr "Stav připojení" -#: netbox/templates/dcim/htmx/cable_edit.html:10 +#: templates/dcim/htmx/cable_edit.html:10 msgid "A Side" msgstr "Strana A" -#: netbox/templates/dcim/htmx/cable_edit.html:30 +#: templates/dcim/htmx/cable_edit.html:30 msgid "B Side" msgstr "Strana B" -#: netbox/templates/dcim/inc/cable_termination.html:65 +#: templates/dcim/inc/cable_termination.html:65 msgid "No termination" msgstr "Žádné ukončení" -#: netbox/templates/dcim/inc/cable_toggle_buttons.html:3 +#: templates/dcim/inc/cable_toggle_buttons.html:3 msgid "Mark Planned" msgstr "Označit plánované" -#: netbox/templates/dcim/inc/cable_toggle_buttons.html:6 +#: templates/dcim/inc/cable_toggle_buttons.html:6 msgid "Mark Installed" msgstr "Označit nainstalovaný" -#: netbox/templates/dcim/inc/connection_endpoints.html:13 +#: templates/dcim/inc/connection_endpoints.html:13 msgid "Path Status" msgstr "Stav cesty" -#: netbox/templates/dcim/inc/connection_endpoints.html:18 +#: templates/dcim/inc/connection_endpoints.html:18 msgid "Not Reachable" msgstr "Nedostižitelný" -#: netbox/templates/dcim/inc/connection_endpoints.html:23 +#: templates/dcim/inc/connection_endpoints.html:23 msgid "Path Endpoints" msgstr "Koncové body cesty" -#: netbox/templates/dcim/inc/endpoint_connection.html:8 -#: netbox/templates/dcim/powerfeed.html:120 -#: netbox/templates/dcim/rearport.html:94 +#: templates/dcim/inc/endpoint_connection.html:8 +#: templates/dcim/powerfeed.html:120 templates/dcim/rearport.html:94 msgid "Not connected" msgstr "Není připojen" -#: netbox/templates/dcim/inc/interface_vlans_table.html:6 +#: templates/dcim/inc/interface_vlans_table.html:6 msgid "Untagged" msgstr "Neznačeno" -#: netbox/templates/dcim/inc/interface_vlans_table.html:37 +#: templates/dcim/inc/interface_vlans_table.html:37 msgid "No VLANs Assigned" msgstr "Nebyly přiřazeny žádné sítě VLAN" -#: netbox/templates/dcim/inc/interface_vlans_table.html:44 -#: netbox/templates/ipam/prefix_list.html:16 -#: netbox/templates/ipam/prefix_list.html:33 +#: templates/dcim/inc/interface_vlans_table.html:44 +#: templates/ipam/prefix_list.html:16 templates/ipam/prefix_list.html:33 msgid "Clear" msgstr "Průhledná" -#: netbox/templates/dcim/inc/interface_vlans_table.html:47 +#: templates/dcim/inc/interface_vlans_table.html:47 msgid "Clear All" msgstr "Vymazat vše" -#: netbox/templates/dcim/inc/panels/racktype_dimensions.html:38 +#: templates/dcim/inc/panels/racktype_dimensions.html:38 msgid "Mounting Depth" msgstr "Hloubka montáže" -#: netbox/templates/dcim/inc/panels/racktype_numbering.html:6 +#: templates/dcim/inc/panels/racktype_numbering.html:6 msgid "Starting Unit" msgstr "Startovací jednotka" -#: netbox/templates/dcim/inc/panels/racktype_numbering.html:10 +#: templates/dcim/inc/panels/racktype_numbering.html:10 msgid "Descending Units" msgstr "Sestupné jednotky" -#: netbox/templates/dcim/inc/rack_elevation.html:3 +#: templates/dcim/inc/rack_elevation.html:3 msgid "Rack elevation" msgstr "Výška stojanu" -#: netbox/templates/dcim/interface.html:17 +#: templates/dcim/interface.html:17 msgid "Add Child Interface" msgstr "Přidat podřízené rozhraní" -#: netbox/templates/dcim/interface.html:50 +#: templates/dcim/interface.html:50 msgid "Speed/Duplex" msgstr "Rychlost/Duplex" -#: netbox/templates/dcim/interface.html:73 +#: templates/dcim/interface.html:73 msgid "PoE Mode" msgstr "Režim PoE" -#: netbox/templates/dcim/interface.html:77 +#: templates/dcim/interface.html:77 msgid "PoE Type" msgstr "Typ PoE" -#: netbox/templates/dcim/interface.html:81 -#: netbox/templates/virtualization/vminterface.html:63 +#: templates/dcim/interface.html:81 +#: templates/virtualization/vminterface.html:63 msgid "802.1Q Mode" msgstr "Režim 802.1Q" -#: netbox/templates/dcim/interface.html:125 -#: netbox/templates/virtualization/vminterface.html:59 +#: templates/dcim/interface.html:125 +#: templates/virtualization/vminterface.html:59 msgid "MAC Address" msgstr "MAC adresa" -#: netbox/templates/dcim/interface.html:151 +#: templates/dcim/interface.html:151 msgid "Wireless Link" msgstr "Bezdrátové spojení" -#: netbox/templates/dcim/interface.html:218 netbox/vpn/choices.py:55 +#: templates/dcim/interface.html:218 vpn/choices.py:55 msgid "Peer" msgstr "Peer" -#: netbox/templates/dcim/interface.html:230 -#: netbox/templates/wireless/inc/wirelesslink_interface.html:26 +#: templates/dcim/interface.html:230 +#: templates/wireless/inc/wirelesslink_interface.html:26 msgid "Channel" msgstr "Kanál" -#: netbox/templates/dcim/interface.html:239 -#: netbox/templates/wireless/inc/wirelesslink_interface.html:32 +#: templates/dcim/interface.html:239 +#: templates/wireless/inc/wirelesslink_interface.html:32 msgid "Channel Frequency" msgstr "Frekvence kanálu" -#: netbox/templates/dcim/interface.html:242 -#: netbox/templates/dcim/interface.html:250 -#: netbox/templates/dcim/interface.html:261 -#: netbox/templates/dcim/interface.html:269 +#: templates/dcim/interface.html:242 templates/dcim/interface.html:250 +#: templates/dcim/interface.html:261 templates/dcim/interface.html:269 msgid "MHz" msgstr "MHz" -#: netbox/templates/dcim/interface.html:258 -#: netbox/templates/wireless/inc/wirelesslink_interface.html:42 +#: templates/dcim/interface.html:258 +#: templates/wireless/inc/wirelesslink_interface.html:42 msgid "Channel Width" msgstr "Šířka kanálu" -#: netbox/templates/dcim/interface.html:285 -#: netbox/templates/wireless/wirelesslan.html:14 -#: netbox/templates/wireless/wirelesslink.html:21 -#: netbox/wireless/forms/bulk_edit.py:60 -#: netbox/wireless/forms/bulk_edit.py:102 -#: netbox/wireless/forms/filtersets.py:40 -#: netbox/wireless/forms/filtersets.py:80 netbox/wireless/models.py:82 -#: netbox/wireless/models.py:156 netbox/wireless/tables/wirelesslan.py:44 +#: templates/dcim/interface.html:285 templates/wireless/wirelesslan.html:14 +#: templates/wireless/wirelesslink.html:21 wireless/forms/bulk_edit.py:60 +#: wireless/forms/bulk_edit.py:102 wireless/forms/filtersets.py:40 +#: wireless/forms/filtersets.py:80 wireless/models.py:82 +#: wireless/models.py:156 wireless/tables/wirelesslan.py:44 msgid "SSID" msgstr "SSID" -#: netbox/templates/dcim/interface.html:305 +#: templates/dcim/interface.html:305 msgid "LAG Members" msgstr "Členové MAS" -#: netbox/templates/dcim/interface.html:323 +#: templates/dcim/interface.html:323 msgid "No member interfaces" msgstr "Žádná členská rozhraní" -#: netbox/templates/dcim/interface.html:343 -#: netbox/templates/ipam/fhrpgroup.html:73 -#: netbox/templates/ipam/iprange/ip_addresses.html:7 -#: netbox/templates/ipam/prefix/ip_addresses.html:7 -#: netbox/templates/virtualization/vminterface.html:89 +#: templates/dcim/interface.html:343 templates/ipam/fhrpgroup.html:73 +#: templates/ipam/iprange/ip_addresses.html:7 +#: templates/ipam/prefix/ip_addresses.html:7 +#: templates/virtualization/vminterface.html:89 msgid "Add IP Address" msgstr "Přidat IP adresu" -#: netbox/templates/dcim/inventoryitem.html:24 +#: templates/dcim/inventoryitem.html:24 msgid "Parent Item" msgstr "Nadřazená položka" -#: netbox/templates/dcim/inventoryitem.html:48 +#: templates/dcim/inventoryitem.html:48 msgid "Part ID" msgstr "ID součásti" -#: netbox/templates/dcim/location.html:17 +#: templates/dcim/location.html:17 msgid "Add Child Location" msgstr "Přidat podřízenou polohu" -#: netbox/templates/dcim/location.html:77 +#: templates/dcim/location.html:77 msgid "Child Locations" msgstr "Umístění dětí" -#: netbox/templates/dcim/location.html:81 netbox/templates/dcim/site.html:131 +#: templates/dcim/location.html:81 templates/dcim/site.html:131 msgid "Add a Location" msgstr "Přidání místa" -#: netbox/templates/dcim/location.html:94 netbox/templates/dcim/site.html:144 +#: templates/dcim/location.html:94 templates/dcim/site.html:144 msgid "Add a Device" msgstr "Přidání zařízení" -#: netbox/templates/dcim/manufacturer.html:16 +#: templates/dcim/manufacturer.html:16 msgid "Add Device Type" msgstr "Přidat typ zařízení" -#: netbox/templates/dcim/manufacturer.html:21 +#: templates/dcim/manufacturer.html:21 msgid "Add Module Type" msgstr "Přidat typ modulu" -#: netbox/templates/dcim/powerfeed.html:53 +#: templates/dcim/powerfeed.html:53 msgid "Connected Device" msgstr "Připojené zařízení" -#: netbox/templates/dcim/powerfeed.html:63 +#: templates/dcim/powerfeed.html:63 msgid "Utilization (Allocated" msgstr "Využití (přiděleno" -#: netbox/templates/dcim/powerfeed.html:80 +#: templates/dcim/powerfeed.html:80 msgid "Electrical Characteristics" msgstr "Elektrické charakteristiky" -#: netbox/templates/dcim/powerfeed.html:88 +#: templates/dcim/powerfeed.html:88 msgctxt "Abbreviation for volts" msgid "V" msgstr "V" -#: netbox/templates/dcim/powerfeed.html:92 +#: templates/dcim/powerfeed.html:92 msgctxt "Abbreviation for amperes" msgid "A" msgstr "A" -#: netbox/templates/dcim/poweroutlet.html:48 +#: templates/dcim/poweroutlet.html:48 msgid "Feed Leg" msgstr "Krmná noha" -#: netbox/templates/dcim/powerpanel.html:72 +#: templates/dcim/powerpanel.html:72 msgid "Add Power Feeds" msgstr "Přidání napájecích zdrojů" -#: netbox/templates/dcim/powerport.html:44 +#: templates/dcim/powerport.html:44 msgid "Maximum Draw" msgstr "Maximální losování" -#: netbox/templates/dcim/powerport.html:48 +#: templates/dcim/powerport.html:48 msgid "Allocated Draw" msgstr "Přidělené losování" -#: netbox/templates/dcim/rack.html:69 +#: templates/dcim/rack.html:69 msgid "Space Utilization" msgstr "Využití prostoru" -#: netbox/templates/dcim/rack.html:84 netbox/templates/dcim/racktype.html:44 +#: templates/dcim/rack.html:84 templates/dcim/racktype.html:44 msgid "Rack Weight" msgstr "Hmotnost stojanu" -#: netbox/templates/dcim/rack.html:94 netbox/templates/dcim/racktype.html:54 +#: templates/dcim/rack.html:94 templates/dcim/racktype.html:54 msgid "Maximum Weight" msgstr "Maximální hmotnost" -#: netbox/templates/dcim/rack.html:104 +#: templates/dcim/rack.html:104 msgid "Total Weight" msgstr "Celková hmotnost" -#: netbox/templates/dcim/rack.html:125 -#: netbox/templates/dcim/rack_elevation_list.html:15 +#: templates/dcim/rack.html:125 templates/dcim/rack_elevation_list.html:15 msgid "Images and Labels" msgstr "Obrázky a štítky" -#: netbox/templates/dcim/rack.html:126 -#: netbox/templates/dcim/rack_elevation_list.html:16 +#: templates/dcim/rack.html:126 templates/dcim/rack_elevation_list.html:16 msgid "Images only" msgstr "Pouze obrázky" -#: netbox/templates/dcim/rack.html:127 -#: netbox/templates/dcim/rack_elevation_list.html:17 +#: templates/dcim/rack.html:127 templates/dcim/rack_elevation_list.html:17 msgid "Labels only" msgstr "Pouze štítky" -#: netbox/templates/dcim/rack/reservations.html:8 +#: templates/dcim/rack/reservations.html:8 msgid "Add reservation" msgstr "Přidat rezervaci" -#: netbox/templates/dcim/rack_elevation_list.html:12 +#: templates/dcim/rack_elevation_list.html:12 msgid "View List" msgstr "Zobrazit seznam" -#: netbox/templates/dcim/rack_elevation_list.html:14 +#: templates/dcim/rack_elevation_list.html:14 msgid "Select rack view" msgstr "Vyberte zobrazení stojanu" -#: netbox/templates/dcim/rack_elevation_list.html:25 +#: templates/dcim/rack_elevation_list.html:25 msgid "Sort By" msgstr "Seřadit podle" -#: netbox/templates/dcim/rack_elevation_list.html:74 +#: templates/dcim/rack_elevation_list.html:74 msgid "No Racks Found" msgstr "Nebyly nalezeny žádné stojany" -#: netbox/templates/dcim/rack_list.html:8 +#: templates/dcim/rack_list.html:8 msgid "View Elevations" msgstr "Zobrazení výšek" -#: netbox/templates/dcim/rackreservation.html:42 +#: templates/dcim/rackreservation.html:42 msgid "Reservation Details" msgstr "Podrobnosti o rezervaci" -#: netbox/templates/dcim/rackrole.html:10 +#: templates/dcim/rackrole.html:10 msgid "Add Rack" msgstr "Přidat stojan" -#: netbox/templates/dcim/rearport.html:50 +#: templates/dcim/rearport.html:50 msgid "Positions" msgstr "Pozice" -#: netbox/templates/dcim/region.html:17 -#: netbox/templates/dcim/sitegroup.html:17 +#: templates/dcim/region.html:17 templates/dcim/sitegroup.html:17 msgid "Add Site" msgstr "Přidat web" -#: netbox/templates/dcim/region.html:55 +#: templates/dcim/region.html:55 msgid "Child Regions" msgstr "Dětské regiony" -#: netbox/templates/dcim/region.html:59 +#: templates/dcim/region.html:59 msgid "Add Region" msgstr "Přidat region" -#: netbox/templates/dcim/site.html:64 +#: templates/dcim/site.html:64 msgid "Time Zone" msgstr "Časové pásmo" -#: netbox/templates/dcim/site.html:67 +#: templates/dcim/site.html:67 msgid "UTC" msgstr "UTC" -#: netbox/templates/dcim/site.html:68 +#: templates/dcim/site.html:68 msgid "Site time" msgstr "Čas webu" -#: netbox/templates/dcim/site.html:75 +#: templates/dcim/site.html:75 msgid "Physical Address" msgstr "Fyzická adresa" -#: netbox/templates/dcim/site.html:90 +#: templates/dcim/site.html:90 msgid "Shipping Address" msgstr "Doručovací adresa" -#: netbox/templates/dcim/sitegroup.html:55 -#: netbox/templates/tenancy/contactgroup.html:46 -#: netbox/templates/tenancy/tenantgroup.html:55 -#: netbox/templates/wireless/wirelesslangroup.html:55 +#: templates/dcim/sitegroup.html:55 templates/tenancy/contactgroup.html:46 +#: templates/tenancy/tenantgroup.html:55 +#: templates/wireless/wirelesslangroup.html:55 msgid "Child Groups" msgstr "Skupiny dětí" -#: netbox/templates/dcim/sitegroup.html:59 +#: templates/dcim/sitegroup.html:59 msgid "Add Site Group" msgstr "Přidat skupinu webů" -#: netbox/templates/dcim/trace/attachment.html:5 -#: netbox/templates/extras/exporttemplate.html:31 +#: templates/dcim/trace/attachment.html:5 +#: templates/extras/exporttemplate.html:31 msgid "Attachment" msgstr "Příloha" -#: netbox/templates/dcim/virtualchassis.html:57 +#: templates/dcim/virtualchassis.html:57 msgid "Add Member" msgstr "Přidat člena" -#: netbox/templates/dcim/virtualchassis_add.html:18 +#: templates/dcim/virtualchassis_add.html:18 msgid "Member Devices" msgstr "Členská zařízení" -#: netbox/templates/dcim/virtualchassis_add_member.html:10 +#: templates/dcim/virtualchassis_add_member.html:10 #, python-format msgid "Add New Member to Virtual Chassis %(virtual_chassis)s" msgstr "Přidání nového člena do virtuálního šasi %(virtual_chassis)s" -#: netbox/templates/dcim/virtualchassis_add_member.html:19 +#: templates/dcim/virtualchassis_add_member.html:19 msgid "Add New Member" msgstr "Přidat nového člena" -#: netbox/templates/dcim/virtualchassis_add_member.html:27 -#: netbox/templates/generic/object_edit.html:78 -#: netbox/templates/users/objectpermission.html:31 -#: netbox/users/forms/filtersets.py:67 netbox/users/forms/model_forms.py:312 +#: templates/dcim/virtualchassis_add_member.html:27 +#: templates/generic/object_edit.html:78 +#: templates/users/objectpermission.html:31 users/forms/filtersets.py:67 +#: users/forms/model_forms.py:312 msgid "Actions" msgstr "Akce" -#: netbox/templates/dcim/virtualchassis_add_member.html:29 +#: templates/dcim/virtualchassis_add_member.html:29 msgid "Save & Add Another" msgstr "Uložit a přidat další" -#: netbox/templates/dcim/virtualchassis_edit.html:7 +#: templates/dcim/virtualchassis_edit.html:7 #, python-format msgid "Editing Virtual Chassis %(name)s" msgstr "Úpravy virtuálního šasi %(name)s" -#: netbox/templates/dcim/virtualchassis_edit.html:53 +#: templates/dcim/virtualchassis_edit.html:53 msgid "Rack/Unit" msgstr "Stojan/jednotka" -#: netbox/templates/dcim/virtualchassis_remove_member.html:5 +#: templates/dcim/virtualchassis_remove_member.html:5 msgid "Remove Virtual Chassis Member" msgstr "Odebrat člena virtuálního šasi" -#: netbox/templates/dcim/virtualchassis_remove_member.html:9 +#: templates/dcim/virtualchassis_remove_member.html:9 #, python-format msgid "" "Are you sure you want to remove %(device)s from virtual " @@ -13017,12 +12307,11 @@ msgstr "" "Jste si jisti, že chcete odstranit %(device)s z virtuálního" " šasi %(name)s?" -#: netbox/templates/dcim/virtualdevicecontext.html:26 -#: netbox/templates/vpn/l2vpn.html:18 +#: templates/dcim/virtualdevicecontext.html:26 templates/vpn/l2vpn.html:18 msgid "Identifier" msgstr "Identifikátor" -#: netbox/templates/exceptions/import_error.html:6 +#: templates/exceptions/import_error.html:6 msgid "" "A module import error occurred during this request. Common causes include " "the following:" @@ -13030,11 +12319,11 @@ msgstr "" "Během tohoto požadavku došlo k chybě importu modulu. Mezi běžné příčiny " "patří následující:" -#: netbox/templates/exceptions/import_error.html:10 +#: templates/exceptions/import_error.html:10 msgid "Missing required packages" msgstr "Chybí požadované balíčky" -#: netbox/templates/exceptions/import_error.html:11 +#: templates/exceptions/import_error.html:11 msgid "" "This installation of NetBox might be missing one or more required Python " "packages. These packages are listed in requirements.txt and " @@ -13050,11 +12339,11 @@ msgstr "" "spusťte zmrazení pipů z konzoly a porovnejte výstup se seznamem" " požadovaných balíčků." -#: netbox/templates/exceptions/import_error.html:20 +#: templates/exceptions/import_error.html:20 msgid "WSGI service not restarted after upgrade" msgstr "Služba WSGI nebyla restartována po upgradu" -#: netbox/templates/exceptions/import_error.html:21 +#: templates/exceptions/import_error.html:21 msgid "" "If this installation has recently been upgraded, check that the WSGI service" " (e.g. gunicorn or uWSGI) has been restarted. This ensures that the new code" @@ -13064,7 +12353,7 @@ msgstr "" "restartována služba WSGI (např. gunicorn nebo uWSGi). Tím je zajištěno, že " "nový kód je spuštěn." -#: netbox/templates/exceptions/permission_error.html:6 +#: templates/exceptions/permission_error.html:6 msgid "" "A file permission error was detected while processing this request. Common " "causes include the following:" @@ -13072,11 +12361,11 @@ msgstr "" "Při zpracování tohoto požadavku byla zjištěna chyba oprávnění k souboru. " "Mezi běžné příčiny patří následující:" -#: netbox/templates/exceptions/permission_error.html:10 +#: templates/exceptions/permission_error.html:10 msgid "Insufficient write permission to the media root" msgstr "Nedostatečné oprávnění k zápisu do kořenového adresáře média" -#: netbox/templates/exceptions/permission_error.html:11 +#: templates/exceptions/permission_error.html:11 #, python-format msgid "" "The configured media root is %(media_root)s. Ensure that the " @@ -13087,7 +12376,7 @@ msgstr "" "uživatel NetBox běží tak, jak má přístup k zápisu souborů do všech umístění " "v rámci této cesty." -#: netbox/templates/exceptions/programming_error.html:6 +#: templates/exceptions/programming_error.html:6 msgid "" "A database programming error was detected while processing this request. " "Common causes include the following:" @@ -13095,11 +12384,11 @@ msgstr "" "Při zpracování tohoto požadavku byla zjištěna chyba programování databáze. " "Mezi běžné příčiny patří následující:" -#: netbox/templates/exceptions/programming_error.html:10 +#: templates/exceptions/programming_error.html:10 msgid "Database migrations missing" msgstr "Chybí migrace databáze" -#: netbox/templates/exceptions/programming_error.html:11 +#: templates/exceptions/programming_error.html:11 msgid "" "When upgrading to a new NetBox release, the upgrade script must be run to " "apply any new database migrations. You can run migrations manually by " @@ -13109,11 +12398,11 @@ msgstr "" "možné použít všechny nové migrace databáze. Migrace můžete spouštět ručně " "provedením python3 manage.py migrovat z příkazového řádku." -#: netbox/templates/exceptions/programming_error.html:18 +#: templates/exceptions/programming_error.html:18 msgid "Unsupported PostgreSQL version" msgstr "Nepodporovaná verze PostgreSQL" -#: netbox/templates/exceptions/programming_error.html:19 +#: templates/exceptions/programming_error.html:19 msgid "" "Ensure that PostgreSQL version 12 or later is in use. You can check this by " "connecting to the database using NetBox's credentials and issuing a query " @@ -13123,102 +12412,99 @@ msgstr "" "zkontrolovat připojením k databázi pomocí přihlašovacích údajů NetBoxu a " "zadáním dotazu na VYBERTE VERZI ()." -#: netbox/templates/extras/configcontext.html:45 -#: netbox/templates/extras/configtemplate.html:37 -#: netbox/templates/extras/exporttemplate.html:51 +#: templates/extras/configcontext.html:45 +#: templates/extras/configtemplate.html:37 +#: templates/extras/exporttemplate.html:51 msgid "The data file associated with this object has been deleted" msgstr "Datový soubor přidružený k tomuto objektu byl smazán" -#: netbox/templates/extras/configcontext.html:54 -#: netbox/templates/extras/configtemplate.html:46 -#: netbox/templates/extras/exporttemplate.html:60 +#: templates/extras/configcontext.html:54 +#: templates/extras/configtemplate.html:46 +#: templates/extras/exporttemplate.html:60 msgid "Data Synced" msgstr "Synchronizovaná data" -#: netbox/templates/extras/configcontext_list.html:7 -#: netbox/templates/extras/configtemplate_list.html:7 -#: netbox/templates/extras/exporttemplate_list.html:7 +#: templates/extras/configcontext_list.html:7 +#: templates/extras/configtemplate_list.html:7 +#: templates/extras/exporttemplate_list.html:7 msgid "Sync Data" msgstr "Synchronizace dat" -#: netbox/templates/extras/configtemplate.html:56 +#: templates/extras/configtemplate.html:56 msgid "Environment Parameters" msgstr "Parametry prostředí" -#: netbox/templates/extras/configtemplate.html:67 -#: netbox/templates/extras/exporttemplate.html:79 +#: templates/extras/configtemplate.html:67 +#: templates/extras/exporttemplate.html:79 msgid "Template" msgstr "Šablona" -#: netbox/templates/extras/customfield.html:30 -#: netbox/templates/extras/customlink.html:21 +#: templates/extras/customfield.html:30 templates/extras/customlink.html:21 msgid "Group Name" msgstr "Název skupiny" -#: netbox/templates/extras/customfield.html:42 +#: templates/extras/customfield.html:42 msgid "Must be Unique" msgstr "Musí být jedinečný" -#: netbox/templates/extras/customfield.html:46 +#: templates/extras/customfield.html:46 msgid "Cloneable" msgstr "Klonovatelný" -#: netbox/templates/extras/customfield.html:56 +#: templates/extras/customfield.html:56 msgid "Default Value" msgstr "Výchozí hodnota" -#: netbox/templates/extras/customfield.html:73 +#: templates/extras/customfield.html:73 msgid "Search Weight" msgstr "Hledat Hmotnost" -#: netbox/templates/extras/customfield.html:83 +#: templates/extras/customfield.html:83 msgid "Filter Logic" msgstr "Filtrování logiky" -#: netbox/templates/extras/customfield.html:87 +#: templates/extras/customfield.html:87 msgid "Display Weight" msgstr "Hmotnost displeje" -#: netbox/templates/extras/customfield.html:91 +#: templates/extras/customfield.html:91 msgid "UI Visible" msgstr "Uživatelské rozhraní viditelné" -#: netbox/templates/extras/customfield.html:95 +#: templates/extras/customfield.html:95 msgid "UI Editable" msgstr "Upravitelné uživatelské rozhraní" -#: netbox/templates/extras/customfield.html:115 +#: templates/extras/customfield.html:115 msgid "Validation Rules" msgstr "Ověřovací pravidla" -#: netbox/templates/extras/customfield.html:126 +#: templates/extras/customfield.html:126 msgid "Regular Expression" msgstr "Regulární výraz" -#: netbox/templates/extras/customlink.html:29 +#: templates/extras/customlink.html:29 msgid "Button Class" msgstr "Třída tlačítek" -#: netbox/templates/extras/customlink.html:39 -#: netbox/templates/extras/exporttemplate.html:66 -#: netbox/templates/extras/savedfilter.html:39 +#: templates/extras/customlink.html:39 templates/extras/exporttemplate.html:66 +#: templates/extras/savedfilter.html:39 msgid "Assigned Models" msgstr "Přiřazené modely" -#: netbox/templates/extras/customlink.html:52 +#: templates/extras/customlink.html:52 msgid "Link Text" msgstr "Text odkazu" -#: netbox/templates/extras/customlink.html:58 +#: templates/extras/customlink.html:58 msgid "Link URL" msgstr "URL odkazu" -#: netbox/templates/extras/dashboard/reset.html:4 -#: netbox/templates/home.html:66 +#: templates/extras/dashboard/reset.html:4 templates/home.html:66 msgid "Reset Dashboard" msgstr "Obnovit řídicí panel" -#: netbox/templates/extras/dashboard/reset.html:8 +#: templates/extras/dashboard/reset.html:8 msgid "" "This will remove all configured widgets and restore the " "default dashboard configuration." @@ -13226,7 +12512,7 @@ msgstr "" "Tím se odstraní všichni nakonfigurované widgety a obnovení " "výchozí konfigurace řídicího panelu." -#: netbox/templates/extras/dashboard/reset.html:13 +#: templates/extras/dashboard/reset.html:13 msgid "" "This change affects only your dashboard, and will not impact other " "users." @@ -13234,156 +12520,154 @@ msgstr "" "Tato změna se týká pouze váš řídicí panel, a nebude mít vliv na " "ostatní uživatele." -#: netbox/templates/extras/dashboard/widget.html:21 +#: templates/extras/dashboard/widget.html:21 msgid "widget configuration" msgstr "konfigurace widgetu" -#: netbox/templates/extras/dashboard/widget.html:36 +#: templates/extras/dashboard/widget.html:36 msgid "Close widget" msgstr "Zavřít widget" -#: netbox/templates/extras/dashboard/widget_add.html:7 +#: templates/extras/dashboard/widget_add.html:7 msgid "Add a Widget" msgstr "Přidání widgetu" -#: netbox/templates/extras/dashboard/widgets/bookmarks.html:14 +#: templates/extras/dashboard/widgets/bookmarks.html:14 msgid "No bookmarks have been added yet." msgstr "Zatím nebyly přidány žádné záložky." -#: netbox/templates/extras/dashboard/widgets/objectcounts.html:10 +#: templates/extras/dashboard/widgets/objectcounts.html:10 msgid "No permission" msgstr "Žádné povolení" -#: netbox/templates/extras/dashboard/widgets/objectlist.html:6 +#: templates/extras/dashboard/widgets/objectlist.html:6 msgid "No permission to view this content" msgstr "Žádné oprávnění k prohlížení tohoto obsahu" -#: netbox/templates/extras/dashboard/widgets/objectlist.html:10 +#: templates/extras/dashboard/widgets/objectlist.html:10 msgid "Unable to load content. Invalid view name" msgstr "Nelze načíst obsah. Neplatný název pohledu" -#: netbox/templates/extras/dashboard/widgets/rssfeed.html:12 +#: templates/extras/dashboard/widgets/rssfeed.html:12 msgid "No content found" msgstr "Nebyl nalezen žádný obsah" -#: netbox/templates/extras/dashboard/widgets/rssfeed.html:18 +#: templates/extras/dashboard/widgets/rssfeed.html:18 msgid "There was a problem fetching the RSS feed" msgstr "Při načítání kanálu RSS došlo k problému" -#: netbox/templates/extras/dashboard/widgets/rssfeed.html:21 +#: templates/extras/dashboard/widgets/rssfeed.html:21 msgid "HTTP" msgstr "HTTP" -#: netbox/templates/extras/eventrule.html:61 +#: templates/extras/eventrule.html:61 msgid "Conditions" msgstr "Podmínky" -#: netbox/templates/extras/exporttemplate.html:23 +#: templates/extras/exporttemplate.html:23 msgid "MIME Type" msgstr "Typ MIME" -#: netbox/templates/extras/exporttemplate.html:27 +#: templates/extras/exporttemplate.html:27 msgid "File Extension" msgstr "Přípona souboru" -#: netbox/templates/extras/htmx/script_result.html:10 +#: templates/extras/htmx/script_result.html:10 msgid "Scheduled for" msgstr "Naplánováno na" -#: netbox/templates/extras/htmx/script_result.html:15 +#: templates/extras/htmx/script_result.html:15 msgid "Duration" msgstr "Doba trvání" -#: netbox/templates/extras/htmx/script_result.html:23 +#: templates/extras/htmx/script_result.html:23 msgid "Test Summary" msgstr "Souhrn testu" -#: netbox/templates/extras/htmx/script_result.html:43 +#: templates/extras/htmx/script_result.html:43 msgid "Log" msgstr "Protokol" -#: netbox/templates/extras/htmx/script_result.html:56 +#: templates/extras/htmx/script_result.html:56 msgid "Output" msgstr "Výstup" -#: netbox/templates/extras/inc/result_pending.html:4 +#: templates/extras/inc/result_pending.html:4 msgid "Loading" msgstr "Načítání" -#: netbox/templates/extras/inc/result_pending.html:6 +#: templates/extras/inc/result_pending.html:6 msgid "Results pending" msgstr "Výsledky čekají na vyřízení" -#: netbox/templates/extras/journalentry.html:15 +#: templates/extras/journalentry.html:15 msgid "Journal Entry" msgstr "Zápis do deníku" -#: netbox/templates/extras/notificationgroup.html:11 +#: templates/extras/notificationgroup.html:11 msgid "Notification Group" msgstr "Skupina oznámení" -#: netbox/templates/extras/notificationgroup.html:36 -#: netbox/templates/extras/notificationgroup.html:46 -#: netbox/utilities/templates/widgets/clearable_file_input.html:12 +#: templates/extras/notificationgroup.html:36 +#: templates/extras/notificationgroup.html:46 +#: utilities/templates/widgets/clearable_file_input.html:12 msgid "None assigned" msgstr "Žádné přiřazení" -#: netbox/templates/extras/object_configcontext.html:19 +#: templates/extras/object_configcontext.html:19 msgid "The local config context overwrites all source contexts" msgstr "Místní kontext konfigurace přepíše všechny zdrojové kontexty" -#: netbox/templates/extras/object_configcontext.html:25 +#: templates/extras/object_configcontext.html:25 msgid "Source Contexts" msgstr "Zdrojové kontexty" -#: netbox/templates/extras/object_journal.html:17 +#: templates/extras/object_journal.html:17 msgid "New Journal Entry" msgstr "Nová položka deníku" -#: netbox/templates/extras/report/base.html:30 +#: templates/extras/report/base.html:30 msgid "Report" msgstr "Zpráva" -#: netbox/templates/extras/script.html:14 +#: templates/extras/script.html:14 msgid "You do not have permission to run scripts" msgstr "Nemáte oprávnění spouštět skripty" -#: netbox/templates/extras/script.html:41 -#: netbox/templates/extras/script.html:45 -#: netbox/templates/extras/script_list.html:86 +#: templates/extras/script.html:41 templates/extras/script.html:45 +#: templates/extras/script_list.html:86 msgid "Run Script" msgstr "Spustit skript" -#: netbox/templates/extras/script.html:51 -#: netbox/templates/extras/script/source.html:10 +#: templates/extras/script.html:51 templates/extras/script/source.html:10 msgid "Error loading script" msgstr "Chyba při načítání skriptu" -#: netbox/templates/extras/script/jobs.html:16 +#: templates/extras/script/jobs.html:16 msgid "Script no longer exists in the source file." msgstr "Skript již ve zdrojovém souboru neexistuje." -#: netbox/templates/extras/script_list.html:46 +#: templates/extras/script_list.html:46 msgid "Last Run" msgstr "Poslední běh" -#: netbox/templates/extras/script_list.html:61 +#: templates/extras/script_list.html:61 msgid "Script is no longer present in the source file" msgstr "Skript již není přítomen ve zdrojovém souboru" -#: netbox/templates/extras/script_list.html:74 +#: templates/extras/script_list.html:74 msgid "Never" msgstr "Nikdy" -#: netbox/templates/extras/script_list.html:84 +#: templates/extras/script_list.html:84 msgid "Run Again" msgstr "Spustit znovu" -#: netbox/templates/extras/script_list.html:138 +#: templates/extras/script_list.html:138 msgid "No Scripts Found" msgstr "Nenalezeny žádné skripty" -#: netbox/templates/extras/script_list.html:141 +#: templates/extras/script_list.html:141 #, python-format msgid "" "Get started by creating a script from " @@ -13392,83 +12676,81 @@ msgstr "" "Začít od vytvoření skriptu z nahraného" " souboru nebo zdroje dat." -#: netbox/templates/extras/script_result.html:35 -#: netbox/templates/generic/object_list.html:50 -#: netbox/templates/search.html:13 +#: templates/extras/script_result.html:35 +#: templates/generic/object_list.html:50 templates/search.html:13 msgid "Results" msgstr "Výsledky" -#: netbox/templates/extras/script_result.html:46 +#: templates/extras/script_result.html:46 msgid "Log threshold" msgstr "Prahová hodnota protokolu" -#: netbox/templates/extras/script_result.html:56 +#: templates/extras/script_result.html:56 msgid "All" msgstr "Vše" -#: netbox/templates/extras/tag.html:32 +#: templates/extras/tag.html:32 msgid "Tagged Items" msgstr "Označené položky" -#: netbox/templates/extras/tag.html:43 +#: templates/extras/tag.html:43 msgid "Allowed Object Types" msgstr "Povolené typy objektů" -#: netbox/templates/extras/tag.html:51 +#: templates/extras/tag.html:51 msgid "Any" msgstr "Jakýkoliv" -#: netbox/templates/extras/tag.html:57 +#: templates/extras/tag.html:57 msgid "Tagged Item Types" msgstr "Typy označených položek" -#: netbox/templates/extras/tag.html:81 +#: templates/extras/tag.html:81 msgid "Tagged Objects" msgstr "Označené objekty" -#: netbox/templates/extras/webhook.html:26 +#: templates/extras/webhook.html:26 msgid "HTTP Method" msgstr "Metoda HTTP" -#: netbox/templates/extras/webhook.html:34 +#: templates/extras/webhook.html:34 msgid "HTTP Content Type" msgstr "Typ obsahu HTTP" -#: netbox/templates/extras/webhook.html:47 +#: templates/extras/webhook.html:47 msgid "SSL Verification" msgstr "Ověření SSL" -#: netbox/templates/extras/webhook.html:60 +#: templates/extras/webhook.html:60 msgid "Additional Headers" msgstr "Další záhlaví" -#: netbox/templates/extras/webhook.html:70 +#: templates/extras/webhook.html:70 msgid "Body Template" msgstr "Šablona těla" -#: netbox/templates/generic/bulk_add_component.html:29 +#: templates/generic/bulk_add_component.html:29 msgid "Bulk Creation" msgstr "Hromadná tvorba" -#: netbox/templates/generic/bulk_add_component.html:34 -#: netbox/templates/generic/bulk_delete.html:32 -#: netbox/templates/generic/bulk_edit.html:33 +#: templates/generic/bulk_add_component.html:34 +#: templates/generic/bulk_delete.html:32 templates/generic/bulk_edit.html:33 msgid "Selected Objects" msgstr "Vybrané objekty" -#: netbox/templates/generic/bulk_add_component.html:58 +#: templates/generic/bulk_add_component.html:58 msgid "to Add" msgstr "přidat" -#: netbox/templates/generic/bulk_delete.html:27 +#: templates/generic/bulk_delete.html:27 msgid "Bulk Delete" msgstr "Hromadné mazání" -#: netbox/templates/generic/bulk_delete.html:49 +#: templates/generic/bulk_delete.html:49 msgid "Confirm Bulk Deletion" msgstr "Potvrdit hromadné smazání" -#: netbox/templates/generic/bulk_delete.html:50 +#: templates/generic/bulk_delete.html:50 #, python-format msgid "" "The following operation will delete %(count)s " @@ -13478,67 +12760,64 @@ msgstr "" "Následující operace bude smazána %(count)s %(type_plural)s." " Pečlivě zkontrolujte vybrané objekty a potvrďte tuto akci." -#: netbox/templates/generic/bulk_edit.html:21 -#: netbox/templates/generic/object_edit.html:22 +#: templates/generic/bulk_edit.html:21 templates/generic/object_edit.html:22 msgid "Editing" msgstr "Editace" -#: netbox/templates/generic/bulk_edit.html:28 +#: templates/generic/bulk_edit.html:28 msgid "Bulk Edit" msgstr "Hromadné úpravy" -#: netbox/templates/generic/bulk_edit.html:107 -#: netbox/templates/generic/bulk_rename.html:66 +#: templates/generic/bulk_edit.html:107 templates/generic/bulk_rename.html:66 msgid "Apply" msgstr "Aplikujte" -#: netbox/templates/generic/bulk_import.html:19 +#: templates/generic/bulk_import.html:19 msgid "Bulk Import" msgstr "Hromadný import" -#: netbox/templates/generic/bulk_import.html:25 +#: templates/generic/bulk_import.html:25 msgid "Direct Import" msgstr "Přímý import" -#: netbox/templates/generic/bulk_import.html:30 +#: templates/generic/bulk_import.html:30 msgid "Upload File" msgstr "Nahrát soubor" -#: netbox/templates/generic/bulk_import.html:58 -#: netbox/templates/generic/bulk_import.html:80 -#: netbox/templates/generic/bulk_import.html:102 +#: templates/generic/bulk_import.html:58 templates/generic/bulk_import.html:80 +#: templates/generic/bulk_import.html:102 msgid "Submit" msgstr "Předložit" -#: netbox/templates/generic/bulk_import.html:113 +#: templates/generic/bulk_import.html:113 msgid "Field Options" msgstr "Možnosti pole" -#: netbox/templates/generic/bulk_import.html:119 +#: templates/generic/bulk_import.html:119 msgid "Accessor" msgstr "Přídavný" -#: netbox/templates/generic/bulk_import.html:148 +#: templates/generic/bulk_import.html:148 msgid "choices" msgstr "volby" -#: netbox/templates/generic/bulk_import.html:161 +#: templates/generic/bulk_import.html:161 msgid "Import Value" msgstr "Hodnota importu" -#: netbox/templates/generic/bulk_import.html:181 +#: templates/generic/bulk_import.html:181 msgid "Format: YYYY-MM-DD" msgstr "Formát: RRRR-MM-DD" -#: netbox/templates/generic/bulk_import.html:183 +#: templates/generic/bulk_import.html:183 msgid "Specify true or false" msgstr "Zadejte pravdivé nebo nepravdivé" -#: netbox/templates/generic/bulk_import.html:195 +#: templates/generic/bulk_import.html:195 msgid "Required fields must be specified for all objects." msgstr "Povinná pole musí Určeno pro všechny objekty." -#: netbox/templates/generic/bulk_import.html:201 +#: templates/generic/bulk_import.html:201 #, python-format msgid "" "Related objects may be referenced by any unique attribute. For example, " @@ -13548,15 +12827,15 @@ msgstr "" "Například, %(example)s by identifikoval VRF podle jeho " "rozlišovače tras." -#: netbox/templates/generic/bulk_remove.html:28 +#: templates/generic/bulk_remove.html:28 msgid "Bulk Remove" msgstr "Hromadné odstranění" -#: netbox/templates/generic/bulk_remove.html:42 +#: templates/generic/bulk_remove.html:42 msgid "Confirm Bulk Removal" msgstr "Potvrdit hromadné odstranění" -#: netbox/templates/generic/bulk_remove.html:43 +#: templates/generic/bulk_remove.html:43 #, python-format msgid "" "The following operation will remove %(count)s %(obj_type_plural)s from " @@ -13567,72 +12846,72 @@ msgstr "" "%(parent_obj)s. Pečlivě si prosím přečtěte %(obj_type_plural)s bude " "odstraněn a potvrzen níže." -#: netbox/templates/generic/bulk_remove.html:64 +#: templates/generic/bulk_remove.html:64 #, python-format msgid "Remove these %(count)s %(obj_type_plural)s" msgstr "Odstraňte tyto %(count)s %(obj_type_plural)s" -#: netbox/templates/generic/bulk_rename.html:20 +#: templates/generic/bulk_rename.html:20 msgid "Renaming" msgstr "Přejmenování" -#: netbox/templates/generic/bulk_rename.html:27 +#: templates/generic/bulk_rename.html:27 msgid "Bulk Rename" msgstr "Hromadné přejmenování" -#: netbox/templates/generic/bulk_rename.html:39 +#: templates/generic/bulk_rename.html:39 msgid "Current Name" msgstr "Aktuální jméno" -#: netbox/templates/generic/bulk_rename.html:40 +#: templates/generic/bulk_rename.html:40 msgid "New Name" msgstr "Nový název" -#: netbox/templates/generic/bulk_rename.html:64 -#: netbox/utilities/templates/widgets/markdown_input.html:11 +#: templates/generic/bulk_rename.html:64 +#: utilities/templates/widgets/markdown_input.html:11 msgid "Preview" msgstr "Náhled" -#: netbox/templates/generic/confirmation_form.html:16 +#: templates/generic/confirmation_form.html:16 msgid "Are you sure" msgstr "Jsi si jistý" -#: netbox/templates/generic/confirmation_form.html:20 +#: templates/generic/confirmation_form.html:20 msgid "Confirm" msgstr "Potvrdit" -#: netbox/templates/generic/object_children.html:47 -#: netbox/utilities/templates/buttons/bulk_edit.html:4 +#: templates/generic/object_children.html:47 +#: utilities/templates/buttons/bulk_edit.html:4 msgid "Edit Selected" msgstr "Upravit vybrané" -#: netbox/templates/generic/object_children.html:61 -#: netbox/utilities/templates/buttons/bulk_delete.html:4 +#: templates/generic/object_children.html:61 +#: utilities/templates/buttons/bulk_delete.html:4 msgid "Delete Selected" msgstr "Odstranit vybrané" -#: netbox/templates/generic/object_edit.html:24 +#: templates/generic/object_edit.html:24 #, python-format msgid "Add a new %(object_type)s" msgstr "Přidat nový %(object_type)s" -#: netbox/templates/generic/object_edit.html:35 +#: templates/generic/object_edit.html:35 msgid "View model documentation" msgstr "Zobrazit dokumentaci modelu" -#: netbox/templates/generic/object_edit.html:36 +#: templates/generic/object_edit.html:36 msgid "Help" msgstr "Pomoc" -#: netbox/templates/generic/object_edit.html:83 +#: templates/generic/object_edit.html:83 msgid "Create & Add Another" msgstr "Vytvořit a přidat další" -#: netbox/templates/generic/object_list.html:57 +#: templates/generic/object_list.html:57 msgid "Filters" msgstr "Filtry" -#: netbox/templates/generic/object_list.html:88 +#: templates/generic/object_list.html:88 #, python-format msgid "" "Select all %(count)s " @@ -13641,40 +12920,40 @@ msgstr "" "Vybrat všichni %(count)s " "%(object_type_plural)s odpovídající dotaz" -#: netbox/templates/home.html:15 +#: templates/home.html:15 msgid "New Release Available" msgstr "Nová verze k dispozici" -#: netbox/templates/home.html:16 +#: templates/home.html:16 msgid "is available" msgstr "je k dispozici" -#: netbox/templates/home.html:18 +#: templates/home.html:18 msgctxt "Document title" msgid "Upgrade Instructions" msgstr "Pokyny k upgradu" -#: netbox/templates/home.html:40 +#: templates/home.html:40 msgid "Unlock Dashboard" msgstr "Odemknout řídicí panel" -#: netbox/templates/home.html:49 +#: templates/home.html:49 msgid "Lock Dashboard" msgstr "Uzamknout řídicí panel" -#: netbox/templates/home.html:60 +#: templates/home.html:60 msgid "Add Widget" msgstr "Přidat widget" -#: netbox/templates/home.html:63 +#: templates/home.html:63 msgid "Save Layout" msgstr "Uložit rozvržení" -#: netbox/templates/htmx/delete_form.html:7 +#: templates/htmx/delete_form.html:7 msgid "Confirm Deletion" msgstr "Potvrdit odstranění" -#: netbox/templates/htmx/delete_form.html:11 +#: templates/htmx/delete_form.html:11 #, python-format msgid "" "Are you sure you want to delete " @@ -13683,40 +12962,40 @@ msgstr "" "Jsi si jistá, že chceš smazat " "%(object_type)s %(object)s?" -#: netbox/templates/htmx/delete_form.html:17 +#: templates/htmx/delete_form.html:17 msgid "The following objects will be deleted as a result of this action." msgstr "V důsledku této akce budou odstraněny následující objekty." -#: netbox/templates/htmx/notifications.html:15 +#: templates/htmx/notifications.html:15 msgid "ago" msgstr "před" -#: netbox/templates/htmx/notifications.html:26 +#: templates/htmx/notifications.html:26 msgid "No unread notifications" msgstr "Žádná nepřečtená oznámení" -#: netbox/templates/htmx/notifications.html:31 +#: templates/htmx/notifications.html:31 msgid "All notifications" msgstr "Všechna oznámení" -#: netbox/templates/htmx/object_selector.html:5 +#: templates/htmx/object_selector.html:5 msgid "Select" msgstr "Vybrat" -#: netbox/templates/inc/filter_list.html:42 -#: netbox/utilities/templates/helpers/table_config_form.html:39 +#: templates/inc/filter_list.html:43 +#: utilities/templates/helpers/table_config_form.html:39 msgid "Reset" msgstr "Obnovit" -#: netbox/templates/inc/light_toggle.html:4 +#: templates/inc/light_toggle.html:4 msgid "Enable dark mode" msgstr "Povolit tmavý režim" -#: netbox/templates/inc/light_toggle.html:7 +#: templates/inc/light_toggle.html:7 msgid "Enable light mode" msgstr "Povolit světelný režim" -#: netbox/templates/inc/missing_prerequisites.html:8 +#: templates/inc/missing_prerequisites.html:8 #, python-format msgid "" "Before you can add a %(model)s you must first create a " @@ -13725,283 +13004,281 @@ msgstr "" "Než budete moci přidat %(model)s Nejprve musíte vytvořit " "%(prerequisite_model)s." -#: netbox/templates/inc/paginator.html:15 +#: templates/inc/paginator.html:15 msgid "Page selection" msgstr "Výběr stránky" -#: netbox/templates/inc/paginator.html:75 +#: templates/inc/paginator.html:75 #, python-format msgid "Showing %(start)s-%(end)s of %(total)s" msgstr "Zobrazeno %(start)s-%(end)s z %(total)s" -#: netbox/templates/inc/paginator.html:82 +#: templates/inc/paginator.html:82 msgid "Pagination options" msgstr "Možnosti stránkování" -#: netbox/templates/inc/paginator.html:86 +#: templates/inc/paginator.html:86 msgid "Per Page" msgstr "Na stránku" -#: netbox/templates/inc/panels/image_attachments.html:10 +#: templates/inc/panels/image_attachments.html:10 msgid "Attach an image" msgstr "Připojit obrázek" -#: netbox/templates/inc/panels/related_objects.html:5 +#: templates/inc/panels/related_objects.html:5 msgid "Related Objects" msgstr "Související objekty" -#: netbox/templates/inc/panels/tags.html:11 +#: templates/inc/panels/tags.html:11 msgid "No tags assigned" msgstr "Žádné tagy nejsou přiřazeny" -#: netbox/templates/inc/sync_warning.html:10 +#: templates/inc/sync_warning.html:10 msgid "Data is out of sync with upstream file" msgstr "Data nejsou synchronizována s upstream souborem" -#: netbox/templates/inc/table_controls_htmx.html:7 +#: templates/inc/table_controls_htmx.html:7 msgid "Quick search" msgstr "Rychlé vyhledávání" -#: netbox/templates/inc/table_controls_htmx.html:20 +#: templates/inc/table_controls_htmx.html:20 msgid "Saved filter" msgstr "Uložený filtr" -#: netbox/templates/inc/table_htmx.html:18 +#: templates/inc/table_htmx.html:18 msgid "Clear ordering" msgstr "Jasné objednávání" -#: netbox/templates/inc/user_menu.html:6 +#: templates/inc/user_menu.html:6 msgid "Help center" msgstr "Centrum nápovědy" -#: netbox/templates/inc/user_menu.html:41 +#: templates/inc/user_menu.html:41 msgid "Django Admin" msgstr "Správce Django" -#: netbox/templates/inc/user_menu.html:61 +#: templates/inc/user_menu.html:61 msgid "Log Out" msgstr "Odhlásit se" -#: netbox/templates/inc/user_menu.html:68 netbox/templates/login.html:38 +#: templates/inc/user_menu.html:68 templates/login.html:38 msgid "Log In" msgstr "Přihlásit se" -#: netbox/templates/ipam/aggregate.html:14 -#: netbox/templates/ipam/ipaddress.html:14 -#: netbox/templates/ipam/iprange.html:13 netbox/templates/ipam/prefix.html:15 +#: templates/ipam/aggregate.html:14 templates/ipam/ipaddress.html:14 +#: templates/ipam/iprange.html:13 templates/ipam/prefix.html:15 msgid "Family" msgstr "Rodina" -#: netbox/templates/ipam/aggregate.html:39 +#: templates/ipam/aggregate.html:39 msgid "Date Added" msgstr "Datum přidání" -#: netbox/templates/ipam/aggregate/prefixes.html:8 -#: netbox/templates/ipam/prefix/prefixes.html:8 -#: netbox/templates/ipam/role.html:10 +#: templates/ipam/aggregate/prefixes.html:8 +#: templates/ipam/prefix/prefixes.html:8 templates/ipam/role.html:10 msgid "Add Prefix" msgstr "Přidat předponu" -#: netbox/templates/ipam/asn.html:23 +#: templates/ipam/asn.html:23 msgid "AS Number" msgstr "Číslo AS" -#: netbox/templates/ipam/fhrpgroup.html:52 +#: templates/ipam/fhrpgroup.html:52 msgid "Authentication Type" msgstr "Typ ověřování" -#: netbox/templates/ipam/fhrpgroup.html:56 +#: templates/ipam/fhrpgroup.html:56 msgid "Authentication Key" msgstr "Ověřovací klíč" -#: netbox/templates/ipam/fhrpgroup.html:69 +#: templates/ipam/fhrpgroup.html:69 msgid "Virtual IP Addresses" msgstr "Virtuální IP adresy" -#: netbox/templates/ipam/inc/ipaddress_edit_header.html:13 +#: templates/ipam/inc/ipaddress_edit_header.html:13 msgid "Assign IP" msgstr "Přiřadit IP" -#: netbox/templates/ipam/inc/ipaddress_edit_header.html:19 +#: templates/ipam/inc/ipaddress_edit_header.html:19 msgid "Bulk Create" msgstr "Hromadné vytváření" -#: netbox/templates/ipam/inc/panels/fhrp_groups.html:10 +#: templates/ipam/inc/panels/fhrp_groups.html:10 msgid "Create Group" msgstr "Vytvořit skupinu" -#: netbox/templates/ipam/inc/panels/fhrp_groups.html:25 +#: templates/ipam/inc/panels/fhrp_groups.html:25 msgid "Virtual IPs" msgstr "Virtuální IP" -#: netbox/templates/ipam/inc/toggle_available.html:7 +#: templates/ipam/inc/toggle_available.html:7 msgid "Show Assigned" msgstr "Zobrazit přiřazené" -#: netbox/templates/ipam/inc/toggle_available.html:10 +#: templates/ipam/inc/toggle_available.html:10 msgid "Show Available" msgstr "Zobrazit Dostupné" -#: netbox/templates/ipam/inc/toggle_available.html:13 +#: templates/ipam/inc/toggle_available.html:13 msgid "Show All" msgstr "Zobrazit vše" -#: netbox/templates/ipam/ipaddress.html:23 -#: netbox/templates/ipam/iprange.html:45 netbox/templates/ipam/prefix.html:24 +#: templates/ipam/ipaddress.html:23 templates/ipam/iprange.html:45 +#: templates/ipam/prefix.html:24 msgid "Global" msgstr "Globální" -#: netbox/templates/ipam/ipaddress.html:85 +#: templates/ipam/ipaddress.html:85 msgid "NAT (outside)" msgstr "NAT (vnější)" -#: netbox/templates/ipam/ipaddress_assign.html:8 +#: templates/ipam/ipaddress_assign.html:8 msgid "Assign an IP Address" msgstr "Přiřaďte IP adresu" -#: netbox/templates/ipam/ipaddress_assign.html:22 +#: templates/ipam/ipaddress_assign.html:22 msgid "Select IP Address" msgstr "Vyberte IP adresu" -#: netbox/templates/ipam/ipaddress_assign.html:35 +#: templates/ipam/ipaddress_assign.html:35 msgid "Search Results" msgstr "Výsledky vyhledávání" -#: netbox/templates/ipam/ipaddress_bulk_add.html:6 +#: templates/ipam/ipaddress_bulk_add.html:6 msgid "Bulk Add IP Addresses" msgstr "Hromadné přidávání IP adres" -#: netbox/templates/ipam/iprange.html:17 +#: templates/ipam/iprange.html:17 msgid "Starting Address" msgstr "Počáteční adresa" -#: netbox/templates/ipam/iprange.html:21 +#: templates/ipam/iprange.html:21 msgid "Ending Address" msgstr "Koncová adresa" -#: netbox/templates/ipam/iprange.html:33 netbox/templates/ipam/prefix.html:110 +#: templates/ipam/iprange.html:33 templates/ipam/prefix.html:110 msgid "Marked fully utilized" msgstr "Označeno plně využito" -#: netbox/templates/ipam/prefix.html:99 +#: templates/ipam/prefix.html:99 msgid "Addressing Details" msgstr "Podrobnosti o adresování" -#: netbox/templates/ipam/prefix.html:118 +#: templates/ipam/prefix.html:118 msgid "Child IPs" msgstr "Dětské IP adresy" -#: netbox/templates/ipam/prefix.html:126 +#: templates/ipam/prefix.html:126 msgid "Available IPs" msgstr "Dostupné IP adresy" -#: netbox/templates/ipam/prefix.html:138 +#: templates/ipam/prefix.html:138 msgid "First available IP" msgstr "První dostupná IP" -#: netbox/templates/ipam/prefix.html:179 +#: templates/ipam/prefix.html:179 msgid "Prefix Details" msgstr "Podrobnosti o předponě" -#: netbox/templates/ipam/prefix.html:185 +#: templates/ipam/prefix.html:185 msgid "Network Address" msgstr "Síťová adresa" -#: netbox/templates/ipam/prefix.html:189 +#: templates/ipam/prefix.html:189 msgid "Network Mask" msgstr "Síťová maska" -#: netbox/templates/ipam/prefix.html:193 +#: templates/ipam/prefix.html:193 msgid "Wildcard Mask" msgstr "Zástupná maska" -#: netbox/templates/ipam/prefix.html:197 +#: templates/ipam/prefix.html:197 msgid "Broadcast Address" msgstr "Adresa vysílání" -#: netbox/templates/ipam/prefix/ip_ranges.html:7 +#: templates/ipam/prefix/ip_ranges.html:7 msgid "Add IP Range" msgstr "Přidat rozsah IP" -#: netbox/templates/ipam/prefix_list.html:7 +#: templates/ipam/prefix_list.html:7 msgid "Hide Depth Indicators" msgstr "Skrýt indikátory hloubky" -#: netbox/templates/ipam/prefix_list.html:11 +#: templates/ipam/prefix_list.html:11 msgid "Max Depth" msgstr "Maximální hloubka" -#: netbox/templates/ipam/prefix_list.html:28 +#: templates/ipam/prefix_list.html:28 msgid "Max Length" msgstr "Maximální délka" -#: netbox/templates/ipam/rir.html:10 +#: templates/ipam/rir.html:10 msgid "Add Aggregate" msgstr "Přidat agregát" -#: netbox/templates/ipam/routetarget.html:38 +#: templates/ipam/routetarget.html:38 msgid "Importing VRFs" msgstr "Import souborů VRF" -#: netbox/templates/ipam/routetarget.html:44 +#: templates/ipam/routetarget.html:44 msgid "Exporting VRFs" msgstr "Export souborů VRF" -#: netbox/templates/ipam/routetarget.html:52 +#: templates/ipam/routetarget.html:52 msgid "Importing L2VPNs" msgstr "Import L2VPN" -#: netbox/templates/ipam/routetarget.html:58 +#: templates/ipam/routetarget.html:58 msgid "Exporting L2VPNs" msgstr "Export L2VPN" -#: netbox/templates/ipam/vlan.html:88 +#: templates/ipam/vlan.html:88 msgid "Add a Prefix" msgstr "Přidání předpony" -#: netbox/templates/ipam/vlangroup.html:18 +#: templates/ipam/vlangroup.html:18 msgid "Add VLAN" msgstr "Přidat VLAN" -#: netbox/templates/ipam/vrf.html:16 +#: templates/ipam/vrf.html:16 msgid "Route Distinguisher" msgstr "Rozlišovač tras" -#: netbox/templates/ipam/vrf.html:29 +#: templates/ipam/vrf.html:29 msgid "Unique IP Space" msgstr "Unikátní IP prostor" -#: netbox/templates/login.html:29 -#: netbox/utilities/templates/form_helpers/render_errors.html:7 +#: templates/login.html:29 +#: utilities/templates/form_helpers/render_errors.html:7 msgid "Errors" msgstr "Chyby" -#: netbox/templates/login.html:69 +#: templates/login.html:69 msgid "Sign In" msgstr "Přihlásit se" -#: netbox/templates/login.html:77 +#: templates/login.html:77 msgctxt "Denotes an alternative option" msgid "Or" msgstr "Nebo" -#: netbox/templates/media_failure.html:7 +#: templates/media_failure.html:7 msgid "Static Media Failure - NetBox" msgstr "Selhání statického média - NetBox" -#: netbox/templates/media_failure.html:21 +#: templates/media_failure.html:21 msgid "Static Media Failure" msgstr "Selhání statického média" -#: netbox/templates/media_failure.html:23 +#: templates/media_failure.html:23 msgid "The following static media file failed to load" msgstr "Následující soubor statického média se nepodařilo načíst" -#: netbox/templates/media_failure.html:26 +#: templates/media_failure.html:26 msgid "Check the following" msgstr "Zkontrolujte následující" -#: netbox/templates/media_failure.html:29 +#: templates/media_failure.html:29 msgid "" "manage.py collectstatic was run during the most recent upgrade." " This installs the most recent iteration of each static file into the static" @@ -14011,7 +13288,7 @@ msgstr "" "Tím se nainstaluje nejnovější iterace každého statického souboru do statické" " kořenové cesty." -#: netbox/templates/media_failure.html:35 +#: templates/media_failure.html:35 #, python-format msgid "" "The HTTP service (e.g. nginx or Apache) is configured to serve files from " @@ -14022,7 +13299,7 @@ msgstr "" "obsluhovala soubory z STATIC_ROOT cesta. Odkaz na instalační dokumentace pro další vedení." -#: netbox/templates/media_failure.html:47 +#: templates/media_failure.html:47 #, python-format msgid "" "The file %(filename)s exists in the static root directory and " @@ -14031,567 +13308,548 @@ msgstr "" "Soubor %(filename)s existuje ve statickém kořenovém adresáři a " "je čitelný serverem HTTP." -#: netbox/templates/media_failure.html:55 +#: templates/media_failure.html:55 #, python-format msgid "Click here to attempt loading NetBox again." msgstr "" "Klepněte na tlačítko tady pokusit se znovu " "načíst NetBox." -#: netbox/templates/tenancy/contact.html:18 netbox/tenancy/filtersets.py:147 -#: netbox/tenancy/forms/bulk_edit.py:137 -#: netbox/tenancy/forms/filtersets.py:102 netbox/tenancy/forms/forms.py:56 -#: netbox/tenancy/forms/model_forms.py:106 -#: netbox/tenancy/forms/model_forms.py:130 -#: netbox/tenancy/tables/contacts.py:98 +#: templates/tenancy/contact.html:18 tenancy/filtersets.py:147 +#: tenancy/forms/bulk_edit.py:137 tenancy/forms/filtersets.py:102 +#: tenancy/forms/forms.py:56 tenancy/forms/model_forms.py:106 +#: tenancy/forms/model_forms.py:130 tenancy/tables/contacts.py:98 msgid "Contact" msgstr "Kontaktovat" -#: netbox/templates/tenancy/contact.html:29 -#: netbox/tenancy/forms/bulk_edit.py:99 +#: templates/tenancy/contact.html:29 tenancy/forms/bulk_edit.py:99 msgid "Title" msgstr "Název" -#: netbox/templates/tenancy/contact.html:33 -#: netbox/tenancy/forms/bulk_edit.py:104 netbox/tenancy/tables/contacts.py:64 +#: templates/tenancy/contact.html:33 tenancy/forms/bulk_edit.py:104 +#: tenancy/tables/contacts.py:64 msgid "Phone" msgstr "Telefon" -#: netbox/templates/tenancy/contactgroup.html:18 -#: netbox/tenancy/forms/forms.py:66 netbox/tenancy/forms/model_forms.py:75 +#: templates/tenancy/contactgroup.html:18 tenancy/forms/forms.py:66 +#: tenancy/forms/model_forms.py:75 msgid "Contact Group" msgstr "Kontaktní skupina" -#: netbox/templates/tenancy/contactgroup.html:50 +#: templates/tenancy/contactgroup.html:50 msgid "Add Contact Group" msgstr "Přidat skupinu kontaktů" -#: netbox/templates/tenancy/contactrole.html:15 -#: netbox/tenancy/filtersets.py:152 netbox/tenancy/forms/forms.py:61 -#: netbox/tenancy/forms/model_forms.py:87 +#: templates/tenancy/contactrole.html:15 tenancy/filtersets.py:152 +#: tenancy/forms/forms.py:61 tenancy/forms/model_forms.py:87 msgid "Contact Role" msgstr "Kontaktní role" -#: netbox/templates/tenancy/object_contacts.html:9 +#: templates/tenancy/object_contacts.html:9 msgid "Add a contact" msgstr "Přidání kontaktu" -#: netbox/templates/tenancy/tenantgroup.html:17 +#: templates/tenancy/tenantgroup.html:17 msgid "Add Tenant" msgstr "Přidat nájemce" -#: netbox/templates/tenancy/tenantgroup.html:26 -#: netbox/tenancy/forms/model_forms.py:32 netbox/tenancy/tables/columns.py:51 -#: netbox/tenancy/tables/columns.py:61 +#: templates/tenancy/tenantgroup.html:26 tenancy/forms/model_forms.py:32 +#: tenancy/tables/columns.py:51 tenancy/tables/columns.py:61 msgid "Tenant Group" msgstr "Skupina nájemců" -#: netbox/templates/tenancy/tenantgroup.html:59 +#: templates/tenancy/tenantgroup.html:59 msgid "Add Tenant Group" msgstr "Přidat skupinu nájemců" -#: netbox/templates/users/group.html:39 netbox/templates/users/user.html:63 +#: templates/users/group.html:39 templates/users/user.html:63 msgid "Assigned Permissions" msgstr "Přiřazená oprávnění" -#: netbox/templates/users/objectpermission.html:6 -#: netbox/templates/users/objectpermission.html:14 -#: netbox/users/forms/filtersets.py:66 +#: templates/users/objectpermission.html:6 +#: templates/users/objectpermission.html:14 users/forms/filtersets.py:66 msgid "Permission" msgstr "Povolení" -#: netbox/templates/users/objectpermission.html:34 +#: templates/users/objectpermission.html:34 msgid "View" msgstr "Pohled" -#: netbox/templates/users/objectpermission.html:52 -#: netbox/users/forms/model_forms.py:315 +#: templates/users/objectpermission.html:52 users/forms/model_forms.py:315 msgid "Constraints" msgstr "Omezení" -#: netbox/templates/users/objectpermission.html:72 +#: templates/users/objectpermission.html:72 msgid "Assigned Users" msgstr "Přiřazení uživatelé" -#: netbox/templates/virtualization/cluster.html:52 +#: templates/virtualization/cluster.html:52 msgid "Allocated Resources" msgstr "Přidělené zdroje" -#: netbox/templates/virtualization/cluster.html:55 -#: netbox/templates/virtualization/virtualmachine.html:125 +#: templates/virtualization/cluster.html:55 +#: templates/virtualization/virtualmachine.html:125 msgid "Virtual CPUs" msgstr "Virtuální procesory" -#: netbox/templates/virtualization/cluster.html:59 -#: netbox/templates/virtualization/virtualmachine.html:129 +#: templates/virtualization/cluster.html:59 +#: templates/virtualization/virtualmachine.html:129 msgid "Memory" msgstr "Paměť" -#: netbox/templates/virtualization/cluster.html:69 -#: netbox/templates/virtualization/virtualmachine.html:140 +#: templates/virtualization/cluster.html:69 +#: templates/virtualization/virtualmachine.html:140 msgid "Disk Space" msgstr "Místo na disku" -#: netbox/templates/virtualization/cluster/base.html:18 +#: templates/virtualization/cluster/base.html:18 msgid "Add Virtual Machine" msgstr "Přidat virtuální počítač" -#: netbox/templates/virtualization/cluster/base.html:24 +#: templates/virtualization/cluster/base.html:24 msgid "Assign Device" msgstr "Přiřadit zařízení" -#: netbox/templates/virtualization/cluster/devices.html:10 +#: templates/virtualization/cluster/devices.html:10 msgid "Remove Selected" msgstr "Odstranit vybrané" -#: netbox/templates/virtualization/cluster_add_devices.html:9 +#: templates/virtualization/cluster_add_devices.html:9 #, python-format msgid "Add Device to Cluster %(cluster)s" msgstr "Přidání zařízení do clusteru %(cluster)s" -#: netbox/templates/virtualization/cluster_add_devices.html:23 +#: templates/virtualization/cluster_add_devices.html:23 msgid "Device Selection" msgstr "Výběr zařízení" -#: netbox/templates/virtualization/cluster_add_devices.html:31 +#: templates/virtualization/cluster_add_devices.html:31 msgid "Add Devices" msgstr "Přidat zařízení" -#: netbox/templates/virtualization/clustergroup.html:10 -#: netbox/templates/virtualization/clustertype.html:10 +#: templates/virtualization/clustergroup.html:10 +#: templates/virtualization/clustertype.html:10 msgid "Add Cluster" msgstr "Přidat cluster" -#: netbox/templates/virtualization/clustergroup.html:19 -#: netbox/virtualization/forms/model_forms.py:50 +#: templates/virtualization/clustergroup.html:19 +#: virtualization/forms/model_forms.py:50 msgid "Cluster Group" msgstr "Skupina klastru" -#: netbox/templates/virtualization/clustertype.html:19 -#: netbox/templates/virtualization/virtualmachine.html:110 -#: netbox/virtualization/forms/model_forms.py:36 +#: templates/virtualization/clustertype.html:19 +#: templates/virtualization/virtualmachine.html:110 +#: virtualization/forms/model_forms.py:36 msgid "Cluster Type" msgstr "Typ clusteru" -#: netbox/templates/virtualization/virtualdisk.html:18 +#: templates/virtualization/virtualdisk.html:18 msgid "Virtual Disk" msgstr "Virtuální disk" -#: netbox/templates/virtualization/virtualmachine.html:122 -#: netbox/virtualization/forms/bulk_edit.py:190 -#: netbox/virtualization/forms/model_forms.py:224 +#: templates/virtualization/virtualmachine.html:122 +#: virtualization/forms/bulk_edit.py:190 +#: virtualization/forms/model_forms.py:224 msgid "Resources" msgstr "Zdroje" -#: netbox/templates/virtualization/virtualmachine.html:178 +#: templates/virtualization/virtualmachine.html:178 msgid "Add Virtual Disk" msgstr "Přidat virtuální disk" -#: netbox/templates/vpn/ikepolicy.html:10 -#: netbox/templates/vpn/ipsecprofile.html:33 netbox/vpn/tables/crypto.py:166 +#: templates/vpn/ikepolicy.html:10 templates/vpn/ipsecprofile.html:33 +#: vpn/tables/crypto.py:166 msgid "IKE Policy" msgstr "Zásady IKE" -#: netbox/templates/vpn/ikepolicy.html:21 +#: templates/vpn/ikepolicy.html:21 msgid "IKE Version" msgstr "Verze IKE" -#: netbox/templates/vpn/ikepolicy.html:29 +#: templates/vpn/ikepolicy.html:29 msgid "Pre-Shared Key" msgstr "Předsdílený klíč" -#: netbox/templates/vpn/ikepolicy.html:33 -#: netbox/templates/wireless/inc/authentication_attrs.html:20 +#: templates/vpn/ikepolicy.html:33 +#: templates/wireless/inc/authentication_attrs.html:20 msgid "Show Secret" msgstr "Zobrazit tajemství" -#: netbox/templates/vpn/ikepolicy.html:57 -#: netbox/templates/vpn/ipsecpolicy.html:45 -#: netbox/templates/vpn/ipsecprofile.html:52 -#: netbox/templates/vpn/ipsecprofile.html:77 -#: netbox/vpn/forms/model_forms.py:316 netbox/vpn/forms/model_forms.py:352 -#: netbox/vpn/tables/crypto.py:68 netbox/vpn/tables/crypto.py:134 +#: templates/vpn/ikepolicy.html:57 templates/vpn/ipsecpolicy.html:45 +#: templates/vpn/ipsecprofile.html:52 templates/vpn/ipsecprofile.html:77 +#: vpn/forms/model_forms.py:316 vpn/forms/model_forms.py:352 +#: vpn/tables/crypto.py:68 vpn/tables/crypto.py:134 msgid "Proposals" msgstr "Návrhy" -#: netbox/templates/vpn/ikeproposal.html:10 +#: templates/vpn/ikeproposal.html:10 msgid "IKE Proposal" msgstr "Návrh IKE" -#: netbox/templates/vpn/ikeproposal.html:21 netbox/vpn/forms/bulk_edit.py:97 -#: netbox/vpn/forms/bulk_import.py:145 netbox/vpn/forms/filtersets.py:101 +#: templates/vpn/ikeproposal.html:21 vpn/forms/bulk_edit.py:97 +#: vpn/forms/bulk_import.py:145 vpn/forms/filtersets.py:101 msgid "Authentication method" msgstr "Metoda ověřování" -#: netbox/templates/vpn/ikeproposal.html:25 -#: netbox/templates/vpn/ipsecproposal.html:21 -#: netbox/vpn/forms/bulk_edit.py:102 netbox/vpn/forms/bulk_edit.py:172 -#: netbox/vpn/forms/bulk_import.py:149 netbox/vpn/forms/bulk_import.py:195 -#: netbox/vpn/forms/filtersets.py:106 netbox/vpn/forms/filtersets.py:154 +#: templates/vpn/ikeproposal.html:25 templates/vpn/ipsecproposal.html:21 +#: vpn/forms/bulk_edit.py:102 vpn/forms/bulk_edit.py:172 +#: vpn/forms/bulk_import.py:149 vpn/forms/bulk_import.py:195 +#: vpn/forms/filtersets.py:106 vpn/forms/filtersets.py:154 msgid "Encryption algorithm" msgstr "Šifrovací algoritmus" -#: netbox/templates/vpn/ikeproposal.html:29 -#: netbox/templates/vpn/ipsecproposal.html:25 -#: netbox/vpn/forms/bulk_edit.py:107 netbox/vpn/forms/bulk_edit.py:177 -#: netbox/vpn/forms/bulk_import.py:153 netbox/vpn/forms/bulk_import.py:200 -#: netbox/vpn/forms/filtersets.py:111 netbox/vpn/forms/filtersets.py:159 +#: templates/vpn/ikeproposal.html:29 templates/vpn/ipsecproposal.html:25 +#: vpn/forms/bulk_edit.py:107 vpn/forms/bulk_edit.py:177 +#: vpn/forms/bulk_import.py:153 vpn/forms/bulk_import.py:200 +#: vpn/forms/filtersets.py:111 vpn/forms/filtersets.py:159 msgid "Authentication algorithm" msgstr "Algoritmus ověřování" -#: netbox/templates/vpn/ikeproposal.html:33 +#: templates/vpn/ikeproposal.html:33 msgid "DH group" msgstr "Skupina DH" -#: netbox/templates/vpn/ikeproposal.html:37 -#: netbox/templates/vpn/ipsecproposal.html:29 -#: netbox/vpn/forms/bulk_edit.py:182 netbox/vpn/models/crypto.py:146 +#: templates/vpn/ikeproposal.html:37 templates/vpn/ipsecproposal.html:29 +#: vpn/forms/bulk_edit.py:182 vpn/models/crypto.py:146 msgid "SA lifetime (seconds)" msgstr "Životnost SA (sekundy)" -#: netbox/templates/vpn/ipsecpolicy.html:10 -#: netbox/templates/vpn/ipsecprofile.html:66 netbox/vpn/tables/crypto.py:170 +#: templates/vpn/ipsecpolicy.html:10 templates/vpn/ipsecprofile.html:66 +#: vpn/tables/crypto.py:170 msgid "IPSec Policy" msgstr "Zásady IPsec" -#: netbox/templates/vpn/ipsecpolicy.html:21 netbox/vpn/forms/bulk_edit.py:210 -#: netbox/vpn/models/crypto.py:193 +#: templates/vpn/ipsecpolicy.html:21 vpn/forms/bulk_edit.py:210 +#: vpn/models/crypto.py:193 msgid "PFS group" msgstr "Skupina PFS" -#: netbox/templates/vpn/ipsecprofile.html:10 -#: netbox/vpn/forms/model_forms.py:54 +#: templates/vpn/ipsecprofile.html:10 vpn/forms/model_forms.py:54 msgid "IPSec Profile" msgstr "Profil IPsec" -#: netbox/templates/vpn/ipsecprofile.html:89 netbox/vpn/tables/crypto.py:137 +#: templates/vpn/ipsecprofile.html:89 vpn/tables/crypto.py:137 msgid "PFS Group" msgstr "Skupina PFS" -#: netbox/templates/vpn/ipsecproposal.html:10 +#: templates/vpn/ipsecproposal.html:10 msgid "IPSec Proposal" msgstr "Návrh protokolu IPsec" -#: netbox/templates/vpn/ipsecproposal.html:33 -#: netbox/vpn/forms/bulk_edit.py:186 netbox/vpn/models/crypto.py:152 +#: templates/vpn/ipsecproposal.html:33 vpn/forms/bulk_edit.py:186 +#: vpn/models/crypto.py:152 msgid "SA lifetime (KB)" msgstr "Životnost SA (KB)" -#: netbox/templates/vpn/l2vpn.html:11 -#: netbox/templates/vpn/l2vpntermination.html:9 +#: templates/vpn/l2vpn.html:11 templates/vpn/l2vpntermination.html:9 msgid "L2VPN Attributes" msgstr "L2VPN Atributy" -#: netbox/templates/vpn/l2vpn.html:60 netbox/templates/vpn/tunnel.html:76 +#: templates/vpn/l2vpn.html:60 templates/vpn/tunnel.html:76 msgid "Add a Termination" msgstr "Přidat ukončení" -#: netbox/templates/vpn/tunnel.html:9 +#: templates/vpn/tunnel.html:9 msgid "Add Termination" msgstr "Přidat ukončení" -#: netbox/templates/vpn/tunnel.html:37 netbox/vpn/forms/bulk_edit.py:49 -#: netbox/vpn/forms/bulk_import.py:48 netbox/vpn/forms/filtersets.py:57 +#: templates/vpn/tunnel.html:37 vpn/forms/bulk_edit.py:49 +#: vpn/forms/bulk_import.py:48 vpn/forms/filtersets.py:57 msgid "Encapsulation" msgstr "Zapouzdření" -#: netbox/templates/vpn/tunnel.html:41 netbox/vpn/forms/bulk_edit.py:55 -#: netbox/vpn/forms/bulk_import.py:53 netbox/vpn/forms/filtersets.py:64 -#: netbox/vpn/models/crypto.py:250 netbox/vpn/tables/tunnels.py:51 +#: templates/vpn/tunnel.html:41 vpn/forms/bulk_edit.py:55 +#: vpn/forms/bulk_import.py:53 vpn/forms/filtersets.py:64 +#: vpn/models/crypto.py:250 vpn/tables/tunnels.py:51 msgid "IPSec profile" msgstr "Profil IPsec" -#: netbox/templates/vpn/tunnel.html:45 netbox/vpn/forms/bulk_edit.py:69 -#: netbox/vpn/forms/filtersets.py:68 +#: templates/vpn/tunnel.html:45 vpn/forms/bulk_edit.py:69 +#: vpn/forms/filtersets.py:68 msgid "Tunnel ID" msgstr "ID tunelu" -#: netbox/templates/vpn/tunnelgroup.html:14 +#: templates/vpn/tunnelgroup.html:14 msgid "Add Tunnel" msgstr "Přidat tunel" -#: netbox/templates/vpn/tunnelgroup.html:23 netbox/vpn/forms/model_forms.py:36 -#: netbox/vpn/forms/model_forms.py:49 +#: templates/vpn/tunnelgroup.html:23 vpn/forms/model_forms.py:36 +#: vpn/forms/model_forms.py:49 msgid "Tunnel Group" msgstr "Skupina tunelů" -#: netbox/templates/vpn/tunneltermination.html:10 +#: templates/vpn/tunneltermination.html:10 msgid "Tunnel Termination" msgstr "Ukončení tunelu" -#: netbox/templates/vpn/tunneltermination.html:35 -#: netbox/vpn/forms/bulk_import.py:107 netbox/vpn/forms/model_forms.py:102 -#: netbox/vpn/forms/model_forms.py:138 netbox/vpn/forms/model_forms.py:247 -#: netbox/vpn/tables/tunnels.py:101 +#: templates/vpn/tunneltermination.html:35 vpn/forms/bulk_import.py:107 +#: vpn/forms/model_forms.py:102 vpn/forms/model_forms.py:138 +#: vpn/forms/model_forms.py:247 vpn/tables/tunnels.py:101 msgid "Outside IP" msgstr "Mimo IP" -#: netbox/templates/vpn/tunneltermination.html:51 +#: templates/vpn/tunneltermination.html:51 msgid "Peer Terminations" msgstr "Ukončení vrstevníků" -#: netbox/templates/wireless/inc/authentication_attrs.html:12 +#: templates/wireless/inc/authentication_attrs.html:12 msgid "Cipher" msgstr "Šifra" -#: netbox/templates/wireless/inc/authentication_attrs.html:16 +#: templates/wireless/inc/authentication_attrs.html:16 msgid "PSK" msgstr "PSK" -#: netbox/templates/wireless/inc/wirelesslink_interface.html:35 -#: netbox/templates/wireless/inc/wirelesslink_interface.html:45 +#: templates/wireless/inc/wirelesslink_interface.html:35 +#: templates/wireless/inc/wirelesslink_interface.html:45 msgctxt "Abbreviation for megahertz" msgid "MHz" msgstr "MHz" -#: netbox/templates/wireless/wirelesslan.html:57 +#: templates/wireless/wirelesslan.html:57 msgid "Attached Interfaces" msgstr "Připojená rozhraní" -#: netbox/templates/wireless/wirelesslangroup.html:17 +#: templates/wireless/wirelesslangroup.html:17 msgid "Add Wireless LAN" msgstr "Přidat bezdrátovou síť LAN" -#: netbox/templates/wireless/wirelesslangroup.html:26 -#: netbox/wireless/forms/model_forms.py:28 +#: templates/wireless/wirelesslangroup.html:26 +#: wireless/forms/model_forms.py:28 msgid "Wireless LAN Group" msgstr "Skupina bezdrátové sítě LAN" -#: netbox/templates/wireless/wirelesslangroup.html:59 +#: templates/wireless/wirelesslangroup.html:59 msgid "Add Wireless LAN Group" msgstr "Přidat skupinu bezdrátové sítě LAN" -#: netbox/templates/wireless/wirelesslink.html:14 +#: templates/wireless/wirelesslink.html:14 msgid "Link Properties" msgstr "Vlastnosti odkazu" -#: netbox/templates/wireless/wirelesslink.html:38 -#: netbox/wireless/forms/bulk_edit.py:129 -#: netbox/wireless/forms/filtersets.py:102 -#: netbox/wireless/forms/model_forms.py:165 +#: templates/wireless/wirelesslink.html:38 wireless/forms/bulk_edit.py:129 +#: wireless/forms/filtersets.py:102 wireless/forms/model_forms.py:165 msgid "Distance" msgstr "Vzdálenost" -#: netbox/tenancy/filtersets.py:28 +#: tenancy/filtersets.py:28 msgid "Parent contact group (ID)" msgstr "Rodičovská kontaktní skupina (ID)" -#: netbox/tenancy/filtersets.py:34 +#: tenancy/filtersets.py:34 msgid "Parent contact group (slug)" msgstr "Rodičovská kontaktní skupina (slimák)" -#: netbox/tenancy/filtersets.py:40 netbox/tenancy/filtersets.py:67 -#: netbox/tenancy/filtersets.py:110 +#: tenancy/filtersets.py:40 tenancy/filtersets.py:67 tenancy/filtersets.py:110 msgid "Contact group (ID)" msgstr "Kontaktní skupina (ID)" -#: netbox/tenancy/filtersets.py:47 netbox/tenancy/filtersets.py:74 -#: netbox/tenancy/filtersets.py:117 +#: tenancy/filtersets.py:47 tenancy/filtersets.py:74 tenancy/filtersets.py:117 msgid "Contact group (slug)" msgstr "Kontaktní skupina (slug)" -#: netbox/tenancy/filtersets.py:104 +#: tenancy/filtersets.py:104 msgid "Contact (ID)" msgstr "Kontakt (ID)" -#: netbox/tenancy/filtersets.py:121 +#: tenancy/filtersets.py:121 msgid "Contact role (ID)" msgstr "Kontaktní role (ID)" -#: netbox/tenancy/filtersets.py:127 +#: tenancy/filtersets.py:127 msgid "Contact role (slug)" msgstr "Kontaktní role (slug)" -#: netbox/tenancy/filtersets.py:158 +#: tenancy/filtersets.py:158 msgid "Contact group" msgstr "Kontaktní skupina" -#: netbox/tenancy/filtersets.py:169 +#: tenancy/filtersets.py:169 msgid "Parent tenant group (ID)" msgstr "Nadřazená skupina nájemců (ID)" -#: netbox/tenancy/filtersets.py:175 +#: tenancy/filtersets.py:175 msgid "Parent tenant group (slug)" msgstr "Nadřazená skupina nájemců (slimák)" -#: netbox/tenancy/filtersets.py:181 netbox/tenancy/filtersets.py:201 +#: tenancy/filtersets.py:181 tenancy/filtersets.py:201 msgid "Tenant group (ID)" msgstr "Skupina nájemců (ID)" -#: netbox/tenancy/filtersets.py:234 +#: tenancy/filtersets.py:234 msgid "Tenant Group (ID)" msgstr "Skupina nájemců (ID)" -#: netbox/tenancy/filtersets.py:241 +#: tenancy/filtersets.py:241 msgid "Tenant Group (slug)" msgstr "Skupina nájemců (slug)" -#: netbox/tenancy/forms/bulk_edit.py:66 +#: tenancy/forms/bulk_edit.py:66 msgid "Desciption" msgstr "Descipace" -#: netbox/tenancy/forms/bulk_import.py:101 +#: tenancy/forms/bulk_import.py:101 msgid "Assigned contact" msgstr "Přiřazený kontakt" -#: netbox/tenancy/models/contacts.py:32 +#: tenancy/models/contacts.py:32 msgid "contact group" msgstr "kontaktní skupina" -#: netbox/tenancy/models/contacts.py:33 +#: tenancy/models/contacts.py:33 msgid "contact groups" msgstr "kontaktní skupiny" -#: netbox/tenancy/models/contacts.py:48 +#: tenancy/models/contacts.py:48 msgid "contact role" msgstr "kontaktní role" -#: netbox/tenancy/models/contacts.py:49 +#: tenancy/models/contacts.py:49 msgid "contact roles" msgstr "kontaktní role" -#: netbox/tenancy/models/contacts.py:68 +#: tenancy/models/contacts.py:68 msgid "title" msgstr "titul" -#: netbox/tenancy/models/contacts.py:73 +#: tenancy/models/contacts.py:73 msgid "phone" msgstr "telefon" -#: netbox/tenancy/models/contacts.py:78 +#: tenancy/models/contacts.py:78 msgid "email" msgstr "e-mailem" -#: netbox/tenancy/models/contacts.py:87 +#: tenancy/models/contacts.py:87 msgid "link" msgstr "odkaz" -#: netbox/tenancy/models/contacts.py:103 +#: tenancy/models/contacts.py:103 msgid "contact" msgstr "kontaktovat" -#: netbox/tenancy/models/contacts.py:104 +#: tenancy/models/contacts.py:104 msgid "contacts" msgstr "kontakty" -#: netbox/tenancy/models/contacts.py:153 +#: tenancy/models/contacts.py:153 msgid "contact assignment" msgstr "přiřazení kontaktů" -#: netbox/tenancy/models/contacts.py:154 +#: tenancy/models/contacts.py:154 msgid "contact assignments" msgstr "kontaktní přiřazení" -#: netbox/tenancy/models/contacts.py:170 +#: tenancy/models/contacts.py:170 #, python-brace-format msgid "Contacts cannot be assigned to this object type ({type})." msgstr "Kontakty nelze přiřadit k tomuto typu objektu ({type})." -#: netbox/tenancy/models/tenants.py:32 +#: tenancy/models/tenants.py:32 msgid "tenant group" msgstr "skupina nájemců" -#: netbox/tenancy/models/tenants.py:33 +#: tenancy/models/tenants.py:33 msgid "tenant groups" msgstr "skupiny nájemců" -#: netbox/tenancy/models/tenants.py:70 +#: tenancy/models/tenants.py:70 msgid "Tenant name must be unique per group." msgstr "Název nájemce musí být pro každou skupinu jedinečný." -#: netbox/tenancy/models/tenants.py:80 +#: tenancy/models/tenants.py:80 msgid "Tenant slug must be unique per group." msgstr "Slimák nájemce musí být jedinečný pro každou skupinu." -#: netbox/tenancy/models/tenants.py:88 +#: tenancy/models/tenants.py:88 msgid "tenant" msgstr "podnájemník" -#: netbox/tenancy/models/tenants.py:89 +#: tenancy/models/tenants.py:89 msgid "tenants" msgstr "nájemníci" -#: netbox/tenancy/tables/contacts.py:112 +#: tenancy/tables/contacts.py:112 msgid "Contact Title" msgstr "Název kontaktu" -#: netbox/tenancy/tables/contacts.py:116 +#: tenancy/tables/contacts.py:116 msgid "Contact Phone" msgstr "Kontaktní telefon" -#: netbox/tenancy/tables/contacts.py:121 +#: tenancy/tables/contacts.py:121 msgid "Contact Email" msgstr "Kontaktní e-mail" -#: netbox/tenancy/tables/contacts.py:125 +#: tenancy/tables/contacts.py:125 msgid "Contact Address" msgstr "Kontaktní adresa" -#: netbox/tenancy/tables/contacts.py:129 +#: tenancy/tables/contacts.py:129 msgid "Contact Link" msgstr "Kontakt Odkaz" -#: netbox/tenancy/tables/contacts.py:133 +#: tenancy/tables/contacts.py:133 msgid "Contact Description" msgstr "Kontakt Popis" -#: netbox/users/filtersets.py:33 netbox/users/filtersets.py:73 +#: users/filtersets.py:33 users/filtersets.py:73 msgid "Permission (ID)" msgstr "Povolení (ID)" -#: netbox/users/filtersets.py:38 netbox/users/filtersets.py:78 +#: users/filtersets.py:38 users/filtersets.py:78 msgid "Notification group (ID)" msgstr "Skupina oznámení (ID)" -#: netbox/users/forms/bulk_edit.py:26 +#: users/forms/bulk_edit.py:26 msgid "First name" msgstr "Křestní jméno" -#: netbox/users/forms/bulk_edit.py:31 +#: users/forms/bulk_edit.py:31 msgid "Last name" msgstr "Příjmení" -#: netbox/users/forms/bulk_edit.py:43 +#: users/forms/bulk_edit.py:43 msgid "Staff status" msgstr "Stav zaměstnanců" -#: netbox/users/forms/bulk_edit.py:48 +#: users/forms/bulk_edit.py:48 msgid "Superuser status" msgstr "Stav superuživatele" -#: netbox/users/forms/bulk_import.py:41 +#: users/forms/bulk_import.py:41 msgid "If no key is provided, one will be generated automatically." msgstr "Pokud není zadán žádný klíč, bude vygenerován automaticky." -#: netbox/users/forms/filtersets.py:51 netbox/users/tables.py:42 +#: users/forms/filtersets.py:51 users/tables.py:42 msgid "Is Staff" msgstr "Je personál" -#: netbox/users/forms/filtersets.py:58 netbox/users/tables.py:45 +#: users/forms/filtersets.py:58 users/tables.py:45 msgid "Is Superuser" msgstr "Je Superuser" -#: netbox/users/forms/filtersets.py:91 netbox/users/tables.py:86 +#: users/forms/filtersets.py:91 users/tables.py:86 msgid "Can View" msgstr "Může zobrazit" -#: netbox/users/forms/filtersets.py:98 netbox/users/tables.py:89 +#: users/forms/filtersets.py:98 users/tables.py:89 msgid "Can Add" msgstr "Může přidat" -#: netbox/users/forms/filtersets.py:105 netbox/users/tables.py:92 +#: users/forms/filtersets.py:105 users/tables.py:92 msgid "Can Change" msgstr "Může se změnit" -#: netbox/users/forms/filtersets.py:112 netbox/users/tables.py:95 +#: users/forms/filtersets.py:112 users/tables.py:95 msgid "Can Delete" msgstr "Může smazat" -#: netbox/users/forms/model_forms.py:62 +#: users/forms/model_forms.py:62 msgid "User Interface" msgstr "Uživatelské rozhraní" -#: netbox/users/forms/model_forms.py:114 +#: users/forms/model_forms.py:114 msgid "" "Keys must be at least 40 characters in length. Be sure to record " "your key prior to submitting this form, as it may no longer be " @@ -14601,7 +13859,7 @@ msgstr "" "klíč před odesláním tohoto formuláře, protože po vytvoření tokenu " "již nemusí být přístupný." -#: netbox/users/forms/model_forms.py:126 +#: users/forms/model_forms.py:126 msgid "" "Allowed IPv4/IPv6 networks from where the token can be used. Leave blank for" " no restrictions. Example: " @@ -14611,31 +13869,31 @@ msgstr "" "omezení. Příklad: 10.1.1.0/24,192.168.10.16/32,2001: db 8:1: " ":/64" -#: netbox/users/forms/model_forms.py:175 +#: users/forms/model_forms.py:175 msgid "Confirm password" msgstr "Potvrdit heslo" -#: netbox/users/forms/model_forms.py:178 +#: users/forms/model_forms.py:178 msgid "Enter the same password as before, for verification." msgstr "Pro ověření zadejte stejné heslo jako dříve." -#: netbox/users/forms/model_forms.py:227 +#: users/forms/model_forms.py:227 msgid "Passwords do not match! Please check your input and try again." msgstr "Hesla se neshodují! Zkontrolujte prosím svůj vstup a zkuste to znovu." -#: netbox/users/forms/model_forms.py:294 +#: users/forms/model_forms.py:294 msgid "Additional actions" msgstr "Další akce" -#: netbox/users/forms/model_forms.py:297 +#: users/forms/model_forms.py:297 msgid "Actions granted in addition to those listed above" msgstr "Opatření udělená navíc k výše uvedeným opatřením" -#: netbox/users/forms/model_forms.py:313 +#: users/forms/model_forms.py:313 msgid "Objects" msgstr "Objekty" -#: netbox/users/forms/model_forms.py:325 +#: users/forms/model_forms.py:325 msgid "" "JSON expression of a queryset filter that will return only permitted " "objects. Leave null to match all objects of this type. A list of multiple " @@ -14645,76 +13903,76 @@ msgstr "" "hodnotu null, aby odpovídala všem objektům tohoto typu. Seznam více objektů " "bude mít za následek logickou operaci OR." -#: netbox/users/forms/model_forms.py:364 +#: users/forms/model_forms.py:364 msgid "At least one action must be selected." msgstr "Musí být vybrána alespoň jedna akce." -#: netbox/users/forms/model_forms.py:382 +#: users/forms/model_forms.py:382 #, python-brace-format msgid "Invalid filter for {model}: {error}" msgstr "Neplatný filtr pro {model}: {error}" -#: netbox/users/models/permissions.py:39 +#: users/models/permissions.py:39 msgid "The list of actions granted by this permission" msgstr "Seznam akcí udělených tímto povolením" -#: netbox/users/models/permissions.py:44 +#: users/models/permissions.py:44 msgid "constraints" msgstr "omezení" -#: netbox/users/models/permissions.py:45 +#: users/models/permissions.py:45 msgid "" "Queryset filter matching the applicable objects of the selected type(s)" msgstr "" "Filtr Queryset odpovídající použitelným objektům vybraného typu (typů)" -#: netbox/users/models/permissions.py:52 +#: users/models/permissions.py:52 msgid "permission" msgstr "povolení" -#: netbox/users/models/permissions.py:53 netbox/users/models/users.py:47 +#: users/models/permissions.py:53 users/models/users.py:47 msgid "permissions" msgstr "oprávnění" -#: netbox/users/models/preferences.py:29 netbox/users/models/preferences.py:30 +#: users/models/preferences.py:29 users/models/preferences.py:30 msgid "user preferences" msgstr "uživatelské preference" -#: netbox/users/models/preferences.py:97 +#: users/models/preferences.py:97 #, python-brace-format msgid "Key '{path}' is a leaf node; cannot assign new keys" msgstr "Klíč '{path}'je listový uzel; nelze přiřadit nové klíče" -#: netbox/users/models/preferences.py:109 +#: users/models/preferences.py:109 #, python-brace-format msgid "Key '{path}' is a dictionary; cannot assign a non-dictionary value" msgstr "Klíč '{path}'je slovník; nelze přiřadit jinou hodnotu než slovník" -#: netbox/users/models/tokens.py:36 +#: users/models/tokens.py:36 msgid "expires" msgstr "vyprší" -#: netbox/users/models/tokens.py:41 +#: users/models/tokens.py:41 msgid "last used" msgstr "naposledy použitý" -#: netbox/users/models/tokens.py:46 +#: users/models/tokens.py:46 msgid "key" msgstr "klíč" -#: netbox/users/models/tokens.py:52 +#: users/models/tokens.py:52 msgid "write enabled" msgstr "zapisování povoleno" -#: netbox/users/models/tokens.py:54 +#: users/models/tokens.py:54 msgid "Permit create/update/delete operations using this key" msgstr "Povolit vytváření, aktualizace/odstranění operací pomocí tohoto klíče" -#: netbox/users/models/tokens.py:65 +#: users/models/tokens.py:65 msgid "allowed IPs" msgstr "povolené adresy IP" -#: netbox/users/models/tokens.py:67 +#: users/models/tokens.py:67 msgid "" "Allowed IPv4/IPv6 networks from where the token can be used. Leave blank for" " no restrictions. Ex: \"10.1.1.0/24, 192.168.10.16/32, 2001:DB8:1::/64\"" @@ -14722,42 +13980,42 @@ msgstr "" "Povolené sítě IPv4/IPv6, ze kterých lze token použít. Ponechte prázdné bez " "omezení. Příklad: „10.1.1.0/24, 192.168.10.16/32, 2001: DB 8:1: :/64“" -#: netbox/users/models/tokens.py:75 +#: users/models/tokens.py:75 msgid "token" msgstr "žeton" -#: netbox/users/models/tokens.py:76 +#: users/models/tokens.py:76 msgid "tokens" msgstr "žetony" -#: netbox/users/models/users.py:57 netbox/vpn/models/crypto.py:42 +#: users/models/users.py:57 vpn/models/crypto.py:42 msgid "group" msgstr "skupina" -#: netbox/users/models/users.py:92 +#: users/models/users.py:92 msgid "user" msgstr "uživatel" -#: netbox/users/models/users.py:104 +#: users/models/users.py:104 msgid "A user with this username already exists." msgstr "Uživatel s tímto uživatelským jménem již existuje." -#: netbox/users/tables.py:98 +#: users/tables.py:98 msgid "Custom Actions" msgstr "Vlastní akce" -#: netbox/utilities/api.py:153 +#: utilities/api.py:153 #, python-brace-format msgid "Related object not found using the provided attributes: {params}" msgstr "" "Související objekt nebyl nalezen pomocí poskytnutých atributů: {params}" -#: netbox/utilities/api.py:156 +#: utilities/api.py:156 #, python-brace-format msgid "Multiple objects match the provided attributes: {params}" msgstr "Více objektů odpovídá zadaným atributům: {params}" -#: netbox/utilities/api.py:168 +#: utilities/api.py:168 #, python-brace-format msgid "" "Related objects must be referenced by numeric ID or by dictionary of " @@ -14766,42 +14024,42 @@ msgstr "" "Související objekty musí být odkazovány číselným ID nebo slovníkem atributů." " Obdržela nerozpoznanou hodnotu: {value}" -#: netbox/utilities/api.py:177 +#: utilities/api.py:177 #, python-brace-format msgid "Related object not found using the provided numeric ID: {id}" msgstr "Související objekt nebyl nalezen pomocí zadaného číselného ID: {id}" -#: netbox/utilities/choices.py:19 +#: utilities/choices.py:19 #, python-brace-format msgid "{name} has a key defined but CHOICES is not a list" msgstr "{name} má definovaný klíč, ale CHOICES není seznam" -#: netbox/utilities/conversion.py:19 +#: utilities/conversion.py:19 msgid "Weight must be a positive number" msgstr "Hmotnost musí být kladné číslo" -#: netbox/utilities/conversion.py:21 +#: utilities/conversion.py:21 #, python-brace-format msgid "Invalid value '{weight}' for weight (must be a number)" msgstr "Neplatná hodnota '{weight}'pro hmotnost (musí být číslo)" -#: netbox/utilities/conversion.py:32 netbox/utilities/conversion.py:62 +#: utilities/conversion.py:32 utilities/conversion.py:62 #, python-brace-format msgid "Unknown unit {unit}. Must be one of the following: {valid_units}" msgstr "" "Neznámá jednotka {unit}. Musí to být jedna z následujících položek: " "{valid_units}" -#: netbox/utilities/conversion.py:45 +#: utilities/conversion.py:45 msgid "Length must be a positive number" msgstr "Délka musí být kladné číslo" -#: netbox/utilities/conversion.py:47 +#: utilities/conversion.py:47 #, python-brace-format msgid "Invalid value '{length}' for length (must be a number)" msgstr "Neplatná hodnota '{length}'pro délku (musí být číslo)" -#: netbox/utilities/error_handlers.py:31 +#: utilities/error_handlers.py:31 #, python-brace-format msgid "" "Unable to delete {objects}. {count} dependent objects were " @@ -14810,15 +14068,15 @@ msgstr "" "Nelze smazat {objects}. {count} byly nalezeny závislé " "objekty: " -#: netbox/utilities/error_handlers.py:33 +#: utilities/error_handlers.py:33 msgid "More than 50" msgstr "Více než 50" -#: netbox/utilities/fields.py:30 +#: utilities/fields.py:30 msgid "RGB color in hexadecimal. Example: " msgstr "RGB barva v hexadecimálním formátu. Příklad: " -#: netbox/utilities/fields.py:159 +#: utilities/fields.py:159 #, python-format msgid "" "%s(%r) is invalid. to_model parameter to CounterCacheField must be a string " @@ -14827,7 +14085,7 @@ msgstr "" "%s(%r) je neplatný. parametr to_model pro CounterCacheField musí být řetězec" " ve formátu 'app.model'" -#: netbox/utilities/fields.py:169 +#: utilities/fields.py:169 #, python-format msgid "" "%s(%r) is invalid. to_field parameter to CounterCacheField must be a string " @@ -14836,36 +14094,36 @@ msgstr "" "%s(%r) je neplatný. parametr to_field pro CounterCacheField musí být řetězec" " ve formátu 'field'" -#: netbox/utilities/forms/bulk_import.py:23 +#: utilities/forms/bulk_import.py:23 msgid "Enter object data in CSV, JSON or YAML format." msgstr "Zadejte objektová data ve formátu CSV, JSON nebo YAML." -#: netbox/utilities/forms/bulk_import.py:36 +#: utilities/forms/bulk_import.py:36 msgid "CSV delimiter" msgstr "Oddělovač CSV" -#: netbox/utilities/forms/bulk_import.py:37 +#: utilities/forms/bulk_import.py:37 msgid "The character which delimits CSV fields. Applies only to CSV format." msgstr "Znak, který vymezuje pole CSV. Platí pouze pro formát CSV." -#: netbox/utilities/forms/bulk_import.py:51 +#: utilities/forms/bulk_import.py:51 msgid "Form data must be empty when uploading/selecting a file." msgstr "Data formuláře musí být při nahrávání/výběru souboru prázdná." -#: netbox/utilities/forms/bulk_import.py:80 +#: utilities/forms/bulk_import.py:80 #, python-brace-format msgid "Unknown data format: {format}" msgstr "Neznámý formát dat: {format}" -#: netbox/utilities/forms/bulk_import.py:100 +#: utilities/forms/bulk_import.py:100 msgid "Unable to detect data format. Please specify." msgstr "Nelze zjistit formát dat. Prosím upřesněte." -#: netbox/utilities/forms/bulk_import.py:123 +#: utilities/forms/bulk_import.py:123 msgid "Invalid CSV delimiter" msgstr "Neplatný oddělovač CSV" -#: netbox/utilities/forms/bulk_import.py:167 +#: utilities/forms/bulk_import.py:167 msgid "" "Invalid YAML data. Data must be in the form of multiple documents, or a " "single document comprising a list of dictionaries." @@ -14873,7 +14131,7 @@ msgstr "" "Neplatná data YAML. Údaje musí být ve formě více dokumentů nebo jednoho " "dokumentu obsahujícího seznam slovníků." -#: netbox/utilities/forms/fields/array.py:20 +#: utilities/forms/fields/array.py:20 #, python-brace-format msgid "" "Invalid list ({value}). Must be numeric and ranges must be in ascending " @@ -14882,7 +14140,7 @@ msgstr "" "Neplatný seznam ({value}). Musí být číselné a rozsahy musí být ve vzestupném" " pořadí." -#: netbox/utilities/forms/fields/array.py:40 +#: utilities/forms/fields/array.py:40 msgid "" "Specify one or more numeric ranges separated by commas. Example: " "1-5,20-30" @@ -14890,7 +14148,7 @@ msgstr "" "Určete jeden nebo více číselných rozsahů oddělených čárkami. Příklad: " "1-5,20-30" -#: netbox/utilities/forms/fields/array.py:47 +#: utilities/forms/fields/array.py:47 #, python-brace-format msgid "" "Invalid ranges ({value}). Must be a range of integers in ascending order." @@ -14898,18 +14156,17 @@ msgstr "" "Neplatné rozsahy ({value}). Musí to být rozsah celých čísel ve vzestupném " "pořadí." -#: netbox/utilities/forms/fields/csv.py:44 +#: utilities/forms/fields/csv.py:44 #, python-brace-format msgid "Invalid value for a multiple choice field: {value}" msgstr "Neplatná hodnota pro pole s více možnostmi volby: {value}" -#: netbox/utilities/forms/fields/csv.py:57 -#: netbox/utilities/forms/fields/csv.py:78 +#: utilities/forms/fields/csv.py:57 utilities/forms/fields/csv.py:78 #, python-format msgid "Object not found: %(value)s" msgstr "Objekt nenalezen: %(value)s" -#: netbox/utilities/forms/fields/csv.py:65 +#: utilities/forms/fields/csv.py:65 #, python-brace-format msgid "" "\"{value}\" is not a unique value for this field; multiple objects were " @@ -14917,20 +14174,20 @@ msgid "" msgstr "" "„{value}„není jedinečná hodnota pro toto pole; bylo nalezeno více objektů" -#: netbox/utilities/forms/fields/csv.py:69 +#: utilities/forms/fields/csv.py:69 #, python-brace-format msgid "\"{field_name}\" is an invalid accessor field name." msgstr "„{field_name}„je neplatný název pole pro přístup." -#: netbox/utilities/forms/fields/csv.py:101 +#: utilities/forms/fields/csv.py:101 msgid "Object type must be specified as \".\"" msgstr "Typ objektu musí být zadán jako“.„" -#: netbox/utilities/forms/fields/csv.py:105 +#: utilities/forms/fields/csv.py:105 msgid "Invalid object type" msgstr "Neplatný typ objektu" -#: netbox/utilities/forms/fields/expandable.py:25 +#: utilities/forms/fields/expandable.py:25 msgid "" "Alphanumeric ranges are supported for bulk creation. Mixed cases and types " "within a single range are not supported (example: " @@ -14940,7 +14197,7 @@ msgstr "" "případy a typy v rámci jednoho rozsahu nejsou podporovány (příklad: " "[ge, xe] -0/0/ [0-9])." -#: netbox/utilities/forms/fields/expandable.py:46 +#: utilities/forms/fields/expandable.py:46 msgid "" "Specify a numeric range to create multiple IPs.
Example: " "192.0.2.[1,5,100-254]/24" @@ -14948,7 +14205,7 @@ msgstr "" "Zadejte číselný rozsah pro vytvoření více adres IP.
Příklad: " "192,0,2. [1,5100-254] /24" -#: netbox/utilities/forms/fields/fields.py:31 +#: utilities/forms/fields/fields.py:31 #, python-brace-format msgid "" " Markdown Syntaxe je podporována" -#: netbox/utilities/forms/fields/fields.py:48 +#: utilities/forms/fields/fields.py:48 msgid "URL-friendly unique shorthand" msgstr "Unikátní zkratka vhodná pro URL" -#: netbox/utilities/forms/fields/fields.py:101 +#: utilities/forms/fields/fields.py:101 msgid "Enter context data in JSON format." msgstr "Zadejte kontextová data do JSON Formát." -#: netbox/utilities/forms/fields/fields.py:124 +#: utilities/forms/fields/fields.py:124 msgid "MAC address must be in EUI-48 format" msgstr "MAC adresa musí být ve formátu EUI-48" -#: netbox/utilities/forms/forms.py:52 +#: utilities/forms/forms.py:52 msgid "Use regular expressions" msgstr "Používejte regulární výrazy" -#: netbox/utilities/forms/forms.py:75 +#: utilities/forms/forms.py:75 msgid "" "Numeric ID of an existing object to update (if not creating a new object)" msgstr "" "Číselné ID existujícího objektu, který se má aktualizovat (pokud nevytvoříte" " nový objekt)" -#: netbox/utilities/forms/forms.py:92 +#: utilities/forms/forms.py:92 #, python-brace-format msgid "Unrecognized header: {name}" msgstr "Nerozpoznaná hlavička: {name}" -#: netbox/utilities/forms/forms.py:118 +#: utilities/forms/forms.py:118 msgid "Available Columns" msgstr "Dostupné sloupce" -#: netbox/utilities/forms/forms.py:126 +#: utilities/forms/forms.py:126 msgid "Selected Columns" msgstr "Vybrané sloupce" -#: netbox/utilities/forms/mixins.py:44 +#: utilities/forms/mixins.py:44 msgid "" "This object has been modified since the form was rendered. Please consult " "the object's change log for details." @@ -15001,13 +14258,13 @@ msgstr "" "Tento objekt byl od vykreslování formuláře změněn. Podrobnosti naleznete v " "protokolu změn objektu." -#: netbox/utilities/forms/utils.py:42 netbox/utilities/forms/utils.py:68 -#: netbox/utilities/forms/utils.py:85 netbox/utilities/forms/utils.py:87 +#: utilities/forms/utils.py:42 utilities/forms/utils.py:68 +#: utilities/forms/utils.py:85 utilities/forms/utils.py:87 #, python-brace-format msgid "Range \"{value}\" is invalid." msgstr "Rozsah“{value}„je neplatný." -#: netbox/utilities/forms/utils.py:74 +#: utilities/forms/utils.py:74 #, python-brace-format msgid "" "Invalid range: Ending value ({end}) must be greater than beginning value " @@ -15016,68 +14273,68 @@ msgstr "" "Neplatný rozsah: Koncová hodnota ({end}) musí být větší než počáteční " "hodnota ({begin})." -#: netbox/utilities/forms/utils.py:232 +#: utilities/forms/utils.py:232 #, python-brace-format msgid "Duplicate or conflicting column header for \"{field}\"" msgstr "Duplicitní nebo konfliktní záhlaví sloupce pro“{field}„" -#: netbox/utilities/forms/utils.py:238 +#: utilities/forms/utils.py:238 #, python-brace-format msgid "Duplicate or conflicting column header for \"{header}\"" msgstr "Duplicitní nebo konfliktní záhlaví sloupce pro“{header}„" -#: netbox/utilities/forms/utils.py:247 +#: utilities/forms/utils.py:247 #, python-brace-format msgid "Row {row}: Expected {count_expected} columns but found {count_found}" msgstr "" "Řádek {row}: Očekávané {count_expected} sloupce, ale nalezeny {count_found}" -#: netbox/utilities/forms/utils.py:270 +#: utilities/forms/utils.py:270 #, python-brace-format msgid "Unexpected column header \"{field}\" found." msgstr "Neočekávané záhlaví sloupce“{field}„nalezeno." -#: netbox/utilities/forms/utils.py:272 +#: utilities/forms/utils.py:272 #, python-brace-format msgid "Column \"{field}\" is not a related object; cannot use dots" msgstr "Sloupec“{field}„není příbuzný objekt; nelze použít tečky" -#: netbox/utilities/forms/utils.py:276 +#: utilities/forms/utils.py:276 #, python-brace-format msgid "Invalid related object attribute for column \"{field}\": {to_field}" msgstr "" "Neplatný atribut souvisejícího objektu pro sloupec“{field}„: {to_field}" -#: netbox/utilities/forms/utils.py:284 +#: utilities/forms/utils.py:284 #, python-brace-format msgid "Required column header \"{header}\" not found." msgstr "Požadovaná záhlaví sloupce“{header}„nenalezeno." -#: netbox/utilities/forms/widgets/apiselect.py:124 +#: utilities/forms/widgets/apiselect.py:124 #, python-brace-format msgid "Missing required value for dynamic query param: '{dynamic_params}'" msgstr "" "Chybí požadovaná hodnota pro parametr dynamického dotazu: '{dynamic_params}'" -#: netbox/utilities/forms/widgets/apiselect.py:141 +#: utilities/forms/widgets/apiselect.py:141 #, python-brace-format msgid "Missing required value for static query param: '{static_params}'" msgstr "" "Chybí požadovaná hodnota pro parametr statického dotazu: '{static_params}'" -#: netbox/utilities/password_validation.py:13 +#: utilities/password_validation.py:13 msgid "Password must have at least one numeral." msgstr "Heslo musí obsahovat alespoň jednu číslici." -#: netbox/utilities/password_validation.py:18 +#: utilities/password_validation.py:18 msgid "Password must have at least one uppercase letter." msgstr "Heslo musí obsahovat alespoň jedno velké písmeno." -#: netbox/utilities/password_validation.py:23 +#: utilities/password_validation.py:23 msgid "Password must have at least one lowercase letter." msgstr "Heslo musí obsahovat alespoň jedno malé písmeno." -#: netbox/utilities/password_validation.py:27 +#: utilities/password_validation.py:27 msgid "" "Your password must contain at least one numeral, one uppercase letter and " "one lowercase letter." @@ -15085,7 +14342,7 @@ msgstr "" "Vaše heslo musí obsahovat alespoň jednu číslici, jedno velké písmeno a jedno" " malé písmeno." -#: netbox/utilities/permissions.py:42 +#: utilities/permissions.py:42 #, python-brace-format msgid "" "Invalid permission name: {name}. Must be in the format " @@ -15094,126 +14351,126 @@ msgstr "" "Neplatný název oprávnění: {name}. Musí být ve formátu " "._" -#: netbox/utilities/permissions.py:60 +#: utilities/permissions.py:60 #, python-brace-format msgid "Unknown app_label/model_name for {name}" msgstr "Neznámý app_label/model_name pro {name}" -#: netbox/utilities/request.py:76 +#: utilities/request.py:76 #, python-brace-format msgid "Invalid IP address set for {header}: {ip}" msgstr "Neplatná IP adresa nastavená pro {header}: {ip}" -#: netbox/utilities/tables.py:47 +#: utilities/tables.py:47 #, python-brace-format msgid "A column named {name} is already defined for table {table_name}" msgstr "Sloupec s názvem {name} je již definován pro tabulku {table_name}" -#: netbox/utilities/templates/builtins/customfield_value.html:30 +#: utilities/templates/builtins/customfield_value.html:30 msgid "Not defined" msgstr "Nedefinováno" -#: netbox/utilities/templates/buttons/bookmark.html:9 +#: utilities/templates/buttons/bookmark.html:9 msgid "Unbookmark" msgstr "Zrušit záložku" -#: netbox/utilities/templates/buttons/bookmark.html:13 +#: utilities/templates/buttons/bookmark.html:13 msgid "Bookmark" msgstr "Záložka" -#: netbox/utilities/templates/buttons/clone.html:4 +#: utilities/templates/buttons/clone.html:4 msgid "Clone" msgstr "Klon" -#: netbox/utilities/templates/buttons/export.html:7 +#: utilities/templates/buttons/export.html:7 msgid "Current View" msgstr "Aktuální pohled" -#: netbox/utilities/templates/buttons/export.html:8 +#: utilities/templates/buttons/export.html:8 msgid "All Data" msgstr "Veškerá data" -#: netbox/utilities/templates/buttons/export.html:28 +#: utilities/templates/buttons/export.html:28 msgid "Add export template" msgstr "Přidat šablonu exportu" -#: netbox/utilities/templates/buttons/import.html:4 +#: utilities/templates/buttons/import.html:4 msgid "Import" msgstr "Importovat" -#: netbox/utilities/templates/buttons/subscribe.html:10 +#: utilities/templates/buttons/subscribe.html:10 msgid "Unsubscribe" msgstr "Odhlásit" -#: netbox/utilities/templates/buttons/subscribe.html:14 +#: utilities/templates/buttons/subscribe.html:14 msgid "Subscribe" msgstr "Přihlásit" -#: netbox/utilities/templates/form_helpers/render_field.html:41 +#: utilities/templates/form_helpers/render_field.html:41 msgid "Copy to clipboard" msgstr "Kopírovat do schránky" -#: netbox/utilities/templates/form_helpers/render_field.html:57 +#: 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 +#: utilities/templates/form_helpers/render_field.html:70 msgid "Set Null" msgstr "Nastavit Null" -#: netbox/utilities/templates/helpers/applied_filters.html:11 +#: utilities/templates/helpers/applied_filters.html:11 msgid "Clear all" msgstr "Vymazat vše" -#: netbox/utilities/templates/helpers/table_config_form.html:8 +#: utilities/templates/helpers/table_config_form.html:8 msgid "Table Configuration" msgstr "Konfigurace tabulky" -#: netbox/utilities/templates/helpers/table_config_form.html:31 +#: utilities/templates/helpers/table_config_form.html:31 msgid "Move Up" msgstr "Pohyb nahoru" -#: netbox/utilities/templates/helpers/table_config_form.html:34 +#: utilities/templates/helpers/table_config_form.html:34 msgid "Move Down" msgstr "Přesuňte se dolů" -#: netbox/utilities/templates/navigation/menu.html:14 +#: utilities/templates/navigation/menu.html:14 msgid "Search…" msgstr "Hledat..." -#: netbox/utilities/templates/navigation/menu.html:14 +#: utilities/templates/navigation/menu.html:14 msgid "Search NetBox" msgstr "Hledat NetBox" -#: netbox/utilities/templates/widgets/apiselect.html:7 +#: utilities/templates/widgets/apiselect.html:7 msgid "Open selector" msgstr "Otevřít selektor" -#: netbox/utilities/templates/widgets/markdown_input.html:6 +#: utilities/templates/widgets/markdown_input.html:6 msgid "Write" msgstr "Napsat" -#: netbox/utilities/testing/views.py:632 +#: utilities/testing/views.py:632 msgid "The test must define csv_update_data." msgstr "Test musí definovat csv_update_data." -#: netbox/utilities/validators.py:65 +#: utilities/validators.py:65 #, python-brace-format msgid "{value} is not a valid regular expression." msgstr "{value} Není platným regulárním výrazem." -#: netbox/utilities/views.py:57 +#: utilities/views.py:57 #, python-brace-format msgid "{self.__class__.__name__} must implement get_required_permission()" msgstr "" "{self.__class__.__name__} musí implementovat get_required_permissions ()" -#: netbox/utilities/views.py:93 +#: utilities/views.py:93 #, python-brace-format msgid "{class_name} must implement get_required_permission()" msgstr "{class_name} musí implementovat get_required_permissions ()" -#: netbox/utilities/views.py:117 +#: utilities/views.py:117 #, python-brace-format msgid "" "{class_name} has no queryset defined. ObjectPermissionRequiredMixin may only" @@ -15222,63 +14479,61 @@ msgstr "" "{class_name} nemá definovanou sadu dotazů. ObjectPermissionRequiredMixin lze" " použít pouze v pohledech, které definují základní sadu dotazů" -#: netbox/virtualization/filtersets.py:79 +#: virtualization/filtersets.py:79 msgid "Parent group (ID)" msgstr "Nadřazená skupina (ID)" -#: netbox/virtualization/filtersets.py:85 +#: virtualization/filtersets.py:85 msgid "Parent group (slug)" msgstr "Rodičovská skupina (slug)" -#: netbox/virtualization/filtersets.py:89 -#: netbox/virtualization/filtersets.py:141 +#: virtualization/filtersets.py:89 virtualization/filtersets.py:141 msgid "Cluster type (ID)" msgstr "Typ clusteru (ID)" -#: netbox/virtualization/filtersets.py:151 -#: netbox/virtualization/filtersets.py:271 +#: virtualization/filtersets.py:151 virtualization/filtersets.py:271 msgid "Cluster (ID)" msgstr "Klastr (ID)" -#: netbox/virtualization/forms/bulk_edit.py:166 -#: netbox/virtualization/models/virtualmachines.py:115 +#: virtualization/forms/bulk_edit.py:166 +#: virtualization/models/virtualmachines.py:115 msgid "vCPUs" msgstr "VCPU" -#: netbox/virtualization/forms/bulk_edit.py:170 +#: virtualization/forms/bulk_edit.py:170 msgid "Memory (MB)" msgstr "Paměť (MB)" -#: netbox/virtualization/forms/bulk_edit.py:174 +#: virtualization/forms/bulk_edit.py:174 msgid "Disk (GB)" msgstr "Disk (GB)" -#: netbox/virtualization/forms/bulk_edit.py:334 -#: netbox/virtualization/forms/filtersets.py:251 +#: virtualization/forms/bulk_edit.py:334 +#: virtualization/forms/filtersets.py:251 msgid "Size (GB)" msgstr "Velikost (GB)" -#: netbox/virtualization/forms/bulk_import.py:44 +#: virtualization/forms/bulk_import.py:44 msgid "Type of cluster" msgstr "Typ clusteru" -#: netbox/virtualization/forms/bulk_import.py:51 +#: virtualization/forms/bulk_import.py:51 msgid "Assigned cluster group" msgstr "Přiřazená skupina clusteru" -#: netbox/virtualization/forms/bulk_import.py:96 +#: virtualization/forms/bulk_import.py:96 msgid "Assigned cluster" msgstr "Přiřazený cluster" -#: netbox/virtualization/forms/bulk_import.py:103 +#: virtualization/forms/bulk_import.py:103 msgid "Assigned device within cluster" msgstr "Přiřazené zařízení v rámci clusteru" -#: netbox/virtualization/forms/filtersets.py:183 +#: virtualization/forms/filtersets.py:183 msgid "Serial number" msgstr "Sériové číslo" -#: netbox/virtualization/forms/model_forms.py:153 +#: virtualization/forms/model_forms.py:153 #, python-brace-format msgid "" "{device} belongs to a different site ({device_site}) than the cluster " @@ -15286,50 +14541,50 @@ msgid "" msgstr "" "{device} patří k jinému webu ({device_site}) než cluster ({cluster_site})" -#: netbox/virtualization/forms/model_forms.py:192 +#: virtualization/forms/model_forms.py:192 msgid "Optionally pin this VM to a specific host device within the cluster" msgstr "" "Volitelně připojte tento virtuální počítač ke konkrétnímu hostitelskému " "zařízení v rámci clusteru" -#: netbox/virtualization/forms/model_forms.py:221 +#: virtualization/forms/model_forms.py:221 msgid "Site/Cluster" msgstr "Lokalita/Klastr" -#: netbox/virtualization/forms/model_forms.py:244 +#: virtualization/forms/model_forms.py:244 msgid "Disk size is managed via the attachment of virtual disks." msgstr "Velikost disku je spravována připojením virtuálních disků." -#: netbox/virtualization/forms/model_forms.py:372 -#: netbox/virtualization/tables/virtualmachines.py:111 +#: virtualization/forms/model_forms.py:372 +#: virtualization/tables/virtualmachines.py:111 msgid "Disk" msgstr "Disk" -#: netbox/virtualization/models/clusters.py:25 +#: virtualization/models/clusters.py:25 msgid "cluster type" msgstr "typ clusteru" -#: netbox/virtualization/models/clusters.py:26 +#: virtualization/models/clusters.py:26 msgid "cluster types" msgstr "typy clusterů" -#: netbox/virtualization/models/clusters.py:45 +#: virtualization/models/clusters.py:45 msgid "cluster group" msgstr "klastrová skupina" -#: netbox/virtualization/models/clusters.py:46 +#: virtualization/models/clusters.py:46 msgid "cluster groups" msgstr "klastrové skupiny" -#: netbox/virtualization/models/clusters.py:121 +#: virtualization/models/clusters.py:121 msgid "cluster" msgstr "shluk" -#: netbox/virtualization/models/clusters.py:122 +#: virtualization/models/clusters.py:122 msgid "clusters" msgstr "shluky" -#: netbox/virtualization/models/clusters.py:141 +#: virtualization/models/clusters.py:141 #, python-brace-format msgid "" "{count} devices are assigned as hosts for this cluster but are not in site " @@ -15338,48 +14593,48 @@ msgstr "" "{count} zařízení jsou přiřazena jako hostitelé pro tento cluster, ale nejsou" " na webu {site}" -#: netbox/virtualization/models/virtualmachines.py:123 +#: virtualization/models/virtualmachines.py:123 msgid "memory (MB)" msgstr "Paměť (MB)" -#: netbox/virtualization/models/virtualmachines.py:128 +#: virtualization/models/virtualmachines.py:128 msgid "disk (MB)" msgstr "disk (MB)" -#: netbox/virtualization/models/virtualmachines.py:166 +#: virtualization/models/virtualmachines.py:166 msgid "Virtual machine name must be unique per cluster." msgstr "Název virtuálního počítače musí být jedinečný pro každý cluster." -#: netbox/virtualization/models/virtualmachines.py:169 +#: virtualization/models/virtualmachines.py:169 msgid "virtual machine" msgstr "virtuální stroj" -#: netbox/virtualization/models/virtualmachines.py:170 +#: virtualization/models/virtualmachines.py:170 msgid "virtual machines" msgstr "virtuální stroje" -#: netbox/virtualization/models/virtualmachines.py:184 +#: virtualization/models/virtualmachines.py:184 msgid "A virtual machine must be assigned to a site and/or cluster." msgstr "Virtuální počítač musí být přiřazen k webu a/nebo clusteru." -#: netbox/virtualization/models/virtualmachines.py:191 +#: virtualization/models/virtualmachines.py:191 #, python-brace-format msgid "" "The selected cluster ({cluster}) is not assigned to this site ({site})." msgstr "Vybraný cluster ({cluster}) není přiřazen k tomuto webu ({site})." -#: netbox/virtualization/models/virtualmachines.py:198 +#: virtualization/models/virtualmachines.py:198 msgid "Must specify a cluster when assigning a host device." msgstr "Při přiřazování hostitelského zařízení je nutné zadat cluster." -#: netbox/virtualization/models/virtualmachines.py:203 +#: virtualization/models/virtualmachines.py:203 #, python-brace-format msgid "" "The selected device ({device}) is not assigned to this cluster ({cluster})." msgstr "" "Vybrané zařízení ({device}) není přiřazen k tomuto clusteru ({cluster})." -#: netbox/virtualization/models/virtualmachines.py:215 +#: virtualization/models/virtualmachines.py:215 #, python-brace-format msgid "" "The specified disk size ({size}) must match the aggregate size of assigned " @@ -15388,17 +14643,17 @@ msgstr "" "Zadaná velikost disku ({size}) musí odpovídat souhrnné velikosti přiřazených" " virtuálních disků ({total_size})." -#: netbox/virtualization/models/virtualmachines.py:229 +#: virtualization/models/virtualmachines.py:229 #, python-brace-format msgid "Must be an IPv{family} address. ({ip} is an IPv{version} address.)" msgstr "Musí to být IPV{family} adresa. ({ip} je IPV{version} adresa.)" -#: netbox/virtualization/models/virtualmachines.py:238 +#: virtualization/models/virtualmachines.py:238 #, python-brace-format msgid "The specified IP address ({ip}) is not assigned to this VM." msgstr "Zadaná adresa IP ({ip}) není přiřazen k tomuto virtuálnímu počítači." -#: netbox/virtualization/models/virtualmachines.py:396 +#: virtualization/models/virtualmachines.py:396 #, python-brace-format msgid "" "The selected parent interface ({parent}) belongs to a different virtual " @@ -15407,7 +14662,7 @@ msgstr "" "Vybrané nadřazené rozhraní ({parent}) patří k jinému virtuálnímu počítači " "({virtual_machine})." -#: netbox/virtualization/models/virtualmachines.py:411 +#: virtualization/models/virtualmachines.py:411 #, python-brace-format msgid "" "The selected bridge interface ({bridge}) belongs to a different virtual " @@ -15416,7 +14671,7 @@ msgstr "" "Vybrané rozhraní můstku ({bridge}) patří k jinému virtuálnímu počítači " "({virtual_machine})." -#: netbox/virtualization/models/virtualmachines.py:422 +#: virtualization/models/virtualmachines.py:422 #, python-brace-format msgid "" "The untagged VLAN ({untagged_vlan}) must belong to the same site as the " @@ -15425,399 +14680,392 @@ msgstr "" "Neznačená VLAN ({untagged_vlan}) musí patřit ke stejnému webu jako nadřazený" " virtuální stroj rozhraní, nebo musí být globální." -#: netbox/virtualization/models/virtualmachines.py:434 +#: virtualization/models/virtualmachines.py:434 msgid "size (MB)" msgstr "velikost (MB)" -#: netbox/virtualization/models/virtualmachines.py:438 +#: virtualization/models/virtualmachines.py:438 msgid "virtual disk" msgstr "virtuální disk" -#: netbox/virtualization/models/virtualmachines.py:439 +#: virtualization/models/virtualmachines.py:439 msgid "virtual disks" msgstr "virtuální disky" -#: netbox/virtualization/views.py:275 +#: virtualization/views.py:275 #, python-brace-format msgid "Added {count} devices to cluster {cluster}" msgstr "Přidal {count} zařízení do clusteru {cluster}" -#: netbox/virtualization/views.py:310 +#: virtualization/views.py:310 #, python-brace-format msgid "Removed {count} devices from cluster {cluster}" msgstr "Odstraněno {count} zařízení z clusteru {cluster}" -#: netbox/vpn/choices.py:31 +#: vpn/choices.py:31 msgid "IPsec - Transport" msgstr "IPsec - Přeprava" -#: netbox/vpn/choices.py:32 +#: vpn/choices.py:32 msgid "IPsec - Tunnel" msgstr "IPsec - Tunel" -#: netbox/vpn/choices.py:33 +#: vpn/choices.py:33 msgid "IP-in-IP" msgstr "IP v IP" -#: netbox/vpn/choices.py:34 +#: vpn/choices.py:34 msgid "GRE" msgstr "GREE" -#: netbox/vpn/choices.py:56 +#: vpn/choices.py:56 msgid "Hub" msgstr "Rozbočovač" -#: netbox/vpn/choices.py:57 +#: vpn/choices.py:57 msgid "Spoke" msgstr "Mluvil" -#: netbox/vpn/choices.py:80 +#: vpn/choices.py:80 msgid "Aggressive" msgstr "Agresivní" -#: netbox/vpn/choices.py:81 +#: vpn/choices.py:81 msgid "Main" msgstr "Hlavní" -#: netbox/vpn/choices.py:92 +#: vpn/choices.py:92 msgid "Pre-shared keys" msgstr "Předsdílené klíče" -#: netbox/vpn/choices.py:93 +#: vpn/choices.py:93 msgid "Certificates" msgstr "Certifikáty" -#: netbox/vpn/choices.py:94 +#: vpn/choices.py:94 msgid "RSA signatures" msgstr "Podpisy RSA" -#: netbox/vpn/choices.py:95 +#: vpn/choices.py:95 msgid "DSA signatures" msgstr "Podpisy DSA" -#: netbox/vpn/choices.py:178 netbox/vpn/choices.py:179 -#: netbox/vpn/choices.py:180 netbox/vpn/choices.py:181 -#: netbox/vpn/choices.py:182 netbox/vpn/choices.py:183 -#: netbox/vpn/choices.py:184 netbox/vpn/choices.py:185 -#: netbox/vpn/choices.py:186 netbox/vpn/choices.py:187 -#: netbox/vpn/choices.py:188 netbox/vpn/choices.py:189 -#: netbox/vpn/choices.py:190 netbox/vpn/choices.py:191 -#: netbox/vpn/choices.py:192 netbox/vpn/choices.py:193 -#: netbox/vpn/choices.py:194 netbox/vpn/choices.py:195 -#: netbox/vpn/choices.py:196 netbox/vpn/choices.py:197 -#: netbox/vpn/choices.py:198 netbox/vpn/choices.py:199 -#: netbox/vpn/choices.py:200 netbox/vpn/choices.py:201 +#: vpn/choices.py:178 vpn/choices.py:179 vpn/choices.py:180 vpn/choices.py:181 +#: vpn/choices.py:182 vpn/choices.py:183 vpn/choices.py:184 vpn/choices.py:185 +#: vpn/choices.py:186 vpn/choices.py:187 vpn/choices.py:188 vpn/choices.py:189 +#: vpn/choices.py:190 vpn/choices.py:191 vpn/choices.py:192 vpn/choices.py:193 +#: vpn/choices.py:194 vpn/choices.py:195 vpn/choices.py:196 vpn/choices.py:197 +#: vpn/choices.py:198 vpn/choices.py:199 vpn/choices.py:200 vpn/choices.py:201 #, python-brace-format msgid "Group {n}" msgstr "Skupina {n}" -#: netbox/vpn/choices.py:243 +#: vpn/choices.py:243 msgid "Ethernet Private LAN" msgstr "Ethernetová soukromá síť LAN" -#: netbox/vpn/choices.py:244 +#: vpn/choices.py:244 msgid "Ethernet Virtual Private LAN" msgstr "Ethernetová virtuální privátní síť LAN" -#: netbox/vpn/choices.py:247 +#: vpn/choices.py:247 msgid "Ethernet Private Tree" msgstr "Ethernetový soukromý strom" -#: netbox/vpn/choices.py:248 +#: vpn/choices.py:248 msgid "Ethernet Virtual Private Tree" msgstr "Virtuální privátní strom Ethernetu" -#: netbox/vpn/filtersets.py:41 +#: vpn/filtersets.py:41 msgid "Tunnel group (ID)" msgstr "Skupina tunelů (ID)" -#: netbox/vpn/filtersets.py:47 +#: vpn/filtersets.py:47 msgid "Tunnel group (slug)" msgstr "Skupina tunelů (slug)" -#: netbox/vpn/filtersets.py:54 +#: vpn/filtersets.py:54 msgid "IPSec profile (ID)" msgstr "Profil IPsec (ID)" -#: netbox/vpn/filtersets.py:60 +#: vpn/filtersets.py:60 msgid "IPSec profile (name)" msgstr "Profil IPsec (název)" -#: netbox/vpn/filtersets.py:81 +#: vpn/filtersets.py:81 msgid "Tunnel (ID)" msgstr "Tunel (ID)" -#: netbox/vpn/filtersets.py:87 +#: vpn/filtersets.py:87 msgid "Tunnel (name)" msgstr "Tunel (název)" -#: netbox/vpn/filtersets.py:118 +#: vpn/filtersets.py:118 msgid "Outside IP (ID)" msgstr "Vnější IP (ID)" -#: netbox/vpn/filtersets.py:130 netbox/vpn/filtersets.py:263 +#: vpn/filtersets.py:130 vpn/filtersets.py:263 msgid "IKE policy (ID)" msgstr "Zásady IKE (ID)" -#: netbox/vpn/filtersets.py:136 netbox/vpn/filtersets.py:269 +#: vpn/filtersets.py:136 vpn/filtersets.py:269 msgid "IKE policy (name)" msgstr "Zásady IKE (název)" -#: netbox/vpn/filtersets.py:200 netbox/vpn/filtersets.py:273 +#: vpn/filtersets.py:200 vpn/filtersets.py:273 msgid "IPSec policy (ID)" msgstr "Zásady IPsec (ID)" -#: netbox/vpn/filtersets.py:206 netbox/vpn/filtersets.py:279 +#: vpn/filtersets.py:206 vpn/filtersets.py:279 msgid "IPSec policy (name)" msgstr "Zásada IPsec (název)" -#: netbox/vpn/filtersets.py:348 +#: vpn/filtersets.py:348 msgid "L2VPN (slug)" msgstr "L2VPN (slug)" -#: netbox/vpn/filtersets.py:412 +#: vpn/filtersets.py:412 msgid "VM Interface (ID)" msgstr "Rozhraní virtuálního počítače (ID)" -#: netbox/vpn/filtersets.py:418 +#: vpn/filtersets.py:418 msgid "VLAN (name)" msgstr "VLAN (název)" -#: netbox/vpn/forms/bulk_edit.py:45 netbox/vpn/forms/bulk_import.py:42 -#: netbox/vpn/forms/filtersets.py:54 +#: vpn/forms/bulk_edit.py:45 vpn/forms/bulk_import.py:42 +#: vpn/forms/filtersets.py:54 msgid "Tunnel group" msgstr "Skupina tunelů" -#: netbox/vpn/forms/bulk_edit.py:117 netbox/vpn/models/crypto.py:47 +#: vpn/forms/bulk_edit.py:117 vpn/models/crypto.py:47 msgid "SA lifetime" msgstr "Životnost SA" -#: netbox/vpn/forms/bulk_edit.py:151 netbox/wireless/forms/bulk_edit.py:79 -#: netbox/wireless/forms/bulk_edit.py:126 -#: netbox/wireless/forms/filtersets.py:64 -#: netbox/wireless/forms/filtersets.py:98 +#: vpn/forms/bulk_edit.py:151 wireless/forms/bulk_edit.py:79 +#: wireless/forms/bulk_edit.py:126 wireless/forms/filtersets.py:64 +#: wireless/forms/filtersets.py:98 msgid "Pre-shared key" msgstr "Předsdílený klíč" -#: netbox/vpn/forms/bulk_edit.py:237 netbox/vpn/forms/bulk_import.py:239 -#: netbox/vpn/forms/filtersets.py:199 netbox/vpn/forms/model_forms.py:370 -#: netbox/vpn/models/crypto.py:104 +#: vpn/forms/bulk_edit.py:237 vpn/forms/bulk_import.py:239 +#: vpn/forms/filtersets.py:199 vpn/forms/model_forms.py:370 +#: vpn/models/crypto.py:104 msgid "IKE policy" msgstr "Zásady IKE" -#: netbox/vpn/forms/bulk_edit.py:242 netbox/vpn/forms/bulk_import.py:244 -#: netbox/vpn/forms/filtersets.py:204 netbox/vpn/forms/model_forms.py:374 -#: netbox/vpn/models/crypto.py:209 +#: vpn/forms/bulk_edit.py:242 vpn/forms/bulk_import.py:244 +#: vpn/forms/filtersets.py:204 vpn/forms/model_forms.py:374 +#: vpn/models/crypto.py:209 msgid "IPSec policy" msgstr "Zásady IPsec" -#: netbox/vpn/forms/bulk_import.py:50 +#: vpn/forms/bulk_import.py:50 msgid "Tunnel encapsulation" msgstr "Zapouzdření tunelu" -#: netbox/vpn/forms/bulk_import.py:83 +#: vpn/forms/bulk_import.py:83 msgid "Operational role" msgstr "Provozní role" -#: netbox/vpn/forms/bulk_import.py:90 +#: vpn/forms/bulk_import.py:90 msgid "Parent device of assigned interface" msgstr "Nadřazené zařízení přiřazeného rozhraní" -#: netbox/vpn/forms/bulk_import.py:97 +#: vpn/forms/bulk_import.py:97 msgid "Parent VM of assigned interface" msgstr "Nadřazený VM přiřazeného rozhraní" -#: netbox/vpn/forms/bulk_import.py:104 +#: vpn/forms/bulk_import.py:104 msgid "Device or virtual machine interface" msgstr "Rozhraní zařízení nebo virtuálního stroje" -#: netbox/vpn/forms/bulk_import.py:183 +#: vpn/forms/bulk_import.py:183 msgid "IKE proposal(s)" msgstr "Návrhy IKE" -#: netbox/vpn/forms/bulk_import.py:215 netbox/vpn/models/crypto.py:197 +#: vpn/forms/bulk_import.py:215 vpn/models/crypto.py:197 msgid "Diffie-Hellman group for Perfect Forward Secrecy" msgstr "Skupina Diffie-Hellman pro Perfect Forward Secrecy" -#: netbox/vpn/forms/bulk_import.py:222 +#: vpn/forms/bulk_import.py:222 msgid "IPSec proposal(s)" msgstr "Návrhy IPsec" -#: netbox/vpn/forms/bulk_import.py:236 +#: vpn/forms/bulk_import.py:236 msgid "IPSec protocol" msgstr "Protokol IPsec" -#: netbox/vpn/forms/bulk_import.py:266 +#: vpn/forms/bulk_import.py:266 msgid "L2VPN type" msgstr "Typ L2VPN" -#: netbox/vpn/forms/bulk_import.py:287 +#: vpn/forms/bulk_import.py:287 msgid "Parent device (for interface)" msgstr "Rodičovské zařízení (pro rozhraní)" -#: netbox/vpn/forms/bulk_import.py:294 +#: vpn/forms/bulk_import.py:294 msgid "Parent virtual machine (for interface)" msgstr "Nadřazený virtuální stroj (pro rozhraní)" -#: netbox/vpn/forms/bulk_import.py:301 +#: vpn/forms/bulk_import.py:301 msgid "Assigned interface (device or VM)" msgstr "Přiřazené rozhraní (zařízení nebo VM)" -#: netbox/vpn/forms/bulk_import.py:334 +#: vpn/forms/bulk_import.py:334 msgid "Cannot import device and VM interface terminations simultaneously." msgstr "" "Nelze importovat zakončení rozhraní zařízení a virtuálního počítače " "současně." -#: netbox/vpn/forms/bulk_import.py:336 +#: vpn/forms/bulk_import.py:336 msgid "Each termination must specify either an interface or a VLAN." msgstr "Každé ukončení musí specifikovat rozhraní nebo VLAN." -#: netbox/vpn/forms/bulk_import.py:338 +#: vpn/forms/bulk_import.py:338 msgid "Cannot assign both an interface and a VLAN." msgstr "Nelze přiřadit rozhraní i VLAN." -#: netbox/vpn/forms/filtersets.py:130 +#: vpn/forms/filtersets.py:130 msgid "IKE version" msgstr "IKE verze" -#: netbox/vpn/forms/filtersets.py:142 netbox/vpn/forms/filtersets.py:175 -#: netbox/vpn/forms/model_forms.py:298 netbox/vpn/forms/model_forms.py:334 +#: vpn/forms/filtersets.py:142 vpn/forms/filtersets.py:175 +#: vpn/forms/model_forms.py:298 vpn/forms/model_forms.py:334 msgid "Proposal" msgstr "Návrh" -#: netbox/vpn/forms/filtersets.py:251 +#: vpn/forms/filtersets.py:251 msgid "Assigned Object Type" msgstr "Typ přiřazeného objektu" -#: netbox/vpn/forms/model_forms.py:95 netbox/vpn/forms/model_forms.py:130 -#: netbox/vpn/forms/model_forms.py:240 netbox/vpn/tables/tunnels.py:91 +#: vpn/forms/model_forms.py:95 vpn/forms/model_forms.py:130 +#: vpn/forms/model_forms.py:240 vpn/tables/tunnels.py:91 msgid "Tunnel interface" msgstr "Rozhraní tunelu" -#: netbox/vpn/forms/model_forms.py:150 +#: vpn/forms/model_forms.py:150 msgid "First Termination" msgstr "První ukončení" -#: netbox/vpn/forms/model_forms.py:153 +#: vpn/forms/model_forms.py:153 msgid "Second Termination" msgstr "Druhé ukončení" -#: netbox/vpn/forms/model_forms.py:197 +#: vpn/forms/model_forms.py:197 msgid "This parameter is required when defining a termination." msgstr "Tento parametr je vyžadován při definování ukončení." -#: netbox/vpn/forms/model_forms.py:320 netbox/vpn/forms/model_forms.py:356 +#: vpn/forms/model_forms.py:320 vpn/forms/model_forms.py:356 msgid "Policy" msgstr "Politika" -#: netbox/vpn/forms/model_forms.py:487 +#: vpn/forms/model_forms.py:487 msgid "A termination must specify an interface or VLAN." msgstr "Ukončení musí specifikovat rozhraní nebo VLAN." -#: netbox/vpn/forms/model_forms.py:489 +#: vpn/forms/model_forms.py:489 msgid "" "A termination can only have one terminating object (an interface or VLAN)." msgstr "Ukončení může mít pouze jeden ukončující objekt (rozhraní nebo VLAN)." -#: netbox/vpn/models/crypto.py:33 +#: vpn/models/crypto.py:33 msgid "encryption algorithm" msgstr "šifrovací algoritmus" -#: netbox/vpn/models/crypto.py:37 +#: vpn/models/crypto.py:37 msgid "authentication algorithm" msgstr "ověřovací algoritmus" -#: netbox/vpn/models/crypto.py:44 +#: vpn/models/crypto.py:44 msgid "Diffie-Hellman group ID" msgstr "ID skupiny Diffie-Hellman" -#: netbox/vpn/models/crypto.py:50 +#: vpn/models/crypto.py:50 msgid "Security association lifetime (in seconds)" msgstr "Životnost asociace zabezpečení (v sekundách)" -#: netbox/vpn/models/crypto.py:59 +#: vpn/models/crypto.py:59 msgid "IKE proposal" msgstr "Návrh IKE" -#: netbox/vpn/models/crypto.py:60 +#: vpn/models/crypto.py:60 msgid "IKE proposals" msgstr "Návrhy IKE" -#: netbox/vpn/models/crypto.py:76 +#: vpn/models/crypto.py:76 msgid "version" msgstr "verze" -#: netbox/vpn/models/crypto.py:88 netbox/vpn/models/crypto.py:190 +#: vpn/models/crypto.py:88 vpn/models/crypto.py:190 msgid "proposals" msgstr "návrhy" -#: netbox/vpn/models/crypto.py:91 netbox/wireless/models.py:39 +#: vpn/models/crypto.py:91 wireless/models.py:39 msgid "pre-shared key" msgstr "předsdílený klíč" -#: netbox/vpn/models/crypto.py:105 +#: vpn/models/crypto.py:105 msgid "IKE policies" msgstr "Zásady IKE" -#: netbox/vpn/models/crypto.py:118 +#: vpn/models/crypto.py:118 msgid "Mode is required for selected IKE version" msgstr "Režim je vyžadován pro vybranou verzi IKE" -#: netbox/vpn/models/crypto.py:122 +#: vpn/models/crypto.py:122 msgid "Mode cannot be used for selected IKE version" msgstr "Režim nelze použít pro vybranou verzi IKE" -#: netbox/vpn/models/crypto.py:136 +#: vpn/models/crypto.py:136 msgid "encryption" msgstr "šifrování" -#: netbox/vpn/models/crypto.py:141 +#: vpn/models/crypto.py:141 msgid "authentication" msgstr "autentizace" -#: netbox/vpn/models/crypto.py:149 +#: vpn/models/crypto.py:149 msgid "Security association lifetime (seconds)" msgstr "Životnost asociace zabezpečení (v sekundách)" -#: netbox/vpn/models/crypto.py:155 +#: vpn/models/crypto.py:155 msgid "Security association lifetime (in kilobytes)" msgstr "Životnost asociace zabezpečení (v kilobajtech)" -#: netbox/vpn/models/crypto.py:164 +#: vpn/models/crypto.py:164 msgid "IPSec proposal" msgstr "Návrh protokolu IPsec" -#: netbox/vpn/models/crypto.py:165 +#: vpn/models/crypto.py:165 msgid "IPSec proposals" msgstr "Návrhy IPsec" -#: netbox/vpn/models/crypto.py:178 +#: vpn/models/crypto.py:178 msgid "Encryption and/or authentication algorithm must be defined" msgstr "Musí být definován šifrovací a/nebo ověřovací algoritmus" -#: netbox/vpn/models/crypto.py:210 +#: vpn/models/crypto.py:210 msgid "IPSec policies" msgstr "Zásady protokolu IPsec" -#: netbox/vpn/models/crypto.py:251 +#: vpn/models/crypto.py:251 msgid "IPSec profiles" msgstr "Profily IPsec" -#: netbox/vpn/models/l2vpn.py:116 +#: vpn/models/l2vpn.py:116 msgid "L2VPN termination" msgstr "Ukončení L2VPN" -#: netbox/vpn/models/l2vpn.py:117 +#: vpn/models/l2vpn.py:117 msgid "L2VPN terminations" msgstr "Ukončení L2VPN" -#: netbox/vpn/models/l2vpn.py:135 +#: vpn/models/l2vpn.py:135 #, python-brace-format msgid "L2VPN Termination already assigned ({assigned_object})" msgstr "Ukončení L2VPN je již přiřazeno ({assigned_object})" -#: netbox/vpn/models/l2vpn.py:147 +#: vpn/models/l2vpn.py:147 #, python-brace-format msgid "" "{l2vpn_type} L2VPNs cannot have more than two terminations; found " @@ -15826,194 +15074,186 @@ msgstr "" "{l2vpn_type} L2VPN nemohou mít více než dvě zakončení; nalezeno " "{terminations_count} již definované." -#: netbox/vpn/models/tunnels.py:26 +#: vpn/models/tunnels.py:26 msgid "tunnel group" msgstr "tunelová skupina" -#: netbox/vpn/models/tunnels.py:27 +#: vpn/models/tunnels.py:27 msgid "tunnel groups" msgstr "tunelové skupiny" -#: netbox/vpn/models/tunnels.py:53 +#: vpn/models/tunnels.py:53 msgid "encapsulation" msgstr "zapouzdření" -#: netbox/vpn/models/tunnels.py:72 +#: vpn/models/tunnels.py:72 msgid "tunnel ID" msgstr "ID tunelu" -#: netbox/vpn/models/tunnels.py:94 +#: vpn/models/tunnels.py:94 msgid "tunnel" msgstr "tunel" -#: netbox/vpn/models/tunnels.py:95 +#: vpn/models/tunnels.py:95 msgid "tunnels" msgstr "tunely" -#: netbox/vpn/models/tunnels.py:153 +#: vpn/models/tunnels.py:153 msgid "An object may be terminated to only one tunnel at a time." msgstr "Objekt může být ukončen pouze v jednom tunelu najednou." -#: netbox/vpn/models/tunnels.py:156 +#: vpn/models/tunnels.py:156 msgid "tunnel termination" msgstr "zakončení tunelu" -#: netbox/vpn/models/tunnels.py:157 +#: vpn/models/tunnels.py:157 msgid "tunnel terminations" msgstr "zakončení tunelu" -#: netbox/vpn/models/tunnels.py:174 +#: vpn/models/tunnels.py:174 #, python-brace-format msgid "{name} is already attached to a tunnel ({tunnel})." msgstr "{name} je již připojen k tunelu ({tunnel})." -#: netbox/vpn/tables/crypto.py:22 +#: vpn/tables/crypto.py:22 msgid "Authentication Method" msgstr "Metoda ověřování" -#: netbox/vpn/tables/crypto.py:25 netbox/vpn/tables/crypto.py:97 +#: vpn/tables/crypto.py:25 vpn/tables/crypto.py:97 msgid "Encryption Algorithm" msgstr "Šifrovací algoritmus" -#: netbox/vpn/tables/crypto.py:28 netbox/vpn/tables/crypto.py:100 +#: vpn/tables/crypto.py:28 vpn/tables/crypto.py:100 msgid "Authentication Algorithm" msgstr "Algoritmus ověřování" -#: netbox/vpn/tables/crypto.py:34 +#: vpn/tables/crypto.py:34 msgid "SA Lifetime" msgstr "Životnost SA" -#: netbox/vpn/tables/crypto.py:71 +#: vpn/tables/crypto.py:71 msgid "Pre-shared Key" msgstr "Předsdílený klíč" -#: netbox/vpn/tables/crypto.py:103 +#: vpn/tables/crypto.py:103 msgid "SA Lifetime (Seconds)" msgstr "Životnost SA (sekundy)" -#: netbox/vpn/tables/crypto.py:106 +#: vpn/tables/crypto.py:106 msgid "SA Lifetime (KB)" msgstr "Životnost SA (KB)" -#: netbox/vpn/tables/l2vpn.py:69 +#: vpn/tables/l2vpn.py:69 msgid "Object Parent" msgstr "Nadřazený objekt" -#: netbox/vpn/tables/l2vpn.py:74 +#: vpn/tables/l2vpn.py:74 msgid "Object Site" msgstr "Objektová lokalita" -#: netbox/wireless/choices.py:11 +#: wireless/choices.py:11 msgid "Access point" msgstr "Přístupový bod" -#: netbox/wireless/choices.py:12 +#: wireless/choices.py:12 msgid "Station" msgstr "Stanice" -#: netbox/wireless/choices.py:467 +#: wireless/choices.py:467 msgid "Open" msgstr "Otevřeno" -#: netbox/wireless/choices.py:469 +#: wireless/choices.py:469 msgid "WPA Personal (PSK)" msgstr "Osobní WPA (PSK)" -#: netbox/wireless/choices.py:470 +#: wireless/choices.py:470 msgid "WPA Enterprise" msgstr "Podnikové WPA" -#: netbox/wireless/forms/bulk_edit.py:73 -#: netbox/wireless/forms/bulk_edit.py:120 -#: netbox/wireless/forms/bulk_import.py:68 -#: netbox/wireless/forms/bulk_import.py:71 -#: netbox/wireless/forms/bulk_import.py:110 -#: netbox/wireless/forms/bulk_import.py:113 -#: netbox/wireless/forms/filtersets.py:59 -#: netbox/wireless/forms/filtersets.py:93 +#: wireless/forms/bulk_edit.py:73 wireless/forms/bulk_edit.py:120 +#: wireless/forms/bulk_import.py:68 wireless/forms/bulk_import.py:71 +#: wireless/forms/bulk_import.py:110 wireless/forms/bulk_import.py:113 +#: wireless/forms/filtersets.py:59 wireless/forms/filtersets.py:93 msgid "Authentication cipher" msgstr "Ověřovací šifra" -#: netbox/wireless/forms/bulk_edit.py:134 -#: netbox/wireless/forms/bulk_import.py:116 -#: netbox/wireless/forms/bulk_import.py:119 -#: netbox/wireless/forms/filtersets.py:106 +#: wireless/forms/bulk_edit.py:134 wireless/forms/bulk_import.py:116 +#: wireless/forms/bulk_import.py:119 wireless/forms/filtersets.py:106 msgid "Distance unit" msgstr "Jednotka vzdálenosti" -#: netbox/wireless/forms/bulk_import.py:52 +#: wireless/forms/bulk_import.py:52 msgid "Bridged VLAN" msgstr "Přemostěná VLAN" -#: netbox/wireless/forms/bulk_import.py:89 -#: netbox/wireless/tables/wirelesslink.py:28 +#: wireless/forms/bulk_import.py:89 wireless/tables/wirelesslink.py:28 msgid "Interface A" msgstr "Rozhraní A" -#: netbox/wireless/forms/bulk_import.py:93 -#: netbox/wireless/tables/wirelesslink.py:37 +#: wireless/forms/bulk_import.py:93 wireless/tables/wirelesslink.py:37 msgid "Interface B" msgstr "Rozhraní B" -#: netbox/wireless/forms/model_forms.py:161 +#: wireless/forms/model_forms.py:161 msgid "Side B" msgstr "Strana B" -#: netbox/wireless/models.py:31 +#: wireless/models.py:31 msgid "authentication cipher" msgstr "ověřovací šifra" -#: netbox/wireless/models.py:69 +#: wireless/models.py:69 msgid "wireless LAN group" msgstr "skupina bezdrátových sítí LAN" -#: netbox/wireless/models.py:70 +#: wireless/models.py:70 msgid "wireless LAN groups" msgstr "skupiny bezdrátových sítí LAN" -#: netbox/wireless/models.py:116 +#: wireless/models.py:116 msgid "wireless LAN" msgstr "bezdrátová síť LAN" -#: netbox/wireless/models.py:144 +#: wireless/models.py:144 msgid "interface A" msgstr "rozhraní A" -#: netbox/wireless/models.py:151 +#: wireless/models.py:151 msgid "interface B" msgstr "rozhraní B" -#: netbox/wireless/models.py:165 +#: wireless/models.py:165 msgid "distance" msgstr "vzdálenost" -#: netbox/wireless/models.py:172 +#: wireless/models.py:172 msgid "distance unit" msgstr "jednotka vzdálenosti" -#: netbox/wireless/models.py:219 +#: wireless/models.py:219 msgid "wireless link" msgstr "bezdrátové spojení" -#: netbox/wireless/models.py:220 +#: wireless/models.py:220 msgid "wireless links" msgstr "bezdrátové spoje" -#: netbox/wireless/models.py:236 +#: wireless/models.py:236 msgid "Must specify a unit when setting a wireless distance" msgstr "Při nastavování bezdrátové vzdálenosti je nutné zadat jednotku" -#: netbox/wireless/models.py:242 netbox/wireless/models.py:248 +#: wireless/models.py:242 wireless/models.py:248 #, python-brace-format msgid "{type} is not a wireless interface." msgstr "{type} není bezdrátové rozhraní." -#: netbox/wireless/utils.py:16 +#: wireless/utils.py:16 #, python-brace-format msgid "Invalid channel value: {channel}" msgstr "Neplatná hodnota kanálu: {channel}" -#: netbox/wireless/utils.py:26 +#: wireless/utils.py:26 #, python-brace-format msgid "Invalid channel attribute: {name}" msgstr "Neplatný atribut kanálu: {name}" diff --git a/netbox/translations/da/LC_MESSAGES/django.po b/netbox/translations/da/LC_MESSAGES/django.po index 14e00591d..e569dd86b 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: 2024-10-12 05:02+0000\n" +"POT-Creation-Date: 2024-10-28 19:20+0000\n" "PO-Revision-Date: 2023-10-30 17:48+0000\n" "Last-Translator: Jeremy Stretch, 2024\n" "Language-Team: Danish (https://app.transifex.com/netbox-community/teams/178115/da/)\n" @@ -24,2137 +24,1868 @@ msgstr "" "Language: da\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: netbox/account/tables.py:27 netbox/templates/account/token.html:22 -#: netbox/templates/users/token.html:17 netbox/users/forms/bulk_import.py:39 -#: netbox/users/forms/model_forms.py:112 +#: account/tables.py:27 templates/account/token.html:22 +#: templates/users/token.html:17 users/forms/bulk_import.py:39 +#: users/forms/model_forms.py:112 msgid "Key" msgstr "Nøgle" -#: netbox/account/tables.py:31 netbox/users/forms/filtersets.py:132 +#: account/tables.py:31 users/forms/filtersets.py:132 msgid "Write Enabled" msgstr "Skriv aktiveret" -#: netbox/account/tables.py:35 netbox/core/choices.py:86 -#: netbox/core/tables/jobs.py:29 netbox/core/tables/tasks.py:79 -#: netbox/extras/tables/tables.py:335 netbox/extras/tables/tables.py:566 -#: netbox/templates/account/token.html:43 -#: netbox/templates/core/configrevision.html:26 -#: netbox/templates/core/configrevision_restore.html:12 -#: netbox/templates/core/job.html:69 netbox/templates/core/rq_task.html:16 -#: netbox/templates/core/rq_task.html:73 -#: netbox/templates/core/rq_worker.html:14 -#: netbox/templates/extras/htmx/script_result.html:12 -#: netbox/templates/extras/journalentry.html:22 -#: netbox/templates/generic/object.html:58 -#: netbox/templates/users/token.html:35 +#: account/tables.py:35 core/choices.py:86 core/tables/jobs.py:29 +#: core/tables/tasks.py:79 extras/tables/tables.py:335 +#: extras/tables/tables.py:566 templates/account/token.html:43 +#: templates/core/configrevision.html:26 +#: templates/core/configrevision_restore.html:12 templates/core/job.html:69 +#: templates/core/rq_task.html:16 templates/core/rq_task.html:73 +#: templates/core/rq_worker.html:14 +#: templates/extras/htmx/script_result.html:12 +#: templates/extras/journalentry.html:22 templates/generic/object.html:58 +#: templates/users/token.html:35 msgid "Created" msgstr "Oprettet" -#: netbox/account/tables.py:39 netbox/templates/account/token.html:47 -#: netbox/templates/users/token.html:39 netbox/users/forms/bulk_edit.py:117 -#: netbox/users/forms/filtersets.py:136 +#: account/tables.py:39 templates/account/token.html:47 +#: templates/users/token.html:39 users/forms/bulk_edit.py:117 +#: users/forms/filtersets.py:136 msgid "Expires" msgstr "Udløber" -#: netbox/account/tables.py:42 netbox/users/forms/filtersets.py:141 +#: account/tables.py:42 users/forms/filtersets.py:141 msgid "Last Used" msgstr "Sidst brugt" -#: netbox/account/tables.py:45 netbox/templates/account/token.html:55 -#: netbox/templates/users/token.html:47 netbox/users/forms/bulk_edit.py:122 -#: netbox/users/forms/model_forms.py:124 +#: account/tables.py:45 templates/account/token.html:55 +#: templates/users/token.html:47 users/forms/bulk_edit.py:122 +#: users/forms/model_forms.py:124 msgid "Allowed IPs" msgstr "Tilladte IP'er" -#: netbox/account/views.py:114 +#: account/views.py:114 #, python-brace-format msgid "Logged in as {user}." msgstr "Logget ind som {user}." -#: netbox/account/views.py:164 +#: account/views.py:164 msgid "You have logged out." msgstr "Du er logget ud." -#: netbox/account/views.py:216 +#: account/views.py:216 msgid "Your preferences have been updated." msgstr "Dine præferencer er blevet opdateret." -#: netbox/account/views.py:239 +#: account/views.py:239 msgid "LDAP-authenticated user credentials cannot be changed within NetBox." msgstr "LDAP-godkendte brugeroplysninger kan ikke ændres i NetBox." -#: netbox/account/views.py:254 +#: account/views.py:254 msgid "Your password has been changed successfully." 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:185 -#: netbox/dcim/choices.py:237 netbox/dcim/choices.py:1530 -#: netbox/dcim/choices.py:1606 netbox/dcim/choices.py:1656 -#: netbox/virtualization/choices.py:20 netbox/virtualization/choices.py:45 -#: netbox/vpn/choices.py:18 +#: circuits/choices.py:21 dcim/choices.py:20 dcim/choices.py:102 +#: dcim/choices.py:185 dcim/choices.py:237 dcim/choices.py:1530 +#: dcim/choices.py:1606 dcim/choices.py:1656 virtualization/choices.py:20 +#: virtualization/choices.py:45 vpn/choices.py:18 msgid "Planned" msgstr "Planlagt" -#: netbox/circuits/choices.py:22 netbox/netbox/navigation/menu.py:305 +#: circuits/choices.py:22 netbox/navigation/menu.py:305 msgid "Provisioning" msgstr "Opretter" -#: netbox/circuits/choices.py:23 netbox/core/tables/tasks.py:22 -#: netbox/dcim/choices.py:22 netbox/dcim/choices.py:103 -#: netbox/dcim/choices.py:184 netbox/dcim/choices.py:236 -#: netbox/dcim/choices.py:1605 netbox/dcim/choices.py:1655 -#: netbox/extras/tables/tables.py:495 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:25 -#: netbox/templates/users/user.html:37 netbox/users/forms/bulk_edit.py:38 -#: netbox/virtualization/choices.py:22 netbox/virtualization/choices.py:44 -#: netbox/vpn/choices.py:19 netbox/wireless/choices.py:25 +#: circuits/choices.py:23 core/tables/tasks.py:22 dcim/choices.py:22 +#: dcim/choices.py:103 dcim/choices.py:184 dcim/choices.py:236 +#: dcim/choices.py:1605 dcim/choices.py:1655 extras/tables/tables.py:495 +#: ipam/choices.py:31 ipam/choices.py:49 ipam/choices.py:69 +#: ipam/choices.py:154 templates/extras/configcontext.html:25 +#: templates/users/user.html:37 users/forms/bulk_edit.py:38 +#: virtualization/choices.py:22 virtualization/choices.py:44 vpn/choices.py:19 +#: wireless/choices.py:25 msgid "Active" msgstr "Aktiv" -#: netbox/circuits/choices.py:24 netbox/dcim/choices.py:183 -#: netbox/dcim/choices.py:235 netbox/dcim/choices.py:1604 -#: netbox/dcim/choices.py:1657 netbox/virtualization/choices.py:24 -#: netbox/virtualization/choices.py:43 +#: circuits/choices.py:24 dcim/choices.py:183 dcim/choices.py:235 +#: dcim/choices.py:1604 dcim/choices.py:1657 virtualization/choices.py:24 +#: virtualization/choices.py:43 msgid "Offline" msgstr "Offline" -#: netbox/circuits/choices.py:25 +#: circuits/choices.py:25 msgid "Deprovisioning" msgstr "Nedlægger" -#: netbox/circuits/choices.py:26 +#: circuits/choices.py:26 msgid "Decommissioned" msgstr "Nedlagt" -#: netbox/circuits/choices.py:90 netbox/dcim/choices.py:1617 -#: netbox/tenancy/choices.py:17 +#: circuits/choices.py:90 dcim/choices.py:1617 tenancy/choices.py:17 msgid "Primary" msgstr "Primær" -#: netbox/circuits/choices.py:91 netbox/ipam/choices.py:90 -#: netbox/tenancy/choices.py:18 +#: circuits/choices.py:91 ipam/choices.py:90 tenancy/choices.py:18 msgid "Secondary" msgstr "Sekundær" -#: netbox/circuits/choices.py:92 netbox/tenancy/choices.py:19 +#: circuits/choices.py:92 tenancy/choices.py:19 msgid "Tertiary" msgstr "Tertiær" -#: netbox/circuits/choices.py:93 netbox/tenancy/choices.py:20 +#: circuits/choices.py:93 tenancy/choices.py:20 msgid "Inactive" msgstr "Inaktiv" -#: netbox/circuits/filtersets.py:31 netbox/circuits/filtersets.py:198 -#: netbox/dcim/filtersets.py:98 netbox/dcim/filtersets.py:152 -#: netbox/dcim/filtersets.py:212 netbox/dcim/filtersets.py:333 -#: netbox/dcim/filtersets.py:464 netbox/dcim/filtersets.py:1021 -#: netbox/dcim/filtersets.py:1368 netbox/dcim/filtersets.py:1903 -#: netbox/dcim/filtersets.py:2146 netbox/dcim/filtersets.py:2204 -#: netbox/ipam/filtersets.py:339 netbox/ipam/filtersets.py:959 -#: netbox/virtualization/filtersets.py:45 -#: netbox/virtualization/filtersets.py:173 netbox/vpn/filtersets.py:358 +#: circuits/filtersets.py:31 circuits/filtersets.py:198 dcim/filtersets.py:98 +#: dcim/filtersets.py:152 dcim/filtersets.py:212 dcim/filtersets.py:333 +#: dcim/filtersets.py:464 dcim/filtersets.py:1021 dcim/filtersets.py:1368 +#: dcim/filtersets.py:1903 dcim/filtersets.py:2146 dcim/filtersets.py:2204 +#: ipam/filtersets.py:339 ipam/filtersets.py:959 +#: virtualization/filtersets.py:45 virtualization/filtersets.py:173 +#: vpn/filtersets.py:358 msgid "Region (ID)" msgstr "Område (ID)" -#: netbox/circuits/filtersets.py:38 netbox/circuits/filtersets.py:205 -#: netbox/dcim/filtersets.py:105 netbox/dcim/filtersets.py:158 -#: netbox/dcim/filtersets.py:219 netbox/dcim/filtersets.py:340 -#: netbox/dcim/filtersets.py:471 netbox/dcim/filtersets.py:1028 -#: netbox/dcim/filtersets.py:1375 netbox/dcim/filtersets.py:1910 -#: netbox/dcim/filtersets.py:2153 netbox/dcim/filtersets.py:2211 -#: netbox/extras/filtersets.py:509 netbox/ipam/filtersets.py:346 -#: netbox/ipam/filtersets.py:966 netbox/virtualization/filtersets.py:52 -#: netbox/virtualization/filtersets.py:180 netbox/vpn/filtersets.py:353 +#: circuits/filtersets.py:38 circuits/filtersets.py:205 dcim/filtersets.py:105 +#: dcim/filtersets.py:158 dcim/filtersets.py:219 dcim/filtersets.py:340 +#: dcim/filtersets.py:471 dcim/filtersets.py:1028 dcim/filtersets.py:1375 +#: dcim/filtersets.py:1910 dcim/filtersets.py:2153 dcim/filtersets.py:2211 +#: extras/filtersets.py:509 ipam/filtersets.py:346 ipam/filtersets.py:966 +#: virtualization/filtersets.py:52 virtualization/filtersets.py:180 +#: vpn/filtersets.py:353 msgid "Region (slug)" msgstr "Region (slug)" -#: netbox/circuits/filtersets.py:44 netbox/circuits/filtersets.py:211 -#: netbox/dcim/filtersets.py:128 netbox/dcim/filtersets.py:225 -#: netbox/dcim/filtersets.py:346 netbox/dcim/filtersets.py:477 -#: netbox/dcim/filtersets.py:1034 netbox/dcim/filtersets.py:1381 -#: netbox/dcim/filtersets.py:1916 netbox/dcim/filtersets.py:2159 -#: netbox/dcim/filtersets.py:2217 netbox/ipam/filtersets.py:352 -#: netbox/ipam/filtersets.py:972 netbox/virtualization/filtersets.py:58 -#: netbox/virtualization/filtersets.py:186 +#: circuits/filtersets.py:44 circuits/filtersets.py:211 dcim/filtersets.py:128 +#: dcim/filtersets.py:225 dcim/filtersets.py:346 dcim/filtersets.py:477 +#: dcim/filtersets.py:1034 dcim/filtersets.py:1381 dcim/filtersets.py:1916 +#: dcim/filtersets.py:2159 dcim/filtersets.py:2217 ipam/filtersets.py:352 +#: ipam/filtersets.py:972 virtualization/filtersets.py:58 +#: virtualization/filtersets.py:186 msgid "Site group (ID)" msgstr "Områdegruppe (ID)" -#: netbox/circuits/filtersets.py:51 netbox/circuits/filtersets.py:218 -#: netbox/dcim/filtersets.py:135 netbox/dcim/filtersets.py:232 -#: netbox/dcim/filtersets.py:353 netbox/dcim/filtersets.py:484 -#: netbox/dcim/filtersets.py:1041 netbox/dcim/filtersets.py:1388 -#: netbox/dcim/filtersets.py:1923 netbox/dcim/filtersets.py:2166 -#: netbox/dcim/filtersets.py:2224 netbox/extras/filtersets.py:515 -#: netbox/ipam/filtersets.py:359 netbox/ipam/filtersets.py:979 -#: netbox/virtualization/filtersets.py:65 -#: netbox/virtualization/filtersets.py:193 +#: circuits/filtersets.py:51 circuits/filtersets.py:218 dcim/filtersets.py:135 +#: dcim/filtersets.py:232 dcim/filtersets.py:353 dcim/filtersets.py:484 +#: dcim/filtersets.py:1041 dcim/filtersets.py:1388 dcim/filtersets.py:1923 +#: dcim/filtersets.py:2166 dcim/filtersets.py:2224 extras/filtersets.py:515 +#: ipam/filtersets.py:359 ipam/filtersets.py:979 +#: virtualization/filtersets.py:65 virtualization/filtersets.py:193 msgid "Site group (slug)" msgstr "Områdegruppe (slug)" -#: netbox/circuits/filtersets.py:56 netbox/circuits/forms/bulk_edit.py:188 -#: netbox/circuits/forms/bulk_edit.py:216 -#: netbox/circuits/forms/bulk_import.py:124 -#: netbox/circuits/forms/filtersets.py:51 -#: netbox/circuits/forms/filtersets.py:171 -#: netbox/circuits/forms/filtersets.py:209 -#: netbox/circuits/forms/model_forms.py:138 -#: netbox/circuits/forms/model_forms.py:154 -#: netbox/circuits/tables/circuits.py:113 netbox/dcim/forms/bulk_edit.py:168 -#: netbox/dcim/forms/bulk_edit.py:329 netbox/dcim/forms/bulk_edit.py:677 -#: netbox/dcim/forms/bulk_edit.py:873 netbox/dcim/forms/bulk_import.py:131 -#: netbox/dcim/forms/bulk_import.py:230 netbox/dcim/forms/bulk_import.py:309 -#: netbox/dcim/forms/bulk_import.py:540 netbox/dcim/forms/bulk_import.py:1311 -#: netbox/dcim/forms/bulk_import.py:1339 netbox/dcim/forms/filtersets.py:87 -#: netbox/dcim/forms/filtersets.py:225 netbox/dcim/forms/filtersets.py:342 -#: netbox/dcim/forms/filtersets.py:439 netbox/dcim/forms/filtersets.py:753 -#: netbox/dcim/forms/filtersets.py:997 netbox/dcim/forms/filtersets.py:1021 -#: netbox/dcim/forms/filtersets.py:1111 netbox/dcim/forms/filtersets.py:1149 -#: netbox/dcim/forms/filtersets.py:1584 netbox/dcim/forms/filtersets.py:1608 -#: netbox/dcim/forms/filtersets.py:1632 netbox/dcim/forms/model_forms.py:137 -#: netbox/dcim/forms/model_forms.py:165 netbox/dcim/forms/model_forms.py:238 -#: netbox/dcim/forms/model_forms.py:463 netbox/dcim/forms/model_forms.py:723 -#: netbox/dcim/forms/object_create.py:391 netbox/dcim/tables/devices.py:153 -#: netbox/dcim/tables/power.py:26 netbox/dcim/tables/power.py:93 -#: netbox/dcim/tables/racks.py:122 netbox/dcim/tables/racks.py:207 -#: netbox/dcim/tables/sites.py:134 netbox/extras/filtersets.py:525 -#: netbox/ipam/forms/bulk_edit.py:217 netbox/ipam/forms/bulk_edit.py:284 -#: netbox/ipam/forms/bulk_edit.py:451 netbox/ipam/forms/bulk_edit.py:529 -#: netbox/ipam/forms/bulk_import.py:171 netbox/ipam/forms/bulk_import.py:429 -#: netbox/ipam/forms/filtersets.py:153 netbox/ipam/forms/filtersets.py:231 -#: netbox/ipam/forms/filtersets.py:432 netbox/ipam/forms/filtersets.py:489 -#: netbox/ipam/forms/model_forms.py:205 netbox/ipam/forms/model_forms.py:636 -#: netbox/ipam/tables/ip.py:245 netbox/ipam/tables/vlans.py:118 -#: netbox/ipam/tables/vlans.py:221 -#: netbox/templates/circuits/inc/circuit_termination_fields.html:6 -#: netbox/templates/dcim/device.html:22 -#: netbox/templates/dcim/inc/cable_termination.html:8 -#: netbox/templates/dcim/inc/cable_termination.html:33 -#: netbox/templates/dcim/location.html:37 -#: netbox/templates/dcim/powerpanel.html:22 netbox/templates/dcim/rack.html:20 -#: netbox/templates/dcim/rackreservation.html:28 -#: netbox/templates/dcim/site.html:28 netbox/templates/ipam/prefix.html:56 -#: netbox/templates/ipam/vlan.html:23 netbox/templates/ipam/vlan_edit.html:40 -#: netbox/templates/virtualization/cluster.html:42 -#: netbox/templates/virtualization/virtualmachine.html:95 -#: netbox/virtualization/forms/bulk_edit.py:91 -#: netbox/virtualization/forms/bulk_edit.py:109 -#: netbox/virtualization/forms/bulk_edit.py:124 -#: netbox/virtualization/forms/bulk_import.py:59 -#: netbox/virtualization/forms/bulk_import.py:85 -#: netbox/virtualization/forms/filtersets.py:79 -#: netbox/virtualization/forms/filtersets.py:148 -#: netbox/virtualization/forms/model_forms.py:71 -#: netbox/virtualization/forms/model_forms.py:104 -#: netbox/virtualization/forms/model_forms.py:171 -#: netbox/virtualization/tables/clusters.py:77 -#: netbox/virtualization/tables/virtualmachines.py:63 -#: netbox/vpn/forms/filtersets.py:266 netbox/wireless/forms/model_forms.py:76 -#: netbox/wireless/forms/model_forms.py:118 +#: circuits/filtersets.py:56 circuits/forms/bulk_edit.py:188 +#: circuits/forms/bulk_edit.py:216 circuits/forms/bulk_import.py:124 +#: circuits/forms/filtersets.py:51 circuits/forms/filtersets.py:171 +#: circuits/forms/filtersets.py:209 circuits/forms/model_forms.py:138 +#: circuits/forms/model_forms.py:154 circuits/tables/circuits.py:113 +#: dcim/forms/bulk_edit.py:168 dcim/forms/bulk_edit.py:329 +#: dcim/forms/bulk_edit.py:677 dcim/forms/bulk_edit.py:873 +#: dcim/forms/bulk_import.py:131 dcim/forms/bulk_import.py:230 +#: dcim/forms/bulk_import.py:309 dcim/forms/bulk_import.py:540 +#: dcim/forms/bulk_import.py:1311 dcim/forms/bulk_import.py:1339 +#: dcim/forms/filtersets.py:87 dcim/forms/filtersets.py:225 +#: dcim/forms/filtersets.py:342 dcim/forms/filtersets.py:439 +#: dcim/forms/filtersets.py:753 dcim/forms/filtersets.py:997 +#: dcim/forms/filtersets.py:1021 dcim/forms/filtersets.py:1111 +#: dcim/forms/filtersets.py:1149 dcim/forms/filtersets.py:1584 +#: dcim/forms/filtersets.py:1608 dcim/forms/filtersets.py:1632 +#: dcim/forms/model_forms.py:137 dcim/forms/model_forms.py:165 +#: dcim/forms/model_forms.py:238 dcim/forms/model_forms.py:463 +#: dcim/forms/model_forms.py:723 dcim/forms/object_create.py:391 +#: dcim/tables/devices.py:153 dcim/tables/power.py:26 dcim/tables/power.py:93 +#: dcim/tables/racks.py:122 dcim/tables/racks.py:207 dcim/tables/sites.py:134 +#: extras/filtersets.py:525 ipam/forms/bulk_edit.py:218 +#: ipam/forms/bulk_edit.py:285 ipam/forms/bulk_edit.py:484 +#: ipam/forms/bulk_import.py:171 ipam/forms/bulk_import.py:429 +#: ipam/forms/filtersets.py:153 ipam/forms/filtersets.py:231 +#: ipam/forms/filtersets.py:432 ipam/forms/filtersets.py:489 +#: ipam/forms/model_forms.py:205 ipam/forms/model_forms.py:636 +#: ipam/tables/ip.py:245 ipam/tables/vlans.py:118 ipam/tables/vlans.py:221 +#: templates/circuits/inc/circuit_termination_fields.html:6 +#: templates/dcim/device.html:22 templates/dcim/inc/cable_termination.html:8 +#: templates/dcim/inc/cable_termination.html:33 +#: templates/dcim/location.html:37 templates/dcim/powerpanel.html:22 +#: templates/dcim/rack.html:20 templates/dcim/rackreservation.html:28 +#: templates/dcim/site.html:28 templates/ipam/prefix.html:56 +#: templates/ipam/vlan.html:23 templates/ipam/vlan_edit.html:40 +#: templates/virtualization/cluster.html:42 +#: templates/virtualization/virtualmachine.html:95 +#: virtualization/forms/bulk_edit.py:91 virtualization/forms/bulk_edit.py:109 +#: virtualization/forms/bulk_edit.py:124 +#: virtualization/forms/bulk_import.py:59 +#: virtualization/forms/bulk_import.py:85 +#: virtualization/forms/filtersets.py:79 +#: virtualization/forms/filtersets.py:148 +#: virtualization/forms/model_forms.py:71 +#: virtualization/forms/model_forms.py:104 +#: virtualization/forms/model_forms.py:171 +#: virtualization/tables/clusters.py:77 +#: virtualization/tables/virtualmachines.py:63 vpn/forms/filtersets.py:266 +#: wireless/forms/model_forms.py:76 wireless/forms/model_forms.py:118 msgid "Site" msgstr "Område" -#: netbox/circuits/filtersets.py:62 netbox/circuits/filtersets.py:229 -#: netbox/circuits/filtersets.py:274 netbox/dcim/filtersets.py:242 -#: netbox/dcim/filtersets.py:363 netbox/dcim/filtersets.py:458 -#: netbox/extras/filtersets.py:531 netbox/ipam/filtersets.py:238 -#: netbox/ipam/filtersets.py:369 netbox/ipam/filtersets.py:989 -#: netbox/virtualization/filtersets.py:75 -#: netbox/virtualization/filtersets.py:203 netbox/vpn/filtersets.py:363 +#: circuits/filtersets.py:62 circuits/filtersets.py:229 +#: circuits/filtersets.py:274 dcim/filtersets.py:242 dcim/filtersets.py:363 +#: dcim/filtersets.py:458 extras/filtersets.py:531 ipam/filtersets.py:238 +#: ipam/filtersets.py:369 ipam/filtersets.py:989 +#: virtualization/filtersets.py:75 virtualization/filtersets.py:203 +#: vpn/filtersets.py:363 msgid "Site (slug)" msgstr "Område (slug)" -#: netbox/circuits/filtersets.py:67 +#: circuits/filtersets.py:67 msgid "ASN (ID)" msgstr "ASN (ID)" -#: netbox/circuits/filtersets.py:73 netbox/circuits/forms/filtersets.py:31 -#: netbox/ipam/forms/model_forms.py:159 netbox/ipam/models/asns.py:108 -#: netbox/ipam/models/asns.py:125 netbox/ipam/tables/asn.py:41 -#: netbox/templates/ipam/asn.html:20 +#: circuits/filtersets.py:73 circuits/forms/filtersets.py:31 +#: ipam/forms/model_forms.py:159 ipam/models/asns.py:108 +#: ipam/models/asns.py:125 ipam/tables/asn.py:41 templates/ipam/asn.html:20 msgid "ASN" msgstr "ASN" -#: netbox/circuits/filtersets.py:95 netbox/circuits/filtersets.py:122 -#: netbox/circuits/filtersets.py:156 netbox/circuits/filtersets.py:283 -#: netbox/circuits/filtersets.py:325 netbox/ipam/filtersets.py:243 +#: circuits/filtersets.py:95 circuits/filtersets.py:122 +#: circuits/filtersets.py:156 circuits/filtersets.py:283 +#: circuits/filtersets.py:325 ipam/filtersets.py:243 msgid "Provider (ID)" msgstr "Leverandør (ID)" -#: netbox/circuits/filtersets.py:101 netbox/circuits/filtersets.py:128 -#: netbox/circuits/filtersets.py:162 netbox/circuits/filtersets.py:289 -#: netbox/circuits/filtersets.py:331 netbox/ipam/filtersets.py:249 +#: circuits/filtersets.py:101 circuits/filtersets.py:128 +#: circuits/filtersets.py:162 circuits/filtersets.py:289 +#: circuits/filtersets.py:331 ipam/filtersets.py:249 msgid "Provider (slug)" msgstr "Leverandør (slug)" -#: netbox/circuits/filtersets.py:167 +#: circuits/filtersets.py:167 msgid "Provider account (ID)" msgstr "Leverandørkonto (ID)" -#: netbox/circuits/filtersets.py:173 +#: circuits/filtersets.py:173 msgid "Provider account (account)" msgstr "Leverandørkonto (konto)" -#: netbox/circuits/filtersets.py:178 +#: circuits/filtersets.py:178 msgid "Provider network (ID)" msgstr "Leverandørnetværk (ID)" -#: netbox/circuits/filtersets.py:182 +#: circuits/filtersets.py:182 msgid "Circuit type (ID)" msgstr "Kredsløbstype (ID)" -#: netbox/circuits/filtersets.py:188 +#: circuits/filtersets.py:188 msgid "Circuit type (slug)" msgstr "Kredsløbstype (slug)" -#: netbox/circuits/filtersets.py:223 netbox/circuits/filtersets.py:268 -#: netbox/dcim/filtersets.py:236 netbox/dcim/filtersets.py:357 -#: netbox/dcim/filtersets.py:452 netbox/dcim/filtersets.py:1045 -#: netbox/dcim/filtersets.py:1393 netbox/dcim/filtersets.py:1928 -#: netbox/dcim/filtersets.py:2170 netbox/dcim/filtersets.py:2229 -#: netbox/ipam/filtersets.py:232 netbox/ipam/filtersets.py:363 -#: netbox/ipam/filtersets.py:983 netbox/virtualization/filtersets.py:69 -#: netbox/virtualization/filtersets.py:197 netbox/vpn/filtersets.py:368 +#: circuits/filtersets.py:223 circuits/filtersets.py:268 +#: dcim/filtersets.py:236 dcim/filtersets.py:357 dcim/filtersets.py:452 +#: dcim/filtersets.py:1045 dcim/filtersets.py:1393 dcim/filtersets.py:1928 +#: dcim/filtersets.py:2170 dcim/filtersets.py:2229 ipam/filtersets.py:232 +#: ipam/filtersets.py:363 ipam/filtersets.py:983 +#: virtualization/filtersets.py:69 virtualization/filtersets.py:197 +#: vpn/filtersets.py:368 msgid "Site (ID)" msgstr "Område (ID)" -#: netbox/circuits/filtersets.py:233 netbox/circuits/filtersets.py:237 +#: circuits/filtersets.py:233 circuits/filtersets.py:237 msgid "Termination A (ID)" msgstr "Afslutning A (ID)" -#: netbox/circuits/filtersets.py:260 netbox/circuits/filtersets.py:320 -#: netbox/core/filtersets.py:77 netbox/core/filtersets.py:136 -#: netbox/core/filtersets.py:173 netbox/dcim/filtersets.py:751 -#: netbox/dcim/filtersets.py:1362 netbox/dcim/filtersets.py:2277 -#: netbox/extras/filtersets.py:41 netbox/extras/filtersets.py:63 -#: netbox/extras/filtersets.py:92 netbox/extras/filtersets.py:132 -#: netbox/extras/filtersets.py:181 netbox/extras/filtersets.py:209 -#: netbox/extras/filtersets.py:239 netbox/extras/filtersets.py:276 -#: netbox/extras/filtersets.py:348 netbox/extras/filtersets.py:391 -#: netbox/extras/filtersets.py:438 netbox/extras/filtersets.py:498 -#: netbox/extras/filtersets.py:657 netbox/extras/filtersets.py:703 -#: netbox/ipam/forms/model_forms.py:449 netbox/netbox/filtersets.py:282 -#: netbox/netbox/forms/__init__.py:22 netbox/netbox/forms/base.py:167 -#: netbox/templates/htmx/object_selector.html:28 -#: netbox/templates/inc/filter_list.html:45 -#: netbox/templates/ipam/ipaddress_assign.html:29 -#: netbox/templates/search.html:7 netbox/templates/search.html:26 -#: netbox/tenancy/filtersets.py:99 netbox/users/filtersets.py:23 -#: netbox/users/filtersets.py:57 netbox/users/filtersets.py:102 -#: netbox/users/filtersets.py:150 netbox/utilities/forms/forms.py:104 -#: netbox/utilities/templates/navigation/menu.html:16 +#: circuits/filtersets.py:260 circuits/filtersets.py:320 core/filtersets.py:77 +#: core/filtersets.py:136 core/filtersets.py:173 dcim/filtersets.py:751 +#: dcim/filtersets.py:1362 dcim/filtersets.py:2277 extras/filtersets.py:41 +#: extras/filtersets.py:63 extras/filtersets.py:92 extras/filtersets.py:132 +#: extras/filtersets.py:181 extras/filtersets.py:209 extras/filtersets.py:239 +#: extras/filtersets.py:276 extras/filtersets.py:348 extras/filtersets.py:391 +#: extras/filtersets.py:438 extras/filtersets.py:498 extras/filtersets.py:657 +#: extras/filtersets.py:703 ipam/forms/model_forms.py:449 +#: netbox/filtersets.py:282 netbox/forms/__init__.py:22 +#: netbox/forms/base.py:167 templates/htmx/object_selector.html:28 +#: templates/inc/filter_list.html:46 templates/ipam/ipaddress_assign.html:29 +#: templates/search.html:7 templates/search.html:26 tenancy/filtersets.py:99 +#: users/filtersets.py:23 users/filtersets.py:57 users/filtersets.py:102 +#: users/filtersets.py:150 utilities/forms/forms.py:104 +#: utilities/templates/navigation/menu.html:16 msgid "Search" msgstr "Søg" -#: netbox/circuits/filtersets.py:264 netbox/circuits/forms/bulk_edit.py:172 -#: netbox/circuits/forms/bulk_edit.py:246 -#: netbox/circuits/forms/bulk_import.py:115 -#: netbox/circuits/forms/filtersets.py:198 -#: netbox/circuits/forms/filtersets.py:214 -#: netbox/circuits/forms/filtersets.py:260 -#: netbox/circuits/forms/model_forms.py:111 -#: netbox/circuits/forms/model_forms.py:133 -#: netbox/circuits/forms/model_forms.py:199 -#: netbox/circuits/tables/circuits.py:104 -#: netbox/circuits/tables/circuits.py:164 netbox/dcim/forms/connections.py:73 -#: netbox/templates/circuits/circuit.html:15 -#: netbox/templates/circuits/circuitgroupassignment.html:26 -#: netbox/templates/circuits/circuittermination.html:19 -#: netbox/templates/dcim/inc/cable_termination.html:55 -#: netbox/templates/dcim/trace/circuit.html:4 +#: circuits/filtersets.py:264 circuits/forms/bulk_edit.py:172 +#: circuits/forms/bulk_edit.py:246 circuits/forms/bulk_import.py:115 +#: circuits/forms/filtersets.py:198 circuits/forms/filtersets.py:214 +#: circuits/forms/filtersets.py:260 circuits/forms/model_forms.py:111 +#: circuits/forms/model_forms.py:133 circuits/forms/model_forms.py:199 +#: circuits/tables/circuits.py:104 circuits/tables/circuits.py:164 +#: dcim/forms/connections.py:73 templates/circuits/circuit.html:15 +#: templates/circuits/circuitgroupassignment.html:26 +#: templates/circuits/circuittermination.html:19 +#: templates/dcim/inc/cable_termination.html:55 +#: templates/dcim/trace/circuit.html:4 msgid "Circuit" msgstr "Kredsløb" -#: netbox/circuits/filtersets.py:278 +#: circuits/filtersets.py:278 msgid "ProviderNetwork (ID)" msgstr "Leverandørnetværk (ID)" -#: netbox/circuits/filtersets.py:335 +#: circuits/filtersets.py:335 msgid "Circuit (ID)" msgstr "Kredsløb (ID)" -#: netbox/circuits/filtersets.py:341 +#: circuits/filtersets.py:341 msgid "Circuit (CID)" msgstr "Kredsløb (CID)" -#: netbox/circuits/filtersets.py:345 +#: circuits/filtersets.py:345 msgid "Circuit group (ID)" msgstr "Kredsløbsgruppe (ID)" -#: netbox/circuits/filtersets.py:351 +#: circuits/filtersets.py:351 msgid "Circuit group (slug)" msgstr "Kredsløbsgruppe (slug)" -#: netbox/circuits/forms/bulk_edit.py:30 -#: netbox/circuits/forms/filtersets.py:56 -#: netbox/circuits/forms/model_forms.py:29 -#: netbox/circuits/tables/providers.py:33 netbox/dcim/forms/bulk_edit.py:128 -#: netbox/dcim/forms/filtersets.py:195 netbox/dcim/forms/model_forms.py:123 -#: netbox/dcim/tables/sites.py:94 netbox/ipam/models/asns.py:126 -#: netbox/ipam/tables/asn.py:27 netbox/ipam/views.py:213 -#: netbox/netbox/navigation/menu.py:172 netbox/netbox/navigation/menu.py:175 -#: netbox/templates/circuits/provider.html:23 +#: circuits/forms/bulk_edit.py:30 circuits/forms/filtersets.py:56 +#: circuits/forms/model_forms.py:29 circuits/tables/providers.py:33 +#: dcim/forms/bulk_edit.py:128 dcim/forms/filtersets.py:195 +#: dcim/forms/model_forms.py:123 dcim/tables/sites.py:94 +#: ipam/models/asns.py:126 ipam/tables/asn.py:27 ipam/views.py:213 +#: netbox/navigation/menu.py:172 netbox/navigation/menu.py:175 +#: templates/circuits/provider.html:23 msgid "ASNs" msgstr "ASN'er" -#: netbox/circuits/forms/bulk_edit.py:34 netbox/circuits/forms/bulk_edit.py:56 -#: netbox/circuits/forms/bulk_edit.py:83 -#: netbox/circuits/forms/bulk_edit.py:104 -#: netbox/circuits/forms/bulk_edit.py:164 -#: netbox/circuits/forms/bulk_edit.py:183 -#: netbox/circuits/forms/bulk_edit.py:228 netbox/core/forms/bulk_edit.py:28 -#: netbox/dcim/forms/bulk_create.py:35 netbox/dcim/forms/bulk_edit.py:73 -#: netbox/dcim/forms/bulk_edit.py:92 netbox/dcim/forms/bulk_edit.py:151 -#: netbox/dcim/forms/bulk_edit.py:192 netbox/dcim/forms/bulk_edit.py:210 -#: netbox/dcim/forms/bulk_edit.py:288 netbox/dcim/forms/bulk_edit.py:432 -#: netbox/dcim/forms/bulk_edit.py:466 netbox/dcim/forms/bulk_edit.py:481 -#: netbox/dcim/forms/bulk_edit.py:540 netbox/dcim/forms/bulk_edit.py:584 -#: netbox/dcim/forms/bulk_edit.py:618 netbox/dcim/forms/bulk_edit.py:642 -#: netbox/dcim/forms/bulk_edit.py:715 netbox/dcim/forms/bulk_edit.py:767 -#: netbox/dcim/forms/bulk_edit.py:819 netbox/dcim/forms/bulk_edit.py:842 -#: netbox/dcim/forms/bulk_edit.py:890 netbox/dcim/forms/bulk_edit.py:960 -#: netbox/dcim/forms/bulk_edit.py:1013 netbox/dcim/forms/bulk_edit.py:1048 -#: netbox/dcim/forms/bulk_edit.py:1088 netbox/dcim/forms/bulk_edit.py:1132 -#: netbox/dcim/forms/bulk_edit.py:1177 netbox/dcim/forms/bulk_edit.py:1204 -#: netbox/dcim/forms/bulk_edit.py:1222 netbox/dcim/forms/bulk_edit.py:1240 -#: netbox/dcim/forms/bulk_edit.py:1258 netbox/dcim/forms/bulk_edit.py:1682 -#: netbox/extras/forms/bulk_edit.py:39 netbox/extras/forms/bulk_edit.py:149 -#: netbox/extras/forms/bulk_edit.py:178 netbox/extras/forms/bulk_edit.py:208 -#: netbox/extras/forms/bulk_edit.py:256 netbox/extras/forms/bulk_edit.py:274 -#: netbox/extras/forms/bulk_edit.py:298 netbox/extras/forms/bulk_edit.py:312 -#: netbox/extras/forms/bulk_edit.py:339 netbox/extras/tables/tables.py:79 -#: netbox/ipam/forms/bulk_edit.py:52 netbox/ipam/forms/bulk_edit.py:72 -#: netbox/ipam/forms/bulk_edit.py:92 netbox/ipam/forms/bulk_edit.py:116 -#: netbox/ipam/forms/bulk_edit.py:145 netbox/ipam/forms/bulk_edit.py:174 -#: netbox/ipam/forms/bulk_edit.py:193 netbox/ipam/forms/bulk_edit.py:275 -#: netbox/ipam/forms/bulk_edit.py:320 netbox/ipam/forms/bulk_edit.py:368 -#: netbox/ipam/forms/bulk_edit.py:411 netbox/ipam/forms/bulk_edit.py:427 -#: netbox/ipam/forms/bulk_edit.py:561 netbox/ipam/forms/bulk_edit.py:592 -#: netbox/templates/account/token.html:35 -#: netbox/templates/circuits/circuit.html:59 -#: netbox/templates/circuits/circuitgroup.html:32 -#: netbox/templates/circuits/circuittype.html:26 -#: netbox/templates/circuits/inc/circuit_termination_fields.html:88 -#: netbox/templates/circuits/provider.html:33 -#: netbox/templates/circuits/providernetwork.html:32 -#: netbox/templates/core/datasource.html:54 -#: netbox/templates/core/plugin.html:79 netbox/templates/dcim/cable.html:36 -#: netbox/templates/dcim/consoleport.html:44 -#: netbox/templates/dcim/consoleserverport.html:44 -#: netbox/templates/dcim/device.html:94 -#: netbox/templates/dcim/devicebay.html:32 -#: netbox/templates/dcim/devicerole.html:30 -#: netbox/templates/dcim/devicetype.html:33 -#: netbox/templates/dcim/frontport.html:58 -#: netbox/templates/dcim/interface.html:69 -#: netbox/templates/dcim/inventoryitem.html:60 -#: netbox/templates/dcim/inventoryitemrole.html:22 -#: netbox/templates/dcim/location.html:33 -#: netbox/templates/dcim/manufacturer.html:40 -#: netbox/templates/dcim/module.html:73 -#: netbox/templates/dcim/modulebay.html:42 -#: netbox/templates/dcim/moduletype.html:26 -#: netbox/templates/dcim/platform.html:33 -#: netbox/templates/dcim/powerfeed.html:40 -#: netbox/templates/dcim/poweroutlet.html:40 -#: netbox/templates/dcim/powerpanel.html:30 -#: netbox/templates/dcim/powerport.html:40 netbox/templates/dcim/rack.html:53 -#: netbox/templates/dcim/rackreservation.html:62 -#: netbox/templates/dcim/rackrole.html:26 -#: netbox/templates/dcim/racktype.html:24 -#: netbox/templates/dcim/rearport.html:54 netbox/templates/dcim/region.html:33 -#: netbox/templates/dcim/site.html:60 netbox/templates/dcim/sitegroup.html:33 -#: netbox/templates/dcim/virtualchassis.html:31 -#: netbox/templates/extras/configcontext.html:21 -#: netbox/templates/extras/configtemplate.html:17 -#: netbox/templates/extras/customfield.html:34 -#: netbox/templates/extras/dashboard/widget_add.html:14 -#: netbox/templates/extras/eventrule.html:21 -#: netbox/templates/extras/exporttemplate.html:19 -#: netbox/templates/extras/notificationgroup.html:20 -#: netbox/templates/extras/savedfilter.html:17 -#: netbox/templates/extras/script_list.html:45 -#: netbox/templates/extras/tag.html:20 netbox/templates/extras/webhook.html:17 -#: netbox/templates/generic/bulk_import.html:120 -#: netbox/templates/ipam/aggregate.html:43 netbox/templates/ipam/asn.html:42 -#: netbox/templates/ipam/asnrange.html:38 -#: netbox/templates/ipam/fhrpgroup.html:34 -#: netbox/templates/ipam/ipaddress.html:55 -#: netbox/templates/ipam/iprange.html:67 netbox/templates/ipam/prefix.html:81 -#: netbox/templates/ipam/rir.html:26 netbox/templates/ipam/role.html:26 -#: netbox/templates/ipam/routetarget.html:21 -#: netbox/templates/ipam/service.html:50 -#: netbox/templates/ipam/servicetemplate.html:27 -#: netbox/templates/ipam/vlan.html:62 netbox/templates/ipam/vlangroup.html:34 -#: netbox/templates/ipam/vrf.html:33 netbox/templates/tenancy/contact.html:67 -#: netbox/templates/tenancy/contactgroup.html:25 -#: netbox/templates/tenancy/contactrole.html:22 -#: netbox/templates/tenancy/tenant.html:24 -#: netbox/templates/tenancy/tenantgroup.html:33 -#: netbox/templates/users/group.html:21 -#: netbox/templates/users/objectpermission.html:21 -#: netbox/templates/users/token.html:27 -#: netbox/templates/virtualization/cluster.html:25 -#: netbox/templates/virtualization/clustergroup.html:26 -#: netbox/templates/virtualization/clustertype.html:26 -#: netbox/templates/virtualization/virtualdisk.html:39 -#: netbox/templates/virtualization/virtualmachine.html:31 -#: netbox/templates/virtualization/vminterface.html:51 -#: netbox/templates/vpn/ikepolicy.html:17 -#: netbox/templates/vpn/ikeproposal.html:17 -#: netbox/templates/vpn/ipsecpolicy.html:17 -#: netbox/templates/vpn/ipsecprofile.html:17 -#: netbox/templates/vpn/ipsecprofile.html:40 -#: netbox/templates/vpn/ipsecprofile.html:73 -#: netbox/templates/vpn/ipsecproposal.html:17 -#: netbox/templates/vpn/l2vpn.html:26 netbox/templates/vpn/tunnel.html:33 -#: netbox/templates/vpn/tunnelgroup.html:30 -#: netbox/templates/wireless/wirelesslan.html:26 -#: netbox/templates/wireless/wirelesslangroup.html:33 -#: netbox/templates/wireless/wirelesslink.html:34 -#: netbox/tenancy/forms/bulk_edit.py:32 netbox/tenancy/forms/bulk_edit.py:80 -#: netbox/tenancy/forms/bulk_edit.py:122 netbox/users/forms/bulk_edit.py:64 -#: netbox/users/forms/bulk_edit.py:82 netbox/users/forms/bulk_edit.py:112 -#: netbox/virtualization/forms/bulk_edit.py:32 -#: netbox/virtualization/forms/bulk_edit.py:46 -#: netbox/virtualization/forms/bulk_edit.py:100 -#: netbox/virtualization/forms/bulk_edit.py:177 -#: netbox/virtualization/forms/bulk_edit.py:228 -#: netbox/virtualization/forms/bulk_edit.py:337 -#: netbox/vpn/forms/bulk_edit.py:28 netbox/vpn/forms/bulk_edit.py:64 -#: netbox/vpn/forms/bulk_edit.py:121 netbox/vpn/forms/bulk_edit.py:155 -#: netbox/vpn/forms/bulk_edit.py:190 netbox/vpn/forms/bulk_edit.py:215 -#: netbox/vpn/forms/bulk_edit.py:247 netbox/vpn/forms/bulk_edit.py:274 -#: netbox/wireless/forms/bulk_edit.py:29 netbox/wireless/forms/bulk_edit.py:82 -#: netbox/wireless/forms/bulk_edit.py:140 +#: circuits/forms/bulk_edit.py:34 circuits/forms/bulk_edit.py:56 +#: circuits/forms/bulk_edit.py:83 circuits/forms/bulk_edit.py:104 +#: circuits/forms/bulk_edit.py:164 circuits/forms/bulk_edit.py:183 +#: circuits/forms/bulk_edit.py:228 core/forms/bulk_edit.py:28 +#: dcim/forms/bulk_create.py:35 dcim/forms/bulk_edit.py:73 +#: dcim/forms/bulk_edit.py:92 dcim/forms/bulk_edit.py:151 +#: dcim/forms/bulk_edit.py:192 dcim/forms/bulk_edit.py:210 +#: dcim/forms/bulk_edit.py:288 dcim/forms/bulk_edit.py:432 +#: dcim/forms/bulk_edit.py:466 dcim/forms/bulk_edit.py:481 +#: dcim/forms/bulk_edit.py:540 dcim/forms/bulk_edit.py:584 +#: dcim/forms/bulk_edit.py:618 dcim/forms/bulk_edit.py:642 +#: dcim/forms/bulk_edit.py:715 dcim/forms/bulk_edit.py:767 +#: dcim/forms/bulk_edit.py:819 dcim/forms/bulk_edit.py:842 +#: dcim/forms/bulk_edit.py:890 dcim/forms/bulk_edit.py:960 +#: dcim/forms/bulk_edit.py:1013 dcim/forms/bulk_edit.py:1048 +#: dcim/forms/bulk_edit.py:1088 dcim/forms/bulk_edit.py:1132 +#: dcim/forms/bulk_edit.py:1177 dcim/forms/bulk_edit.py:1204 +#: dcim/forms/bulk_edit.py:1222 dcim/forms/bulk_edit.py:1240 +#: dcim/forms/bulk_edit.py:1258 dcim/forms/bulk_edit.py:1682 +#: extras/forms/bulk_edit.py:39 extras/forms/bulk_edit.py:149 +#: extras/forms/bulk_edit.py:178 extras/forms/bulk_edit.py:208 +#: extras/forms/bulk_edit.py:256 extras/forms/bulk_edit.py:274 +#: extras/forms/bulk_edit.py:298 extras/forms/bulk_edit.py:312 +#: extras/forms/bulk_edit.py:339 extras/tables/tables.py:79 +#: ipam/forms/bulk_edit.py:53 ipam/forms/bulk_edit.py:73 +#: ipam/forms/bulk_edit.py:93 ipam/forms/bulk_edit.py:117 +#: ipam/forms/bulk_edit.py:146 ipam/forms/bulk_edit.py:175 +#: ipam/forms/bulk_edit.py:194 ipam/forms/bulk_edit.py:276 +#: ipam/forms/bulk_edit.py:321 ipam/forms/bulk_edit.py:369 +#: ipam/forms/bulk_edit.py:412 ipam/forms/bulk_edit.py:428 +#: ipam/forms/bulk_edit.py:516 ipam/forms/bulk_edit.py:547 +#: templates/account/token.html:35 templates/circuits/circuit.html:59 +#: templates/circuits/circuitgroup.html:32 +#: templates/circuits/circuittype.html:26 +#: templates/circuits/inc/circuit_termination_fields.html:88 +#: templates/circuits/provider.html:33 +#: templates/circuits/providernetwork.html:32 +#: templates/core/datasource.html:54 templates/core/plugin.html:80 +#: templates/dcim/cable.html:36 templates/dcim/consoleport.html:44 +#: templates/dcim/consoleserverport.html:44 templates/dcim/device.html:94 +#: templates/dcim/devicebay.html:32 templates/dcim/devicerole.html:30 +#: templates/dcim/devicetype.html:33 templates/dcim/frontport.html:58 +#: templates/dcim/interface.html:69 templates/dcim/inventoryitem.html:60 +#: templates/dcim/inventoryitemrole.html:22 templates/dcim/location.html:33 +#: templates/dcim/manufacturer.html:40 templates/dcim/module.html:73 +#: templates/dcim/modulebay.html:42 templates/dcim/moduletype.html:37 +#: templates/dcim/platform.html:33 templates/dcim/powerfeed.html:40 +#: templates/dcim/poweroutlet.html:40 templates/dcim/powerpanel.html:30 +#: templates/dcim/powerport.html:40 templates/dcim/rack.html:53 +#: templates/dcim/rackreservation.html:62 templates/dcim/rackrole.html:26 +#: templates/dcim/racktype.html:24 templates/dcim/rearport.html:54 +#: templates/dcim/region.html:33 templates/dcim/site.html:60 +#: templates/dcim/sitegroup.html:33 templates/dcim/virtualchassis.html:31 +#: templates/extras/configcontext.html:21 +#: templates/extras/configtemplate.html:17 +#: templates/extras/customfield.html:34 +#: templates/extras/dashboard/widget_add.html:14 +#: templates/extras/eventrule.html:21 templates/extras/exporttemplate.html:19 +#: templates/extras/notificationgroup.html:20 +#: templates/extras/savedfilter.html:17 templates/extras/script_list.html:45 +#: templates/extras/tag.html:20 templates/extras/webhook.html:17 +#: templates/generic/bulk_import.html:120 templates/ipam/aggregate.html:43 +#: templates/ipam/asn.html:42 templates/ipam/asnrange.html:38 +#: templates/ipam/fhrpgroup.html:34 templates/ipam/ipaddress.html:55 +#: templates/ipam/iprange.html:67 templates/ipam/prefix.html:81 +#: templates/ipam/rir.html:26 templates/ipam/role.html:26 +#: templates/ipam/routetarget.html:21 templates/ipam/service.html:50 +#: templates/ipam/servicetemplate.html:27 templates/ipam/vlan.html:62 +#: templates/ipam/vlangroup.html:34 templates/ipam/vrf.html:33 +#: templates/tenancy/contact.html:67 templates/tenancy/contactgroup.html:25 +#: templates/tenancy/contactrole.html:22 templates/tenancy/tenant.html:24 +#: templates/tenancy/tenantgroup.html:33 templates/users/group.html:21 +#: templates/users/objectpermission.html:21 templates/users/token.html:27 +#: templates/virtualization/cluster.html:25 +#: templates/virtualization/clustergroup.html:26 +#: templates/virtualization/clustertype.html:26 +#: templates/virtualization/virtualdisk.html:39 +#: templates/virtualization/virtualmachine.html:31 +#: templates/virtualization/vminterface.html:51 +#: templates/vpn/ikepolicy.html:17 templates/vpn/ikeproposal.html:17 +#: templates/vpn/ipsecpolicy.html:17 templates/vpn/ipsecprofile.html:17 +#: templates/vpn/ipsecprofile.html:40 templates/vpn/ipsecprofile.html:73 +#: templates/vpn/ipsecproposal.html:17 templates/vpn/l2vpn.html:26 +#: templates/vpn/tunnel.html:33 templates/vpn/tunnelgroup.html:30 +#: templates/wireless/wirelesslan.html:26 +#: templates/wireless/wirelesslangroup.html:33 +#: templates/wireless/wirelesslink.html:34 tenancy/forms/bulk_edit.py:32 +#: tenancy/forms/bulk_edit.py:80 tenancy/forms/bulk_edit.py:122 +#: users/forms/bulk_edit.py:64 users/forms/bulk_edit.py:82 +#: users/forms/bulk_edit.py:112 virtualization/forms/bulk_edit.py:32 +#: virtualization/forms/bulk_edit.py:46 virtualization/forms/bulk_edit.py:100 +#: virtualization/forms/bulk_edit.py:177 virtualization/forms/bulk_edit.py:228 +#: virtualization/forms/bulk_edit.py:337 vpn/forms/bulk_edit.py:28 +#: vpn/forms/bulk_edit.py:64 vpn/forms/bulk_edit.py:121 +#: vpn/forms/bulk_edit.py:155 vpn/forms/bulk_edit.py:190 +#: vpn/forms/bulk_edit.py:215 vpn/forms/bulk_edit.py:247 +#: vpn/forms/bulk_edit.py:274 wireless/forms/bulk_edit.py:29 +#: wireless/forms/bulk_edit.py:82 wireless/forms/bulk_edit.py:140 msgid "Description" msgstr "Beskrivelse" -#: netbox/circuits/forms/bulk_edit.py:51 netbox/circuits/forms/bulk_edit.py:73 -#: netbox/circuits/forms/bulk_edit.py:123 -#: netbox/circuits/forms/bulk_import.py:36 -#: netbox/circuits/forms/bulk_import.py:51 -#: netbox/circuits/forms/bulk_import.py:74 -#: netbox/circuits/forms/filtersets.py:70 -#: netbox/circuits/forms/filtersets.py:88 -#: netbox/circuits/forms/filtersets.py:116 -#: netbox/circuits/forms/filtersets.py:131 -#: netbox/circuits/forms/filtersets.py:199 -#: netbox/circuits/forms/filtersets.py:232 -#: netbox/circuits/forms/filtersets.py:255 -#: netbox/circuits/forms/model_forms.py:47 -#: netbox/circuits/forms/model_forms.py:61 -#: netbox/circuits/forms/model_forms.py:93 -#: netbox/circuits/tables/circuits.py:58 -#: netbox/circuits/tables/circuits.py:108 -#: netbox/circuits/tables/circuits.py:160 -#: netbox/circuits/tables/providers.py:72 -#: netbox/circuits/tables/providers.py:103 -#: netbox/templates/circuits/circuit.html:18 -#: netbox/templates/circuits/circuittermination.html:25 -#: netbox/templates/circuits/provider.html:20 -#: netbox/templates/circuits/provideraccount.html:20 -#: netbox/templates/circuits/providernetwork.html:20 -#: netbox/templates/dcim/inc/cable_termination.html:51 +#: circuits/forms/bulk_edit.py:51 circuits/forms/bulk_edit.py:73 +#: circuits/forms/bulk_edit.py:123 circuits/forms/bulk_import.py:36 +#: circuits/forms/bulk_import.py:51 circuits/forms/bulk_import.py:74 +#: circuits/forms/filtersets.py:70 circuits/forms/filtersets.py:88 +#: circuits/forms/filtersets.py:116 circuits/forms/filtersets.py:131 +#: circuits/forms/filtersets.py:199 circuits/forms/filtersets.py:232 +#: circuits/forms/filtersets.py:255 circuits/forms/model_forms.py:47 +#: circuits/forms/model_forms.py:61 circuits/forms/model_forms.py:93 +#: circuits/tables/circuits.py:58 circuits/tables/circuits.py:108 +#: circuits/tables/circuits.py:160 circuits/tables/providers.py:72 +#: circuits/tables/providers.py:103 templates/circuits/circuit.html:18 +#: templates/circuits/circuittermination.html:25 +#: templates/circuits/provider.html:20 +#: templates/circuits/provideraccount.html:20 +#: templates/circuits/providernetwork.html:20 +#: templates/dcim/inc/cable_termination.html:51 msgid "Provider" msgstr "Leverandør" -#: netbox/circuits/forms/bulk_edit.py:80 -#: netbox/circuits/forms/filtersets.py:91 -#: netbox/templates/circuits/providernetwork.html:28 +#: circuits/forms/bulk_edit.py:80 circuits/forms/filtersets.py:91 +#: templates/circuits/providernetwork.html:28 msgid "Service ID" msgstr "Tjeneste-id" -#: netbox/circuits/forms/bulk_edit.py:100 -#: netbox/circuits/forms/filtersets.py:107 netbox/dcim/forms/bulk_edit.py:206 -#: netbox/dcim/forms/bulk_edit.py:604 netbox/dcim/forms/bulk_edit.py:804 -#: netbox/dcim/forms/bulk_edit.py:1173 netbox/dcim/forms/bulk_edit.py:1200 -#: netbox/dcim/forms/bulk_edit.py:1678 netbox/dcim/forms/filtersets.py:1064 -#: netbox/dcim/forms/filtersets.py:1455 netbox/dcim/forms/filtersets.py:1479 -#: netbox/dcim/tables/devices.py:704 netbox/dcim/tables/devices.py:761 -#: netbox/dcim/tables/devices.py:1003 netbox/dcim/tables/devicetypes.py:249 -#: netbox/dcim/tables/devicetypes.py:264 netbox/dcim/tables/racks.py:33 -#: netbox/extras/forms/bulk_edit.py:270 netbox/extras/tables/tables.py:443 -#: netbox/templates/circuits/circuittype.html:30 -#: netbox/templates/dcim/cable.html:40 -#: netbox/templates/dcim/devicerole.html:34 -#: netbox/templates/dcim/frontport.html:40 -#: netbox/templates/dcim/inventoryitemrole.html:26 -#: netbox/templates/dcim/rackrole.html:30 -#: netbox/templates/dcim/rearport.html:40 netbox/templates/extras/tag.html:26 +#: circuits/forms/bulk_edit.py:100 circuits/forms/filtersets.py:107 +#: dcim/forms/bulk_edit.py:206 dcim/forms/bulk_edit.py:604 +#: dcim/forms/bulk_edit.py:804 dcim/forms/bulk_edit.py:1173 +#: dcim/forms/bulk_edit.py:1200 dcim/forms/bulk_edit.py:1678 +#: dcim/forms/filtersets.py:1064 dcim/forms/filtersets.py:1455 +#: dcim/forms/filtersets.py:1479 dcim/tables/devices.py:704 +#: dcim/tables/devices.py:761 dcim/tables/devices.py:1003 +#: dcim/tables/devicetypes.py:249 dcim/tables/devicetypes.py:264 +#: dcim/tables/racks.py:33 extras/forms/bulk_edit.py:270 +#: extras/tables/tables.py:443 templates/circuits/circuittype.html:30 +#: templates/dcim/cable.html:40 templates/dcim/devicerole.html:34 +#: templates/dcim/frontport.html:40 templates/dcim/inventoryitemrole.html:26 +#: templates/dcim/rackrole.html:30 templates/dcim/rearport.html:40 +#: templates/extras/tag.html:26 msgid "Color" msgstr "Farve" -#: netbox/circuits/forms/bulk_edit.py:118 -#: netbox/circuits/forms/bulk_import.py:87 -#: netbox/circuits/forms/filtersets.py:126 netbox/core/forms/bulk_edit.py:18 -#: netbox/core/forms/filtersets.py:33 netbox/core/tables/change_logging.py:32 -#: netbox/core/tables/data.py:20 netbox/core/tables/jobs.py:18 -#: netbox/dcim/forms/bulk_edit.py:782 netbox/dcim/forms/bulk_edit.py:921 -#: netbox/dcim/forms/bulk_edit.py:989 netbox/dcim/forms/bulk_edit.py:1008 -#: netbox/dcim/forms/bulk_edit.py:1031 netbox/dcim/forms/bulk_edit.py:1073 -#: netbox/dcim/forms/bulk_edit.py:1117 netbox/dcim/forms/bulk_edit.py:1168 -#: netbox/dcim/forms/bulk_edit.py:1195 netbox/dcim/forms/bulk_import.py:188 -#: netbox/dcim/forms/bulk_import.py:260 netbox/dcim/forms/bulk_import.py:708 -#: netbox/dcim/forms/bulk_import.py:734 netbox/dcim/forms/bulk_import.py:760 -#: netbox/dcim/forms/bulk_import.py:780 netbox/dcim/forms/bulk_import.py:863 -#: netbox/dcim/forms/bulk_import.py:957 netbox/dcim/forms/bulk_import.py:999 -#: netbox/dcim/forms/bulk_import.py:1213 netbox/dcim/forms/bulk_import.py:1376 -#: netbox/dcim/forms/filtersets.py:955 netbox/dcim/forms/filtersets.py:1054 -#: netbox/dcim/forms/filtersets.py:1175 netbox/dcim/forms/filtersets.py:1247 -#: netbox/dcim/forms/filtersets.py:1272 netbox/dcim/forms/filtersets.py:1296 -#: netbox/dcim/forms/filtersets.py:1316 netbox/dcim/forms/filtersets.py:1353 -#: netbox/dcim/forms/filtersets.py:1450 netbox/dcim/forms/filtersets.py:1474 -#: netbox/dcim/forms/model_forms.py:703 netbox/dcim/forms/model_forms.py:709 -#: netbox/dcim/forms/object_import.py:84 -#: netbox/dcim/forms/object_import.py:113 -#: netbox/dcim/forms/object_import.py:145 netbox/dcim/tables/devices.py:178 -#: netbox/dcim/tables/devices.py:814 netbox/dcim/tables/power.py:77 -#: netbox/dcim/tables/racks.py:138 netbox/extras/forms/bulk_import.py:42 -#: netbox/extras/tables/tables.py:405 netbox/extras/tables/tables.py:465 -#: netbox/netbox/tables/tables.py:240 -#: netbox/templates/circuits/circuit.html:30 -#: netbox/templates/core/datasource.html:38 -#: netbox/templates/dcim/cable.html:15 -#: netbox/templates/dcim/consoleport.html:36 -#: netbox/templates/dcim/consoleserverport.html:36 -#: netbox/templates/dcim/frontport.html:36 -#: netbox/templates/dcim/interface.html:46 -#: netbox/templates/dcim/interface.html:169 -#: netbox/templates/dcim/interface.html:311 -#: netbox/templates/dcim/powerfeed.html:32 -#: netbox/templates/dcim/poweroutlet.html:36 -#: netbox/templates/dcim/powerport.html:36 -#: netbox/templates/dcim/rearport.html:36 -#: netbox/templates/extras/eventrule.html:74 -#: netbox/templates/virtualization/cluster.html:17 -#: netbox/templates/vpn/l2vpn.html:22 -#: netbox/templates/wireless/inc/authentication_attrs.html:8 -#: netbox/templates/wireless/inc/wirelesslink_interface.html:14 -#: netbox/virtualization/forms/bulk_edit.py:60 -#: netbox/virtualization/forms/bulk_import.py:41 -#: netbox/virtualization/forms/filtersets.py:54 -#: netbox/virtualization/forms/model_forms.py:62 -#: netbox/virtualization/tables/clusters.py:66 -#: netbox/vpn/forms/bulk_edit.py:264 netbox/vpn/forms/bulk_import.py:264 -#: netbox/vpn/forms/filtersets.py:217 netbox/vpn/forms/model_forms.py:84 -#: netbox/vpn/forms/model_forms.py:119 netbox/vpn/forms/model_forms.py:231 +#: circuits/forms/bulk_edit.py:118 circuits/forms/bulk_import.py:87 +#: circuits/forms/filtersets.py:126 core/forms/bulk_edit.py:18 +#: core/forms/filtersets.py:33 core/tables/change_logging.py:32 +#: core/tables/data.py:20 core/tables/jobs.py:18 dcim/forms/bulk_edit.py:782 +#: dcim/forms/bulk_edit.py:921 dcim/forms/bulk_edit.py:989 +#: dcim/forms/bulk_edit.py:1008 dcim/forms/bulk_edit.py:1031 +#: dcim/forms/bulk_edit.py:1073 dcim/forms/bulk_edit.py:1117 +#: dcim/forms/bulk_edit.py:1168 dcim/forms/bulk_edit.py:1195 +#: dcim/forms/bulk_import.py:188 dcim/forms/bulk_import.py:260 +#: dcim/forms/bulk_import.py:708 dcim/forms/bulk_import.py:734 +#: dcim/forms/bulk_import.py:760 dcim/forms/bulk_import.py:780 +#: dcim/forms/bulk_import.py:863 dcim/forms/bulk_import.py:957 +#: dcim/forms/bulk_import.py:999 dcim/forms/bulk_import.py:1213 +#: dcim/forms/bulk_import.py:1376 dcim/forms/filtersets.py:955 +#: dcim/forms/filtersets.py:1054 dcim/forms/filtersets.py:1175 +#: dcim/forms/filtersets.py:1247 dcim/forms/filtersets.py:1272 +#: dcim/forms/filtersets.py:1296 dcim/forms/filtersets.py:1316 +#: dcim/forms/filtersets.py:1353 dcim/forms/filtersets.py:1450 +#: dcim/forms/filtersets.py:1474 dcim/forms/model_forms.py:703 +#: dcim/forms/model_forms.py:709 dcim/forms/object_import.py:84 +#: dcim/forms/object_import.py:113 dcim/forms/object_import.py:145 +#: dcim/tables/devices.py:178 dcim/tables/devices.py:814 +#: dcim/tables/power.py:77 dcim/tables/racks.py:138 +#: extras/forms/bulk_import.py:42 extras/tables/tables.py:405 +#: extras/tables/tables.py:465 netbox/tables/tables.py:240 +#: templates/circuits/circuit.html:30 templates/core/datasource.html:38 +#: templates/dcim/cable.html:15 templates/dcim/consoleport.html:36 +#: templates/dcim/consoleserverport.html:36 templates/dcim/frontport.html:36 +#: templates/dcim/interface.html:46 templates/dcim/interface.html:169 +#: templates/dcim/interface.html:311 templates/dcim/powerfeed.html:32 +#: templates/dcim/poweroutlet.html:36 templates/dcim/powerport.html:36 +#: templates/dcim/rearport.html:36 templates/extras/eventrule.html:74 +#: templates/virtualization/cluster.html:17 templates/vpn/l2vpn.html:22 +#: templates/wireless/inc/authentication_attrs.html:8 +#: templates/wireless/inc/wirelesslink_interface.html:14 +#: virtualization/forms/bulk_edit.py:60 virtualization/forms/bulk_import.py:41 +#: virtualization/forms/filtersets.py:54 +#: virtualization/forms/model_forms.py:62 virtualization/tables/clusters.py:66 +#: vpn/forms/bulk_edit.py:264 vpn/forms/bulk_import.py:264 +#: vpn/forms/filtersets.py:217 vpn/forms/model_forms.py:84 +#: vpn/forms/model_forms.py:119 vpn/forms/model_forms.py:231 msgid "Type" msgstr "Type" -#: netbox/circuits/forms/bulk_edit.py:128 -#: netbox/circuits/forms/bulk_import.py:80 -#: netbox/circuits/forms/filtersets.py:139 -#: netbox/circuits/forms/model_forms.py:98 +#: circuits/forms/bulk_edit.py:128 circuits/forms/bulk_import.py:80 +#: circuits/forms/filtersets.py:139 circuits/forms/model_forms.py:98 msgid "Provider account" msgstr "Leverandørkonto" -#: netbox/circuits/forms/bulk_edit.py:136 -#: netbox/circuits/forms/bulk_import.py:93 -#: netbox/circuits/forms/filtersets.py:150 netbox/core/forms/filtersets.py:38 -#: netbox/core/forms/filtersets.py:79 netbox/core/tables/data.py:23 -#: netbox/core/tables/jobs.py:26 netbox/core/tables/tasks.py:88 -#: netbox/dcim/forms/bulk_edit.py:106 netbox/dcim/forms/bulk_edit.py:181 -#: netbox/dcim/forms/bulk_edit.py:351 netbox/dcim/forms/bulk_edit.py:700 -#: netbox/dcim/forms/bulk_edit.py:756 netbox/dcim/forms/bulk_edit.py:788 -#: netbox/dcim/forms/bulk_edit.py:915 netbox/dcim/forms/bulk_edit.py:1701 -#: netbox/dcim/forms/bulk_import.py:88 netbox/dcim/forms/bulk_import.py:147 -#: netbox/dcim/forms/bulk_import.py:248 netbox/dcim/forms/bulk_import.py:505 -#: netbox/dcim/forms/bulk_import.py:659 netbox/dcim/forms/bulk_import.py:1207 -#: netbox/dcim/forms/bulk_import.py:1371 netbox/dcim/forms/bulk_import.py:1435 -#: netbox/dcim/forms/filtersets.py:178 netbox/dcim/forms/filtersets.py:237 -#: netbox/dcim/forms/filtersets.py:359 netbox/dcim/forms/filtersets.py:799 -#: netbox/dcim/forms/filtersets.py:924 netbox/dcim/forms/filtersets.py:958 -#: netbox/dcim/forms/filtersets.py:1059 netbox/dcim/forms/filtersets.py:1170 -#: netbox/dcim/tables/devices.py:140 netbox/dcim/tables/devices.py:817 -#: netbox/dcim/tables/devices.py:1063 netbox/dcim/tables/modules.py:69 -#: netbox/dcim/tables/power.py:74 netbox/dcim/tables/racks.py:126 -#: netbox/dcim/tables/sites.py:82 netbox/dcim/tables/sites.py:138 -#: netbox/ipam/forms/bulk_edit.py:255 netbox/ipam/forms/bulk_edit.py:305 -#: netbox/ipam/forms/bulk_edit.py:353 netbox/ipam/forms/bulk_edit.py:551 -#: netbox/ipam/forms/bulk_import.py:192 netbox/ipam/forms/bulk_import.py:257 -#: netbox/ipam/forms/bulk_import.py:293 netbox/ipam/forms/bulk_import.py:450 -#: netbox/ipam/forms/filtersets.py:210 netbox/ipam/forms/filtersets.py:281 -#: netbox/ipam/forms/filtersets.py:355 netbox/ipam/forms/filtersets.py:501 -#: netbox/ipam/forms/model_forms.py:468 netbox/ipam/tables/ip.py:237 -#: netbox/ipam/tables/ip.py:312 netbox/ipam/tables/ip.py:363 -#: netbox/ipam/tables/ip.py:426 netbox/ipam/tables/ip.py:453 -#: netbox/ipam/tables/vlans.py:126 netbox/ipam/tables/vlans.py:232 -#: netbox/templates/circuits/circuit.html:34 -#: netbox/templates/core/datasource.html:46 netbox/templates/core/job.html:48 -#: netbox/templates/core/rq_task.html:81 netbox/templates/core/system.html:18 -#: netbox/templates/dcim/cable.html:19 netbox/templates/dcim/device.html:178 -#: netbox/templates/dcim/location.html:45 netbox/templates/dcim/module.html:69 -#: netbox/templates/dcim/powerfeed.html:36 netbox/templates/dcim/rack.html:41 -#: netbox/templates/dcim/site.html:43 -#: netbox/templates/extras/script_list.html:47 -#: netbox/templates/ipam/ipaddress.html:37 -#: netbox/templates/ipam/iprange.html:54 netbox/templates/ipam/prefix.html:73 -#: netbox/templates/ipam/vlan.html:48 -#: netbox/templates/virtualization/cluster.html:21 -#: netbox/templates/virtualization/virtualmachine.html:19 -#: netbox/templates/vpn/tunnel.html:25 -#: netbox/templates/wireless/wirelesslan.html:22 -#: netbox/templates/wireless/wirelesslink.html:17 -#: netbox/users/forms/filtersets.py:32 netbox/users/forms/model_forms.py:194 -#: netbox/virtualization/forms/bulk_edit.py:70 -#: netbox/virtualization/forms/bulk_edit.py:118 -#: netbox/virtualization/forms/bulk_import.py:54 -#: netbox/virtualization/forms/bulk_import.py:80 -#: netbox/virtualization/forms/filtersets.py:62 -#: netbox/virtualization/forms/filtersets.py:160 -#: netbox/virtualization/tables/clusters.py:74 -#: netbox/virtualization/tables/virtualmachines.py:60 -#: netbox/vpn/forms/bulk_edit.py:39 netbox/vpn/forms/bulk_import.py:37 -#: netbox/vpn/forms/filtersets.py:47 netbox/vpn/tables/tunnels.py:48 -#: netbox/wireless/forms/bulk_edit.py:43 -#: netbox/wireless/forms/bulk_edit.py:105 -#: netbox/wireless/forms/bulk_import.py:43 -#: netbox/wireless/forms/bulk_import.py:84 -#: netbox/wireless/forms/filtersets.py:49 -#: netbox/wireless/forms/filtersets.py:83 -#: netbox/wireless/tables/wirelesslan.py:52 -#: netbox/wireless/tables/wirelesslink.py:20 +#: circuits/forms/bulk_edit.py:136 circuits/forms/bulk_import.py:93 +#: circuits/forms/filtersets.py:150 core/forms/filtersets.py:38 +#: core/forms/filtersets.py:79 core/tables/data.py:23 core/tables/jobs.py:26 +#: core/tables/tasks.py:88 dcim/forms/bulk_edit.py:106 +#: dcim/forms/bulk_edit.py:181 dcim/forms/bulk_edit.py:351 +#: dcim/forms/bulk_edit.py:700 dcim/forms/bulk_edit.py:756 +#: dcim/forms/bulk_edit.py:788 dcim/forms/bulk_edit.py:915 +#: dcim/forms/bulk_edit.py:1701 dcim/forms/bulk_import.py:88 +#: dcim/forms/bulk_import.py:147 dcim/forms/bulk_import.py:248 +#: dcim/forms/bulk_import.py:505 dcim/forms/bulk_import.py:659 +#: dcim/forms/bulk_import.py:1207 dcim/forms/bulk_import.py:1371 +#: dcim/forms/bulk_import.py:1435 dcim/forms/filtersets.py:178 +#: dcim/forms/filtersets.py:237 dcim/forms/filtersets.py:359 +#: dcim/forms/filtersets.py:799 dcim/forms/filtersets.py:924 +#: dcim/forms/filtersets.py:958 dcim/forms/filtersets.py:1059 +#: dcim/forms/filtersets.py:1170 dcim/tables/devices.py:140 +#: dcim/tables/devices.py:817 dcim/tables/devices.py:1063 +#: dcim/tables/modules.py:69 dcim/tables/power.py:74 dcim/tables/racks.py:126 +#: dcim/tables/sites.py:82 dcim/tables/sites.py:138 +#: ipam/forms/bulk_edit.py:256 ipam/forms/bulk_edit.py:306 +#: ipam/forms/bulk_edit.py:354 ipam/forms/bulk_edit.py:506 +#: ipam/forms/bulk_import.py:192 ipam/forms/bulk_import.py:257 +#: ipam/forms/bulk_import.py:293 ipam/forms/bulk_import.py:450 +#: ipam/forms/filtersets.py:210 ipam/forms/filtersets.py:281 +#: ipam/forms/filtersets.py:355 ipam/forms/filtersets.py:501 +#: ipam/forms/model_forms.py:468 ipam/tables/ip.py:237 ipam/tables/ip.py:312 +#: ipam/tables/ip.py:363 ipam/tables/ip.py:426 ipam/tables/ip.py:453 +#: ipam/tables/vlans.py:126 ipam/tables/vlans.py:232 +#: templates/circuits/circuit.html:34 templates/core/datasource.html:46 +#: templates/core/job.html:48 templates/core/rq_task.html:81 +#: templates/core/system.html:18 templates/dcim/cable.html:19 +#: templates/dcim/device.html:178 templates/dcim/location.html:45 +#: templates/dcim/module.html:69 templates/dcim/powerfeed.html:36 +#: templates/dcim/rack.html:41 templates/dcim/site.html:43 +#: templates/extras/script_list.html:47 templates/ipam/ipaddress.html:37 +#: templates/ipam/iprange.html:54 templates/ipam/prefix.html:73 +#: templates/ipam/vlan.html:48 templates/virtualization/cluster.html:21 +#: templates/virtualization/virtualmachine.html:19 +#: templates/vpn/tunnel.html:25 templates/wireless/wirelesslan.html:22 +#: templates/wireless/wirelesslink.html:17 users/forms/filtersets.py:32 +#: users/forms/model_forms.py:194 virtualization/forms/bulk_edit.py:70 +#: virtualization/forms/bulk_edit.py:118 +#: virtualization/forms/bulk_import.py:54 +#: virtualization/forms/bulk_import.py:80 +#: virtualization/forms/filtersets.py:62 +#: virtualization/forms/filtersets.py:160 virtualization/tables/clusters.py:74 +#: virtualization/tables/virtualmachines.py:60 vpn/forms/bulk_edit.py:39 +#: vpn/forms/bulk_import.py:37 vpn/forms/filtersets.py:47 +#: vpn/tables/tunnels.py:48 wireless/forms/bulk_edit.py:43 +#: wireless/forms/bulk_edit.py:105 wireless/forms/bulk_import.py:43 +#: wireless/forms/bulk_import.py:84 wireless/forms/filtersets.py:49 +#: wireless/forms/filtersets.py:83 wireless/tables/wirelesslan.py:52 +#: wireless/tables/wirelesslink.py:20 msgid "Status" msgstr "Status" -#: netbox/circuits/forms/bulk_edit.py:142 -#: netbox/circuits/forms/bulk_edit.py:233 -#: netbox/circuits/forms/bulk_import.py:98 -#: netbox/circuits/forms/bulk_import.py:158 -#: netbox/circuits/forms/filtersets.py:119 -#: netbox/circuits/forms/filtersets.py:241 netbox/dcim/forms/bulk_edit.py:122 -#: netbox/dcim/forms/bulk_edit.py:187 netbox/dcim/forms/bulk_edit.py:346 -#: netbox/dcim/forms/bulk_edit.py:461 netbox/dcim/forms/bulk_edit.py:690 -#: netbox/dcim/forms/bulk_edit.py:794 netbox/dcim/forms/bulk_edit.py:1706 -#: netbox/dcim/forms/bulk_import.py:107 netbox/dcim/forms/bulk_import.py:152 -#: netbox/dcim/forms/bulk_import.py:241 netbox/dcim/forms/bulk_import.py:334 -#: netbox/dcim/forms/bulk_import.py:479 netbox/dcim/forms/bulk_import.py:1219 -#: netbox/dcim/forms/bulk_import.py:1428 netbox/dcim/forms/filtersets.py:173 -#: netbox/dcim/forms/filtersets.py:205 netbox/dcim/forms/filtersets.py:323 -#: netbox/dcim/forms/filtersets.py:399 netbox/dcim/forms/filtersets.py:420 -#: netbox/dcim/forms/filtersets.py:722 netbox/dcim/forms/filtersets.py:916 -#: netbox/dcim/forms/filtersets.py:978 netbox/dcim/forms/filtersets.py:1008 -#: netbox/dcim/forms/filtersets.py:1130 netbox/dcim/tables/power.py:88 -#: netbox/extras/filtersets.py:612 netbox/extras/forms/filtersets.py:323 -#: netbox/extras/forms/filtersets.py:396 netbox/ipam/forms/bulk_edit.py:42 -#: netbox/ipam/forms/bulk_edit.py:67 netbox/ipam/forms/bulk_edit.py:111 -#: netbox/ipam/forms/bulk_edit.py:140 netbox/ipam/forms/bulk_edit.py:165 -#: netbox/ipam/forms/bulk_edit.py:250 netbox/ipam/forms/bulk_edit.py:300 -#: netbox/ipam/forms/bulk_edit.py:348 netbox/ipam/forms/bulk_edit.py:546 -#: netbox/ipam/forms/bulk_import.py:38 netbox/ipam/forms/bulk_import.py:67 -#: netbox/ipam/forms/bulk_import.py:95 netbox/ipam/forms/bulk_import.py:115 -#: netbox/ipam/forms/bulk_import.py:135 netbox/ipam/forms/bulk_import.py:164 -#: netbox/ipam/forms/bulk_import.py:250 netbox/ipam/forms/bulk_import.py:286 -#: netbox/ipam/forms/bulk_import.py:443 netbox/ipam/forms/filtersets.py:48 -#: netbox/ipam/forms/filtersets.py:68 netbox/ipam/forms/filtersets.py:100 -#: netbox/ipam/forms/filtersets.py:120 netbox/ipam/forms/filtersets.py:143 -#: netbox/ipam/forms/filtersets.py:174 netbox/ipam/forms/filtersets.py:267 -#: netbox/ipam/forms/filtersets.py:310 netbox/ipam/forms/filtersets.py:469 -#: netbox/ipam/tables/ip.py:456 netbox/ipam/tables/vlans.py:229 -#: netbox/templates/circuits/circuit.html:38 -#: netbox/templates/circuits/circuitgroup.html:36 -#: netbox/templates/dcim/cable.html:23 netbox/templates/dcim/device.html:79 -#: netbox/templates/dcim/location.html:49 -#: netbox/templates/dcim/powerfeed.html:44 netbox/templates/dcim/rack.html:32 -#: netbox/templates/dcim/rackreservation.html:49 -#: netbox/templates/dcim/site.html:47 -#: netbox/templates/dcim/virtualdevicecontext.html:52 -#: netbox/templates/ipam/aggregate.html:30 netbox/templates/ipam/asn.html:33 -#: netbox/templates/ipam/asnrange.html:29 -#: netbox/templates/ipam/ipaddress.html:28 -#: netbox/templates/ipam/iprange.html:58 netbox/templates/ipam/prefix.html:29 -#: netbox/templates/ipam/routetarget.html:17 -#: netbox/templates/ipam/vlan.html:39 netbox/templates/ipam/vrf.html:20 -#: netbox/templates/tenancy/tenant.html:17 -#: netbox/templates/virtualization/cluster.html:33 -#: netbox/templates/virtualization/virtualmachine.html:39 -#: netbox/templates/vpn/l2vpn.html:30 netbox/templates/vpn/tunnel.html:49 -#: netbox/templates/wireless/wirelesslan.html:34 -#: netbox/templates/wireless/wirelesslink.html:25 -#: netbox/tenancy/forms/forms.py:25 netbox/tenancy/forms/forms.py:48 -#: netbox/tenancy/forms/model_forms.py:52 netbox/tenancy/tables/columns.py:64 -#: netbox/virtualization/forms/bulk_edit.py:76 -#: netbox/virtualization/forms/bulk_edit.py:155 -#: netbox/virtualization/forms/bulk_import.py:66 -#: netbox/virtualization/forms/bulk_import.py:115 -#: netbox/virtualization/forms/filtersets.py:47 -#: netbox/virtualization/forms/filtersets.py:105 -#: netbox/vpn/forms/bulk_edit.py:59 netbox/vpn/forms/bulk_edit.py:269 -#: netbox/vpn/forms/bulk_import.py:59 netbox/vpn/forms/bulk_import.py:258 -#: netbox/vpn/forms/filtersets.py:214 netbox/wireless/forms/bulk_edit.py:63 -#: netbox/wireless/forms/bulk_edit.py:110 -#: netbox/wireless/forms/bulk_import.py:55 -#: netbox/wireless/forms/bulk_import.py:97 -#: netbox/wireless/forms/filtersets.py:35 -#: netbox/wireless/forms/filtersets.py:75 +#: circuits/forms/bulk_edit.py:142 circuits/forms/bulk_edit.py:233 +#: circuits/forms/bulk_import.py:98 circuits/forms/bulk_import.py:158 +#: circuits/forms/filtersets.py:119 circuits/forms/filtersets.py:241 +#: dcim/forms/bulk_edit.py:122 dcim/forms/bulk_edit.py:187 +#: dcim/forms/bulk_edit.py:346 dcim/forms/bulk_edit.py:461 +#: dcim/forms/bulk_edit.py:690 dcim/forms/bulk_edit.py:794 +#: dcim/forms/bulk_edit.py:1706 dcim/forms/bulk_import.py:107 +#: dcim/forms/bulk_import.py:152 dcim/forms/bulk_import.py:241 +#: dcim/forms/bulk_import.py:334 dcim/forms/bulk_import.py:479 +#: dcim/forms/bulk_import.py:1219 dcim/forms/bulk_import.py:1428 +#: dcim/forms/filtersets.py:173 dcim/forms/filtersets.py:205 +#: dcim/forms/filtersets.py:323 dcim/forms/filtersets.py:399 +#: dcim/forms/filtersets.py:420 dcim/forms/filtersets.py:722 +#: dcim/forms/filtersets.py:916 dcim/forms/filtersets.py:978 +#: dcim/forms/filtersets.py:1008 dcim/forms/filtersets.py:1130 +#: dcim/tables/power.py:88 extras/filtersets.py:612 +#: extras/forms/filtersets.py:323 extras/forms/filtersets.py:396 +#: ipam/forms/bulk_edit.py:43 ipam/forms/bulk_edit.py:68 +#: ipam/forms/bulk_edit.py:112 ipam/forms/bulk_edit.py:141 +#: ipam/forms/bulk_edit.py:166 ipam/forms/bulk_edit.py:251 +#: ipam/forms/bulk_edit.py:301 ipam/forms/bulk_edit.py:349 +#: ipam/forms/bulk_edit.py:501 ipam/forms/bulk_import.py:38 +#: ipam/forms/bulk_import.py:67 ipam/forms/bulk_import.py:95 +#: ipam/forms/bulk_import.py:115 ipam/forms/bulk_import.py:135 +#: ipam/forms/bulk_import.py:164 ipam/forms/bulk_import.py:250 +#: ipam/forms/bulk_import.py:286 ipam/forms/bulk_import.py:443 +#: ipam/forms/filtersets.py:48 ipam/forms/filtersets.py:68 +#: ipam/forms/filtersets.py:100 ipam/forms/filtersets.py:120 +#: ipam/forms/filtersets.py:143 ipam/forms/filtersets.py:174 +#: ipam/forms/filtersets.py:267 ipam/forms/filtersets.py:310 +#: ipam/forms/filtersets.py:469 ipam/tables/ip.py:456 ipam/tables/vlans.py:229 +#: templates/circuits/circuit.html:38 templates/circuits/circuitgroup.html:36 +#: templates/dcim/cable.html:23 templates/dcim/device.html:79 +#: templates/dcim/location.html:49 templates/dcim/powerfeed.html:44 +#: templates/dcim/rack.html:32 templates/dcim/rackreservation.html:49 +#: templates/dcim/site.html:47 templates/dcim/virtualdevicecontext.html:52 +#: templates/ipam/aggregate.html:30 templates/ipam/asn.html:33 +#: templates/ipam/asnrange.html:29 templates/ipam/ipaddress.html:28 +#: templates/ipam/iprange.html:58 templates/ipam/prefix.html:29 +#: templates/ipam/routetarget.html:17 templates/ipam/vlan.html:39 +#: templates/ipam/vrf.html:20 templates/tenancy/tenant.html:17 +#: templates/virtualization/cluster.html:33 +#: templates/virtualization/virtualmachine.html:39 templates/vpn/l2vpn.html:30 +#: templates/vpn/tunnel.html:49 templates/wireless/wirelesslan.html:34 +#: templates/wireless/wirelesslink.html:25 tenancy/forms/forms.py:25 +#: tenancy/forms/forms.py:48 tenancy/forms/model_forms.py:52 +#: tenancy/tables/columns.py:64 virtualization/forms/bulk_edit.py:76 +#: virtualization/forms/bulk_edit.py:155 +#: virtualization/forms/bulk_import.py:66 +#: virtualization/forms/bulk_import.py:115 +#: virtualization/forms/filtersets.py:47 +#: virtualization/forms/filtersets.py:105 vpn/forms/bulk_edit.py:59 +#: vpn/forms/bulk_edit.py:269 vpn/forms/bulk_import.py:59 +#: vpn/forms/bulk_import.py:258 vpn/forms/filtersets.py:214 +#: wireless/forms/bulk_edit.py:63 wireless/forms/bulk_edit.py:110 +#: wireless/forms/bulk_import.py:55 wireless/forms/bulk_import.py:97 +#: wireless/forms/filtersets.py:35 wireless/forms/filtersets.py:75 msgid "Tenant" msgstr "Lejer" -#: netbox/circuits/forms/bulk_edit.py:147 -#: netbox/circuits/forms/filtersets.py:174 +#: circuits/forms/bulk_edit.py:147 circuits/forms/filtersets.py:174 msgid "Install date" msgstr "Installationsdato" -#: netbox/circuits/forms/bulk_edit.py:152 -#: netbox/circuits/forms/filtersets.py:179 +#: circuits/forms/bulk_edit.py:152 circuits/forms/filtersets.py:179 msgid "Termination date" msgstr "Opsigelsesdato" -#: netbox/circuits/forms/bulk_edit.py:158 -#: netbox/circuits/forms/filtersets.py:186 +#: circuits/forms/bulk_edit.py:158 circuits/forms/filtersets.py:186 msgid "Commit rate (Kbps)" msgstr "Forpligtelseshastighed (Kbps)" -#: netbox/circuits/forms/bulk_edit.py:173 -#: netbox/circuits/forms/model_forms.py:112 +#: circuits/forms/bulk_edit.py:173 circuits/forms/model_forms.py:112 msgid "Service Parameters" msgstr "Serviceparametre" -#: netbox/circuits/forms/bulk_edit.py:174 -#: netbox/circuits/forms/model_forms.py:113 -#: netbox/circuits/forms/model_forms.py:183 -#: netbox/dcim/forms/model_forms.py:139 netbox/dcim/forms/model_forms.py:181 -#: netbox/dcim/forms/model_forms.py:266 netbox/dcim/forms/model_forms.py:323 -#: netbox/dcim/forms/model_forms.py:768 netbox/dcim/forms/model_forms.py:1692 -#: netbox/ipam/forms/model_forms.py:64 netbox/ipam/forms/model_forms.py:81 -#: netbox/ipam/forms/model_forms.py:115 netbox/ipam/forms/model_forms.py:136 -#: netbox/ipam/forms/model_forms.py:160 netbox/ipam/forms/model_forms.py:232 -#: netbox/ipam/forms/model_forms.py:261 netbox/ipam/forms/model_forms.py:316 -#: netbox/netbox/navigation/menu.py:24 -#: netbox/templates/dcim/device_edit.html:85 -#: netbox/templates/dcim/htmx/cable_edit.html:72 -#: netbox/templates/ipam/ipaddress_bulk_add.html:27 -#: netbox/templates/ipam/vlan_edit.html:22 -#: netbox/virtualization/forms/model_forms.py:80 -#: netbox/virtualization/forms/model_forms.py:222 -#: netbox/vpn/forms/bulk_edit.py:78 netbox/vpn/forms/filtersets.py:44 -#: netbox/vpn/forms/model_forms.py:62 netbox/vpn/forms/model_forms.py:147 -#: netbox/vpn/forms/model_forms.py:411 netbox/wireless/forms/model_forms.py:54 -#: netbox/wireless/forms/model_forms.py:170 +#: circuits/forms/bulk_edit.py:174 circuits/forms/model_forms.py:113 +#: circuits/forms/model_forms.py:183 dcim/forms/model_forms.py:139 +#: dcim/forms/model_forms.py:181 dcim/forms/model_forms.py:266 +#: dcim/forms/model_forms.py:323 dcim/forms/model_forms.py:768 +#: dcim/forms/model_forms.py:1692 ipam/forms/model_forms.py:64 +#: ipam/forms/model_forms.py:81 ipam/forms/model_forms.py:115 +#: ipam/forms/model_forms.py:136 ipam/forms/model_forms.py:160 +#: ipam/forms/model_forms.py:232 ipam/forms/model_forms.py:261 +#: ipam/forms/model_forms.py:316 netbox/navigation/menu.py:24 +#: templates/dcim/device_edit.html:85 templates/dcim/htmx/cable_edit.html:72 +#: templates/ipam/ipaddress_bulk_add.html:27 templates/ipam/vlan_edit.html:22 +#: virtualization/forms/model_forms.py:80 +#: virtualization/forms/model_forms.py:222 vpn/forms/bulk_edit.py:78 +#: vpn/forms/filtersets.py:44 vpn/forms/model_forms.py:62 +#: vpn/forms/model_forms.py:147 vpn/forms/model_forms.py:411 +#: wireless/forms/model_forms.py:54 wireless/forms/model_forms.py:170 msgid "Tenancy" msgstr "Forpagtning" -#: netbox/circuits/forms/bulk_edit.py:193 -#: netbox/circuits/forms/bulk_edit.py:217 -#: netbox/circuits/forms/model_forms.py:155 -#: netbox/circuits/tables/circuits.py:117 -#: netbox/templates/circuits/inc/circuit_termination_fields.html:62 -#: netbox/templates/circuits/providernetwork.html:17 +#: circuits/forms/bulk_edit.py:193 circuits/forms/bulk_edit.py:217 +#: circuits/forms/model_forms.py:155 circuits/tables/circuits.py:117 +#: templates/circuits/inc/circuit_termination_fields.html:62 +#: templates/circuits/providernetwork.html:17 msgid "Provider Network" msgstr "Leverandørnetværk" -#: netbox/circuits/forms/bulk_edit.py:199 +#: circuits/forms/bulk_edit.py:199 msgid "Port speed (Kbps)" msgstr "Porthastighed (Kbps)" -#: netbox/circuits/forms/bulk_edit.py:203 +#: circuits/forms/bulk_edit.py:203 msgid "Upstream speed (Kbps)" msgstr "Opstrøms hastighed (Kbps)" -#: netbox/circuits/forms/bulk_edit.py:206 netbox/dcim/forms/bulk_edit.py:951 -#: netbox/dcim/forms/bulk_edit.py:1315 netbox/dcim/forms/bulk_edit.py:1332 -#: netbox/dcim/forms/bulk_edit.py:1349 netbox/dcim/forms/bulk_edit.py:1367 -#: netbox/dcim/forms/bulk_edit.py:1455 netbox/dcim/forms/bulk_edit.py:1594 -#: netbox/dcim/forms/bulk_edit.py:1611 +#: circuits/forms/bulk_edit.py:206 dcim/forms/bulk_edit.py:951 +#: dcim/forms/bulk_edit.py:1315 dcim/forms/bulk_edit.py:1332 +#: dcim/forms/bulk_edit.py:1349 dcim/forms/bulk_edit.py:1367 +#: dcim/forms/bulk_edit.py:1455 dcim/forms/bulk_edit.py:1594 +#: dcim/forms/bulk_edit.py:1611 msgid "Mark connected" msgstr "Marker tilsluttet" -#: netbox/circuits/forms/bulk_edit.py:219 -#: netbox/circuits/forms/model_forms.py:157 -#: netbox/templates/circuits/inc/circuit_termination_fields.html:54 -#: netbox/templates/dcim/frontport.html:121 -#: netbox/templates/dcim/interface.html:193 -#: netbox/templates/dcim/rearport.html:111 +#: circuits/forms/bulk_edit.py:219 circuits/forms/model_forms.py:157 +#: templates/circuits/inc/circuit_termination_fields.html:54 +#: templates/dcim/frontport.html:121 templates/dcim/interface.html:193 +#: templates/dcim/rearport.html:111 msgid "Circuit Termination" msgstr "Kredsløbsafslutning" -#: netbox/circuits/forms/bulk_edit.py:221 -#: netbox/circuits/forms/model_forms.py:159 +#: circuits/forms/bulk_edit.py:221 circuits/forms/model_forms.py:159 msgid "Termination Details" msgstr "Oplysninger om opsigelse" -#: netbox/circuits/forms/bulk_edit.py:251 -#: netbox/circuits/forms/filtersets.py:268 -#: netbox/circuits/tables/circuits.py:168 netbox/dcim/forms/model_forms.py:551 -#: netbox/templates/circuits/circuitgroupassignment.html:30 -#: netbox/templates/dcim/device.html:133 -#: netbox/templates/dcim/virtualchassis.html:68 -#: netbox/templates/dcim/virtualchassis_edit.html:56 -#: netbox/templates/ipam/inc/panels/fhrp_groups.html:26 -#: netbox/tenancy/forms/bulk_edit.py:147 -#: netbox/tenancy/forms/filtersets.py:110 +#: circuits/forms/bulk_edit.py:251 circuits/forms/filtersets.py:268 +#: circuits/tables/circuits.py:168 dcim/forms/model_forms.py:551 +#: templates/circuits/circuitgroupassignment.html:30 +#: templates/dcim/device.html:133 templates/dcim/virtualchassis.html:68 +#: templates/dcim/virtualchassis_edit.html:56 +#: templates/ipam/inc/panels/fhrp_groups.html:26 +#: tenancy/forms/bulk_edit.py:147 tenancy/forms/filtersets.py:110 msgid "Priority" msgstr "Prioritet" -#: netbox/circuits/forms/bulk_import.py:39 -#: netbox/circuits/forms/bulk_import.py:54 -#: netbox/circuits/forms/bulk_import.py:77 +#: circuits/forms/bulk_import.py:39 circuits/forms/bulk_import.py:54 +#: circuits/forms/bulk_import.py:77 msgid "Assigned provider" msgstr "Tildelt leverandør" -#: netbox/circuits/forms/bulk_import.py:83 +#: circuits/forms/bulk_import.py:83 msgid "Assigned provider account" msgstr "Tildelt leverandørkonto" -#: netbox/circuits/forms/bulk_import.py:90 +#: circuits/forms/bulk_import.py:90 msgid "Type of circuit" msgstr "Kredsløbstype" -#: netbox/circuits/forms/bulk_import.py:95 netbox/dcim/forms/bulk_import.py:90 -#: netbox/dcim/forms/bulk_import.py:149 netbox/dcim/forms/bulk_import.py:250 -#: netbox/dcim/forms/bulk_import.py:507 netbox/dcim/forms/bulk_import.py:661 -#: netbox/dcim/forms/bulk_import.py:1373 netbox/ipam/forms/bulk_import.py:194 -#: netbox/ipam/forms/bulk_import.py:259 netbox/ipam/forms/bulk_import.py:295 -#: netbox/ipam/forms/bulk_import.py:452 -#: netbox/virtualization/forms/bulk_import.py:56 -#: netbox/virtualization/forms/bulk_import.py:82 -#: netbox/vpn/forms/bulk_import.py:39 netbox/wireless/forms/bulk_import.py:45 +#: circuits/forms/bulk_import.py:95 dcim/forms/bulk_import.py:90 +#: dcim/forms/bulk_import.py:149 dcim/forms/bulk_import.py:250 +#: dcim/forms/bulk_import.py:507 dcim/forms/bulk_import.py:661 +#: dcim/forms/bulk_import.py:1373 ipam/forms/bulk_import.py:194 +#: ipam/forms/bulk_import.py:259 ipam/forms/bulk_import.py:295 +#: ipam/forms/bulk_import.py:452 virtualization/forms/bulk_import.py:56 +#: virtualization/forms/bulk_import.py:82 vpn/forms/bulk_import.py:39 +#: wireless/forms/bulk_import.py:45 msgid "Operational status" msgstr "Driftsstatus" -#: netbox/circuits/forms/bulk_import.py:102 -#: netbox/circuits/forms/bulk_import.py:162 -#: netbox/dcim/forms/bulk_import.py:111 netbox/dcim/forms/bulk_import.py:156 -#: netbox/dcim/forms/bulk_import.py:338 netbox/dcim/forms/bulk_import.py:483 -#: netbox/dcim/forms/bulk_import.py:1223 netbox/dcim/forms/bulk_import.py:1368 -#: netbox/dcim/forms/bulk_import.py:1432 netbox/ipam/forms/bulk_import.py:42 -#: netbox/ipam/forms/bulk_import.py:71 netbox/ipam/forms/bulk_import.py:99 -#: netbox/ipam/forms/bulk_import.py:119 netbox/ipam/forms/bulk_import.py:139 -#: netbox/ipam/forms/bulk_import.py:168 netbox/ipam/forms/bulk_import.py:254 -#: netbox/ipam/forms/bulk_import.py:290 netbox/ipam/forms/bulk_import.py:447 -#: netbox/virtualization/forms/bulk_import.py:70 -#: netbox/virtualization/forms/bulk_import.py:119 -#: netbox/vpn/forms/bulk_import.py:63 netbox/wireless/forms/bulk_import.py:59 -#: netbox/wireless/forms/bulk_import.py:101 +#: circuits/forms/bulk_import.py:102 circuits/forms/bulk_import.py:162 +#: dcim/forms/bulk_import.py:111 dcim/forms/bulk_import.py:156 +#: dcim/forms/bulk_import.py:338 dcim/forms/bulk_import.py:483 +#: dcim/forms/bulk_import.py:1223 dcim/forms/bulk_import.py:1368 +#: dcim/forms/bulk_import.py:1432 ipam/forms/bulk_import.py:42 +#: ipam/forms/bulk_import.py:71 ipam/forms/bulk_import.py:99 +#: ipam/forms/bulk_import.py:119 ipam/forms/bulk_import.py:139 +#: ipam/forms/bulk_import.py:168 ipam/forms/bulk_import.py:254 +#: ipam/forms/bulk_import.py:290 ipam/forms/bulk_import.py:447 +#: virtualization/forms/bulk_import.py:70 +#: virtualization/forms/bulk_import.py:119 vpn/forms/bulk_import.py:63 +#: wireless/forms/bulk_import.py:59 wireless/forms/bulk_import.py:101 msgid "Assigned tenant" msgstr "Tildelt lejer" -#: netbox/circuits/forms/bulk_import.py:120 -#: netbox/templates/circuits/inc/circuit_termination.html:6 -#: netbox/templates/circuits/inc/circuit_termination_fields.html:15 -#: netbox/templates/dcim/cable.html:68 netbox/templates/dcim/cable.html:72 -#: netbox/vpn/forms/bulk_import.py:100 netbox/vpn/forms/filtersets.py:77 +#: circuits/forms/bulk_import.py:120 +#: templates/circuits/inc/circuit_termination.html:6 +#: templates/circuits/inc/circuit_termination_fields.html:15 +#: templates/dcim/cable.html:68 templates/dcim/cable.html:72 +#: vpn/forms/bulk_import.py:100 vpn/forms/filtersets.py:77 msgid "Termination" msgstr "Opsigelse" -#: netbox/circuits/forms/bulk_import.py:130 -#: netbox/circuits/forms/filtersets.py:147 -#: netbox/circuits/forms/filtersets.py:227 -#: netbox/circuits/forms/model_forms.py:144 +#: circuits/forms/bulk_import.py:130 circuits/forms/filtersets.py:147 +#: circuits/forms/filtersets.py:227 circuits/forms/model_forms.py:144 msgid "Provider network" msgstr "Leverandørnetværk" -#: netbox/circuits/forms/filtersets.py:30 -#: netbox/circuits/forms/filtersets.py:118 -#: netbox/circuits/forms/filtersets.py:200 netbox/dcim/forms/bulk_edit.py:338 -#: netbox/dcim/forms/bulk_edit.py:441 netbox/dcim/forms/bulk_edit.py:682 -#: netbox/dcim/forms/bulk_edit.py:729 netbox/dcim/forms/bulk_edit.py:882 -#: netbox/dcim/forms/bulk_import.py:235 netbox/dcim/forms/bulk_import.py:315 -#: netbox/dcim/forms/bulk_import.py:546 netbox/dcim/forms/bulk_import.py:1317 -#: netbox/dcim/forms/bulk_import.py:1351 netbox/dcim/forms/filtersets.py:95 -#: netbox/dcim/forms/filtersets.py:322 netbox/dcim/forms/filtersets.py:356 -#: netbox/dcim/forms/filtersets.py:396 netbox/dcim/forms/filtersets.py:447 -#: netbox/dcim/forms/filtersets.py:719 netbox/dcim/forms/filtersets.py:762 -#: netbox/dcim/forms/filtersets.py:977 netbox/dcim/forms/filtersets.py:1006 -#: netbox/dcim/forms/filtersets.py:1026 netbox/dcim/forms/filtersets.py:1090 -#: netbox/dcim/forms/filtersets.py:1120 netbox/dcim/forms/filtersets.py:1129 -#: netbox/dcim/forms/filtersets.py:1240 netbox/dcim/forms/filtersets.py:1264 -#: netbox/dcim/forms/filtersets.py:1289 netbox/dcim/forms/filtersets.py:1308 -#: netbox/dcim/forms/filtersets.py:1331 netbox/dcim/forms/filtersets.py:1442 -#: netbox/dcim/forms/filtersets.py:1466 netbox/dcim/forms/filtersets.py:1490 -#: netbox/dcim/forms/filtersets.py:1508 netbox/dcim/forms/filtersets.py:1525 -#: netbox/dcim/forms/model_forms.py:180 netbox/dcim/forms/model_forms.py:243 -#: netbox/dcim/forms/model_forms.py:468 netbox/dcim/forms/model_forms.py:728 -#: netbox/dcim/tables/devices.py:157 netbox/dcim/tables/power.py:30 -#: netbox/dcim/tables/racks.py:118 netbox/dcim/tables/racks.py:212 -#: netbox/extras/filtersets.py:536 netbox/extras/forms/filtersets.py:320 -#: netbox/ipam/forms/bulk_edit.py:460 netbox/ipam/forms/filtersets.py:173 -#: netbox/ipam/forms/filtersets.py:414 netbox/ipam/forms/filtersets.py:437 -#: netbox/ipam/forms/filtersets.py:467 netbox/templates/dcim/device.html:26 -#: netbox/templates/dcim/device_edit.html:30 -#: netbox/templates/dcim/inc/cable_termination.html:12 -#: netbox/templates/dcim/location.html:26 -#: netbox/templates/dcim/powerpanel.html:26 netbox/templates/dcim/rack.html:24 -#: netbox/templates/dcim/rackreservation.html:32 -#: netbox/virtualization/forms/filtersets.py:46 -#: netbox/virtualization/forms/filtersets.py:100 -#: netbox/wireless/forms/model_forms.py:87 -#: netbox/wireless/forms/model_forms.py:129 +#: circuits/forms/filtersets.py:30 circuits/forms/filtersets.py:118 +#: circuits/forms/filtersets.py:200 dcim/forms/bulk_edit.py:338 +#: dcim/forms/bulk_edit.py:441 dcim/forms/bulk_edit.py:682 +#: dcim/forms/bulk_edit.py:729 dcim/forms/bulk_edit.py:882 +#: dcim/forms/bulk_import.py:235 dcim/forms/bulk_import.py:315 +#: dcim/forms/bulk_import.py:546 dcim/forms/bulk_import.py:1317 +#: dcim/forms/bulk_import.py:1351 dcim/forms/filtersets.py:95 +#: dcim/forms/filtersets.py:322 dcim/forms/filtersets.py:356 +#: dcim/forms/filtersets.py:396 dcim/forms/filtersets.py:447 +#: dcim/forms/filtersets.py:719 dcim/forms/filtersets.py:762 +#: dcim/forms/filtersets.py:977 dcim/forms/filtersets.py:1006 +#: dcim/forms/filtersets.py:1026 dcim/forms/filtersets.py:1090 +#: dcim/forms/filtersets.py:1120 dcim/forms/filtersets.py:1129 +#: dcim/forms/filtersets.py:1240 dcim/forms/filtersets.py:1264 +#: dcim/forms/filtersets.py:1289 dcim/forms/filtersets.py:1308 +#: dcim/forms/filtersets.py:1331 dcim/forms/filtersets.py:1442 +#: dcim/forms/filtersets.py:1466 dcim/forms/filtersets.py:1490 +#: dcim/forms/filtersets.py:1508 dcim/forms/filtersets.py:1525 +#: dcim/forms/model_forms.py:180 dcim/forms/model_forms.py:243 +#: dcim/forms/model_forms.py:468 dcim/forms/model_forms.py:728 +#: dcim/tables/devices.py:157 dcim/tables/power.py:30 dcim/tables/racks.py:118 +#: dcim/tables/racks.py:212 extras/filtersets.py:536 +#: extras/forms/filtersets.py:320 ipam/forms/filtersets.py:173 +#: ipam/forms/filtersets.py:414 ipam/forms/filtersets.py:437 +#: ipam/forms/filtersets.py:467 templates/dcim/device.html:26 +#: templates/dcim/device_edit.html:30 +#: templates/dcim/inc/cable_termination.html:12 +#: templates/dcim/location.html:26 templates/dcim/powerpanel.html:26 +#: templates/dcim/rack.html:24 templates/dcim/rackreservation.html:32 +#: virtualization/forms/filtersets.py:46 +#: virtualization/forms/filtersets.py:100 wireless/forms/model_forms.py:87 +#: wireless/forms/model_forms.py:129 msgid "Location" msgstr "Beliggenhed" -#: netbox/circuits/forms/filtersets.py:32 -#: netbox/circuits/forms/filtersets.py:120 netbox/dcim/forms/filtersets.py:144 -#: netbox/dcim/forms/filtersets.py:158 netbox/dcim/forms/filtersets.py:174 -#: netbox/dcim/forms/filtersets.py:206 netbox/dcim/forms/filtersets.py:328 -#: netbox/dcim/forms/filtersets.py:400 netbox/dcim/forms/filtersets.py:471 -#: netbox/dcim/forms/filtersets.py:723 netbox/dcim/forms/filtersets.py:1091 -#: netbox/netbox/navigation/menu.py:31 netbox/netbox/navigation/menu.py:33 -#: netbox/tenancy/forms/filtersets.py:42 netbox/tenancy/tables/columns.py:70 -#: netbox/tenancy/tables/contacts.py:25 netbox/tenancy/views.py:19 -#: netbox/virtualization/forms/filtersets.py:37 -#: netbox/virtualization/forms/filtersets.py:48 -#: netbox/virtualization/forms/filtersets.py:106 +#: circuits/forms/filtersets.py:32 circuits/forms/filtersets.py:120 +#: dcim/forms/filtersets.py:144 dcim/forms/filtersets.py:158 +#: dcim/forms/filtersets.py:174 dcim/forms/filtersets.py:206 +#: dcim/forms/filtersets.py:328 dcim/forms/filtersets.py:400 +#: dcim/forms/filtersets.py:471 dcim/forms/filtersets.py:723 +#: dcim/forms/filtersets.py:1091 netbox/navigation/menu.py:31 +#: netbox/navigation/menu.py:33 tenancy/forms/filtersets.py:42 +#: tenancy/tables/columns.py:70 tenancy/tables/contacts.py:25 +#: tenancy/views.py:19 virtualization/forms/filtersets.py:37 +#: virtualization/forms/filtersets.py:48 +#: virtualization/forms/filtersets.py:106 msgid "Contacts" msgstr "Kontakter" -#: netbox/circuits/forms/filtersets.py:37 -#: netbox/circuits/forms/filtersets.py:157 netbox/dcim/forms/bulk_edit.py:112 -#: netbox/dcim/forms/bulk_edit.py:313 netbox/dcim/forms/bulk_edit.py:857 -#: netbox/dcim/forms/bulk_import.py:93 netbox/dcim/forms/filtersets.py:73 -#: netbox/dcim/forms/filtersets.py:185 netbox/dcim/forms/filtersets.py:211 -#: netbox/dcim/forms/filtersets.py:334 netbox/dcim/forms/filtersets.py:425 -#: netbox/dcim/forms/filtersets.py:739 netbox/dcim/forms/filtersets.py:983 -#: netbox/dcim/forms/filtersets.py:1013 netbox/dcim/forms/filtersets.py:1097 -#: netbox/dcim/forms/filtersets.py:1136 netbox/dcim/forms/filtersets.py:1576 -#: netbox/dcim/forms/filtersets.py:1600 netbox/dcim/forms/filtersets.py:1624 -#: netbox/dcim/forms/model_forms.py:112 netbox/dcim/forms/object_create.py:375 -#: netbox/dcim/tables/devices.py:143 netbox/dcim/tables/sites.py:85 -#: netbox/extras/filtersets.py:503 netbox/ipam/forms/bulk_edit.py:207 -#: netbox/ipam/forms/bulk_edit.py:441 netbox/ipam/forms/bulk_edit.py:519 -#: netbox/ipam/forms/filtersets.py:217 netbox/ipam/forms/filtersets.py:422 -#: netbox/ipam/forms/filtersets.py:475 netbox/templates/dcim/device.html:18 -#: netbox/templates/dcim/rack.html:16 -#: netbox/templates/dcim/rackreservation.html:22 -#: netbox/templates/dcim/region.html:26 netbox/templates/dcim/site.html:31 -#: netbox/templates/ipam/prefix.html:49 netbox/templates/ipam/vlan.html:16 -#: netbox/virtualization/forms/bulk_edit.py:81 -#: netbox/virtualization/forms/filtersets.py:59 -#: netbox/virtualization/forms/filtersets.py:133 -#: netbox/virtualization/forms/model_forms.py:92 -#: netbox/vpn/forms/filtersets.py:257 +#: circuits/forms/filtersets.py:37 circuits/forms/filtersets.py:157 +#: dcim/forms/bulk_edit.py:112 dcim/forms/bulk_edit.py:313 +#: dcim/forms/bulk_edit.py:857 dcim/forms/bulk_import.py:93 +#: dcim/forms/filtersets.py:73 dcim/forms/filtersets.py:185 +#: dcim/forms/filtersets.py:211 dcim/forms/filtersets.py:334 +#: dcim/forms/filtersets.py:425 dcim/forms/filtersets.py:739 +#: dcim/forms/filtersets.py:983 dcim/forms/filtersets.py:1013 +#: dcim/forms/filtersets.py:1097 dcim/forms/filtersets.py:1136 +#: dcim/forms/filtersets.py:1576 dcim/forms/filtersets.py:1600 +#: dcim/forms/filtersets.py:1624 dcim/forms/model_forms.py:112 +#: dcim/forms/object_create.py:375 dcim/tables/devices.py:143 +#: dcim/tables/sites.py:85 extras/filtersets.py:503 +#: ipam/forms/bulk_edit.py:208 ipam/forms/bulk_edit.py:474 +#: ipam/forms/filtersets.py:217 ipam/forms/filtersets.py:422 +#: ipam/forms/filtersets.py:475 templates/dcim/device.html:18 +#: templates/dcim/rack.html:16 templates/dcim/rackreservation.html:22 +#: templates/dcim/region.html:26 templates/dcim/site.html:31 +#: templates/ipam/prefix.html:49 templates/ipam/vlan.html:16 +#: virtualization/forms/bulk_edit.py:81 virtualization/forms/filtersets.py:59 +#: virtualization/forms/filtersets.py:133 +#: virtualization/forms/model_forms.py:92 vpn/forms/filtersets.py:257 msgid "Region" msgstr "Regionen" -#: netbox/circuits/forms/filtersets.py:42 -#: netbox/circuits/forms/filtersets.py:162 netbox/dcim/forms/bulk_edit.py:321 -#: netbox/dcim/forms/bulk_edit.py:865 netbox/dcim/forms/filtersets.py:78 -#: netbox/dcim/forms/filtersets.py:190 netbox/dcim/forms/filtersets.py:216 -#: netbox/dcim/forms/filtersets.py:347 netbox/dcim/forms/filtersets.py:430 -#: netbox/dcim/forms/filtersets.py:744 netbox/dcim/forms/filtersets.py:988 -#: netbox/dcim/forms/filtersets.py:1102 netbox/dcim/forms/filtersets.py:1141 -#: netbox/dcim/forms/object_create.py:383 netbox/extras/filtersets.py:520 -#: netbox/ipam/forms/bulk_edit.py:212 netbox/ipam/forms/bulk_edit.py:448 -#: netbox/ipam/forms/bulk_edit.py:524 netbox/ipam/forms/filtersets.py:222 -#: netbox/ipam/forms/filtersets.py:427 netbox/ipam/forms/filtersets.py:480 -#: netbox/virtualization/forms/bulk_edit.py:86 -#: netbox/virtualization/forms/filtersets.py:69 -#: netbox/virtualization/forms/filtersets.py:138 -#: netbox/virtualization/forms/model_forms.py:98 +#: circuits/forms/filtersets.py:42 circuits/forms/filtersets.py:162 +#: dcim/forms/bulk_edit.py:321 dcim/forms/bulk_edit.py:865 +#: dcim/forms/filtersets.py:78 dcim/forms/filtersets.py:190 +#: dcim/forms/filtersets.py:216 dcim/forms/filtersets.py:347 +#: dcim/forms/filtersets.py:430 dcim/forms/filtersets.py:744 +#: dcim/forms/filtersets.py:988 dcim/forms/filtersets.py:1102 +#: dcim/forms/filtersets.py:1141 dcim/forms/object_create.py:383 +#: extras/filtersets.py:520 ipam/forms/bulk_edit.py:213 +#: ipam/forms/bulk_edit.py:479 ipam/forms/filtersets.py:222 +#: ipam/forms/filtersets.py:427 ipam/forms/filtersets.py:480 +#: virtualization/forms/bulk_edit.py:86 virtualization/forms/filtersets.py:69 +#: virtualization/forms/filtersets.py:138 +#: virtualization/forms/model_forms.py:98 msgid "Site group" msgstr "Områdegruppe" -#: netbox/circuits/forms/filtersets.py:65 -#: netbox/circuits/forms/filtersets.py:83 -#: netbox/circuits/forms/filtersets.py:102 -#: netbox/circuits/forms/filtersets.py:117 netbox/core/forms/filtersets.py:67 -#: netbox/core/forms/filtersets.py:135 netbox/dcim/forms/bulk_edit.py:828 -#: netbox/dcim/forms/filtersets.py:172 netbox/dcim/forms/filtersets.py:204 -#: netbox/dcim/forms/filtersets.py:915 netbox/dcim/forms/filtersets.py:1007 -#: netbox/dcim/forms/filtersets.py:1131 netbox/dcim/forms/filtersets.py:1239 -#: netbox/dcim/forms/filtersets.py:1263 netbox/dcim/forms/filtersets.py:1288 -#: netbox/dcim/forms/filtersets.py:1307 netbox/dcim/forms/filtersets.py:1327 -#: netbox/dcim/forms/filtersets.py:1441 netbox/dcim/forms/filtersets.py:1465 -#: netbox/dcim/forms/filtersets.py:1489 netbox/dcim/forms/filtersets.py:1507 -#: netbox/dcim/forms/filtersets.py:1523 netbox/extras/forms/bulk_edit.py:90 -#: netbox/extras/forms/filtersets.py:44 netbox/extras/forms/filtersets.py:134 -#: netbox/extras/forms/filtersets.py:165 netbox/extras/forms/filtersets.py:205 -#: netbox/extras/forms/filtersets.py:221 netbox/extras/forms/filtersets.py:252 -#: netbox/extras/forms/filtersets.py:276 netbox/extras/forms/filtersets.py:441 -#: netbox/ipam/forms/filtersets.py:99 netbox/ipam/forms/filtersets.py:266 -#: netbox/ipam/forms/filtersets.py:307 netbox/ipam/forms/filtersets.py:382 -#: netbox/ipam/forms/filtersets.py:468 netbox/ipam/forms/filtersets.py:527 -#: netbox/ipam/forms/filtersets.py:545 netbox/netbox/tables/tables.py:256 -#: netbox/virtualization/forms/filtersets.py:45 -#: netbox/virtualization/forms/filtersets.py:103 -#: netbox/virtualization/forms/filtersets.py:198 -#: netbox/virtualization/forms/filtersets.py:243 -#: netbox/vpn/forms/filtersets.py:213 netbox/wireless/forms/bulk_edit.py:150 -#: netbox/wireless/forms/filtersets.py:34 -#: netbox/wireless/forms/filtersets.py:74 +#: circuits/forms/filtersets.py:65 circuits/forms/filtersets.py:83 +#: circuits/forms/filtersets.py:102 circuits/forms/filtersets.py:117 +#: core/forms/filtersets.py:67 core/forms/filtersets.py:135 +#: dcim/forms/bulk_edit.py:828 dcim/forms/filtersets.py:172 +#: dcim/forms/filtersets.py:204 dcim/forms/filtersets.py:915 +#: dcim/forms/filtersets.py:1007 dcim/forms/filtersets.py:1131 +#: dcim/forms/filtersets.py:1239 dcim/forms/filtersets.py:1263 +#: dcim/forms/filtersets.py:1288 dcim/forms/filtersets.py:1307 +#: dcim/forms/filtersets.py:1327 dcim/forms/filtersets.py:1441 +#: dcim/forms/filtersets.py:1465 dcim/forms/filtersets.py:1489 +#: dcim/forms/filtersets.py:1507 dcim/forms/filtersets.py:1523 +#: extras/forms/bulk_edit.py:90 extras/forms/filtersets.py:44 +#: extras/forms/filtersets.py:134 extras/forms/filtersets.py:165 +#: extras/forms/filtersets.py:205 extras/forms/filtersets.py:221 +#: extras/forms/filtersets.py:252 extras/forms/filtersets.py:276 +#: extras/forms/filtersets.py:441 ipam/forms/filtersets.py:99 +#: ipam/forms/filtersets.py:266 ipam/forms/filtersets.py:307 +#: ipam/forms/filtersets.py:382 ipam/forms/filtersets.py:468 +#: ipam/forms/filtersets.py:527 ipam/forms/filtersets.py:545 +#: netbox/tables/tables.py:256 virtualization/forms/filtersets.py:45 +#: virtualization/forms/filtersets.py:103 +#: virtualization/forms/filtersets.py:198 +#: virtualization/forms/filtersets.py:243 vpn/forms/filtersets.py:213 +#: wireless/forms/bulk_edit.py:150 wireless/forms/filtersets.py:34 +#: wireless/forms/filtersets.py:74 msgid "Attributes" msgstr "Attributter" -#: netbox/circuits/forms/filtersets.py:73 -#: netbox/circuits/tables/circuits.py:63 -#: netbox/circuits/tables/providers.py:66 -#: netbox/templates/circuits/circuit.html:22 -#: netbox/templates/circuits/provideraccount.html:24 +#: circuits/forms/filtersets.py:73 circuits/tables/circuits.py:63 +#: circuits/tables/providers.py:66 templates/circuits/circuit.html:22 +#: templates/circuits/provideraccount.html:24 msgid "Account" msgstr "Konto" -#: netbox/circuits/forms/filtersets.py:217 +#: circuits/forms/filtersets.py:217 msgid "Term Side" msgstr "Termside" -#: netbox/circuits/forms/filtersets.py:250 -#: netbox/extras/forms/model_forms.py:582 netbox/ipam/forms/filtersets.py:142 -#: netbox/ipam/forms/filtersets.py:546 netbox/ipam/forms/model_forms.py:323 -#: netbox/templates/extras/configcontext.html:60 -#: netbox/templates/ipam/ipaddress.html:59 -#: netbox/templates/ipam/vlan_edit.html:30 -#: netbox/tenancy/forms/filtersets.py:87 netbox/users/forms/model_forms.py:314 +#: circuits/forms/filtersets.py:250 extras/forms/model_forms.py:582 +#: ipam/forms/filtersets.py:142 ipam/forms/filtersets.py:546 +#: ipam/forms/model_forms.py:323 templates/extras/configcontext.html:60 +#: templates/ipam/ipaddress.html:59 templates/ipam/vlan_edit.html:30 +#: tenancy/forms/filtersets.py:87 users/forms/model_forms.py:314 msgid "Assignment" msgstr "Opgave" -#: netbox/circuits/forms/filtersets.py:265 -#: netbox/circuits/forms/model_forms.py:195 -#: netbox/circuits/tables/circuits.py:155 netbox/dcim/forms/bulk_edit.py:117 -#: netbox/dcim/forms/bulk_import.py:100 netbox/dcim/forms/model_forms.py:117 -#: netbox/dcim/tables/sites.py:89 netbox/extras/forms/filtersets.py:480 -#: netbox/ipam/filtersets.py:999 netbox/ipam/forms/bulk_edit.py:538 -#: netbox/ipam/forms/bulk_import.py:436 netbox/ipam/forms/model_forms.py:528 -#: netbox/ipam/tables/fhrp.py:67 netbox/ipam/tables/vlans.py:122 -#: netbox/ipam/tables/vlans.py:226 -#: netbox/templates/circuits/circuitgroupassignment.html:22 -#: netbox/templates/dcim/interface.html:284 netbox/templates/dcim/site.html:37 -#: netbox/templates/ipam/inc/panels/fhrp_groups.html:23 -#: netbox/templates/ipam/vlan.html:27 netbox/templates/tenancy/contact.html:21 -#: netbox/templates/tenancy/tenant.html:20 netbox/templates/users/group.html:6 -#: netbox/templates/users/group.html:14 -#: netbox/templates/virtualization/cluster.html:29 -#: netbox/templates/vpn/tunnel.html:29 -#: netbox/templates/wireless/wirelesslan.html:18 -#: netbox/tenancy/forms/bulk_edit.py:43 netbox/tenancy/forms/bulk_edit.py:94 -#: netbox/tenancy/forms/bulk_import.py:40 -#: netbox/tenancy/forms/bulk_import.py:81 -#: netbox/tenancy/forms/filtersets.py:48 netbox/tenancy/forms/filtersets.py:78 -#: netbox/tenancy/forms/filtersets.py:97 -#: netbox/tenancy/forms/model_forms.py:45 -#: netbox/tenancy/forms/model_forms.py:97 -#: netbox/tenancy/forms/model_forms.py:122 -#: netbox/tenancy/tables/contacts.py:60 netbox/tenancy/tables/contacts.py:107 -#: netbox/tenancy/tables/tenants.py:42 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 -#: netbox/virtualization/forms/bulk_edit.py:65 -#: netbox/virtualization/forms/bulk_import.py:47 -#: netbox/virtualization/forms/filtersets.py:85 -#: netbox/virtualization/forms/model_forms.py:66 -#: netbox/virtualization/tables/clusters.py:70 -#: netbox/vpn/forms/bulk_edit.py:112 netbox/vpn/forms/bulk_import.py:158 -#: netbox/vpn/forms/filtersets.py:116 netbox/vpn/tables/crypto.py:31 -#: netbox/vpn/tables/tunnels.py:44 netbox/wireless/forms/bulk_edit.py:48 -#: netbox/wireless/forms/bulk_import.py:36 -#: netbox/wireless/forms/filtersets.py:46 -#: netbox/wireless/forms/model_forms.py:40 -#: netbox/wireless/tables/wirelesslan.py:48 +#: circuits/forms/filtersets.py:265 circuits/forms/model_forms.py:195 +#: circuits/tables/circuits.py:155 dcim/forms/bulk_edit.py:117 +#: dcim/forms/bulk_import.py:100 dcim/forms/model_forms.py:117 +#: dcim/tables/sites.py:89 extras/forms/filtersets.py:480 +#: ipam/filtersets.py:999 ipam/forms/bulk_edit.py:493 +#: ipam/forms/bulk_import.py:436 ipam/forms/model_forms.py:528 +#: ipam/tables/fhrp.py:67 ipam/tables/vlans.py:122 ipam/tables/vlans.py:226 +#: templates/circuits/circuitgroupassignment.html:22 +#: templates/dcim/interface.html:284 templates/dcim/site.html:37 +#: templates/ipam/inc/panels/fhrp_groups.html:23 templates/ipam/vlan.html:27 +#: templates/tenancy/contact.html:21 templates/tenancy/tenant.html:20 +#: templates/users/group.html:6 templates/users/group.html:14 +#: templates/virtualization/cluster.html:29 templates/vpn/tunnel.html:29 +#: templates/wireless/wirelesslan.html:18 tenancy/forms/bulk_edit.py:43 +#: tenancy/forms/bulk_edit.py:94 tenancy/forms/bulk_import.py:40 +#: tenancy/forms/bulk_import.py:81 tenancy/forms/filtersets.py:48 +#: tenancy/forms/filtersets.py:78 tenancy/forms/filtersets.py:97 +#: tenancy/forms/model_forms.py:45 tenancy/forms/model_forms.py:97 +#: tenancy/forms/model_forms.py:122 tenancy/tables/contacts.py:60 +#: tenancy/tables/contacts.py:107 tenancy/tables/tenants.py:42 +#: users/filtersets.py:62 users/filtersets.py:185 users/forms/filtersets.py:31 +#: users/forms/filtersets.py:37 users/forms/filtersets.py:79 +#: virtualization/forms/bulk_edit.py:65 virtualization/forms/bulk_import.py:47 +#: virtualization/forms/filtersets.py:85 +#: virtualization/forms/model_forms.py:66 virtualization/tables/clusters.py:70 +#: vpn/forms/bulk_edit.py:112 vpn/forms/bulk_import.py:158 +#: vpn/forms/filtersets.py:116 vpn/tables/crypto.py:31 +#: vpn/tables/tunnels.py:44 wireless/forms/bulk_edit.py:48 +#: wireless/forms/bulk_import.py:36 wireless/forms/filtersets.py:46 +#: wireless/forms/model_forms.py:40 wireless/tables/wirelesslan.py:48 msgid "Group" msgstr "Gruppe" -#: netbox/circuits/forms/model_forms.py:182 -#: netbox/templates/circuits/circuitgroup.html:25 +#: circuits/forms/model_forms.py:182 templates/circuits/circuitgroup.html:25 msgid "Circuit Group" msgstr "Kredsløbsgruppe" -#: netbox/circuits/models/circuits.py:27 netbox/dcim/models/cables.py:67 -#: netbox/dcim/models/device_component_templates.py:517 -#: netbox/dcim/models/device_component_templates.py:617 -#: netbox/dcim/models/device_components.py:975 -#: netbox/dcim/models/device_components.py:1049 -#: netbox/dcim/models/device_components.py:1204 -#: netbox/dcim/models/devices.py:479 netbox/dcim/models/racks.py:224 -#: netbox/extras/models/tags.py:28 +#: circuits/models/circuits.py:27 dcim/models/cables.py:67 +#: dcim/models/device_component_templates.py:517 +#: dcim/models/device_component_templates.py:617 +#: dcim/models/device_components.py:975 dcim/models/device_components.py:1049 +#: dcim/models/device_components.py:1204 dcim/models/devices.py:479 +#: dcim/models/racks.py:224 extras/models/tags.py:28 msgid "color" msgstr "farve" -#: netbox/circuits/models/circuits.py:36 +#: circuits/models/circuits.py:36 msgid "circuit type" msgstr "kredsløbstype" -#: netbox/circuits/models/circuits.py:37 +#: circuits/models/circuits.py:37 msgid "circuit types" msgstr "kredsløbstyper" -#: netbox/circuits/models/circuits.py:48 +#: circuits/models/circuits.py:48 msgid "circuit ID" msgstr "kredsløbs-ID" -#: netbox/circuits/models/circuits.py:49 +#: circuits/models/circuits.py:49 msgid "Unique circuit ID" msgstr "Unikt kredsløbs-ID" -#: netbox/circuits/models/circuits.py:69 netbox/core/models/data.py:52 -#: netbox/core/models/jobs.py:84 netbox/dcim/models/cables.py:49 -#: netbox/dcim/models/devices.py:653 netbox/dcim/models/devices.py:1173 -#: netbox/dcim/models/devices.py:1399 netbox/dcim/models/power.py:96 -#: netbox/dcim/models/racks.py:297 netbox/dcim/models/sites.py:154 -#: netbox/dcim/models/sites.py:266 netbox/ipam/models/ip.py:253 -#: netbox/ipam/models/ip.py:522 netbox/ipam/models/ip.py:730 -#: netbox/ipam/models/vlans.py:195 netbox/virtualization/models/clusters.py:74 -#: netbox/virtualization/models/virtualmachines.py:84 -#: netbox/vpn/models/tunnels.py:40 netbox/wireless/models.py:95 -#: netbox/wireless/models.py:159 +#: circuits/models/circuits.py:69 core/models/data.py:52 +#: core/models/jobs.py:84 dcim/models/cables.py:49 dcim/models/devices.py:653 +#: dcim/models/devices.py:1173 dcim/models/devices.py:1399 +#: dcim/models/power.py:96 dcim/models/racks.py:297 dcim/models/sites.py:154 +#: dcim/models/sites.py:266 ipam/models/ip.py:253 ipam/models/ip.py:522 +#: ipam/models/ip.py:730 ipam/models/vlans.py:195 +#: virtualization/models/clusters.py:74 +#: virtualization/models/virtualmachines.py:84 vpn/models/tunnels.py:40 +#: wireless/models.py:95 wireless/models.py:159 msgid "status" msgstr "status" -#: netbox/circuits/models/circuits.py:84 netbox/templates/core/plugin.html:19 +#: circuits/models/circuits.py:84 templates/core/plugin.html:20 msgid "installed" msgstr "installeret" -#: netbox/circuits/models/circuits.py:89 +#: circuits/models/circuits.py:89 msgid "terminates" msgstr "afsluttes" -#: netbox/circuits/models/circuits.py:94 +#: circuits/models/circuits.py:94 msgid "commit rate (Kbps)" msgstr "forpligtelseshastighed (Kbps)" -#: netbox/circuits/models/circuits.py:95 +#: circuits/models/circuits.py:95 msgid "Committed rate" msgstr "Forpligtet sats" -#: netbox/circuits/models/circuits.py:137 +#: circuits/models/circuits.py:137 msgid "circuit" msgstr "kredsløb" -#: netbox/circuits/models/circuits.py:138 +#: circuits/models/circuits.py:138 msgid "circuits" msgstr "kredsløb" -#: netbox/circuits/models/circuits.py:170 +#: circuits/models/circuits.py:170 msgid "circuit group" msgstr "kredsløbsgruppe" -#: netbox/circuits/models/circuits.py:171 +#: circuits/models/circuits.py:171 msgid "circuit groups" msgstr "kredsløbsgrupper" -#: netbox/circuits/models/circuits.py:195 netbox/ipam/models/fhrp.py:93 -#: netbox/tenancy/models/contacts.py:134 +#: circuits/models/circuits.py:195 ipam/models/fhrp.py:93 +#: tenancy/models/contacts.py:134 msgid "priority" msgstr "prioritet" -#: netbox/circuits/models/circuits.py:213 +#: circuits/models/circuits.py:213 msgid "Circuit group assignment" msgstr "Kredsløbsgruppetildeling" -#: netbox/circuits/models/circuits.py:214 +#: circuits/models/circuits.py:214 msgid "Circuit group assignments" msgstr "Kredsløbsgruppeopgaver" -#: netbox/circuits/models/circuits.py:240 +#: circuits/models/circuits.py:240 msgid "termination" msgstr "afslutning" -#: netbox/circuits/models/circuits.py:257 +#: circuits/models/circuits.py:257 msgid "port speed (Kbps)" msgstr "porthastighed (Kbps)" -#: netbox/circuits/models/circuits.py:260 +#: circuits/models/circuits.py:260 msgid "Physical circuit speed" msgstr "Fysisk kredsløbshastighed" -#: netbox/circuits/models/circuits.py:265 +#: circuits/models/circuits.py:265 msgid "upstream speed (Kbps)" msgstr "opstrømshastighed (Kbps)" -#: netbox/circuits/models/circuits.py:266 +#: circuits/models/circuits.py:266 msgid "Upstream speed, if different from port speed" msgstr "Opstrømshastighed, hvis forskellig fra porthastighed" -#: netbox/circuits/models/circuits.py:271 +#: circuits/models/circuits.py:271 msgid "cross-connect ID" msgstr "krydsforbindelses-id" -#: netbox/circuits/models/circuits.py:272 +#: circuits/models/circuits.py:272 msgid "ID of the local cross-connect" msgstr "ID for den lokale krydsforbindelse" -#: netbox/circuits/models/circuits.py:277 +#: circuits/models/circuits.py:277 msgid "patch panel/port(s)" msgstr "patchpanel/port (er)" -#: netbox/circuits/models/circuits.py:278 +#: circuits/models/circuits.py:278 msgid "Patch panel ID and port number(s)" msgstr "Patchpanelets ID og portnummer" -#: netbox/circuits/models/circuits.py:281 -#: netbox/dcim/models/device_component_templates.py:61 -#: netbox/dcim/models/device_components.py:68 netbox/dcim/models/racks.py:685 -#: netbox/extras/models/configs.py:45 netbox/extras/models/configs.py:219 -#: netbox/extras/models/customfields.py:125 netbox/extras/models/models.py:61 -#: netbox/extras/models/models.py:158 netbox/extras/models/models.py:396 -#: netbox/extras/models/models.py:511 -#: netbox/extras/models/notifications.py:131 -#: netbox/extras/models/staging.py:31 netbox/extras/models/tags.py:32 -#: netbox/netbox/models/__init__.py:110 netbox/netbox/models/__init__.py:145 -#: netbox/netbox/models/__init__.py:191 netbox/users/models/permissions.py:24 -#: netbox/users/models/tokens.py:57 netbox/users/models/users.py:33 -#: netbox/virtualization/models/virtualmachines.py:289 +#: circuits/models/circuits.py:281 +#: dcim/models/device_component_templates.py:61 +#: dcim/models/device_components.py:68 dcim/models/racks.py:685 +#: extras/models/configs.py:45 extras/models/configs.py:219 +#: extras/models/customfields.py:125 extras/models/models.py:61 +#: extras/models/models.py:158 extras/models/models.py:396 +#: extras/models/models.py:511 extras/models/notifications.py:131 +#: extras/models/staging.py:31 extras/models/tags.py:32 +#: netbox/models/__init__.py:110 netbox/models/__init__.py:145 +#: netbox/models/__init__.py:191 users/models/permissions.py:24 +#: users/models/tokens.py:57 users/models/users.py:33 +#: virtualization/models/virtualmachines.py:289 msgid "description" msgstr "beskrivelse" -#: netbox/circuits/models/circuits.py:294 +#: circuits/models/circuits.py:294 msgid "circuit termination" msgstr "kredsløbsafslutning" -#: netbox/circuits/models/circuits.py:295 +#: circuits/models/circuits.py:295 msgid "circuit terminations" msgstr "kredsløbsafslutninger" -#: netbox/circuits/models/circuits.py:308 +#: circuits/models/circuits.py:308 msgid "" "A circuit termination must attach to either a site or a provider network." msgstr "" "En kredsløbsafslutning skal tilsluttes enten et område eller et " "leverandørnetværk." -#: netbox/circuits/models/circuits.py:310 +#: circuits/models/circuits.py:310 msgid "" "A circuit termination cannot attach to both a site and a provider network." msgstr "" "En kredsløbsafslutning kan ikke knyttes til både et område og et " "lerverandørnetværk." -#: netbox/circuits/models/providers.py:22 -#: netbox/circuits/models/providers.py:66 -#: netbox/circuits/models/providers.py:104 netbox/core/models/data.py:39 -#: netbox/core/models/jobs.py:45 -#: netbox/dcim/models/device_component_templates.py:43 -#: netbox/dcim/models/device_components.py:53 -#: netbox/dcim/models/devices.py:593 netbox/dcim/models/devices.py:1330 -#: netbox/dcim/models/devices.py:1395 netbox/dcim/models/power.py:39 -#: netbox/dcim/models/power.py:92 netbox/dcim/models/racks.py:262 -#: netbox/dcim/models/sites.py:138 netbox/extras/models/configs.py:36 -#: netbox/extras/models/configs.py:215 netbox/extras/models/customfields.py:92 -#: netbox/extras/models/models.py:56 netbox/extras/models/models.py:153 -#: netbox/extras/models/models.py:296 netbox/extras/models/models.py:392 -#: netbox/extras/models/models.py:501 netbox/extras/models/models.py:596 -#: netbox/extras/models/notifications.py:126 -#: netbox/extras/models/scripts.py:30 netbox/extras/models/staging.py:26 -#: netbox/ipam/models/asns.py:18 netbox/ipam/models/fhrp.py:25 -#: netbox/ipam/models/services.py:52 netbox/ipam/models/services.py:88 -#: netbox/ipam/models/vlans.py:36 netbox/ipam/models/vlans.py:184 -#: netbox/ipam/models/vrfs.py:22 netbox/ipam/models/vrfs.py:79 -#: netbox/netbox/models/__init__.py:137 netbox/netbox/models/__init__.py:181 -#: netbox/tenancy/models/contacts.py:64 netbox/tenancy/models/tenants.py:20 -#: netbox/tenancy/models/tenants.py:45 netbox/users/models/permissions.py:20 -#: netbox/users/models/users.py:28 netbox/virtualization/models/clusters.py:57 -#: netbox/virtualization/models/virtualmachines.py:72 -#: netbox/virtualization/models/virtualmachines.py:279 -#: netbox/vpn/models/crypto.py:24 netbox/vpn/models/crypto.py:71 -#: netbox/vpn/models/crypto.py:131 netbox/vpn/models/crypto.py:183 -#: netbox/vpn/models/crypto.py:221 netbox/vpn/models/l2vpn.py:22 -#: netbox/vpn/models/tunnels.py:35 netbox/wireless/models.py:51 +#: circuits/models/providers.py:22 circuits/models/providers.py:66 +#: circuits/models/providers.py:104 core/models/data.py:39 +#: core/models/jobs.py:45 dcim/models/device_component_templates.py:43 +#: dcim/models/device_components.py:53 dcim/models/devices.py:593 +#: dcim/models/devices.py:1330 dcim/models/devices.py:1395 +#: dcim/models/power.py:39 dcim/models/power.py:92 dcim/models/racks.py:262 +#: dcim/models/sites.py:138 extras/models/configs.py:36 +#: extras/models/configs.py:215 extras/models/customfields.py:92 +#: extras/models/models.py:56 extras/models/models.py:153 +#: extras/models/models.py:296 extras/models/models.py:392 +#: extras/models/models.py:501 extras/models/models.py:596 +#: extras/models/notifications.py:126 extras/models/scripts.py:30 +#: extras/models/staging.py:26 ipam/models/asns.py:18 ipam/models/fhrp.py:25 +#: ipam/models/services.py:52 ipam/models/services.py:88 +#: ipam/models/vlans.py:36 ipam/models/vlans.py:184 ipam/models/vrfs.py:22 +#: ipam/models/vrfs.py:79 netbox/models/__init__.py:137 +#: netbox/models/__init__.py:181 tenancy/models/contacts.py:64 +#: tenancy/models/tenants.py:20 tenancy/models/tenants.py:45 +#: users/models/permissions.py:20 users/models/users.py:28 +#: virtualization/models/clusters.py:57 +#: virtualization/models/virtualmachines.py:72 +#: virtualization/models/virtualmachines.py:279 vpn/models/crypto.py:24 +#: vpn/models/crypto.py:71 vpn/models/crypto.py:131 vpn/models/crypto.py:183 +#: vpn/models/crypto.py:221 vpn/models/l2vpn.py:22 vpn/models/tunnels.py:35 +#: wireless/models.py:51 msgid "name" msgstr "navn" -#: netbox/circuits/models/providers.py:25 +#: circuits/models/providers.py:25 msgid "Full name of the provider" msgstr "Leverandørens fulde navn" -#: netbox/circuits/models/providers.py:28 netbox/dcim/models/devices.py:86 -#: netbox/dcim/models/racks.py:137 netbox/dcim/models/sites.py:149 -#: netbox/extras/models/models.py:506 netbox/ipam/models/asns.py:23 -#: netbox/ipam/models/vlans.py:40 netbox/netbox/models/__init__.py:141 -#: netbox/netbox/models/__init__.py:186 netbox/tenancy/models/tenants.py:25 -#: netbox/tenancy/models/tenants.py:49 netbox/vpn/models/l2vpn.py:27 -#: netbox/wireless/models.py:56 +#: circuits/models/providers.py:28 dcim/models/devices.py:86 +#: dcim/models/racks.py:137 dcim/models/sites.py:149 +#: extras/models/models.py:506 ipam/models/asns.py:23 ipam/models/vlans.py:40 +#: netbox/models/__init__.py:141 netbox/models/__init__.py:186 +#: tenancy/models/tenants.py:25 tenancy/models/tenants.py:49 +#: vpn/models/l2vpn.py:27 wireless/models.py:56 msgid "slug" msgstr "slug" -#: netbox/circuits/models/providers.py:42 +#: circuits/models/providers.py:42 msgid "provider" msgstr "leverandør" -#: netbox/circuits/models/providers.py:43 +#: circuits/models/providers.py:43 msgid "providers" msgstr "leverandører" -#: netbox/circuits/models/providers.py:63 +#: circuits/models/providers.py:63 msgid "account ID" msgstr "konto-ID" -#: netbox/circuits/models/providers.py:86 +#: circuits/models/providers.py:86 msgid "provider account" msgstr "leverandørkonto" -#: netbox/circuits/models/providers.py:87 +#: circuits/models/providers.py:87 msgid "provider accounts" msgstr "leverandørkonti" -#: netbox/circuits/models/providers.py:115 +#: circuits/models/providers.py:115 msgid "service ID" msgstr "service-id" -#: netbox/circuits/models/providers.py:126 +#: circuits/models/providers.py:126 msgid "provider network" msgstr "leverandørnetværk" -#: netbox/circuits/models/providers.py:127 +#: circuits/models/providers.py:127 msgid "provider networks" msgstr "leverandørnetværk" -#: netbox/circuits/tables/circuits.py:32 -#: netbox/circuits/tables/circuits.py:132 -#: netbox/circuits/tables/providers.py:18 -#: netbox/circuits/tables/providers.py:69 -#: netbox/circuits/tables/providers.py:99 netbox/core/tables/data.py:16 -#: netbox/core/tables/jobs.py:14 netbox/core/tables/plugins.py:44 -#: netbox/core/tables/tasks.py:11 netbox/core/tables/tasks.py:115 -#: netbox/dcim/forms/filtersets.py:63 netbox/dcim/forms/object_create.py:43 -#: netbox/dcim/tables/devices.py:52 netbox/dcim/tables/devices.py:92 -#: netbox/dcim/tables/devices.py:134 netbox/dcim/tables/devices.py:289 -#: netbox/dcim/tables/devices.py:392 netbox/dcim/tables/devices.py:433 -#: netbox/dcim/tables/devices.py:482 netbox/dcim/tables/devices.py:531 -#: netbox/dcim/tables/devices.py:648 netbox/dcim/tables/devices.py:731 -#: netbox/dcim/tables/devices.py:778 netbox/dcim/tables/devices.py:841 -#: netbox/dcim/tables/devices.py:911 netbox/dcim/tables/devices.py:974 -#: netbox/dcim/tables/devices.py:994 netbox/dcim/tables/devices.py:1023 -#: netbox/dcim/tables/devices.py:1053 netbox/dcim/tables/devicetypes.py:31 -#: netbox/dcim/tables/power.py:22 netbox/dcim/tables/power.py:62 -#: netbox/dcim/tables/racks.py:24 netbox/dcim/tables/racks.py:113 -#: netbox/dcim/tables/sites.py:24 netbox/dcim/tables/sites.py:51 -#: netbox/dcim/tables/sites.py:78 netbox/dcim/tables/sites.py:130 -#: netbox/extras/forms/filtersets.py:213 netbox/extras/tables/tables.py:58 -#: netbox/extras/tables/tables.py:122 netbox/extras/tables/tables.py:155 -#: netbox/extras/tables/tables.py:180 netbox/extras/tables/tables.py:246 -#: netbox/extras/tables/tables.py:361 netbox/extras/tables/tables.py:378 -#: netbox/extras/tables/tables.py:401 netbox/extras/tables/tables.py:439 -#: netbox/extras/tables/tables.py:491 netbox/extras/tables/tables.py:514 -#: netbox/ipam/forms/bulk_edit.py:406 netbox/ipam/forms/filtersets.py:386 -#: netbox/ipam/tables/asn.py:16 netbox/ipam/tables/ip.py:85 -#: netbox/ipam/tables/ip.py:160 netbox/ipam/tables/services.py:15 -#: netbox/ipam/tables/services.py:40 netbox/ipam/tables/vlans.py:64 -#: netbox/ipam/tables/vlans.py:114 netbox/ipam/tables/vrfs.py:26 -#: netbox/ipam/tables/vrfs.py:68 -#: netbox/templates/circuits/circuitgroup.html:28 -#: netbox/templates/circuits/circuittype.html:22 -#: netbox/templates/circuits/provideraccount.html:28 -#: netbox/templates/circuits/providernetwork.html:24 -#: netbox/templates/core/datasource.html:34 netbox/templates/core/job.html:44 -#: netbox/templates/core/plugin.html:53 -#: netbox/templates/core/rq_worker.html:43 -#: netbox/templates/dcim/consoleport.html:28 -#: netbox/templates/dcim/consoleserverport.html:28 -#: netbox/templates/dcim/devicebay.html:24 -#: netbox/templates/dcim/devicerole.html:26 -#: netbox/templates/dcim/frontport.html:28 -#: netbox/templates/dcim/inc/interface_vlans_table.html:5 -#: netbox/templates/dcim/inc/panels/inventory_items.html:18 -#: netbox/templates/dcim/interface.html:38 -#: netbox/templates/dcim/interface.html:165 -#: netbox/templates/dcim/inventoryitem.html:28 -#: netbox/templates/dcim/inventoryitemrole.html:18 -#: netbox/templates/dcim/location.html:29 -#: netbox/templates/dcim/manufacturer.html:36 -#: netbox/templates/dcim/modulebay.html:30 -#: netbox/templates/dcim/platform.html:29 -#: netbox/templates/dcim/poweroutlet.html:28 -#: netbox/templates/dcim/powerport.html:28 -#: netbox/templates/dcim/rackrole.html:22 -#: netbox/templates/dcim/rearport.html:28 netbox/templates/dcim/region.html:29 -#: netbox/templates/dcim/sitegroup.html:29 -#: netbox/templates/dcim/virtualdevicecontext.html:18 -#: netbox/templates/extras/configcontext.html:13 -#: netbox/templates/extras/configtemplate.html:13 -#: netbox/templates/extras/customfield.html:13 -#: netbox/templates/extras/customlink.html:13 -#: netbox/templates/extras/eventrule.html:13 -#: netbox/templates/extras/exporttemplate.html:15 -#: netbox/templates/extras/notificationgroup.html:14 -#: netbox/templates/extras/savedfilter.html:13 -#: netbox/templates/extras/script_list.html:44 -#: netbox/templates/extras/tag.html:14 netbox/templates/extras/webhook.html:13 -#: netbox/templates/ipam/asnrange.html:15 -#: netbox/templates/ipam/fhrpgroup.html:30 netbox/templates/ipam/rir.html:22 -#: netbox/templates/ipam/role.html:22 -#: netbox/templates/ipam/routetarget.html:13 -#: netbox/templates/ipam/service.html:24 -#: netbox/templates/ipam/servicetemplate.html:15 -#: netbox/templates/ipam/vlan.html:35 netbox/templates/ipam/vlangroup.html:30 -#: netbox/templates/tenancy/contact.html:25 -#: netbox/templates/tenancy/contactgroup.html:21 -#: netbox/templates/tenancy/contactrole.html:18 -#: netbox/templates/tenancy/tenantgroup.html:29 -#: netbox/templates/users/group.html:17 -#: netbox/templates/users/objectpermission.html:17 -#: netbox/templates/virtualization/cluster.html:13 -#: netbox/templates/virtualization/clustergroup.html:22 -#: netbox/templates/virtualization/clustertype.html:22 -#: netbox/templates/virtualization/virtualdisk.html:25 -#: netbox/templates/virtualization/virtualmachine.html:15 -#: netbox/templates/virtualization/vminterface.html:25 -#: netbox/templates/vpn/ikepolicy.html:13 -#: netbox/templates/vpn/ikeproposal.html:13 -#: netbox/templates/vpn/ipsecpolicy.html:13 -#: netbox/templates/vpn/ipsecprofile.html:13 -#: netbox/templates/vpn/ipsecprofile.html:36 -#: netbox/templates/vpn/ipsecprofile.html:69 -#: netbox/templates/vpn/ipsecproposal.html:13 -#: netbox/templates/vpn/l2vpn.html:14 netbox/templates/vpn/tunnel.html:21 -#: netbox/templates/vpn/tunnelgroup.html:26 -#: netbox/templates/wireless/wirelesslangroup.html:29 -#: netbox/tenancy/tables/contacts.py:19 netbox/tenancy/tables/contacts.py:41 -#: netbox/tenancy/tables/contacts.py:56 netbox/tenancy/tables/tenants.py:16 -#: netbox/tenancy/tables/tenants.py:38 netbox/users/tables.py:62 -#: netbox/users/tables.py:76 netbox/virtualization/forms/bulk_create.py:20 -#: netbox/virtualization/forms/object_create.py:13 -#: netbox/virtualization/forms/object_create.py:23 -#: netbox/virtualization/tables/clusters.py:17 -#: netbox/virtualization/tables/clusters.py:39 -#: netbox/virtualization/tables/clusters.py:62 -#: netbox/virtualization/tables/virtualmachines.py:55 -#: netbox/virtualization/tables/virtualmachines.py:139 -#: netbox/virtualization/tables/virtualmachines.py:194 -#: netbox/vpn/tables/crypto.py:18 netbox/vpn/tables/crypto.py:57 -#: netbox/vpn/tables/crypto.py:93 netbox/vpn/tables/crypto.py:129 -#: netbox/vpn/tables/crypto.py:158 netbox/vpn/tables/l2vpn.py:23 -#: netbox/vpn/tables/tunnels.py:18 netbox/vpn/tables/tunnels.py:40 -#: netbox/wireless/tables/wirelesslan.py:18 -#: netbox/wireless/tables/wirelesslan.py:79 +#: circuits/tables/circuits.py:32 circuits/tables/circuits.py:132 +#: circuits/tables/providers.py:18 circuits/tables/providers.py:69 +#: circuits/tables/providers.py:99 core/tables/data.py:16 +#: core/tables/jobs.py:14 core/tables/plugins.py:44 core/tables/tasks.py:11 +#: core/tables/tasks.py:115 dcim/forms/filtersets.py:63 +#: dcim/forms/object_create.py:43 dcim/tables/devices.py:52 +#: dcim/tables/devices.py:92 dcim/tables/devices.py:134 +#: dcim/tables/devices.py:289 dcim/tables/devices.py:392 +#: dcim/tables/devices.py:433 dcim/tables/devices.py:482 +#: dcim/tables/devices.py:531 dcim/tables/devices.py:648 +#: dcim/tables/devices.py:731 dcim/tables/devices.py:778 +#: dcim/tables/devices.py:841 dcim/tables/devices.py:911 +#: dcim/tables/devices.py:974 dcim/tables/devices.py:994 +#: dcim/tables/devices.py:1023 dcim/tables/devices.py:1053 +#: dcim/tables/devicetypes.py:31 dcim/tables/power.py:22 +#: dcim/tables/power.py:62 dcim/tables/racks.py:24 dcim/tables/racks.py:113 +#: dcim/tables/sites.py:24 dcim/tables/sites.py:51 dcim/tables/sites.py:78 +#: dcim/tables/sites.py:130 extras/forms/filtersets.py:213 +#: extras/tables/tables.py:58 extras/tables/tables.py:122 +#: extras/tables/tables.py:155 extras/tables/tables.py:180 +#: extras/tables/tables.py:246 extras/tables/tables.py:361 +#: extras/tables/tables.py:378 extras/tables/tables.py:401 +#: extras/tables/tables.py:439 extras/tables/tables.py:491 +#: extras/tables/tables.py:514 ipam/forms/bulk_edit.py:407 +#: ipam/forms/filtersets.py:386 ipam/tables/asn.py:16 ipam/tables/ip.py:85 +#: ipam/tables/ip.py:160 ipam/tables/services.py:15 ipam/tables/services.py:40 +#: ipam/tables/vlans.py:64 ipam/tables/vlans.py:114 ipam/tables/vrfs.py:26 +#: ipam/tables/vrfs.py:68 templates/circuits/circuitgroup.html:28 +#: templates/circuits/circuittype.html:22 +#: templates/circuits/provideraccount.html:28 +#: templates/circuits/providernetwork.html:24 +#: templates/core/datasource.html:34 templates/core/job.html:44 +#: templates/core/plugin.html:54 templates/core/rq_worker.html:43 +#: templates/dcim/consoleport.html:28 templates/dcim/consoleserverport.html:28 +#: templates/dcim/devicebay.html:24 templates/dcim/devicerole.html:26 +#: templates/dcim/frontport.html:28 +#: templates/dcim/inc/interface_vlans_table.html:5 +#: templates/dcim/inc/panels/inventory_items.html:18 +#: templates/dcim/interface.html:38 templates/dcim/interface.html:165 +#: templates/dcim/inventoryitem.html:28 +#: templates/dcim/inventoryitemrole.html:18 templates/dcim/location.html:29 +#: templates/dcim/manufacturer.html:36 templates/dcim/modulebay.html:30 +#: templates/dcim/platform.html:29 templates/dcim/poweroutlet.html:28 +#: templates/dcim/powerport.html:28 templates/dcim/rackrole.html:22 +#: templates/dcim/rearport.html:28 templates/dcim/region.html:29 +#: templates/dcim/sitegroup.html:29 +#: templates/dcim/virtualdevicecontext.html:18 +#: templates/extras/configcontext.html:13 +#: templates/extras/configtemplate.html:13 +#: templates/extras/customfield.html:13 templates/extras/customlink.html:13 +#: templates/extras/eventrule.html:13 templates/extras/exporttemplate.html:15 +#: templates/extras/notificationgroup.html:14 +#: templates/extras/savedfilter.html:13 templates/extras/script_list.html:44 +#: templates/extras/tag.html:14 templates/extras/webhook.html:13 +#: templates/ipam/asnrange.html:15 templates/ipam/fhrpgroup.html:30 +#: templates/ipam/rir.html:22 templates/ipam/role.html:22 +#: templates/ipam/routetarget.html:13 templates/ipam/service.html:24 +#: templates/ipam/servicetemplate.html:15 templates/ipam/vlan.html:35 +#: templates/ipam/vlangroup.html:30 templates/tenancy/contact.html:25 +#: templates/tenancy/contactgroup.html:21 +#: templates/tenancy/contactrole.html:18 templates/tenancy/tenantgroup.html:29 +#: templates/users/group.html:17 templates/users/objectpermission.html:17 +#: templates/virtualization/cluster.html:13 +#: templates/virtualization/clustergroup.html:22 +#: templates/virtualization/clustertype.html:22 +#: templates/virtualization/virtualdisk.html:25 +#: templates/virtualization/virtualmachine.html:15 +#: templates/virtualization/vminterface.html:25 +#: templates/vpn/ikepolicy.html:13 templates/vpn/ikeproposal.html:13 +#: templates/vpn/ipsecpolicy.html:13 templates/vpn/ipsecprofile.html:13 +#: templates/vpn/ipsecprofile.html:36 templates/vpn/ipsecprofile.html:69 +#: templates/vpn/ipsecproposal.html:13 templates/vpn/l2vpn.html:14 +#: templates/vpn/tunnel.html:21 templates/vpn/tunnelgroup.html:26 +#: templates/wireless/wirelesslangroup.html:29 tenancy/tables/contacts.py:19 +#: tenancy/tables/contacts.py:41 tenancy/tables/contacts.py:56 +#: tenancy/tables/tenants.py:16 tenancy/tables/tenants.py:38 +#: users/tables.py:62 users/tables.py:76 +#: virtualization/forms/bulk_create.py:20 +#: virtualization/forms/object_create.py:13 +#: virtualization/forms/object_create.py:23 +#: virtualization/tables/clusters.py:17 virtualization/tables/clusters.py:39 +#: virtualization/tables/clusters.py:62 +#: virtualization/tables/virtualmachines.py:55 +#: virtualization/tables/virtualmachines.py:139 +#: virtualization/tables/virtualmachines.py:194 vpn/tables/crypto.py:18 +#: vpn/tables/crypto.py:57 vpn/tables/crypto.py:93 vpn/tables/crypto.py:129 +#: vpn/tables/crypto.py:158 vpn/tables/l2vpn.py:23 vpn/tables/tunnels.py:18 +#: vpn/tables/tunnels.py:40 wireless/tables/wirelesslan.py:18 +#: wireless/tables/wirelesslan.py:79 msgid "Name" msgstr "Navn" -#: netbox/circuits/tables/circuits.py:41 -#: netbox/circuits/tables/circuits.py:138 -#: netbox/circuits/tables/providers.py:45 -#: netbox/circuits/tables/providers.py:79 netbox/netbox/navigation/menu.py:266 -#: netbox/netbox/navigation/menu.py:270 netbox/netbox/navigation/menu.py:272 -#: netbox/templates/circuits/provider.html:57 -#: netbox/templates/circuits/provideraccount.html:44 -#: netbox/templates/circuits/providernetwork.html:50 +#: circuits/tables/circuits.py:41 circuits/tables/circuits.py:138 +#: circuits/tables/providers.py:45 circuits/tables/providers.py:79 +#: netbox/navigation/menu.py:266 netbox/navigation/menu.py:270 +#: netbox/navigation/menu.py:272 templates/circuits/provider.html:57 +#: templates/circuits/provideraccount.html:44 +#: templates/circuits/providernetwork.html:50 msgid "Circuits" msgstr "Kredsløb" -#: netbox/circuits/tables/circuits.py:55 -#: netbox/templates/circuits/circuit.html:26 +#: circuits/tables/circuits.py:55 templates/circuits/circuit.html:26 msgid "Circuit ID" msgstr "Kredsløbs ID" -#: netbox/circuits/tables/circuits.py:69 -#: netbox/wireless/forms/model_forms.py:160 +#: circuits/tables/circuits.py:69 wireless/forms/model_forms.py:160 msgid "Side A" msgstr "Side A" -#: netbox/circuits/tables/circuits.py:74 +#: circuits/tables/circuits.py:74 msgid "Side Z" msgstr "Side Z" -#: netbox/circuits/tables/circuits.py:77 -#: netbox/templates/circuits/circuit.html:55 +#: circuits/tables/circuits.py:77 templates/circuits/circuit.html:55 msgid "Commit Rate" msgstr "Forpligtelsesrate" -#: netbox/circuits/tables/circuits.py:80 -#: netbox/circuits/tables/providers.py:48 -#: netbox/circuits/tables/providers.py:82 -#: netbox/circuits/tables/providers.py:107 netbox/dcim/tables/devices.py:1036 -#: netbox/dcim/tables/devicetypes.py:92 netbox/dcim/tables/modules.py:29 -#: netbox/dcim/tables/modules.py:72 netbox/dcim/tables/power.py:39 -#: netbox/dcim/tables/power.py:96 netbox/dcim/tables/racks.py:84 -#: netbox/dcim/tables/racks.py:145 netbox/dcim/tables/racks.py:225 -#: netbox/dcim/tables/sites.py:108 netbox/extras/tables/tables.py:582 -#: netbox/ipam/tables/asn.py:69 netbox/ipam/tables/fhrp.py:34 -#: netbox/ipam/tables/ip.py:136 netbox/ipam/tables/ip.py:275 -#: netbox/ipam/tables/ip.py:329 netbox/ipam/tables/ip.py:397 -#: netbox/ipam/tables/services.py:24 netbox/ipam/tables/services.py:54 -#: netbox/ipam/tables/vlans.py:145 netbox/ipam/tables/vrfs.py:47 -#: netbox/ipam/tables/vrfs.py:72 netbox/templates/dcim/htmx/cable_edit.html:89 -#: netbox/templates/generic/bulk_edit.html:86 -#: netbox/templates/inc/panels/comments.html:5 -#: netbox/tenancy/tables/contacts.py:68 netbox/tenancy/tables/tenants.py:46 -#: netbox/utilities/forms/fields/fields.py:29 -#: netbox/virtualization/tables/clusters.py:91 -#: netbox/virtualization/tables/virtualmachines.py:82 -#: netbox/vpn/tables/crypto.py:37 netbox/vpn/tables/crypto.py:74 -#: netbox/vpn/tables/crypto.py:109 netbox/vpn/tables/crypto.py:140 -#: netbox/vpn/tables/crypto.py:173 netbox/vpn/tables/l2vpn.py:37 -#: netbox/vpn/tables/tunnels.py:61 netbox/wireless/tables/wirelesslan.py:27 -#: netbox/wireless/tables/wirelesslan.py:58 +#: circuits/tables/circuits.py:80 circuits/tables/providers.py:48 +#: circuits/tables/providers.py:82 circuits/tables/providers.py:107 +#: dcim/tables/devices.py:1036 dcim/tables/devicetypes.py:92 +#: dcim/tables/modules.py:29 dcim/tables/modules.py:72 dcim/tables/power.py:39 +#: dcim/tables/power.py:96 dcim/tables/racks.py:84 dcim/tables/racks.py:145 +#: dcim/tables/racks.py:225 dcim/tables/sites.py:108 +#: extras/tables/tables.py:582 ipam/tables/asn.py:69 ipam/tables/fhrp.py:34 +#: ipam/tables/ip.py:136 ipam/tables/ip.py:275 ipam/tables/ip.py:329 +#: ipam/tables/ip.py:397 ipam/tables/services.py:24 ipam/tables/services.py:54 +#: ipam/tables/vlans.py:145 ipam/tables/vrfs.py:47 ipam/tables/vrfs.py:72 +#: templates/dcim/htmx/cable_edit.html:89 templates/generic/bulk_edit.html:86 +#: templates/inc/panels/comments.html:5 tenancy/tables/contacts.py:68 +#: tenancy/tables/tenants.py:46 utilities/forms/fields/fields.py:29 +#: virtualization/tables/clusters.py:91 +#: virtualization/tables/virtualmachines.py:82 vpn/tables/crypto.py:37 +#: vpn/tables/crypto.py:74 vpn/tables/crypto.py:109 vpn/tables/crypto.py:140 +#: vpn/tables/crypto.py:173 vpn/tables/l2vpn.py:37 vpn/tables/tunnels.py:61 +#: wireless/tables/wirelesslan.py:27 wireless/tables/wirelesslan.py:58 msgid "Comments" msgstr "Bemærkninger" -#: netbox/circuits/tables/circuits.py:86 -#: netbox/templates/tenancy/contact.html:84 -#: netbox/tenancy/tables/contacts.py:73 +#: circuits/tables/circuits.py:86 templates/tenancy/contact.html:84 +#: tenancy/tables/contacts.py:73 msgid "Assignments" msgstr "Opgaver" -#: netbox/circuits/tables/providers.py:23 +#: circuits/tables/providers.py:23 msgid "Accounts" msgstr "Konti" -#: netbox/circuits/tables/providers.py:29 +#: circuits/tables/providers.py:29 msgid "Account Count" msgstr "Kontoantal" -#: netbox/circuits/tables/providers.py:39 netbox/dcim/tables/sites.py:100 +#: circuits/tables/providers.py:39 dcim/tables/sites.py:100 msgid "ASN Count" msgstr "ASN antal" -#: netbox/circuits/views.py:331 +#: circuits/views.py:331 #, python-brace-format msgid "No terminations have been defined for circuit {circuit}." msgstr "Der er ikke defineret nogen afslutninger for kredsløb {circuit}." -#: netbox/circuits/views.py:380 +#: circuits/views.py:380 #, python-brace-format msgid "Swapped terminations for circuit {circuit}." msgstr "Udskiftede afslutninger til kredsløb {circuit}." -#: netbox/core/api/views.py:39 +#: core/api/views.py:39 msgid "This user does not have permission to synchronize this data source." msgstr "Denne bruger har ikke tilladelse til at synkronisere denne datakilde." -#: netbox/core/choices.py:18 +#: core/choices.py:18 msgid "New" msgstr "Ny" -#: netbox/core/choices.py:19 netbox/core/constants.py:18 -#: netbox/core/tables/tasks.py:15 netbox/templates/core/rq_task.html:77 +#: core/choices.py:19 core/constants.py:18 core/tables/tasks.py:15 +#: templates/core/rq_task.html:77 msgid "Queued" msgstr "I kø" -#: netbox/core/choices.py:20 +#: core/choices.py:20 msgid "Syncing" msgstr "Synkroniserer" -#: netbox/core/choices.py:21 netbox/core/choices.py:57 -#: netbox/core/tables/jobs.py:41 netbox/templates/core/job.html:86 +#: core/choices.py:21 core/choices.py:57 core/tables/jobs.py:41 +#: templates/core/job.html:86 msgid "Completed" msgstr "Afsluttet" -#: netbox/core/choices.py:22 netbox/core/choices.py:59 -#: netbox/core/constants.py:20 netbox/core/tables/tasks.py:34 -#: netbox/dcim/choices.py:187 netbox/dcim/choices.py:239 -#: netbox/dcim/choices.py:1607 netbox/virtualization/choices.py:47 +#: core/choices.py:22 core/choices.py:59 core/constants.py:20 +#: core/tables/tasks.py:34 dcim/choices.py:187 dcim/choices.py:239 +#: dcim/choices.py:1607 virtualization/choices.py:47 msgid "Failed" msgstr "Mislykkedes" -#: netbox/core/choices.py:35 netbox/netbox/navigation/menu.py:335 -#: netbox/netbox/navigation/menu.py:339 -#: netbox/templates/extras/script/base.html:14 -#: netbox/templates/extras/script_list.html:7 -#: netbox/templates/extras/script_list.html:12 -#: netbox/templates/extras/script_result.html:17 +#: core/choices.py:35 netbox/navigation/menu.py:335 +#: netbox/navigation/menu.py:339 templates/extras/script/base.html:14 +#: templates/extras/script_list.html:7 templates/extras/script_list.html:12 +#: templates/extras/script_result.html:17 msgid "Scripts" msgstr "Manuskripter" -#: netbox/core/choices.py:36 netbox/templates/extras/report/base.html:13 +#: core/choices.py:36 templates/extras/report/base.html:13 msgid "Reports" msgstr "Rapporter" -#: netbox/core/choices.py:54 +#: core/choices.py:54 msgid "Pending" msgstr "Afventer" -#: netbox/core/choices.py:55 netbox/core/constants.py:23 -#: netbox/core/tables/jobs.py:32 netbox/core/tables/tasks.py:38 -#: netbox/templates/core/job.html:73 +#: core/choices.py:55 core/constants.py:23 core/tables/jobs.py:32 +#: core/tables/tasks.py:38 templates/core/job.html:73 msgid "Scheduled" msgstr "Planlagt" -#: netbox/core/choices.py:56 +#: core/choices.py:56 msgid "Running" msgstr "Løb" -#: netbox/core/choices.py:58 +#: core/choices.py:58 msgid "Errored" msgstr "Fejl" -#: netbox/core/choices.py:87 netbox/core/tables/plugins.py:63 -#: netbox/templates/generic/object.html:61 +#: core/choices.py:87 core/tables/plugins.py:63 +#: templates/generic/object.html:61 msgid "Updated" msgstr "Opdateret" -#: netbox/core/choices.py:88 +#: core/choices.py:88 msgid "Deleted" msgstr "Slettet" -#: netbox/core/constants.py:19 netbox/core/tables/tasks.py:30 +#: core/constants.py:19 core/tables/tasks.py:30 msgid "Finished" msgstr "Færdig" -#: netbox/core/constants.py:21 netbox/core/tables/jobs.py:38 -#: netbox/templates/core/job.html:82 -#: netbox/templates/extras/htmx/script_result.html:8 +#: core/constants.py:21 core/tables/jobs.py:38 templates/core/job.html:82 +#: templates/extras/htmx/script_result.html:8 msgid "Started" msgstr "Startet" -#: netbox/core/constants.py:22 netbox/core/tables/tasks.py:26 +#: core/constants.py:22 core/tables/tasks.py:26 msgid "Deferred" msgstr "Udskudt" -#: netbox/core/constants.py:24 +#: core/constants.py:24 msgid "Stopped" msgstr "Stoppet" -#: netbox/core/constants.py:25 +#: core/constants.py:25 msgid "Cancelled" msgstr "Annulleret" -#: netbox/core/data_backends.py:32 netbox/core/tables/plugins.py:51 -#: netbox/templates/core/plugin.html:87 -#: netbox/templates/dcim/interface.html:216 +#: core/data_backends.py:32 core/tables/plugins.py:51 +#: templates/core/plugin.html:88 templates/dcim/interface.html:216 msgid "Local" msgstr "Lokalt" -#: netbox/core/data_backends.py:50 netbox/core/tables/change_logging.py:20 -#: netbox/templates/account/profile.html:15 -#: netbox/templates/users/user.html:17 netbox/users/tables.py:31 +#: core/data_backends.py:50 core/tables/change_logging.py:20 +#: templates/account/profile.html:15 templates/users/user.html:17 +#: users/tables.py:31 msgid "Username" msgstr "Brugernavn" -#: netbox/core/data_backends.py:52 netbox/core/data_backends.py:58 +#: core/data_backends.py:52 core/data_backends.py:58 msgid "Only used for cloning with HTTP(S)" msgstr "Bruges kun til kloning med HTTP(S)" -#: netbox/core/data_backends.py:56 netbox/templates/account/base.html:23 -#: netbox/templates/account/password.html:12 -#: netbox/users/forms/model_forms.py:170 +#: core/data_backends.py:56 templates/account/base.html:23 +#: templates/account/password.html:12 users/forms/model_forms.py:170 msgid "Password" msgstr "Adgangskode" -#: netbox/core/data_backends.py:62 +#: core/data_backends.py:62 msgid "Branch" msgstr "Afdeling" -#: netbox/core/data_backends.py:120 +#: core/data_backends.py:120 #, python-brace-format msgid "Fetching remote data failed ({name}): {error}" msgstr "Hentning af fjerndata mislykkedes ({name}): {error}" -#: netbox/core/data_backends.py:133 +#: core/data_backends.py:133 msgid "AWS access key ID" msgstr "AWS-adgangsnøgle-id" -#: netbox/core/data_backends.py:137 +#: core/data_backends.py:137 msgid "AWS secret access key" msgstr "AWS hemmelig adgangsnøgle" -#: netbox/core/events.py:27 +#: core/events.py:27 msgid "Object created" msgstr "Objekt oprettet" -#: netbox/core/events.py:28 +#: core/events.py:28 msgid "Object updated" msgstr "Objekt opdateret" -#: netbox/core/events.py:29 +#: core/events.py:29 msgid "Object deleted" msgstr "Objekt slettet" -#: netbox/core/events.py:30 +#: core/events.py:30 msgid "Job started" msgstr "Jobbet påbegyndt" -#: netbox/core/events.py:31 +#: core/events.py:31 msgid "Job completed" msgstr "Jobbet afsluttet" -#: netbox/core/events.py:32 +#: core/events.py:32 msgid "Job failed" msgstr "Jobbet mislykkedes" -#: netbox/core/events.py:33 +#: core/events.py:33 msgid "Job errored" msgstr "Jobfejl" -#: netbox/core/filtersets.py:53 netbox/extras/filtersets.py:250 -#: netbox/extras/filtersets.py:633 netbox/extras/filtersets.py:661 +#: core/filtersets.py:53 extras/filtersets.py:250 extras/filtersets.py:633 +#: extras/filtersets.py:661 msgid "Data source (ID)" msgstr "Datakilde (ID)" -#: netbox/core/filtersets.py:59 +#: core/filtersets.py:59 msgid "Data source (name)" msgstr "Datakilde (navn)" -#: netbox/core/filtersets.py:145 netbox/dcim/filtersets.py:501 -#: netbox/extras/filtersets.py:287 netbox/extras/filtersets.py:331 -#: netbox/extras/filtersets.py:353 netbox/extras/filtersets.py:413 -#: netbox/users/filtersets.py:28 +#: core/filtersets.py:145 dcim/filtersets.py:501 extras/filtersets.py:287 +#: extras/filtersets.py:331 extras/filtersets.py:353 extras/filtersets.py:413 +#: users/filtersets.py:28 msgid "User (ID)" msgstr "Bruger (ID)" -#: netbox/core/filtersets.py:151 +#: core/filtersets.py:151 msgid "User name" msgstr "Brugernavn" -#: netbox/core/forms/bulk_edit.py:25 netbox/core/forms/filtersets.py:43 -#: netbox/core/tables/data.py:26 netbox/dcim/forms/bulk_edit.py:1122 -#: netbox/dcim/forms/bulk_edit.py:1400 netbox/dcim/forms/filtersets.py:1370 -#: netbox/dcim/tables/devices.py:553 netbox/dcim/tables/devicetypes.py:224 -#: netbox/extras/forms/bulk_edit.py:123 netbox/extras/forms/bulk_edit.py:187 -#: netbox/extras/forms/bulk_edit.py:246 netbox/extras/forms/filtersets.py:142 -#: netbox/extras/forms/filtersets.py:229 netbox/extras/forms/filtersets.py:294 -#: netbox/extras/tables/tables.py:162 netbox/extras/tables/tables.py:253 -#: netbox/extras/tables/tables.py:415 netbox/netbox/preferences.py:22 -#: netbox/templates/core/datasource.html:42 -#: netbox/templates/dcim/interface.html:61 -#: netbox/templates/extras/customlink.html:17 -#: netbox/templates/extras/eventrule.html:17 -#: netbox/templates/extras/savedfilter.html:25 -#: netbox/templates/users/objectpermission.html:25 -#: netbox/templates/virtualization/vminterface.html:29 -#: netbox/users/forms/bulk_edit.py:89 netbox/users/forms/filtersets.py:70 -#: netbox/users/tables.py:83 netbox/virtualization/forms/bulk_edit.py:217 -#: netbox/virtualization/forms/filtersets.py:215 +#: core/forms/bulk_edit.py:25 core/forms/filtersets.py:43 +#: core/tables/data.py:26 dcim/forms/bulk_edit.py:1122 +#: dcim/forms/bulk_edit.py:1400 dcim/forms/filtersets.py:1370 +#: dcim/tables/devices.py:553 dcim/tables/devicetypes.py:224 +#: extras/forms/bulk_edit.py:123 extras/forms/bulk_edit.py:187 +#: extras/forms/bulk_edit.py:246 extras/forms/filtersets.py:142 +#: extras/forms/filtersets.py:229 extras/forms/filtersets.py:294 +#: extras/tables/tables.py:162 extras/tables/tables.py:253 +#: extras/tables/tables.py:415 netbox/preferences.py:22 +#: templates/core/datasource.html:42 templates/dcim/interface.html:61 +#: templates/extras/customlink.html:17 templates/extras/eventrule.html:17 +#: templates/extras/savedfilter.html:25 +#: templates/users/objectpermission.html:25 +#: templates/virtualization/vminterface.html:29 users/forms/bulk_edit.py:89 +#: users/forms/filtersets.py:70 users/tables.py:83 +#: virtualization/forms/bulk_edit.py:217 +#: virtualization/forms/filtersets.py:215 msgid "Enabled" msgstr "Aktiveret" -#: netbox/core/forms/bulk_edit.py:34 netbox/extras/forms/model_forms.py:285 -#: netbox/templates/extras/savedfilter.html:52 -#: netbox/vpn/forms/filtersets.py:97 netbox/vpn/forms/filtersets.py:127 -#: netbox/vpn/forms/filtersets.py:151 netbox/vpn/forms/filtersets.py:170 -#: netbox/vpn/forms/model_forms.py:301 netbox/vpn/forms/model_forms.py:321 -#: netbox/vpn/forms/model_forms.py:337 netbox/vpn/forms/model_forms.py:357 -#: netbox/vpn/forms/model_forms.py:380 +#: core/forms/bulk_edit.py:34 extras/forms/model_forms.py:285 +#: templates/extras/savedfilter.html:52 vpn/forms/filtersets.py:97 +#: vpn/forms/filtersets.py:127 vpn/forms/filtersets.py:151 +#: vpn/forms/filtersets.py:170 vpn/forms/model_forms.py:301 +#: vpn/forms/model_forms.py:321 vpn/forms/model_forms.py:337 +#: vpn/forms/model_forms.py:357 vpn/forms/model_forms.py:380 msgid "Parameters" msgstr "Parametre" -#: netbox/core/forms/bulk_edit.py:38 netbox/templates/core/datasource.html:68 +#: core/forms/bulk_edit.py:38 templates/core/datasource.html:68 msgid "Ignore rules" msgstr "Ignorer regler" -#: netbox/core/forms/filtersets.py:30 netbox/core/forms/model_forms.py:97 -#: netbox/extras/forms/model_forms.py:248 -#: netbox/extras/forms/model_forms.py:578 -#: netbox/extras/forms/model_forms.py:632 netbox/extras/tables/tables.py:191 -#: netbox/extras/tables/tables.py:483 netbox/extras/tables/tables.py:518 -#: netbox/templates/core/datasource.html:31 -#: netbox/templates/dcim/device/render_config.html:18 -#: netbox/templates/extras/configcontext.html:29 -#: netbox/templates/extras/configtemplate.html:21 -#: netbox/templates/extras/exporttemplate.html:35 -#: netbox/templates/virtualization/virtualmachine/render_config.html:18 +#: core/forms/filtersets.py:30 core/forms/model_forms.py:97 +#: extras/forms/model_forms.py:248 extras/forms/model_forms.py:578 +#: extras/forms/model_forms.py:632 extras/tables/tables.py:191 +#: extras/tables/tables.py:483 extras/tables/tables.py:518 +#: templates/core/datasource.html:31 +#: templates/dcim/device/render_config.html:18 +#: templates/extras/configcontext.html:29 +#: templates/extras/configtemplate.html:21 +#: templates/extras/exporttemplate.html:35 +#: templates/virtualization/virtualmachine/render_config.html:18 msgid "Data Source" msgstr "Datakilde" -#: netbox/core/forms/filtersets.py:55 netbox/core/forms/mixins.py:21 +#: core/forms/filtersets.py:55 core/forms/mixins.py:21 msgid "File" msgstr "Fil" -#: netbox/core/forms/filtersets.py:60 netbox/core/forms/mixins.py:16 -#: netbox/extras/forms/filtersets.py:170 netbox/extras/forms/filtersets.py:328 -#: netbox/extras/forms/filtersets.py:413 +#: core/forms/filtersets.py:60 core/forms/mixins.py:16 +#: extras/forms/filtersets.py:170 extras/forms/filtersets.py:328 +#: extras/forms/filtersets.py:413 msgid "Data source" msgstr "Datakilde" -#: netbox/core/forms/filtersets.py:70 netbox/extras/forms/filtersets.py:440 +#: core/forms/filtersets.py:70 extras/forms/filtersets.py:440 msgid "Creation" msgstr "Skabelse" -#: netbox/core/forms/filtersets.py:74 netbox/core/forms/filtersets.py:160 -#: netbox/extras/forms/filtersets.py:461 netbox/extras/tables/tables.py:220 -#: netbox/extras/tables/tables.py:294 netbox/extras/tables/tables.py:326 -#: netbox/extras/tables/tables.py:571 netbox/templates/core/job.html:38 -#: netbox/templates/core/objectchange.html:52 -#: netbox/tenancy/tables/contacts.py:90 netbox/vpn/tables/l2vpn.py:59 +#: core/forms/filtersets.py:74 core/forms/filtersets.py:160 +#: extras/forms/filtersets.py:461 extras/tables/tables.py:220 +#: extras/tables/tables.py:294 extras/tables/tables.py:326 +#: extras/tables/tables.py:571 templates/core/job.html:38 +#: templates/core/objectchange.html:52 tenancy/tables/contacts.py:90 +#: vpn/tables/l2vpn.py:59 msgid "Object Type" msgstr "Objekttype" -#: netbox/core/forms/filtersets.py:84 +#: core/forms/filtersets.py:84 msgid "Created after" msgstr "Oprettet efter" -#: netbox/core/forms/filtersets.py:89 +#: core/forms/filtersets.py:89 msgid "Created before" msgstr "Oprettet før" -#: netbox/core/forms/filtersets.py:94 +#: core/forms/filtersets.py:94 msgid "Scheduled after" msgstr "Planlagt efter" -#: netbox/core/forms/filtersets.py:99 +#: core/forms/filtersets.py:99 msgid "Scheduled before" msgstr "Planlagt før" -#: netbox/core/forms/filtersets.py:104 +#: core/forms/filtersets.py:104 msgid "Started after" msgstr "Startet efter" -#: netbox/core/forms/filtersets.py:109 +#: core/forms/filtersets.py:109 msgid "Started before" msgstr "Startet før" -#: netbox/core/forms/filtersets.py:114 +#: core/forms/filtersets.py:114 msgid "Completed after" msgstr "Færdiggjort efter" -#: netbox/core/forms/filtersets.py:119 +#: core/forms/filtersets.py:119 msgid "Completed before" msgstr "Færdiggjort før" -#: netbox/core/forms/filtersets.py:126 netbox/core/forms/filtersets.py:155 -#: netbox/dcim/forms/bulk_edit.py:456 netbox/dcim/forms/filtersets.py:418 -#: netbox/dcim/forms/filtersets.py:462 netbox/dcim/forms/model_forms.py:316 -#: netbox/extras/forms/filtersets.py:456 netbox/extras/forms/filtersets.py:475 -#: netbox/extras/tables/tables.py:302 netbox/extras/tables/tables.py:342 -#: netbox/templates/core/objectchange.html:36 -#: netbox/templates/dcim/rackreservation.html:58 -#: netbox/templates/extras/savedfilter.html:21 -#: netbox/templates/inc/user_menu.html:33 netbox/templates/users/token.html:21 -#: netbox/templates/users/user.html:6 netbox/templates/users/user.html:14 -#: netbox/users/filtersets.py:107 netbox/users/filtersets.py:174 -#: netbox/users/forms/filtersets.py:84 netbox/users/forms/filtersets.py:125 -#: netbox/users/forms/model_forms.py:155 netbox/users/forms/model_forms.py:192 -#: netbox/users/tables.py:19 +#: core/forms/filtersets.py:126 core/forms/filtersets.py:155 +#: dcim/forms/bulk_edit.py:456 dcim/forms/filtersets.py:418 +#: dcim/forms/filtersets.py:462 dcim/forms/model_forms.py:316 +#: extras/forms/filtersets.py:456 extras/forms/filtersets.py:475 +#: extras/tables/tables.py:302 extras/tables/tables.py:342 +#: templates/core/objectchange.html:36 templates/dcim/rackreservation.html:58 +#: templates/extras/savedfilter.html:21 templates/inc/user_menu.html:33 +#: templates/users/token.html:21 templates/users/user.html:6 +#: templates/users/user.html:14 users/filtersets.py:107 +#: users/filtersets.py:174 users/forms/filtersets.py:84 +#: users/forms/filtersets.py:125 users/forms/model_forms.py:155 +#: users/forms/model_forms.py:192 users/tables.py:19 msgid "User" msgstr "Bruger" -#: netbox/core/forms/filtersets.py:134 netbox/core/tables/change_logging.py:15 -#: netbox/extras/tables/tables.py:609 netbox/extras/tables/tables.py:646 -#: netbox/templates/core/objectchange.html:32 +#: core/forms/filtersets.py:134 core/tables/change_logging.py:15 +#: extras/tables/tables.py:609 extras/tables/tables.py:646 +#: templates/core/objectchange.html:32 msgid "Time" msgstr "Tid" -#: netbox/core/forms/filtersets.py:139 netbox/extras/forms/filtersets.py:445 +#: core/forms/filtersets.py:139 extras/forms/filtersets.py:445 msgid "After" msgstr "Efter" -#: netbox/core/forms/filtersets.py:144 netbox/extras/forms/filtersets.py:450 +#: core/forms/filtersets.py:144 extras/forms/filtersets.py:450 msgid "Before" msgstr "Før" -#: netbox/core/forms/filtersets.py:148 netbox/core/tables/change_logging.py:29 -#: netbox/extras/forms/model_forms.py:396 -#: netbox/templates/core/objectchange.html:46 -#: netbox/templates/extras/eventrule.html:71 +#: core/forms/filtersets.py:148 core/tables/change_logging.py:29 +#: extras/forms/model_forms.py:396 templates/core/objectchange.html:46 +#: templates/extras/eventrule.html:71 msgid "Action" msgstr "Handling" -#: netbox/core/forms/model_forms.py:54 netbox/core/tables/data.py:46 -#: netbox/templates/core/datafile.html:27 -#: netbox/templates/extras/report/base.html:33 -#: netbox/templates/extras/script/base.html:32 +#: core/forms/model_forms.py:54 core/tables/data.py:46 +#: templates/core/datafile.html:27 templates/extras/report/base.html:33 +#: templates/extras/script/base.html:32 msgid "Source" msgstr "Kilde" -#: netbox/core/forms/model_forms.py:58 +#: core/forms/model_forms.py:58 msgid "Backend Parameters" msgstr "Backend-parametre" -#: netbox/core/forms/model_forms.py:96 +#: core/forms/model_forms.py:96 msgid "File Upload" msgstr "Upload af filer" -#: netbox/core/forms/model_forms.py:108 +#: core/forms/model_forms.py:108 msgid "Cannot upload a file and sync from an existing file" msgstr "Kan ikke uploade en fil og synkronisere fra en eksisterende fil" -#: netbox/core/forms/model_forms.py:110 +#: core/forms/model_forms.py:110 msgid "Must upload a file or select a data file to sync" msgstr "Skal uploade en fil eller vælge en datafil, der skal synkroniseres" -#: netbox/core/forms/model_forms.py:153 -#: netbox/templates/dcim/rack_elevation_list.html:6 +#: core/forms/model_forms.py:153 templates/dcim/rack_elevation_list.html:6 msgid "Rack Elevations" msgstr "Rackhøjder" -#: netbox/core/forms/model_forms.py:157 netbox/dcim/choices.py:1518 -#: netbox/dcim/forms/bulk_edit.py:969 netbox/dcim/forms/bulk_edit.py:1357 -#: netbox/dcim/forms/bulk_edit.py:1375 netbox/dcim/tables/racks.py:158 -#: netbox/netbox/navigation/menu.py:291 netbox/netbox/navigation/menu.py:295 +#: core/forms/model_forms.py:157 dcim/choices.py:1518 +#: dcim/forms/bulk_edit.py:969 dcim/forms/bulk_edit.py:1357 +#: dcim/forms/bulk_edit.py:1375 dcim/tables/racks.py:158 +#: netbox/navigation/menu.py:291 netbox/navigation/menu.py:295 msgid "Power" msgstr "Strøm" -#: netbox/core/forms/model_forms.py:159 netbox/netbox/navigation/menu.py:154 -#: netbox/templates/core/inc/config_data.html:37 +#: core/forms/model_forms.py:159 netbox/navigation/menu.py:154 +#: templates/core/inc/config_data.html:37 msgid "IPAM" msgstr "IPAM" -#: netbox/core/forms/model_forms.py:160 netbox/netbox/navigation/menu.py:230 -#: netbox/templates/core/inc/config_data.html:50 -#: netbox/vpn/forms/bulk_edit.py:77 netbox/vpn/forms/filtersets.py:43 -#: netbox/vpn/forms/model_forms.py:61 netbox/vpn/forms/model_forms.py:146 +#: core/forms/model_forms.py:160 netbox/navigation/menu.py:230 +#: templates/core/inc/config_data.html:50 vpn/forms/bulk_edit.py:77 +#: vpn/forms/filtersets.py:43 vpn/forms/model_forms.py:61 +#: vpn/forms/model_forms.py:146 msgid "Security" msgstr "Sikkerhed" -#: netbox/core/forms/model_forms.py:161 -#: netbox/templates/core/inc/config_data.html:59 +#: core/forms/model_forms.py:161 templates/core/inc/config_data.html:59 msgid "Banners" msgstr "Bannere" -#: netbox/core/forms/model_forms.py:162 -#: netbox/templates/core/inc/config_data.html:80 +#: core/forms/model_forms.py:162 templates/core/inc/config_data.html:80 msgid "Pagination" msgstr "Paginering" -#: netbox/core/forms/model_forms.py:163 netbox/extras/forms/bulk_edit.py:92 -#: netbox/extras/forms/filtersets.py:47 netbox/extras/forms/model_forms.py:116 -#: netbox/extras/forms/model_forms.py:129 -#: netbox/templates/core/inc/config_data.html:93 +#: core/forms/model_forms.py:163 extras/forms/bulk_edit.py:92 +#: extras/forms/filtersets.py:47 extras/forms/model_forms.py:116 +#: extras/forms/model_forms.py:129 templates/core/inc/config_data.html:93 msgid "Validation" msgstr "Validering" -#: netbox/core/forms/model_forms.py:164 -#: netbox/templates/account/preferences.html:6 +#: core/forms/model_forms.py:164 templates/account/preferences.html:6 msgid "User Preferences" msgstr "Brugerpræferencer" -#: netbox/core/forms/model_forms.py:167 netbox/dcim/forms/filtersets.py:732 -#: netbox/templates/core/inc/config_data.html:127 -#: netbox/users/forms/model_forms.py:64 +#: core/forms/model_forms.py:167 dcim/forms/filtersets.py:732 +#: templates/core/inc/config_data.html:127 users/forms/model_forms.py:64 msgid "Miscellaneous" msgstr "Diverse" -#: netbox/core/forms/model_forms.py:169 +#: core/forms/model_forms.py:169 msgid "Config Revision" msgstr "Konfigurationsrevision" -#: netbox/core/forms/model_forms.py:208 +#: core/forms/model_forms.py:208 msgid "This parameter has been defined statically and cannot be modified." msgstr "Denne parameter er defineret statisk og kan ikke ændres." -#: netbox/core/forms/model_forms.py:216 +#: core/forms/model_forms.py:216 #, python-brace-format msgid "Current value: {value}" msgstr "Nuværende værdi: {value}" -#: netbox/core/forms/model_forms.py:218 +#: core/forms/model_forms.py:218 msgid " (default)" msgstr " (standard)" -#: netbox/core/models/change_logging.py:29 +#: core/models/change_logging.py:29 msgid "time" msgstr "tid" -#: netbox/core/models/change_logging.py:42 +#: core/models/change_logging.py:42 msgid "user name" msgstr "brugernavn" -#: netbox/core/models/change_logging.py:47 +#: core/models/change_logging.py:47 msgid "request ID" msgstr "forespørgsels-id" -#: netbox/core/models/change_logging.py:52 netbox/extras/models/staging.py:69 +#: core/models/change_logging.py:52 extras/models/staging.py:69 msgid "action" msgstr "handling" -#: netbox/core/models/change_logging.py:86 +#: core/models/change_logging.py:86 msgid "pre-change data" msgstr "data forud for ændring" -#: netbox/core/models/change_logging.py:92 +#: core/models/change_logging.py:92 msgid "post-change data" msgstr "data efter ændring" -#: netbox/core/models/change_logging.py:106 +#: core/models/change_logging.py:106 msgid "object change" msgstr "objektændring" -#: netbox/core/models/change_logging.py:107 +#: core/models/change_logging.py:107 msgid "object changes" msgstr "objektændringer" -#: netbox/core/models/change_logging.py:123 +#: core/models/change_logging.py:123 #, python-brace-format msgid "Change logging is not supported for this object type ({type})." msgstr "Ændringslogføring understøttes ikke for denne objekttype ({type})." -#: netbox/core/models/config.py:18 netbox/core/models/data.py:266 -#: netbox/core/models/files.py:27 netbox/core/models/jobs.py:49 -#: netbox/extras/models/models.py:730 netbox/extras/models/notifications.py:39 -#: netbox/extras/models/notifications.py:186 -#: netbox/netbox/models/features.py:53 netbox/users/models/tokens.py:32 +#: core/models/config.py:18 core/models/data.py:266 core/models/files.py:27 +#: core/models/jobs.py:49 extras/models/models.py:730 +#: extras/models/notifications.py:39 extras/models/notifications.py:186 +#: netbox/models/features.py:53 users/models/tokens.py:32 msgid "created" msgstr "oprettet" -#: netbox/core/models/config.py:22 +#: core/models/config.py:22 msgid "comment" msgstr "kommentar" -#: netbox/core/models/config.py:29 +#: core/models/config.py:29 msgid "configuration data" msgstr "konfigurationsdata" -#: netbox/core/models/config.py:36 +#: core/models/config.py:36 msgid "config revision" msgstr "konfigurationsrevision" -#: netbox/core/models/config.py:37 +#: core/models/config.py:37 msgid "config revisions" msgstr "konfigurationsrevisioner" -#: netbox/core/models/config.py:41 +#: core/models/config.py:41 msgid "Default configuration" msgstr "Standardkonfiguration" -#: netbox/core/models/config.py:43 +#: core/models/config.py:43 msgid "Current configuration" msgstr "Nuværende konfiguration" -#: netbox/core/models/config.py:44 +#: core/models/config.py:44 #, python-brace-format msgid "Config revision #{id}" msgstr "Konfigurationsrevision #{id}" -#: netbox/core/models/data.py:44 netbox/dcim/models/cables.py:43 -#: netbox/dcim/models/device_component_templates.py:203 -#: netbox/dcim/models/device_component_templates.py:237 -#: netbox/dcim/models/device_component_templates.py:272 -#: netbox/dcim/models/device_component_templates.py:334 -#: netbox/dcim/models/device_component_templates.py:413 -#: netbox/dcim/models/device_component_templates.py:512 -#: netbox/dcim/models/device_component_templates.py:612 -#: netbox/dcim/models/device_components.py:283 -#: netbox/dcim/models/device_components.py:312 -#: netbox/dcim/models/device_components.py:345 -#: netbox/dcim/models/device_components.py:463 -#: netbox/dcim/models/device_components.py:605 -#: netbox/dcim/models/device_components.py:970 -#: netbox/dcim/models/device_components.py:1044 -#: netbox/dcim/models/power.py:102 netbox/extras/models/customfields.py:78 -#: netbox/extras/models/search.py:41 -#: netbox/virtualization/models/clusters.py:61 netbox/vpn/models/l2vpn.py:32 +#: core/models/data.py:44 dcim/models/cables.py:43 +#: dcim/models/device_component_templates.py:203 +#: dcim/models/device_component_templates.py:237 +#: dcim/models/device_component_templates.py:272 +#: dcim/models/device_component_templates.py:334 +#: dcim/models/device_component_templates.py:413 +#: dcim/models/device_component_templates.py:512 +#: dcim/models/device_component_templates.py:612 +#: dcim/models/device_components.py:283 dcim/models/device_components.py:312 +#: dcim/models/device_components.py:345 dcim/models/device_components.py:463 +#: dcim/models/device_components.py:605 dcim/models/device_components.py:970 +#: dcim/models/device_components.py:1044 dcim/models/power.py:102 +#: extras/models/customfields.py:78 extras/models/search.py:41 +#: virtualization/models/clusters.py:61 vpn/models/l2vpn.py:32 msgid "type" msgstr "type" -#: netbox/core/models/data.py:49 netbox/extras/choices.py:37 -#: netbox/extras/models/models.py:164 netbox/extras/tables/tables.py:656 -#: netbox/templates/core/datasource.html:58 -#: netbox/templates/core/plugin.html:65 +#: core/models/data.py:49 extras/choices.py:37 extras/models/models.py:164 +#: extras/tables/tables.py:656 templates/core/datasource.html:58 +#: templates/core/plugin.html:66 msgid "URL" msgstr "URL" -#: netbox/core/models/data.py:59 -#: netbox/dcim/models/device_component_templates.py:418 -#: netbox/dcim/models/device_components.py:512 -#: netbox/extras/models/models.py:70 netbox/extras/models/models.py:301 -#: netbox/extras/models/models.py:526 netbox/users/models/permissions.py:29 +#: core/models/data.py:59 dcim/models/device_component_templates.py:418 +#: dcim/models/device_components.py:512 extras/models/models.py:70 +#: extras/models/models.py:301 extras/models/models.py:526 +#: users/models/permissions.py:29 msgid "enabled" msgstr "aktiveret" -#: netbox/core/models/data.py:63 +#: core/models/data.py:63 msgid "ignore rules" msgstr "ignorere regler" -#: netbox/core/models/data.py:65 +#: core/models/data.py:65 msgid "Patterns (one per line) matching files to ignore when syncing" msgstr "" "Mønstre (en pr. linje), der matcher filer, der skal ignoreres ved " "synkronisering" -#: netbox/core/models/data.py:68 netbox/extras/models/models.py:534 +#: core/models/data.py:68 extras/models/models.py:534 msgid "parameters" msgstr "parametre" -#: netbox/core/models/data.py:73 +#: core/models/data.py:73 msgid "last synced" msgstr "sidst synkroniseret" -#: netbox/core/models/data.py:81 +#: core/models/data.py:81 msgid "data source" msgstr "datakilde" -#: netbox/core/models/data.py:82 +#: core/models/data.py:82 msgid "data sources" msgstr "datakilder" -#: netbox/core/models/data.py:122 +#: core/models/data.py:122 #, python-brace-format msgid "Unknown backend type: {type}" msgstr "Ukendt backend-type: {type}" -#: netbox/core/models/data.py:164 +#: core/models/data.py:164 msgid "Cannot initiate sync; syncing already in progress." msgstr "Synkronisering kan ikke startes. Synkronisering er allerede i gang." -#: netbox/core/models/data.py:177 +#: core/models/data.py:177 msgid "" "There was an error initializing the backend. A dependency needs to be " "installed: " @@ -2162,1283 +1893,1221 @@ msgstr "" "Der opstod en fejl ved initialisering af backend. En afhængighed skal " "installeres: " -#: netbox/core/models/data.py:270 netbox/core/models/files.py:31 -#: netbox/netbox/models/features.py:59 +#: core/models/data.py:270 core/models/files.py:31 +#: netbox/models/features.py:59 msgid "last updated" msgstr "sidst opdateret" -#: netbox/core/models/data.py:280 netbox/dcim/models/cables.py:444 +#: core/models/data.py:280 dcim/models/cables.py:444 msgid "path" msgstr "sti" -#: netbox/core/models/data.py:283 +#: core/models/data.py:283 msgid "File path relative to the data source's root" msgstr "Filsti i forhold til datakildens rod" -#: netbox/core/models/data.py:287 netbox/ipam/models/ip.py:503 +#: core/models/data.py:287 ipam/models/ip.py:503 msgid "size" msgstr "størrelse" -#: netbox/core/models/data.py:290 +#: core/models/data.py:290 msgid "hash" msgstr "hash" -#: netbox/core/models/data.py:294 +#: core/models/data.py:294 msgid "Length must be 64 hexadecimal characters." msgstr "Længden skal være 64 hexadecimale tegn." -#: netbox/core/models/data.py:296 +#: core/models/data.py:296 msgid "SHA256 hash of the file data" msgstr "SHA256-hash af fildataene" -#: netbox/core/models/data.py:313 +#: core/models/data.py:313 msgid "data file" msgstr "datafil" -#: netbox/core/models/data.py:314 +#: core/models/data.py:314 msgid "data files" msgstr "datafiler" -#: netbox/core/models/data.py:401 +#: core/models/data.py:401 msgid "auto sync record" msgstr "automatisk synkroniseringsrekord" -#: netbox/core/models/data.py:402 +#: core/models/data.py:402 msgid "auto sync records" msgstr "automatisk synkronisering af poster" -#: netbox/core/models/files.py:37 +#: core/models/files.py:37 msgid "file root" msgstr "root-fil" -#: netbox/core/models/files.py:42 +#: core/models/files.py:42 msgid "file path" msgstr "filsti" -#: netbox/core/models/files.py:44 +#: core/models/files.py:44 msgid "File path relative to the designated root path" msgstr "Filsti i forhold til den angivne rodsti" -#: netbox/core/models/files.py:61 +#: core/models/files.py:61 msgid "managed file" msgstr "administreret fil" -#: netbox/core/models/files.py:62 +#: core/models/files.py:62 msgid "managed files" msgstr "administrerede filer" -#: netbox/core/models/jobs.py:53 +#: core/models/jobs.py:53 msgid "scheduled" msgstr "planlagt" -#: netbox/core/models/jobs.py:58 +#: core/models/jobs.py:58 msgid "interval" msgstr "interval" -#: netbox/core/models/jobs.py:64 +#: core/models/jobs.py:64 msgid "Recurrence interval (in minutes)" msgstr "Gentagelsesinterval (i minutter)" -#: netbox/core/models/jobs.py:67 +#: core/models/jobs.py:67 msgid "started" msgstr "startede" -#: netbox/core/models/jobs.py:72 +#: core/models/jobs.py:72 msgid "completed" msgstr "afsluttet" -#: netbox/core/models/jobs.py:90 netbox/extras/models/models.py:101 -#: netbox/extras/models/staging.py:87 +#: core/models/jobs.py:90 extras/models/models.py:101 +#: extras/models/staging.py:87 msgid "data" msgstr "data" -#: netbox/core/models/jobs.py:95 +#: core/models/jobs.py:95 msgid "error" msgstr "fejl" -#: netbox/core/models/jobs.py:100 +#: core/models/jobs.py:100 msgid "job ID" msgstr "job-ID" -#: netbox/core/models/jobs.py:111 +#: core/models/jobs.py:111 msgid "job" msgstr "job" -#: netbox/core/models/jobs.py:112 +#: core/models/jobs.py:112 msgid "jobs" msgstr "stillinger" -#: netbox/core/models/jobs.py:135 +#: core/models/jobs.py:135 #, python-brace-format msgid "Jobs cannot be assigned to this object type ({type})." msgstr "Job kan ikke tildeles denne objekttype ({type})." -#: netbox/core/models/jobs.py:185 +#: core/models/jobs.py:185 #, python-brace-format msgid "Invalid status for job termination. Choices are: {choices}" msgstr "Ugyldig status for opsigelse af job. Valgmulighederne er: {choices}" -#: netbox/core/models/jobs.py:216 +#: core/models/jobs.py:216 msgid "" "enqueue() cannot be called with values for both schedule_at and immediate." msgstr "" "enqueue () kan ikke kaldes med værdier for både schedule_at og instant." -#: netbox/core/signals.py:126 +#: core/signals.py:126 #, python-brace-format msgid "Deletion is prevented by a protection rule: {message}" msgstr "Sletning forhindres af en beskyttelsesregel: {message}" -#: netbox/core/tables/change_logging.py:25 -#: netbox/templates/account/profile.html:19 -#: netbox/templates/users/user.html:21 +#: core/tables/change_logging.py:25 templates/account/profile.html:19 +#: templates/users/user.html:21 msgid "Full Name" msgstr "Fulde navn" -#: netbox/core/tables/change_logging.py:37 netbox/core/tables/jobs.py:21 -#: netbox/extras/choices.py:41 netbox/extras/tables/tables.py:279 -#: netbox/extras/tables/tables.py:297 netbox/extras/tables/tables.py:329 -#: netbox/extras/tables/tables.py:409 netbox/extras/tables/tables.py:470 -#: netbox/extras/tables/tables.py:576 netbox/extras/tables/tables.py:616 -#: netbox/extras/tables/tables.py:653 netbox/netbox/tables/tables.py:244 -#: netbox/templates/core/objectchange.html:58 -#: netbox/templates/extras/eventrule.html:78 -#: netbox/templates/extras/journalentry.html:18 -#: netbox/tenancy/tables/contacts.py:93 netbox/vpn/tables/l2vpn.py:64 +#: core/tables/change_logging.py:37 core/tables/jobs.py:21 +#: extras/choices.py:41 extras/tables/tables.py:279 +#: extras/tables/tables.py:297 extras/tables/tables.py:329 +#: extras/tables/tables.py:409 extras/tables/tables.py:470 +#: extras/tables/tables.py:576 extras/tables/tables.py:616 +#: extras/tables/tables.py:653 netbox/tables/tables.py:244 +#: templates/core/objectchange.html:58 templates/extras/eventrule.html:78 +#: templates/extras/journalentry.html:18 tenancy/tables/contacts.py:93 +#: vpn/tables/l2vpn.py:64 msgid "Object" msgstr "Objekt" -#: netbox/core/tables/change_logging.py:42 -#: netbox/templates/core/objectchange.html:68 +#: core/tables/change_logging.py:42 templates/core/objectchange.html:68 msgid "Request ID" msgstr "Anmodnings-ID" -#: netbox/core/tables/config.py:21 netbox/users/forms/filtersets.py:44 -#: netbox/users/tables.py:39 +#: core/tables/config.py:21 users/forms/filtersets.py:44 users/tables.py:39 msgid "Is Active" msgstr "Er aktiv" -#: netbox/core/tables/data.py:50 netbox/templates/core/datafile.html:31 +#: core/tables/data.py:50 templates/core/datafile.html:31 msgid "Path" msgstr "Sti" -#: netbox/core/tables/data.py:54 -#: netbox/templates/extras/inc/result_pending.html:7 +#: core/tables/data.py:54 templates/extras/inc/result_pending.html:7 msgid "Last updated" msgstr "Sidst opdateret" -#: netbox/core/tables/jobs.py:10 netbox/core/tables/tasks.py:76 -#: netbox/dcim/tables/devicetypes.py:164 netbox/extras/tables/tables.py:216 -#: netbox/extras/tables/tables.py:460 netbox/netbox/tables/tables.py:189 -#: netbox/templates/dcim/virtualchassis_edit.html:52 -#: netbox/utilities/forms/forms.py:73 -#: netbox/wireless/tables/wirelesslink.py:17 +#: core/tables/jobs.py:10 core/tables/tasks.py:76 +#: dcim/tables/devicetypes.py:164 extras/tables/tables.py:216 +#: extras/tables/tables.py:460 netbox/tables/tables.py:189 +#: templates/dcim/virtualchassis_edit.html:52 utilities/forms/forms.py:73 +#: wireless/tables/wirelesslink.py:17 msgid "ID" msgstr "ID" -#: netbox/core/tables/jobs.py:35 +#: core/tables/jobs.py:35 msgid "Interval" msgstr "Intervaller" -#: netbox/core/tables/plugins.py:14 netbox/templates/vpn/ipsecprofile.html:44 -#: netbox/vpn/forms/bulk_edit.py:141 netbox/vpn/forms/bulk_import.py:172 -#: netbox/vpn/tables/crypto.py:61 +#: core/tables/plugins.py:14 templates/vpn/ipsecprofile.html:44 +#: vpn/forms/bulk_edit.py:141 vpn/forms/bulk_import.py:172 +#: vpn/tables/crypto.py:61 msgid "Version" msgstr "Udgave" -#: netbox/core/tables/plugins.py:19 netbox/templates/core/datafile.html:38 +#: core/tables/plugins.py:19 templates/core/datafile.html:38 msgid "Last Updated" msgstr "Senest opdateret" -#: netbox/core/tables/plugins.py:23 +#: core/tables/plugins.py:23 msgid "Minimum NetBox Version" msgstr "Minimum NetBox-version" -#: netbox/core/tables/plugins.py:27 +#: core/tables/plugins.py:27 msgid "Maximum NetBox Version" msgstr "Maksimal NetBox-version" -#: netbox/core/tables/plugins.py:31 netbox/core/tables/plugins.py:74 +#: core/tables/plugins.py:31 core/tables/plugins.py:74 msgid "No plugin data found" msgstr "Ingen plugin-data fundet" -#: netbox/core/tables/plugins.py:48 netbox/templates/core/plugin.html:61 +#: core/tables/plugins.py:48 templates/core/plugin.html:62 msgid "Author" msgstr "Forfatter" -#: netbox/core/tables/plugins.py:54 +#: core/tables/plugins.py:54 msgid "Installed" msgstr "Installeret" -#: netbox/core/tables/plugins.py:57 netbox/templates/core/plugin.html:83 +#: core/tables/plugins.py:57 templates/core/plugin.html:84 msgid "Certified" msgstr "Certificeret" -#: netbox/core/tables/plugins.py:60 +#: core/tables/plugins.py:60 msgid "Published" msgstr "Udgivet" -#: netbox/core/tables/plugins.py:66 +#: core/tables/plugins.py:66 msgid "Installed Version" msgstr "Installeret version" -#: netbox/core/tables/plugins.py:70 +#: core/tables/plugins.py:70 msgid "Latest Version" msgstr "Seneste version" -#: netbox/core/tables/tasks.py:18 +#: core/tables/tasks.py:18 msgid "Oldest Task" msgstr "Ældste opgave" -#: netbox/core/tables/tasks.py:42 netbox/templates/core/rq_worker_list.html:39 +#: core/tables/tasks.py:42 templates/core/rq_worker_list.html:39 msgid "Workers" msgstr "Arbejdstagere" -#: netbox/core/tables/tasks.py:46 netbox/vpn/tables/tunnels.py:88 +#: core/tables/tasks.py:46 vpn/tables/tunnels.py:88 msgid "Host" msgstr "Værten" -#: netbox/core/tables/tasks.py:50 netbox/ipam/forms/filtersets.py:535 +#: core/tables/tasks.py:50 ipam/forms/filtersets.py:535 msgid "Port" msgstr "Port" -#: netbox/core/tables/tasks.py:54 +#: core/tables/tasks.py:54 msgid "DB" msgstr "DB" -#: netbox/core/tables/tasks.py:58 +#: core/tables/tasks.py:58 msgid "Scheduler PID" msgstr "Scheduler PID" -#: netbox/core/tables/tasks.py:62 +#: core/tables/tasks.py:62 msgid "No queues found" msgstr "Ingen køer fundet" -#: netbox/core/tables/tasks.py:82 +#: core/tables/tasks.py:82 msgid "Enqueued" msgstr "Stillet i kø" -#: netbox/core/tables/tasks.py:85 +#: core/tables/tasks.py:85 msgid "Ended" msgstr "Afsluttet" -#: netbox/core/tables/tasks.py:93 netbox/templates/core/rq_task.html:85 +#: core/tables/tasks.py:93 templates/core/rq_task.html:85 msgid "Callable" msgstr "Opkaldbar" -#: netbox/core/tables/tasks.py:97 +#: core/tables/tasks.py:97 msgid "No tasks found" msgstr "Ingen opgaver fundet" -#: netbox/core/tables/tasks.py:118 netbox/templates/core/rq_worker.html:47 +#: core/tables/tasks.py:118 templates/core/rq_worker.html:47 msgid "State" msgstr "Tilstand" -#: netbox/core/tables/tasks.py:121 netbox/templates/core/rq_worker.html:51 +#: core/tables/tasks.py:121 templates/core/rq_worker.html:51 msgid "Birth" msgstr "Fødsel" -#: netbox/core/tables/tasks.py:124 netbox/templates/core/rq_worker.html:59 +#: core/tables/tasks.py:124 templates/core/rq_worker.html:59 msgid "PID" msgstr "PID" -#: netbox/core/tables/tasks.py:128 +#: core/tables/tasks.py:128 msgid "No workers found" msgstr "Ingen arbejdere fundet" -#: netbox/core/views.py:90 +#: core/views.py:90 #, python-brace-format msgid "Queued job #{id} to sync {datasource}" msgstr "Jobnummer i kø{id} at synkronisere {datasource}" -#: netbox/core/views.py:319 +#: core/views.py:319 #, python-brace-format msgid "Restored configuration revision #{id}" msgstr "Gendannet konfigurationsrevision #{id}" -#: netbox/core/views.py:412 netbox/core/views.py:455 netbox/core/views.py:531 +#: core/views.py:412 core/views.py:455 core/views.py:531 #, python-brace-format msgid "Job {job_id} not found" msgstr "Job {job_id} ikke fundet" -#: netbox/core/views.py:463 +#: core/views.py:463 #, python-brace-format msgid "Job {id} has been deleted." msgstr "Job {id} er blevet slettet." -#: netbox/core/views.py:465 +#: core/views.py:465 #, python-brace-format msgid "Error deleting job {id}: {error}" msgstr "Fejl ved sletning af job {id}: {error}" -#: netbox/core/views.py:478 netbox/core/views.py:496 +#: core/views.py:478 core/views.py:496 #, python-brace-format msgid "Job {id} not found." msgstr "Job {id} ikke fundet." -#: netbox/core/views.py:484 +#: core/views.py:484 #, python-brace-format msgid "Job {id} has been re-enqueued." msgstr "Job {id} er blevet sat i kø igen." -#: netbox/core/views.py:519 +#: core/views.py:519 #, python-brace-format msgid "Job {id} has been enqueued." msgstr "Job {id} er blevet sat i kø." -#: netbox/core/views.py:538 +#: core/views.py:538 #, python-brace-format msgid "Job {id} has been stopped." msgstr "Job {id} er blevet stoppet." -#: netbox/core/views.py:540 +#: core/views.py:540 #, python-brace-format msgid "Failed to stop job {id}" msgstr "Det lykkedes ikke at stoppe jobbet {id}" -#: netbox/core/views.py:678 +#: core/views.py:678 msgid "Plugins catalog could not be loaded" msgstr "Plugin-kataloget kunne ikke indlæses" -#: netbox/core/views.py:712 +#: core/views.py:712 #, python-brace-format msgid "Plugin {name} not found" msgstr "Plugin {name} ikke fundet" -#: netbox/dcim/api/serializers_/devices.py:49 -#: netbox/dcim/api/serializers_/devicetypes.py:25 +#: dcim/api/serializers_/devices.py:49 dcim/api/serializers_/devicetypes.py:25 msgid "Position (U)" msgstr "Position (U)" -#: netbox/dcim/api/serializers_/racks.py:112 -#: netbox/templates/dcim/rack.html:28 +#: dcim/api/serializers_/racks.py:112 templates/dcim/rack.html:28 msgid "Facility ID" msgstr "Anlægs-id" -#: netbox/dcim/choices.py:21 netbox/virtualization/choices.py:21 +#: dcim/choices.py:21 virtualization/choices.py:21 msgid "Staging" msgstr "Iscenesættelse" -#: netbox/dcim/choices.py:23 netbox/dcim/choices.py:189 -#: netbox/dcim/choices.py:240 netbox/dcim/choices.py:1531 -#: netbox/virtualization/choices.py:23 netbox/virtualization/choices.py:48 +#: dcim/choices.py:23 dcim/choices.py:189 dcim/choices.py:240 +#: dcim/choices.py:1531 virtualization/choices.py:23 +#: virtualization/choices.py:48 msgid "Decommissioning" msgstr "Nedlæggelse" -#: netbox/dcim/choices.py:24 +#: dcim/choices.py:24 msgid "Retired" msgstr "Pensioneret" -#: netbox/dcim/choices.py:65 +#: dcim/choices.py:65 msgid "2-post frame" msgstr "2-stolpe ramme" -#: netbox/dcim/choices.py:66 +#: dcim/choices.py:66 msgid "4-post frame" msgstr "4-stolpe ramme" -#: netbox/dcim/choices.py:67 +#: dcim/choices.py:67 msgid "4-post cabinet" msgstr "4-stolpe skab" -#: netbox/dcim/choices.py:68 +#: dcim/choices.py:68 msgid "Wall-mounted frame" msgstr "Vægmonteret ramme" -#: netbox/dcim/choices.py:69 +#: dcim/choices.py:69 msgid "Wall-mounted frame (vertical)" msgstr "Vægmonteret ramme (lodret)" -#: netbox/dcim/choices.py:70 +#: dcim/choices.py:70 msgid "Wall-mounted cabinet" msgstr "Vægmonteret skab" -#: netbox/dcim/choices.py:71 +#: dcim/choices.py:71 msgid "Wall-mounted cabinet (vertical)" msgstr "Vægmonteret skab (lodret)" -#: netbox/dcim/choices.py:83 netbox/dcim/choices.py:84 -#: netbox/dcim/choices.py:85 netbox/dcim/choices.py:86 +#: dcim/choices.py:83 dcim/choices.py:84 dcim/choices.py:85 dcim/choices.py:86 #, python-brace-format msgid "{n} inches" msgstr "{n} tommer" -#: netbox/dcim/choices.py:100 netbox/ipam/choices.py:32 -#: netbox/ipam/choices.py:50 netbox/ipam/choices.py:70 -#: netbox/ipam/choices.py:155 netbox/wireless/choices.py:26 +#: dcim/choices.py:100 ipam/choices.py:32 ipam/choices.py:50 +#: ipam/choices.py:70 ipam/choices.py:155 wireless/choices.py:26 msgid "Reserved" msgstr "Reserveret" -#: netbox/dcim/choices.py:101 netbox/templates/dcim/device.html:259 +#: dcim/choices.py:101 templates/dcim/device.html:259 msgid "Available" msgstr "Tilgængelig" -#: netbox/dcim/choices.py:104 netbox/ipam/choices.py:33 -#: netbox/ipam/choices.py:51 netbox/ipam/choices.py:71 -#: netbox/ipam/choices.py:156 netbox/wireless/choices.py:28 +#: dcim/choices.py:104 ipam/choices.py:33 ipam/choices.py:51 +#: ipam/choices.py:71 ipam/choices.py:156 wireless/choices.py:28 msgid "Deprecated" msgstr "Forældet" -#: netbox/dcim/choices.py:114 -#: netbox/templates/dcim/inc/panels/racktype_dimensions.html:41 +#: dcim/choices.py:114 templates/dcim/inc/panels/racktype_dimensions.html:41 msgid "Millimeters" msgstr "Millimeter" -#: netbox/dcim/choices.py:115 netbox/dcim/choices.py:1553 +#: dcim/choices.py:115 dcim/choices.py:1553 msgid "Inches" msgstr "Tommer" -#: netbox/dcim/choices.py:136 netbox/dcim/choices.py:207 -#: netbox/dcim/choices.py:254 +#: dcim/choices.py:136 dcim/choices.py:207 dcim/choices.py:254 msgid "Front to rear" msgstr "Foran til bag" -#: netbox/dcim/choices.py:137 netbox/dcim/choices.py:208 -#: netbox/dcim/choices.py:255 +#: dcim/choices.py:137 dcim/choices.py:208 dcim/choices.py:255 msgid "Rear to front" msgstr "Bagsiden til forsiden" -#: netbox/dcim/choices.py:151 netbox/dcim/forms/bulk_edit.py:68 -#: netbox/dcim/forms/bulk_edit.py:87 netbox/dcim/forms/bulk_edit.py:173 -#: netbox/dcim/forms/bulk_edit.py:1405 netbox/dcim/forms/bulk_import.py:60 -#: netbox/dcim/forms/bulk_import.py:74 netbox/dcim/forms/bulk_import.py:137 -#: netbox/dcim/forms/bulk_import.py:566 netbox/dcim/forms/bulk_import.py:833 -#: netbox/dcim/forms/bulk_import.py:1088 netbox/dcim/forms/filtersets.py:234 -#: netbox/dcim/forms/model_forms.py:74 netbox/dcim/forms/model_forms.py:93 -#: netbox/dcim/forms/model_forms.py:170 netbox/dcim/forms/model_forms.py:1062 -#: netbox/dcim/forms/model_forms.py:1502 -#: netbox/dcim/forms/object_import.py:176 netbox/dcim/tables/devices.py:656 -#: netbox/dcim/tables/devices.py:869 netbox/dcim/tables/devices.py:954 -#: netbox/extras/tables/tables.py:223 netbox/ipam/tables/fhrp.py:59 -#: netbox/ipam/tables/ip.py:378 netbox/ipam/tables/services.py:44 -#: netbox/templates/dcim/interface.html:102 -#: netbox/templates/dcim/interface.html:309 -#: netbox/templates/dcim/location.html:41 netbox/templates/dcim/region.html:37 -#: netbox/templates/dcim/sitegroup.html:37 -#: netbox/templates/ipam/service.html:28 -#: netbox/templates/tenancy/contactgroup.html:29 -#: netbox/templates/tenancy/tenantgroup.html:37 -#: netbox/templates/virtualization/vminterface.html:39 -#: netbox/templates/wireless/wirelesslangroup.html:37 -#: netbox/tenancy/forms/bulk_edit.py:27 netbox/tenancy/forms/bulk_edit.py:61 -#: netbox/tenancy/forms/bulk_import.py:24 -#: netbox/tenancy/forms/bulk_import.py:58 -#: netbox/tenancy/forms/model_forms.py:25 -#: netbox/tenancy/forms/model_forms.py:68 -#: netbox/virtualization/forms/bulk_edit.py:207 -#: netbox/virtualization/forms/bulk_import.py:151 -#: netbox/virtualization/tables/virtualmachines.py:162 -#: netbox/wireless/forms/bulk_edit.py:24 -#: netbox/wireless/forms/bulk_import.py:21 -#: netbox/wireless/forms/model_forms.py:21 +#: dcim/choices.py:151 dcim/forms/bulk_edit.py:68 dcim/forms/bulk_edit.py:87 +#: dcim/forms/bulk_edit.py:173 dcim/forms/bulk_edit.py:1405 +#: dcim/forms/bulk_import.py:60 dcim/forms/bulk_import.py:74 +#: dcim/forms/bulk_import.py:137 dcim/forms/bulk_import.py:566 +#: dcim/forms/bulk_import.py:833 dcim/forms/bulk_import.py:1088 +#: dcim/forms/filtersets.py:234 dcim/forms/model_forms.py:74 +#: dcim/forms/model_forms.py:93 dcim/forms/model_forms.py:170 +#: dcim/forms/model_forms.py:1062 dcim/forms/model_forms.py:1502 +#: dcim/forms/object_import.py:176 dcim/tables/devices.py:656 +#: dcim/tables/devices.py:869 dcim/tables/devices.py:954 +#: extras/tables/tables.py:223 ipam/tables/fhrp.py:59 ipam/tables/ip.py:378 +#: ipam/tables/services.py:44 templates/dcim/interface.html:102 +#: templates/dcim/interface.html:309 templates/dcim/location.html:41 +#: templates/dcim/region.html:37 templates/dcim/sitegroup.html:37 +#: templates/ipam/service.html:28 templates/tenancy/contactgroup.html:29 +#: templates/tenancy/tenantgroup.html:37 +#: templates/virtualization/vminterface.html:39 +#: templates/wireless/wirelesslangroup.html:37 tenancy/forms/bulk_edit.py:27 +#: tenancy/forms/bulk_edit.py:61 tenancy/forms/bulk_import.py:24 +#: tenancy/forms/bulk_import.py:58 tenancy/forms/model_forms.py:25 +#: tenancy/forms/model_forms.py:68 virtualization/forms/bulk_edit.py:207 +#: virtualization/forms/bulk_import.py:151 +#: virtualization/tables/virtualmachines.py:162 wireless/forms/bulk_edit.py:24 +#: wireless/forms/bulk_import.py:21 wireless/forms/model_forms.py:21 msgid "Parent" msgstr "Forælder" -#: netbox/dcim/choices.py:152 +#: dcim/choices.py:152 msgid "Child" msgstr "Barn" -#: netbox/dcim/choices.py:166 netbox/templates/dcim/device.html:340 -#: netbox/templates/dcim/rack.html:133 -#: netbox/templates/dcim/rack_elevation_list.html:20 -#: netbox/templates/dcim/rackreservation.html:76 +#: dcim/choices.py:166 templates/dcim/device.html:340 +#: templates/dcim/rack.html:133 templates/dcim/rack_elevation_list.html:20 +#: templates/dcim/rackreservation.html:76 msgid "Front" msgstr "Front" -#: netbox/dcim/choices.py:167 netbox/templates/dcim/device.html:346 -#: netbox/templates/dcim/rack.html:139 -#: netbox/templates/dcim/rack_elevation_list.html:21 -#: netbox/templates/dcim/rackreservation.html:82 +#: dcim/choices.py:167 templates/dcim/device.html:346 +#: templates/dcim/rack.html:139 templates/dcim/rack_elevation_list.html:21 +#: templates/dcim/rackreservation.html:82 msgid "Rear" msgstr "Bageste" -#: netbox/dcim/choices.py:186 netbox/dcim/choices.py:238 -#: netbox/virtualization/choices.py:46 +#: dcim/choices.py:186 dcim/choices.py:238 virtualization/choices.py:46 msgid "Staged" msgstr "Iscenesat" -#: netbox/dcim/choices.py:188 +#: dcim/choices.py:188 msgid "Inventory" msgstr "Inventar" -#: netbox/dcim/choices.py:209 netbox/dcim/choices.py:256 +#: dcim/choices.py:209 dcim/choices.py:256 msgid "Left to right" msgstr "Venstre mod højre" -#: netbox/dcim/choices.py:210 netbox/dcim/choices.py:257 +#: dcim/choices.py:210 dcim/choices.py:257 msgid "Right to left" msgstr "Højre til venstre" -#: netbox/dcim/choices.py:211 netbox/dcim/choices.py:258 +#: dcim/choices.py:211 dcim/choices.py:258 msgid "Side to rear" msgstr "Side til bagside" -#: netbox/dcim/choices.py:212 +#: dcim/choices.py:212 msgid "Rear to side" msgstr "Bag til side" -#: netbox/dcim/choices.py:213 +#: dcim/choices.py:213 msgid "Bottom to top" msgstr "Bund til top" -#: netbox/dcim/choices.py:214 +#: dcim/choices.py:214 msgid "Top to bottom" msgstr "Top til bund" -#: netbox/dcim/choices.py:215 netbox/dcim/choices.py:259 -#: netbox/dcim/choices.py:1303 +#: dcim/choices.py:215 dcim/choices.py:259 dcim/choices.py:1303 msgid "Passive" msgstr "Passiv" -#: netbox/dcim/choices.py:216 +#: dcim/choices.py:216 msgid "Mixed" msgstr "Blandet" -#: netbox/dcim/choices.py:484 netbox/dcim/choices.py:733 +#: dcim/choices.py:484 dcim/choices.py:733 msgid "NEMA (Non-locking)" msgstr "NEMA (Ikke-låsende)" -#: netbox/dcim/choices.py:506 netbox/dcim/choices.py:755 +#: dcim/choices.py:506 dcim/choices.py:755 msgid "NEMA (Locking)" msgstr "NEMA (Låsning)" -#: netbox/dcim/choices.py:530 netbox/dcim/choices.py:779 +#: dcim/choices.py:530 dcim/choices.py:779 msgid "California Style" msgstr "Californiens stil" -#: netbox/dcim/choices.py:538 +#: dcim/choices.py:538 msgid "International/ITA" msgstr "International/ITA" -#: netbox/dcim/choices.py:573 netbox/dcim/choices.py:814 +#: dcim/choices.py:573 dcim/choices.py:814 msgid "Proprietary" msgstr "Proprietær" -#: netbox/dcim/choices.py:581 netbox/dcim/choices.py:824 -#: netbox/dcim/choices.py:1219 netbox/dcim/choices.py:1221 -#: netbox/dcim/choices.py:1447 netbox/dcim/choices.py:1449 -#: netbox/netbox/navigation/menu.py:200 +#: dcim/choices.py:581 dcim/choices.py:824 dcim/choices.py:1219 +#: dcim/choices.py:1221 dcim/choices.py:1447 dcim/choices.py:1449 +#: netbox/navigation/menu.py:200 msgid "Other" msgstr "Andet" -#: netbox/dcim/choices.py:787 +#: dcim/choices.py:787 msgid "ITA/International" msgstr "ITA/International" -#: netbox/dcim/choices.py:854 +#: dcim/choices.py:854 msgid "Physical" msgstr "Fysisk" -#: netbox/dcim/choices.py:855 netbox/dcim/choices.py:1023 +#: dcim/choices.py:855 dcim/choices.py:1023 msgid "Virtual" msgstr "Virtuel" -#: netbox/dcim/choices.py:856 netbox/dcim/choices.py:1097 -#: netbox/dcim/forms/bulk_edit.py:1515 netbox/dcim/forms/filtersets.py:1330 -#: netbox/dcim/forms/model_forms.py:988 netbox/dcim/forms/model_forms.py:1397 -#: netbox/netbox/navigation/menu.py:140 netbox/netbox/navigation/menu.py:144 -#: netbox/templates/dcim/interface.html:210 +#: dcim/choices.py:856 dcim/choices.py:1097 dcim/forms/bulk_edit.py:1515 +#: dcim/forms/filtersets.py:1330 dcim/forms/model_forms.py:988 +#: dcim/forms/model_forms.py:1397 netbox/navigation/menu.py:140 +#: netbox/navigation/menu.py:144 templates/dcim/interface.html:210 msgid "Wireless" msgstr "Trådløs" -#: netbox/dcim/choices.py:1021 +#: dcim/choices.py:1021 msgid "Virtual interfaces" msgstr "Virtuelle grænseflader" -#: netbox/dcim/choices.py:1024 netbox/dcim/forms/bulk_edit.py:1410 -#: netbox/dcim/forms/bulk_import.py:840 netbox/dcim/forms/model_forms.py:974 -#: netbox/dcim/tables/devices.py:660 netbox/templates/dcim/interface.html:106 -#: netbox/templates/virtualization/vminterface.html:43 -#: netbox/virtualization/forms/bulk_edit.py:212 -#: netbox/virtualization/forms/bulk_import.py:158 -#: netbox/virtualization/tables/virtualmachines.py:166 +#: dcim/choices.py:1024 dcim/forms/bulk_edit.py:1410 +#: dcim/forms/bulk_import.py:840 dcim/forms/model_forms.py:974 +#: dcim/tables/devices.py:660 templates/dcim/interface.html:106 +#: templates/virtualization/vminterface.html:43 +#: virtualization/forms/bulk_edit.py:212 +#: virtualization/forms/bulk_import.py:158 +#: virtualization/tables/virtualmachines.py:166 msgid "Bridge" msgstr "Bro" -#: netbox/dcim/choices.py:1025 +#: dcim/choices.py:1025 msgid "Link Aggregation Group (LAG)" msgstr "Link Aggregation Group (LAG)" -#: netbox/dcim/choices.py:1029 +#: dcim/choices.py:1029 msgid "Ethernet (fixed)" msgstr "Ethernet (fast)" -#: netbox/dcim/choices.py:1044 +#: dcim/choices.py:1044 msgid "Ethernet (modular)" msgstr "Ethernet (modulopbygget)" -#: netbox/dcim/choices.py:1081 +#: dcim/choices.py:1081 msgid "Ethernet (backplane)" msgstr "Ethernet (bagplan)" -#: netbox/dcim/choices.py:1113 +#: dcim/choices.py:1113 msgid "Cellular" msgstr "Cellulær" -#: netbox/dcim/choices.py:1165 netbox/dcim/forms/filtersets.py:383 -#: netbox/dcim/forms/filtersets.py:809 netbox/dcim/forms/filtersets.py:963 -#: netbox/dcim/forms/filtersets.py:1542 -#: netbox/templates/dcim/inventoryitem.html:52 -#: netbox/templates/dcim/virtualchassis_edit.html:54 +#: dcim/choices.py:1165 dcim/forms/filtersets.py:383 +#: dcim/forms/filtersets.py:809 dcim/forms/filtersets.py:963 +#: dcim/forms/filtersets.py:1542 templates/dcim/inventoryitem.html:52 +#: templates/dcim/virtualchassis_edit.html:54 msgid "Serial" msgstr "Seriel" -#: netbox/dcim/choices.py:1180 +#: dcim/choices.py:1180 msgid "Coaxial" msgstr "Koaksial" -#: netbox/dcim/choices.py:1200 +#: dcim/choices.py:1200 msgid "Stacking" msgstr "Stabling" -#: netbox/dcim/choices.py:1250 +#: dcim/choices.py:1250 msgid "Half" msgstr "Halvdelen" -#: netbox/dcim/choices.py:1251 +#: dcim/choices.py:1251 msgid "Full" msgstr "Fuld" -#: netbox/dcim/choices.py:1252 netbox/netbox/preferences.py:31 -#: netbox/wireless/choices.py:480 +#: dcim/choices.py:1252 netbox/preferences.py:31 wireless/choices.py:480 msgid "Auto" msgstr "Auto" -#: netbox/dcim/choices.py:1263 +#: dcim/choices.py:1263 msgid "Access" msgstr "Adgang" -#: netbox/dcim/choices.py:1264 netbox/ipam/tables/vlans.py:172 -#: netbox/ipam/tables/vlans.py:217 -#: netbox/templates/dcim/inc/interface_vlans_table.html:7 +#: dcim/choices.py:1264 ipam/tables/vlans.py:172 ipam/tables/vlans.py:217 +#: templates/dcim/inc/interface_vlans_table.html:7 msgid "Tagged" msgstr "Markeret" -#: netbox/dcim/choices.py:1265 +#: dcim/choices.py:1265 msgid "Tagged (All)" msgstr "Tagget (Alle)" -#: netbox/dcim/choices.py:1294 +#: dcim/choices.py:1294 msgid "IEEE Standard" msgstr "IEEE-standard" -#: netbox/dcim/choices.py:1305 +#: dcim/choices.py:1305 msgid "Passive 24V (2-pair)" msgstr "Passiv 24V (2-par)" -#: netbox/dcim/choices.py:1306 +#: dcim/choices.py:1306 msgid "Passive 24V (4-pair)" msgstr "Passiv 24V (4-par)" -#: netbox/dcim/choices.py:1307 +#: dcim/choices.py:1307 msgid "Passive 48V (2-pair)" msgstr "Passiv 48V (2-par)" -#: netbox/dcim/choices.py:1308 +#: dcim/choices.py:1308 msgid "Passive 48V (4-pair)" msgstr "Passiv 48V (4-par)" -#: netbox/dcim/choices.py:1378 netbox/dcim/choices.py:1488 +#: dcim/choices.py:1378 dcim/choices.py:1488 msgid "Copper" msgstr "Kobber" -#: netbox/dcim/choices.py:1401 +#: dcim/choices.py:1401 msgid "Fiber Optic" msgstr "Fiberoptisk" -#: netbox/dcim/choices.py:1434 netbox/dcim/choices.py:1517 +#: dcim/choices.py:1434 dcim/choices.py:1517 msgid "USB" msgstr "USB" -#: netbox/dcim/choices.py:1504 +#: dcim/choices.py:1504 msgid "Fiber" msgstr "Fiber" -#: netbox/dcim/choices.py:1529 netbox/dcim/forms/filtersets.py:1227 +#: dcim/choices.py:1529 dcim/forms/filtersets.py:1227 msgid "Connected" msgstr "Tilsluttet" -#: netbox/dcim/choices.py:1548 netbox/wireless/choices.py:497 +#: dcim/choices.py:1548 wireless/choices.py:497 msgid "Kilometers" msgstr "Kilometer" -#: netbox/dcim/choices.py:1549 netbox/templates/dcim/cable_trace.html:65 -#: netbox/wireless/choices.py:498 +#: dcim/choices.py:1549 templates/dcim/cable_trace.html:65 +#: wireless/choices.py:498 msgid "Meters" msgstr "Meter" -#: netbox/dcim/choices.py:1550 +#: dcim/choices.py:1550 msgid "Centimeters" msgstr "Centimeter" -#: netbox/dcim/choices.py:1551 netbox/wireless/choices.py:499 +#: dcim/choices.py:1551 wireless/choices.py:499 msgid "Miles" msgstr "Mil" -#: netbox/dcim/choices.py:1552 netbox/templates/dcim/cable_trace.html:66 -#: netbox/wireless/choices.py:500 +#: dcim/choices.py:1552 templates/dcim/cable_trace.html:66 +#: wireless/choices.py:500 msgid "Feet" msgstr "Fod" -#: netbox/dcim/choices.py:1568 netbox/templates/dcim/device.html:327 -#: netbox/templates/dcim/rack.html:107 +#: dcim/choices.py:1568 templates/dcim/device.html:327 +#: templates/dcim/rack.html:107 msgid "Kilograms" msgstr "Kilogram" -#: netbox/dcim/choices.py:1569 +#: dcim/choices.py:1569 msgid "Grams" msgstr "Gram" -#: netbox/dcim/choices.py:1570 netbox/templates/dcim/device.html:328 -#: netbox/templates/dcim/rack.html:108 +#: dcim/choices.py:1570 templates/dcim/device.html:328 +#: templates/dcim/rack.html:108 msgid "Pounds" msgstr "pund" -#: netbox/dcim/choices.py:1571 +#: dcim/choices.py:1571 msgid "Ounces" msgstr "Ounce" -#: netbox/dcim/choices.py:1618 +#: dcim/choices.py:1618 msgid "Redundant" msgstr "Redundant" -#: netbox/dcim/choices.py:1639 +#: dcim/choices.py:1639 msgid "Single phase" msgstr "Enkeltfase" -#: netbox/dcim/choices.py:1640 +#: dcim/choices.py:1640 msgid "Three-phase" msgstr "Trefaset" -#: netbox/dcim/fields.py:45 +#: dcim/fields.py:45 #, python-brace-format msgid "Invalid MAC address format: {value}" msgstr "Ugyldigt MAC-adresseformat: {value}" -#: netbox/dcim/fields.py:71 +#: dcim/fields.py:71 #, python-brace-format msgid "Invalid WWN format: {value}" msgstr "Ugyldigt WWN-format: {value}" -#: netbox/dcim/filtersets.py:86 +#: dcim/filtersets.py:86 msgid "Parent region (ID)" msgstr "Overordnet region (ID)" -#: netbox/dcim/filtersets.py:92 +#: dcim/filtersets.py:92 msgid "Parent region (slug)" msgstr "Forældreregion (slug)" -#: netbox/dcim/filtersets.py:116 +#: dcim/filtersets.py:116 msgid "Parent site group (ID)" msgstr "Overordnet områdegruppe (ID)" -#: netbox/dcim/filtersets.py:122 +#: dcim/filtersets.py:122 msgid "Parent site group (slug)" msgstr "Overordnet områdegruppe (slug)" -#: netbox/dcim/filtersets.py:164 netbox/extras/filtersets.py:364 -#: netbox/ipam/filtersets.py:841 netbox/ipam/filtersets.py:993 +#: dcim/filtersets.py:164 extras/filtersets.py:364 ipam/filtersets.py:841 +#: ipam/filtersets.py:993 msgid "Group (ID)" msgstr "Gruppe (ID)" -#: netbox/dcim/filtersets.py:170 +#: dcim/filtersets.py:170 msgid "Group (slug)" msgstr "Gruppe (slug)" -#: netbox/dcim/filtersets.py:176 netbox/dcim/filtersets.py:181 +#: dcim/filtersets.py:176 dcim/filtersets.py:181 msgid "AS (ID)" msgstr "AS (ID)" -#: netbox/dcim/filtersets.py:246 +#: dcim/filtersets.py:246 msgid "Parent location (ID)" msgstr "Overordnet placering (ID)" -#: netbox/dcim/filtersets.py:252 +#: dcim/filtersets.py:252 msgid "Parent location (slug)" msgstr "Forældreplacering (slug)" -#: netbox/dcim/filtersets.py:258 netbox/dcim/filtersets.py:369 -#: netbox/dcim/filtersets.py:490 netbox/dcim/filtersets.py:1057 -#: netbox/dcim/filtersets.py:1404 netbox/dcim/filtersets.py:2182 +#: dcim/filtersets.py:258 dcim/filtersets.py:369 dcim/filtersets.py:490 +#: dcim/filtersets.py:1057 dcim/filtersets.py:1404 dcim/filtersets.py:2182 msgid "Location (ID)" msgstr "Placering (ID)" -#: netbox/dcim/filtersets.py:265 netbox/dcim/filtersets.py:376 -#: netbox/dcim/filtersets.py:497 netbox/dcim/filtersets.py:1410 -#: netbox/extras/filtersets.py:542 +#: dcim/filtersets.py:265 dcim/filtersets.py:376 dcim/filtersets.py:497 +#: dcim/filtersets.py:1410 extras/filtersets.py:542 msgid "Location (slug)" msgstr "Placering (slug)" -#: netbox/dcim/filtersets.py:296 netbox/dcim/filtersets.py:381 -#: netbox/dcim/filtersets.py:539 netbox/dcim/filtersets.py:678 -#: netbox/dcim/filtersets.py:882 netbox/dcim/filtersets.py:933 -#: netbox/dcim/filtersets.py:973 netbox/dcim/filtersets.py:1306 -#: netbox/dcim/filtersets.py:1840 +#: dcim/filtersets.py:296 dcim/filtersets.py:381 dcim/filtersets.py:539 +#: dcim/filtersets.py:678 dcim/filtersets.py:882 dcim/filtersets.py:933 +#: dcim/filtersets.py:973 dcim/filtersets.py:1306 dcim/filtersets.py:1840 msgid "Manufacturer (ID)" msgstr "Producent (ID)" -#: netbox/dcim/filtersets.py:302 netbox/dcim/filtersets.py:387 -#: netbox/dcim/filtersets.py:545 netbox/dcim/filtersets.py:684 -#: netbox/dcim/filtersets.py:888 netbox/dcim/filtersets.py:939 -#: netbox/dcim/filtersets.py:979 netbox/dcim/filtersets.py:1312 -#: netbox/dcim/filtersets.py:1846 +#: dcim/filtersets.py:302 dcim/filtersets.py:387 dcim/filtersets.py:545 +#: dcim/filtersets.py:684 dcim/filtersets.py:888 dcim/filtersets.py:939 +#: dcim/filtersets.py:979 dcim/filtersets.py:1312 dcim/filtersets.py:1846 msgid "Manufacturer (slug)" msgstr "Producent (slug)" -#: netbox/dcim/filtersets.py:393 +#: dcim/filtersets.py:393 msgid "Rack type (slug)" msgstr "Racktype (slug)" -#: netbox/dcim/filtersets.py:397 +#: dcim/filtersets.py:397 msgid "Rack type (ID)" msgstr "Racktype (ID)" -#: netbox/dcim/filtersets.py:411 netbox/dcim/filtersets.py:892 -#: netbox/dcim/filtersets.py:994 netbox/dcim/filtersets.py:1850 -#: netbox/ipam/filtersets.py:381 netbox/ipam/filtersets.py:493 -#: netbox/ipam/filtersets.py:1003 netbox/virtualization/filtersets.py:210 +#: dcim/filtersets.py:411 dcim/filtersets.py:892 dcim/filtersets.py:994 +#: dcim/filtersets.py:1850 ipam/filtersets.py:381 ipam/filtersets.py:493 +#: ipam/filtersets.py:1003 virtualization/filtersets.py:210 msgid "Role (ID)" msgstr "Rolle (ID)" -#: netbox/dcim/filtersets.py:417 netbox/dcim/filtersets.py:898 -#: netbox/dcim/filtersets.py:1000 netbox/dcim/filtersets.py:1856 -#: netbox/extras/filtersets.py:558 netbox/ipam/filtersets.py:387 -#: netbox/ipam/filtersets.py:499 netbox/ipam/filtersets.py:1009 -#: netbox/virtualization/filtersets.py:216 +#: dcim/filtersets.py:417 dcim/filtersets.py:898 dcim/filtersets.py:1000 +#: dcim/filtersets.py:1856 extras/filtersets.py:558 ipam/filtersets.py:387 +#: ipam/filtersets.py:499 ipam/filtersets.py:1009 +#: virtualization/filtersets.py:216 msgid "Role (slug)" msgstr "Rolle (slug)" -#: netbox/dcim/filtersets.py:447 netbox/dcim/filtersets.py:1062 -#: netbox/dcim/filtersets.py:1415 netbox/dcim/filtersets.py:2244 +#: dcim/filtersets.py:447 dcim/filtersets.py:1062 dcim/filtersets.py:1415 +#: dcim/filtersets.py:2244 msgid "Rack (ID)" msgstr "Rack (ID)" -#: netbox/dcim/filtersets.py:507 netbox/extras/filtersets.py:293 -#: netbox/extras/filtersets.py:337 netbox/extras/filtersets.py:359 -#: netbox/extras/filtersets.py:419 netbox/users/filtersets.py:113 -#: netbox/users/filtersets.py:180 +#: dcim/filtersets.py:507 extras/filtersets.py:293 extras/filtersets.py:337 +#: extras/filtersets.py:359 extras/filtersets.py:419 users/filtersets.py:113 +#: users/filtersets.py:180 msgid "User (name)" msgstr "Bruger (navn)" -#: netbox/dcim/filtersets.py:549 +#: dcim/filtersets.py:549 msgid "Default platform (ID)" msgstr "Standardplatform (ID)" -#: netbox/dcim/filtersets.py:555 +#: dcim/filtersets.py:555 msgid "Default platform (slug)" msgstr "Standardplatform (slug)" -#: netbox/dcim/filtersets.py:558 netbox/dcim/forms/filtersets.py:517 +#: dcim/filtersets.py:558 dcim/forms/filtersets.py:517 msgid "Has a front image" msgstr "Har et frontbillede" -#: netbox/dcim/filtersets.py:562 netbox/dcim/forms/filtersets.py:524 +#: dcim/filtersets.py:562 dcim/forms/filtersets.py:524 msgid "Has a rear image" msgstr "Har et bagbillede" -#: netbox/dcim/filtersets.py:567 netbox/dcim/filtersets.py:688 -#: netbox/dcim/filtersets.py:1131 netbox/dcim/forms/filtersets.py:531 -#: netbox/dcim/forms/filtersets.py:627 netbox/dcim/forms/filtersets.py:848 +#: dcim/filtersets.py:567 dcim/filtersets.py:688 dcim/filtersets.py:1131 +#: dcim/forms/filtersets.py:531 dcim/forms/filtersets.py:627 +#: dcim/forms/filtersets.py:848 msgid "Has console ports" msgstr "Har konsolporte" -#: netbox/dcim/filtersets.py:571 netbox/dcim/filtersets.py:692 -#: netbox/dcim/filtersets.py:1135 netbox/dcim/forms/filtersets.py:538 -#: netbox/dcim/forms/filtersets.py:634 netbox/dcim/forms/filtersets.py:855 +#: dcim/filtersets.py:571 dcim/filtersets.py:692 dcim/filtersets.py:1135 +#: dcim/forms/filtersets.py:538 dcim/forms/filtersets.py:634 +#: dcim/forms/filtersets.py:855 msgid "Has console server ports" msgstr "Har konsolserverporte" -#: netbox/dcim/filtersets.py:575 netbox/dcim/filtersets.py:696 -#: netbox/dcim/filtersets.py:1139 netbox/dcim/forms/filtersets.py:545 -#: netbox/dcim/forms/filtersets.py:641 netbox/dcim/forms/filtersets.py:862 +#: dcim/filtersets.py:575 dcim/filtersets.py:696 dcim/filtersets.py:1139 +#: dcim/forms/filtersets.py:545 dcim/forms/filtersets.py:641 +#: dcim/forms/filtersets.py:862 msgid "Has power ports" msgstr "Har strømstik" -#: netbox/dcim/filtersets.py:579 netbox/dcim/filtersets.py:700 -#: netbox/dcim/filtersets.py:1143 netbox/dcim/forms/filtersets.py:552 -#: netbox/dcim/forms/filtersets.py:648 netbox/dcim/forms/filtersets.py:869 +#: dcim/filtersets.py:579 dcim/filtersets.py:700 dcim/filtersets.py:1143 +#: dcim/forms/filtersets.py:552 dcim/forms/filtersets.py:648 +#: dcim/forms/filtersets.py:869 msgid "Has power outlets" msgstr "Har strømudtag" -#: netbox/dcim/filtersets.py:583 netbox/dcim/filtersets.py:704 -#: netbox/dcim/filtersets.py:1147 netbox/dcim/forms/filtersets.py:559 -#: netbox/dcim/forms/filtersets.py:655 netbox/dcim/forms/filtersets.py:876 +#: dcim/filtersets.py:583 dcim/filtersets.py:704 dcim/filtersets.py:1147 +#: dcim/forms/filtersets.py:559 dcim/forms/filtersets.py:655 +#: dcim/forms/filtersets.py:876 msgid "Has interfaces" msgstr "Har grænseflader" -#: netbox/dcim/filtersets.py:587 netbox/dcim/filtersets.py:708 -#: netbox/dcim/filtersets.py:1151 netbox/dcim/forms/filtersets.py:566 -#: netbox/dcim/forms/filtersets.py:662 netbox/dcim/forms/filtersets.py:883 +#: dcim/filtersets.py:587 dcim/filtersets.py:708 dcim/filtersets.py:1151 +#: dcim/forms/filtersets.py:566 dcim/forms/filtersets.py:662 +#: dcim/forms/filtersets.py:883 msgid "Has pass-through ports" msgstr "Har gennemgangsporte" -#: netbox/dcim/filtersets.py:591 netbox/dcim/filtersets.py:1155 -#: netbox/dcim/forms/filtersets.py:580 +#: dcim/filtersets.py:591 dcim/filtersets.py:1155 dcim/forms/filtersets.py:580 msgid "Has module bays" msgstr "Har modulpladser" -#: netbox/dcim/filtersets.py:595 netbox/dcim/filtersets.py:1159 -#: netbox/dcim/forms/filtersets.py:573 +#: dcim/filtersets.py:595 dcim/filtersets.py:1159 dcim/forms/filtersets.py:573 msgid "Has device bays" msgstr "Har enhedsbugter" -#: netbox/dcim/filtersets.py:599 netbox/dcim/forms/filtersets.py:587 +#: dcim/filtersets.py:599 dcim/forms/filtersets.py:587 msgid "Has inventory items" msgstr "Har lagervarer" -#: netbox/dcim/filtersets.py:756 netbox/dcim/filtersets.py:989 -#: netbox/dcim/filtersets.py:1436 +#: dcim/filtersets.py:756 dcim/filtersets.py:989 dcim/filtersets.py:1436 msgid "Device type (ID)" msgstr "Enhedstype (ID)" -#: netbox/dcim/filtersets.py:772 netbox/dcim/filtersets.py:1317 +#: dcim/filtersets.py:772 dcim/filtersets.py:1317 msgid "Module type (ID)" msgstr "Modultype (ID)" -#: netbox/dcim/filtersets.py:804 netbox/dcim/filtersets.py:1591 +#: dcim/filtersets.py:804 dcim/filtersets.py:1591 msgid "Power port (ID)" msgstr "Strømstik (ID)" -#: netbox/dcim/filtersets.py:878 netbox/dcim/filtersets.py:1836 +#: dcim/filtersets.py:878 dcim/filtersets.py:1836 msgid "Parent inventory item (ID)" msgstr "Overordnet beholdningspost (ID)" -#: netbox/dcim/filtersets.py:921 netbox/dcim/filtersets.py:947 -#: netbox/dcim/filtersets.py:1127 netbox/virtualization/filtersets.py:238 +#: dcim/filtersets.py:921 dcim/filtersets.py:947 dcim/filtersets.py:1127 +#: virtualization/filtersets.py:238 msgid "Config template (ID)" msgstr "Konfigurationsskabelon (ID)" -#: netbox/dcim/filtersets.py:985 +#: dcim/filtersets.py:985 msgid "Device type (slug)" msgstr "Enhedstype (slug)" -#: netbox/dcim/filtersets.py:1005 +#: dcim/filtersets.py:1005 msgid "Parent Device (ID)" msgstr "Overordnet enhed (ID)" -#: netbox/dcim/filtersets.py:1009 netbox/virtualization/filtersets.py:220 +#: dcim/filtersets.py:1009 virtualization/filtersets.py:220 msgid "Platform (ID)" msgstr "Platform (ID)" -#: netbox/dcim/filtersets.py:1015 netbox/extras/filtersets.py:569 -#: netbox/virtualization/filtersets.py:226 +#: dcim/filtersets.py:1015 extras/filtersets.py:569 +#: virtualization/filtersets.py:226 msgid "Platform (slug)" msgstr "Platform (slug)" -#: netbox/dcim/filtersets.py:1051 netbox/dcim/filtersets.py:1399 -#: netbox/dcim/filtersets.py:1934 netbox/dcim/filtersets.py:2176 -#: netbox/dcim/filtersets.py:2235 +#: dcim/filtersets.py:1051 dcim/filtersets.py:1399 dcim/filtersets.py:1934 +#: dcim/filtersets.py:2176 dcim/filtersets.py:2235 msgid "Site name (slug)" msgstr "Områdenavn (slug)" -#: netbox/dcim/filtersets.py:1067 +#: dcim/filtersets.py:1067 msgid "Parent bay (ID)" msgstr "Forældrebugt (ID)" -#: netbox/dcim/filtersets.py:1071 +#: dcim/filtersets.py:1071 msgid "VM cluster (ID)" msgstr "VM-klynge (ID)" -#: netbox/dcim/filtersets.py:1077 netbox/extras/filtersets.py:591 -#: netbox/virtualization/filtersets.py:136 +#: dcim/filtersets.py:1077 extras/filtersets.py:591 +#: virtualization/filtersets.py:136 msgid "Cluster group (slug)" msgstr "Clustergruppe (slug)" -#: netbox/dcim/filtersets.py:1082 netbox/virtualization/filtersets.py:130 +#: dcim/filtersets.py:1082 virtualization/filtersets.py:130 msgid "Cluster group (ID)" msgstr "Klyngegruppe (ID)" -#: netbox/dcim/filtersets.py:1088 +#: dcim/filtersets.py:1088 msgid "Device model (slug)" msgstr "Enhedsmodel (slug)" -#: netbox/dcim/filtersets.py:1099 netbox/dcim/forms/bulk_edit.py:516 +#: dcim/filtersets.py:1099 dcim/forms/bulk_edit.py:516 msgid "Is full depth" msgstr "Er fuld dybde" -#: netbox/dcim/filtersets.py:1103 netbox/dcim/forms/common.py:18 -#: netbox/dcim/forms/filtersets.py:818 netbox/dcim/forms/filtersets.py:1385 -#: netbox/dcim/models/device_components.py:518 -#: netbox/virtualization/filtersets.py:230 -#: netbox/virtualization/filtersets.py:301 -#: netbox/virtualization/forms/filtersets.py:172 -#: netbox/virtualization/forms/filtersets.py:223 +#: dcim/filtersets.py:1103 dcim/forms/common.py:18 +#: dcim/forms/filtersets.py:818 dcim/forms/filtersets.py:1385 +#: dcim/models/device_components.py:518 virtualization/filtersets.py:230 +#: virtualization/filtersets.py:301 virtualization/forms/filtersets.py:172 +#: virtualization/forms/filtersets.py:223 msgid "MAC address" msgstr "MAC-adresse" -#: netbox/dcim/filtersets.py:1110 netbox/dcim/filtersets.py:1274 -#: netbox/dcim/forms/filtersets.py:827 netbox/dcim/forms/filtersets.py:930 -#: netbox/virtualization/filtersets.py:234 -#: netbox/virtualization/forms/filtersets.py:176 +#: dcim/filtersets.py:1110 dcim/filtersets.py:1274 +#: dcim/forms/filtersets.py:827 dcim/forms/filtersets.py:930 +#: virtualization/filtersets.py:234 virtualization/forms/filtersets.py:176 msgid "Has a primary IP" msgstr "Har en primær IP" -#: netbox/dcim/filtersets.py:1114 +#: dcim/filtersets.py:1114 msgid "Has an out-of-band IP" msgstr "Har en IP uden for båndet" -#: netbox/dcim/filtersets.py:1119 +#: dcim/filtersets.py:1119 msgid "Virtual chassis (ID)" msgstr "Virtuelt kabinet (ID)" -#: netbox/dcim/filtersets.py:1123 +#: dcim/filtersets.py:1123 msgid "Is a virtual chassis member" msgstr "Er et virtuelt chassismedlem" -#: netbox/dcim/filtersets.py:1164 +#: dcim/filtersets.py:1164 msgid "OOB IP (ID)" msgstr "OOB IP (ID)" -#: netbox/dcim/filtersets.py:1168 +#: dcim/filtersets.py:1168 msgid "Has virtual device context" msgstr "Har virtuel enhedskontekst" -#: netbox/dcim/filtersets.py:1257 +#: dcim/filtersets.py:1257 msgid "VDC (ID)" msgstr "VDC (ID)" -#: netbox/dcim/filtersets.py:1262 +#: dcim/filtersets.py:1262 msgid "Device model" msgstr "Enhedsmodel" -#: netbox/dcim/filtersets.py:1267 netbox/ipam/filtersets.py:632 -#: netbox/vpn/filtersets.py:102 netbox/vpn/filtersets.py:401 +#: dcim/filtersets.py:1267 ipam/filtersets.py:632 vpn/filtersets.py:102 +#: vpn/filtersets.py:401 msgid "Interface (ID)" msgstr "Grænseflade (ID)" -#: netbox/dcim/filtersets.py:1323 +#: dcim/filtersets.py:1323 msgid "Module type (model)" msgstr "Modultype (model)" -#: netbox/dcim/filtersets.py:1329 +#: dcim/filtersets.py:1329 msgid "Module bay (ID)" msgstr "Modulplads (ID)" -#: netbox/dcim/filtersets.py:1333 netbox/dcim/filtersets.py:1425 -#: netbox/ipam/filtersets.py:611 netbox/ipam/filtersets.py:851 -#: netbox/ipam/filtersets.py:1115 netbox/virtualization/filtersets.py:161 -#: netbox/vpn/filtersets.py:379 +#: dcim/filtersets.py:1333 dcim/filtersets.py:1425 ipam/filtersets.py:611 +#: ipam/filtersets.py:851 ipam/filtersets.py:1115 +#: virtualization/filtersets.py:161 vpn/filtersets.py:379 msgid "Device (ID)" msgstr "Enhed (ID)" -#: netbox/dcim/filtersets.py:1421 +#: dcim/filtersets.py:1421 msgid "Rack (name)" msgstr "Rack (navn)" -#: netbox/dcim/filtersets.py:1431 netbox/ipam/filtersets.py:606 -#: netbox/ipam/filtersets.py:846 netbox/ipam/filtersets.py:1121 -#: netbox/vpn/filtersets.py:374 +#: dcim/filtersets.py:1431 ipam/filtersets.py:606 ipam/filtersets.py:846 +#: ipam/filtersets.py:1121 vpn/filtersets.py:374 msgid "Device (name)" msgstr "Enhed (navn)" -#: netbox/dcim/filtersets.py:1442 +#: dcim/filtersets.py:1442 msgid "Device type (model)" msgstr "Enhedstype (model)" -#: netbox/dcim/filtersets.py:1447 +#: dcim/filtersets.py:1447 msgid "Device role (ID)" msgstr "Enhedsrolle (ID)" -#: netbox/dcim/filtersets.py:1453 +#: dcim/filtersets.py:1453 msgid "Device role (slug)" msgstr "Enhedsrolle (slug)" -#: netbox/dcim/filtersets.py:1458 +#: dcim/filtersets.py:1458 msgid "Virtual Chassis (ID)" msgstr "Virtuelt kabinet (ID)" -#: netbox/dcim/filtersets.py:1464 netbox/dcim/forms/filtersets.py:109 -#: netbox/dcim/tables/devices.py:206 netbox/netbox/navigation/menu.py:79 -#: netbox/templates/dcim/device.html:120 -#: netbox/templates/dcim/device_edit.html:93 -#: netbox/templates/dcim/virtualchassis.html:20 -#: netbox/templates/dcim/virtualchassis_add.html:8 -#: netbox/templates/dcim/virtualchassis_edit.html:24 +#: dcim/filtersets.py:1464 dcim/forms/filtersets.py:109 +#: dcim/tables/devices.py:206 netbox/navigation/menu.py:79 +#: templates/dcim/device.html:120 templates/dcim/device_edit.html:93 +#: templates/dcim/virtualchassis.html:20 +#: templates/dcim/virtualchassis_add.html:8 +#: templates/dcim/virtualchassis_edit.html:24 msgid "Virtual Chassis" msgstr "Virtuelt kabinet" -#: netbox/dcim/filtersets.py:1488 +#: dcim/filtersets.py:1488 msgid "Module (ID)" msgstr "Modul (ID)" -#: netbox/dcim/filtersets.py:1495 +#: dcim/filtersets.py:1495 msgid "Cable (ID)" msgstr "Kabel (ID)" -#: netbox/dcim/filtersets.py:1604 netbox/ipam/forms/bulk_import.py:189 -#: netbox/vpn/forms/bulk_import.py:308 +#: dcim/filtersets.py:1604 ipam/forms/bulk_import.py:189 +#: vpn/forms/bulk_import.py:308 msgid "Assigned VLAN" msgstr "Tildelt VLAN" -#: netbox/dcim/filtersets.py:1608 +#: dcim/filtersets.py:1608 msgid "Assigned VID" msgstr "Tildelt VID" -#: netbox/dcim/filtersets.py:1613 netbox/dcim/forms/bulk_edit.py:1489 -#: netbox/dcim/forms/bulk_import.py:891 netbox/dcim/forms/filtersets.py:1428 -#: netbox/dcim/forms/model_forms.py:1378 -#: netbox/dcim/models/device_components.py:711 -#: netbox/dcim/tables/devices.py:626 netbox/ipam/filtersets.py:316 -#: netbox/ipam/filtersets.py:327 netbox/ipam/filtersets.py:483 -#: netbox/ipam/filtersets.py:584 netbox/ipam/filtersets.py:595 -#: netbox/ipam/forms/bulk_edit.py:241 netbox/ipam/forms/bulk_edit.py:297 -#: netbox/ipam/forms/bulk_edit.py:339 netbox/ipam/forms/bulk_import.py:157 -#: netbox/ipam/forms/bulk_import.py:243 netbox/ipam/forms/bulk_import.py:279 -#: netbox/ipam/forms/filtersets.py:67 netbox/ipam/forms/filtersets.py:172 -#: netbox/ipam/forms/filtersets.py:309 netbox/ipam/forms/model_forms.py:62 -#: netbox/ipam/forms/model_forms.py:202 netbox/ipam/forms/model_forms.py:247 -#: netbox/ipam/forms/model_forms.py:300 netbox/ipam/forms/model_forms.py:431 -#: netbox/ipam/forms/model_forms.py:445 netbox/ipam/forms/model_forms.py:459 -#: netbox/ipam/models/ip.py:233 netbox/ipam/models/ip.py:512 -#: netbox/ipam/models/ip.py:720 netbox/ipam/models/vrfs.py:62 -#: netbox/ipam/tables/ip.py:242 netbox/ipam/tables/ip.py:309 -#: netbox/ipam/tables/ip.py:360 netbox/ipam/tables/ip.py:450 -#: netbox/templates/dcim/interface.html:133 -#: netbox/templates/ipam/ipaddress.html:18 -#: netbox/templates/ipam/iprange.html:40 netbox/templates/ipam/prefix.html:19 -#: netbox/templates/ipam/vrf.html:7 netbox/templates/ipam/vrf.html:13 -#: netbox/templates/virtualization/vminterface.html:47 -#: netbox/virtualization/forms/bulk_edit.py:261 -#: netbox/virtualization/forms/bulk_import.py:171 -#: netbox/virtualization/forms/filtersets.py:228 -#: netbox/virtualization/forms/model_forms.py:344 -#: netbox/virtualization/models/virtualmachines.py:355 -#: netbox/virtualization/tables/virtualmachines.py:143 +#: dcim/filtersets.py:1613 dcim/forms/bulk_edit.py:1489 +#: dcim/forms/bulk_import.py:891 dcim/forms/filtersets.py:1428 +#: dcim/forms/model_forms.py:1378 dcim/models/device_components.py:711 +#: dcim/tables/devices.py:626 ipam/filtersets.py:316 ipam/filtersets.py:327 +#: ipam/filtersets.py:483 ipam/filtersets.py:584 ipam/filtersets.py:595 +#: ipam/forms/bulk_edit.py:242 ipam/forms/bulk_edit.py:298 +#: ipam/forms/bulk_edit.py:340 ipam/forms/bulk_import.py:157 +#: ipam/forms/bulk_import.py:243 ipam/forms/bulk_import.py:279 +#: ipam/forms/filtersets.py:67 ipam/forms/filtersets.py:172 +#: ipam/forms/filtersets.py:309 ipam/forms/model_forms.py:62 +#: ipam/forms/model_forms.py:202 ipam/forms/model_forms.py:247 +#: ipam/forms/model_forms.py:300 ipam/forms/model_forms.py:431 +#: ipam/forms/model_forms.py:445 ipam/forms/model_forms.py:459 +#: ipam/models/ip.py:233 ipam/models/ip.py:512 ipam/models/ip.py:720 +#: ipam/models/vrfs.py:62 ipam/tables/ip.py:242 ipam/tables/ip.py:309 +#: ipam/tables/ip.py:360 ipam/tables/ip.py:450 +#: templates/dcim/interface.html:133 templates/ipam/ipaddress.html:18 +#: templates/ipam/iprange.html:40 templates/ipam/prefix.html:19 +#: templates/ipam/vrf.html:7 templates/ipam/vrf.html:13 +#: templates/virtualization/vminterface.html:47 +#: virtualization/forms/bulk_edit.py:261 +#: virtualization/forms/bulk_import.py:171 +#: virtualization/forms/filtersets.py:228 +#: virtualization/forms/model_forms.py:344 +#: virtualization/models/virtualmachines.py:355 +#: virtualization/tables/virtualmachines.py:143 msgid "VRF" msgstr "VRF" -#: netbox/dcim/filtersets.py:1619 netbox/ipam/filtersets.py:322 -#: netbox/ipam/filtersets.py:333 netbox/ipam/filtersets.py:489 -#: netbox/ipam/filtersets.py:590 netbox/ipam/filtersets.py:601 +#: dcim/filtersets.py:1619 ipam/filtersets.py:322 ipam/filtersets.py:333 +#: ipam/filtersets.py:489 ipam/filtersets.py:590 ipam/filtersets.py:601 msgid "VRF (RD)" msgstr "VRF (RED.)" -#: netbox/dcim/filtersets.py:1624 netbox/ipam/filtersets.py:1030 -#: netbox/vpn/filtersets.py:342 +#: dcim/filtersets.py:1624 ipam/filtersets.py:1030 vpn/filtersets.py:342 msgid "L2VPN (ID)" msgstr "L2VPN (ID)" -#: netbox/dcim/filtersets.py:1630 netbox/dcim/forms/filtersets.py:1433 -#: netbox/dcim/tables/devices.py:570 netbox/ipam/filtersets.py:1036 -#: netbox/ipam/forms/filtersets.py:518 netbox/ipam/tables/vlans.py:137 -#: netbox/templates/dcim/interface.html:93 netbox/templates/ipam/vlan.html:66 -#: netbox/templates/vpn/l2vpntermination.html:12 -#: netbox/virtualization/forms/filtersets.py:233 -#: netbox/vpn/forms/bulk_import.py:280 netbox/vpn/forms/filtersets.py:246 -#: netbox/vpn/forms/model_forms.py:409 netbox/vpn/forms/model_forms.py:427 -#: netbox/vpn/models/l2vpn.py:63 netbox/vpn/tables/l2vpn.py:55 +#: dcim/filtersets.py:1630 dcim/forms/filtersets.py:1433 +#: dcim/tables/devices.py:570 ipam/filtersets.py:1036 +#: ipam/forms/filtersets.py:518 ipam/tables/vlans.py:137 +#: templates/dcim/interface.html:93 templates/ipam/vlan.html:66 +#: templates/vpn/l2vpntermination.html:12 +#: virtualization/forms/filtersets.py:233 vpn/forms/bulk_import.py:280 +#: vpn/forms/filtersets.py:246 vpn/forms/model_forms.py:409 +#: vpn/forms/model_forms.py:427 vpn/models/l2vpn.py:63 vpn/tables/l2vpn.py:55 msgid "L2VPN" msgstr "L2VPN" -#: netbox/dcim/filtersets.py:1662 +#: dcim/filtersets.py:1662 msgid "Virtual Chassis Interfaces for Device" msgstr "Virtuelle chassis-grænseflader til enhed" -#: netbox/dcim/filtersets.py:1667 +#: dcim/filtersets.py:1667 msgid "Virtual Chassis Interfaces for Device (ID)" msgstr "Virtuelle chassisgrænseflader til enhed (ID)" -#: netbox/dcim/filtersets.py:1671 +#: dcim/filtersets.py:1671 msgid "Kind of interface" msgstr "Slags grænseflade" -#: netbox/dcim/filtersets.py:1676 netbox/virtualization/filtersets.py:293 +#: dcim/filtersets.py:1676 virtualization/filtersets.py:293 msgid "Parent interface (ID)" msgstr "Overordnet grænseflade (ID)" -#: netbox/dcim/filtersets.py:1681 netbox/virtualization/filtersets.py:298 +#: dcim/filtersets.py:1681 virtualization/filtersets.py:298 msgid "Bridged interface (ID)" msgstr "Broet grænseflade (ID)" -#: netbox/dcim/filtersets.py:1686 +#: dcim/filtersets.py:1686 msgid "LAG interface (ID)" msgstr "LAG-grænseflade (ID)" -#: netbox/dcim/filtersets.py:1713 netbox/dcim/filtersets.py:1725 -#: netbox/dcim/forms/filtersets.py:1345 netbox/dcim/forms/model_forms.py:1690 -#: netbox/templates/dcim/virtualdevicecontext.html:15 +#: dcim/filtersets.py:1713 dcim/filtersets.py:1725 +#: dcim/forms/filtersets.py:1345 dcim/forms/model_forms.py:1690 +#: templates/dcim/virtualdevicecontext.html:15 msgid "Virtual Device Context" msgstr "Virtuel enhedskontekst" -#: netbox/dcim/filtersets.py:1719 +#: dcim/filtersets.py:1719 msgid "Virtual Device Context (Identifier)" msgstr "Virtuel enhedskontekst (identifikator)" -#: netbox/dcim/filtersets.py:1730 -#: netbox/templates/wireless/wirelesslan.html:11 -#: netbox/wireless/forms/model_forms.py:53 +#: dcim/filtersets.py:1730 templates/wireless/wirelesslan.html:11 +#: wireless/forms/model_forms.py:53 msgid "Wireless LAN" msgstr "Trådløst LAN" -#: netbox/dcim/filtersets.py:1734 netbox/dcim/tables/devices.py:613 +#: dcim/filtersets.py:1734 dcim/tables/devices.py:613 msgid "Wireless link" msgstr "Trådløs forbindelse" -#: netbox/dcim/filtersets.py:1803 +#: dcim/filtersets.py:1803 msgid "Parent module bay (ID)" msgstr "Forældremodulplads (ID)" -#: netbox/dcim/filtersets.py:1808 +#: dcim/filtersets.py:1808 msgid "Installed module (ID)" msgstr "Installeret modul (ID)" -#: netbox/dcim/filtersets.py:1819 +#: dcim/filtersets.py:1819 msgid "Installed device (ID)" msgstr "Installeret enhed (ID)" -#: netbox/dcim/filtersets.py:1825 +#: dcim/filtersets.py:1825 msgid "Installed device (name)" msgstr "Installeret enhed (navn)" -#: netbox/dcim/filtersets.py:1891 +#: dcim/filtersets.py:1891 msgid "Master (ID)" msgstr "Master (ID)" -#: netbox/dcim/filtersets.py:1897 +#: dcim/filtersets.py:1897 msgid "Master (name)" msgstr "Master (navn)" -#: netbox/dcim/filtersets.py:1939 netbox/tenancy/filtersets.py:245 +#: dcim/filtersets.py:1939 tenancy/filtersets.py:245 msgid "Tenant (ID)" msgstr "Lejer (ID)" -#: netbox/dcim/filtersets.py:1945 netbox/extras/filtersets.py:618 -#: netbox/tenancy/filtersets.py:251 +#: dcim/filtersets.py:1945 extras/filtersets.py:618 tenancy/filtersets.py:251 msgid "Tenant (slug)" msgstr "Lejer (snegle)" -#: netbox/dcim/filtersets.py:1981 netbox/dcim/forms/filtersets.py:1077 +#: dcim/filtersets.py:1981 dcim/forms/filtersets.py:1077 msgid "Unterminated" msgstr "Uafsluttede" -#: netbox/dcim/filtersets.py:2239 +#: dcim/filtersets.py:2239 msgid "Power panel (ID)" msgstr "Strømpanel (ID)" -#: netbox/dcim/forms/bulk_create.py:40 netbox/extras/forms/filtersets.py:401 -#: netbox/extras/forms/model_forms.py:567 -#: netbox/extras/forms/model_forms.py:619 netbox/netbox/forms/base.py:86 -#: netbox/netbox/forms/mixins.py:81 netbox/netbox/tables/columns.py:478 -#: netbox/templates/circuits/inc/circuit_termination.html:32 -#: netbox/templates/generic/bulk_edit.html:65 -#: netbox/templates/inc/panels/tags.html:5 -#: netbox/utilities/forms/fields/fields.py:81 +#: dcim/forms/bulk_create.py:40 extras/forms/filtersets.py:401 +#: extras/forms/model_forms.py:567 extras/forms/model_forms.py:619 +#: netbox/forms/base.py:86 netbox/forms/mixins.py:81 +#: netbox/tables/columns.py:478 +#: templates/circuits/inc/circuit_termination.html:32 +#: templates/generic/bulk_edit.html:65 templates/inc/panels/tags.html:5 +#: utilities/forms/fields/fields.py:81 msgid "Tags" msgstr "Mærker" -#: netbox/dcim/forms/bulk_create.py:112 netbox/dcim/forms/filtersets.py:1498 -#: netbox/dcim/forms/model_forms.py:488 netbox/dcim/forms/model_forms.py:546 -#: netbox/dcim/forms/object_create.py:197 -#: netbox/dcim/forms/object_create.py:353 netbox/dcim/tables/devices.py:165 -#: netbox/dcim/tables/devices.py:707 netbox/dcim/tables/devicetypes.py:246 -#: netbox/templates/dcim/device.html:43 netbox/templates/dcim/device.html:131 -#: netbox/templates/dcim/modulebay.html:38 -#: netbox/templates/dcim/virtualchassis.html:66 -#: netbox/templates/dcim/virtualchassis_edit.html:55 +#: dcim/forms/bulk_create.py:112 dcim/forms/filtersets.py:1498 +#: dcim/forms/model_forms.py:488 dcim/forms/model_forms.py:546 +#: dcim/forms/object_create.py:197 dcim/forms/object_create.py:353 +#: dcim/tables/devices.py:165 dcim/tables/devices.py:707 +#: dcim/tables/devicetypes.py:246 templates/dcim/device.html:43 +#: templates/dcim/device.html:131 templates/dcim/modulebay.html:38 +#: templates/dcim/virtualchassis.html:66 +#: templates/dcim/virtualchassis_edit.html:55 msgid "Position" msgstr "Position" -#: netbox/dcim/forms/bulk_create.py:114 +#: dcim/forms/bulk_create.py:114 msgid "" "Alphanumeric ranges are supported. (Must match the number of names being " "created.)" @@ -3446,885 +3115,823 @@ msgstr "" "Alfanumeriske intervaller understøttes. (Skal svare til antallet af navne, " "der oprettes.)" -#: netbox/dcim/forms/bulk_edit.py:132 +#: dcim/forms/bulk_edit.py:132 msgid "Contact name" msgstr "Kontaktens navn" -#: netbox/dcim/forms/bulk_edit.py:137 +#: dcim/forms/bulk_edit.py:137 msgid "Contact phone" msgstr "Kontakt telefon" -#: netbox/dcim/forms/bulk_edit.py:143 +#: dcim/forms/bulk_edit.py:143 msgid "Contact E-mail" msgstr "Kontakt E-mail" -#: netbox/dcim/forms/bulk_edit.py:146 netbox/dcim/forms/bulk_import.py:123 -#: netbox/dcim/forms/model_forms.py:128 +#: dcim/forms/bulk_edit.py:146 dcim/forms/bulk_import.py:123 +#: dcim/forms/model_forms.py:128 msgid "Time zone" msgstr "Tidszone" -#: netbox/dcim/forms/bulk_edit.py:224 netbox/dcim/forms/bulk_edit.py:495 -#: netbox/dcim/forms/bulk_edit.py:559 netbox/dcim/forms/bulk_edit.py:632 -#: netbox/dcim/forms/bulk_edit.py:656 netbox/dcim/forms/bulk_edit.py:740 -#: netbox/dcim/forms/bulk_edit.py:1267 netbox/dcim/forms/bulk_edit.py:1660 -#: netbox/dcim/forms/bulk_import.py:182 netbox/dcim/forms/bulk_import.py:371 -#: netbox/dcim/forms/bulk_import.py:405 netbox/dcim/forms/bulk_import.py:450 -#: netbox/dcim/forms/bulk_import.py:486 netbox/dcim/forms/bulk_import.py:1082 -#: netbox/dcim/forms/filtersets.py:313 netbox/dcim/forms/filtersets.py:372 -#: netbox/dcim/forms/filtersets.py:494 netbox/dcim/forms/filtersets.py:619 -#: netbox/dcim/forms/filtersets.py:700 netbox/dcim/forms/filtersets.py:782 -#: netbox/dcim/forms/filtersets.py:947 netbox/dcim/forms/filtersets.py:1539 -#: netbox/dcim/forms/model_forms.py:207 netbox/dcim/forms/model_forms.py:337 -#: netbox/dcim/forms/model_forms.py:349 netbox/dcim/forms/model_forms.py:395 -#: netbox/dcim/forms/model_forms.py:436 netbox/dcim/forms/model_forms.py:1075 -#: netbox/dcim/forms/model_forms.py:1515 -#: netbox/dcim/forms/object_import.py:187 netbox/dcim/tables/devices.py:96 -#: netbox/dcim/tables/devices.py:172 netbox/dcim/tables/devices.py:940 -#: netbox/dcim/tables/devicetypes.py:80 netbox/dcim/tables/devicetypes.py:308 -#: netbox/dcim/tables/modules.py:20 netbox/dcim/tables/modules.py:60 -#: netbox/dcim/tables/racks.py:58 netbox/dcim/tables/racks.py:132 -#: netbox/templates/dcim/devicetype.html:14 -#: netbox/templates/dcim/inventoryitem.html:44 -#: netbox/templates/dcim/manufacturer.html:33 -#: netbox/templates/dcim/modulebay.html:62 -#: netbox/templates/dcim/moduletype.html:14 -#: netbox/templates/dcim/platform.html:37 -#: netbox/templates/dcim/racktype.html:16 +#: dcim/forms/bulk_edit.py:224 dcim/forms/bulk_edit.py:495 +#: dcim/forms/bulk_edit.py:559 dcim/forms/bulk_edit.py:632 +#: dcim/forms/bulk_edit.py:656 dcim/forms/bulk_edit.py:740 +#: dcim/forms/bulk_edit.py:1267 dcim/forms/bulk_edit.py:1660 +#: dcim/forms/bulk_import.py:182 dcim/forms/bulk_import.py:371 +#: dcim/forms/bulk_import.py:405 dcim/forms/bulk_import.py:450 +#: dcim/forms/bulk_import.py:486 dcim/forms/bulk_import.py:1082 +#: dcim/forms/filtersets.py:313 dcim/forms/filtersets.py:372 +#: dcim/forms/filtersets.py:494 dcim/forms/filtersets.py:619 +#: dcim/forms/filtersets.py:700 dcim/forms/filtersets.py:782 +#: dcim/forms/filtersets.py:947 dcim/forms/filtersets.py:1539 +#: dcim/forms/model_forms.py:207 dcim/forms/model_forms.py:337 +#: dcim/forms/model_forms.py:349 dcim/forms/model_forms.py:395 +#: dcim/forms/model_forms.py:436 dcim/forms/model_forms.py:1075 +#: dcim/forms/model_forms.py:1515 dcim/forms/object_import.py:187 +#: dcim/tables/devices.py:96 dcim/tables/devices.py:172 +#: dcim/tables/devices.py:940 dcim/tables/devicetypes.py:80 +#: dcim/tables/devicetypes.py:308 dcim/tables/modules.py:20 +#: dcim/tables/modules.py:60 dcim/tables/racks.py:58 dcim/tables/racks.py:132 +#: templates/dcim/devicetype.html:14 templates/dcim/inventoryitem.html:44 +#: templates/dcim/manufacturer.html:33 templates/dcim/modulebay.html:62 +#: templates/dcim/moduletype.html:25 templates/dcim/platform.html:37 +#: templates/dcim/racktype.html:16 msgid "Manufacturer" msgstr "Producent" -#: netbox/dcim/forms/bulk_edit.py:229 netbox/dcim/forms/bulk_edit.py:372 -#: netbox/dcim/forms/bulk_import.py:191 netbox/dcim/forms/bulk_import.py:263 -#: netbox/dcim/forms/filtersets.py:255 -#: netbox/templates/dcim/inc/panels/racktype_dimensions.html:6 +#: dcim/forms/bulk_edit.py:229 dcim/forms/bulk_edit.py:372 +#: dcim/forms/bulk_import.py:191 dcim/forms/bulk_import.py:263 +#: dcim/forms/filtersets.py:255 +#: templates/dcim/inc/panels/racktype_dimensions.html:6 msgid "Form factor" msgstr "Formfaktor" -#: netbox/dcim/forms/bulk_edit.py:234 netbox/dcim/forms/bulk_edit.py:377 -#: netbox/dcim/forms/bulk_import.py:199 netbox/dcim/forms/bulk_import.py:266 -#: netbox/dcim/forms/filtersets.py:260 -#: netbox/templates/dcim/inc/panels/racktype_dimensions.html:10 +#: dcim/forms/bulk_edit.py:234 dcim/forms/bulk_edit.py:377 +#: dcim/forms/bulk_import.py:199 dcim/forms/bulk_import.py:266 +#: dcim/forms/filtersets.py:260 +#: templates/dcim/inc/panels/racktype_dimensions.html:10 msgid "Width" msgstr "Bredde" -#: netbox/dcim/forms/bulk_edit.py:240 netbox/dcim/forms/bulk_edit.py:383 -#: netbox/templates/dcim/devicetype.html:37 +#: dcim/forms/bulk_edit.py:240 dcim/forms/bulk_edit.py:383 +#: templates/dcim/devicetype.html:37 msgid "Height (U)" msgstr "Højde (U)" -#: netbox/dcim/forms/bulk_edit.py:249 netbox/dcim/forms/bulk_edit.py:388 -#: netbox/dcim/forms/filtersets.py:274 +#: dcim/forms/bulk_edit.py:249 dcim/forms/bulk_edit.py:388 +#: dcim/forms/filtersets.py:274 msgid "Descending units" msgstr "Faldende enheder" -#: netbox/dcim/forms/bulk_edit.py:252 netbox/dcim/forms/bulk_edit.py:391 +#: dcim/forms/bulk_edit.py:252 dcim/forms/bulk_edit.py:391 msgid "Outer width" msgstr "Udvendig bredde" -#: netbox/dcim/forms/bulk_edit.py:257 netbox/dcim/forms/bulk_edit.py:396 +#: dcim/forms/bulk_edit.py:257 dcim/forms/bulk_edit.py:396 msgid "Outer depth" msgstr "Ydre dybde" -#: netbox/dcim/forms/bulk_edit.py:262 netbox/dcim/forms/bulk_edit.py:401 -#: netbox/dcim/forms/bulk_import.py:204 netbox/dcim/forms/bulk_import.py:271 +#: dcim/forms/bulk_edit.py:262 dcim/forms/bulk_edit.py:401 +#: dcim/forms/bulk_import.py:204 dcim/forms/bulk_import.py:271 msgid "Outer unit" msgstr "Ydre enhed" -#: netbox/dcim/forms/bulk_edit.py:267 netbox/dcim/forms/bulk_edit.py:406 +#: dcim/forms/bulk_edit.py:267 dcim/forms/bulk_edit.py:406 msgid "Mounting depth" msgstr "Monteringsdybde" -#: netbox/dcim/forms/bulk_edit.py:272 netbox/dcim/forms/bulk_edit.py:299 -#: netbox/dcim/forms/bulk_edit.py:416 netbox/dcim/forms/bulk_edit.py:446 -#: netbox/dcim/forms/bulk_edit.py:529 netbox/dcim/forms/bulk_edit.py:552 -#: netbox/dcim/forms/bulk_edit.py:573 netbox/dcim/forms/bulk_edit.py:595 -#: netbox/dcim/forms/bulk_import.py:384 netbox/dcim/forms/bulk_import.py:416 -#: netbox/dcim/forms/filtersets.py:285 netbox/dcim/forms/filtersets.py:307 -#: netbox/dcim/forms/filtersets.py:327 netbox/dcim/forms/filtersets.py:401 -#: netbox/dcim/forms/filtersets.py:488 netbox/dcim/forms/filtersets.py:594 -#: netbox/dcim/forms/filtersets.py:613 netbox/dcim/forms/filtersets.py:674 -#: netbox/dcim/forms/model_forms.py:221 netbox/dcim/forms/model_forms.py:298 -#: netbox/dcim/tables/devicetypes.py:106 netbox/dcim/tables/modules.py:35 -#: netbox/dcim/tables/racks.py:74 netbox/dcim/tables/racks.py:172 -#: netbox/extras/forms/bulk_edit.py:53 netbox/extras/forms/bulk_edit.py:133 -#: netbox/extras/forms/bulk_edit.py:183 netbox/extras/forms/bulk_edit.py:288 -#: netbox/extras/forms/filtersets.py:64 netbox/extras/forms/filtersets.py:156 -#: netbox/extras/forms/filtersets.py:243 netbox/ipam/forms/bulk_edit.py:189 -#: netbox/templates/dcim/device.html:324 -#: netbox/templates/dcim/devicetype.html:49 -#: netbox/templates/dcim/moduletype.html:34 netbox/templates/dcim/rack.html:81 -#: netbox/templates/dcim/racktype.html:41 -#: netbox/templates/extras/configcontext.html:17 -#: netbox/templates/extras/customlink.html:25 -#: netbox/templates/extras/savedfilter.html:33 -#: netbox/templates/ipam/role.html:30 +#: dcim/forms/bulk_edit.py:272 dcim/forms/bulk_edit.py:299 +#: dcim/forms/bulk_edit.py:416 dcim/forms/bulk_edit.py:446 +#: dcim/forms/bulk_edit.py:529 dcim/forms/bulk_edit.py:552 +#: dcim/forms/bulk_edit.py:573 dcim/forms/bulk_edit.py:595 +#: dcim/forms/bulk_import.py:384 dcim/forms/bulk_import.py:416 +#: dcim/forms/filtersets.py:285 dcim/forms/filtersets.py:307 +#: dcim/forms/filtersets.py:327 dcim/forms/filtersets.py:401 +#: dcim/forms/filtersets.py:488 dcim/forms/filtersets.py:594 +#: dcim/forms/filtersets.py:613 dcim/forms/filtersets.py:674 +#: dcim/forms/model_forms.py:221 dcim/forms/model_forms.py:298 +#: dcim/tables/devicetypes.py:106 dcim/tables/modules.py:35 +#: dcim/tables/racks.py:74 dcim/tables/racks.py:172 +#: extras/forms/bulk_edit.py:53 extras/forms/bulk_edit.py:133 +#: extras/forms/bulk_edit.py:183 extras/forms/bulk_edit.py:288 +#: extras/forms/filtersets.py:64 extras/forms/filtersets.py:156 +#: extras/forms/filtersets.py:243 ipam/forms/bulk_edit.py:190 +#: templates/dcim/device.html:324 templates/dcim/devicetype.html:49 +#: templates/dcim/moduletype.html:45 templates/dcim/rack.html:81 +#: templates/dcim/racktype.html:41 templates/extras/configcontext.html:17 +#: templates/extras/customlink.html:25 templates/extras/savedfilter.html:33 +#: templates/ipam/role.html:30 msgid "Weight" msgstr "Vægt" -#: netbox/dcim/forms/bulk_edit.py:277 netbox/dcim/forms/bulk_edit.py:421 -#: netbox/dcim/forms/filtersets.py:290 +#: dcim/forms/bulk_edit.py:277 dcim/forms/bulk_edit.py:421 +#: dcim/forms/filtersets.py:290 msgid "Max weight" msgstr "Maks. Vægt" -#: netbox/dcim/forms/bulk_edit.py:282 netbox/dcim/forms/bulk_edit.py:426 -#: netbox/dcim/forms/bulk_edit.py:534 netbox/dcim/forms/bulk_edit.py:578 -#: netbox/dcim/forms/bulk_import.py:210 netbox/dcim/forms/bulk_import.py:283 -#: netbox/dcim/forms/bulk_import.py:389 netbox/dcim/forms/bulk_import.py:421 -#: netbox/dcim/forms/filtersets.py:295 netbox/dcim/forms/filtersets.py:598 -#: netbox/dcim/forms/filtersets.py:678 +#: dcim/forms/bulk_edit.py:282 dcim/forms/bulk_edit.py:426 +#: dcim/forms/bulk_edit.py:534 dcim/forms/bulk_edit.py:578 +#: dcim/forms/bulk_import.py:210 dcim/forms/bulk_import.py:283 +#: dcim/forms/bulk_import.py:389 dcim/forms/bulk_import.py:421 +#: dcim/forms/filtersets.py:295 dcim/forms/filtersets.py:598 +#: dcim/forms/filtersets.py:678 msgid "Weight unit" msgstr "Vægtenhed" -#: netbox/dcim/forms/bulk_edit.py:296 netbox/dcim/forms/filtersets.py:305 -#: netbox/dcim/forms/model_forms.py:217 netbox/dcim/forms/model_forms.py:256 -#: netbox/templates/dcim/rack.html:45 netbox/templates/dcim/racktype.html:13 +#: dcim/forms/bulk_edit.py:296 dcim/forms/filtersets.py:305 +#: dcim/forms/model_forms.py:217 dcim/forms/model_forms.py:256 +#: templates/dcim/rack.html:45 templates/dcim/racktype.html:13 msgid "Rack Type" msgstr "Racktype" -#: netbox/dcim/forms/bulk_edit.py:298 netbox/dcim/forms/model_forms.py:220 -#: netbox/dcim/forms/model_forms.py:297 +#: dcim/forms/bulk_edit.py:298 dcim/forms/model_forms.py:220 +#: dcim/forms/model_forms.py:297 msgid "Outer Dimensions" msgstr "Udvendige mål" -#: netbox/dcim/forms/bulk_edit.py:301 netbox/dcim/forms/model_forms.py:222 -#: netbox/dcim/forms/model_forms.py:299 netbox/templates/dcim/device.html:315 -#: netbox/templates/dcim/inc/panels/racktype_dimensions.html:3 +#: dcim/forms/bulk_edit.py:301 dcim/forms/model_forms.py:222 +#: dcim/forms/model_forms.py:299 templates/dcim/device.html:315 +#: templates/dcim/inc/panels/racktype_dimensions.html:3 msgid "Dimensions" msgstr "Dimensioner" -#: netbox/dcim/forms/bulk_edit.py:303 netbox/dcim/forms/filtersets.py:306 -#: netbox/dcim/forms/filtersets.py:326 netbox/dcim/forms/model_forms.py:224 -#: netbox/templates/dcim/inc/panels/racktype_numbering.html:3 +#: dcim/forms/bulk_edit.py:303 dcim/forms/filtersets.py:306 +#: dcim/forms/filtersets.py:326 dcim/forms/model_forms.py:224 +#: templates/dcim/inc/panels/racktype_numbering.html:3 msgid "Numbering" msgstr "Nummerering" -#: netbox/dcim/forms/bulk_edit.py:357 netbox/dcim/forms/bulk_edit.py:1262 -#: netbox/dcim/forms/bulk_edit.py:1655 netbox/dcim/forms/bulk_import.py:253 -#: netbox/dcim/forms/bulk_import.py:1076 netbox/dcim/forms/filtersets.py:367 -#: netbox/dcim/forms/filtersets.py:777 netbox/dcim/forms/filtersets.py:1534 -#: netbox/dcim/forms/model_forms.py:251 netbox/dcim/forms/model_forms.py:1070 -#: netbox/dcim/forms/model_forms.py:1510 -#: netbox/dcim/forms/object_import.py:181 netbox/dcim/tables/devices.py:169 -#: netbox/dcim/tables/devices.py:809 netbox/dcim/tables/devices.py:937 -#: netbox/dcim/tables/devicetypes.py:304 netbox/dcim/tables/racks.py:129 -#: netbox/extras/filtersets.py:552 netbox/ipam/forms/bulk_edit.py:260 -#: netbox/ipam/forms/bulk_edit.py:310 netbox/ipam/forms/bulk_edit.py:358 -#: netbox/ipam/forms/bulk_edit.py:556 netbox/ipam/forms/bulk_import.py:197 -#: netbox/ipam/forms/bulk_import.py:262 netbox/ipam/forms/bulk_import.py:298 -#: netbox/ipam/forms/bulk_import.py:455 netbox/ipam/forms/filtersets.py:237 -#: netbox/ipam/forms/filtersets.py:289 netbox/ipam/forms/filtersets.py:360 -#: netbox/ipam/forms/filtersets.py:509 netbox/ipam/forms/model_forms.py:188 -#: netbox/ipam/forms/model_forms.py:221 netbox/ipam/forms/model_forms.py:250 -#: netbox/ipam/forms/model_forms.py:643 netbox/ipam/tables/ip.py:258 -#: netbox/ipam/tables/ip.py:316 netbox/ipam/tables/ip.py:367 -#: netbox/ipam/tables/vlans.py:130 netbox/ipam/tables/vlans.py:235 -#: netbox/templates/dcim/device.html:182 -#: netbox/templates/dcim/inc/panels/inventory_items.html:20 -#: netbox/templates/dcim/interface.html:223 -#: netbox/templates/dcim/inventoryitem.html:36 -#: netbox/templates/dcim/rack.html:49 netbox/templates/ipam/ipaddress.html:41 -#: netbox/templates/ipam/iprange.html:50 netbox/templates/ipam/prefix.html:77 -#: netbox/templates/ipam/role.html:19 netbox/templates/ipam/vlan.html:52 -#: netbox/templates/virtualization/virtualmachine.html:23 -#: netbox/templates/vpn/tunneltermination.html:17 -#: netbox/templates/wireless/inc/wirelesslink_interface.html:20 -#: netbox/tenancy/forms/bulk_edit.py:142 -#: netbox/tenancy/forms/filtersets.py:107 -#: netbox/tenancy/forms/model_forms.py:137 -#: netbox/tenancy/tables/contacts.py:102 -#: netbox/virtualization/forms/bulk_edit.py:145 -#: netbox/virtualization/forms/bulk_import.py:106 -#: netbox/virtualization/forms/filtersets.py:157 -#: netbox/virtualization/forms/model_forms.py:195 -#: netbox/virtualization/tables/virtualmachines.py:75 -#: netbox/vpn/forms/bulk_edit.py:87 netbox/vpn/forms/bulk_import.py:81 -#: netbox/vpn/forms/filtersets.py:85 netbox/vpn/forms/model_forms.py:78 -#: netbox/vpn/forms/model_forms.py:113 netbox/vpn/tables/tunnels.py:82 +#: dcim/forms/bulk_edit.py:357 dcim/forms/bulk_edit.py:1262 +#: dcim/forms/bulk_edit.py:1655 dcim/forms/bulk_import.py:253 +#: dcim/forms/bulk_import.py:1076 dcim/forms/filtersets.py:367 +#: dcim/forms/filtersets.py:777 dcim/forms/filtersets.py:1534 +#: dcim/forms/model_forms.py:251 dcim/forms/model_forms.py:1070 +#: dcim/forms/model_forms.py:1510 dcim/forms/object_import.py:181 +#: dcim/tables/devices.py:169 dcim/tables/devices.py:809 +#: dcim/tables/devices.py:937 dcim/tables/devicetypes.py:304 +#: dcim/tables/racks.py:129 extras/filtersets.py:552 +#: ipam/forms/bulk_edit.py:261 ipam/forms/bulk_edit.py:311 +#: ipam/forms/bulk_edit.py:359 ipam/forms/bulk_edit.py:511 +#: ipam/forms/bulk_import.py:197 ipam/forms/bulk_import.py:262 +#: ipam/forms/bulk_import.py:298 ipam/forms/bulk_import.py:455 +#: ipam/forms/filtersets.py:237 ipam/forms/filtersets.py:289 +#: ipam/forms/filtersets.py:360 ipam/forms/filtersets.py:509 +#: ipam/forms/model_forms.py:188 ipam/forms/model_forms.py:221 +#: ipam/forms/model_forms.py:250 ipam/forms/model_forms.py:643 +#: ipam/tables/ip.py:258 ipam/tables/ip.py:316 ipam/tables/ip.py:367 +#: ipam/tables/vlans.py:130 ipam/tables/vlans.py:235 +#: templates/dcim/device.html:182 +#: templates/dcim/inc/panels/inventory_items.html:20 +#: templates/dcim/interface.html:223 templates/dcim/inventoryitem.html:36 +#: templates/dcim/rack.html:49 templates/ipam/ipaddress.html:41 +#: templates/ipam/iprange.html:50 templates/ipam/prefix.html:77 +#: templates/ipam/role.html:19 templates/ipam/vlan.html:52 +#: templates/virtualization/virtualmachine.html:23 +#: templates/vpn/tunneltermination.html:17 +#: templates/wireless/inc/wirelesslink_interface.html:20 +#: tenancy/forms/bulk_edit.py:142 tenancy/forms/filtersets.py:107 +#: tenancy/forms/model_forms.py:137 tenancy/tables/contacts.py:102 +#: virtualization/forms/bulk_edit.py:145 +#: virtualization/forms/bulk_import.py:106 +#: virtualization/forms/filtersets.py:157 +#: virtualization/forms/model_forms.py:195 +#: virtualization/tables/virtualmachines.py:75 vpn/forms/bulk_edit.py:87 +#: vpn/forms/bulk_import.py:81 vpn/forms/filtersets.py:85 +#: vpn/forms/model_forms.py:78 vpn/forms/model_forms.py:113 +#: vpn/tables/tunnels.py:82 msgid "Role" msgstr "Rolle" -#: netbox/dcim/forms/bulk_edit.py:364 netbox/dcim/forms/bulk_edit.py:712 -#: netbox/dcim/forms/bulk_edit.py:764 netbox/templates/dcim/device.html:104 -#: netbox/templates/dcim/module.html:77 -#: netbox/templates/dcim/modulebay.html:70 netbox/templates/dcim/rack.html:57 -#: netbox/templates/virtualization/virtualmachine.html:35 +#: dcim/forms/bulk_edit.py:364 dcim/forms/bulk_edit.py:712 +#: dcim/forms/bulk_edit.py:764 templates/dcim/device.html:104 +#: templates/dcim/module.html:77 templates/dcim/modulebay.html:70 +#: templates/dcim/rack.html:57 templates/virtualization/virtualmachine.html:35 msgid "Serial Number" msgstr "Serienummer" -#: netbox/dcim/forms/bulk_edit.py:367 netbox/dcim/forms/filtersets.py:387 -#: netbox/dcim/forms/filtersets.py:813 netbox/dcim/forms/filtersets.py:967 -#: netbox/dcim/forms/filtersets.py:1546 +#: dcim/forms/bulk_edit.py:367 dcim/forms/filtersets.py:387 +#: dcim/forms/filtersets.py:813 dcim/forms/filtersets.py:967 +#: dcim/forms/filtersets.py:1546 msgid "Asset tag" msgstr "Aktivemærke" -#: netbox/dcim/forms/bulk_edit.py:411 netbox/dcim/forms/bulk_edit.py:524 -#: netbox/dcim/forms/bulk_edit.py:568 netbox/dcim/forms/bulk_edit.py:705 -#: netbox/dcim/forms/bulk_import.py:277 netbox/dcim/forms/bulk_import.py:410 -#: netbox/dcim/forms/bulk_import.py:580 netbox/dcim/forms/filtersets.py:280 -#: netbox/dcim/forms/filtersets.py:511 netbox/dcim/forms/filtersets.py:669 -#: netbox/dcim/forms/filtersets.py:804 netbox/templates/dcim/device.html:98 -#: netbox/templates/dcim/devicetype.html:65 -#: netbox/templates/dcim/moduletype.html:30 netbox/templates/dcim/rack.html:65 -#: netbox/templates/dcim/racktype.html:28 +#: dcim/forms/bulk_edit.py:411 dcim/forms/bulk_edit.py:524 +#: dcim/forms/bulk_edit.py:568 dcim/forms/bulk_edit.py:705 +#: dcim/forms/bulk_import.py:277 dcim/forms/bulk_import.py:410 +#: dcim/forms/bulk_import.py:580 dcim/forms/filtersets.py:280 +#: dcim/forms/filtersets.py:511 dcim/forms/filtersets.py:669 +#: dcim/forms/filtersets.py:804 templates/dcim/device.html:98 +#: templates/dcim/devicetype.html:65 templates/dcim/moduletype.html:41 +#: templates/dcim/rack.html:65 templates/dcim/racktype.html:28 msgid "Airflow" msgstr "Luftstrøm" -#: netbox/dcim/forms/bulk_edit.py:440 netbox/dcim/forms/bulk_edit.py:910 -#: netbox/dcim/forms/bulk_import.py:322 netbox/dcim/forms/bulk_import.py:325 -#: netbox/dcim/forms/bulk_import.py:553 netbox/dcim/forms/bulk_import.py:1358 -#: netbox/dcim/forms/bulk_import.py:1362 netbox/dcim/forms/filtersets.py:104 -#: netbox/dcim/forms/filtersets.py:324 netbox/dcim/forms/filtersets.py:405 -#: netbox/dcim/forms/filtersets.py:419 netbox/dcim/forms/filtersets.py:457 -#: netbox/dcim/forms/filtersets.py:772 netbox/dcim/forms/filtersets.py:1035 -#: netbox/dcim/forms/filtersets.py:1167 netbox/dcim/forms/model_forms.py:264 -#: netbox/dcim/forms/model_forms.py:306 netbox/dcim/forms/model_forms.py:479 -#: netbox/dcim/forms/model_forms.py:755 netbox/dcim/forms/object_create.py:400 -#: netbox/dcim/tables/devices.py:161 netbox/dcim/tables/power.py:70 -#: netbox/dcim/tables/racks.py:217 netbox/ipam/forms/bulk_edit.py:468 -#: netbox/ipam/forms/filtersets.py:442 netbox/templates/dcim/device.html:30 -#: netbox/templates/dcim/inc/cable_termination.html:16 -#: netbox/templates/dcim/powerfeed.html:28 netbox/templates/dcim/rack.html:13 -#: netbox/templates/dcim/rack/base.html:4 -#: netbox/templates/dcim/rackreservation.html:19 -#: netbox/templates/dcim/rackreservation.html:36 -#: netbox/virtualization/forms/model_forms.py:113 +#: dcim/forms/bulk_edit.py:440 dcim/forms/bulk_edit.py:910 +#: dcim/forms/bulk_import.py:322 dcim/forms/bulk_import.py:325 +#: dcim/forms/bulk_import.py:553 dcim/forms/bulk_import.py:1358 +#: dcim/forms/bulk_import.py:1362 dcim/forms/filtersets.py:104 +#: dcim/forms/filtersets.py:324 dcim/forms/filtersets.py:405 +#: dcim/forms/filtersets.py:419 dcim/forms/filtersets.py:457 +#: dcim/forms/filtersets.py:772 dcim/forms/filtersets.py:1035 +#: dcim/forms/filtersets.py:1167 dcim/forms/model_forms.py:264 +#: dcim/forms/model_forms.py:306 dcim/forms/model_forms.py:479 +#: dcim/forms/model_forms.py:755 dcim/forms/object_create.py:400 +#: dcim/tables/devices.py:161 dcim/tables/power.py:70 dcim/tables/racks.py:217 +#: ipam/forms/filtersets.py:442 templates/dcim/device.html:30 +#: templates/dcim/inc/cable_termination.html:16 +#: templates/dcim/powerfeed.html:28 templates/dcim/rack.html:13 +#: templates/dcim/rack/base.html:4 templates/dcim/rackreservation.html:19 +#: templates/dcim/rackreservation.html:36 +#: virtualization/forms/model_forms.py:113 msgid "Rack" msgstr "Rack" -#: netbox/dcim/forms/bulk_edit.py:444 netbox/dcim/forms/bulk_edit.py:730 -#: netbox/dcim/forms/filtersets.py:325 netbox/dcim/forms/filtersets.py:398 -#: netbox/dcim/forms/filtersets.py:481 netbox/dcim/forms/filtersets.py:608 -#: netbox/dcim/forms/filtersets.py:721 netbox/dcim/forms/filtersets.py:942 -#: netbox/dcim/forms/model_forms.py:670 netbox/dcim/forms/model_forms.py:1580 -#: netbox/templates/dcim/device_edit.html:20 +#: dcim/forms/bulk_edit.py:444 dcim/forms/bulk_edit.py:730 +#: dcim/forms/filtersets.py:325 dcim/forms/filtersets.py:398 +#: dcim/forms/filtersets.py:481 dcim/forms/filtersets.py:608 +#: dcim/forms/filtersets.py:721 dcim/forms/filtersets.py:942 +#: dcim/forms/model_forms.py:670 dcim/forms/model_forms.py:1580 +#: templates/dcim/device_edit.html:20 msgid "Hardware" msgstr "Hardware" -#: netbox/dcim/forms/bulk_edit.py:500 netbox/dcim/forms/bulk_import.py:377 -#: netbox/dcim/forms/filtersets.py:499 netbox/dcim/forms/model_forms.py:353 +#: dcim/forms/bulk_edit.py:500 dcim/forms/bulk_import.py:377 +#: dcim/forms/filtersets.py:499 dcim/forms/model_forms.py:353 msgid "Default platform" msgstr "Standardplatform" -#: netbox/dcim/forms/bulk_edit.py:505 netbox/dcim/forms/bulk_edit.py:564 -#: netbox/dcim/forms/filtersets.py:502 netbox/dcim/forms/filtersets.py:622 +#: dcim/forms/bulk_edit.py:505 dcim/forms/bulk_edit.py:564 +#: dcim/forms/filtersets.py:502 dcim/forms/filtersets.py:622 msgid "Part number" msgstr "Varenummer" -#: netbox/dcim/forms/bulk_edit.py:509 +#: dcim/forms/bulk_edit.py:509 msgid "U height" msgstr "U højde" -#: netbox/dcim/forms/bulk_edit.py:521 netbox/dcim/tables/devicetypes.py:102 +#: dcim/forms/bulk_edit.py:521 dcim/tables/devicetypes.py:102 msgid "Exclude from utilization" msgstr "Ekskluder fra udnyttelse" -#: netbox/dcim/forms/bulk_edit.py:550 netbox/dcim/forms/model_forms.py:368 -#: netbox/dcim/tables/devicetypes.py:77 netbox/templates/dcim/device.html:88 -#: netbox/templates/dcim/devicebay.html:52 -#: netbox/templates/dcim/module.html:61 +#: dcim/forms/bulk_edit.py:550 dcim/forms/model_forms.py:368 +#: dcim/tables/devicetypes.py:77 templates/dcim/device.html:88 +#: templates/dcim/devicebay.html:52 templates/dcim/module.html:61 msgid "Device Type" msgstr "Enhedstype" -#: netbox/dcim/forms/bulk_edit.py:592 netbox/dcim/forms/model_forms.py:401 -#: netbox/dcim/tables/modules.py:17 netbox/dcim/tables/modules.py:65 -#: netbox/templates/dcim/module.html:65 -#: netbox/templates/dcim/modulebay.html:66 -#: netbox/templates/dcim/moduletype.html:11 +#: dcim/forms/bulk_edit.py:592 dcim/forms/model_forms.py:401 +#: dcim/tables/modules.py:17 dcim/tables/modules.py:65 +#: templates/dcim/module.html:65 templates/dcim/modulebay.html:66 +#: templates/dcim/moduletype.html:22 msgid "Module Type" msgstr "Modultype" -#: netbox/dcim/forms/bulk_edit.py:596 netbox/dcim/forms/model_forms.py:371 -#: netbox/dcim/forms/model_forms.py:402 -#: netbox/templates/dcim/devicetype.html:11 +#: dcim/forms/bulk_edit.py:596 dcim/forms/model_forms.py:371 +#: dcim/forms/model_forms.py:402 templates/dcim/devicetype.html:11 msgid "Chassis" msgstr "Chassis" -#: netbox/dcim/forms/bulk_edit.py:610 netbox/dcim/models/devices.py:484 -#: netbox/dcim/tables/devices.py:67 +#: dcim/forms/bulk_edit.py:610 dcim/models/devices.py:484 +#: dcim/tables/devices.py:67 msgid "VM role" msgstr "VM-rolle" -#: netbox/dcim/forms/bulk_edit.py:613 netbox/dcim/forms/bulk_edit.py:637 -#: netbox/dcim/forms/bulk_edit.py:720 netbox/dcim/forms/bulk_import.py:434 -#: netbox/dcim/forms/bulk_import.py:438 netbox/dcim/forms/bulk_import.py:457 -#: netbox/dcim/forms/bulk_import.py:461 netbox/dcim/forms/bulk_import.py:586 -#: netbox/dcim/forms/bulk_import.py:590 netbox/dcim/forms/filtersets.py:689 -#: netbox/dcim/forms/filtersets.py:705 netbox/dcim/forms/filtersets.py:823 -#: netbox/dcim/forms/model_forms.py:415 netbox/dcim/forms/model_forms.py:441 -#: netbox/dcim/forms/model_forms.py:555 -#: netbox/virtualization/forms/bulk_import.py:132 -#: netbox/virtualization/forms/bulk_import.py:133 -#: netbox/virtualization/forms/filtersets.py:188 -#: netbox/virtualization/forms/model_forms.py:215 +#: dcim/forms/bulk_edit.py:613 dcim/forms/bulk_edit.py:637 +#: dcim/forms/bulk_edit.py:720 dcim/forms/bulk_import.py:434 +#: dcim/forms/bulk_import.py:438 dcim/forms/bulk_import.py:457 +#: dcim/forms/bulk_import.py:461 dcim/forms/bulk_import.py:586 +#: dcim/forms/bulk_import.py:590 dcim/forms/filtersets.py:689 +#: dcim/forms/filtersets.py:705 dcim/forms/filtersets.py:823 +#: dcim/forms/model_forms.py:415 dcim/forms/model_forms.py:441 +#: dcim/forms/model_forms.py:555 virtualization/forms/bulk_import.py:132 +#: virtualization/forms/bulk_import.py:133 +#: virtualization/forms/filtersets.py:188 +#: virtualization/forms/model_forms.py:215 msgid "Config template" msgstr "Konfigurationsskabelon" -#: netbox/dcim/forms/bulk_edit.py:661 netbox/dcim/forms/bulk_edit.py:1061 -#: netbox/dcim/forms/bulk_import.py:492 netbox/dcim/forms/filtersets.py:114 -#: netbox/dcim/forms/model_forms.py:501 netbox/dcim/forms/model_forms.py:872 -#: netbox/dcim/forms/model_forms.py:889 netbox/extras/filtersets.py:547 +#: dcim/forms/bulk_edit.py:661 dcim/forms/bulk_edit.py:1061 +#: dcim/forms/bulk_import.py:492 dcim/forms/filtersets.py:114 +#: dcim/forms/model_forms.py:501 dcim/forms/model_forms.py:872 +#: dcim/forms/model_forms.py:889 extras/filtersets.py:547 msgid "Device type" msgstr "Enhedstype" -#: netbox/dcim/forms/bulk_edit.py:672 netbox/dcim/forms/bulk_import.py:473 -#: netbox/dcim/forms/filtersets.py:119 netbox/dcim/forms/model_forms.py:509 +#: dcim/forms/bulk_edit.py:672 dcim/forms/bulk_import.py:473 +#: dcim/forms/filtersets.py:119 dcim/forms/model_forms.py:509 msgid "Device role" msgstr "Enhedsrolle" -#: netbox/dcim/forms/bulk_edit.py:695 netbox/dcim/forms/bulk_import.py:498 -#: netbox/dcim/forms/filtersets.py:796 netbox/dcim/forms/model_forms.py:451 -#: netbox/dcim/forms/model_forms.py:513 netbox/dcim/tables/devices.py:182 -#: netbox/extras/filtersets.py:563 netbox/templates/dcim/device.html:186 -#: netbox/templates/dcim/platform.html:26 -#: netbox/templates/virtualization/virtualmachine.html:27 -#: netbox/virtualization/forms/bulk_edit.py:160 -#: netbox/virtualization/forms/bulk_import.py:122 -#: netbox/virtualization/forms/filtersets.py:168 -#: netbox/virtualization/forms/model_forms.py:203 -#: netbox/virtualization/tables/virtualmachines.py:79 +#: dcim/forms/bulk_edit.py:695 dcim/forms/bulk_import.py:498 +#: dcim/forms/filtersets.py:796 dcim/forms/model_forms.py:451 +#: dcim/forms/model_forms.py:513 dcim/tables/devices.py:182 +#: extras/filtersets.py:563 templates/dcim/device.html:186 +#: templates/dcim/platform.html:26 +#: templates/virtualization/virtualmachine.html:27 +#: virtualization/forms/bulk_edit.py:160 +#: virtualization/forms/bulk_import.py:122 +#: virtualization/forms/filtersets.py:168 +#: virtualization/forms/model_forms.py:203 +#: virtualization/tables/virtualmachines.py:79 msgid "Platform" msgstr "Platformen" -#: netbox/dcim/forms/bulk_edit.py:728 netbox/dcim/forms/bulk_edit.py:1281 -#: netbox/dcim/forms/bulk_edit.py:1650 netbox/dcim/forms/bulk_edit.py:1696 -#: netbox/dcim/forms/bulk_import.py:641 netbox/dcim/forms/bulk_import.py:703 -#: netbox/dcim/forms/bulk_import.py:729 netbox/dcim/forms/bulk_import.py:755 -#: netbox/dcim/forms/bulk_import.py:775 netbox/dcim/forms/bulk_import.py:828 -#: netbox/dcim/forms/bulk_import.py:946 netbox/dcim/forms/bulk_import.py:994 -#: netbox/dcim/forms/bulk_import.py:1011 netbox/dcim/forms/bulk_import.py:1023 -#: netbox/dcim/forms/bulk_import.py:1071 netbox/dcim/forms/bulk_import.py:1422 -#: netbox/dcim/forms/connections.py:24 netbox/dcim/forms/filtersets.py:131 -#: netbox/dcim/forms/filtersets.py:921 netbox/dcim/forms/filtersets.py:1051 -#: netbox/dcim/forms/filtersets.py:1242 netbox/dcim/forms/filtersets.py:1267 -#: netbox/dcim/forms/filtersets.py:1291 netbox/dcim/forms/filtersets.py:1311 -#: netbox/dcim/forms/filtersets.py:1334 netbox/dcim/forms/filtersets.py:1444 -#: netbox/dcim/forms/filtersets.py:1469 netbox/dcim/forms/filtersets.py:1493 -#: netbox/dcim/forms/filtersets.py:1511 netbox/dcim/forms/filtersets.py:1528 -#: netbox/dcim/forms/filtersets.py:1592 netbox/dcim/forms/filtersets.py:1616 -#: netbox/dcim/forms/filtersets.py:1640 netbox/dcim/forms/model_forms.py:633 -#: netbox/dcim/forms/model_forms.py:849 netbox/dcim/forms/model_forms.py:1208 -#: netbox/dcim/forms/model_forms.py:1664 -#: netbox/dcim/forms/object_create.py:257 netbox/dcim/tables/connections.py:22 -#: netbox/dcim/tables/connections.py:41 netbox/dcim/tables/connections.py:60 -#: netbox/dcim/tables/devices.py:285 netbox/dcim/tables/devices.py:371 -#: netbox/dcim/tables/devices.py:412 netbox/dcim/tables/devices.py:454 -#: netbox/dcim/tables/devices.py:505 netbox/dcim/tables/devices.py:597 -#: netbox/dcim/tables/devices.py:697 netbox/dcim/tables/devices.py:754 -#: netbox/dcim/tables/devices.py:801 netbox/dcim/tables/devices.py:861 -#: netbox/dcim/tables/devices.py:930 netbox/dcim/tables/devices.py:1057 -#: netbox/dcim/tables/modules.py:52 netbox/extras/forms/filtersets.py:321 -#: netbox/ipam/forms/bulk_import.py:304 netbox/ipam/forms/bulk_import.py:481 -#: netbox/ipam/forms/filtersets.py:551 netbox/ipam/forms/model_forms.py:319 -#: netbox/ipam/forms/model_forms.py:679 netbox/ipam/forms/model_forms.py:712 -#: netbox/ipam/forms/model_forms.py:738 netbox/ipam/tables/vlans.py:180 -#: netbox/templates/dcim/consoleport.html:20 -#: netbox/templates/dcim/consoleserverport.html:20 -#: netbox/templates/dcim/device.html:15 netbox/templates/dcim/device.html:130 -#: netbox/templates/dcim/device_edit.html:10 -#: netbox/templates/dcim/devicebay.html:20 -#: netbox/templates/dcim/devicebay.html:48 -#: netbox/templates/dcim/frontport.html:20 -#: netbox/templates/dcim/interface.html:30 -#: netbox/templates/dcim/interface.html:161 -#: netbox/templates/dcim/inventoryitem.html:20 -#: netbox/templates/dcim/module.html:57 -#: netbox/templates/dcim/modulebay.html:20 -#: netbox/templates/dcim/poweroutlet.html:20 -#: netbox/templates/dcim/powerport.html:20 -#: netbox/templates/dcim/rearport.html:20 -#: netbox/templates/dcim/virtualchassis.html:65 -#: netbox/templates/dcim/virtualchassis_edit.html:51 -#: netbox/templates/dcim/virtualdevicecontext.html:22 -#: netbox/templates/virtualization/virtualmachine.html:114 -#: netbox/templates/vpn/tunneltermination.html:23 -#: netbox/templates/wireless/inc/wirelesslink_interface.html:6 -#: netbox/virtualization/filtersets.py:167 -#: netbox/virtualization/forms/bulk_edit.py:137 -#: netbox/virtualization/forms/bulk_import.py:99 -#: netbox/virtualization/forms/filtersets.py:128 -#: netbox/virtualization/forms/model_forms.py:185 -#: netbox/virtualization/tables/virtualmachines.py:71 netbox/vpn/choices.py:44 -#: netbox/vpn/forms/bulk_import.py:86 netbox/vpn/forms/bulk_import.py:283 -#: netbox/vpn/forms/filtersets.py:275 netbox/vpn/forms/model_forms.py:90 -#: netbox/vpn/forms/model_forms.py:125 netbox/vpn/forms/model_forms.py:236 -#: netbox/vpn/forms/model_forms.py:453 netbox/wireless/forms/model_forms.py:99 -#: netbox/wireless/forms/model_forms.py:141 -#: netbox/wireless/tables/wirelesslan.py:75 +#: dcim/forms/bulk_edit.py:728 dcim/forms/bulk_edit.py:1281 +#: dcim/forms/bulk_edit.py:1650 dcim/forms/bulk_edit.py:1696 +#: dcim/forms/bulk_import.py:641 dcim/forms/bulk_import.py:703 +#: dcim/forms/bulk_import.py:729 dcim/forms/bulk_import.py:755 +#: dcim/forms/bulk_import.py:775 dcim/forms/bulk_import.py:828 +#: dcim/forms/bulk_import.py:946 dcim/forms/bulk_import.py:994 +#: dcim/forms/bulk_import.py:1011 dcim/forms/bulk_import.py:1023 +#: dcim/forms/bulk_import.py:1071 dcim/forms/bulk_import.py:1422 +#: dcim/forms/connections.py:24 dcim/forms/filtersets.py:131 +#: dcim/forms/filtersets.py:921 dcim/forms/filtersets.py:1051 +#: dcim/forms/filtersets.py:1242 dcim/forms/filtersets.py:1267 +#: dcim/forms/filtersets.py:1291 dcim/forms/filtersets.py:1311 +#: dcim/forms/filtersets.py:1334 dcim/forms/filtersets.py:1444 +#: dcim/forms/filtersets.py:1469 dcim/forms/filtersets.py:1493 +#: dcim/forms/filtersets.py:1511 dcim/forms/filtersets.py:1528 +#: dcim/forms/filtersets.py:1592 dcim/forms/filtersets.py:1616 +#: dcim/forms/filtersets.py:1640 dcim/forms/model_forms.py:633 +#: dcim/forms/model_forms.py:849 dcim/forms/model_forms.py:1208 +#: dcim/forms/model_forms.py:1664 dcim/forms/object_create.py:257 +#: dcim/tables/connections.py:22 dcim/tables/connections.py:41 +#: dcim/tables/connections.py:60 dcim/tables/devices.py:285 +#: dcim/tables/devices.py:371 dcim/tables/devices.py:412 +#: dcim/tables/devices.py:454 dcim/tables/devices.py:505 +#: dcim/tables/devices.py:597 dcim/tables/devices.py:697 +#: dcim/tables/devices.py:754 dcim/tables/devices.py:801 +#: dcim/tables/devices.py:861 dcim/tables/devices.py:930 +#: dcim/tables/devices.py:1057 dcim/tables/modules.py:52 +#: extras/forms/filtersets.py:321 ipam/forms/bulk_import.py:304 +#: ipam/forms/bulk_import.py:481 ipam/forms/filtersets.py:551 +#: ipam/forms/model_forms.py:319 ipam/forms/model_forms.py:679 +#: ipam/forms/model_forms.py:712 ipam/forms/model_forms.py:738 +#: ipam/tables/vlans.py:180 templates/dcim/consoleport.html:20 +#: templates/dcim/consoleserverport.html:20 templates/dcim/device.html:15 +#: templates/dcim/device.html:130 templates/dcim/device_edit.html:10 +#: templates/dcim/devicebay.html:20 templates/dcim/devicebay.html:48 +#: templates/dcim/frontport.html:20 templates/dcim/interface.html:30 +#: templates/dcim/interface.html:161 templates/dcim/inventoryitem.html:20 +#: templates/dcim/module.html:57 templates/dcim/modulebay.html:20 +#: templates/dcim/poweroutlet.html:20 templates/dcim/powerport.html:20 +#: templates/dcim/rearport.html:20 templates/dcim/virtualchassis.html:65 +#: templates/dcim/virtualchassis_edit.html:51 +#: templates/dcim/virtualdevicecontext.html:22 +#: templates/virtualization/virtualmachine.html:114 +#: templates/vpn/tunneltermination.html:23 +#: templates/wireless/inc/wirelesslink_interface.html:6 +#: virtualization/filtersets.py:167 virtualization/forms/bulk_edit.py:137 +#: virtualization/forms/bulk_import.py:99 +#: virtualization/forms/filtersets.py:128 +#: virtualization/forms/model_forms.py:185 +#: virtualization/tables/virtualmachines.py:71 vpn/choices.py:44 +#: vpn/forms/bulk_import.py:86 vpn/forms/bulk_import.py:283 +#: vpn/forms/filtersets.py:275 vpn/forms/model_forms.py:90 +#: vpn/forms/model_forms.py:125 vpn/forms/model_forms.py:236 +#: vpn/forms/model_forms.py:453 wireless/forms/model_forms.py:99 +#: wireless/forms/model_forms.py:141 wireless/tables/wirelesslan.py:75 msgid "Device" msgstr "Enhed" -#: netbox/dcim/forms/bulk_edit.py:731 -#: netbox/templates/extras/dashboard/widget_config.html:7 -#: netbox/virtualization/forms/bulk_edit.py:191 +#: dcim/forms/bulk_edit.py:731 templates/extras/dashboard/widget_config.html:7 +#: virtualization/forms/bulk_edit.py:191 msgid "Configuration" msgstr "Konfiguration" -#: netbox/dcim/forms/bulk_edit.py:745 netbox/dcim/forms/bulk_import.py:653 -#: netbox/dcim/forms/model_forms.py:647 netbox/dcim/forms/model_forms.py:897 +#: dcim/forms/bulk_edit.py:745 dcim/forms/bulk_import.py:653 +#: dcim/forms/model_forms.py:647 dcim/forms/model_forms.py:897 msgid "Module type" msgstr "Modultype" -#: netbox/dcim/forms/bulk_edit.py:799 netbox/dcim/forms/bulk_edit.py:984 -#: netbox/dcim/forms/bulk_edit.py:1003 netbox/dcim/forms/bulk_edit.py:1026 -#: netbox/dcim/forms/bulk_edit.py:1068 netbox/dcim/forms/bulk_edit.py:1112 -#: netbox/dcim/forms/bulk_edit.py:1163 netbox/dcim/forms/bulk_edit.py:1190 -#: netbox/dcim/forms/bulk_edit.py:1217 netbox/dcim/forms/bulk_edit.py:1235 -#: netbox/dcim/forms/bulk_edit.py:1253 netbox/dcim/forms/filtersets.py:67 -#: netbox/dcim/forms/object_create.py:46 netbox/templates/dcim/cable.html:32 -#: netbox/templates/dcim/consoleport.html:32 -#: netbox/templates/dcim/consoleserverport.html:32 -#: netbox/templates/dcim/devicebay.html:28 -#: netbox/templates/dcim/frontport.html:32 -#: netbox/templates/dcim/inc/panels/inventory_items.html:19 -#: netbox/templates/dcim/interface.html:42 -#: netbox/templates/dcim/inventoryitem.html:32 -#: netbox/templates/dcim/modulebay.html:34 -#: netbox/templates/dcim/poweroutlet.html:32 -#: netbox/templates/dcim/powerport.html:32 -#: netbox/templates/dcim/rearport.html:32 -#: netbox/templates/extras/customfield.html:26 -#: netbox/templates/generic/bulk_import.html:162 +#: dcim/forms/bulk_edit.py:799 dcim/forms/bulk_edit.py:984 +#: dcim/forms/bulk_edit.py:1003 dcim/forms/bulk_edit.py:1026 +#: dcim/forms/bulk_edit.py:1068 dcim/forms/bulk_edit.py:1112 +#: dcim/forms/bulk_edit.py:1163 dcim/forms/bulk_edit.py:1190 +#: dcim/forms/bulk_edit.py:1217 dcim/forms/bulk_edit.py:1235 +#: dcim/forms/bulk_edit.py:1253 dcim/forms/filtersets.py:67 +#: dcim/forms/object_create.py:46 templates/dcim/cable.html:32 +#: templates/dcim/consoleport.html:32 templates/dcim/consoleserverport.html:32 +#: templates/dcim/devicebay.html:28 templates/dcim/frontport.html:32 +#: templates/dcim/inc/panels/inventory_items.html:19 +#: templates/dcim/interface.html:42 templates/dcim/inventoryitem.html:32 +#: templates/dcim/modulebay.html:34 templates/dcim/poweroutlet.html:32 +#: templates/dcim/powerport.html:32 templates/dcim/rearport.html:32 +#: templates/extras/customfield.html:26 templates/generic/bulk_import.html:162 msgid "Label" msgstr "Mærke" -#: netbox/dcim/forms/bulk_edit.py:808 netbox/dcim/forms/filtersets.py:1068 -#: netbox/templates/dcim/cable.html:50 +#: dcim/forms/bulk_edit.py:808 dcim/forms/filtersets.py:1068 +#: templates/dcim/cable.html:50 msgid "Length" msgstr "Længde" -#: netbox/dcim/forms/bulk_edit.py:813 netbox/dcim/forms/bulk_import.py:1226 -#: netbox/dcim/forms/bulk_import.py:1229 netbox/dcim/forms/filtersets.py:1072 +#: dcim/forms/bulk_edit.py:813 dcim/forms/bulk_import.py:1226 +#: dcim/forms/bulk_import.py:1229 dcim/forms/filtersets.py:1072 msgid "Length unit" msgstr "Længdeenhed" -#: netbox/dcim/forms/bulk_edit.py:837 -#: netbox/templates/dcim/virtualchassis.html:23 +#: dcim/forms/bulk_edit.py:837 templates/dcim/virtualchassis.html:23 msgid "Domain" msgstr "domæne" -#: netbox/dcim/forms/bulk_edit.py:905 netbox/dcim/forms/bulk_import.py:1345 -#: netbox/dcim/forms/filtersets.py:1158 netbox/dcim/forms/model_forms.py:750 +#: dcim/forms/bulk_edit.py:905 dcim/forms/bulk_import.py:1345 +#: dcim/forms/filtersets.py:1158 dcim/forms/model_forms.py:750 msgid "Power panel" msgstr "Strømpanel" -#: netbox/dcim/forms/bulk_edit.py:927 netbox/dcim/forms/bulk_import.py:1381 -#: netbox/dcim/forms/filtersets.py:1180 -#: netbox/templates/dcim/powerfeed.html:83 +#: dcim/forms/bulk_edit.py:927 dcim/forms/bulk_import.py:1381 +#: dcim/forms/filtersets.py:1180 templates/dcim/powerfeed.html:83 msgid "Supply" msgstr "Forsyning" -#: netbox/dcim/forms/bulk_edit.py:933 netbox/dcim/forms/bulk_import.py:1386 -#: netbox/dcim/forms/filtersets.py:1185 -#: netbox/templates/dcim/powerfeed.html:95 +#: dcim/forms/bulk_edit.py:933 dcim/forms/bulk_import.py:1386 +#: dcim/forms/filtersets.py:1185 templates/dcim/powerfeed.html:95 msgid "Phase" msgstr "Fase" -#: netbox/dcim/forms/bulk_edit.py:939 netbox/dcim/forms/filtersets.py:1190 -#: netbox/templates/dcim/powerfeed.html:87 +#: dcim/forms/bulk_edit.py:939 dcim/forms/filtersets.py:1190 +#: templates/dcim/powerfeed.html:87 msgid "Voltage" msgstr "Spænding" -#: netbox/dcim/forms/bulk_edit.py:943 netbox/dcim/forms/filtersets.py:1194 -#: netbox/templates/dcim/powerfeed.html:91 +#: dcim/forms/bulk_edit.py:943 dcim/forms/filtersets.py:1194 +#: templates/dcim/powerfeed.html:91 msgid "Amperage" msgstr "Strømstyrke" -#: netbox/dcim/forms/bulk_edit.py:947 netbox/dcim/forms/filtersets.py:1198 +#: dcim/forms/bulk_edit.py:947 dcim/forms/filtersets.py:1198 msgid "Max utilization" msgstr "Maksimal udnyttelse" -#: netbox/dcim/forms/bulk_edit.py:1036 +#: dcim/forms/bulk_edit.py:1036 msgid "Maximum draw" msgstr "Maksimal trækning" -#: netbox/dcim/forms/bulk_edit.py:1039 -#: netbox/dcim/models/device_component_templates.py:282 -#: netbox/dcim/models/device_components.py:356 +#: dcim/forms/bulk_edit.py:1039 dcim/models/device_component_templates.py:282 +#: dcim/models/device_components.py:356 msgid "Maximum power draw (watts)" msgstr "Maksimal forbrug (watt)" -#: netbox/dcim/forms/bulk_edit.py:1042 +#: dcim/forms/bulk_edit.py:1042 msgid "Allocated draw" msgstr "Tildelt lodtrækning" -#: netbox/dcim/forms/bulk_edit.py:1045 -#: netbox/dcim/models/device_component_templates.py:289 -#: netbox/dcim/models/device_components.py:363 +#: dcim/forms/bulk_edit.py:1045 dcim/models/device_component_templates.py:289 +#: dcim/models/device_components.py:363 msgid "Allocated power draw (watts)" msgstr "Allokeret forbrug (watt)" -#: netbox/dcim/forms/bulk_edit.py:1078 netbox/dcim/forms/bulk_import.py:786 -#: netbox/dcim/forms/model_forms.py:953 netbox/dcim/forms/model_forms.py:1278 -#: netbox/dcim/forms/model_forms.py:1567 netbox/dcim/forms/object_import.py:55 +#: dcim/forms/bulk_edit.py:1078 dcim/forms/bulk_import.py:786 +#: dcim/forms/model_forms.py:953 dcim/forms/model_forms.py:1278 +#: dcim/forms/model_forms.py:1567 dcim/forms/object_import.py:55 msgid "Power port" msgstr "Strømstik" -#: netbox/dcim/forms/bulk_edit.py:1083 netbox/dcim/forms/bulk_import.py:793 +#: dcim/forms/bulk_edit.py:1083 dcim/forms/bulk_import.py:793 msgid "Feed leg" msgstr "Foderben" -#: netbox/dcim/forms/bulk_edit.py:1129 netbox/dcim/forms/bulk_edit.py:1440 +#: dcim/forms/bulk_edit.py:1129 dcim/forms/bulk_edit.py:1440 msgid "Management only" msgstr "Kun ledelse" -#: netbox/dcim/forms/bulk_edit.py:1139 netbox/dcim/forms/bulk_edit.py:1446 -#: netbox/dcim/forms/bulk_import.py:876 netbox/dcim/forms/filtersets.py:1394 -#: netbox/dcim/forms/object_import.py:90 -#: netbox/dcim/models/device_component_templates.py:437 -#: netbox/dcim/models/device_components.py:670 +#: dcim/forms/bulk_edit.py:1139 dcim/forms/bulk_edit.py:1446 +#: dcim/forms/bulk_import.py:876 dcim/forms/filtersets.py:1394 +#: dcim/forms/object_import.py:90 +#: dcim/models/device_component_templates.py:437 +#: dcim/models/device_components.py:670 msgid "PoE mode" msgstr "PoE-tilstand" -#: netbox/dcim/forms/bulk_edit.py:1145 netbox/dcim/forms/bulk_edit.py:1452 -#: netbox/dcim/forms/bulk_import.py:882 netbox/dcim/forms/filtersets.py:1399 -#: netbox/dcim/forms/object_import.py:95 -#: netbox/dcim/models/device_component_templates.py:443 -#: netbox/dcim/models/device_components.py:676 +#: dcim/forms/bulk_edit.py:1145 dcim/forms/bulk_edit.py:1452 +#: dcim/forms/bulk_import.py:882 dcim/forms/filtersets.py:1399 +#: dcim/forms/object_import.py:95 +#: dcim/models/device_component_templates.py:443 +#: dcim/models/device_components.py:676 msgid "PoE type" msgstr "PoE-type" -#: netbox/dcim/forms/bulk_edit.py:1151 netbox/dcim/forms/filtersets.py:1404 -#: netbox/dcim/forms/object_import.py:100 +#: dcim/forms/bulk_edit.py:1151 dcim/forms/filtersets.py:1404 +#: dcim/forms/object_import.py:100 msgid "Wireless role" msgstr "Trådløs rolle" -#: netbox/dcim/forms/bulk_edit.py:1288 netbox/dcim/forms/model_forms.py:669 -#: netbox/dcim/forms/model_forms.py:1223 netbox/dcim/tables/devices.py:313 -#: netbox/templates/dcim/consoleport.html:24 -#: netbox/templates/dcim/consoleserverport.html:24 -#: netbox/templates/dcim/frontport.html:24 -#: netbox/templates/dcim/interface.html:34 -#: netbox/templates/dcim/module.html:54 -#: netbox/templates/dcim/modulebay.html:26 -#: netbox/templates/dcim/modulebay.html:58 -#: netbox/templates/dcim/poweroutlet.html:24 -#: netbox/templates/dcim/powerport.html:24 -#: netbox/templates/dcim/rearport.html:24 +#: dcim/forms/bulk_edit.py:1288 dcim/forms/model_forms.py:669 +#: dcim/forms/model_forms.py:1223 dcim/tables/devices.py:313 +#: templates/dcim/consoleport.html:24 templates/dcim/consoleserverport.html:24 +#: templates/dcim/frontport.html:24 templates/dcim/interface.html:34 +#: templates/dcim/module.html:54 templates/dcim/modulebay.html:26 +#: templates/dcim/modulebay.html:58 templates/dcim/poweroutlet.html:24 +#: templates/dcim/powerport.html:24 templates/dcim/rearport.html:24 msgid "Module" msgstr "Modul" -#: netbox/dcim/forms/bulk_edit.py:1420 netbox/dcim/tables/devices.py:665 -#: netbox/templates/dcim/interface.html:110 +#: dcim/forms/bulk_edit.py:1420 dcim/tables/devices.py:665 +#: templates/dcim/interface.html:110 msgid "LAG" msgstr "FORSINKELSE" -#: netbox/dcim/forms/bulk_edit.py:1425 netbox/dcim/forms/model_forms.py:1305 +#: dcim/forms/bulk_edit.py:1425 dcim/forms/model_forms.py:1305 msgid "Virtual device contexts" msgstr "Virtuelle enhedskontekster" -#: netbox/dcim/forms/bulk_edit.py:1431 netbox/dcim/forms/bulk_import.py:714 -#: netbox/dcim/forms/bulk_import.py:740 netbox/dcim/forms/filtersets.py:1252 -#: netbox/dcim/forms/filtersets.py:1277 netbox/dcim/forms/filtersets.py:1358 -#: netbox/dcim/tables/devices.py:610 -#: netbox/templates/circuits/inc/circuit_termination_fields.html:67 -#: netbox/templates/dcim/consoleport.html:40 -#: netbox/templates/dcim/consoleserverport.html:40 +#: dcim/forms/bulk_edit.py:1431 dcim/forms/bulk_import.py:714 +#: dcim/forms/bulk_import.py:740 dcim/forms/filtersets.py:1252 +#: dcim/forms/filtersets.py:1277 dcim/forms/filtersets.py:1358 +#: dcim/tables/devices.py:610 +#: templates/circuits/inc/circuit_termination_fields.html:67 +#: templates/dcim/consoleport.html:40 templates/dcim/consoleserverport.html:40 msgid "Speed" msgstr "Hastighed" -#: netbox/dcim/forms/bulk_edit.py:1460 netbox/dcim/forms/bulk_import.py:885 -#: netbox/templates/vpn/ikepolicy.html:25 -#: netbox/templates/vpn/ipsecprofile.html:21 -#: netbox/templates/vpn/ipsecprofile.html:48 -#: netbox/virtualization/forms/bulk_edit.py:233 -#: netbox/virtualization/forms/bulk_import.py:165 -#: netbox/vpn/forms/bulk_edit.py:146 netbox/vpn/forms/bulk_edit.py:232 -#: netbox/vpn/forms/bulk_import.py:176 netbox/vpn/forms/bulk_import.py:234 -#: netbox/vpn/forms/filtersets.py:135 netbox/vpn/forms/filtersets.py:178 -#: netbox/vpn/forms/filtersets.py:192 netbox/vpn/tables/crypto.py:64 -#: netbox/vpn/tables/crypto.py:162 +#: dcim/forms/bulk_edit.py:1460 dcim/forms/bulk_import.py:885 +#: templates/vpn/ikepolicy.html:25 templates/vpn/ipsecprofile.html:21 +#: templates/vpn/ipsecprofile.html:48 virtualization/forms/bulk_edit.py:233 +#: virtualization/forms/bulk_import.py:165 vpn/forms/bulk_edit.py:146 +#: vpn/forms/bulk_edit.py:232 vpn/forms/bulk_import.py:176 +#: vpn/forms/bulk_import.py:234 vpn/forms/filtersets.py:135 +#: vpn/forms/filtersets.py:178 vpn/forms/filtersets.py:192 +#: vpn/tables/crypto.py:64 vpn/tables/crypto.py:162 msgid "Mode" msgstr "Tilstand" -#: netbox/dcim/forms/bulk_edit.py:1468 netbox/dcim/forms/model_forms.py:1354 -#: netbox/ipam/forms/bulk_import.py:178 netbox/ipam/forms/filtersets.py:498 -#: netbox/ipam/models/vlans.py:84 netbox/virtualization/forms/bulk_edit.py:240 -#: netbox/virtualization/forms/model_forms.py:321 +#: dcim/forms/bulk_edit.py:1468 dcim/forms/model_forms.py:1354 +#: ipam/forms/bulk_import.py:178 ipam/forms/filtersets.py:498 +#: ipam/models/vlans.py:84 virtualization/forms/bulk_edit.py:240 +#: virtualization/forms/model_forms.py:321 msgid "VLAN group" msgstr "VLAN-gruppe" -#: netbox/dcim/forms/bulk_edit.py:1476 netbox/dcim/forms/model_forms.py:1360 -#: netbox/dcim/tables/devices.py:579 -#: netbox/virtualization/forms/bulk_edit.py:248 -#: netbox/virtualization/forms/model_forms.py:326 +#: dcim/forms/bulk_edit.py:1476 dcim/forms/model_forms.py:1360 +#: dcim/tables/devices.py:579 virtualization/forms/bulk_edit.py:248 +#: virtualization/forms/model_forms.py:326 msgid "Untagged VLAN" msgstr "Umærket VLAN" -#: netbox/dcim/forms/bulk_edit.py:1484 netbox/dcim/forms/model_forms.py:1369 -#: netbox/dcim/tables/devices.py:585 -#: netbox/virtualization/forms/bulk_edit.py:256 -#: netbox/virtualization/forms/model_forms.py:335 +#: dcim/forms/bulk_edit.py:1484 dcim/forms/model_forms.py:1369 +#: dcim/tables/devices.py:585 virtualization/forms/bulk_edit.py:256 +#: virtualization/forms/model_forms.py:335 msgid "Tagged VLANs" msgstr "Mærkede VLAN'er" -#: netbox/dcim/forms/bulk_edit.py:1494 netbox/dcim/forms/model_forms.py:1341 +#: dcim/forms/bulk_edit.py:1494 dcim/forms/model_forms.py:1341 msgid "Wireless LAN group" msgstr "Trådløs LAN-gruppe" -#: netbox/dcim/forms/bulk_edit.py:1499 netbox/dcim/forms/model_forms.py:1346 -#: netbox/dcim/tables/devices.py:619 netbox/netbox/navigation/menu.py:146 -#: netbox/templates/dcim/interface.html:280 -#: netbox/wireless/tables/wirelesslan.py:24 +#: dcim/forms/bulk_edit.py:1499 dcim/forms/model_forms.py:1346 +#: dcim/tables/devices.py:619 netbox/navigation/menu.py:146 +#: templates/dcim/interface.html:280 wireless/tables/wirelesslan.py:24 msgid "Wireless LANs" msgstr "Trådløse LAN" -#: netbox/dcim/forms/bulk_edit.py:1508 netbox/dcim/forms/filtersets.py:1328 -#: netbox/dcim/forms/model_forms.py:1390 netbox/ipam/forms/bulk_edit.py:285 -#: netbox/ipam/forms/bulk_edit.py:377 netbox/ipam/forms/filtersets.py:169 -#: netbox/templates/dcim/interface.html:122 -#: netbox/templates/ipam/prefix.html:95 -#: netbox/virtualization/forms/model_forms.py:349 +#: dcim/forms/bulk_edit.py:1508 dcim/forms/filtersets.py:1328 +#: dcim/forms/model_forms.py:1390 ipam/forms/bulk_edit.py:286 +#: ipam/forms/bulk_edit.py:378 ipam/forms/filtersets.py:169 +#: templates/dcim/interface.html:122 templates/ipam/prefix.html:95 +#: virtualization/forms/model_forms.py:349 msgid "Addressing" msgstr "Adressering" -#: netbox/dcim/forms/bulk_edit.py:1509 netbox/dcim/forms/filtersets.py:720 -#: netbox/dcim/forms/model_forms.py:1391 -#: netbox/virtualization/forms/model_forms.py:350 +#: dcim/forms/bulk_edit.py:1509 dcim/forms/filtersets.py:720 +#: dcim/forms/model_forms.py:1391 virtualization/forms/model_forms.py:350 msgid "Operation" msgstr "Betjening" -#: netbox/dcim/forms/bulk_edit.py:1510 netbox/dcim/forms/filtersets.py:1329 -#: netbox/dcim/forms/model_forms.py:987 netbox/dcim/forms/model_forms.py:1393 +#: dcim/forms/bulk_edit.py:1510 dcim/forms/filtersets.py:1329 +#: dcim/forms/model_forms.py:987 dcim/forms/model_forms.py:1393 msgid "PoE" msgstr "PoE" -#: netbox/dcim/forms/bulk_edit.py:1511 netbox/dcim/forms/model_forms.py:1392 -#: netbox/templates/dcim/interface.html:99 -#: netbox/virtualization/forms/bulk_edit.py:267 -#: netbox/virtualization/forms/model_forms.py:351 +#: dcim/forms/bulk_edit.py:1511 dcim/forms/model_forms.py:1392 +#: templates/dcim/interface.html:99 virtualization/forms/bulk_edit.py:267 +#: virtualization/forms/model_forms.py:351 msgid "Related Interfaces" msgstr "Relaterede grænseflader" -#: netbox/dcim/forms/bulk_edit.py:1512 netbox/dcim/forms/model_forms.py:1394 -#: netbox/virtualization/forms/bulk_edit.py:268 -#: netbox/virtualization/forms/model_forms.py:352 +#: dcim/forms/bulk_edit.py:1512 dcim/forms/model_forms.py:1394 +#: virtualization/forms/bulk_edit.py:268 +#: virtualization/forms/model_forms.py:352 msgid "802.1Q Switching" msgstr "802.1Q-skift" -#: netbox/dcim/forms/bulk_edit.py:1574 netbox/dcim/forms/bulk_edit.py:1576 +#: dcim/forms/bulk_edit.py:1574 dcim/forms/bulk_edit.py:1576 msgid "Interface mode must be specified to assign VLANs" msgstr "Interfacetilstand skal specificeres for at tildele VLAN'er" -#: netbox/dcim/forms/bulk_edit.py:1581 netbox/dcim/forms/common.py:50 +#: dcim/forms/bulk_edit.py:1581 dcim/forms/common.py:50 msgid "An access interface cannot have tagged VLANs assigned." msgstr "En adgangsgrænseflade kan ikke have tildelt taggede VLAN'er." -#: netbox/dcim/forms/bulk_import.py:64 +#: dcim/forms/bulk_import.py:64 msgid "Name of parent region" msgstr "Navn på overordnet region" -#: netbox/dcim/forms/bulk_import.py:78 +#: dcim/forms/bulk_import.py:78 msgid "Name of parent site group" msgstr "Navn på overordnet områdegruppe" -#: netbox/dcim/forms/bulk_import.py:97 +#: dcim/forms/bulk_import.py:97 msgid "Assigned region" msgstr "Tildelt region" -#: netbox/dcim/forms/bulk_import.py:104 netbox/tenancy/forms/bulk_import.py:44 -#: netbox/tenancy/forms/bulk_import.py:85 -#: netbox/wireless/forms/bulk_import.py:40 +#: dcim/forms/bulk_import.py:104 tenancy/forms/bulk_import.py:44 +#: tenancy/forms/bulk_import.py:85 wireless/forms/bulk_import.py:40 msgid "Assigned group" msgstr "Tildelt gruppe" -#: netbox/dcim/forms/bulk_import.py:123 +#: dcim/forms/bulk_import.py:123 msgid "available options" msgstr "tilgængelige muligheder" -#: netbox/dcim/forms/bulk_import.py:134 netbox/dcim/forms/bulk_import.py:543 -#: netbox/dcim/forms/bulk_import.py:1342 netbox/ipam/forms/bulk_import.py:175 -#: netbox/ipam/forms/bulk_import.py:433 -#: netbox/virtualization/forms/bulk_import.py:63 -#: netbox/virtualization/forms/bulk_import.py:89 +#: dcim/forms/bulk_import.py:134 dcim/forms/bulk_import.py:543 +#: dcim/forms/bulk_import.py:1342 ipam/forms/bulk_import.py:175 +#: ipam/forms/bulk_import.py:433 virtualization/forms/bulk_import.py:63 +#: virtualization/forms/bulk_import.py:89 msgid "Assigned site" msgstr "Tildelt område" -#: netbox/dcim/forms/bulk_import.py:141 +#: dcim/forms/bulk_import.py:141 msgid "Parent location" msgstr "Forældreplacering" -#: netbox/dcim/forms/bulk_import.py:143 +#: dcim/forms/bulk_import.py:143 msgid "Location not found." msgstr "Placering ikke fundet." -#: netbox/dcim/forms/bulk_import.py:185 +#: dcim/forms/bulk_import.py:185 msgid "The manufacturer of this rack type" msgstr "Producenten af denne racktype" -#: netbox/dcim/forms/bulk_import.py:196 +#: dcim/forms/bulk_import.py:196 msgid "The lowest-numbered position in the rack" msgstr "Den laveste nummererede position i racket" -#: netbox/dcim/forms/bulk_import.py:201 netbox/dcim/forms/bulk_import.py:268 +#: dcim/forms/bulk_import.py:201 dcim/forms/bulk_import.py:268 msgid "Rail-to-rail width (in inches)" msgstr "Skinne-til-skinne-bredde (i tommer)" -#: netbox/dcim/forms/bulk_import.py:207 netbox/dcim/forms/bulk_import.py:274 +#: dcim/forms/bulk_import.py:207 dcim/forms/bulk_import.py:274 msgid "Unit for outer dimensions" msgstr "Enhed til udvendige mål" -#: netbox/dcim/forms/bulk_import.py:213 netbox/dcim/forms/bulk_import.py:286 +#: dcim/forms/bulk_import.py:213 dcim/forms/bulk_import.py:286 msgid "Unit for rack weights" msgstr "Enhed til rackvægte" -#: netbox/dcim/forms/bulk_import.py:245 +#: dcim/forms/bulk_import.py:245 msgid "Name of assigned tenant" msgstr "Navn på tildelt lejer" -#: netbox/dcim/forms/bulk_import.py:257 +#: dcim/forms/bulk_import.py:257 msgid "Name of assigned role" msgstr "Navn på tildelt rolle" -#: netbox/dcim/forms/bulk_import.py:280 netbox/dcim/forms/bulk_import.py:413 -#: netbox/dcim/forms/bulk_import.py:583 +#: dcim/forms/bulk_import.py:280 dcim/forms/bulk_import.py:413 +#: dcim/forms/bulk_import.py:583 msgid "Airflow direction" msgstr "Luftstrømsretning" -#: netbox/dcim/forms/bulk_import.py:312 +#: dcim/forms/bulk_import.py:312 msgid "Parent site" msgstr "Overordnet område" -#: netbox/dcim/forms/bulk_import.py:319 netbox/dcim/forms/bulk_import.py:1355 +#: dcim/forms/bulk_import.py:319 dcim/forms/bulk_import.py:1355 msgid "Rack's location (if any)" msgstr "Rackets placering (hvis nogen)" -#: netbox/dcim/forms/bulk_import.py:328 netbox/dcim/forms/model_forms.py:311 -#: netbox/dcim/tables/racks.py:222 -#: netbox/templates/dcim/rackreservation.html:12 -#: netbox/templates/dcim/rackreservation.html:45 +#: dcim/forms/bulk_import.py:328 dcim/forms/model_forms.py:311 +#: dcim/tables/racks.py:222 templates/dcim/rackreservation.html:12 +#: templates/dcim/rackreservation.html:45 msgid "Units" msgstr "Enheder" -#: netbox/dcim/forms/bulk_import.py:331 +#: dcim/forms/bulk_import.py:331 msgid "Comma-separated list of individual unit numbers" msgstr "Kommasepareret liste over individuelle enhedsnumre" -#: netbox/dcim/forms/bulk_import.py:374 +#: dcim/forms/bulk_import.py:374 msgid "The manufacturer which produces this device type" msgstr "Producenten, der fremstiller denne enhedstype" -#: netbox/dcim/forms/bulk_import.py:381 +#: dcim/forms/bulk_import.py:381 msgid "The default platform for devices of this type (optional)" msgstr "Standardplatformen for enheder af denne type (valgfrit)" -#: netbox/dcim/forms/bulk_import.py:386 +#: dcim/forms/bulk_import.py:386 msgid "Device weight" msgstr "Enhedsvægt" -#: netbox/dcim/forms/bulk_import.py:392 +#: dcim/forms/bulk_import.py:392 msgid "Unit for device weight" msgstr "Enhed til enhedens vægt" -#: netbox/dcim/forms/bulk_import.py:418 +#: dcim/forms/bulk_import.py:418 msgid "Module weight" msgstr "Modulvægt" -#: netbox/dcim/forms/bulk_import.py:424 +#: dcim/forms/bulk_import.py:424 msgid "Unit for module weight" msgstr "Enhed til modulvægt" -#: netbox/dcim/forms/bulk_import.py:454 +#: dcim/forms/bulk_import.py:454 msgid "Limit platform assignments to this manufacturer" msgstr "Begræns platformstildelinger til denne producent" -#: netbox/dcim/forms/bulk_import.py:476 netbox/dcim/forms/bulk_import.py:1425 -#: netbox/tenancy/forms/bulk_import.py:106 +#: dcim/forms/bulk_import.py:476 dcim/forms/bulk_import.py:1425 +#: tenancy/forms/bulk_import.py:106 msgid "Assigned role" msgstr "Tildelt rolle" -#: netbox/dcim/forms/bulk_import.py:489 +#: dcim/forms/bulk_import.py:489 msgid "Device type manufacturer" msgstr "Producent af enhedstype" -#: netbox/dcim/forms/bulk_import.py:495 +#: dcim/forms/bulk_import.py:495 msgid "Device type model" msgstr "Enhedstypemodel" -#: netbox/dcim/forms/bulk_import.py:502 -#: netbox/virtualization/forms/bulk_import.py:126 +#: dcim/forms/bulk_import.py:502 virtualization/forms/bulk_import.py:126 msgid "Assigned platform" msgstr "Tildelt platform" -#: netbox/dcim/forms/bulk_import.py:510 netbox/dcim/forms/bulk_import.py:514 -#: netbox/dcim/forms/model_forms.py:536 +#: dcim/forms/bulk_import.py:510 dcim/forms/bulk_import.py:514 +#: dcim/forms/model_forms.py:536 msgid "Virtual chassis" msgstr "Virtuelt kabinet" -#: netbox/dcim/forms/bulk_import.py:517 netbox/dcim/forms/filtersets.py:728 -#: netbox/dcim/forms/filtersets.py:898 netbox/dcim/forms/model_forms.py:522 -#: netbox/dcim/tables/devices.py:202 netbox/extras/filtersets.py:596 -#: netbox/extras/forms/filtersets.py:322 netbox/ipam/forms/bulk_edit.py:482 -#: netbox/ipam/forms/filtersets.py:415 netbox/ipam/forms/filtersets.py:447 -#: netbox/templates/dcim/device.html:239 -#: netbox/templates/virtualization/cluster.html:10 -#: netbox/templates/virtualization/virtualmachine.html:92 -#: netbox/templates/virtualization/virtualmachine.html:101 -#: netbox/virtualization/filtersets.py:157 -#: netbox/virtualization/filtersets.py:277 -#: netbox/virtualization/forms/bulk_edit.py:129 -#: netbox/virtualization/forms/bulk_import.py:92 -#: netbox/virtualization/forms/filtersets.py:99 -#: netbox/virtualization/forms/filtersets.py:123 -#: netbox/virtualization/forms/filtersets.py:204 -#: netbox/virtualization/forms/model_forms.py:79 -#: netbox/virtualization/forms/model_forms.py:176 -#: netbox/virtualization/tables/virtualmachines.py:67 +#: dcim/forms/bulk_import.py:517 dcim/forms/filtersets.py:728 +#: dcim/forms/filtersets.py:898 dcim/forms/model_forms.py:522 +#: dcim/tables/devices.py:202 extras/filtersets.py:596 +#: extras/forms/filtersets.py:322 ipam/forms/filtersets.py:415 +#: ipam/forms/filtersets.py:447 templates/dcim/device.html:239 +#: templates/virtualization/cluster.html:10 +#: templates/virtualization/virtualmachine.html:92 +#: templates/virtualization/virtualmachine.html:101 +#: virtualization/filtersets.py:157 virtualization/filtersets.py:277 +#: virtualization/forms/bulk_edit.py:129 +#: virtualization/forms/bulk_import.py:92 +#: virtualization/forms/filtersets.py:99 +#: virtualization/forms/filtersets.py:123 +#: virtualization/forms/filtersets.py:204 +#: virtualization/forms/model_forms.py:79 +#: virtualization/forms/model_forms.py:176 +#: virtualization/tables/virtualmachines.py:67 msgid "Cluster" msgstr "Klynge" -#: netbox/dcim/forms/bulk_import.py:521 +#: dcim/forms/bulk_import.py:521 msgid "Virtualization cluster" msgstr "Virtualiseringsklynge" -#: netbox/dcim/forms/bulk_import.py:550 +#: dcim/forms/bulk_import.py:550 msgid "Assigned location (if any)" msgstr "Tildelt placering (hvis nogen)" -#: netbox/dcim/forms/bulk_import.py:557 +#: dcim/forms/bulk_import.py:557 msgid "Assigned rack (if any)" msgstr "Tildelt rack (hvis et sådant findes)" -#: netbox/dcim/forms/bulk_import.py:560 +#: dcim/forms/bulk_import.py:560 msgid "Face" msgstr "Ansigt" -#: netbox/dcim/forms/bulk_import.py:563 +#: dcim/forms/bulk_import.py:563 msgid "Mounted rack face" msgstr "Monteret rackflade" -#: netbox/dcim/forms/bulk_import.py:570 +#: dcim/forms/bulk_import.py:570 msgid "Parent device (for child devices)" msgstr "Overordnet enhed (til underordnede enheder)" -#: netbox/dcim/forms/bulk_import.py:573 +#: dcim/forms/bulk_import.py:573 msgid "Device bay" msgstr "Enhedsplads" -#: netbox/dcim/forms/bulk_import.py:577 +#: dcim/forms/bulk_import.py:577 msgid "Device bay in which this device is installed (for child devices)" msgstr "Enhedsplads, hvor denne enhed er installeret (til børneenheder)" -#: netbox/dcim/forms/bulk_import.py:644 +#: dcim/forms/bulk_import.py:644 msgid "The device in which this module is installed" msgstr "Enheden, hvor dette modul er installeret" -#: netbox/dcim/forms/bulk_import.py:647 netbox/dcim/forms/model_forms.py:640 +#: dcim/forms/bulk_import.py:647 dcim/forms/model_forms.py:640 msgid "Module bay" msgstr "Modulplads" -#: netbox/dcim/forms/bulk_import.py:650 +#: dcim/forms/bulk_import.py:650 msgid "The module bay in which this module is installed" msgstr "Modulrummet, hvor dette modul er installeret" -#: netbox/dcim/forms/bulk_import.py:656 +#: dcim/forms/bulk_import.py:656 msgid "The type of module" msgstr "Typen af modul" -#: netbox/dcim/forms/bulk_import.py:664 netbox/dcim/forms/model_forms.py:656 +#: dcim/forms/bulk_import.py:664 dcim/forms/model_forms.py:656 msgid "Replicate components" msgstr "Replikerer komponenter" -#: netbox/dcim/forms/bulk_import.py:666 +#: dcim/forms/bulk_import.py:666 msgid "" "Automatically populate components associated with this module type (enabled " "by default)" @@ -4332,272 +3939,265 @@ msgstr "" "Udfyld automatisk komponenter, der er knyttet til denne modultype (aktiveret" " som standard)" -#: netbox/dcim/forms/bulk_import.py:669 netbox/dcim/forms/model_forms.py:662 +#: dcim/forms/bulk_import.py:669 dcim/forms/model_forms.py:662 msgid "Adopt components" msgstr "Vedtage komponenter" -#: netbox/dcim/forms/bulk_import.py:671 netbox/dcim/forms/model_forms.py:665 +#: dcim/forms/bulk_import.py:671 dcim/forms/model_forms.py:665 msgid "Adopt already existing components" msgstr "Vedtage allerede eksisterende komponenter" -#: netbox/dcim/forms/bulk_import.py:711 netbox/dcim/forms/bulk_import.py:737 -#: netbox/dcim/forms/bulk_import.py:763 +#: dcim/forms/bulk_import.py:711 dcim/forms/bulk_import.py:737 +#: dcim/forms/bulk_import.py:763 msgid "Port type" msgstr "Porttype" -#: netbox/dcim/forms/bulk_import.py:719 netbox/dcim/forms/bulk_import.py:745 +#: dcim/forms/bulk_import.py:719 dcim/forms/bulk_import.py:745 msgid "Port speed in bps" msgstr "Porthastighed i bps" -#: netbox/dcim/forms/bulk_import.py:783 +#: dcim/forms/bulk_import.py:783 msgid "Outlet type" msgstr "Udtagstype" -#: netbox/dcim/forms/bulk_import.py:790 +#: dcim/forms/bulk_import.py:790 msgid "Local power port which feeds this outlet" msgstr "Lokalt strømstik, der forsyner dette strømudtag" -#: netbox/dcim/forms/bulk_import.py:796 +#: dcim/forms/bulk_import.py:796 msgid "Electrical phase (for three-phase circuits)" msgstr "Elektrisk fase (til trefasede kredsløb)" -#: netbox/dcim/forms/bulk_import.py:837 netbox/dcim/forms/model_forms.py:1316 -#: netbox/virtualization/forms/bulk_import.py:155 -#: netbox/virtualization/forms/model_forms.py:305 +#: dcim/forms/bulk_import.py:837 dcim/forms/model_forms.py:1316 +#: virtualization/forms/bulk_import.py:155 +#: virtualization/forms/model_forms.py:305 msgid "Parent interface" msgstr "Forældregrænseflade" -#: netbox/dcim/forms/bulk_import.py:844 netbox/dcim/forms/model_forms.py:1324 -#: netbox/virtualization/forms/bulk_import.py:162 -#: netbox/virtualization/forms/model_forms.py:313 +#: dcim/forms/bulk_import.py:844 dcim/forms/model_forms.py:1324 +#: virtualization/forms/bulk_import.py:162 +#: virtualization/forms/model_forms.py:313 msgid "Bridged interface" msgstr "Brobaseret grænseflade" -#: netbox/dcim/forms/bulk_import.py:847 +#: dcim/forms/bulk_import.py:847 msgid "Lag" msgstr "Forsinkelse" -#: netbox/dcim/forms/bulk_import.py:851 +#: dcim/forms/bulk_import.py:851 msgid "Parent LAG interface" msgstr "Overordnet LAG-grænseflade" -#: netbox/dcim/forms/bulk_import.py:854 +#: dcim/forms/bulk_import.py:854 msgid "Vdcs" msgstr "Vdcs" -#: netbox/dcim/forms/bulk_import.py:859 +#: dcim/forms/bulk_import.py:859 msgid "VDC names separated by commas, encased with double quotes. Example:" msgstr "" "VDC-navne adskilt af kommaer, indkapslet med dobbelte anførselstegn. " "Eksempel:" -#: netbox/dcim/forms/bulk_import.py:865 +#: dcim/forms/bulk_import.py:865 msgid "Physical medium" msgstr "Fysisk medium" -#: netbox/dcim/forms/bulk_import.py:868 netbox/dcim/forms/filtersets.py:1365 +#: dcim/forms/bulk_import.py:868 dcim/forms/filtersets.py:1365 msgid "Duplex" msgstr "Duplex" -#: netbox/dcim/forms/bulk_import.py:873 +#: dcim/forms/bulk_import.py:873 msgid "Poe mode" msgstr "Poe-tilstand" -#: netbox/dcim/forms/bulk_import.py:879 +#: dcim/forms/bulk_import.py:879 msgid "Poe type" msgstr "Poe-type" -#: netbox/dcim/forms/bulk_import.py:888 -#: netbox/virtualization/forms/bulk_import.py:168 +#: dcim/forms/bulk_import.py:888 virtualization/forms/bulk_import.py:168 msgid "IEEE 802.1Q operational mode (for L2 interfaces)" msgstr "IEEE 802.1Q driftstilstand (til L2-grænseflader)" -#: netbox/dcim/forms/bulk_import.py:895 netbox/ipam/forms/bulk_import.py:161 -#: netbox/ipam/forms/bulk_import.py:247 netbox/ipam/forms/bulk_import.py:283 -#: netbox/ipam/forms/filtersets.py:201 netbox/ipam/forms/filtersets.py:277 -#: netbox/ipam/forms/filtersets.py:336 -#: netbox/virtualization/forms/bulk_import.py:175 +#: dcim/forms/bulk_import.py:895 ipam/forms/bulk_import.py:161 +#: ipam/forms/bulk_import.py:247 ipam/forms/bulk_import.py:283 +#: ipam/forms/filtersets.py:201 ipam/forms/filtersets.py:277 +#: ipam/forms/filtersets.py:336 virtualization/forms/bulk_import.py:175 msgid "Assigned VRF" msgstr "Tildelt VRF" -#: netbox/dcim/forms/bulk_import.py:898 +#: dcim/forms/bulk_import.py:898 msgid "Rf role" msgstr "Rf-rolle" -#: netbox/dcim/forms/bulk_import.py:901 +#: dcim/forms/bulk_import.py:901 msgid "Wireless role (AP/station)" msgstr "Trådløs rolle (AP/station)" -#: netbox/dcim/forms/bulk_import.py:937 +#: dcim/forms/bulk_import.py:937 #, python-brace-format msgid "VDC {vdc} is not assigned to device {device}" msgstr "VDC {vdc} er ikke tildelt enheden {device}" -#: netbox/dcim/forms/bulk_import.py:951 netbox/dcim/forms/model_forms.py:1000 -#: netbox/dcim/forms/model_forms.py:1575 -#: netbox/dcim/forms/object_import.py:117 +#: dcim/forms/bulk_import.py:951 dcim/forms/model_forms.py:1000 +#: dcim/forms/model_forms.py:1575 dcim/forms/object_import.py:117 msgid "Rear port" msgstr "Bageste port" -#: netbox/dcim/forms/bulk_import.py:954 +#: dcim/forms/bulk_import.py:954 msgid "Corresponding rear port" msgstr "Tilsvarende bagport" -#: netbox/dcim/forms/bulk_import.py:959 netbox/dcim/forms/bulk_import.py:1000 -#: netbox/dcim/forms/bulk_import.py:1216 +#: dcim/forms/bulk_import.py:959 dcim/forms/bulk_import.py:1000 +#: dcim/forms/bulk_import.py:1216 msgid "Physical medium classification" msgstr "Klassificering af fysisk medium" -#: netbox/dcim/forms/bulk_import.py:1028 netbox/dcim/tables/devices.py:822 +#: dcim/forms/bulk_import.py:1028 dcim/tables/devices.py:822 msgid "Installed device" msgstr "Installeret enhed" -#: netbox/dcim/forms/bulk_import.py:1032 +#: dcim/forms/bulk_import.py:1032 msgid "Child device installed within this bay" msgstr "Børneenhed installeret i denne bugt" -#: netbox/dcim/forms/bulk_import.py:1034 +#: dcim/forms/bulk_import.py:1034 msgid "Child device not found." msgstr "Børneenhed blev ikke fundet." -#: netbox/dcim/forms/bulk_import.py:1092 +#: dcim/forms/bulk_import.py:1092 msgid "Parent inventory item" msgstr "Overordnet beholdningspost" -#: netbox/dcim/forms/bulk_import.py:1095 +#: dcim/forms/bulk_import.py:1095 msgid "Component type" msgstr "Komponenttype" -#: netbox/dcim/forms/bulk_import.py:1099 +#: dcim/forms/bulk_import.py:1099 msgid "Component Type" msgstr "Komponenttype" -#: netbox/dcim/forms/bulk_import.py:1102 +#: dcim/forms/bulk_import.py:1102 msgid "Compnent name" msgstr "Komponentnavn" -#: netbox/dcim/forms/bulk_import.py:1104 +#: dcim/forms/bulk_import.py:1104 msgid "Component Name" msgstr "Komponentnavn" -#: netbox/dcim/forms/bulk_import.py:1146 +#: dcim/forms/bulk_import.py:1146 #, python-brace-format msgid "Component not found: {device} - {component_name}" msgstr "Komponent ikke fundet: {device} - {component_name}" -#: netbox/dcim/forms/bulk_import.py:1171 +#: dcim/forms/bulk_import.py:1171 msgid "Side A device" msgstr "Side A-enhed" -#: netbox/dcim/forms/bulk_import.py:1174 netbox/dcim/forms/bulk_import.py:1192 +#: dcim/forms/bulk_import.py:1174 dcim/forms/bulk_import.py:1192 msgid "Device name" msgstr "Enhedsnavn" -#: netbox/dcim/forms/bulk_import.py:1177 +#: dcim/forms/bulk_import.py:1177 msgid "Side A type" msgstr "Side A type" -#: netbox/dcim/forms/bulk_import.py:1180 netbox/dcim/forms/bulk_import.py:1198 +#: dcim/forms/bulk_import.py:1180 dcim/forms/bulk_import.py:1198 msgid "Termination type" msgstr "Afslutningstype" -#: netbox/dcim/forms/bulk_import.py:1183 +#: dcim/forms/bulk_import.py:1183 msgid "Side A name" msgstr "Side A navn" -#: netbox/dcim/forms/bulk_import.py:1184 netbox/dcim/forms/bulk_import.py:1202 +#: dcim/forms/bulk_import.py:1184 dcim/forms/bulk_import.py:1202 msgid "Termination name" msgstr "Opsigelsesnavn" -#: netbox/dcim/forms/bulk_import.py:1189 +#: dcim/forms/bulk_import.py:1189 msgid "Side B device" msgstr "Side B-enhed" -#: netbox/dcim/forms/bulk_import.py:1195 +#: dcim/forms/bulk_import.py:1195 msgid "Side B type" msgstr "Side B type" -#: netbox/dcim/forms/bulk_import.py:1201 +#: dcim/forms/bulk_import.py:1201 msgid "Side B name" msgstr "Side B navn" -#: netbox/dcim/forms/bulk_import.py:1210 -#: netbox/wireless/forms/bulk_import.py:86 +#: dcim/forms/bulk_import.py:1210 wireless/forms/bulk_import.py:86 msgid "Connection status" msgstr "Forbindelsesstatus" -#: netbox/dcim/forms/bulk_import.py:1262 +#: dcim/forms/bulk_import.py:1262 #, python-brace-format msgid "Side {side_upper}: {device} {termination_object} is already connected" msgstr "" "Side {side_upper}: {device} {termination_object} er allerede tilsluttet" -#: netbox/dcim/forms/bulk_import.py:1268 +#: dcim/forms/bulk_import.py:1268 #, python-brace-format msgid "{side_upper} side termination not found: {device} {name}" msgstr "{side_upper} sideafslutning ikke fundet: {device} {name}" -#: netbox/dcim/forms/bulk_import.py:1293 netbox/dcim/forms/model_forms.py:785 -#: netbox/dcim/tables/devices.py:1027 netbox/templates/dcim/device.html:132 -#: netbox/templates/dcim/virtualchassis.html:27 -#: netbox/templates/dcim/virtualchassis.html:67 +#: dcim/forms/bulk_import.py:1293 dcim/forms/model_forms.py:785 +#: dcim/tables/devices.py:1027 templates/dcim/device.html:132 +#: templates/dcim/virtualchassis.html:27 templates/dcim/virtualchassis.html:67 msgid "Master" msgstr "Mester" -#: netbox/dcim/forms/bulk_import.py:1297 +#: dcim/forms/bulk_import.py:1297 msgid "Master device" msgstr "Hovedenhed" -#: netbox/dcim/forms/bulk_import.py:1314 +#: dcim/forms/bulk_import.py:1314 msgid "Name of parent site" msgstr "Navn på overordnet område" -#: netbox/dcim/forms/bulk_import.py:1348 +#: dcim/forms/bulk_import.py:1348 msgid "Upstream power panel" msgstr "Hoved strømpanel" -#: netbox/dcim/forms/bulk_import.py:1378 +#: dcim/forms/bulk_import.py:1378 msgid "Primary or redundant" msgstr "Primær eller redundant" -#: netbox/dcim/forms/bulk_import.py:1383 +#: dcim/forms/bulk_import.py:1383 msgid "Supply type (AC/DC)" msgstr "Forsyningstype (AC/DC)" -#: netbox/dcim/forms/bulk_import.py:1388 +#: dcim/forms/bulk_import.py:1388 msgid "Single or three-phase" msgstr "Enkelt- eller trefaset" -#: netbox/dcim/forms/bulk_import.py:1439 netbox/dcim/forms/model_forms.py:1670 -#: netbox/templates/dcim/device.html:190 -#: netbox/templates/dcim/virtualdevicecontext.html:30 -#: netbox/templates/virtualization/virtualmachine.html:52 +#: dcim/forms/bulk_import.py:1439 dcim/forms/model_forms.py:1670 +#: templates/dcim/device.html:190 templates/dcim/virtualdevicecontext.html:30 +#: templates/virtualization/virtualmachine.html:52 msgid "Primary IPv4" msgstr "Primær IPv4" -#: netbox/dcim/forms/bulk_import.py:1443 +#: dcim/forms/bulk_import.py:1443 msgid "IPv4 address with mask, e.g. 1.2.3.4/24" msgstr "IP-adresse med maske, fx 1.2.3.4/24" -#: netbox/dcim/forms/bulk_import.py:1446 netbox/dcim/forms/model_forms.py:1679 -#: netbox/templates/dcim/device.html:206 -#: netbox/templates/dcim/virtualdevicecontext.html:41 -#: netbox/templates/virtualization/virtualmachine.html:68 +#: dcim/forms/bulk_import.py:1446 dcim/forms/model_forms.py:1679 +#: templates/dcim/device.html:206 templates/dcim/virtualdevicecontext.html:41 +#: templates/virtualization/virtualmachine.html:68 msgid "Primary IPv6" msgstr "Primær IPv6" -#: netbox/dcim/forms/bulk_import.py:1450 +#: dcim/forms/bulk_import.py:1450 msgid "IPv6 address with prefix length, e.g. 2001:db8::1/64" msgstr "IPv6-adresse med præfix-længde, fx 2001:db8::1/64" -#: netbox/dcim/forms/common.py:24 netbox/dcim/models/device_components.py:527 -#: netbox/templates/dcim/interface.html:57 -#: netbox/templates/virtualization/vminterface.html:55 -#: netbox/virtualization/forms/bulk_edit.py:225 +#: dcim/forms/common.py:24 dcim/models/device_components.py:527 +#: templates/dcim/interface.html:57 +#: templates/virtualization/vminterface.html:55 +#: virtualization/forms/bulk_edit.py:225 msgid "MTU" msgstr "MTU" -#: netbox/dcim/forms/common.py:65 +#: dcim/forms/common.py:65 #, python-brace-format msgid "" "The tagged VLANs ({vlans}) must belong to the same site as the interface's " @@ -4606,7 +4206,7 @@ msgstr "" "De mærkede VLAN'er ({vlans}) skal tilhøre det samme område som grænsefladens" " overordnede enhed/VM, eller de skal være globale" -#: netbox/dcim/forms/common.py:126 +#: dcim/forms/common.py:126 msgid "" "Cannot install module with placeholder values in a module bay with no " "position defined." @@ -4614,7 +4214,7 @@ msgstr "" "Kan ikke installere modul med pladsholderværdier i en modulplads uden " "defineret position." -#: netbox/dcim/forms/common.py:131 +#: dcim/forms/common.py:131 #, python-brace-format msgid "" "Cannot install module with placeholder values in a module bay tree {level} " @@ -4623,202 +4223,187 @@ msgstr "" "Kan ikke installere modul med pladsholderværdier i et modullaurbærtræ " "{level} i træet, men {tokens} pladsholdere givet." -#: netbox/dcim/forms/common.py:144 +#: dcim/forms/common.py:144 #, python-brace-format msgid "Cannot adopt {model} {name} as it already belongs to a module" msgstr "Kan ikke adoptere {model} {name} da det allerede hører til et modul" -#: netbox/dcim/forms/common.py:153 +#: dcim/forms/common.py:153 #, python-brace-format msgid "A {model} named {name} already exists" msgstr "EN {model} som hedder {name} findes allerede" -#: netbox/dcim/forms/connections.py:49 netbox/dcim/forms/model_forms.py:738 -#: netbox/dcim/tables/power.py:66 -#: netbox/templates/dcim/inc/cable_termination.html:37 -#: netbox/templates/dcim/powerfeed.html:24 -#: netbox/templates/dcim/powerpanel.html:19 -#: netbox/templates/dcim/trace/powerpanel.html:4 +#: dcim/forms/connections.py:49 dcim/forms/model_forms.py:738 +#: dcim/tables/power.py:66 templates/dcim/inc/cable_termination.html:37 +#: templates/dcim/powerfeed.html:24 templates/dcim/powerpanel.html:19 +#: templates/dcim/trace/powerpanel.html:4 msgid "Power Panel" msgstr "Strømpanel" -#: netbox/dcim/forms/connections.py:58 netbox/dcim/forms/model_forms.py:765 -#: netbox/templates/dcim/powerfeed.html:21 -#: netbox/templates/dcim/powerport.html:80 +#: dcim/forms/connections.py:58 dcim/forms/model_forms.py:765 +#: templates/dcim/powerfeed.html:21 templates/dcim/powerport.html:80 msgid "Power Feed" msgstr "Strømforsyning" -#: netbox/dcim/forms/connections.py:81 +#: dcim/forms/connections.py:81 msgid "Side" msgstr "Side" -#: netbox/dcim/forms/filtersets.py:136 netbox/dcim/tables/devices.py:295 +#: dcim/forms/filtersets.py:136 dcim/tables/devices.py:295 msgid "Device Status" msgstr "Enhedsstatus" -#: netbox/dcim/forms/filtersets.py:149 +#: dcim/forms/filtersets.py:149 msgid "Parent region" msgstr "Overordnet region" -#: netbox/dcim/forms/filtersets.py:163 netbox/tenancy/forms/bulk_import.py:28 -#: netbox/tenancy/forms/bulk_import.py:62 -#: netbox/tenancy/forms/filtersets.py:33 netbox/tenancy/forms/filtersets.py:62 -#: netbox/wireless/forms/bulk_import.py:25 -#: netbox/wireless/forms/filtersets.py:25 +#: dcim/forms/filtersets.py:163 tenancy/forms/bulk_import.py:28 +#: tenancy/forms/bulk_import.py:62 tenancy/forms/filtersets.py:33 +#: tenancy/forms/filtersets.py:62 wireless/forms/bulk_import.py:25 +#: wireless/forms/filtersets.py:25 msgid "Parent group" msgstr "Forældregruppe" -#: netbox/dcim/forms/filtersets.py:242 netbox/templates/dcim/location.html:58 -#: netbox/templates/dcim/site.html:56 +#: dcim/forms/filtersets.py:242 templates/dcim/location.html:58 +#: templates/dcim/site.html:56 msgid "Facility" msgstr "Faciliteterne" -#: netbox/dcim/forms/filtersets.py:380 +#: dcim/forms/filtersets.py:380 msgid "Rack type" msgstr "Racktype" -#: netbox/dcim/forms/filtersets.py:397 +#: dcim/forms/filtersets.py:397 msgid "Function" msgstr "Funktion" -#: netbox/dcim/forms/filtersets.py:483 netbox/dcim/forms/model_forms.py:373 -#: netbox/templates/inc/panels/image_attachments.html:6 +#: dcim/forms/filtersets.py:483 dcim/forms/model_forms.py:373 +#: templates/inc/panels/image_attachments.html:6 msgid "Images" msgstr "Billeder" -#: netbox/dcim/forms/filtersets.py:486 netbox/dcim/forms/filtersets.py:611 -#: netbox/dcim/forms/filtersets.py:726 +#: dcim/forms/filtersets.py:486 dcim/forms/filtersets.py:611 +#: dcim/forms/filtersets.py:726 msgid "Components" msgstr "Komponenter" -#: netbox/dcim/forms/filtersets.py:506 +#: dcim/forms/filtersets.py:506 msgid "Subdevice role" msgstr "Underenhedsrolle" -#: netbox/dcim/forms/filtersets.py:790 netbox/dcim/tables/racks.py:54 -#: netbox/templates/dcim/racktype.html:20 +#: dcim/forms/filtersets.py:790 dcim/tables/racks.py:54 +#: templates/dcim/racktype.html:20 msgid "Model" msgstr "Modellen" -#: netbox/dcim/forms/filtersets.py:834 +#: dcim/forms/filtersets.py:834 msgid "Has an OOB IP" msgstr "Har en OOB IP" -#: netbox/dcim/forms/filtersets.py:841 +#: dcim/forms/filtersets.py:841 msgid "Virtual chassis member" msgstr "Virtuelt chassismedlem" -#: netbox/dcim/forms/filtersets.py:890 +#: dcim/forms/filtersets.py:890 msgid "Has virtual device contexts" msgstr "Har virtuelle enhedskontekster" -#: netbox/dcim/forms/filtersets.py:903 netbox/extras/filtersets.py:585 -#: netbox/ipam/forms/bulk_edit.py:479 netbox/ipam/forms/filtersets.py:452 -#: netbox/virtualization/forms/filtersets.py:112 +#: dcim/forms/filtersets.py:903 extras/filtersets.py:585 +#: ipam/forms/filtersets.py:452 virtualization/forms/filtersets.py:112 msgid "Cluster group" msgstr "Klyngegruppe" -#: netbox/dcim/forms/filtersets.py:1210 +#: dcim/forms/filtersets.py:1210 msgid "Cabled" msgstr "Kablet" -#: netbox/dcim/forms/filtersets.py:1217 +#: dcim/forms/filtersets.py:1217 msgid "Occupied" msgstr "Besat" -#: netbox/dcim/forms/filtersets.py:1244 netbox/dcim/forms/filtersets.py:1269 -#: netbox/dcim/forms/filtersets.py:1293 netbox/dcim/forms/filtersets.py:1313 -#: netbox/dcim/forms/filtersets.py:1336 netbox/dcim/tables/devices.py:364 -#: netbox/templates/dcim/consoleport.html:55 -#: netbox/templates/dcim/consoleserverport.html:55 -#: netbox/templates/dcim/frontport.html:69 -#: netbox/templates/dcim/interface.html:140 -#: netbox/templates/dcim/powerfeed.html:110 -#: netbox/templates/dcim/poweroutlet.html:59 -#: netbox/templates/dcim/powerport.html:59 -#: netbox/templates/dcim/rearport.html:65 +#: dcim/forms/filtersets.py:1244 dcim/forms/filtersets.py:1269 +#: dcim/forms/filtersets.py:1293 dcim/forms/filtersets.py:1313 +#: dcim/forms/filtersets.py:1336 dcim/tables/devices.py:364 +#: templates/dcim/consoleport.html:55 templates/dcim/consoleserverport.html:55 +#: templates/dcim/frontport.html:69 templates/dcim/interface.html:140 +#: templates/dcim/powerfeed.html:110 templates/dcim/poweroutlet.html:59 +#: templates/dcim/powerport.html:59 templates/dcim/rearport.html:65 msgid "Connection" msgstr "Forbindelse" -#: netbox/dcim/forms/filtersets.py:1348 netbox/extras/forms/bulk_edit.py:326 -#: netbox/extras/forms/bulk_import.py:247 -#: netbox/extras/forms/filtersets.py:464 -#: netbox/extras/forms/model_forms.py:675 netbox/extras/tables/tables.py:579 -#: netbox/templates/extras/journalentry.html:30 +#: dcim/forms/filtersets.py:1348 extras/forms/bulk_edit.py:326 +#: extras/forms/bulk_import.py:247 extras/forms/filtersets.py:464 +#: extras/forms/model_forms.py:675 extras/tables/tables.py:579 +#: templates/extras/journalentry.html:30 msgid "Kind" msgstr "Venlig" -#: netbox/dcim/forms/filtersets.py:1377 +#: dcim/forms/filtersets.py:1377 msgid "Mgmt only" msgstr "Kun Mgmt" -#: netbox/dcim/forms/filtersets.py:1389 netbox/dcim/forms/model_forms.py:1383 -#: netbox/dcim/models/device_components.py:629 -#: netbox/templates/dcim/interface.html:129 +#: dcim/forms/filtersets.py:1389 dcim/forms/model_forms.py:1383 +#: dcim/models/device_components.py:629 templates/dcim/interface.html:129 msgid "WWN" msgstr "WWN" -#: netbox/dcim/forms/filtersets.py:1409 +#: dcim/forms/filtersets.py:1409 msgid "Wireless channel" msgstr "Trådløs kanal" -#: netbox/dcim/forms/filtersets.py:1413 +#: dcim/forms/filtersets.py:1413 msgid "Channel frequency (MHz)" msgstr "Kanalfrekvens (MHz)" -#: netbox/dcim/forms/filtersets.py:1417 +#: dcim/forms/filtersets.py:1417 msgid "Channel width (MHz)" msgstr "Kanalbredde (MHz)" -#: netbox/dcim/forms/filtersets.py:1421 -#: netbox/templates/dcim/interface.html:85 +#: dcim/forms/filtersets.py:1421 templates/dcim/interface.html:85 msgid "Transmit power (dBm)" msgstr "Sendeeffekt (dBm)" -#: netbox/dcim/forms/filtersets.py:1446 netbox/dcim/forms/filtersets.py:1471 -#: netbox/dcim/tables/devices.py:327 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:50 -#: netbox/templates/dcim/inc/connection_endpoints.html:4 -#: netbox/templates/dcim/rearport.html:73 -#: netbox/templates/dcim/trace/cable.html:7 +#: dcim/forms/filtersets.py:1446 dcim/forms/filtersets.py:1471 +#: dcim/tables/devices.py:327 templates/dcim/cable.html:12 +#: templates/dcim/cable_trace.html:46 templates/dcim/frontport.html:77 +#: templates/dcim/htmx/cable_edit.html:50 +#: templates/dcim/inc/connection_endpoints.html:4 +#: templates/dcim/rearport.html:73 templates/dcim/trace/cable.html:7 msgid "Cable" msgstr "Kabel" -#: netbox/dcim/forms/filtersets.py:1550 netbox/dcim/tables/devices.py:949 +#: dcim/forms/filtersets.py:1550 dcim/tables/devices.py:949 msgid "Discovered" msgstr "Opdaget" -#: netbox/dcim/forms/formsets.py:20 +#: dcim/forms/formsets.py:20 #, python-brace-format msgid "A virtual chassis member already exists in position {vc_position}." msgstr "Et virtuelt chassiselement findes allerede på plads {vc_position}." -#: netbox/dcim/forms/model_forms.py:140 +#: dcim/forms/model_forms.py:140 msgid "Contact Info" msgstr "Kontaktoplysninger" -#: netbox/dcim/forms/model_forms.py:195 netbox/templates/dcim/rackrole.html:19 +#: dcim/forms/model_forms.py:195 templates/dcim/rackrole.html:19 msgid "Rack Role" msgstr "Rackrolle" -#: netbox/dcim/forms/model_forms.py:212 netbox/dcim/forms/model_forms.py:362 -#: netbox/dcim/forms/model_forms.py:446 -#: netbox/utilities/forms/fields/fields.py:47 +#: dcim/forms/model_forms.py:212 dcim/forms/model_forms.py:362 +#: dcim/forms/model_forms.py:446 utilities/forms/fields/fields.py:47 msgid "Slug" msgstr "Slug" -#: netbox/dcim/forms/model_forms.py:259 +#: dcim/forms/model_forms.py:259 msgid "Select a pre-defined rack type, or set physical characteristics below." msgstr "" "Vælg en foruddefineret racktype, eller angiv fysiske egenskaber nedenfor." -#: netbox/dcim/forms/model_forms.py:265 +#: dcim/forms/model_forms.py:265 msgid "Inventory Control" msgstr "Lagerstyring" -#: netbox/dcim/forms/model_forms.py:313 +#: dcim/forms/model_forms.py:313 msgid "" "Comma-separated list of numeric unit IDs. A range may be specified using a " "hyphen." @@ -4826,162 +4411,145 @@ msgstr "" "Kommasepareret liste over numeriske enheds-id'er. Et interval kan angives " "ved hjælp af en bindestreg." -#: netbox/dcim/forms/model_forms.py:322 netbox/dcim/tables/racks.py:202 +#: dcim/forms/model_forms.py:322 dcim/tables/racks.py:202 msgid "Reservation" msgstr "Reservation" -#: netbox/dcim/forms/model_forms.py:423 -#: netbox/templates/dcim/devicerole.html:23 +#: dcim/forms/model_forms.py:423 templates/dcim/devicerole.html:23 msgid "Device Role" msgstr "Enhedsrolle" -#: netbox/dcim/forms/model_forms.py:490 netbox/dcim/models/devices.py:644 +#: dcim/forms/model_forms.py:490 dcim/models/devices.py:644 msgid "The lowest-numbered unit occupied by the device" msgstr "Den lavest nummererede enhed, der er besat af enheden" -#: netbox/dcim/forms/model_forms.py:547 +#: dcim/forms/model_forms.py:547 msgid "The position in the virtual chassis this device is identified by" msgstr "" "Placeringen i det virtuelle chassis, som denne enhed identificeres ved" -#: netbox/dcim/forms/model_forms.py:552 +#: dcim/forms/model_forms.py:552 msgid "The priority of the device in the virtual chassis" msgstr "Enhedens prioritet i det virtuelle chassis" -#: netbox/dcim/forms/model_forms.py:659 +#: dcim/forms/model_forms.py:659 msgid "Automatically populate components associated with this module type" msgstr "Udfyld automatisk komponenter, der er knyttet til denne modultype" -#: netbox/dcim/forms/model_forms.py:767 +#: dcim/forms/model_forms.py:767 msgid "Characteristics" msgstr "Karakteristika" -#: netbox/dcim/forms/model_forms.py:1087 +#: dcim/forms/model_forms.py:1087 msgid "Console port template" msgstr "Konsolportskabelon" -#: netbox/dcim/forms/model_forms.py:1095 +#: dcim/forms/model_forms.py:1095 msgid "Console server port template" msgstr "Konsolserverportskabelon" -#: netbox/dcim/forms/model_forms.py:1103 +#: dcim/forms/model_forms.py:1103 msgid "Front port template" msgstr "Frontportskabelon" -#: netbox/dcim/forms/model_forms.py:1111 +#: dcim/forms/model_forms.py:1111 msgid "Interface template" msgstr "Grænsefladeskabelon" -#: netbox/dcim/forms/model_forms.py:1119 +#: dcim/forms/model_forms.py:1119 msgid "Power outlet template" msgstr "Skabelon til strømudtag" -#: netbox/dcim/forms/model_forms.py:1127 +#: dcim/forms/model_forms.py:1127 msgid "Power port template" msgstr "Strømstikskabelon" -#: netbox/dcim/forms/model_forms.py:1135 +#: dcim/forms/model_forms.py:1135 msgid "Rear port template" msgstr "Bagport skabelon" -#: netbox/dcim/forms/model_forms.py:1144 netbox/dcim/forms/model_forms.py:1388 -#: netbox/dcim/forms/model_forms.py:1551 netbox/dcim/forms/model_forms.py:1583 -#: netbox/dcim/tables/connections.py:65 netbox/ipam/forms/bulk_import.py:318 -#: netbox/ipam/forms/model_forms.py:280 netbox/ipam/forms/model_forms.py:289 -#: netbox/ipam/tables/fhrp.py:64 netbox/ipam/tables/ip.py:372 -#: netbox/ipam/tables/vlans.py:169 -#: netbox/templates/circuits/inc/circuit_termination_fields.html:51 -#: netbox/templates/dcim/frontport.html:106 -#: netbox/templates/dcim/interface.html:27 -#: netbox/templates/dcim/interface.html:184 -#: netbox/templates/dcim/interface.html:310 -#: netbox/templates/dcim/rearport.html:102 -#: netbox/templates/virtualization/vminterface.html:18 -#: netbox/templates/vpn/tunneltermination.html:31 -#: netbox/templates/wireless/inc/wirelesslink_interface.html:10 -#: netbox/templates/wireless/wirelesslink.html:10 -#: netbox/templates/wireless/wirelesslink.html:55 -#: netbox/virtualization/forms/model_forms.py:348 -#: netbox/vpn/forms/bulk_import.py:297 netbox/vpn/forms/model_forms.py:436 -#: netbox/vpn/forms/model_forms.py:445 -#: netbox/wireless/forms/model_forms.py:113 -#: netbox/wireless/forms/model_forms.py:155 +#: dcim/forms/model_forms.py:1144 dcim/forms/model_forms.py:1388 +#: dcim/forms/model_forms.py:1551 dcim/forms/model_forms.py:1583 +#: dcim/tables/connections.py:65 ipam/forms/bulk_import.py:318 +#: ipam/forms/model_forms.py:280 ipam/forms/model_forms.py:289 +#: ipam/tables/fhrp.py:64 ipam/tables/ip.py:372 ipam/tables/vlans.py:169 +#: templates/circuits/inc/circuit_termination_fields.html:51 +#: templates/dcim/frontport.html:106 templates/dcim/interface.html:27 +#: templates/dcim/interface.html:184 templates/dcim/interface.html:310 +#: templates/dcim/rearport.html:102 +#: templates/virtualization/vminterface.html:18 +#: templates/vpn/tunneltermination.html:31 +#: templates/wireless/inc/wirelesslink_interface.html:10 +#: templates/wireless/wirelesslink.html:10 +#: templates/wireless/wirelesslink.html:55 +#: virtualization/forms/model_forms.py:348 vpn/forms/bulk_import.py:297 +#: vpn/forms/model_forms.py:436 vpn/forms/model_forms.py:445 +#: wireless/forms/model_forms.py:113 wireless/forms/model_forms.py:155 msgid "Interface" msgstr "Grænseflade" -#: netbox/dcim/forms/model_forms.py:1145 netbox/dcim/forms/model_forms.py:1584 -#: netbox/dcim/tables/connections.py:27 -#: netbox/templates/dcim/consoleport.html:17 -#: netbox/templates/dcim/consoleserverport.html:74 -#: netbox/templates/dcim/frontport.html:112 +#: dcim/forms/model_forms.py:1145 dcim/forms/model_forms.py:1584 +#: dcim/tables/connections.py:27 templates/dcim/consoleport.html:17 +#: templates/dcim/consoleserverport.html:74 templates/dcim/frontport.html:112 msgid "Console Port" msgstr "Konsolport" -#: netbox/dcim/forms/model_forms.py:1146 netbox/dcim/forms/model_forms.py:1585 -#: netbox/templates/dcim/consoleport.html:73 -#: netbox/templates/dcim/consoleserverport.html:17 -#: netbox/templates/dcim/frontport.html:109 +#: dcim/forms/model_forms.py:1146 dcim/forms/model_forms.py:1585 +#: templates/dcim/consoleport.html:73 templates/dcim/consoleserverport.html:17 +#: templates/dcim/frontport.html:109 msgid "Console Server Port" msgstr "Konsolserverport" -#: netbox/dcim/forms/model_forms.py:1147 netbox/dcim/forms/model_forms.py:1586 -#: netbox/templates/circuits/inc/circuit_termination_fields.html:52 -#: netbox/templates/dcim/consoleport.html:76 -#: netbox/templates/dcim/consoleserverport.html:77 -#: netbox/templates/dcim/frontport.html:17 -#: netbox/templates/dcim/frontport.html:115 -#: netbox/templates/dcim/interface.html:187 -#: netbox/templates/dcim/rearport.html:105 +#: dcim/forms/model_forms.py:1147 dcim/forms/model_forms.py:1586 +#: templates/circuits/inc/circuit_termination_fields.html:52 +#: templates/dcim/consoleport.html:76 templates/dcim/consoleserverport.html:77 +#: templates/dcim/frontport.html:17 templates/dcim/frontport.html:115 +#: templates/dcim/interface.html:187 templates/dcim/rearport.html:105 msgid "Front Port" msgstr "Frontport" -#: netbox/dcim/forms/model_forms.py:1148 netbox/dcim/forms/model_forms.py:1587 -#: netbox/dcim/tables/devices.py:710 -#: netbox/templates/circuits/inc/circuit_termination_fields.html:53 -#: netbox/templates/dcim/consoleport.html:79 -#: netbox/templates/dcim/consoleserverport.html:80 -#: netbox/templates/dcim/frontport.html:50 -#: netbox/templates/dcim/frontport.html:118 -#: netbox/templates/dcim/interface.html:190 -#: netbox/templates/dcim/rearport.html:17 -#: netbox/templates/dcim/rearport.html:108 +#: dcim/forms/model_forms.py:1148 dcim/forms/model_forms.py:1587 +#: dcim/tables/devices.py:710 +#: templates/circuits/inc/circuit_termination_fields.html:53 +#: templates/dcim/consoleport.html:79 templates/dcim/consoleserverport.html:80 +#: templates/dcim/frontport.html:50 templates/dcim/frontport.html:118 +#: templates/dcim/interface.html:190 templates/dcim/rearport.html:17 +#: templates/dcim/rearport.html:108 msgid "Rear Port" msgstr "Bageste port" -#: netbox/dcim/forms/model_forms.py:1149 netbox/dcim/forms/model_forms.py:1588 -#: netbox/dcim/tables/connections.py:46 netbox/dcim/tables/devices.py:512 -#: netbox/templates/dcim/poweroutlet.html:44 -#: netbox/templates/dcim/powerport.html:17 +#: dcim/forms/model_forms.py:1149 dcim/forms/model_forms.py:1588 +#: dcim/tables/connections.py:46 dcim/tables/devices.py:512 +#: templates/dcim/poweroutlet.html:44 templates/dcim/powerport.html:17 msgid "Power Port" msgstr "Strømstik" -#: netbox/dcim/forms/model_forms.py:1150 netbox/dcim/forms/model_forms.py:1589 -#: netbox/templates/dcim/poweroutlet.html:17 -#: netbox/templates/dcim/powerport.html:77 +#: dcim/forms/model_forms.py:1150 dcim/forms/model_forms.py:1589 +#: templates/dcim/poweroutlet.html:17 templates/dcim/powerport.html:77 msgid "Power Outlet" msgstr "Strømudtag" -#: netbox/dcim/forms/model_forms.py:1152 netbox/dcim/forms/model_forms.py:1591 +#: dcim/forms/model_forms.py:1152 dcim/forms/model_forms.py:1591 msgid "Component Assignment" msgstr "Komponenttildeling" -#: netbox/dcim/forms/model_forms.py:1195 netbox/dcim/forms/model_forms.py:1638 +#: dcim/forms/model_forms.py:1195 dcim/forms/model_forms.py:1638 msgid "An InventoryItem can only be assigned to a single component." msgstr "En InventoryItem kan kun tildeles til en enkelt komponent." -#: netbox/dcim/forms/model_forms.py:1332 +#: dcim/forms/model_forms.py:1332 msgid "LAG interface" msgstr "LAG-grænseflade" -#: netbox/dcim/forms/model_forms.py:1355 +#: dcim/forms/model_forms.py:1355 msgid "Filter VLANs available for assignment by group." msgstr "Filtrer VLAN'er, der er tilgængelige til tildeling efter gruppe." -#: netbox/dcim/forms/model_forms.py:1484 +#: dcim/forms/model_forms.py:1484 msgid "Child Device" msgstr "Børneenhed" -#: netbox/dcim/forms/model_forms.py:1485 +#: dcim/forms/model_forms.py:1485 msgid "" "Child devices must first be created and assigned to the site and rack of the" " parent device." @@ -4989,35 +4557,32 @@ msgstr "" "Underordnede enheder skal først oprettes og tildeles til den overordnede " "enheds område og rack." -#: netbox/dcim/forms/model_forms.py:1527 +#: dcim/forms/model_forms.py:1527 msgid "Console port" msgstr "Konsolport" -#: netbox/dcim/forms/model_forms.py:1535 +#: dcim/forms/model_forms.py:1535 msgid "Console server port" msgstr "Konsolserverport" -#: netbox/dcim/forms/model_forms.py:1543 +#: dcim/forms/model_forms.py:1543 msgid "Front port" msgstr "Frontport" -#: netbox/dcim/forms/model_forms.py:1559 +#: dcim/forms/model_forms.py:1559 msgid "Power outlet" msgstr "Strømudtag" -#: netbox/dcim/forms/model_forms.py:1579 -#: netbox/templates/dcim/inventoryitem.html:17 +#: dcim/forms/model_forms.py:1579 templates/dcim/inventoryitem.html:17 msgid "Inventory Item" msgstr "Lagergenstand" -#: netbox/dcim/forms/model_forms.py:1652 -#: netbox/templates/dcim/inventoryitemrole.html:15 +#: dcim/forms/model_forms.py:1652 templates/dcim/inventoryitemrole.html:15 msgid "Inventory Item Role" msgstr "Lagervarrolle" -#: netbox/dcim/forms/object_create.py:48 -#: netbox/dcim/forms/object_create.py:199 -#: netbox/dcim/forms/object_create.py:355 +#: dcim/forms/object_create.py:48 dcim/forms/object_create.py:199 +#: dcim/forms/object_create.py:355 msgid "" "Alphanumeric ranges are supported. (Must match the number of objects being " "created.)" @@ -5025,7 +4590,7 @@ msgstr "" "Alfanumeriske intervaller understøttes. (Skal svare til antallet af " "objekter, der oprettes.)" -#: netbox/dcim/forms/object_create.py:68 +#: dcim/forms/object_create.py:68 #, python-brace-format msgid "" "The provided pattern specifies {value_count} values, but {pattern_count} are" @@ -5034,17 +4599,16 @@ msgstr "" "Det medfølgende mønster specificerer {value_count} Værdier, men " "{pattern_count} forventes." -#: netbox/dcim/forms/object_create.py:110 -#: netbox/dcim/forms/object_create.py:271 netbox/dcim/tables/devices.py:252 +#: dcim/forms/object_create.py:110 dcim/forms/object_create.py:271 +#: dcim/tables/devices.py:252 msgid "Rear ports" msgstr "Bageste porte" -#: netbox/dcim/forms/object_create.py:111 -#: netbox/dcim/forms/object_create.py:272 +#: dcim/forms/object_create.py:111 dcim/forms/object_create.py:272 msgid "Select one rear port assignment for each front port being created." msgstr "Vælg en bagporttildeling for hver frontport, der oprettes." -#: netbox/dcim/forms/object_create.py:164 +#: dcim/forms/object_create.py:164 #, python-brace-format msgid "" "The number of front port templates to be created ({frontport_count}) must " @@ -5053,7 +4617,7 @@ msgstr "" "Antallet af frontportskabeloner, der skal oprettes ({frontport_count}) skal " "matche det valgte antal bageste portpositioner ({rearport_count})." -#: netbox/dcim/forms/object_create.py:251 +#: dcim/forms/object_create.py:251 #, python-brace-format msgid "" "The string {module} will be replaced with the position of the " @@ -5062,7 +4626,7 @@ msgstr "" "Strengen {module} vil blive erstattet med placeringen af det " "tildelte modul, hvis det er tilfældet." -#: netbox/dcim/forms/object_create.py:320 +#: dcim/forms/object_create.py:320 #, python-brace-format msgid "" "The number of front ports to be created ({frontport_count}) must match the " @@ -5071,87 +4635,84 @@ msgstr "" "Antallet af frontporte, der skal oprettes ({frontport_count}) skal matche " "det valgte antal bageste portpositioner ({rearport_count})." -#: netbox/dcim/forms/object_create.py:409 netbox/dcim/tables/devices.py:1033 -#: netbox/ipam/tables/fhrp.py:31 netbox/templates/dcim/virtualchassis.html:53 -#: netbox/templates/dcim/virtualchassis_edit.html:47 -#: netbox/templates/ipam/fhrpgroup.html:38 +#: dcim/forms/object_create.py:409 dcim/tables/devices.py:1033 +#: ipam/tables/fhrp.py:31 templates/dcim/virtualchassis.html:53 +#: templates/dcim/virtualchassis_edit.html:47 templates/ipam/fhrpgroup.html:38 msgid "Members" msgstr "Medlemmer" -#: netbox/dcim/forms/object_create.py:418 +#: dcim/forms/object_create.py:418 msgid "Initial position" msgstr "Udgangsposition" -#: netbox/dcim/forms/object_create.py:421 +#: dcim/forms/object_create.py:421 msgid "" "Position of the first member device. Increases by one for each additional " "member." msgstr "" "Placering af den første medlemsenhed. Stiges med en for hvert ekstra medlem." -#: netbox/dcim/forms/object_create.py:435 +#: dcim/forms/object_create.py:435 msgid "A position must be specified for the first VC member." msgstr "En stilling skal specificeres for det første VC-medlem." -#: netbox/dcim/models/cables.py:62 -#: netbox/dcim/models/device_component_templates.py:55 -#: netbox/dcim/models/device_components.py:62 -#: netbox/extras/models/customfields.py:111 +#: dcim/models/cables.py:62 dcim/models/device_component_templates.py:55 +#: dcim/models/device_components.py:62 extras/models/customfields.py:111 msgid "label" msgstr "etiket" -#: netbox/dcim/models/cables.py:71 +#: dcim/models/cables.py:71 msgid "length" msgstr "længde" -#: netbox/dcim/models/cables.py:78 +#: dcim/models/cables.py:78 msgid "length unit" msgstr "længdeenhed" -#: netbox/dcim/models/cables.py:95 +#: dcim/models/cables.py:95 msgid "cable" msgstr "kabel" -#: netbox/dcim/models/cables.py:96 +#: dcim/models/cables.py:96 msgid "cables" msgstr "ledninger" -#: netbox/dcim/models/cables.py:165 +#: dcim/models/cables.py:165 msgid "Must specify a unit when setting a cable length" msgstr "Skal angive en enhed, når du indstiller en kabellængde" -#: netbox/dcim/models/cables.py:168 +#: dcim/models/cables.py:168 msgid "Must define A and B terminations when creating a new cable." msgstr "Skal definere A- og B-afslutninger, når du opretter et nyt kabel." -#: netbox/dcim/models/cables.py:175 +#: dcim/models/cables.py:175 msgid "Cannot connect different termination types to same end of cable." msgstr "" "Kan ikke tilslutte forskellige termineringstyper til samme ende af kablet." -#: netbox/dcim/models/cables.py:183 +#: dcim/models/cables.py:183 #, python-brace-format msgid "Incompatible termination types: {type_a} and {type_b}" msgstr "Inkompatible opsigelsestyper: {type_a} og {type_b}" -#: netbox/dcim/models/cables.py:193 +#: dcim/models/cables.py:193 msgid "A and B terminations cannot connect to the same object." msgstr "" "A- og B-terminationer kan ikke oprette forbindelse til det samme objekt." -#: netbox/dcim/models/cables.py:260 netbox/ipam/models/asns.py:37 +#: dcim/models/cables.py:260 ipam/models/asns.py:37 msgid "end" msgstr "slutning" -#: netbox/dcim/models/cables.py:313 +#: dcim/models/cables.py:313 msgid "cable termination" msgstr "kabelafslutning" -#: netbox/dcim/models/cables.py:314 +#: dcim/models/cables.py:314 msgid "cable terminations" msgstr "kabelafslutninger" -#: netbox/dcim/models/cables.py:333 +#: dcim/models/cables.py:333 #, python-brace-format msgid "" "Duplicate termination found for {app_label}.{model} {termination_id}: cable " @@ -5160,38 +4721,38 @@ msgstr "" "Duplikat opsigelse fundet for {app_label}.{model} {termination_id}: kabel " "{cable_pk}" -#: netbox/dcim/models/cables.py:343 +#: dcim/models/cables.py:343 #, python-brace-format msgid "Cables cannot be terminated to {type_display} interfaces" msgstr "Kabler kan ikke afsluttes til {type_display} grænseflader" -#: netbox/dcim/models/cables.py:350 +#: dcim/models/cables.py:350 msgid "Circuit terminations attached to a provider network may not be cabled." msgstr "" "Kredsløbsterminationer, der er knyttet til et leverandørnetværk, er muligvis" " ikke kablet." -#: netbox/dcim/models/cables.py:448 netbox/extras/models/configs.py:50 +#: dcim/models/cables.py:448 extras/models/configs.py:50 msgid "is active" msgstr "er aktiv" -#: netbox/dcim/models/cables.py:452 +#: dcim/models/cables.py:452 msgid "is complete" msgstr "er komplet" -#: netbox/dcim/models/cables.py:456 +#: dcim/models/cables.py:456 msgid "is split" msgstr "er splittet" -#: netbox/dcim/models/cables.py:464 +#: dcim/models/cables.py:464 msgid "cable path" msgstr "kabelbane" -#: netbox/dcim/models/cables.py:465 +#: dcim/models/cables.py:465 msgid "cable paths" msgstr "kabelstier" -#: netbox/dcim/models/device_component_templates.py:46 +#: dcim/models/device_component_templates.py:46 #, python-brace-format msgid "" "{module} is accepted as a substitution for the module bay position when " @@ -5200,16 +4761,16 @@ msgstr "" "{module} accepteres som erstatning for modulpladsens position, når den er " "knyttet til en modultype." -#: netbox/dcim/models/device_component_templates.py:58 -#: netbox/dcim/models/device_components.py:65 +#: dcim/models/device_component_templates.py:58 +#: dcim/models/device_components.py:65 msgid "Physical label" msgstr "Fysisk etiket" -#: netbox/dcim/models/device_component_templates.py:103 +#: dcim/models/device_component_templates.py:103 msgid "Component templates cannot be moved to a different device type." msgstr "Komponentskabeloner kan ikke flyttes til en anden enhedstype." -#: netbox/dcim/models/device_component_templates.py:154 +#: dcim/models/device_component_templates.py:154 msgid "" "A component template cannot be associated with both a device type and a " "module type." @@ -5217,7 +4778,7 @@ msgstr "" "En komponentskabelon kan ikke knyttes til både en enhedstype og en " "modultype." -#: netbox/dcim/models/device_component_templates.py:158 +#: dcim/models/device_component_templates.py:158 msgid "" "A component template must be associated with either a device type or a " "module type." @@ -5225,134 +4786,134 @@ msgstr "" "En komponentskabelon skal være tilknyttet enten en enhedstype eller en " "modultype." -#: netbox/dcim/models/device_component_templates.py:212 +#: dcim/models/device_component_templates.py:212 msgid "console port template" msgstr "skabelon til konsolport" -#: netbox/dcim/models/device_component_templates.py:213 +#: dcim/models/device_component_templates.py:213 msgid "console port templates" msgstr "konsolportskabeloner" -#: netbox/dcim/models/device_component_templates.py:246 +#: dcim/models/device_component_templates.py:246 msgid "console server port template" msgstr "skabelon til konsolserverport" -#: netbox/dcim/models/device_component_templates.py:247 +#: dcim/models/device_component_templates.py:247 msgid "console server port templates" msgstr "skabeloner til konsolserverportskabeloner" -#: netbox/dcim/models/device_component_templates.py:278 -#: netbox/dcim/models/device_components.py:352 +#: dcim/models/device_component_templates.py:278 +#: dcim/models/device_components.py:352 msgid "maximum draw" msgstr "maksimal trækning" -#: netbox/dcim/models/device_component_templates.py:285 -#: netbox/dcim/models/device_components.py:359 +#: dcim/models/device_component_templates.py:285 +#: dcim/models/device_components.py:359 msgid "allocated draw" msgstr "tildelt lodtrækning" -#: netbox/dcim/models/device_component_templates.py:295 +#: dcim/models/device_component_templates.py:295 msgid "power port template" msgstr "strømstikskabelon" -#: netbox/dcim/models/device_component_templates.py:296 +#: dcim/models/device_component_templates.py:296 msgid "power port templates" msgstr "strømstikskabeloner" -#: netbox/dcim/models/device_component_templates.py:315 -#: netbox/dcim/models/device_components.py:382 +#: dcim/models/device_component_templates.py:315 +#: dcim/models/device_components.py:382 #, python-brace-format msgid "Allocated draw cannot exceed the maximum draw ({maximum_draw}W)." msgstr "" "Tildelt lodtrækning kan ikke overstige den maksimale trækning " "({maximum_draw}W)." -#: netbox/dcim/models/device_component_templates.py:347 -#: netbox/dcim/models/device_components.py:477 +#: dcim/models/device_component_templates.py:347 +#: dcim/models/device_components.py:477 msgid "feed leg" msgstr "foderben" -#: netbox/dcim/models/device_component_templates.py:351 -#: netbox/dcim/models/device_components.py:481 +#: dcim/models/device_component_templates.py:351 +#: dcim/models/device_components.py:481 msgid "Phase (for three-phase feeds)" msgstr "Fase (til trefasefoedninger)" -#: netbox/dcim/models/device_component_templates.py:357 +#: dcim/models/device_component_templates.py:357 msgid "power outlet template" msgstr "Strømudtag skabelon" -#: netbox/dcim/models/device_component_templates.py:358 +#: dcim/models/device_component_templates.py:358 msgid "power outlet templates" msgstr "strømudtagsskabeloner" -#: netbox/dcim/models/device_component_templates.py:367 +#: dcim/models/device_component_templates.py:367 #, python-brace-format msgid "Parent power port ({power_port}) must belong to the same device type" msgstr "Hovedstrømstik ({power_port}) skal tilhøre samme enhedstype" -#: netbox/dcim/models/device_component_templates.py:371 +#: dcim/models/device_component_templates.py:371 #, python-brace-format msgid "Parent power port ({power_port}) must belong to the same module type" msgstr "Hovedstrømstik ({power_port}) skal tilhøre samme modultype" -#: netbox/dcim/models/device_component_templates.py:423 -#: netbox/dcim/models/device_components.py:611 +#: dcim/models/device_component_templates.py:423 +#: dcim/models/device_components.py:611 msgid "management only" msgstr "Kun ledelse" -#: netbox/dcim/models/device_component_templates.py:431 -#: netbox/dcim/models/device_components.py:550 +#: dcim/models/device_component_templates.py:431 +#: dcim/models/device_components.py:550 msgid "bridge interface" msgstr "brogrænseflade" -#: netbox/dcim/models/device_component_templates.py:449 -#: netbox/dcim/models/device_components.py:636 +#: dcim/models/device_component_templates.py:449 +#: dcim/models/device_components.py:636 msgid "wireless role" msgstr "trådløs rolle" -#: netbox/dcim/models/device_component_templates.py:455 +#: dcim/models/device_component_templates.py:455 msgid "interface template" msgstr "grænseflade skabelon" -#: netbox/dcim/models/device_component_templates.py:456 +#: dcim/models/device_component_templates.py:456 msgid "interface templates" msgstr "interface skabeloner" -#: netbox/dcim/models/device_component_templates.py:463 -#: netbox/dcim/models/device_components.py:804 -#: netbox/virtualization/models/virtualmachines.py:405 +#: dcim/models/device_component_templates.py:463 +#: dcim/models/device_components.py:804 +#: virtualization/models/virtualmachines.py:405 msgid "An interface cannot be bridged to itself." msgstr "En grænseflade kan ikke kobles til sig selv." -#: netbox/dcim/models/device_component_templates.py:466 +#: dcim/models/device_component_templates.py:466 #, python-brace-format msgid "Bridge interface ({bridge}) must belong to the same device type" msgstr "Brogrænseflade ({bridge}) skal tilhøre samme enhedstype" -#: netbox/dcim/models/device_component_templates.py:470 +#: dcim/models/device_component_templates.py:470 #, python-brace-format msgid "Bridge interface ({bridge}) must belong to the same module type" msgstr "Brogrænseflade ({bridge}) skal tilhøre samme modultype" -#: netbox/dcim/models/device_component_templates.py:526 -#: netbox/dcim/models/device_components.py:984 +#: dcim/models/device_component_templates.py:526 +#: dcim/models/device_components.py:984 msgid "rear port position" msgstr "bageste portposition" -#: netbox/dcim/models/device_component_templates.py:551 +#: dcim/models/device_component_templates.py:551 msgid "front port template" msgstr "skabelon til frontport" -#: netbox/dcim/models/device_component_templates.py:552 +#: dcim/models/device_component_templates.py:552 msgid "front port templates" msgstr "frontportskabeloner" -#: netbox/dcim/models/device_component_templates.py:562 +#: dcim/models/device_component_templates.py:562 #, python-brace-format msgid "Rear port ({name}) must belong to the same device type" msgstr "Bageste port ({name}) skal tilhøre samme enhedstype" -#: netbox/dcim/models/device_component_templates.py:568 +#: dcim/models/device_component_templates.py:568 #, python-brace-format msgid "" "Invalid rear port position ({position}); rear port {name} has only {count} " @@ -5361,47 +4922,47 @@ msgstr "" "Ugyldig bageste portposition ({position}); bageste port {name} har kun " "{count} positioner" -#: netbox/dcim/models/device_component_templates.py:621 -#: netbox/dcim/models/device_components.py:1053 +#: dcim/models/device_component_templates.py:621 +#: dcim/models/device_components.py:1053 msgid "positions" msgstr "positioner" -#: netbox/dcim/models/device_component_templates.py:632 +#: dcim/models/device_component_templates.py:632 msgid "rear port template" msgstr "bagport skabelon" -#: netbox/dcim/models/device_component_templates.py:633 +#: dcim/models/device_component_templates.py:633 msgid "rear port templates" msgstr "bageste portskabeloner" -#: netbox/dcim/models/device_component_templates.py:662 -#: netbox/dcim/models/device_components.py:1103 +#: dcim/models/device_component_templates.py:662 +#: dcim/models/device_components.py:1103 msgid "position" msgstr "position" -#: netbox/dcim/models/device_component_templates.py:665 -#: netbox/dcim/models/device_components.py:1106 +#: dcim/models/device_component_templates.py:665 +#: dcim/models/device_components.py:1106 msgid "Identifier to reference when renaming installed components" msgstr "" "Identifikator, der skal refereres til, når installerede komponenter omdøbes" -#: netbox/dcim/models/device_component_templates.py:671 +#: dcim/models/device_component_templates.py:671 msgid "module bay template" msgstr "modulbugtsskabelon" -#: netbox/dcim/models/device_component_templates.py:672 +#: dcim/models/device_component_templates.py:672 msgid "module bay templates" msgstr "modulbugtsskabeloner" -#: netbox/dcim/models/device_component_templates.py:699 +#: dcim/models/device_component_templates.py:699 msgid "device bay template" msgstr "skabelon til enhedsplads" -#: netbox/dcim/models/device_component_templates.py:700 +#: dcim/models/device_component_templates.py:700 msgid "device bay templates" msgstr "skabeloner til enhedsplads" -#: netbox/dcim/models/device_component_templates.py:713 +#: dcim/models/device_component_templates.py:713 #, python-brace-format msgid "" "Subdevice role of device type ({device_type}) must be set to \"parent\" to " @@ -5410,205 +4971,200 @@ msgstr "" "Underenhedsrolle for enhedstypen ({device_type}) skal indstilles til " "„forælder“ for at tillade enhedspladser." -#: netbox/dcim/models/device_component_templates.py:768 -#: netbox/dcim/models/device_components.py:1262 +#: dcim/models/device_component_templates.py:768 +#: dcim/models/device_components.py:1262 msgid "part ID" msgstr "del-ID" -#: netbox/dcim/models/device_component_templates.py:770 -#: netbox/dcim/models/device_components.py:1264 +#: dcim/models/device_component_templates.py:770 +#: dcim/models/device_components.py:1264 msgid "Manufacturer-assigned part identifier" msgstr "Producenttildelt artikel-id" -#: netbox/dcim/models/device_component_templates.py:787 +#: dcim/models/device_component_templates.py:787 msgid "inventory item template" msgstr "lagervareskabelon" -#: netbox/dcim/models/device_component_templates.py:788 +#: dcim/models/device_component_templates.py:788 msgid "inventory item templates" msgstr "lagervareskabeloner" -#: netbox/dcim/models/device_components.py:105 +#: dcim/models/device_components.py:105 msgid "Components cannot be moved to a different device." msgstr "Komponenter kan ikke flyttes til en anden enhed." -#: netbox/dcim/models/device_components.py:144 +#: dcim/models/device_components.py:144 msgid "cable end" msgstr "kabelende" -#: netbox/dcim/models/device_components.py:150 +#: dcim/models/device_components.py:150 msgid "mark connected" msgstr "mærke tilsluttet" -#: netbox/dcim/models/device_components.py:152 +#: dcim/models/device_components.py:152 msgid "Treat as if a cable is connected" msgstr "Behandl som om et kabel er tilsluttet" -#: netbox/dcim/models/device_components.py:170 +#: dcim/models/device_components.py:170 msgid "Must specify cable end (A or B) when attaching a cable." msgstr "Du skal angive kabelenden (A eller B), når du tilslutter et kabel." -#: netbox/dcim/models/device_components.py:174 +#: dcim/models/device_components.py:174 msgid "Cable end must not be set without a cable." msgstr "Kabelenden må ikke indstilles uden et kabel." -#: netbox/dcim/models/device_components.py:178 +#: dcim/models/device_components.py:178 msgid "Cannot mark as connected with a cable attached." msgstr "Kan ikke markere som tilsluttet med et tilsluttet kabel." -#: netbox/dcim/models/device_components.py:202 +#: dcim/models/device_components.py:202 #, python-brace-format msgid "{class_name} models must declare a parent_object property" msgstr "{class_name} modeller skal erklære en parent_object egenskab" -#: netbox/dcim/models/device_components.py:287 -#: netbox/dcim/models/device_components.py:316 -#: netbox/dcim/models/device_components.py:349 -#: netbox/dcim/models/device_components.py:467 +#: dcim/models/device_components.py:287 dcim/models/device_components.py:316 +#: dcim/models/device_components.py:349 dcim/models/device_components.py:467 msgid "Physical port type" msgstr "Fysisk porttype" -#: netbox/dcim/models/device_components.py:290 -#: netbox/dcim/models/device_components.py:319 +#: dcim/models/device_components.py:290 dcim/models/device_components.py:319 msgid "speed" msgstr "hastighed" -#: netbox/dcim/models/device_components.py:294 -#: netbox/dcim/models/device_components.py:323 +#: dcim/models/device_components.py:294 dcim/models/device_components.py:323 msgid "Port speed in bits per second" msgstr "Porthastighed i bit pr. sekund" -#: netbox/dcim/models/device_components.py:300 +#: dcim/models/device_components.py:300 msgid "console port" msgstr "konsolport" -#: netbox/dcim/models/device_components.py:301 +#: dcim/models/device_components.py:301 msgid "console ports" msgstr "konsolporte" -#: netbox/dcim/models/device_components.py:329 +#: dcim/models/device_components.py:329 msgid "console server port" msgstr "Konsolserverport" -#: netbox/dcim/models/device_components.py:330 +#: dcim/models/device_components.py:330 msgid "console server ports" msgstr "konsolserverporte" -#: netbox/dcim/models/device_components.py:369 +#: dcim/models/device_components.py:369 msgid "power port" msgstr "strømstik" -#: netbox/dcim/models/device_components.py:370 +#: dcim/models/device_components.py:370 msgid "power ports" msgstr "strømstik" -#: netbox/dcim/models/device_components.py:487 +#: dcim/models/device_components.py:487 msgid "power outlet" msgstr "strømudtag" -#: netbox/dcim/models/device_components.py:488 +#: dcim/models/device_components.py:488 msgid "power outlets" msgstr "strømudtag" -#: netbox/dcim/models/device_components.py:499 +#: dcim/models/device_components.py:499 #, python-brace-format msgid "Parent power port ({power_port}) must belong to the same device" msgstr "Hovedstrømstik ({power_port}) skal tilhøre den samme enhed" -#: netbox/dcim/models/device_components.py:530 netbox/vpn/models/crypto.py:81 -#: netbox/vpn/models/crypto.py:226 +#: dcim/models/device_components.py:530 vpn/models/crypto.py:81 +#: vpn/models/crypto.py:226 msgid "mode" msgstr "tilstand" -#: netbox/dcim/models/device_components.py:534 +#: dcim/models/device_components.py:534 msgid "IEEE 802.1Q tagging strategy" msgstr "IEEE 802.1Q-mærkningsstrategi" -#: netbox/dcim/models/device_components.py:542 +#: dcim/models/device_components.py:542 msgid "parent interface" msgstr "forældregrænseflade" -#: netbox/dcim/models/device_components.py:602 +#: dcim/models/device_components.py:602 msgid "parent LAG" msgstr "forældreLAG" -#: netbox/dcim/models/device_components.py:612 +#: dcim/models/device_components.py:612 msgid "This interface is used only for out-of-band management" msgstr "Denne grænseflade bruges kun til administration uden for båndet" -#: netbox/dcim/models/device_components.py:617 +#: dcim/models/device_components.py:617 msgid "speed (Kbps)" msgstr "hastighed (Kbps)" -#: netbox/dcim/models/device_components.py:620 +#: dcim/models/device_components.py:620 msgid "duplex" msgstr "duplex" -#: netbox/dcim/models/device_components.py:630 +#: dcim/models/device_components.py:630 msgid "64-bit World Wide Name" msgstr "64-bit verdensomspændende navn" -#: netbox/dcim/models/device_components.py:642 +#: dcim/models/device_components.py:642 msgid "wireless channel" msgstr "trådløs kanal" -#: netbox/dcim/models/device_components.py:649 +#: dcim/models/device_components.py:649 msgid "channel frequency (MHz)" msgstr "kanalfrekvens (MHz)" -#: netbox/dcim/models/device_components.py:650 -#: netbox/dcim/models/device_components.py:658 +#: dcim/models/device_components.py:650 dcim/models/device_components.py:658 msgid "Populated by selected channel (if set)" msgstr "Udfyldt af valgt kanal (hvis indstillet)" -#: netbox/dcim/models/device_components.py:664 +#: dcim/models/device_components.py:664 msgid "transmit power (dBm)" msgstr "sendeeffekt (dBm)" -#: netbox/dcim/models/device_components.py:689 netbox/wireless/models.py:117 +#: dcim/models/device_components.py:689 wireless/models.py:117 msgid "wireless LANs" msgstr "trådløse LAN" -#: netbox/dcim/models/device_components.py:697 -#: netbox/virtualization/models/virtualmachines.py:335 +#: dcim/models/device_components.py:697 +#: virtualization/models/virtualmachines.py:335 msgid "untagged VLAN" msgstr "umærket VLAN" -#: netbox/dcim/models/device_components.py:703 -#: netbox/virtualization/models/virtualmachines.py:341 +#: dcim/models/device_components.py:703 +#: virtualization/models/virtualmachines.py:341 msgid "tagged VLANs" msgstr "mærkede VLAN'er" -#: netbox/dcim/models/device_components.py:745 -#: netbox/virtualization/models/virtualmachines.py:377 +#: dcim/models/device_components.py:745 +#: virtualization/models/virtualmachines.py:377 msgid "interface" msgstr "grænseflade" -#: netbox/dcim/models/device_components.py:746 -#: netbox/virtualization/models/virtualmachines.py:378 +#: dcim/models/device_components.py:746 +#: virtualization/models/virtualmachines.py:378 msgid "interfaces" msgstr "grænseflader" -#: netbox/dcim/models/device_components.py:757 +#: dcim/models/device_components.py:757 #, python-brace-format msgid "{display_type} interfaces cannot have a cable attached." msgstr "{display_type} grænseflader kan ikke have et kabel tilsluttet." -#: netbox/dcim/models/device_components.py:765 +#: dcim/models/device_components.py:765 #, python-brace-format msgid "{display_type} interfaces cannot be marked as connected." msgstr "{display_type} grænseflader kan ikke markeres som tilsluttet." -#: netbox/dcim/models/device_components.py:774 -#: netbox/virtualization/models/virtualmachines.py:390 +#: dcim/models/device_components.py:774 +#: virtualization/models/virtualmachines.py:390 msgid "An interface cannot be its own parent." msgstr "En grænseflade kan ikke være sin egen forælder." -#: netbox/dcim/models/device_components.py:778 +#: dcim/models/device_components.py:778 msgid "Only virtual interfaces may be assigned to a parent interface." msgstr "Kun virtuelle grænseflader kan tildeles en overordnet grænseflade." -#: netbox/dcim/models/device_components.py:785 +#: dcim/models/device_components.py:785 #, python-brace-format msgid "" "The selected parent interface ({interface}) belongs to a different device " @@ -5617,7 +5173,7 @@ msgstr "" "Den valgte overordnede grænseflade ({interface}) tilhører en anden enhed " "({device})" -#: netbox/dcim/models/device_components.py:791 +#: dcim/models/device_components.py:791 #, python-brace-format msgid "" "The selected parent interface ({interface}) belongs to {device}, which is " @@ -5626,7 +5182,7 @@ msgstr "" "Den valgte overordnede grænseflade ({interface}) tilhører {device}, som ikke" " er en del af det virtuelle chassis {virtual_chassis}." -#: netbox/dcim/models/device_components.py:811 +#: dcim/models/device_components.py:811 #, python-brace-format msgid "" "The selected bridge interface ({bridge}) belongs to a different device " @@ -5634,7 +5190,7 @@ msgid "" msgstr "" "Den valgte brogrænseflade ({bridge}) tilhører en anden enhed ({device})." -#: netbox/dcim/models/device_components.py:817 +#: dcim/models/device_components.py:817 #, python-brace-format msgid "" "The selected bridge interface ({interface}) belongs to {device}, which is " @@ -5643,22 +5199,22 @@ msgstr "" "Den valgte brogrænseflade ({interface}) tilhører {device}, som ikke er en " "del af det virtuelle chassis {virtual_chassis}." -#: netbox/dcim/models/device_components.py:828 +#: dcim/models/device_components.py:828 msgid "Virtual interfaces cannot have a parent LAG interface." msgstr "Virtuelle grænseflader kan ikke have en overordnet LAG-grænseflade." -#: netbox/dcim/models/device_components.py:832 +#: dcim/models/device_components.py:832 msgid "A LAG interface cannot be its own parent." msgstr "En LAG-grænseflade kan ikke være dens egen overordnede." -#: netbox/dcim/models/device_components.py:839 +#: dcim/models/device_components.py:839 #, python-brace-format msgid "" "The selected LAG interface ({lag}) belongs to a different device ({device})." msgstr "" "Den valgte LAG-grænseflade ({lag}) tilhører en anden enhed ({device})." -#: netbox/dcim/models/device_components.py:845 +#: dcim/models/device_components.py:845 #, python-brace-format msgid "" "The selected LAG interface ({lag}) belongs to {device}, which is not part of" @@ -5667,43 +5223,43 @@ msgstr "" "Den valgte LAG-grænseflade ({lag}) tilhører {device}, som ikke er en del af " "det virtuelle chassis {virtual_chassis}." -#: netbox/dcim/models/device_components.py:856 +#: dcim/models/device_components.py:856 msgid "Virtual interfaces cannot have a PoE mode." msgstr "Virtuelle grænseflader kan ikke have en PoE-tilstand." -#: netbox/dcim/models/device_components.py:860 +#: dcim/models/device_components.py:860 msgid "Virtual interfaces cannot have a PoE type." msgstr "Virtuelle grænseflader kan ikke have en PoE-type." -#: netbox/dcim/models/device_components.py:866 +#: dcim/models/device_components.py:866 msgid "Must specify PoE mode when designating a PoE type." msgstr "Skal angive PoE-tilstand, når du angiver en PoE-type." -#: netbox/dcim/models/device_components.py:873 +#: dcim/models/device_components.py:873 msgid "Wireless role may be set only on wireless interfaces." msgstr "Trådløs rolle kan kun indstilles på trådløse grænseflader." -#: netbox/dcim/models/device_components.py:875 +#: dcim/models/device_components.py:875 msgid "Channel may be set only on wireless interfaces." msgstr "Kanal kan kun indstilles på trådløse grænseflader." -#: netbox/dcim/models/device_components.py:881 +#: dcim/models/device_components.py:881 msgid "Channel frequency may be set only on wireless interfaces." msgstr "Kanalfrekvensen kan kun indstilles på trådløse grænseflader." -#: netbox/dcim/models/device_components.py:885 +#: dcim/models/device_components.py:885 msgid "Cannot specify custom frequency with channel selected." msgstr "Kan ikke angive brugerdefineret frekvens med valgt kanal." -#: netbox/dcim/models/device_components.py:891 +#: dcim/models/device_components.py:891 msgid "Channel width may be set only on wireless interfaces." msgstr "Kanalbredden kan kun indstilles på trådløse grænseflader." -#: netbox/dcim/models/device_components.py:893 +#: dcim/models/device_components.py:893 msgid "Cannot specify custom width with channel selected." msgstr "Kan ikke angive brugerdefineret bredde med valgt kanal." -#: netbox/dcim/models/device_components.py:901 +#: dcim/models/device_components.py:901 #, python-brace-format msgid "" "The untagged VLAN ({untagged_vlan}) must belong to the same site as the " @@ -5712,24 +5268,24 @@ msgstr "" "Den umærkede VLAN ({untagged_vlan}) skal tilhøre det samme område som " "grænsefladens overordnede enhed, eller det skal være globalt." -#: netbox/dcim/models/device_components.py:990 +#: dcim/models/device_components.py:990 msgid "Mapped position on corresponding rear port" msgstr "Kortlagt position på tilsvarende bageste port" -#: netbox/dcim/models/device_components.py:1006 +#: dcim/models/device_components.py:1006 msgid "front port" msgstr "Frontport" -#: netbox/dcim/models/device_components.py:1007 +#: dcim/models/device_components.py:1007 msgid "front ports" msgstr "frontporte" -#: netbox/dcim/models/device_components.py:1021 +#: dcim/models/device_components.py:1021 #, python-brace-format msgid "Rear port ({rear_port}) must belong to the same device" msgstr "Bageste port ({rear_port}) skal tilhøre den samme enhed" -#: netbox/dcim/models/device_components.py:1029 +#: dcim/models/device_components.py:1029 #, python-brace-format msgid "" "Invalid rear port position ({rear_port_position}): Rear port {name} has only" @@ -5738,19 +5294,19 @@ msgstr "" "Ugyldig bageste portposition ({rear_port_position}): Bageste port {name} har" " kun {positions} positioner." -#: netbox/dcim/models/device_components.py:1059 +#: dcim/models/device_components.py:1059 msgid "Number of front ports which may be mapped" msgstr "Antal frontporte, der kan kortlægges" -#: netbox/dcim/models/device_components.py:1064 +#: dcim/models/device_components.py:1064 msgid "rear port" msgstr "bageste port" -#: netbox/dcim/models/device_components.py:1065 +#: dcim/models/device_components.py:1065 msgid "rear ports" msgstr "bageste porte" -#: netbox/dcim/models/device_components.py:1079 +#: dcim/models/device_components.py:1079 #, python-brace-format msgid "" "The number of positions cannot be less than the number of mapped front ports" @@ -5759,37 +5315,36 @@ msgstr "" "Antallet af positioner kan ikke være mindre end antallet af kortlagte " "frontporte ({frontport_count})" -#: netbox/dcim/models/device_components.py:1120 +#: dcim/models/device_components.py:1120 msgid "module bay" msgstr "modulplads" -#: netbox/dcim/models/device_components.py:1121 +#: dcim/models/device_components.py:1121 msgid "module bays" msgstr "modulpladser" -#: netbox/dcim/models/device_components.py:1138 -#: netbox/dcim/models/devices.py:1224 +#: dcim/models/device_components.py:1138 dcim/models/devices.py:1224 msgid "A module bay cannot belong to a module installed within it." msgstr "En modulplads kan ikke tilhøre et modul, der er installeret i den." -#: netbox/dcim/models/device_components.py:1164 +#: dcim/models/device_components.py:1164 msgid "device bay" msgstr "enhedsplads" -#: netbox/dcim/models/device_components.py:1165 +#: dcim/models/device_components.py:1165 msgid "device bays" msgstr "enhedsbugter" -#: netbox/dcim/models/device_components.py:1175 +#: dcim/models/device_components.py:1175 #, python-brace-format msgid "This type of device ({device_type}) does not support device bays." msgstr "Denne type enhed ({device_type}) understøtter ikke enhedsbugter." -#: netbox/dcim/models/device_components.py:1181 +#: dcim/models/device_components.py:1181 msgid "Cannot install a device into itself." msgstr "Kan ikke installere en enhed i sig selv." -#: netbox/dcim/models/device_components.py:1189 +#: dcim/models/device_components.py:1189 #, python-brace-format msgid "" "Cannot install the specified device; device is already installed in {bay}." @@ -5797,113 +5352,111 @@ msgstr "" "Kan ikke installere den angivne enhed; enheden er allerede installeret i " "{bay}." -#: netbox/dcim/models/device_components.py:1210 +#: dcim/models/device_components.py:1210 msgid "inventory item role" msgstr "lagervarerolle" -#: netbox/dcim/models/device_components.py:1211 +#: dcim/models/device_components.py:1211 msgid "inventory item roles" msgstr "lagervareroller" -#: netbox/dcim/models/device_components.py:1268 -#: netbox/dcim/models/devices.py:607 netbox/dcim/models/devices.py:1181 -#: netbox/dcim/models/racks.py:313 -#: netbox/virtualization/models/virtualmachines.py:131 +#: dcim/models/device_components.py:1268 dcim/models/devices.py:607 +#: dcim/models/devices.py:1181 dcim/models/racks.py:313 +#: virtualization/models/virtualmachines.py:131 msgid "serial number" msgstr "serienummer" -#: netbox/dcim/models/device_components.py:1276 -#: netbox/dcim/models/devices.py:615 netbox/dcim/models/devices.py:1188 -#: netbox/dcim/models/racks.py:320 +#: dcim/models/device_components.py:1276 dcim/models/devices.py:615 +#: dcim/models/devices.py:1188 dcim/models/racks.py:320 msgid "asset tag" msgstr "aktivmærke" -#: netbox/dcim/models/device_components.py:1277 +#: dcim/models/device_components.py:1277 msgid "A unique tag used to identify this item" msgstr "Et unikt tag, der bruges til at identificere dette element" -#: netbox/dcim/models/device_components.py:1280 +#: dcim/models/device_components.py:1280 msgid "discovered" msgstr "opdaget" -#: netbox/dcim/models/device_components.py:1282 +#: dcim/models/device_components.py:1282 msgid "This item was automatically discovered" msgstr "Dette element blev automatisk opdaget" -#: netbox/dcim/models/device_components.py:1300 +#: dcim/models/device_components.py:1300 msgid "inventory item" msgstr "lagerpost" -#: netbox/dcim/models/device_components.py:1301 +#: dcim/models/device_components.py:1301 msgid "inventory items" msgstr "lagervarer" -#: netbox/dcim/models/device_components.py:1312 +#: dcim/models/device_components.py:1312 msgid "Cannot assign self as parent." msgstr "Kan ikke tildele mig selv som forælder." -#: netbox/dcim/models/device_components.py:1320 +#: dcim/models/device_components.py:1320 msgid "Parent inventory item does not belong to the same device." msgstr "Overordnet lagervare tilhører ikke den samme enhed." -#: netbox/dcim/models/device_components.py:1326 +#: dcim/models/device_components.py:1326 msgid "Cannot move an inventory item with dependent children" msgstr "Kan ikke flytte en lagervare med afhængige underordnede" -#: netbox/dcim/models/device_components.py:1334 +#: dcim/models/device_components.py:1334 msgid "Cannot assign inventory item to component on another device" msgstr "Kan ikke tildele lagervare til komponent på en anden enhed" -#: netbox/dcim/models/devices.py:54 +#: dcim/models/devices.py:54 msgid "manufacturer" msgstr "fabrikant" -#: netbox/dcim/models/devices.py:55 +#: dcim/models/devices.py:55 msgid "manufacturers" msgstr "producenter" -#: netbox/dcim/models/devices.py:82 netbox/dcim/models/devices.py:382 -#: netbox/dcim/models/racks.py:133 +#: dcim/models/devices.py:82 dcim/models/devices.py:382 +#: dcim/models/racks.py:133 msgid "model" msgstr "model" -#: netbox/dcim/models/devices.py:95 +#: dcim/models/devices.py:95 msgid "default platform" msgstr "standard platform" -#: netbox/dcim/models/devices.py:98 netbox/dcim/models/devices.py:386 +#: dcim/models/devices.py:98 dcim/models/devices.py:386 msgid "part number" msgstr "varenummer" -#: netbox/dcim/models/devices.py:101 netbox/dcim/models/devices.py:389 +#: dcim/models/devices.py:101 dcim/models/devices.py:389 msgid "Discrete part number (optional)" msgstr "Diskret varenummer (valgfrit)" -#: netbox/dcim/models/devices.py:107 netbox/dcim/models/racks.py:54 +#: dcim/models/devices.py:107 dcim/models/racks.py:54 msgid "height (U)" msgstr "højde (U)" -#: netbox/dcim/models/devices.py:111 +#: dcim/models/devices.py:111 msgid "exclude from utilization" msgstr "udelukke fra udnyttelse" -#: netbox/dcim/models/devices.py:112 +#: dcim/models/devices.py:112 msgid "Devices of this type are excluded when calculating rack utilization." msgstr "Enheder af denne type er udelukket ved beregning af rackudnyttelse." -#: netbox/dcim/models/devices.py:116 +#: dcim/models/devices.py:116 msgid "is full depth" msgstr "er fuld dybde" -#: netbox/dcim/models/devices.py:117 +#: dcim/models/devices.py:117 msgid "Device consumes both front and rear rack faces." msgstr "Enheden bruger både forreste og bageste rackflader." -#: netbox/dcim/models/devices.py:123 +#: dcim/models/devices.py:123 msgid "parent/child status" msgstr "forældre/børns status" -#: netbox/dcim/models/devices.py:124 +#: dcim/models/devices.py:124 msgid "" "Parent devices house child devices in device bays. Leave blank if this " "device type is neither a parent nor a child." @@ -5911,24 +5464,24 @@ msgstr "" "Overordnede enheder huser underordnede enheder i enhedspladser. Lad det stå " "tomt, hvis denne enhedstype hverken er forælder eller barn." -#: netbox/dcim/models/devices.py:128 netbox/dcim/models/devices.py:392 -#: netbox/dcim/models/devices.py:659 netbox/dcim/models/racks.py:324 +#: dcim/models/devices.py:128 dcim/models/devices.py:392 +#: dcim/models/devices.py:659 dcim/models/racks.py:324 msgid "airflow" msgstr "luftstrøm" -#: netbox/dcim/models/devices.py:204 +#: dcim/models/devices.py:204 msgid "device type" msgstr "enhedstype" -#: netbox/dcim/models/devices.py:205 +#: dcim/models/devices.py:205 msgid "device types" msgstr "enhedstyper" -#: netbox/dcim/models/devices.py:290 +#: dcim/models/devices.py:290 msgid "U height must be in increments of 0.5 rack units." msgstr "U-højden skal være i trin på 0,5 reoler." -#: netbox/dcim/models/devices.py:307 +#: dcim/models/devices.py:307 #, python-brace-format msgid "" "Device {device} in rack {rack} does not have sufficient space to accommodate" @@ -5937,7 +5490,7 @@ msgstr "" "Enhed {device} i rack {rack} har ikke tilstrækkelig plads til at rumme en " "højde på {height}U" -#: netbox/dcim/models/devices.py:322 +#: dcim/models/devices.py:322 #, python-brace-format msgid "" "Unable to set 0U height: Found {racked_instance_count} " @@ -5947,7 +5500,7 @@ msgstr "" "href=\"{url}\">{racked_instance_count} tilfælde allerede monteret i " "racker." -#: netbox/dcim/models/devices.py:331 +#: dcim/models/devices.py:331 msgid "" "Must delete all device bay templates associated with this device before " "declassifying it as a parent device." @@ -5955,155 +5508,155 @@ msgstr "" "Du skal slette alle skabeloner til enhedsbugter, der er knyttet til denne " "enhed, før du afklassificerer den som en overordnet enhed." -#: netbox/dcim/models/devices.py:337 +#: dcim/models/devices.py:337 msgid "Child device types must be 0U." msgstr "Børneenhedstyper skal være 0U." -#: netbox/dcim/models/devices.py:411 +#: dcim/models/devices.py:411 msgid "module type" msgstr "modultype" -#: netbox/dcim/models/devices.py:412 +#: dcim/models/devices.py:412 msgid "module types" msgstr "modultyper" -#: netbox/dcim/models/devices.py:485 +#: dcim/models/devices.py:485 msgid "Virtual machines may be assigned to this role" msgstr "Virtuelle maskiner kan tildeles denne rolle" -#: netbox/dcim/models/devices.py:497 +#: dcim/models/devices.py:497 msgid "device role" msgstr "enhedsrolle" -#: netbox/dcim/models/devices.py:498 +#: dcim/models/devices.py:498 msgid "device roles" msgstr "enhedsroller" -#: netbox/dcim/models/devices.py:515 +#: dcim/models/devices.py:515 msgid "Optionally limit this platform to devices of a certain manufacturer" msgstr "Begræns eventuelt denne platform til enheder fra en bestemt producent" -#: netbox/dcim/models/devices.py:527 +#: dcim/models/devices.py:527 msgid "platform" msgstr "platform" -#: netbox/dcim/models/devices.py:528 +#: dcim/models/devices.py:528 msgid "platforms" msgstr "platforme" -#: netbox/dcim/models/devices.py:576 +#: dcim/models/devices.py:576 msgid "The function this device serves" msgstr "Funktionen denne enhed tjener" -#: netbox/dcim/models/devices.py:608 +#: dcim/models/devices.py:608 msgid "Chassis serial number, assigned by the manufacturer" msgstr "Chassisserienummer, tildelt af producenten" -#: netbox/dcim/models/devices.py:616 netbox/dcim/models/devices.py:1189 +#: dcim/models/devices.py:616 dcim/models/devices.py:1189 msgid "A unique tag used to identify this device" msgstr "Et unikt tag, der bruges til at identificere denne enhed" -#: netbox/dcim/models/devices.py:643 +#: dcim/models/devices.py:643 msgid "position (U)" msgstr "position (U)" -#: netbox/dcim/models/devices.py:650 +#: dcim/models/devices.py:650 msgid "rack face" msgstr "rackflade" -#: netbox/dcim/models/devices.py:670 netbox/dcim/models/devices.py:1415 -#: netbox/virtualization/models/virtualmachines.py:100 +#: dcim/models/devices.py:670 dcim/models/devices.py:1415 +#: virtualization/models/virtualmachines.py:100 msgid "primary IPv4" msgstr "Primær IPv4" -#: netbox/dcim/models/devices.py:678 netbox/dcim/models/devices.py:1423 -#: netbox/virtualization/models/virtualmachines.py:108 +#: dcim/models/devices.py:678 dcim/models/devices.py:1423 +#: virtualization/models/virtualmachines.py:108 msgid "primary IPv6" msgstr "Primær IPv6" -#: netbox/dcim/models/devices.py:686 +#: dcim/models/devices.py:686 msgid "out-of-band IP" msgstr "IP uden for båndet" -#: netbox/dcim/models/devices.py:703 +#: dcim/models/devices.py:703 msgid "VC position" msgstr "VC position" -#: netbox/dcim/models/devices.py:706 +#: dcim/models/devices.py:706 msgid "Virtual chassis position" msgstr "Virtuel chassisposition" -#: netbox/dcim/models/devices.py:709 +#: dcim/models/devices.py:709 msgid "VC priority" msgstr "VC-prioritet" -#: netbox/dcim/models/devices.py:713 +#: dcim/models/devices.py:713 msgid "Virtual chassis master election priority" msgstr "Virtuelt kabinetthovedvalgsprioritet" -#: netbox/dcim/models/devices.py:716 netbox/dcim/models/sites.py:207 +#: dcim/models/devices.py:716 dcim/models/sites.py:207 msgid "latitude" msgstr "breddegrad" -#: netbox/dcim/models/devices.py:721 netbox/dcim/models/devices.py:729 -#: netbox/dcim/models/sites.py:212 netbox/dcim/models/sites.py:220 +#: dcim/models/devices.py:721 dcim/models/devices.py:729 +#: dcim/models/sites.py:212 dcim/models/sites.py:220 msgid "GPS coordinate in decimal format (xx.yyyyyy)" msgstr "GPS-koordinat i decimalformat (xx.ååååå)" -#: netbox/dcim/models/devices.py:724 netbox/dcim/models/sites.py:215 +#: dcim/models/devices.py:724 dcim/models/sites.py:215 msgid "longitude" msgstr "længde" -#: netbox/dcim/models/devices.py:797 +#: dcim/models/devices.py:797 msgid "Device name must be unique per site." msgstr "Enhedsnavnet skal være entydigt pr. område." -#: netbox/dcim/models/devices.py:808 netbox/ipam/models/services.py:75 +#: dcim/models/devices.py:808 ipam/models/services.py:75 msgid "device" msgstr "enhed" -#: netbox/dcim/models/devices.py:809 +#: dcim/models/devices.py:809 msgid "devices" msgstr "enheder" -#: netbox/dcim/models/devices.py:835 +#: dcim/models/devices.py:835 #, python-brace-format msgid "Rack {rack} does not belong to site {site}." msgstr "Rack {rack} hører ikke til område {site}." -#: netbox/dcim/models/devices.py:840 +#: dcim/models/devices.py:840 #, python-brace-format msgid "Location {location} does not belong to site {site}." msgstr "Lokation {location} hører ikke til området {site}." -#: netbox/dcim/models/devices.py:846 +#: dcim/models/devices.py:846 #, python-brace-format msgid "Rack {rack} does not belong to location {location}." msgstr "Rack {rack} hører ikke til placering {location}." -#: netbox/dcim/models/devices.py:853 +#: dcim/models/devices.py:853 msgid "Cannot select a rack face without assigning a rack." msgstr "Kan ikke vælge en rackflade uden at tildele et rack." -#: netbox/dcim/models/devices.py:857 +#: dcim/models/devices.py:857 msgid "Cannot select a rack position without assigning a rack." msgstr "Kan ikke vælge en rackposition uden at tildele et rack." -#: netbox/dcim/models/devices.py:863 +#: dcim/models/devices.py:863 msgid "Position must be in increments of 0.5 rack units." msgstr "Positionen skal være i trin på 0,5 reoler." -#: netbox/dcim/models/devices.py:867 +#: dcim/models/devices.py:867 msgid "Must specify rack face when defining rack position." msgstr "Skal angive rackflade, når du definerer rackposition." -#: netbox/dcim/models/devices.py:875 +#: dcim/models/devices.py:875 #, python-brace-format msgid "" "A 0U device type ({device_type}) cannot be assigned to a rack position." msgstr "En 0U-enhedstype ({device_type}) kan ikke tildeles en rackposition." -#: netbox/dcim/models/devices.py:886 +#: dcim/models/devices.py:886 msgid "" "Child device types cannot be assigned to a rack face. This is an attribute " "of the parent device." @@ -6111,7 +5664,7 @@ msgstr "" "Underordnede enhedstyper kan ikke tildeles en rackflade. Dette er en " "attribut for den overordnede enhed." -#: netbox/dcim/models/devices.py:893 +#: dcim/models/devices.py:893 msgid "" "Child device types cannot be assigned to a rack position. This is an " "attribute of the parent device." @@ -6119,7 +5672,7 @@ msgstr "" "Underordnede enhedstyper kan ikke tildeles en rackposition. Dette er en " "attribut for den overordnede enhed." -#: netbox/dcim/models/devices.py:907 +#: dcim/models/devices.py:907 #, python-brace-format msgid "" "U{position} is already occupied or does not have sufficient space to " @@ -6128,22 +5681,22 @@ msgstr "" "U{position} er allerede besat eller ikke har tilstrækkelig plads til at " "rumme denne enhedstype: {device_type} ({u_height}U)" -#: netbox/dcim/models/devices.py:922 +#: dcim/models/devices.py:922 #, python-brace-format msgid "{ip} is not an IPv4 address." msgstr "{ip} er ikke en IPv4-adresse." -#: netbox/dcim/models/devices.py:931 netbox/dcim/models/devices.py:946 +#: dcim/models/devices.py:931 dcim/models/devices.py:946 #, python-brace-format msgid "The specified IP address ({ip}) is not assigned to this device." msgstr "Den angivne IP-adresse ({ip}) er ikke tildelt denne enhed." -#: netbox/dcim/models/devices.py:937 +#: dcim/models/devices.py:937 #, python-brace-format msgid "{ip} is not an IPv6 address." msgstr "{ip} Det er ikke en IPv6-adresse." -#: netbox/dcim/models/devices.py:964 +#: dcim/models/devices.py:964 #, python-brace-format msgid "" "The assigned platform is limited to {platform_manufacturer} device types, " @@ -6152,18 +5705,18 @@ msgstr "" "Den tildelte platform er begrænset til {platform_manufacturer} enhedstyper, " "men denne enheds type hører til {devicetype_manufacturer}." -#: netbox/dcim/models/devices.py:975 +#: dcim/models/devices.py:975 #, python-brace-format msgid "The assigned cluster belongs to a different site ({site})" msgstr "Det tildelte cluster tilhører et andet område ({site})" -#: netbox/dcim/models/devices.py:983 +#: dcim/models/devices.py:983 msgid "A device assigned to a virtual chassis must have its position defined." msgstr "" "En enhed, der er tildelt et virtuelt chassis, skal have sin position " "defineret." -#: netbox/dcim/models/devices.py:988 +#: dcim/models/devices.py:988 #, python-brace-format msgid "" "Device cannot be removed from virtual chassis {virtual_chassis} because it " @@ -6172,15 +5725,15 @@ msgstr "" "Enheden kan ikke fjernes fra det virtuelle chassis {virtual_chassis} fordi " "det i øjeblikket er udpeget som sin herre." -#: netbox/dcim/models/devices.py:1196 +#: dcim/models/devices.py:1196 msgid "module" msgstr "modul" -#: netbox/dcim/models/devices.py:1197 +#: dcim/models/devices.py:1197 msgid "modules" msgstr "moduler" -#: netbox/dcim/models/devices.py:1213 +#: dcim/models/devices.py:1213 #, python-brace-format msgid "" "Module must be installed within a module bay belonging to the assigned " @@ -6189,21 +5742,21 @@ msgstr "" "Modulet skal installeres i en modulplads, der tilhører den tildelte enhed " "({device})." -#: netbox/dcim/models/devices.py:1334 +#: dcim/models/devices.py:1334 msgid "domain" msgstr "domæne" -#: netbox/dcim/models/devices.py:1347 netbox/dcim/models/devices.py:1348 +#: dcim/models/devices.py:1347 dcim/models/devices.py:1348 msgid "virtual chassis" msgstr "virtuelt chassis" -#: netbox/dcim/models/devices.py:1363 +#: dcim/models/devices.py:1363 #, python-brace-format msgid "" "The selected master ({master}) is not assigned to this virtual chassis." msgstr "Den valgte master ({master}) er ikke tildelt dette virtuelle chassis." -#: netbox/dcim/models/devices.py:1379 +#: dcim/models/devices.py:1379 #, python-brace-format msgid "" "Unable to delete virtual chassis {self}. There are member interfaces which " @@ -6212,102 +5765,102 @@ msgstr "" "Kan ikke slette virtuelt chassis {self}. Der er medlemsgrænseflader, der " "danner LAG-grænseflader på tværs af chassiserne." -#: netbox/dcim/models/devices.py:1404 netbox/vpn/models/l2vpn.py:37 +#: dcim/models/devices.py:1404 vpn/models/l2vpn.py:37 msgid "identifier" msgstr "identificere" -#: netbox/dcim/models/devices.py:1405 +#: dcim/models/devices.py:1405 msgid "Numeric identifier unique to the parent device" msgstr "Numerisk identifikator, der er unik for den overordnede enhed" -#: netbox/dcim/models/devices.py:1433 netbox/extras/models/customfields.py:225 -#: netbox/extras/models/models.py:107 netbox/extras/models/models.py:694 -#: netbox/netbox/models/__init__.py:115 +#: dcim/models/devices.py:1433 extras/models/customfields.py:225 +#: extras/models/models.py:107 extras/models/models.py:694 +#: netbox/models/__init__.py:115 msgid "comments" msgstr "kommenterer" -#: netbox/dcim/models/devices.py:1449 +#: dcim/models/devices.py:1449 msgid "virtual device context" msgstr "virtuel enhedskontekst" -#: netbox/dcim/models/devices.py:1450 +#: dcim/models/devices.py:1450 msgid "virtual device contexts" msgstr "virtuelle enhedskontekster" -#: netbox/dcim/models/devices.py:1482 +#: dcim/models/devices.py:1482 #, python-brace-format msgid "{ip} is not an IPv{family} address." msgstr "{ip} er ikke en IPV{family} adresse." -#: netbox/dcim/models/devices.py:1488 +#: dcim/models/devices.py:1488 msgid "Primary IP address must belong to an interface on the assigned device." msgstr "Primær IP-adresse skal tilhøre en grænseflade på den tildelte enhed." -#: netbox/dcim/models/mixins.py:15 netbox/extras/models/configs.py:41 -#: netbox/extras/models/models.py:313 netbox/extras/models/models.py:522 -#: netbox/extras/models/search.py:48 netbox/ipam/models/ip.py:194 +#: dcim/models/mixins.py:15 extras/models/configs.py:41 +#: extras/models/models.py:313 extras/models/models.py:522 +#: extras/models/search.py:48 ipam/models/ip.py:194 msgid "weight" msgstr "vægt" -#: netbox/dcim/models/mixins.py:22 +#: dcim/models/mixins.py:22 msgid "weight unit" msgstr "vægtenhed" -#: netbox/dcim/models/mixins.py:51 +#: dcim/models/mixins.py:51 msgid "Must specify a unit when setting a weight" msgstr "Skal angive en enhed, når du indstiller en vægt" -#: netbox/dcim/models/power.py:55 +#: dcim/models/power.py:55 msgid "power panel" msgstr "strømpanel" -#: netbox/dcim/models/power.py:56 +#: dcim/models/power.py:56 msgid "power panels" msgstr "strømpaneler" -#: netbox/dcim/models/power.py:70 +#: dcim/models/power.py:70 #, python-brace-format msgid "" "Location {location} ({location_site}) is in a different site than {site}" msgstr "Lokation {location} ({location_site}) er i et andet område end {site}" -#: netbox/dcim/models/power.py:108 +#: dcim/models/power.py:108 msgid "supply" msgstr "levere" -#: netbox/dcim/models/power.py:114 +#: dcim/models/power.py:114 msgid "phase" msgstr "overgang" -#: netbox/dcim/models/power.py:120 +#: dcim/models/power.py:120 msgid "voltage" msgstr "spænding" -#: netbox/dcim/models/power.py:125 +#: dcim/models/power.py:125 msgid "amperage" msgstr "strømstyrke" -#: netbox/dcim/models/power.py:130 +#: dcim/models/power.py:130 msgid "max utilization" msgstr "maksimal udnyttelse" -#: netbox/dcim/models/power.py:133 +#: dcim/models/power.py:133 msgid "Maximum permissible draw (percentage)" msgstr "Maksimal tilladt trækning (procent)" -#: netbox/dcim/models/power.py:136 +#: dcim/models/power.py:136 msgid "available power" msgstr "tilgængelig strøm" -#: netbox/dcim/models/power.py:164 +#: dcim/models/power.py:164 msgid "power feed" msgstr "strømforsyning" -#: netbox/dcim/models/power.py:165 +#: dcim/models/power.py:165 msgid "power feeds" msgstr "strømforsyninger" -#: netbox/dcim/models/power.py:179 +#: dcim/models/power.py:179 #, python-brace-format msgid "" "Rack {rack} ({rack_site}) and power panel {powerpanel} ({powerpanel_site}) " @@ -6316,63 +5869,63 @@ msgstr "" "Rack {rack} ({rack_site}) og strømpanel {powerpanel} ({powerpanel_site}) er " "på forskellige områder." -#: netbox/dcim/models/power.py:190 +#: dcim/models/power.py:190 msgid "Voltage cannot be negative for AC supply" msgstr "Spænding kan ikke være negativ for vekselstrømsforsyning" -#: netbox/dcim/models/racks.py:47 +#: dcim/models/racks.py:47 msgid "width" msgstr "bredde" -#: netbox/dcim/models/racks.py:48 +#: dcim/models/racks.py:48 msgid "Rail-to-rail width" msgstr "Skinne-til-skinne-bredde" -#: netbox/dcim/models/racks.py:56 +#: dcim/models/racks.py:56 msgid "Height in rack units" msgstr "Højde i reoler" -#: netbox/dcim/models/racks.py:60 +#: dcim/models/racks.py:60 msgid "starting unit" msgstr "startenhed" -#: netbox/dcim/models/racks.py:62 +#: dcim/models/racks.py:62 msgid "Starting unit for rack" msgstr "Startenhed til rack" -#: netbox/dcim/models/racks.py:66 +#: dcim/models/racks.py:66 msgid "descending units" msgstr "faldende enheder" -#: netbox/dcim/models/racks.py:67 +#: dcim/models/racks.py:67 msgid "Units are numbered top-to-bottom" msgstr "Enhederne er nummereret fra top til bund" -#: netbox/dcim/models/racks.py:72 +#: dcim/models/racks.py:72 msgid "outer width" msgstr "ydre bredde" -#: netbox/dcim/models/racks.py:75 +#: dcim/models/racks.py:75 msgid "Outer dimension of rack (width)" msgstr "Udvendig dimension af rack (bredde)" -#: netbox/dcim/models/racks.py:78 +#: dcim/models/racks.py:78 msgid "outer depth" msgstr "ydre dybde" -#: netbox/dcim/models/racks.py:81 +#: dcim/models/racks.py:81 msgid "Outer dimension of rack (depth)" msgstr "Udvendig dimension af rack (dybde)" -#: netbox/dcim/models/racks.py:84 +#: dcim/models/racks.py:84 msgid "outer unit" msgstr "ydre enhed" -#: netbox/dcim/models/racks.py:90 +#: dcim/models/racks.py:90 msgid "mounting depth" msgstr "monteringsdybde" -#: netbox/dcim/models/racks.py:94 +#: dcim/models/racks.py:94 msgid "" "Maximum depth of a mounted device, in millimeters. For four-post racks, this" " is the distance between the front and rear rails." @@ -6380,75 +5933,74 @@ msgstr "" "Maksimal dybde af en monteret enhed, i millimeter. For stativer med fire " "stolper er dette afstanden mellem for- og bagskinner." -#: netbox/dcim/models/racks.py:102 +#: dcim/models/racks.py:102 msgid "max weight" msgstr "max vægt" -#: netbox/dcim/models/racks.py:105 +#: dcim/models/racks.py:105 msgid "Maximum load capacity for the rack" msgstr "Maksimal belastningskapacitet for stativet" -#: netbox/dcim/models/racks.py:125 netbox/dcim/models/racks.py:252 +#: dcim/models/racks.py:125 dcim/models/racks.py:252 msgid "form factor" msgstr "formfaktor" -#: netbox/dcim/models/racks.py:162 +#: dcim/models/racks.py:162 msgid "rack type" msgstr "racktype" -#: netbox/dcim/models/racks.py:163 +#: dcim/models/racks.py:163 msgid "rack types" msgstr "racktyper" -#: netbox/dcim/models/racks.py:180 netbox/dcim/models/racks.py:379 +#: dcim/models/racks.py:180 dcim/models/racks.py:379 msgid "Must specify a unit when setting an outer width/depth" msgstr "Skal angive en enhed, når der indstilles en ydre bredde/dybde" -#: netbox/dcim/models/racks.py:184 netbox/dcim/models/racks.py:383 +#: dcim/models/racks.py:184 dcim/models/racks.py:383 msgid "Must specify a unit when setting a maximum weight" msgstr "Skal angive en enhed, når der indstilles en maksimal vægt" -#: netbox/dcim/models/racks.py:230 +#: dcim/models/racks.py:230 msgid "rack role" msgstr "rackrolle" -#: netbox/dcim/models/racks.py:231 +#: dcim/models/racks.py:231 msgid "rack roles" msgstr "rackroller" -#: netbox/dcim/models/racks.py:274 +#: dcim/models/racks.py:274 msgid "facility ID" msgstr "facilitets-id" -#: netbox/dcim/models/racks.py:275 +#: dcim/models/racks.py:275 msgid "Locally-assigned identifier" msgstr "Lokalt tildelt identifikator" -#: netbox/dcim/models/racks.py:308 netbox/ipam/forms/bulk_import.py:201 -#: netbox/ipam/forms/bulk_import.py:266 netbox/ipam/forms/bulk_import.py:301 -#: netbox/ipam/forms/bulk_import.py:459 -#: netbox/virtualization/forms/bulk_import.py:112 +#: dcim/models/racks.py:308 ipam/forms/bulk_import.py:201 +#: ipam/forms/bulk_import.py:266 ipam/forms/bulk_import.py:301 +#: ipam/forms/bulk_import.py:459 virtualization/forms/bulk_import.py:112 msgid "Functional role" msgstr "Funktionel rolle" -#: netbox/dcim/models/racks.py:321 +#: dcim/models/racks.py:321 msgid "A unique tag used to identify this rack" msgstr "Et unikt tag, der bruges til at identificere dette rack" -#: netbox/dcim/models/racks.py:359 +#: dcim/models/racks.py:359 msgid "rack" msgstr "rack" -#: netbox/dcim/models/racks.py:360 +#: dcim/models/racks.py:360 msgid "racks" msgstr "stativer" -#: netbox/dcim/models/racks.py:375 +#: dcim/models/racks.py:375 #, python-brace-format msgid "Assigned location must belong to parent site ({site})." msgstr "Den tildelte lokation skal tilhøre det overordnede område ({site})." -#: netbox/dcim/models/racks.py:393 +#: dcim/models/racks.py:393 #, python-brace-format msgid "" "Rack must be at least {min_height}U tall to house currently installed " @@ -6457,7 +6009,7 @@ msgstr "" "Rack skal være mindst {min_height}Du er høj til at huse aktuelt installerede" " enheder." -#: netbox/dcim/models/racks.py:400 +#: dcim/models/racks.py:400 #, python-brace-format msgid "" "Rack unit numbering must begin at {position} or less to house currently " @@ -6466,954 +6018,891 @@ msgstr "" "Nummerering af rackenheder skal begynde kl {position} eller mindre til at " "huse aktuelt installerede enheder." -#: netbox/dcim/models/racks.py:408 +#: dcim/models/racks.py:408 #, python-brace-format msgid "Location must be from the same site, {site}." msgstr "Lokation skal være fra samme område, {site}." -#: netbox/dcim/models/racks.py:670 +#: dcim/models/racks.py:670 msgid "units" msgstr "enkeltdele" -#: netbox/dcim/models/racks.py:696 +#: dcim/models/racks.py:696 msgid "rack reservation" msgstr "reservation af rack" -#: netbox/dcim/models/racks.py:697 +#: dcim/models/racks.py:697 msgid "rack reservations" msgstr "rackreservationer" -#: netbox/dcim/models/racks.py:714 +#: dcim/models/racks.py:714 #, python-brace-format msgid "Invalid unit(s) for {height}U rack: {unit_list}" msgstr "Ugyldig enhed (er) for {height}U-stativ: {unit_list}" -#: netbox/dcim/models/racks.py:727 +#: dcim/models/racks.py:727 #, python-brace-format msgid "The following units have already been reserved: {unit_list}" msgstr "Følgende enheder er allerede reserveret: {unit_list}" -#: netbox/dcim/models/sites.py:49 +#: dcim/models/sites.py:49 msgid "A top-level region with this name already exists." msgstr "Der findes allerede en region på øverste niveau med dette navn." -#: netbox/dcim/models/sites.py:59 +#: dcim/models/sites.py:59 msgid "A top-level region with this slug already exists." msgstr "Der findes allerede en region på øverste niveau med dette slug." -#: netbox/dcim/models/sites.py:62 +#: dcim/models/sites.py:62 msgid "region" msgstr "område" -#: netbox/dcim/models/sites.py:63 +#: dcim/models/sites.py:63 msgid "regions" msgstr "regioner" -#: netbox/dcim/models/sites.py:102 +#: dcim/models/sites.py:102 msgid "A top-level site group with this name already exists." msgstr "" "Der findes allerede en gruppe af områder på øverste niveau med dette navn." -#: netbox/dcim/models/sites.py:112 +#: dcim/models/sites.py:112 msgid "A top-level site group with this slug already exists." msgstr "Der findes allerede en områdegruppe på øverste niveau med dette slug." -#: netbox/dcim/models/sites.py:115 +#: dcim/models/sites.py:115 msgid "site group" msgstr "områdegruppe" -#: netbox/dcim/models/sites.py:116 +#: dcim/models/sites.py:116 msgid "site groups" msgstr "områdegrupper" -#: netbox/dcim/models/sites.py:141 +#: dcim/models/sites.py:141 msgid "Full name of the site" msgstr "Områdets fulde navn" -#: netbox/dcim/models/sites.py:181 netbox/dcim/models/sites.py:279 +#: dcim/models/sites.py:181 dcim/models/sites.py:279 msgid "facility" msgstr "facilitet" -#: netbox/dcim/models/sites.py:184 netbox/dcim/models/sites.py:282 +#: dcim/models/sites.py:184 dcim/models/sites.py:282 msgid "Local facility ID or description" msgstr "Lokalt facilitets-id eller beskrivelse" -#: netbox/dcim/models/sites.py:195 +#: dcim/models/sites.py:195 msgid "physical address" msgstr "Fysisk adresse" -#: netbox/dcim/models/sites.py:198 +#: dcim/models/sites.py:198 msgid "Physical location of the building" msgstr "Bygningens fysiske placering" -#: netbox/dcim/models/sites.py:201 +#: dcim/models/sites.py:201 msgid "shipping address" msgstr "leveringsadresse" -#: netbox/dcim/models/sites.py:204 +#: dcim/models/sites.py:204 msgid "If different from the physical address" msgstr "Hvis forskellig fra den fysiske adresse" -#: netbox/dcim/models/sites.py:238 +#: dcim/models/sites.py:238 msgid "site" msgstr "Område" -#: netbox/dcim/models/sites.py:239 +#: dcim/models/sites.py:239 msgid "sites" msgstr "Områder" -#: netbox/dcim/models/sites.py:309 +#: dcim/models/sites.py:309 msgid "A location with this name already exists within the specified site." msgstr "" "Der findes allerede en lokation med dette navn inden for det angivne område." -#: netbox/dcim/models/sites.py:319 +#: dcim/models/sites.py:319 msgid "A location with this slug already exists within the specified site." msgstr "" "En lokation med dette slug findes allerede inden for det angivne område." -#: netbox/dcim/models/sites.py:322 +#: dcim/models/sites.py:322 msgid "location" msgstr "beliggenhed" -#: netbox/dcim/models/sites.py:323 +#: dcim/models/sites.py:323 msgid "locations" msgstr "steder" -#: netbox/dcim/models/sites.py:337 +#: dcim/models/sites.py:337 #, python-brace-format msgid "Parent location ({parent}) must belong to the same site ({site})." msgstr "Hovedlokation ({parent}) skal tilhøre det samme område ({site})." -#: netbox/dcim/tables/cables.py:55 +#: dcim/tables/cables.py:55 msgid "Termination A" msgstr "Opsigelse A" -#: netbox/dcim/tables/cables.py:60 +#: dcim/tables/cables.py:60 msgid "Termination B" msgstr "Opsigelse B" -#: netbox/dcim/tables/cables.py:66 netbox/wireless/tables/wirelesslink.py:23 +#: dcim/tables/cables.py:66 wireless/tables/wirelesslink.py:23 msgid "Device A" msgstr "Enhed A" -#: netbox/dcim/tables/cables.py:72 netbox/wireless/tables/wirelesslink.py:32 +#: dcim/tables/cables.py:72 wireless/tables/wirelesslink.py:32 msgid "Device B" msgstr "Enhed B" -#: netbox/dcim/tables/cables.py:78 +#: dcim/tables/cables.py:78 msgid "Location A" msgstr "Sted A" -#: netbox/dcim/tables/cables.py:84 +#: dcim/tables/cables.py:84 msgid "Location B" msgstr "Sted B" -#: netbox/dcim/tables/cables.py:90 +#: dcim/tables/cables.py:90 msgid "Rack A" msgstr "Rack A" -#: netbox/dcim/tables/cables.py:96 +#: dcim/tables/cables.py:96 msgid "Rack B" msgstr "Rack B" -#: netbox/dcim/tables/cables.py:102 +#: dcim/tables/cables.py:102 msgid "Site A" msgstr "Område A" -#: netbox/dcim/tables/cables.py:108 +#: dcim/tables/cables.py:108 msgid "Site B" msgstr "Område B" -#: netbox/dcim/tables/connections.py:31 netbox/dcim/tables/connections.py:50 -#: netbox/dcim/tables/connections.py:71 -#: netbox/templates/dcim/inc/connection_endpoints.html:16 +#: dcim/tables/connections.py:31 dcim/tables/connections.py:50 +#: dcim/tables/connections.py:71 +#: templates/dcim/inc/connection_endpoints.html:16 msgid "Reachable" msgstr "Tilgængelig" -#: netbox/dcim/tables/devices.py:58 netbox/dcim/tables/devices.py:106 -#: netbox/dcim/tables/racks.py:150 netbox/dcim/tables/sites.py:105 -#: netbox/dcim/tables/sites.py:148 netbox/extras/tables/tables.py:545 -#: netbox/netbox/navigation/menu.py:69 netbox/netbox/navigation/menu.py:73 -#: netbox/netbox/navigation/menu.py:75 -#: netbox/virtualization/forms/model_forms.py:122 -#: netbox/virtualization/tables/clusters.py:83 -#: netbox/virtualization/views.py:206 +#: dcim/tables/devices.py:58 dcim/tables/devices.py:106 +#: dcim/tables/racks.py:150 dcim/tables/sites.py:105 dcim/tables/sites.py:148 +#: extras/tables/tables.py:545 netbox/navigation/menu.py:69 +#: netbox/navigation/menu.py:73 netbox/navigation/menu.py:75 +#: virtualization/forms/model_forms.py:122 +#: virtualization/tables/clusters.py:83 virtualization/views.py:206 msgid "Devices" msgstr "Enheder" -#: netbox/dcim/tables/devices.py:63 netbox/dcim/tables/devices.py:111 -#: netbox/virtualization/tables/clusters.py:88 +#: dcim/tables/devices.py:63 dcim/tables/devices.py:111 +#: virtualization/tables/clusters.py:88 msgid "VMs" msgstr "VM'er" -#: netbox/dcim/tables/devices.py:100 netbox/dcim/tables/devices.py:216 -#: netbox/extras/forms/model_forms.py:630 -#: netbox/templates/dcim/device.html:112 -#: netbox/templates/dcim/device/render_config.html:11 -#: netbox/templates/dcim/device/render_config.html:14 -#: netbox/templates/dcim/devicerole.html:44 -#: netbox/templates/dcim/platform.html:41 -#: netbox/templates/extras/configtemplate.html:10 -#: netbox/templates/virtualization/virtualmachine.html:48 -#: netbox/templates/virtualization/virtualmachine/render_config.html:11 -#: netbox/templates/virtualization/virtualmachine/render_config.html:14 -#: netbox/virtualization/tables/virtualmachines.py:107 +#: dcim/tables/devices.py:100 dcim/tables/devices.py:216 +#: extras/forms/model_forms.py:630 templates/dcim/device.html:112 +#: templates/dcim/device/render_config.html:11 +#: templates/dcim/device/render_config.html:14 +#: templates/dcim/devicerole.html:44 templates/dcim/platform.html:41 +#: templates/extras/configtemplate.html:10 +#: templates/virtualization/virtualmachine.html:48 +#: templates/virtualization/virtualmachine/render_config.html:11 +#: templates/virtualization/virtualmachine/render_config.html:14 +#: virtualization/tables/virtualmachines.py:107 msgid "Config Template" msgstr "Konfigurationsskabelon" -#: netbox/dcim/tables/devices.py:150 netbox/templates/dcim/sitegroup.html:26 +#: dcim/tables/devices.py:150 templates/dcim/sitegroup.html:26 msgid "Site Group" msgstr "Områdegruppe" -#: netbox/dcim/tables/devices.py:187 netbox/dcim/tables/devices.py:1068 -#: netbox/ipam/forms/bulk_import.py:503 netbox/ipam/forms/model_forms.py:306 -#: netbox/ipam/forms/model_forms.py:315 netbox/ipam/tables/ip.py:356 -#: netbox/ipam/tables/ip.py:423 netbox/ipam/tables/ip.py:446 -#: netbox/templates/ipam/ipaddress.html:11 -#: netbox/virtualization/tables/virtualmachines.py:95 +#: dcim/tables/devices.py:187 dcim/tables/devices.py:1068 +#: ipam/forms/bulk_import.py:503 ipam/forms/model_forms.py:306 +#: ipam/forms/model_forms.py:315 ipam/tables/ip.py:356 ipam/tables/ip.py:423 +#: ipam/tables/ip.py:446 templates/ipam/ipaddress.html:11 +#: virtualization/tables/virtualmachines.py:95 msgid "IP Address" msgstr "IP adresse" -#: netbox/dcim/tables/devices.py:191 netbox/dcim/tables/devices.py:1072 -#: netbox/virtualization/tables/virtualmachines.py:86 +#: dcim/tables/devices.py:191 dcim/tables/devices.py:1072 +#: virtualization/tables/virtualmachines.py:86 msgid "IPv4 Address" msgstr "IPv4-adresse" -#: netbox/dcim/tables/devices.py:195 netbox/dcim/tables/devices.py:1076 -#: netbox/virtualization/tables/virtualmachines.py:90 +#: dcim/tables/devices.py:195 dcim/tables/devices.py:1076 +#: virtualization/tables/virtualmachines.py:90 msgid "IPv6 Address" msgstr "IPv6-adresse" -#: netbox/dcim/tables/devices.py:210 +#: dcim/tables/devices.py:210 msgid "VC Position" msgstr "VC Position" -#: netbox/dcim/tables/devices.py:213 +#: dcim/tables/devices.py:213 msgid "VC Priority" msgstr "VC-prioritet" -#: netbox/dcim/tables/devices.py:220 netbox/templates/dcim/device_edit.html:38 -#: netbox/templates/dcim/devicebay_populate.html:16 +#: dcim/tables/devices.py:220 templates/dcim/device_edit.html:38 +#: templates/dcim/devicebay_populate.html:16 msgid "Parent Device" msgstr "Forældreenhed" -#: netbox/dcim/tables/devices.py:225 +#: dcim/tables/devices.py:225 msgid "Position (Device Bay)" msgstr "Position (enhedsplads)" -#: netbox/dcim/tables/devices.py:234 +#: dcim/tables/devices.py:234 msgid "Console ports" msgstr "Konsolporte" -#: netbox/dcim/tables/devices.py:237 +#: dcim/tables/devices.py:237 msgid "Console server ports" msgstr "Konsolserverporte" -#: netbox/dcim/tables/devices.py:240 +#: dcim/tables/devices.py:240 msgid "Power ports" msgstr "Strømstik" -#: netbox/dcim/tables/devices.py:243 +#: dcim/tables/devices.py:243 msgid "Power outlets" msgstr "Strømudtag" -#: netbox/dcim/tables/devices.py:246 netbox/dcim/tables/devices.py:1081 -#: netbox/dcim/tables/devicetypes.py:128 netbox/dcim/views.py:1042 -#: netbox/dcim/views.py:1281 netbox/dcim/views.py:1977 -#: netbox/netbox/navigation/menu.py:94 netbox/netbox/navigation/menu.py:250 -#: netbox/templates/dcim/device/base.html:37 -#: netbox/templates/dcim/device_list.html:43 -#: netbox/templates/dcim/devicetype/base.html:34 -#: netbox/templates/dcim/module.html:34 -#: netbox/templates/dcim/moduletype/base.html:34 -#: netbox/templates/dcim/virtualdevicecontext.html:61 -#: netbox/templates/dcim/virtualdevicecontext.html:81 -#: netbox/templates/virtualization/virtualmachine/base.html:27 -#: netbox/templates/virtualization/virtualmachine_list.html:14 -#: netbox/virtualization/tables/virtualmachines.py:101 -#: netbox/virtualization/views.py:366 netbox/wireless/tables/wirelesslan.py:55 +#: dcim/tables/devices.py:246 dcim/tables/devices.py:1081 +#: dcim/tables/devicetypes.py:128 dcim/views.py:1042 dcim/views.py:1281 +#: dcim/views.py:1977 netbox/navigation/menu.py:94 +#: netbox/navigation/menu.py:250 templates/dcim/device/base.html:37 +#: templates/dcim/device_list.html:43 templates/dcim/devicetype/base.html:34 +#: templates/dcim/inc/moduletype_buttons.html:25 templates/dcim/module.html:34 +#: templates/dcim/virtualdevicecontext.html:61 +#: templates/dcim/virtualdevicecontext.html:81 +#: templates/virtualization/virtualmachine/base.html:27 +#: templates/virtualization/virtualmachine_list.html:14 +#: virtualization/tables/virtualmachines.py:101 virtualization/views.py:366 +#: wireless/tables/wirelesslan.py:55 msgid "Interfaces" msgstr "Grænseflader" -#: netbox/dcim/tables/devices.py:249 +#: dcim/tables/devices.py:249 msgid "Front ports" msgstr "Frontporte" -#: netbox/dcim/tables/devices.py:255 +#: dcim/tables/devices.py:255 msgid "Device bays" msgstr "Enhedsbugter" -#: netbox/dcim/tables/devices.py:258 +#: dcim/tables/devices.py:258 msgid "Module bays" msgstr "Modulpladser" -#: netbox/dcim/tables/devices.py:261 +#: dcim/tables/devices.py:261 msgid "Inventory items" msgstr "Lagervarer" -#: netbox/dcim/tables/devices.py:305 netbox/dcim/tables/modules.py:56 -#: netbox/templates/dcim/modulebay.html:17 +#: dcim/tables/devices.py:305 dcim/tables/modules.py:56 +#: templates/dcim/modulebay.html:17 msgid "Module Bay" msgstr "Modulbugt" -#: netbox/dcim/tables/devices.py:318 netbox/dcim/tables/devicetypes.py:47 -#: netbox/dcim/tables/devicetypes.py:143 netbox/dcim/views.py:1117 -#: netbox/dcim/views.py:2075 netbox/netbox/navigation/menu.py:103 -#: netbox/templates/dcim/device/base.html:52 -#: netbox/templates/dcim/device_list.html:71 -#: netbox/templates/dcim/devicetype/base.html:49 -#: netbox/templates/dcim/inc/panels/inventory_items.html:6 -#: netbox/templates/dcim/inventoryitemrole.html:32 +#: dcim/tables/devices.py:318 dcim/tables/devicetypes.py:47 +#: dcim/tables/devicetypes.py:143 dcim/views.py:1117 dcim/views.py:2075 +#: netbox/navigation/menu.py:103 templates/dcim/device/base.html:52 +#: templates/dcim/device_list.html:71 templates/dcim/devicetype/base.html:49 +#: templates/dcim/inc/panels/inventory_items.html:6 +#: templates/dcim/inventoryitemrole.html:32 msgid "Inventory Items" msgstr "Lagervarer" -#: netbox/dcim/tables/devices.py:333 +#: dcim/tables/devices.py:333 msgid "Cable Color" msgstr "Kabelfarve" -#: netbox/dcim/tables/devices.py:339 +#: dcim/tables/devices.py:339 msgid "Link Peers" msgstr "Link jævnaldrende" -#: netbox/dcim/tables/devices.py:342 +#: dcim/tables/devices.py:342 msgid "Mark Connected" msgstr "Marker tilsluttet" -#: netbox/dcim/tables/devices.py:461 +#: dcim/tables/devices.py:461 msgid "Maximum draw (W)" msgstr "Maksimal trækkraft (W)" -#: netbox/dcim/tables/devices.py:464 +#: dcim/tables/devices.py:464 msgid "Allocated draw (W)" msgstr "Tildelt lodtrækning (W)" -#: netbox/dcim/tables/devices.py:558 netbox/ipam/forms/model_forms.py:701 -#: netbox/ipam/tables/fhrp.py:28 netbox/ipam/views.py:596 -#: netbox/ipam/views.py:696 netbox/netbox/navigation/menu.py:158 -#: netbox/netbox/navigation/menu.py:160 -#: netbox/templates/dcim/interface.html:339 -#: netbox/templates/ipam/ipaddress_bulk_add.html:15 -#: netbox/templates/ipam/service.html:40 -#: netbox/templates/virtualization/vminterface.html:85 -#: netbox/vpn/tables/tunnels.py:98 +#: dcim/tables/devices.py:558 ipam/forms/model_forms.py:701 +#: ipam/tables/fhrp.py:28 ipam/views.py:596 ipam/views.py:696 +#: netbox/navigation/menu.py:158 netbox/navigation/menu.py:160 +#: templates/dcim/interface.html:339 templates/ipam/ipaddress_bulk_add.html:15 +#: templates/ipam/service.html:40 templates/virtualization/vminterface.html:85 +#: vpn/tables/tunnels.py:98 msgid "IP Addresses" msgstr "IP-adresser" -#: netbox/dcim/tables/devices.py:564 netbox/netbox/navigation/menu.py:202 -#: netbox/templates/ipam/inc/panels/fhrp_groups.html:6 +#: dcim/tables/devices.py:564 netbox/navigation/menu.py:202 +#: templates/ipam/inc/panels/fhrp_groups.html:6 msgid "FHRP Groups" msgstr "FHRP Grupper" -#: netbox/dcim/tables/devices.py:576 netbox/templates/dcim/interface.html:89 -#: netbox/templates/virtualization/vminterface.html:67 -#: netbox/templates/vpn/tunnel.html:18 -#: netbox/templates/vpn/tunneltermination.html:13 -#: netbox/vpn/forms/bulk_edit.py:76 netbox/vpn/forms/bulk_import.py:76 -#: netbox/vpn/forms/filtersets.py:42 netbox/vpn/forms/filtersets.py:82 -#: netbox/vpn/forms/model_forms.py:60 netbox/vpn/forms/model_forms.py:145 -#: netbox/vpn/tables/tunnels.py:78 +#: dcim/tables/devices.py:576 templates/dcim/interface.html:89 +#: templates/virtualization/vminterface.html:67 templates/vpn/tunnel.html:18 +#: templates/vpn/tunneltermination.html:13 vpn/forms/bulk_edit.py:76 +#: vpn/forms/bulk_import.py:76 vpn/forms/filtersets.py:42 +#: vpn/forms/filtersets.py:82 vpn/forms/model_forms.py:60 +#: vpn/forms/model_forms.py:145 vpn/tables/tunnels.py:78 msgid "Tunnel" msgstr "Tunnel" -#: netbox/dcim/tables/devices.py:604 netbox/dcim/tables/devicetypes.py:227 -#: netbox/templates/dcim/interface.html:65 +#: dcim/tables/devices.py:604 dcim/tables/devicetypes.py:227 +#: templates/dcim/interface.html:65 msgid "Management Only" msgstr "Kun ledelse" -#: netbox/dcim/tables/devices.py:623 +#: dcim/tables/devices.py:623 msgid "VDCs" msgstr "VDC'er" -#: netbox/dcim/tables/devices.py:873 netbox/templates/dcim/modulebay.html:53 +#: dcim/tables/devices.py:873 templates/dcim/modulebay.html:53 msgid "Installed Module" msgstr "Installeret modul" -#: netbox/dcim/tables/devices.py:876 +#: dcim/tables/devices.py:876 msgid "Module Serial" msgstr "Seriel modul" -#: netbox/dcim/tables/devices.py:880 +#: dcim/tables/devices.py:880 msgid "Module Asset Tag" msgstr "Modulaktivmærke" -#: netbox/dcim/tables/devices.py:889 +#: dcim/tables/devices.py:889 msgid "Module Status" msgstr "Modulstatus" -#: netbox/dcim/tables/devices.py:944 netbox/dcim/tables/devicetypes.py:312 -#: netbox/templates/dcim/inventoryitem.html:40 +#: dcim/tables/devices.py:944 dcim/tables/devicetypes.py:312 +#: templates/dcim/inventoryitem.html:40 msgid "Component" msgstr "Komponent" -#: netbox/dcim/tables/devices.py:1000 +#: dcim/tables/devices.py:1000 msgid "Items" msgstr "Varer" -#: netbox/dcim/tables/devicetypes.py:37 netbox/netbox/navigation/menu.py:84 -#: netbox/netbox/navigation/menu.py:86 +#: dcim/tables/devicetypes.py:37 netbox/navigation/menu.py:84 +#: netbox/navigation/menu.py:86 msgid "Device Types" msgstr "Enhedstyper" -#: netbox/dcim/tables/devicetypes.py:42 netbox/netbox/navigation/menu.py:87 +#: dcim/tables/devicetypes.py:42 netbox/navigation/menu.py:87 msgid "Module Types" msgstr "Modultyper" -#: netbox/dcim/tables/devicetypes.py:52 netbox/extras/forms/filtersets.py:371 -#: netbox/extras/forms/model_forms.py:537 netbox/extras/tables/tables.py:540 -#: netbox/netbox/navigation/menu.py:78 +#: dcim/tables/devicetypes.py:52 extras/forms/filtersets.py:371 +#: extras/forms/model_forms.py:537 extras/tables/tables.py:540 +#: netbox/navigation/menu.py:78 msgid "Platforms" msgstr "Platforme" -#: netbox/dcim/tables/devicetypes.py:84 -#: netbox/templates/dcim/devicetype.html:29 +#: dcim/tables/devicetypes.py:84 templates/dcim/devicetype.html:29 msgid "Default Platform" msgstr "Standardplatform" -#: netbox/dcim/tables/devicetypes.py:88 -#: netbox/templates/dcim/devicetype.html:45 +#: dcim/tables/devicetypes.py:88 templates/dcim/devicetype.html:45 msgid "Full Depth" msgstr "Fuld dybde" -#: netbox/dcim/tables/devicetypes.py:98 +#: dcim/tables/devicetypes.py:98 msgid "U Height" msgstr "U Højde" -#: netbox/dcim/tables/devicetypes.py:113 netbox/dcim/tables/modules.py:26 -#: netbox/dcim/tables/racks.py:89 +#: dcim/tables/devicetypes.py:113 dcim/tables/modules.py:26 +#: dcim/tables/racks.py:89 msgid "Instances" msgstr "forekomster" -#: netbox/dcim/tables/devicetypes.py:116 netbox/dcim/views.py:982 -#: netbox/dcim/views.py:1221 netbox/dcim/views.py:1913 -#: netbox/netbox/navigation/menu.py:97 -#: netbox/templates/dcim/device/base.html:25 -#: netbox/templates/dcim/device_list.html:15 -#: netbox/templates/dcim/devicetype/base.html:22 -#: netbox/templates/dcim/module.html:22 -#: netbox/templates/dcim/moduletype/base.html:22 +#: dcim/tables/devicetypes.py:116 dcim/views.py:982 dcim/views.py:1221 +#: dcim/views.py:1913 netbox/navigation/menu.py:97 +#: templates/dcim/device/base.html:25 templates/dcim/device_list.html:15 +#: templates/dcim/devicetype/base.html:22 +#: templates/dcim/inc/moduletype_buttons.html:13 templates/dcim/module.html:22 msgid "Console Ports" msgstr "Konsolporte" -#: netbox/dcim/tables/devicetypes.py:119 netbox/dcim/views.py:997 -#: netbox/dcim/views.py:1236 netbox/dcim/views.py:1929 -#: netbox/netbox/navigation/menu.py:98 -#: netbox/templates/dcim/device/base.html:28 -#: netbox/templates/dcim/device_list.html:22 -#: netbox/templates/dcim/devicetype/base.html:25 -#: netbox/templates/dcim/module.html:25 -#: netbox/templates/dcim/moduletype/base.html:25 +#: dcim/tables/devicetypes.py:119 dcim/views.py:997 dcim/views.py:1236 +#: dcim/views.py:1929 netbox/navigation/menu.py:98 +#: templates/dcim/device/base.html:28 templates/dcim/device_list.html:22 +#: templates/dcim/devicetype/base.html:25 +#: templates/dcim/inc/moduletype_buttons.html:16 templates/dcim/module.html:25 msgid "Console Server Ports" msgstr "Konsolserverporte" -#: netbox/dcim/tables/devicetypes.py:122 netbox/dcim/views.py:1012 -#: netbox/dcim/views.py:1251 netbox/dcim/views.py:1945 -#: netbox/netbox/navigation/menu.py:99 -#: netbox/templates/dcim/device/base.html:31 -#: netbox/templates/dcim/device_list.html:29 -#: netbox/templates/dcim/devicetype/base.html:28 -#: netbox/templates/dcim/module.html:28 -#: netbox/templates/dcim/moduletype/base.html:28 +#: dcim/tables/devicetypes.py:122 dcim/views.py:1012 dcim/views.py:1251 +#: dcim/views.py:1945 netbox/navigation/menu.py:99 +#: templates/dcim/device/base.html:31 templates/dcim/device_list.html:29 +#: templates/dcim/devicetype/base.html:28 +#: templates/dcim/inc/moduletype_buttons.html:19 templates/dcim/module.html:28 msgid "Power Ports" msgstr "Strømstik" -#: netbox/dcim/tables/devicetypes.py:125 netbox/dcim/views.py:1027 -#: netbox/dcim/views.py:1266 netbox/dcim/views.py:1961 -#: netbox/netbox/navigation/menu.py:100 -#: netbox/templates/dcim/device/base.html:34 -#: netbox/templates/dcim/device_list.html:36 -#: netbox/templates/dcim/devicetype/base.html:31 -#: netbox/templates/dcim/module.html:31 -#: netbox/templates/dcim/moduletype/base.html:31 +#: dcim/tables/devicetypes.py:125 dcim/views.py:1027 dcim/views.py:1266 +#: dcim/views.py:1961 netbox/navigation/menu.py:100 +#: templates/dcim/device/base.html:34 templates/dcim/device_list.html:36 +#: templates/dcim/devicetype/base.html:31 +#: templates/dcim/inc/moduletype_buttons.html:22 templates/dcim/module.html:31 msgid "Power Outlets" msgstr "Strømudtag" -#: netbox/dcim/tables/devicetypes.py:131 netbox/dcim/views.py:1057 -#: netbox/dcim/views.py:1296 netbox/dcim/views.py:1999 -#: netbox/netbox/navigation/menu.py:95 -#: netbox/templates/dcim/device/base.html:40 -#: netbox/templates/dcim/devicetype/base.html:37 -#: netbox/templates/dcim/module.html:37 -#: netbox/templates/dcim/moduletype/base.html:37 +#: dcim/tables/devicetypes.py:131 dcim/views.py:1057 dcim/views.py:1296 +#: dcim/views.py:1999 netbox/navigation/menu.py:95 +#: templates/dcim/device/base.html:40 templates/dcim/devicetype/base.html:37 +#: templates/dcim/inc/moduletype_buttons.html:28 templates/dcim/module.html:37 msgid "Front Ports" msgstr "Frontporte" -#: netbox/dcim/tables/devicetypes.py:134 netbox/dcim/views.py:1072 -#: netbox/dcim/views.py:1311 netbox/dcim/views.py:2015 -#: netbox/netbox/navigation/menu.py:96 -#: netbox/templates/dcim/device/base.html:43 -#: netbox/templates/dcim/device_list.html:50 -#: netbox/templates/dcim/devicetype/base.html:40 -#: netbox/templates/dcim/module.html:40 -#: netbox/templates/dcim/moduletype/base.html:40 +#: dcim/tables/devicetypes.py:134 dcim/views.py:1072 dcim/views.py:1311 +#: dcim/views.py:2015 netbox/navigation/menu.py:96 +#: templates/dcim/device/base.html:43 templates/dcim/device_list.html:50 +#: templates/dcim/devicetype/base.html:40 +#: templates/dcim/inc/moduletype_buttons.html:31 templates/dcim/module.html:40 msgid "Rear Ports" msgstr "Bageste porte" -#: netbox/dcim/tables/devicetypes.py:137 netbox/dcim/views.py:1102 -#: netbox/dcim/views.py:2055 netbox/netbox/navigation/menu.py:102 -#: netbox/templates/dcim/device/base.html:49 -#: netbox/templates/dcim/device_list.html:57 -#: netbox/templates/dcim/devicetype/base.html:46 +#: dcim/tables/devicetypes.py:137 dcim/views.py:1102 dcim/views.py:2055 +#: netbox/navigation/menu.py:102 templates/dcim/device/base.html:49 +#: templates/dcim/device_list.html:57 templates/dcim/devicetype/base.html:46 msgid "Device Bays" msgstr "Enhedsbugter" -#: netbox/dcim/tables/devicetypes.py:140 netbox/dcim/views.py:1087 -#: netbox/dcim/views.py:1326 netbox/dcim/views.py:2035 -#: netbox/netbox/navigation/menu.py:101 -#: netbox/templates/dcim/device/base.html:46 -#: netbox/templates/dcim/device_list.html:64 -#: netbox/templates/dcim/devicetype/base.html:43 -#: netbox/templates/dcim/module.html:43 -#: netbox/templates/dcim/moduletype/base.html:43 +#: dcim/tables/devicetypes.py:140 dcim/views.py:1087 dcim/views.py:1326 +#: dcim/views.py:2035 netbox/navigation/menu.py:101 +#: templates/dcim/device/base.html:46 templates/dcim/device_list.html:64 +#: templates/dcim/devicetype/base.html:43 +#: templates/dcim/inc/moduletype_buttons.html:34 templates/dcim/module.html:43 msgid "Module Bays" msgstr "Modulbugter" -#: netbox/dcim/tables/power.py:36 netbox/netbox/navigation/menu.py:297 -#: netbox/templates/dcim/powerpanel.html:51 +#: dcim/tables/power.py:36 netbox/navigation/menu.py:297 +#: templates/dcim/powerpanel.html:51 msgid "Power Feeds" msgstr "Strømforsyninger" -#: netbox/dcim/tables/power.py:80 netbox/templates/dcim/powerfeed.html:99 +#: dcim/tables/power.py:80 templates/dcim/powerfeed.html:99 msgid "Max Utilization" msgstr "Maksimal udnyttelse" -#: netbox/dcim/tables/power.py:84 +#: dcim/tables/power.py:84 msgid "Available Power (VA)" msgstr "Tilgængelig effekt (VA)" -#: netbox/dcim/tables/racks.py:30 netbox/dcim/tables/sites.py:143 -#: netbox/netbox/navigation/menu.py:43 netbox/netbox/navigation/menu.py:47 -#: netbox/netbox/navigation/menu.py:49 +#: dcim/tables/racks.py:30 dcim/tables/sites.py:143 +#: netbox/navigation/menu.py:43 netbox/navigation/menu.py:47 +#: netbox/navigation/menu.py:49 msgid "Racks" msgstr "Racker" -#: netbox/dcim/tables/racks.py:63 netbox/dcim/tables/racks.py:142 -#: netbox/templates/dcim/device.html:318 -#: netbox/templates/dcim/inc/panels/racktype_dimensions.html:14 +#: dcim/tables/racks.py:63 dcim/tables/racks.py:142 +#: templates/dcim/device.html:318 +#: templates/dcim/inc/panels/racktype_dimensions.html:14 msgid "Height" msgstr "Højde" -#: netbox/dcim/tables/racks.py:67 netbox/dcim/tables/racks.py:165 -#: netbox/templates/dcim/inc/panels/racktype_dimensions.html:18 +#: dcim/tables/racks.py:67 dcim/tables/racks.py:165 +#: templates/dcim/inc/panels/racktype_dimensions.html:18 msgid "Outer Width" msgstr "Udvendig bredde" -#: netbox/dcim/tables/racks.py:71 netbox/dcim/tables/racks.py:169 -#: netbox/templates/dcim/inc/panels/racktype_dimensions.html:28 +#: dcim/tables/racks.py:71 dcim/tables/racks.py:169 +#: templates/dcim/inc/panels/racktype_dimensions.html:28 msgid "Outer Depth" msgstr "Ydre dybde" -#: netbox/dcim/tables/racks.py:79 netbox/dcim/tables/racks.py:177 +#: dcim/tables/racks.py:79 dcim/tables/racks.py:177 msgid "Max Weight" msgstr "Maks. Vægt" -#: netbox/dcim/tables/racks.py:154 +#: dcim/tables/racks.py:154 msgid "Space" msgstr "Rummet" -#: netbox/dcim/tables/sites.py:30 netbox/dcim/tables/sites.py:57 -#: netbox/extras/forms/filtersets.py:351 -#: netbox/extras/forms/model_forms.py:517 netbox/ipam/forms/bulk_edit.py:130 -#: netbox/ipam/forms/model_forms.py:153 netbox/ipam/tables/asn.py:66 -#: netbox/netbox/navigation/menu.py:15 netbox/netbox/navigation/menu.py:17 +#: dcim/tables/sites.py:30 dcim/tables/sites.py:57 +#: extras/forms/filtersets.py:351 extras/forms/model_forms.py:517 +#: ipam/forms/bulk_edit.py:131 ipam/forms/model_forms.py:153 +#: ipam/tables/asn.py:66 netbox/navigation/menu.py:15 +#: netbox/navigation/menu.py:17 msgid "Sites" msgstr "Områder" -#: netbox/dcim/tests/test_api.py:47 +#: dcim/tests/test_api.py:47 msgid "Test case must set peer_termination_type" msgstr "Testcase skal indstille peer_termination_type" -#: netbox/dcim/views.py:140 +#: dcim/views.py:140 #, python-brace-format msgid "Disconnected {count} {type}" msgstr "Afbrudt {count} {type}" -#: netbox/dcim/views.py:740 netbox/netbox/navigation/menu.py:51 +#: dcim/views.py:740 netbox/navigation/menu.py:51 msgid "Reservations" msgstr "Reservationer" -#: netbox/dcim/views.py:759 netbox/templates/dcim/location.html:90 -#: netbox/templates/dcim/site.html:140 +#: dcim/views.py:759 templates/dcim/location.html:90 +#: templates/dcim/site.html:140 msgid "Non-Racked Devices" msgstr "Enheder uden rack" -#: netbox/dcim/views.py:2088 netbox/extras/forms/model_forms.py:577 -#: netbox/templates/extras/configcontext.html:10 -#: netbox/virtualization/forms/model_forms.py:225 -#: netbox/virtualization/views.py:407 +#: dcim/views.py:2088 extras/forms/model_forms.py:577 +#: templates/extras/configcontext.html:10 +#: virtualization/forms/model_forms.py:225 virtualization/views.py:407 msgid "Config Context" msgstr "Konfigurationskontekst" -#: netbox/dcim/views.py:2098 netbox/virtualization/views.py:417 +#: dcim/views.py:2098 virtualization/views.py:417 msgid "Render Config" msgstr "Gengivelseskonfiguration" -#: netbox/dcim/views.py:2131 netbox/virtualization/views.py:450 +#: dcim/views.py:2131 virtualization/views.py:450 #, python-brace-format msgid "An error occurred while rendering the template: {error}" msgstr "Der opstod en fejl under gengivelse af skabelonen: {error}" -#: netbox/dcim/views.py:2149 netbox/extras/tables/tables.py:550 -#: netbox/netbox/navigation/menu.py:247 netbox/netbox/navigation/menu.py:249 -#: netbox/virtualization/views.py:180 +#: dcim/views.py:2149 extras/tables/tables.py:550 +#: netbox/navigation/menu.py:247 netbox/navigation/menu.py:249 +#: virtualization/views.py:180 msgid "Virtual Machines" msgstr "Virtuelle maskiner" -#: netbox/dcim/views.py:2897 +#: dcim/views.py:2897 #, python-brace-format msgid "Installed device {device} in bay {device_bay}." msgstr "Installeret enhed {device} i bugten {device_bay}." -#: netbox/dcim/views.py:2938 +#: dcim/views.py:2938 #, python-brace-format msgid "Removed device {device} from bay {device_bay}." msgstr "Fjernet enhed {device} fra bugten {device_bay}." -#: netbox/dcim/views.py:3044 netbox/ipam/tables/ip.py:234 +#: dcim/views.py:3044 ipam/tables/ip.py:234 msgid "Children" msgstr "Børn" -#: netbox/dcim/views.py:3510 +#: dcim/views.py:3510 #, python-brace-format msgid "Added member {device}" msgstr "Tilføjet medlem {device}" -#: netbox/dcim/views.py:3557 +#: dcim/views.py:3557 #, python-brace-format msgid "Unable to remove master device {device} from the virtual chassis." msgstr "Kan ikke fjerne masterenheden {device} fra det virtuelle chassis." -#: netbox/dcim/views.py:3570 +#: dcim/views.py:3570 #, python-brace-format msgid "Removed {device} from virtual chassis {chassis}" msgstr "Fjernet {device} fra virtuelt chassis {chassis}" -#: netbox/extras/api/customfields.py:89 +#: extras/api/customfields.py:89 #, python-brace-format msgid "Unknown related object(s): {name}" msgstr "Ukendt relateret objekt (er): {name}" -#: netbox/extras/api/serializers_/customfields.py:73 +#: extras/api/serializers_/customfields.py:73 msgid "Changing the type of custom fields is not supported." msgstr "Ændring af typen af brugerdefinerede felter understøttes ikke." -#: netbox/extras/api/serializers_/scripts.py:70 -#: netbox/extras/api/serializers_/scripts.py:75 +#: extras/api/serializers_/scripts.py:70 extras/api/serializers_/scripts.py:75 msgid "Scheduling is not enabled for this script." msgstr "Planlægning er ikke aktiveret for dette script." -#: netbox/extras/choices.py:30 netbox/extras/forms/misc.py:14 +#: extras/choices.py:30 extras/forms/misc.py:14 msgid "Text" msgstr "Tekst" -#: netbox/extras/choices.py:31 +#: extras/choices.py:31 msgid "Text (long)" msgstr "Tekst (lang)" -#: netbox/extras/choices.py:32 +#: extras/choices.py:32 msgid "Integer" msgstr "Heltal" -#: netbox/extras/choices.py:33 +#: extras/choices.py:33 msgid "Decimal" msgstr "Decimaltal" -#: netbox/extras/choices.py:34 +#: extras/choices.py:34 msgid "Boolean (true/false)" msgstr "Boolsk (sandt/falsk)" -#: netbox/extras/choices.py:35 +#: extras/choices.py:35 msgid "Date" msgstr "Dato" -#: netbox/extras/choices.py:36 +#: extras/choices.py:36 msgid "Date & time" msgstr "Dato & klokkeslæt" -#: netbox/extras/choices.py:38 +#: extras/choices.py:38 msgid "JSON" msgstr "JSON" -#: netbox/extras/choices.py:39 +#: extras/choices.py:39 msgid "Selection" msgstr "Udvælgelse" -#: netbox/extras/choices.py:40 +#: extras/choices.py:40 msgid "Multiple selection" msgstr "Flere valg" -#: netbox/extras/choices.py:42 +#: extras/choices.py:42 msgid "Multiple objects" msgstr "Flere objekter" -#: netbox/extras/choices.py:53 netbox/netbox/preferences.py:21 -#: netbox/templates/extras/customfield.html:78 netbox/vpn/choices.py:20 -#: netbox/wireless/choices.py:27 +#: extras/choices.py:53 netbox/preferences.py:21 +#: templates/extras/customfield.html:78 vpn/choices.py:20 +#: wireless/choices.py:27 msgid "Disabled" msgstr "Handicappede" -#: netbox/extras/choices.py:54 +#: extras/choices.py:54 msgid "Loose" msgstr "Løs" -#: netbox/extras/choices.py:55 +#: extras/choices.py:55 msgid "Exact" msgstr "Præcis" -#: netbox/extras/choices.py:66 +#: extras/choices.py:66 msgid "Always" msgstr "Altid" -#: netbox/extras/choices.py:67 +#: extras/choices.py:67 msgid "If set" msgstr "Hvis indstillet" -#: netbox/extras/choices.py:68 netbox/extras/choices.py:81 +#: extras/choices.py:68 extras/choices.py:81 msgid "Hidden" msgstr "Skjult" -#: netbox/extras/choices.py:79 +#: extras/choices.py:79 msgid "Yes" msgstr "Ja" -#: netbox/extras/choices.py:80 +#: extras/choices.py:80 msgid "No" msgstr "Nej" -#: netbox/extras/choices.py:108 netbox/templates/tenancy/contact.html:57 -#: netbox/tenancy/forms/bulk_edit.py:118 -#: netbox/wireless/forms/model_forms.py:168 +#: extras/choices.py:108 templates/tenancy/contact.html:57 +#: tenancy/forms/bulk_edit.py:118 wireless/forms/model_forms.py:168 msgid "Link" msgstr "Forbindelse" -#: netbox/extras/choices.py:124 +#: extras/choices.py:124 msgid "Newest" msgstr "Nyeste" -#: netbox/extras/choices.py:125 +#: extras/choices.py:125 msgid "Oldest" msgstr "Ældste" -#: netbox/extras/choices.py:126 +#: extras/choices.py:126 msgid "Alphabetical (A-Z)" msgstr "Alfabetisk (A-Z)" -#: netbox/extras/choices.py:127 +#: extras/choices.py:127 msgid "Alphabetical (Z-A)" msgstr "Alfabetisk (Z-A)" -#: netbox/extras/choices.py:144 netbox/extras/choices.py:167 +#: extras/choices.py:144 extras/choices.py:167 msgid "Info" msgstr "Info" -#: netbox/extras/choices.py:145 netbox/extras/choices.py:168 +#: extras/choices.py:145 extras/choices.py:168 msgid "Success" msgstr "Succes" -#: netbox/extras/choices.py:146 netbox/extras/choices.py:169 +#: extras/choices.py:146 extras/choices.py:169 msgid "Warning" msgstr "Advarsel" -#: netbox/extras/choices.py:147 +#: extras/choices.py:147 msgid "Danger" msgstr "Fare" -#: netbox/extras/choices.py:165 +#: extras/choices.py:165 msgid "Debug" msgstr "Fejlfinding" -#: netbox/extras/choices.py:166 netbox/netbox/choices.py:101 +#: extras/choices.py:166 netbox/choices.py:101 msgid "Default" msgstr "Standard" -#: netbox/extras/choices.py:170 +#: extras/choices.py:170 msgid "Failure" msgstr "Fejl" -#: netbox/extras/choices.py:186 +#: extras/choices.py:186 msgid "Hourly" msgstr "Hver time" -#: netbox/extras/choices.py:187 +#: extras/choices.py:187 msgid "12 hours" msgstr "12 timer" -#: netbox/extras/choices.py:188 +#: extras/choices.py:188 msgid "Daily" msgstr "Dagligt" -#: netbox/extras/choices.py:189 +#: extras/choices.py:189 msgid "Weekly" msgstr "Ugentlig" -#: netbox/extras/choices.py:190 +#: extras/choices.py:190 msgid "30 days" msgstr "30 dage" -#: netbox/extras/choices.py:226 -#: netbox/templates/dcim/virtualchassis_edit.html:107 -#: netbox/templates/generic/bulk_add_component.html:68 -#: netbox/templates/generic/object_edit.html:47 -#: netbox/templates/generic/object_edit.html:80 -#: netbox/templates/ipam/inc/ipaddress_edit_header.html:7 +#: extras/choices.py:226 templates/dcim/virtualchassis_edit.html:107 +#: templates/generic/bulk_add_component.html:68 +#: templates/generic/object_edit.html:47 templates/generic/object_edit.html:80 +#: templates/ipam/inc/ipaddress_edit_header.html:7 msgid "Create" msgstr "Opret" -#: netbox/extras/choices.py:227 +#: extras/choices.py:227 msgid "Update" msgstr "Opdatere" -#: netbox/extras/choices.py:228 -#: netbox/templates/circuits/inc/circuit_termination.html:23 -#: netbox/templates/dcim/inc/panels/inventory_items.html:37 -#: netbox/templates/dcim/moduletype/component_templates.html:23 -#: netbox/templates/dcim/powerpanel.html:66 -#: netbox/templates/extras/script_list.html:35 -#: netbox/templates/generic/bulk_delete.html:20 -#: netbox/templates/generic/bulk_delete.html:66 -#: netbox/templates/generic/object_delete.html:19 -#: netbox/templates/htmx/delete_form.html:57 -#: netbox/templates/ipam/inc/panels/fhrp_groups.html:48 -#: netbox/templates/users/objectpermission.html:46 -#: netbox/utilities/templates/buttons/delete.html:11 +#: extras/choices.py:228 templates/circuits/inc/circuit_termination.html:23 +#: templates/dcim/inc/panels/inventory_items.html:37 +#: templates/dcim/powerpanel.html:66 templates/extras/script_list.html:35 +#: templates/generic/bulk_delete.html:20 templates/generic/bulk_delete.html:66 +#: templates/generic/object_delete.html:19 templates/htmx/delete_form.html:57 +#: templates/ipam/inc/panels/fhrp_groups.html:48 +#: templates/users/objectpermission.html:46 +#: utilities/templates/buttons/delete.html:11 msgid "Delete" msgstr "Slet" -#: netbox/extras/choices.py:252 netbox/netbox/choices.py:57 -#: netbox/netbox/choices.py:102 +#: extras/choices.py:252 netbox/choices.py:57 netbox/choices.py:102 msgid "Blue" msgstr "Blå" -#: netbox/extras/choices.py:253 netbox/netbox/choices.py:56 -#: netbox/netbox/choices.py:103 +#: extras/choices.py:253 netbox/choices.py:56 netbox/choices.py:103 msgid "Indigo" msgstr "indigo" -#: netbox/extras/choices.py:254 netbox/netbox/choices.py:54 -#: netbox/netbox/choices.py:104 +#: extras/choices.py:254 netbox/choices.py:54 netbox/choices.py:104 msgid "Purple" msgstr "Lilla" -#: netbox/extras/choices.py:255 netbox/netbox/choices.py:51 -#: netbox/netbox/choices.py:105 +#: extras/choices.py:255 netbox/choices.py:51 netbox/choices.py:105 msgid "Pink" msgstr "Lyserød" -#: netbox/extras/choices.py:256 netbox/netbox/choices.py:50 -#: netbox/netbox/choices.py:106 +#: extras/choices.py:256 netbox/choices.py:50 netbox/choices.py:106 msgid "Red" msgstr "Rød" -#: netbox/extras/choices.py:257 netbox/netbox/choices.py:68 -#: netbox/netbox/choices.py:107 +#: extras/choices.py:257 netbox/choices.py:68 netbox/choices.py:107 msgid "Orange" msgstr "orange" -#: netbox/extras/choices.py:258 netbox/netbox/choices.py:66 -#: netbox/netbox/choices.py:108 +#: extras/choices.py:258 netbox/choices.py:66 netbox/choices.py:108 msgid "Yellow" msgstr "Gul" -#: netbox/extras/choices.py:259 netbox/netbox/choices.py:63 -#: netbox/netbox/choices.py:109 +#: extras/choices.py:259 netbox/choices.py:63 netbox/choices.py:109 msgid "Green" msgstr "Grøn" -#: netbox/extras/choices.py:260 netbox/netbox/choices.py:60 -#: netbox/netbox/choices.py:110 +#: extras/choices.py:260 netbox/choices.py:60 netbox/choices.py:110 msgid "Teal" msgstr "krikand" -#: netbox/extras/choices.py:261 netbox/netbox/choices.py:59 -#: netbox/netbox/choices.py:111 +#: extras/choices.py:261 netbox/choices.py:59 netbox/choices.py:111 msgid "Cyan" msgstr "Cyan" -#: netbox/extras/choices.py:262 netbox/netbox/choices.py:112 +#: extras/choices.py:262 netbox/choices.py:112 msgid "Gray" msgstr "Grå" -#: netbox/extras/choices.py:263 netbox/netbox/choices.py:74 -#: netbox/netbox/choices.py:113 +#: extras/choices.py:263 netbox/choices.py:74 netbox/choices.py:113 msgid "Black" msgstr "Sort" -#: netbox/extras/choices.py:264 netbox/netbox/choices.py:75 -#: netbox/netbox/choices.py:114 +#: extras/choices.py:264 netbox/choices.py:75 netbox/choices.py:114 msgid "White" msgstr "Hvid" -#: netbox/extras/choices.py:279 netbox/extras/forms/model_forms.py:353 -#: netbox/extras/forms/model_forms.py:430 -#: netbox/templates/extras/webhook.html:10 +#: extras/choices.py:279 extras/forms/model_forms.py:353 +#: extras/forms/model_forms.py:430 templates/extras/webhook.html:10 msgid "Webhook" msgstr "Webhook" -#: netbox/extras/choices.py:280 netbox/extras/forms/model_forms.py:418 -#: netbox/templates/extras/script/base.html:29 +#: extras/choices.py:280 extras/forms/model_forms.py:418 +#: templates/extras/script/base.html:29 msgid "Script" msgstr "Manuskript" -#: netbox/extras/choices.py:281 +#: extras/choices.py:281 msgid "Notification" msgstr "Meddelelse" -#: netbox/extras/conditions.py:54 +#: extras/conditions.py:54 #, python-brace-format msgid "Unknown operator: {op}. Must be one of: {operators}" msgstr "Ukendt operatør: {op}. Skal være en af: {operators}" -#: netbox/extras/conditions.py:58 +#: extras/conditions.py:58 #, python-brace-format msgid "Unsupported value type: {value}" msgstr "Ikke-understøttet værditype: {value}" -#: netbox/extras/conditions.py:60 +#: extras/conditions.py:60 #, python-brace-format msgid "Invalid type for {op} operation: {value}" msgstr "Ugyldig type for {op} Betjening: {value}" -#: netbox/extras/conditions.py:137 +#: extras/conditions.py:137 #, python-brace-format msgid "Ruleset must be a dictionary, not {ruleset}." msgstr "Regelsæt skal være en ordbog, ikke {ruleset}." -#: netbox/extras/conditions.py:142 +#: extras/conditions.py:142 msgid "Invalid logic type: must be 'AND' or 'OR'. Please check documentation." msgstr "" "Ugyldig logiktype: skal være 'OG' eller 'OR'. Tjek venligst dokumentationen." -#: netbox/extras/conditions.py:154 +#: extras/conditions.py:154 msgid "Incorrect key(s) informed. Please check documentation." msgstr "Forkert nøgle (r) informeret. Tjek venligst dokumentationen." -#: netbox/extras/dashboard/forms.py:38 +#: extras/dashboard/forms.py:38 msgid "Widget type" msgstr "Widgettype" -#: netbox/extras/dashboard/utils.py:36 +#: extras/dashboard/utils.py:36 #, python-brace-format msgid "Unregistered widget class: {name}" msgstr "Uregistreret widget klasse: {name}" -#: netbox/extras/dashboard/widgets.py:125 +#: extras/dashboard/widgets.py:125 #, python-brace-format msgid "{class_name} must define a render() method." msgstr "{class_name} skal definere en render () -metode." -#: netbox/extras/dashboard/widgets.py:144 +#: extras/dashboard/widgets.py:144 msgid "Note" msgstr "Bemærk" -#: netbox/extras/dashboard/widgets.py:145 +#: extras/dashboard/widgets.py:145 msgid "Display some arbitrary custom content. Markdown is supported." msgstr "Vis noget vilkårligt brugerdefineret indhold. Markdown understøttes." -#: netbox/extras/dashboard/widgets.py:158 +#: extras/dashboard/widgets.py:158 msgid "Object Counts" msgstr "Objekttællinger" -#: netbox/extras/dashboard/widgets.py:159 +#: extras/dashboard/widgets.py:159 msgid "" "Display a set of NetBox models and the number of objects created for each " "type." @@ -7421,288 +6910,266 @@ msgstr "" "Vis et sæt NetBox-modeller og antallet af objekter, der er oprettet for hver" " type." -#: netbox/extras/dashboard/widgets.py:169 +#: extras/dashboard/widgets.py:169 msgid "Filters to apply when counting the number of objects" msgstr "Filtre, der skal anvendes, når antallet af objekter tælles" -#: netbox/extras/dashboard/widgets.py:177 +#: extras/dashboard/widgets.py:177 msgid "Invalid format. Object filters must be passed as a dictionary." msgstr "Ugyldigt format. Objektfiltre skal sendes som en ordbog." -#: netbox/extras/dashboard/widgets.py:208 +#: extras/dashboard/widgets.py:208 msgid "Object List" msgstr "Objektliste" -#: netbox/extras/dashboard/widgets.py:209 +#: extras/dashboard/widgets.py:209 msgid "Display an arbitrary list of objects." msgstr "Vis en vilkårlig liste over objekter." -#: netbox/extras/dashboard/widgets.py:222 +#: extras/dashboard/widgets.py:222 msgid "The default number of objects to display" msgstr "Standardantallet af objekter, der skal vises" -#: netbox/extras/dashboard/widgets.py:234 +#: extras/dashboard/widgets.py:234 msgid "Invalid format. URL parameters must be passed as a dictionary." msgstr "Ugyldigt format. URL-parametre skal sendes som en ordbog." -#: netbox/extras/dashboard/widgets.py:274 +#: extras/dashboard/widgets.py:274 msgid "RSS Feed" msgstr "RSS-feed" -#: netbox/extras/dashboard/widgets.py:279 +#: extras/dashboard/widgets.py:279 msgid "Embed an RSS feed from an external website." msgstr "Indlejr et RSS-feed fra en ekstern hjemmeside." -#: netbox/extras/dashboard/widgets.py:286 +#: extras/dashboard/widgets.py:286 msgid "Feed URL" msgstr "Foderwebadresse" -#: netbox/extras/dashboard/widgets.py:291 +#: extras/dashboard/widgets.py:291 msgid "The maximum number of objects to display" msgstr "Det maksimale antal objekter, der skal vises" -#: netbox/extras/dashboard/widgets.py:296 +#: extras/dashboard/widgets.py:296 msgid "How long to stored the cached content (in seconds)" msgstr "Hvor længe det cachelagrede indhold skal gemmes (i sekunder)" -#: netbox/extras/dashboard/widgets.py:348 -#: netbox/templates/account/base.html:10 -#: netbox/templates/account/bookmarks.html:7 -#: netbox/templates/inc/user_menu.html:48 +#: extras/dashboard/widgets.py:348 templates/account/base.html:10 +#: templates/account/bookmarks.html:7 templates/inc/user_menu.html:48 msgid "Bookmarks" msgstr "Bogmærker" -#: netbox/extras/dashboard/widgets.py:352 +#: extras/dashboard/widgets.py:352 msgid "Show your personal bookmarks" msgstr "Vis dine personlige bogmærker" -#: netbox/extras/events.py:147 +#: extras/events.py:147 #, python-brace-format msgid "Unknown action type for an event rule: {action_type}" msgstr "Ukendt handlingstype for en hændelsesregel: {action_type}" -#: netbox/extras/events.py:192 +#: extras/events.py:192 #, python-brace-format msgid "Cannot import events pipeline {name} error: {error}" msgstr "Kan ikke importere hændelsespipeline {name} fejl: {error}" -#: netbox/extras/filtersets.py:45 +#: extras/filtersets.py:45 msgid "Script module (ID)" msgstr "Script-modul (ID)" -#: netbox/extras/filtersets.py:254 netbox/extras/filtersets.py:637 -#: netbox/extras/filtersets.py:665 +#: extras/filtersets.py:254 extras/filtersets.py:637 extras/filtersets.py:665 msgid "Data file (ID)" msgstr "Datafil (ID)" -#: netbox/extras/filtersets.py:370 netbox/users/filtersets.py:68 -#: netbox/users/filtersets.py:191 +#: extras/filtersets.py:370 users/filtersets.py:68 users/filtersets.py:191 msgid "Group (name)" msgstr "Gruppe (navn)" -#: netbox/extras/filtersets.py:574 -#: netbox/virtualization/forms/filtersets.py:118 +#: extras/filtersets.py:574 virtualization/forms/filtersets.py:118 msgid "Cluster type" msgstr "Klyngetype" -#: netbox/extras/filtersets.py:580 netbox/virtualization/filtersets.py:95 -#: netbox/virtualization/filtersets.py:147 +#: extras/filtersets.py:580 virtualization/filtersets.py:95 +#: virtualization/filtersets.py:147 msgid "Cluster type (slug)" msgstr "Clustertype (slug)" -#: netbox/extras/filtersets.py:601 netbox/tenancy/forms/forms.py:16 -#: netbox/tenancy/forms/forms.py:39 +#: extras/filtersets.py:601 tenancy/forms/forms.py:16 +#: tenancy/forms/forms.py:39 msgid "Tenant group" msgstr "Lejergruppe" -#: netbox/extras/filtersets.py:607 netbox/tenancy/filtersets.py:188 -#: netbox/tenancy/filtersets.py:208 +#: extras/filtersets.py:607 tenancy/filtersets.py:188 +#: tenancy/filtersets.py:208 msgid "Tenant group (slug)" msgstr "Lejergruppe (slug)" -#: netbox/extras/filtersets.py:623 netbox/extras/forms/model_forms.py:495 -#: netbox/templates/extras/tag.html:11 +#: extras/filtersets.py:623 extras/forms/model_forms.py:495 +#: templates/extras/tag.html:11 msgid "Tag" msgstr "Mærke" -#: netbox/extras/filtersets.py:629 +#: extras/filtersets.py:629 msgid "Tag (slug)" msgstr "Tag (slug)" -#: netbox/extras/filtersets.py:689 netbox/extras/forms/filtersets.py:429 +#: extras/filtersets.py:689 extras/forms/filtersets.py:429 msgid "Has local config context data" msgstr "Har lokale konfigurationskontekstdata" -#: netbox/extras/forms/bulk_edit.py:35 netbox/extras/forms/filtersets.py:60 +#: extras/forms/bulk_edit.py:35 extras/forms/filtersets.py:60 msgid "Group name" msgstr "Gruppenavn" -#: netbox/extras/forms/bulk_edit.py:43 netbox/extras/forms/filtersets.py:68 -#: netbox/extras/tables/tables.py:65 -#: netbox/templates/extras/customfield.html:38 -#: netbox/templates/generic/bulk_import.html:118 +#: extras/forms/bulk_edit.py:43 extras/forms/filtersets.py:68 +#: extras/tables/tables.py:65 templates/extras/customfield.html:38 +#: templates/generic/bulk_import.html:118 msgid "Required" msgstr "Påkrævet" -#: netbox/extras/forms/bulk_edit.py:48 netbox/extras/forms/filtersets.py:75 +#: extras/forms/bulk_edit.py:48 extras/forms/filtersets.py:75 msgid "Must be unique" msgstr "Skal være unik" -#: netbox/extras/forms/bulk_edit.py:61 netbox/extras/forms/bulk_import.py:60 -#: netbox/extras/forms/filtersets.py:89 -#: netbox/extras/models/customfields.py:209 +#: extras/forms/bulk_edit.py:61 extras/forms/bulk_import.py:60 +#: extras/forms/filtersets.py:89 extras/models/customfields.py:209 msgid "UI visible" msgstr "UI synlig" -#: netbox/extras/forms/bulk_edit.py:66 netbox/extras/forms/bulk_import.py:66 -#: netbox/extras/forms/filtersets.py:94 -#: netbox/extras/models/customfields.py:216 +#: extras/forms/bulk_edit.py:66 extras/forms/bulk_import.py:66 +#: extras/forms/filtersets.py:94 extras/models/customfields.py:216 msgid "UI editable" msgstr "Brugergrænseflade redigerbar" -#: netbox/extras/forms/bulk_edit.py:71 netbox/extras/forms/filtersets.py:97 +#: extras/forms/bulk_edit.py:71 extras/forms/filtersets.py:97 msgid "Is cloneable" msgstr "Kan klones" -#: netbox/extras/forms/bulk_edit.py:76 netbox/extras/forms/filtersets.py:104 +#: extras/forms/bulk_edit.py:76 extras/forms/filtersets.py:104 msgid "Minimum value" msgstr "Minimumsværdi" -#: netbox/extras/forms/bulk_edit.py:80 netbox/extras/forms/filtersets.py:108 +#: extras/forms/bulk_edit.py:80 extras/forms/filtersets.py:108 msgid "Maximum value" msgstr "Maksimal værdi" -#: netbox/extras/forms/bulk_edit.py:84 netbox/extras/forms/filtersets.py:112 +#: extras/forms/bulk_edit.py:84 extras/forms/filtersets.py:112 msgid "Validation regex" msgstr "Validering regex" -#: netbox/extras/forms/bulk_edit.py:91 netbox/extras/forms/filtersets.py:46 -#: netbox/extras/forms/model_forms.py:76 -#: netbox/templates/extras/customfield.html:70 +#: extras/forms/bulk_edit.py:91 extras/forms/filtersets.py:46 +#: extras/forms/model_forms.py:76 templates/extras/customfield.html:70 msgid "Behavior" msgstr "Adfærd" -#: netbox/extras/forms/bulk_edit.py:128 netbox/extras/forms/filtersets.py:149 +#: extras/forms/bulk_edit.py:128 extras/forms/filtersets.py:149 msgid "New window" msgstr "Nyt vindue" -#: netbox/extras/forms/bulk_edit.py:137 +#: extras/forms/bulk_edit.py:137 msgid "Button class" msgstr "Knapklasse" -#: netbox/extras/forms/bulk_edit.py:154 netbox/extras/forms/filtersets.py:187 -#: netbox/extras/models/models.py:409 +#: extras/forms/bulk_edit.py:154 extras/forms/filtersets.py:187 +#: extras/models/models.py:409 msgid "MIME type" msgstr "MIME-type" -#: netbox/extras/forms/bulk_edit.py:159 netbox/extras/forms/filtersets.py:190 +#: extras/forms/bulk_edit.py:159 extras/forms/filtersets.py:190 msgid "File extension" msgstr "Filudvidelse" -#: netbox/extras/forms/bulk_edit.py:164 netbox/extras/forms/filtersets.py:194 +#: extras/forms/bulk_edit.py:164 extras/forms/filtersets.py:194 msgid "As attachment" msgstr "Som vedhæftet fil" -#: netbox/extras/forms/bulk_edit.py:192 netbox/extras/forms/filtersets.py:236 -#: netbox/extras/tables/tables.py:256 -#: netbox/templates/extras/savedfilter.html:29 +#: extras/forms/bulk_edit.py:192 extras/forms/filtersets.py:236 +#: extras/tables/tables.py:256 templates/extras/savedfilter.html:29 msgid "Shared" msgstr "Delt" -#: netbox/extras/forms/bulk_edit.py:215 netbox/extras/forms/filtersets.py:265 -#: netbox/extras/models/models.py:174 +#: extras/forms/bulk_edit.py:215 extras/forms/filtersets.py:265 +#: extras/models/models.py:174 msgid "HTTP method" msgstr "HTTP-metode" -#: netbox/extras/forms/bulk_edit.py:219 netbox/extras/forms/filtersets.py:259 -#: netbox/templates/extras/webhook.html:30 +#: extras/forms/bulk_edit.py:219 extras/forms/filtersets.py:259 +#: templates/extras/webhook.html:30 msgid "Payload URL" msgstr "Nyttelast-URL" -#: netbox/extras/forms/bulk_edit.py:224 netbox/extras/models/models.py:214 +#: extras/forms/bulk_edit.py:224 extras/models/models.py:214 msgid "SSL verification" msgstr "SSL verifikation" -#: netbox/extras/forms/bulk_edit.py:227 -#: netbox/templates/extras/webhook.html:38 +#: extras/forms/bulk_edit.py:227 templates/extras/webhook.html:38 msgid "Secret" msgstr "Hemmelighed" -#: netbox/extras/forms/bulk_edit.py:232 +#: extras/forms/bulk_edit.py:232 msgid "CA file path" msgstr "CA-filsti" -#: netbox/extras/forms/bulk_edit.py:253 netbox/extras/forms/bulk_import.py:192 -#: netbox/extras/forms/model_forms.py:377 +#: extras/forms/bulk_edit.py:253 extras/forms/bulk_import.py:192 +#: extras/forms/model_forms.py:377 msgid "Event types" msgstr "Begivenhedstyper" -#: netbox/extras/forms/bulk_edit.py:293 +#: extras/forms/bulk_edit.py:293 msgid "Is active" msgstr "Er aktiv" -#: netbox/extras/forms/bulk_import.py:37 -#: netbox/extras/forms/bulk_import.py:118 -#: netbox/extras/forms/bulk_import.py:139 -#: netbox/extras/forms/bulk_import.py:162 -#: netbox/extras/forms/bulk_import.py:186 -#: netbox/extras/forms/filtersets.py:137 netbox/extras/forms/filtersets.py:224 -#: netbox/extras/forms/model_forms.py:47 -#: netbox/extras/forms/model_forms.py:205 -#: netbox/extras/forms/model_forms.py:237 -#: netbox/extras/forms/model_forms.py:278 -#: netbox/extras/forms/model_forms.py:372 -#: netbox/extras/forms/model_forms.py:489 -#: netbox/users/forms/model_forms.py:276 +#: extras/forms/bulk_import.py:37 extras/forms/bulk_import.py:118 +#: extras/forms/bulk_import.py:139 extras/forms/bulk_import.py:162 +#: extras/forms/bulk_import.py:186 extras/forms/filtersets.py:137 +#: extras/forms/filtersets.py:224 extras/forms/model_forms.py:47 +#: extras/forms/model_forms.py:205 extras/forms/model_forms.py:237 +#: extras/forms/model_forms.py:278 extras/forms/model_forms.py:372 +#: extras/forms/model_forms.py:489 users/forms/model_forms.py:276 msgid "Object types" msgstr "Objekttyper" -#: netbox/extras/forms/bulk_import.py:39 -#: netbox/extras/forms/bulk_import.py:120 -#: netbox/extras/forms/bulk_import.py:141 -#: netbox/extras/forms/bulk_import.py:164 -#: netbox/extras/forms/bulk_import.py:188 -#: netbox/tenancy/forms/bulk_import.py:96 +#: extras/forms/bulk_import.py:39 extras/forms/bulk_import.py:120 +#: extras/forms/bulk_import.py:141 extras/forms/bulk_import.py:164 +#: extras/forms/bulk_import.py:188 tenancy/forms/bulk_import.py:96 msgid "One or more assigned object types" msgstr "En eller flere tildelte objekttyper" -#: netbox/extras/forms/bulk_import.py:44 +#: extras/forms/bulk_import.py:44 msgid "Field data type (e.g. text, integer, etc.)" msgstr "Feltdatatype (f.eks. tekst, heltal osv.)" -#: netbox/extras/forms/bulk_import.py:47 netbox/extras/forms/filtersets.py:208 -#: netbox/extras/forms/filtersets.py:281 -#: netbox/extras/forms/model_forms.py:304 -#: netbox/extras/forms/model_forms.py:341 -#: netbox/tenancy/forms/filtersets.py:92 +#: extras/forms/bulk_import.py:47 extras/forms/filtersets.py:208 +#: extras/forms/filtersets.py:281 extras/forms/model_forms.py:304 +#: extras/forms/model_forms.py:341 tenancy/forms/filtersets.py:92 msgid "Object type" msgstr "Objekttype" -#: netbox/extras/forms/bulk_import.py:50 +#: extras/forms/bulk_import.py:50 msgid "Object type (for object or multi-object fields)" msgstr "Objekttype (for objekt- eller flerobjektfelter)" -#: netbox/extras/forms/bulk_import.py:53 netbox/extras/forms/filtersets.py:84 +#: extras/forms/bulk_import.py:53 extras/forms/filtersets.py:84 msgid "Choice set" msgstr "Valgsæt" -#: netbox/extras/forms/bulk_import.py:57 +#: extras/forms/bulk_import.py:57 msgid "Choice set (for selection fields)" msgstr "Valgsæt (til markeringsfelter)" -#: netbox/extras/forms/bulk_import.py:63 +#: extras/forms/bulk_import.py:63 msgid "Whether the custom field is displayed in the UI" msgstr "Om det brugerdefinerede felt vises i brugergrænsefladen" -#: netbox/extras/forms/bulk_import.py:69 +#: extras/forms/bulk_import.py:69 msgid "Whether the custom field is editable in the UI" msgstr "Om det brugerdefinerede felt kan redigeres i brugergrænsefladen" -#: netbox/extras/forms/bulk_import.py:85 +#: extras/forms/bulk_import.py:85 msgid "The base set of predefined choices to use (if any)" msgstr "Basissættet af foruddefinerede valg, der skal bruges (hvis nogen)" -#: netbox/extras/forms/bulk_import.py:91 +#: extras/forms/bulk_import.py:91 msgid "" "Quoted string of comma-separated field choices with optional labels " "separated by colon: \"choice1:First Choice,choice2:Second Choice\"" @@ -7710,200 +7177,184 @@ msgstr "" "Citeret streng med kommaseparerede feltvalg med valgfri etiketter adskilt af" " kolon: „Valg1:Første valg, valg2:andet valg“" -#: netbox/extras/forms/bulk_import.py:123 netbox/extras/models/models.py:323 +#: extras/forms/bulk_import.py:123 extras/models/models.py:323 msgid "button class" msgstr "knapklasse" -#: netbox/extras/forms/bulk_import.py:126 netbox/extras/models/models.py:327 +#: extras/forms/bulk_import.py:126 extras/models/models.py:327 msgid "" "The class of the first link in a group will be used for the dropdown button" msgstr "" "Klassen for det første link i en gruppe vil blive brugt til rullemenuen" -#: netbox/extras/forms/bulk_import.py:193 +#: extras/forms/bulk_import.py:193 msgid "The event type(s) which will trigger this rule" msgstr "Hændelsestype (r), der udløser denne regel" -#: netbox/extras/forms/bulk_import.py:196 +#: extras/forms/bulk_import.py:196 msgid "Action object" msgstr "Handlingsobjekt" -#: netbox/extras/forms/bulk_import.py:198 +#: extras/forms/bulk_import.py:198 msgid "Webhook name or script as dotted path module.Class" msgstr "Webhook-navn eller script som stiplet sti module.Class" -#: netbox/extras/forms/bulk_import.py:219 +#: extras/forms/bulk_import.py:219 #, python-brace-format msgid "Webhook {name} not found" msgstr "Webhook {name} ikke fundet" -#: netbox/extras/forms/bulk_import.py:228 +#: extras/forms/bulk_import.py:228 #, python-brace-format msgid "Script {name} not found" msgstr "Manuskript {name} ikke fundet" -#: netbox/extras/forms/bulk_import.py:244 +#: extras/forms/bulk_import.py:244 msgid "Assigned object type" msgstr "Tildelt objekttype" -#: netbox/extras/forms/bulk_import.py:249 +#: extras/forms/bulk_import.py:249 msgid "The classification of entry" msgstr "Klassificering af indrejse" -#: netbox/extras/forms/bulk_import.py:261 -#: netbox/extras/forms/model_forms.py:320 netbox/netbox/navigation/menu.py:390 -#: netbox/templates/extras/notificationgroup.html:41 -#: netbox/templates/users/group.html:29 netbox/users/forms/model_forms.py:236 -#: netbox/users/forms/model_forms.py:248 netbox/users/forms/model_forms.py:300 -#: netbox/users/tables.py:102 +#: extras/forms/bulk_import.py:261 extras/forms/model_forms.py:320 +#: netbox/navigation/menu.py:390 templates/extras/notificationgroup.html:41 +#: templates/users/group.html:29 users/forms/model_forms.py:236 +#: users/forms/model_forms.py:248 users/forms/model_forms.py:300 +#: users/tables.py:102 msgid "Users" msgstr "Brugere" -#: netbox/extras/forms/bulk_import.py:265 +#: extras/forms/bulk_import.py:265 msgid "User names separated by commas, encased with double quotes" msgstr "Brugernavne adskilt af kommaer, indkapslet med dobbelte anførselstegn" -#: netbox/extras/forms/bulk_import.py:268 -#: netbox/extras/forms/model_forms.py:315 netbox/netbox/navigation/menu.py:410 -#: netbox/templates/extras/notificationgroup.html:31 -#: netbox/users/forms/model_forms.py:181 netbox/users/forms/model_forms.py:193 -#: netbox/users/forms/model_forms.py:305 netbox/users/tables.py:35 -#: netbox/users/tables.py:106 +#: extras/forms/bulk_import.py:268 extras/forms/model_forms.py:315 +#: netbox/navigation/menu.py:410 templates/extras/notificationgroup.html:31 +#: users/forms/model_forms.py:181 users/forms/model_forms.py:193 +#: users/forms/model_forms.py:305 users/tables.py:35 users/tables.py:106 msgid "Groups" msgstr "Grupper" -#: netbox/extras/forms/bulk_import.py:272 +#: extras/forms/bulk_import.py:272 msgid "Group names separated by commas, encased with double quotes" msgstr "Gruppenavne adskilt af kommaer, indkapslet med dobbelte anførselstegn" -#: netbox/extras/forms/filtersets.py:52 netbox/extras/forms/model_forms.py:56 +#: extras/forms/filtersets.py:52 extras/forms/model_forms.py:56 msgid "Related object type" msgstr "Relateret objekttype" -#: netbox/extras/forms/filtersets.py:57 +#: extras/forms/filtersets.py:57 msgid "Field type" msgstr "Felttype" -#: netbox/extras/forms/filtersets.py:120 -#: netbox/extras/forms/model_forms.py:157 netbox/extras/tables/tables.py:91 -#: netbox/templates/generic/bulk_import.html:154 +#: extras/forms/filtersets.py:120 extras/forms/model_forms.py:157 +#: extras/tables/tables.py:91 templates/generic/bulk_import.html:154 msgid "Choices" msgstr "Valg" -#: netbox/extras/forms/filtersets.py:164 netbox/extras/forms/filtersets.py:319 -#: netbox/extras/forms/filtersets.py:408 -#: netbox/extras/forms/model_forms.py:572 netbox/templates/core/job.html:96 -#: netbox/templates/extras/eventrule.html:84 +#: extras/forms/filtersets.py:164 extras/forms/filtersets.py:319 +#: extras/forms/filtersets.py:408 extras/forms/model_forms.py:572 +#: templates/core/job.html:96 templates/extras/eventrule.html:84 msgid "Data" msgstr "Data" -#: netbox/extras/forms/filtersets.py:175 netbox/extras/forms/filtersets.py:333 -#: netbox/extras/forms/filtersets.py:418 netbox/netbox/choices.py:130 -#: netbox/utilities/forms/bulk_import.py:26 +#: extras/forms/filtersets.py:175 extras/forms/filtersets.py:333 +#: extras/forms/filtersets.py:418 netbox/choices.py:130 +#: utilities/forms/bulk_import.py:26 msgid "Data file" msgstr "Datafiler" -#: netbox/extras/forms/filtersets.py:183 +#: extras/forms/filtersets.py:183 msgid "Content types" msgstr "Indholdstyper" -#: netbox/extras/forms/filtersets.py:255 netbox/extras/models/models.py:179 +#: extras/forms/filtersets.py:255 extras/models/models.py:179 msgid "HTTP content type" msgstr "HTTP-indholdstype" -#: netbox/extras/forms/filtersets.py:286 +#: extras/forms/filtersets.py:286 msgid "Event type" msgstr "Begivenhedstype" -#: netbox/extras/forms/filtersets.py:291 +#: extras/forms/filtersets.py:291 msgid "Action type" msgstr "Handlingstype" -#: netbox/extras/forms/filtersets.py:307 +#: extras/forms/filtersets.py:307 msgid "Tagged object type" msgstr "Tagget objekttype" -#: netbox/extras/forms/filtersets.py:312 +#: extras/forms/filtersets.py:312 msgid "Allowed object type" msgstr "Tilladt objekttype" -#: netbox/extras/forms/filtersets.py:341 -#: netbox/extras/forms/model_forms.py:507 netbox/netbox/navigation/menu.py:18 +#: extras/forms/filtersets.py:341 extras/forms/model_forms.py:507 +#: netbox/navigation/menu.py:18 msgid "Regions" msgstr "Regioner" -#: netbox/extras/forms/filtersets.py:346 -#: netbox/extras/forms/model_forms.py:512 +#: extras/forms/filtersets.py:346 extras/forms/model_forms.py:512 msgid "Site groups" msgstr "Områdegrupper" -#: netbox/extras/forms/filtersets.py:356 -#: netbox/extras/forms/model_forms.py:522 netbox/netbox/navigation/menu.py:20 -#: netbox/templates/dcim/site.html:127 +#: extras/forms/filtersets.py:356 extras/forms/model_forms.py:522 +#: netbox/navigation/menu.py:20 templates/dcim/site.html:127 msgid "Locations" msgstr "Steder" -#: netbox/extras/forms/filtersets.py:361 -#: netbox/extras/forms/model_forms.py:527 +#: extras/forms/filtersets.py:361 extras/forms/model_forms.py:527 msgid "Device types" msgstr "Enhedstyper" -#: netbox/extras/forms/filtersets.py:366 -#: netbox/extras/forms/model_forms.py:532 +#: extras/forms/filtersets.py:366 extras/forms/model_forms.py:532 msgid "Roles" msgstr "Roller" -#: netbox/extras/forms/filtersets.py:376 -#: netbox/extras/forms/model_forms.py:542 +#: extras/forms/filtersets.py:376 extras/forms/model_forms.py:542 msgid "Cluster types" msgstr "Klyngetyper" -#: netbox/extras/forms/filtersets.py:381 -#: netbox/extras/forms/model_forms.py:547 +#: extras/forms/filtersets.py:381 extras/forms/model_forms.py:547 msgid "Cluster groups" msgstr "Klyngegrupper" -#: netbox/extras/forms/filtersets.py:386 -#: netbox/extras/forms/model_forms.py:552 netbox/netbox/navigation/menu.py:255 -#: netbox/netbox/navigation/menu.py:257 -#: netbox/templates/virtualization/clustertype.html:30 -#: netbox/virtualization/tables/clusters.py:23 -#: netbox/virtualization/tables/clusters.py:45 +#: extras/forms/filtersets.py:386 extras/forms/model_forms.py:552 +#: netbox/navigation/menu.py:255 netbox/navigation/menu.py:257 +#: templates/virtualization/clustertype.html:30 +#: virtualization/tables/clusters.py:23 virtualization/tables/clusters.py:45 msgid "Clusters" msgstr "Klynger" -#: netbox/extras/forms/filtersets.py:391 -#: netbox/extras/forms/model_forms.py:557 +#: extras/forms/filtersets.py:391 extras/forms/model_forms.py:557 msgid "Tenant groups" msgstr "Lejergrupper" -#: netbox/extras/forms/model_forms.py:49 +#: extras/forms/model_forms.py:49 msgid "The type(s) of object that have this custom field" msgstr "Type (r) af objekt, der har dette brugerdefinerede felt" -#: netbox/extras/forms/model_forms.py:52 +#: extras/forms/model_forms.py:52 msgid "Default value" msgstr "Standardværdi" -#: netbox/extras/forms/model_forms.py:58 +#: extras/forms/model_forms.py:58 msgid "Type of the related object (for object/multi-object fields only)" msgstr "Type af det relaterede objekt (kun for objekt-/flerobjektfelter)" -#: netbox/extras/forms/model_forms.py:61 -#: netbox/templates/extras/customfield.html:60 +#: extras/forms/model_forms.py:61 templates/extras/customfield.html:60 msgid "Related object filter" msgstr "Relateret objektfilter" -#: netbox/extras/forms/model_forms.py:63 +#: extras/forms/model_forms.py:63 msgid "Specify query parameters as a JSON object." msgstr "Angiv forespørgselsparametre som et JSON-objekt." -#: netbox/extras/forms/model_forms.py:73 -#: netbox/templates/extras/customfield.html:10 +#: extras/forms/model_forms.py:73 templates/extras/customfield.html:10 msgid "Custom Field" msgstr "Brugerdefineret felt" -#: netbox/extras/forms/model_forms.py:85 +#: extras/forms/model_forms.py:85 msgid "" "The type of data stored in this field. For object/multi-object fields, " "select the related object type below." @@ -7911,18 +7362,18 @@ msgstr "" "Den type data, der er gemt i dette felt. For objekt/flerobjektfelter skal du" " vælge den relaterede objekttype nedenfor." -#: netbox/extras/forms/model_forms.py:88 +#: extras/forms/model_forms.py:88 msgid "" "This will be displayed as help text for the form field. Markdown is " "supported." msgstr "" "Dette vises som hjælpetekst til formularfeltet. Markdown understøttes." -#: netbox/extras/forms/model_forms.py:143 +#: extras/forms/model_forms.py:143 msgid "Related Object" msgstr "Relateret objekt" -#: netbox/extras/forms/model_forms.py:169 +#: extras/forms/model_forms.py:169 msgid "" "Enter one choice per line. An optional label may be specified for each " "choice by appending it with a colon. Example:" @@ -7930,16 +7381,15 @@ msgstr "" "Indtast et valg pr. linje. Der kan angives en valgfri etiket for hvert valg " "ved at tilføje det med et kolon. Eksempel:" -#: netbox/extras/forms/model_forms.py:212 -#: netbox/templates/extras/customlink.html:10 +#: extras/forms/model_forms.py:212 templates/extras/customlink.html:10 msgid "Custom Link" msgstr "Brugerdefineret link" -#: netbox/extras/forms/model_forms.py:214 +#: extras/forms/model_forms.py:214 msgid "Templates" msgstr "Skabeloner" -#: netbox/extras/forms/model_forms.py:226 +#: extras/forms/model_forms.py:226 #, python-brace-format msgid "" "Jinja2 template code for the link text. Reference the object as {example}. " @@ -7948,66 +7398,60 @@ msgstr "" "Jinja2 skabelonkode til linkteksten. Henvis objektet som {example}. Links, " "der gengives som tom tekst, vises ikke." -#: netbox/extras/forms/model_forms.py:230 +#: extras/forms/model_forms.py:230 #, python-brace-format msgid "" "Jinja2 template code for the link URL. Reference the object as {example}." msgstr "Jinja2 skabelonkode til linket URL. Henvis objektet som {example}." -#: netbox/extras/forms/model_forms.py:241 -#: netbox/extras/forms/model_forms.py:624 +#: extras/forms/model_forms.py:241 extras/forms/model_forms.py:624 msgid "Template code" msgstr "Skabelonkode" -#: netbox/extras/forms/model_forms.py:247 -#: netbox/templates/extras/exporttemplate.html:12 +#: extras/forms/model_forms.py:247 templates/extras/exporttemplate.html:12 msgid "Export Template" msgstr "Eksport skabelon" -#: netbox/extras/forms/model_forms.py:249 +#: extras/forms/model_forms.py:249 msgid "Rendering" msgstr "Gengivelse" -#: netbox/extras/forms/model_forms.py:263 -#: netbox/extras/forms/model_forms.py:649 +#: extras/forms/model_forms.py:263 extras/forms/model_forms.py:649 msgid "Template content is populated from the remote source selected below." msgstr "" "Skabelonindhold udfyldes fra den fjerntliggende kilde, der er valgt " "nedenfor." -#: netbox/extras/forms/model_forms.py:270 -#: netbox/extras/forms/model_forms.py:656 +#: extras/forms/model_forms.py:270 extras/forms/model_forms.py:656 msgid "Must specify either local content or a data file" msgstr "Skal angive enten lokalt indhold eller en datafil" -#: netbox/extras/forms/model_forms.py:284 netbox/netbox/forms/mixins.py:70 -#: netbox/templates/extras/savedfilter.html:10 +#: extras/forms/model_forms.py:284 netbox/forms/mixins.py:70 +#: templates/extras/savedfilter.html:10 msgid "Saved Filter" msgstr "Gemt filter" -#: netbox/extras/forms/model_forms.py:334 +#: extras/forms/model_forms.py:334 msgid "A notification group specify at least one user or group." msgstr "En meddelelsesgruppe angiver mindst én bruger eller gruppe." -#: netbox/extras/forms/model_forms.py:356 -#: netbox/templates/extras/webhook.html:23 +#: extras/forms/model_forms.py:356 templates/extras/webhook.html:23 msgid "HTTP Request" msgstr "HTTP-anmodning" -#: netbox/extras/forms/model_forms.py:358 -#: netbox/templates/extras/webhook.html:44 +#: extras/forms/model_forms.py:358 templates/extras/webhook.html:44 msgid "SSL" msgstr "SSL" -#: netbox/extras/forms/model_forms.py:380 +#: extras/forms/model_forms.py:380 msgid "Action choice" msgstr "Valg af handling" -#: netbox/extras/forms/model_forms.py:385 +#: extras/forms/model_forms.py:385 msgid "Enter conditions in JSON format." msgstr "Indtast betingelser i JSON formatere." -#: netbox/extras/forms/model_forms.py:389 +#: extras/forms/model_forms.py:389 msgid "" "Enter parameters to pass to the action in JSON format." @@ -8015,111 +7459,109 @@ msgstr "" "Indtast parametre, der skal overføres til handlingen i JSON formatere." -#: netbox/extras/forms/model_forms.py:394 -#: netbox/templates/extras/eventrule.html:10 +#: extras/forms/model_forms.py:394 templates/extras/eventrule.html:10 msgid "Event Rule" msgstr "Begivenhedsregel" -#: netbox/extras/forms/model_forms.py:395 +#: extras/forms/model_forms.py:395 msgid "Triggers" msgstr "Udløsere" -#: netbox/extras/forms/model_forms.py:442 +#: extras/forms/model_forms.py:442 msgid "Notification group" msgstr "Meddelelsesgruppe" -#: netbox/extras/forms/model_forms.py:562 netbox/netbox/navigation/menu.py:26 -#: netbox/tenancy/tables/tenants.py:22 +#: extras/forms/model_forms.py:562 netbox/navigation/menu.py:26 +#: tenancy/tables/tenants.py:22 msgid "Tenants" msgstr "Lejere" -#: netbox/extras/forms/model_forms.py:606 +#: extras/forms/model_forms.py:606 msgid "Data is populated from the remote source selected below." msgstr "Data udfyldes fra den fjerntliggende kilde, der er valgt nedenfor." -#: netbox/extras/forms/model_forms.py:612 +#: extras/forms/model_forms.py:612 msgid "Must specify either local data or a data file" msgstr "Skal angive enten lokale data eller en datafil" -#: netbox/extras/forms/model_forms.py:631 -#: netbox/templates/core/datafile.html:55 +#: extras/forms/model_forms.py:631 templates/core/datafile.html:55 msgid "Content" msgstr "Indhold" -#: netbox/extras/forms/reports.py:17 netbox/extras/forms/scripts.py:23 +#: extras/forms/reports.py:17 extras/forms/scripts.py:23 msgid "Schedule at" msgstr "Planlæg kl" -#: netbox/extras/forms/reports.py:18 +#: extras/forms/reports.py:18 msgid "Schedule execution of report to a set time" msgstr "Planlæg udførelse af rapport til et bestemt tidspunkt" -#: netbox/extras/forms/reports.py:23 netbox/extras/forms/scripts.py:29 +#: extras/forms/reports.py:23 extras/forms/scripts.py:29 msgid "Recurs every" msgstr "Gentager hver" -#: netbox/extras/forms/reports.py:27 +#: extras/forms/reports.py:27 msgid "Interval at which this report is re-run (in minutes)" msgstr "Interval, hvor denne rapport genkøres (i minutter)" -#: netbox/extras/forms/reports.py:35 netbox/extras/forms/scripts.py:41 +#: extras/forms/reports.py:35 extras/forms/scripts.py:41 #, python-brace-format msgid " (current time: {now})" msgstr " (Aktuel tid: {now})" -#: netbox/extras/forms/reports.py:45 netbox/extras/forms/scripts.py:51 +#: extras/forms/reports.py:45 extras/forms/scripts.py:51 msgid "Scheduled time must be in the future." msgstr "Planlagt tid skal være i fremtiden." -#: netbox/extras/forms/scripts.py:17 +#: extras/forms/scripts.py:17 msgid "Commit changes" msgstr "Foretag ændringer" -#: netbox/extras/forms/scripts.py:18 +#: extras/forms/scripts.py:18 msgid "Commit changes to the database (uncheck for a dry-run)" msgstr "Send ændringer i databasen (fjern markeringen for en tørkørsel)" -#: netbox/extras/forms/scripts.py:24 +#: extras/forms/scripts.py:24 msgid "Schedule execution of script to a set time" msgstr "Planlæg udførelse af script til et bestemt tidspunkt" -#: netbox/extras/forms/scripts.py:33 +#: extras/forms/scripts.py:33 msgid "Interval at which this script is re-run (in minutes)" msgstr "Interval, hvor scriptet køres igen (i minutter)" -#: netbox/extras/jobs.py:49 +#: extras/jobs.py:49 msgid "Database changes have been reverted automatically." msgstr "Databaseændringer er blevet tilbageført automatisk." -#: netbox/extras/jobs.py:56 +#: extras/jobs.py:55 msgid "Script aborted with error: " msgstr "Script afbrudt med fejl: " -#: netbox/extras/jobs.py:66 +#: extras/jobs.py:65 msgid "An exception occurred: " msgstr "Der opstod en undtagelse: " -#: netbox/extras/jobs.py:71 +#: extras/jobs.py:70 msgid "Database changes have been reverted due to error." msgstr "Databaseændringer er blevet tilbageført på grund af fejl." -#: netbox/extras/management/commands/reindex.py:66 +#: extras/management/commands/reindex.py:66 msgid "No indexers found!" msgstr "Ingen indekser fundet!" -#: netbox/extras/models/configs.py:130 +#: extras/models/configs.py:130 msgid "config context" msgstr "konfigurationskontekst" -#: netbox/extras/models/configs.py:131 +#: extras/models/configs.py:131 msgid "config contexts" msgstr "konfigurationskontekster" -#: netbox/extras/models/configs.py:149 netbox/extras/models/configs.py:205 +#: extras/models/configs.py:149 extras/models/configs.py:205 msgid "JSON data must be in object form. Example:" msgstr "JSON-data skal være i objektform. Eksempel:" -#: netbox/extras/models/configs.py:169 +#: extras/models/configs.py:169 msgid "" "Local config context data takes precedence over source contexts in the final" " rendered config context" @@ -8127,19 +7569,19 @@ msgstr "" "Lokale konfigurationskontekstdata har forrang frem for kildekontekster i den" " endelige gengivne konfigurationskontekst" -#: netbox/extras/models/configs.py:224 +#: extras/models/configs.py:224 msgid "template code" msgstr "skabelonkode" -#: netbox/extras/models/configs.py:225 +#: extras/models/configs.py:225 msgid "Jinja2 template code." msgstr "Jinja2 skabelonkode." -#: netbox/extras/models/configs.py:228 +#: extras/models/configs.py:228 msgid "environment parameters" msgstr "miljøparametre" -#: netbox/extras/models/configs.py:233 +#: extras/models/configs.py:233 msgid "" "Any additional" @@ -8149,41 +7591,41 @@ msgstr "" "href=\"https://jinja.palletsprojects.com/en/3.1.x/api/#jinja2.Environment\">yderligere" " parametre at passere, når man konstruerer Jinja2-miljøet." -#: netbox/extras/models/configs.py:240 +#: extras/models/configs.py:240 msgid "config template" msgstr "konfigurationsskabelon" -#: netbox/extras/models/configs.py:241 +#: extras/models/configs.py:241 msgid "config templates" msgstr "konfigurationsskabeloner" -#: netbox/extras/models/customfields.py:75 +#: extras/models/customfields.py:75 msgid "The object(s) to which this field applies." msgstr "Det eller de objekter, som dette felt gælder for." -#: netbox/extras/models/customfields.py:82 +#: extras/models/customfields.py:82 msgid "The type of data this custom field holds" msgstr "Den type data, som dette brugerdefinerede felt indeholder" -#: netbox/extras/models/customfields.py:89 +#: extras/models/customfields.py:89 msgid "The type of NetBox object this field maps to (for object fields)" msgstr "" "Typen af NetBox-objekt, som dette felt knytter sig til (for objektfelter)" -#: netbox/extras/models/customfields.py:95 +#: extras/models/customfields.py:95 msgid "Internal field name" msgstr "Internt feltnavn" -#: netbox/extras/models/customfields.py:99 +#: extras/models/customfields.py:99 msgid "Only alphanumeric characters and underscores are allowed." msgstr "Kun alfanumeriske tegn og understregninger er tilladt." -#: netbox/extras/models/customfields.py:104 +#: extras/models/customfields.py:104 msgid "Double underscores are not permitted in custom field names." msgstr "" "Dobbelte understregninger er ikke tilladt i brugerdefinerede feltnavne." -#: netbox/extras/models/customfields.py:115 +#: extras/models/customfields.py:115 msgid "" "Name of the field as displayed to users (if not provided, 'the field's name " "will be used)" @@ -8191,19 +7633,19 @@ msgstr "" "Navnet på feltet som vist for brugerne (hvis det ikke er angivet, vil " "'feltets navn blive brugt)" -#: netbox/extras/models/customfields.py:119 netbox/extras/models/models.py:317 +#: extras/models/customfields.py:119 extras/models/models.py:317 msgid "group name" msgstr "Gruppenavn" -#: netbox/extras/models/customfields.py:122 +#: extras/models/customfields.py:122 msgid "Custom fields within the same group will be displayed together" msgstr "Brugerdefinerede felter inden for samme gruppe vises sammen" -#: netbox/extras/models/customfields.py:130 +#: extras/models/customfields.py:130 msgid "required" msgstr "påkrævet" -#: netbox/extras/models/customfields.py:132 +#: extras/models/customfields.py:132 msgid "" "This field is required when creating new objects or editing an existing " "object." @@ -8211,19 +7653,19 @@ msgstr "" "Dette felt er påkrævet, når du opretter nye objekter eller redigerer et " "eksisterende objekt." -#: netbox/extras/models/customfields.py:135 +#: extras/models/customfields.py:135 msgid "must be unique" msgstr "skal være unik" -#: netbox/extras/models/customfields.py:137 +#: extras/models/customfields.py:137 msgid "The value of this field must be unique for the assigned object" msgstr "Værdien af dette felt skal være unik for det tildelte objekt" -#: netbox/extras/models/customfields.py:140 +#: extras/models/customfields.py:140 msgid "search weight" msgstr "søgevægt" -#: netbox/extras/models/customfields.py:143 +#: extras/models/customfields.py:143 msgid "" "Weighting for search. Lower values are considered more important. Fields " "with a search weight of zero will be ignored." @@ -8231,11 +7673,11 @@ msgstr "" "Vægtning til søgning. Lavere værdier betragtes som vigtigere. Felter med en " "søgevægt på nul ignoreres." -#: netbox/extras/models/customfields.py:148 +#: extras/models/customfields.py:148 msgid "filter logic" msgstr "filterlogik" -#: netbox/extras/models/customfields.py:152 +#: extras/models/customfields.py:152 msgid "" "Loose matches any instance of a given string; exact matches the entire " "field." @@ -8243,11 +7685,11 @@ msgstr "" "Loose matcher enhver forekomst af en given streng; nøjagtigt matcher hele " "feltet." -#: netbox/extras/models/customfields.py:155 +#: extras/models/customfields.py:155 msgid "default" msgstr "standard" -#: netbox/extras/models/customfields.py:159 +#: extras/models/customfields.py:159 msgid "" "Default value for the field (must be a JSON value). Encapsulate strings with" " double quotes (e.g. \"Foo\")." @@ -8255,7 +7697,7 @@ msgstr "" "Standardværdi for feltet (skal være en JSON-værdi). Indkapsle strenge med " "dobbelte anførselstegn (f.eks. „Foo“)." -#: netbox/extras/models/customfields.py:166 +#: extras/models/customfields.py:166 msgid "" "Filter the object selection choices using a query_params dict (must be a " "JSON value).Encapsulate strings with double quotes (e.g. \"Foo\")." @@ -8263,35 +7705,35 @@ msgstr "" "Filtrer objektvalg ved hjælp af en query_params-dict (skal være en JSON-" "værdi) .Indkapsle strenge med dobbelte anførselstegn (f.eks. „Foo“)." -#: netbox/extras/models/customfields.py:172 +#: extras/models/customfields.py:172 msgid "display weight" msgstr "displayvægt" -#: netbox/extras/models/customfields.py:173 +#: extras/models/customfields.py:173 msgid "Fields with higher weights appear lower in a form." msgstr "Felter med højere vægte vises lavere i en formular." -#: netbox/extras/models/customfields.py:178 +#: extras/models/customfields.py:178 msgid "minimum value" msgstr "minimumsværdi" -#: netbox/extras/models/customfields.py:179 +#: extras/models/customfields.py:179 msgid "Minimum allowed value (for numeric fields)" msgstr "Mindste tilladte værdi (for numeriske felter)" -#: netbox/extras/models/customfields.py:184 +#: extras/models/customfields.py:184 msgid "maximum value" msgstr "maksimal værdi" -#: netbox/extras/models/customfields.py:185 +#: extras/models/customfields.py:185 msgid "Maximum allowed value (for numeric fields)" msgstr "Maksimal tilladt værdi (for numeriske felter)" -#: netbox/extras/models/customfields.py:191 +#: extras/models/customfields.py:191 msgid "validation regex" msgstr "validering regex" -#: netbox/extras/models/customfields.py:193 +#: extras/models/customfields.py:193 #, python-brace-format msgid "" "Regular expression to enforce on text field values. Use ^ and $ to force " @@ -8302,191 +7744,189 @@ msgstr "" "tvinge matchning af hele strengen. For eksempel ^ [A-Z]{3}$ vil" " begrænse værdierne til nøjagtigt tre store bogstaver." -#: netbox/extras/models/customfields.py:201 +#: extras/models/customfields.py:201 msgid "choice set" msgstr "valgsæt" -#: netbox/extras/models/customfields.py:210 +#: extras/models/customfields.py:210 msgid "Specifies whether the custom field is displayed in the UI" msgstr "Angiver, om det brugerdefinerede felt vises i brugergrænsefladen" -#: netbox/extras/models/customfields.py:217 +#: extras/models/customfields.py:217 msgid "Specifies whether the custom field value can be edited in the UI" msgstr "" "Angiver, om den brugerdefinerede feltværdi kan redigeres i " "brugergrænsefladen" -#: netbox/extras/models/customfields.py:221 +#: extras/models/customfields.py:221 msgid "is cloneable" msgstr "kan klones" -#: netbox/extras/models/customfields.py:222 +#: extras/models/customfields.py:222 msgid "Replicate this value when cloning objects" msgstr "Repliker denne værdi ved kloning af objekter" -#: netbox/extras/models/customfields.py:239 +#: extras/models/customfields.py:239 msgid "custom field" msgstr "brugerdefineret felt" -#: netbox/extras/models/customfields.py:240 +#: extras/models/customfields.py:240 msgid "custom fields" msgstr "brugerdefinerede felter" -#: netbox/extras/models/customfields.py:329 +#: extras/models/customfields.py:329 #, python-brace-format msgid "Invalid default value \"{value}\": {error}" msgstr "Ugyldig standardværdi“{value}„: {error}" -#: netbox/extras/models/customfields.py:336 +#: extras/models/customfields.py:336 msgid "A minimum value may be set only for numeric fields" msgstr "En minimumsværdi kan kun indstilles for numeriske felter" -#: netbox/extras/models/customfields.py:338 +#: extras/models/customfields.py:338 msgid "A maximum value may be set only for numeric fields" msgstr "En maksimumsværdi kan kun indstilles for numeriske felter" -#: netbox/extras/models/customfields.py:348 +#: extras/models/customfields.py:348 msgid "" "Regular expression validation is supported only for text and URL fields" msgstr "" "Validering af regulære udtryk understøttes kun for tekst- og URL-felter" -#: netbox/extras/models/customfields.py:354 +#: extras/models/customfields.py:354 msgid "Uniqueness cannot be enforced for boolean fields" msgstr "Unikhed kan ikke håndhæves for boolske felter" -#: netbox/extras/models/customfields.py:364 +#: extras/models/customfields.py:364 msgid "Selection fields must specify a set of choices." msgstr "Markeringsfelter skal angive et sæt valgmuligheder." -#: netbox/extras/models/customfields.py:368 +#: extras/models/customfields.py:368 msgid "Choices may be set only on selection fields." msgstr "Valg kan kun indstilles i markeringsfelter." -#: netbox/extras/models/customfields.py:375 +#: extras/models/customfields.py:375 msgid "Object fields must define an object type." msgstr "Objektfelter skal definere en objekttype." -#: netbox/extras/models/customfields.py:379 +#: extras/models/customfields.py:379 #, python-brace-format msgid "{type} fields may not define an object type." msgstr "{type} felter definerer muligvis ikke en objekttype." -#: netbox/extras/models/customfields.py:386 +#: extras/models/customfields.py:386 msgid "A related object filter can be defined only for object fields." msgstr "Et relateret objektfilter kan kun defineres for objektfelter." -#: netbox/extras/models/customfields.py:390 +#: extras/models/customfields.py:390 msgid "Filter must be defined as a dictionary mapping attributes to values." msgstr "" "Filter skal defineres som en ordbog, der knytter attributter til værdier." -#: netbox/extras/models/customfields.py:469 +#: extras/models/customfields.py:469 msgid "True" msgstr "Sandt" -#: netbox/extras/models/customfields.py:470 +#: extras/models/customfields.py:470 msgid "False" msgstr "Falsk" -#: netbox/extras/models/customfields.py:560 +#: extras/models/customfields.py:560 #, python-brace-format msgid "Values must match this regex: {regex}" msgstr "Værdier skal matche denne regex: {regex}" -#: netbox/extras/models/customfields.py:654 +#: extras/models/customfields.py:654 msgid "Value must be a string." msgstr "Værdien skal være en streng." -#: netbox/extras/models/customfields.py:656 +#: extras/models/customfields.py:656 #, python-brace-format msgid "Value must match regex '{regex}'" msgstr "Værdien skal matche regex '{regex}'" -#: netbox/extras/models/customfields.py:661 +#: extras/models/customfields.py:661 msgid "Value must be an integer." msgstr "Værdien skal være et heltal." -#: netbox/extras/models/customfields.py:664 -#: netbox/extras/models/customfields.py:679 +#: extras/models/customfields.py:664 extras/models/customfields.py:679 #, python-brace-format msgid "Value must be at least {minimum}" msgstr "Værdien skal være mindst {minimum}" -#: netbox/extras/models/customfields.py:668 -#: netbox/extras/models/customfields.py:683 +#: extras/models/customfields.py:668 extras/models/customfields.py:683 #, python-brace-format msgid "Value must not exceed {maximum}" msgstr "Værdien må ikke overstige {maximum}" -#: netbox/extras/models/customfields.py:676 +#: extras/models/customfields.py:676 msgid "Value must be a decimal." msgstr "Værdien skal være en decimal." -#: netbox/extras/models/customfields.py:688 +#: extras/models/customfields.py:688 msgid "Value must be true or false." msgstr "Værdien skal være sand eller falsk." -#: netbox/extras/models/customfields.py:696 +#: extras/models/customfields.py:696 msgid "Date values must be in ISO 8601 format (YYYY-MM-DD)." msgstr "Datoværdierne skal være i ISO 8601-format (ÅÅÅÅ-MM-DD)." -#: netbox/extras/models/customfields.py:705 +#: extras/models/customfields.py:705 msgid "Date and time values must be in ISO 8601 format (YYYY-MM-DD HH:MM:SS)." msgstr "" "Dato- og klokkeslætsværdierne skal være i ISO 8601-format (ÅÅÅÅÅ-MM-DD " "HH:MM:SS)." -#: netbox/extras/models/customfields.py:712 +#: extras/models/customfields.py:712 #, python-brace-format msgid "Invalid choice ({value}) for choice set {choiceset}." msgstr "Ugyldigt valg ({value}) til valgsæt {choiceset}." -#: netbox/extras/models/customfields.py:722 +#: extras/models/customfields.py:722 #, python-brace-format msgid "Invalid choice(s) ({value}) for choice set {choiceset}." msgstr "Ugyldige valg (er) ({value}) til valgsæt {choiceset}." -#: netbox/extras/models/customfields.py:731 +#: extras/models/customfields.py:731 #, python-brace-format msgid "Value must be an object ID, not {type}" msgstr "Værdien skal være et objekt-id, ikke {type}" -#: netbox/extras/models/customfields.py:737 +#: extras/models/customfields.py:737 #, python-brace-format msgid "Value must be a list of object IDs, not {type}" msgstr "Værdien skal være en liste over objekt-id'er, ikke {type}" -#: netbox/extras/models/customfields.py:741 +#: extras/models/customfields.py:741 #, python-brace-format msgid "Found invalid object ID: {id}" msgstr "Fundet ugyldigt objekt-id: {id}" -#: netbox/extras/models/customfields.py:744 +#: extras/models/customfields.py:744 msgid "Required field cannot be empty." msgstr "Obligatorisk felt kan ikke være tomt." -#: netbox/extras/models/customfields.py:763 +#: extras/models/customfields.py:763 msgid "Base set of predefined choices (optional)" msgstr "Basisæt af foruddefinerede valg (valgfrit)" -#: netbox/extras/models/customfields.py:775 +#: extras/models/customfields.py:775 msgid "Choices are automatically ordered alphabetically" msgstr "Valg sorteres automatisk alfabetisk" -#: netbox/extras/models/customfields.py:782 +#: extras/models/customfields.py:782 msgid "custom field choice set" msgstr "brugerdefineret felt valgsæt" -#: netbox/extras/models/customfields.py:783 +#: extras/models/customfields.py:783 msgid "custom field choice sets" msgstr "brugerdefinerede feltvalgssæt" -#: netbox/extras/models/customfields.py:825 +#: extras/models/customfields.py:825 msgid "Must define base or extra choices." msgstr "Skal definere base eller ekstra valg." -#: netbox/extras/models/customfields.py:849 +#: extras/models/customfields.py:849 #, python-brace-format msgid "" "Cannot remove choice {choice} as there are {model} objects which reference " @@ -8495,61 +7935,61 @@ msgstr "" "Kan ikke fjerne valg {choice} som der er {model} objekter, der henviser til " "det." -#: netbox/extras/models/dashboard.py:18 +#: extras/models/dashboard.py:18 msgid "layout" msgstr "layout" -#: netbox/extras/models/dashboard.py:22 +#: extras/models/dashboard.py:22 msgid "config" msgstr "config" -#: netbox/extras/models/dashboard.py:27 +#: extras/models/dashboard.py:27 msgid "dashboard" msgstr "dashboard" -#: netbox/extras/models/dashboard.py:28 +#: extras/models/dashboard.py:28 msgid "dashboards" msgstr "dashboards" -#: netbox/extras/models/models.py:52 +#: extras/models/models.py:52 msgid "object types" msgstr "objekttyper" -#: netbox/extras/models/models.py:53 +#: extras/models/models.py:53 msgid "The object(s) to which this rule applies." msgstr "Det eller de objekter, som denne regel gælder for." -#: netbox/extras/models/models.py:67 +#: extras/models/models.py:67 msgid "The types of event which will trigger this rule." msgstr "De typer af begivenheder, der udløser denne regel." -#: netbox/extras/models/models.py:74 +#: extras/models/models.py:74 msgid "conditions" msgstr "betingelser" -#: netbox/extras/models/models.py:77 +#: extras/models/models.py:77 msgid "" "A set of conditions which determine whether the event will be generated." msgstr "" "Et sæt betingelser, der bestemmer, om begivenheden vil blive genereret." -#: netbox/extras/models/models.py:85 +#: extras/models/models.py:85 msgid "action type" msgstr "handlingstype" -#: netbox/extras/models/models.py:104 +#: extras/models/models.py:104 msgid "Additional data to pass to the action object" msgstr "Yderligere data, der skal videregives til handlingsobjektet" -#: netbox/extras/models/models.py:116 +#: extras/models/models.py:116 msgid "event rule" msgstr "hændelsesregel" -#: netbox/extras/models/models.py:117 +#: extras/models/models.py:117 msgid "event rules" msgstr "begivenhedsregler" -#: netbox/extras/models/models.py:166 +#: extras/models/models.py:166 msgid "" "This URL will be called using the HTTP method defined when the webhook is " "called. Jinja2 template processing is supported with the same context as the" @@ -8559,7 +7999,7 @@ msgstr "" "webhooken kaldes. Jinja2-skabelonbehandling understøttes med samme kontekst " "som anmodningsorganet." -#: netbox/extras/models/models.py:181 +#: extras/models/models.py:181 msgid "" "The complete list of official content types is available her." -#: netbox/extras/models/models.py:186 +#: extras/models/models.py:186 msgid "additional headers" msgstr "yderligere overskrifter" -#: netbox/extras/models/models.py:189 +#: extras/models/models.py:189 msgid "" "User-supplied HTTP headers to be sent with the request in addition to the " "HTTP content type. Headers should be defined in the format Name: " @@ -8585,11 +8025,11 @@ msgstr "" "Værdi. Jinja2-skabelonbehandling understøttes med samme kontekst som " "anmodningsorganet (nedenfor)." -#: netbox/extras/models/models.py:195 +#: extras/models/models.py:195 msgid "body template" msgstr "kropsskabelon" -#: netbox/extras/models/models.py:198 +#: extras/models/models.py:198 msgid "" "Jinja2 template for a custom request body. If blank, a JSON object " "representing the change will be included. Available context data includes: " @@ -8602,11 +8042,11 @@ msgstr "" "tidsstempel, brugernavn, forespørgsels-" "id, og data." -#: netbox/extras/models/models.py:204 +#: extras/models/models.py:204 msgid "secret" msgstr "hemmelighed" -#: netbox/extras/models/models.py:208 +#: extras/models/models.py:208 msgid "" "When provided, the request will include a X-Hook-Signature " "header containing a HMAC hex digest of the payload body using the secret as " @@ -8617,15 +8057,15 @@ msgstr "" "nyttelastkroppen ved hjælp af hemmeligheden som nøgle. Hemmeligheden " "overføres ikke i anmodningen." -#: netbox/extras/models/models.py:215 +#: extras/models/models.py:215 msgid "Enable SSL certificate verification. Disable with caution!" msgstr "Aktivér SSL-certifikatbekræftelse. Deaktiver med forsigtighed!" -#: netbox/extras/models/models.py:221 netbox/templates/extras/webhook.html:51 +#: extras/models/models.py:221 templates/extras/webhook.html:51 msgid "CA File Path" msgstr "CA-filsti" -#: netbox/extras/models/models.py:223 +#: extras/models/models.py:223 msgid "" "The specific CA certificate file to use for SSL verification. Leave blank to" " use the system defaults." @@ -8633,63 +8073,63 @@ msgstr "" "Den specifikke CA-certifikatfil, der skal bruges til SSL-bekræftelse. Lad " "det være tomt for at bruge systemstandardindstillingerne." -#: netbox/extras/models/models.py:234 +#: extras/models/models.py:234 msgid "webhook" msgstr "webhook" -#: netbox/extras/models/models.py:235 +#: extras/models/models.py:235 msgid "webhooks" msgstr "webhooks" -#: netbox/extras/models/models.py:253 +#: extras/models/models.py:253 msgid "Do not specify a CA certificate file if SSL verification is disabled." msgstr "Angiv ikke en CA-certifikatfil, hvis SSL-bekræftelse er deaktiveret." -#: netbox/extras/models/models.py:293 +#: extras/models/models.py:293 msgid "The object type(s) to which this link applies." msgstr "Den eller de objekttyper, som dette link gælder for." -#: netbox/extras/models/models.py:305 +#: extras/models/models.py:305 msgid "link text" msgstr "linktekst" -#: netbox/extras/models/models.py:306 +#: extras/models/models.py:306 msgid "Jinja2 template code for link text" msgstr "Jinja2 skabelonkode til linktekst" -#: netbox/extras/models/models.py:309 +#: extras/models/models.py:309 msgid "link URL" msgstr "Link-URL" -#: netbox/extras/models/models.py:310 +#: extras/models/models.py:310 msgid "Jinja2 template code for link URL" msgstr "Jinja2 skabelonkode til link URL" -#: netbox/extras/models/models.py:320 +#: extras/models/models.py:320 msgid "Links with the same group will appear as a dropdown menu" msgstr "Links med den samme gruppe vises som en rullemenu" -#: netbox/extras/models/models.py:330 +#: extras/models/models.py:330 msgid "new window" msgstr "nyt vindue" -#: netbox/extras/models/models.py:332 +#: extras/models/models.py:332 msgid "Force link to open in a new window" msgstr "Tving link til at åbne i et nyt vindue" -#: netbox/extras/models/models.py:341 +#: extras/models/models.py:341 msgid "custom link" msgstr "brugerdefineret link" -#: netbox/extras/models/models.py:342 +#: extras/models/models.py:342 msgid "custom links" msgstr "brugerdefinerede links" -#: netbox/extras/models/models.py:389 +#: extras/models/models.py:389 msgid "The object type(s) to which this template applies." msgstr "Den eller de objekttyper, som denne skabelon gælder for." -#: netbox/extras/models/models.py:402 +#: extras/models/models.py:402 msgid "" "Jinja2 template code. The list of objects being exported is passed as a " "context variable named queryset." @@ -8697,1083 +8137,1048 @@ msgstr "" "Jinja2 skabelonkode. Listen over objekter, der eksporteres, sendes som en " "kontekstvariabel med navnet Queryset." -#: netbox/extras/models/models.py:410 +#: extras/models/models.py:410 msgid "Defaults to text/plain; charset=utf-8" msgstr "Standard til tekst/almindelig; tegnsæt = utf-8" -#: netbox/extras/models/models.py:413 +#: extras/models/models.py:413 msgid "file extension" msgstr "filtypenavn" -#: netbox/extras/models/models.py:416 +#: extras/models/models.py:416 msgid "Extension to append to the rendered filename" msgstr "Udvidelse, der skal tilføjes til det gengivne filnavn" -#: netbox/extras/models/models.py:419 +#: extras/models/models.py:419 msgid "as attachment" msgstr "som vedhæftet fil" -#: netbox/extras/models/models.py:421 +#: extras/models/models.py:421 msgid "Download file as attachment" msgstr "Download fil som vedhæftet fil" -#: netbox/extras/models/models.py:430 +#: extras/models/models.py:430 msgid "export template" msgstr "eksport skabelon" -#: netbox/extras/models/models.py:431 +#: extras/models/models.py:431 msgid "export templates" msgstr "eksport skabeloner" -#: netbox/extras/models/models.py:448 +#: extras/models/models.py:448 #, python-brace-format msgid "\"{name}\" is a reserved name. Please choose a different name." msgstr "„{name}„Det er et reserveret navn. Vælg et andet navn." -#: netbox/extras/models/models.py:498 +#: extras/models/models.py:498 msgid "The object type(s) to which this filter applies." msgstr "Den eller de objekttyper, som dette filter gælder for." -#: netbox/extras/models/models.py:530 +#: extras/models/models.py:530 msgid "shared" msgstr "delt" -#: netbox/extras/models/models.py:543 +#: extras/models/models.py:543 msgid "saved filter" msgstr "gemt filter" -#: netbox/extras/models/models.py:544 +#: extras/models/models.py:544 msgid "saved filters" msgstr "gemte filtre" -#: netbox/extras/models/models.py:562 +#: extras/models/models.py:562 msgid "Filter parameters must be stored as a dictionary of keyword arguments." msgstr "Filterparametre skal gemmes som en ordbog med søgeordsargumenter." -#: netbox/extras/models/models.py:590 +#: extras/models/models.py:590 msgid "image height" msgstr "billedets højde" -#: netbox/extras/models/models.py:593 +#: extras/models/models.py:593 msgid "image width" msgstr "billedbredde" -#: netbox/extras/models/models.py:610 +#: extras/models/models.py:610 msgid "image attachment" msgstr "billed vedhæftet fil" -#: netbox/extras/models/models.py:611 +#: extras/models/models.py:611 msgid "image attachments" msgstr "billed vedhæftede filer" -#: netbox/extras/models/models.py:625 +#: extras/models/models.py:625 #, python-brace-format msgid "Image attachments cannot be assigned to this object type ({type})." msgstr "Billedvedhæftede filer kan ikke tildeles denne objekttype ({type})." -#: netbox/extras/models/models.py:688 +#: extras/models/models.py:688 msgid "kind" msgstr "venlig" -#: netbox/extras/models/models.py:702 +#: extras/models/models.py:702 msgid "journal entry" msgstr "journalindtastning" -#: netbox/extras/models/models.py:703 +#: extras/models/models.py:703 msgid "journal entries" msgstr "journalposter" -#: netbox/extras/models/models.py:718 +#: extras/models/models.py:718 #, python-brace-format msgid "Journaling is not supported for this object type ({type})." msgstr "Journalføring understøttes ikke for denne objekttype ({type})." -#: netbox/extras/models/models.py:760 +#: extras/models/models.py:760 msgid "bookmark" msgstr "bogmærke" -#: netbox/extras/models/models.py:761 +#: extras/models/models.py:761 msgid "bookmarks" msgstr "bogmærker" -#: netbox/extras/models/models.py:774 +#: extras/models/models.py:774 #, python-brace-format msgid "Bookmarks cannot be assigned to this object type ({type})." msgstr "Bogmærker kan ikke tildeles denne objekttype ({type})." -#: netbox/extras/models/notifications.py:43 +#: extras/models/notifications.py:43 msgid "read" msgstr "læse" -#: netbox/extras/models/notifications.py:66 +#: extras/models/notifications.py:66 msgid "event" msgstr "event" -#: netbox/extras/models/notifications.py:84 +#: extras/models/notifications.py:84 msgid "notification" msgstr "anmeldelse" -#: netbox/extras/models/notifications.py:85 +#: extras/models/notifications.py:85 msgid "notifications" msgstr "notifikationer" -#: netbox/extras/models/notifications.py:99 -#: netbox/extras/models/notifications.py:234 +#: extras/models/notifications.py:99 extras/models/notifications.py:234 #, python-brace-format msgid "Objects of this type ({type}) do not support notifications." msgstr "Objekter af denne type ({type}) understøtter ikke underretninger." -#: netbox/extras/models/notifications.py:137 netbox/users/models/users.py:58 -#: netbox/users/models/users.py:77 +#: extras/models/notifications.py:137 users/models/users.py:58 +#: users/models/users.py:77 msgid "groups" msgstr "grupperer" -#: netbox/extras/models/notifications.py:143 netbox/users/models/users.py:93 +#: extras/models/notifications.py:143 users/models/users.py:93 msgid "users" msgstr "brugere" -#: netbox/extras/models/notifications.py:152 +#: extras/models/notifications.py:152 msgid "notification group" msgstr "meddelelsesgruppe" -#: netbox/extras/models/notifications.py:153 +#: extras/models/notifications.py:153 msgid "notification groups" msgstr "meddelelsesgrupper" -#: netbox/extras/models/notifications.py:217 +#: extras/models/notifications.py:217 msgid "subscription" msgstr "abonnement" -#: netbox/extras/models/notifications.py:218 +#: extras/models/notifications.py:218 msgid "subscriptions" msgstr "abonnementer" -#: netbox/extras/models/scripts.py:42 +#: extras/models/scripts.py:42 msgid "is executable" msgstr "er eksekverbar" -#: netbox/extras/models/scripts.py:64 +#: extras/models/scripts.py:64 msgid "script" msgstr "manuskriptet" -#: netbox/extras/models/scripts.py:65 +#: extras/models/scripts.py:65 msgid "scripts" msgstr "manuskripter" -#: netbox/extras/models/scripts.py:111 +#: extras/models/scripts.py:111 msgid "script module" msgstr "script-modul" -#: netbox/extras/models/scripts.py:112 +#: extras/models/scripts.py:112 msgid "script modules" msgstr "script-moduler" -#: netbox/extras/models/search.py:22 +#: extras/models/search.py:22 msgid "timestamp" msgstr "tidsstempel" -#: netbox/extras/models/search.py:37 +#: extras/models/search.py:37 msgid "field" msgstr "mark" -#: netbox/extras/models/search.py:45 +#: extras/models/search.py:45 msgid "value" msgstr "værdsætte" -#: netbox/extras/models/search.py:56 +#: extras/models/search.py:56 msgid "cached value" msgstr "cachelagret værdi" -#: netbox/extras/models/search.py:57 +#: extras/models/search.py:57 msgid "cached values" msgstr "cachelagrede værdier" -#: netbox/extras/models/staging.py:44 +#: extras/models/staging.py:44 msgid "branch" msgstr "gren" -#: netbox/extras/models/staging.py:45 +#: extras/models/staging.py:45 msgid "branches" msgstr "grene" -#: netbox/extras/models/staging.py:97 +#: extras/models/staging.py:97 msgid "staged change" msgstr "iscenesat ændring" -#: netbox/extras/models/staging.py:98 +#: extras/models/staging.py:98 msgid "staged changes" msgstr "iscenesatte ændringer" -#: netbox/extras/models/tags.py:40 +#: extras/models/tags.py:40 msgid "The object type(s) to which this tag can be applied." msgstr "Den eller de objekttyper, som dette mærke kan anvendes på." -#: netbox/extras/models/tags.py:49 +#: extras/models/tags.py:49 msgid "tag" msgstr "mærke" -#: netbox/extras/models/tags.py:50 +#: extras/models/tags.py:50 msgid "tags" msgstr "tagger" -#: netbox/extras/models/tags.py:78 +#: extras/models/tags.py:78 msgid "tagged item" msgstr "tagget vare" -#: netbox/extras/models/tags.py:79 +#: extras/models/tags.py:79 msgid "tagged items" msgstr "mærkede varer" -#: netbox/extras/scripts.py:429 +#: extras/scripts.py:429 msgid "Script Data" msgstr "Scriptdata" -#: netbox/extras/scripts.py:433 +#: extras/scripts.py:433 msgid "Script Execution Parameters" msgstr "Parametre for udførelse af script" -#: netbox/extras/tables/columns.py:12 -#: netbox/templates/htmx/notifications.html:18 +#: extras/tables/columns.py:12 templates/htmx/notifications.html:18 msgid "Dismiss" msgstr "Afvis" -#: netbox/extras/tables/tables.py:62 netbox/extras/tables/tables.py:159 -#: netbox/extras/tables/tables.py:184 netbox/extras/tables/tables.py:250 -#: netbox/extras/tables/tables.py:276 netbox/extras/tables/tables.py:412 -#: netbox/extras/tables/tables.py:446 -#: netbox/templates/extras/customfield.html:105 -#: netbox/templates/extras/eventrule.html:27 -#: netbox/templates/users/objectpermission.html:64 netbox/users/tables.py:80 +#: extras/tables/tables.py:62 extras/tables/tables.py:159 +#: extras/tables/tables.py:184 extras/tables/tables.py:250 +#: extras/tables/tables.py:276 extras/tables/tables.py:412 +#: extras/tables/tables.py:446 templates/extras/customfield.html:105 +#: templates/extras/eventrule.html:27 templates/users/objectpermission.html:64 +#: users/tables.py:80 msgid "Object Types" msgstr "Objekttyper" -#: netbox/extras/tables/tables.py:69 +#: extras/tables/tables.py:69 msgid "Validate Uniqueness" msgstr "Valider unikhed" -#: netbox/extras/tables/tables.py:73 +#: extras/tables/tables.py:73 msgid "Visible" msgstr "Synlig" -#: netbox/extras/tables/tables.py:76 +#: extras/tables/tables.py:76 msgid "Editable" msgstr "Redigerbar" -#: netbox/extras/tables/tables.py:82 +#: extras/tables/tables.py:82 msgid "Related Object Type" msgstr "Relateret objekttype" -#: netbox/extras/tables/tables.py:86 -#: netbox/templates/extras/customfield.html:51 +#: extras/tables/tables.py:86 templates/extras/customfield.html:51 msgid "Choice Set" msgstr "Valgsæt" -#: netbox/extras/tables/tables.py:94 +#: extras/tables/tables.py:94 msgid "Is Cloneable" msgstr "Kan klones" -#: netbox/extras/tables/tables.py:98 -#: netbox/templates/extras/customfield.html:118 +#: extras/tables/tables.py:98 templates/extras/customfield.html:118 msgid "Minimum Value" msgstr "Minimumsværdi" -#: netbox/extras/tables/tables.py:101 -#: netbox/templates/extras/customfield.html:122 +#: extras/tables/tables.py:101 templates/extras/customfield.html:122 msgid "Maximum Value" msgstr "Maksimal værdi" -#: netbox/extras/tables/tables.py:104 +#: extras/tables/tables.py:104 msgid "Validation Regex" msgstr "Validering Regex" -#: netbox/extras/tables/tables.py:137 +#: extras/tables/tables.py:137 msgid "Count" msgstr "Tælle" -#: netbox/extras/tables/tables.py:140 +#: extras/tables/tables.py:140 msgid "Order Alphabetically" msgstr "Ordre alfabetisk" -#: netbox/extras/tables/tables.py:165 -#: netbox/templates/extras/customlink.html:33 +#: extras/tables/tables.py:165 templates/extras/customlink.html:33 msgid "New Window" msgstr "Nyt vindue" -#: netbox/extras/tables/tables.py:187 +#: extras/tables/tables.py:187 msgid "As Attachment" msgstr "Som vedhæftet fil" -#: netbox/extras/tables/tables.py:195 netbox/extras/tables/tables.py:487 -#: netbox/extras/tables/tables.py:522 netbox/templates/core/datafile.html:24 -#: netbox/templates/dcim/device/render_config.html:22 -#: netbox/templates/extras/configcontext.html:39 -#: netbox/templates/extras/configtemplate.html:31 -#: netbox/templates/extras/exporttemplate.html:45 -#: netbox/templates/generic/bulk_import.html:35 -#: netbox/templates/virtualization/virtualmachine/render_config.html:22 +#: extras/tables/tables.py:195 extras/tables/tables.py:487 +#: extras/tables/tables.py:522 templates/core/datafile.html:24 +#: templates/dcim/device/render_config.html:22 +#: templates/extras/configcontext.html:39 +#: templates/extras/configtemplate.html:31 +#: templates/extras/exporttemplate.html:45 +#: templates/generic/bulk_import.html:35 +#: templates/virtualization/virtualmachine/render_config.html:22 msgid "Data File" msgstr "Datafiler" -#: netbox/extras/tables/tables.py:200 netbox/extras/tables/tables.py:499 -#: netbox/extras/tables/tables.py:527 +#: extras/tables/tables.py:200 extras/tables/tables.py:499 +#: extras/tables/tables.py:527 msgid "Synced" msgstr "Synkroniseret" -#: netbox/extras/tables/tables.py:227 +#: extras/tables/tables.py:227 msgid "Image" msgstr "Billede" -#: netbox/extras/tables/tables.py:232 +#: extras/tables/tables.py:232 msgid "Size (Bytes)" msgstr "Størrelse (byte)" -#: netbox/extras/tables/tables.py:339 +#: extras/tables/tables.py:339 msgid "Read" msgstr "Læs" -#: netbox/extras/tables/tables.py:382 +#: extras/tables/tables.py:382 msgid "SSL Validation" msgstr "SSL Validering" -#: netbox/extras/tables/tables.py:418 -#: netbox/templates/extras/eventrule.html:37 +#: extras/tables/tables.py:418 templates/extras/eventrule.html:37 msgid "Event Types" msgstr "Begivenhedstyper" -#: netbox/extras/tables/tables.py:535 netbox/netbox/navigation/menu.py:77 -#: netbox/templates/dcim/devicerole.html:8 +#: extras/tables/tables.py:535 netbox/navigation/menu.py:77 +#: templates/dcim/devicerole.html:8 msgid "Device Roles" msgstr "Enhedsroller" -#: netbox/extras/tables/tables.py:587 +#: extras/tables/tables.py:587 msgid "Comments (Short)" msgstr "Kommentarer (kort)" -#: netbox/extras/tables/tables.py:606 netbox/extras/tables/tables.py:640 +#: extras/tables/tables.py:606 extras/tables/tables.py:640 msgid "Line" msgstr "Linje" -#: netbox/extras/tables/tables.py:613 netbox/extras/tables/tables.py:650 +#: extras/tables/tables.py:613 extras/tables/tables.py:650 msgid "Level" msgstr "Niveau" -#: netbox/extras/tables/tables.py:619 netbox/extras/tables/tables.py:659 +#: extras/tables/tables.py:619 extras/tables/tables.py:659 msgid "Message" msgstr "Besked" -#: netbox/extras/tables/tables.py:643 +#: extras/tables/tables.py:643 msgid "Method" msgstr "Fremgangsmåde" -#: netbox/extras/validators.py:15 +#: extras/validators.py:15 #, python-format msgid "Ensure this value is equal to %(limit_value)s." msgstr "Sørg for, at denne værdi er lig med %(limit_value)s." -#: netbox/extras/validators.py:26 +#: extras/validators.py:26 #, python-format msgid "Ensure this value does not equal %(limit_value)s." msgstr "Sørg for, at denne værdi ikke er lig %(limit_value)s." -#: netbox/extras/validators.py:37 +#: extras/validators.py:37 msgid "This field must be empty." msgstr "Dette felt skal være tomt." -#: netbox/extras/validators.py:52 +#: extras/validators.py:52 msgid "This field must not be empty." msgstr "Dette felt må ikke være tomt." -#: netbox/extras/validators.py:94 +#: extras/validators.py:94 msgid "Validation rules must be passed as a dictionary" msgstr "Valideringsregler skal godkendes som en ordbog" -#: netbox/extras/validators.py:119 +#: extras/validators.py:119 #, python-brace-format msgid "Custom validation failed for {attribute}: {exception}" msgstr "Brugerdefineret validering mislykkedes for {attribute}: {exception}" -#: netbox/extras/validators.py:133 +#: extras/validators.py:133 #, python-brace-format msgid "Invalid attribute \"{name}\" for request" msgstr "Ugyldig attribut“{name}„på forespørgsel" -#: netbox/extras/validators.py:150 +#: extras/validators.py:150 #, python-brace-format msgid "Invalid attribute \"{name}\" for {model}" msgstr "Ugyldig attribut“{name}„til {model}" -#: netbox/extras/views.py:960 +#: extras/views.py:960 msgid "Your dashboard has been reset." msgstr "Dit dashboard er blevet nulstillet." -#: netbox/extras/views.py:1006 +#: extras/views.py:1006 msgid "Added widget: " msgstr "Tilføjet widget: " -#: netbox/extras/views.py:1047 +#: extras/views.py:1047 msgid "Updated widget: " msgstr "Opdateret widget: " -#: netbox/extras/views.py:1083 +#: extras/views.py:1083 msgid "Deleted widget: " msgstr "Slettet widget: " -#: netbox/extras/views.py:1085 +#: extras/views.py:1085 msgid "Error deleting widget: " msgstr "Fejl ved sletning af widget: " -#: netbox/extras/views.py:1172 +#: extras/views.py:1172 msgid "Unable to run script: RQ worker process not running." msgstr "Kan ikke køre script: RQ-arbejderprocessen kører ikke." -#: netbox/ipam/api/field_serializers.py:17 +#: ipam/api/field_serializers.py:17 msgid "Enter a valid IPv4 or IPv6 address with optional mask." msgstr "Indtast en gyldig IPv4- eller IPv6-adresse med valgfri maske." -#: netbox/ipam/api/field_serializers.py:24 +#: ipam/api/field_serializers.py:24 #, python-brace-format msgid "Invalid IP address format: {data}" msgstr "Ugyldigt IP-adresseformat: {data}" -#: netbox/ipam/api/field_serializers.py:37 +#: ipam/api/field_serializers.py:37 msgid "Enter a valid IPv4 or IPv6 prefix and mask in CIDR notation." msgstr "Indtast et gyldigt IPv4- eller IPv6-præfiks og maske i CIDR-notation." -#: netbox/ipam/api/field_serializers.py:44 +#: ipam/api/field_serializers.py:44 #, python-brace-format msgid "Invalid IP prefix format: {data}" msgstr "Ugyldigt IP-præfiksformat: {data}" -#: netbox/ipam/api/views.py:358 +#: ipam/api/views.py:358 msgid "" "Insufficient space is available to accommodate the requested prefix size(s)" msgstr "" "Der er utilstrækkelig plads til at rumme den ønskede præfiksstørrelse (r)" -#: netbox/ipam/choices.py:30 +#: ipam/choices.py:30 msgid "Container" msgstr "Container" -#: netbox/ipam/choices.py:72 +#: ipam/choices.py:72 msgid "DHCP" msgstr "DHCP" -#: netbox/ipam/choices.py:73 +#: ipam/choices.py:73 msgid "SLAAC" msgstr "SLAAK" -#: netbox/ipam/choices.py:89 +#: ipam/choices.py:89 msgid "Loopback" msgstr "Loopback" -#: netbox/ipam/choices.py:91 +#: ipam/choices.py:91 msgid "Anycast" msgstr "Anycast" -#: netbox/ipam/choices.py:115 +#: ipam/choices.py:115 msgid "Standard" msgstr "Standard" -#: netbox/ipam/choices.py:120 +#: ipam/choices.py:120 msgid "CheckPoint" msgstr "Kontrolpunkt" -#: netbox/ipam/choices.py:123 +#: ipam/choices.py:123 msgid "Cisco" msgstr "Cisco" -#: netbox/ipam/choices.py:137 +#: ipam/choices.py:137 msgid "Plaintext" msgstr "Almindelig tekst" -#: netbox/ipam/fields.py:36 +#: ipam/fields.py:36 #, python-brace-format msgid "Invalid IP address format: {address}" msgstr "Ugyldigt IP-adresseformat: {address}" -#: netbox/ipam/filtersets.py:48 netbox/vpn/filtersets.py:304 +#: ipam/filtersets.py:48 vpn/filtersets.py:304 msgid "Import target" msgstr "Importmål" -#: netbox/ipam/filtersets.py:54 netbox/vpn/filtersets.py:310 +#: ipam/filtersets.py:54 vpn/filtersets.py:310 msgid "Import target (name)" msgstr "Importmål (navn)" -#: netbox/ipam/filtersets.py:59 netbox/vpn/filtersets.py:315 +#: ipam/filtersets.py:59 vpn/filtersets.py:315 msgid "Export target" msgstr "Eksportmål" -#: netbox/ipam/filtersets.py:65 netbox/vpn/filtersets.py:321 +#: ipam/filtersets.py:65 vpn/filtersets.py:321 msgid "Export target (name)" msgstr "Eksportmål (navn)" -#: netbox/ipam/filtersets.py:86 +#: ipam/filtersets.py:86 msgid "Importing VRF" msgstr "Importere VRF" -#: netbox/ipam/filtersets.py:92 +#: ipam/filtersets.py:92 msgid "Import VRF (RD)" msgstr "Importer VRF (RD)" -#: netbox/ipam/filtersets.py:97 +#: ipam/filtersets.py:97 msgid "Exporting VRF" msgstr "Eksport af VRF" -#: netbox/ipam/filtersets.py:103 +#: ipam/filtersets.py:103 msgid "Export VRF (RD)" msgstr "Eksport VRF (RD)" -#: netbox/ipam/filtersets.py:108 +#: ipam/filtersets.py:108 msgid "Importing L2VPN" msgstr "Importerer L2VPN" -#: netbox/ipam/filtersets.py:114 +#: ipam/filtersets.py:114 msgid "Importing L2VPN (identifier)" msgstr "Importerer L2VPN (identifikator)" -#: netbox/ipam/filtersets.py:119 +#: ipam/filtersets.py:119 msgid "Exporting L2VPN" msgstr "Eksport af L2VPN" -#: netbox/ipam/filtersets.py:125 +#: ipam/filtersets.py:125 msgid "Exporting L2VPN (identifier)" msgstr "Eksport af L2VPN (identifikator)" -#: netbox/ipam/filtersets.py:155 netbox/ipam/filtersets.py:281 -#: netbox/ipam/forms/model_forms.py:229 netbox/ipam/tables/ip.py:212 -#: netbox/templates/ipam/prefix.html:12 +#: ipam/filtersets.py:155 ipam/filtersets.py:281 ipam/forms/model_forms.py:229 +#: ipam/tables/ip.py:212 templates/ipam/prefix.html:12 msgid "Prefix" msgstr "Præfiks" -#: netbox/ipam/filtersets.py:159 netbox/ipam/filtersets.py:198 -#: netbox/ipam/filtersets.py:221 +#: ipam/filtersets.py:159 ipam/filtersets.py:198 ipam/filtersets.py:221 msgid "RIR (ID)" msgstr "RIR (ID)" -#: netbox/ipam/filtersets.py:165 netbox/ipam/filtersets.py:204 -#: netbox/ipam/filtersets.py:227 +#: ipam/filtersets.py:165 ipam/filtersets.py:204 ipam/filtersets.py:227 msgid "RIR (slug)" msgstr "RIR (slug)" -#: netbox/ipam/filtersets.py:285 +#: ipam/filtersets.py:285 msgid "Within prefix" msgstr "Inden for præfiks" -#: netbox/ipam/filtersets.py:289 +#: ipam/filtersets.py:289 msgid "Within and including prefix" msgstr "Inden for og med præfiks" -#: netbox/ipam/filtersets.py:293 +#: ipam/filtersets.py:293 msgid "Prefixes which contain this prefix or IP" msgstr "Præfikser, der indeholder dette præfiks eller IP" -#: netbox/ipam/filtersets.py:304 netbox/ipam/filtersets.py:572 -#: netbox/ipam/forms/bulk_edit.py:342 netbox/ipam/forms/filtersets.py:196 -#: netbox/ipam/forms/filtersets.py:331 +#: ipam/filtersets.py:304 ipam/filtersets.py:572 ipam/forms/bulk_edit.py:343 +#: ipam/forms/filtersets.py:196 ipam/forms/filtersets.py:331 msgid "Mask length" msgstr "Maskelængde" -#: netbox/ipam/filtersets.py:373 netbox/vpn/filtersets.py:427 +#: ipam/filtersets.py:373 vpn/filtersets.py:427 msgid "VLAN (ID)" msgstr "VLAN (ID)" -#: netbox/ipam/filtersets.py:377 netbox/vpn/filtersets.py:422 +#: ipam/filtersets.py:377 vpn/filtersets.py:422 msgid "VLAN number (1-4094)" msgstr "VLAN-nummer (1-4094)" -#: netbox/ipam/filtersets.py:471 netbox/ipam/filtersets.py:475 -#: netbox/ipam/filtersets.py:567 netbox/ipam/forms/model_forms.py:463 -#: netbox/templates/tenancy/contact.html:53 -#: netbox/tenancy/forms/bulk_edit.py:113 +#: ipam/filtersets.py:471 ipam/filtersets.py:475 ipam/filtersets.py:567 +#: ipam/forms/model_forms.py:463 templates/tenancy/contact.html:53 +#: tenancy/forms/bulk_edit.py:113 msgid "Address" msgstr "Adresse" -#: netbox/ipam/filtersets.py:479 +#: ipam/filtersets.py:479 msgid "Ranges which contain this prefix or IP" msgstr "Intervaller, der indeholder dette præfiks eller IP" -#: netbox/ipam/filtersets.py:507 netbox/ipam/filtersets.py:563 +#: ipam/filtersets.py:507 ipam/filtersets.py:563 msgid "Parent prefix" msgstr "Forældrepræfiks" -#: netbox/ipam/filtersets.py:616 netbox/ipam/filtersets.py:856 -#: netbox/ipam/filtersets.py:1131 netbox/vpn/filtersets.py:385 +#: ipam/filtersets.py:616 ipam/filtersets.py:856 ipam/filtersets.py:1131 +#: vpn/filtersets.py:385 msgid "Virtual machine (name)" msgstr "Virtuel maskine (navn)" -#: netbox/ipam/filtersets.py:621 netbox/ipam/filtersets.py:861 -#: netbox/ipam/filtersets.py:1125 netbox/virtualization/filtersets.py:282 -#: netbox/virtualization/filtersets.py:321 netbox/vpn/filtersets.py:390 +#: ipam/filtersets.py:621 ipam/filtersets.py:861 ipam/filtersets.py:1125 +#: virtualization/filtersets.py:282 virtualization/filtersets.py:321 +#: vpn/filtersets.py:390 msgid "Virtual machine (ID)" msgstr "Virtuel maskine (ID)" -#: netbox/ipam/filtersets.py:627 netbox/vpn/filtersets.py:97 -#: netbox/vpn/filtersets.py:396 +#: ipam/filtersets.py:627 vpn/filtersets.py:97 vpn/filtersets.py:396 msgid "Interface (name)" msgstr "Grænseflade (navn)" -#: netbox/ipam/filtersets.py:638 netbox/vpn/filtersets.py:108 -#: netbox/vpn/filtersets.py:407 +#: ipam/filtersets.py:638 vpn/filtersets.py:108 vpn/filtersets.py:407 msgid "VM interface (name)" msgstr "VM-grænseflade (navn)" -#: netbox/ipam/filtersets.py:643 netbox/vpn/filtersets.py:113 +#: ipam/filtersets.py:643 vpn/filtersets.py:113 msgid "VM interface (ID)" msgstr "VM-grænseflade (ID)" -#: netbox/ipam/filtersets.py:648 +#: ipam/filtersets.py:648 msgid "FHRP group (ID)" msgstr "FHRP-gruppe (ID)" -#: netbox/ipam/filtersets.py:652 +#: ipam/filtersets.py:652 msgid "Is assigned to an interface" msgstr "Tildeles til en grænseflade" -#: netbox/ipam/filtersets.py:656 +#: ipam/filtersets.py:656 msgid "Is assigned" msgstr "Er tildelt" -#: netbox/ipam/filtersets.py:668 +#: ipam/filtersets.py:668 msgid "Service (ID)" msgstr "Tjeneste (ID)" -#: netbox/ipam/filtersets.py:673 +#: ipam/filtersets.py:673 msgid "NAT inside IP address (ID)" msgstr "NAT inde i IP-adresse (ID)" -#: netbox/ipam/filtersets.py:1041 netbox/ipam/forms/bulk_import.py:322 +#: ipam/filtersets.py:1041 ipam/forms/bulk_import.py:322 msgid "Assigned interface" msgstr "Tildelt grænseflade" -#: netbox/ipam/filtersets.py:1046 +#: ipam/filtersets.py:1046 msgid "Assigned VM interface" msgstr "Tildelt VM grænseflade" -#: netbox/ipam/filtersets.py:1136 +#: ipam/filtersets.py:1136 msgid "IP address (ID)" msgstr "IP-adresse (ID)" -#: netbox/ipam/filtersets.py:1142 netbox/ipam/models/ip.py:788 +#: ipam/filtersets.py:1142 ipam/models/ip.py:788 msgid "IP address" msgstr "IP adresse" -#: netbox/ipam/filtersets.py:1167 +#: ipam/filtersets.py:1167 msgid "Primary IPv4 (ID)" msgstr "Primær IPv4 (ID)" -#: netbox/ipam/filtersets.py:1172 +#: ipam/filtersets.py:1172 msgid "Primary IPv6 (ID)" msgstr "Primær IPv6 (ID)" -#: netbox/ipam/formfields.py:14 +#: ipam/formfields.py:14 msgid "Enter a valid IPv4 or IPv6 address (without a mask)." msgstr "Indtast en gyldig IPv4- eller IPv6-adresse (uden maske)." -#: netbox/ipam/formfields.py:32 +#: ipam/formfields.py:32 #, python-brace-format msgid "Invalid IPv4/IPv6 address format: {address}" msgstr "Ugyldigt IPv4/IPv6-adresseformat: {address}" -#: netbox/ipam/formfields.py:37 +#: ipam/formfields.py:37 msgid "This field requires an IP address without a mask." msgstr "Dette felt kræver en IP-adresse uden maske." -#: netbox/ipam/formfields.py:39 netbox/ipam/formfields.py:61 +#: ipam/formfields.py:39 ipam/formfields.py:61 msgid "Please specify a valid IPv4 or IPv6 address." msgstr "Angiv en gyldig IPv4- eller IPv6-adresse." -#: netbox/ipam/formfields.py:44 +#: ipam/formfields.py:44 msgid "Enter a valid IPv4 or IPv6 address (with CIDR mask)." msgstr "Indtast en gyldig IPv4- eller IPv6-adresse (med CIDR-maske)." -#: netbox/ipam/formfields.py:56 +#: ipam/formfields.py:56 msgid "CIDR mask (e.g. /24) is required." msgstr "CIDR-maske (f.eks. /24) er påkrævet." -#: netbox/ipam/forms/bulk_create.py:13 +#: ipam/forms/bulk_create.py:13 msgid "Address pattern" msgstr "Adressemønster" -#: netbox/ipam/forms/bulk_edit.py:49 +#: ipam/forms/bulk_edit.py:50 msgid "Enforce unique space" msgstr "Håndhæv unikt rum" -#: netbox/ipam/forms/bulk_edit.py:87 +#: ipam/forms/bulk_edit.py:88 msgid "Is private" msgstr "Er privat" -#: netbox/ipam/forms/bulk_edit.py:108 netbox/ipam/forms/bulk_edit.py:137 -#: netbox/ipam/forms/bulk_edit.py:162 netbox/ipam/forms/bulk_import.py:89 -#: netbox/ipam/forms/bulk_import.py:109 netbox/ipam/forms/bulk_import.py:129 -#: netbox/ipam/forms/filtersets.py:110 netbox/ipam/forms/filtersets.py:125 -#: netbox/ipam/forms/filtersets.py:148 netbox/ipam/forms/model_forms.py:96 -#: netbox/ipam/forms/model_forms.py:109 netbox/ipam/forms/model_forms.py:131 -#: netbox/ipam/forms/model_forms.py:149 netbox/ipam/models/asns.py:31 -#: netbox/ipam/models/asns.py:103 netbox/ipam/models/ip.py:71 -#: netbox/ipam/models/ip.py:90 netbox/ipam/tables/asn.py:20 -#: netbox/ipam/tables/asn.py:45 netbox/templates/ipam/aggregate.html:18 -#: netbox/templates/ipam/asn.html:27 netbox/templates/ipam/asnrange.html:19 -#: netbox/templates/ipam/rir.html:19 +#: ipam/forms/bulk_edit.py:109 ipam/forms/bulk_edit.py:138 +#: ipam/forms/bulk_edit.py:163 ipam/forms/bulk_import.py:89 +#: ipam/forms/bulk_import.py:109 ipam/forms/bulk_import.py:129 +#: ipam/forms/filtersets.py:110 ipam/forms/filtersets.py:125 +#: ipam/forms/filtersets.py:148 ipam/forms/model_forms.py:96 +#: ipam/forms/model_forms.py:109 ipam/forms/model_forms.py:131 +#: ipam/forms/model_forms.py:149 ipam/models/asns.py:31 +#: ipam/models/asns.py:103 ipam/models/ip.py:71 ipam/models/ip.py:90 +#: ipam/tables/asn.py:20 ipam/tables/asn.py:45 +#: templates/ipam/aggregate.html:18 templates/ipam/asn.html:27 +#: templates/ipam/asnrange.html:19 templates/ipam/rir.html:19 msgid "RIR" msgstr "RIR" -#: netbox/ipam/forms/bulk_edit.py:170 +#: ipam/forms/bulk_edit.py:171 msgid "Date added" msgstr "Dato tilføjet" -#: netbox/ipam/forms/bulk_edit.py:228 netbox/ipam/forms/model_forms.py:586 -#: netbox/ipam/forms/model_forms.py:633 netbox/ipam/tables/ip.py:251 -#: netbox/templates/ipam/vlan_edit.html:37 -#: netbox/templates/ipam/vlangroup.html:27 +#: ipam/forms/bulk_edit.py:229 ipam/forms/model_forms.py:586 +#: ipam/forms/model_forms.py:633 ipam/tables/ip.py:251 +#: templates/ipam/vlan_edit.html:37 templates/ipam/vlangroup.html:27 msgid "VLAN Group" msgstr "VLAN-gruppen" -#: netbox/ipam/forms/bulk_edit.py:233 netbox/ipam/forms/bulk_import.py:185 -#: netbox/ipam/forms/filtersets.py:256 netbox/ipam/forms/model_forms.py:218 -#: netbox/ipam/models/vlans.py:234 netbox/ipam/tables/ip.py:255 -#: netbox/templates/ipam/prefix.html:60 netbox/templates/ipam/vlan.html:12 -#: netbox/templates/ipam/vlan/base.html:6 -#: netbox/templates/ipam/vlan_edit.html:10 -#: netbox/templates/wireless/wirelesslan.html:30 -#: netbox/vpn/forms/bulk_import.py:304 netbox/vpn/forms/filtersets.py:284 -#: netbox/vpn/forms/model_forms.py:433 netbox/vpn/forms/model_forms.py:452 -#: netbox/wireless/forms/bulk_edit.py:55 -#: netbox/wireless/forms/bulk_import.py:48 -#: netbox/wireless/forms/model_forms.py:48 netbox/wireless/models.py:102 +#: ipam/forms/bulk_edit.py:234 ipam/forms/bulk_import.py:185 +#: ipam/forms/filtersets.py:256 ipam/forms/model_forms.py:218 +#: ipam/models/vlans.py:234 ipam/tables/ip.py:255 +#: templates/ipam/prefix.html:60 templates/ipam/vlan.html:12 +#: templates/ipam/vlan/base.html:6 templates/ipam/vlan_edit.html:10 +#: templates/wireless/wirelesslan.html:30 vpn/forms/bulk_import.py:304 +#: vpn/forms/filtersets.py:284 vpn/forms/model_forms.py:433 +#: vpn/forms/model_forms.py:452 wireless/forms/bulk_edit.py:55 +#: wireless/forms/bulk_import.py:48 wireless/forms/model_forms.py:48 +#: wireless/models.py:102 msgid "VLAN" msgstr "VLAN" -#: netbox/ipam/forms/bulk_edit.py:244 +#: ipam/forms/bulk_edit.py:245 msgid "Prefix length" msgstr "Præfikslængde" -#: netbox/ipam/forms/bulk_edit.py:267 netbox/ipam/forms/filtersets.py:241 -#: netbox/templates/ipam/prefix.html:85 +#: ipam/forms/bulk_edit.py:268 ipam/forms/filtersets.py:241 +#: templates/ipam/prefix.html:85 msgid "Is a pool" msgstr "Er en pool" -#: netbox/ipam/forms/bulk_edit.py:272 netbox/ipam/forms/bulk_edit.py:317 -#: netbox/ipam/forms/filtersets.py:248 netbox/ipam/forms/filtersets.py:293 -#: netbox/ipam/models/ip.py:272 netbox/ipam/models/ip.py:539 +#: ipam/forms/bulk_edit.py:273 ipam/forms/bulk_edit.py:318 +#: ipam/forms/filtersets.py:248 ipam/forms/filtersets.py:293 +#: ipam/models/ip.py:272 ipam/models/ip.py:539 msgid "Treat as fully utilized" msgstr "Behandl som fuldt udnyttet" -#: netbox/ipam/forms/bulk_edit.py:286 netbox/ipam/forms/filtersets.py:171 +#: ipam/forms/bulk_edit.py:287 ipam/forms/filtersets.py:171 msgid "VLAN Assignment" msgstr "VLAN-tildeling" -#: netbox/ipam/forms/bulk_edit.py:365 netbox/ipam/models/ip.py:772 +#: ipam/forms/bulk_edit.py:366 ipam/models/ip.py:772 msgid "DNS name" msgstr "DNS-navn" -#: netbox/ipam/forms/bulk_edit.py:386 netbox/ipam/forms/bulk_edit.py:579 -#: netbox/ipam/forms/bulk_import.py:394 netbox/ipam/forms/bulk_import.py:469 -#: netbox/ipam/forms/bulk_import.py:495 netbox/ipam/forms/filtersets.py:390 -#: netbox/ipam/forms/filtersets.py:530 netbox/templates/ipam/fhrpgroup.html:22 -#: netbox/templates/ipam/inc/panels/fhrp_groups.html:24 -#: netbox/templates/ipam/service.html:32 -#: netbox/templates/ipam/servicetemplate.html:19 +#: ipam/forms/bulk_edit.py:387 ipam/forms/bulk_edit.py:534 +#: ipam/forms/bulk_import.py:394 ipam/forms/bulk_import.py:469 +#: ipam/forms/bulk_import.py:495 ipam/forms/filtersets.py:390 +#: ipam/forms/filtersets.py:530 templates/ipam/fhrpgroup.html:22 +#: templates/ipam/inc/panels/fhrp_groups.html:24 +#: templates/ipam/service.html:32 templates/ipam/servicetemplate.html:19 msgid "Protocol" msgstr "protokol" -#: netbox/ipam/forms/bulk_edit.py:393 netbox/ipam/forms/filtersets.py:397 -#: netbox/ipam/tables/fhrp.py:22 netbox/templates/ipam/fhrpgroup.html:26 +#: ipam/forms/bulk_edit.py:394 ipam/forms/filtersets.py:397 +#: ipam/tables/fhrp.py:22 templates/ipam/fhrpgroup.html:26 msgid "Group ID" msgstr "Gruppe-ID" -#: netbox/ipam/forms/bulk_edit.py:398 netbox/ipam/forms/filtersets.py:402 -#: netbox/wireless/forms/bulk_edit.py:68 -#: netbox/wireless/forms/bulk_edit.py:115 -#: netbox/wireless/forms/bulk_import.py:62 -#: netbox/wireless/forms/bulk_import.py:65 -#: netbox/wireless/forms/bulk_import.py:104 -#: netbox/wireless/forms/bulk_import.py:107 -#: netbox/wireless/forms/filtersets.py:54 -#: netbox/wireless/forms/filtersets.py:88 +#: ipam/forms/bulk_edit.py:399 ipam/forms/filtersets.py:402 +#: wireless/forms/bulk_edit.py:68 wireless/forms/bulk_edit.py:115 +#: wireless/forms/bulk_import.py:62 wireless/forms/bulk_import.py:65 +#: wireless/forms/bulk_import.py:104 wireless/forms/bulk_import.py:107 +#: wireless/forms/filtersets.py:54 wireless/forms/filtersets.py:88 msgid "Authentication type" msgstr "Autentificeringstype" -#: netbox/ipam/forms/bulk_edit.py:403 netbox/ipam/forms/filtersets.py:406 +#: ipam/forms/bulk_edit.py:404 ipam/forms/filtersets.py:406 msgid "Authentication key" msgstr "Autentificeringsnøgle" -#: netbox/ipam/forms/bulk_edit.py:420 netbox/ipam/forms/filtersets.py:383 -#: netbox/ipam/forms/model_forms.py:474 netbox/netbox/navigation/menu.py:386 -#: netbox/templates/ipam/fhrpgroup.html:49 -#: netbox/templates/wireless/inc/authentication_attrs.html:5 -#: netbox/wireless/forms/bulk_edit.py:91 -#: netbox/wireless/forms/bulk_edit.py:149 -#: netbox/wireless/forms/filtersets.py:36 -#: netbox/wireless/forms/filtersets.py:76 -#: netbox/wireless/forms/model_forms.py:55 -#: netbox/wireless/forms/model_forms.py:171 +#: ipam/forms/bulk_edit.py:421 ipam/forms/filtersets.py:383 +#: ipam/forms/model_forms.py:474 netbox/navigation/menu.py:386 +#: templates/ipam/fhrpgroup.html:49 +#: templates/wireless/inc/authentication_attrs.html:5 +#: wireless/forms/bulk_edit.py:91 wireless/forms/bulk_edit.py:149 +#: wireless/forms/filtersets.py:36 wireless/forms/filtersets.py:76 +#: wireless/forms/model_forms.py:55 wireless/forms/model_forms.py:171 msgid "Authentication" msgstr "Autentificering" -#: netbox/ipam/forms/bulk_edit.py:432 netbox/ipam/forms/model_forms.py:575 +#: ipam/forms/bulk_edit.py:436 ipam/forms/model_forms.py:575 msgid "Scope type" msgstr "Områdetype" -#: netbox/ipam/forms/bulk_edit.py:490 netbox/ipam/models/vlans.py:60 -msgid "VLAN ID ranges" -msgstr "VLAN-ID-intervaller" - -#: netbox/ipam/forms/bulk_edit.py:498 netbox/ipam/forms/model_forms.py:578 -#: netbox/ipam/forms/model_forms.py:588 netbox/ipam/tables/vlans.py:71 -#: netbox/templates/ipam/vlangroup.html:38 +#: ipam/forms/bulk_edit.py:439 ipam/forms/bulk_edit.py:453 +#: ipam/forms/model_forms.py:578 ipam/forms/model_forms.py:588 +#: ipam/tables/vlans.py:71 templates/ipam/vlangroup.html:38 msgid "Scope" msgstr "Anvendelsesområde" -#: netbox/ipam/forms/bulk_edit.py:570 +#: ipam/forms/bulk_edit.py:446 ipam/models/vlans.py:60 +msgid "VLAN ID ranges" +msgstr "VLAN-ID-intervaller" + +#: ipam/forms/bulk_edit.py:525 msgid "Site & Group" msgstr "Område & Gruppe" -#: netbox/ipam/forms/bulk_edit.py:584 netbox/ipam/forms/model_forms.py:659 -#: netbox/ipam/forms/model_forms.py:691 netbox/ipam/tables/services.py:19 -#: netbox/ipam/tables/services.py:49 netbox/templates/ipam/service.html:36 -#: netbox/templates/ipam/servicetemplate.html:23 +#: ipam/forms/bulk_edit.py:539 ipam/forms/model_forms.py:659 +#: ipam/forms/model_forms.py:691 ipam/tables/services.py:19 +#: ipam/tables/services.py:49 templates/ipam/service.html:36 +#: templates/ipam/servicetemplate.html:23 msgid "Ports" msgstr "Havne" -#: netbox/ipam/forms/bulk_import.py:48 +#: ipam/forms/bulk_import.py:48 msgid "Import route targets" msgstr "Importer rutemål" -#: netbox/ipam/forms/bulk_import.py:54 +#: ipam/forms/bulk_import.py:54 msgid "Export route targets" msgstr "Eksporter rutemål" -#: netbox/ipam/forms/bulk_import.py:92 netbox/ipam/forms/bulk_import.py:112 -#: netbox/ipam/forms/bulk_import.py:132 +#: ipam/forms/bulk_import.py:92 ipam/forms/bulk_import.py:112 +#: ipam/forms/bulk_import.py:132 msgid "Assigned RIR" msgstr "Tildelt RIR" -#: netbox/ipam/forms/bulk_import.py:182 +#: ipam/forms/bulk_import.py:182 msgid "VLAN's group (if any)" msgstr "VLANs gruppe (hvis nogen)" -#: netbox/ipam/forms/bulk_import.py:308 +#: ipam/forms/bulk_import.py:308 msgid "Parent device of assigned interface (if any)" msgstr "Overordnet enhed med tildelt grænseflade (hvis nogen)" -#: netbox/ipam/forms/bulk_import.py:311 netbox/ipam/forms/bulk_import.py:488 -#: netbox/ipam/forms/model_forms.py:685 -#: netbox/virtualization/filtersets.py:288 -#: netbox/virtualization/filtersets.py:327 -#: netbox/virtualization/forms/bulk_edit.py:200 -#: netbox/virtualization/forms/bulk_edit.py:326 -#: netbox/virtualization/forms/bulk_import.py:146 -#: netbox/virtualization/forms/bulk_import.py:207 -#: netbox/virtualization/forms/filtersets.py:212 -#: netbox/virtualization/forms/filtersets.py:248 -#: netbox/virtualization/forms/model_forms.py:288 -#: netbox/vpn/forms/bulk_import.py:93 netbox/vpn/forms/bulk_import.py:290 +#: ipam/forms/bulk_import.py:311 ipam/forms/bulk_import.py:488 +#: ipam/forms/model_forms.py:685 virtualization/filtersets.py:288 +#: virtualization/filtersets.py:327 virtualization/forms/bulk_edit.py:200 +#: virtualization/forms/bulk_edit.py:326 +#: virtualization/forms/bulk_import.py:146 +#: virtualization/forms/bulk_import.py:207 +#: virtualization/forms/filtersets.py:212 +#: virtualization/forms/filtersets.py:248 +#: virtualization/forms/model_forms.py:288 vpn/forms/bulk_import.py:93 +#: vpn/forms/bulk_import.py:290 msgid "Virtual machine" msgstr "Virtuel maskine" -#: netbox/ipam/forms/bulk_import.py:315 +#: ipam/forms/bulk_import.py:315 msgid "Parent VM of assigned interface (if any)" msgstr "Overordnet VM for tildelt grænseflade (hvis nogen)" -#: netbox/ipam/forms/bulk_import.py:325 +#: ipam/forms/bulk_import.py:325 msgid "Is primary" msgstr "Er primær" -#: netbox/ipam/forms/bulk_import.py:326 +#: ipam/forms/bulk_import.py:326 msgid "Make this the primary IP for the assigned device" msgstr "Gør dette til den primære IP for den tildelte enhed" -#: netbox/ipam/forms/bulk_import.py:365 +#: ipam/forms/bulk_import.py:365 msgid "No device or virtual machine specified; cannot set as primary IP" msgstr "" "Ingen enhed eller virtuel maskine angivet; kan ikke indstilles som primær IP" -#: netbox/ipam/forms/bulk_import.py:369 +#: ipam/forms/bulk_import.py:369 msgid "No interface specified; cannot set as primary IP" msgstr "Ingen grænseflade angivet; kan ikke indstilles som primær IP" -#: netbox/ipam/forms/bulk_import.py:398 +#: ipam/forms/bulk_import.py:398 msgid "Auth type" msgstr "Autentificeringstype" -#: netbox/ipam/forms/bulk_import.py:413 +#: ipam/forms/bulk_import.py:413 msgid "Scope type (app & model)" msgstr "Omfangstype (app og model)" -#: netbox/ipam/forms/bulk_import.py:440 +#: ipam/forms/bulk_import.py:440 msgid "Assigned VLAN group" msgstr "Tildelt VLAN-gruppe" -#: netbox/ipam/forms/bulk_import.py:471 netbox/ipam/forms/bulk_import.py:497 +#: ipam/forms/bulk_import.py:471 ipam/forms/bulk_import.py:497 msgid "IP protocol" msgstr "IP-protokol" -#: netbox/ipam/forms/bulk_import.py:485 +#: ipam/forms/bulk_import.py:485 msgid "Required if not assigned to a VM" msgstr "Påkrævet, hvis den ikke er tildelt en VM" -#: netbox/ipam/forms/bulk_import.py:492 +#: ipam/forms/bulk_import.py:492 msgid "Required if not assigned to a device" msgstr "Påkrævet, hvis den ikke er tildelt en enhed" -#: netbox/ipam/forms/bulk_import.py:517 +#: ipam/forms/bulk_import.py:517 #, python-brace-format msgid "{ip} is not assigned to this device/VM." msgstr "{ip} er ikke tildelt denne enhed/VM." -#: netbox/ipam/forms/filtersets.py:47 netbox/ipam/forms/model_forms.py:63 -#: netbox/netbox/navigation/menu.py:189 netbox/vpn/forms/model_forms.py:410 +#: ipam/forms/filtersets.py:47 ipam/forms/model_forms.py:63 +#: netbox/navigation/menu.py:189 vpn/forms/model_forms.py:410 msgid "Route Targets" msgstr "Rutemål" -#: netbox/ipam/forms/filtersets.py:53 netbox/ipam/forms/model_forms.py:50 -#: netbox/vpn/forms/filtersets.py:224 netbox/vpn/forms/model_forms.py:397 +#: ipam/forms/filtersets.py:53 ipam/forms/model_forms.py:50 +#: vpn/forms/filtersets.py:224 vpn/forms/model_forms.py:397 msgid "Import targets" msgstr "Importmål" -#: netbox/ipam/forms/filtersets.py:58 netbox/ipam/forms/model_forms.py:55 -#: netbox/vpn/forms/filtersets.py:229 netbox/vpn/forms/model_forms.py:402 +#: ipam/forms/filtersets.py:58 ipam/forms/model_forms.py:55 +#: vpn/forms/filtersets.py:229 vpn/forms/model_forms.py:402 msgid "Export targets" msgstr "Eksportmål" -#: netbox/ipam/forms/filtersets.py:73 +#: ipam/forms/filtersets.py:73 msgid "Imported by VRF" msgstr "Importeret af VRF" -#: netbox/ipam/forms/filtersets.py:78 +#: ipam/forms/filtersets.py:78 msgid "Exported by VRF" msgstr "Eksporteret af VRF" -#: netbox/ipam/forms/filtersets.py:87 netbox/ipam/tables/ip.py:89 -#: netbox/templates/ipam/rir.html:30 +#: ipam/forms/filtersets.py:87 ipam/tables/ip.py:89 templates/ipam/rir.html:30 msgid "Private" msgstr "Privat" -#: netbox/ipam/forms/filtersets.py:105 netbox/ipam/forms/filtersets.py:191 -#: netbox/ipam/forms/filtersets.py:272 netbox/ipam/forms/filtersets.py:326 +#: ipam/forms/filtersets.py:105 ipam/forms/filtersets.py:191 +#: ipam/forms/filtersets.py:272 ipam/forms/filtersets.py:326 msgid "Address family" msgstr "Adressefamilie" -#: netbox/ipam/forms/filtersets.py:119 netbox/templates/ipam/asnrange.html:25 +#: ipam/forms/filtersets.py:119 templates/ipam/asnrange.html:25 msgid "Range" msgstr "Rækkevidde" -#: netbox/ipam/forms/filtersets.py:128 +#: ipam/forms/filtersets.py:128 msgid "Start" msgstr "Start" -#: netbox/ipam/forms/filtersets.py:132 +#: ipam/forms/filtersets.py:132 msgid "End" msgstr "Slut" -#: netbox/ipam/forms/filtersets.py:186 +#: ipam/forms/filtersets.py:186 msgid "Search within" msgstr "Søg inden for" -#: netbox/ipam/forms/filtersets.py:207 netbox/ipam/forms/filtersets.py:342 +#: ipam/forms/filtersets.py:207 ipam/forms/filtersets.py:342 msgid "Present in VRF" msgstr "Til stede i VRF" -#: netbox/ipam/forms/filtersets.py:311 +#: ipam/forms/filtersets.py:311 msgid "Device/VM" msgstr "Enhed/VM" -#: netbox/ipam/forms/filtersets.py:321 +#: ipam/forms/filtersets.py:321 msgid "Parent Prefix" msgstr "Forældrepræfiks" -#: netbox/ipam/forms/filtersets.py:347 +#: ipam/forms/filtersets.py:347 msgid "Assigned Device" msgstr "Tildelt enhed" -#: netbox/ipam/forms/filtersets.py:352 +#: ipam/forms/filtersets.py:352 msgid "Assigned VM" msgstr "Tildelt VM" -#: netbox/ipam/forms/filtersets.py:366 +#: ipam/forms/filtersets.py:366 msgid "Assigned to an interface" msgstr "Tildelt til en grænseflade" -#: netbox/ipam/forms/filtersets.py:373 netbox/templates/ipam/ipaddress.html:51 +#: ipam/forms/filtersets.py:373 templates/ipam/ipaddress.html:51 msgid "DNS Name" msgstr "DNS-navn" -#: netbox/ipam/forms/filtersets.py:416 netbox/ipam/models/vlans.py:235 -#: netbox/ipam/tables/ip.py:176 netbox/ipam/tables/vlans.py:82 -#: netbox/ipam/views.py:971 netbox/netbox/navigation/menu.py:193 -#: netbox/netbox/navigation/menu.py:195 +#: ipam/forms/filtersets.py:416 ipam/models/vlans.py:235 ipam/tables/ip.py:176 +#: ipam/tables/vlans.py:82 ipam/views.py:971 netbox/navigation/menu.py:193 +#: netbox/navigation/menu.py:195 msgid "VLANs" msgstr "VLAN'er" -#: netbox/ipam/forms/filtersets.py:457 +#: ipam/forms/filtersets.py:457 msgid "Contains VLAN ID" msgstr "Indeholder VLAN ID" -#: netbox/ipam/forms/filtersets.py:513 netbox/ipam/models/vlans.py:176 -#: netbox/templates/ipam/vlan.html:31 +#: ipam/forms/filtersets.py:513 ipam/models/vlans.py:176 +#: templates/ipam/vlan.html:31 msgid "VLAN ID" msgstr "VLAN-ID" -#: netbox/ipam/forms/filtersets.py:556 netbox/ipam/forms/model_forms.py:320 -#: netbox/ipam/forms/model_forms.py:713 netbox/ipam/forms/model_forms.py:739 -#: netbox/ipam/tables/vlans.py:195 -#: netbox/templates/virtualization/virtualdisk.html:21 -#: netbox/templates/virtualization/virtualmachine.html:12 -#: netbox/templates/virtualization/vminterface.html:21 -#: netbox/templates/vpn/tunneltermination.html:25 -#: netbox/virtualization/forms/filtersets.py:197 -#: netbox/virtualization/forms/filtersets.py:242 -#: netbox/virtualization/forms/model_forms.py:220 -#: netbox/virtualization/tables/virtualmachines.py:135 -#: netbox/virtualization/tables/virtualmachines.py:190 -#: netbox/vpn/choices.py:45 netbox/vpn/forms/filtersets.py:293 -#: netbox/vpn/forms/model_forms.py:160 netbox/vpn/forms/model_forms.py:171 -#: netbox/vpn/forms/model_forms.py:273 netbox/vpn/forms/model_forms.py:454 +#: ipam/forms/filtersets.py:556 ipam/forms/model_forms.py:320 +#: ipam/forms/model_forms.py:713 ipam/forms/model_forms.py:739 +#: ipam/tables/vlans.py:195 templates/virtualization/virtualdisk.html:21 +#: templates/virtualization/virtualmachine.html:12 +#: templates/virtualization/vminterface.html:21 +#: templates/vpn/tunneltermination.html:25 +#: virtualization/forms/filtersets.py:197 +#: virtualization/forms/filtersets.py:242 +#: virtualization/forms/model_forms.py:220 +#: virtualization/tables/virtualmachines.py:135 +#: virtualization/tables/virtualmachines.py:190 vpn/choices.py:45 +#: vpn/forms/filtersets.py:293 vpn/forms/model_forms.py:160 +#: vpn/forms/model_forms.py:171 vpn/forms/model_forms.py:273 +#: vpn/forms/model_forms.py:454 msgid "Virtual Machine" msgstr "Virtuel maskine" -#: netbox/ipam/forms/model_forms.py:80 -#: netbox/templates/ipam/routetarget.html:10 +#: ipam/forms/model_forms.py:80 templates/ipam/routetarget.html:10 msgid "Route Target" msgstr "Rutemål" -#: netbox/ipam/forms/model_forms.py:114 netbox/ipam/tables/ip.py:117 -#: netbox/templates/ipam/aggregate.html:11 -#: netbox/templates/ipam/prefix.html:38 +#: ipam/forms/model_forms.py:114 ipam/tables/ip.py:117 +#: templates/ipam/aggregate.html:11 templates/ipam/prefix.html:38 msgid "Aggregate" msgstr "Aggregeret" -#: netbox/ipam/forms/model_forms.py:135 netbox/templates/ipam/asnrange.html:12 +#: ipam/forms/model_forms.py:135 templates/ipam/asnrange.html:12 msgid "ASN Range" msgstr "ASN-rækkevidde" -#: netbox/ipam/forms/model_forms.py:231 +#: ipam/forms/model_forms.py:231 msgid "Site/VLAN Assignment" msgstr "Område/VLAN-tildeling" -#: netbox/ipam/forms/model_forms.py:259 netbox/templates/ipam/iprange.html:10 +#: ipam/forms/model_forms.py:259 templates/ipam/iprange.html:10 msgid "IP Range" msgstr "IP-rækkevidde" -#: netbox/ipam/forms/model_forms.py:295 netbox/ipam/forms/model_forms.py:321 -#: netbox/ipam/forms/model_forms.py:473 -#: netbox/templates/ipam/fhrpgroup.html:19 +#: ipam/forms/model_forms.py:295 ipam/forms/model_forms.py:321 +#: ipam/forms/model_forms.py:473 templates/ipam/fhrpgroup.html:19 msgid "FHRP Group" msgstr "FHRP-gruppen" -#: netbox/ipam/forms/model_forms.py:310 +#: ipam/forms/model_forms.py:310 msgid "Make this the primary IP for the device/VM" msgstr "Gør dette til den primære IP for enheden/VM" -#: netbox/ipam/forms/model_forms.py:325 +#: ipam/forms/model_forms.py:325 msgid "NAT IP (Inside)" msgstr "NAT IP (indvendigt)" -#: netbox/ipam/forms/model_forms.py:384 +#: ipam/forms/model_forms.py:384 msgid "An IP address can only be assigned to a single object." msgstr "En IP-adresse kan kun tildeles et enkelt objekt." -#: netbox/ipam/forms/model_forms.py:390 netbox/ipam/models/ip.py:897 +#: ipam/forms/model_forms.py:390 ipam/models/ip.py:897 msgid "" "Cannot reassign IP address while it is designated as the primary IP for the " "parent object" @@ -9781,31 +9186,30 @@ msgstr "" "Kan ikke omtildele IP-adresse, mens den er angivet som den primære IP for " "det overordnede objekt" -#: netbox/ipam/forms/model_forms.py:400 +#: ipam/forms/model_forms.py:400 msgid "" "Only IP addresses assigned to an interface can be designated as primary IPs." msgstr "" "Kun IP-adresser, der er tildelt en grænseflade, kan betegnes som primære " "IP'er." -#: netbox/ipam/forms/model_forms.py:475 +#: ipam/forms/model_forms.py:475 msgid "Virtual IP Address" msgstr "Virtuel IP-adresse" -#: netbox/ipam/forms/model_forms.py:560 +#: ipam/forms/model_forms.py:560 msgid "Assignment already exists" msgstr "Opgaven findes allerede" -#: netbox/ipam/forms/model_forms.py:569 -#: netbox/templates/ipam/vlangroup.html:42 +#: ipam/forms/model_forms.py:569 templates/ipam/vlangroup.html:42 msgid "VLAN IDs" msgstr "VLAN-id'er" -#: netbox/ipam/forms/model_forms.py:587 +#: ipam/forms/model_forms.py:587 msgid "Child VLANs" msgstr "VLAN'er til børn" -#: netbox/ipam/forms/model_forms.py:664 netbox/ipam/forms/model_forms.py:696 +#: ipam/forms/model_forms.py:664 ipam/forms/model_forms.py:696 msgid "" "Comma-separated list of one or more port numbers. A range may be specified " "using a hyphen." @@ -9813,133 +9217,132 @@ msgstr "" "Kommasepareret liste over et eller flere portnumre. Et interval kan angives " "ved hjælp af en bindestreg." -#: netbox/ipam/forms/model_forms.py:669 -#: netbox/templates/ipam/servicetemplate.html:12 +#: ipam/forms/model_forms.py:669 templates/ipam/servicetemplate.html:12 msgid "Service Template" msgstr "Serviceskabelon" -#: netbox/ipam/forms/model_forms.py:716 +#: ipam/forms/model_forms.py:716 msgid "Port(s)" msgstr "Havn (er)" -#: netbox/ipam/forms/model_forms.py:717 netbox/ipam/forms/model_forms.py:745 -#: netbox/templates/ipam/service.html:21 +#: ipam/forms/model_forms.py:717 ipam/forms/model_forms.py:745 +#: templates/ipam/service.html:21 msgid "Service" msgstr "Serviceydelse" -#: netbox/ipam/forms/model_forms.py:730 +#: ipam/forms/model_forms.py:730 msgid "Service template" msgstr "Serviceskabelon" -#: netbox/ipam/forms/model_forms.py:742 +#: ipam/forms/model_forms.py:742 msgid "From Template" msgstr "Fra skabelon" -#: netbox/ipam/forms/model_forms.py:743 +#: ipam/forms/model_forms.py:743 msgid "Custom" msgstr "Brugerdefineret" -#: netbox/ipam/forms/model_forms.py:773 +#: ipam/forms/model_forms.py:773 msgid "" "Must specify name, protocol, and port(s) if not using a service template." msgstr "" "Du skal angive navn, protokol og port (er), hvis du ikke bruger en " "serviceskabelon." -#: netbox/ipam/models/asns.py:34 +#: ipam/models/asns.py:34 msgid "start" msgstr "start" -#: netbox/ipam/models/asns.py:51 +#: ipam/models/asns.py:51 msgid "ASN range" msgstr "ASN rækkevidde" -#: netbox/ipam/models/asns.py:52 +#: ipam/models/asns.py:52 msgid "ASN ranges" msgstr "ASN intervaller" -#: netbox/ipam/models/asns.py:72 +#: ipam/models/asns.py:72 #, python-brace-format msgid "Starting ASN ({start}) must be lower than ending ASN ({end})." msgstr "Start ASN ({start}) skal være lavere end slutningen af ASN ({end})." -#: netbox/ipam/models/asns.py:104 +#: ipam/models/asns.py:104 msgid "Regional Internet Registry responsible for this AS number space" msgstr "Regionalt internetregister, der er ansvarlig for dette AS-nummerrum" -#: netbox/ipam/models/asns.py:109 +#: ipam/models/asns.py:109 msgid "16- or 32-bit autonomous system number" msgstr "16- eller 32-bit autonomt systemnummer" -#: netbox/ipam/models/fhrp.py:22 +#: ipam/models/fhrp.py:22 msgid "group ID" msgstr "Gruppe-ID" -#: netbox/ipam/models/fhrp.py:30 netbox/ipam/models/services.py:22 +#: ipam/models/fhrp.py:30 ipam/models/services.py:22 msgid "protocol" msgstr "protokol" -#: netbox/ipam/models/fhrp.py:38 netbox/wireless/models.py:28 +#: ipam/models/fhrp.py:38 wireless/models.py:28 msgid "authentication type" msgstr "autentificeringstype" -#: netbox/ipam/models/fhrp.py:43 +#: ipam/models/fhrp.py:43 msgid "authentication key" msgstr "autentificeringsnøgle" -#: netbox/ipam/models/fhrp.py:56 +#: ipam/models/fhrp.py:56 msgid "FHRP group" msgstr "FHRP-gruppe" -#: netbox/ipam/models/fhrp.py:57 +#: ipam/models/fhrp.py:57 msgid "FHRP groups" msgstr "FHRP-grupper" -#: netbox/ipam/models/fhrp.py:113 +#: ipam/models/fhrp.py:113 msgid "FHRP group assignment" msgstr "FHRP-gruppeopgave" -#: netbox/ipam/models/fhrp.py:114 +#: ipam/models/fhrp.py:114 msgid "FHRP group assignments" msgstr "FHRP gruppeopgaver" -#: netbox/ipam/models/ip.py:65 +#: ipam/models/ip.py:65 msgid "private" msgstr "privat" -#: netbox/ipam/models/ip.py:66 +#: ipam/models/ip.py:66 msgid "IP space managed by this RIR is considered private" msgstr "IP-plads administreret af denne RIR betragtes som privat" -#: netbox/ipam/models/ip.py:72 netbox/netbox/navigation/menu.py:182 +#: ipam/models/ip.py:72 netbox/navigation/menu.py:182 msgid "RIRs" msgstr "RIR'er" -#: netbox/ipam/models/ip.py:84 +#: ipam/models/ip.py:84 msgid "IPv4 or IPv6 network" msgstr "IPv4- eller IPv6-netværk" -#: netbox/ipam/models/ip.py:91 +#: ipam/models/ip.py:91 msgid "Regional Internet Registry responsible for this IP space" msgstr "Regionalt internetregister, der er ansvarlig for dette IP-rum" -#: netbox/ipam/models/ip.py:101 +#: ipam/models/ip.py:101 msgid "date added" msgstr "dato tilføjet" -#: netbox/ipam/models/ip.py:115 +#: ipam/models/ip.py:115 msgid "aggregate" msgstr "aggregat" -#: netbox/ipam/models/ip.py:116 +#: ipam/models/ip.py:116 msgid "aggregates" msgstr "aggregater" -#: netbox/ipam/models/ip.py:132 +#: ipam/models/ip.py:132 msgid "Cannot create aggregate with /0 mask." msgstr "Kan ikke oprette aggregat med /0-maske." -#: netbox/ipam/models/ip.py:144 +#: ipam/models/ip.py:144 #, python-brace-format msgid "" "Aggregates cannot overlap. {prefix} is already covered by an existing " @@ -9948,7 +9351,7 @@ msgstr "" "Aggregater kan ikke overlappe hinanden. {prefix} er allerede dækket af et " "eksisterende aggregat ({aggregate})." -#: netbox/ipam/models/ip.py:158 +#: ipam/models/ip.py:158 #, python-brace-format msgid "" "Prefixes cannot overlap aggregates. {prefix} covers an existing aggregate " @@ -9957,228 +9360,226 @@ msgstr "" "Præfikser kan ikke overlappe aggregater. {prefix} dækker et eksisterende " "aggregat ({aggregate})." -#: netbox/ipam/models/ip.py:200 netbox/ipam/models/ip.py:737 -#: netbox/vpn/models/tunnels.py:114 +#: ipam/models/ip.py:200 ipam/models/ip.py:737 vpn/models/tunnels.py:114 msgid "role" msgstr "rolle" -#: netbox/ipam/models/ip.py:201 +#: ipam/models/ip.py:201 msgid "roles" msgstr "roller" -#: netbox/ipam/models/ip.py:217 netbox/ipam/models/ip.py:293 +#: ipam/models/ip.py:217 ipam/models/ip.py:293 msgid "prefix" msgstr "præfiks" -#: netbox/ipam/models/ip.py:218 +#: ipam/models/ip.py:218 msgid "IPv4 or IPv6 network with mask" msgstr "IPv4- eller IPv6-netværk med maske" -#: netbox/ipam/models/ip.py:254 +#: ipam/models/ip.py:254 msgid "Operational status of this prefix" msgstr "Driftsstatus for dette præfiks" -#: netbox/ipam/models/ip.py:262 +#: ipam/models/ip.py:262 msgid "The primary function of this prefix" msgstr "Den primære funktion af dette præfiks" -#: netbox/ipam/models/ip.py:265 +#: ipam/models/ip.py:265 msgid "is a pool" msgstr "er en pool" -#: netbox/ipam/models/ip.py:267 +#: ipam/models/ip.py:267 msgid "All IP addresses within this prefix are considered usable" msgstr "Alle IP-adresser inden for dette præfiks betragtes som brugbare" -#: netbox/ipam/models/ip.py:270 netbox/ipam/models/ip.py:537 +#: ipam/models/ip.py:270 ipam/models/ip.py:537 msgid "mark utilized" msgstr "brugt mærke" -#: netbox/ipam/models/ip.py:294 +#: ipam/models/ip.py:294 msgid "prefixes" msgstr "præfikser" -#: netbox/ipam/models/ip.py:317 +#: ipam/models/ip.py:317 msgid "Cannot create prefix with /0 mask." msgstr "Kan ikke oprette præfiks med /0-maske." -#: netbox/ipam/models/ip.py:324 netbox/ipam/models/ip.py:874 +#: ipam/models/ip.py:324 ipam/models/ip.py:874 #, python-brace-format msgid "VRF {vrf}" msgstr "VRF {vrf}" -#: netbox/ipam/models/ip.py:324 netbox/ipam/models/ip.py:874 +#: ipam/models/ip.py:324 ipam/models/ip.py:874 msgid "global table" msgstr "global tabel" -#: netbox/ipam/models/ip.py:326 +#: ipam/models/ip.py:326 #, python-brace-format msgid "Duplicate prefix found in {table}: {prefix}" msgstr "Duplikat præfiks fundet i {table}: {prefix}" -#: netbox/ipam/models/ip.py:495 +#: ipam/models/ip.py:495 msgid "start address" msgstr "startadresse" -#: netbox/ipam/models/ip.py:496 netbox/ipam/models/ip.py:500 -#: netbox/ipam/models/ip.py:712 +#: ipam/models/ip.py:496 ipam/models/ip.py:500 ipam/models/ip.py:712 msgid "IPv4 or IPv6 address (with mask)" msgstr "IPv4- eller IPv6-adresse (med maske)" -#: netbox/ipam/models/ip.py:499 +#: ipam/models/ip.py:499 msgid "end address" msgstr "slutadresse" -#: netbox/ipam/models/ip.py:526 +#: ipam/models/ip.py:526 msgid "Operational status of this range" msgstr "Driftsstatus for denne rækkevidde" -#: netbox/ipam/models/ip.py:534 +#: ipam/models/ip.py:534 msgid "The primary function of this range" msgstr "Den primære funktion af dette interval" -#: netbox/ipam/models/ip.py:548 +#: ipam/models/ip.py:548 msgid "IP range" msgstr "IP-rækkevidde" -#: netbox/ipam/models/ip.py:549 +#: ipam/models/ip.py:549 msgid "IP ranges" msgstr "IP-intervaller" -#: netbox/ipam/models/ip.py:565 +#: ipam/models/ip.py:565 msgid "Starting and ending IP address versions must match" msgstr "Startende og afsluttende IP-adresseversioner skal matche" -#: netbox/ipam/models/ip.py:571 +#: ipam/models/ip.py:571 msgid "Starting and ending IP address masks must match" msgstr "Startende og afsluttende IP-adressemasker skal matche" -#: netbox/ipam/models/ip.py:578 +#: ipam/models/ip.py:578 #, python-brace-format msgid "" "Ending address must be greater than the starting address ({start_address})" msgstr "Slutadressen skal være større end startadressen ({start_address})" -#: netbox/ipam/models/ip.py:590 +#: ipam/models/ip.py:590 #, python-brace-format msgid "Defined addresses overlap with range {overlapping_range} in VRF {vrf}" msgstr "" "Definerede adresser overlapper med rækkevidde {overlapping_range} i VRF " "{vrf}" -#: netbox/ipam/models/ip.py:599 +#: ipam/models/ip.py:599 #, python-brace-format msgid "Defined range exceeds maximum supported size ({max_size})" msgstr "" "Defineret interval overstiger den maksimale understøttede størrelse " "({max_size})" -#: netbox/ipam/models/ip.py:711 netbox/tenancy/models/contacts.py:82 +#: ipam/models/ip.py:711 tenancy/models/contacts.py:82 msgid "address" msgstr "adresse" -#: netbox/ipam/models/ip.py:734 +#: ipam/models/ip.py:734 msgid "The operational status of this IP" msgstr "Den operationelle status for denne IP" -#: netbox/ipam/models/ip.py:741 +#: ipam/models/ip.py:741 msgid "The functional role of this IP" msgstr "Den funktionelle rolle af denne IP" -#: netbox/ipam/models/ip.py:765 netbox/templates/ipam/ipaddress.html:72 +#: ipam/models/ip.py:765 templates/ipam/ipaddress.html:72 msgid "NAT (inside)" msgstr "NAT (indvendigt)" -#: netbox/ipam/models/ip.py:766 +#: ipam/models/ip.py:766 msgid "The IP for which this address is the \"outside\" IP" msgstr "Den IP, som denne adresse er den „eksterne“ IP for" -#: netbox/ipam/models/ip.py:773 +#: ipam/models/ip.py:773 msgid "Hostname or FQDN (not case-sensitive)" msgstr "Værtsnavn eller FQDN (skelner ikke mellem store og små bogstaver)" -#: netbox/ipam/models/ip.py:789 netbox/ipam/models/services.py:94 +#: ipam/models/ip.py:789 ipam/models/services.py:94 msgid "IP addresses" msgstr "IP-adresser" -#: netbox/ipam/models/ip.py:845 +#: ipam/models/ip.py:845 msgid "Cannot create IP address with /0 mask." msgstr "Kan ikke oprette IP-adresse med /0-maske." -#: netbox/ipam/models/ip.py:851 +#: ipam/models/ip.py:851 #, python-brace-format msgid "{ip} is a network ID, which may not be assigned to an interface." msgstr "{ip} er et netværks-id, som muligvis ikke tildeles en grænseflade." -#: netbox/ipam/models/ip.py:862 +#: ipam/models/ip.py:862 #, python-brace-format msgid "" "{ip} is a broadcast address, which may not be assigned to an interface." msgstr "" "{ip} er en udsendelsesadresse, som muligvis ikke tildeles en grænseflade." -#: netbox/ipam/models/ip.py:876 +#: ipam/models/ip.py:876 #, python-brace-format msgid "Duplicate IP address found in {table}: {ipaddress}" msgstr "Duplikat IP-adresse fundet i {table}: {ipaddress}" -#: netbox/ipam/models/ip.py:903 +#: ipam/models/ip.py:903 msgid "Only IPv6 addresses can be assigned SLAAC status" msgstr "Kun IPv6-adresser kan tildeles SLAAC-status" -#: netbox/ipam/models/services.py:33 +#: ipam/models/services.py:33 msgid "port numbers" msgstr "portnumre" -#: netbox/ipam/models/services.py:59 +#: ipam/models/services.py:59 msgid "service template" msgstr "service skabelon" -#: netbox/ipam/models/services.py:60 +#: ipam/models/services.py:60 msgid "service templates" msgstr "service skabeloner" -#: netbox/ipam/models/services.py:95 +#: ipam/models/services.py:95 msgid "The specific IP addresses (if any) to which this service is bound" msgstr "" "De specifikke IP-adresser (hvis nogen), som denne tjeneste er bundet til" -#: netbox/ipam/models/services.py:102 +#: ipam/models/services.py:102 msgid "service" msgstr "tjeneste" -#: netbox/ipam/models/services.py:103 +#: ipam/models/services.py:103 msgid "services" msgstr "ydelser" -#: netbox/ipam/models/services.py:117 +#: ipam/models/services.py:117 msgid "" "A service cannot be associated with both a device and a virtual machine." msgstr "En tjeneste kan ikke knyttes til både en enhed og en virtuel maskine." -#: netbox/ipam/models/services.py:119 +#: ipam/models/services.py:119 msgid "" "A service must be associated with either a device or a virtual machine." msgstr "" "En tjeneste skal være tilknyttet enten en enhed eller en virtuel maskine." -#: netbox/ipam/models/vlans.py:85 +#: ipam/models/vlans.py:85 msgid "VLAN groups" msgstr "VLAN-grupper" -#: netbox/ipam/models/vlans.py:95 +#: ipam/models/vlans.py:95 msgid "Cannot set scope_type without scope_id." msgstr "Kan ikke indstille scope_type uden scope_id." -#: netbox/ipam/models/vlans.py:97 +#: ipam/models/vlans.py:97 msgid "Cannot set scope_id without scope_type." msgstr "Kan ikke indstille scope_id uden scope_type." -#: netbox/ipam/models/vlans.py:101 +#: ipam/models/vlans.py:101 msgid "Ranges cannot overlap." msgstr "Intervaller kan ikke overlappe hinanden." -#: netbox/ipam/models/vlans.py:106 +#: ipam/models/vlans.py:106 #, python-brace-format msgid "" "Maximum child VID must be greater than or equal to minimum child VID " @@ -10187,27 +9588,27 @@ msgstr "" "Maksimal børneVID skal være større end eller lig med minimum børns VID " "({value})" -#: netbox/ipam/models/vlans.py:165 +#: ipam/models/vlans.py:165 msgid "The specific site to which this VLAN is assigned (if any)" msgstr "Det specifikke område, som dette VLAN er tildelt (hvis nogen)" -#: netbox/ipam/models/vlans.py:173 +#: ipam/models/vlans.py:173 msgid "VLAN group (optional)" msgstr "VLAN-gruppe (valgfrit)" -#: netbox/ipam/models/vlans.py:181 +#: ipam/models/vlans.py:181 msgid "Numeric VLAN ID (1-4094)" msgstr "Numerisk VLAN-id (1-4094)" -#: netbox/ipam/models/vlans.py:199 +#: ipam/models/vlans.py:199 msgid "Operational status of this VLAN" msgstr "Driftsstatus for dette VLAN" -#: netbox/ipam/models/vlans.py:207 +#: ipam/models/vlans.py:207 msgid "The primary function of this VLAN" msgstr "Den primære funktion af denne VLAN" -#: netbox/ipam/models/vlans.py:250 +#: ipam/models/vlans.py:250 #, python-brace-format msgid "" "VLAN is assigned to group {group} (scope: {scope}); cannot also assign to " @@ -10216,167 +9617,165 @@ msgstr "" "VLAN er tildelt til gruppe {group} (anvendelsesområde: {scope}); kan ikke " "også tildele til området {site}." -#: netbox/ipam/models/vlans.py:259 +#: ipam/models/vlans.py:259 #, python-brace-format msgid "VID must be in ranges {ranges} for VLANs in group {group}" msgstr "" "VID skal være inden for intervaller {ranges} til VLAN'er i gruppe {group}" -#: netbox/ipam/models/vrfs.py:30 +#: ipam/models/vrfs.py:30 msgid "route distinguisher" msgstr "ruteadskillelse" -#: netbox/ipam/models/vrfs.py:31 +#: ipam/models/vrfs.py:31 msgid "Unique route distinguisher (as defined in RFC 4364)" msgstr "Unik ruteadskillelse (som defineret i RFC 4364)" -#: netbox/ipam/models/vrfs.py:42 +#: ipam/models/vrfs.py:42 msgid "enforce unique space" msgstr "håndhæv unikt rum" -#: netbox/ipam/models/vrfs.py:43 +#: ipam/models/vrfs.py:43 msgid "Prevent duplicate prefixes/IP addresses within this VRF" msgstr "Undgå dublerede præfikser/IP-adresser inden for denne VRF" -#: netbox/ipam/models/vrfs.py:63 netbox/netbox/navigation/menu.py:186 -#: netbox/netbox/navigation/menu.py:188 +#: ipam/models/vrfs.py:63 netbox/navigation/menu.py:186 +#: netbox/navigation/menu.py:188 msgid "VRFs" msgstr "VRF'er" -#: netbox/ipam/models/vrfs.py:82 +#: ipam/models/vrfs.py:82 msgid "Route target value (formatted in accordance with RFC 4360)" msgstr "Rutemålværdi (formateret i overensstemmelse med RFC 4360)" -#: netbox/ipam/models/vrfs.py:94 +#: ipam/models/vrfs.py:94 msgid "route target" msgstr "rute mål" -#: netbox/ipam/models/vrfs.py:95 +#: ipam/models/vrfs.py:95 msgid "route targets" msgstr "rutemål" -#: netbox/ipam/tables/asn.py:52 +#: ipam/tables/asn.py:52 msgid "ASDOT" msgstr "ASDOT" -#: netbox/ipam/tables/asn.py:57 +#: ipam/tables/asn.py:57 msgid "Site Count" msgstr "Antal områder" -#: netbox/ipam/tables/asn.py:62 +#: ipam/tables/asn.py:62 msgid "Provider Count" msgstr "Antal leverandøre" -#: netbox/ipam/tables/ip.py:95 netbox/netbox/navigation/menu.py:179 -#: netbox/netbox/navigation/menu.py:181 +#: ipam/tables/ip.py:95 netbox/navigation/menu.py:179 +#: netbox/navigation/menu.py:181 msgid "Aggregates" msgstr "Aggregater" -#: netbox/ipam/tables/ip.py:125 +#: ipam/tables/ip.py:125 msgid "Added" msgstr "Tilføjet" -#: netbox/ipam/tables/ip.py:128 netbox/ipam/tables/ip.py:166 -#: netbox/ipam/tables/vlans.py:142 netbox/ipam/views.py:346 -#: netbox/netbox/navigation/menu.py:165 netbox/netbox/navigation/menu.py:167 -#: netbox/templates/ipam/vlan.html:84 +#: ipam/tables/ip.py:128 ipam/tables/ip.py:166 ipam/tables/vlans.py:142 +#: ipam/views.py:346 netbox/navigation/menu.py:165 +#: netbox/navigation/menu.py:167 templates/ipam/vlan.html:84 msgid "Prefixes" msgstr "Præfikser" -#: netbox/ipam/tables/ip.py:131 netbox/ipam/tables/ip.py:270 -#: netbox/ipam/tables/ip.py:324 netbox/ipam/tables/vlans.py:86 -#: netbox/templates/dcim/device.html:260 -#: netbox/templates/ipam/aggregate.html:24 -#: netbox/templates/ipam/iprange.html:29 netbox/templates/ipam/prefix.html:106 +#: ipam/tables/ip.py:131 ipam/tables/ip.py:270 ipam/tables/ip.py:324 +#: ipam/tables/vlans.py:86 templates/dcim/device.html:260 +#: templates/ipam/aggregate.html:24 templates/ipam/iprange.html:29 +#: templates/ipam/prefix.html:106 msgid "Utilization" msgstr "Udnyttelse" -#: netbox/ipam/tables/ip.py:171 netbox/netbox/navigation/menu.py:161 +#: ipam/tables/ip.py:171 netbox/navigation/menu.py:161 msgid "IP Ranges" msgstr "IP-intervaller" -#: netbox/ipam/tables/ip.py:221 +#: ipam/tables/ip.py:221 msgid "Prefix (Flat)" msgstr "Præfiks (flad)" -#: netbox/ipam/tables/ip.py:225 +#: ipam/tables/ip.py:225 msgid "Depth" msgstr "Dybde" -#: netbox/ipam/tables/ip.py:262 +#: ipam/tables/ip.py:262 msgid "Pool" msgstr "Svømmebassin" -#: netbox/ipam/tables/ip.py:266 netbox/ipam/tables/ip.py:320 +#: ipam/tables/ip.py:266 ipam/tables/ip.py:320 msgid "Marked Utilized" msgstr "Markeret Udnyttet" -#: netbox/ipam/tables/ip.py:304 +#: ipam/tables/ip.py:304 msgid "Start address" msgstr "Startadresse" -#: netbox/ipam/tables/ip.py:383 +#: ipam/tables/ip.py:383 msgid "NAT (Inside)" msgstr "NAT (indvendigt)" -#: netbox/ipam/tables/ip.py:388 +#: ipam/tables/ip.py:388 msgid "NAT (Outside)" msgstr "NAT (udenfor)" -#: netbox/ipam/tables/ip.py:393 +#: ipam/tables/ip.py:393 msgid "Assigned" msgstr "Tildelt" -#: netbox/ipam/tables/ip.py:429 netbox/templates/vpn/l2vpntermination.html:16 -#: netbox/vpn/forms/filtersets.py:240 +#: ipam/tables/ip.py:429 templates/vpn/l2vpntermination.html:16 +#: vpn/forms/filtersets.py:240 msgid "Assigned Object" msgstr "Tildelt objekt" -#: netbox/ipam/tables/vlans.py:68 +#: ipam/tables/vlans.py:68 msgid "Scope Type" msgstr "Områdetype" -#: netbox/ipam/tables/vlans.py:76 +#: ipam/tables/vlans.py:76 msgid "VID Ranges" msgstr "VID intervaller" -#: netbox/ipam/tables/vlans.py:111 netbox/ipam/tables/vlans.py:214 -#: netbox/templates/dcim/inc/interface_vlans_table.html:4 +#: ipam/tables/vlans.py:111 ipam/tables/vlans.py:214 +#: templates/dcim/inc/interface_vlans_table.html:4 msgid "VID" msgstr "VIDEO" -#: netbox/ipam/tables/vrfs.py:30 +#: ipam/tables/vrfs.py:30 msgid "RD" msgstr "RD" -#: netbox/ipam/tables/vrfs.py:33 +#: ipam/tables/vrfs.py:33 msgid "Unique" msgstr "Unik" -#: netbox/ipam/tables/vrfs.py:37 netbox/vpn/tables/l2vpn.py:27 +#: ipam/tables/vrfs.py:37 vpn/tables/l2vpn.py:27 msgid "Import Targets" msgstr "Importmål" -#: netbox/ipam/tables/vrfs.py:42 netbox/vpn/tables/l2vpn.py:32 +#: ipam/tables/vrfs.py:42 vpn/tables/l2vpn.py:32 msgid "Export Targets" msgstr "Eksportmål" -#: netbox/ipam/validators.py:9 +#: ipam/validators.py:9 #, python-brace-format msgid "{prefix} is not a valid prefix. Did you mean {suggested}?" msgstr "{prefix} er ikke et gyldigt præfiks. Mente du {suggested}?" -#: netbox/ipam/validators.py:16 +#: ipam/validators.py:16 #, python-format msgid "The prefix length must be less than or equal to %(limit_value)s." msgstr "Præfikslængden skal være mindre end eller lig med %(limit_value)s." -#: netbox/ipam/validators.py:24 +#: ipam/validators.py:24 #, python-format msgid "The prefix length must be greater than or equal to %(limit_value)s." msgstr "Præfikslængden skal være større end eller lig med %(limit_value)s." -#: netbox/ipam/validators.py:33 +#: ipam/validators.py:33 msgid "" "Only alphanumeric characters, asterisks, hyphens, periods, and underscores " "are allowed in DNS names" @@ -10384,31 +9783,31 @@ msgstr "" "Kun alfanumeriske tegn, stjerner, bindestreger, punktum og understregninger " "er tilladt i DNS-navne" -#: netbox/ipam/views.py:533 +#: ipam/views.py:533 msgid "Child Prefixes" msgstr "Børnepræfikser" -#: netbox/ipam/views.py:569 +#: ipam/views.py:569 msgid "Child Ranges" msgstr "Børneområder" -#: netbox/ipam/views.py:898 +#: ipam/views.py:898 msgid "Related IPs" msgstr "Relaterede IP'er" -#: netbox/ipam/views.py:1127 +#: ipam/views.py:1127 msgid "Device Interfaces" msgstr "Enhedsgrænseflader" -#: netbox/ipam/views.py:1145 +#: ipam/views.py:1145 msgid "VM Interfaces" msgstr "VM-grænseflader" -#: netbox/netbox/api/fields.py:65 +#: netbox/api/fields.py:65 msgid "This field may not be blank." msgstr "Dette felt må ikke være tomt." -#: netbox/netbox/api/fields.py:70 +#: netbox/api/fields.py:70 msgid "" "Value must be passed directly (e.g. \"foo\": 123); do not use a dictionary " "or list." @@ -10416,341 +9815,328 @@ msgstr "" "Værdien skal sendes direkte (f.eks. „foo“: 123); brug ikke en ordbog eller " "liste." -#: netbox/netbox/api/fields.py:91 +#: netbox/api/fields.py:91 #, python-brace-format msgid "{value} is not a valid choice." msgstr "{value} Det er ikke et gyldigt valg." -#: netbox/netbox/api/fields.py:104 +#: netbox/api/fields.py:104 #, python-brace-format msgid "Invalid content type: {content_type}" msgstr "Ugyldig indholdstype: {content_type}" -#: netbox/netbox/api/fields.py:105 +#: netbox/api/fields.py:105 msgid "Invalid value. Specify a content type as '.'." msgstr "Ugyldig værdi. Angiv en indholdstype som '.„." -#: netbox/netbox/api/fields.py:167 +#: netbox/api/fields.py:167 msgid "Ranges must be specified in the form (lower, upper)." msgstr "Intervaller skal specificeres i formularen (nedre, øvre)." -#: netbox/netbox/api/fields.py:169 +#: netbox/api/fields.py:169 msgid "Range boundaries must be defined as integers." msgstr "Områdegrænser skal defineres som heltal." -#: netbox/netbox/api/serializers/fields.py:40 +#: netbox/api/serializers/fields.py:40 #, python-brace-format msgid "{class_name} must implement get_view_name()" msgstr "{class_name} skal implementere get_view_name ()" -#: netbox/netbox/authentication/__init__.py:138 +#: netbox/authentication/__init__.py:138 #, python-brace-format msgid "Invalid permission {permission} for model {model}" msgstr "Ugyldig tilladelse {permission} til model {model}" -#: netbox/netbox/choices.py:49 +#: netbox/choices.py:49 msgid "Dark Red" msgstr "Mørk rød" -#: netbox/netbox/choices.py:52 +#: netbox/choices.py:52 msgid "Rose" msgstr "Rose" -#: netbox/netbox/choices.py:53 +#: netbox/choices.py:53 msgid "Fuchsia" msgstr "Fuchsia" -#: netbox/netbox/choices.py:55 +#: netbox/choices.py:55 msgid "Dark Purple" msgstr "Mørk lilla" -#: netbox/netbox/choices.py:58 +#: netbox/choices.py:58 msgid "Light Blue" msgstr "Lyseblå" -#: netbox/netbox/choices.py:61 +#: netbox/choices.py:61 msgid "Aqua" msgstr "Aqua" -#: netbox/netbox/choices.py:62 +#: netbox/choices.py:62 msgid "Dark Green" msgstr "Mørkegrøn" -#: netbox/netbox/choices.py:64 +#: netbox/choices.py:64 msgid "Light Green" msgstr "Lysegrøn" -#: netbox/netbox/choices.py:65 +#: netbox/choices.py:65 msgid "Lime" msgstr "Citron" -#: netbox/netbox/choices.py:67 +#: netbox/choices.py:67 msgid "Amber" msgstr "Rav" -#: netbox/netbox/choices.py:69 +#: netbox/choices.py:69 msgid "Dark Orange" msgstr "Mørk orange" -#: netbox/netbox/choices.py:70 +#: netbox/choices.py:70 msgid "Brown" msgstr "Brun" -#: netbox/netbox/choices.py:71 +#: netbox/choices.py:71 msgid "Light Grey" msgstr "Lysegrå" -#: netbox/netbox/choices.py:72 +#: netbox/choices.py:72 msgid "Grey" msgstr "Grå" -#: netbox/netbox/choices.py:73 +#: netbox/choices.py:73 msgid "Dark Grey" msgstr "Mørkegrå" -#: netbox/netbox/choices.py:128 +#: netbox/choices.py:128 msgid "Direct" msgstr "Direkte" -#: netbox/netbox/choices.py:129 +#: netbox/choices.py:129 msgid "Upload" msgstr "Upload" -#: netbox/netbox/choices.py:141 netbox/netbox/choices.py:155 +#: netbox/choices.py:141 netbox/choices.py:155 msgid "Auto-detect" msgstr "Automatisk registrering" -#: netbox/netbox/choices.py:156 +#: netbox/choices.py:156 msgid "Comma" msgstr "Komma" -#: netbox/netbox/choices.py:157 +#: netbox/choices.py:157 msgid "Semicolon" msgstr "Semikolon" -#: netbox/netbox/choices.py:158 +#: netbox/choices.py:158 msgid "Tab" msgstr "faneblad" -#: netbox/netbox/config/__init__.py:67 +#: netbox/config/__init__.py:67 #, python-brace-format msgid "Invalid configuration parameter: {item}" msgstr "Ugyldig konfigurationsparameter: {item}" -#: netbox/netbox/config/parameters.py:22 -#: netbox/templates/core/inc/config_data.html:62 +#: netbox/config/parameters.py:22 templates/core/inc/config_data.html:62 msgid "Login banner" msgstr "Login banner" -#: netbox/netbox/config/parameters.py:24 +#: netbox/config/parameters.py:24 msgid "Additional content to display on the login page" msgstr "Yderligere indhold, der skal vises på login-siden" -#: netbox/netbox/config/parameters.py:33 -#: netbox/templates/core/inc/config_data.html:66 +#: netbox/config/parameters.py:33 templates/core/inc/config_data.html:66 msgid "Maintenance banner" msgstr "Vedligeholdelsesbanner" -#: netbox/netbox/config/parameters.py:35 +#: netbox/config/parameters.py:35 msgid "Additional content to display when in maintenance mode" msgstr "" "Yderligere indhold, der skal vises, når du er i vedligeholdelsestilstand" -#: netbox/netbox/config/parameters.py:44 -#: netbox/templates/core/inc/config_data.html:70 +#: netbox/config/parameters.py:44 templates/core/inc/config_data.html:70 msgid "Top banner" msgstr "Top banner" -#: netbox/netbox/config/parameters.py:46 +#: netbox/config/parameters.py:46 msgid "Additional content to display at the top of every page" msgstr "Yderligere indhold, der skal vises øverst på hver side" -#: netbox/netbox/config/parameters.py:55 -#: netbox/templates/core/inc/config_data.html:74 +#: netbox/config/parameters.py:55 templates/core/inc/config_data.html:74 msgid "Bottom banner" msgstr "Nederste banner" -#: netbox/netbox/config/parameters.py:57 +#: netbox/config/parameters.py:57 msgid "Additional content to display at the bottom of every page" msgstr "Yderligere indhold, der skal vises nederst på hver side" -#: netbox/netbox/config/parameters.py:68 +#: netbox/config/parameters.py:68 msgid "Globally unique IP space" msgstr "Globalt unikt IP-rum" -#: netbox/netbox/config/parameters.py:70 +#: netbox/config/parameters.py:70 msgid "Enforce unique IP addressing within the global table" msgstr "Håndhæv unik IP-adressering i den globale tabel" -#: netbox/netbox/config/parameters.py:75 -#: netbox/templates/core/inc/config_data.html:44 +#: netbox/config/parameters.py:75 templates/core/inc/config_data.html:44 msgid "Prefer IPv4" msgstr "Foretrækker IPv4" -#: netbox/netbox/config/parameters.py:77 +#: netbox/config/parameters.py:77 msgid "Prefer IPv4 addresses over IPv6" msgstr "Foretrækker IPv4-adresser frem for IPv6" -#: netbox/netbox/config/parameters.py:84 +#: netbox/config/parameters.py:84 msgid "Rack unit height" msgstr "Rackenhedshøjde" -#: netbox/netbox/config/parameters.py:86 +#: netbox/config/parameters.py:86 msgid "Default unit height for rendered rack elevations" msgstr "Standard enhedshøjde for renderede rackhøjder" -#: netbox/netbox/config/parameters.py:91 +#: netbox/config/parameters.py:91 msgid "Rack unit width" msgstr "Rack-enhedens bredde" -#: netbox/netbox/config/parameters.py:93 +#: netbox/config/parameters.py:93 msgid "Default unit width for rendered rack elevations" msgstr "Standard enhedsbredde for renderede rackhøjder" -#: netbox/netbox/config/parameters.py:100 +#: netbox/config/parameters.py:100 msgid "Powerfeed voltage" msgstr "Strømforsyningsspænding" -#: netbox/netbox/config/parameters.py:102 +#: netbox/config/parameters.py:102 msgid "Default voltage for powerfeeds" msgstr "Standardspænding for strømforsyninger" -#: netbox/netbox/config/parameters.py:107 +#: netbox/config/parameters.py:107 msgid "Powerfeed amperage" msgstr "Strømforsyning strømstyrke" -#: netbox/netbox/config/parameters.py:109 +#: netbox/config/parameters.py:109 msgid "Default amperage for powerfeeds" msgstr "Standard strømstyrke for strømforsyninger" -#: netbox/netbox/config/parameters.py:114 +#: netbox/config/parameters.py:114 msgid "Powerfeed max utilization" msgstr "Maksimalt strømforbrug" -#: netbox/netbox/config/parameters.py:116 +#: netbox/config/parameters.py:116 msgid "Default max utilization for powerfeeds" msgstr "Standard maks. forbrug af strømforsyninger" -#: netbox/netbox/config/parameters.py:123 -#: netbox/templates/core/inc/config_data.html:53 +#: netbox/config/parameters.py:123 templates/core/inc/config_data.html:53 msgid "Allowed URL schemes" msgstr "Tilladte URL-skemaer" -#: netbox/netbox/config/parameters.py:128 +#: netbox/config/parameters.py:128 msgid "Permitted schemes for URLs in user-provided content" msgstr "Tilladte ordninger for webadresser i brugerangivet indhold" -#: netbox/netbox/config/parameters.py:136 +#: netbox/config/parameters.py:136 msgid "Default page size" msgstr "Standard sidestørrelse" -#: netbox/netbox/config/parameters.py:142 +#: netbox/config/parameters.py:142 msgid "Maximum page size" msgstr "Maksimal sidestørrelse" -#: netbox/netbox/config/parameters.py:150 -#: netbox/templates/core/inc/config_data.html:96 +#: netbox/config/parameters.py:150 templates/core/inc/config_data.html:96 msgid "Custom validators" msgstr "Brugerdefinerede validatorer" -#: netbox/netbox/config/parameters.py:152 +#: netbox/config/parameters.py:152 msgid "Custom validation rules (JSON)" msgstr "Brugerdefinerede valideringsregler (JSON)" -#: netbox/netbox/config/parameters.py:160 -#: netbox/templates/core/inc/config_data.html:104 +#: netbox/config/parameters.py:160 templates/core/inc/config_data.html:104 msgid "Protection rules" msgstr "Beskyttelsesregler" -#: netbox/netbox/config/parameters.py:162 +#: netbox/config/parameters.py:162 msgid "Deletion protection rules (JSON)" msgstr "Regler for beskyttelse mod sletning (JSON)" -#: netbox/netbox/config/parameters.py:172 -#: netbox/templates/core/inc/config_data.html:117 +#: netbox/config/parameters.py:172 templates/core/inc/config_data.html:117 msgid "Default preferences" msgstr "Standardindstillinger" -#: netbox/netbox/config/parameters.py:174 +#: netbox/config/parameters.py:174 msgid "Default preferences for new users" msgstr "Standardindstillinger for nye brugere" -#: netbox/netbox/config/parameters.py:181 -#: netbox/templates/core/inc/config_data.html:129 +#: netbox/config/parameters.py:181 templates/core/inc/config_data.html:129 msgid "Maintenance mode" msgstr "Vedligeholdelsestilstand" -#: netbox/netbox/config/parameters.py:183 +#: netbox/config/parameters.py:183 msgid "Enable maintenance mode" msgstr "Aktivér vedligeholdelsestilstand" -#: netbox/netbox/config/parameters.py:188 -#: netbox/templates/core/inc/config_data.html:133 +#: netbox/config/parameters.py:188 templates/core/inc/config_data.html:133 msgid "GraphQL enabled" msgstr "GraphQL aktiveret" -#: netbox/netbox/config/parameters.py:190 +#: netbox/config/parameters.py:190 msgid "Enable the GraphQL API" msgstr "Aktivér GraphQL API" -#: netbox/netbox/config/parameters.py:195 -#: netbox/templates/core/inc/config_data.html:137 +#: netbox/config/parameters.py:195 templates/core/inc/config_data.html:137 msgid "Changelog retention" msgstr "Opbevaring af ændringslog" -#: netbox/netbox/config/parameters.py:197 +#: netbox/config/parameters.py:197 msgid "Days to retain changelog history (set to zero for unlimited)" msgstr "" "Dage til at bevare changeloghistorik (indstillet til nul for ubegrænset)" -#: netbox/netbox/config/parameters.py:202 +#: netbox/config/parameters.py:202 msgid "Job result retention" msgstr "Bevaring af jobresultater" -#: netbox/netbox/config/parameters.py:204 +#: netbox/config/parameters.py:204 msgid "Days to retain job result history (set to zero for unlimited)" msgstr "" "Dage til opbevaring af jobresultathistorik (indstillet til nul for " "ubegrænset)" -#: netbox/netbox/config/parameters.py:209 -#: netbox/templates/core/inc/config_data.html:145 +#: netbox/config/parameters.py:209 templates/core/inc/config_data.html:145 msgid "Maps URL" msgstr "Kort URL" -#: netbox/netbox/config/parameters.py:211 +#: netbox/config/parameters.py:211 msgid "Base URL for mapping geographic locations" msgstr "Basis URL til kortlægning af geografiske placeringer" -#: netbox/netbox/forms/__init__.py:12 +#: netbox/forms/__init__.py:12 msgid "Partial match" msgstr "Delvis kamp" -#: netbox/netbox/forms/__init__.py:13 +#: netbox/forms/__init__.py:13 msgid "Exact match" msgstr "Præcis match" -#: netbox/netbox/forms/__init__.py:14 +#: netbox/forms/__init__.py:14 msgid "Starts with" msgstr "Begynder med" -#: netbox/netbox/forms/__init__.py:15 +#: netbox/forms/__init__.py:15 msgid "Ends with" msgstr "Slutter med" -#: netbox/netbox/forms/__init__.py:16 +#: netbox/forms/__init__.py:16 msgid "Regex" msgstr "Regex" -#: netbox/netbox/forms/__init__.py:34 +#: netbox/forms/__init__.py:34 msgid "Object type(s)" msgstr "Objekttype (er)" -#: netbox/netbox/forms/__init__.py:40 +#: netbox/forms/__init__.py:40 msgid "Lookup" msgstr "Opslag" -#: netbox/netbox/forms/base.py:90 +#: netbox/forms/base.py:90 msgid "" "Tag slugs separated by commas, encased with double quotes (e.g. " "\"tag1,tag2,tag3\")" @@ -10758,429 +10144,413 @@ msgstr "" "Tag slugs adskilt af kommaer, indkapslet med dobbelte anførselstegn (f.eks. " "„tag1, tag2, tag3\")" -#: netbox/netbox/forms/base.py:120 +#: netbox/forms/base.py:120 msgid "Add tags" msgstr "Tilføj tags" -#: netbox/netbox/forms/base.py:125 +#: netbox/forms/base.py:125 msgid "Remove tags" msgstr "Fjern tags" -#: netbox/netbox/forms/mixins.py:38 +#: netbox/forms/mixins.py:38 #, python-brace-format msgid "{class_name} must specify a model class." msgstr "{class_name} skal angive en modelklasse." -#: netbox/netbox/models/features.py:280 +#: netbox/models/features.py:280 #, python-brace-format msgid "Unknown field name '{name}' in custom field data." msgstr "Ukendt feltnavn '{name}'i brugerdefinerede feltdata." -#: netbox/netbox/models/features.py:286 +#: netbox/models/features.py:286 #, python-brace-format msgid "Invalid value for custom field '{name}': {error}" msgstr "Ugyldig værdi for brugerdefineret felt '{name}„: {error}" -#: netbox/netbox/models/features.py:295 +#: netbox/models/features.py:295 #, python-brace-format msgid "Custom field '{name}' must have a unique value." msgstr "Brugerdefineret felt '{name}“ skal have en unik værdi." -#: netbox/netbox/models/features.py:302 +#: netbox/models/features.py:302 #, python-brace-format msgid "Missing required custom field '{name}'." msgstr "Mangler påkrævet brugerdefineret felt '{name}„." -#: netbox/netbox/models/features.py:462 +#: netbox/models/features.py:462 msgid "Remote data source" msgstr "Fjerndatakilde" -#: netbox/netbox/models/features.py:472 +#: netbox/models/features.py:472 msgid "data path" msgstr "datastie" -#: netbox/netbox/models/features.py:476 +#: netbox/models/features.py:476 msgid "Path to remote file (relative to data source root)" msgstr "Sti til fjernfil (i forhold til datakildens rod)" -#: netbox/netbox/models/features.py:479 +#: netbox/models/features.py:479 msgid "auto sync enabled" msgstr "automatisk synkronisering aktiveret" -#: netbox/netbox/models/features.py:481 +#: netbox/models/features.py:481 msgid "Enable automatic synchronization of data when the data file is updated" msgstr "Aktivér automatisk synkronisering af data, når datafilen opdateres" -#: netbox/netbox/models/features.py:484 +#: netbox/models/features.py:484 msgid "date synced" msgstr "dato synkroniseret" -#: netbox/netbox/models/features.py:578 +#: netbox/models/features.py:578 #, python-brace-format msgid "{class_name} must implement a sync_data() method." msgstr "{class_name} skal implementere en sync_data () metode." -#: netbox/netbox/navigation/menu.py:11 +#: netbox/navigation/menu.py:11 msgid "Organization" msgstr "Organisation" -#: netbox/netbox/navigation/menu.py:19 +#: netbox/navigation/menu.py:19 msgid "Site Groups" msgstr "Områdegrupper" -#: netbox/netbox/navigation/menu.py:27 +#: netbox/navigation/menu.py:27 msgid "Tenant Groups" msgstr "Lejergrupper" -#: netbox/netbox/navigation/menu.py:34 +#: netbox/navigation/menu.py:34 msgid "Contact Groups" msgstr "Kontaktgrupper" -#: netbox/netbox/navigation/menu.py:35 -#: netbox/templates/tenancy/contactrole.html:8 +#: netbox/navigation/menu.py:35 templates/tenancy/contactrole.html:8 msgid "Contact Roles" msgstr "Kontaktroller" -#: netbox/netbox/navigation/menu.py:36 +#: netbox/navigation/menu.py:36 msgid "Contact Assignments" msgstr "Kontaktopgaver" -#: netbox/netbox/navigation/menu.py:50 +#: netbox/navigation/menu.py:50 msgid "Rack Roles" msgstr "Rackroller" -#: netbox/netbox/navigation/menu.py:54 +#: netbox/navigation/menu.py:54 msgid "Elevations" msgstr "Forhøjninger" -#: netbox/netbox/navigation/menu.py:60 netbox/netbox/navigation/menu.py:62 +#: netbox/navigation/menu.py:60 netbox/navigation/menu.py:62 msgid "Rack Types" msgstr "Racktyper" -#: netbox/netbox/navigation/menu.py:76 +#: netbox/navigation/menu.py:76 msgid "Modules" msgstr "Moduler" -#: netbox/netbox/navigation/menu.py:80 netbox/templates/dcim/device.html:160 -#: netbox/templates/dcim/virtualdevicecontext.html:8 +#: netbox/navigation/menu.py:80 templates/dcim/device.html:160 +#: templates/dcim/virtualdevicecontext.html:8 msgid "Virtual Device Contexts" msgstr "Virtuelle enhedskontekster" -#: netbox/netbox/navigation/menu.py:88 +#: netbox/navigation/menu.py:88 msgid "Manufacturers" msgstr "Producenter" -#: netbox/netbox/navigation/menu.py:92 +#: netbox/navigation/menu.py:92 msgid "Device Components" msgstr "Enhedskomponenter" -#: netbox/netbox/navigation/menu.py:104 -#: netbox/templates/dcim/inventoryitemrole.html:8 +#: netbox/navigation/menu.py:104 templates/dcim/inventoryitemrole.html:8 msgid "Inventory Item Roles" msgstr "Lagervareroller" -#: netbox/netbox/navigation/menu.py:111 netbox/netbox/navigation/menu.py:115 +#: netbox/navigation/menu.py:111 netbox/navigation/menu.py:115 msgid "Connections" msgstr "Forbindelser" -#: netbox/netbox/navigation/menu.py:117 +#: netbox/navigation/menu.py:117 msgid "Cables" msgstr "Kabler" -#: netbox/netbox/navigation/menu.py:118 +#: netbox/navigation/menu.py:118 msgid "Wireless Links" msgstr "Trådløse links" -#: netbox/netbox/navigation/menu.py:121 +#: netbox/navigation/menu.py:121 msgid "Interface Connections" msgstr "Grænsefladeforbindelser" -#: netbox/netbox/navigation/menu.py:126 +#: netbox/navigation/menu.py:126 msgid "Console Connections" msgstr "Konsolforbindelser" -#: netbox/netbox/navigation/menu.py:131 +#: netbox/navigation/menu.py:131 msgid "Power Connections" msgstr "Strømtilslutninger" -#: netbox/netbox/navigation/menu.py:147 +#: netbox/navigation/menu.py:147 msgid "Wireless LAN Groups" msgstr "Trådløse LAN-grupper" -#: netbox/netbox/navigation/menu.py:168 +#: netbox/navigation/menu.py:168 msgid "Prefix & VLAN Roles" msgstr "Præfiks- og VLAN-roller" -#: netbox/netbox/navigation/menu.py:174 +#: netbox/navigation/menu.py:174 msgid "ASN Ranges" msgstr "ASN-intervaller" -#: netbox/netbox/navigation/menu.py:196 +#: netbox/navigation/menu.py:196 msgid "VLAN Groups" msgstr "VLAN Grupper" -#: netbox/netbox/navigation/menu.py:203 +#: netbox/navigation/menu.py:203 msgid "Service Templates" msgstr "Serviceskabeloner" -#: netbox/netbox/navigation/menu.py:204 netbox/templates/dcim/device.html:302 -#: netbox/templates/ipam/ipaddress.html:118 -#: netbox/templates/virtualization/virtualmachine.html:154 +#: netbox/navigation/menu.py:204 templates/dcim/device.html:302 +#: templates/ipam/ipaddress.html:118 +#: templates/virtualization/virtualmachine.html:154 msgid "Services" msgstr "Serviceydelser" -#: netbox/netbox/navigation/menu.py:211 +#: netbox/navigation/menu.py:211 msgid "VPN" msgstr "VPN" -#: netbox/netbox/navigation/menu.py:215 netbox/netbox/navigation/menu.py:217 -#: netbox/vpn/tables/tunnels.py:24 +#: netbox/navigation/menu.py:215 netbox/navigation/menu.py:217 +#: vpn/tables/tunnels.py:24 msgid "Tunnels" msgstr "Tunneler" -#: netbox/netbox/navigation/menu.py:218 -#: netbox/templates/vpn/tunnelgroup.html:8 +#: netbox/navigation/menu.py:218 templates/vpn/tunnelgroup.html:8 msgid "Tunnel Groups" msgstr "Tunnelgrupper" -#: netbox/netbox/navigation/menu.py:219 +#: netbox/navigation/menu.py:219 msgid "Tunnel Terminations" msgstr "Tunnelafslutninger" -#: netbox/netbox/navigation/menu.py:223 netbox/netbox/navigation/menu.py:225 -#: netbox/vpn/models/l2vpn.py:64 +#: netbox/navigation/menu.py:223 netbox/navigation/menu.py:225 +#: vpn/models/l2vpn.py:64 msgid "L2VPNs" msgstr "L2VPN'er" -#: netbox/netbox/navigation/menu.py:226 netbox/templates/vpn/l2vpn.html:56 -#: netbox/templates/vpn/tunnel.html:72 netbox/vpn/tables/tunnels.py:58 +#: netbox/navigation/menu.py:226 templates/vpn/l2vpn.html:56 +#: templates/vpn/tunnel.html:72 vpn/tables/tunnels.py:58 msgid "Terminations" msgstr "Opsigelser" -#: netbox/netbox/navigation/menu.py:232 +#: netbox/navigation/menu.py:232 msgid "IKE Proposals" msgstr "IKE-forslag" -#: netbox/netbox/navigation/menu.py:233 -#: netbox/templates/vpn/ikeproposal.html:41 +#: netbox/navigation/menu.py:233 templates/vpn/ikeproposal.html:41 msgid "IKE Policies" msgstr "IKE politikker" -#: netbox/netbox/navigation/menu.py:234 +#: netbox/navigation/menu.py:234 msgid "IPSec Proposals" msgstr "IPsec-forslag" -#: netbox/netbox/navigation/menu.py:235 -#: netbox/templates/vpn/ipsecproposal.html:37 +#: netbox/navigation/menu.py:235 templates/vpn/ipsecproposal.html:37 msgid "IPSec Policies" msgstr "IPsec-politikker" -#: netbox/netbox/navigation/menu.py:236 netbox/templates/vpn/ikepolicy.html:38 -#: netbox/templates/vpn/ipsecpolicy.html:25 +#: netbox/navigation/menu.py:236 templates/vpn/ikepolicy.html:38 +#: templates/vpn/ipsecpolicy.html:25 msgid "IPSec Profiles" msgstr "IPsec-profiler" -#: netbox/netbox/navigation/menu.py:243 -#: netbox/templates/dcim/device_edit.html:78 +#: netbox/navigation/menu.py:243 templates/dcim/device_edit.html:78 msgid "Virtualization" msgstr "Virtualisering" -#: netbox/netbox/navigation/menu.py:251 -#: netbox/templates/virtualization/virtualmachine.html:174 -#: netbox/templates/virtualization/virtualmachine/base.html:32 -#: netbox/templates/virtualization/virtualmachine_list.html:21 -#: netbox/virtualization/tables/virtualmachines.py:104 -#: netbox/virtualization/views.py:388 +#: netbox/navigation/menu.py:251 +#: templates/virtualization/virtualmachine.html:174 +#: templates/virtualization/virtualmachine/base.html:32 +#: templates/virtualization/virtualmachine_list.html:21 +#: virtualization/tables/virtualmachines.py:104 virtualization/views.py:388 msgid "Virtual Disks" msgstr "Virtuelle diske" -#: netbox/netbox/navigation/menu.py:258 +#: netbox/navigation/menu.py:258 msgid "Cluster Types" msgstr "Klyngetyper" -#: netbox/netbox/navigation/menu.py:259 +#: netbox/navigation/menu.py:259 msgid "Cluster Groups" msgstr "Klyngegrupper" -#: netbox/netbox/navigation/menu.py:273 +#: netbox/navigation/menu.py:273 msgid "Circuit Types" msgstr "Kredsløbstyper" -#: netbox/netbox/navigation/menu.py:274 +#: netbox/navigation/menu.py:274 msgid "Circuit Groups" msgstr "Kredsløbsgrupper" -#: netbox/netbox/navigation/menu.py:275 -#: netbox/templates/circuits/circuit.html:66 +#: netbox/navigation/menu.py:275 templates/circuits/circuit.html:66 msgid "Group Assignments" msgstr "Gruppeopgaver" -#: netbox/netbox/navigation/menu.py:276 +#: netbox/navigation/menu.py:276 msgid "Circuit Terminations" msgstr "Kredsløbsafslutninger" -#: netbox/netbox/navigation/menu.py:280 netbox/netbox/navigation/menu.py:282 +#: netbox/navigation/menu.py:280 netbox/navigation/menu.py:282 msgid "Providers" msgstr "Leverandøre" -#: netbox/netbox/navigation/menu.py:283 -#: netbox/templates/circuits/provider.html:51 +#: netbox/navigation/menu.py:283 templates/circuits/provider.html:51 msgid "Provider Accounts" msgstr "Leverandørkonti" -#: netbox/netbox/navigation/menu.py:284 +#: netbox/navigation/menu.py:284 msgid "Provider Networks" msgstr "Leverandørnetværk" -#: netbox/netbox/navigation/menu.py:298 +#: netbox/navigation/menu.py:298 msgid "Power Panels" msgstr "Strømpaneler" -#: netbox/netbox/navigation/menu.py:309 +#: netbox/navigation/menu.py:309 msgid "Configurations" msgstr "Konfigurationer" -#: netbox/netbox/navigation/menu.py:311 +#: netbox/navigation/menu.py:311 msgid "Config Contexts" msgstr "Konfigurationskontekster" -#: netbox/netbox/navigation/menu.py:312 +#: netbox/navigation/menu.py:312 msgid "Config Templates" msgstr "Konfigurationsskabeloner" -#: netbox/netbox/navigation/menu.py:319 netbox/netbox/navigation/menu.py:323 +#: netbox/navigation/menu.py:319 netbox/navigation/menu.py:323 msgid "Customization" msgstr "Tilpasning" -#: netbox/netbox/navigation/menu.py:325 -#: netbox/templates/dcim/device_edit.html:103 -#: netbox/templates/dcim/htmx/cable_edit.html:81 -#: netbox/templates/dcim/virtualchassis_add.html:31 -#: netbox/templates/dcim/virtualchassis_edit.html:40 -#: netbox/templates/generic/bulk_edit.html:76 -#: netbox/templates/htmx/form.html:19 netbox/templates/inc/filter_list.html:30 -#: netbox/templates/inc/panels/custom_fields.html:7 -#: netbox/templates/ipam/ipaddress_bulk_add.html:35 -#: netbox/templates/ipam/vlan_edit.html:59 +#: netbox/navigation/menu.py:325 templates/dcim/device_edit.html:103 +#: templates/dcim/htmx/cable_edit.html:81 +#: templates/dcim/virtualchassis_add.html:31 +#: templates/dcim/virtualchassis_edit.html:40 +#: templates/generic/bulk_edit.html:76 templates/htmx/form.html:19 +#: templates/inc/filter_list.html:30 templates/inc/panels/custom_fields.html:7 +#: templates/ipam/ipaddress_bulk_add.html:35 templates/ipam/vlan_edit.html:59 msgid "Custom Fields" msgstr "Brugerdefinerede felter" -#: netbox/netbox/navigation/menu.py:326 +#: netbox/navigation/menu.py:326 msgid "Custom Field Choices" msgstr "Brugerdefinerede feltvalg" -#: netbox/netbox/navigation/menu.py:327 +#: netbox/navigation/menu.py:327 msgid "Custom Links" msgstr "Brugerdefinerede links" -#: netbox/netbox/navigation/menu.py:328 +#: netbox/navigation/menu.py:328 msgid "Export Templates" msgstr "Eksport skabeloner" -#: netbox/netbox/navigation/menu.py:329 +#: netbox/navigation/menu.py:329 msgid "Saved Filters" msgstr "Gemte filtre" -#: netbox/netbox/navigation/menu.py:331 +#: netbox/navigation/menu.py:331 msgid "Image Attachments" msgstr "Billedvedhæftede filer" -#: netbox/netbox/navigation/menu.py:349 +#: netbox/navigation/menu.py:349 msgid "Operations" msgstr "Operationer" -#: netbox/netbox/navigation/menu.py:353 +#: netbox/navigation/menu.py:353 msgid "Integrations" msgstr "Integrationer" -#: netbox/netbox/navigation/menu.py:355 +#: netbox/navigation/menu.py:355 msgid "Data Sources" msgstr "Datakilder" -#: netbox/netbox/navigation/menu.py:356 +#: netbox/navigation/menu.py:356 msgid "Event Rules" msgstr "Begivenhedsregler" -#: netbox/netbox/navigation/menu.py:357 +#: netbox/navigation/menu.py:357 msgid "Webhooks" msgstr "Webhooks" -#: netbox/netbox/navigation/menu.py:361 netbox/netbox/navigation/menu.py:365 -#: netbox/netbox/views/generic/feature_views.py:153 -#: netbox/templates/extras/report/base.html:37 -#: netbox/templates/extras/script/base.html:36 +#: netbox/navigation/menu.py:361 netbox/navigation/menu.py:365 +#: netbox/views/generic/feature_views.py:153 +#: templates/extras/report/base.html:37 templates/extras/script/base.html:36 msgid "Jobs" msgstr "Job" -#: netbox/netbox/navigation/menu.py:371 +#: netbox/navigation/menu.py:371 msgid "Logging" msgstr "Logning" -#: netbox/netbox/navigation/menu.py:373 +#: netbox/navigation/menu.py:373 msgid "Notification Groups" msgstr "Meddelelsesgrupper" -#: netbox/netbox/navigation/menu.py:374 +#: netbox/navigation/menu.py:374 msgid "Journal Entries" msgstr "Journalposter" -#: netbox/netbox/navigation/menu.py:375 -#: netbox/templates/core/objectchange.html:9 -#: netbox/templates/core/objectchange_list.html:4 +#: netbox/navigation/menu.py:375 templates/core/objectchange.html:9 +#: templates/core/objectchange_list.html:4 msgid "Change Log" msgstr "Ændringslog" -#: netbox/netbox/navigation/menu.py:382 netbox/templates/inc/user_menu.html:29 +#: netbox/navigation/menu.py:382 templates/inc/user_menu.html:29 msgid "Admin" msgstr "Administrator" -#: netbox/netbox/navigation/menu.py:430 netbox/templates/account/base.html:27 -#: netbox/templates/inc/user_menu.html:57 +#: netbox/navigation/menu.py:430 templates/account/base.html:27 +#: templates/inc/user_menu.html:57 msgid "API Tokens" msgstr "API-tokens" -#: netbox/netbox/navigation/menu.py:437 netbox/users/forms/model_forms.py:187 -#: netbox/users/forms/model_forms.py:195 netbox/users/forms/model_forms.py:242 -#: netbox/users/forms/model_forms.py:249 +#: netbox/navigation/menu.py:437 users/forms/model_forms.py:187 +#: users/forms/model_forms.py:195 users/forms/model_forms.py:242 +#: users/forms/model_forms.py:249 msgid "Permissions" msgstr "Tilladelser" -#: netbox/netbox/navigation/menu.py:445 netbox/netbox/navigation/menu.py:449 -#: netbox/templates/core/system.html:7 +#: netbox/navigation/menu.py:445 netbox/navigation/menu.py:449 +#: templates/core/system.html:7 msgid "System" msgstr "Systemet" -#: netbox/netbox/navigation/menu.py:454 netbox/netbox/navigation/menu.py:502 -#: netbox/templates/500.html:35 netbox/templates/account/preferences.html:22 -#: netbox/templates/core/plugin.html:12 -#: netbox/templates/core/plugin_list.html:7 -#: netbox/templates/core/plugin_list.html:12 +#: netbox/navigation/menu.py:454 netbox/navigation/menu.py:502 +#: templates/500.html:35 templates/account/preferences.html:22 +#: templates/core/plugin.html:13 templates/core/plugin_list.html:7 +#: templates/core/plugin_list.html:12 msgid "Plugins" msgstr "Plugins" -#: netbox/netbox/navigation/menu.py:459 +#: netbox/navigation/menu.py:459 msgid "Configuration History" msgstr "Konfigurationshistorik" -#: netbox/netbox/navigation/menu.py:465 netbox/templates/core/rq_task.html:8 -#: netbox/templates/core/rq_task_list.html:22 +#: netbox/navigation/menu.py:465 templates/core/rq_task.html:8 +#: templates/core/rq_task_list.html:22 msgid "Background Tasks" msgstr "Baggrundsopgaver" -#: netbox/netbox/plugins/navigation.py:47 -#: netbox/netbox/plugins/navigation.py:69 +#: netbox/plugins/navigation.py:47 netbox/plugins/navigation.py:69 msgid "Permissions must be passed as a tuple or list." msgstr "Tilladelser skal videregives som en tuple eller liste." -#: netbox/netbox/plugins/navigation.py:51 +#: netbox/plugins/navigation.py:51 msgid "Buttons must be passed as a tuple or list." msgstr "Knapper skal sendes som en tuple eller liste." -#: netbox/netbox/plugins/navigation.py:73 +#: netbox/plugins/navigation.py:73 msgid "Button color must be a choice within ButtonColorChoices." msgstr "Knapfarve skal være et valg inden for ButtonColorChoices." -#: netbox/netbox/plugins/registration.py:25 +#: netbox/plugins/registration.py:25 #, python-brace-format msgid "" "PluginTemplateExtension class {template_extension} was passed as an " @@ -11189,7 +10559,7 @@ msgstr "" "PluginTemplateExtension klasse {template_extension} blev vedtaget som en " "instans!" -#: netbox/netbox/plugins/registration.py:31 +#: netbox/plugins/registration.py:31 #, python-brace-format msgid "" "{template_extension} is not a subclass of " @@ -11198,195 +10568,194 @@ msgstr "" "{template_extension} er ikke en underklasse af " "Netbox.Plugins.PluginTemplateExtension!" -#: netbox/netbox/plugins/registration.py:51 +#: netbox/plugins/registration.py:51 #, python-brace-format msgid "{item} must be an instance of netbox.plugins.PluginMenuItem" msgstr "{item} skal være en forekomst af Netbox.Plugins.PluginMenuItem" -#: netbox/netbox/plugins/registration.py:62 +#: netbox/plugins/registration.py:62 #, python-brace-format msgid "{menu_link} must be an instance of netbox.plugins.PluginMenuItem" msgstr "{menu_link} skal være en forekomst af Netbox.Plugins.PluginMenuItem" -#: netbox/netbox/plugins/registration.py:67 +#: netbox/plugins/registration.py:67 #, python-brace-format msgid "{button} must be an instance of netbox.plugins.PluginMenuButton" msgstr "{button} skal være en forekomst af Netbox.Plugins.PluginMenuButton" -#: netbox/netbox/plugins/templates.py:37 +#: netbox/plugins/templates.py:37 msgid "extra_context must be a dictionary" msgstr "extra_context skal være en ordbog" -#: netbox/netbox/preferences.py:19 +#: netbox/preferences.py:19 msgid "HTMX Navigation" msgstr "HTMX Navigation" -#: netbox/netbox/preferences.py:24 +#: netbox/preferences.py:24 msgid "Enable dynamic UI navigation" msgstr "Aktivér dynamisk UI navigation" -#: netbox/netbox/preferences.py:26 +#: netbox/preferences.py:26 msgid "Experimental feature" msgstr "Eksperimentel funktion" -#: netbox/netbox/preferences.py:29 +#: netbox/preferences.py:29 msgid "Language" msgstr "Sprog" -#: netbox/netbox/preferences.py:34 +#: netbox/preferences.py:34 msgid "Forces UI translation to the specified language" msgstr "Tvinger UI oversættelse til det angivne sprog" -#: netbox/netbox/preferences.py:36 +#: netbox/preferences.py:36 msgid "Support for translation has been disabled locally" msgstr "Understøttelse af oversættelse er blevet deaktiveret lokalt" -#: netbox/netbox/preferences.py:42 +#: netbox/preferences.py:42 msgid "Page length" msgstr "Sidelængde" -#: netbox/netbox/preferences.py:44 +#: netbox/preferences.py:44 msgid "The default number of objects to display per page" msgstr "Standardantallet af objekter, der skal vises pr. side" -#: netbox/netbox/preferences.py:48 +#: netbox/preferences.py:48 msgid "Paginator placement" msgstr "Paginatorplacering" -#: netbox/netbox/preferences.py:50 +#: netbox/preferences.py:50 msgid "Bottom" msgstr "Nederst" -#: netbox/netbox/preferences.py:51 +#: netbox/preferences.py:51 msgid "Top" msgstr "Øverst" -#: netbox/netbox/preferences.py:52 +#: netbox/preferences.py:52 msgid "Both" msgstr "Begge dele" -#: netbox/netbox/preferences.py:55 +#: netbox/preferences.py:55 msgid "Where the paginator controls will be displayed relative to a table" msgstr "Hvor paginatorkontrolelementerne vises i forhold til en tabel" -#: netbox/netbox/preferences.py:60 +#: netbox/preferences.py:60 msgid "Data format" msgstr "Dataformat" -#: netbox/netbox/preferences.py:65 +#: netbox/preferences.py:65 msgid "The preferred syntax for displaying generic data within the UI" msgstr "" "Den foretrukne syntaks til visning af generiske data i brugergrænsefladen" -#: netbox/netbox/registry.py:14 +#: netbox/registry.py:14 #, python-brace-format msgid "Invalid store: {key}" msgstr "Ugyldig butik: {key}" -#: netbox/netbox/registry.py:17 +#: netbox/registry.py:17 msgid "Cannot add stores to registry after initialization" msgstr "" "Kan ikke tilføje butikker til registreringsdatabasen efter initialisering" -#: netbox/netbox/registry.py:20 +#: netbox/registry.py:20 msgid "Cannot delete stores from registry" msgstr "Kan ikke slette butikker fra registreringsdatabasen" -#: netbox/netbox/settings.py:760 +#: netbox/settings.py:760 msgid "Czech" msgstr "Tjekkisk" -#: netbox/netbox/settings.py:761 +#: netbox/settings.py:761 msgid "Danish" msgstr "dansk" -#: netbox/netbox/settings.py:762 +#: netbox/settings.py:762 msgid "German" msgstr "Tysk" -#: netbox/netbox/settings.py:763 +#: netbox/settings.py:763 msgid "English" msgstr "engelsk" -#: netbox/netbox/settings.py:764 +#: netbox/settings.py:764 msgid "Spanish" msgstr "spansk" -#: netbox/netbox/settings.py:765 +#: netbox/settings.py:765 msgid "French" msgstr "franskmænd" -#: netbox/netbox/settings.py:766 +#: netbox/settings.py:766 msgid "Italian" msgstr "Italiensk" -#: netbox/netbox/settings.py:767 +#: netbox/settings.py:767 msgid "Japanese" msgstr "Japansk" -#: netbox/netbox/settings.py:768 +#: netbox/settings.py:768 msgid "Dutch" msgstr "Hollandsk" -#: netbox/netbox/settings.py:769 +#: netbox/settings.py:769 msgid "Polish" msgstr "Polere" -#: netbox/netbox/settings.py:770 +#: netbox/settings.py:770 msgid "Portuguese" msgstr "portugisisk" -#: netbox/netbox/settings.py:771 +#: netbox/settings.py:771 msgid "Russian" msgstr "Russisk" -#: netbox/netbox/settings.py:772 +#: netbox/settings.py:772 msgid "Turkish" msgstr "Tyrkisk" -#: netbox/netbox/settings.py:773 +#: netbox/settings.py:773 msgid "Ukrainian" msgstr "Ukrainsk" -#: netbox/netbox/settings.py:774 +#: netbox/settings.py:774 msgid "Chinese" msgstr "kinesisk" -#: netbox/netbox/tables/columns.py:176 +#: netbox/tables/columns.py:176 msgid "Select all" msgstr "Vælg alle" -#: netbox/netbox/tables/columns.py:189 +#: netbox/tables/columns.py:189 msgid "Toggle all" msgstr "Skift alle" -#: netbox/netbox/tables/columns.py:300 +#: netbox/tables/columns.py:300 msgid "Toggle Dropdown" msgstr "Skift rullemenuen" -#: netbox/netbox/tables/columns.py:572 netbox/templates/core/job.html:53 +#: netbox/tables/columns.py:572 templates/core/job.html:53 msgid "Error" msgstr "Fejl" -#: netbox/netbox/tables/tables.py:58 +#: netbox/tables/tables.py:58 #, python-brace-format msgid "No {model_name} found" msgstr "Nej {model_name} fundet" -#: netbox/netbox/tables/tables.py:249 -#: netbox/templates/generic/bulk_import.html:117 +#: netbox/tables/tables.py:249 templates/generic/bulk_import.html:117 msgid "Field" msgstr "Mark" -#: netbox/netbox/tables/tables.py:252 +#: netbox/tables/tables.py:252 msgid "Value" msgstr "Værdi" -#: netbox/netbox/tests/dummy_plugin/navigation.py:29 +#: netbox/tests/dummy_plugin/navigation.py:29 msgid "Dummy Plugin" msgstr "Dummy-plugin" -#: netbox/netbox/views/generic/bulk_views.py:114 +#: netbox/views/generic/bulk_views.py:114 #, python-brace-format msgid "" "There was an error rendering the selected export template ({template}): " @@ -11395,56 +10764,56 @@ msgstr "" "Der opstod en fejl ved gengivelse af den valgte eksportskabelon " "({template}): {error}" -#: netbox/netbox/views/generic/bulk_views.py:416 +#: netbox/views/generic/bulk_views.py:416 #, python-brace-format msgid "Row {i}: Object with ID {id} does not exist" msgstr "Række {i}: Objekt med ID {id} findes ikke" -#: netbox/netbox/views/generic/bulk_views.py:699 -#: netbox/netbox/views/generic/bulk_views.py:897 -#: netbox/netbox/views/generic/bulk_views.py:945 +#: netbox/views/generic/bulk_views.py:702 +#: netbox/views/generic/bulk_views.py:900 +#: netbox/views/generic/bulk_views.py:948 #, python-brace-format msgid "No {object_type} were selected." msgstr "Nej {object_type} blev udvalgt." -#: netbox/netbox/views/generic/bulk_views.py:779 +#: netbox/views/generic/bulk_views.py:782 #, python-brace-format msgid "Renamed {count} {object_type}" msgstr "Omdøbt {count} {object_type}" -#: netbox/netbox/views/generic/bulk_views.py:875 +#: netbox/views/generic/bulk_views.py:878 #, python-brace-format msgid "Deleted {count} {object_type}" msgstr "Slettet {count} {object_type}" -#: netbox/netbox/views/generic/feature_views.py:40 +#: netbox/views/generic/feature_views.py:40 msgid "Changelog" msgstr "Ændringslog" -#: netbox/netbox/views/generic/feature_views.py:93 +#: netbox/views/generic/feature_views.py:93 msgid "Journal" msgstr "Tidsskrift" -#: netbox/netbox/views/generic/feature_views.py:207 +#: netbox/views/generic/feature_views.py:207 msgid "Unable to synchronize data: No data file set." msgstr "Kan ikke synkronisere data: Der er ikke angivet nogen datafil." -#: netbox/netbox/views/generic/feature_views.py:211 +#: netbox/views/generic/feature_views.py:211 #, python-brace-format msgid "Synchronized data for {object_type} {object}." msgstr "Synkroniserede data for {object_type} {object}." -#: netbox/netbox/views/generic/feature_views.py:236 +#: netbox/views/generic/feature_views.py:236 #, python-brace-format msgid "Synced {count} {object_type}" msgstr "Synkroniseret {count} {object_type}" -#: netbox/netbox/views/generic/object_views.py:108 +#: netbox/views/generic/object_views.py:108 #, python-brace-format msgid "{class_name} must implement get_children()" msgstr "{class_name} skal implementere get_children ()" -#: netbox/netbox/views/misc.py:44 +#: netbox/views/misc.py:44 msgid "" "There was an error loading the dashboard configuration. A default dashboard " "is in use." @@ -11452,748 +10821,703 @@ msgstr "" "Der opstod en fejl ved indlæsning af instrumentbrætkonfigurationen. Et " "standarddashboard er i brug." -#: netbox/templates/403.html:4 +#: templates/403.html:4 msgid "Access Denied" msgstr "Adgang nægtet" -#: netbox/templates/403.html:9 +#: templates/403.html:9 msgid "You do not have permission to access this page" msgstr "Du har ikke tilladelse til at få adgang til denne side" -#: netbox/templates/404.html:4 +#: templates/404.html:4 msgid "Page Not Found" msgstr "Siden blev ikke fundet" -#: netbox/templates/404.html:9 +#: templates/404.html:9 msgid "The requested page does not exist" msgstr "Den ønskede side findes ikke" -#: netbox/templates/500.html:7 netbox/templates/500.html:18 +#: templates/500.html:7 templates/500.html:18 msgid "Server Error" msgstr "Serverfejl" -#: netbox/templates/500.html:23 +#: templates/500.html:23 msgid "There was a problem with your request. Please contact an administrator" msgstr "Der opstod et problem med din anmodning. Kontakt en administrator" -#: netbox/templates/500.html:28 +#: templates/500.html:28 msgid "The complete exception is provided below" msgstr "Den fuldstændige undtagelse er angivet nedenfor" -#: netbox/templates/500.html:33 netbox/templates/core/system.html:40 +#: templates/500.html:33 templates/core/system.html:40 msgid "Python version" msgstr "Python-version" -#: netbox/templates/500.html:34 +#: templates/500.html:34 msgid "NetBox version" msgstr "NetBox-version" -#: netbox/templates/500.html:36 +#: templates/500.html:36 msgid "None installed" msgstr "Ingen installeret" -#: netbox/templates/500.html:39 +#: templates/500.html:39 msgid "If further assistance is required, please post to the" msgstr "Hvis der er behov for yderligere hjælp, bedes du sende til" -#: netbox/templates/500.html:39 +#: templates/500.html:39 msgid "NetBox discussion forum" msgstr "NetBox diskussionsforum" -#: netbox/templates/500.html:39 +#: templates/500.html:39 msgid "on GitHub" msgstr "på GitHub" -#: netbox/templates/500.html:42 netbox/templates/base/40x.html:17 +#: templates/500.html:42 templates/base/40x.html:17 msgid "Home Page" msgstr "Hjemmesiden" -#: netbox/templates/account/base.html:7 netbox/templates/inc/user_menu.html:45 -#: netbox/vpn/forms/bulk_edit.py:255 netbox/vpn/forms/filtersets.py:189 -#: netbox/vpn/forms/model_forms.py:379 +#: templates/account/base.html:7 templates/inc/user_menu.html:45 +#: vpn/forms/bulk_edit.py:255 vpn/forms/filtersets.py:189 +#: vpn/forms/model_forms.py:379 msgid "Profile" msgstr "Profil" -#: netbox/templates/account/base.html:13 -#: netbox/templates/account/notifications.html:7 -#: netbox/templates/inc/user_menu.html:15 +#: templates/account/base.html:13 templates/account/notifications.html:7 +#: templates/inc/user_menu.html:15 msgid "Notifications" msgstr "Meddelelser" -#: netbox/templates/account/base.html:16 -#: netbox/templates/account/subscriptions.html:7 -#: netbox/templates/inc/user_menu.html:51 +#: templates/account/base.html:16 templates/account/subscriptions.html:7 +#: templates/inc/user_menu.html:51 msgid "Subscriptions" msgstr "Abonnementer" -#: netbox/templates/account/base.html:19 -#: netbox/templates/inc/user_menu.html:54 +#: templates/account/base.html:19 templates/inc/user_menu.html:54 msgid "Preferences" msgstr "Præferencer" -#: netbox/templates/account/password.html:5 +#: templates/account/password.html:5 msgid "Change Password" msgstr "Skift adgangskode" -#: netbox/templates/account/password.html:19 -#: netbox/templates/account/preferences.html:77 -#: netbox/templates/core/configrevision_restore.html:63 -#: netbox/templates/dcim/devicebay_populate.html:34 -#: netbox/templates/dcim/virtualchassis_add_member.html:26 -#: netbox/templates/dcim/virtualchassis_edit.html:103 -#: netbox/templates/extras/object_journal.html:26 -#: netbox/templates/extras/script.html:38 -#: netbox/templates/generic/bulk_add_component.html:67 -#: netbox/templates/generic/bulk_delete.html:65 -#: netbox/templates/generic/bulk_edit.html:106 -#: netbox/templates/generic/bulk_import.html:56 -#: netbox/templates/generic/bulk_import.html:78 -#: netbox/templates/generic/bulk_import.html:100 -#: netbox/templates/generic/bulk_remove.html:62 -#: netbox/templates/generic/bulk_rename.html:63 -#: netbox/templates/generic/confirmation_form.html:19 -#: netbox/templates/generic/object_edit.html:72 -#: netbox/templates/htmx/delete_form.html:53 -#: netbox/templates/htmx/delete_form.html:55 -#: netbox/templates/ipam/ipaddress_assign.html:28 -#: netbox/templates/virtualization/cluster_add_devices.html:30 +#: templates/account/password.html:19 templates/account/preferences.html:77 +#: templates/core/configrevision_restore.html:63 +#: templates/dcim/devicebay_populate.html:34 +#: templates/dcim/virtualchassis_add_member.html:26 +#: templates/dcim/virtualchassis_edit.html:103 +#: templates/extras/object_journal.html:26 templates/extras/script.html:38 +#: templates/generic/bulk_add_component.html:67 +#: templates/generic/bulk_delete.html:65 templates/generic/bulk_edit.html:106 +#: templates/generic/bulk_import.html:56 templates/generic/bulk_import.html:78 +#: templates/generic/bulk_import.html:100 +#: templates/generic/bulk_remove.html:62 templates/generic/bulk_rename.html:63 +#: templates/generic/confirmation_form.html:19 +#: templates/generic/object_edit.html:72 templates/htmx/delete_form.html:53 +#: templates/htmx/delete_form.html:55 templates/ipam/ipaddress_assign.html:28 +#: templates/virtualization/cluster_add_devices.html:30 msgid "Cancel" msgstr "Annuller" -#: netbox/templates/account/password.html:20 -#: netbox/templates/account/preferences.html:78 -#: netbox/templates/dcim/devicebay_populate.html:35 -#: netbox/templates/dcim/virtualchassis_add_member.html:28 -#: netbox/templates/dcim/virtualchassis_edit.html:105 -#: netbox/templates/extras/dashboard/widget_add.html:26 -#: netbox/templates/extras/dashboard/widget_config.html:19 -#: netbox/templates/extras/object_journal.html:27 -#: netbox/templates/generic/object_edit.html:75 -#: netbox/utilities/templates/helpers/applied_filters.html:16 -#: netbox/utilities/templates/helpers/table_config_form.html:40 +#: templates/account/password.html:20 templates/account/preferences.html:78 +#: templates/dcim/devicebay_populate.html:35 +#: templates/dcim/virtualchassis_add_member.html:28 +#: templates/dcim/virtualchassis_edit.html:105 +#: templates/extras/dashboard/widget_add.html:26 +#: templates/extras/dashboard/widget_config.html:19 +#: templates/extras/object_journal.html:27 +#: templates/generic/object_edit.html:75 +#: utilities/templates/helpers/applied_filters.html:16 +#: utilities/templates/helpers/table_config_form.html:40 msgid "Save" msgstr "Gem" -#: netbox/templates/account/preferences.html:34 +#: templates/account/preferences.html:34 msgid "Table Configurations" msgstr "Tabelkonfigurationer" -#: netbox/templates/account/preferences.html:39 +#: templates/account/preferences.html:39 msgid "Clear table preferences" msgstr "Ryd tabelindstillinger" -#: netbox/templates/account/preferences.html:47 +#: templates/account/preferences.html:47 msgid "Toggle All" msgstr "Skift alle" -#: netbox/templates/account/preferences.html:49 +#: templates/account/preferences.html:49 msgid "Table" msgstr "Tabel" -#: netbox/templates/account/preferences.html:50 +#: templates/account/preferences.html:50 msgid "Ordering" msgstr "Bestilling" -#: netbox/templates/account/preferences.html:51 +#: templates/account/preferences.html:51 msgid "Columns" msgstr "Kolonner" -#: netbox/templates/account/preferences.html:71 -#: netbox/templates/dcim/cable_trace.html:113 -#: netbox/templates/extras/object_configcontext.html:43 +#: templates/account/preferences.html:71 templates/dcim/cable_trace.html:113 +#: templates/extras/object_configcontext.html:43 msgid "None found" msgstr "Ingen fundet" -#: netbox/templates/account/profile.html:6 +#: templates/account/profile.html:6 msgid "User Profile" msgstr "Brugerprofil" -#: netbox/templates/account/profile.html:12 +#: templates/account/profile.html:12 msgid "Account Details" msgstr "Kontooplysninger" -#: netbox/templates/account/profile.html:29 -#: netbox/templates/tenancy/contact.html:43 -#: netbox/templates/users/user.html:25 netbox/tenancy/forms/bulk_edit.py:109 +#: templates/account/profile.html:29 templates/tenancy/contact.html:43 +#: templates/users/user.html:25 tenancy/forms/bulk_edit.py:109 msgid "Email" msgstr "E-mail" -#: netbox/templates/account/profile.html:33 -#: netbox/templates/users/user.html:29 +#: templates/account/profile.html:33 templates/users/user.html:29 msgid "Account Created" msgstr "Konto oprettet" -#: netbox/templates/account/profile.html:37 -#: netbox/templates/users/user.html:33 +#: templates/account/profile.html:37 templates/users/user.html:33 msgid "Last Login" msgstr "Sidste login" -#: netbox/templates/account/profile.html:41 -#: netbox/templates/users/user.html:45 +#: templates/account/profile.html:41 templates/users/user.html:45 msgid "Superuser" msgstr "Superbruger" -#: netbox/templates/account/profile.html:45 -#: netbox/templates/inc/user_menu.html:31 netbox/templates/users/user.html:41 +#: templates/account/profile.html:45 templates/inc/user_menu.html:31 +#: templates/users/user.html:41 msgid "Staff" msgstr "Personale" -#: netbox/templates/account/profile.html:53 -#: netbox/templates/users/objectpermission.html:82 -#: netbox/templates/users/user.html:53 +#: templates/account/profile.html:53 templates/users/objectpermission.html:82 +#: templates/users/user.html:53 msgid "Assigned Groups" msgstr "Tildelte grupper" -#: netbox/templates/account/profile.html:58 -#: netbox/templates/circuits/circuit_terminations_swap.html:18 -#: netbox/templates/circuits/circuit_terminations_swap.html:26 -#: netbox/templates/circuits/circuittermination.html:34 -#: netbox/templates/circuits/inc/circuit_termination.html:68 -#: netbox/templates/core/objectchange.html:124 -#: netbox/templates/core/objectchange.html:142 -#: netbox/templates/dcim/devicebay.html:59 -#: netbox/templates/dcim/inc/panels/inventory_items.html:45 -#: netbox/templates/dcim/interface.html:296 -#: netbox/templates/dcim/modulebay.html:80 -#: netbox/templates/extras/configcontext.html:70 -#: netbox/templates/extras/eventrule.html:66 -#: netbox/templates/extras/htmx/script_result.html:60 -#: netbox/templates/extras/webhook.html:65 -#: netbox/templates/extras/webhook.html:75 -#: netbox/templates/inc/panel_table.html:13 -#: netbox/templates/inc/panels/comments.html:10 -#: netbox/templates/ipam/inc/panels/fhrp_groups.html:56 -#: netbox/templates/users/group.html:34 netbox/templates/users/group.html:44 -#: netbox/templates/users/objectpermission.html:77 -#: netbox/templates/users/objectpermission.html:87 -#: netbox/templates/users/user.html:58 netbox/templates/users/user.html:68 +#: templates/account/profile.html:58 +#: templates/circuits/circuit_terminations_swap.html:18 +#: templates/circuits/circuit_terminations_swap.html:26 +#: templates/circuits/circuittermination.html:34 +#: templates/circuits/inc/circuit_termination.html:68 +#: templates/core/objectchange.html:124 templates/core/objectchange.html:142 +#: templates/dcim/devicebay.html:59 +#: templates/dcim/inc/panels/inventory_items.html:45 +#: templates/dcim/interface.html:296 templates/dcim/modulebay.html:80 +#: templates/extras/configcontext.html:70 templates/extras/eventrule.html:66 +#: templates/extras/htmx/script_result.html:60 +#: templates/extras/webhook.html:65 templates/extras/webhook.html:75 +#: templates/inc/panel_table.html:13 templates/inc/panels/comments.html:10 +#: templates/ipam/inc/panels/fhrp_groups.html:56 templates/users/group.html:34 +#: templates/users/group.html:44 templates/users/objectpermission.html:77 +#: templates/users/objectpermission.html:87 templates/users/user.html:58 +#: templates/users/user.html:68 msgid "None" msgstr "Ingen" -#: netbox/templates/account/profile.html:68 -#: netbox/templates/users/user.html:78 +#: templates/account/profile.html:68 templates/users/user.html:78 msgid "Recent Activity" msgstr "Seneste aktivitet" -#: netbox/templates/account/token.html:8 -#: netbox/templates/account/token_list.html:6 +#: templates/account/token.html:8 templates/account/token_list.html:6 msgid "My API Tokens" msgstr "Mine API-tokens" -#: netbox/templates/account/token.html:11 -#: netbox/templates/account/token.html:19 netbox/templates/users/token.html:6 -#: netbox/templates/users/token.html:14 netbox/users/forms/filtersets.py:120 +#: templates/account/token.html:11 templates/account/token.html:19 +#: templates/users/token.html:6 templates/users/token.html:14 +#: users/forms/filtersets.py:120 msgid "Token" msgstr "Token" -#: netbox/templates/account/token.html:39 netbox/templates/users/token.html:31 -#: netbox/users/forms/bulk_edit.py:107 +#: templates/account/token.html:39 templates/users/token.html:31 +#: users/forms/bulk_edit.py:107 msgid "Write enabled" msgstr "Skriv aktiveret" -#: netbox/templates/account/token.html:51 netbox/templates/users/token.html:43 +#: templates/account/token.html:51 templates/users/token.html:43 msgid "Last used" msgstr "Sidst brugt" -#: netbox/templates/account/token_list.html:12 +#: templates/account/token_list.html:12 msgid "Add a Token" msgstr "Tilføj en token" -#: netbox/templates/base/base.html:22 netbox/templates/home.html:27 +#: templates/base/base.html:22 templates/home.html:27 msgid "Home" msgstr "Hjem" -#: netbox/templates/base/layout.html:25 +#: templates/base/layout.html:25 msgid "NetBox Motif" msgstr "NetBox Motiv" -#: netbox/templates/base/layout.html:38 netbox/templates/base/layout.html:39 -#: netbox/templates/login.html:14 netbox/templates/login.html:15 +#: templates/base/layout.html:38 templates/base/layout.html:39 +#: templates/login.html:14 templates/login.html:15 msgid "NetBox Logo" msgstr "NetBox-logoet" -#: netbox/templates/base/layout.html:150 netbox/templates/base/layout.html:151 +#: templates/base/layout.html:150 templates/base/layout.html:151 msgid "Docs" msgstr "Dokumenter" -#: netbox/templates/base/layout.html:156 netbox/templates/base/layout.html:157 -#: netbox/templates/rest_framework/api.html:10 +#: templates/base/layout.html:156 templates/base/layout.html:157 +#: templates/rest_framework/api.html:10 msgid "REST API" msgstr "REST API" -#: netbox/templates/base/layout.html:162 netbox/templates/base/layout.html:163 +#: templates/base/layout.html:162 templates/base/layout.html:163 msgid "REST API documentation" msgstr "REST API-dokumentation" -#: netbox/templates/base/layout.html:169 netbox/templates/base/layout.html:170 +#: templates/base/layout.html:169 templates/base/layout.html:170 msgid "GraphQL API" msgstr "GraphQL-API" -#: netbox/templates/base/layout.html:185 netbox/templates/base/layout.html:186 +#: templates/base/layout.html:185 templates/base/layout.html:186 msgid "NetBox Labs Support" msgstr "NetBox Labs Support" -#: netbox/templates/base/layout.html:194 netbox/templates/base/layout.html:195 +#: templates/base/layout.html:194 templates/base/layout.html:195 msgid "Source Code" msgstr "Kildekode" -#: netbox/templates/base/layout.html:200 netbox/templates/base/layout.html:201 +#: templates/base/layout.html:200 templates/base/layout.html:201 msgid "Community" msgstr "Fællesskab" -#: netbox/templates/circuits/circuit.html:47 +#: templates/circuits/circuit.html:47 msgid "Install Date" msgstr "Installationsdato" -#: netbox/templates/circuits/circuit.html:51 +#: templates/circuits/circuit.html:51 msgid "Termination Date" msgstr "Opsigelsesdato" -#: netbox/templates/circuits/circuit.html:70 -#: netbox/templates/ipam/inc/panels/fhrp_groups.html:15 +#: templates/circuits/circuit.html:70 +#: templates/ipam/inc/panels/fhrp_groups.html:15 msgid "Assign Group" msgstr "Tildel gruppe" -#: netbox/templates/circuits/circuit_terminations_swap.html:4 +#: templates/circuits/circuit_terminations_swap.html:4 msgid "Swap Circuit Terminations" msgstr "Udskiftningskredsløbsafslutninger" -#: netbox/templates/circuits/circuit_terminations_swap.html:8 +#: templates/circuits/circuit_terminations_swap.html:8 #, python-format msgid "Swap these terminations for circuit %(circuit)s?" msgstr "Byt disse afslutninger til kredsløb %(circuit)s?" -#: netbox/templates/circuits/circuit_terminations_swap.html:14 +#: templates/circuits/circuit_terminations_swap.html:14 msgid "A side" msgstr "En side" -#: netbox/templates/circuits/circuit_terminations_swap.html:22 +#: templates/circuits/circuit_terminations_swap.html:22 msgid "Z side" msgstr "Z-siden" -#: netbox/templates/circuits/circuitgroup.html:16 +#: templates/circuits/circuitgroup.html:16 msgid "Assign Circuit" msgstr "Tildel kredsløb" -#: netbox/templates/circuits/circuitgroupassignment.html:19 +#: templates/circuits/circuitgroupassignment.html:19 msgid "Circuit Group Assignment" msgstr "Kredsløbsgruppetildeling" -#: netbox/templates/circuits/circuittype.html:10 +#: templates/circuits/circuittype.html:10 msgid "Add Circuit" msgstr "Tilføj kredsløb" -#: netbox/templates/circuits/circuittype.html:19 +#: templates/circuits/circuittype.html:19 msgid "Circuit Type" msgstr "Kredsløbstype" -#: netbox/templates/circuits/inc/circuit_termination.html:10 -#: netbox/templates/dcim/devicetype/component_templates.html:33 -#: netbox/templates/dcim/manufacturer.html:11 -#: netbox/templates/dcim/moduletype/component_templates.html:29 -#: netbox/templates/generic/bulk_add_component.html:22 -#: netbox/templates/users/objectpermission.html:38 -#: netbox/utilities/templates/buttons/add.html:4 -#: netbox/utilities/templates/helpers/table_config_form.html:20 +#: templates/circuits/inc/circuit_termination.html:10 +#: templates/dcim/manufacturer.html:11 +#: templates/generic/bulk_add_component.html:22 +#: templates/users/objectpermission.html:38 +#: utilities/templates/buttons/add.html:4 +#: utilities/templates/helpers/table_config_form.html:20 msgid "Add" msgstr "Tilføj" -#: netbox/templates/circuits/inc/circuit_termination.html:15 -#: netbox/templates/circuits/inc/circuit_termination_fields.html:36 -#: netbox/templates/dcim/inc/panels/inventory_items.html:32 -#: netbox/templates/dcim/moduletype/component_templates.html:20 -#: netbox/templates/dcim/powerpanel.html:56 -#: netbox/templates/extras/script_list.html:30 -#: netbox/templates/generic/object_edit.html:47 -#: netbox/templates/ipam/inc/ipaddress_edit_header.html:7 -#: netbox/templates/ipam/inc/panels/fhrp_groups.html:43 -#: netbox/utilities/templates/buttons/edit.html:3 +#: templates/circuits/inc/circuit_termination.html:15 +#: templates/circuits/inc/circuit_termination_fields.html:36 +#: templates/dcim/inc/panels/inventory_items.html:32 +#: templates/dcim/powerpanel.html:56 templates/extras/script_list.html:30 +#: templates/generic/object_edit.html:47 +#: templates/ipam/inc/ipaddress_edit_header.html:7 +#: templates/ipam/inc/panels/fhrp_groups.html:43 +#: utilities/templates/buttons/edit.html:3 msgid "Edit" msgstr "Rediger" -#: netbox/templates/circuits/inc/circuit_termination.html:18 +#: templates/circuits/inc/circuit_termination.html:18 msgid "Swap" msgstr "Bytte" -#: netbox/templates/circuits/inc/circuit_termination_fields.html:19 -#: netbox/templates/dcim/consoleport.html:59 -#: netbox/templates/dcim/consoleserverport.html:60 -#: netbox/templates/dcim/powerfeed.html:114 +#: templates/circuits/inc/circuit_termination_fields.html:19 +#: templates/dcim/consoleport.html:59 templates/dcim/consoleserverport.html:60 +#: templates/dcim/powerfeed.html:114 msgid "Marked as connected" msgstr "Markeret som tilsluttet" -#: netbox/templates/circuits/inc/circuit_termination_fields.html:21 +#: templates/circuits/inc/circuit_termination_fields.html:21 msgid "to" msgstr "til" -#: netbox/templates/circuits/inc/circuit_termination_fields.html:31 -#: netbox/templates/circuits/inc/circuit_termination_fields.html:32 -#: netbox/templates/dcim/frontport.html:80 -#: netbox/templates/dcim/inc/connection_endpoints.html:7 -#: netbox/templates/dcim/interface.html:154 -#: netbox/templates/dcim/rearport.html:76 +#: templates/circuits/inc/circuit_termination_fields.html:31 +#: templates/circuits/inc/circuit_termination_fields.html:32 +#: templates/dcim/frontport.html:80 +#: templates/dcim/inc/connection_endpoints.html:7 +#: templates/dcim/interface.html:154 templates/dcim/rearport.html:76 msgid "Trace" msgstr "Spor" -#: netbox/templates/circuits/inc/circuit_termination_fields.html:35 +#: templates/circuits/inc/circuit_termination_fields.html:35 msgid "Edit cable" msgstr "Rediger kabel" -#: netbox/templates/circuits/inc/circuit_termination_fields.html:40 +#: templates/circuits/inc/circuit_termination_fields.html:40 msgid "Remove cable" msgstr "Fjern kablet" -#: netbox/templates/circuits/inc/circuit_termination_fields.html:41 -#: netbox/templates/dcim/bulk_disconnect.html:5 -#: netbox/templates/dcim/device/consoleports.html:12 -#: netbox/templates/dcim/device/consoleserverports.html:12 -#: netbox/templates/dcim/device/frontports.html:12 -#: netbox/templates/dcim/device/interfaces.html:16 -#: netbox/templates/dcim/device/poweroutlets.html:12 -#: netbox/templates/dcim/device/powerports.html:12 -#: netbox/templates/dcim/device/rearports.html:12 -#: netbox/templates/dcim/powerpanel.html:61 +#: templates/circuits/inc/circuit_termination_fields.html:41 +#: templates/dcim/bulk_disconnect.html:5 +#: templates/dcim/device/consoleports.html:12 +#: templates/dcim/device/consoleserverports.html:12 +#: templates/dcim/device/frontports.html:12 +#: templates/dcim/device/interfaces.html:16 +#: templates/dcim/device/poweroutlets.html:12 +#: templates/dcim/device/powerports.html:12 +#: templates/dcim/device/rearports.html:12 templates/dcim/powerpanel.html:61 msgid "Disconnect" msgstr "Afbryd forbindelsen" -#: netbox/templates/circuits/inc/circuit_termination_fields.html:48 -#: netbox/templates/dcim/consoleport.html:69 -#: netbox/templates/dcim/consoleserverport.html:70 -#: netbox/templates/dcim/frontport.html:102 -#: netbox/templates/dcim/interface.html:180 -#: netbox/templates/dcim/interface.html:200 -#: netbox/templates/dcim/powerfeed.html:127 -#: netbox/templates/dcim/poweroutlet.html:71 -#: netbox/templates/dcim/poweroutlet.html:72 -#: netbox/templates/dcim/powerport.html:73 -#: netbox/templates/dcim/rearport.html:98 +#: templates/circuits/inc/circuit_termination_fields.html:48 +#: templates/dcim/consoleport.html:69 templates/dcim/consoleserverport.html:70 +#: templates/dcim/frontport.html:102 templates/dcim/interface.html:180 +#: templates/dcim/interface.html:200 templates/dcim/powerfeed.html:127 +#: templates/dcim/poweroutlet.html:71 templates/dcim/poweroutlet.html:72 +#: templates/dcim/powerport.html:73 templates/dcim/rearport.html:98 msgid "Connect" msgstr "Forbind" -#: netbox/templates/circuits/inc/circuit_termination_fields.html:70 +#: templates/circuits/inc/circuit_termination_fields.html:70 msgid "Downstream" msgstr "Nedstrøms" -#: netbox/templates/circuits/inc/circuit_termination_fields.html:71 +#: templates/circuits/inc/circuit_termination_fields.html:71 msgid "Upstream" msgstr "Opstrøms" -#: netbox/templates/circuits/inc/circuit_termination_fields.html:80 +#: templates/circuits/inc/circuit_termination_fields.html:80 msgid "Cross-Connect" msgstr "Krydsforbindelse" -#: netbox/templates/circuits/inc/circuit_termination_fields.html:84 +#: templates/circuits/inc/circuit_termination_fields.html:84 msgid "Patch Panel/Port" msgstr "Patchpanel/port" -#: netbox/templates/circuits/provider.html:11 +#: templates/circuits/provider.html:11 msgid "Add circuit" msgstr "Tilføj kredsløb" -#: netbox/templates/circuits/provideraccount.html:17 +#: templates/circuits/provideraccount.html:17 msgid "Provider Account" msgstr "Leverandørkonto" -#: netbox/templates/core/configrevision.html:35 +#: templates/core/configrevision.html:35 msgid "Configuration Data" msgstr "Konfigurationsdata" -#: netbox/templates/core/configrevision.html:40 +#: templates/core/configrevision.html:40 msgid "Comment" msgstr "Kommentar" -#: netbox/templates/core/configrevision_restore.html:8 -#: netbox/templates/core/configrevision_restore.html:25 -#: netbox/templates/core/configrevision_restore.html:64 +#: templates/core/configrevision_restore.html:8 +#: templates/core/configrevision_restore.html:25 +#: templates/core/configrevision_restore.html:64 msgid "Restore" msgstr "Gendan" -#: netbox/templates/core/configrevision_restore.html:36 +#: templates/core/configrevision_restore.html:36 msgid "Parameter" msgstr "Parameter" -#: netbox/templates/core/configrevision_restore.html:37 +#: templates/core/configrevision_restore.html:37 msgid "Current Value" msgstr "Nuværende værdi" -#: netbox/templates/core/configrevision_restore.html:38 +#: templates/core/configrevision_restore.html:38 msgid "New Value" msgstr "Ny værdi" -#: netbox/templates/core/configrevision_restore.html:50 +#: templates/core/configrevision_restore.html:50 msgid "Changed" msgstr "Ændret" -#: netbox/templates/core/datafile.html:42 -#: netbox/templates/ipam/iprange.html:25 -#: netbox/templates/virtualization/virtualdisk.html:29 -#: netbox/virtualization/tables/virtualmachines.py:198 +#: templates/core/datafile.html:42 templates/ipam/iprange.html:25 +#: templates/virtualization/virtualdisk.html:29 +#: virtualization/tables/virtualmachines.py:198 msgid "Size" msgstr "Størrelse" -#: netbox/templates/core/datafile.html:43 +#: templates/core/datafile.html:43 msgid "bytes" msgstr "bytes" -#: netbox/templates/core/datafile.html:46 +#: templates/core/datafile.html:46 msgid "SHA256 Hash" msgstr "SHA256 Hash" -#: netbox/templates/core/datasource.html:14 -#: netbox/templates/core/datasource.html:20 -#: netbox/utilities/templates/buttons/sync.html:5 +#: templates/core/datasource.html:14 templates/core/datasource.html:20 +#: utilities/templates/buttons/sync.html:5 msgid "Sync" msgstr "Synkroniser" -#: netbox/templates/core/datasource.html:50 +#: templates/core/datasource.html:50 msgid "Last synced" msgstr "Sidst synkroniseret" -#: netbox/templates/core/datasource.html:84 +#: templates/core/datasource.html:84 msgid "Backend" msgstr "Backend" -#: netbox/templates/core/datasource.html:99 +#: templates/core/datasource.html:99 msgid "No parameters defined" msgstr "Ingen parametre defineret" -#: netbox/templates/core/datasource.html:114 +#: templates/core/datasource.html:114 msgid "Files" msgstr "filer" -#: netbox/templates/core/inc/config_data.html:7 +#: templates/core/inc/config_data.html:7 msgid "Rack elevations" msgstr "Rackhøjder" -#: netbox/templates/core/inc/config_data.html:10 +#: templates/core/inc/config_data.html:10 msgid "Default unit height" msgstr "Standard enhedshøjde" -#: netbox/templates/core/inc/config_data.html:14 +#: templates/core/inc/config_data.html:14 msgid "Default unit width" msgstr "Standard enhedsbredde" -#: netbox/templates/core/inc/config_data.html:20 +#: templates/core/inc/config_data.html:20 msgid "Power feeds" msgstr "Strømforsyninger" -#: netbox/templates/core/inc/config_data.html:23 +#: templates/core/inc/config_data.html:23 msgid "Default voltage" msgstr "Standard spænding" -#: netbox/templates/core/inc/config_data.html:27 +#: templates/core/inc/config_data.html:27 msgid "Default amperage" msgstr "Standard strømstyrke" -#: netbox/templates/core/inc/config_data.html:31 +#: templates/core/inc/config_data.html:31 msgid "Default max utilization" msgstr "Standard maksimal udnyttelse" -#: netbox/templates/core/inc/config_data.html:40 +#: templates/core/inc/config_data.html:40 msgid "Enforce global unique" msgstr "Håndhæv global unik" -#: netbox/templates/core/inc/config_data.html:83 +#: templates/core/inc/config_data.html:83 msgid "Paginate count" msgstr "Paginatantal" -#: netbox/templates/core/inc/config_data.html:87 +#: templates/core/inc/config_data.html:87 msgid "Max page size" msgstr "Maks. Sidestørrelse" -#: netbox/templates/core/inc/config_data.html:114 +#: templates/core/inc/config_data.html:114 msgid "User preferences" msgstr "Brugerpræferencer" -#: netbox/templates/core/inc/config_data.html:141 +#: templates/core/inc/config_data.html:141 msgid "Job retention" msgstr "Jobfastholdelse" -#: netbox/templates/core/job.html:35 netbox/templates/core/rq_task.html:12 -#: netbox/templates/core/rq_task.html:49 netbox/templates/core/rq_task.html:58 +#: templates/core/job.html:35 templates/core/rq_task.html:12 +#: templates/core/rq_task.html:49 templates/core/rq_task.html:58 msgid "Job" msgstr "Job" -#: netbox/templates/core/job.html:58 -#: netbox/templates/extras/journalentry.html:26 +#: templates/core/job.html:58 templates/extras/journalentry.html:26 msgid "Created By" msgstr "Oprettet af" -#: netbox/templates/core/job.html:66 +#: templates/core/job.html:66 msgid "Scheduling" msgstr "Planlægning" -#: netbox/templates/core/job.html:77 +#: templates/core/job.html:77 #, python-format msgid "every %(interval)s minutes" msgstr "hver %(interval)s minutter" -#: netbox/templates/core/objectchange.html:29 -#: netbox/templates/users/objectpermission.html:42 +#: templates/core/objectchange.html:29 +#: templates/users/objectpermission.html:42 msgid "Change" msgstr "Ændre" -#: netbox/templates/core/objectchange.html:79 +#: templates/core/objectchange.html:79 msgid "Difference" msgstr "Forskel" -#: netbox/templates/core/objectchange.html:82 +#: templates/core/objectchange.html:82 msgid "Previous" msgstr "Tidligere" -#: netbox/templates/core/objectchange.html:85 +#: templates/core/objectchange.html:85 msgid "Next" msgstr "Næste" -#: netbox/templates/core/objectchange.html:93 +#: templates/core/objectchange.html:93 msgid "Object Created" msgstr "Objekt oprettet" -#: netbox/templates/core/objectchange.html:95 +#: templates/core/objectchange.html:95 msgid "Object Deleted" msgstr "Objekt slettet" -#: netbox/templates/core/objectchange.html:97 +#: templates/core/objectchange.html:97 msgid "No Changes" msgstr "Ingen ændringer" -#: netbox/templates/core/objectchange.html:111 +#: templates/core/objectchange.html:111 msgid "Pre-Change Data" msgstr "Data før ændring" -#: netbox/templates/core/objectchange.html:122 +#: templates/core/objectchange.html:122 msgid "Warning: Comparing non-atomic change to previous change record" msgstr "" "Advarsel: Sammenligning af ikke-atomær ændring med tidligere ændringsrekord" -#: netbox/templates/core/objectchange.html:131 +#: templates/core/objectchange.html:131 msgid "Post-Change Data" msgstr "Data efter ændring" -#: netbox/templates/core/objectchange.html:162 +#: templates/core/objectchange.html:162 #, python-format msgid "See All %(count)s Changes" msgstr "Se alle %(count)s Ændringer" -#: netbox/templates/core/objectchange_list.html:9 -#: netbox/templates/extras/object_changelog.html:15 +#: templates/core/objectchange_list.html:9 +#: templates/extras/object_changelog.html:15 msgid "Change log retention" msgstr "Ændre logopbevaring" -#: netbox/templates/core/objectchange_list.html:9 -#: netbox/templates/extras/object_changelog.html:15 +#: templates/core/objectchange_list.html:9 +#: templates/extras/object_changelog.html:15 msgid "days" msgstr "dage" -#: netbox/templates/core/objectchange_list.html:9 -#: netbox/templates/extras/object_changelog.html:15 +#: templates/core/objectchange_list.html:9 +#: templates/extras/object_changelog.html:15 msgid "Indefinite" msgstr "Ubestemt" -#: netbox/templates/core/plugin.html:21 +#: templates/core/plugin.html:22 msgid "Not installed" msgstr "Ikke installeret" -#: netbox/templates/core/plugin.html:32 +#: templates/core/plugin.html:33 msgid "Overview" msgstr "Oversigt" -#: netbox/templates/core/plugin.html:38 +#: templates/core/plugin.html:39 msgid "Install" msgstr "Installere" -#: netbox/templates/core/plugin.html:50 +#: templates/core/plugin.html:51 msgid "Plugin Details" msgstr "Plugin Detaljer" -#: netbox/templates/core/plugin.html:57 +#: templates/core/plugin.html:58 msgid "Summary" msgstr "Resumé" -#: netbox/templates/core/plugin.html:75 +#: templates/core/plugin.html:76 msgid "License" msgstr "Licens" -#: netbox/templates/core/plugin.html:95 +#: templates/core/plugin.html:96 msgid "Version History" msgstr "Versionshistorik" -#: netbox/templates/core/plugin.html:106 +#: templates/core/plugin.html:107 msgid "Local Installation Instructions" msgstr "Lokale installationsinstruktioner" -#: netbox/templates/core/rq_queue_list.html:5 -#: netbox/templates/core/rq_queue_list.html:13 -#: netbox/templates/core/rq_task_list.html:14 -#: netbox/templates/core/rq_worker.html:7 +#: templates/core/rq_queue_list.html:5 templates/core/rq_queue_list.html:13 +#: templates/core/rq_task_list.html:14 templates/core/rq_worker.html:7 msgid "Background Queues" msgstr "Baggrundskøer" -#: netbox/templates/core/rq_queue_list.html:24 -#: netbox/templates/core/rq_queue_list.html:25 -#: netbox/templates/core/rq_worker_list.html:49 -#: netbox/templates/core/rq_worker_list.html:50 -#: netbox/templates/extras/script_result.html:67 -#: netbox/templates/extras/script_result.html:69 -#: netbox/templates/inc/table_controls_htmx.html:30 -#: netbox/templates/inc/table_controls_htmx.html:33 +#: templates/core/rq_queue_list.html:24 templates/core/rq_queue_list.html:25 +#: templates/core/rq_worker_list.html:49 templates/core/rq_worker_list.html:50 +#: templates/extras/script_result.html:67 +#: templates/extras/script_result.html:69 +#: templates/inc/table_controls_htmx.html:30 +#: templates/inc/table_controls_htmx.html:33 msgid "Configure Table" msgstr "Konfigurer tabel" -#: netbox/templates/core/rq_task.html:29 +#: templates/core/rq_task.html:29 msgid "Stop" msgstr "Stop" -#: netbox/templates/core/rq_task.html:34 +#: templates/core/rq_task.html:34 msgid "Requeue" msgstr "Requeue" -#: netbox/templates/core/rq_task.html:39 +#: templates/core/rq_task.html:39 msgid "Enqueue" msgstr "Kø" -#: netbox/templates/core/rq_task.html:61 +#: templates/core/rq_task.html:61 msgid "Queue" msgstr "Kø" -#: netbox/templates/core/rq_task.html:65 +#: templates/core/rq_task.html:65 msgid "Timeout" msgstr "Timeout" -#: netbox/templates/core/rq_task.html:69 +#: templates/core/rq_task.html:69 msgid "Result TTL" msgstr "Resultat TTL" -#: netbox/templates/core/rq_task.html:89 +#: templates/core/rq_task.html:89 msgid "Meta" msgstr "Meta" -#: netbox/templates/core/rq_task.html:93 +#: templates/core/rq_task.html:93 msgid "Arguments" msgstr "Argumenter" -#: netbox/templates/core/rq_task.html:97 +#: templates/core/rq_task.html:97 msgid "Keyword Arguments" msgstr "Søgeordsargumenter" -#: netbox/templates/core/rq_task.html:103 +#: templates/core/rq_task.html:103 msgid "Depends on" msgstr "Afhænger af" -#: netbox/templates/core/rq_task.html:109 +#: templates/core/rq_task.html:109 msgid "Exception" msgstr "Undtagelse" -#: netbox/templates/core/rq_task_list.html:28 +#: templates/core/rq_task_list.html:28 msgid "tasks in " msgstr "opgaver i " -#: netbox/templates/core/rq_task_list.html:33 +#: templates/core/rq_task_list.html:33 msgid "Queued Jobs" msgstr "Jobmuligheder i kø" -#: netbox/templates/core/rq_task_list.html:64 -#: netbox/templates/extras/script_result.html:86 +#: templates/core/rq_task_list.html:64 templates/extras/script_result.html:86 #, python-format msgid "" "Select all %(count)s %(object_type_plural)s matching query" @@ -12201,397 +11525,382 @@ msgstr "" "Vælg alle %(count)s %(object_type_plural)s matchende " "forespørgsel" -#: netbox/templates/core/rq_worker.html:10 +#: templates/core/rq_worker.html:10 msgid "Worker Info" msgstr "Arbejderinfo" -#: netbox/templates/core/rq_worker.html:31 -#: netbox/templates/core/rq_worker.html:40 +#: templates/core/rq_worker.html:31 templates/core/rq_worker.html:40 msgid "Worker" msgstr "Arbejdstageren" -#: netbox/templates/core/rq_worker.html:55 +#: templates/core/rq_worker.html:55 msgid "Queues" msgstr "Køer" -#: netbox/templates/core/rq_worker.html:63 +#: templates/core/rq_worker.html:63 msgid "Curent Job" msgstr "Nuværende job" -#: netbox/templates/core/rq_worker.html:67 +#: templates/core/rq_worker.html:67 msgid "Successful job count" msgstr "Antal vellykkede job" -#: netbox/templates/core/rq_worker.html:71 +#: templates/core/rq_worker.html:71 msgid "Failed job count" msgstr "Antal mislykkede job" -#: netbox/templates/core/rq_worker.html:75 +#: templates/core/rq_worker.html:75 msgid "Total working time" msgstr "Samlet arbejdstid" -#: netbox/templates/core/rq_worker.html:76 +#: templates/core/rq_worker.html:76 msgid "seconds" msgstr "sekunder" -#: netbox/templates/core/rq_worker_list.html:13 -#: netbox/templates/core/rq_worker_list.html:21 +#: templates/core/rq_worker_list.html:13 templates/core/rq_worker_list.html:21 msgid "Background Workers" msgstr "Baggrundsarbejdere" -#: netbox/templates/core/rq_worker_list.html:29 +#: templates/core/rq_worker_list.html:29 #, python-format msgid "Workers in %(queue_name)s" msgstr "Arbejdere i %(queue_name)s" -#: netbox/templates/core/system.html:11 -#: netbox/utilities/templates/buttons/export.html:4 +#: templates/core/system.html:11 utilities/templates/buttons/export.html:4 msgid "Export" msgstr "Eksport" -#: netbox/templates/core/system.html:28 +#: templates/core/system.html:28 msgid "System Status" msgstr "Systemstatus" -#: netbox/templates/core/system.html:31 +#: templates/core/system.html:31 msgid "NetBox release" msgstr "NetBox-udgivelse" -#: netbox/templates/core/system.html:44 +#: templates/core/system.html:44 msgid "Django version" msgstr "Django version" -#: netbox/templates/core/system.html:48 +#: templates/core/system.html:48 msgid "PostgreSQL version" msgstr "PostgreSQL-version" -#: netbox/templates/core/system.html:52 +#: templates/core/system.html:52 msgid "Database name" msgstr "Databasenavn" -#: netbox/templates/core/system.html:56 +#: templates/core/system.html:56 msgid "Database size" msgstr "Databasestørrelse" -#: netbox/templates/core/system.html:61 +#: templates/core/system.html:61 msgid "Unavailable" msgstr "Ikke tilgængelig" -#: netbox/templates/core/system.html:66 +#: templates/core/system.html:66 msgid "RQ workers" msgstr "RQ-arbejdere" -#: netbox/templates/core/system.html:69 +#: templates/core/system.html:69 msgid "default queue" msgstr "standardkø" -#: netbox/templates/core/system.html:73 +#: templates/core/system.html:73 msgid "System time" msgstr "Systemtid" -#: netbox/templates/core/system.html:85 +#: templates/core/system.html:85 msgid "Current Configuration" msgstr "Nuværende konfiguration" -#: netbox/templates/dcim/bulk_disconnect.html:9 +#: templates/dcim/bulk_disconnect.html:9 #, python-format msgid "" "Are you sure you want to disconnect these %(count)s %(obj_type_plural)s?" msgstr "" "Er du sikker på, at du vil afbryde disse %(count)s %(obj_type_plural)s?" -#: netbox/templates/dcim/cable_trace.html:10 +#: templates/dcim/cable_trace.html:10 #, python-format msgid "Cable Trace for %(object_type)s %(object)s" msgstr "Kabelspor til %(object_type)s %(object)s" -#: netbox/templates/dcim/cable_trace.html:24 -#: netbox/templates/dcim/inc/rack_elevation.html:7 +#: templates/dcim/cable_trace.html:24 templates/dcim/inc/rack_elevation.html:7 msgid "Download SVG" msgstr "Hent SVG" -#: netbox/templates/dcim/cable_trace.html:30 +#: templates/dcim/cable_trace.html:30 msgid "Asymmetric Path" msgstr "Asymmetrisk sti" -#: netbox/templates/dcim/cable_trace.html:31 +#: templates/dcim/cable_trace.html:31 msgid "The nodes below have no links and result in an asymmetric path" msgstr "Noderne nedenfor har ingen links og resulterer i en asymmetrisk sti" -#: netbox/templates/dcim/cable_trace.html:38 +#: templates/dcim/cable_trace.html:38 msgid "Path split" msgstr "Stiopdeling" -#: netbox/templates/dcim/cable_trace.html:39 +#: templates/dcim/cable_trace.html:39 msgid "Select a node below to continue" msgstr "Vælg en node nedenfor for at fortsætte" -#: netbox/templates/dcim/cable_trace.html:55 +#: templates/dcim/cable_trace.html:55 msgid "Trace Completed" msgstr "Sporing afsluttet" -#: netbox/templates/dcim/cable_trace.html:58 +#: templates/dcim/cable_trace.html:58 msgid "Total segments" msgstr "Segmenter i alt" -#: netbox/templates/dcim/cable_trace.html:62 +#: templates/dcim/cable_trace.html:62 msgid "Total length" msgstr "Samlet længde" -#: netbox/templates/dcim/cable_trace.html:77 +#: templates/dcim/cable_trace.html:77 msgid "No paths found" msgstr "Ingen stier fundet" -#: netbox/templates/dcim/cable_trace.html:85 +#: templates/dcim/cable_trace.html:85 msgid "Related Paths" msgstr "Relaterede stier" -#: netbox/templates/dcim/cable_trace.html:89 +#: templates/dcim/cable_trace.html:89 msgid "Origin" msgstr "Oprindelse" -#: netbox/templates/dcim/cable_trace.html:90 +#: templates/dcim/cable_trace.html:90 msgid "Destination" msgstr "Bestemmelsessted" -#: netbox/templates/dcim/cable_trace.html:91 +#: templates/dcim/cable_trace.html:91 msgid "Segments" msgstr "Segmenter" -#: netbox/templates/dcim/cable_trace.html:104 +#: templates/dcim/cable_trace.html:104 msgid "Incomplete" msgstr "Ufuldstændig" -#: netbox/templates/dcim/component_list.html:14 +#: templates/dcim/component_list.html:14 msgid "Rename Selected" msgstr "Omdøb markeret" -#: netbox/templates/dcim/consoleport.html:65 -#: netbox/templates/dcim/consoleserverport.html:66 -#: netbox/templates/dcim/frontport.html:98 -#: netbox/templates/dcim/interface.html:176 -#: netbox/templates/dcim/poweroutlet.html:69 -#: netbox/templates/dcim/powerport.html:69 +#: templates/dcim/consoleport.html:65 templates/dcim/consoleserverport.html:66 +#: templates/dcim/frontport.html:98 templates/dcim/interface.html:176 +#: templates/dcim/poweroutlet.html:69 templates/dcim/powerport.html:69 msgid "Not Connected" msgstr "Ikke tilsluttet" -#: netbox/templates/dcim/device.html:34 +#: templates/dcim/device.html:34 msgid "Highlight device in rack" msgstr "Fremhæv enhed i rack" -#: netbox/templates/dcim/device.html:55 +#: templates/dcim/device.html:55 msgid "Not racked" msgstr "Ikke racket" -#: netbox/templates/dcim/device.html:62 netbox/templates/dcim/site.html:94 +#: templates/dcim/device.html:62 templates/dcim/site.html:94 msgid "GPS Coordinates" msgstr "GPS-koordinater" -#: netbox/templates/dcim/device.html:68 netbox/templates/dcim/site.html:81 -#: netbox/templates/dcim/site.html:100 +#: templates/dcim/device.html:68 templates/dcim/site.html:81 +#: templates/dcim/site.html:100 msgid "Map" msgstr "Kort" -#: netbox/templates/dcim/device.html:108 -#: netbox/templates/dcim/inventoryitem.html:56 -#: netbox/templates/dcim/module.html:81 -#: netbox/templates/dcim/modulebay.html:74 netbox/templates/dcim/rack.html:61 +#: templates/dcim/device.html:108 templates/dcim/inventoryitem.html:56 +#: templates/dcim/module.html:81 templates/dcim/modulebay.html:74 +#: templates/dcim/rack.html:61 msgid "Asset Tag" msgstr "Aktivemærke" -#: netbox/templates/dcim/device.html:123 +#: templates/dcim/device.html:123 msgid "View Virtual Chassis" msgstr "Se virtuelt kabinet" -#: netbox/templates/dcim/device.html:164 +#: templates/dcim/device.html:164 msgid "Create VDC" msgstr "Opret VDC" -#: netbox/templates/dcim/device.html:175 -#: netbox/templates/dcim/device_edit.html:64 -#: netbox/virtualization/forms/model_forms.py:223 +#: templates/dcim/device.html:175 templates/dcim/device_edit.html:64 +#: virtualization/forms/model_forms.py:223 msgid "Management" msgstr "Ledelse" -#: netbox/templates/dcim/device.html:195 netbox/templates/dcim/device.html:211 -#: netbox/templates/dcim/device.html:227 -#: netbox/templates/virtualization/virtualmachine.html:57 -#: netbox/templates/virtualization/virtualmachine.html:73 +#: templates/dcim/device.html:195 templates/dcim/device.html:211 +#: templates/dcim/device.html:227 +#: templates/virtualization/virtualmachine.html:57 +#: templates/virtualization/virtualmachine.html:73 msgid "NAT for" msgstr "NAT til" -#: netbox/templates/dcim/device.html:197 netbox/templates/dcim/device.html:213 -#: netbox/templates/dcim/device.html:229 -#: netbox/templates/virtualization/virtualmachine.html:59 -#: netbox/templates/virtualization/virtualmachine.html:75 +#: templates/dcim/device.html:197 templates/dcim/device.html:213 +#: templates/dcim/device.html:229 +#: templates/virtualization/virtualmachine.html:59 +#: templates/virtualization/virtualmachine.html:75 msgid "NAT" msgstr "NATTO" -#: netbox/templates/dcim/device.html:252 netbox/templates/dcim/rack.html:73 +#: templates/dcim/device.html:252 templates/dcim/rack.html:73 msgid "Power Utilization" msgstr "Strømforbrug" -#: netbox/templates/dcim/device.html:256 +#: templates/dcim/device.html:256 msgid "Input" msgstr "Indgang" -#: netbox/templates/dcim/device.html:257 +#: templates/dcim/device.html:257 msgid "Outlets" msgstr "Udtag" -#: netbox/templates/dcim/device.html:258 +#: templates/dcim/device.html:258 msgid "Allocated" msgstr "Allokeret" -#: netbox/templates/dcim/device.html:268 netbox/templates/dcim/device.html:270 -#: netbox/templates/dcim/device.html:286 -#: netbox/templates/dcim/powerfeed.html:67 +#: templates/dcim/device.html:268 templates/dcim/device.html:270 +#: templates/dcim/device.html:286 templates/dcim/powerfeed.html:67 msgid "VA" msgstr "VA" -#: netbox/templates/dcim/device.html:280 +#: templates/dcim/device.html:280 msgctxt "Leg of a power feed" msgid "Leg" msgstr "Ben" -#: netbox/templates/dcim/device.html:306 -#: netbox/templates/virtualization/virtualmachine.html:158 +#: templates/dcim/device.html:306 +#: templates/virtualization/virtualmachine.html:158 msgid "Add a service" msgstr "Tilføj en tjeneste" -#: netbox/templates/dcim/device/base.html:21 -#: netbox/templates/dcim/device_list.html:9 -#: netbox/templates/dcim/devicetype/base.html:18 -#: netbox/templates/dcim/module.html:18 -#: netbox/templates/dcim/moduletype/base.html:18 -#: netbox/templates/virtualization/virtualmachine/base.html:22 -#: netbox/templates/virtualization/virtualmachine_list.html:8 +#: templates/dcim/device/base.html:21 templates/dcim/device_list.html:9 +#: templates/dcim/devicetype/base.html:18 +#: templates/dcim/inc/moduletype_buttons.html:9 templates/dcim/module.html:18 +#: templates/virtualization/virtualmachine/base.html:22 +#: templates/virtualization/virtualmachine_list.html:8 msgid "Add Components" msgstr "Tilføj komponenter" -#: netbox/templates/dcim/device/consoleports.html:24 +#: templates/dcim/device/consoleports.html:24 msgid "Add Console Ports" msgstr "Tilføj konsolporte" -#: netbox/templates/dcim/device/consoleserverports.html:24 +#: templates/dcim/device/consoleserverports.html:24 msgid "Add Console Server Ports" msgstr "Tilføj konsolserverporte" -#: netbox/templates/dcim/device/devicebays.html:10 +#: templates/dcim/device/devicebays.html:10 msgid "Add Device Bays" msgstr "Tilføj enhedsbugter" -#: netbox/templates/dcim/device/frontports.html:24 +#: templates/dcim/device/frontports.html:24 msgid "Add Front Ports" msgstr "Tilføj frontporte" -#: netbox/templates/dcim/device/inc/interface_table_controls.html:9 +#: templates/dcim/device/inc/interface_table_controls.html:9 msgid "Hide Enabled" msgstr "Skjul Aktiveret" -#: netbox/templates/dcim/device/inc/interface_table_controls.html:10 +#: templates/dcim/device/inc/interface_table_controls.html:10 msgid "Hide Disabled" msgstr "Skjul Deaktiveret" -#: netbox/templates/dcim/device/inc/interface_table_controls.html:11 +#: templates/dcim/device/inc/interface_table_controls.html:11 msgid "Hide Virtual" msgstr "Skjul virtuelt" -#: netbox/templates/dcim/device/inc/interface_table_controls.html:12 +#: templates/dcim/device/inc/interface_table_controls.html:12 msgid "Hide Disconnected" msgstr "Skjul frakoblet" -#: netbox/templates/dcim/device/interfaces.html:27 +#: templates/dcim/device/interfaces.html:27 msgid "Add Interfaces" msgstr "Tilføj grænseflader" -#: netbox/templates/dcim/device/inventory.html:10 -#: netbox/templates/dcim/inc/panels/inventory_items.html:10 +#: templates/dcim/device/inventory.html:10 +#: templates/dcim/inc/panels/inventory_items.html:10 msgid "Add Inventory Item" msgstr "Tilføj lagervare" -#: netbox/templates/dcim/device/modulebays.html:10 +#: templates/dcim/device/modulebays.html:10 msgid "Add Module Bays" msgstr "Tilføj modulpladser" -#: netbox/templates/dcim/device/poweroutlets.html:24 +#: templates/dcim/device/poweroutlets.html:24 msgid "Add Power Outlets" msgstr "Tilføj strømudtag" -#: netbox/templates/dcim/device/powerports.html:24 +#: templates/dcim/device/powerports.html:24 msgid "Add Power Port" msgstr "Tilføj strømstik" -#: netbox/templates/dcim/device/rearports.html:24 +#: templates/dcim/device/rearports.html:24 msgid "Add Rear Ports" msgstr "Tilføj bageste porte" -#: netbox/templates/dcim/device/render_config.html:5 -#: netbox/templates/virtualization/virtualmachine/render_config.html:5 +#: templates/dcim/device/render_config.html:5 +#: templates/virtualization/virtualmachine/render_config.html:5 msgid "Config" msgstr "Konfiguration" -#: netbox/templates/dcim/device/render_config.html:35 -#: netbox/templates/virtualization/virtualmachine/render_config.html:35 +#: templates/dcim/device/render_config.html:35 +#: templates/virtualization/virtualmachine/render_config.html:35 msgid "Context Data" msgstr "Kontekstdata" -#: netbox/templates/dcim/device/render_config.html:53 -#: netbox/templates/virtualization/virtualmachine/render_config.html:53 +#: templates/dcim/device/render_config.html:53 +#: templates/virtualization/virtualmachine/render_config.html:53 msgid "Rendered Config" msgstr "Renderet konfiguration" -#: netbox/templates/dcim/device/render_config.html:55 -#: netbox/templates/virtualization/virtualmachine/render_config.html:55 +#: templates/dcim/device/render_config.html:55 +#: templates/virtualization/virtualmachine/render_config.html:55 msgid "Download" msgstr "Hent" -#: netbox/templates/dcim/device/render_config.html:61 -#: netbox/templates/virtualization/virtualmachine/render_config.html:61 +#: templates/dcim/device/render_config.html:61 +#: templates/virtualization/virtualmachine/render_config.html:61 msgid "No configuration template found" msgstr "Ingen konfigurationsskabelon fundet" -#: netbox/templates/dcim/device_edit.html:44 +#: templates/dcim/device_edit.html:44 msgid "Parent Bay" msgstr "Forældrebugten" -#: netbox/templates/dcim/device_edit.html:48 -#: netbox/utilities/templates/form_helpers/render_field.html:22 +#: templates/dcim/device_edit.html:48 +#: utilities/templates/form_helpers/render_field.html:22 msgid "Regenerate Slug" msgstr "Regenerer slug" -#: netbox/templates/dcim/device_edit.html:49 -#: netbox/templates/generic/bulk_remove.html:21 -#: netbox/utilities/templates/helpers/table_config_form.html:23 +#: templates/dcim/device_edit.html:49 templates/generic/bulk_remove.html:21 +#: utilities/templates/helpers/table_config_form.html:23 msgid "Remove" msgstr "Fjern" -#: netbox/templates/dcim/device_edit.html:110 +#: templates/dcim/device_edit.html:110 msgid "Local Config Context Data" msgstr "Lokale konfigurationskontekstdata" -#: netbox/templates/dcim/device_list.html:82 -#: netbox/templates/dcim/moduletype/component_templates.html:17 -#: netbox/templates/generic/bulk_rename.html:57 -#: netbox/templates/virtualization/virtualmachine/interfaces.html:11 -#: netbox/templates/virtualization/virtualmachine/virtual_disks.html:11 +#: templates/dcim/device_list.html:82 templates/generic/bulk_rename.html:57 +#: templates/virtualization/virtualmachine/interfaces.html:11 +#: templates/virtualization/virtualmachine/virtual_disks.html:11 msgid "Rename" msgstr "Omdøb" -#: netbox/templates/dcim/devicebay.html:17 +#: templates/dcim/devicebay.html:17 msgid "Device Bay" msgstr "Enhedsplads" -#: netbox/templates/dcim/devicebay.html:43 +#: templates/dcim/devicebay.html:43 msgid "Installed Device" msgstr "Installeret enhed" -#: netbox/templates/dcim/devicebay_depopulate.html:6 +#: templates/dcim/devicebay_depopulate.html:6 #, python-format msgid "Remove %(device)s from %(device_bay)s?" msgstr "Fjern %(device)s fra %(device_bay)s?" -#: netbox/templates/dcim/devicebay_depopulate.html:13 +#: templates/dcim/devicebay_depopulate.html:13 #, python-format msgid "" "Are you sure you want to remove %(device)s from " @@ -12600,449 +11909,430 @@ msgstr "" "Er du sikker på, at du vil fjerne %(device)s fra " "%(device_bay)s?" -#: netbox/templates/dcim/devicebay_populate.html:13 +#: templates/dcim/devicebay_populate.html:13 msgid "Populate" msgstr "Befolkning" -#: netbox/templates/dcim/devicebay_populate.html:22 +#: templates/dcim/devicebay_populate.html:22 msgid "Bay" msgstr "Bugt" -#: netbox/templates/dcim/devicerole.html:14 -#: netbox/templates/dcim/platform.html:17 +#: templates/dcim/devicerole.html:14 templates/dcim/platform.html:17 msgid "Add Device" msgstr "Tilføj enhed" -#: netbox/templates/dcim/devicerole.html:40 +#: templates/dcim/devicerole.html:40 msgid "VM Role" msgstr "VM-rolle" -#: netbox/templates/dcim/devicetype.html:18 -#: netbox/templates/dcim/moduletype.html:18 +#: templates/dcim/devicetype.html:18 templates/dcim/moduletype.html:29 msgid "Model Name" msgstr "Modelnavn" -#: netbox/templates/dcim/devicetype.html:25 -#: netbox/templates/dcim/moduletype.html:22 +#: templates/dcim/devicetype.html:25 templates/dcim/moduletype.html:33 msgid "Part Number" msgstr "Varenummer" -#: netbox/templates/dcim/devicetype.html:41 +#: templates/dcim/devicetype.html:41 msgid "Exclude From Utilization" msgstr "Ekskluder fra udnyttelse" -#: netbox/templates/dcim/devicetype.html:59 +#: templates/dcim/devicetype.html:59 msgid "Parent/Child" msgstr "Forælder/barn" -#: netbox/templates/dcim/devicetype.html:71 +#: templates/dcim/devicetype.html:71 msgid "Front Image" msgstr "Frontbillede" -#: netbox/templates/dcim/devicetype.html:83 +#: templates/dcim/devicetype.html:83 msgid "Rear Image" msgstr "Bagbillede" -#: netbox/templates/dcim/frontport.html:54 +#: templates/dcim/frontport.html:54 msgid "Rear Port Position" msgstr "Bageste portposition" -#: netbox/templates/dcim/frontport.html:72 -#: netbox/templates/dcim/interface.html:144 -#: netbox/templates/dcim/poweroutlet.html:63 -#: netbox/templates/dcim/powerport.html:63 -#: netbox/templates/dcim/rearport.html:68 +#: templates/dcim/frontport.html:72 templates/dcim/interface.html:144 +#: templates/dcim/poweroutlet.html:63 templates/dcim/powerport.html:63 +#: templates/dcim/rearport.html:68 msgid "Marked as Connected" msgstr "Markeret som tilsluttet" -#: netbox/templates/dcim/frontport.html:86 -#: netbox/templates/dcim/rearport.html:82 +#: templates/dcim/frontport.html:86 templates/dcim/rearport.html:82 msgid "Connection Status" msgstr "Forbindelsesstatus" -#: netbox/templates/dcim/htmx/cable_edit.html:10 +#: templates/dcim/htmx/cable_edit.html:10 msgid "A Side" msgstr "En side" -#: netbox/templates/dcim/htmx/cable_edit.html:30 +#: templates/dcim/htmx/cable_edit.html:30 msgid "B Side" msgstr "B-side" -#: netbox/templates/dcim/inc/cable_termination.html:65 +#: templates/dcim/inc/cable_termination.html:65 msgid "No termination" msgstr "Ingen opsigelse" -#: netbox/templates/dcim/inc/cable_toggle_buttons.html:3 +#: templates/dcim/inc/cable_toggle_buttons.html:3 msgid "Mark Planned" msgstr "Marker planlagt" -#: netbox/templates/dcim/inc/cable_toggle_buttons.html:6 +#: templates/dcim/inc/cable_toggle_buttons.html:6 msgid "Mark Installed" msgstr "Marker installeret" -#: netbox/templates/dcim/inc/connection_endpoints.html:13 +#: templates/dcim/inc/connection_endpoints.html:13 msgid "Path Status" msgstr "Stistatus" -#: netbox/templates/dcim/inc/connection_endpoints.html:18 +#: templates/dcim/inc/connection_endpoints.html:18 msgid "Not Reachable" msgstr "Ikke tilgængelig" -#: netbox/templates/dcim/inc/connection_endpoints.html:23 +#: templates/dcim/inc/connection_endpoints.html:23 msgid "Path Endpoints" msgstr "Stiendepunkter" -#: netbox/templates/dcim/inc/endpoint_connection.html:8 -#: netbox/templates/dcim/powerfeed.html:120 -#: netbox/templates/dcim/rearport.html:94 +#: templates/dcim/inc/endpoint_connection.html:8 +#: templates/dcim/powerfeed.html:120 templates/dcim/rearport.html:94 msgid "Not connected" msgstr "Ikke tilsluttet" -#: netbox/templates/dcim/inc/interface_vlans_table.html:6 +#: templates/dcim/inc/interface_vlans_table.html:6 msgid "Untagged" msgstr "Umærket" -#: netbox/templates/dcim/inc/interface_vlans_table.html:37 +#: templates/dcim/inc/interface_vlans_table.html:37 msgid "No VLANs Assigned" msgstr "Ingen VLAN'er tildelt" -#: netbox/templates/dcim/inc/interface_vlans_table.html:44 -#: netbox/templates/ipam/prefix_list.html:16 -#: netbox/templates/ipam/prefix_list.html:33 +#: templates/dcim/inc/interface_vlans_table.html:44 +#: templates/ipam/prefix_list.html:16 templates/ipam/prefix_list.html:33 msgid "Clear" msgstr "Klar" -#: netbox/templates/dcim/inc/interface_vlans_table.html:47 +#: templates/dcim/inc/interface_vlans_table.html:47 msgid "Clear All" msgstr "Ryd alle" -#: netbox/templates/dcim/inc/panels/racktype_dimensions.html:38 +#: templates/dcim/inc/panels/racktype_dimensions.html:38 msgid "Mounting Depth" msgstr "Monteringsdybde" -#: netbox/templates/dcim/inc/panels/racktype_numbering.html:6 +#: templates/dcim/inc/panels/racktype_numbering.html:6 msgid "Starting Unit" msgstr "Startenhed" -#: netbox/templates/dcim/inc/panels/racktype_numbering.html:10 +#: templates/dcim/inc/panels/racktype_numbering.html:10 msgid "Descending Units" msgstr "Faldende enheder" -#: netbox/templates/dcim/inc/rack_elevation.html:3 +#: templates/dcim/inc/rack_elevation.html:3 msgid "Rack elevation" msgstr "Rackhøjde" -#: netbox/templates/dcim/interface.html:17 +#: templates/dcim/interface.html:17 msgid "Add Child Interface" msgstr "Tilføj underordnet grænseflade" -#: netbox/templates/dcim/interface.html:50 +#: templates/dcim/interface.html:50 msgid "Speed/Duplex" msgstr "Hastighed/Duplex" -#: netbox/templates/dcim/interface.html:73 +#: templates/dcim/interface.html:73 msgid "PoE Mode" msgstr "PoE-tilstand" -#: netbox/templates/dcim/interface.html:77 +#: templates/dcim/interface.html:77 msgid "PoE Type" msgstr "PoE-type" -#: netbox/templates/dcim/interface.html:81 -#: netbox/templates/virtualization/vminterface.html:63 +#: templates/dcim/interface.html:81 +#: templates/virtualization/vminterface.html:63 msgid "802.1Q Mode" msgstr "802.1Q-tilstand" -#: netbox/templates/dcim/interface.html:125 -#: netbox/templates/virtualization/vminterface.html:59 +#: templates/dcim/interface.html:125 +#: templates/virtualization/vminterface.html:59 msgid "MAC Address" msgstr "MAC-adresse" -#: netbox/templates/dcim/interface.html:151 +#: templates/dcim/interface.html:151 msgid "Wireless Link" msgstr "Trådløs forbindelse" -#: netbox/templates/dcim/interface.html:218 netbox/vpn/choices.py:55 +#: templates/dcim/interface.html:218 vpn/choices.py:55 msgid "Peer" msgstr "jævnaldrende" -#: netbox/templates/dcim/interface.html:230 -#: netbox/templates/wireless/inc/wirelesslink_interface.html:26 +#: templates/dcim/interface.html:230 +#: templates/wireless/inc/wirelesslink_interface.html:26 msgid "Channel" msgstr "Kanal" -#: netbox/templates/dcim/interface.html:239 -#: netbox/templates/wireless/inc/wirelesslink_interface.html:32 +#: templates/dcim/interface.html:239 +#: templates/wireless/inc/wirelesslink_interface.html:32 msgid "Channel Frequency" msgstr "Kanalfrekvens" -#: netbox/templates/dcim/interface.html:242 -#: netbox/templates/dcim/interface.html:250 -#: netbox/templates/dcim/interface.html:261 -#: netbox/templates/dcim/interface.html:269 +#: templates/dcim/interface.html:242 templates/dcim/interface.html:250 +#: templates/dcim/interface.html:261 templates/dcim/interface.html:269 msgid "MHz" msgstr "MHz" -#: netbox/templates/dcim/interface.html:258 -#: netbox/templates/wireless/inc/wirelesslink_interface.html:42 +#: templates/dcim/interface.html:258 +#: templates/wireless/inc/wirelesslink_interface.html:42 msgid "Channel Width" msgstr "Kanalbredde" -#: netbox/templates/dcim/interface.html:285 -#: netbox/templates/wireless/wirelesslan.html:14 -#: netbox/templates/wireless/wirelesslink.html:21 -#: netbox/wireless/forms/bulk_edit.py:60 -#: netbox/wireless/forms/bulk_edit.py:102 -#: netbox/wireless/forms/filtersets.py:40 -#: netbox/wireless/forms/filtersets.py:80 netbox/wireless/models.py:82 -#: netbox/wireless/models.py:156 netbox/wireless/tables/wirelesslan.py:44 +#: templates/dcim/interface.html:285 templates/wireless/wirelesslan.html:14 +#: templates/wireless/wirelesslink.html:21 wireless/forms/bulk_edit.py:60 +#: wireless/forms/bulk_edit.py:102 wireless/forms/filtersets.py:40 +#: wireless/forms/filtersets.py:80 wireless/models.py:82 +#: wireless/models.py:156 wireless/tables/wirelesslan.py:44 msgid "SSID" msgstr "SSID" -#: netbox/templates/dcim/interface.html:305 +#: templates/dcim/interface.html:305 msgid "LAG Members" msgstr "LAG-medlemmer" -#: netbox/templates/dcim/interface.html:323 +#: templates/dcim/interface.html:323 msgid "No member interfaces" msgstr "Ingen medlemsgrænseflader" -#: netbox/templates/dcim/interface.html:343 -#: netbox/templates/ipam/fhrpgroup.html:73 -#: netbox/templates/ipam/iprange/ip_addresses.html:7 -#: netbox/templates/ipam/prefix/ip_addresses.html:7 -#: netbox/templates/virtualization/vminterface.html:89 +#: templates/dcim/interface.html:343 templates/ipam/fhrpgroup.html:73 +#: templates/ipam/iprange/ip_addresses.html:7 +#: templates/ipam/prefix/ip_addresses.html:7 +#: templates/virtualization/vminterface.html:89 msgid "Add IP Address" msgstr "Tilføj IP-adresse" -#: netbox/templates/dcim/inventoryitem.html:24 +#: templates/dcim/inventoryitem.html:24 msgid "Parent Item" msgstr "Overordnet element" -#: netbox/templates/dcim/inventoryitem.html:48 +#: templates/dcim/inventoryitem.html:48 msgid "Part ID" msgstr "Artikel-ID" -#: netbox/templates/dcim/location.html:17 +#: templates/dcim/location.html:17 msgid "Add Child Location" msgstr "Tilføj underordnet placering" -#: netbox/templates/dcim/location.html:77 +#: templates/dcim/location.html:77 msgid "Child Locations" msgstr "Børneplaceringer" -#: netbox/templates/dcim/location.html:81 netbox/templates/dcim/site.html:131 +#: templates/dcim/location.html:81 templates/dcim/site.html:131 msgid "Add a Location" msgstr "Tilføj en placering" -#: netbox/templates/dcim/location.html:94 netbox/templates/dcim/site.html:144 +#: templates/dcim/location.html:94 templates/dcim/site.html:144 msgid "Add a Device" msgstr "Tilføj en enhed" -#: netbox/templates/dcim/manufacturer.html:16 +#: templates/dcim/manufacturer.html:16 msgid "Add Device Type" msgstr "Tilføj enhedstype" -#: netbox/templates/dcim/manufacturer.html:21 +#: templates/dcim/manufacturer.html:21 msgid "Add Module Type" msgstr "Tilføj modultype" -#: netbox/templates/dcim/powerfeed.html:53 +#: templates/dcim/powerfeed.html:53 msgid "Connected Device" msgstr "Tilsluttet enhed" -#: netbox/templates/dcim/powerfeed.html:63 +#: templates/dcim/powerfeed.html:63 msgid "Utilization (Allocated" msgstr "Udnyttelse (allokeret" -#: netbox/templates/dcim/powerfeed.html:80 +#: templates/dcim/powerfeed.html:80 msgid "Electrical Characteristics" msgstr "Elektriske egenskaber" -#: netbox/templates/dcim/powerfeed.html:88 +#: templates/dcim/powerfeed.html:88 msgctxt "Abbreviation for volts" msgid "V" msgstr "V" -#: netbox/templates/dcim/powerfeed.html:92 +#: templates/dcim/powerfeed.html:92 msgctxt "Abbreviation for amperes" msgid "A" msgstr "EN" -#: netbox/templates/dcim/poweroutlet.html:48 +#: templates/dcim/poweroutlet.html:48 msgid "Feed Leg" msgstr "Foderben" -#: netbox/templates/dcim/powerpanel.html:72 +#: templates/dcim/powerpanel.html:72 msgid "Add Power Feeds" msgstr "Tilføj strømforsyninger" -#: netbox/templates/dcim/powerport.html:44 +#: templates/dcim/powerport.html:44 msgid "Maximum Draw" msgstr "Maksimal lodtrækning" -#: netbox/templates/dcim/powerport.html:48 +#: templates/dcim/powerport.html:48 msgid "Allocated Draw" msgstr "Tildelt lodtrækning" -#: netbox/templates/dcim/rack.html:69 +#: templates/dcim/rack.html:69 msgid "Space Utilization" msgstr "Rumudnyttelse" -#: netbox/templates/dcim/rack.html:84 netbox/templates/dcim/racktype.html:44 +#: templates/dcim/rack.html:84 templates/dcim/racktype.html:44 msgid "Rack Weight" msgstr "Rackvægt" -#: netbox/templates/dcim/rack.html:94 netbox/templates/dcim/racktype.html:54 +#: templates/dcim/rack.html:94 templates/dcim/racktype.html:54 msgid "Maximum Weight" msgstr "Maksimal vægt" -#: netbox/templates/dcim/rack.html:104 +#: templates/dcim/rack.html:104 msgid "Total Weight" msgstr "Samlet vægt" -#: netbox/templates/dcim/rack.html:125 -#: netbox/templates/dcim/rack_elevation_list.html:15 +#: templates/dcim/rack.html:125 templates/dcim/rack_elevation_list.html:15 msgid "Images and Labels" msgstr "Billeder og etiketter" -#: netbox/templates/dcim/rack.html:126 -#: netbox/templates/dcim/rack_elevation_list.html:16 +#: templates/dcim/rack.html:126 templates/dcim/rack_elevation_list.html:16 msgid "Images only" msgstr "Kun billeder" -#: netbox/templates/dcim/rack.html:127 -#: netbox/templates/dcim/rack_elevation_list.html:17 +#: templates/dcim/rack.html:127 templates/dcim/rack_elevation_list.html:17 msgid "Labels only" msgstr "Kun etiketter" -#: netbox/templates/dcim/rack/reservations.html:8 +#: templates/dcim/rack/reservations.html:8 msgid "Add reservation" msgstr "Tilføj reservation" -#: netbox/templates/dcim/rack_elevation_list.html:12 +#: templates/dcim/rack_elevation_list.html:12 msgid "View List" msgstr "Vis liste" -#: netbox/templates/dcim/rack_elevation_list.html:14 +#: templates/dcim/rack_elevation_list.html:14 msgid "Select rack view" msgstr "Vælg rackvisning" -#: netbox/templates/dcim/rack_elevation_list.html:25 +#: templates/dcim/rack_elevation_list.html:25 msgid "Sort By" msgstr "Sorter efter" -#: netbox/templates/dcim/rack_elevation_list.html:74 +#: templates/dcim/rack_elevation_list.html:74 msgid "No Racks Found" msgstr "Ingen racker fundet" -#: netbox/templates/dcim/rack_list.html:8 +#: templates/dcim/rack_list.html:8 msgid "View Elevations" msgstr "Se højder" -#: netbox/templates/dcim/rackreservation.html:42 +#: templates/dcim/rackreservation.html:42 msgid "Reservation Details" msgstr "Reservationsoplysninger" -#: netbox/templates/dcim/rackrole.html:10 +#: templates/dcim/rackrole.html:10 msgid "Add Rack" msgstr "Tilføj Rack" -#: netbox/templates/dcim/rearport.html:50 +#: templates/dcim/rearport.html:50 msgid "Positions" msgstr "Positioner" -#: netbox/templates/dcim/region.html:17 -#: netbox/templates/dcim/sitegroup.html:17 +#: templates/dcim/region.html:17 templates/dcim/sitegroup.html:17 msgid "Add Site" msgstr "Tilføj område" -#: netbox/templates/dcim/region.html:55 +#: templates/dcim/region.html:55 msgid "Child Regions" msgstr "Børneregioner" -#: netbox/templates/dcim/region.html:59 +#: templates/dcim/region.html:59 msgid "Add Region" msgstr "Tilføj region" -#: netbox/templates/dcim/site.html:64 +#: templates/dcim/site.html:64 msgid "Time Zone" msgstr "Tidszone" -#: netbox/templates/dcim/site.html:67 +#: templates/dcim/site.html:67 msgid "UTC" msgstr "UTC" -#: netbox/templates/dcim/site.html:68 +#: templates/dcim/site.html:68 msgid "Site time" msgstr "Områdetid" -#: netbox/templates/dcim/site.html:75 +#: templates/dcim/site.html:75 msgid "Physical Address" msgstr "Fysisk adresse" -#: netbox/templates/dcim/site.html:90 +#: templates/dcim/site.html:90 msgid "Shipping Address" msgstr "Leveringsadresse" -#: netbox/templates/dcim/sitegroup.html:55 -#: netbox/templates/tenancy/contactgroup.html:46 -#: netbox/templates/tenancy/tenantgroup.html:55 -#: netbox/templates/wireless/wirelesslangroup.html:55 +#: templates/dcim/sitegroup.html:55 templates/tenancy/contactgroup.html:46 +#: templates/tenancy/tenantgroup.html:55 +#: templates/wireless/wirelesslangroup.html:55 msgid "Child Groups" msgstr "Børnegrupper" -#: netbox/templates/dcim/sitegroup.html:59 +#: templates/dcim/sitegroup.html:59 msgid "Add Site Group" msgstr "Tilføj områdegruppe" -#: netbox/templates/dcim/trace/attachment.html:5 -#: netbox/templates/extras/exporttemplate.html:31 +#: templates/dcim/trace/attachment.html:5 +#: templates/extras/exporttemplate.html:31 msgid "Attachment" msgstr "Vedhæftet fil" -#: netbox/templates/dcim/virtualchassis.html:57 +#: templates/dcim/virtualchassis.html:57 msgid "Add Member" msgstr "Tilføj medlem" -#: netbox/templates/dcim/virtualchassis_add.html:18 +#: templates/dcim/virtualchassis_add.html:18 msgid "Member Devices" msgstr "Medlemsenheder" -#: netbox/templates/dcim/virtualchassis_add_member.html:10 +#: templates/dcim/virtualchassis_add_member.html:10 #, python-format msgid "Add New Member to Virtual Chassis %(virtual_chassis)s" msgstr "Føj nyt medlem til virtuelt kabinet %(virtual_chassis)s" -#: netbox/templates/dcim/virtualchassis_add_member.html:19 +#: templates/dcim/virtualchassis_add_member.html:19 msgid "Add New Member" msgstr "Tilføj nyt medlem" -#: netbox/templates/dcim/virtualchassis_add_member.html:27 -#: netbox/templates/generic/object_edit.html:78 -#: netbox/templates/users/objectpermission.html:31 -#: netbox/users/forms/filtersets.py:67 netbox/users/forms/model_forms.py:312 +#: templates/dcim/virtualchassis_add_member.html:27 +#: templates/generic/object_edit.html:78 +#: templates/users/objectpermission.html:31 users/forms/filtersets.py:67 +#: users/forms/model_forms.py:312 msgid "Actions" msgstr "Handlinger" -#: netbox/templates/dcim/virtualchassis_add_member.html:29 +#: templates/dcim/virtualchassis_add_member.html:29 msgid "Save & Add Another" msgstr "Gem og tilføj en anden" -#: netbox/templates/dcim/virtualchassis_edit.html:7 +#: templates/dcim/virtualchassis_edit.html:7 #, python-format msgid "Editing Virtual Chassis %(name)s" msgstr "Redigering af virtuelt kabinet %(name)s" -#: netbox/templates/dcim/virtualchassis_edit.html:53 +#: templates/dcim/virtualchassis_edit.html:53 msgid "Rack/Unit" msgstr "Rack/enhed" -#: netbox/templates/dcim/virtualchassis_remove_member.html:5 +#: templates/dcim/virtualchassis_remove_member.html:5 msgid "Remove Virtual Chassis Member" msgstr "Fjern Virtual Chassis-medlem" -#: netbox/templates/dcim/virtualchassis_remove_member.html:9 +#: templates/dcim/virtualchassis_remove_member.html:9 #, python-format msgid "" "Are you sure you want to remove %(device)s from virtual " @@ -13051,12 +12341,11 @@ msgstr "" "Er du sikker på, at du vil fjerne %(device)s fra virtuelt " "chassis %(name)s?" -#: netbox/templates/dcim/virtualdevicecontext.html:26 -#: netbox/templates/vpn/l2vpn.html:18 +#: templates/dcim/virtualdevicecontext.html:26 templates/vpn/l2vpn.html:18 msgid "Identifier" msgstr "Identifikator" -#: netbox/templates/exceptions/import_error.html:6 +#: templates/exceptions/import_error.html:6 msgid "" "A module import error occurred during this request. Common causes include " "the following:" @@ -13064,11 +12353,11 @@ msgstr "" "Der opstod en modulimportfejl under denne anmodning. Almindelige årsager " "omfatter følgende:" -#: netbox/templates/exceptions/import_error.html:10 +#: templates/exceptions/import_error.html:10 msgid "Missing required packages" msgstr "Mangler nødvendige pakker" -#: netbox/templates/exceptions/import_error.html:11 +#: templates/exceptions/import_error.html:11 msgid "" "This installation of NetBox might be missing one or more required Python " "packages. These packages are listed in requirements.txt and " @@ -13084,11 +12373,11 @@ msgstr "" "installerede pakker, skal du køre pip frysning fra konsollen og" " sammenlign output med listen over nødvendige pakker." -#: netbox/templates/exceptions/import_error.html:20 +#: templates/exceptions/import_error.html:20 msgid "WSGI service not restarted after upgrade" msgstr "WSGI-tjenesten genstartes ikke efter opgradering" -#: netbox/templates/exceptions/import_error.html:21 +#: templates/exceptions/import_error.html:21 msgid "" "If this installation has recently been upgraded, check that the WSGI service" " (e.g. gunicorn or uWSGI) has been restarted. This ensures that the new code" @@ -13098,7 +12387,7 @@ msgstr "" " at WSGI-tjenesten (f.eks. gunicorn eller uWSGi) er blevet genstartet. Dette" " sikrer, at den nye kode kører." -#: netbox/templates/exceptions/permission_error.html:6 +#: templates/exceptions/permission_error.html:6 msgid "" "A file permission error was detected while processing this request. Common " "causes include the following:" @@ -13106,11 +12395,11 @@ msgstr "" "Der blev registreret en filtilladelsesfejl under behandlingen af denne " "anmodning. Almindelige årsager omfatter følgende:" -#: netbox/templates/exceptions/permission_error.html:10 +#: templates/exceptions/permission_error.html:10 msgid "Insufficient write permission to the media root" msgstr "Utilstrækkelig skrivetilladelse til medieroten" -#: netbox/templates/exceptions/permission_error.html:11 +#: templates/exceptions/permission_error.html:11 #, python-format msgid "" "The configured media root is %(media_root)s. Ensure that the " @@ -13121,7 +12410,7 @@ msgstr "" "brugeren NetBox kører som har adgang til at skrive filer til alle " "placeringer inden for denne sti." -#: netbox/templates/exceptions/programming_error.html:6 +#: templates/exceptions/programming_error.html:6 msgid "" "A database programming error was detected while processing this request. " "Common causes include the following:" @@ -13129,11 +12418,11 @@ msgstr "" "Der blev opdaget en databaseprogrammeringsfejl under behandlingen af denne " "anmodning. Almindelige årsager omfatter følgende:" -#: netbox/templates/exceptions/programming_error.html:10 +#: templates/exceptions/programming_error.html:10 msgid "Database migrations missing" msgstr "Databasemigreringer mangler" -#: netbox/templates/exceptions/programming_error.html:11 +#: templates/exceptions/programming_error.html:11 msgid "" "When upgrading to a new NetBox release, the upgrade script must be run to " "apply any new database migrations. You can run migrations manually by " @@ -13144,11 +12433,11 @@ msgstr "" "manuelt ved at udføre python3 manage.py migrere fra " "kommandolinjen." -#: netbox/templates/exceptions/programming_error.html:18 +#: templates/exceptions/programming_error.html:18 msgid "Unsupported PostgreSQL version" msgstr "Ikke-understøttet PostgreSQL-version" -#: netbox/templates/exceptions/programming_error.html:19 +#: templates/exceptions/programming_error.html:19 msgid "" "Ensure that PostgreSQL version 12 or later is in use. You can check this by " "connecting to the database using NetBox's credentials and issuing a query " @@ -13159,102 +12448,99 @@ msgstr "" "legitimationsoplysninger og sende en forespørgsel til VÆLG VERSION " "()." -#: netbox/templates/extras/configcontext.html:45 -#: netbox/templates/extras/configtemplate.html:37 -#: netbox/templates/extras/exporttemplate.html:51 +#: templates/extras/configcontext.html:45 +#: templates/extras/configtemplate.html:37 +#: templates/extras/exporttemplate.html:51 msgid "The data file associated with this object has been deleted" msgstr "Datafilen, der er knyttet til dette objekt, er blevet slettet" -#: netbox/templates/extras/configcontext.html:54 -#: netbox/templates/extras/configtemplate.html:46 -#: netbox/templates/extras/exporttemplate.html:60 +#: templates/extras/configcontext.html:54 +#: templates/extras/configtemplate.html:46 +#: templates/extras/exporttemplate.html:60 msgid "Data Synced" msgstr "Data synkroniseret" -#: netbox/templates/extras/configcontext_list.html:7 -#: netbox/templates/extras/configtemplate_list.html:7 -#: netbox/templates/extras/exporttemplate_list.html:7 +#: templates/extras/configcontext_list.html:7 +#: templates/extras/configtemplate_list.html:7 +#: templates/extras/exporttemplate_list.html:7 msgid "Sync Data" msgstr "Synkroniser data" -#: netbox/templates/extras/configtemplate.html:56 +#: templates/extras/configtemplate.html:56 msgid "Environment Parameters" msgstr "Miljøparametre" -#: netbox/templates/extras/configtemplate.html:67 -#: netbox/templates/extras/exporttemplate.html:79 +#: templates/extras/configtemplate.html:67 +#: templates/extras/exporttemplate.html:79 msgid "Template" msgstr "Skabelon" -#: netbox/templates/extras/customfield.html:30 -#: netbox/templates/extras/customlink.html:21 +#: templates/extras/customfield.html:30 templates/extras/customlink.html:21 msgid "Group Name" msgstr "Gruppenavn" -#: netbox/templates/extras/customfield.html:42 +#: templates/extras/customfield.html:42 msgid "Must be Unique" msgstr "Skal være unik" -#: netbox/templates/extras/customfield.html:46 +#: templates/extras/customfield.html:46 msgid "Cloneable" msgstr "Klonbar" -#: netbox/templates/extras/customfield.html:56 +#: templates/extras/customfield.html:56 msgid "Default Value" msgstr "Standardværdi" -#: netbox/templates/extras/customfield.html:73 +#: templates/extras/customfield.html:73 msgid "Search Weight" msgstr "Søg Vægt" -#: netbox/templates/extras/customfield.html:83 +#: templates/extras/customfield.html:83 msgid "Filter Logic" msgstr "Filterlogik" -#: netbox/templates/extras/customfield.html:87 +#: templates/extras/customfield.html:87 msgid "Display Weight" msgstr "Skærmvægt" -#: netbox/templates/extras/customfield.html:91 +#: templates/extras/customfield.html:91 msgid "UI Visible" msgstr "Brugergrænseflade Synlig" -#: netbox/templates/extras/customfield.html:95 +#: templates/extras/customfield.html:95 msgid "UI Editable" msgstr "Brugergrænseflade Redigerbar" -#: netbox/templates/extras/customfield.html:115 +#: templates/extras/customfield.html:115 msgid "Validation Rules" msgstr "Valideringsregler" -#: netbox/templates/extras/customfield.html:126 +#: templates/extras/customfield.html:126 msgid "Regular Expression" msgstr "Regelmæssigt udtryk" -#: netbox/templates/extras/customlink.html:29 +#: templates/extras/customlink.html:29 msgid "Button Class" msgstr "Knapklasse" -#: netbox/templates/extras/customlink.html:39 -#: netbox/templates/extras/exporttemplate.html:66 -#: netbox/templates/extras/savedfilter.html:39 +#: templates/extras/customlink.html:39 templates/extras/exporttemplate.html:66 +#: templates/extras/savedfilter.html:39 msgid "Assigned Models" msgstr "Tildelte modeller" -#: netbox/templates/extras/customlink.html:52 +#: templates/extras/customlink.html:52 msgid "Link Text" msgstr "Linktekst" -#: netbox/templates/extras/customlink.html:58 +#: templates/extras/customlink.html:58 msgid "Link URL" msgstr "Link URL" -#: netbox/templates/extras/dashboard/reset.html:4 -#: netbox/templates/home.html:66 +#: templates/extras/dashboard/reset.html:4 templates/home.html:66 msgid "Reset Dashboard" msgstr "Nulstil Dashboard" -#: netbox/templates/extras/dashboard/reset.html:8 +#: templates/extras/dashboard/reset.html:8 msgid "" "This will remove all configured widgets and restore the " "default dashboard configuration." @@ -13262,7 +12548,7 @@ msgstr "" "Dette vil fjerne alle konfigurerede widgets og gendan " "standard instrumentbrætkonfiguration." -#: netbox/templates/extras/dashboard/reset.html:13 +#: templates/extras/dashboard/reset.html:13 msgid "" "This change affects only your dashboard, and will not impact other " "users." @@ -13270,156 +12556,154 @@ msgstr "" "Denne ændring påvirker kun dit dashboard, og vil ikke påvirke andre " "brugere." -#: netbox/templates/extras/dashboard/widget.html:21 +#: templates/extras/dashboard/widget.html:21 msgid "widget configuration" msgstr "widget konfiguration" -#: netbox/templates/extras/dashboard/widget.html:36 +#: templates/extras/dashboard/widget.html:36 msgid "Close widget" msgstr "Luk widget" -#: netbox/templates/extras/dashboard/widget_add.html:7 +#: templates/extras/dashboard/widget_add.html:7 msgid "Add a Widget" msgstr "Tilføj en widget" -#: netbox/templates/extras/dashboard/widgets/bookmarks.html:14 +#: templates/extras/dashboard/widgets/bookmarks.html:14 msgid "No bookmarks have been added yet." msgstr "Der er endnu ikke tilføjet nogen bogmærker." -#: netbox/templates/extras/dashboard/widgets/objectcounts.html:10 +#: templates/extras/dashboard/widgets/objectcounts.html:10 msgid "No permission" msgstr "Ingen tilladelse" -#: netbox/templates/extras/dashboard/widgets/objectlist.html:6 +#: templates/extras/dashboard/widgets/objectlist.html:6 msgid "No permission to view this content" msgstr "Ingen tilladelse til at se dette indhold" -#: netbox/templates/extras/dashboard/widgets/objectlist.html:10 +#: templates/extras/dashboard/widgets/objectlist.html:10 msgid "Unable to load content. Invalid view name" msgstr "Kan ikke indlæse indhold. Ugyldigt visningsnavn" -#: netbox/templates/extras/dashboard/widgets/rssfeed.html:12 +#: templates/extras/dashboard/widgets/rssfeed.html:12 msgid "No content found" msgstr "Intet indhold fundet" -#: netbox/templates/extras/dashboard/widgets/rssfeed.html:18 +#: templates/extras/dashboard/widgets/rssfeed.html:18 msgid "There was a problem fetching the RSS feed" msgstr "Der opstod et problem med at hente RSS-feedet" -#: netbox/templates/extras/dashboard/widgets/rssfeed.html:21 +#: templates/extras/dashboard/widgets/rssfeed.html:21 msgid "HTTP" msgstr "HTTP" -#: netbox/templates/extras/eventrule.html:61 +#: templates/extras/eventrule.html:61 msgid "Conditions" msgstr "Betingelser" -#: netbox/templates/extras/exporttemplate.html:23 +#: templates/extras/exporttemplate.html:23 msgid "MIME Type" msgstr "MIME-type" -#: netbox/templates/extras/exporttemplate.html:27 +#: templates/extras/exporttemplate.html:27 msgid "File Extension" msgstr "Filendelse" -#: netbox/templates/extras/htmx/script_result.html:10 +#: templates/extras/htmx/script_result.html:10 msgid "Scheduled for" msgstr "Planlagt til" -#: netbox/templates/extras/htmx/script_result.html:15 +#: templates/extras/htmx/script_result.html:15 msgid "Duration" msgstr "Varighed" -#: netbox/templates/extras/htmx/script_result.html:23 +#: templates/extras/htmx/script_result.html:23 msgid "Test Summary" msgstr "Testoversigt" -#: netbox/templates/extras/htmx/script_result.html:43 +#: templates/extras/htmx/script_result.html:43 msgid "Log" msgstr "Log" -#: netbox/templates/extras/htmx/script_result.html:56 +#: templates/extras/htmx/script_result.html:56 msgid "Output" msgstr "Udgang" -#: netbox/templates/extras/inc/result_pending.html:4 +#: templates/extras/inc/result_pending.html:4 msgid "Loading" msgstr "Indlæser" -#: netbox/templates/extras/inc/result_pending.html:6 +#: templates/extras/inc/result_pending.html:6 msgid "Results pending" msgstr "Resultater afventende" -#: netbox/templates/extras/journalentry.html:15 +#: templates/extras/journalentry.html:15 msgid "Journal Entry" msgstr "Journalindtastning" -#: netbox/templates/extras/notificationgroup.html:11 +#: templates/extras/notificationgroup.html:11 msgid "Notification Group" msgstr "Meddelelsesgruppe" -#: netbox/templates/extras/notificationgroup.html:36 -#: netbox/templates/extras/notificationgroup.html:46 -#: netbox/utilities/templates/widgets/clearable_file_input.html:12 +#: templates/extras/notificationgroup.html:36 +#: templates/extras/notificationgroup.html:46 +#: utilities/templates/widgets/clearable_file_input.html:12 msgid "None assigned" msgstr "Ingen tildelt" -#: netbox/templates/extras/object_configcontext.html:19 +#: templates/extras/object_configcontext.html:19 msgid "The local config context overwrites all source contexts" msgstr "Den lokale konfigurationskontekst overskriver alle kildekontekster" -#: netbox/templates/extras/object_configcontext.html:25 +#: templates/extras/object_configcontext.html:25 msgid "Source Contexts" msgstr "Kildekontekster" -#: netbox/templates/extras/object_journal.html:17 +#: templates/extras/object_journal.html:17 msgid "New Journal Entry" msgstr "Ny journalpost" -#: netbox/templates/extras/report/base.html:30 +#: templates/extras/report/base.html:30 msgid "Report" msgstr "Rapport" -#: netbox/templates/extras/script.html:14 +#: templates/extras/script.html:14 msgid "You do not have permission to run scripts" msgstr "Du har ikke tilladelse til at køre scripts" -#: netbox/templates/extras/script.html:41 -#: netbox/templates/extras/script.html:45 -#: netbox/templates/extras/script_list.html:86 +#: templates/extras/script.html:41 templates/extras/script.html:45 +#: templates/extras/script_list.html:86 msgid "Run Script" msgstr "Kør script" -#: netbox/templates/extras/script.html:51 -#: netbox/templates/extras/script/source.html:10 +#: templates/extras/script.html:51 templates/extras/script/source.html:10 msgid "Error loading script" msgstr "Fejl ved indlæsning af script" -#: netbox/templates/extras/script/jobs.html:16 +#: templates/extras/script/jobs.html:16 msgid "Script no longer exists in the source file." msgstr "Script findes ikke længere i kildefilen." -#: netbox/templates/extras/script_list.html:46 +#: templates/extras/script_list.html:46 msgid "Last Run" msgstr "Sidste løb" -#: netbox/templates/extras/script_list.html:61 +#: templates/extras/script_list.html:61 msgid "Script is no longer present in the source file" msgstr "Script findes ikke længere i kildefilen" -#: netbox/templates/extras/script_list.html:74 +#: templates/extras/script_list.html:74 msgid "Never" msgstr "Aldrig" -#: netbox/templates/extras/script_list.html:84 +#: templates/extras/script_list.html:84 msgid "Run Again" msgstr "Kør igen" -#: netbox/templates/extras/script_list.html:138 +#: templates/extras/script_list.html:138 msgid "No Scripts Found" msgstr "Ingen scripts fundet" -#: netbox/templates/extras/script_list.html:141 +#: templates/extras/script_list.html:141 #, python-format msgid "" "Get started by creating a script from " @@ -13428,83 +12712,81 @@ msgstr "" "Kom i gang med Oprettelse af et script" " fra en uploadet fil eller datakilde." -#: netbox/templates/extras/script_result.html:35 -#: netbox/templates/generic/object_list.html:50 -#: netbox/templates/search.html:13 +#: templates/extras/script_result.html:35 +#: templates/generic/object_list.html:50 templates/search.html:13 msgid "Results" msgstr "Resultater" -#: netbox/templates/extras/script_result.html:46 +#: templates/extras/script_result.html:46 msgid "Log threshold" msgstr "Logtærskel" -#: netbox/templates/extras/script_result.html:56 +#: templates/extras/script_result.html:56 msgid "All" msgstr "Alle" -#: netbox/templates/extras/tag.html:32 +#: templates/extras/tag.html:32 msgid "Tagged Items" msgstr "Mærkede varer" -#: netbox/templates/extras/tag.html:43 +#: templates/extras/tag.html:43 msgid "Allowed Object Types" msgstr "Tilladte objekttyper" -#: netbox/templates/extras/tag.html:51 +#: templates/extras/tag.html:51 msgid "Any" msgstr "Enhver" -#: netbox/templates/extras/tag.html:57 +#: templates/extras/tag.html:57 msgid "Tagged Item Types" msgstr "Mærkede varetyper" -#: netbox/templates/extras/tag.html:81 +#: templates/extras/tag.html:81 msgid "Tagged Objects" msgstr "Mærkede objekter" -#: netbox/templates/extras/webhook.html:26 +#: templates/extras/webhook.html:26 msgid "HTTP Method" msgstr "HTTP-metode" -#: netbox/templates/extras/webhook.html:34 +#: templates/extras/webhook.html:34 msgid "HTTP Content Type" msgstr "HTTP-indholdstype" -#: netbox/templates/extras/webhook.html:47 +#: templates/extras/webhook.html:47 msgid "SSL Verification" msgstr "SSL Bekræftelse" -#: netbox/templates/extras/webhook.html:60 +#: templates/extras/webhook.html:60 msgid "Additional Headers" msgstr "Yderligere overskrifter" -#: netbox/templates/extras/webhook.html:70 +#: templates/extras/webhook.html:70 msgid "Body Template" msgstr "Kropsskabelon" -#: netbox/templates/generic/bulk_add_component.html:29 +#: templates/generic/bulk_add_component.html:29 msgid "Bulk Creation" msgstr "Masseoprettelse" -#: netbox/templates/generic/bulk_add_component.html:34 -#: netbox/templates/generic/bulk_delete.html:32 -#: netbox/templates/generic/bulk_edit.html:33 +#: templates/generic/bulk_add_component.html:34 +#: templates/generic/bulk_delete.html:32 templates/generic/bulk_edit.html:33 msgid "Selected Objects" msgstr "Markerede objekter" -#: netbox/templates/generic/bulk_add_component.html:58 +#: templates/generic/bulk_add_component.html:58 msgid "to Add" msgstr "at tilføje" -#: netbox/templates/generic/bulk_delete.html:27 +#: templates/generic/bulk_delete.html:27 msgid "Bulk Delete" msgstr "Massesletning" -#: netbox/templates/generic/bulk_delete.html:49 +#: templates/generic/bulk_delete.html:49 msgid "Confirm Bulk Deletion" msgstr "Bekræft massesletning" -#: netbox/templates/generic/bulk_delete.html:50 +#: templates/generic/bulk_delete.html:50 #, python-format msgid "" "The following operation will delete %(count)s " @@ -13514,68 +12796,65 @@ msgstr "" "Følgende handling slettes %(count)s %(type_plural)s. " "Gennemgå omhyggeligt de valgte objekter og bekræft denne handling." -#: netbox/templates/generic/bulk_edit.html:21 -#: netbox/templates/generic/object_edit.html:22 +#: templates/generic/bulk_edit.html:21 templates/generic/object_edit.html:22 msgid "Editing" msgstr "Redigering" -#: netbox/templates/generic/bulk_edit.html:28 +#: templates/generic/bulk_edit.html:28 msgid "Bulk Edit" msgstr "Masseredigering" -#: netbox/templates/generic/bulk_edit.html:107 -#: netbox/templates/generic/bulk_rename.html:66 +#: templates/generic/bulk_edit.html:107 templates/generic/bulk_rename.html:66 msgid "Apply" msgstr "Anvend" -#: netbox/templates/generic/bulk_import.html:19 +#: templates/generic/bulk_import.html:19 msgid "Bulk Import" msgstr "Masseimport" -#: netbox/templates/generic/bulk_import.html:25 +#: templates/generic/bulk_import.html:25 msgid "Direct Import" msgstr "Direkte import" -#: netbox/templates/generic/bulk_import.html:30 +#: templates/generic/bulk_import.html:30 msgid "Upload File" msgstr "Upload fil" -#: netbox/templates/generic/bulk_import.html:58 -#: netbox/templates/generic/bulk_import.html:80 -#: netbox/templates/generic/bulk_import.html:102 +#: templates/generic/bulk_import.html:58 templates/generic/bulk_import.html:80 +#: templates/generic/bulk_import.html:102 msgid "Submit" msgstr "Indsend" -#: netbox/templates/generic/bulk_import.html:113 +#: templates/generic/bulk_import.html:113 msgid "Field Options" msgstr "Feltindstillinger" -#: netbox/templates/generic/bulk_import.html:119 +#: templates/generic/bulk_import.html:119 msgid "Accessor" msgstr "Tilbehør" -#: netbox/templates/generic/bulk_import.html:148 +#: templates/generic/bulk_import.html:148 msgid "choices" msgstr "valg" -#: netbox/templates/generic/bulk_import.html:161 +#: templates/generic/bulk_import.html:161 msgid "Import Value" msgstr "Importværdi" -#: netbox/templates/generic/bulk_import.html:181 +#: templates/generic/bulk_import.html:181 msgid "Format: YYYY-MM-DD" msgstr "Format: ÅÅÅÅ-MM-DD" -#: netbox/templates/generic/bulk_import.html:183 +#: templates/generic/bulk_import.html:183 msgid "Specify true or false" msgstr "Angiv sandt eller falsk" -#: netbox/templates/generic/bulk_import.html:195 +#: templates/generic/bulk_import.html:195 msgid "Required fields must be specified for all objects." msgstr "" "Obligatoriske felter skal specificeres for alle objekter." -#: netbox/templates/generic/bulk_import.html:201 +#: templates/generic/bulk_import.html:201 #, python-format msgid "" "Related objects may be referenced by any unique attribute. For example, " @@ -13585,15 +12864,15 @@ msgstr "" " For eksempel %(example)s ville identificere en VRF ved dens " "ruteadskillelse." -#: netbox/templates/generic/bulk_remove.html:28 +#: templates/generic/bulk_remove.html:28 msgid "Bulk Remove" msgstr "Massefjernelse" -#: netbox/templates/generic/bulk_remove.html:42 +#: templates/generic/bulk_remove.html:42 msgid "Confirm Bulk Removal" msgstr "Bekræft massefjernelse" -#: netbox/templates/generic/bulk_remove.html:43 +#: templates/generic/bulk_remove.html:43 #, python-format msgid "" "The following operation will remove %(count)s %(obj_type_plural)s from " @@ -13604,72 +12883,72 @@ msgstr "" "%(parent_obj)s. Gennemgå venligst omhyggeligt %(obj_type_plural)s skal " "fjernes og bekræftes nedenfor." -#: netbox/templates/generic/bulk_remove.html:64 +#: templates/generic/bulk_remove.html:64 #, python-format msgid "Remove these %(count)s %(obj_type_plural)s" msgstr "Fjern disse %(count)s %(obj_type_plural)s" -#: netbox/templates/generic/bulk_rename.html:20 +#: templates/generic/bulk_rename.html:20 msgid "Renaming" msgstr "Omdøbning" -#: netbox/templates/generic/bulk_rename.html:27 +#: templates/generic/bulk_rename.html:27 msgid "Bulk Rename" msgstr "Masseomdøb" -#: netbox/templates/generic/bulk_rename.html:39 +#: templates/generic/bulk_rename.html:39 msgid "Current Name" msgstr "Nuværende navn" -#: netbox/templates/generic/bulk_rename.html:40 +#: templates/generic/bulk_rename.html:40 msgid "New Name" msgstr "Nyt navn" -#: netbox/templates/generic/bulk_rename.html:64 -#: netbox/utilities/templates/widgets/markdown_input.html:11 +#: templates/generic/bulk_rename.html:64 +#: utilities/templates/widgets/markdown_input.html:11 msgid "Preview" msgstr "Forhåndsvisning" -#: netbox/templates/generic/confirmation_form.html:16 +#: templates/generic/confirmation_form.html:16 msgid "Are you sure" msgstr "Er du sikker" -#: netbox/templates/generic/confirmation_form.html:20 +#: templates/generic/confirmation_form.html:20 msgid "Confirm" msgstr "Bekræft" -#: netbox/templates/generic/object_children.html:47 -#: netbox/utilities/templates/buttons/bulk_edit.html:4 +#: templates/generic/object_children.html:47 +#: utilities/templates/buttons/bulk_edit.html:4 msgid "Edit Selected" msgstr "Rediger markeret" -#: netbox/templates/generic/object_children.html:61 -#: netbox/utilities/templates/buttons/bulk_delete.html:4 +#: templates/generic/object_children.html:61 +#: utilities/templates/buttons/bulk_delete.html:4 msgid "Delete Selected" msgstr "Slet markeret" -#: netbox/templates/generic/object_edit.html:24 +#: templates/generic/object_edit.html:24 #, python-format msgid "Add a new %(object_type)s" msgstr "Tilføj en ny %(object_type)s" -#: netbox/templates/generic/object_edit.html:35 +#: templates/generic/object_edit.html:35 msgid "View model documentation" msgstr "Se modeldokumentation" -#: netbox/templates/generic/object_edit.html:36 +#: templates/generic/object_edit.html:36 msgid "Help" msgstr "Hjælp" -#: netbox/templates/generic/object_edit.html:83 +#: templates/generic/object_edit.html:83 msgid "Create & Add Another" msgstr "Opret og tilføj en anden" -#: netbox/templates/generic/object_list.html:57 +#: templates/generic/object_list.html:57 msgid "Filters" msgstr "Filtre" -#: netbox/templates/generic/object_list.html:88 +#: templates/generic/object_list.html:88 #, python-format msgid "" "Select all %(count)s " @@ -13678,40 +12957,40 @@ msgstr "" "Vælg alle %(count)s " "%(object_type_plural)s matchende forespørgsel" -#: netbox/templates/home.html:15 +#: templates/home.html:15 msgid "New Release Available" msgstr "Ny udgivelse tilgængelig" -#: netbox/templates/home.html:16 +#: templates/home.html:16 msgid "is available" msgstr "er tilgængelig" -#: netbox/templates/home.html:18 +#: templates/home.html:18 msgctxt "Document title" msgid "Upgrade Instructions" msgstr "Opgraderingsinstruktioner" -#: netbox/templates/home.html:40 +#: templates/home.html:40 msgid "Unlock Dashboard" msgstr "Lås instrumentbrættet op" -#: netbox/templates/home.html:49 +#: templates/home.html:49 msgid "Lock Dashboard" msgstr "Lås instrumentbrættet" -#: netbox/templates/home.html:60 +#: templates/home.html:60 msgid "Add Widget" msgstr "Tilføj widget" -#: netbox/templates/home.html:63 +#: templates/home.html:63 msgid "Save Layout" msgstr "Gem layout" -#: netbox/templates/htmx/delete_form.html:7 +#: templates/htmx/delete_form.html:7 msgid "Confirm Deletion" msgstr "Bekræft sletning" -#: netbox/templates/htmx/delete_form.html:11 +#: templates/htmx/delete_form.html:11 #, python-format msgid "" "Are you sure you want to delete " @@ -13720,40 +12999,40 @@ msgstr "" "Er du sikker på, at du vil slet " "%(object_type)s %(object)s?" -#: netbox/templates/htmx/delete_form.html:17 +#: templates/htmx/delete_form.html:17 msgid "The following objects will be deleted as a result of this action." msgstr "Følgende objekter slettes som følge af denne handling." -#: netbox/templates/htmx/notifications.html:15 +#: templates/htmx/notifications.html:15 msgid "ago" msgstr "siden" -#: netbox/templates/htmx/notifications.html:26 +#: templates/htmx/notifications.html:26 msgid "No unread notifications" msgstr "Ingen ulæste meddelelser" -#: netbox/templates/htmx/notifications.html:31 +#: templates/htmx/notifications.html:31 msgid "All notifications" msgstr "Alle notifikationer" -#: netbox/templates/htmx/object_selector.html:5 +#: templates/htmx/object_selector.html:5 msgid "Select" msgstr "Vælg" -#: netbox/templates/inc/filter_list.html:42 -#: netbox/utilities/templates/helpers/table_config_form.html:39 +#: templates/inc/filter_list.html:43 +#: utilities/templates/helpers/table_config_form.html:39 msgid "Reset" msgstr "Nulstil" -#: netbox/templates/inc/light_toggle.html:4 +#: templates/inc/light_toggle.html:4 msgid "Enable dark mode" msgstr "Aktivér mørk tilstand" -#: netbox/templates/inc/light_toggle.html:7 +#: templates/inc/light_toggle.html:7 msgid "Enable light mode" msgstr "Aktivér lystilstand" -#: netbox/templates/inc/missing_prerequisites.html:8 +#: templates/inc/missing_prerequisites.html:8 #, python-format msgid "" "Before you can add a %(model)s you must first create a " @@ -13762,283 +13041,281 @@ msgstr "" "Før du kan tilføje en %(model)s Du skal først oprette en " "%(prerequisite_model)s." -#: netbox/templates/inc/paginator.html:15 +#: templates/inc/paginator.html:15 msgid "Page selection" msgstr "Valg af side" -#: netbox/templates/inc/paginator.html:75 +#: templates/inc/paginator.html:75 #, python-format msgid "Showing %(start)s-%(end)s of %(total)s" msgstr "udviser %(start)s-%(end)s af %(total)s" -#: netbox/templates/inc/paginator.html:82 +#: templates/inc/paginator.html:82 msgid "Pagination options" msgstr "Pagineringsindstillinger" -#: netbox/templates/inc/paginator.html:86 +#: templates/inc/paginator.html:86 msgid "Per Page" msgstr "Per side" -#: netbox/templates/inc/panels/image_attachments.html:10 +#: templates/inc/panels/image_attachments.html:10 msgid "Attach an image" msgstr "Vedhæft et billede" -#: netbox/templates/inc/panels/related_objects.html:5 +#: templates/inc/panels/related_objects.html:5 msgid "Related Objects" msgstr "Relaterede objekter" -#: netbox/templates/inc/panels/tags.html:11 +#: templates/inc/panels/tags.html:11 msgid "No tags assigned" msgstr "Ingen tags tildelt" -#: netbox/templates/inc/sync_warning.html:10 +#: templates/inc/sync_warning.html:10 msgid "Data is out of sync with upstream file" msgstr "Data er ude af synkronisering med opstrømsfilen" -#: netbox/templates/inc/table_controls_htmx.html:7 +#: templates/inc/table_controls_htmx.html:7 msgid "Quick search" msgstr "Hurtig søgning" -#: netbox/templates/inc/table_controls_htmx.html:20 +#: templates/inc/table_controls_htmx.html:20 msgid "Saved filter" msgstr "Gemt filter" -#: netbox/templates/inc/table_htmx.html:18 +#: templates/inc/table_htmx.html:18 msgid "Clear ordering" msgstr "Klar bestilling" -#: netbox/templates/inc/user_menu.html:6 +#: templates/inc/user_menu.html:6 msgid "Help center" msgstr "Hjælpecenter" -#: netbox/templates/inc/user_menu.html:41 +#: templates/inc/user_menu.html:41 msgid "Django Admin" msgstr "Django Admin" -#: netbox/templates/inc/user_menu.html:61 +#: templates/inc/user_menu.html:61 msgid "Log Out" msgstr "Log ud" -#: netbox/templates/inc/user_menu.html:68 netbox/templates/login.html:38 +#: templates/inc/user_menu.html:68 templates/login.html:38 msgid "Log In" msgstr "Log ind" -#: netbox/templates/ipam/aggregate.html:14 -#: netbox/templates/ipam/ipaddress.html:14 -#: netbox/templates/ipam/iprange.html:13 netbox/templates/ipam/prefix.html:15 +#: templates/ipam/aggregate.html:14 templates/ipam/ipaddress.html:14 +#: templates/ipam/iprange.html:13 templates/ipam/prefix.html:15 msgid "Family" msgstr "Familie" -#: netbox/templates/ipam/aggregate.html:39 +#: templates/ipam/aggregate.html:39 msgid "Date Added" msgstr "Dato tilføjet" -#: netbox/templates/ipam/aggregate/prefixes.html:8 -#: netbox/templates/ipam/prefix/prefixes.html:8 -#: netbox/templates/ipam/role.html:10 +#: templates/ipam/aggregate/prefixes.html:8 +#: templates/ipam/prefix/prefixes.html:8 templates/ipam/role.html:10 msgid "Add Prefix" msgstr "Tilføj præfiks" -#: netbox/templates/ipam/asn.html:23 +#: templates/ipam/asn.html:23 msgid "AS Number" msgstr "AS-nummer" -#: netbox/templates/ipam/fhrpgroup.html:52 +#: templates/ipam/fhrpgroup.html:52 msgid "Authentication Type" msgstr "Autentificeringstype" -#: netbox/templates/ipam/fhrpgroup.html:56 +#: templates/ipam/fhrpgroup.html:56 msgid "Authentication Key" msgstr "Autentificeringsnøgle" -#: netbox/templates/ipam/fhrpgroup.html:69 +#: templates/ipam/fhrpgroup.html:69 msgid "Virtual IP Addresses" msgstr "Virtuelle IP-adresser" -#: netbox/templates/ipam/inc/ipaddress_edit_header.html:13 +#: templates/ipam/inc/ipaddress_edit_header.html:13 msgid "Assign IP" msgstr "Tildel IP" -#: netbox/templates/ipam/inc/ipaddress_edit_header.html:19 +#: templates/ipam/inc/ipaddress_edit_header.html:19 msgid "Bulk Create" msgstr "Masseoprettelse" -#: netbox/templates/ipam/inc/panels/fhrp_groups.html:10 +#: templates/ipam/inc/panels/fhrp_groups.html:10 msgid "Create Group" msgstr "Opret gruppe" -#: netbox/templates/ipam/inc/panels/fhrp_groups.html:25 +#: templates/ipam/inc/panels/fhrp_groups.html:25 msgid "Virtual IPs" msgstr "Virtuelle IP'er" -#: netbox/templates/ipam/inc/toggle_available.html:7 +#: templates/ipam/inc/toggle_available.html:7 msgid "Show Assigned" msgstr "Vis tildelt" -#: netbox/templates/ipam/inc/toggle_available.html:10 +#: templates/ipam/inc/toggle_available.html:10 msgid "Show Available" msgstr "Vis tilgængelig" -#: netbox/templates/ipam/inc/toggle_available.html:13 +#: templates/ipam/inc/toggle_available.html:13 msgid "Show All" msgstr "Vis alle" -#: netbox/templates/ipam/ipaddress.html:23 -#: netbox/templates/ipam/iprange.html:45 netbox/templates/ipam/prefix.html:24 +#: templates/ipam/ipaddress.html:23 templates/ipam/iprange.html:45 +#: templates/ipam/prefix.html:24 msgid "Global" msgstr "Globalt" -#: netbox/templates/ipam/ipaddress.html:85 +#: templates/ipam/ipaddress.html:85 msgid "NAT (outside)" msgstr "NAT (udenfor)" -#: netbox/templates/ipam/ipaddress_assign.html:8 +#: templates/ipam/ipaddress_assign.html:8 msgid "Assign an IP Address" msgstr "Tildel en IP-adresse" -#: netbox/templates/ipam/ipaddress_assign.html:22 +#: templates/ipam/ipaddress_assign.html:22 msgid "Select IP Address" msgstr "Vælg IP-adresse" -#: netbox/templates/ipam/ipaddress_assign.html:35 +#: templates/ipam/ipaddress_assign.html:35 msgid "Search Results" msgstr "Søgeresultater" -#: netbox/templates/ipam/ipaddress_bulk_add.html:6 +#: templates/ipam/ipaddress_bulk_add.html:6 msgid "Bulk Add IP Addresses" msgstr "Massetilføjelse af IP-adresser" -#: netbox/templates/ipam/iprange.html:17 +#: templates/ipam/iprange.html:17 msgid "Starting Address" msgstr "Startadresse" -#: netbox/templates/ipam/iprange.html:21 +#: templates/ipam/iprange.html:21 msgid "Ending Address" msgstr "Slutadresse" -#: netbox/templates/ipam/iprange.html:33 netbox/templates/ipam/prefix.html:110 +#: templates/ipam/iprange.html:33 templates/ipam/prefix.html:110 msgid "Marked fully utilized" msgstr "Markeret fuldt udnyttet" -#: netbox/templates/ipam/prefix.html:99 +#: templates/ipam/prefix.html:99 msgid "Addressing Details" msgstr "Adresseringsoplysninger" -#: netbox/templates/ipam/prefix.html:118 +#: templates/ipam/prefix.html:118 msgid "Child IPs" msgstr "Børne-IP'er" -#: netbox/templates/ipam/prefix.html:126 +#: templates/ipam/prefix.html:126 msgid "Available IPs" msgstr "Tilgængelige IP'er" -#: netbox/templates/ipam/prefix.html:138 +#: templates/ipam/prefix.html:138 msgid "First available IP" msgstr "Første tilgængelige IP" -#: netbox/templates/ipam/prefix.html:179 +#: templates/ipam/prefix.html:179 msgid "Prefix Details" msgstr "Præfiksdetaljer" -#: netbox/templates/ipam/prefix.html:185 +#: templates/ipam/prefix.html:185 msgid "Network Address" msgstr "Netværksadresse" -#: netbox/templates/ipam/prefix.html:189 +#: templates/ipam/prefix.html:189 msgid "Network Mask" msgstr "Netværksmaske" -#: netbox/templates/ipam/prefix.html:193 +#: templates/ipam/prefix.html:193 msgid "Wildcard Mask" msgstr "Jokertegnmaske" -#: netbox/templates/ipam/prefix.html:197 +#: templates/ipam/prefix.html:197 msgid "Broadcast Address" msgstr "Broadcast-adresse" -#: netbox/templates/ipam/prefix/ip_ranges.html:7 +#: templates/ipam/prefix/ip_ranges.html:7 msgid "Add IP Range" msgstr "Tilføj IP-rækkevidde" -#: netbox/templates/ipam/prefix_list.html:7 +#: templates/ipam/prefix_list.html:7 msgid "Hide Depth Indicators" msgstr "Skjul dybdeindikatorer" -#: netbox/templates/ipam/prefix_list.html:11 +#: templates/ipam/prefix_list.html:11 msgid "Max Depth" msgstr "Maks. Dybde" -#: netbox/templates/ipam/prefix_list.html:28 +#: templates/ipam/prefix_list.html:28 msgid "Max Length" msgstr "Maks. Længde" -#: netbox/templates/ipam/rir.html:10 +#: templates/ipam/rir.html:10 msgid "Add Aggregate" msgstr "Tilføj aggregat" -#: netbox/templates/ipam/routetarget.html:38 +#: templates/ipam/routetarget.html:38 msgid "Importing VRFs" msgstr "Importere VRF'er" -#: netbox/templates/ipam/routetarget.html:44 +#: templates/ipam/routetarget.html:44 msgid "Exporting VRFs" msgstr "Eksport af VRF'er" -#: netbox/templates/ipam/routetarget.html:52 +#: templates/ipam/routetarget.html:52 msgid "Importing L2VPNs" msgstr "Import af L2VPN'er" -#: netbox/templates/ipam/routetarget.html:58 +#: templates/ipam/routetarget.html:58 msgid "Exporting L2VPNs" msgstr "Eksport af L2VPN'er" -#: netbox/templates/ipam/vlan.html:88 +#: templates/ipam/vlan.html:88 msgid "Add a Prefix" msgstr "Tilføj et præfiks" -#: netbox/templates/ipam/vlangroup.html:18 +#: templates/ipam/vlangroup.html:18 msgid "Add VLAN" msgstr "Tilføj VLAN" -#: netbox/templates/ipam/vrf.html:16 +#: templates/ipam/vrf.html:16 msgid "Route Distinguisher" msgstr "Ruteadskillelse" -#: netbox/templates/ipam/vrf.html:29 +#: templates/ipam/vrf.html:29 msgid "Unique IP Space" msgstr "Unik IP-plads" -#: netbox/templates/login.html:29 -#: netbox/utilities/templates/form_helpers/render_errors.html:7 +#: templates/login.html:29 +#: utilities/templates/form_helpers/render_errors.html:7 msgid "Errors" msgstr "Fejl" -#: netbox/templates/login.html:69 +#: templates/login.html:69 msgid "Sign In" msgstr "Log ind" -#: netbox/templates/login.html:77 +#: templates/login.html:77 msgctxt "Denotes an alternative option" msgid "Or" msgstr "Eller" -#: netbox/templates/media_failure.html:7 +#: templates/media_failure.html:7 msgid "Static Media Failure - NetBox" msgstr "Statisk mediefejl - NetBox" -#: netbox/templates/media_failure.html:21 +#: templates/media_failure.html:21 msgid "Static Media Failure" msgstr "Statisk mediefejl" -#: netbox/templates/media_failure.html:23 +#: templates/media_failure.html:23 msgid "The following static media file failed to load" msgstr "Følgende statiske mediefil kunne ikke indlæses" -#: netbox/templates/media_failure.html:26 +#: templates/media_failure.html:26 msgid "Check the following" msgstr "Kontroller følgende" -#: netbox/templates/media_failure.html:29 +#: templates/media_failure.html:29 msgid "" "manage.py collectstatic was run during the most recent upgrade." " This installs the most recent iteration of each static file into the static" @@ -14048,7 +13325,7 @@ msgstr "" "opgradering. Dette installerer den seneste iteration af hver statisk fil i " "den statiske rodsti." -#: netbox/templates/media_failure.html:35 +#: templates/media_failure.html:35 #, python-format msgid "" "The HTTP service (e.g. nginx or Apache) is configured to serve files from " @@ -14060,7 +13337,7 @@ msgstr "" "href=\"%(docs_url)s\">installationsdokumentationen for yderligere " "vejledning." -#: netbox/templates/media_failure.html:47 +#: templates/media_failure.html:47 #, python-format msgid "" "The file %(filename)s exists in the static root directory and " @@ -14069,566 +13346,547 @@ msgstr "" "Filen %(filename)s findes i den statiske rodmappe og kan læses " "af HTTP-serveren." -#: netbox/templates/media_failure.html:55 +#: templates/media_failure.html:55 #, python-format msgid "Click here to attempt loading NetBox again." msgstr "" "Klik her for at forsøge at indlæse NetBox igen." -#: netbox/templates/tenancy/contact.html:18 netbox/tenancy/filtersets.py:147 -#: netbox/tenancy/forms/bulk_edit.py:137 -#: netbox/tenancy/forms/filtersets.py:102 netbox/tenancy/forms/forms.py:56 -#: netbox/tenancy/forms/model_forms.py:106 -#: netbox/tenancy/forms/model_forms.py:130 -#: netbox/tenancy/tables/contacts.py:98 +#: templates/tenancy/contact.html:18 tenancy/filtersets.py:147 +#: tenancy/forms/bulk_edit.py:137 tenancy/forms/filtersets.py:102 +#: tenancy/forms/forms.py:56 tenancy/forms/model_forms.py:106 +#: tenancy/forms/model_forms.py:130 tenancy/tables/contacts.py:98 msgid "Contact" msgstr "Kontakt" -#: netbox/templates/tenancy/contact.html:29 -#: netbox/tenancy/forms/bulk_edit.py:99 +#: templates/tenancy/contact.html:29 tenancy/forms/bulk_edit.py:99 msgid "Title" msgstr "Titel" -#: netbox/templates/tenancy/contact.html:33 -#: netbox/tenancy/forms/bulk_edit.py:104 netbox/tenancy/tables/contacts.py:64 +#: templates/tenancy/contact.html:33 tenancy/forms/bulk_edit.py:104 +#: tenancy/tables/contacts.py:64 msgid "Phone" msgstr "Telefonen" -#: netbox/templates/tenancy/contactgroup.html:18 -#: netbox/tenancy/forms/forms.py:66 netbox/tenancy/forms/model_forms.py:75 +#: templates/tenancy/contactgroup.html:18 tenancy/forms/forms.py:66 +#: tenancy/forms/model_forms.py:75 msgid "Contact Group" msgstr "Kontaktgruppe" -#: netbox/templates/tenancy/contactgroup.html:50 +#: templates/tenancy/contactgroup.html:50 msgid "Add Contact Group" msgstr "Tilføj kontaktgruppe" -#: netbox/templates/tenancy/contactrole.html:15 -#: netbox/tenancy/filtersets.py:152 netbox/tenancy/forms/forms.py:61 -#: netbox/tenancy/forms/model_forms.py:87 +#: templates/tenancy/contactrole.html:15 tenancy/filtersets.py:152 +#: tenancy/forms/forms.py:61 tenancy/forms/model_forms.py:87 msgid "Contact Role" msgstr "Kontaktrolle" -#: netbox/templates/tenancy/object_contacts.html:9 +#: templates/tenancy/object_contacts.html:9 msgid "Add a contact" msgstr "Tilføj en kontakt" -#: netbox/templates/tenancy/tenantgroup.html:17 +#: templates/tenancy/tenantgroup.html:17 msgid "Add Tenant" msgstr "Tilføj lejer" -#: netbox/templates/tenancy/tenantgroup.html:26 -#: netbox/tenancy/forms/model_forms.py:32 netbox/tenancy/tables/columns.py:51 -#: netbox/tenancy/tables/columns.py:61 +#: templates/tenancy/tenantgroup.html:26 tenancy/forms/model_forms.py:32 +#: tenancy/tables/columns.py:51 tenancy/tables/columns.py:61 msgid "Tenant Group" msgstr "Lejergruppe" -#: netbox/templates/tenancy/tenantgroup.html:59 +#: templates/tenancy/tenantgroup.html:59 msgid "Add Tenant Group" msgstr "Tilføj lejergruppe" -#: netbox/templates/users/group.html:39 netbox/templates/users/user.html:63 +#: templates/users/group.html:39 templates/users/user.html:63 msgid "Assigned Permissions" msgstr "Tildelte tilladelser" -#: netbox/templates/users/objectpermission.html:6 -#: netbox/templates/users/objectpermission.html:14 -#: netbox/users/forms/filtersets.py:66 +#: templates/users/objectpermission.html:6 +#: templates/users/objectpermission.html:14 users/forms/filtersets.py:66 msgid "Permission" msgstr "Tilladelse" -#: netbox/templates/users/objectpermission.html:34 +#: templates/users/objectpermission.html:34 msgid "View" msgstr "Udsigt" -#: netbox/templates/users/objectpermission.html:52 -#: netbox/users/forms/model_forms.py:315 +#: templates/users/objectpermission.html:52 users/forms/model_forms.py:315 msgid "Constraints" msgstr "Begrænsninger" -#: netbox/templates/users/objectpermission.html:72 +#: templates/users/objectpermission.html:72 msgid "Assigned Users" msgstr "Tildelte brugere" -#: netbox/templates/virtualization/cluster.html:52 +#: templates/virtualization/cluster.html:52 msgid "Allocated Resources" msgstr "Tildelte ressourcer" -#: netbox/templates/virtualization/cluster.html:55 -#: netbox/templates/virtualization/virtualmachine.html:125 +#: templates/virtualization/cluster.html:55 +#: templates/virtualization/virtualmachine.html:125 msgid "Virtual CPUs" msgstr "Virtuelle CPU'er" -#: netbox/templates/virtualization/cluster.html:59 -#: netbox/templates/virtualization/virtualmachine.html:129 +#: templates/virtualization/cluster.html:59 +#: templates/virtualization/virtualmachine.html:129 msgid "Memory" msgstr "Hukommelse" -#: netbox/templates/virtualization/cluster.html:69 -#: netbox/templates/virtualization/virtualmachine.html:140 +#: templates/virtualization/cluster.html:69 +#: templates/virtualization/virtualmachine.html:140 msgid "Disk Space" msgstr "Diskplads" -#: netbox/templates/virtualization/cluster/base.html:18 +#: templates/virtualization/cluster/base.html:18 msgid "Add Virtual Machine" msgstr "Tilføj virtuel maskine" -#: netbox/templates/virtualization/cluster/base.html:24 +#: templates/virtualization/cluster/base.html:24 msgid "Assign Device" msgstr "Tildel enhed" -#: netbox/templates/virtualization/cluster/devices.html:10 +#: templates/virtualization/cluster/devices.html:10 msgid "Remove Selected" msgstr "Fjern markeret" -#: netbox/templates/virtualization/cluster_add_devices.html:9 +#: templates/virtualization/cluster_add_devices.html:9 #, python-format msgid "Add Device to Cluster %(cluster)s" msgstr "Føj enhed til klynge %(cluster)s" -#: netbox/templates/virtualization/cluster_add_devices.html:23 +#: templates/virtualization/cluster_add_devices.html:23 msgid "Device Selection" msgstr "Valg af enhed" -#: netbox/templates/virtualization/cluster_add_devices.html:31 +#: templates/virtualization/cluster_add_devices.html:31 msgid "Add Devices" msgstr "Tilføj enheder" -#: netbox/templates/virtualization/clustergroup.html:10 -#: netbox/templates/virtualization/clustertype.html:10 +#: templates/virtualization/clustergroup.html:10 +#: templates/virtualization/clustertype.html:10 msgid "Add Cluster" msgstr "Tilføj klynge" -#: netbox/templates/virtualization/clustergroup.html:19 -#: netbox/virtualization/forms/model_forms.py:50 +#: templates/virtualization/clustergroup.html:19 +#: virtualization/forms/model_forms.py:50 msgid "Cluster Group" msgstr "Klyngegruppe" -#: netbox/templates/virtualization/clustertype.html:19 -#: netbox/templates/virtualization/virtualmachine.html:110 -#: netbox/virtualization/forms/model_forms.py:36 +#: templates/virtualization/clustertype.html:19 +#: templates/virtualization/virtualmachine.html:110 +#: virtualization/forms/model_forms.py:36 msgid "Cluster Type" msgstr "Klyngetype" -#: netbox/templates/virtualization/virtualdisk.html:18 +#: templates/virtualization/virtualdisk.html:18 msgid "Virtual Disk" msgstr "Virtuel disk" -#: netbox/templates/virtualization/virtualmachine.html:122 -#: netbox/virtualization/forms/bulk_edit.py:190 -#: netbox/virtualization/forms/model_forms.py:224 +#: templates/virtualization/virtualmachine.html:122 +#: virtualization/forms/bulk_edit.py:190 +#: virtualization/forms/model_forms.py:224 msgid "Resources" msgstr "Ressourcer" -#: netbox/templates/virtualization/virtualmachine.html:178 +#: templates/virtualization/virtualmachine.html:178 msgid "Add Virtual Disk" msgstr "Tilføj virtuel disk" -#: netbox/templates/vpn/ikepolicy.html:10 -#: netbox/templates/vpn/ipsecprofile.html:33 netbox/vpn/tables/crypto.py:166 +#: templates/vpn/ikepolicy.html:10 templates/vpn/ipsecprofile.html:33 +#: vpn/tables/crypto.py:166 msgid "IKE Policy" msgstr "IKE-politik" -#: netbox/templates/vpn/ikepolicy.html:21 +#: templates/vpn/ikepolicy.html:21 msgid "IKE Version" msgstr "IKE-udgave" -#: netbox/templates/vpn/ikepolicy.html:29 +#: templates/vpn/ikepolicy.html:29 msgid "Pre-Shared Key" msgstr "Foruddelt nøgle" -#: netbox/templates/vpn/ikepolicy.html:33 -#: netbox/templates/wireless/inc/authentication_attrs.html:20 +#: templates/vpn/ikepolicy.html:33 +#: templates/wireless/inc/authentication_attrs.html:20 msgid "Show Secret" msgstr "Vis hemmelighed" -#: netbox/templates/vpn/ikepolicy.html:57 -#: netbox/templates/vpn/ipsecpolicy.html:45 -#: netbox/templates/vpn/ipsecprofile.html:52 -#: netbox/templates/vpn/ipsecprofile.html:77 -#: netbox/vpn/forms/model_forms.py:316 netbox/vpn/forms/model_forms.py:352 -#: netbox/vpn/tables/crypto.py:68 netbox/vpn/tables/crypto.py:134 +#: templates/vpn/ikepolicy.html:57 templates/vpn/ipsecpolicy.html:45 +#: templates/vpn/ipsecprofile.html:52 templates/vpn/ipsecprofile.html:77 +#: vpn/forms/model_forms.py:316 vpn/forms/model_forms.py:352 +#: vpn/tables/crypto.py:68 vpn/tables/crypto.py:134 msgid "Proposals" msgstr "Forslag" -#: netbox/templates/vpn/ikeproposal.html:10 +#: templates/vpn/ikeproposal.html:10 msgid "IKE Proposal" msgstr "IKE-forslag" -#: netbox/templates/vpn/ikeproposal.html:21 netbox/vpn/forms/bulk_edit.py:97 -#: netbox/vpn/forms/bulk_import.py:145 netbox/vpn/forms/filtersets.py:101 +#: templates/vpn/ikeproposal.html:21 vpn/forms/bulk_edit.py:97 +#: vpn/forms/bulk_import.py:145 vpn/forms/filtersets.py:101 msgid "Authentication method" msgstr "Autentificeringsmetode" -#: netbox/templates/vpn/ikeproposal.html:25 -#: netbox/templates/vpn/ipsecproposal.html:21 -#: netbox/vpn/forms/bulk_edit.py:102 netbox/vpn/forms/bulk_edit.py:172 -#: netbox/vpn/forms/bulk_import.py:149 netbox/vpn/forms/bulk_import.py:195 -#: netbox/vpn/forms/filtersets.py:106 netbox/vpn/forms/filtersets.py:154 +#: templates/vpn/ikeproposal.html:25 templates/vpn/ipsecproposal.html:21 +#: vpn/forms/bulk_edit.py:102 vpn/forms/bulk_edit.py:172 +#: vpn/forms/bulk_import.py:149 vpn/forms/bulk_import.py:195 +#: vpn/forms/filtersets.py:106 vpn/forms/filtersets.py:154 msgid "Encryption algorithm" msgstr "Krypteringsalgoritme" -#: netbox/templates/vpn/ikeproposal.html:29 -#: netbox/templates/vpn/ipsecproposal.html:25 -#: netbox/vpn/forms/bulk_edit.py:107 netbox/vpn/forms/bulk_edit.py:177 -#: netbox/vpn/forms/bulk_import.py:153 netbox/vpn/forms/bulk_import.py:200 -#: netbox/vpn/forms/filtersets.py:111 netbox/vpn/forms/filtersets.py:159 +#: templates/vpn/ikeproposal.html:29 templates/vpn/ipsecproposal.html:25 +#: vpn/forms/bulk_edit.py:107 vpn/forms/bulk_edit.py:177 +#: vpn/forms/bulk_import.py:153 vpn/forms/bulk_import.py:200 +#: vpn/forms/filtersets.py:111 vpn/forms/filtersets.py:159 msgid "Authentication algorithm" msgstr "Autentificeringsalgoritme" -#: netbox/templates/vpn/ikeproposal.html:33 +#: templates/vpn/ikeproposal.html:33 msgid "DH group" msgstr "DH-gruppen" -#: netbox/templates/vpn/ikeproposal.html:37 -#: netbox/templates/vpn/ipsecproposal.html:29 -#: netbox/vpn/forms/bulk_edit.py:182 netbox/vpn/models/crypto.py:146 +#: templates/vpn/ikeproposal.html:37 templates/vpn/ipsecproposal.html:29 +#: vpn/forms/bulk_edit.py:182 vpn/models/crypto.py:146 msgid "SA lifetime (seconds)" msgstr "SA levetid (sekunder)" -#: netbox/templates/vpn/ipsecpolicy.html:10 -#: netbox/templates/vpn/ipsecprofile.html:66 netbox/vpn/tables/crypto.py:170 +#: templates/vpn/ipsecpolicy.html:10 templates/vpn/ipsecprofile.html:66 +#: vpn/tables/crypto.py:170 msgid "IPSec Policy" msgstr "IPsec-politik" -#: netbox/templates/vpn/ipsecpolicy.html:21 netbox/vpn/forms/bulk_edit.py:210 -#: netbox/vpn/models/crypto.py:193 +#: templates/vpn/ipsecpolicy.html:21 vpn/forms/bulk_edit.py:210 +#: vpn/models/crypto.py:193 msgid "PFS group" msgstr "PFS-gruppe" -#: netbox/templates/vpn/ipsecprofile.html:10 -#: netbox/vpn/forms/model_forms.py:54 +#: templates/vpn/ipsecprofile.html:10 vpn/forms/model_forms.py:54 msgid "IPSec Profile" msgstr "IPsec-profil" -#: netbox/templates/vpn/ipsecprofile.html:89 netbox/vpn/tables/crypto.py:137 +#: templates/vpn/ipsecprofile.html:89 vpn/tables/crypto.py:137 msgid "PFS Group" msgstr "PFS-gruppen" -#: netbox/templates/vpn/ipsecproposal.html:10 +#: templates/vpn/ipsecproposal.html:10 msgid "IPSec Proposal" msgstr "IPsec-forslag" -#: netbox/templates/vpn/ipsecproposal.html:33 -#: netbox/vpn/forms/bulk_edit.py:186 netbox/vpn/models/crypto.py:152 +#: templates/vpn/ipsecproposal.html:33 vpn/forms/bulk_edit.py:186 +#: vpn/models/crypto.py:152 msgid "SA lifetime (KB)" msgstr "SA-levetid (KB)" -#: netbox/templates/vpn/l2vpn.html:11 -#: netbox/templates/vpn/l2vpntermination.html:9 +#: templates/vpn/l2vpn.html:11 templates/vpn/l2vpntermination.html:9 msgid "L2VPN Attributes" msgstr "L2VPN Egenskaber" -#: netbox/templates/vpn/l2vpn.html:60 netbox/templates/vpn/tunnel.html:76 +#: templates/vpn/l2vpn.html:60 templates/vpn/tunnel.html:76 msgid "Add a Termination" msgstr "Tilføj en opsigelse" -#: netbox/templates/vpn/tunnel.html:9 +#: templates/vpn/tunnel.html:9 msgid "Add Termination" msgstr "Tilføj opsigelse" -#: netbox/templates/vpn/tunnel.html:37 netbox/vpn/forms/bulk_edit.py:49 -#: netbox/vpn/forms/bulk_import.py:48 netbox/vpn/forms/filtersets.py:57 +#: templates/vpn/tunnel.html:37 vpn/forms/bulk_edit.py:49 +#: vpn/forms/bulk_import.py:48 vpn/forms/filtersets.py:57 msgid "Encapsulation" msgstr "Indkapsling" -#: netbox/templates/vpn/tunnel.html:41 netbox/vpn/forms/bulk_edit.py:55 -#: netbox/vpn/forms/bulk_import.py:53 netbox/vpn/forms/filtersets.py:64 -#: netbox/vpn/models/crypto.py:250 netbox/vpn/tables/tunnels.py:51 +#: templates/vpn/tunnel.html:41 vpn/forms/bulk_edit.py:55 +#: vpn/forms/bulk_import.py:53 vpn/forms/filtersets.py:64 +#: vpn/models/crypto.py:250 vpn/tables/tunnels.py:51 msgid "IPSec profile" msgstr "IPsec-profil" -#: netbox/templates/vpn/tunnel.html:45 netbox/vpn/forms/bulk_edit.py:69 -#: netbox/vpn/forms/filtersets.py:68 +#: templates/vpn/tunnel.html:45 vpn/forms/bulk_edit.py:69 +#: vpn/forms/filtersets.py:68 msgid "Tunnel ID" msgstr "Tunnel-ID" -#: netbox/templates/vpn/tunnelgroup.html:14 +#: templates/vpn/tunnelgroup.html:14 msgid "Add Tunnel" msgstr "Tilføj tunnel" -#: netbox/templates/vpn/tunnelgroup.html:23 netbox/vpn/forms/model_forms.py:36 -#: netbox/vpn/forms/model_forms.py:49 +#: templates/vpn/tunnelgroup.html:23 vpn/forms/model_forms.py:36 +#: vpn/forms/model_forms.py:49 msgid "Tunnel Group" msgstr "Tunnelgruppe" -#: netbox/templates/vpn/tunneltermination.html:10 +#: templates/vpn/tunneltermination.html:10 msgid "Tunnel Termination" msgstr "Tunnelafslutning" -#: netbox/templates/vpn/tunneltermination.html:35 -#: netbox/vpn/forms/bulk_import.py:107 netbox/vpn/forms/model_forms.py:102 -#: netbox/vpn/forms/model_forms.py:138 netbox/vpn/forms/model_forms.py:247 -#: netbox/vpn/tables/tunnels.py:101 +#: templates/vpn/tunneltermination.html:35 vpn/forms/bulk_import.py:107 +#: vpn/forms/model_forms.py:102 vpn/forms/model_forms.py:138 +#: vpn/forms/model_forms.py:247 vpn/tables/tunnels.py:101 msgid "Outside IP" msgstr "Udenfor IP" -#: netbox/templates/vpn/tunneltermination.html:51 +#: templates/vpn/tunneltermination.html:51 msgid "Peer Terminations" msgstr "Peer-opsigelser" -#: netbox/templates/wireless/inc/authentication_attrs.html:12 +#: templates/wireless/inc/authentication_attrs.html:12 msgid "Cipher" msgstr "Kryptering" -#: netbox/templates/wireless/inc/authentication_attrs.html:16 +#: templates/wireless/inc/authentication_attrs.html:16 msgid "PSK" msgstr "PSK" -#: netbox/templates/wireless/inc/wirelesslink_interface.html:35 -#: netbox/templates/wireless/inc/wirelesslink_interface.html:45 +#: templates/wireless/inc/wirelesslink_interface.html:35 +#: templates/wireless/inc/wirelesslink_interface.html:45 msgctxt "Abbreviation for megahertz" msgid "MHz" msgstr "MHz" -#: netbox/templates/wireless/wirelesslan.html:57 +#: templates/wireless/wirelesslan.html:57 msgid "Attached Interfaces" msgstr "Vedhæftede grænseflader" -#: netbox/templates/wireless/wirelesslangroup.html:17 +#: templates/wireless/wirelesslangroup.html:17 msgid "Add Wireless LAN" msgstr "Tilføj trådløst LAN" -#: netbox/templates/wireless/wirelesslangroup.html:26 -#: netbox/wireless/forms/model_forms.py:28 +#: templates/wireless/wirelesslangroup.html:26 +#: wireless/forms/model_forms.py:28 msgid "Wireless LAN Group" msgstr "Trådløs LAN-gruppe" -#: netbox/templates/wireless/wirelesslangroup.html:59 +#: templates/wireless/wirelesslangroup.html:59 msgid "Add Wireless LAN Group" msgstr "Tilføj trådløs LAN-gruppe" -#: netbox/templates/wireless/wirelesslink.html:14 +#: templates/wireless/wirelesslink.html:14 msgid "Link Properties" msgstr "Linkegenskaber" -#: netbox/templates/wireless/wirelesslink.html:38 -#: netbox/wireless/forms/bulk_edit.py:129 -#: netbox/wireless/forms/filtersets.py:102 -#: netbox/wireless/forms/model_forms.py:165 +#: templates/wireless/wirelesslink.html:38 wireless/forms/bulk_edit.py:129 +#: wireless/forms/filtersets.py:102 wireless/forms/model_forms.py:165 msgid "Distance" msgstr "Afstand" -#: netbox/tenancy/filtersets.py:28 +#: tenancy/filtersets.py:28 msgid "Parent contact group (ID)" msgstr "Forældrekontaktgruppe (ID)" -#: netbox/tenancy/filtersets.py:34 +#: tenancy/filtersets.py:34 msgid "Parent contact group (slug)" msgstr "Forældrekontaktgruppe (slug)" -#: netbox/tenancy/filtersets.py:40 netbox/tenancy/filtersets.py:67 -#: netbox/tenancy/filtersets.py:110 +#: tenancy/filtersets.py:40 tenancy/filtersets.py:67 tenancy/filtersets.py:110 msgid "Contact group (ID)" msgstr "Kontaktgruppe (ID)" -#: netbox/tenancy/filtersets.py:47 netbox/tenancy/filtersets.py:74 -#: netbox/tenancy/filtersets.py:117 +#: tenancy/filtersets.py:47 tenancy/filtersets.py:74 tenancy/filtersets.py:117 msgid "Contact group (slug)" msgstr "Kontaktgruppe (slug)" -#: netbox/tenancy/filtersets.py:104 +#: tenancy/filtersets.py:104 msgid "Contact (ID)" msgstr "Kontakt (ID)" -#: netbox/tenancy/filtersets.py:121 +#: tenancy/filtersets.py:121 msgid "Contact role (ID)" msgstr "Kontaktrolle (ID)" -#: netbox/tenancy/filtersets.py:127 +#: tenancy/filtersets.py:127 msgid "Contact role (slug)" msgstr "Kontaktrolle (slug)" -#: netbox/tenancy/filtersets.py:158 +#: tenancy/filtersets.py:158 msgid "Contact group" msgstr "Kontaktgruppe" -#: netbox/tenancy/filtersets.py:169 +#: tenancy/filtersets.py:169 msgid "Parent tenant group (ID)" msgstr "Overordnet lejergruppe (ID)" -#: netbox/tenancy/filtersets.py:175 +#: tenancy/filtersets.py:175 msgid "Parent tenant group (slug)" msgstr "Forældrelejergruppe (slug)" -#: netbox/tenancy/filtersets.py:181 netbox/tenancy/filtersets.py:201 +#: tenancy/filtersets.py:181 tenancy/filtersets.py:201 msgid "Tenant group (ID)" msgstr "Lejergruppe (ID)" -#: netbox/tenancy/filtersets.py:234 +#: tenancy/filtersets.py:234 msgid "Tenant Group (ID)" msgstr "Lejergruppe (ID)" -#: netbox/tenancy/filtersets.py:241 +#: tenancy/filtersets.py:241 msgid "Tenant Group (slug)" msgstr "Lejergruppe (slug)" -#: netbox/tenancy/forms/bulk_edit.py:66 +#: tenancy/forms/bulk_edit.py:66 msgid "Desciption" msgstr "Descipation" -#: netbox/tenancy/forms/bulk_import.py:101 +#: tenancy/forms/bulk_import.py:101 msgid "Assigned contact" msgstr "Tildelt kontakt" -#: netbox/tenancy/models/contacts.py:32 +#: tenancy/models/contacts.py:32 msgid "contact group" msgstr "kontaktgruppe" -#: netbox/tenancy/models/contacts.py:33 +#: tenancy/models/contacts.py:33 msgid "contact groups" msgstr "kontaktgrupper" -#: netbox/tenancy/models/contacts.py:48 +#: tenancy/models/contacts.py:48 msgid "contact role" msgstr "kontaktrolle" -#: netbox/tenancy/models/contacts.py:49 +#: tenancy/models/contacts.py:49 msgid "contact roles" msgstr "kontaktroller" -#: netbox/tenancy/models/contacts.py:68 +#: tenancy/models/contacts.py:68 msgid "title" msgstr "titel" -#: netbox/tenancy/models/contacts.py:73 +#: tenancy/models/contacts.py:73 msgid "phone" msgstr "telefon" -#: netbox/tenancy/models/contacts.py:78 +#: tenancy/models/contacts.py:78 msgid "email" msgstr "e-mail" -#: netbox/tenancy/models/contacts.py:87 +#: tenancy/models/contacts.py:87 msgid "link" msgstr "link" -#: netbox/tenancy/models/contacts.py:103 +#: tenancy/models/contacts.py:103 msgid "contact" msgstr "kontakt" -#: netbox/tenancy/models/contacts.py:104 +#: tenancy/models/contacts.py:104 msgid "contacts" msgstr "kontakter" -#: netbox/tenancy/models/contacts.py:153 +#: tenancy/models/contacts.py:153 msgid "contact assignment" msgstr "kontaktopgave" -#: netbox/tenancy/models/contacts.py:154 +#: tenancy/models/contacts.py:154 msgid "contact assignments" msgstr "kontaktopgaver" -#: netbox/tenancy/models/contacts.py:170 +#: tenancy/models/contacts.py:170 #, python-brace-format msgid "Contacts cannot be assigned to this object type ({type})." msgstr "Kontakter kan ikke tildeles denne objekttype ({type})." -#: netbox/tenancy/models/tenants.py:32 +#: tenancy/models/tenants.py:32 msgid "tenant group" msgstr "lejergruppe" -#: netbox/tenancy/models/tenants.py:33 +#: tenancy/models/tenants.py:33 msgid "tenant groups" msgstr "lejergrupper" -#: netbox/tenancy/models/tenants.py:70 +#: tenancy/models/tenants.py:70 msgid "Tenant name must be unique per group." msgstr "Lejernavnet skal være entydigt pr. Gruppe." -#: netbox/tenancy/models/tenants.py:80 +#: tenancy/models/tenants.py:80 msgid "Tenant slug must be unique per group." msgstr "Lejer-slug skal være unik pr. Gruppe." -#: netbox/tenancy/models/tenants.py:88 +#: tenancy/models/tenants.py:88 msgid "tenant" msgstr "lejer" -#: netbox/tenancy/models/tenants.py:89 +#: tenancy/models/tenants.py:89 msgid "tenants" msgstr "lejere" -#: netbox/tenancy/tables/contacts.py:112 +#: tenancy/tables/contacts.py:112 msgid "Contact Title" msgstr "Kontakt Titel" -#: netbox/tenancy/tables/contacts.py:116 +#: tenancy/tables/contacts.py:116 msgid "Contact Phone" msgstr "Kontakt Telefon" -#: netbox/tenancy/tables/contacts.py:121 +#: tenancy/tables/contacts.py:121 msgid "Contact Email" msgstr "Kontakt Email" -#: netbox/tenancy/tables/contacts.py:125 +#: tenancy/tables/contacts.py:125 msgid "Contact Address" msgstr "Kontaktadresse" -#: netbox/tenancy/tables/contacts.py:129 +#: tenancy/tables/contacts.py:129 msgid "Contact Link" msgstr "Kontakt Link" -#: netbox/tenancy/tables/contacts.py:133 +#: tenancy/tables/contacts.py:133 msgid "Contact Description" msgstr "Kontakt Beskrivelse" -#: netbox/users/filtersets.py:33 netbox/users/filtersets.py:73 +#: users/filtersets.py:33 users/filtersets.py:73 msgid "Permission (ID)" msgstr "Tilladelse (ID)" -#: netbox/users/filtersets.py:38 netbox/users/filtersets.py:78 +#: users/filtersets.py:38 users/filtersets.py:78 msgid "Notification group (ID)" msgstr "Meddelelsesgruppe (ID)" -#: netbox/users/forms/bulk_edit.py:26 +#: users/forms/bulk_edit.py:26 msgid "First name" msgstr "Fornavn" -#: netbox/users/forms/bulk_edit.py:31 +#: users/forms/bulk_edit.py:31 msgid "Last name" msgstr "Efternavn" -#: netbox/users/forms/bulk_edit.py:43 +#: users/forms/bulk_edit.py:43 msgid "Staff status" msgstr "Medarbejderstatus" -#: netbox/users/forms/bulk_edit.py:48 +#: users/forms/bulk_edit.py:48 msgid "Superuser status" msgstr "Superbrugerstatus" -#: netbox/users/forms/bulk_import.py:41 +#: users/forms/bulk_import.py:41 msgid "If no key is provided, one will be generated automatically." msgstr "Hvis der ikke er angivet nogen nøgle, genereres en automatisk." -#: netbox/users/forms/filtersets.py:51 netbox/users/tables.py:42 +#: users/forms/filtersets.py:51 users/tables.py:42 msgid "Is Staff" msgstr "Er personale" -#: netbox/users/forms/filtersets.py:58 netbox/users/tables.py:45 +#: users/forms/filtersets.py:58 users/tables.py:45 msgid "Is Superuser" msgstr "Er Superbruger" -#: netbox/users/forms/filtersets.py:91 netbox/users/tables.py:86 +#: users/forms/filtersets.py:91 users/tables.py:86 msgid "Can View" msgstr "Kan se" -#: netbox/users/forms/filtersets.py:98 netbox/users/tables.py:89 +#: users/forms/filtersets.py:98 users/tables.py:89 msgid "Can Add" msgstr "Kan tilføje" -#: netbox/users/forms/filtersets.py:105 netbox/users/tables.py:92 +#: users/forms/filtersets.py:105 users/tables.py:92 msgid "Can Change" msgstr "Kan ændre sig" -#: netbox/users/forms/filtersets.py:112 netbox/users/tables.py:95 +#: users/forms/filtersets.py:112 users/tables.py:95 msgid "Can Delete" msgstr "Kan slette" -#: netbox/users/forms/model_forms.py:62 +#: users/forms/model_forms.py:62 msgid "User Interface" msgstr "Brugergrænseflade" -#: netbox/users/forms/model_forms.py:114 +#: users/forms/model_forms.py:114 msgid "" "Keys must be at least 40 characters in length. Be sure to record " "your key prior to submitting this form, as it may no longer be " @@ -14638,7 +13896,7 @@ msgstr "" "nøgle før indsendelse af denne formular, da den muligvis ikke " "længere er tilgængelig, når tokenet er oprettet." -#: netbox/users/forms/model_forms.py:126 +#: users/forms/model_forms.py:126 msgid "" "Allowed IPv4/IPv6 networks from where the token can be used. Leave blank for" " no restrictions. Example: " @@ -14648,32 +13906,32 @@ msgstr "" "uden begrænsninger. Eksempel: 10.1.1.0/24.192.168.10.16/32.2001: db " "8:1: :/64" -#: netbox/users/forms/model_forms.py:175 +#: users/forms/model_forms.py:175 msgid "Confirm password" msgstr "Bekræft adgangskode" -#: netbox/users/forms/model_forms.py:178 +#: users/forms/model_forms.py:178 msgid "Enter the same password as before, for verification." msgstr "Indtast den samme adgangskode som før, til bekræftelse." -#: netbox/users/forms/model_forms.py:227 +#: users/forms/model_forms.py:227 msgid "Passwords do not match! Please check your input and try again." msgstr "" "Adgangskoder stemmer ikke overens! Kontroller dit input, og prøv igen." -#: netbox/users/forms/model_forms.py:294 +#: users/forms/model_forms.py:294 msgid "Additional actions" msgstr "Yderligere tiltag" -#: netbox/users/forms/model_forms.py:297 +#: users/forms/model_forms.py:297 msgid "Actions granted in addition to those listed above" msgstr "Foranstaltninger, der er ydet ud over dem, der er anført ovenfor" -#: netbox/users/forms/model_forms.py:313 +#: users/forms/model_forms.py:313 msgid "Objects" msgstr "Objekter" -#: netbox/users/forms/model_forms.py:325 +#: users/forms/model_forms.py:325 msgid "" "JSON expression of a queryset filter that will return only permitted " "objects. Leave null to match all objects of this type. A list of multiple " @@ -14683,77 +13941,77 @@ msgstr "" "Efterlad null for at matche alle objekter af denne type. En liste over flere" " objekter vil resultere i en logisk OR-operation." -#: netbox/users/forms/model_forms.py:364 +#: users/forms/model_forms.py:364 msgid "At least one action must be selected." msgstr "Mindst en handling skal vælges." -#: netbox/users/forms/model_forms.py:382 +#: users/forms/model_forms.py:382 #, python-brace-format msgid "Invalid filter for {model}: {error}" msgstr "Ugyldigt filter for {model}: {error}" -#: netbox/users/models/permissions.py:39 +#: users/models/permissions.py:39 msgid "The list of actions granted by this permission" msgstr "Listen over handlinger givet ved denne tilladelse" -#: netbox/users/models/permissions.py:44 +#: users/models/permissions.py:44 msgid "constraints" msgstr "restriktioner" -#: netbox/users/models/permissions.py:45 +#: users/models/permissions.py:45 msgid "" "Queryset filter matching the applicable objects of the selected type(s)" msgstr "" "Queryset-filter, der matcher de relevante objekter af den eller de valgte " "type" -#: netbox/users/models/permissions.py:52 +#: users/models/permissions.py:52 msgid "permission" msgstr "tilladelse" -#: netbox/users/models/permissions.py:53 netbox/users/models/users.py:47 +#: users/models/permissions.py:53 users/models/users.py:47 msgid "permissions" msgstr "tilladelser" -#: netbox/users/models/preferences.py:29 netbox/users/models/preferences.py:30 +#: users/models/preferences.py:29 users/models/preferences.py:30 msgid "user preferences" msgstr "brugerpræferencer" -#: netbox/users/models/preferences.py:97 +#: users/models/preferences.py:97 #, python-brace-format msgid "Key '{path}' is a leaf node; cannot assign new keys" msgstr "Nøgle '{path}'er en bladnode; kan ikke tildele nye nøgler" -#: netbox/users/models/preferences.py:109 +#: users/models/preferences.py:109 #, python-brace-format msgid "Key '{path}' is a dictionary; cannot assign a non-dictionary value" msgstr "Nøgle '{path}'er en ordbog; kan ikke tildele en ikke-ordbogsværdi" -#: netbox/users/models/tokens.py:36 +#: users/models/tokens.py:36 msgid "expires" msgstr "udløber" -#: netbox/users/models/tokens.py:41 +#: users/models/tokens.py:41 msgid "last used" msgstr "sidst brugt" -#: netbox/users/models/tokens.py:46 +#: users/models/tokens.py:46 msgid "key" msgstr "nøgle" -#: netbox/users/models/tokens.py:52 +#: users/models/tokens.py:52 msgid "write enabled" msgstr "skrive aktiveret" -#: netbox/users/models/tokens.py:54 +#: users/models/tokens.py:54 msgid "Permit create/update/delete operations using this key" msgstr "Tillad oprette/opdatere/slette handlinger ved hjælp af denne nøgle" -#: netbox/users/models/tokens.py:65 +#: users/models/tokens.py:65 msgid "allowed IPs" msgstr "tilladte IP'er" -#: netbox/users/models/tokens.py:67 +#: users/models/tokens.py:67 msgid "" "Allowed IPv4/IPv6 networks from where the token can be used. Leave blank for" " no restrictions. Ex: \"10.1.1.0/24, 192.168.10.16/32, 2001:DB8:1::/64\"" @@ -14762,43 +14020,43 @@ msgstr "" "uden begrænsninger. Eksempel: „10.1.1.0/24, 192.168.10.16/32, 2001: DB 8:1: " ":/64\"" -#: netbox/users/models/tokens.py:75 +#: users/models/tokens.py:75 msgid "token" msgstr "symbolet" -#: netbox/users/models/tokens.py:76 +#: users/models/tokens.py:76 msgid "tokens" msgstr "tokens" -#: netbox/users/models/users.py:57 netbox/vpn/models/crypto.py:42 +#: users/models/users.py:57 vpn/models/crypto.py:42 msgid "group" msgstr "gruppe" -#: netbox/users/models/users.py:92 +#: users/models/users.py:92 msgid "user" msgstr "bruger" -#: netbox/users/models/users.py:104 +#: users/models/users.py:104 msgid "A user with this username already exists." msgstr "Der findes allerede en bruger med dette brugernavn." -#: netbox/users/tables.py:98 +#: users/tables.py:98 msgid "Custom Actions" msgstr "Brugerdefinerede handlinger" -#: netbox/utilities/api.py:153 +#: utilities/api.py:153 #, python-brace-format msgid "Related object not found using the provided attributes: {params}" msgstr "" "Relateret objekt blev ikke fundet ved hjælp af de angivne attributter: " "{params}" -#: netbox/utilities/api.py:156 +#: utilities/api.py:156 #, python-brace-format msgid "Multiple objects match the provided attributes: {params}" msgstr "Flere objekter matcher de angivne attributter: {params}" -#: netbox/utilities/api.py:168 +#: utilities/api.py:168 #, python-brace-format msgid "" "Related objects must be referenced by numeric ID or by dictionary of " @@ -14807,42 +14065,42 @@ msgstr "" "Relaterede objekter skal refereres med numerisk id eller ved ordbog over " "attributter. Modtaget en ukendt værdi: {value}" -#: netbox/utilities/api.py:177 +#: utilities/api.py:177 #, python-brace-format msgid "Related object not found using the provided numeric ID: {id}" msgstr "" "Relateret objekt blev ikke fundet ved hjælp af det angivne numeriske ID: " "{id}" -#: netbox/utilities/choices.py:19 +#: utilities/choices.py:19 #, python-brace-format msgid "{name} has a key defined but CHOICES is not a list" msgstr "{name} har en nøgle defineret, men CHOICES er ikke en liste" -#: netbox/utilities/conversion.py:19 +#: utilities/conversion.py:19 msgid "Weight must be a positive number" msgstr "Vægt skal være et positivt tal" -#: netbox/utilities/conversion.py:21 +#: utilities/conversion.py:21 #, python-brace-format msgid "Invalid value '{weight}' for weight (must be a number)" msgstr "Ugyldig værdi '{weight}'for vægt (skal være et tal)" -#: netbox/utilities/conversion.py:32 netbox/utilities/conversion.py:62 +#: utilities/conversion.py:32 utilities/conversion.py:62 #, python-brace-format msgid "Unknown unit {unit}. Must be one of the following: {valid_units}" msgstr "Ukendt enhed {unit}. Skal være en af følgende: {valid_units}" -#: netbox/utilities/conversion.py:45 +#: utilities/conversion.py:45 msgid "Length must be a positive number" msgstr "Længden skal være et positivt tal" -#: netbox/utilities/conversion.py:47 +#: utilities/conversion.py:47 #, python-brace-format msgid "Invalid value '{length}' for length (must be a number)" msgstr "Ugyldig værdi '{length}'for længden (skal være et tal)" -#: netbox/utilities/error_handlers.py:31 +#: utilities/error_handlers.py:31 #, python-brace-format msgid "" "Unable to delete {objects}. {count} dependent objects were " @@ -14851,15 +14109,15 @@ msgstr "" "Kan ikke slette {objects}. {count} afhængige objekter blev " "fundet: " -#: netbox/utilities/error_handlers.py:33 +#: utilities/error_handlers.py:33 msgid "More than 50" msgstr "Mere end 50" -#: netbox/utilities/fields.py:30 +#: utilities/fields.py:30 msgid "RGB color in hexadecimal. Example: " msgstr "RGB-farve i hexadecimalt. Eksempel: " -#: netbox/utilities/fields.py:159 +#: utilities/fields.py:159 #, python-format msgid "" "%s(%r) is invalid. to_model parameter to CounterCacheField must be a string " @@ -14868,7 +14126,7 @@ msgstr "" "%s(%r) er ugyldig. to_model parameter til counterCacheField skal være en " "streng i formatet 'app.model'" -#: netbox/utilities/fields.py:169 +#: utilities/fields.py:169 #, python-format msgid "" "%s(%r) is invalid. to_field parameter to CounterCacheField must be a string " @@ -14877,36 +14135,36 @@ msgstr "" "%s(%r) er ugyldig. to_field-parameteren til counterCacheField skal være en " "streng i formatet 'felt'" -#: netbox/utilities/forms/bulk_import.py:23 +#: utilities/forms/bulk_import.py:23 msgid "Enter object data in CSV, JSON or YAML format." msgstr "Indtast objektdata i CSV-, JSON- eller YAML-format." -#: netbox/utilities/forms/bulk_import.py:36 +#: utilities/forms/bulk_import.py:36 msgid "CSV delimiter" msgstr "CSV afgrænser" -#: netbox/utilities/forms/bulk_import.py:37 +#: utilities/forms/bulk_import.py:37 msgid "The character which delimits CSV fields. Applies only to CSV format." msgstr "Det tegn, der afgrænser CSV-felter. Gælder kun for CSV-format." -#: netbox/utilities/forms/bulk_import.py:51 +#: utilities/forms/bulk_import.py:51 msgid "Form data must be empty when uploading/selecting a file." msgstr "Formulardata skal være tomme, når du uploader eller vælger en fil." -#: netbox/utilities/forms/bulk_import.py:80 +#: utilities/forms/bulk_import.py:80 #, python-brace-format msgid "Unknown data format: {format}" msgstr "Ukendt dataformat: {format}" -#: netbox/utilities/forms/bulk_import.py:100 +#: utilities/forms/bulk_import.py:100 msgid "Unable to detect data format. Please specify." msgstr "Kan ikke registrere dataformat. Angiv venligst." -#: netbox/utilities/forms/bulk_import.py:123 +#: utilities/forms/bulk_import.py:123 msgid "Invalid CSV delimiter" msgstr "Ugyldig CSV-afgrænsning" -#: netbox/utilities/forms/bulk_import.py:167 +#: utilities/forms/bulk_import.py:167 msgid "" "Invalid YAML data. Data must be in the form of multiple documents, or a " "single document comprising a list of dictionaries." @@ -14914,7 +14172,7 @@ msgstr "" "Ugyldige YAML-data. Data skal være i form af flere dokumenter, eller et " "enkelt dokument, der omfatter en liste over ordbøger." -#: netbox/utilities/forms/fields/array.py:20 +#: utilities/forms/fields/array.py:20 #, python-brace-format msgid "" "Invalid list ({value}). Must be numeric and ranges must be in ascending " @@ -14923,7 +14181,7 @@ msgstr "" "Ugyldig liste ({value}). Skal være numerisk, og intervaller skal være i " "stigende rækkefølge." -#: netbox/utilities/forms/fields/array.py:40 +#: utilities/forms/fields/array.py:40 msgid "" "Specify one or more numeric ranges separated by commas. Example: " "1-5,20-30" @@ -14931,7 +14189,7 @@ msgstr "" "Angiv et eller flere numeriske områder adskilt af kommaer. Eksempel: " "1-5,20-30" -#: netbox/utilities/forms/fields/array.py:47 +#: utilities/forms/fields/array.py:47 #, python-brace-format msgid "" "Invalid ranges ({value}). Must be a range of integers in ascending order." @@ -14939,18 +14197,17 @@ msgstr "" "Ugyldige intervaller ({value}). Skal være en række heltal i stigende " "rækkefølge." -#: netbox/utilities/forms/fields/csv.py:44 +#: utilities/forms/fields/csv.py:44 #, python-brace-format msgid "Invalid value for a multiple choice field: {value}" msgstr "Ugyldig værdi for et flervalgsfelt: {value}" -#: netbox/utilities/forms/fields/csv.py:57 -#: netbox/utilities/forms/fields/csv.py:78 +#: utilities/forms/fields/csv.py:57 utilities/forms/fields/csv.py:78 #, python-format msgid "Object not found: %(value)s" msgstr "Objektet blev ikke fundet: %(value)s" -#: netbox/utilities/forms/fields/csv.py:65 +#: utilities/forms/fields/csv.py:65 #, python-brace-format msgid "" "\"{value}\" is not a unique value for this field; multiple objects were " @@ -14958,20 +14215,20 @@ msgid "" msgstr "" "„{value}„er ikke en unik værdi for dette felt; flere objekter blev fundet" -#: netbox/utilities/forms/fields/csv.py:69 +#: utilities/forms/fields/csv.py:69 #, python-brace-format msgid "\"{field_name}\" is an invalid accessor field name." msgstr "„{field_name}„er et ugyldigt adgangsfeltnavn." -#: netbox/utilities/forms/fields/csv.py:101 +#: utilities/forms/fields/csv.py:101 msgid "Object type must be specified as \".\"" msgstr "Objekttype skal angives som“.„" -#: netbox/utilities/forms/fields/csv.py:105 +#: utilities/forms/fields/csv.py:105 msgid "Invalid object type" msgstr "Ugyldig objekttype" -#: netbox/utilities/forms/fields/expandable.py:25 +#: utilities/forms/fields/expandable.py:25 msgid "" "Alphanumeric ranges are supported for bulk creation. Mixed cases and types " "within a single range are not supported (example: " @@ -14981,7 +14238,7 @@ msgstr "" "og typer inden for et enkelt område understøttes ikke (eksempel: [ge, " "xe] -0/0/ [0-9])." -#: netbox/utilities/forms/fields/expandable.py:46 +#: utilities/forms/fields/expandable.py:46 msgid "" "Specify a numeric range to create multiple IPs.
Example: " "192.0.2.[1,5,100-254]/24" @@ -14989,7 +14246,7 @@ msgstr "" "Angiv et numerisk interval for at oprette flere IP'er.
Eksempel: " "192.0.2. [1.5,100-254] /24" -#: netbox/utilities/forms/fields/fields.py:31 +#: utilities/forms/fields/fields.py:31 #, python-brace-format msgid "" " Markdown Syntaks understøttes" -#: netbox/utilities/forms/fields/fields.py:48 +#: utilities/forms/fields/fields.py:48 msgid "URL-friendly unique shorthand" msgstr "URL-venlig unik stenografi" -#: netbox/utilities/forms/fields/fields.py:101 +#: utilities/forms/fields/fields.py:101 msgid "Enter context data in JSON format." msgstr "Indtast kontekstdata i JSON formatere." -#: netbox/utilities/forms/fields/fields.py:124 +#: utilities/forms/fields/fields.py:124 msgid "MAC address must be in EUI-48 format" msgstr "MAC-adressen skal være i EUI-48-format" -#: netbox/utilities/forms/forms.py:52 +#: utilities/forms/forms.py:52 msgid "Use regular expressions" msgstr "Brug regulære udtryk" -#: netbox/utilities/forms/forms.py:75 +#: utilities/forms/forms.py:75 msgid "" "Numeric ID of an existing object to update (if not creating a new object)" msgstr "" "Numerisk id for et eksisterende objekt, der skal opdateres (hvis der ikke " "oprettes et nyt objekt)" -#: netbox/utilities/forms/forms.py:92 +#: utilities/forms/forms.py:92 #, python-brace-format msgid "Unrecognized header: {name}" msgstr "Ikke-genkendt header: {name}" -#: netbox/utilities/forms/forms.py:118 +#: utilities/forms/forms.py:118 msgid "Available Columns" msgstr "Tilgængelige kolonner" -#: netbox/utilities/forms/forms.py:126 +#: utilities/forms/forms.py:126 msgid "Selected Columns" msgstr "Udvalgte kolonner" -#: netbox/utilities/forms/mixins.py:44 +#: utilities/forms/mixins.py:44 msgid "" "This object has been modified since the form was rendered. Please consult " "the object's change log for details." @@ -15042,13 +14299,13 @@ msgstr "" "Dette objekt er blevet ændret, siden formularen blev gengivet. Se objektets " "ændringslog for detaljer." -#: netbox/utilities/forms/utils.py:42 netbox/utilities/forms/utils.py:68 -#: netbox/utilities/forms/utils.py:85 netbox/utilities/forms/utils.py:87 +#: utilities/forms/utils.py:42 utilities/forms/utils.py:68 +#: utilities/forms/utils.py:85 utilities/forms/utils.py:87 #, python-brace-format msgid "Range \"{value}\" is invalid." msgstr "Rækkevidde“{value}„er ugyldig." -#: netbox/utilities/forms/utils.py:74 +#: utilities/forms/utils.py:74 #, python-brace-format msgid "" "Invalid range: Ending value ({end}) must be greater than beginning value " @@ -15057,67 +14314,67 @@ msgstr "" "Ugyldigt område: Slutværdi ({end}) skal være større end startværdien " "({begin})." -#: netbox/utilities/forms/utils.py:232 +#: utilities/forms/utils.py:232 #, python-brace-format msgid "Duplicate or conflicting column header for \"{field}\"" msgstr "Duplikat eller modstridende kolonneoverskrift for“{field}„" -#: netbox/utilities/forms/utils.py:238 +#: utilities/forms/utils.py:238 #, python-brace-format msgid "Duplicate or conflicting column header for \"{header}\"" msgstr "Duplikat eller modstridende kolonneoverskrift for“{header}„" -#: netbox/utilities/forms/utils.py:247 +#: utilities/forms/utils.py:247 #, python-brace-format msgid "Row {row}: Expected {count_expected} columns but found {count_found}" msgstr "" "Række {row}: Forventet {count_expected} kolonner, men fundet {count_found}" -#: netbox/utilities/forms/utils.py:270 +#: utilities/forms/utils.py:270 #, python-brace-format msgid "Unexpected column header \"{field}\" found." msgstr "Uventet kolonneoverskrift“{field}„fundet." -#: netbox/utilities/forms/utils.py:272 +#: utilities/forms/utils.py:272 #, python-brace-format msgid "Column \"{field}\" is not a related object; cannot use dots" msgstr "Kolonne“{field}„er ikke et beslægtet objekt; kan ikke bruge prikker" -#: netbox/utilities/forms/utils.py:276 +#: utilities/forms/utils.py:276 #, python-brace-format msgid "Invalid related object attribute for column \"{field}\": {to_field}" msgstr "Ugyldig relateret objektattribut for kolonne“{field}„: {to_field}" -#: netbox/utilities/forms/utils.py:284 +#: utilities/forms/utils.py:284 #, python-brace-format msgid "Required column header \"{header}\" not found." msgstr "Påkrævet kolonneoverskrift“{header}„Ikke fundet." -#: netbox/utilities/forms/widgets/apiselect.py:124 +#: utilities/forms/widgets/apiselect.py:124 #, python-brace-format msgid "Missing required value for dynamic query param: '{dynamic_params}'" msgstr "" "Mangler påkrævet værdi for dynamisk forespørgselsparam: '{dynamic_params}'" -#: netbox/utilities/forms/widgets/apiselect.py:141 +#: utilities/forms/widgets/apiselect.py:141 #, python-brace-format msgid "Missing required value for static query param: '{static_params}'" msgstr "" "Mangler påkrævet værdi for statisk forespørgselsparam: '{static_params}'" -#: netbox/utilities/password_validation.py:13 +#: utilities/password_validation.py:13 msgid "Password must have at least one numeral." msgstr "Adgangskoden skal have mindst et tal." -#: netbox/utilities/password_validation.py:18 +#: utilities/password_validation.py:18 msgid "Password must have at least one uppercase letter." msgstr "Adgangskoden skal have mindst et stort bogstav." -#: netbox/utilities/password_validation.py:23 +#: utilities/password_validation.py:23 msgid "Password must have at least one lowercase letter." msgstr "Adgangskoden skal have mindst et lille bogstav." -#: netbox/utilities/password_validation.py:27 +#: utilities/password_validation.py:27 msgid "" "Your password must contain at least one numeral, one uppercase letter and " "one lowercase letter." @@ -15125,7 +14382,7 @@ msgstr "" "Din adgangskode skal indeholde mindst et tal, et stort bogstav og et lille " "bogstav." -#: netbox/utilities/permissions.py:42 +#: utilities/permissions.py:42 #, python-brace-format msgid "" "Invalid permission name: {name}. Must be in the format " @@ -15134,127 +14391,127 @@ msgstr "" "Ugyldigt tilladelsesnavn: {name}. Skal være i formatet " "._" -#: netbox/utilities/permissions.py:60 +#: utilities/permissions.py:60 #, python-brace-format msgid "Unknown app_label/model_name for {name}" msgstr "Ukendt app_label/modelnavn til {name}" -#: netbox/utilities/request.py:76 +#: utilities/request.py:76 #, python-brace-format msgid "Invalid IP address set for {header}: {ip}" msgstr "Ugyldig IP-adresse indstillet til {header}: {ip}" -#: netbox/utilities/tables.py:47 +#: utilities/tables.py:47 #, python-brace-format msgid "A column named {name} is already defined for table {table_name}" msgstr "" "En kolonne med navnet {name} er allerede defineret for tabel {table_name}" -#: netbox/utilities/templates/builtins/customfield_value.html:30 +#: utilities/templates/builtins/customfield_value.html:30 msgid "Not defined" msgstr "Ikke defineret" -#: netbox/utilities/templates/buttons/bookmark.html:9 +#: utilities/templates/buttons/bookmark.html:9 msgid "Unbookmark" msgstr "Fjern bogmærke" -#: netbox/utilities/templates/buttons/bookmark.html:13 +#: utilities/templates/buttons/bookmark.html:13 msgid "Bookmark" msgstr "Bogmærke" -#: netbox/utilities/templates/buttons/clone.html:4 +#: utilities/templates/buttons/clone.html:4 msgid "Clone" msgstr "Klon" -#: netbox/utilities/templates/buttons/export.html:7 +#: utilities/templates/buttons/export.html:7 msgid "Current View" msgstr "Nuværende visning" -#: netbox/utilities/templates/buttons/export.html:8 +#: utilities/templates/buttons/export.html:8 msgid "All Data" msgstr "Alle data" -#: netbox/utilities/templates/buttons/export.html:28 +#: utilities/templates/buttons/export.html:28 msgid "Add export template" msgstr "Tilføj eksportskabelon" -#: netbox/utilities/templates/buttons/import.html:4 +#: utilities/templates/buttons/import.html:4 msgid "Import" msgstr "Importere" -#: netbox/utilities/templates/buttons/subscribe.html:10 +#: utilities/templates/buttons/subscribe.html:10 msgid "Unsubscribe" msgstr "Afmeld" -#: netbox/utilities/templates/buttons/subscribe.html:14 +#: utilities/templates/buttons/subscribe.html:14 msgid "Subscribe" msgstr "Abonner" -#: netbox/utilities/templates/form_helpers/render_field.html:41 +#: utilities/templates/form_helpers/render_field.html:41 msgid "Copy to clipboard" msgstr "Kopier til udklipsholder" -#: netbox/utilities/templates/form_helpers/render_field.html:57 +#: 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 +#: utilities/templates/form_helpers/render_field.html:70 msgid "Set Null" msgstr "Indstil Null" -#: netbox/utilities/templates/helpers/applied_filters.html:11 +#: utilities/templates/helpers/applied_filters.html:11 msgid "Clear all" msgstr "Ryd alle" -#: netbox/utilities/templates/helpers/table_config_form.html:8 +#: utilities/templates/helpers/table_config_form.html:8 msgid "Table Configuration" msgstr "Tabelkonfiguration" -#: netbox/utilities/templates/helpers/table_config_form.html:31 +#: utilities/templates/helpers/table_config_form.html:31 msgid "Move Up" msgstr "Flyt op" -#: netbox/utilities/templates/helpers/table_config_form.html:34 +#: utilities/templates/helpers/table_config_form.html:34 msgid "Move Down" msgstr "Flyt ned" -#: netbox/utilities/templates/navigation/menu.html:14 +#: utilities/templates/navigation/menu.html:14 msgid "Search…" msgstr "Søg..." -#: netbox/utilities/templates/navigation/menu.html:14 +#: utilities/templates/navigation/menu.html:14 msgid "Search NetBox" msgstr "Søg i NetBox" -#: netbox/utilities/templates/widgets/apiselect.html:7 +#: utilities/templates/widgets/apiselect.html:7 msgid "Open selector" msgstr "Åbn vælger" -#: netbox/utilities/templates/widgets/markdown_input.html:6 +#: utilities/templates/widgets/markdown_input.html:6 msgid "Write" msgstr "Skrive" -#: netbox/utilities/testing/views.py:632 +#: utilities/testing/views.py:632 msgid "The test must define csv_update_data." msgstr "Testen skal definere csv_update_data." -#: netbox/utilities/validators.py:65 +#: utilities/validators.py:65 #, python-brace-format msgid "{value} is not a valid regular expression." msgstr "{value} er ikke et gyldigt regulært udtryk." -#: netbox/utilities/views.py:57 +#: utilities/views.py:57 #, python-brace-format msgid "{self.__class__.__name__} must implement get_required_permission()" msgstr "" "{self.__class__.__name__} skal implementere get_required_permissions ()" -#: netbox/utilities/views.py:93 +#: utilities/views.py:93 #, python-brace-format msgid "{class_name} must implement get_required_permission()" msgstr "{class_name} skal implementere get_required_permissions ()" -#: netbox/utilities/views.py:117 +#: utilities/views.py:117 #, python-brace-format msgid "" "{class_name} has no queryset defined. ObjectPermissionRequiredMixin may only" @@ -15263,63 +14520,61 @@ msgstr "" "{class_name} har intet queryset defineret. ObjectPermissionRequiredMixin må " "kun bruges på visninger, der definerer et basisqueryset" -#: netbox/virtualization/filtersets.py:79 +#: virtualization/filtersets.py:79 msgid "Parent group (ID)" msgstr "Forældregruppe (ID)" -#: netbox/virtualization/filtersets.py:85 +#: virtualization/filtersets.py:85 msgid "Parent group (slug)" msgstr "Forældregruppe (slug)" -#: netbox/virtualization/filtersets.py:89 -#: netbox/virtualization/filtersets.py:141 +#: virtualization/filtersets.py:89 virtualization/filtersets.py:141 msgid "Cluster type (ID)" msgstr "Klyngetype (ID)" -#: netbox/virtualization/filtersets.py:151 -#: netbox/virtualization/filtersets.py:271 +#: virtualization/filtersets.py:151 virtualization/filtersets.py:271 msgid "Cluster (ID)" msgstr "Klynge (ID)" -#: netbox/virtualization/forms/bulk_edit.py:166 -#: netbox/virtualization/models/virtualmachines.py:115 +#: virtualization/forms/bulk_edit.py:166 +#: virtualization/models/virtualmachines.py:115 msgid "vCPUs" msgstr "vCPU'er" -#: netbox/virtualization/forms/bulk_edit.py:170 +#: virtualization/forms/bulk_edit.py:170 msgid "Memory (MB)" msgstr "Hukommelse (MB)" -#: netbox/virtualization/forms/bulk_edit.py:174 +#: virtualization/forms/bulk_edit.py:174 msgid "Disk (GB)" msgstr "Disk (GB)" -#: netbox/virtualization/forms/bulk_edit.py:334 -#: netbox/virtualization/forms/filtersets.py:251 +#: virtualization/forms/bulk_edit.py:334 +#: virtualization/forms/filtersets.py:251 msgid "Size (GB)" msgstr "Størrelse (GB)" -#: netbox/virtualization/forms/bulk_import.py:44 +#: virtualization/forms/bulk_import.py:44 msgid "Type of cluster" msgstr "Type klynge" -#: netbox/virtualization/forms/bulk_import.py:51 +#: virtualization/forms/bulk_import.py:51 msgid "Assigned cluster group" msgstr "Tildelt klyngegruppe" -#: netbox/virtualization/forms/bulk_import.py:96 +#: virtualization/forms/bulk_import.py:96 msgid "Assigned cluster" msgstr "Tildelt klynge" -#: netbox/virtualization/forms/bulk_import.py:103 +#: virtualization/forms/bulk_import.py:103 msgid "Assigned device within cluster" msgstr "Tildelt enhed inden for klynge" -#: netbox/virtualization/forms/filtersets.py:183 +#: virtualization/forms/filtersets.py:183 msgid "Serial number" msgstr "Serienummer" -#: netbox/virtualization/forms/model_forms.py:153 +#: virtualization/forms/model_forms.py:153 #, python-brace-format msgid "" "{device} belongs to a different site ({device_site}) than the cluster " @@ -15328,48 +14583,48 @@ msgstr "" "{device} tilhører et andet område ({device_site}) end cluster " "({cluster_site})" -#: netbox/virtualization/forms/model_forms.py:192 +#: virtualization/forms/model_forms.py:192 msgid "Optionally pin this VM to a specific host device within the cluster" msgstr "Fastgør eventuelt denne VM til en bestemt værtsenhed i klyngen" -#: netbox/virtualization/forms/model_forms.py:221 +#: virtualization/forms/model_forms.py:221 msgid "Site/Cluster" msgstr "Område/Cluster" -#: netbox/virtualization/forms/model_forms.py:244 +#: virtualization/forms/model_forms.py:244 msgid "Disk size is managed via the attachment of virtual disks." msgstr "Diskstørrelse styres via vedhæftning af virtuelle diske." -#: netbox/virtualization/forms/model_forms.py:372 -#: netbox/virtualization/tables/virtualmachines.py:111 +#: virtualization/forms/model_forms.py:372 +#: virtualization/tables/virtualmachines.py:111 msgid "Disk" msgstr "Disken" -#: netbox/virtualization/models/clusters.py:25 +#: virtualization/models/clusters.py:25 msgid "cluster type" msgstr "klyngetype" -#: netbox/virtualization/models/clusters.py:26 +#: virtualization/models/clusters.py:26 msgid "cluster types" msgstr "klyngetyper" -#: netbox/virtualization/models/clusters.py:45 +#: virtualization/models/clusters.py:45 msgid "cluster group" msgstr "klyngegruppe" -#: netbox/virtualization/models/clusters.py:46 +#: virtualization/models/clusters.py:46 msgid "cluster groups" msgstr "klyngegrupper" -#: netbox/virtualization/models/clusters.py:121 +#: virtualization/models/clusters.py:121 msgid "cluster" msgstr "klynge" -#: netbox/virtualization/models/clusters.py:122 +#: virtualization/models/clusters.py:122 msgid "clusters" msgstr "klynger" -#: netbox/virtualization/models/clusters.py:141 +#: virtualization/models/clusters.py:141 #, python-brace-format msgid "" "{count} devices are assigned as hosts for this cluster but are not in site " @@ -15378,47 +14633,47 @@ msgstr "" "{count} enheder er tildelt som hostene til dette cluster, men er ikke på " "område {site}" -#: netbox/virtualization/models/virtualmachines.py:123 +#: virtualization/models/virtualmachines.py:123 msgid "memory (MB)" msgstr "hukommelse (MB)" -#: netbox/virtualization/models/virtualmachines.py:128 +#: virtualization/models/virtualmachines.py:128 msgid "disk (MB)" msgstr "disk (MB)" -#: netbox/virtualization/models/virtualmachines.py:166 +#: virtualization/models/virtualmachines.py:166 msgid "Virtual machine name must be unique per cluster." msgstr "Navnet på den virtuelle maskine skal være entydigt pr. klynge." -#: netbox/virtualization/models/virtualmachines.py:169 +#: virtualization/models/virtualmachines.py:169 msgid "virtual machine" msgstr "virtuel maskine" -#: netbox/virtualization/models/virtualmachines.py:170 +#: virtualization/models/virtualmachines.py:170 msgid "virtual machines" msgstr "virtuelle maskiner" -#: netbox/virtualization/models/virtualmachines.py:184 +#: virtualization/models/virtualmachines.py:184 msgid "A virtual machine must be assigned to a site and/or cluster." msgstr "En virtuel maskine skal tildeles et område og/eller et cluster." -#: netbox/virtualization/models/virtualmachines.py:191 +#: virtualization/models/virtualmachines.py:191 #, python-brace-format msgid "" "The selected cluster ({cluster}) is not assigned to this site ({site})." msgstr "Det valgte cluster ({cluster}) er ikke tildelt dette område ({site})." -#: netbox/virtualization/models/virtualmachines.py:198 +#: virtualization/models/virtualmachines.py:198 msgid "Must specify a cluster when assigning a host device." msgstr "Skal angive en klynge, når du tildeler en værtsenhed." -#: netbox/virtualization/models/virtualmachines.py:203 +#: virtualization/models/virtualmachines.py:203 #, python-brace-format msgid "" "The selected device ({device}) is not assigned to this cluster ({cluster})." msgstr "Den valgte enhed ({device}) er ikke tildelt denne klynge ({cluster})." -#: netbox/virtualization/models/virtualmachines.py:215 +#: virtualization/models/virtualmachines.py:215 #, python-brace-format msgid "" "The specified disk size ({size}) must match the aggregate size of assigned " @@ -15427,17 +14682,17 @@ msgstr "" "Den angivne diskstørrelse ({size}) skal matche den samlede størrelse af " "tildelte virtuelle diske ({total_size})." -#: netbox/virtualization/models/virtualmachines.py:229 +#: virtualization/models/virtualmachines.py:229 #, python-brace-format msgid "Must be an IPv{family} address. ({ip} is an IPv{version} address.)" msgstr "Skal være en IPV{family} adresse. ({ip} er en IPV{version} adresse.)" -#: netbox/virtualization/models/virtualmachines.py:238 +#: virtualization/models/virtualmachines.py:238 #, python-brace-format msgid "The specified IP address ({ip}) is not assigned to this VM." msgstr "Den angivne IP-adresse ({ip}) er ikke tildelt denne VM." -#: netbox/virtualization/models/virtualmachines.py:396 +#: virtualization/models/virtualmachines.py:396 #, python-brace-format msgid "" "The selected parent interface ({parent}) belongs to a different virtual " @@ -15446,7 +14701,7 @@ msgstr "" "Den valgte overordnede grænseflade ({parent}) tilhører en anden virtuel " "maskine ({virtual_machine})." -#: netbox/virtualization/models/virtualmachines.py:411 +#: virtualization/models/virtualmachines.py:411 #, python-brace-format msgid "" "The selected bridge interface ({bridge}) belongs to a different virtual " @@ -15455,7 +14710,7 @@ msgstr "" "Den valgte brogrænseflade ({bridge}) tilhører en anden virtuel maskine " "({virtual_machine})." -#: netbox/virtualization/models/virtualmachines.py:422 +#: virtualization/models/virtualmachines.py:422 #, python-brace-format msgid "" "The untagged VLAN ({untagged_vlan}) must belong to the same site as the " @@ -15464,399 +14719,392 @@ msgstr "" "Den umærkede VLAN ({untagged_vlan}) skal tilhøre det samme område som " "grænsefladens overordnede virtuelle maskine, eller den skal være global." -#: netbox/virtualization/models/virtualmachines.py:434 +#: virtualization/models/virtualmachines.py:434 msgid "size (MB)" msgstr "størrelse (MB)" -#: netbox/virtualization/models/virtualmachines.py:438 +#: virtualization/models/virtualmachines.py:438 msgid "virtual disk" msgstr "virtuel disk" -#: netbox/virtualization/models/virtualmachines.py:439 +#: virtualization/models/virtualmachines.py:439 msgid "virtual disks" msgstr "virtuelle diske" -#: netbox/virtualization/views.py:275 +#: virtualization/views.py:275 #, python-brace-format msgid "Added {count} devices to cluster {cluster}" msgstr "Tilføjet {count} enheder til klynge {cluster}" -#: netbox/virtualization/views.py:310 +#: virtualization/views.py:310 #, python-brace-format msgid "Removed {count} devices from cluster {cluster}" msgstr "Fjernet {count} enheder fra klynge {cluster}" -#: netbox/vpn/choices.py:31 +#: vpn/choices.py:31 msgid "IPsec - Transport" msgstr "IPsec - Transport" -#: netbox/vpn/choices.py:32 +#: vpn/choices.py:32 msgid "IPsec - Tunnel" msgstr "IPsec - Tunnel" -#: netbox/vpn/choices.py:33 +#: vpn/choices.py:33 msgid "IP-in-IP" msgstr "IP-i-IP" -#: netbox/vpn/choices.py:34 +#: vpn/choices.py:34 msgid "GRE" msgstr "GREE" -#: netbox/vpn/choices.py:56 +#: vpn/choices.py:56 msgid "Hub" msgstr "Hub" -#: netbox/vpn/choices.py:57 +#: vpn/choices.py:57 msgid "Spoke" msgstr "Talede" -#: netbox/vpn/choices.py:80 +#: vpn/choices.py:80 msgid "Aggressive" msgstr "Aggressiv" -#: netbox/vpn/choices.py:81 +#: vpn/choices.py:81 msgid "Main" msgstr "Vigtigste" -#: netbox/vpn/choices.py:92 +#: vpn/choices.py:92 msgid "Pre-shared keys" msgstr "Foruddelte nøgler" -#: netbox/vpn/choices.py:93 +#: vpn/choices.py:93 msgid "Certificates" msgstr "Certifikater" -#: netbox/vpn/choices.py:94 +#: vpn/choices.py:94 msgid "RSA signatures" msgstr "RSA signaturer" -#: netbox/vpn/choices.py:95 +#: vpn/choices.py:95 msgid "DSA signatures" msgstr "DSA signaturer" -#: netbox/vpn/choices.py:178 netbox/vpn/choices.py:179 -#: netbox/vpn/choices.py:180 netbox/vpn/choices.py:181 -#: netbox/vpn/choices.py:182 netbox/vpn/choices.py:183 -#: netbox/vpn/choices.py:184 netbox/vpn/choices.py:185 -#: netbox/vpn/choices.py:186 netbox/vpn/choices.py:187 -#: netbox/vpn/choices.py:188 netbox/vpn/choices.py:189 -#: netbox/vpn/choices.py:190 netbox/vpn/choices.py:191 -#: netbox/vpn/choices.py:192 netbox/vpn/choices.py:193 -#: netbox/vpn/choices.py:194 netbox/vpn/choices.py:195 -#: netbox/vpn/choices.py:196 netbox/vpn/choices.py:197 -#: netbox/vpn/choices.py:198 netbox/vpn/choices.py:199 -#: netbox/vpn/choices.py:200 netbox/vpn/choices.py:201 +#: vpn/choices.py:178 vpn/choices.py:179 vpn/choices.py:180 vpn/choices.py:181 +#: vpn/choices.py:182 vpn/choices.py:183 vpn/choices.py:184 vpn/choices.py:185 +#: vpn/choices.py:186 vpn/choices.py:187 vpn/choices.py:188 vpn/choices.py:189 +#: vpn/choices.py:190 vpn/choices.py:191 vpn/choices.py:192 vpn/choices.py:193 +#: vpn/choices.py:194 vpn/choices.py:195 vpn/choices.py:196 vpn/choices.py:197 +#: vpn/choices.py:198 vpn/choices.py:199 vpn/choices.py:200 vpn/choices.py:201 #, python-brace-format msgid "Group {n}" msgstr "Gruppe {n}" -#: netbox/vpn/choices.py:243 +#: vpn/choices.py:243 msgid "Ethernet Private LAN" msgstr "Ethernet Privat LAN" -#: netbox/vpn/choices.py:244 +#: vpn/choices.py:244 msgid "Ethernet Virtual Private LAN" msgstr "Ethernet virtuelt privat LAN" -#: netbox/vpn/choices.py:247 +#: vpn/choices.py:247 msgid "Ethernet Private Tree" msgstr "Ethernet privat træ" -#: netbox/vpn/choices.py:248 +#: vpn/choices.py:248 msgid "Ethernet Virtual Private Tree" msgstr "Ethernet virtuelt privat træ" -#: netbox/vpn/filtersets.py:41 +#: vpn/filtersets.py:41 msgid "Tunnel group (ID)" msgstr "Tunnelgruppe (ID)" -#: netbox/vpn/filtersets.py:47 +#: vpn/filtersets.py:47 msgid "Tunnel group (slug)" msgstr "Tunnelgruppe (slug)" -#: netbox/vpn/filtersets.py:54 +#: vpn/filtersets.py:54 msgid "IPSec profile (ID)" msgstr "IPsec-profil (ID)" -#: netbox/vpn/filtersets.py:60 +#: vpn/filtersets.py:60 msgid "IPSec profile (name)" msgstr "IPsec-profil (navn)" -#: netbox/vpn/filtersets.py:81 +#: vpn/filtersets.py:81 msgid "Tunnel (ID)" msgstr "Tunnel (ID)" -#: netbox/vpn/filtersets.py:87 +#: vpn/filtersets.py:87 msgid "Tunnel (name)" msgstr "Tunnel (navn)" -#: netbox/vpn/filtersets.py:118 +#: vpn/filtersets.py:118 msgid "Outside IP (ID)" msgstr "Udenfor IP (ID)" -#: netbox/vpn/filtersets.py:130 netbox/vpn/filtersets.py:263 +#: vpn/filtersets.py:130 vpn/filtersets.py:263 msgid "IKE policy (ID)" msgstr "IKE-politik (ID)" -#: netbox/vpn/filtersets.py:136 netbox/vpn/filtersets.py:269 +#: vpn/filtersets.py:136 vpn/filtersets.py:269 msgid "IKE policy (name)" msgstr "IKE-politik (navn)" -#: netbox/vpn/filtersets.py:200 netbox/vpn/filtersets.py:273 +#: vpn/filtersets.py:200 vpn/filtersets.py:273 msgid "IPSec policy (ID)" msgstr "IPsec-politik (ID)" -#: netbox/vpn/filtersets.py:206 netbox/vpn/filtersets.py:279 +#: vpn/filtersets.py:206 vpn/filtersets.py:279 msgid "IPSec policy (name)" msgstr "IPsec-politik (navn)" -#: netbox/vpn/filtersets.py:348 +#: vpn/filtersets.py:348 msgid "L2VPN (slug)" msgstr "L2VPN (slug)" -#: netbox/vpn/filtersets.py:412 +#: vpn/filtersets.py:412 msgid "VM Interface (ID)" msgstr "VM-grænseflade (ID)" -#: netbox/vpn/filtersets.py:418 +#: vpn/filtersets.py:418 msgid "VLAN (name)" msgstr "VLAN (navn)" -#: netbox/vpn/forms/bulk_edit.py:45 netbox/vpn/forms/bulk_import.py:42 -#: netbox/vpn/forms/filtersets.py:54 +#: vpn/forms/bulk_edit.py:45 vpn/forms/bulk_import.py:42 +#: vpn/forms/filtersets.py:54 msgid "Tunnel group" msgstr "Tunnelgruppe" -#: netbox/vpn/forms/bulk_edit.py:117 netbox/vpn/models/crypto.py:47 +#: vpn/forms/bulk_edit.py:117 vpn/models/crypto.py:47 msgid "SA lifetime" msgstr "SA levetid" -#: netbox/vpn/forms/bulk_edit.py:151 netbox/wireless/forms/bulk_edit.py:79 -#: netbox/wireless/forms/bulk_edit.py:126 -#: netbox/wireless/forms/filtersets.py:64 -#: netbox/wireless/forms/filtersets.py:98 +#: vpn/forms/bulk_edit.py:151 wireless/forms/bulk_edit.py:79 +#: wireless/forms/bulk_edit.py:126 wireless/forms/filtersets.py:64 +#: wireless/forms/filtersets.py:98 msgid "Pre-shared key" msgstr "Foruddelt nøgle" -#: netbox/vpn/forms/bulk_edit.py:237 netbox/vpn/forms/bulk_import.py:239 -#: netbox/vpn/forms/filtersets.py:199 netbox/vpn/forms/model_forms.py:370 -#: netbox/vpn/models/crypto.py:104 +#: vpn/forms/bulk_edit.py:237 vpn/forms/bulk_import.py:239 +#: vpn/forms/filtersets.py:199 vpn/forms/model_forms.py:370 +#: vpn/models/crypto.py:104 msgid "IKE policy" msgstr "IKE-politik" -#: netbox/vpn/forms/bulk_edit.py:242 netbox/vpn/forms/bulk_import.py:244 -#: netbox/vpn/forms/filtersets.py:204 netbox/vpn/forms/model_forms.py:374 -#: netbox/vpn/models/crypto.py:209 +#: vpn/forms/bulk_edit.py:242 vpn/forms/bulk_import.py:244 +#: vpn/forms/filtersets.py:204 vpn/forms/model_forms.py:374 +#: vpn/models/crypto.py:209 msgid "IPSec policy" msgstr "IPsec-politik" -#: netbox/vpn/forms/bulk_import.py:50 +#: vpn/forms/bulk_import.py:50 msgid "Tunnel encapsulation" msgstr "Tunnelindkapsling" -#: netbox/vpn/forms/bulk_import.py:83 +#: vpn/forms/bulk_import.py:83 msgid "Operational role" msgstr "Operationel rolle" -#: netbox/vpn/forms/bulk_import.py:90 +#: vpn/forms/bulk_import.py:90 msgid "Parent device of assigned interface" msgstr "Overordnet enhed til tildelt grænseflade" -#: netbox/vpn/forms/bulk_import.py:97 +#: vpn/forms/bulk_import.py:97 msgid "Parent VM of assigned interface" msgstr "Overordnet VM for tildelt grænseflade" -#: netbox/vpn/forms/bulk_import.py:104 +#: vpn/forms/bulk_import.py:104 msgid "Device or virtual machine interface" msgstr "Enheds- eller virtuel maskingrænseflade" -#: netbox/vpn/forms/bulk_import.py:183 +#: vpn/forms/bulk_import.py:183 msgid "IKE proposal(s)" msgstr "IKE-forslag" -#: netbox/vpn/forms/bulk_import.py:215 netbox/vpn/models/crypto.py:197 +#: vpn/forms/bulk_import.py:215 vpn/models/crypto.py:197 msgid "Diffie-Hellman group for Perfect Forward Secrecy" msgstr "Diffie-Hellman-gruppe til Perfect Forward Secrecy" -#: netbox/vpn/forms/bulk_import.py:222 +#: vpn/forms/bulk_import.py:222 msgid "IPSec proposal(s)" msgstr "IPsec-forslag" -#: netbox/vpn/forms/bulk_import.py:236 +#: vpn/forms/bulk_import.py:236 msgid "IPSec protocol" msgstr "IPsec-protokol" -#: netbox/vpn/forms/bulk_import.py:266 +#: vpn/forms/bulk_import.py:266 msgid "L2VPN type" msgstr "L2VPN-type" -#: netbox/vpn/forms/bulk_import.py:287 +#: vpn/forms/bulk_import.py:287 msgid "Parent device (for interface)" msgstr "Forældreenhed (til grænseflade)" -#: netbox/vpn/forms/bulk_import.py:294 +#: vpn/forms/bulk_import.py:294 msgid "Parent virtual machine (for interface)" msgstr "Virtuel forældremaskine (til grænseflade)" -#: netbox/vpn/forms/bulk_import.py:301 +#: vpn/forms/bulk_import.py:301 msgid "Assigned interface (device or VM)" msgstr "Tildelt grænseflade (enhed eller VM)" -#: netbox/vpn/forms/bulk_import.py:334 +#: vpn/forms/bulk_import.py:334 msgid "Cannot import device and VM interface terminations simultaneously." msgstr "Kan ikke importere enheds- og VM-grænsefladeafslutninger samtidigt." -#: netbox/vpn/forms/bulk_import.py:336 +#: vpn/forms/bulk_import.py:336 msgid "Each termination must specify either an interface or a VLAN." msgstr "Hver afslutning skal angive enten en grænseflade eller et VLAN." -#: netbox/vpn/forms/bulk_import.py:338 +#: vpn/forms/bulk_import.py:338 msgid "Cannot assign both an interface and a VLAN." msgstr "Kan ikke tildele både en grænseflade og et VLAN." -#: netbox/vpn/forms/filtersets.py:130 +#: vpn/forms/filtersets.py:130 msgid "IKE version" msgstr "IKE-udgave" -#: netbox/vpn/forms/filtersets.py:142 netbox/vpn/forms/filtersets.py:175 -#: netbox/vpn/forms/model_forms.py:298 netbox/vpn/forms/model_forms.py:334 +#: vpn/forms/filtersets.py:142 vpn/forms/filtersets.py:175 +#: vpn/forms/model_forms.py:298 vpn/forms/model_forms.py:334 msgid "Proposal" msgstr "Forslag" -#: netbox/vpn/forms/filtersets.py:251 +#: vpn/forms/filtersets.py:251 msgid "Assigned Object Type" msgstr "Tildelt objekttype" -#: netbox/vpn/forms/model_forms.py:95 netbox/vpn/forms/model_forms.py:130 -#: netbox/vpn/forms/model_forms.py:240 netbox/vpn/tables/tunnels.py:91 +#: vpn/forms/model_forms.py:95 vpn/forms/model_forms.py:130 +#: vpn/forms/model_forms.py:240 vpn/tables/tunnels.py:91 msgid "Tunnel interface" msgstr "Tunnelgrænseflade" -#: netbox/vpn/forms/model_forms.py:150 +#: vpn/forms/model_forms.py:150 msgid "First Termination" msgstr "Første opsigelse" -#: netbox/vpn/forms/model_forms.py:153 +#: vpn/forms/model_forms.py:153 msgid "Second Termination" msgstr "Anden opsigelse" -#: netbox/vpn/forms/model_forms.py:197 +#: vpn/forms/model_forms.py:197 msgid "This parameter is required when defining a termination." msgstr "Denne parameter er påkrævet, når der defineres en opsigelse." -#: netbox/vpn/forms/model_forms.py:320 netbox/vpn/forms/model_forms.py:356 +#: vpn/forms/model_forms.py:320 vpn/forms/model_forms.py:356 msgid "Policy" msgstr "Politik" -#: netbox/vpn/forms/model_forms.py:487 +#: vpn/forms/model_forms.py:487 msgid "A termination must specify an interface or VLAN." msgstr "En opsigelse skal angive en grænseflade eller VLAN." -#: netbox/vpn/forms/model_forms.py:489 +#: vpn/forms/model_forms.py:489 msgid "" "A termination can only have one terminating object (an interface or VLAN)." msgstr "" "En terminering kan kun have et afsluttende objekt (en grænseflade eller " "VLAN)." -#: netbox/vpn/models/crypto.py:33 +#: vpn/models/crypto.py:33 msgid "encryption algorithm" msgstr "krypteringsalgoritme" -#: netbox/vpn/models/crypto.py:37 +#: vpn/models/crypto.py:37 msgid "authentication algorithm" msgstr "autentificeringsalgoritme" -#: netbox/vpn/models/crypto.py:44 +#: vpn/models/crypto.py:44 msgid "Diffie-Hellman group ID" msgstr "Diffie-Hellman gruppe-ID" -#: netbox/vpn/models/crypto.py:50 +#: vpn/models/crypto.py:50 msgid "Security association lifetime (in seconds)" msgstr "Sikkerhedsforeningens levetid (i sekunder)" -#: netbox/vpn/models/crypto.py:59 +#: vpn/models/crypto.py:59 msgid "IKE proposal" msgstr "IKE-forslag" -#: netbox/vpn/models/crypto.py:60 +#: vpn/models/crypto.py:60 msgid "IKE proposals" msgstr "IKE-forslag" -#: netbox/vpn/models/crypto.py:76 +#: vpn/models/crypto.py:76 msgid "version" msgstr "udgave" -#: netbox/vpn/models/crypto.py:88 netbox/vpn/models/crypto.py:190 +#: vpn/models/crypto.py:88 vpn/models/crypto.py:190 msgid "proposals" msgstr "forslag" -#: netbox/vpn/models/crypto.py:91 netbox/wireless/models.py:39 +#: vpn/models/crypto.py:91 wireless/models.py:39 msgid "pre-shared key" msgstr "foruddelt nøgle" -#: netbox/vpn/models/crypto.py:105 +#: vpn/models/crypto.py:105 msgid "IKE policies" msgstr "IKE politikker" -#: netbox/vpn/models/crypto.py:118 +#: vpn/models/crypto.py:118 msgid "Mode is required for selected IKE version" msgstr "Tilstand er påkrævet for valgt IKE-version" -#: netbox/vpn/models/crypto.py:122 +#: vpn/models/crypto.py:122 msgid "Mode cannot be used for selected IKE version" msgstr "Tilstand kan ikke bruges til valgt IKE-version" -#: netbox/vpn/models/crypto.py:136 +#: vpn/models/crypto.py:136 msgid "encryption" msgstr "kryptering" -#: netbox/vpn/models/crypto.py:141 +#: vpn/models/crypto.py:141 msgid "authentication" msgstr "autentificering" -#: netbox/vpn/models/crypto.py:149 +#: vpn/models/crypto.py:149 msgid "Security association lifetime (seconds)" msgstr "Sikkerhedsassocieringens levetid (sekunder)" -#: netbox/vpn/models/crypto.py:155 +#: vpn/models/crypto.py:155 msgid "Security association lifetime (in kilobytes)" msgstr "Sikkerhedsassocieringens levetid (i kilobyte)" -#: netbox/vpn/models/crypto.py:164 +#: vpn/models/crypto.py:164 msgid "IPSec proposal" msgstr "IPsec-forslag" -#: netbox/vpn/models/crypto.py:165 +#: vpn/models/crypto.py:165 msgid "IPSec proposals" msgstr "IPsec-forslag" -#: netbox/vpn/models/crypto.py:178 +#: vpn/models/crypto.py:178 msgid "Encryption and/or authentication algorithm must be defined" msgstr "Kryptering og/eller autentificeringsalgoritme skal defineres" -#: netbox/vpn/models/crypto.py:210 +#: vpn/models/crypto.py:210 msgid "IPSec policies" msgstr "IPsec-politikker" -#: netbox/vpn/models/crypto.py:251 +#: vpn/models/crypto.py:251 msgid "IPSec profiles" msgstr "IPsec-profiler" -#: netbox/vpn/models/l2vpn.py:116 +#: vpn/models/l2vpn.py:116 msgid "L2VPN termination" msgstr "L2VPN-opsigelse" -#: netbox/vpn/models/l2vpn.py:117 +#: vpn/models/l2vpn.py:117 msgid "L2VPN terminations" msgstr "L2VPN-opsigelser" -#: netbox/vpn/models/l2vpn.py:135 +#: vpn/models/l2vpn.py:135 #, python-brace-format msgid "L2VPN Termination already assigned ({assigned_object})" msgstr "L2VPN-opsigelse er allerede tildelt ({assigned_object})" -#: netbox/vpn/models/l2vpn.py:147 +#: vpn/models/l2vpn.py:147 #, python-brace-format msgid "" "{l2vpn_type} L2VPNs cannot have more than two terminations; found " @@ -15865,194 +15113,186 @@ msgstr "" "{l2vpn_type} L2VPN'er kan ikke have mere end to terminationer; fundet " "{terminations_count} allerede defineret." -#: netbox/vpn/models/tunnels.py:26 +#: vpn/models/tunnels.py:26 msgid "tunnel group" msgstr "tunnelgruppe" -#: netbox/vpn/models/tunnels.py:27 +#: vpn/models/tunnels.py:27 msgid "tunnel groups" msgstr "tunnelgrupper" -#: netbox/vpn/models/tunnels.py:53 +#: vpn/models/tunnels.py:53 msgid "encapsulation" msgstr "indkapsling" -#: netbox/vpn/models/tunnels.py:72 +#: vpn/models/tunnels.py:72 msgid "tunnel ID" msgstr "Tunnel-ID" -#: netbox/vpn/models/tunnels.py:94 +#: vpn/models/tunnels.py:94 msgid "tunnel" msgstr "tunnel" -#: netbox/vpn/models/tunnels.py:95 +#: vpn/models/tunnels.py:95 msgid "tunnels" msgstr "tunneler" -#: netbox/vpn/models/tunnels.py:153 +#: vpn/models/tunnels.py:153 msgid "An object may be terminated to only one tunnel at a time." msgstr "Et objekt må kun afsluttes til en tunnel ad gangen." -#: netbox/vpn/models/tunnels.py:156 +#: vpn/models/tunnels.py:156 msgid "tunnel termination" msgstr "tunnelafslutning" -#: netbox/vpn/models/tunnels.py:157 +#: vpn/models/tunnels.py:157 msgid "tunnel terminations" msgstr "tunnelafslutninger" -#: netbox/vpn/models/tunnels.py:174 +#: vpn/models/tunnels.py:174 #, python-brace-format msgid "{name} is already attached to a tunnel ({tunnel})." msgstr "{name} er allerede knyttet til en tunnel ({tunnel})." -#: netbox/vpn/tables/crypto.py:22 +#: vpn/tables/crypto.py:22 msgid "Authentication Method" msgstr "Autentificeringsmetode" -#: netbox/vpn/tables/crypto.py:25 netbox/vpn/tables/crypto.py:97 +#: vpn/tables/crypto.py:25 vpn/tables/crypto.py:97 msgid "Encryption Algorithm" msgstr "Krypteringsalgoritme" -#: netbox/vpn/tables/crypto.py:28 netbox/vpn/tables/crypto.py:100 +#: vpn/tables/crypto.py:28 vpn/tables/crypto.py:100 msgid "Authentication Algorithm" msgstr "Autentificeringsalgoritme" -#: netbox/vpn/tables/crypto.py:34 +#: vpn/tables/crypto.py:34 msgid "SA Lifetime" msgstr "SA levetid" -#: netbox/vpn/tables/crypto.py:71 +#: vpn/tables/crypto.py:71 msgid "Pre-shared Key" msgstr "Foruddelt nøgle" -#: netbox/vpn/tables/crypto.py:103 +#: vpn/tables/crypto.py:103 msgid "SA Lifetime (Seconds)" msgstr "SA levetid (sekunder)" -#: netbox/vpn/tables/crypto.py:106 +#: vpn/tables/crypto.py:106 msgid "SA Lifetime (KB)" msgstr "SA levetid (KB)" -#: netbox/vpn/tables/l2vpn.py:69 +#: vpn/tables/l2vpn.py:69 msgid "Object Parent" msgstr "Objektforælder" -#: netbox/vpn/tables/l2vpn.py:74 +#: vpn/tables/l2vpn.py:74 msgid "Object Site" msgstr "Objektområde" -#: netbox/wireless/choices.py:11 +#: wireless/choices.py:11 msgid "Access point" msgstr "Adgangspunkt" -#: netbox/wireless/choices.py:12 +#: wireless/choices.py:12 msgid "Station" msgstr "Stationen" -#: netbox/wireless/choices.py:467 +#: wireless/choices.py:467 msgid "Open" msgstr "Åbn" -#: netbox/wireless/choices.py:469 +#: wireless/choices.py:469 msgid "WPA Personal (PSK)" msgstr "WPA Personlig (PSK)" -#: netbox/wireless/choices.py:470 +#: wireless/choices.py:470 msgid "WPA Enterprise" msgstr "WPA-virksomhed" -#: netbox/wireless/forms/bulk_edit.py:73 -#: netbox/wireless/forms/bulk_edit.py:120 -#: netbox/wireless/forms/bulk_import.py:68 -#: netbox/wireless/forms/bulk_import.py:71 -#: netbox/wireless/forms/bulk_import.py:110 -#: netbox/wireless/forms/bulk_import.py:113 -#: netbox/wireless/forms/filtersets.py:59 -#: netbox/wireless/forms/filtersets.py:93 +#: wireless/forms/bulk_edit.py:73 wireless/forms/bulk_edit.py:120 +#: wireless/forms/bulk_import.py:68 wireless/forms/bulk_import.py:71 +#: wireless/forms/bulk_import.py:110 wireless/forms/bulk_import.py:113 +#: wireless/forms/filtersets.py:59 wireless/forms/filtersets.py:93 msgid "Authentication cipher" msgstr "Autentificeringskryptering" -#: netbox/wireless/forms/bulk_edit.py:134 -#: netbox/wireless/forms/bulk_import.py:116 -#: netbox/wireless/forms/bulk_import.py:119 -#: netbox/wireless/forms/filtersets.py:106 +#: wireless/forms/bulk_edit.py:134 wireless/forms/bulk_import.py:116 +#: wireless/forms/bulk_import.py:119 wireless/forms/filtersets.py:106 msgid "Distance unit" msgstr "Afstandsenhed" -#: netbox/wireless/forms/bulk_import.py:52 +#: wireless/forms/bulk_import.py:52 msgid "Bridged VLAN" msgstr "Broet VLAN" -#: netbox/wireless/forms/bulk_import.py:89 -#: netbox/wireless/tables/wirelesslink.py:28 +#: wireless/forms/bulk_import.py:89 wireless/tables/wirelesslink.py:28 msgid "Interface A" msgstr "Grænseflade A" -#: netbox/wireless/forms/bulk_import.py:93 -#: netbox/wireless/tables/wirelesslink.py:37 +#: wireless/forms/bulk_import.py:93 wireless/tables/wirelesslink.py:37 msgid "Interface B" msgstr "Grænseflade B" -#: netbox/wireless/forms/model_forms.py:161 +#: wireless/forms/model_forms.py:161 msgid "Side B" msgstr "Side B" -#: netbox/wireless/models.py:31 +#: wireless/models.py:31 msgid "authentication cipher" msgstr "autentificeringskryptering" -#: netbox/wireless/models.py:69 +#: wireless/models.py:69 msgid "wireless LAN group" msgstr "trådløs LAN-gruppe" -#: netbox/wireless/models.py:70 +#: wireless/models.py:70 msgid "wireless LAN groups" msgstr "trådløse LAN-grupper" -#: netbox/wireless/models.py:116 +#: wireless/models.py:116 msgid "wireless LAN" msgstr "trådløst LAN" -#: netbox/wireless/models.py:144 +#: wireless/models.py:144 msgid "interface A" msgstr "grænseflade A" -#: netbox/wireless/models.py:151 +#: wireless/models.py:151 msgid "interface B" msgstr "grænseflade B" -#: netbox/wireless/models.py:165 +#: wireless/models.py:165 msgid "distance" msgstr "afstand" -#: netbox/wireless/models.py:172 +#: wireless/models.py:172 msgid "distance unit" msgstr "afstandsenhed" -#: netbox/wireless/models.py:219 +#: wireless/models.py:219 msgid "wireless link" msgstr "trådløst link" -#: netbox/wireless/models.py:220 +#: wireless/models.py:220 msgid "wireless links" msgstr "trådløse links" -#: netbox/wireless/models.py:236 +#: wireless/models.py:236 msgid "Must specify a unit when setting a wireless distance" msgstr "Skal angive en enhed, når du indstiller en trådløs afstand" -#: netbox/wireless/models.py:242 netbox/wireless/models.py:248 +#: wireless/models.py:242 wireless/models.py:248 #, python-brace-format msgid "{type} is not a wireless interface." msgstr "{type} er ikke en trådløs grænseflade." -#: netbox/wireless/utils.py:16 +#: wireless/utils.py:16 #, python-brace-format msgid "Invalid channel value: {channel}" msgstr "Ugyldig kanalværdi: {channel}" -#: netbox/wireless/utils.py:26 +#: wireless/utils.py:26 #, python-brace-format msgid "Invalid channel attribute: {name}" msgstr "Ugyldig kanalattribut: {name}" diff --git a/netbox/translations/de/LC_MESSAGES/django.po b/netbox/translations/de/LC_MESSAGES/django.po index 4635cd650..e2964dc56 100644 --- a/netbox/translations/de/LC_MESSAGES/django.po +++ b/netbox/translations/de/LC_MESSAGES/django.po @@ -18,7 +18,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-12 05:02+0000\n" +"POT-Creation-Date: 2024-10-28 19:20+0000\n" "PO-Revision-Date: 2023-10-30 17:48+0000\n" "Last-Translator: chbally, 2024\n" "Language-Team: German (https://app.transifex.com/netbox-community/teams/178115/de/)\n" @@ -28,2146 +28,1877 @@ msgstr "" "Language: de\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: netbox/account/tables.py:27 netbox/templates/account/token.html:22 -#: netbox/templates/users/token.html:17 netbox/users/forms/bulk_import.py:39 -#: netbox/users/forms/model_forms.py:112 +#: account/tables.py:27 templates/account/token.html:22 +#: templates/users/token.html:17 users/forms/bulk_import.py:39 +#: users/forms/model_forms.py:112 msgid "Key" msgstr "Schlüssel" -#: netbox/account/tables.py:31 netbox/users/forms/filtersets.py:132 +#: account/tables.py:31 users/forms/filtersets.py:132 msgid "Write Enabled" msgstr "Schreibberechtigung" -#: netbox/account/tables.py:35 netbox/core/choices.py:86 -#: netbox/core/tables/jobs.py:29 netbox/core/tables/tasks.py:79 -#: netbox/extras/tables/tables.py:335 netbox/extras/tables/tables.py:566 -#: netbox/templates/account/token.html:43 -#: netbox/templates/core/configrevision.html:26 -#: netbox/templates/core/configrevision_restore.html:12 -#: netbox/templates/core/job.html:69 netbox/templates/core/rq_task.html:16 -#: netbox/templates/core/rq_task.html:73 -#: netbox/templates/core/rq_worker.html:14 -#: netbox/templates/extras/htmx/script_result.html:12 -#: netbox/templates/extras/journalentry.html:22 -#: netbox/templates/generic/object.html:58 -#: netbox/templates/users/token.html:35 +#: account/tables.py:35 core/choices.py:86 core/tables/jobs.py:29 +#: core/tables/tasks.py:79 extras/tables/tables.py:335 +#: extras/tables/tables.py:566 templates/account/token.html:43 +#: templates/core/configrevision.html:26 +#: templates/core/configrevision_restore.html:12 templates/core/job.html:69 +#: templates/core/rq_task.html:16 templates/core/rq_task.html:73 +#: templates/core/rq_worker.html:14 +#: templates/extras/htmx/script_result.html:12 +#: templates/extras/journalentry.html:22 templates/generic/object.html:58 +#: templates/users/token.html:35 msgid "Created" msgstr "Erstellt" -#: netbox/account/tables.py:39 netbox/templates/account/token.html:47 -#: netbox/templates/users/token.html:39 netbox/users/forms/bulk_edit.py:117 -#: netbox/users/forms/filtersets.py:136 +#: account/tables.py:39 templates/account/token.html:47 +#: templates/users/token.html:39 users/forms/bulk_edit.py:117 +#: users/forms/filtersets.py:136 msgid "Expires" msgstr "Läuft ab" -#: netbox/account/tables.py:42 netbox/users/forms/filtersets.py:141 +#: account/tables.py:42 users/forms/filtersets.py:141 msgid "Last Used" msgstr "Zuletzt verwendet" -#: netbox/account/tables.py:45 netbox/templates/account/token.html:55 -#: netbox/templates/users/token.html:47 netbox/users/forms/bulk_edit.py:122 -#: netbox/users/forms/model_forms.py:124 +#: account/tables.py:45 templates/account/token.html:55 +#: templates/users/token.html:47 users/forms/bulk_edit.py:122 +#: users/forms/model_forms.py:124 msgid "Allowed IPs" msgstr "Erlaubte IP-Adressen" -#: netbox/account/views.py:114 +#: account/views.py:114 #, python-brace-format msgid "Logged in as {user}." msgstr "Angemeldet als {user}." -#: netbox/account/views.py:164 +#: account/views.py:164 msgid "You have logged out." msgstr "Du hast dich abgemeldet." -#: netbox/account/views.py:216 +#: account/views.py:216 msgid "Your preferences have been updated." msgstr "Ihre Einstellungen wurden aktualisiert." -#: netbox/account/views.py:239 +#: account/views.py:239 msgid "LDAP-authenticated user credentials cannot be changed within NetBox." msgstr "" "Die LDAP Zugangsdaten können nicht innerhalb von NetBox geändert werden." -#: netbox/account/views.py:254 +#: account/views.py:254 msgid "Your password has been changed successfully." 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:185 -#: netbox/dcim/choices.py:237 netbox/dcim/choices.py:1530 -#: netbox/dcim/choices.py:1606 netbox/dcim/choices.py:1656 -#: netbox/virtualization/choices.py:20 netbox/virtualization/choices.py:45 -#: netbox/vpn/choices.py:18 +#: circuits/choices.py:21 dcim/choices.py:20 dcim/choices.py:102 +#: dcim/choices.py:185 dcim/choices.py:237 dcim/choices.py:1530 +#: dcim/choices.py:1606 dcim/choices.py:1656 virtualization/choices.py:20 +#: virtualization/choices.py:45 vpn/choices.py:18 msgid "Planned" msgstr "Geplant" -#: netbox/circuits/choices.py:22 netbox/netbox/navigation/menu.py:305 +#: circuits/choices.py:22 netbox/navigation/menu.py:305 msgid "Provisioning" msgstr "Provisionierung" -#: netbox/circuits/choices.py:23 netbox/core/tables/tasks.py:22 -#: netbox/dcim/choices.py:22 netbox/dcim/choices.py:103 -#: netbox/dcim/choices.py:184 netbox/dcim/choices.py:236 -#: netbox/dcim/choices.py:1605 netbox/dcim/choices.py:1655 -#: netbox/extras/tables/tables.py:495 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:25 -#: netbox/templates/users/user.html:37 netbox/users/forms/bulk_edit.py:38 -#: netbox/virtualization/choices.py:22 netbox/virtualization/choices.py:44 -#: netbox/vpn/choices.py:19 netbox/wireless/choices.py:25 +#: circuits/choices.py:23 core/tables/tasks.py:22 dcim/choices.py:22 +#: dcim/choices.py:103 dcim/choices.py:184 dcim/choices.py:236 +#: dcim/choices.py:1605 dcim/choices.py:1655 extras/tables/tables.py:495 +#: ipam/choices.py:31 ipam/choices.py:49 ipam/choices.py:69 +#: ipam/choices.py:154 templates/extras/configcontext.html:25 +#: templates/users/user.html:37 users/forms/bulk_edit.py:38 +#: virtualization/choices.py:22 virtualization/choices.py:44 vpn/choices.py:19 +#: wireless/choices.py:25 msgid "Active" msgstr "Aktiv" -#: netbox/circuits/choices.py:24 netbox/dcim/choices.py:183 -#: netbox/dcim/choices.py:235 netbox/dcim/choices.py:1604 -#: netbox/dcim/choices.py:1657 netbox/virtualization/choices.py:24 -#: netbox/virtualization/choices.py:43 +#: circuits/choices.py:24 dcim/choices.py:183 dcim/choices.py:235 +#: dcim/choices.py:1604 dcim/choices.py:1657 virtualization/choices.py:24 +#: virtualization/choices.py:43 msgid "Offline" msgstr "Offline" -#: netbox/circuits/choices.py:25 +#: circuits/choices.py:25 msgid "Deprovisioning" msgstr "Deprovisionierung" -#: netbox/circuits/choices.py:26 +#: circuits/choices.py:26 msgid "Decommissioned" msgstr "Stillgelegt" -#: netbox/circuits/choices.py:90 netbox/dcim/choices.py:1617 -#: netbox/tenancy/choices.py:17 +#: circuits/choices.py:90 dcim/choices.py:1617 tenancy/choices.py:17 msgid "Primary" msgstr "Primär" -#: netbox/circuits/choices.py:91 netbox/ipam/choices.py:90 -#: netbox/tenancy/choices.py:18 +#: circuits/choices.py:91 ipam/choices.py:90 tenancy/choices.py:18 msgid "Secondary" msgstr "Sekundär" -#: netbox/circuits/choices.py:92 netbox/tenancy/choices.py:19 +#: circuits/choices.py:92 tenancy/choices.py:19 msgid "Tertiary" msgstr "Tertiär" -#: netbox/circuits/choices.py:93 netbox/tenancy/choices.py:20 +#: circuits/choices.py:93 tenancy/choices.py:20 msgid "Inactive" msgstr "Inaktiv" -#: netbox/circuits/filtersets.py:31 netbox/circuits/filtersets.py:198 -#: netbox/dcim/filtersets.py:98 netbox/dcim/filtersets.py:152 -#: netbox/dcim/filtersets.py:212 netbox/dcim/filtersets.py:333 -#: netbox/dcim/filtersets.py:464 netbox/dcim/filtersets.py:1021 -#: netbox/dcim/filtersets.py:1368 netbox/dcim/filtersets.py:1903 -#: netbox/dcim/filtersets.py:2146 netbox/dcim/filtersets.py:2204 -#: netbox/ipam/filtersets.py:339 netbox/ipam/filtersets.py:959 -#: netbox/virtualization/filtersets.py:45 -#: netbox/virtualization/filtersets.py:173 netbox/vpn/filtersets.py:358 +#: circuits/filtersets.py:31 circuits/filtersets.py:198 dcim/filtersets.py:98 +#: dcim/filtersets.py:152 dcim/filtersets.py:212 dcim/filtersets.py:333 +#: dcim/filtersets.py:464 dcim/filtersets.py:1021 dcim/filtersets.py:1368 +#: dcim/filtersets.py:1903 dcim/filtersets.py:2146 dcim/filtersets.py:2204 +#: ipam/filtersets.py:339 ipam/filtersets.py:959 +#: virtualization/filtersets.py:45 virtualization/filtersets.py:173 +#: vpn/filtersets.py:358 msgid "Region (ID)" msgstr "Region (ID)" -#: netbox/circuits/filtersets.py:38 netbox/circuits/filtersets.py:205 -#: netbox/dcim/filtersets.py:105 netbox/dcim/filtersets.py:158 -#: netbox/dcim/filtersets.py:219 netbox/dcim/filtersets.py:340 -#: netbox/dcim/filtersets.py:471 netbox/dcim/filtersets.py:1028 -#: netbox/dcim/filtersets.py:1375 netbox/dcim/filtersets.py:1910 -#: netbox/dcim/filtersets.py:2153 netbox/dcim/filtersets.py:2211 -#: netbox/extras/filtersets.py:509 netbox/ipam/filtersets.py:346 -#: netbox/ipam/filtersets.py:966 netbox/virtualization/filtersets.py:52 -#: netbox/virtualization/filtersets.py:180 netbox/vpn/filtersets.py:353 +#: circuits/filtersets.py:38 circuits/filtersets.py:205 dcim/filtersets.py:105 +#: dcim/filtersets.py:158 dcim/filtersets.py:219 dcim/filtersets.py:340 +#: dcim/filtersets.py:471 dcim/filtersets.py:1028 dcim/filtersets.py:1375 +#: dcim/filtersets.py:1910 dcim/filtersets.py:2153 dcim/filtersets.py:2211 +#: extras/filtersets.py:509 ipam/filtersets.py:346 ipam/filtersets.py:966 +#: virtualization/filtersets.py:52 virtualization/filtersets.py:180 +#: vpn/filtersets.py:353 msgid "Region (slug)" msgstr "Region (URL-Slug)" -#: netbox/circuits/filtersets.py:44 netbox/circuits/filtersets.py:211 -#: netbox/dcim/filtersets.py:128 netbox/dcim/filtersets.py:225 -#: netbox/dcim/filtersets.py:346 netbox/dcim/filtersets.py:477 -#: netbox/dcim/filtersets.py:1034 netbox/dcim/filtersets.py:1381 -#: netbox/dcim/filtersets.py:1916 netbox/dcim/filtersets.py:2159 -#: netbox/dcim/filtersets.py:2217 netbox/ipam/filtersets.py:352 -#: netbox/ipam/filtersets.py:972 netbox/virtualization/filtersets.py:58 -#: netbox/virtualization/filtersets.py:186 +#: circuits/filtersets.py:44 circuits/filtersets.py:211 dcim/filtersets.py:128 +#: dcim/filtersets.py:225 dcim/filtersets.py:346 dcim/filtersets.py:477 +#: dcim/filtersets.py:1034 dcim/filtersets.py:1381 dcim/filtersets.py:1916 +#: dcim/filtersets.py:2159 dcim/filtersets.py:2217 ipam/filtersets.py:352 +#: ipam/filtersets.py:972 virtualization/filtersets.py:58 +#: virtualization/filtersets.py:186 msgid "Site group (ID)" msgstr "Standortgruppe (ID)" -#: netbox/circuits/filtersets.py:51 netbox/circuits/filtersets.py:218 -#: netbox/dcim/filtersets.py:135 netbox/dcim/filtersets.py:232 -#: netbox/dcim/filtersets.py:353 netbox/dcim/filtersets.py:484 -#: netbox/dcim/filtersets.py:1041 netbox/dcim/filtersets.py:1388 -#: netbox/dcim/filtersets.py:1923 netbox/dcim/filtersets.py:2166 -#: netbox/dcim/filtersets.py:2224 netbox/extras/filtersets.py:515 -#: netbox/ipam/filtersets.py:359 netbox/ipam/filtersets.py:979 -#: netbox/virtualization/filtersets.py:65 -#: netbox/virtualization/filtersets.py:193 +#: circuits/filtersets.py:51 circuits/filtersets.py:218 dcim/filtersets.py:135 +#: dcim/filtersets.py:232 dcim/filtersets.py:353 dcim/filtersets.py:484 +#: dcim/filtersets.py:1041 dcim/filtersets.py:1388 dcim/filtersets.py:1923 +#: dcim/filtersets.py:2166 dcim/filtersets.py:2224 extras/filtersets.py:515 +#: ipam/filtersets.py:359 ipam/filtersets.py:979 +#: virtualization/filtersets.py:65 virtualization/filtersets.py:193 msgid "Site group (slug)" msgstr "Standortgruppe (URL-Slug)" -#: netbox/circuits/filtersets.py:56 netbox/circuits/forms/bulk_edit.py:188 -#: netbox/circuits/forms/bulk_edit.py:216 -#: netbox/circuits/forms/bulk_import.py:124 -#: netbox/circuits/forms/filtersets.py:51 -#: netbox/circuits/forms/filtersets.py:171 -#: netbox/circuits/forms/filtersets.py:209 -#: netbox/circuits/forms/model_forms.py:138 -#: netbox/circuits/forms/model_forms.py:154 -#: netbox/circuits/tables/circuits.py:113 netbox/dcim/forms/bulk_edit.py:168 -#: netbox/dcim/forms/bulk_edit.py:329 netbox/dcim/forms/bulk_edit.py:677 -#: netbox/dcim/forms/bulk_edit.py:873 netbox/dcim/forms/bulk_import.py:131 -#: netbox/dcim/forms/bulk_import.py:230 netbox/dcim/forms/bulk_import.py:309 -#: netbox/dcim/forms/bulk_import.py:540 netbox/dcim/forms/bulk_import.py:1311 -#: netbox/dcim/forms/bulk_import.py:1339 netbox/dcim/forms/filtersets.py:87 -#: netbox/dcim/forms/filtersets.py:225 netbox/dcim/forms/filtersets.py:342 -#: netbox/dcim/forms/filtersets.py:439 netbox/dcim/forms/filtersets.py:753 -#: netbox/dcim/forms/filtersets.py:997 netbox/dcim/forms/filtersets.py:1021 -#: netbox/dcim/forms/filtersets.py:1111 netbox/dcim/forms/filtersets.py:1149 -#: netbox/dcim/forms/filtersets.py:1584 netbox/dcim/forms/filtersets.py:1608 -#: netbox/dcim/forms/filtersets.py:1632 netbox/dcim/forms/model_forms.py:137 -#: netbox/dcim/forms/model_forms.py:165 netbox/dcim/forms/model_forms.py:238 -#: netbox/dcim/forms/model_forms.py:463 netbox/dcim/forms/model_forms.py:723 -#: netbox/dcim/forms/object_create.py:391 netbox/dcim/tables/devices.py:153 -#: netbox/dcim/tables/power.py:26 netbox/dcim/tables/power.py:93 -#: netbox/dcim/tables/racks.py:122 netbox/dcim/tables/racks.py:207 -#: netbox/dcim/tables/sites.py:134 netbox/extras/filtersets.py:525 -#: netbox/ipam/forms/bulk_edit.py:217 netbox/ipam/forms/bulk_edit.py:284 -#: netbox/ipam/forms/bulk_edit.py:451 netbox/ipam/forms/bulk_edit.py:529 -#: netbox/ipam/forms/bulk_import.py:171 netbox/ipam/forms/bulk_import.py:429 -#: netbox/ipam/forms/filtersets.py:153 netbox/ipam/forms/filtersets.py:231 -#: netbox/ipam/forms/filtersets.py:432 netbox/ipam/forms/filtersets.py:489 -#: netbox/ipam/forms/model_forms.py:205 netbox/ipam/forms/model_forms.py:636 -#: netbox/ipam/tables/ip.py:245 netbox/ipam/tables/vlans.py:118 -#: netbox/ipam/tables/vlans.py:221 -#: netbox/templates/circuits/inc/circuit_termination_fields.html:6 -#: netbox/templates/dcim/device.html:22 -#: netbox/templates/dcim/inc/cable_termination.html:8 -#: netbox/templates/dcim/inc/cable_termination.html:33 -#: netbox/templates/dcim/location.html:37 -#: netbox/templates/dcim/powerpanel.html:22 netbox/templates/dcim/rack.html:20 -#: netbox/templates/dcim/rackreservation.html:28 -#: netbox/templates/dcim/site.html:28 netbox/templates/ipam/prefix.html:56 -#: netbox/templates/ipam/vlan.html:23 netbox/templates/ipam/vlan_edit.html:40 -#: netbox/templates/virtualization/cluster.html:42 -#: netbox/templates/virtualization/virtualmachine.html:95 -#: netbox/virtualization/forms/bulk_edit.py:91 -#: netbox/virtualization/forms/bulk_edit.py:109 -#: netbox/virtualization/forms/bulk_edit.py:124 -#: netbox/virtualization/forms/bulk_import.py:59 -#: netbox/virtualization/forms/bulk_import.py:85 -#: netbox/virtualization/forms/filtersets.py:79 -#: netbox/virtualization/forms/filtersets.py:148 -#: netbox/virtualization/forms/model_forms.py:71 -#: netbox/virtualization/forms/model_forms.py:104 -#: netbox/virtualization/forms/model_forms.py:171 -#: netbox/virtualization/tables/clusters.py:77 -#: netbox/virtualization/tables/virtualmachines.py:63 -#: netbox/vpn/forms/filtersets.py:266 netbox/wireless/forms/model_forms.py:76 -#: netbox/wireless/forms/model_forms.py:118 +#: circuits/filtersets.py:56 circuits/forms/bulk_edit.py:188 +#: circuits/forms/bulk_edit.py:216 circuits/forms/bulk_import.py:124 +#: circuits/forms/filtersets.py:51 circuits/forms/filtersets.py:171 +#: circuits/forms/filtersets.py:209 circuits/forms/model_forms.py:138 +#: circuits/forms/model_forms.py:154 circuits/tables/circuits.py:113 +#: dcim/forms/bulk_edit.py:168 dcim/forms/bulk_edit.py:329 +#: dcim/forms/bulk_edit.py:677 dcim/forms/bulk_edit.py:873 +#: dcim/forms/bulk_import.py:131 dcim/forms/bulk_import.py:230 +#: dcim/forms/bulk_import.py:309 dcim/forms/bulk_import.py:540 +#: dcim/forms/bulk_import.py:1311 dcim/forms/bulk_import.py:1339 +#: dcim/forms/filtersets.py:87 dcim/forms/filtersets.py:225 +#: dcim/forms/filtersets.py:342 dcim/forms/filtersets.py:439 +#: dcim/forms/filtersets.py:753 dcim/forms/filtersets.py:997 +#: dcim/forms/filtersets.py:1021 dcim/forms/filtersets.py:1111 +#: dcim/forms/filtersets.py:1149 dcim/forms/filtersets.py:1584 +#: dcim/forms/filtersets.py:1608 dcim/forms/filtersets.py:1632 +#: dcim/forms/model_forms.py:137 dcim/forms/model_forms.py:165 +#: dcim/forms/model_forms.py:238 dcim/forms/model_forms.py:463 +#: dcim/forms/model_forms.py:723 dcim/forms/object_create.py:391 +#: dcim/tables/devices.py:153 dcim/tables/power.py:26 dcim/tables/power.py:93 +#: dcim/tables/racks.py:122 dcim/tables/racks.py:207 dcim/tables/sites.py:134 +#: extras/filtersets.py:525 ipam/forms/bulk_edit.py:218 +#: ipam/forms/bulk_edit.py:285 ipam/forms/bulk_edit.py:484 +#: ipam/forms/bulk_import.py:171 ipam/forms/bulk_import.py:429 +#: ipam/forms/filtersets.py:153 ipam/forms/filtersets.py:231 +#: ipam/forms/filtersets.py:432 ipam/forms/filtersets.py:489 +#: ipam/forms/model_forms.py:205 ipam/forms/model_forms.py:636 +#: ipam/tables/ip.py:245 ipam/tables/vlans.py:118 ipam/tables/vlans.py:221 +#: templates/circuits/inc/circuit_termination_fields.html:6 +#: templates/dcim/device.html:22 templates/dcim/inc/cable_termination.html:8 +#: templates/dcim/inc/cable_termination.html:33 +#: templates/dcim/location.html:37 templates/dcim/powerpanel.html:22 +#: templates/dcim/rack.html:20 templates/dcim/rackreservation.html:28 +#: templates/dcim/site.html:28 templates/ipam/prefix.html:56 +#: templates/ipam/vlan.html:23 templates/ipam/vlan_edit.html:40 +#: templates/virtualization/cluster.html:42 +#: templates/virtualization/virtualmachine.html:95 +#: virtualization/forms/bulk_edit.py:91 virtualization/forms/bulk_edit.py:109 +#: virtualization/forms/bulk_edit.py:124 +#: virtualization/forms/bulk_import.py:59 +#: virtualization/forms/bulk_import.py:85 +#: virtualization/forms/filtersets.py:79 +#: virtualization/forms/filtersets.py:148 +#: virtualization/forms/model_forms.py:71 +#: virtualization/forms/model_forms.py:104 +#: virtualization/forms/model_forms.py:171 +#: virtualization/tables/clusters.py:77 +#: virtualization/tables/virtualmachines.py:63 vpn/forms/filtersets.py:266 +#: wireless/forms/model_forms.py:76 wireless/forms/model_forms.py:118 msgid "Site" msgstr "Standort" -#: netbox/circuits/filtersets.py:62 netbox/circuits/filtersets.py:229 -#: netbox/circuits/filtersets.py:274 netbox/dcim/filtersets.py:242 -#: netbox/dcim/filtersets.py:363 netbox/dcim/filtersets.py:458 -#: netbox/extras/filtersets.py:531 netbox/ipam/filtersets.py:238 -#: netbox/ipam/filtersets.py:369 netbox/ipam/filtersets.py:989 -#: netbox/virtualization/filtersets.py:75 -#: netbox/virtualization/filtersets.py:203 netbox/vpn/filtersets.py:363 +#: circuits/filtersets.py:62 circuits/filtersets.py:229 +#: circuits/filtersets.py:274 dcim/filtersets.py:242 dcim/filtersets.py:363 +#: dcim/filtersets.py:458 extras/filtersets.py:531 ipam/filtersets.py:238 +#: ipam/filtersets.py:369 ipam/filtersets.py:989 +#: virtualization/filtersets.py:75 virtualization/filtersets.py:203 +#: vpn/filtersets.py:363 msgid "Site (slug)" msgstr "Standort (URL-Slug)" -#: netbox/circuits/filtersets.py:67 +#: circuits/filtersets.py:67 msgid "ASN (ID)" msgstr "ASN (ID)" -#: netbox/circuits/filtersets.py:73 netbox/circuits/forms/filtersets.py:31 -#: netbox/ipam/forms/model_forms.py:159 netbox/ipam/models/asns.py:108 -#: netbox/ipam/models/asns.py:125 netbox/ipam/tables/asn.py:41 -#: netbox/templates/ipam/asn.html:20 +#: circuits/filtersets.py:73 circuits/forms/filtersets.py:31 +#: ipam/forms/model_forms.py:159 ipam/models/asns.py:108 +#: ipam/models/asns.py:125 ipam/tables/asn.py:41 templates/ipam/asn.html:20 msgid "ASN" msgstr "ASN" -#: netbox/circuits/filtersets.py:95 netbox/circuits/filtersets.py:122 -#: netbox/circuits/filtersets.py:156 netbox/circuits/filtersets.py:283 -#: netbox/circuits/filtersets.py:325 netbox/ipam/filtersets.py:243 +#: circuits/filtersets.py:95 circuits/filtersets.py:122 +#: circuits/filtersets.py:156 circuits/filtersets.py:283 +#: circuits/filtersets.py:325 ipam/filtersets.py:243 msgid "Provider (ID)" msgstr "Provider (ID)" -#: netbox/circuits/filtersets.py:101 netbox/circuits/filtersets.py:128 -#: netbox/circuits/filtersets.py:162 netbox/circuits/filtersets.py:289 -#: netbox/circuits/filtersets.py:331 netbox/ipam/filtersets.py:249 +#: circuits/filtersets.py:101 circuits/filtersets.py:128 +#: circuits/filtersets.py:162 circuits/filtersets.py:289 +#: circuits/filtersets.py:331 ipam/filtersets.py:249 msgid "Provider (slug)" msgstr "Provider (URL-Slug)" -#: netbox/circuits/filtersets.py:167 +#: circuits/filtersets.py:167 msgid "Provider account (ID)" msgstr "Providerkonto (ID)" -#: netbox/circuits/filtersets.py:173 +#: circuits/filtersets.py:173 msgid "Provider account (account)" msgstr "Providerkonto (Konto)" -#: netbox/circuits/filtersets.py:178 +#: circuits/filtersets.py:178 msgid "Provider network (ID)" msgstr "Providernetzwerk (ID)" -#: netbox/circuits/filtersets.py:182 +#: circuits/filtersets.py:182 msgid "Circuit type (ID)" msgstr "Transportnetz Typ (ID)" -#: netbox/circuits/filtersets.py:188 +#: circuits/filtersets.py:188 msgid "Circuit type (slug)" msgstr "Transportnetz Typ (URL-Slug)" -#: netbox/circuits/filtersets.py:223 netbox/circuits/filtersets.py:268 -#: netbox/dcim/filtersets.py:236 netbox/dcim/filtersets.py:357 -#: netbox/dcim/filtersets.py:452 netbox/dcim/filtersets.py:1045 -#: netbox/dcim/filtersets.py:1393 netbox/dcim/filtersets.py:1928 -#: netbox/dcim/filtersets.py:2170 netbox/dcim/filtersets.py:2229 -#: netbox/ipam/filtersets.py:232 netbox/ipam/filtersets.py:363 -#: netbox/ipam/filtersets.py:983 netbox/virtualization/filtersets.py:69 -#: netbox/virtualization/filtersets.py:197 netbox/vpn/filtersets.py:368 +#: circuits/filtersets.py:223 circuits/filtersets.py:268 +#: dcim/filtersets.py:236 dcim/filtersets.py:357 dcim/filtersets.py:452 +#: dcim/filtersets.py:1045 dcim/filtersets.py:1393 dcim/filtersets.py:1928 +#: dcim/filtersets.py:2170 dcim/filtersets.py:2229 ipam/filtersets.py:232 +#: ipam/filtersets.py:363 ipam/filtersets.py:983 +#: virtualization/filtersets.py:69 virtualization/filtersets.py:197 +#: vpn/filtersets.py:368 msgid "Site (ID)" msgstr "Standort (ID)" -#: netbox/circuits/filtersets.py:233 netbox/circuits/filtersets.py:237 +#: circuits/filtersets.py:233 circuits/filtersets.py:237 msgid "Termination A (ID)" msgstr "Abschlusspunkt A (ID)" -#: netbox/circuits/filtersets.py:260 netbox/circuits/filtersets.py:320 -#: netbox/core/filtersets.py:77 netbox/core/filtersets.py:136 -#: netbox/core/filtersets.py:173 netbox/dcim/filtersets.py:751 -#: netbox/dcim/filtersets.py:1362 netbox/dcim/filtersets.py:2277 -#: netbox/extras/filtersets.py:41 netbox/extras/filtersets.py:63 -#: netbox/extras/filtersets.py:92 netbox/extras/filtersets.py:132 -#: netbox/extras/filtersets.py:181 netbox/extras/filtersets.py:209 -#: netbox/extras/filtersets.py:239 netbox/extras/filtersets.py:276 -#: netbox/extras/filtersets.py:348 netbox/extras/filtersets.py:391 -#: netbox/extras/filtersets.py:438 netbox/extras/filtersets.py:498 -#: netbox/extras/filtersets.py:657 netbox/extras/filtersets.py:703 -#: netbox/ipam/forms/model_forms.py:449 netbox/netbox/filtersets.py:282 -#: netbox/netbox/forms/__init__.py:22 netbox/netbox/forms/base.py:167 -#: netbox/templates/htmx/object_selector.html:28 -#: netbox/templates/inc/filter_list.html:45 -#: netbox/templates/ipam/ipaddress_assign.html:29 -#: netbox/templates/search.html:7 netbox/templates/search.html:26 -#: netbox/tenancy/filtersets.py:99 netbox/users/filtersets.py:23 -#: netbox/users/filtersets.py:57 netbox/users/filtersets.py:102 -#: netbox/users/filtersets.py:150 netbox/utilities/forms/forms.py:104 -#: netbox/utilities/templates/navigation/menu.html:16 +#: circuits/filtersets.py:260 circuits/filtersets.py:320 core/filtersets.py:77 +#: core/filtersets.py:136 core/filtersets.py:173 dcim/filtersets.py:751 +#: dcim/filtersets.py:1362 dcim/filtersets.py:2277 extras/filtersets.py:41 +#: extras/filtersets.py:63 extras/filtersets.py:92 extras/filtersets.py:132 +#: extras/filtersets.py:181 extras/filtersets.py:209 extras/filtersets.py:239 +#: extras/filtersets.py:276 extras/filtersets.py:348 extras/filtersets.py:391 +#: extras/filtersets.py:438 extras/filtersets.py:498 extras/filtersets.py:657 +#: extras/filtersets.py:703 ipam/forms/model_forms.py:449 +#: netbox/filtersets.py:282 netbox/forms/__init__.py:22 +#: netbox/forms/base.py:167 templates/htmx/object_selector.html:28 +#: templates/inc/filter_list.html:46 templates/ipam/ipaddress_assign.html:29 +#: templates/search.html:7 templates/search.html:26 tenancy/filtersets.py:99 +#: users/filtersets.py:23 users/filtersets.py:57 users/filtersets.py:102 +#: users/filtersets.py:150 utilities/forms/forms.py:104 +#: utilities/templates/navigation/menu.html:16 msgid "Search" msgstr "Suche" -#: netbox/circuits/filtersets.py:264 netbox/circuits/forms/bulk_edit.py:172 -#: netbox/circuits/forms/bulk_edit.py:246 -#: netbox/circuits/forms/bulk_import.py:115 -#: netbox/circuits/forms/filtersets.py:198 -#: netbox/circuits/forms/filtersets.py:214 -#: netbox/circuits/forms/filtersets.py:260 -#: netbox/circuits/forms/model_forms.py:111 -#: netbox/circuits/forms/model_forms.py:133 -#: netbox/circuits/forms/model_forms.py:199 -#: netbox/circuits/tables/circuits.py:104 -#: netbox/circuits/tables/circuits.py:164 netbox/dcim/forms/connections.py:73 -#: netbox/templates/circuits/circuit.html:15 -#: netbox/templates/circuits/circuitgroupassignment.html:26 -#: netbox/templates/circuits/circuittermination.html:19 -#: netbox/templates/dcim/inc/cable_termination.html:55 -#: netbox/templates/dcim/trace/circuit.html:4 +#: circuits/filtersets.py:264 circuits/forms/bulk_edit.py:172 +#: circuits/forms/bulk_edit.py:246 circuits/forms/bulk_import.py:115 +#: circuits/forms/filtersets.py:198 circuits/forms/filtersets.py:214 +#: circuits/forms/filtersets.py:260 circuits/forms/model_forms.py:111 +#: circuits/forms/model_forms.py:133 circuits/forms/model_forms.py:199 +#: circuits/tables/circuits.py:104 circuits/tables/circuits.py:164 +#: dcim/forms/connections.py:73 templates/circuits/circuit.html:15 +#: templates/circuits/circuitgroupassignment.html:26 +#: templates/circuits/circuittermination.html:19 +#: templates/dcim/inc/cable_termination.html:55 +#: templates/dcim/trace/circuit.html:4 msgid "Circuit" msgstr "Transportnetz" -#: netbox/circuits/filtersets.py:278 +#: circuits/filtersets.py:278 msgid "ProviderNetwork (ID)" msgstr "Providernetzwerk (ID)" -#: netbox/circuits/filtersets.py:335 +#: circuits/filtersets.py:335 msgid "Circuit (ID)" msgstr "Transportnetz (ID)" -#: netbox/circuits/filtersets.py:341 +#: circuits/filtersets.py:341 msgid "Circuit (CID)" msgstr "Transportnetz (CID)" -#: netbox/circuits/filtersets.py:345 +#: circuits/filtersets.py:345 msgid "Circuit group (ID)" msgstr "Transportnetzgruppe (ID)" -#: netbox/circuits/filtersets.py:351 +#: circuits/filtersets.py:351 msgid "Circuit group (slug)" msgstr "Transportnetzgruppe (SLUG)" -#: netbox/circuits/forms/bulk_edit.py:30 -#: netbox/circuits/forms/filtersets.py:56 -#: netbox/circuits/forms/model_forms.py:29 -#: netbox/circuits/tables/providers.py:33 netbox/dcim/forms/bulk_edit.py:128 -#: netbox/dcim/forms/filtersets.py:195 netbox/dcim/forms/model_forms.py:123 -#: netbox/dcim/tables/sites.py:94 netbox/ipam/models/asns.py:126 -#: netbox/ipam/tables/asn.py:27 netbox/ipam/views.py:213 -#: netbox/netbox/navigation/menu.py:172 netbox/netbox/navigation/menu.py:175 -#: netbox/templates/circuits/provider.html:23 +#: circuits/forms/bulk_edit.py:30 circuits/forms/filtersets.py:56 +#: circuits/forms/model_forms.py:29 circuits/tables/providers.py:33 +#: dcim/forms/bulk_edit.py:128 dcim/forms/filtersets.py:195 +#: dcim/forms/model_forms.py:123 dcim/tables/sites.py:94 +#: ipam/models/asns.py:126 ipam/tables/asn.py:27 ipam/views.py:213 +#: netbox/navigation/menu.py:172 netbox/navigation/menu.py:175 +#: templates/circuits/provider.html:23 msgid "ASNs" msgstr "ASNs" -#: netbox/circuits/forms/bulk_edit.py:34 netbox/circuits/forms/bulk_edit.py:56 -#: netbox/circuits/forms/bulk_edit.py:83 -#: netbox/circuits/forms/bulk_edit.py:104 -#: netbox/circuits/forms/bulk_edit.py:164 -#: netbox/circuits/forms/bulk_edit.py:183 -#: netbox/circuits/forms/bulk_edit.py:228 netbox/core/forms/bulk_edit.py:28 -#: netbox/dcim/forms/bulk_create.py:35 netbox/dcim/forms/bulk_edit.py:73 -#: netbox/dcim/forms/bulk_edit.py:92 netbox/dcim/forms/bulk_edit.py:151 -#: netbox/dcim/forms/bulk_edit.py:192 netbox/dcim/forms/bulk_edit.py:210 -#: netbox/dcim/forms/bulk_edit.py:288 netbox/dcim/forms/bulk_edit.py:432 -#: netbox/dcim/forms/bulk_edit.py:466 netbox/dcim/forms/bulk_edit.py:481 -#: netbox/dcim/forms/bulk_edit.py:540 netbox/dcim/forms/bulk_edit.py:584 -#: netbox/dcim/forms/bulk_edit.py:618 netbox/dcim/forms/bulk_edit.py:642 -#: netbox/dcim/forms/bulk_edit.py:715 netbox/dcim/forms/bulk_edit.py:767 -#: netbox/dcim/forms/bulk_edit.py:819 netbox/dcim/forms/bulk_edit.py:842 -#: netbox/dcim/forms/bulk_edit.py:890 netbox/dcim/forms/bulk_edit.py:960 -#: netbox/dcim/forms/bulk_edit.py:1013 netbox/dcim/forms/bulk_edit.py:1048 -#: netbox/dcim/forms/bulk_edit.py:1088 netbox/dcim/forms/bulk_edit.py:1132 -#: netbox/dcim/forms/bulk_edit.py:1177 netbox/dcim/forms/bulk_edit.py:1204 -#: netbox/dcim/forms/bulk_edit.py:1222 netbox/dcim/forms/bulk_edit.py:1240 -#: netbox/dcim/forms/bulk_edit.py:1258 netbox/dcim/forms/bulk_edit.py:1682 -#: netbox/extras/forms/bulk_edit.py:39 netbox/extras/forms/bulk_edit.py:149 -#: netbox/extras/forms/bulk_edit.py:178 netbox/extras/forms/bulk_edit.py:208 -#: netbox/extras/forms/bulk_edit.py:256 netbox/extras/forms/bulk_edit.py:274 -#: netbox/extras/forms/bulk_edit.py:298 netbox/extras/forms/bulk_edit.py:312 -#: netbox/extras/forms/bulk_edit.py:339 netbox/extras/tables/tables.py:79 -#: netbox/ipam/forms/bulk_edit.py:52 netbox/ipam/forms/bulk_edit.py:72 -#: netbox/ipam/forms/bulk_edit.py:92 netbox/ipam/forms/bulk_edit.py:116 -#: netbox/ipam/forms/bulk_edit.py:145 netbox/ipam/forms/bulk_edit.py:174 -#: netbox/ipam/forms/bulk_edit.py:193 netbox/ipam/forms/bulk_edit.py:275 -#: netbox/ipam/forms/bulk_edit.py:320 netbox/ipam/forms/bulk_edit.py:368 -#: netbox/ipam/forms/bulk_edit.py:411 netbox/ipam/forms/bulk_edit.py:427 -#: netbox/ipam/forms/bulk_edit.py:561 netbox/ipam/forms/bulk_edit.py:592 -#: netbox/templates/account/token.html:35 -#: netbox/templates/circuits/circuit.html:59 -#: netbox/templates/circuits/circuitgroup.html:32 -#: netbox/templates/circuits/circuittype.html:26 -#: netbox/templates/circuits/inc/circuit_termination_fields.html:88 -#: netbox/templates/circuits/provider.html:33 -#: netbox/templates/circuits/providernetwork.html:32 -#: netbox/templates/core/datasource.html:54 -#: netbox/templates/core/plugin.html:79 netbox/templates/dcim/cable.html:36 -#: netbox/templates/dcim/consoleport.html:44 -#: netbox/templates/dcim/consoleserverport.html:44 -#: netbox/templates/dcim/device.html:94 -#: netbox/templates/dcim/devicebay.html:32 -#: netbox/templates/dcim/devicerole.html:30 -#: netbox/templates/dcim/devicetype.html:33 -#: netbox/templates/dcim/frontport.html:58 -#: netbox/templates/dcim/interface.html:69 -#: netbox/templates/dcim/inventoryitem.html:60 -#: netbox/templates/dcim/inventoryitemrole.html:22 -#: netbox/templates/dcim/location.html:33 -#: netbox/templates/dcim/manufacturer.html:40 -#: netbox/templates/dcim/module.html:73 -#: netbox/templates/dcim/modulebay.html:42 -#: netbox/templates/dcim/moduletype.html:26 -#: netbox/templates/dcim/platform.html:33 -#: netbox/templates/dcim/powerfeed.html:40 -#: netbox/templates/dcim/poweroutlet.html:40 -#: netbox/templates/dcim/powerpanel.html:30 -#: netbox/templates/dcim/powerport.html:40 netbox/templates/dcim/rack.html:53 -#: netbox/templates/dcim/rackreservation.html:62 -#: netbox/templates/dcim/rackrole.html:26 -#: netbox/templates/dcim/racktype.html:24 -#: netbox/templates/dcim/rearport.html:54 netbox/templates/dcim/region.html:33 -#: netbox/templates/dcim/site.html:60 netbox/templates/dcim/sitegroup.html:33 -#: netbox/templates/dcim/virtualchassis.html:31 -#: netbox/templates/extras/configcontext.html:21 -#: netbox/templates/extras/configtemplate.html:17 -#: netbox/templates/extras/customfield.html:34 -#: netbox/templates/extras/dashboard/widget_add.html:14 -#: netbox/templates/extras/eventrule.html:21 -#: netbox/templates/extras/exporttemplate.html:19 -#: netbox/templates/extras/notificationgroup.html:20 -#: netbox/templates/extras/savedfilter.html:17 -#: netbox/templates/extras/script_list.html:45 -#: netbox/templates/extras/tag.html:20 netbox/templates/extras/webhook.html:17 -#: netbox/templates/generic/bulk_import.html:120 -#: netbox/templates/ipam/aggregate.html:43 netbox/templates/ipam/asn.html:42 -#: netbox/templates/ipam/asnrange.html:38 -#: netbox/templates/ipam/fhrpgroup.html:34 -#: netbox/templates/ipam/ipaddress.html:55 -#: netbox/templates/ipam/iprange.html:67 netbox/templates/ipam/prefix.html:81 -#: netbox/templates/ipam/rir.html:26 netbox/templates/ipam/role.html:26 -#: netbox/templates/ipam/routetarget.html:21 -#: netbox/templates/ipam/service.html:50 -#: netbox/templates/ipam/servicetemplate.html:27 -#: netbox/templates/ipam/vlan.html:62 netbox/templates/ipam/vlangroup.html:34 -#: netbox/templates/ipam/vrf.html:33 netbox/templates/tenancy/contact.html:67 -#: netbox/templates/tenancy/contactgroup.html:25 -#: netbox/templates/tenancy/contactrole.html:22 -#: netbox/templates/tenancy/tenant.html:24 -#: netbox/templates/tenancy/tenantgroup.html:33 -#: netbox/templates/users/group.html:21 -#: netbox/templates/users/objectpermission.html:21 -#: netbox/templates/users/token.html:27 -#: netbox/templates/virtualization/cluster.html:25 -#: netbox/templates/virtualization/clustergroup.html:26 -#: netbox/templates/virtualization/clustertype.html:26 -#: netbox/templates/virtualization/virtualdisk.html:39 -#: netbox/templates/virtualization/virtualmachine.html:31 -#: netbox/templates/virtualization/vminterface.html:51 -#: netbox/templates/vpn/ikepolicy.html:17 -#: netbox/templates/vpn/ikeproposal.html:17 -#: netbox/templates/vpn/ipsecpolicy.html:17 -#: netbox/templates/vpn/ipsecprofile.html:17 -#: netbox/templates/vpn/ipsecprofile.html:40 -#: netbox/templates/vpn/ipsecprofile.html:73 -#: netbox/templates/vpn/ipsecproposal.html:17 -#: netbox/templates/vpn/l2vpn.html:26 netbox/templates/vpn/tunnel.html:33 -#: netbox/templates/vpn/tunnelgroup.html:30 -#: netbox/templates/wireless/wirelesslan.html:26 -#: netbox/templates/wireless/wirelesslangroup.html:33 -#: netbox/templates/wireless/wirelesslink.html:34 -#: netbox/tenancy/forms/bulk_edit.py:32 netbox/tenancy/forms/bulk_edit.py:80 -#: netbox/tenancy/forms/bulk_edit.py:122 netbox/users/forms/bulk_edit.py:64 -#: netbox/users/forms/bulk_edit.py:82 netbox/users/forms/bulk_edit.py:112 -#: netbox/virtualization/forms/bulk_edit.py:32 -#: netbox/virtualization/forms/bulk_edit.py:46 -#: netbox/virtualization/forms/bulk_edit.py:100 -#: netbox/virtualization/forms/bulk_edit.py:177 -#: netbox/virtualization/forms/bulk_edit.py:228 -#: netbox/virtualization/forms/bulk_edit.py:337 -#: netbox/vpn/forms/bulk_edit.py:28 netbox/vpn/forms/bulk_edit.py:64 -#: netbox/vpn/forms/bulk_edit.py:121 netbox/vpn/forms/bulk_edit.py:155 -#: netbox/vpn/forms/bulk_edit.py:190 netbox/vpn/forms/bulk_edit.py:215 -#: netbox/vpn/forms/bulk_edit.py:247 netbox/vpn/forms/bulk_edit.py:274 -#: netbox/wireless/forms/bulk_edit.py:29 netbox/wireless/forms/bulk_edit.py:82 -#: netbox/wireless/forms/bulk_edit.py:140 +#: circuits/forms/bulk_edit.py:34 circuits/forms/bulk_edit.py:56 +#: circuits/forms/bulk_edit.py:83 circuits/forms/bulk_edit.py:104 +#: circuits/forms/bulk_edit.py:164 circuits/forms/bulk_edit.py:183 +#: circuits/forms/bulk_edit.py:228 core/forms/bulk_edit.py:28 +#: dcim/forms/bulk_create.py:35 dcim/forms/bulk_edit.py:73 +#: dcim/forms/bulk_edit.py:92 dcim/forms/bulk_edit.py:151 +#: dcim/forms/bulk_edit.py:192 dcim/forms/bulk_edit.py:210 +#: dcim/forms/bulk_edit.py:288 dcim/forms/bulk_edit.py:432 +#: dcim/forms/bulk_edit.py:466 dcim/forms/bulk_edit.py:481 +#: dcim/forms/bulk_edit.py:540 dcim/forms/bulk_edit.py:584 +#: dcim/forms/bulk_edit.py:618 dcim/forms/bulk_edit.py:642 +#: dcim/forms/bulk_edit.py:715 dcim/forms/bulk_edit.py:767 +#: dcim/forms/bulk_edit.py:819 dcim/forms/bulk_edit.py:842 +#: dcim/forms/bulk_edit.py:890 dcim/forms/bulk_edit.py:960 +#: dcim/forms/bulk_edit.py:1013 dcim/forms/bulk_edit.py:1048 +#: dcim/forms/bulk_edit.py:1088 dcim/forms/bulk_edit.py:1132 +#: dcim/forms/bulk_edit.py:1177 dcim/forms/bulk_edit.py:1204 +#: dcim/forms/bulk_edit.py:1222 dcim/forms/bulk_edit.py:1240 +#: dcim/forms/bulk_edit.py:1258 dcim/forms/bulk_edit.py:1682 +#: extras/forms/bulk_edit.py:39 extras/forms/bulk_edit.py:149 +#: extras/forms/bulk_edit.py:178 extras/forms/bulk_edit.py:208 +#: extras/forms/bulk_edit.py:256 extras/forms/bulk_edit.py:274 +#: extras/forms/bulk_edit.py:298 extras/forms/bulk_edit.py:312 +#: extras/forms/bulk_edit.py:339 extras/tables/tables.py:79 +#: ipam/forms/bulk_edit.py:53 ipam/forms/bulk_edit.py:73 +#: ipam/forms/bulk_edit.py:93 ipam/forms/bulk_edit.py:117 +#: ipam/forms/bulk_edit.py:146 ipam/forms/bulk_edit.py:175 +#: ipam/forms/bulk_edit.py:194 ipam/forms/bulk_edit.py:276 +#: ipam/forms/bulk_edit.py:321 ipam/forms/bulk_edit.py:369 +#: ipam/forms/bulk_edit.py:412 ipam/forms/bulk_edit.py:428 +#: ipam/forms/bulk_edit.py:516 ipam/forms/bulk_edit.py:547 +#: templates/account/token.html:35 templates/circuits/circuit.html:59 +#: templates/circuits/circuitgroup.html:32 +#: templates/circuits/circuittype.html:26 +#: templates/circuits/inc/circuit_termination_fields.html:88 +#: templates/circuits/provider.html:33 +#: templates/circuits/providernetwork.html:32 +#: templates/core/datasource.html:54 templates/core/plugin.html:80 +#: templates/dcim/cable.html:36 templates/dcim/consoleport.html:44 +#: templates/dcim/consoleserverport.html:44 templates/dcim/device.html:94 +#: templates/dcim/devicebay.html:32 templates/dcim/devicerole.html:30 +#: templates/dcim/devicetype.html:33 templates/dcim/frontport.html:58 +#: templates/dcim/interface.html:69 templates/dcim/inventoryitem.html:60 +#: templates/dcim/inventoryitemrole.html:22 templates/dcim/location.html:33 +#: templates/dcim/manufacturer.html:40 templates/dcim/module.html:73 +#: templates/dcim/modulebay.html:42 templates/dcim/moduletype.html:37 +#: templates/dcim/platform.html:33 templates/dcim/powerfeed.html:40 +#: templates/dcim/poweroutlet.html:40 templates/dcim/powerpanel.html:30 +#: templates/dcim/powerport.html:40 templates/dcim/rack.html:53 +#: templates/dcim/rackreservation.html:62 templates/dcim/rackrole.html:26 +#: templates/dcim/racktype.html:24 templates/dcim/rearport.html:54 +#: templates/dcim/region.html:33 templates/dcim/site.html:60 +#: templates/dcim/sitegroup.html:33 templates/dcim/virtualchassis.html:31 +#: templates/extras/configcontext.html:21 +#: templates/extras/configtemplate.html:17 +#: templates/extras/customfield.html:34 +#: templates/extras/dashboard/widget_add.html:14 +#: templates/extras/eventrule.html:21 templates/extras/exporttemplate.html:19 +#: templates/extras/notificationgroup.html:20 +#: templates/extras/savedfilter.html:17 templates/extras/script_list.html:45 +#: templates/extras/tag.html:20 templates/extras/webhook.html:17 +#: templates/generic/bulk_import.html:120 templates/ipam/aggregate.html:43 +#: templates/ipam/asn.html:42 templates/ipam/asnrange.html:38 +#: templates/ipam/fhrpgroup.html:34 templates/ipam/ipaddress.html:55 +#: templates/ipam/iprange.html:67 templates/ipam/prefix.html:81 +#: templates/ipam/rir.html:26 templates/ipam/role.html:26 +#: templates/ipam/routetarget.html:21 templates/ipam/service.html:50 +#: templates/ipam/servicetemplate.html:27 templates/ipam/vlan.html:62 +#: templates/ipam/vlangroup.html:34 templates/ipam/vrf.html:33 +#: templates/tenancy/contact.html:67 templates/tenancy/contactgroup.html:25 +#: templates/tenancy/contactrole.html:22 templates/tenancy/tenant.html:24 +#: templates/tenancy/tenantgroup.html:33 templates/users/group.html:21 +#: templates/users/objectpermission.html:21 templates/users/token.html:27 +#: templates/virtualization/cluster.html:25 +#: templates/virtualization/clustergroup.html:26 +#: templates/virtualization/clustertype.html:26 +#: templates/virtualization/virtualdisk.html:39 +#: templates/virtualization/virtualmachine.html:31 +#: templates/virtualization/vminterface.html:51 +#: templates/vpn/ikepolicy.html:17 templates/vpn/ikeproposal.html:17 +#: templates/vpn/ipsecpolicy.html:17 templates/vpn/ipsecprofile.html:17 +#: templates/vpn/ipsecprofile.html:40 templates/vpn/ipsecprofile.html:73 +#: templates/vpn/ipsecproposal.html:17 templates/vpn/l2vpn.html:26 +#: templates/vpn/tunnel.html:33 templates/vpn/tunnelgroup.html:30 +#: templates/wireless/wirelesslan.html:26 +#: templates/wireless/wirelesslangroup.html:33 +#: templates/wireless/wirelesslink.html:34 tenancy/forms/bulk_edit.py:32 +#: tenancy/forms/bulk_edit.py:80 tenancy/forms/bulk_edit.py:122 +#: users/forms/bulk_edit.py:64 users/forms/bulk_edit.py:82 +#: users/forms/bulk_edit.py:112 virtualization/forms/bulk_edit.py:32 +#: virtualization/forms/bulk_edit.py:46 virtualization/forms/bulk_edit.py:100 +#: virtualization/forms/bulk_edit.py:177 virtualization/forms/bulk_edit.py:228 +#: virtualization/forms/bulk_edit.py:337 vpn/forms/bulk_edit.py:28 +#: vpn/forms/bulk_edit.py:64 vpn/forms/bulk_edit.py:121 +#: vpn/forms/bulk_edit.py:155 vpn/forms/bulk_edit.py:190 +#: vpn/forms/bulk_edit.py:215 vpn/forms/bulk_edit.py:247 +#: vpn/forms/bulk_edit.py:274 wireless/forms/bulk_edit.py:29 +#: wireless/forms/bulk_edit.py:82 wireless/forms/bulk_edit.py:140 msgid "Description" msgstr "Beschreibung" -#: netbox/circuits/forms/bulk_edit.py:51 netbox/circuits/forms/bulk_edit.py:73 -#: netbox/circuits/forms/bulk_edit.py:123 -#: netbox/circuits/forms/bulk_import.py:36 -#: netbox/circuits/forms/bulk_import.py:51 -#: netbox/circuits/forms/bulk_import.py:74 -#: netbox/circuits/forms/filtersets.py:70 -#: netbox/circuits/forms/filtersets.py:88 -#: netbox/circuits/forms/filtersets.py:116 -#: netbox/circuits/forms/filtersets.py:131 -#: netbox/circuits/forms/filtersets.py:199 -#: netbox/circuits/forms/filtersets.py:232 -#: netbox/circuits/forms/filtersets.py:255 -#: netbox/circuits/forms/model_forms.py:47 -#: netbox/circuits/forms/model_forms.py:61 -#: netbox/circuits/forms/model_forms.py:93 -#: netbox/circuits/tables/circuits.py:58 -#: netbox/circuits/tables/circuits.py:108 -#: netbox/circuits/tables/circuits.py:160 -#: netbox/circuits/tables/providers.py:72 -#: netbox/circuits/tables/providers.py:103 -#: netbox/templates/circuits/circuit.html:18 -#: netbox/templates/circuits/circuittermination.html:25 -#: netbox/templates/circuits/provider.html:20 -#: netbox/templates/circuits/provideraccount.html:20 -#: netbox/templates/circuits/providernetwork.html:20 -#: netbox/templates/dcim/inc/cable_termination.html:51 +#: circuits/forms/bulk_edit.py:51 circuits/forms/bulk_edit.py:73 +#: circuits/forms/bulk_edit.py:123 circuits/forms/bulk_import.py:36 +#: circuits/forms/bulk_import.py:51 circuits/forms/bulk_import.py:74 +#: circuits/forms/filtersets.py:70 circuits/forms/filtersets.py:88 +#: circuits/forms/filtersets.py:116 circuits/forms/filtersets.py:131 +#: circuits/forms/filtersets.py:199 circuits/forms/filtersets.py:232 +#: circuits/forms/filtersets.py:255 circuits/forms/model_forms.py:47 +#: circuits/forms/model_forms.py:61 circuits/forms/model_forms.py:93 +#: circuits/tables/circuits.py:58 circuits/tables/circuits.py:108 +#: circuits/tables/circuits.py:160 circuits/tables/providers.py:72 +#: circuits/tables/providers.py:103 templates/circuits/circuit.html:18 +#: templates/circuits/circuittermination.html:25 +#: templates/circuits/provider.html:20 +#: templates/circuits/provideraccount.html:20 +#: templates/circuits/providernetwork.html:20 +#: templates/dcim/inc/cable_termination.html:51 msgid "Provider" msgstr "Provider" -#: netbox/circuits/forms/bulk_edit.py:80 -#: netbox/circuits/forms/filtersets.py:91 -#: netbox/templates/circuits/providernetwork.html:28 +#: circuits/forms/bulk_edit.py:80 circuits/forms/filtersets.py:91 +#: templates/circuits/providernetwork.html:28 msgid "Service ID" msgstr "Dienst ID" -#: netbox/circuits/forms/bulk_edit.py:100 -#: netbox/circuits/forms/filtersets.py:107 netbox/dcim/forms/bulk_edit.py:206 -#: netbox/dcim/forms/bulk_edit.py:604 netbox/dcim/forms/bulk_edit.py:804 -#: netbox/dcim/forms/bulk_edit.py:1173 netbox/dcim/forms/bulk_edit.py:1200 -#: netbox/dcim/forms/bulk_edit.py:1678 netbox/dcim/forms/filtersets.py:1064 -#: netbox/dcim/forms/filtersets.py:1455 netbox/dcim/forms/filtersets.py:1479 -#: netbox/dcim/tables/devices.py:704 netbox/dcim/tables/devices.py:761 -#: netbox/dcim/tables/devices.py:1003 netbox/dcim/tables/devicetypes.py:249 -#: netbox/dcim/tables/devicetypes.py:264 netbox/dcim/tables/racks.py:33 -#: netbox/extras/forms/bulk_edit.py:270 netbox/extras/tables/tables.py:443 -#: netbox/templates/circuits/circuittype.html:30 -#: netbox/templates/dcim/cable.html:40 -#: netbox/templates/dcim/devicerole.html:34 -#: netbox/templates/dcim/frontport.html:40 -#: netbox/templates/dcim/inventoryitemrole.html:26 -#: netbox/templates/dcim/rackrole.html:30 -#: netbox/templates/dcim/rearport.html:40 netbox/templates/extras/tag.html:26 +#: circuits/forms/bulk_edit.py:100 circuits/forms/filtersets.py:107 +#: dcim/forms/bulk_edit.py:206 dcim/forms/bulk_edit.py:604 +#: dcim/forms/bulk_edit.py:804 dcim/forms/bulk_edit.py:1173 +#: dcim/forms/bulk_edit.py:1200 dcim/forms/bulk_edit.py:1678 +#: dcim/forms/filtersets.py:1064 dcim/forms/filtersets.py:1455 +#: dcim/forms/filtersets.py:1479 dcim/tables/devices.py:704 +#: dcim/tables/devices.py:761 dcim/tables/devices.py:1003 +#: dcim/tables/devicetypes.py:249 dcim/tables/devicetypes.py:264 +#: dcim/tables/racks.py:33 extras/forms/bulk_edit.py:270 +#: extras/tables/tables.py:443 templates/circuits/circuittype.html:30 +#: templates/dcim/cable.html:40 templates/dcim/devicerole.html:34 +#: templates/dcim/frontport.html:40 templates/dcim/inventoryitemrole.html:26 +#: templates/dcim/rackrole.html:30 templates/dcim/rearport.html:40 +#: templates/extras/tag.html:26 msgid "Color" msgstr "Farbe" -#: netbox/circuits/forms/bulk_edit.py:118 -#: netbox/circuits/forms/bulk_import.py:87 -#: netbox/circuits/forms/filtersets.py:126 netbox/core/forms/bulk_edit.py:18 -#: netbox/core/forms/filtersets.py:33 netbox/core/tables/change_logging.py:32 -#: netbox/core/tables/data.py:20 netbox/core/tables/jobs.py:18 -#: netbox/dcim/forms/bulk_edit.py:782 netbox/dcim/forms/bulk_edit.py:921 -#: netbox/dcim/forms/bulk_edit.py:989 netbox/dcim/forms/bulk_edit.py:1008 -#: netbox/dcim/forms/bulk_edit.py:1031 netbox/dcim/forms/bulk_edit.py:1073 -#: netbox/dcim/forms/bulk_edit.py:1117 netbox/dcim/forms/bulk_edit.py:1168 -#: netbox/dcim/forms/bulk_edit.py:1195 netbox/dcim/forms/bulk_import.py:188 -#: netbox/dcim/forms/bulk_import.py:260 netbox/dcim/forms/bulk_import.py:708 -#: netbox/dcim/forms/bulk_import.py:734 netbox/dcim/forms/bulk_import.py:760 -#: netbox/dcim/forms/bulk_import.py:780 netbox/dcim/forms/bulk_import.py:863 -#: netbox/dcim/forms/bulk_import.py:957 netbox/dcim/forms/bulk_import.py:999 -#: netbox/dcim/forms/bulk_import.py:1213 netbox/dcim/forms/bulk_import.py:1376 -#: netbox/dcim/forms/filtersets.py:955 netbox/dcim/forms/filtersets.py:1054 -#: netbox/dcim/forms/filtersets.py:1175 netbox/dcim/forms/filtersets.py:1247 -#: netbox/dcim/forms/filtersets.py:1272 netbox/dcim/forms/filtersets.py:1296 -#: netbox/dcim/forms/filtersets.py:1316 netbox/dcim/forms/filtersets.py:1353 -#: netbox/dcim/forms/filtersets.py:1450 netbox/dcim/forms/filtersets.py:1474 -#: netbox/dcim/forms/model_forms.py:703 netbox/dcim/forms/model_forms.py:709 -#: netbox/dcim/forms/object_import.py:84 -#: netbox/dcim/forms/object_import.py:113 -#: netbox/dcim/forms/object_import.py:145 netbox/dcim/tables/devices.py:178 -#: netbox/dcim/tables/devices.py:814 netbox/dcim/tables/power.py:77 -#: netbox/dcim/tables/racks.py:138 netbox/extras/forms/bulk_import.py:42 -#: netbox/extras/tables/tables.py:405 netbox/extras/tables/tables.py:465 -#: netbox/netbox/tables/tables.py:240 -#: netbox/templates/circuits/circuit.html:30 -#: netbox/templates/core/datasource.html:38 -#: netbox/templates/dcim/cable.html:15 -#: netbox/templates/dcim/consoleport.html:36 -#: netbox/templates/dcim/consoleserverport.html:36 -#: netbox/templates/dcim/frontport.html:36 -#: netbox/templates/dcim/interface.html:46 -#: netbox/templates/dcim/interface.html:169 -#: netbox/templates/dcim/interface.html:311 -#: netbox/templates/dcim/powerfeed.html:32 -#: netbox/templates/dcim/poweroutlet.html:36 -#: netbox/templates/dcim/powerport.html:36 -#: netbox/templates/dcim/rearport.html:36 -#: netbox/templates/extras/eventrule.html:74 -#: netbox/templates/virtualization/cluster.html:17 -#: netbox/templates/vpn/l2vpn.html:22 -#: netbox/templates/wireless/inc/authentication_attrs.html:8 -#: netbox/templates/wireless/inc/wirelesslink_interface.html:14 -#: netbox/virtualization/forms/bulk_edit.py:60 -#: netbox/virtualization/forms/bulk_import.py:41 -#: netbox/virtualization/forms/filtersets.py:54 -#: netbox/virtualization/forms/model_forms.py:62 -#: netbox/virtualization/tables/clusters.py:66 -#: netbox/vpn/forms/bulk_edit.py:264 netbox/vpn/forms/bulk_import.py:264 -#: netbox/vpn/forms/filtersets.py:217 netbox/vpn/forms/model_forms.py:84 -#: netbox/vpn/forms/model_forms.py:119 netbox/vpn/forms/model_forms.py:231 +#: circuits/forms/bulk_edit.py:118 circuits/forms/bulk_import.py:87 +#: circuits/forms/filtersets.py:126 core/forms/bulk_edit.py:18 +#: core/forms/filtersets.py:33 core/tables/change_logging.py:32 +#: core/tables/data.py:20 core/tables/jobs.py:18 dcim/forms/bulk_edit.py:782 +#: dcim/forms/bulk_edit.py:921 dcim/forms/bulk_edit.py:989 +#: dcim/forms/bulk_edit.py:1008 dcim/forms/bulk_edit.py:1031 +#: dcim/forms/bulk_edit.py:1073 dcim/forms/bulk_edit.py:1117 +#: dcim/forms/bulk_edit.py:1168 dcim/forms/bulk_edit.py:1195 +#: dcim/forms/bulk_import.py:188 dcim/forms/bulk_import.py:260 +#: dcim/forms/bulk_import.py:708 dcim/forms/bulk_import.py:734 +#: dcim/forms/bulk_import.py:760 dcim/forms/bulk_import.py:780 +#: dcim/forms/bulk_import.py:863 dcim/forms/bulk_import.py:957 +#: dcim/forms/bulk_import.py:999 dcim/forms/bulk_import.py:1213 +#: dcim/forms/bulk_import.py:1376 dcim/forms/filtersets.py:955 +#: dcim/forms/filtersets.py:1054 dcim/forms/filtersets.py:1175 +#: dcim/forms/filtersets.py:1247 dcim/forms/filtersets.py:1272 +#: dcim/forms/filtersets.py:1296 dcim/forms/filtersets.py:1316 +#: dcim/forms/filtersets.py:1353 dcim/forms/filtersets.py:1450 +#: dcim/forms/filtersets.py:1474 dcim/forms/model_forms.py:703 +#: dcim/forms/model_forms.py:709 dcim/forms/object_import.py:84 +#: dcim/forms/object_import.py:113 dcim/forms/object_import.py:145 +#: dcim/tables/devices.py:178 dcim/tables/devices.py:814 +#: dcim/tables/power.py:77 dcim/tables/racks.py:138 +#: extras/forms/bulk_import.py:42 extras/tables/tables.py:405 +#: extras/tables/tables.py:465 netbox/tables/tables.py:240 +#: templates/circuits/circuit.html:30 templates/core/datasource.html:38 +#: templates/dcim/cable.html:15 templates/dcim/consoleport.html:36 +#: templates/dcim/consoleserverport.html:36 templates/dcim/frontport.html:36 +#: templates/dcim/interface.html:46 templates/dcim/interface.html:169 +#: templates/dcim/interface.html:311 templates/dcim/powerfeed.html:32 +#: templates/dcim/poweroutlet.html:36 templates/dcim/powerport.html:36 +#: templates/dcim/rearport.html:36 templates/extras/eventrule.html:74 +#: templates/virtualization/cluster.html:17 templates/vpn/l2vpn.html:22 +#: templates/wireless/inc/authentication_attrs.html:8 +#: templates/wireless/inc/wirelesslink_interface.html:14 +#: virtualization/forms/bulk_edit.py:60 virtualization/forms/bulk_import.py:41 +#: virtualization/forms/filtersets.py:54 +#: virtualization/forms/model_forms.py:62 virtualization/tables/clusters.py:66 +#: vpn/forms/bulk_edit.py:264 vpn/forms/bulk_import.py:264 +#: vpn/forms/filtersets.py:217 vpn/forms/model_forms.py:84 +#: vpn/forms/model_forms.py:119 vpn/forms/model_forms.py:231 msgid "Type" msgstr "Typ" -#: netbox/circuits/forms/bulk_edit.py:128 -#: netbox/circuits/forms/bulk_import.py:80 -#: netbox/circuits/forms/filtersets.py:139 -#: netbox/circuits/forms/model_forms.py:98 +#: circuits/forms/bulk_edit.py:128 circuits/forms/bulk_import.py:80 +#: circuits/forms/filtersets.py:139 circuits/forms/model_forms.py:98 msgid "Provider account" msgstr "Providerkonto" -#: netbox/circuits/forms/bulk_edit.py:136 -#: netbox/circuits/forms/bulk_import.py:93 -#: netbox/circuits/forms/filtersets.py:150 netbox/core/forms/filtersets.py:38 -#: netbox/core/forms/filtersets.py:79 netbox/core/tables/data.py:23 -#: netbox/core/tables/jobs.py:26 netbox/core/tables/tasks.py:88 -#: netbox/dcim/forms/bulk_edit.py:106 netbox/dcim/forms/bulk_edit.py:181 -#: netbox/dcim/forms/bulk_edit.py:351 netbox/dcim/forms/bulk_edit.py:700 -#: netbox/dcim/forms/bulk_edit.py:756 netbox/dcim/forms/bulk_edit.py:788 -#: netbox/dcim/forms/bulk_edit.py:915 netbox/dcim/forms/bulk_edit.py:1701 -#: netbox/dcim/forms/bulk_import.py:88 netbox/dcim/forms/bulk_import.py:147 -#: netbox/dcim/forms/bulk_import.py:248 netbox/dcim/forms/bulk_import.py:505 -#: netbox/dcim/forms/bulk_import.py:659 netbox/dcim/forms/bulk_import.py:1207 -#: netbox/dcim/forms/bulk_import.py:1371 netbox/dcim/forms/bulk_import.py:1435 -#: netbox/dcim/forms/filtersets.py:178 netbox/dcim/forms/filtersets.py:237 -#: netbox/dcim/forms/filtersets.py:359 netbox/dcim/forms/filtersets.py:799 -#: netbox/dcim/forms/filtersets.py:924 netbox/dcim/forms/filtersets.py:958 -#: netbox/dcim/forms/filtersets.py:1059 netbox/dcim/forms/filtersets.py:1170 -#: netbox/dcim/tables/devices.py:140 netbox/dcim/tables/devices.py:817 -#: netbox/dcim/tables/devices.py:1063 netbox/dcim/tables/modules.py:69 -#: netbox/dcim/tables/power.py:74 netbox/dcim/tables/racks.py:126 -#: netbox/dcim/tables/sites.py:82 netbox/dcim/tables/sites.py:138 -#: netbox/ipam/forms/bulk_edit.py:255 netbox/ipam/forms/bulk_edit.py:305 -#: netbox/ipam/forms/bulk_edit.py:353 netbox/ipam/forms/bulk_edit.py:551 -#: netbox/ipam/forms/bulk_import.py:192 netbox/ipam/forms/bulk_import.py:257 -#: netbox/ipam/forms/bulk_import.py:293 netbox/ipam/forms/bulk_import.py:450 -#: netbox/ipam/forms/filtersets.py:210 netbox/ipam/forms/filtersets.py:281 -#: netbox/ipam/forms/filtersets.py:355 netbox/ipam/forms/filtersets.py:501 -#: netbox/ipam/forms/model_forms.py:468 netbox/ipam/tables/ip.py:237 -#: netbox/ipam/tables/ip.py:312 netbox/ipam/tables/ip.py:363 -#: netbox/ipam/tables/ip.py:426 netbox/ipam/tables/ip.py:453 -#: netbox/ipam/tables/vlans.py:126 netbox/ipam/tables/vlans.py:232 -#: netbox/templates/circuits/circuit.html:34 -#: netbox/templates/core/datasource.html:46 netbox/templates/core/job.html:48 -#: netbox/templates/core/rq_task.html:81 netbox/templates/core/system.html:18 -#: netbox/templates/dcim/cable.html:19 netbox/templates/dcim/device.html:178 -#: netbox/templates/dcim/location.html:45 netbox/templates/dcim/module.html:69 -#: netbox/templates/dcim/powerfeed.html:36 netbox/templates/dcim/rack.html:41 -#: netbox/templates/dcim/site.html:43 -#: netbox/templates/extras/script_list.html:47 -#: netbox/templates/ipam/ipaddress.html:37 -#: netbox/templates/ipam/iprange.html:54 netbox/templates/ipam/prefix.html:73 -#: netbox/templates/ipam/vlan.html:48 -#: netbox/templates/virtualization/cluster.html:21 -#: netbox/templates/virtualization/virtualmachine.html:19 -#: netbox/templates/vpn/tunnel.html:25 -#: netbox/templates/wireless/wirelesslan.html:22 -#: netbox/templates/wireless/wirelesslink.html:17 -#: netbox/users/forms/filtersets.py:32 netbox/users/forms/model_forms.py:194 -#: netbox/virtualization/forms/bulk_edit.py:70 -#: netbox/virtualization/forms/bulk_edit.py:118 -#: netbox/virtualization/forms/bulk_import.py:54 -#: netbox/virtualization/forms/bulk_import.py:80 -#: netbox/virtualization/forms/filtersets.py:62 -#: netbox/virtualization/forms/filtersets.py:160 -#: netbox/virtualization/tables/clusters.py:74 -#: netbox/virtualization/tables/virtualmachines.py:60 -#: netbox/vpn/forms/bulk_edit.py:39 netbox/vpn/forms/bulk_import.py:37 -#: netbox/vpn/forms/filtersets.py:47 netbox/vpn/tables/tunnels.py:48 -#: netbox/wireless/forms/bulk_edit.py:43 -#: netbox/wireless/forms/bulk_edit.py:105 -#: netbox/wireless/forms/bulk_import.py:43 -#: netbox/wireless/forms/bulk_import.py:84 -#: netbox/wireless/forms/filtersets.py:49 -#: netbox/wireless/forms/filtersets.py:83 -#: netbox/wireless/tables/wirelesslan.py:52 -#: netbox/wireless/tables/wirelesslink.py:20 +#: circuits/forms/bulk_edit.py:136 circuits/forms/bulk_import.py:93 +#: circuits/forms/filtersets.py:150 core/forms/filtersets.py:38 +#: core/forms/filtersets.py:79 core/tables/data.py:23 core/tables/jobs.py:26 +#: core/tables/tasks.py:88 dcim/forms/bulk_edit.py:106 +#: dcim/forms/bulk_edit.py:181 dcim/forms/bulk_edit.py:351 +#: dcim/forms/bulk_edit.py:700 dcim/forms/bulk_edit.py:756 +#: dcim/forms/bulk_edit.py:788 dcim/forms/bulk_edit.py:915 +#: dcim/forms/bulk_edit.py:1701 dcim/forms/bulk_import.py:88 +#: dcim/forms/bulk_import.py:147 dcim/forms/bulk_import.py:248 +#: dcim/forms/bulk_import.py:505 dcim/forms/bulk_import.py:659 +#: dcim/forms/bulk_import.py:1207 dcim/forms/bulk_import.py:1371 +#: dcim/forms/bulk_import.py:1435 dcim/forms/filtersets.py:178 +#: dcim/forms/filtersets.py:237 dcim/forms/filtersets.py:359 +#: dcim/forms/filtersets.py:799 dcim/forms/filtersets.py:924 +#: dcim/forms/filtersets.py:958 dcim/forms/filtersets.py:1059 +#: dcim/forms/filtersets.py:1170 dcim/tables/devices.py:140 +#: dcim/tables/devices.py:817 dcim/tables/devices.py:1063 +#: dcim/tables/modules.py:69 dcim/tables/power.py:74 dcim/tables/racks.py:126 +#: dcim/tables/sites.py:82 dcim/tables/sites.py:138 +#: ipam/forms/bulk_edit.py:256 ipam/forms/bulk_edit.py:306 +#: ipam/forms/bulk_edit.py:354 ipam/forms/bulk_edit.py:506 +#: ipam/forms/bulk_import.py:192 ipam/forms/bulk_import.py:257 +#: ipam/forms/bulk_import.py:293 ipam/forms/bulk_import.py:450 +#: ipam/forms/filtersets.py:210 ipam/forms/filtersets.py:281 +#: ipam/forms/filtersets.py:355 ipam/forms/filtersets.py:501 +#: ipam/forms/model_forms.py:468 ipam/tables/ip.py:237 ipam/tables/ip.py:312 +#: ipam/tables/ip.py:363 ipam/tables/ip.py:426 ipam/tables/ip.py:453 +#: ipam/tables/vlans.py:126 ipam/tables/vlans.py:232 +#: templates/circuits/circuit.html:34 templates/core/datasource.html:46 +#: templates/core/job.html:48 templates/core/rq_task.html:81 +#: templates/core/system.html:18 templates/dcim/cable.html:19 +#: templates/dcim/device.html:178 templates/dcim/location.html:45 +#: templates/dcim/module.html:69 templates/dcim/powerfeed.html:36 +#: templates/dcim/rack.html:41 templates/dcim/site.html:43 +#: templates/extras/script_list.html:47 templates/ipam/ipaddress.html:37 +#: templates/ipam/iprange.html:54 templates/ipam/prefix.html:73 +#: templates/ipam/vlan.html:48 templates/virtualization/cluster.html:21 +#: templates/virtualization/virtualmachine.html:19 +#: templates/vpn/tunnel.html:25 templates/wireless/wirelesslan.html:22 +#: templates/wireless/wirelesslink.html:17 users/forms/filtersets.py:32 +#: users/forms/model_forms.py:194 virtualization/forms/bulk_edit.py:70 +#: virtualization/forms/bulk_edit.py:118 +#: virtualization/forms/bulk_import.py:54 +#: virtualization/forms/bulk_import.py:80 +#: virtualization/forms/filtersets.py:62 +#: virtualization/forms/filtersets.py:160 virtualization/tables/clusters.py:74 +#: virtualization/tables/virtualmachines.py:60 vpn/forms/bulk_edit.py:39 +#: vpn/forms/bulk_import.py:37 vpn/forms/filtersets.py:47 +#: vpn/tables/tunnels.py:48 wireless/forms/bulk_edit.py:43 +#: wireless/forms/bulk_edit.py:105 wireless/forms/bulk_import.py:43 +#: wireless/forms/bulk_import.py:84 wireless/forms/filtersets.py:49 +#: wireless/forms/filtersets.py:83 wireless/tables/wirelesslan.py:52 +#: wireless/tables/wirelesslink.py:20 msgid "Status" msgstr "Status" -#: netbox/circuits/forms/bulk_edit.py:142 -#: netbox/circuits/forms/bulk_edit.py:233 -#: netbox/circuits/forms/bulk_import.py:98 -#: netbox/circuits/forms/bulk_import.py:158 -#: netbox/circuits/forms/filtersets.py:119 -#: netbox/circuits/forms/filtersets.py:241 netbox/dcim/forms/bulk_edit.py:122 -#: netbox/dcim/forms/bulk_edit.py:187 netbox/dcim/forms/bulk_edit.py:346 -#: netbox/dcim/forms/bulk_edit.py:461 netbox/dcim/forms/bulk_edit.py:690 -#: netbox/dcim/forms/bulk_edit.py:794 netbox/dcim/forms/bulk_edit.py:1706 -#: netbox/dcim/forms/bulk_import.py:107 netbox/dcim/forms/bulk_import.py:152 -#: netbox/dcim/forms/bulk_import.py:241 netbox/dcim/forms/bulk_import.py:334 -#: netbox/dcim/forms/bulk_import.py:479 netbox/dcim/forms/bulk_import.py:1219 -#: netbox/dcim/forms/bulk_import.py:1428 netbox/dcim/forms/filtersets.py:173 -#: netbox/dcim/forms/filtersets.py:205 netbox/dcim/forms/filtersets.py:323 -#: netbox/dcim/forms/filtersets.py:399 netbox/dcim/forms/filtersets.py:420 -#: netbox/dcim/forms/filtersets.py:722 netbox/dcim/forms/filtersets.py:916 -#: netbox/dcim/forms/filtersets.py:978 netbox/dcim/forms/filtersets.py:1008 -#: netbox/dcim/forms/filtersets.py:1130 netbox/dcim/tables/power.py:88 -#: netbox/extras/filtersets.py:612 netbox/extras/forms/filtersets.py:323 -#: netbox/extras/forms/filtersets.py:396 netbox/ipam/forms/bulk_edit.py:42 -#: netbox/ipam/forms/bulk_edit.py:67 netbox/ipam/forms/bulk_edit.py:111 -#: netbox/ipam/forms/bulk_edit.py:140 netbox/ipam/forms/bulk_edit.py:165 -#: netbox/ipam/forms/bulk_edit.py:250 netbox/ipam/forms/bulk_edit.py:300 -#: netbox/ipam/forms/bulk_edit.py:348 netbox/ipam/forms/bulk_edit.py:546 -#: netbox/ipam/forms/bulk_import.py:38 netbox/ipam/forms/bulk_import.py:67 -#: netbox/ipam/forms/bulk_import.py:95 netbox/ipam/forms/bulk_import.py:115 -#: netbox/ipam/forms/bulk_import.py:135 netbox/ipam/forms/bulk_import.py:164 -#: netbox/ipam/forms/bulk_import.py:250 netbox/ipam/forms/bulk_import.py:286 -#: netbox/ipam/forms/bulk_import.py:443 netbox/ipam/forms/filtersets.py:48 -#: netbox/ipam/forms/filtersets.py:68 netbox/ipam/forms/filtersets.py:100 -#: netbox/ipam/forms/filtersets.py:120 netbox/ipam/forms/filtersets.py:143 -#: netbox/ipam/forms/filtersets.py:174 netbox/ipam/forms/filtersets.py:267 -#: netbox/ipam/forms/filtersets.py:310 netbox/ipam/forms/filtersets.py:469 -#: netbox/ipam/tables/ip.py:456 netbox/ipam/tables/vlans.py:229 -#: netbox/templates/circuits/circuit.html:38 -#: netbox/templates/circuits/circuitgroup.html:36 -#: netbox/templates/dcim/cable.html:23 netbox/templates/dcim/device.html:79 -#: netbox/templates/dcim/location.html:49 -#: netbox/templates/dcim/powerfeed.html:44 netbox/templates/dcim/rack.html:32 -#: netbox/templates/dcim/rackreservation.html:49 -#: netbox/templates/dcim/site.html:47 -#: netbox/templates/dcim/virtualdevicecontext.html:52 -#: netbox/templates/ipam/aggregate.html:30 netbox/templates/ipam/asn.html:33 -#: netbox/templates/ipam/asnrange.html:29 -#: netbox/templates/ipam/ipaddress.html:28 -#: netbox/templates/ipam/iprange.html:58 netbox/templates/ipam/prefix.html:29 -#: netbox/templates/ipam/routetarget.html:17 -#: netbox/templates/ipam/vlan.html:39 netbox/templates/ipam/vrf.html:20 -#: netbox/templates/tenancy/tenant.html:17 -#: netbox/templates/virtualization/cluster.html:33 -#: netbox/templates/virtualization/virtualmachine.html:39 -#: netbox/templates/vpn/l2vpn.html:30 netbox/templates/vpn/tunnel.html:49 -#: netbox/templates/wireless/wirelesslan.html:34 -#: netbox/templates/wireless/wirelesslink.html:25 -#: netbox/tenancy/forms/forms.py:25 netbox/tenancy/forms/forms.py:48 -#: netbox/tenancy/forms/model_forms.py:52 netbox/tenancy/tables/columns.py:64 -#: netbox/virtualization/forms/bulk_edit.py:76 -#: netbox/virtualization/forms/bulk_edit.py:155 -#: netbox/virtualization/forms/bulk_import.py:66 -#: netbox/virtualization/forms/bulk_import.py:115 -#: netbox/virtualization/forms/filtersets.py:47 -#: netbox/virtualization/forms/filtersets.py:105 -#: netbox/vpn/forms/bulk_edit.py:59 netbox/vpn/forms/bulk_edit.py:269 -#: netbox/vpn/forms/bulk_import.py:59 netbox/vpn/forms/bulk_import.py:258 -#: netbox/vpn/forms/filtersets.py:214 netbox/wireless/forms/bulk_edit.py:63 -#: netbox/wireless/forms/bulk_edit.py:110 -#: netbox/wireless/forms/bulk_import.py:55 -#: netbox/wireless/forms/bulk_import.py:97 -#: netbox/wireless/forms/filtersets.py:35 -#: netbox/wireless/forms/filtersets.py:75 +#: circuits/forms/bulk_edit.py:142 circuits/forms/bulk_edit.py:233 +#: circuits/forms/bulk_import.py:98 circuits/forms/bulk_import.py:158 +#: circuits/forms/filtersets.py:119 circuits/forms/filtersets.py:241 +#: dcim/forms/bulk_edit.py:122 dcim/forms/bulk_edit.py:187 +#: dcim/forms/bulk_edit.py:346 dcim/forms/bulk_edit.py:461 +#: dcim/forms/bulk_edit.py:690 dcim/forms/bulk_edit.py:794 +#: dcim/forms/bulk_edit.py:1706 dcim/forms/bulk_import.py:107 +#: dcim/forms/bulk_import.py:152 dcim/forms/bulk_import.py:241 +#: dcim/forms/bulk_import.py:334 dcim/forms/bulk_import.py:479 +#: dcim/forms/bulk_import.py:1219 dcim/forms/bulk_import.py:1428 +#: dcim/forms/filtersets.py:173 dcim/forms/filtersets.py:205 +#: dcim/forms/filtersets.py:323 dcim/forms/filtersets.py:399 +#: dcim/forms/filtersets.py:420 dcim/forms/filtersets.py:722 +#: dcim/forms/filtersets.py:916 dcim/forms/filtersets.py:978 +#: dcim/forms/filtersets.py:1008 dcim/forms/filtersets.py:1130 +#: dcim/tables/power.py:88 extras/filtersets.py:612 +#: extras/forms/filtersets.py:323 extras/forms/filtersets.py:396 +#: ipam/forms/bulk_edit.py:43 ipam/forms/bulk_edit.py:68 +#: ipam/forms/bulk_edit.py:112 ipam/forms/bulk_edit.py:141 +#: ipam/forms/bulk_edit.py:166 ipam/forms/bulk_edit.py:251 +#: ipam/forms/bulk_edit.py:301 ipam/forms/bulk_edit.py:349 +#: ipam/forms/bulk_edit.py:501 ipam/forms/bulk_import.py:38 +#: ipam/forms/bulk_import.py:67 ipam/forms/bulk_import.py:95 +#: ipam/forms/bulk_import.py:115 ipam/forms/bulk_import.py:135 +#: ipam/forms/bulk_import.py:164 ipam/forms/bulk_import.py:250 +#: ipam/forms/bulk_import.py:286 ipam/forms/bulk_import.py:443 +#: ipam/forms/filtersets.py:48 ipam/forms/filtersets.py:68 +#: ipam/forms/filtersets.py:100 ipam/forms/filtersets.py:120 +#: ipam/forms/filtersets.py:143 ipam/forms/filtersets.py:174 +#: ipam/forms/filtersets.py:267 ipam/forms/filtersets.py:310 +#: ipam/forms/filtersets.py:469 ipam/tables/ip.py:456 ipam/tables/vlans.py:229 +#: templates/circuits/circuit.html:38 templates/circuits/circuitgroup.html:36 +#: templates/dcim/cable.html:23 templates/dcim/device.html:79 +#: templates/dcim/location.html:49 templates/dcim/powerfeed.html:44 +#: templates/dcim/rack.html:32 templates/dcim/rackreservation.html:49 +#: templates/dcim/site.html:47 templates/dcim/virtualdevicecontext.html:52 +#: templates/ipam/aggregate.html:30 templates/ipam/asn.html:33 +#: templates/ipam/asnrange.html:29 templates/ipam/ipaddress.html:28 +#: templates/ipam/iprange.html:58 templates/ipam/prefix.html:29 +#: templates/ipam/routetarget.html:17 templates/ipam/vlan.html:39 +#: templates/ipam/vrf.html:20 templates/tenancy/tenant.html:17 +#: templates/virtualization/cluster.html:33 +#: templates/virtualization/virtualmachine.html:39 templates/vpn/l2vpn.html:30 +#: templates/vpn/tunnel.html:49 templates/wireless/wirelesslan.html:34 +#: templates/wireless/wirelesslink.html:25 tenancy/forms/forms.py:25 +#: tenancy/forms/forms.py:48 tenancy/forms/model_forms.py:52 +#: tenancy/tables/columns.py:64 virtualization/forms/bulk_edit.py:76 +#: virtualization/forms/bulk_edit.py:155 +#: virtualization/forms/bulk_import.py:66 +#: virtualization/forms/bulk_import.py:115 +#: virtualization/forms/filtersets.py:47 +#: virtualization/forms/filtersets.py:105 vpn/forms/bulk_edit.py:59 +#: vpn/forms/bulk_edit.py:269 vpn/forms/bulk_import.py:59 +#: vpn/forms/bulk_import.py:258 vpn/forms/filtersets.py:214 +#: wireless/forms/bulk_edit.py:63 wireless/forms/bulk_edit.py:110 +#: wireless/forms/bulk_import.py:55 wireless/forms/bulk_import.py:97 +#: wireless/forms/filtersets.py:35 wireless/forms/filtersets.py:75 msgid "Tenant" msgstr "Mandant" -#: netbox/circuits/forms/bulk_edit.py:147 -#: netbox/circuits/forms/filtersets.py:174 +#: circuits/forms/bulk_edit.py:147 circuits/forms/filtersets.py:174 msgid "Install date" msgstr "Datum der Installation" -#: netbox/circuits/forms/bulk_edit.py:152 -#: netbox/circuits/forms/filtersets.py:179 +#: circuits/forms/bulk_edit.py:152 circuits/forms/filtersets.py:179 msgid "Termination date" msgstr "Kündigungsdatum" -#: netbox/circuits/forms/bulk_edit.py:158 -#: netbox/circuits/forms/filtersets.py:186 +#: circuits/forms/bulk_edit.py:158 circuits/forms/filtersets.py:186 msgid "Commit rate (Kbps)" msgstr "Vereinbarte Bandbreite (Kbps)" -#: netbox/circuits/forms/bulk_edit.py:173 -#: netbox/circuits/forms/model_forms.py:112 +#: circuits/forms/bulk_edit.py:173 circuits/forms/model_forms.py:112 msgid "Service Parameters" msgstr "Service Parameter" -#: netbox/circuits/forms/bulk_edit.py:174 -#: netbox/circuits/forms/model_forms.py:113 -#: netbox/circuits/forms/model_forms.py:183 -#: netbox/dcim/forms/model_forms.py:139 netbox/dcim/forms/model_forms.py:181 -#: netbox/dcim/forms/model_forms.py:266 netbox/dcim/forms/model_forms.py:323 -#: netbox/dcim/forms/model_forms.py:768 netbox/dcim/forms/model_forms.py:1692 -#: netbox/ipam/forms/model_forms.py:64 netbox/ipam/forms/model_forms.py:81 -#: netbox/ipam/forms/model_forms.py:115 netbox/ipam/forms/model_forms.py:136 -#: netbox/ipam/forms/model_forms.py:160 netbox/ipam/forms/model_forms.py:232 -#: netbox/ipam/forms/model_forms.py:261 netbox/ipam/forms/model_forms.py:316 -#: netbox/netbox/navigation/menu.py:24 -#: netbox/templates/dcim/device_edit.html:85 -#: netbox/templates/dcim/htmx/cable_edit.html:72 -#: netbox/templates/ipam/ipaddress_bulk_add.html:27 -#: netbox/templates/ipam/vlan_edit.html:22 -#: netbox/virtualization/forms/model_forms.py:80 -#: netbox/virtualization/forms/model_forms.py:222 -#: netbox/vpn/forms/bulk_edit.py:78 netbox/vpn/forms/filtersets.py:44 -#: netbox/vpn/forms/model_forms.py:62 netbox/vpn/forms/model_forms.py:147 -#: netbox/vpn/forms/model_forms.py:411 netbox/wireless/forms/model_forms.py:54 -#: netbox/wireless/forms/model_forms.py:170 +#: circuits/forms/bulk_edit.py:174 circuits/forms/model_forms.py:113 +#: circuits/forms/model_forms.py:183 dcim/forms/model_forms.py:139 +#: dcim/forms/model_forms.py:181 dcim/forms/model_forms.py:266 +#: dcim/forms/model_forms.py:323 dcim/forms/model_forms.py:768 +#: dcim/forms/model_forms.py:1692 ipam/forms/model_forms.py:64 +#: ipam/forms/model_forms.py:81 ipam/forms/model_forms.py:115 +#: ipam/forms/model_forms.py:136 ipam/forms/model_forms.py:160 +#: ipam/forms/model_forms.py:232 ipam/forms/model_forms.py:261 +#: ipam/forms/model_forms.py:316 netbox/navigation/menu.py:24 +#: templates/dcim/device_edit.html:85 templates/dcim/htmx/cable_edit.html:72 +#: templates/ipam/ipaddress_bulk_add.html:27 templates/ipam/vlan_edit.html:22 +#: virtualization/forms/model_forms.py:80 +#: virtualization/forms/model_forms.py:222 vpn/forms/bulk_edit.py:78 +#: vpn/forms/filtersets.py:44 vpn/forms/model_forms.py:62 +#: vpn/forms/model_forms.py:147 vpn/forms/model_forms.py:411 +#: wireless/forms/model_forms.py:54 wireless/forms/model_forms.py:170 msgid "Tenancy" msgstr "Mandantenverhältnis" -#: netbox/circuits/forms/bulk_edit.py:193 -#: netbox/circuits/forms/bulk_edit.py:217 -#: netbox/circuits/forms/model_forms.py:155 -#: netbox/circuits/tables/circuits.py:117 -#: netbox/templates/circuits/inc/circuit_termination_fields.html:62 -#: netbox/templates/circuits/providernetwork.html:17 +#: circuits/forms/bulk_edit.py:193 circuits/forms/bulk_edit.py:217 +#: circuits/forms/model_forms.py:155 circuits/tables/circuits.py:117 +#: templates/circuits/inc/circuit_termination_fields.html:62 +#: templates/circuits/providernetwork.html:17 msgid "Provider Network" msgstr "Provider Netzwerk" -#: netbox/circuits/forms/bulk_edit.py:199 +#: circuits/forms/bulk_edit.py:199 msgid "Port speed (Kbps)" msgstr "Portgeschwindigkeit (Kbit/s)" -#: netbox/circuits/forms/bulk_edit.py:203 +#: circuits/forms/bulk_edit.py:203 msgid "Upstream speed (Kbps)" msgstr "Upstream Geschwindigkeit (Kbps)" -#: netbox/circuits/forms/bulk_edit.py:206 netbox/dcim/forms/bulk_edit.py:951 -#: netbox/dcim/forms/bulk_edit.py:1315 netbox/dcim/forms/bulk_edit.py:1332 -#: netbox/dcim/forms/bulk_edit.py:1349 netbox/dcim/forms/bulk_edit.py:1367 -#: netbox/dcim/forms/bulk_edit.py:1455 netbox/dcim/forms/bulk_edit.py:1594 -#: netbox/dcim/forms/bulk_edit.py:1611 +#: circuits/forms/bulk_edit.py:206 dcim/forms/bulk_edit.py:951 +#: dcim/forms/bulk_edit.py:1315 dcim/forms/bulk_edit.py:1332 +#: dcim/forms/bulk_edit.py:1349 dcim/forms/bulk_edit.py:1367 +#: dcim/forms/bulk_edit.py:1455 dcim/forms/bulk_edit.py:1594 +#: dcim/forms/bulk_edit.py:1611 msgid "Mark connected" msgstr "Als verbunden markieren" -#: netbox/circuits/forms/bulk_edit.py:219 -#: netbox/circuits/forms/model_forms.py:157 -#: netbox/templates/circuits/inc/circuit_termination_fields.html:54 -#: netbox/templates/dcim/frontport.html:121 -#: netbox/templates/dcim/interface.html:193 -#: netbox/templates/dcim/rearport.html:111 +#: circuits/forms/bulk_edit.py:219 circuits/forms/model_forms.py:157 +#: templates/circuits/inc/circuit_termination_fields.html:54 +#: templates/dcim/frontport.html:121 templates/dcim/interface.html:193 +#: templates/dcim/rearport.html:111 msgid "Circuit Termination" msgstr "Transportnetzabschlusspunkt" -#: netbox/circuits/forms/bulk_edit.py:221 -#: netbox/circuits/forms/model_forms.py:159 +#: circuits/forms/bulk_edit.py:221 circuits/forms/model_forms.py:159 msgid "Termination Details" msgstr "Einzelheiten zum Abschlusspunkt" -#: netbox/circuits/forms/bulk_edit.py:251 -#: netbox/circuits/forms/filtersets.py:268 -#: netbox/circuits/tables/circuits.py:168 netbox/dcim/forms/model_forms.py:551 -#: netbox/templates/circuits/circuitgroupassignment.html:30 -#: netbox/templates/dcim/device.html:133 -#: netbox/templates/dcim/virtualchassis.html:68 -#: netbox/templates/dcim/virtualchassis_edit.html:56 -#: netbox/templates/ipam/inc/panels/fhrp_groups.html:26 -#: netbox/tenancy/forms/bulk_edit.py:147 -#: netbox/tenancy/forms/filtersets.py:110 +#: circuits/forms/bulk_edit.py:251 circuits/forms/filtersets.py:268 +#: circuits/tables/circuits.py:168 dcim/forms/model_forms.py:551 +#: templates/circuits/circuitgroupassignment.html:30 +#: templates/dcim/device.html:133 templates/dcim/virtualchassis.html:68 +#: templates/dcim/virtualchassis_edit.html:56 +#: templates/ipam/inc/panels/fhrp_groups.html:26 +#: tenancy/forms/bulk_edit.py:147 tenancy/forms/filtersets.py:110 msgid "Priority" msgstr "Priorität" -#: netbox/circuits/forms/bulk_import.py:39 -#: netbox/circuits/forms/bulk_import.py:54 -#: netbox/circuits/forms/bulk_import.py:77 +#: circuits/forms/bulk_import.py:39 circuits/forms/bulk_import.py:54 +#: circuits/forms/bulk_import.py:77 msgid "Assigned provider" msgstr "Zugewiesener Provider" -#: netbox/circuits/forms/bulk_import.py:83 +#: circuits/forms/bulk_import.py:83 msgid "Assigned provider account" msgstr "Zugewiesenes Providerkonto" -#: netbox/circuits/forms/bulk_import.py:90 +#: circuits/forms/bulk_import.py:90 msgid "Type of circuit" msgstr "Transportnetz Typ" -#: netbox/circuits/forms/bulk_import.py:95 netbox/dcim/forms/bulk_import.py:90 -#: netbox/dcim/forms/bulk_import.py:149 netbox/dcim/forms/bulk_import.py:250 -#: netbox/dcim/forms/bulk_import.py:507 netbox/dcim/forms/bulk_import.py:661 -#: netbox/dcim/forms/bulk_import.py:1373 netbox/ipam/forms/bulk_import.py:194 -#: netbox/ipam/forms/bulk_import.py:259 netbox/ipam/forms/bulk_import.py:295 -#: netbox/ipam/forms/bulk_import.py:452 -#: netbox/virtualization/forms/bulk_import.py:56 -#: netbox/virtualization/forms/bulk_import.py:82 -#: netbox/vpn/forms/bulk_import.py:39 netbox/wireless/forms/bulk_import.py:45 +#: circuits/forms/bulk_import.py:95 dcim/forms/bulk_import.py:90 +#: dcim/forms/bulk_import.py:149 dcim/forms/bulk_import.py:250 +#: dcim/forms/bulk_import.py:507 dcim/forms/bulk_import.py:661 +#: dcim/forms/bulk_import.py:1373 ipam/forms/bulk_import.py:194 +#: ipam/forms/bulk_import.py:259 ipam/forms/bulk_import.py:295 +#: ipam/forms/bulk_import.py:452 virtualization/forms/bulk_import.py:56 +#: virtualization/forms/bulk_import.py:82 vpn/forms/bulk_import.py:39 +#: wireless/forms/bulk_import.py:45 msgid "Operational status" msgstr "Betriebsstatus" -#: netbox/circuits/forms/bulk_import.py:102 -#: netbox/circuits/forms/bulk_import.py:162 -#: netbox/dcim/forms/bulk_import.py:111 netbox/dcim/forms/bulk_import.py:156 -#: netbox/dcim/forms/bulk_import.py:338 netbox/dcim/forms/bulk_import.py:483 -#: netbox/dcim/forms/bulk_import.py:1223 netbox/dcim/forms/bulk_import.py:1368 -#: netbox/dcim/forms/bulk_import.py:1432 netbox/ipam/forms/bulk_import.py:42 -#: netbox/ipam/forms/bulk_import.py:71 netbox/ipam/forms/bulk_import.py:99 -#: netbox/ipam/forms/bulk_import.py:119 netbox/ipam/forms/bulk_import.py:139 -#: netbox/ipam/forms/bulk_import.py:168 netbox/ipam/forms/bulk_import.py:254 -#: netbox/ipam/forms/bulk_import.py:290 netbox/ipam/forms/bulk_import.py:447 -#: netbox/virtualization/forms/bulk_import.py:70 -#: netbox/virtualization/forms/bulk_import.py:119 -#: netbox/vpn/forms/bulk_import.py:63 netbox/wireless/forms/bulk_import.py:59 -#: netbox/wireless/forms/bulk_import.py:101 +#: circuits/forms/bulk_import.py:102 circuits/forms/bulk_import.py:162 +#: dcim/forms/bulk_import.py:111 dcim/forms/bulk_import.py:156 +#: dcim/forms/bulk_import.py:338 dcim/forms/bulk_import.py:483 +#: dcim/forms/bulk_import.py:1223 dcim/forms/bulk_import.py:1368 +#: dcim/forms/bulk_import.py:1432 ipam/forms/bulk_import.py:42 +#: ipam/forms/bulk_import.py:71 ipam/forms/bulk_import.py:99 +#: ipam/forms/bulk_import.py:119 ipam/forms/bulk_import.py:139 +#: ipam/forms/bulk_import.py:168 ipam/forms/bulk_import.py:254 +#: ipam/forms/bulk_import.py:290 ipam/forms/bulk_import.py:447 +#: virtualization/forms/bulk_import.py:70 +#: virtualization/forms/bulk_import.py:119 vpn/forms/bulk_import.py:63 +#: wireless/forms/bulk_import.py:59 wireless/forms/bulk_import.py:101 msgid "Assigned tenant" msgstr "Zugewiesener Mandant" -#: netbox/circuits/forms/bulk_import.py:120 -#: netbox/templates/circuits/inc/circuit_termination.html:6 -#: netbox/templates/circuits/inc/circuit_termination_fields.html:15 -#: netbox/templates/dcim/cable.html:68 netbox/templates/dcim/cable.html:72 -#: netbox/vpn/forms/bulk_import.py:100 netbox/vpn/forms/filtersets.py:77 +#: circuits/forms/bulk_import.py:120 +#: templates/circuits/inc/circuit_termination.html:6 +#: templates/circuits/inc/circuit_termination_fields.html:15 +#: templates/dcim/cable.html:68 templates/dcim/cable.html:72 +#: vpn/forms/bulk_import.py:100 vpn/forms/filtersets.py:77 msgid "Termination" msgstr "Abschlusspunkt" -#: netbox/circuits/forms/bulk_import.py:130 -#: netbox/circuits/forms/filtersets.py:147 -#: netbox/circuits/forms/filtersets.py:227 -#: netbox/circuits/forms/model_forms.py:144 +#: circuits/forms/bulk_import.py:130 circuits/forms/filtersets.py:147 +#: circuits/forms/filtersets.py:227 circuits/forms/model_forms.py:144 msgid "Provider network" msgstr "Providernetzwerk" -#: netbox/circuits/forms/filtersets.py:30 -#: netbox/circuits/forms/filtersets.py:118 -#: netbox/circuits/forms/filtersets.py:200 netbox/dcim/forms/bulk_edit.py:338 -#: netbox/dcim/forms/bulk_edit.py:441 netbox/dcim/forms/bulk_edit.py:682 -#: netbox/dcim/forms/bulk_edit.py:729 netbox/dcim/forms/bulk_edit.py:882 -#: netbox/dcim/forms/bulk_import.py:235 netbox/dcim/forms/bulk_import.py:315 -#: netbox/dcim/forms/bulk_import.py:546 netbox/dcim/forms/bulk_import.py:1317 -#: netbox/dcim/forms/bulk_import.py:1351 netbox/dcim/forms/filtersets.py:95 -#: netbox/dcim/forms/filtersets.py:322 netbox/dcim/forms/filtersets.py:356 -#: netbox/dcim/forms/filtersets.py:396 netbox/dcim/forms/filtersets.py:447 -#: netbox/dcim/forms/filtersets.py:719 netbox/dcim/forms/filtersets.py:762 -#: netbox/dcim/forms/filtersets.py:977 netbox/dcim/forms/filtersets.py:1006 -#: netbox/dcim/forms/filtersets.py:1026 netbox/dcim/forms/filtersets.py:1090 -#: netbox/dcim/forms/filtersets.py:1120 netbox/dcim/forms/filtersets.py:1129 -#: netbox/dcim/forms/filtersets.py:1240 netbox/dcim/forms/filtersets.py:1264 -#: netbox/dcim/forms/filtersets.py:1289 netbox/dcim/forms/filtersets.py:1308 -#: netbox/dcim/forms/filtersets.py:1331 netbox/dcim/forms/filtersets.py:1442 -#: netbox/dcim/forms/filtersets.py:1466 netbox/dcim/forms/filtersets.py:1490 -#: netbox/dcim/forms/filtersets.py:1508 netbox/dcim/forms/filtersets.py:1525 -#: netbox/dcim/forms/model_forms.py:180 netbox/dcim/forms/model_forms.py:243 -#: netbox/dcim/forms/model_forms.py:468 netbox/dcim/forms/model_forms.py:728 -#: netbox/dcim/tables/devices.py:157 netbox/dcim/tables/power.py:30 -#: netbox/dcim/tables/racks.py:118 netbox/dcim/tables/racks.py:212 -#: netbox/extras/filtersets.py:536 netbox/extras/forms/filtersets.py:320 -#: netbox/ipam/forms/bulk_edit.py:460 netbox/ipam/forms/filtersets.py:173 -#: netbox/ipam/forms/filtersets.py:414 netbox/ipam/forms/filtersets.py:437 -#: netbox/ipam/forms/filtersets.py:467 netbox/templates/dcim/device.html:26 -#: netbox/templates/dcim/device_edit.html:30 -#: netbox/templates/dcim/inc/cable_termination.html:12 -#: netbox/templates/dcim/location.html:26 -#: netbox/templates/dcim/powerpanel.html:26 netbox/templates/dcim/rack.html:24 -#: netbox/templates/dcim/rackreservation.html:32 -#: netbox/virtualization/forms/filtersets.py:46 -#: netbox/virtualization/forms/filtersets.py:100 -#: netbox/wireless/forms/model_forms.py:87 -#: netbox/wireless/forms/model_forms.py:129 +#: circuits/forms/filtersets.py:30 circuits/forms/filtersets.py:118 +#: circuits/forms/filtersets.py:200 dcim/forms/bulk_edit.py:338 +#: dcim/forms/bulk_edit.py:441 dcim/forms/bulk_edit.py:682 +#: dcim/forms/bulk_edit.py:729 dcim/forms/bulk_edit.py:882 +#: dcim/forms/bulk_import.py:235 dcim/forms/bulk_import.py:315 +#: dcim/forms/bulk_import.py:546 dcim/forms/bulk_import.py:1317 +#: dcim/forms/bulk_import.py:1351 dcim/forms/filtersets.py:95 +#: dcim/forms/filtersets.py:322 dcim/forms/filtersets.py:356 +#: dcim/forms/filtersets.py:396 dcim/forms/filtersets.py:447 +#: dcim/forms/filtersets.py:719 dcim/forms/filtersets.py:762 +#: dcim/forms/filtersets.py:977 dcim/forms/filtersets.py:1006 +#: dcim/forms/filtersets.py:1026 dcim/forms/filtersets.py:1090 +#: dcim/forms/filtersets.py:1120 dcim/forms/filtersets.py:1129 +#: dcim/forms/filtersets.py:1240 dcim/forms/filtersets.py:1264 +#: dcim/forms/filtersets.py:1289 dcim/forms/filtersets.py:1308 +#: dcim/forms/filtersets.py:1331 dcim/forms/filtersets.py:1442 +#: dcim/forms/filtersets.py:1466 dcim/forms/filtersets.py:1490 +#: dcim/forms/filtersets.py:1508 dcim/forms/filtersets.py:1525 +#: dcim/forms/model_forms.py:180 dcim/forms/model_forms.py:243 +#: dcim/forms/model_forms.py:468 dcim/forms/model_forms.py:728 +#: dcim/tables/devices.py:157 dcim/tables/power.py:30 dcim/tables/racks.py:118 +#: dcim/tables/racks.py:212 extras/filtersets.py:536 +#: extras/forms/filtersets.py:320 ipam/forms/filtersets.py:173 +#: ipam/forms/filtersets.py:414 ipam/forms/filtersets.py:437 +#: ipam/forms/filtersets.py:467 templates/dcim/device.html:26 +#: templates/dcim/device_edit.html:30 +#: templates/dcim/inc/cable_termination.html:12 +#: templates/dcim/location.html:26 templates/dcim/powerpanel.html:26 +#: templates/dcim/rack.html:24 templates/dcim/rackreservation.html:32 +#: virtualization/forms/filtersets.py:46 +#: virtualization/forms/filtersets.py:100 wireless/forms/model_forms.py:87 +#: wireless/forms/model_forms.py:129 msgid "Location" msgstr "Lokation" -#: netbox/circuits/forms/filtersets.py:32 -#: netbox/circuits/forms/filtersets.py:120 netbox/dcim/forms/filtersets.py:144 -#: netbox/dcim/forms/filtersets.py:158 netbox/dcim/forms/filtersets.py:174 -#: netbox/dcim/forms/filtersets.py:206 netbox/dcim/forms/filtersets.py:328 -#: netbox/dcim/forms/filtersets.py:400 netbox/dcim/forms/filtersets.py:471 -#: netbox/dcim/forms/filtersets.py:723 netbox/dcim/forms/filtersets.py:1091 -#: netbox/netbox/navigation/menu.py:31 netbox/netbox/navigation/menu.py:33 -#: netbox/tenancy/forms/filtersets.py:42 netbox/tenancy/tables/columns.py:70 -#: netbox/tenancy/tables/contacts.py:25 netbox/tenancy/views.py:19 -#: netbox/virtualization/forms/filtersets.py:37 -#: netbox/virtualization/forms/filtersets.py:48 -#: netbox/virtualization/forms/filtersets.py:106 +#: circuits/forms/filtersets.py:32 circuits/forms/filtersets.py:120 +#: dcim/forms/filtersets.py:144 dcim/forms/filtersets.py:158 +#: dcim/forms/filtersets.py:174 dcim/forms/filtersets.py:206 +#: dcim/forms/filtersets.py:328 dcim/forms/filtersets.py:400 +#: dcim/forms/filtersets.py:471 dcim/forms/filtersets.py:723 +#: dcim/forms/filtersets.py:1091 netbox/navigation/menu.py:31 +#: netbox/navigation/menu.py:33 tenancy/forms/filtersets.py:42 +#: tenancy/tables/columns.py:70 tenancy/tables/contacts.py:25 +#: tenancy/views.py:19 virtualization/forms/filtersets.py:37 +#: virtualization/forms/filtersets.py:48 +#: virtualization/forms/filtersets.py:106 msgid "Contacts" msgstr "Kontakte" -#: netbox/circuits/forms/filtersets.py:37 -#: netbox/circuits/forms/filtersets.py:157 netbox/dcim/forms/bulk_edit.py:112 -#: netbox/dcim/forms/bulk_edit.py:313 netbox/dcim/forms/bulk_edit.py:857 -#: netbox/dcim/forms/bulk_import.py:93 netbox/dcim/forms/filtersets.py:73 -#: netbox/dcim/forms/filtersets.py:185 netbox/dcim/forms/filtersets.py:211 -#: netbox/dcim/forms/filtersets.py:334 netbox/dcim/forms/filtersets.py:425 -#: netbox/dcim/forms/filtersets.py:739 netbox/dcim/forms/filtersets.py:983 -#: netbox/dcim/forms/filtersets.py:1013 netbox/dcim/forms/filtersets.py:1097 -#: netbox/dcim/forms/filtersets.py:1136 netbox/dcim/forms/filtersets.py:1576 -#: netbox/dcim/forms/filtersets.py:1600 netbox/dcim/forms/filtersets.py:1624 -#: netbox/dcim/forms/model_forms.py:112 netbox/dcim/forms/object_create.py:375 -#: netbox/dcim/tables/devices.py:143 netbox/dcim/tables/sites.py:85 -#: netbox/extras/filtersets.py:503 netbox/ipam/forms/bulk_edit.py:207 -#: netbox/ipam/forms/bulk_edit.py:441 netbox/ipam/forms/bulk_edit.py:519 -#: netbox/ipam/forms/filtersets.py:217 netbox/ipam/forms/filtersets.py:422 -#: netbox/ipam/forms/filtersets.py:475 netbox/templates/dcim/device.html:18 -#: netbox/templates/dcim/rack.html:16 -#: netbox/templates/dcim/rackreservation.html:22 -#: netbox/templates/dcim/region.html:26 netbox/templates/dcim/site.html:31 -#: netbox/templates/ipam/prefix.html:49 netbox/templates/ipam/vlan.html:16 -#: netbox/virtualization/forms/bulk_edit.py:81 -#: netbox/virtualization/forms/filtersets.py:59 -#: netbox/virtualization/forms/filtersets.py:133 -#: netbox/virtualization/forms/model_forms.py:92 -#: netbox/vpn/forms/filtersets.py:257 +#: circuits/forms/filtersets.py:37 circuits/forms/filtersets.py:157 +#: dcim/forms/bulk_edit.py:112 dcim/forms/bulk_edit.py:313 +#: dcim/forms/bulk_edit.py:857 dcim/forms/bulk_import.py:93 +#: dcim/forms/filtersets.py:73 dcim/forms/filtersets.py:185 +#: dcim/forms/filtersets.py:211 dcim/forms/filtersets.py:334 +#: dcim/forms/filtersets.py:425 dcim/forms/filtersets.py:739 +#: dcim/forms/filtersets.py:983 dcim/forms/filtersets.py:1013 +#: dcim/forms/filtersets.py:1097 dcim/forms/filtersets.py:1136 +#: dcim/forms/filtersets.py:1576 dcim/forms/filtersets.py:1600 +#: dcim/forms/filtersets.py:1624 dcim/forms/model_forms.py:112 +#: dcim/forms/object_create.py:375 dcim/tables/devices.py:143 +#: dcim/tables/sites.py:85 extras/filtersets.py:503 +#: ipam/forms/bulk_edit.py:208 ipam/forms/bulk_edit.py:474 +#: ipam/forms/filtersets.py:217 ipam/forms/filtersets.py:422 +#: ipam/forms/filtersets.py:475 templates/dcim/device.html:18 +#: templates/dcim/rack.html:16 templates/dcim/rackreservation.html:22 +#: templates/dcim/region.html:26 templates/dcim/site.html:31 +#: templates/ipam/prefix.html:49 templates/ipam/vlan.html:16 +#: virtualization/forms/bulk_edit.py:81 virtualization/forms/filtersets.py:59 +#: virtualization/forms/filtersets.py:133 +#: virtualization/forms/model_forms.py:92 vpn/forms/filtersets.py:257 msgid "Region" msgstr "Region" -#: netbox/circuits/forms/filtersets.py:42 -#: netbox/circuits/forms/filtersets.py:162 netbox/dcim/forms/bulk_edit.py:321 -#: netbox/dcim/forms/bulk_edit.py:865 netbox/dcim/forms/filtersets.py:78 -#: netbox/dcim/forms/filtersets.py:190 netbox/dcim/forms/filtersets.py:216 -#: netbox/dcim/forms/filtersets.py:347 netbox/dcim/forms/filtersets.py:430 -#: netbox/dcim/forms/filtersets.py:744 netbox/dcim/forms/filtersets.py:988 -#: netbox/dcim/forms/filtersets.py:1102 netbox/dcim/forms/filtersets.py:1141 -#: netbox/dcim/forms/object_create.py:383 netbox/extras/filtersets.py:520 -#: netbox/ipam/forms/bulk_edit.py:212 netbox/ipam/forms/bulk_edit.py:448 -#: netbox/ipam/forms/bulk_edit.py:524 netbox/ipam/forms/filtersets.py:222 -#: netbox/ipam/forms/filtersets.py:427 netbox/ipam/forms/filtersets.py:480 -#: netbox/virtualization/forms/bulk_edit.py:86 -#: netbox/virtualization/forms/filtersets.py:69 -#: netbox/virtualization/forms/filtersets.py:138 -#: netbox/virtualization/forms/model_forms.py:98 +#: circuits/forms/filtersets.py:42 circuits/forms/filtersets.py:162 +#: dcim/forms/bulk_edit.py:321 dcim/forms/bulk_edit.py:865 +#: dcim/forms/filtersets.py:78 dcim/forms/filtersets.py:190 +#: dcim/forms/filtersets.py:216 dcim/forms/filtersets.py:347 +#: dcim/forms/filtersets.py:430 dcim/forms/filtersets.py:744 +#: dcim/forms/filtersets.py:988 dcim/forms/filtersets.py:1102 +#: dcim/forms/filtersets.py:1141 dcim/forms/object_create.py:383 +#: extras/filtersets.py:520 ipam/forms/bulk_edit.py:213 +#: ipam/forms/bulk_edit.py:479 ipam/forms/filtersets.py:222 +#: ipam/forms/filtersets.py:427 ipam/forms/filtersets.py:480 +#: virtualization/forms/bulk_edit.py:86 virtualization/forms/filtersets.py:69 +#: virtualization/forms/filtersets.py:138 +#: virtualization/forms/model_forms.py:98 msgid "Site group" msgstr "Standortgruppe" -#: netbox/circuits/forms/filtersets.py:65 -#: netbox/circuits/forms/filtersets.py:83 -#: netbox/circuits/forms/filtersets.py:102 -#: netbox/circuits/forms/filtersets.py:117 netbox/core/forms/filtersets.py:67 -#: netbox/core/forms/filtersets.py:135 netbox/dcim/forms/bulk_edit.py:828 -#: netbox/dcim/forms/filtersets.py:172 netbox/dcim/forms/filtersets.py:204 -#: netbox/dcim/forms/filtersets.py:915 netbox/dcim/forms/filtersets.py:1007 -#: netbox/dcim/forms/filtersets.py:1131 netbox/dcim/forms/filtersets.py:1239 -#: netbox/dcim/forms/filtersets.py:1263 netbox/dcim/forms/filtersets.py:1288 -#: netbox/dcim/forms/filtersets.py:1307 netbox/dcim/forms/filtersets.py:1327 -#: netbox/dcim/forms/filtersets.py:1441 netbox/dcim/forms/filtersets.py:1465 -#: netbox/dcim/forms/filtersets.py:1489 netbox/dcim/forms/filtersets.py:1507 -#: netbox/dcim/forms/filtersets.py:1523 netbox/extras/forms/bulk_edit.py:90 -#: netbox/extras/forms/filtersets.py:44 netbox/extras/forms/filtersets.py:134 -#: netbox/extras/forms/filtersets.py:165 netbox/extras/forms/filtersets.py:205 -#: netbox/extras/forms/filtersets.py:221 netbox/extras/forms/filtersets.py:252 -#: netbox/extras/forms/filtersets.py:276 netbox/extras/forms/filtersets.py:441 -#: netbox/ipam/forms/filtersets.py:99 netbox/ipam/forms/filtersets.py:266 -#: netbox/ipam/forms/filtersets.py:307 netbox/ipam/forms/filtersets.py:382 -#: netbox/ipam/forms/filtersets.py:468 netbox/ipam/forms/filtersets.py:527 -#: netbox/ipam/forms/filtersets.py:545 netbox/netbox/tables/tables.py:256 -#: netbox/virtualization/forms/filtersets.py:45 -#: netbox/virtualization/forms/filtersets.py:103 -#: netbox/virtualization/forms/filtersets.py:198 -#: netbox/virtualization/forms/filtersets.py:243 -#: netbox/vpn/forms/filtersets.py:213 netbox/wireless/forms/bulk_edit.py:150 -#: netbox/wireless/forms/filtersets.py:34 -#: netbox/wireless/forms/filtersets.py:74 +#: circuits/forms/filtersets.py:65 circuits/forms/filtersets.py:83 +#: circuits/forms/filtersets.py:102 circuits/forms/filtersets.py:117 +#: core/forms/filtersets.py:67 core/forms/filtersets.py:135 +#: dcim/forms/bulk_edit.py:828 dcim/forms/filtersets.py:172 +#: dcim/forms/filtersets.py:204 dcim/forms/filtersets.py:915 +#: dcim/forms/filtersets.py:1007 dcim/forms/filtersets.py:1131 +#: dcim/forms/filtersets.py:1239 dcim/forms/filtersets.py:1263 +#: dcim/forms/filtersets.py:1288 dcim/forms/filtersets.py:1307 +#: dcim/forms/filtersets.py:1327 dcim/forms/filtersets.py:1441 +#: dcim/forms/filtersets.py:1465 dcim/forms/filtersets.py:1489 +#: dcim/forms/filtersets.py:1507 dcim/forms/filtersets.py:1523 +#: extras/forms/bulk_edit.py:90 extras/forms/filtersets.py:44 +#: extras/forms/filtersets.py:134 extras/forms/filtersets.py:165 +#: extras/forms/filtersets.py:205 extras/forms/filtersets.py:221 +#: extras/forms/filtersets.py:252 extras/forms/filtersets.py:276 +#: extras/forms/filtersets.py:441 ipam/forms/filtersets.py:99 +#: ipam/forms/filtersets.py:266 ipam/forms/filtersets.py:307 +#: ipam/forms/filtersets.py:382 ipam/forms/filtersets.py:468 +#: ipam/forms/filtersets.py:527 ipam/forms/filtersets.py:545 +#: netbox/tables/tables.py:256 virtualization/forms/filtersets.py:45 +#: virtualization/forms/filtersets.py:103 +#: virtualization/forms/filtersets.py:198 +#: virtualization/forms/filtersets.py:243 vpn/forms/filtersets.py:213 +#: wireless/forms/bulk_edit.py:150 wireless/forms/filtersets.py:34 +#: wireless/forms/filtersets.py:74 msgid "Attributes" msgstr "Attribute" -#: netbox/circuits/forms/filtersets.py:73 -#: netbox/circuits/tables/circuits.py:63 -#: netbox/circuits/tables/providers.py:66 -#: netbox/templates/circuits/circuit.html:22 -#: netbox/templates/circuits/provideraccount.html:24 +#: circuits/forms/filtersets.py:73 circuits/tables/circuits.py:63 +#: circuits/tables/providers.py:66 templates/circuits/circuit.html:22 +#: templates/circuits/provideraccount.html:24 msgid "Account" msgstr "Konto" -#: netbox/circuits/forms/filtersets.py:217 +#: circuits/forms/filtersets.py:217 msgid "Term Side" msgstr "Terminationsseite" -#: netbox/circuits/forms/filtersets.py:250 -#: netbox/extras/forms/model_forms.py:582 netbox/ipam/forms/filtersets.py:142 -#: netbox/ipam/forms/filtersets.py:546 netbox/ipam/forms/model_forms.py:323 -#: netbox/templates/extras/configcontext.html:60 -#: netbox/templates/ipam/ipaddress.html:59 -#: netbox/templates/ipam/vlan_edit.html:30 -#: netbox/tenancy/forms/filtersets.py:87 netbox/users/forms/model_forms.py:314 +#: circuits/forms/filtersets.py:250 extras/forms/model_forms.py:582 +#: ipam/forms/filtersets.py:142 ipam/forms/filtersets.py:546 +#: ipam/forms/model_forms.py:323 templates/extras/configcontext.html:60 +#: templates/ipam/ipaddress.html:59 templates/ipam/vlan_edit.html:30 +#: tenancy/forms/filtersets.py:87 users/forms/model_forms.py:314 msgid "Assignment" msgstr "Zuweisung" -#: netbox/circuits/forms/filtersets.py:265 -#: netbox/circuits/forms/model_forms.py:195 -#: netbox/circuits/tables/circuits.py:155 netbox/dcim/forms/bulk_edit.py:117 -#: netbox/dcim/forms/bulk_import.py:100 netbox/dcim/forms/model_forms.py:117 -#: netbox/dcim/tables/sites.py:89 netbox/extras/forms/filtersets.py:480 -#: netbox/ipam/filtersets.py:999 netbox/ipam/forms/bulk_edit.py:538 -#: netbox/ipam/forms/bulk_import.py:436 netbox/ipam/forms/model_forms.py:528 -#: netbox/ipam/tables/fhrp.py:67 netbox/ipam/tables/vlans.py:122 -#: netbox/ipam/tables/vlans.py:226 -#: netbox/templates/circuits/circuitgroupassignment.html:22 -#: netbox/templates/dcim/interface.html:284 netbox/templates/dcim/site.html:37 -#: netbox/templates/ipam/inc/panels/fhrp_groups.html:23 -#: netbox/templates/ipam/vlan.html:27 netbox/templates/tenancy/contact.html:21 -#: netbox/templates/tenancy/tenant.html:20 netbox/templates/users/group.html:6 -#: netbox/templates/users/group.html:14 -#: netbox/templates/virtualization/cluster.html:29 -#: netbox/templates/vpn/tunnel.html:29 -#: netbox/templates/wireless/wirelesslan.html:18 -#: netbox/tenancy/forms/bulk_edit.py:43 netbox/tenancy/forms/bulk_edit.py:94 -#: netbox/tenancy/forms/bulk_import.py:40 -#: netbox/tenancy/forms/bulk_import.py:81 -#: netbox/tenancy/forms/filtersets.py:48 netbox/tenancy/forms/filtersets.py:78 -#: netbox/tenancy/forms/filtersets.py:97 -#: netbox/tenancy/forms/model_forms.py:45 -#: netbox/tenancy/forms/model_forms.py:97 -#: netbox/tenancy/forms/model_forms.py:122 -#: netbox/tenancy/tables/contacts.py:60 netbox/tenancy/tables/contacts.py:107 -#: netbox/tenancy/tables/tenants.py:42 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 -#: netbox/virtualization/forms/bulk_edit.py:65 -#: netbox/virtualization/forms/bulk_import.py:47 -#: netbox/virtualization/forms/filtersets.py:85 -#: netbox/virtualization/forms/model_forms.py:66 -#: netbox/virtualization/tables/clusters.py:70 -#: netbox/vpn/forms/bulk_edit.py:112 netbox/vpn/forms/bulk_import.py:158 -#: netbox/vpn/forms/filtersets.py:116 netbox/vpn/tables/crypto.py:31 -#: netbox/vpn/tables/tunnels.py:44 netbox/wireless/forms/bulk_edit.py:48 -#: netbox/wireless/forms/bulk_import.py:36 -#: netbox/wireless/forms/filtersets.py:46 -#: netbox/wireless/forms/model_forms.py:40 -#: netbox/wireless/tables/wirelesslan.py:48 +#: circuits/forms/filtersets.py:265 circuits/forms/model_forms.py:195 +#: circuits/tables/circuits.py:155 dcim/forms/bulk_edit.py:117 +#: dcim/forms/bulk_import.py:100 dcim/forms/model_forms.py:117 +#: dcim/tables/sites.py:89 extras/forms/filtersets.py:480 +#: ipam/filtersets.py:999 ipam/forms/bulk_edit.py:493 +#: ipam/forms/bulk_import.py:436 ipam/forms/model_forms.py:528 +#: ipam/tables/fhrp.py:67 ipam/tables/vlans.py:122 ipam/tables/vlans.py:226 +#: templates/circuits/circuitgroupassignment.html:22 +#: templates/dcim/interface.html:284 templates/dcim/site.html:37 +#: templates/ipam/inc/panels/fhrp_groups.html:23 templates/ipam/vlan.html:27 +#: templates/tenancy/contact.html:21 templates/tenancy/tenant.html:20 +#: templates/users/group.html:6 templates/users/group.html:14 +#: templates/virtualization/cluster.html:29 templates/vpn/tunnel.html:29 +#: templates/wireless/wirelesslan.html:18 tenancy/forms/bulk_edit.py:43 +#: tenancy/forms/bulk_edit.py:94 tenancy/forms/bulk_import.py:40 +#: tenancy/forms/bulk_import.py:81 tenancy/forms/filtersets.py:48 +#: tenancy/forms/filtersets.py:78 tenancy/forms/filtersets.py:97 +#: tenancy/forms/model_forms.py:45 tenancy/forms/model_forms.py:97 +#: tenancy/forms/model_forms.py:122 tenancy/tables/contacts.py:60 +#: tenancy/tables/contacts.py:107 tenancy/tables/tenants.py:42 +#: users/filtersets.py:62 users/filtersets.py:185 users/forms/filtersets.py:31 +#: users/forms/filtersets.py:37 users/forms/filtersets.py:79 +#: virtualization/forms/bulk_edit.py:65 virtualization/forms/bulk_import.py:47 +#: virtualization/forms/filtersets.py:85 +#: virtualization/forms/model_forms.py:66 virtualization/tables/clusters.py:70 +#: vpn/forms/bulk_edit.py:112 vpn/forms/bulk_import.py:158 +#: vpn/forms/filtersets.py:116 vpn/tables/crypto.py:31 +#: vpn/tables/tunnels.py:44 wireless/forms/bulk_edit.py:48 +#: wireless/forms/bulk_import.py:36 wireless/forms/filtersets.py:46 +#: wireless/forms/model_forms.py:40 wireless/tables/wirelesslan.py:48 msgid "Group" msgstr "Gruppe" -#: netbox/circuits/forms/model_forms.py:182 -#: netbox/templates/circuits/circuitgroup.html:25 +#: circuits/forms/model_forms.py:182 templates/circuits/circuitgroup.html:25 msgid "Circuit Group" msgstr "Transportnetzgruppe" -#: netbox/circuits/models/circuits.py:27 netbox/dcim/models/cables.py:67 -#: netbox/dcim/models/device_component_templates.py:517 -#: netbox/dcim/models/device_component_templates.py:617 -#: netbox/dcim/models/device_components.py:975 -#: netbox/dcim/models/device_components.py:1049 -#: netbox/dcim/models/device_components.py:1204 -#: netbox/dcim/models/devices.py:479 netbox/dcim/models/racks.py:224 -#: netbox/extras/models/tags.py:28 +#: circuits/models/circuits.py:27 dcim/models/cables.py:67 +#: dcim/models/device_component_templates.py:517 +#: dcim/models/device_component_templates.py:617 +#: dcim/models/device_components.py:975 dcim/models/device_components.py:1049 +#: dcim/models/device_components.py:1204 dcim/models/devices.py:479 +#: dcim/models/racks.py:224 extras/models/tags.py:28 msgid "color" msgstr "Farbe" -#: netbox/circuits/models/circuits.py:36 +#: circuits/models/circuits.py:36 msgid "circuit type" msgstr "Transportnetztyp" -#: netbox/circuits/models/circuits.py:37 +#: circuits/models/circuits.py:37 msgid "circuit types" msgstr "Transportnetztypen" -#: netbox/circuits/models/circuits.py:48 +#: circuits/models/circuits.py:48 msgid "circuit ID" msgstr "Transportnetz-ID" -#: netbox/circuits/models/circuits.py:49 +#: circuits/models/circuits.py:49 msgid "Unique circuit ID" msgstr "Eindeutige Transportnetz-ID" -#: netbox/circuits/models/circuits.py:69 netbox/core/models/data.py:52 -#: netbox/core/models/jobs.py:84 netbox/dcim/models/cables.py:49 -#: netbox/dcim/models/devices.py:653 netbox/dcim/models/devices.py:1173 -#: netbox/dcim/models/devices.py:1399 netbox/dcim/models/power.py:96 -#: netbox/dcim/models/racks.py:297 netbox/dcim/models/sites.py:154 -#: netbox/dcim/models/sites.py:266 netbox/ipam/models/ip.py:253 -#: netbox/ipam/models/ip.py:522 netbox/ipam/models/ip.py:730 -#: netbox/ipam/models/vlans.py:195 netbox/virtualization/models/clusters.py:74 -#: netbox/virtualization/models/virtualmachines.py:84 -#: netbox/vpn/models/tunnels.py:40 netbox/wireless/models.py:95 -#: netbox/wireless/models.py:159 +#: circuits/models/circuits.py:69 core/models/data.py:52 +#: core/models/jobs.py:84 dcim/models/cables.py:49 dcim/models/devices.py:653 +#: dcim/models/devices.py:1173 dcim/models/devices.py:1399 +#: dcim/models/power.py:96 dcim/models/racks.py:297 dcim/models/sites.py:154 +#: dcim/models/sites.py:266 ipam/models/ip.py:253 ipam/models/ip.py:522 +#: ipam/models/ip.py:730 ipam/models/vlans.py:195 +#: virtualization/models/clusters.py:74 +#: virtualization/models/virtualmachines.py:84 vpn/models/tunnels.py:40 +#: wireless/models.py:95 wireless/models.py:159 msgid "status" msgstr "Status" -#: netbox/circuits/models/circuits.py:84 netbox/templates/core/plugin.html:19 +#: circuits/models/circuits.py:84 templates/core/plugin.html:20 msgid "installed" msgstr "installiert" -#: netbox/circuits/models/circuits.py:89 +#: circuits/models/circuits.py:89 msgid "terminates" msgstr "endet" -#: netbox/circuits/models/circuits.py:94 +#: circuits/models/circuits.py:94 msgid "commit rate (Kbps)" msgstr "garantierte Bandbreite (Kbps)" -#: netbox/circuits/models/circuits.py:95 +#: circuits/models/circuits.py:95 msgid "Committed rate" msgstr "Garantierte Bandbreite" -#: netbox/circuits/models/circuits.py:137 +#: circuits/models/circuits.py:137 msgid "circuit" msgstr "Transportnetz" -#: netbox/circuits/models/circuits.py:138 +#: circuits/models/circuits.py:138 msgid "circuits" msgstr "Transportnetze" -#: netbox/circuits/models/circuits.py:170 +#: circuits/models/circuits.py:170 msgid "circuit group" msgstr "Transportnetzgruppe" -#: netbox/circuits/models/circuits.py:171 +#: circuits/models/circuits.py:171 msgid "circuit groups" msgstr "Transportnetzgruppen" -#: netbox/circuits/models/circuits.py:195 netbox/ipam/models/fhrp.py:93 -#: netbox/tenancy/models/contacts.py:134 +#: circuits/models/circuits.py:195 ipam/models/fhrp.py:93 +#: tenancy/models/contacts.py:134 msgid "priority" msgstr "Priorität" -#: netbox/circuits/models/circuits.py:213 +#: circuits/models/circuits.py:213 msgid "Circuit group assignment" msgstr "Transportnetzzuweisung" -#: netbox/circuits/models/circuits.py:214 +#: circuits/models/circuits.py:214 msgid "Circuit group assignments" msgstr "Transportnetzzuweisungen" -#: netbox/circuits/models/circuits.py:240 +#: circuits/models/circuits.py:240 msgid "termination" msgstr "Abschlusspunkt" -#: netbox/circuits/models/circuits.py:257 +#: circuits/models/circuits.py:257 msgid "port speed (Kbps)" msgstr "Portgeschwindigkeit (Kbps)" -#: netbox/circuits/models/circuits.py:260 +#: circuits/models/circuits.py:260 msgid "Physical circuit speed" msgstr "Physikalische Transportnetzgeschwindigkeit" -#: netbox/circuits/models/circuits.py:265 +#: circuits/models/circuits.py:265 msgid "upstream speed (Kbps)" msgstr "Upstream Geschwindigkeit (Kbps)" -#: netbox/circuits/models/circuits.py:266 +#: circuits/models/circuits.py:266 msgid "Upstream speed, if different from port speed" msgstr "" "Upstream Geschwindigkeit, falls sie von der Portgeschwindigkeit abweicht" -#: netbox/circuits/models/circuits.py:271 +#: circuits/models/circuits.py:271 msgid "cross-connect ID" msgstr "Cross-Connect-ID" -#: netbox/circuits/models/circuits.py:272 +#: circuits/models/circuits.py:272 msgid "ID of the local cross-connect" msgstr "ID des lokalen Cross-Connects" -#: netbox/circuits/models/circuits.py:277 +#: circuits/models/circuits.py:277 msgid "patch panel/port(s)" msgstr "Patchpanel/Anschluss" -#: netbox/circuits/models/circuits.py:278 +#: circuits/models/circuits.py:278 msgid "Patch panel ID and port number(s)" msgstr "Patchpanel-ID und Anschlussnummer(n)" -#: netbox/circuits/models/circuits.py:281 -#: netbox/dcim/models/device_component_templates.py:61 -#: netbox/dcim/models/device_components.py:68 netbox/dcim/models/racks.py:685 -#: netbox/extras/models/configs.py:45 netbox/extras/models/configs.py:219 -#: netbox/extras/models/customfields.py:125 netbox/extras/models/models.py:61 -#: netbox/extras/models/models.py:158 netbox/extras/models/models.py:396 -#: netbox/extras/models/models.py:511 -#: netbox/extras/models/notifications.py:131 -#: netbox/extras/models/staging.py:31 netbox/extras/models/tags.py:32 -#: netbox/netbox/models/__init__.py:110 netbox/netbox/models/__init__.py:145 -#: netbox/netbox/models/__init__.py:191 netbox/users/models/permissions.py:24 -#: netbox/users/models/tokens.py:57 netbox/users/models/users.py:33 -#: netbox/virtualization/models/virtualmachines.py:289 +#: circuits/models/circuits.py:281 +#: dcim/models/device_component_templates.py:61 +#: dcim/models/device_components.py:68 dcim/models/racks.py:685 +#: extras/models/configs.py:45 extras/models/configs.py:219 +#: extras/models/customfields.py:125 extras/models/models.py:61 +#: extras/models/models.py:158 extras/models/models.py:396 +#: extras/models/models.py:511 extras/models/notifications.py:131 +#: extras/models/staging.py:31 extras/models/tags.py:32 +#: netbox/models/__init__.py:110 netbox/models/__init__.py:145 +#: netbox/models/__init__.py:191 users/models/permissions.py:24 +#: users/models/tokens.py:57 users/models/users.py:33 +#: virtualization/models/virtualmachines.py:289 msgid "description" msgstr "Beschreibung" -#: netbox/circuits/models/circuits.py:294 +#: circuits/models/circuits.py:294 msgid "circuit termination" msgstr "Transportnetzabschlusspunkt" -#: netbox/circuits/models/circuits.py:295 +#: circuits/models/circuits.py:295 msgid "circuit terminations" msgstr "Transportnetzabschlusspunkte" -#: netbox/circuits/models/circuits.py:308 +#: circuits/models/circuits.py:308 msgid "" "A circuit termination must attach to either a site or a provider network." msgstr "" "Ein Leitungsabschluss muss entweder an einen Standort oder an ein " "Providernetzwerk angeschlossen werden." -#: netbox/circuits/models/circuits.py:310 +#: circuits/models/circuits.py:310 msgid "" "A circuit termination cannot attach to both a site and a provider network." msgstr "" "Ein Leitungsabschluss kann nicht sowohl an einen Standort als auch an ein " "Providernetzwerk angeschlossen werden." -#: netbox/circuits/models/providers.py:22 -#: netbox/circuits/models/providers.py:66 -#: netbox/circuits/models/providers.py:104 netbox/core/models/data.py:39 -#: netbox/core/models/jobs.py:45 -#: netbox/dcim/models/device_component_templates.py:43 -#: netbox/dcim/models/device_components.py:53 -#: netbox/dcim/models/devices.py:593 netbox/dcim/models/devices.py:1330 -#: netbox/dcim/models/devices.py:1395 netbox/dcim/models/power.py:39 -#: netbox/dcim/models/power.py:92 netbox/dcim/models/racks.py:262 -#: netbox/dcim/models/sites.py:138 netbox/extras/models/configs.py:36 -#: netbox/extras/models/configs.py:215 netbox/extras/models/customfields.py:92 -#: netbox/extras/models/models.py:56 netbox/extras/models/models.py:153 -#: netbox/extras/models/models.py:296 netbox/extras/models/models.py:392 -#: netbox/extras/models/models.py:501 netbox/extras/models/models.py:596 -#: netbox/extras/models/notifications.py:126 -#: netbox/extras/models/scripts.py:30 netbox/extras/models/staging.py:26 -#: netbox/ipam/models/asns.py:18 netbox/ipam/models/fhrp.py:25 -#: netbox/ipam/models/services.py:52 netbox/ipam/models/services.py:88 -#: netbox/ipam/models/vlans.py:36 netbox/ipam/models/vlans.py:184 -#: netbox/ipam/models/vrfs.py:22 netbox/ipam/models/vrfs.py:79 -#: netbox/netbox/models/__init__.py:137 netbox/netbox/models/__init__.py:181 -#: netbox/tenancy/models/contacts.py:64 netbox/tenancy/models/tenants.py:20 -#: netbox/tenancy/models/tenants.py:45 netbox/users/models/permissions.py:20 -#: netbox/users/models/users.py:28 netbox/virtualization/models/clusters.py:57 -#: netbox/virtualization/models/virtualmachines.py:72 -#: netbox/virtualization/models/virtualmachines.py:279 -#: netbox/vpn/models/crypto.py:24 netbox/vpn/models/crypto.py:71 -#: netbox/vpn/models/crypto.py:131 netbox/vpn/models/crypto.py:183 -#: netbox/vpn/models/crypto.py:221 netbox/vpn/models/l2vpn.py:22 -#: netbox/vpn/models/tunnels.py:35 netbox/wireless/models.py:51 +#: circuits/models/providers.py:22 circuits/models/providers.py:66 +#: circuits/models/providers.py:104 core/models/data.py:39 +#: core/models/jobs.py:45 dcim/models/device_component_templates.py:43 +#: dcim/models/device_components.py:53 dcim/models/devices.py:593 +#: dcim/models/devices.py:1330 dcim/models/devices.py:1395 +#: dcim/models/power.py:39 dcim/models/power.py:92 dcim/models/racks.py:262 +#: dcim/models/sites.py:138 extras/models/configs.py:36 +#: extras/models/configs.py:215 extras/models/customfields.py:92 +#: extras/models/models.py:56 extras/models/models.py:153 +#: extras/models/models.py:296 extras/models/models.py:392 +#: extras/models/models.py:501 extras/models/models.py:596 +#: extras/models/notifications.py:126 extras/models/scripts.py:30 +#: extras/models/staging.py:26 ipam/models/asns.py:18 ipam/models/fhrp.py:25 +#: ipam/models/services.py:52 ipam/models/services.py:88 +#: ipam/models/vlans.py:36 ipam/models/vlans.py:184 ipam/models/vrfs.py:22 +#: ipam/models/vrfs.py:79 netbox/models/__init__.py:137 +#: netbox/models/__init__.py:181 tenancy/models/contacts.py:64 +#: tenancy/models/tenants.py:20 tenancy/models/tenants.py:45 +#: users/models/permissions.py:20 users/models/users.py:28 +#: virtualization/models/clusters.py:57 +#: virtualization/models/virtualmachines.py:72 +#: virtualization/models/virtualmachines.py:279 vpn/models/crypto.py:24 +#: vpn/models/crypto.py:71 vpn/models/crypto.py:131 vpn/models/crypto.py:183 +#: vpn/models/crypto.py:221 vpn/models/l2vpn.py:22 vpn/models/tunnels.py:35 +#: wireless/models.py:51 msgid "name" msgstr "Name" -#: netbox/circuits/models/providers.py:25 +#: circuits/models/providers.py:25 msgid "Full name of the provider" msgstr "Vollständiger Name des Providers" -#: netbox/circuits/models/providers.py:28 netbox/dcim/models/devices.py:86 -#: netbox/dcim/models/racks.py:137 netbox/dcim/models/sites.py:149 -#: netbox/extras/models/models.py:506 netbox/ipam/models/asns.py:23 -#: netbox/ipam/models/vlans.py:40 netbox/netbox/models/__init__.py:141 -#: netbox/netbox/models/__init__.py:186 netbox/tenancy/models/tenants.py:25 -#: netbox/tenancy/models/tenants.py:49 netbox/vpn/models/l2vpn.py:27 -#: netbox/wireless/models.py:56 +#: circuits/models/providers.py:28 dcim/models/devices.py:86 +#: dcim/models/racks.py:137 dcim/models/sites.py:149 +#: extras/models/models.py:506 ipam/models/asns.py:23 ipam/models/vlans.py:40 +#: netbox/models/__init__.py:141 netbox/models/__init__.py:186 +#: tenancy/models/tenants.py:25 tenancy/models/tenants.py:49 +#: vpn/models/l2vpn.py:27 wireless/models.py:56 msgid "slug" msgstr "URL-Slug" -#: netbox/circuits/models/providers.py:42 +#: circuits/models/providers.py:42 msgid "provider" msgstr "Provider" -#: netbox/circuits/models/providers.py:43 +#: circuits/models/providers.py:43 msgid "providers" msgstr "Provider" -#: netbox/circuits/models/providers.py:63 +#: circuits/models/providers.py:63 msgid "account ID" msgstr "Konto ID" -#: netbox/circuits/models/providers.py:86 +#: circuits/models/providers.py:86 msgid "provider account" msgstr "Providerkonto" -#: netbox/circuits/models/providers.py:87 +#: circuits/models/providers.py:87 msgid "provider accounts" msgstr "Providerkonten" -#: netbox/circuits/models/providers.py:115 +#: circuits/models/providers.py:115 msgid "service ID" msgstr "Dienst-ID" -#: netbox/circuits/models/providers.py:126 +#: circuits/models/providers.py:126 msgid "provider network" msgstr "Providernetzwerk" -#: netbox/circuits/models/providers.py:127 +#: circuits/models/providers.py:127 msgid "provider networks" msgstr "Providernetzwerke" -#: netbox/circuits/tables/circuits.py:32 -#: netbox/circuits/tables/circuits.py:132 -#: netbox/circuits/tables/providers.py:18 -#: netbox/circuits/tables/providers.py:69 -#: netbox/circuits/tables/providers.py:99 netbox/core/tables/data.py:16 -#: netbox/core/tables/jobs.py:14 netbox/core/tables/plugins.py:44 -#: netbox/core/tables/tasks.py:11 netbox/core/tables/tasks.py:115 -#: netbox/dcim/forms/filtersets.py:63 netbox/dcim/forms/object_create.py:43 -#: netbox/dcim/tables/devices.py:52 netbox/dcim/tables/devices.py:92 -#: netbox/dcim/tables/devices.py:134 netbox/dcim/tables/devices.py:289 -#: netbox/dcim/tables/devices.py:392 netbox/dcim/tables/devices.py:433 -#: netbox/dcim/tables/devices.py:482 netbox/dcim/tables/devices.py:531 -#: netbox/dcim/tables/devices.py:648 netbox/dcim/tables/devices.py:731 -#: netbox/dcim/tables/devices.py:778 netbox/dcim/tables/devices.py:841 -#: netbox/dcim/tables/devices.py:911 netbox/dcim/tables/devices.py:974 -#: netbox/dcim/tables/devices.py:994 netbox/dcim/tables/devices.py:1023 -#: netbox/dcim/tables/devices.py:1053 netbox/dcim/tables/devicetypes.py:31 -#: netbox/dcim/tables/power.py:22 netbox/dcim/tables/power.py:62 -#: netbox/dcim/tables/racks.py:24 netbox/dcim/tables/racks.py:113 -#: netbox/dcim/tables/sites.py:24 netbox/dcim/tables/sites.py:51 -#: netbox/dcim/tables/sites.py:78 netbox/dcim/tables/sites.py:130 -#: netbox/extras/forms/filtersets.py:213 netbox/extras/tables/tables.py:58 -#: netbox/extras/tables/tables.py:122 netbox/extras/tables/tables.py:155 -#: netbox/extras/tables/tables.py:180 netbox/extras/tables/tables.py:246 -#: netbox/extras/tables/tables.py:361 netbox/extras/tables/tables.py:378 -#: netbox/extras/tables/tables.py:401 netbox/extras/tables/tables.py:439 -#: netbox/extras/tables/tables.py:491 netbox/extras/tables/tables.py:514 -#: netbox/ipam/forms/bulk_edit.py:406 netbox/ipam/forms/filtersets.py:386 -#: netbox/ipam/tables/asn.py:16 netbox/ipam/tables/ip.py:85 -#: netbox/ipam/tables/ip.py:160 netbox/ipam/tables/services.py:15 -#: netbox/ipam/tables/services.py:40 netbox/ipam/tables/vlans.py:64 -#: netbox/ipam/tables/vlans.py:114 netbox/ipam/tables/vrfs.py:26 -#: netbox/ipam/tables/vrfs.py:68 -#: netbox/templates/circuits/circuitgroup.html:28 -#: netbox/templates/circuits/circuittype.html:22 -#: netbox/templates/circuits/provideraccount.html:28 -#: netbox/templates/circuits/providernetwork.html:24 -#: netbox/templates/core/datasource.html:34 netbox/templates/core/job.html:44 -#: netbox/templates/core/plugin.html:53 -#: netbox/templates/core/rq_worker.html:43 -#: netbox/templates/dcim/consoleport.html:28 -#: netbox/templates/dcim/consoleserverport.html:28 -#: netbox/templates/dcim/devicebay.html:24 -#: netbox/templates/dcim/devicerole.html:26 -#: netbox/templates/dcim/frontport.html:28 -#: netbox/templates/dcim/inc/interface_vlans_table.html:5 -#: netbox/templates/dcim/inc/panels/inventory_items.html:18 -#: netbox/templates/dcim/interface.html:38 -#: netbox/templates/dcim/interface.html:165 -#: netbox/templates/dcim/inventoryitem.html:28 -#: netbox/templates/dcim/inventoryitemrole.html:18 -#: netbox/templates/dcim/location.html:29 -#: netbox/templates/dcim/manufacturer.html:36 -#: netbox/templates/dcim/modulebay.html:30 -#: netbox/templates/dcim/platform.html:29 -#: netbox/templates/dcim/poweroutlet.html:28 -#: netbox/templates/dcim/powerport.html:28 -#: netbox/templates/dcim/rackrole.html:22 -#: netbox/templates/dcim/rearport.html:28 netbox/templates/dcim/region.html:29 -#: netbox/templates/dcim/sitegroup.html:29 -#: netbox/templates/dcim/virtualdevicecontext.html:18 -#: netbox/templates/extras/configcontext.html:13 -#: netbox/templates/extras/configtemplate.html:13 -#: netbox/templates/extras/customfield.html:13 -#: netbox/templates/extras/customlink.html:13 -#: netbox/templates/extras/eventrule.html:13 -#: netbox/templates/extras/exporttemplate.html:15 -#: netbox/templates/extras/notificationgroup.html:14 -#: netbox/templates/extras/savedfilter.html:13 -#: netbox/templates/extras/script_list.html:44 -#: netbox/templates/extras/tag.html:14 netbox/templates/extras/webhook.html:13 -#: netbox/templates/ipam/asnrange.html:15 -#: netbox/templates/ipam/fhrpgroup.html:30 netbox/templates/ipam/rir.html:22 -#: netbox/templates/ipam/role.html:22 -#: netbox/templates/ipam/routetarget.html:13 -#: netbox/templates/ipam/service.html:24 -#: netbox/templates/ipam/servicetemplate.html:15 -#: netbox/templates/ipam/vlan.html:35 netbox/templates/ipam/vlangroup.html:30 -#: netbox/templates/tenancy/contact.html:25 -#: netbox/templates/tenancy/contactgroup.html:21 -#: netbox/templates/tenancy/contactrole.html:18 -#: netbox/templates/tenancy/tenantgroup.html:29 -#: netbox/templates/users/group.html:17 -#: netbox/templates/users/objectpermission.html:17 -#: netbox/templates/virtualization/cluster.html:13 -#: netbox/templates/virtualization/clustergroup.html:22 -#: netbox/templates/virtualization/clustertype.html:22 -#: netbox/templates/virtualization/virtualdisk.html:25 -#: netbox/templates/virtualization/virtualmachine.html:15 -#: netbox/templates/virtualization/vminterface.html:25 -#: netbox/templates/vpn/ikepolicy.html:13 -#: netbox/templates/vpn/ikeproposal.html:13 -#: netbox/templates/vpn/ipsecpolicy.html:13 -#: netbox/templates/vpn/ipsecprofile.html:13 -#: netbox/templates/vpn/ipsecprofile.html:36 -#: netbox/templates/vpn/ipsecprofile.html:69 -#: netbox/templates/vpn/ipsecproposal.html:13 -#: netbox/templates/vpn/l2vpn.html:14 netbox/templates/vpn/tunnel.html:21 -#: netbox/templates/vpn/tunnelgroup.html:26 -#: netbox/templates/wireless/wirelesslangroup.html:29 -#: netbox/tenancy/tables/contacts.py:19 netbox/tenancy/tables/contacts.py:41 -#: netbox/tenancy/tables/contacts.py:56 netbox/tenancy/tables/tenants.py:16 -#: netbox/tenancy/tables/tenants.py:38 netbox/users/tables.py:62 -#: netbox/users/tables.py:76 netbox/virtualization/forms/bulk_create.py:20 -#: netbox/virtualization/forms/object_create.py:13 -#: netbox/virtualization/forms/object_create.py:23 -#: netbox/virtualization/tables/clusters.py:17 -#: netbox/virtualization/tables/clusters.py:39 -#: netbox/virtualization/tables/clusters.py:62 -#: netbox/virtualization/tables/virtualmachines.py:55 -#: netbox/virtualization/tables/virtualmachines.py:139 -#: netbox/virtualization/tables/virtualmachines.py:194 -#: netbox/vpn/tables/crypto.py:18 netbox/vpn/tables/crypto.py:57 -#: netbox/vpn/tables/crypto.py:93 netbox/vpn/tables/crypto.py:129 -#: netbox/vpn/tables/crypto.py:158 netbox/vpn/tables/l2vpn.py:23 -#: netbox/vpn/tables/tunnels.py:18 netbox/vpn/tables/tunnels.py:40 -#: netbox/wireless/tables/wirelesslan.py:18 -#: netbox/wireless/tables/wirelesslan.py:79 +#: circuits/tables/circuits.py:32 circuits/tables/circuits.py:132 +#: circuits/tables/providers.py:18 circuits/tables/providers.py:69 +#: circuits/tables/providers.py:99 core/tables/data.py:16 +#: core/tables/jobs.py:14 core/tables/plugins.py:44 core/tables/tasks.py:11 +#: core/tables/tasks.py:115 dcim/forms/filtersets.py:63 +#: dcim/forms/object_create.py:43 dcim/tables/devices.py:52 +#: dcim/tables/devices.py:92 dcim/tables/devices.py:134 +#: dcim/tables/devices.py:289 dcim/tables/devices.py:392 +#: dcim/tables/devices.py:433 dcim/tables/devices.py:482 +#: dcim/tables/devices.py:531 dcim/tables/devices.py:648 +#: dcim/tables/devices.py:731 dcim/tables/devices.py:778 +#: dcim/tables/devices.py:841 dcim/tables/devices.py:911 +#: dcim/tables/devices.py:974 dcim/tables/devices.py:994 +#: dcim/tables/devices.py:1023 dcim/tables/devices.py:1053 +#: dcim/tables/devicetypes.py:31 dcim/tables/power.py:22 +#: dcim/tables/power.py:62 dcim/tables/racks.py:24 dcim/tables/racks.py:113 +#: dcim/tables/sites.py:24 dcim/tables/sites.py:51 dcim/tables/sites.py:78 +#: dcim/tables/sites.py:130 extras/forms/filtersets.py:213 +#: extras/tables/tables.py:58 extras/tables/tables.py:122 +#: extras/tables/tables.py:155 extras/tables/tables.py:180 +#: extras/tables/tables.py:246 extras/tables/tables.py:361 +#: extras/tables/tables.py:378 extras/tables/tables.py:401 +#: extras/tables/tables.py:439 extras/tables/tables.py:491 +#: extras/tables/tables.py:514 ipam/forms/bulk_edit.py:407 +#: ipam/forms/filtersets.py:386 ipam/tables/asn.py:16 ipam/tables/ip.py:85 +#: ipam/tables/ip.py:160 ipam/tables/services.py:15 ipam/tables/services.py:40 +#: ipam/tables/vlans.py:64 ipam/tables/vlans.py:114 ipam/tables/vrfs.py:26 +#: ipam/tables/vrfs.py:68 templates/circuits/circuitgroup.html:28 +#: templates/circuits/circuittype.html:22 +#: templates/circuits/provideraccount.html:28 +#: templates/circuits/providernetwork.html:24 +#: templates/core/datasource.html:34 templates/core/job.html:44 +#: templates/core/plugin.html:54 templates/core/rq_worker.html:43 +#: templates/dcim/consoleport.html:28 templates/dcim/consoleserverport.html:28 +#: templates/dcim/devicebay.html:24 templates/dcim/devicerole.html:26 +#: templates/dcim/frontport.html:28 +#: templates/dcim/inc/interface_vlans_table.html:5 +#: templates/dcim/inc/panels/inventory_items.html:18 +#: templates/dcim/interface.html:38 templates/dcim/interface.html:165 +#: templates/dcim/inventoryitem.html:28 +#: templates/dcim/inventoryitemrole.html:18 templates/dcim/location.html:29 +#: templates/dcim/manufacturer.html:36 templates/dcim/modulebay.html:30 +#: templates/dcim/platform.html:29 templates/dcim/poweroutlet.html:28 +#: templates/dcim/powerport.html:28 templates/dcim/rackrole.html:22 +#: templates/dcim/rearport.html:28 templates/dcim/region.html:29 +#: templates/dcim/sitegroup.html:29 +#: templates/dcim/virtualdevicecontext.html:18 +#: templates/extras/configcontext.html:13 +#: templates/extras/configtemplate.html:13 +#: templates/extras/customfield.html:13 templates/extras/customlink.html:13 +#: templates/extras/eventrule.html:13 templates/extras/exporttemplate.html:15 +#: templates/extras/notificationgroup.html:14 +#: templates/extras/savedfilter.html:13 templates/extras/script_list.html:44 +#: templates/extras/tag.html:14 templates/extras/webhook.html:13 +#: templates/ipam/asnrange.html:15 templates/ipam/fhrpgroup.html:30 +#: templates/ipam/rir.html:22 templates/ipam/role.html:22 +#: templates/ipam/routetarget.html:13 templates/ipam/service.html:24 +#: templates/ipam/servicetemplate.html:15 templates/ipam/vlan.html:35 +#: templates/ipam/vlangroup.html:30 templates/tenancy/contact.html:25 +#: templates/tenancy/contactgroup.html:21 +#: templates/tenancy/contactrole.html:18 templates/tenancy/tenantgroup.html:29 +#: templates/users/group.html:17 templates/users/objectpermission.html:17 +#: templates/virtualization/cluster.html:13 +#: templates/virtualization/clustergroup.html:22 +#: templates/virtualization/clustertype.html:22 +#: templates/virtualization/virtualdisk.html:25 +#: templates/virtualization/virtualmachine.html:15 +#: templates/virtualization/vminterface.html:25 +#: templates/vpn/ikepolicy.html:13 templates/vpn/ikeproposal.html:13 +#: templates/vpn/ipsecpolicy.html:13 templates/vpn/ipsecprofile.html:13 +#: templates/vpn/ipsecprofile.html:36 templates/vpn/ipsecprofile.html:69 +#: templates/vpn/ipsecproposal.html:13 templates/vpn/l2vpn.html:14 +#: templates/vpn/tunnel.html:21 templates/vpn/tunnelgroup.html:26 +#: templates/wireless/wirelesslangroup.html:29 tenancy/tables/contacts.py:19 +#: tenancy/tables/contacts.py:41 tenancy/tables/contacts.py:56 +#: tenancy/tables/tenants.py:16 tenancy/tables/tenants.py:38 +#: users/tables.py:62 users/tables.py:76 +#: virtualization/forms/bulk_create.py:20 +#: virtualization/forms/object_create.py:13 +#: virtualization/forms/object_create.py:23 +#: virtualization/tables/clusters.py:17 virtualization/tables/clusters.py:39 +#: virtualization/tables/clusters.py:62 +#: virtualization/tables/virtualmachines.py:55 +#: virtualization/tables/virtualmachines.py:139 +#: virtualization/tables/virtualmachines.py:194 vpn/tables/crypto.py:18 +#: vpn/tables/crypto.py:57 vpn/tables/crypto.py:93 vpn/tables/crypto.py:129 +#: vpn/tables/crypto.py:158 vpn/tables/l2vpn.py:23 vpn/tables/tunnels.py:18 +#: vpn/tables/tunnels.py:40 wireless/tables/wirelesslan.py:18 +#: wireless/tables/wirelesslan.py:79 msgid "Name" msgstr "Name" -#: netbox/circuits/tables/circuits.py:41 -#: netbox/circuits/tables/circuits.py:138 -#: netbox/circuits/tables/providers.py:45 -#: netbox/circuits/tables/providers.py:79 netbox/netbox/navigation/menu.py:266 -#: netbox/netbox/navigation/menu.py:270 netbox/netbox/navigation/menu.py:272 -#: netbox/templates/circuits/provider.html:57 -#: netbox/templates/circuits/provideraccount.html:44 -#: netbox/templates/circuits/providernetwork.html:50 +#: circuits/tables/circuits.py:41 circuits/tables/circuits.py:138 +#: circuits/tables/providers.py:45 circuits/tables/providers.py:79 +#: netbox/navigation/menu.py:266 netbox/navigation/menu.py:270 +#: netbox/navigation/menu.py:272 templates/circuits/provider.html:57 +#: templates/circuits/provideraccount.html:44 +#: templates/circuits/providernetwork.html:50 msgid "Circuits" msgstr "Transportnetze" -#: netbox/circuits/tables/circuits.py:55 -#: netbox/templates/circuits/circuit.html:26 +#: circuits/tables/circuits.py:55 templates/circuits/circuit.html:26 msgid "Circuit ID" msgstr "Transportnetz-ID" -#: netbox/circuits/tables/circuits.py:69 -#: netbox/wireless/forms/model_forms.py:160 +#: circuits/tables/circuits.py:69 wireless/forms/model_forms.py:160 msgid "Side A" msgstr "Seite A" -#: netbox/circuits/tables/circuits.py:74 +#: circuits/tables/circuits.py:74 msgid "Side Z" msgstr "Seite Z" -#: netbox/circuits/tables/circuits.py:77 -#: netbox/templates/circuits/circuit.html:55 +#: circuits/tables/circuits.py:77 templates/circuits/circuit.html:55 msgid "Commit Rate" msgstr "Garantierte Bandbreite" -#: netbox/circuits/tables/circuits.py:80 -#: netbox/circuits/tables/providers.py:48 -#: netbox/circuits/tables/providers.py:82 -#: netbox/circuits/tables/providers.py:107 netbox/dcim/tables/devices.py:1036 -#: netbox/dcim/tables/devicetypes.py:92 netbox/dcim/tables/modules.py:29 -#: netbox/dcim/tables/modules.py:72 netbox/dcim/tables/power.py:39 -#: netbox/dcim/tables/power.py:96 netbox/dcim/tables/racks.py:84 -#: netbox/dcim/tables/racks.py:145 netbox/dcim/tables/racks.py:225 -#: netbox/dcim/tables/sites.py:108 netbox/extras/tables/tables.py:582 -#: netbox/ipam/tables/asn.py:69 netbox/ipam/tables/fhrp.py:34 -#: netbox/ipam/tables/ip.py:136 netbox/ipam/tables/ip.py:275 -#: netbox/ipam/tables/ip.py:329 netbox/ipam/tables/ip.py:397 -#: netbox/ipam/tables/services.py:24 netbox/ipam/tables/services.py:54 -#: netbox/ipam/tables/vlans.py:145 netbox/ipam/tables/vrfs.py:47 -#: netbox/ipam/tables/vrfs.py:72 netbox/templates/dcim/htmx/cable_edit.html:89 -#: netbox/templates/generic/bulk_edit.html:86 -#: netbox/templates/inc/panels/comments.html:5 -#: netbox/tenancy/tables/contacts.py:68 netbox/tenancy/tables/tenants.py:46 -#: netbox/utilities/forms/fields/fields.py:29 -#: netbox/virtualization/tables/clusters.py:91 -#: netbox/virtualization/tables/virtualmachines.py:82 -#: netbox/vpn/tables/crypto.py:37 netbox/vpn/tables/crypto.py:74 -#: netbox/vpn/tables/crypto.py:109 netbox/vpn/tables/crypto.py:140 -#: netbox/vpn/tables/crypto.py:173 netbox/vpn/tables/l2vpn.py:37 -#: netbox/vpn/tables/tunnels.py:61 netbox/wireless/tables/wirelesslan.py:27 -#: netbox/wireless/tables/wirelesslan.py:58 +#: circuits/tables/circuits.py:80 circuits/tables/providers.py:48 +#: circuits/tables/providers.py:82 circuits/tables/providers.py:107 +#: dcim/tables/devices.py:1036 dcim/tables/devicetypes.py:92 +#: dcim/tables/modules.py:29 dcim/tables/modules.py:72 dcim/tables/power.py:39 +#: dcim/tables/power.py:96 dcim/tables/racks.py:84 dcim/tables/racks.py:145 +#: dcim/tables/racks.py:225 dcim/tables/sites.py:108 +#: extras/tables/tables.py:582 ipam/tables/asn.py:69 ipam/tables/fhrp.py:34 +#: ipam/tables/ip.py:136 ipam/tables/ip.py:275 ipam/tables/ip.py:329 +#: ipam/tables/ip.py:397 ipam/tables/services.py:24 ipam/tables/services.py:54 +#: ipam/tables/vlans.py:145 ipam/tables/vrfs.py:47 ipam/tables/vrfs.py:72 +#: templates/dcim/htmx/cable_edit.html:89 templates/generic/bulk_edit.html:86 +#: templates/inc/panels/comments.html:5 tenancy/tables/contacts.py:68 +#: tenancy/tables/tenants.py:46 utilities/forms/fields/fields.py:29 +#: virtualization/tables/clusters.py:91 +#: virtualization/tables/virtualmachines.py:82 vpn/tables/crypto.py:37 +#: vpn/tables/crypto.py:74 vpn/tables/crypto.py:109 vpn/tables/crypto.py:140 +#: vpn/tables/crypto.py:173 vpn/tables/l2vpn.py:37 vpn/tables/tunnels.py:61 +#: wireless/tables/wirelesslan.py:27 wireless/tables/wirelesslan.py:58 msgid "Comments" msgstr "Kommentare" -#: netbox/circuits/tables/circuits.py:86 -#: netbox/templates/tenancy/contact.html:84 -#: netbox/tenancy/tables/contacts.py:73 +#: circuits/tables/circuits.py:86 templates/tenancy/contact.html:84 +#: tenancy/tables/contacts.py:73 msgid "Assignments" msgstr "Zuweisungen" -#: netbox/circuits/tables/providers.py:23 +#: circuits/tables/providers.py:23 msgid "Accounts" msgstr "Konten" -#: netbox/circuits/tables/providers.py:29 +#: circuits/tables/providers.py:29 msgid "Account Count" msgstr "Anzahl der Konten" -#: netbox/circuits/tables/providers.py:39 netbox/dcim/tables/sites.py:100 +#: circuits/tables/providers.py:39 dcim/tables/sites.py:100 msgid "ASN Count" msgstr "ASN-Anzahl" -#: netbox/circuits/views.py:331 +#: circuits/views.py:331 #, python-brace-format msgid "No terminations have been defined for circuit {circuit}." msgstr "Keine Terminierung wurde für das Transportnetz {circuit}definiert" -#: netbox/circuits/views.py:380 +#: circuits/views.py:380 #, python-brace-format msgid "Swapped terminations for circuit {circuit}." msgstr "Tausche Terminierungen für Transportnetz {circuit}" -#: netbox/core/api/views.py:39 +#: core/api/views.py:39 msgid "This user does not have permission to synchronize this data source." msgstr "" "Dieser Benutzer ist nicht berechtigt, diese Datenquelle zu synchronisieren." -#: netbox/core/choices.py:18 +#: core/choices.py:18 msgid "New" msgstr "Neu" -#: netbox/core/choices.py:19 netbox/core/constants.py:18 -#: netbox/core/tables/tasks.py:15 netbox/templates/core/rq_task.html:77 +#: core/choices.py:19 core/constants.py:18 core/tables/tasks.py:15 +#: templates/core/rq_task.html:77 msgid "Queued" msgstr "In der Warteschlange" -#: netbox/core/choices.py:20 +#: core/choices.py:20 msgid "Syncing" msgstr "Synchronisieren" -#: netbox/core/choices.py:21 netbox/core/choices.py:57 -#: netbox/core/tables/jobs.py:41 netbox/templates/core/job.html:86 +#: core/choices.py:21 core/choices.py:57 core/tables/jobs.py:41 +#: templates/core/job.html:86 msgid "Completed" msgstr "Abgeschlossen" -#: netbox/core/choices.py:22 netbox/core/choices.py:59 -#: netbox/core/constants.py:20 netbox/core/tables/tasks.py:34 -#: netbox/dcim/choices.py:187 netbox/dcim/choices.py:239 -#: netbox/dcim/choices.py:1607 netbox/virtualization/choices.py:47 +#: core/choices.py:22 core/choices.py:59 core/constants.py:20 +#: core/tables/tasks.py:34 dcim/choices.py:187 dcim/choices.py:239 +#: dcim/choices.py:1607 virtualization/choices.py:47 msgid "Failed" msgstr "Fehlgeschlagen" -#: netbox/core/choices.py:35 netbox/netbox/navigation/menu.py:335 -#: netbox/netbox/navigation/menu.py:339 -#: netbox/templates/extras/script/base.html:14 -#: netbox/templates/extras/script_list.html:7 -#: netbox/templates/extras/script_list.html:12 -#: netbox/templates/extras/script_result.html:17 +#: core/choices.py:35 netbox/navigation/menu.py:335 +#: netbox/navigation/menu.py:339 templates/extras/script/base.html:14 +#: templates/extras/script_list.html:7 templates/extras/script_list.html:12 +#: templates/extras/script_result.html:17 msgid "Scripts" msgstr "Skripte" -#: netbox/core/choices.py:36 netbox/templates/extras/report/base.html:13 +#: core/choices.py:36 templates/extras/report/base.html:13 msgid "Reports" msgstr "Berichte" -#: netbox/core/choices.py:54 +#: core/choices.py:54 msgid "Pending" msgstr "Ausstehend" -#: netbox/core/choices.py:55 netbox/core/constants.py:23 -#: netbox/core/tables/jobs.py:32 netbox/core/tables/tasks.py:38 -#: netbox/templates/core/job.html:73 +#: core/choices.py:55 core/constants.py:23 core/tables/jobs.py:32 +#: core/tables/tasks.py:38 templates/core/job.html:73 msgid "Scheduled" msgstr "Geplant" -#: netbox/core/choices.py:56 +#: core/choices.py:56 msgid "Running" msgstr "Laufend" -#: netbox/core/choices.py:58 +#: core/choices.py:58 msgid "Errored" msgstr "Fehlgeschlagen" -#: netbox/core/choices.py:87 netbox/core/tables/plugins.py:63 -#: netbox/templates/generic/object.html:61 +#: core/choices.py:87 core/tables/plugins.py:63 +#: templates/generic/object.html:61 msgid "Updated" msgstr "Aktualisiert" -#: netbox/core/choices.py:88 +#: core/choices.py:88 msgid "Deleted" msgstr "Gelöscht" -#: netbox/core/constants.py:19 netbox/core/tables/tasks.py:30 +#: core/constants.py:19 core/tables/tasks.py:30 msgid "Finished" msgstr "Fertig" -#: netbox/core/constants.py:21 netbox/core/tables/jobs.py:38 -#: netbox/templates/core/job.html:82 -#: netbox/templates/extras/htmx/script_result.html:8 +#: core/constants.py:21 core/tables/jobs.py:38 templates/core/job.html:82 +#: templates/extras/htmx/script_result.html:8 msgid "Started" msgstr "Gestartet" -#: netbox/core/constants.py:22 netbox/core/tables/tasks.py:26 +#: core/constants.py:22 core/tables/tasks.py:26 msgid "Deferred" msgstr "Aufgeschoben" -#: netbox/core/constants.py:24 +#: core/constants.py:24 msgid "Stopped" msgstr "Gestoppt" -#: netbox/core/constants.py:25 +#: core/constants.py:25 msgid "Cancelled" msgstr "Abgebrochen" -#: netbox/core/data_backends.py:32 netbox/core/tables/plugins.py:51 -#: netbox/templates/core/plugin.html:87 -#: netbox/templates/dcim/interface.html:216 +#: core/data_backends.py:32 core/tables/plugins.py:51 +#: templates/core/plugin.html:88 templates/dcim/interface.html:216 msgid "Local" msgstr "Lokal" -#: netbox/core/data_backends.py:50 netbox/core/tables/change_logging.py:20 -#: netbox/templates/account/profile.html:15 -#: netbox/templates/users/user.html:17 netbox/users/tables.py:31 +#: core/data_backends.py:50 core/tables/change_logging.py:20 +#: templates/account/profile.html:15 templates/users/user.html:17 +#: users/tables.py:31 msgid "Username" msgstr "Nutzername" -#: netbox/core/data_backends.py:52 netbox/core/data_backends.py:58 +#: core/data_backends.py:52 core/data_backends.py:58 msgid "Only used for cloning with HTTP(S)" msgstr "Wird nur für das Klonen über HTTP(S) verwendet" -#: netbox/core/data_backends.py:56 netbox/templates/account/base.html:23 -#: netbox/templates/account/password.html:12 -#: netbox/users/forms/model_forms.py:170 +#: core/data_backends.py:56 templates/account/base.html:23 +#: templates/account/password.html:12 users/forms/model_forms.py:170 msgid "Password" msgstr "Passwort" -#: netbox/core/data_backends.py:62 +#: core/data_backends.py:62 msgid "Branch" msgstr "Branch" -#: netbox/core/data_backends.py:120 +#: core/data_backends.py:120 #, python-brace-format msgid "Fetching remote data failed ({name}): {error}" msgstr "Abrufen der Remotedaten ist fehlgeschlagen ({name}): {error}" -#: netbox/core/data_backends.py:133 +#: core/data_backends.py:133 msgid "AWS access key ID" msgstr "AWS-Zugriffsschlüssel-ID" -#: netbox/core/data_backends.py:137 +#: core/data_backends.py:137 msgid "AWS secret access key" msgstr "Geheimer AWS-Zugriffsschlüssel" -#: netbox/core/events.py:27 +#: core/events.py:27 msgid "Object created" msgstr "Objekt erstellt" -#: netbox/core/events.py:28 +#: core/events.py:28 msgid "Object updated" msgstr "Objekt aktualisiert" -#: netbox/core/events.py:29 +#: core/events.py:29 msgid "Object deleted" msgstr "Objekt gelöscht" -#: netbox/core/events.py:30 +#: core/events.py:30 msgid "Job started" msgstr "Job wurde gestartet" -#: netbox/core/events.py:31 +#: core/events.py:31 msgid "Job completed" msgstr "Job wurde abgeschlossen" -#: netbox/core/events.py:32 +#: core/events.py:32 msgid "Job failed" msgstr "Job fehlgeschlagen" -#: netbox/core/events.py:33 +#: core/events.py:33 msgid "Job errored" msgstr "Job ist fehlerhaft" -#: netbox/core/filtersets.py:53 netbox/extras/filtersets.py:250 -#: netbox/extras/filtersets.py:633 netbox/extras/filtersets.py:661 +#: core/filtersets.py:53 extras/filtersets.py:250 extras/filtersets.py:633 +#: extras/filtersets.py:661 msgid "Data source (ID)" msgstr "Datenquelle (ID)" -#: netbox/core/filtersets.py:59 +#: core/filtersets.py:59 msgid "Data source (name)" msgstr "Datenquelle (Name)" -#: netbox/core/filtersets.py:145 netbox/dcim/filtersets.py:501 -#: netbox/extras/filtersets.py:287 netbox/extras/filtersets.py:331 -#: netbox/extras/filtersets.py:353 netbox/extras/filtersets.py:413 -#: netbox/users/filtersets.py:28 +#: core/filtersets.py:145 dcim/filtersets.py:501 extras/filtersets.py:287 +#: extras/filtersets.py:331 extras/filtersets.py:353 extras/filtersets.py:413 +#: users/filtersets.py:28 msgid "User (ID)" msgstr "Benutzer (ID)" -#: netbox/core/filtersets.py:151 +#: core/filtersets.py:151 msgid "User name" msgstr "Benutzername" -#: netbox/core/forms/bulk_edit.py:25 netbox/core/forms/filtersets.py:43 -#: netbox/core/tables/data.py:26 netbox/dcim/forms/bulk_edit.py:1122 -#: netbox/dcim/forms/bulk_edit.py:1400 netbox/dcim/forms/filtersets.py:1370 -#: netbox/dcim/tables/devices.py:553 netbox/dcim/tables/devicetypes.py:224 -#: netbox/extras/forms/bulk_edit.py:123 netbox/extras/forms/bulk_edit.py:187 -#: netbox/extras/forms/bulk_edit.py:246 netbox/extras/forms/filtersets.py:142 -#: netbox/extras/forms/filtersets.py:229 netbox/extras/forms/filtersets.py:294 -#: netbox/extras/tables/tables.py:162 netbox/extras/tables/tables.py:253 -#: netbox/extras/tables/tables.py:415 netbox/netbox/preferences.py:22 -#: netbox/templates/core/datasource.html:42 -#: netbox/templates/dcim/interface.html:61 -#: netbox/templates/extras/customlink.html:17 -#: netbox/templates/extras/eventrule.html:17 -#: netbox/templates/extras/savedfilter.html:25 -#: netbox/templates/users/objectpermission.html:25 -#: netbox/templates/virtualization/vminterface.html:29 -#: netbox/users/forms/bulk_edit.py:89 netbox/users/forms/filtersets.py:70 -#: netbox/users/tables.py:83 netbox/virtualization/forms/bulk_edit.py:217 -#: netbox/virtualization/forms/filtersets.py:215 +#: core/forms/bulk_edit.py:25 core/forms/filtersets.py:43 +#: core/tables/data.py:26 dcim/forms/bulk_edit.py:1122 +#: dcim/forms/bulk_edit.py:1400 dcim/forms/filtersets.py:1370 +#: dcim/tables/devices.py:553 dcim/tables/devicetypes.py:224 +#: extras/forms/bulk_edit.py:123 extras/forms/bulk_edit.py:187 +#: extras/forms/bulk_edit.py:246 extras/forms/filtersets.py:142 +#: extras/forms/filtersets.py:229 extras/forms/filtersets.py:294 +#: extras/tables/tables.py:162 extras/tables/tables.py:253 +#: extras/tables/tables.py:415 netbox/preferences.py:22 +#: templates/core/datasource.html:42 templates/dcim/interface.html:61 +#: templates/extras/customlink.html:17 templates/extras/eventrule.html:17 +#: templates/extras/savedfilter.html:25 +#: templates/users/objectpermission.html:25 +#: templates/virtualization/vminterface.html:29 users/forms/bulk_edit.py:89 +#: users/forms/filtersets.py:70 users/tables.py:83 +#: virtualization/forms/bulk_edit.py:217 +#: virtualization/forms/filtersets.py:215 msgid "Enabled" msgstr "Aktiviert" -#: netbox/core/forms/bulk_edit.py:34 netbox/extras/forms/model_forms.py:285 -#: netbox/templates/extras/savedfilter.html:52 -#: netbox/vpn/forms/filtersets.py:97 netbox/vpn/forms/filtersets.py:127 -#: netbox/vpn/forms/filtersets.py:151 netbox/vpn/forms/filtersets.py:170 -#: netbox/vpn/forms/model_forms.py:301 netbox/vpn/forms/model_forms.py:321 -#: netbox/vpn/forms/model_forms.py:337 netbox/vpn/forms/model_forms.py:357 -#: netbox/vpn/forms/model_forms.py:380 +#: core/forms/bulk_edit.py:34 extras/forms/model_forms.py:285 +#: templates/extras/savedfilter.html:52 vpn/forms/filtersets.py:97 +#: vpn/forms/filtersets.py:127 vpn/forms/filtersets.py:151 +#: vpn/forms/filtersets.py:170 vpn/forms/model_forms.py:301 +#: vpn/forms/model_forms.py:321 vpn/forms/model_forms.py:337 +#: vpn/forms/model_forms.py:357 vpn/forms/model_forms.py:380 msgid "Parameters" msgstr "Parameter" -#: netbox/core/forms/bulk_edit.py:38 netbox/templates/core/datasource.html:68 +#: core/forms/bulk_edit.py:38 templates/core/datasource.html:68 msgid "Ignore rules" msgstr "Regeln ignorieren" -#: netbox/core/forms/filtersets.py:30 netbox/core/forms/model_forms.py:97 -#: netbox/extras/forms/model_forms.py:248 -#: netbox/extras/forms/model_forms.py:578 -#: netbox/extras/forms/model_forms.py:632 netbox/extras/tables/tables.py:191 -#: netbox/extras/tables/tables.py:483 netbox/extras/tables/tables.py:518 -#: netbox/templates/core/datasource.html:31 -#: netbox/templates/dcim/device/render_config.html:18 -#: netbox/templates/extras/configcontext.html:29 -#: netbox/templates/extras/configtemplate.html:21 -#: netbox/templates/extras/exporttemplate.html:35 -#: netbox/templates/virtualization/virtualmachine/render_config.html:18 +#: core/forms/filtersets.py:30 core/forms/model_forms.py:97 +#: extras/forms/model_forms.py:248 extras/forms/model_forms.py:578 +#: extras/forms/model_forms.py:632 extras/tables/tables.py:191 +#: extras/tables/tables.py:483 extras/tables/tables.py:518 +#: templates/core/datasource.html:31 +#: templates/dcim/device/render_config.html:18 +#: templates/extras/configcontext.html:29 +#: templates/extras/configtemplate.html:21 +#: templates/extras/exporttemplate.html:35 +#: templates/virtualization/virtualmachine/render_config.html:18 msgid "Data Source" msgstr "Datenquelle" -#: netbox/core/forms/filtersets.py:55 netbox/core/forms/mixins.py:21 +#: core/forms/filtersets.py:55 core/forms/mixins.py:21 msgid "File" msgstr "Datei" -#: netbox/core/forms/filtersets.py:60 netbox/core/forms/mixins.py:16 -#: netbox/extras/forms/filtersets.py:170 netbox/extras/forms/filtersets.py:328 -#: netbox/extras/forms/filtersets.py:413 +#: core/forms/filtersets.py:60 core/forms/mixins.py:16 +#: extras/forms/filtersets.py:170 extras/forms/filtersets.py:328 +#: extras/forms/filtersets.py:413 msgid "Data source" msgstr "Datenquelle" -#: netbox/core/forms/filtersets.py:70 netbox/extras/forms/filtersets.py:440 +#: core/forms/filtersets.py:70 extras/forms/filtersets.py:440 msgid "Creation" msgstr "Erstellung" -#: netbox/core/forms/filtersets.py:74 netbox/core/forms/filtersets.py:160 -#: netbox/extras/forms/filtersets.py:461 netbox/extras/tables/tables.py:220 -#: netbox/extras/tables/tables.py:294 netbox/extras/tables/tables.py:326 -#: netbox/extras/tables/tables.py:571 netbox/templates/core/job.html:38 -#: netbox/templates/core/objectchange.html:52 -#: netbox/tenancy/tables/contacts.py:90 netbox/vpn/tables/l2vpn.py:59 +#: core/forms/filtersets.py:74 core/forms/filtersets.py:160 +#: extras/forms/filtersets.py:461 extras/tables/tables.py:220 +#: extras/tables/tables.py:294 extras/tables/tables.py:326 +#: extras/tables/tables.py:571 templates/core/job.html:38 +#: templates/core/objectchange.html:52 tenancy/tables/contacts.py:90 +#: vpn/tables/l2vpn.py:59 msgid "Object Type" msgstr "Objekttyp" -#: netbox/core/forms/filtersets.py:84 +#: core/forms/filtersets.py:84 msgid "Created after" msgstr "Erstellt nach" -#: netbox/core/forms/filtersets.py:89 +#: core/forms/filtersets.py:89 msgid "Created before" msgstr "Erstellt vor" -#: netbox/core/forms/filtersets.py:94 +#: core/forms/filtersets.py:94 msgid "Scheduled after" msgstr "Geplant nach" -#: netbox/core/forms/filtersets.py:99 +#: core/forms/filtersets.py:99 msgid "Scheduled before" msgstr "Geplant vor" -#: netbox/core/forms/filtersets.py:104 +#: core/forms/filtersets.py:104 msgid "Started after" msgstr "Begonnen nach" -#: netbox/core/forms/filtersets.py:109 +#: core/forms/filtersets.py:109 msgid "Started before" msgstr "Begonnen vor" -#: netbox/core/forms/filtersets.py:114 +#: core/forms/filtersets.py:114 msgid "Completed after" msgstr "Abgeschlossen nach" -#: netbox/core/forms/filtersets.py:119 +#: core/forms/filtersets.py:119 msgid "Completed before" msgstr "Abgeschlossen vor" -#: netbox/core/forms/filtersets.py:126 netbox/core/forms/filtersets.py:155 -#: netbox/dcim/forms/bulk_edit.py:456 netbox/dcim/forms/filtersets.py:418 -#: netbox/dcim/forms/filtersets.py:462 netbox/dcim/forms/model_forms.py:316 -#: netbox/extras/forms/filtersets.py:456 netbox/extras/forms/filtersets.py:475 -#: netbox/extras/tables/tables.py:302 netbox/extras/tables/tables.py:342 -#: netbox/templates/core/objectchange.html:36 -#: netbox/templates/dcim/rackreservation.html:58 -#: netbox/templates/extras/savedfilter.html:21 -#: netbox/templates/inc/user_menu.html:33 netbox/templates/users/token.html:21 -#: netbox/templates/users/user.html:6 netbox/templates/users/user.html:14 -#: netbox/users/filtersets.py:107 netbox/users/filtersets.py:174 -#: netbox/users/forms/filtersets.py:84 netbox/users/forms/filtersets.py:125 -#: netbox/users/forms/model_forms.py:155 netbox/users/forms/model_forms.py:192 -#: netbox/users/tables.py:19 +#: core/forms/filtersets.py:126 core/forms/filtersets.py:155 +#: dcim/forms/bulk_edit.py:456 dcim/forms/filtersets.py:418 +#: dcim/forms/filtersets.py:462 dcim/forms/model_forms.py:316 +#: extras/forms/filtersets.py:456 extras/forms/filtersets.py:475 +#: extras/tables/tables.py:302 extras/tables/tables.py:342 +#: templates/core/objectchange.html:36 templates/dcim/rackreservation.html:58 +#: templates/extras/savedfilter.html:21 templates/inc/user_menu.html:33 +#: templates/users/token.html:21 templates/users/user.html:6 +#: templates/users/user.html:14 users/filtersets.py:107 +#: users/filtersets.py:174 users/forms/filtersets.py:84 +#: users/forms/filtersets.py:125 users/forms/model_forms.py:155 +#: users/forms/model_forms.py:192 users/tables.py:19 msgid "User" msgstr "Nutzer" -#: netbox/core/forms/filtersets.py:134 netbox/core/tables/change_logging.py:15 -#: netbox/extras/tables/tables.py:609 netbox/extras/tables/tables.py:646 -#: netbox/templates/core/objectchange.html:32 +#: core/forms/filtersets.py:134 core/tables/change_logging.py:15 +#: extras/tables/tables.py:609 extras/tables/tables.py:646 +#: templates/core/objectchange.html:32 msgid "Time" msgstr "Zeit" -#: netbox/core/forms/filtersets.py:139 netbox/extras/forms/filtersets.py:445 +#: core/forms/filtersets.py:139 extras/forms/filtersets.py:445 msgid "After" msgstr "Nach" -#: netbox/core/forms/filtersets.py:144 netbox/extras/forms/filtersets.py:450 +#: core/forms/filtersets.py:144 extras/forms/filtersets.py:450 msgid "Before" msgstr "Vorher" -#: netbox/core/forms/filtersets.py:148 netbox/core/tables/change_logging.py:29 -#: netbox/extras/forms/model_forms.py:396 -#: netbox/templates/core/objectchange.html:46 -#: netbox/templates/extras/eventrule.html:71 +#: core/forms/filtersets.py:148 core/tables/change_logging.py:29 +#: extras/forms/model_forms.py:396 templates/core/objectchange.html:46 +#: templates/extras/eventrule.html:71 msgid "Action" msgstr "Aktion" -#: netbox/core/forms/model_forms.py:54 netbox/core/tables/data.py:46 -#: netbox/templates/core/datafile.html:27 -#: netbox/templates/extras/report/base.html:33 -#: netbox/templates/extras/script/base.html:32 +#: core/forms/model_forms.py:54 core/tables/data.py:46 +#: templates/core/datafile.html:27 templates/extras/report/base.html:33 +#: templates/extras/script/base.html:32 msgid "Source" msgstr "Quelle" -#: netbox/core/forms/model_forms.py:58 +#: core/forms/model_forms.py:58 msgid "Backend Parameters" msgstr "Backendparameter" -#: netbox/core/forms/model_forms.py:96 +#: core/forms/model_forms.py:96 msgid "File Upload" msgstr "Datei hochladen" -#: netbox/core/forms/model_forms.py:108 +#: core/forms/model_forms.py:108 msgid "Cannot upload a file and sync from an existing file" msgstr "" "Eine Datei kann nicht hochgeladen und aus einer vorhandenen Datei " "synchronisiert werden" -#: netbox/core/forms/model_forms.py:110 +#: core/forms/model_forms.py:110 msgid "Must upload a file or select a data file to sync" msgstr "" "Lade eine Datei hoch oder wähle eine Datendatei zur Synchronisierung aus" -#: netbox/core/forms/model_forms.py:153 -#: netbox/templates/dcim/rack_elevation_list.html:6 +#: core/forms/model_forms.py:153 templates/dcim/rack_elevation_list.html:6 msgid "Rack Elevations" msgstr "Rackübersichten" -#: netbox/core/forms/model_forms.py:157 netbox/dcim/choices.py:1518 -#: netbox/dcim/forms/bulk_edit.py:969 netbox/dcim/forms/bulk_edit.py:1357 -#: netbox/dcim/forms/bulk_edit.py:1375 netbox/dcim/tables/racks.py:158 -#: netbox/netbox/navigation/menu.py:291 netbox/netbox/navigation/menu.py:295 +#: core/forms/model_forms.py:157 dcim/choices.py:1518 +#: dcim/forms/bulk_edit.py:969 dcim/forms/bulk_edit.py:1357 +#: dcim/forms/bulk_edit.py:1375 dcim/tables/racks.py:158 +#: netbox/navigation/menu.py:291 netbox/navigation/menu.py:295 msgid "Power" msgstr "Stromversorgung" -#: netbox/core/forms/model_forms.py:159 netbox/netbox/navigation/menu.py:154 -#: netbox/templates/core/inc/config_data.html:37 +#: core/forms/model_forms.py:159 netbox/navigation/menu.py:154 +#: templates/core/inc/config_data.html:37 msgid "IPAM" msgstr "IPAM" -#: netbox/core/forms/model_forms.py:160 netbox/netbox/navigation/menu.py:230 -#: netbox/templates/core/inc/config_data.html:50 -#: netbox/vpn/forms/bulk_edit.py:77 netbox/vpn/forms/filtersets.py:43 -#: netbox/vpn/forms/model_forms.py:61 netbox/vpn/forms/model_forms.py:146 +#: core/forms/model_forms.py:160 netbox/navigation/menu.py:230 +#: templates/core/inc/config_data.html:50 vpn/forms/bulk_edit.py:77 +#: vpn/forms/filtersets.py:43 vpn/forms/model_forms.py:61 +#: vpn/forms/model_forms.py:146 msgid "Security" msgstr "Sicherheit" -#: netbox/core/forms/model_forms.py:161 -#: netbox/templates/core/inc/config_data.html:59 +#: core/forms/model_forms.py:161 templates/core/inc/config_data.html:59 msgid "Banners" msgstr "Banner" -#: netbox/core/forms/model_forms.py:162 -#: netbox/templates/core/inc/config_data.html:80 +#: core/forms/model_forms.py:162 templates/core/inc/config_data.html:80 msgid "Pagination" msgstr "Seitenumbruch" -#: netbox/core/forms/model_forms.py:163 netbox/extras/forms/bulk_edit.py:92 -#: netbox/extras/forms/filtersets.py:47 netbox/extras/forms/model_forms.py:116 -#: netbox/extras/forms/model_forms.py:129 -#: netbox/templates/core/inc/config_data.html:93 +#: core/forms/model_forms.py:163 extras/forms/bulk_edit.py:92 +#: extras/forms/filtersets.py:47 extras/forms/model_forms.py:116 +#: extras/forms/model_forms.py:129 templates/core/inc/config_data.html:93 msgid "Validation" msgstr "Validierung" -#: netbox/core/forms/model_forms.py:164 -#: netbox/templates/account/preferences.html:6 +#: core/forms/model_forms.py:164 templates/account/preferences.html:6 msgid "User Preferences" msgstr "Benutzereinstellungen" -#: netbox/core/forms/model_forms.py:167 netbox/dcim/forms/filtersets.py:732 -#: netbox/templates/core/inc/config_data.html:127 -#: netbox/users/forms/model_forms.py:64 +#: core/forms/model_forms.py:167 dcim/forms/filtersets.py:732 +#: templates/core/inc/config_data.html:127 users/forms/model_forms.py:64 msgid "Miscellaneous" msgstr "Diverses" -#: netbox/core/forms/model_forms.py:169 +#: core/forms/model_forms.py:169 msgid "Config Revision" msgstr "Konfigurationsverlauf" -#: netbox/core/forms/model_forms.py:208 +#: core/forms/model_forms.py:208 msgid "This parameter has been defined statically and cannot be modified." msgstr "" "Dieser Parameter wurde statisch definiert und kann nicht geändert werden." -#: netbox/core/forms/model_forms.py:216 +#: core/forms/model_forms.py:216 #, python-brace-format msgid "Current value: {value}" msgstr "Aktueller Wert: {value}" -#: netbox/core/forms/model_forms.py:218 +#: core/forms/model_forms.py:218 msgid " (default)" msgstr " (Standard)" -#: netbox/core/models/change_logging.py:29 +#: core/models/change_logging.py:29 msgid "time" msgstr "Zeit" -#: netbox/core/models/change_logging.py:42 +#: core/models/change_logging.py:42 msgid "user name" msgstr "Benutzername" -#: netbox/core/models/change_logging.py:47 +#: core/models/change_logging.py:47 msgid "request ID" msgstr "Anfrage-ID" -#: netbox/core/models/change_logging.py:52 netbox/extras/models/staging.py:69 +#: core/models/change_logging.py:52 extras/models/staging.py:69 msgid "action" msgstr "Aktion" -#: netbox/core/models/change_logging.py:86 +#: core/models/change_logging.py:86 msgid "pre-change data" msgstr "Daten vor der Änderung" -#: netbox/core/models/change_logging.py:92 +#: core/models/change_logging.py:92 msgid "post-change data" msgstr "Daten nach der Änderung" -#: netbox/core/models/change_logging.py:106 +#: core/models/change_logging.py:106 msgid "object change" msgstr "Objekt ändern" -#: netbox/core/models/change_logging.py:107 +#: core/models/change_logging.py:107 msgid "object changes" msgstr "Objektänderungen" -#: netbox/core/models/change_logging.py:123 +#: core/models/change_logging.py:123 #, python-brace-format msgid "Change logging is not supported for this object type ({type})." msgstr "" "Die Änderungsprotokollierung wird für diesen Objekttyp nicht unterstützt " "({type})." -#: netbox/core/models/config.py:18 netbox/core/models/data.py:266 -#: netbox/core/models/files.py:27 netbox/core/models/jobs.py:49 -#: netbox/extras/models/models.py:730 netbox/extras/models/notifications.py:39 -#: netbox/extras/models/notifications.py:186 -#: netbox/netbox/models/features.py:53 netbox/users/models/tokens.py:32 +#: core/models/config.py:18 core/models/data.py:266 core/models/files.py:27 +#: core/models/jobs.py:49 extras/models/models.py:730 +#: extras/models/notifications.py:39 extras/models/notifications.py:186 +#: netbox/models/features.py:53 users/models/tokens.py:32 msgid "created" msgstr "erstellt" -#: netbox/core/models/config.py:22 +#: core/models/config.py:22 msgid "comment" msgstr "Kommentar" -#: netbox/core/models/config.py:29 +#: core/models/config.py:29 msgid "configuration data" msgstr "Konfigurationsdaten" -#: netbox/core/models/config.py:36 +#: core/models/config.py:36 msgid "config revision" msgstr "Konfigurationsrevisionen" -#: netbox/core/models/config.py:37 +#: core/models/config.py:37 msgid "config revisions" msgstr "Konfigurationsrevisionen" -#: netbox/core/models/config.py:41 +#: core/models/config.py:41 msgid "Default configuration" msgstr "Standardkonfiguration" -#: netbox/core/models/config.py:43 +#: core/models/config.py:43 msgid "Current configuration" msgstr "Aktuelle Konfiguration" -#: netbox/core/models/config.py:44 +#: core/models/config.py:44 #, python-brace-format msgid "Config revision #{id}" msgstr "Konfigurationsrevision #{id}" -#: netbox/core/models/data.py:44 netbox/dcim/models/cables.py:43 -#: netbox/dcim/models/device_component_templates.py:203 -#: netbox/dcim/models/device_component_templates.py:237 -#: netbox/dcim/models/device_component_templates.py:272 -#: netbox/dcim/models/device_component_templates.py:334 -#: netbox/dcim/models/device_component_templates.py:413 -#: netbox/dcim/models/device_component_templates.py:512 -#: netbox/dcim/models/device_component_templates.py:612 -#: netbox/dcim/models/device_components.py:283 -#: netbox/dcim/models/device_components.py:312 -#: netbox/dcim/models/device_components.py:345 -#: netbox/dcim/models/device_components.py:463 -#: netbox/dcim/models/device_components.py:605 -#: netbox/dcim/models/device_components.py:970 -#: netbox/dcim/models/device_components.py:1044 -#: netbox/dcim/models/power.py:102 netbox/extras/models/customfields.py:78 -#: netbox/extras/models/search.py:41 -#: netbox/virtualization/models/clusters.py:61 netbox/vpn/models/l2vpn.py:32 +#: core/models/data.py:44 dcim/models/cables.py:43 +#: dcim/models/device_component_templates.py:203 +#: dcim/models/device_component_templates.py:237 +#: dcim/models/device_component_templates.py:272 +#: dcim/models/device_component_templates.py:334 +#: dcim/models/device_component_templates.py:413 +#: dcim/models/device_component_templates.py:512 +#: dcim/models/device_component_templates.py:612 +#: dcim/models/device_components.py:283 dcim/models/device_components.py:312 +#: dcim/models/device_components.py:345 dcim/models/device_components.py:463 +#: dcim/models/device_components.py:605 dcim/models/device_components.py:970 +#: dcim/models/device_components.py:1044 dcim/models/power.py:102 +#: extras/models/customfields.py:78 extras/models/search.py:41 +#: virtualization/models/clusters.py:61 vpn/models/l2vpn.py:32 msgid "type" msgstr "Typ" -#: netbox/core/models/data.py:49 netbox/extras/choices.py:37 -#: netbox/extras/models/models.py:164 netbox/extras/tables/tables.py:656 -#: netbox/templates/core/datasource.html:58 -#: netbox/templates/core/plugin.html:65 +#: core/models/data.py:49 extras/choices.py:37 extras/models/models.py:164 +#: extras/tables/tables.py:656 templates/core/datasource.html:58 +#: templates/core/plugin.html:66 msgid "URL" msgstr "URL" -#: netbox/core/models/data.py:59 -#: netbox/dcim/models/device_component_templates.py:418 -#: netbox/dcim/models/device_components.py:512 -#: netbox/extras/models/models.py:70 netbox/extras/models/models.py:301 -#: netbox/extras/models/models.py:526 netbox/users/models/permissions.py:29 +#: core/models/data.py:59 dcim/models/device_component_templates.py:418 +#: dcim/models/device_components.py:512 extras/models/models.py:70 +#: extras/models/models.py:301 extras/models/models.py:526 +#: users/models/permissions.py:29 msgid "enabled" msgstr "aktiviert" -#: netbox/core/models/data.py:63 +#: core/models/data.py:63 msgid "ignore rules" msgstr "Regeln ignorieren" -#: netbox/core/models/data.py:65 +#: core/models/data.py:65 msgid "Patterns (one per line) matching files to ignore when syncing" msgstr "" "Muster (eines pro Zeile), welche Dateien entsprechen, die beim " "Synchronisieren ignoriert werden sollen" -#: netbox/core/models/data.py:68 netbox/extras/models/models.py:534 +#: core/models/data.py:68 extras/models/models.py:534 msgid "parameters" msgstr "Parameter" -#: netbox/core/models/data.py:73 +#: core/models/data.py:73 msgid "last synced" msgstr "zuletzt synchronisiert" -#: netbox/core/models/data.py:81 +#: core/models/data.py:81 msgid "data source" msgstr "Datenquelle" -#: netbox/core/models/data.py:82 +#: core/models/data.py:82 msgid "data sources" msgstr "Datenquellen" -#: netbox/core/models/data.py:122 +#: core/models/data.py:122 #, python-brace-format msgid "Unknown backend type: {type}" msgstr "Unbekannter Backendtyp: {type}" -#: netbox/core/models/data.py:164 +#: core/models/data.py:164 msgid "Cannot initiate sync; syncing already in progress." msgstr "Synchronisierung kann nicht initiiert werden: Läuft bereits." -#: netbox/core/models/data.py:177 +#: core/models/data.py:177 msgid "" "There was an error initializing the backend. A dependency needs to be " "installed: " @@ -2175,1286 +1906,1224 @@ msgstr "" "Beim Initialisieren des Backends ist ein Fehler aufgetreten. Eine " "Abhängigkeit muss installiert werden: " -#: netbox/core/models/data.py:270 netbox/core/models/files.py:31 -#: netbox/netbox/models/features.py:59 +#: core/models/data.py:270 core/models/files.py:31 +#: netbox/models/features.py:59 msgid "last updated" msgstr "zuletzt aktualisiert" -#: netbox/core/models/data.py:280 netbox/dcim/models/cables.py:444 +#: core/models/data.py:280 dcim/models/cables.py:444 msgid "path" msgstr "Pfad" -#: netbox/core/models/data.py:283 +#: core/models/data.py:283 msgid "File path relative to the data source's root" msgstr "Dateipfad relativ zum Stammverzeichnis des Daten Verzeichnisses" -#: netbox/core/models/data.py:287 netbox/ipam/models/ip.py:503 +#: core/models/data.py:287 ipam/models/ip.py:503 msgid "size" msgstr "Größe" -#: netbox/core/models/data.py:290 +#: core/models/data.py:290 msgid "hash" msgstr "Prüfsumme" -#: netbox/core/models/data.py:294 +#: core/models/data.py:294 msgid "Length must be 64 hexadecimal characters." msgstr "Die Länge muss 64 Hexadezimalzeichen betragen." -#: netbox/core/models/data.py:296 +#: core/models/data.py:296 msgid "SHA256 hash of the file data" msgstr "SHA256-Hash des Dateiinhalts" -#: netbox/core/models/data.py:313 +#: core/models/data.py:313 msgid "data file" msgstr "Datendatei" -#: netbox/core/models/data.py:314 +#: core/models/data.py:314 msgid "data files" msgstr "Datendateien" -#: netbox/core/models/data.py:401 +#: core/models/data.py:401 msgid "auto sync record" msgstr "Auto-Sync-Aufnahme" -#: netbox/core/models/data.py:402 +#: core/models/data.py:402 msgid "auto sync records" msgstr "Auto-Sync-Aufnahmen" -#: netbox/core/models/files.py:37 +#: core/models/files.py:37 msgid "file root" msgstr "Stammverzeichnis der Datei" -#: netbox/core/models/files.py:42 +#: core/models/files.py:42 msgid "file path" msgstr "Dateipfad" -#: netbox/core/models/files.py:44 +#: core/models/files.py:44 msgid "File path relative to the designated root path" msgstr "Dateipfad relativ zum angegebenen Stammpfad" -#: netbox/core/models/files.py:61 +#: core/models/files.py:61 msgid "managed file" msgstr "verwaltete Datei" -#: netbox/core/models/files.py:62 +#: core/models/files.py:62 msgid "managed files" msgstr "verwaltete Dateien" -#: netbox/core/models/jobs.py:53 +#: core/models/jobs.py:53 msgid "scheduled" msgstr "geplant" -#: netbox/core/models/jobs.py:58 +#: core/models/jobs.py:58 msgid "interval" msgstr "Intervall" -#: netbox/core/models/jobs.py:64 +#: core/models/jobs.py:64 msgid "Recurrence interval (in minutes)" msgstr "Wiederholungsintervall (in Minuten)" -#: netbox/core/models/jobs.py:67 +#: core/models/jobs.py:67 msgid "started" msgstr "gestartet" -#: netbox/core/models/jobs.py:72 +#: core/models/jobs.py:72 msgid "completed" msgstr "abgeschlossen" -#: netbox/core/models/jobs.py:90 netbox/extras/models/models.py:101 -#: netbox/extras/models/staging.py:87 +#: core/models/jobs.py:90 extras/models/models.py:101 +#: extras/models/staging.py:87 msgid "data" msgstr "Daten" -#: netbox/core/models/jobs.py:95 +#: core/models/jobs.py:95 msgid "error" msgstr "Fehler" -#: netbox/core/models/jobs.py:100 +#: core/models/jobs.py:100 msgid "job ID" msgstr "Job-ID" -#: netbox/core/models/jobs.py:111 +#: core/models/jobs.py:111 msgid "job" msgstr "Job" -#: netbox/core/models/jobs.py:112 +#: core/models/jobs.py:112 msgid "jobs" msgstr "Jobs" -#: netbox/core/models/jobs.py:135 +#: core/models/jobs.py:135 #, python-brace-format msgid "Jobs cannot be assigned to this object type ({type})." msgstr "Jobs können diesem Objekttyp nicht zugewiesen werden ({type})." -#: netbox/core/models/jobs.py:185 +#: core/models/jobs.py:185 #, python-brace-format msgid "Invalid status for job termination. Choices are: {choices}" msgstr "" "Ungültiger Status für die Beendigung des Jobs. Es stehen folgende Optionen " "zur Auswahl: {choices}" -#: netbox/core/models/jobs.py:216 +#: core/models/jobs.py:216 msgid "" "enqueue() cannot be called with values for both schedule_at and immediate." msgstr "" "enqueue () kann nicht mit Werten sowohl für schedule_at als auch für " "immediate aufgerufen werden." -#: netbox/core/signals.py:126 +#: core/signals.py:126 #, python-brace-format msgid "Deletion is prevented by a protection rule: {message}" msgstr "Das Löschen wird durch eine Schutzregel verhindert: {message}" -#: netbox/core/tables/change_logging.py:25 -#: netbox/templates/account/profile.html:19 -#: netbox/templates/users/user.html:21 +#: core/tables/change_logging.py:25 templates/account/profile.html:19 +#: templates/users/user.html:21 msgid "Full Name" msgstr "Vollständiger Name" -#: netbox/core/tables/change_logging.py:37 netbox/core/tables/jobs.py:21 -#: netbox/extras/choices.py:41 netbox/extras/tables/tables.py:279 -#: netbox/extras/tables/tables.py:297 netbox/extras/tables/tables.py:329 -#: netbox/extras/tables/tables.py:409 netbox/extras/tables/tables.py:470 -#: netbox/extras/tables/tables.py:576 netbox/extras/tables/tables.py:616 -#: netbox/extras/tables/tables.py:653 netbox/netbox/tables/tables.py:244 -#: netbox/templates/core/objectchange.html:58 -#: netbox/templates/extras/eventrule.html:78 -#: netbox/templates/extras/journalentry.html:18 -#: netbox/tenancy/tables/contacts.py:93 netbox/vpn/tables/l2vpn.py:64 +#: core/tables/change_logging.py:37 core/tables/jobs.py:21 +#: extras/choices.py:41 extras/tables/tables.py:279 +#: extras/tables/tables.py:297 extras/tables/tables.py:329 +#: extras/tables/tables.py:409 extras/tables/tables.py:470 +#: extras/tables/tables.py:576 extras/tables/tables.py:616 +#: extras/tables/tables.py:653 netbox/tables/tables.py:244 +#: templates/core/objectchange.html:58 templates/extras/eventrule.html:78 +#: templates/extras/journalentry.html:18 tenancy/tables/contacts.py:93 +#: vpn/tables/l2vpn.py:64 msgid "Object" msgstr "Objekt" -#: netbox/core/tables/change_logging.py:42 -#: netbox/templates/core/objectchange.html:68 +#: core/tables/change_logging.py:42 templates/core/objectchange.html:68 msgid "Request ID" msgstr "Anfragen-ID" -#: netbox/core/tables/config.py:21 netbox/users/forms/filtersets.py:44 -#: netbox/users/tables.py:39 +#: core/tables/config.py:21 users/forms/filtersets.py:44 users/tables.py:39 msgid "Is Active" msgstr "Ist aktiv" -#: netbox/core/tables/data.py:50 netbox/templates/core/datafile.html:31 +#: core/tables/data.py:50 templates/core/datafile.html:31 msgid "Path" msgstr "Pfad" -#: netbox/core/tables/data.py:54 -#: netbox/templates/extras/inc/result_pending.html:7 +#: core/tables/data.py:54 templates/extras/inc/result_pending.html:7 msgid "Last updated" msgstr "Letzte Aktualisierung" -#: netbox/core/tables/jobs.py:10 netbox/core/tables/tasks.py:76 -#: netbox/dcim/tables/devicetypes.py:164 netbox/extras/tables/tables.py:216 -#: netbox/extras/tables/tables.py:460 netbox/netbox/tables/tables.py:189 -#: netbox/templates/dcim/virtualchassis_edit.html:52 -#: netbox/utilities/forms/forms.py:73 -#: netbox/wireless/tables/wirelesslink.py:17 +#: core/tables/jobs.py:10 core/tables/tasks.py:76 +#: dcim/tables/devicetypes.py:164 extras/tables/tables.py:216 +#: extras/tables/tables.py:460 netbox/tables/tables.py:189 +#: templates/dcim/virtualchassis_edit.html:52 utilities/forms/forms.py:73 +#: wireless/tables/wirelesslink.py:17 msgid "ID" msgstr "ID" -#: netbox/core/tables/jobs.py:35 +#: core/tables/jobs.py:35 msgid "Interval" msgstr "Intervall" -#: netbox/core/tables/plugins.py:14 netbox/templates/vpn/ipsecprofile.html:44 -#: netbox/vpn/forms/bulk_edit.py:141 netbox/vpn/forms/bulk_import.py:172 -#: netbox/vpn/tables/crypto.py:61 +#: core/tables/plugins.py:14 templates/vpn/ipsecprofile.html:44 +#: vpn/forms/bulk_edit.py:141 vpn/forms/bulk_import.py:172 +#: vpn/tables/crypto.py:61 msgid "Version" msgstr "Version" -#: netbox/core/tables/plugins.py:19 netbox/templates/core/datafile.html:38 +#: core/tables/plugins.py:19 templates/core/datafile.html:38 msgid "Last Updated" msgstr "Zuletzt aktualisiert" -#: netbox/core/tables/plugins.py:23 +#: core/tables/plugins.py:23 msgid "Minimum NetBox Version" msgstr "Minimale Netbox-Version" -#: netbox/core/tables/plugins.py:27 +#: core/tables/plugins.py:27 msgid "Maximum NetBox Version" msgstr "Maximale NetBox-Version" -#: netbox/core/tables/plugins.py:31 netbox/core/tables/plugins.py:74 +#: core/tables/plugins.py:31 core/tables/plugins.py:74 msgid "No plugin data found" msgstr "Keine Plugin-Daten gefunden" -#: netbox/core/tables/plugins.py:48 netbox/templates/core/plugin.html:61 +#: core/tables/plugins.py:48 templates/core/plugin.html:62 msgid "Author" msgstr "Autor" -#: netbox/core/tables/plugins.py:54 +#: core/tables/plugins.py:54 msgid "Installed" msgstr "Installiert" -#: netbox/core/tables/plugins.py:57 netbox/templates/core/plugin.html:83 +#: core/tables/plugins.py:57 templates/core/plugin.html:84 msgid "Certified" msgstr "Zertifiziert" -#: netbox/core/tables/plugins.py:60 +#: core/tables/plugins.py:60 msgid "Published" msgstr "Veröffentlicht" -#: netbox/core/tables/plugins.py:66 +#: core/tables/plugins.py:66 msgid "Installed Version" msgstr "Installierte Version" -#: netbox/core/tables/plugins.py:70 +#: core/tables/plugins.py:70 msgid "Latest Version" msgstr "Neuste Version" -#: netbox/core/tables/tasks.py:18 +#: core/tables/tasks.py:18 msgid "Oldest Task" msgstr "Älteste Aufgabe" -#: netbox/core/tables/tasks.py:42 netbox/templates/core/rq_worker_list.html:39 +#: core/tables/tasks.py:42 templates/core/rq_worker_list.html:39 msgid "Workers" msgstr "Arbeiter" -#: netbox/core/tables/tasks.py:46 netbox/vpn/tables/tunnels.py:88 +#: core/tables/tasks.py:46 vpn/tables/tunnels.py:88 msgid "Host" msgstr "Host" -#: netbox/core/tables/tasks.py:50 netbox/ipam/forms/filtersets.py:535 +#: core/tables/tasks.py:50 ipam/forms/filtersets.py:535 msgid "Port" msgstr "Port" -#: netbox/core/tables/tasks.py:54 +#: core/tables/tasks.py:54 msgid "DB" msgstr "DB" -#: netbox/core/tables/tasks.py:58 +#: core/tables/tasks.py:58 msgid "Scheduler PID" msgstr "Scheduler-PID" -#: netbox/core/tables/tasks.py:62 +#: core/tables/tasks.py:62 msgid "No queues found" msgstr "Keine Warteschlangen gefunden" -#: netbox/core/tables/tasks.py:82 +#: core/tables/tasks.py:82 msgid "Enqueued" msgstr "In Warteschlange eingereiht" -#: netbox/core/tables/tasks.py:85 +#: core/tables/tasks.py:85 msgid "Ended" msgstr "Beendet" -#: netbox/core/tables/tasks.py:93 netbox/templates/core/rq_task.html:85 +#: core/tables/tasks.py:93 templates/core/rq_task.html:85 msgid "Callable" msgstr "Abrufbar" -#: netbox/core/tables/tasks.py:97 +#: core/tables/tasks.py:97 msgid "No tasks found" msgstr "Keine Aufgaben gefunden" -#: netbox/core/tables/tasks.py:118 netbox/templates/core/rq_worker.html:47 +#: core/tables/tasks.py:118 templates/core/rq_worker.html:47 msgid "State" msgstr "Zustand" -#: netbox/core/tables/tasks.py:121 netbox/templates/core/rq_worker.html:51 +#: core/tables/tasks.py:121 templates/core/rq_worker.html:51 msgid "Birth" msgstr "Geburt" -#: netbox/core/tables/tasks.py:124 netbox/templates/core/rq_worker.html:59 +#: core/tables/tasks.py:124 templates/core/rq_worker.html:59 msgid "PID" msgstr "PID" -#: netbox/core/tables/tasks.py:128 +#: core/tables/tasks.py:128 msgid "No workers found" msgstr "Kein Job gefunden" -#: netbox/core/views.py:90 +#: core/views.py:90 #, python-brace-format msgid "Queued job #{id} to sync {datasource}" msgstr "Warteschlangen Job {id}beim Synchronisieren {datasource}" -#: netbox/core/views.py:319 +#: core/views.py:319 #, python-brace-format msgid "Restored configuration revision #{id}" msgstr "Wiederhergestellte Konfigurationsrevision # {id}" -#: netbox/core/views.py:412 netbox/core/views.py:455 netbox/core/views.py:531 +#: core/views.py:412 core/views.py:455 core/views.py:531 #, python-brace-format msgid "Job {job_id} not found" msgstr "Job{job_id} nicht gefunden" -#: netbox/core/views.py:463 +#: core/views.py:463 #, python-brace-format msgid "Job {id} has been deleted." msgstr "Job {id}wurde gelöscht" -#: netbox/core/views.py:465 +#: core/views.py:465 #, python-brace-format msgid "Error deleting job {id}: {error}" msgstr "Fehler beim Job löschen {id}: {error}" -#: netbox/core/views.py:478 netbox/core/views.py:496 +#: core/views.py:478 core/views.py:496 #, python-brace-format msgid "Job {id} not found." msgstr "Job {id}nicht gefunden" -#: netbox/core/views.py:484 +#: core/views.py:484 #, python-brace-format msgid "Job {id} has been re-enqueued." msgstr "Job {id}erneut in Warteschlange eingereiht" -#: netbox/core/views.py:519 +#: core/views.py:519 #, python-brace-format msgid "Job {id} has been enqueued." msgstr "Job {id}in Warteschlange eingereiht" -#: netbox/core/views.py:538 +#: core/views.py:538 #, python-brace-format msgid "Job {id} has been stopped." msgstr "Job {id}wurde gestoppt" -#: netbox/core/views.py:540 +#: core/views.py:540 #, python-brace-format msgid "Failed to stop job {id}" msgstr "Fehler beim Stoppen des Job {id}" -#: netbox/core/views.py:678 +#: core/views.py:678 msgid "Plugins catalog could not be loaded" msgstr "Der Plugin-Katalog konnte nicht geladen werden" -#: netbox/core/views.py:712 +#: core/views.py:712 #, python-brace-format msgid "Plugin {name} not found" msgstr "Plugin {name} nicht gefunden" -#: netbox/dcim/api/serializers_/devices.py:49 -#: netbox/dcim/api/serializers_/devicetypes.py:25 +#: dcim/api/serializers_/devices.py:49 dcim/api/serializers_/devicetypes.py:25 msgid "Position (U)" msgstr "Position (HE)" -#: netbox/dcim/api/serializers_/racks.py:112 -#: netbox/templates/dcim/rack.html:28 +#: dcim/api/serializers_/racks.py:112 templates/dcim/rack.html:28 msgid "Facility ID" msgstr "Einrichtungs-ID" -#: netbox/dcim/choices.py:21 netbox/virtualization/choices.py:21 +#: dcim/choices.py:21 virtualization/choices.py:21 msgid "Staging" msgstr "Bereitstellung" -#: netbox/dcim/choices.py:23 netbox/dcim/choices.py:189 -#: netbox/dcim/choices.py:240 netbox/dcim/choices.py:1531 -#: netbox/virtualization/choices.py:23 netbox/virtualization/choices.py:48 +#: dcim/choices.py:23 dcim/choices.py:189 dcim/choices.py:240 +#: dcim/choices.py:1531 virtualization/choices.py:23 +#: virtualization/choices.py:48 msgid "Decommissioning" msgstr "Außerbetriebnahme" -#: netbox/dcim/choices.py:24 +#: dcim/choices.py:24 msgid "Retired" msgstr "Ausser Dienst" -#: netbox/dcim/choices.py:65 +#: dcim/choices.py:65 msgid "2-post frame" msgstr "Rahmengestell mit 2 Montageschienen" -#: netbox/dcim/choices.py:66 +#: dcim/choices.py:66 msgid "4-post frame" msgstr "Rahmengestell mit 4 Montageschienen" -#: netbox/dcim/choices.py:67 +#: dcim/choices.py:67 msgid "4-post cabinet" msgstr "Schrank mit 4 Montageschienen" -#: netbox/dcim/choices.py:68 +#: dcim/choices.py:68 msgid "Wall-mounted frame" msgstr "Wandhalterung" -#: netbox/dcim/choices.py:69 +#: dcim/choices.py:69 msgid "Wall-mounted frame (vertical)" msgstr "Wandhalterung (hochkant)" -#: netbox/dcim/choices.py:70 +#: dcim/choices.py:70 msgid "Wall-mounted cabinet" msgstr "Wandschrank" -#: netbox/dcim/choices.py:71 +#: dcim/choices.py:71 msgid "Wall-mounted cabinet (vertical)" msgstr "Wandschrank (hochkant)" -#: netbox/dcim/choices.py:83 netbox/dcim/choices.py:84 -#: netbox/dcim/choices.py:85 netbox/dcim/choices.py:86 +#: dcim/choices.py:83 dcim/choices.py:84 dcim/choices.py:85 dcim/choices.py:86 #, python-brace-format msgid "{n} inches" msgstr "{n} Zoll" -#: netbox/dcim/choices.py:100 netbox/ipam/choices.py:32 -#: netbox/ipam/choices.py:50 netbox/ipam/choices.py:70 -#: netbox/ipam/choices.py:155 netbox/wireless/choices.py:26 +#: dcim/choices.py:100 ipam/choices.py:32 ipam/choices.py:50 +#: ipam/choices.py:70 ipam/choices.py:155 wireless/choices.py:26 msgid "Reserved" msgstr "Reserviert" -#: netbox/dcim/choices.py:101 netbox/templates/dcim/device.html:259 +#: dcim/choices.py:101 templates/dcim/device.html:259 msgid "Available" msgstr "Verfügbar" -#: netbox/dcim/choices.py:104 netbox/ipam/choices.py:33 -#: netbox/ipam/choices.py:51 netbox/ipam/choices.py:71 -#: netbox/ipam/choices.py:156 netbox/wireless/choices.py:28 +#: dcim/choices.py:104 ipam/choices.py:33 ipam/choices.py:51 +#: ipam/choices.py:71 ipam/choices.py:156 wireless/choices.py:28 msgid "Deprecated" msgstr "Veraltet" -#: netbox/dcim/choices.py:114 -#: netbox/templates/dcim/inc/panels/racktype_dimensions.html:41 +#: dcim/choices.py:114 templates/dcim/inc/panels/racktype_dimensions.html:41 msgid "Millimeters" msgstr "Millimeter" -#: netbox/dcim/choices.py:115 netbox/dcim/choices.py:1553 +#: dcim/choices.py:115 dcim/choices.py:1553 msgid "Inches" msgstr "Zoll" -#: netbox/dcim/choices.py:136 netbox/dcim/choices.py:207 -#: netbox/dcim/choices.py:254 +#: dcim/choices.py:136 dcim/choices.py:207 dcim/choices.py:254 msgid "Front to rear" msgstr "Front- zu Rückseite" -#: netbox/dcim/choices.py:137 netbox/dcim/choices.py:208 -#: netbox/dcim/choices.py:255 +#: dcim/choices.py:137 dcim/choices.py:208 dcim/choices.py:255 msgid "Rear to front" msgstr "Rück- zu Frontseite" -#: netbox/dcim/choices.py:151 netbox/dcim/forms/bulk_edit.py:68 -#: netbox/dcim/forms/bulk_edit.py:87 netbox/dcim/forms/bulk_edit.py:173 -#: netbox/dcim/forms/bulk_edit.py:1405 netbox/dcim/forms/bulk_import.py:60 -#: netbox/dcim/forms/bulk_import.py:74 netbox/dcim/forms/bulk_import.py:137 -#: netbox/dcim/forms/bulk_import.py:566 netbox/dcim/forms/bulk_import.py:833 -#: netbox/dcim/forms/bulk_import.py:1088 netbox/dcim/forms/filtersets.py:234 -#: netbox/dcim/forms/model_forms.py:74 netbox/dcim/forms/model_forms.py:93 -#: netbox/dcim/forms/model_forms.py:170 netbox/dcim/forms/model_forms.py:1062 -#: netbox/dcim/forms/model_forms.py:1502 -#: netbox/dcim/forms/object_import.py:176 netbox/dcim/tables/devices.py:656 -#: netbox/dcim/tables/devices.py:869 netbox/dcim/tables/devices.py:954 -#: netbox/extras/tables/tables.py:223 netbox/ipam/tables/fhrp.py:59 -#: netbox/ipam/tables/ip.py:378 netbox/ipam/tables/services.py:44 -#: netbox/templates/dcim/interface.html:102 -#: netbox/templates/dcim/interface.html:309 -#: netbox/templates/dcim/location.html:41 netbox/templates/dcim/region.html:37 -#: netbox/templates/dcim/sitegroup.html:37 -#: netbox/templates/ipam/service.html:28 -#: netbox/templates/tenancy/contactgroup.html:29 -#: netbox/templates/tenancy/tenantgroup.html:37 -#: netbox/templates/virtualization/vminterface.html:39 -#: netbox/templates/wireless/wirelesslangroup.html:37 -#: netbox/tenancy/forms/bulk_edit.py:27 netbox/tenancy/forms/bulk_edit.py:61 -#: netbox/tenancy/forms/bulk_import.py:24 -#: netbox/tenancy/forms/bulk_import.py:58 -#: netbox/tenancy/forms/model_forms.py:25 -#: netbox/tenancy/forms/model_forms.py:68 -#: netbox/virtualization/forms/bulk_edit.py:207 -#: netbox/virtualization/forms/bulk_import.py:151 -#: netbox/virtualization/tables/virtualmachines.py:162 -#: netbox/wireless/forms/bulk_edit.py:24 -#: netbox/wireless/forms/bulk_import.py:21 -#: netbox/wireless/forms/model_forms.py:21 +#: dcim/choices.py:151 dcim/forms/bulk_edit.py:68 dcim/forms/bulk_edit.py:87 +#: dcim/forms/bulk_edit.py:173 dcim/forms/bulk_edit.py:1405 +#: dcim/forms/bulk_import.py:60 dcim/forms/bulk_import.py:74 +#: dcim/forms/bulk_import.py:137 dcim/forms/bulk_import.py:566 +#: dcim/forms/bulk_import.py:833 dcim/forms/bulk_import.py:1088 +#: dcim/forms/filtersets.py:234 dcim/forms/model_forms.py:74 +#: dcim/forms/model_forms.py:93 dcim/forms/model_forms.py:170 +#: dcim/forms/model_forms.py:1062 dcim/forms/model_forms.py:1502 +#: dcim/forms/object_import.py:176 dcim/tables/devices.py:656 +#: dcim/tables/devices.py:869 dcim/tables/devices.py:954 +#: extras/tables/tables.py:223 ipam/tables/fhrp.py:59 ipam/tables/ip.py:378 +#: ipam/tables/services.py:44 templates/dcim/interface.html:102 +#: templates/dcim/interface.html:309 templates/dcim/location.html:41 +#: templates/dcim/region.html:37 templates/dcim/sitegroup.html:37 +#: templates/ipam/service.html:28 templates/tenancy/contactgroup.html:29 +#: templates/tenancy/tenantgroup.html:37 +#: templates/virtualization/vminterface.html:39 +#: templates/wireless/wirelesslangroup.html:37 tenancy/forms/bulk_edit.py:27 +#: tenancy/forms/bulk_edit.py:61 tenancy/forms/bulk_import.py:24 +#: tenancy/forms/bulk_import.py:58 tenancy/forms/model_forms.py:25 +#: tenancy/forms/model_forms.py:68 virtualization/forms/bulk_edit.py:207 +#: virtualization/forms/bulk_import.py:151 +#: virtualization/tables/virtualmachines.py:162 wireless/forms/bulk_edit.py:24 +#: wireless/forms/bulk_import.py:21 wireless/forms/model_forms.py:21 msgid "Parent" msgstr "Übergeordnet" -#: netbox/dcim/choices.py:152 +#: dcim/choices.py:152 msgid "Child" msgstr "Untergeordnet" -#: netbox/dcim/choices.py:166 netbox/templates/dcim/device.html:340 -#: netbox/templates/dcim/rack.html:133 -#: netbox/templates/dcim/rack_elevation_list.html:20 -#: netbox/templates/dcim/rackreservation.html:76 +#: dcim/choices.py:166 templates/dcim/device.html:340 +#: templates/dcim/rack.html:133 templates/dcim/rack_elevation_list.html:20 +#: templates/dcim/rackreservation.html:76 msgid "Front" msgstr "Frontseite" -#: netbox/dcim/choices.py:167 netbox/templates/dcim/device.html:346 -#: netbox/templates/dcim/rack.html:139 -#: netbox/templates/dcim/rack_elevation_list.html:21 -#: netbox/templates/dcim/rackreservation.html:82 +#: dcim/choices.py:167 templates/dcim/device.html:346 +#: templates/dcim/rack.html:139 templates/dcim/rack_elevation_list.html:21 +#: templates/dcim/rackreservation.html:82 msgid "Rear" msgstr "Rückseite" -#: netbox/dcim/choices.py:186 netbox/dcim/choices.py:238 -#: netbox/virtualization/choices.py:46 +#: dcim/choices.py:186 dcim/choices.py:238 virtualization/choices.py:46 msgid "Staged" msgstr "Vorbereitet" -#: netbox/dcim/choices.py:188 +#: dcim/choices.py:188 msgid "Inventory" msgstr "Inventar" -#: netbox/dcim/choices.py:209 netbox/dcim/choices.py:256 +#: dcim/choices.py:209 dcim/choices.py:256 msgid "Left to right" msgstr "Links nach rechts" -#: netbox/dcim/choices.py:210 netbox/dcim/choices.py:257 +#: dcim/choices.py:210 dcim/choices.py:257 msgid "Right to left" msgstr "Rechts nach links" -#: netbox/dcim/choices.py:211 netbox/dcim/choices.py:258 +#: dcim/choices.py:211 dcim/choices.py:258 msgid "Side to rear" msgstr "Seite nach hinten" -#: netbox/dcim/choices.py:212 +#: dcim/choices.py:212 msgid "Rear to side" msgstr "Von hinten zur Seite" -#: netbox/dcim/choices.py:213 +#: dcim/choices.py:213 msgid "Bottom to top" msgstr "Von unten nach oben" -#: netbox/dcim/choices.py:214 +#: dcim/choices.py:214 msgid "Top to bottom" msgstr "Von oben nach unten" -#: netbox/dcim/choices.py:215 netbox/dcim/choices.py:259 -#: netbox/dcim/choices.py:1303 +#: dcim/choices.py:215 dcim/choices.py:259 dcim/choices.py:1303 msgid "Passive" msgstr "Passiv" -#: netbox/dcim/choices.py:216 +#: dcim/choices.py:216 msgid "Mixed" msgstr "Gemischt" -#: netbox/dcim/choices.py:484 netbox/dcim/choices.py:733 +#: dcim/choices.py:484 dcim/choices.py:733 msgid "NEMA (Non-locking)" msgstr "NEMA (nicht verriegelnd)" -#: netbox/dcim/choices.py:506 netbox/dcim/choices.py:755 +#: dcim/choices.py:506 dcim/choices.py:755 msgid "NEMA (Locking)" msgstr "NEMA (verriegelnd)" -#: netbox/dcim/choices.py:530 netbox/dcim/choices.py:779 +#: dcim/choices.py:530 dcim/choices.py:779 msgid "California Style" msgstr "Kalifornischer Stil" -#: netbox/dcim/choices.py:538 +#: dcim/choices.py:538 msgid "International/ITA" msgstr "International/ITA" -#: netbox/dcim/choices.py:573 netbox/dcim/choices.py:814 +#: dcim/choices.py:573 dcim/choices.py:814 msgid "Proprietary" msgstr "Propritär" -#: netbox/dcim/choices.py:581 netbox/dcim/choices.py:824 -#: netbox/dcim/choices.py:1219 netbox/dcim/choices.py:1221 -#: netbox/dcim/choices.py:1447 netbox/dcim/choices.py:1449 -#: netbox/netbox/navigation/menu.py:200 +#: dcim/choices.py:581 dcim/choices.py:824 dcim/choices.py:1219 +#: dcim/choices.py:1221 dcim/choices.py:1447 dcim/choices.py:1449 +#: netbox/navigation/menu.py:200 msgid "Other" msgstr "Andere" -#: netbox/dcim/choices.py:787 +#: dcim/choices.py:787 msgid "ITA/International" msgstr "ITA/International" -#: netbox/dcim/choices.py:854 +#: dcim/choices.py:854 msgid "Physical" msgstr "Physikalisch" -#: netbox/dcim/choices.py:855 netbox/dcim/choices.py:1023 +#: dcim/choices.py:855 dcim/choices.py:1023 msgid "Virtual" msgstr "Virtuell" -#: netbox/dcim/choices.py:856 netbox/dcim/choices.py:1097 -#: netbox/dcim/forms/bulk_edit.py:1515 netbox/dcim/forms/filtersets.py:1330 -#: netbox/dcim/forms/model_forms.py:988 netbox/dcim/forms/model_forms.py:1397 -#: netbox/netbox/navigation/menu.py:140 netbox/netbox/navigation/menu.py:144 -#: netbox/templates/dcim/interface.html:210 +#: dcim/choices.py:856 dcim/choices.py:1097 dcim/forms/bulk_edit.py:1515 +#: dcim/forms/filtersets.py:1330 dcim/forms/model_forms.py:988 +#: dcim/forms/model_forms.py:1397 netbox/navigation/menu.py:140 +#: netbox/navigation/menu.py:144 templates/dcim/interface.html:210 msgid "Wireless" msgstr "Funknetze" -#: netbox/dcim/choices.py:1021 +#: dcim/choices.py:1021 msgid "Virtual interfaces" msgstr "Virtuelle Schnittstellen" -#: netbox/dcim/choices.py:1024 netbox/dcim/forms/bulk_edit.py:1410 -#: netbox/dcim/forms/bulk_import.py:840 netbox/dcim/forms/model_forms.py:974 -#: netbox/dcim/tables/devices.py:660 netbox/templates/dcim/interface.html:106 -#: netbox/templates/virtualization/vminterface.html:43 -#: netbox/virtualization/forms/bulk_edit.py:212 -#: netbox/virtualization/forms/bulk_import.py:158 -#: netbox/virtualization/tables/virtualmachines.py:166 +#: dcim/choices.py:1024 dcim/forms/bulk_edit.py:1410 +#: dcim/forms/bulk_import.py:840 dcim/forms/model_forms.py:974 +#: dcim/tables/devices.py:660 templates/dcim/interface.html:106 +#: templates/virtualization/vminterface.html:43 +#: virtualization/forms/bulk_edit.py:212 +#: virtualization/forms/bulk_import.py:158 +#: virtualization/tables/virtualmachines.py:166 msgid "Bridge" msgstr "Bridge" -#: netbox/dcim/choices.py:1025 +#: dcim/choices.py:1025 msgid "Link Aggregation Group (LAG)" msgstr "Link Aggregation Group (LAG)" -#: netbox/dcim/choices.py:1029 +#: dcim/choices.py:1029 msgid "Ethernet (fixed)" msgstr "Ethernet (fest)" -#: netbox/dcim/choices.py:1044 +#: dcim/choices.py:1044 msgid "Ethernet (modular)" msgstr "Ethernet (modular)" -#: netbox/dcim/choices.py:1081 +#: dcim/choices.py:1081 msgid "Ethernet (backplane)" msgstr "Ethernet (Backplane)" -#: netbox/dcim/choices.py:1113 +#: dcim/choices.py:1113 msgid "Cellular" msgstr "Mobilfunk" -#: netbox/dcim/choices.py:1165 netbox/dcim/forms/filtersets.py:383 -#: netbox/dcim/forms/filtersets.py:809 netbox/dcim/forms/filtersets.py:963 -#: netbox/dcim/forms/filtersets.py:1542 -#: netbox/templates/dcim/inventoryitem.html:52 -#: netbox/templates/dcim/virtualchassis_edit.html:54 +#: dcim/choices.py:1165 dcim/forms/filtersets.py:383 +#: dcim/forms/filtersets.py:809 dcim/forms/filtersets.py:963 +#: dcim/forms/filtersets.py:1542 templates/dcim/inventoryitem.html:52 +#: templates/dcim/virtualchassis_edit.html:54 msgid "Serial" msgstr "Seriell" -#: netbox/dcim/choices.py:1180 +#: dcim/choices.py:1180 msgid "Coaxial" msgstr "Koaxial" -#: netbox/dcim/choices.py:1200 +#: dcim/choices.py:1200 msgid "Stacking" msgstr "Stapelnd" -#: netbox/dcim/choices.py:1250 +#: dcim/choices.py:1250 msgid "Half" msgstr "Halb" -#: netbox/dcim/choices.py:1251 +#: dcim/choices.py:1251 msgid "Full" msgstr "Voll" -#: netbox/dcim/choices.py:1252 netbox/netbox/preferences.py:31 -#: netbox/wireless/choices.py:480 +#: dcim/choices.py:1252 netbox/preferences.py:31 wireless/choices.py:480 msgid "Auto" msgstr "Automatisch" -#: netbox/dcim/choices.py:1263 +#: dcim/choices.py:1263 msgid "Access" msgstr "Untagged" -#: netbox/dcim/choices.py:1264 netbox/ipam/tables/vlans.py:172 -#: netbox/ipam/tables/vlans.py:217 -#: netbox/templates/dcim/inc/interface_vlans_table.html:7 +#: dcim/choices.py:1264 ipam/tables/vlans.py:172 ipam/tables/vlans.py:217 +#: templates/dcim/inc/interface_vlans_table.html:7 msgid "Tagged" msgstr "Tagged" -#: netbox/dcim/choices.py:1265 +#: dcim/choices.py:1265 msgid "Tagged (All)" msgstr "Tagged (Alle)" -#: netbox/dcim/choices.py:1294 +#: dcim/choices.py:1294 msgid "IEEE Standard" msgstr "IEEE-Standard" -#: netbox/dcim/choices.py:1305 +#: dcim/choices.py:1305 msgid "Passive 24V (2-pair)" msgstr "Passiv 24 V (2 Paare)" -#: netbox/dcim/choices.py:1306 +#: dcim/choices.py:1306 msgid "Passive 24V (4-pair)" msgstr "Passiv 24 V (4 Paare)" -#: netbox/dcim/choices.py:1307 +#: dcim/choices.py:1307 msgid "Passive 48V (2-pair)" msgstr "Passiv 48 V (2 Paare)" -#: netbox/dcim/choices.py:1308 +#: dcim/choices.py:1308 msgid "Passive 48V (4-pair)" msgstr "Passiv 48 V (4 Paare)" -#: netbox/dcim/choices.py:1378 netbox/dcim/choices.py:1488 +#: dcim/choices.py:1378 dcim/choices.py:1488 msgid "Copper" msgstr "Kupfer" -#: netbox/dcim/choices.py:1401 +#: dcim/choices.py:1401 msgid "Fiber Optic" msgstr "Glasfaser" -#: netbox/dcim/choices.py:1434 netbox/dcim/choices.py:1517 +#: dcim/choices.py:1434 dcim/choices.py:1517 msgid "USB" msgstr "USB" -#: netbox/dcim/choices.py:1504 +#: dcim/choices.py:1504 msgid "Fiber" msgstr "Faser" -#: netbox/dcim/choices.py:1529 netbox/dcim/forms/filtersets.py:1227 +#: dcim/choices.py:1529 dcim/forms/filtersets.py:1227 msgid "Connected" msgstr "Verbunden" -#: netbox/dcim/choices.py:1548 netbox/wireless/choices.py:497 +#: dcim/choices.py:1548 wireless/choices.py:497 msgid "Kilometers" msgstr "Kilometer" -#: netbox/dcim/choices.py:1549 netbox/templates/dcim/cable_trace.html:65 -#: netbox/wireless/choices.py:498 +#: dcim/choices.py:1549 templates/dcim/cable_trace.html:65 +#: wireless/choices.py:498 msgid "Meters" msgstr "Meter" -#: netbox/dcim/choices.py:1550 +#: dcim/choices.py:1550 msgid "Centimeters" msgstr "Zentimeter" -#: netbox/dcim/choices.py:1551 netbox/wireless/choices.py:499 +#: dcim/choices.py:1551 wireless/choices.py:499 msgid "Miles" msgstr "Meilen" -#: netbox/dcim/choices.py:1552 netbox/templates/dcim/cable_trace.html:66 -#: netbox/wireless/choices.py:500 +#: dcim/choices.py:1552 templates/dcim/cable_trace.html:66 +#: wireless/choices.py:500 msgid "Feet" msgstr "Fuß" -#: netbox/dcim/choices.py:1568 netbox/templates/dcim/device.html:327 -#: netbox/templates/dcim/rack.html:107 +#: dcim/choices.py:1568 templates/dcim/device.html:327 +#: templates/dcim/rack.html:107 msgid "Kilograms" msgstr "Kilogramm" -#: netbox/dcim/choices.py:1569 +#: dcim/choices.py:1569 msgid "Grams" msgstr "Gramm" -#: netbox/dcim/choices.py:1570 netbox/templates/dcim/device.html:328 -#: netbox/templates/dcim/rack.html:108 +#: dcim/choices.py:1570 templates/dcim/device.html:328 +#: templates/dcim/rack.html:108 msgid "Pounds" msgstr "Pfund" -#: netbox/dcim/choices.py:1571 +#: dcim/choices.py:1571 msgid "Ounces" msgstr "Unzen" -#: netbox/dcim/choices.py:1618 +#: dcim/choices.py:1618 msgid "Redundant" msgstr "Redundant" -#: netbox/dcim/choices.py:1639 +#: dcim/choices.py:1639 msgid "Single phase" msgstr "Einphasig" -#: netbox/dcim/choices.py:1640 +#: dcim/choices.py:1640 msgid "Three-phase" msgstr "Dreiphasig" -#: netbox/dcim/fields.py:45 +#: dcim/fields.py:45 #, python-brace-format msgid "Invalid MAC address format: {value}" msgstr "Ungültiges MAC-Adressformat: {value}" -#: netbox/dcim/fields.py:71 +#: dcim/fields.py:71 #, python-brace-format msgid "Invalid WWN format: {value}" msgstr "Ungültiges WWN-Format: {value}" -#: netbox/dcim/filtersets.py:86 +#: dcim/filtersets.py:86 msgid "Parent region (ID)" msgstr "Übergeordnete Region (ID)" -#: netbox/dcim/filtersets.py:92 +#: dcim/filtersets.py:92 msgid "Parent region (slug)" msgstr "Übergeordnete Region (URL-Slug)" -#: netbox/dcim/filtersets.py:116 +#: dcim/filtersets.py:116 msgid "Parent site group (ID)" msgstr "Übergeordnete Standortgruppe (ID)" -#: netbox/dcim/filtersets.py:122 +#: dcim/filtersets.py:122 msgid "Parent site group (slug)" msgstr "Übergeordnete Standortgruppe (URL-Slug)" -#: netbox/dcim/filtersets.py:164 netbox/extras/filtersets.py:364 -#: netbox/ipam/filtersets.py:841 netbox/ipam/filtersets.py:993 +#: dcim/filtersets.py:164 extras/filtersets.py:364 ipam/filtersets.py:841 +#: ipam/filtersets.py:993 msgid "Group (ID)" msgstr "Gruppe (ID)" -#: netbox/dcim/filtersets.py:170 +#: dcim/filtersets.py:170 msgid "Group (slug)" msgstr "Gruppe (URL-Slug)" -#: netbox/dcim/filtersets.py:176 netbox/dcim/filtersets.py:181 +#: dcim/filtersets.py:176 dcim/filtersets.py:181 msgid "AS (ID)" msgstr "AS (ID)" -#: netbox/dcim/filtersets.py:246 +#: dcim/filtersets.py:246 msgid "Parent location (ID)" msgstr "Übergeordnete Lokation (ID)" -#: netbox/dcim/filtersets.py:252 +#: dcim/filtersets.py:252 msgid "Parent location (slug)" msgstr "Übergeordnete Lokation (URL-Slug)" -#: netbox/dcim/filtersets.py:258 netbox/dcim/filtersets.py:369 -#: netbox/dcim/filtersets.py:490 netbox/dcim/filtersets.py:1057 -#: netbox/dcim/filtersets.py:1404 netbox/dcim/filtersets.py:2182 +#: dcim/filtersets.py:258 dcim/filtersets.py:369 dcim/filtersets.py:490 +#: dcim/filtersets.py:1057 dcim/filtersets.py:1404 dcim/filtersets.py:2182 msgid "Location (ID)" msgstr "Lokation (ID)" -#: netbox/dcim/filtersets.py:265 netbox/dcim/filtersets.py:376 -#: netbox/dcim/filtersets.py:497 netbox/dcim/filtersets.py:1410 -#: netbox/extras/filtersets.py:542 +#: dcim/filtersets.py:265 dcim/filtersets.py:376 dcim/filtersets.py:497 +#: dcim/filtersets.py:1410 extras/filtersets.py:542 msgid "Location (slug)" msgstr "Lokation (URL-Slug)" -#: netbox/dcim/filtersets.py:296 netbox/dcim/filtersets.py:381 -#: netbox/dcim/filtersets.py:539 netbox/dcim/filtersets.py:678 -#: netbox/dcim/filtersets.py:882 netbox/dcim/filtersets.py:933 -#: netbox/dcim/filtersets.py:973 netbox/dcim/filtersets.py:1306 -#: netbox/dcim/filtersets.py:1840 +#: dcim/filtersets.py:296 dcim/filtersets.py:381 dcim/filtersets.py:539 +#: dcim/filtersets.py:678 dcim/filtersets.py:882 dcim/filtersets.py:933 +#: dcim/filtersets.py:973 dcim/filtersets.py:1306 dcim/filtersets.py:1840 msgid "Manufacturer (ID)" msgstr "Hersteller (ID)" -#: netbox/dcim/filtersets.py:302 netbox/dcim/filtersets.py:387 -#: netbox/dcim/filtersets.py:545 netbox/dcim/filtersets.py:684 -#: netbox/dcim/filtersets.py:888 netbox/dcim/filtersets.py:939 -#: netbox/dcim/filtersets.py:979 netbox/dcim/filtersets.py:1312 -#: netbox/dcim/filtersets.py:1846 +#: dcim/filtersets.py:302 dcim/filtersets.py:387 dcim/filtersets.py:545 +#: dcim/filtersets.py:684 dcim/filtersets.py:888 dcim/filtersets.py:939 +#: dcim/filtersets.py:979 dcim/filtersets.py:1312 dcim/filtersets.py:1846 msgid "Manufacturer (slug)" msgstr "Hersteller (Slug)" -#: netbox/dcim/filtersets.py:393 +#: dcim/filtersets.py:393 msgid "Rack type (slug)" msgstr "Regaltyp (slug)" -#: netbox/dcim/filtersets.py:397 +#: dcim/filtersets.py:397 msgid "Rack type (ID)" msgstr "Racktyp (ID)" -#: netbox/dcim/filtersets.py:411 netbox/dcim/filtersets.py:892 -#: netbox/dcim/filtersets.py:994 netbox/dcim/filtersets.py:1850 -#: netbox/ipam/filtersets.py:381 netbox/ipam/filtersets.py:493 -#: netbox/ipam/filtersets.py:1003 netbox/virtualization/filtersets.py:210 +#: dcim/filtersets.py:411 dcim/filtersets.py:892 dcim/filtersets.py:994 +#: dcim/filtersets.py:1850 ipam/filtersets.py:381 ipam/filtersets.py:493 +#: ipam/filtersets.py:1003 virtualization/filtersets.py:210 msgid "Role (ID)" msgstr "Rolle (ID)" -#: netbox/dcim/filtersets.py:417 netbox/dcim/filtersets.py:898 -#: netbox/dcim/filtersets.py:1000 netbox/dcim/filtersets.py:1856 -#: netbox/extras/filtersets.py:558 netbox/ipam/filtersets.py:387 -#: netbox/ipam/filtersets.py:499 netbox/ipam/filtersets.py:1009 -#: netbox/virtualization/filtersets.py:216 +#: dcim/filtersets.py:417 dcim/filtersets.py:898 dcim/filtersets.py:1000 +#: dcim/filtersets.py:1856 extras/filtersets.py:558 ipam/filtersets.py:387 +#: ipam/filtersets.py:499 ipam/filtersets.py:1009 +#: virtualization/filtersets.py:216 msgid "Role (slug)" msgstr "Rolle (URL-Slug)" -#: netbox/dcim/filtersets.py:447 netbox/dcim/filtersets.py:1062 -#: netbox/dcim/filtersets.py:1415 netbox/dcim/filtersets.py:2244 +#: dcim/filtersets.py:447 dcim/filtersets.py:1062 dcim/filtersets.py:1415 +#: dcim/filtersets.py:2244 msgid "Rack (ID)" msgstr "Rack (ID)" -#: netbox/dcim/filtersets.py:507 netbox/extras/filtersets.py:293 -#: netbox/extras/filtersets.py:337 netbox/extras/filtersets.py:359 -#: netbox/extras/filtersets.py:419 netbox/users/filtersets.py:113 -#: netbox/users/filtersets.py:180 +#: dcim/filtersets.py:507 extras/filtersets.py:293 extras/filtersets.py:337 +#: extras/filtersets.py:359 extras/filtersets.py:419 users/filtersets.py:113 +#: users/filtersets.py:180 msgid "User (name)" msgstr "Benutzer (Name)" -#: netbox/dcim/filtersets.py:549 +#: dcim/filtersets.py:549 msgid "Default platform (ID)" msgstr "Standard-Betriebssystem (ID)" -#: netbox/dcim/filtersets.py:555 +#: dcim/filtersets.py:555 msgid "Default platform (slug)" msgstr "Standard-Betriebssystem (URL-Slug)" -#: netbox/dcim/filtersets.py:558 netbox/dcim/forms/filtersets.py:517 +#: dcim/filtersets.py:558 dcim/forms/filtersets.py:517 msgid "Has a front image" msgstr "Hat ein Frontalbild" -#: netbox/dcim/filtersets.py:562 netbox/dcim/forms/filtersets.py:524 +#: dcim/filtersets.py:562 dcim/forms/filtersets.py:524 msgid "Has a rear image" msgstr "Hat ein Rückseitenbild" -#: netbox/dcim/filtersets.py:567 netbox/dcim/filtersets.py:688 -#: netbox/dcim/filtersets.py:1131 netbox/dcim/forms/filtersets.py:531 -#: netbox/dcim/forms/filtersets.py:627 netbox/dcim/forms/filtersets.py:848 +#: dcim/filtersets.py:567 dcim/filtersets.py:688 dcim/filtersets.py:1131 +#: dcim/forms/filtersets.py:531 dcim/forms/filtersets.py:627 +#: dcim/forms/filtersets.py:848 msgid "Has console ports" msgstr "Hat Konsolenanschlüsse" -#: netbox/dcim/filtersets.py:571 netbox/dcim/filtersets.py:692 -#: netbox/dcim/filtersets.py:1135 netbox/dcim/forms/filtersets.py:538 -#: netbox/dcim/forms/filtersets.py:634 netbox/dcim/forms/filtersets.py:855 +#: dcim/filtersets.py:571 dcim/filtersets.py:692 dcim/filtersets.py:1135 +#: dcim/forms/filtersets.py:538 dcim/forms/filtersets.py:634 +#: dcim/forms/filtersets.py:855 msgid "Has console server ports" msgstr "Hat Konsolenserveranschlüsse" -#: netbox/dcim/filtersets.py:575 netbox/dcim/filtersets.py:696 -#: netbox/dcim/filtersets.py:1139 netbox/dcim/forms/filtersets.py:545 -#: netbox/dcim/forms/filtersets.py:641 netbox/dcim/forms/filtersets.py:862 +#: dcim/filtersets.py:575 dcim/filtersets.py:696 dcim/filtersets.py:1139 +#: dcim/forms/filtersets.py:545 dcim/forms/filtersets.py:641 +#: dcim/forms/filtersets.py:862 msgid "Has power ports" msgstr "Hat Stromanschlüsse" -#: netbox/dcim/filtersets.py:579 netbox/dcim/filtersets.py:700 -#: netbox/dcim/filtersets.py:1143 netbox/dcim/forms/filtersets.py:552 -#: netbox/dcim/forms/filtersets.py:648 netbox/dcim/forms/filtersets.py:869 +#: dcim/filtersets.py:579 dcim/filtersets.py:700 dcim/filtersets.py:1143 +#: dcim/forms/filtersets.py:552 dcim/forms/filtersets.py:648 +#: dcim/forms/filtersets.py:869 msgid "Has power outlets" msgstr "Hat Steckdosen" -#: netbox/dcim/filtersets.py:583 netbox/dcim/filtersets.py:704 -#: netbox/dcim/filtersets.py:1147 netbox/dcim/forms/filtersets.py:559 -#: netbox/dcim/forms/filtersets.py:655 netbox/dcim/forms/filtersets.py:876 +#: dcim/filtersets.py:583 dcim/filtersets.py:704 dcim/filtersets.py:1147 +#: dcim/forms/filtersets.py:559 dcim/forms/filtersets.py:655 +#: dcim/forms/filtersets.py:876 msgid "Has interfaces" msgstr "Hat Schnittstellen" -#: netbox/dcim/filtersets.py:587 netbox/dcim/filtersets.py:708 -#: netbox/dcim/filtersets.py:1151 netbox/dcim/forms/filtersets.py:566 -#: netbox/dcim/forms/filtersets.py:662 netbox/dcim/forms/filtersets.py:883 +#: dcim/filtersets.py:587 dcim/filtersets.py:708 dcim/filtersets.py:1151 +#: dcim/forms/filtersets.py:566 dcim/forms/filtersets.py:662 +#: dcim/forms/filtersets.py:883 msgid "Has pass-through ports" msgstr "Hat durchgereichte Anschlüsse" -#: netbox/dcim/filtersets.py:591 netbox/dcim/filtersets.py:1155 -#: netbox/dcim/forms/filtersets.py:580 +#: dcim/filtersets.py:591 dcim/filtersets.py:1155 dcim/forms/filtersets.py:580 msgid "Has module bays" msgstr "Hat Moduleinsätze" -#: netbox/dcim/filtersets.py:595 netbox/dcim/filtersets.py:1159 -#: netbox/dcim/forms/filtersets.py:573 +#: dcim/filtersets.py:595 dcim/filtersets.py:1159 dcim/forms/filtersets.py:573 msgid "Has device bays" msgstr "Hat Geräteeinsätze" -#: netbox/dcim/filtersets.py:599 netbox/dcim/forms/filtersets.py:587 +#: dcim/filtersets.py:599 dcim/forms/filtersets.py:587 msgid "Has inventory items" msgstr "Hat Inventargegenstände" -#: netbox/dcim/filtersets.py:756 netbox/dcim/filtersets.py:989 -#: netbox/dcim/filtersets.py:1436 +#: dcim/filtersets.py:756 dcim/filtersets.py:989 dcim/filtersets.py:1436 msgid "Device type (ID)" msgstr "Gerätetyp (ID)" -#: netbox/dcim/filtersets.py:772 netbox/dcim/filtersets.py:1317 +#: dcim/filtersets.py:772 dcim/filtersets.py:1317 msgid "Module type (ID)" msgstr "Modultyp (ID)" -#: netbox/dcim/filtersets.py:804 netbox/dcim/filtersets.py:1591 +#: dcim/filtersets.py:804 dcim/filtersets.py:1591 msgid "Power port (ID)" msgstr "Stromanschluss (ID)" -#: netbox/dcim/filtersets.py:878 netbox/dcim/filtersets.py:1836 +#: dcim/filtersets.py:878 dcim/filtersets.py:1836 msgid "Parent inventory item (ID)" msgstr "Übergeordneter Inventarartikel (ID)" -#: netbox/dcim/filtersets.py:921 netbox/dcim/filtersets.py:947 -#: netbox/dcim/filtersets.py:1127 netbox/virtualization/filtersets.py:238 +#: dcim/filtersets.py:921 dcim/filtersets.py:947 dcim/filtersets.py:1127 +#: virtualization/filtersets.py:238 msgid "Config template (ID)" msgstr "Konfigurationsvorlage (ID)" -#: netbox/dcim/filtersets.py:985 +#: dcim/filtersets.py:985 msgid "Device type (slug)" msgstr "Gerätetyp (Slug)" -#: netbox/dcim/filtersets.py:1005 +#: dcim/filtersets.py:1005 msgid "Parent Device (ID)" msgstr "Übergeordnetes Gerät (ID)" -#: netbox/dcim/filtersets.py:1009 netbox/virtualization/filtersets.py:220 +#: dcim/filtersets.py:1009 virtualization/filtersets.py:220 msgid "Platform (ID)" msgstr "Betriebssystem (ID)" -#: netbox/dcim/filtersets.py:1015 netbox/extras/filtersets.py:569 -#: netbox/virtualization/filtersets.py:226 +#: dcim/filtersets.py:1015 extras/filtersets.py:569 +#: virtualization/filtersets.py:226 msgid "Platform (slug)" msgstr "Betriebssystem (URL-Slug)" -#: netbox/dcim/filtersets.py:1051 netbox/dcim/filtersets.py:1399 -#: netbox/dcim/filtersets.py:1934 netbox/dcim/filtersets.py:2176 -#: netbox/dcim/filtersets.py:2235 +#: dcim/filtersets.py:1051 dcim/filtersets.py:1399 dcim/filtersets.py:1934 +#: dcim/filtersets.py:2176 dcim/filtersets.py:2235 msgid "Site name (slug)" msgstr "Standortname (URL-Slug)" -#: netbox/dcim/filtersets.py:1067 +#: dcim/filtersets.py:1067 msgid "Parent bay (ID)" msgstr "Übergeordneter Schacht (ID)" -#: netbox/dcim/filtersets.py:1071 +#: dcim/filtersets.py:1071 msgid "VM cluster (ID)" msgstr "VM-Cluster (ID)" -#: netbox/dcim/filtersets.py:1077 netbox/extras/filtersets.py:591 -#: netbox/virtualization/filtersets.py:136 +#: dcim/filtersets.py:1077 extras/filtersets.py:591 +#: virtualization/filtersets.py:136 msgid "Cluster group (slug)" msgstr "Clustergruppe (URL-Slug)" -#: netbox/dcim/filtersets.py:1082 netbox/virtualization/filtersets.py:130 +#: dcim/filtersets.py:1082 virtualization/filtersets.py:130 msgid "Cluster group (ID)" msgstr "Clustergruppe (ID)" -#: netbox/dcim/filtersets.py:1088 +#: dcim/filtersets.py:1088 msgid "Device model (slug)" msgstr "Gerätemodell (URL-Slug)" -#: netbox/dcim/filtersets.py:1099 netbox/dcim/forms/bulk_edit.py:516 +#: dcim/filtersets.py:1099 dcim/forms/bulk_edit.py:516 msgid "Is full depth" msgstr "Hat volle Tiefe" -#: netbox/dcim/filtersets.py:1103 netbox/dcim/forms/common.py:18 -#: netbox/dcim/forms/filtersets.py:818 netbox/dcim/forms/filtersets.py:1385 -#: netbox/dcim/models/device_components.py:518 -#: netbox/virtualization/filtersets.py:230 -#: netbox/virtualization/filtersets.py:301 -#: netbox/virtualization/forms/filtersets.py:172 -#: netbox/virtualization/forms/filtersets.py:223 +#: dcim/filtersets.py:1103 dcim/forms/common.py:18 +#: dcim/forms/filtersets.py:818 dcim/forms/filtersets.py:1385 +#: dcim/models/device_components.py:518 virtualization/filtersets.py:230 +#: virtualization/filtersets.py:301 virtualization/forms/filtersets.py:172 +#: virtualization/forms/filtersets.py:223 msgid "MAC address" msgstr "MAC-Adresse" -#: netbox/dcim/filtersets.py:1110 netbox/dcim/filtersets.py:1274 -#: netbox/dcim/forms/filtersets.py:827 netbox/dcim/forms/filtersets.py:930 -#: netbox/virtualization/filtersets.py:234 -#: netbox/virtualization/forms/filtersets.py:176 +#: dcim/filtersets.py:1110 dcim/filtersets.py:1274 +#: dcim/forms/filtersets.py:827 dcim/forms/filtersets.py:930 +#: virtualization/filtersets.py:234 virtualization/forms/filtersets.py:176 msgid "Has a primary IP" msgstr "Hat eine primäre IP" -#: netbox/dcim/filtersets.py:1114 +#: dcim/filtersets.py:1114 msgid "Has an out-of-band IP" msgstr "Hat eine Out-of-Band-IP" -#: netbox/dcim/filtersets.py:1119 +#: dcim/filtersets.py:1119 msgid "Virtual chassis (ID)" msgstr "Virtuelles Gehäuse (ID)" -#: netbox/dcim/filtersets.py:1123 +#: dcim/filtersets.py:1123 msgid "Is a virtual chassis member" msgstr "Ist ein virtuelles Gehäuse-Mitglied" -#: netbox/dcim/filtersets.py:1164 +#: dcim/filtersets.py:1164 msgid "OOB IP (ID)" msgstr "OOB IP (ID)" -#: netbox/dcim/filtersets.py:1168 +#: dcim/filtersets.py:1168 msgid "Has virtual device context" msgstr "Hat Virtual Device Context" -#: netbox/dcim/filtersets.py:1257 +#: dcim/filtersets.py:1257 msgid "VDC (ID)" msgstr "VDC (ID)" -#: netbox/dcim/filtersets.py:1262 +#: dcim/filtersets.py:1262 msgid "Device model" msgstr "Modell des Geräts" -#: netbox/dcim/filtersets.py:1267 netbox/ipam/filtersets.py:632 -#: netbox/vpn/filtersets.py:102 netbox/vpn/filtersets.py:401 +#: dcim/filtersets.py:1267 ipam/filtersets.py:632 vpn/filtersets.py:102 +#: vpn/filtersets.py:401 msgid "Interface (ID)" msgstr "Schnittstelle (ID)" -#: netbox/dcim/filtersets.py:1323 +#: dcim/filtersets.py:1323 msgid "Module type (model)" msgstr "Modultyp (Modell)" -#: netbox/dcim/filtersets.py:1329 +#: dcim/filtersets.py:1329 msgid "Module bay (ID)" msgstr "Modulschacht (ID)" -#: netbox/dcim/filtersets.py:1333 netbox/dcim/filtersets.py:1425 -#: netbox/ipam/filtersets.py:611 netbox/ipam/filtersets.py:851 -#: netbox/ipam/filtersets.py:1115 netbox/virtualization/filtersets.py:161 -#: netbox/vpn/filtersets.py:379 +#: dcim/filtersets.py:1333 dcim/filtersets.py:1425 ipam/filtersets.py:611 +#: ipam/filtersets.py:851 ipam/filtersets.py:1115 +#: virtualization/filtersets.py:161 vpn/filtersets.py:379 msgid "Device (ID)" msgstr "Gerät (ID)" -#: netbox/dcim/filtersets.py:1421 +#: dcim/filtersets.py:1421 msgid "Rack (name)" msgstr "Rack (Name)" -#: netbox/dcim/filtersets.py:1431 netbox/ipam/filtersets.py:606 -#: netbox/ipam/filtersets.py:846 netbox/ipam/filtersets.py:1121 -#: netbox/vpn/filtersets.py:374 +#: dcim/filtersets.py:1431 ipam/filtersets.py:606 ipam/filtersets.py:846 +#: ipam/filtersets.py:1121 vpn/filtersets.py:374 msgid "Device (name)" msgstr "Gerät (Name)" -#: netbox/dcim/filtersets.py:1442 +#: dcim/filtersets.py:1442 msgid "Device type (model)" msgstr "Gerätetyp (Modell)" -#: netbox/dcim/filtersets.py:1447 +#: dcim/filtersets.py:1447 msgid "Device role (ID)" msgstr "Geräterolle (ID)" -#: netbox/dcim/filtersets.py:1453 +#: dcim/filtersets.py:1453 msgid "Device role (slug)" msgstr "Geräterolle (URL-Slug)" -#: netbox/dcim/filtersets.py:1458 +#: dcim/filtersets.py:1458 msgid "Virtual Chassis (ID)" msgstr "Virtuelles Gehäuse (ID)" -#: netbox/dcim/filtersets.py:1464 netbox/dcim/forms/filtersets.py:109 -#: netbox/dcim/tables/devices.py:206 netbox/netbox/navigation/menu.py:79 -#: netbox/templates/dcim/device.html:120 -#: netbox/templates/dcim/device_edit.html:93 -#: netbox/templates/dcim/virtualchassis.html:20 -#: netbox/templates/dcim/virtualchassis_add.html:8 -#: netbox/templates/dcim/virtualchassis_edit.html:24 +#: dcim/filtersets.py:1464 dcim/forms/filtersets.py:109 +#: dcim/tables/devices.py:206 netbox/navigation/menu.py:79 +#: templates/dcim/device.html:120 templates/dcim/device_edit.html:93 +#: templates/dcim/virtualchassis.html:20 +#: templates/dcim/virtualchassis_add.html:8 +#: templates/dcim/virtualchassis_edit.html:24 msgid "Virtual Chassis" msgstr "Virtuelles Gehäuse" -#: netbox/dcim/filtersets.py:1488 +#: dcim/filtersets.py:1488 msgid "Module (ID)" msgstr "Modul (ID)" -#: netbox/dcim/filtersets.py:1495 +#: dcim/filtersets.py:1495 msgid "Cable (ID)" msgstr "Kabel (ID)" -#: netbox/dcim/filtersets.py:1604 netbox/ipam/forms/bulk_import.py:189 -#: netbox/vpn/forms/bulk_import.py:308 +#: dcim/filtersets.py:1604 ipam/forms/bulk_import.py:189 +#: vpn/forms/bulk_import.py:308 msgid "Assigned VLAN" msgstr "Zugewiesenes VLAN" -#: netbox/dcim/filtersets.py:1608 +#: dcim/filtersets.py:1608 msgid "Assigned VID" msgstr "Zugewiesene VID" -#: netbox/dcim/filtersets.py:1613 netbox/dcim/forms/bulk_edit.py:1489 -#: netbox/dcim/forms/bulk_import.py:891 netbox/dcim/forms/filtersets.py:1428 -#: netbox/dcim/forms/model_forms.py:1378 -#: netbox/dcim/models/device_components.py:711 -#: netbox/dcim/tables/devices.py:626 netbox/ipam/filtersets.py:316 -#: netbox/ipam/filtersets.py:327 netbox/ipam/filtersets.py:483 -#: netbox/ipam/filtersets.py:584 netbox/ipam/filtersets.py:595 -#: netbox/ipam/forms/bulk_edit.py:241 netbox/ipam/forms/bulk_edit.py:297 -#: netbox/ipam/forms/bulk_edit.py:339 netbox/ipam/forms/bulk_import.py:157 -#: netbox/ipam/forms/bulk_import.py:243 netbox/ipam/forms/bulk_import.py:279 -#: netbox/ipam/forms/filtersets.py:67 netbox/ipam/forms/filtersets.py:172 -#: netbox/ipam/forms/filtersets.py:309 netbox/ipam/forms/model_forms.py:62 -#: netbox/ipam/forms/model_forms.py:202 netbox/ipam/forms/model_forms.py:247 -#: netbox/ipam/forms/model_forms.py:300 netbox/ipam/forms/model_forms.py:431 -#: netbox/ipam/forms/model_forms.py:445 netbox/ipam/forms/model_forms.py:459 -#: netbox/ipam/models/ip.py:233 netbox/ipam/models/ip.py:512 -#: netbox/ipam/models/ip.py:720 netbox/ipam/models/vrfs.py:62 -#: netbox/ipam/tables/ip.py:242 netbox/ipam/tables/ip.py:309 -#: netbox/ipam/tables/ip.py:360 netbox/ipam/tables/ip.py:450 -#: netbox/templates/dcim/interface.html:133 -#: netbox/templates/ipam/ipaddress.html:18 -#: netbox/templates/ipam/iprange.html:40 netbox/templates/ipam/prefix.html:19 -#: netbox/templates/ipam/vrf.html:7 netbox/templates/ipam/vrf.html:13 -#: netbox/templates/virtualization/vminterface.html:47 -#: netbox/virtualization/forms/bulk_edit.py:261 -#: netbox/virtualization/forms/bulk_import.py:171 -#: netbox/virtualization/forms/filtersets.py:228 -#: netbox/virtualization/forms/model_forms.py:344 -#: netbox/virtualization/models/virtualmachines.py:355 -#: netbox/virtualization/tables/virtualmachines.py:143 +#: dcim/filtersets.py:1613 dcim/forms/bulk_edit.py:1489 +#: dcim/forms/bulk_import.py:891 dcim/forms/filtersets.py:1428 +#: dcim/forms/model_forms.py:1378 dcim/models/device_components.py:711 +#: dcim/tables/devices.py:626 ipam/filtersets.py:316 ipam/filtersets.py:327 +#: ipam/filtersets.py:483 ipam/filtersets.py:584 ipam/filtersets.py:595 +#: ipam/forms/bulk_edit.py:242 ipam/forms/bulk_edit.py:298 +#: ipam/forms/bulk_edit.py:340 ipam/forms/bulk_import.py:157 +#: ipam/forms/bulk_import.py:243 ipam/forms/bulk_import.py:279 +#: ipam/forms/filtersets.py:67 ipam/forms/filtersets.py:172 +#: ipam/forms/filtersets.py:309 ipam/forms/model_forms.py:62 +#: ipam/forms/model_forms.py:202 ipam/forms/model_forms.py:247 +#: ipam/forms/model_forms.py:300 ipam/forms/model_forms.py:431 +#: ipam/forms/model_forms.py:445 ipam/forms/model_forms.py:459 +#: ipam/models/ip.py:233 ipam/models/ip.py:512 ipam/models/ip.py:720 +#: ipam/models/vrfs.py:62 ipam/tables/ip.py:242 ipam/tables/ip.py:309 +#: ipam/tables/ip.py:360 ipam/tables/ip.py:450 +#: templates/dcim/interface.html:133 templates/ipam/ipaddress.html:18 +#: templates/ipam/iprange.html:40 templates/ipam/prefix.html:19 +#: templates/ipam/vrf.html:7 templates/ipam/vrf.html:13 +#: templates/virtualization/vminterface.html:47 +#: virtualization/forms/bulk_edit.py:261 +#: virtualization/forms/bulk_import.py:171 +#: virtualization/forms/filtersets.py:228 +#: virtualization/forms/model_forms.py:344 +#: virtualization/models/virtualmachines.py:355 +#: virtualization/tables/virtualmachines.py:143 msgid "VRF" msgstr "VRF" -#: netbox/dcim/filtersets.py:1619 netbox/ipam/filtersets.py:322 -#: netbox/ipam/filtersets.py:333 netbox/ipam/filtersets.py:489 -#: netbox/ipam/filtersets.py:590 netbox/ipam/filtersets.py:601 +#: dcim/filtersets.py:1619 ipam/filtersets.py:322 ipam/filtersets.py:333 +#: ipam/filtersets.py:489 ipam/filtersets.py:590 ipam/filtersets.py:601 msgid "VRF (RD)" msgstr "VRF (RD)" -#: netbox/dcim/filtersets.py:1624 netbox/ipam/filtersets.py:1030 -#: netbox/vpn/filtersets.py:342 +#: dcim/filtersets.py:1624 ipam/filtersets.py:1030 vpn/filtersets.py:342 msgid "L2VPN (ID)" msgstr "L2VPN (ID)" -#: netbox/dcim/filtersets.py:1630 netbox/dcim/forms/filtersets.py:1433 -#: netbox/dcim/tables/devices.py:570 netbox/ipam/filtersets.py:1036 -#: netbox/ipam/forms/filtersets.py:518 netbox/ipam/tables/vlans.py:137 -#: netbox/templates/dcim/interface.html:93 netbox/templates/ipam/vlan.html:66 -#: netbox/templates/vpn/l2vpntermination.html:12 -#: netbox/virtualization/forms/filtersets.py:233 -#: netbox/vpn/forms/bulk_import.py:280 netbox/vpn/forms/filtersets.py:246 -#: netbox/vpn/forms/model_forms.py:409 netbox/vpn/forms/model_forms.py:427 -#: netbox/vpn/models/l2vpn.py:63 netbox/vpn/tables/l2vpn.py:55 +#: dcim/filtersets.py:1630 dcim/forms/filtersets.py:1433 +#: dcim/tables/devices.py:570 ipam/filtersets.py:1036 +#: ipam/forms/filtersets.py:518 ipam/tables/vlans.py:137 +#: templates/dcim/interface.html:93 templates/ipam/vlan.html:66 +#: templates/vpn/l2vpntermination.html:12 +#: virtualization/forms/filtersets.py:233 vpn/forms/bulk_import.py:280 +#: vpn/forms/filtersets.py:246 vpn/forms/model_forms.py:409 +#: vpn/forms/model_forms.py:427 vpn/models/l2vpn.py:63 vpn/tables/l2vpn.py:55 msgid "L2VPN" msgstr "L2VPN" -#: netbox/dcim/filtersets.py:1662 +#: dcim/filtersets.py:1662 msgid "Virtual Chassis Interfaces for Device" msgstr "Virtuelle Gehäuseschnittstellen für Gerät" -#: netbox/dcim/filtersets.py:1667 +#: dcim/filtersets.py:1667 msgid "Virtual Chassis Interfaces for Device (ID)" msgstr "Virtuelle Gehäuseschnittstellen für Gerät (ID)" -#: netbox/dcim/filtersets.py:1671 +#: dcim/filtersets.py:1671 msgid "Kind of interface" msgstr "Art der Schnittstelle" -#: netbox/dcim/filtersets.py:1676 netbox/virtualization/filtersets.py:293 +#: dcim/filtersets.py:1676 virtualization/filtersets.py:293 msgid "Parent interface (ID)" msgstr "Übergeordnete Schnittstelle (ID)" -#: netbox/dcim/filtersets.py:1681 netbox/virtualization/filtersets.py:298 +#: dcim/filtersets.py:1681 virtualization/filtersets.py:298 msgid "Bridged interface (ID)" msgstr "Überbrückte Schnittstelle (ID)" -#: netbox/dcim/filtersets.py:1686 +#: dcim/filtersets.py:1686 msgid "LAG interface (ID)" msgstr "LAG-Schnittstelle (ID)" -#: netbox/dcim/filtersets.py:1713 netbox/dcim/filtersets.py:1725 -#: netbox/dcim/forms/filtersets.py:1345 netbox/dcim/forms/model_forms.py:1690 -#: netbox/templates/dcim/virtualdevicecontext.html:15 +#: dcim/filtersets.py:1713 dcim/filtersets.py:1725 +#: dcim/forms/filtersets.py:1345 dcim/forms/model_forms.py:1690 +#: templates/dcim/virtualdevicecontext.html:15 msgid "Virtual Device Context" msgstr "Virtual Device Context" -#: netbox/dcim/filtersets.py:1719 +#: dcim/filtersets.py:1719 msgid "Virtual Device Context (Identifier)" msgstr "Virtual Device Context (Identifier)" -#: netbox/dcim/filtersets.py:1730 -#: netbox/templates/wireless/wirelesslan.html:11 -#: netbox/wireless/forms/model_forms.py:53 +#: dcim/filtersets.py:1730 templates/wireless/wirelesslan.html:11 +#: wireless/forms/model_forms.py:53 msgid "Wireless LAN" msgstr "WLAN" -#: netbox/dcim/filtersets.py:1734 netbox/dcim/tables/devices.py:613 +#: dcim/filtersets.py:1734 dcim/tables/devices.py:613 msgid "Wireless link" msgstr "WLAN Verbindung" -#: netbox/dcim/filtersets.py:1803 +#: dcim/filtersets.py:1803 msgid "Parent module bay (ID)" msgstr "Hauptmodulschacht (ID)" -#: netbox/dcim/filtersets.py:1808 +#: dcim/filtersets.py:1808 msgid "Installed module (ID)" msgstr "Installiertes Modul (ID)" -#: netbox/dcim/filtersets.py:1819 +#: dcim/filtersets.py:1819 msgid "Installed device (ID)" msgstr "Installiertes Gerät (ID)" -#: netbox/dcim/filtersets.py:1825 +#: dcim/filtersets.py:1825 msgid "Installed device (name)" msgstr "Installiertes Gerät (Name)" -#: netbox/dcim/filtersets.py:1891 +#: dcim/filtersets.py:1891 msgid "Master (ID)" msgstr "Master (ID)" -#: netbox/dcim/filtersets.py:1897 +#: dcim/filtersets.py:1897 msgid "Master (name)" msgstr "Master (Name)" -#: netbox/dcim/filtersets.py:1939 netbox/tenancy/filtersets.py:245 +#: dcim/filtersets.py:1939 tenancy/filtersets.py:245 msgid "Tenant (ID)" msgstr "Mandant (ID)" -#: netbox/dcim/filtersets.py:1945 netbox/extras/filtersets.py:618 -#: netbox/tenancy/filtersets.py:251 +#: dcim/filtersets.py:1945 extras/filtersets.py:618 tenancy/filtersets.py:251 msgid "Tenant (slug)" msgstr "Mandant (URL-Slug)" -#: netbox/dcim/filtersets.py:1981 netbox/dcim/forms/filtersets.py:1077 +#: dcim/filtersets.py:1981 dcim/forms/filtersets.py:1077 msgid "Unterminated" msgstr "Nicht terminiert" -#: netbox/dcim/filtersets.py:2239 +#: dcim/filtersets.py:2239 msgid "Power panel (ID)" msgstr "Stromverteiler (ID)" -#: netbox/dcim/forms/bulk_create.py:40 netbox/extras/forms/filtersets.py:401 -#: netbox/extras/forms/model_forms.py:567 -#: netbox/extras/forms/model_forms.py:619 netbox/netbox/forms/base.py:86 -#: netbox/netbox/forms/mixins.py:81 netbox/netbox/tables/columns.py:478 -#: netbox/templates/circuits/inc/circuit_termination.html:32 -#: netbox/templates/generic/bulk_edit.html:65 -#: netbox/templates/inc/panels/tags.html:5 -#: netbox/utilities/forms/fields/fields.py:81 +#: dcim/forms/bulk_create.py:40 extras/forms/filtersets.py:401 +#: extras/forms/model_forms.py:567 extras/forms/model_forms.py:619 +#: netbox/forms/base.py:86 netbox/forms/mixins.py:81 +#: netbox/tables/columns.py:478 +#: templates/circuits/inc/circuit_termination.html:32 +#: templates/generic/bulk_edit.html:65 templates/inc/panels/tags.html:5 +#: utilities/forms/fields/fields.py:81 msgid "Tags" msgstr "Tags" -#: netbox/dcim/forms/bulk_create.py:112 netbox/dcim/forms/filtersets.py:1498 -#: netbox/dcim/forms/model_forms.py:488 netbox/dcim/forms/model_forms.py:546 -#: netbox/dcim/forms/object_create.py:197 -#: netbox/dcim/forms/object_create.py:353 netbox/dcim/tables/devices.py:165 -#: netbox/dcim/tables/devices.py:707 netbox/dcim/tables/devicetypes.py:246 -#: netbox/templates/dcim/device.html:43 netbox/templates/dcim/device.html:131 -#: netbox/templates/dcim/modulebay.html:38 -#: netbox/templates/dcim/virtualchassis.html:66 -#: netbox/templates/dcim/virtualchassis_edit.html:55 +#: dcim/forms/bulk_create.py:112 dcim/forms/filtersets.py:1498 +#: dcim/forms/model_forms.py:488 dcim/forms/model_forms.py:546 +#: dcim/forms/object_create.py:197 dcim/forms/object_create.py:353 +#: dcim/tables/devices.py:165 dcim/tables/devices.py:707 +#: dcim/tables/devicetypes.py:246 templates/dcim/device.html:43 +#: templates/dcim/device.html:131 templates/dcim/modulebay.html:38 +#: templates/dcim/virtualchassis.html:66 +#: templates/dcim/virtualchassis_edit.html:55 msgid "Position" msgstr "Position" -#: netbox/dcim/forms/bulk_create.py:114 +#: dcim/forms/bulk_create.py:114 msgid "" "Alphanumeric ranges are supported. (Must match the number of names being " "created.)" @@ -3462,889 +3131,827 @@ msgstr "" "Alphanumerische Bereiche werden unterstützt. (Muss der Anzahl der Namen " "entsprechen, die erstellt werden.)" -#: netbox/dcim/forms/bulk_edit.py:132 +#: dcim/forms/bulk_edit.py:132 msgid "Contact name" msgstr "Name des Kontakts" -#: netbox/dcim/forms/bulk_edit.py:137 +#: dcim/forms/bulk_edit.py:137 msgid "Contact phone" msgstr "Telefon des Kontakts" -#: netbox/dcim/forms/bulk_edit.py:143 +#: dcim/forms/bulk_edit.py:143 msgid "Contact E-mail" msgstr "E-Mail des Kontakts" -#: netbox/dcim/forms/bulk_edit.py:146 netbox/dcim/forms/bulk_import.py:123 -#: netbox/dcim/forms/model_forms.py:128 +#: dcim/forms/bulk_edit.py:146 dcim/forms/bulk_import.py:123 +#: dcim/forms/model_forms.py:128 msgid "Time zone" msgstr "Zeitzone" -#: netbox/dcim/forms/bulk_edit.py:224 netbox/dcim/forms/bulk_edit.py:495 -#: netbox/dcim/forms/bulk_edit.py:559 netbox/dcim/forms/bulk_edit.py:632 -#: netbox/dcim/forms/bulk_edit.py:656 netbox/dcim/forms/bulk_edit.py:740 -#: netbox/dcim/forms/bulk_edit.py:1267 netbox/dcim/forms/bulk_edit.py:1660 -#: netbox/dcim/forms/bulk_import.py:182 netbox/dcim/forms/bulk_import.py:371 -#: netbox/dcim/forms/bulk_import.py:405 netbox/dcim/forms/bulk_import.py:450 -#: netbox/dcim/forms/bulk_import.py:486 netbox/dcim/forms/bulk_import.py:1082 -#: netbox/dcim/forms/filtersets.py:313 netbox/dcim/forms/filtersets.py:372 -#: netbox/dcim/forms/filtersets.py:494 netbox/dcim/forms/filtersets.py:619 -#: netbox/dcim/forms/filtersets.py:700 netbox/dcim/forms/filtersets.py:782 -#: netbox/dcim/forms/filtersets.py:947 netbox/dcim/forms/filtersets.py:1539 -#: netbox/dcim/forms/model_forms.py:207 netbox/dcim/forms/model_forms.py:337 -#: netbox/dcim/forms/model_forms.py:349 netbox/dcim/forms/model_forms.py:395 -#: netbox/dcim/forms/model_forms.py:436 netbox/dcim/forms/model_forms.py:1075 -#: netbox/dcim/forms/model_forms.py:1515 -#: netbox/dcim/forms/object_import.py:187 netbox/dcim/tables/devices.py:96 -#: netbox/dcim/tables/devices.py:172 netbox/dcim/tables/devices.py:940 -#: netbox/dcim/tables/devicetypes.py:80 netbox/dcim/tables/devicetypes.py:308 -#: netbox/dcim/tables/modules.py:20 netbox/dcim/tables/modules.py:60 -#: netbox/dcim/tables/racks.py:58 netbox/dcim/tables/racks.py:132 -#: netbox/templates/dcim/devicetype.html:14 -#: netbox/templates/dcim/inventoryitem.html:44 -#: netbox/templates/dcim/manufacturer.html:33 -#: netbox/templates/dcim/modulebay.html:62 -#: netbox/templates/dcim/moduletype.html:14 -#: netbox/templates/dcim/platform.html:37 -#: netbox/templates/dcim/racktype.html:16 +#: dcim/forms/bulk_edit.py:224 dcim/forms/bulk_edit.py:495 +#: dcim/forms/bulk_edit.py:559 dcim/forms/bulk_edit.py:632 +#: dcim/forms/bulk_edit.py:656 dcim/forms/bulk_edit.py:740 +#: dcim/forms/bulk_edit.py:1267 dcim/forms/bulk_edit.py:1660 +#: dcim/forms/bulk_import.py:182 dcim/forms/bulk_import.py:371 +#: dcim/forms/bulk_import.py:405 dcim/forms/bulk_import.py:450 +#: dcim/forms/bulk_import.py:486 dcim/forms/bulk_import.py:1082 +#: dcim/forms/filtersets.py:313 dcim/forms/filtersets.py:372 +#: dcim/forms/filtersets.py:494 dcim/forms/filtersets.py:619 +#: dcim/forms/filtersets.py:700 dcim/forms/filtersets.py:782 +#: dcim/forms/filtersets.py:947 dcim/forms/filtersets.py:1539 +#: dcim/forms/model_forms.py:207 dcim/forms/model_forms.py:337 +#: dcim/forms/model_forms.py:349 dcim/forms/model_forms.py:395 +#: dcim/forms/model_forms.py:436 dcim/forms/model_forms.py:1075 +#: dcim/forms/model_forms.py:1515 dcim/forms/object_import.py:187 +#: dcim/tables/devices.py:96 dcim/tables/devices.py:172 +#: dcim/tables/devices.py:940 dcim/tables/devicetypes.py:80 +#: dcim/tables/devicetypes.py:308 dcim/tables/modules.py:20 +#: dcim/tables/modules.py:60 dcim/tables/racks.py:58 dcim/tables/racks.py:132 +#: templates/dcim/devicetype.html:14 templates/dcim/inventoryitem.html:44 +#: templates/dcim/manufacturer.html:33 templates/dcim/modulebay.html:62 +#: templates/dcim/moduletype.html:25 templates/dcim/platform.html:37 +#: templates/dcim/racktype.html:16 msgid "Manufacturer" msgstr "Hersteller" -#: netbox/dcim/forms/bulk_edit.py:229 netbox/dcim/forms/bulk_edit.py:372 -#: netbox/dcim/forms/bulk_import.py:191 netbox/dcim/forms/bulk_import.py:263 -#: netbox/dcim/forms/filtersets.py:255 -#: netbox/templates/dcim/inc/panels/racktype_dimensions.html:6 +#: dcim/forms/bulk_edit.py:229 dcim/forms/bulk_edit.py:372 +#: dcim/forms/bulk_import.py:191 dcim/forms/bulk_import.py:263 +#: dcim/forms/filtersets.py:255 +#: templates/dcim/inc/panels/racktype_dimensions.html:6 msgid "Form factor" msgstr "Formfaktor" -#: netbox/dcim/forms/bulk_edit.py:234 netbox/dcim/forms/bulk_edit.py:377 -#: netbox/dcim/forms/bulk_import.py:199 netbox/dcim/forms/bulk_import.py:266 -#: netbox/dcim/forms/filtersets.py:260 -#: netbox/templates/dcim/inc/panels/racktype_dimensions.html:10 +#: dcim/forms/bulk_edit.py:234 dcim/forms/bulk_edit.py:377 +#: dcim/forms/bulk_import.py:199 dcim/forms/bulk_import.py:266 +#: dcim/forms/filtersets.py:260 +#: templates/dcim/inc/panels/racktype_dimensions.html:10 msgid "Width" msgstr "Breite" -#: netbox/dcim/forms/bulk_edit.py:240 netbox/dcim/forms/bulk_edit.py:383 -#: netbox/templates/dcim/devicetype.html:37 +#: dcim/forms/bulk_edit.py:240 dcim/forms/bulk_edit.py:383 +#: templates/dcim/devicetype.html:37 msgid "Height (U)" msgstr "Höhe (HE)" -#: netbox/dcim/forms/bulk_edit.py:249 netbox/dcim/forms/bulk_edit.py:388 -#: netbox/dcim/forms/filtersets.py:274 +#: dcim/forms/bulk_edit.py:249 dcim/forms/bulk_edit.py:388 +#: dcim/forms/filtersets.py:274 msgid "Descending units" msgstr "Absteigende Höheneinheiten (HE)" -#: netbox/dcim/forms/bulk_edit.py:252 netbox/dcim/forms/bulk_edit.py:391 +#: dcim/forms/bulk_edit.py:252 dcim/forms/bulk_edit.py:391 msgid "Outer width" msgstr "Äußere Breite" -#: netbox/dcim/forms/bulk_edit.py:257 netbox/dcim/forms/bulk_edit.py:396 +#: dcim/forms/bulk_edit.py:257 dcim/forms/bulk_edit.py:396 msgid "Outer depth" msgstr "Äußere Tiefe" -#: netbox/dcim/forms/bulk_edit.py:262 netbox/dcim/forms/bulk_edit.py:401 -#: netbox/dcim/forms/bulk_import.py:204 netbox/dcim/forms/bulk_import.py:271 +#: dcim/forms/bulk_edit.py:262 dcim/forms/bulk_edit.py:401 +#: dcim/forms/bulk_import.py:204 dcim/forms/bulk_import.py:271 msgid "Outer unit" msgstr "Äußere Einheit" -#: netbox/dcim/forms/bulk_edit.py:267 netbox/dcim/forms/bulk_edit.py:406 +#: dcim/forms/bulk_edit.py:267 dcim/forms/bulk_edit.py:406 msgid "Mounting depth" msgstr "Einbautiefe" -#: netbox/dcim/forms/bulk_edit.py:272 netbox/dcim/forms/bulk_edit.py:299 -#: netbox/dcim/forms/bulk_edit.py:416 netbox/dcim/forms/bulk_edit.py:446 -#: netbox/dcim/forms/bulk_edit.py:529 netbox/dcim/forms/bulk_edit.py:552 -#: netbox/dcim/forms/bulk_edit.py:573 netbox/dcim/forms/bulk_edit.py:595 -#: netbox/dcim/forms/bulk_import.py:384 netbox/dcim/forms/bulk_import.py:416 -#: netbox/dcim/forms/filtersets.py:285 netbox/dcim/forms/filtersets.py:307 -#: netbox/dcim/forms/filtersets.py:327 netbox/dcim/forms/filtersets.py:401 -#: netbox/dcim/forms/filtersets.py:488 netbox/dcim/forms/filtersets.py:594 -#: netbox/dcim/forms/filtersets.py:613 netbox/dcim/forms/filtersets.py:674 -#: netbox/dcim/forms/model_forms.py:221 netbox/dcim/forms/model_forms.py:298 -#: netbox/dcim/tables/devicetypes.py:106 netbox/dcim/tables/modules.py:35 -#: netbox/dcim/tables/racks.py:74 netbox/dcim/tables/racks.py:172 -#: netbox/extras/forms/bulk_edit.py:53 netbox/extras/forms/bulk_edit.py:133 -#: netbox/extras/forms/bulk_edit.py:183 netbox/extras/forms/bulk_edit.py:288 -#: netbox/extras/forms/filtersets.py:64 netbox/extras/forms/filtersets.py:156 -#: netbox/extras/forms/filtersets.py:243 netbox/ipam/forms/bulk_edit.py:189 -#: netbox/templates/dcim/device.html:324 -#: netbox/templates/dcim/devicetype.html:49 -#: netbox/templates/dcim/moduletype.html:34 netbox/templates/dcim/rack.html:81 -#: netbox/templates/dcim/racktype.html:41 -#: netbox/templates/extras/configcontext.html:17 -#: netbox/templates/extras/customlink.html:25 -#: netbox/templates/extras/savedfilter.html:33 -#: netbox/templates/ipam/role.html:30 +#: dcim/forms/bulk_edit.py:272 dcim/forms/bulk_edit.py:299 +#: dcim/forms/bulk_edit.py:416 dcim/forms/bulk_edit.py:446 +#: dcim/forms/bulk_edit.py:529 dcim/forms/bulk_edit.py:552 +#: dcim/forms/bulk_edit.py:573 dcim/forms/bulk_edit.py:595 +#: dcim/forms/bulk_import.py:384 dcim/forms/bulk_import.py:416 +#: dcim/forms/filtersets.py:285 dcim/forms/filtersets.py:307 +#: dcim/forms/filtersets.py:327 dcim/forms/filtersets.py:401 +#: dcim/forms/filtersets.py:488 dcim/forms/filtersets.py:594 +#: dcim/forms/filtersets.py:613 dcim/forms/filtersets.py:674 +#: dcim/forms/model_forms.py:221 dcim/forms/model_forms.py:298 +#: dcim/tables/devicetypes.py:106 dcim/tables/modules.py:35 +#: dcim/tables/racks.py:74 dcim/tables/racks.py:172 +#: extras/forms/bulk_edit.py:53 extras/forms/bulk_edit.py:133 +#: extras/forms/bulk_edit.py:183 extras/forms/bulk_edit.py:288 +#: extras/forms/filtersets.py:64 extras/forms/filtersets.py:156 +#: extras/forms/filtersets.py:243 ipam/forms/bulk_edit.py:190 +#: templates/dcim/device.html:324 templates/dcim/devicetype.html:49 +#: templates/dcim/moduletype.html:45 templates/dcim/rack.html:81 +#: templates/dcim/racktype.html:41 templates/extras/configcontext.html:17 +#: templates/extras/customlink.html:25 templates/extras/savedfilter.html:33 +#: templates/ipam/role.html:30 msgid "Weight" msgstr "Gewicht" -#: netbox/dcim/forms/bulk_edit.py:277 netbox/dcim/forms/bulk_edit.py:421 -#: netbox/dcim/forms/filtersets.py:290 +#: dcim/forms/bulk_edit.py:277 dcim/forms/bulk_edit.py:421 +#: dcim/forms/filtersets.py:290 msgid "Max weight" msgstr "Maximales Gewicht" -#: netbox/dcim/forms/bulk_edit.py:282 netbox/dcim/forms/bulk_edit.py:426 -#: netbox/dcim/forms/bulk_edit.py:534 netbox/dcim/forms/bulk_edit.py:578 -#: netbox/dcim/forms/bulk_import.py:210 netbox/dcim/forms/bulk_import.py:283 -#: netbox/dcim/forms/bulk_import.py:389 netbox/dcim/forms/bulk_import.py:421 -#: netbox/dcim/forms/filtersets.py:295 netbox/dcim/forms/filtersets.py:598 -#: netbox/dcim/forms/filtersets.py:678 +#: dcim/forms/bulk_edit.py:282 dcim/forms/bulk_edit.py:426 +#: dcim/forms/bulk_edit.py:534 dcim/forms/bulk_edit.py:578 +#: dcim/forms/bulk_import.py:210 dcim/forms/bulk_import.py:283 +#: dcim/forms/bulk_import.py:389 dcim/forms/bulk_import.py:421 +#: dcim/forms/filtersets.py:295 dcim/forms/filtersets.py:598 +#: dcim/forms/filtersets.py:678 msgid "Weight unit" msgstr "Gewichtseinheit" -#: netbox/dcim/forms/bulk_edit.py:296 netbox/dcim/forms/filtersets.py:305 -#: netbox/dcim/forms/model_forms.py:217 netbox/dcim/forms/model_forms.py:256 -#: netbox/templates/dcim/rack.html:45 netbox/templates/dcim/racktype.html:13 +#: dcim/forms/bulk_edit.py:296 dcim/forms/filtersets.py:305 +#: dcim/forms/model_forms.py:217 dcim/forms/model_forms.py:256 +#: templates/dcim/rack.html:45 templates/dcim/racktype.html:13 msgid "Rack Type" msgstr "Rack-Typ" -#: netbox/dcim/forms/bulk_edit.py:298 netbox/dcim/forms/model_forms.py:220 -#: netbox/dcim/forms/model_forms.py:297 +#: dcim/forms/bulk_edit.py:298 dcim/forms/model_forms.py:220 +#: dcim/forms/model_forms.py:297 msgid "Outer Dimensions" msgstr "Äußere Abmessungen" -#: netbox/dcim/forms/bulk_edit.py:301 netbox/dcim/forms/model_forms.py:222 -#: netbox/dcim/forms/model_forms.py:299 netbox/templates/dcim/device.html:315 -#: netbox/templates/dcim/inc/panels/racktype_dimensions.html:3 +#: dcim/forms/bulk_edit.py:301 dcim/forms/model_forms.py:222 +#: dcim/forms/model_forms.py:299 templates/dcim/device.html:315 +#: templates/dcim/inc/panels/racktype_dimensions.html:3 msgid "Dimensions" msgstr "Abmessungen" -#: netbox/dcim/forms/bulk_edit.py:303 netbox/dcim/forms/filtersets.py:306 -#: netbox/dcim/forms/filtersets.py:326 netbox/dcim/forms/model_forms.py:224 -#: netbox/templates/dcim/inc/panels/racktype_numbering.html:3 +#: dcim/forms/bulk_edit.py:303 dcim/forms/filtersets.py:306 +#: dcim/forms/filtersets.py:326 dcim/forms/model_forms.py:224 +#: templates/dcim/inc/panels/racktype_numbering.html:3 msgid "Numbering" msgstr "Nummerierung" -#: netbox/dcim/forms/bulk_edit.py:357 netbox/dcim/forms/bulk_edit.py:1262 -#: netbox/dcim/forms/bulk_edit.py:1655 netbox/dcim/forms/bulk_import.py:253 -#: netbox/dcim/forms/bulk_import.py:1076 netbox/dcim/forms/filtersets.py:367 -#: netbox/dcim/forms/filtersets.py:777 netbox/dcim/forms/filtersets.py:1534 -#: netbox/dcim/forms/model_forms.py:251 netbox/dcim/forms/model_forms.py:1070 -#: netbox/dcim/forms/model_forms.py:1510 -#: netbox/dcim/forms/object_import.py:181 netbox/dcim/tables/devices.py:169 -#: netbox/dcim/tables/devices.py:809 netbox/dcim/tables/devices.py:937 -#: netbox/dcim/tables/devicetypes.py:304 netbox/dcim/tables/racks.py:129 -#: netbox/extras/filtersets.py:552 netbox/ipam/forms/bulk_edit.py:260 -#: netbox/ipam/forms/bulk_edit.py:310 netbox/ipam/forms/bulk_edit.py:358 -#: netbox/ipam/forms/bulk_edit.py:556 netbox/ipam/forms/bulk_import.py:197 -#: netbox/ipam/forms/bulk_import.py:262 netbox/ipam/forms/bulk_import.py:298 -#: netbox/ipam/forms/bulk_import.py:455 netbox/ipam/forms/filtersets.py:237 -#: netbox/ipam/forms/filtersets.py:289 netbox/ipam/forms/filtersets.py:360 -#: netbox/ipam/forms/filtersets.py:509 netbox/ipam/forms/model_forms.py:188 -#: netbox/ipam/forms/model_forms.py:221 netbox/ipam/forms/model_forms.py:250 -#: netbox/ipam/forms/model_forms.py:643 netbox/ipam/tables/ip.py:258 -#: netbox/ipam/tables/ip.py:316 netbox/ipam/tables/ip.py:367 -#: netbox/ipam/tables/vlans.py:130 netbox/ipam/tables/vlans.py:235 -#: netbox/templates/dcim/device.html:182 -#: netbox/templates/dcim/inc/panels/inventory_items.html:20 -#: netbox/templates/dcim/interface.html:223 -#: netbox/templates/dcim/inventoryitem.html:36 -#: netbox/templates/dcim/rack.html:49 netbox/templates/ipam/ipaddress.html:41 -#: netbox/templates/ipam/iprange.html:50 netbox/templates/ipam/prefix.html:77 -#: netbox/templates/ipam/role.html:19 netbox/templates/ipam/vlan.html:52 -#: netbox/templates/virtualization/virtualmachine.html:23 -#: netbox/templates/vpn/tunneltermination.html:17 -#: netbox/templates/wireless/inc/wirelesslink_interface.html:20 -#: netbox/tenancy/forms/bulk_edit.py:142 -#: netbox/tenancy/forms/filtersets.py:107 -#: netbox/tenancy/forms/model_forms.py:137 -#: netbox/tenancy/tables/contacts.py:102 -#: netbox/virtualization/forms/bulk_edit.py:145 -#: netbox/virtualization/forms/bulk_import.py:106 -#: netbox/virtualization/forms/filtersets.py:157 -#: netbox/virtualization/forms/model_forms.py:195 -#: netbox/virtualization/tables/virtualmachines.py:75 -#: netbox/vpn/forms/bulk_edit.py:87 netbox/vpn/forms/bulk_import.py:81 -#: netbox/vpn/forms/filtersets.py:85 netbox/vpn/forms/model_forms.py:78 -#: netbox/vpn/forms/model_forms.py:113 netbox/vpn/tables/tunnels.py:82 +#: dcim/forms/bulk_edit.py:357 dcim/forms/bulk_edit.py:1262 +#: dcim/forms/bulk_edit.py:1655 dcim/forms/bulk_import.py:253 +#: dcim/forms/bulk_import.py:1076 dcim/forms/filtersets.py:367 +#: dcim/forms/filtersets.py:777 dcim/forms/filtersets.py:1534 +#: dcim/forms/model_forms.py:251 dcim/forms/model_forms.py:1070 +#: dcim/forms/model_forms.py:1510 dcim/forms/object_import.py:181 +#: dcim/tables/devices.py:169 dcim/tables/devices.py:809 +#: dcim/tables/devices.py:937 dcim/tables/devicetypes.py:304 +#: dcim/tables/racks.py:129 extras/filtersets.py:552 +#: ipam/forms/bulk_edit.py:261 ipam/forms/bulk_edit.py:311 +#: ipam/forms/bulk_edit.py:359 ipam/forms/bulk_edit.py:511 +#: ipam/forms/bulk_import.py:197 ipam/forms/bulk_import.py:262 +#: ipam/forms/bulk_import.py:298 ipam/forms/bulk_import.py:455 +#: ipam/forms/filtersets.py:237 ipam/forms/filtersets.py:289 +#: ipam/forms/filtersets.py:360 ipam/forms/filtersets.py:509 +#: ipam/forms/model_forms.py:188 ipam/forms/model_forms.py:221 +#: ipam/forms/model_forms.py:250 ipam/forms/model_forms.py:643 +#: ipam/tables/ip.py:258 ipam/tables/ip.py:316 ipam/tables/ip.py:367 +#: ipam/tables/vlans.py:130 ipam/tables/vlans.py:235 +#: templates/dcim/device.html:182 +#: templates/dcim/inc/panels/inventory_items.html:20 +#: templates/dcim/interface.html:223 templates/dcim/inventoryitem.html:36 +#: templates/dcim/rack.html:49 templates/ipam/ipaddress.html:41 +#: templates/ipam/iprange.html:50 templates/ipam/prefix.html:77 +#: templates/ipam/role.html:19 templates/ipam/vlan.html:52 +#: templates/virtualization/virtualmachine.html:23 +#: templates/vpn/tunneltermination.html:17 +#: templates/wireless/inc/wirelesslink_interface.html:20 +#: tenancy/forms/bulk_edit.py:142 tenancy/forms/filtersets.py:107 +#: tenancy/forms/model_forms.py:137 tenancy/tables/contacts.py:102 +#: virtualization/forms/bulk_edit.py:145 +#: virtualization/forms/bulk_import.py:106 +#: virtualization/forms/filtersets.py:157 +#: virtualization/forms/model_forms.py:195 +#: virtualization/tables/virtualmachines.py:75 vpn/forms/bulk_edit.py:87 +#: vpn/forms/bulk_import.py:81 vpn/forms/filtersets.py:85 +#: vpn/forms/model_forms.py:78 vpn/forms/model_forms.py:113 +#: vpn/tables/tunnels.py:82 msgid "Role" msgstr "Rolle" -#: netbox/dcim/forms/bulk_edit.py:364 netbox/dcim/forms/bulk_edit.py:712 -#: netbox/dcim/forms/bulk_edit.py:764 netbox/templates/dcim/device.html:104 -#: netbox/templates/dcim/module.html:77 -#: netbox/templates/dcim/modulebay.html:70 netbox/templates/dcim/rack.html:57 -#: netbox/templates/virtualization/virtualmachine.html:35 +#: dcim/forms/bulk_edit.py:364 dcim/forms/bulk_edit.py:712 +#: dcim/forms/bulk_edit.py:764 templates/dcim/device.html:104 +#: templates/dcim/module.html:77 templates/dcim/modulebay.html:70 +#: templates/dcim/rack.html:57 templates/virtualization/virtualmachine.html:35 msgid "Serial Number" msgstr "Seriennummer" -#: netbox/dcim/forms/bulk_edit.py:367 netbox/dcim/forms/filtersets.py:387 -#: netbox/dcim/forms/filtersets.py:813 netbox/dcim/forms/filtersets.py:967 -#: netbox/dcim/forms/filtersets.py:1546 +#: dcim/forms/bulk_edit.py:367 dcim/forms/filtersets.py:387 +#: dcim/forms/filtersets.py:813 dcim/forms/filtersets.py:967 +#: dcim/forms/filtersets.py:1546 msgid "Asset tag" msgstr "Asset-Tag" -#: netbox/dcim/forms/bulk_edit.py:411 netbox/dcim/forms/bulk_edit.py:524 -#: netbox/dcim/forms/bulk_edit.py:568 netbox/dcim/forms/bulk_edit.py:705 -#: netbox/dcim/forms/bulk_import.py:277 netbox/dcim/forms/bulk_import.py:410 -#: netbox/dcim/forms/bulk_import.py:580 netbox/dcim/forms/filtersets.py:280 -#: netbox/dcim/forms/filtersets.py:511 netbox/dcim/forms/filtersets.py:669 -#: netbox/dcim/forms/filtersets.py:804 netbox/templates/dcim/device.html:98 -#: netbox/templates/dcim/devicetype.html:65 -#: netbox/templates/dcim/moduletype.html:30 netbox/templates/dcim/rack.html:65 -#: netbox/templates/dcim/racktype.html:28 +#: dcim/forms/bulk_edit.py:411 dcim/forms/bulk_edit.py:524 +#: dcim/forms/bulk_edit.py:568 dcim/forms/bulk_edit.py:705 +#: dcim/forms/bulk_import.py:277 dcim/forms/bulk_import.py:410 +#: dcim/forms/bulk_import.py:580 dcim/forms/filtersets.py:280 +#: dcim/forms/filtersets.py:511 dcim/forms/filtersets.py:669 +#: dcim/forms/filtersets.py:804 templates/dcim/device.html:98 +#: templates/dcim/devicetype.html:65 templates/dcim/moduletype.html:41 +#: templates/dcim/rack.html:65 templates/dcim/racktype.html:28 msgid "Airflow" msgstr "Luftstrom" -#: netbox/dcim/forms/bulk_edit.py:440 netbox/dcim/forms/bulk_edit.py:910 -#: netbox/dcim/forms/bulk_import.py:322 netbox/dcim/forms/bulk_import.py:325 -#: netbox/dcim/forms/bulk_import.py:553 netbox/dcim/forms/bulk_import.py:1358 -#: netbox/dcim/forms/bulk_import.py:1362 netbox/dcim/forms/filtersets.py:104 -#: netbox/dcim/forms/filtersets.py:324 netbox/dcim/forms/filtersets.py:405 -#: netbox/dcim/forms/filtersets.py:419 netbox/dcim/forms/filtersets.py:457 -#: netbox/dcim/forms/filtersets.py:772 netbox/dcim/forms/filtersets.py:1035 -#: netbox/dcim/forms/filtersets.py:1167 netbox/dcim/forms/model_forms.py:264 -#: netbox/dcim/forms/model_forms.py:306 netbox/dcim/forms/model_forms.py:479 -#: netbox/dcim/forms/model_forms.py:755 netbox/dcim/forms/object_create.py:400 -#: netbox/dcim/tables/devices.py:161 netbox/dcim/tables/power.py:70 -#: netbox/dcim/tables/racks.py:217 netbox/ipam/forms/bulk_edit.py:468 -#: netbox/ipam/forms/filtersets.py:442 netbox/templates/dcim/device.html:30 -#: netbox/templates/dcim/inc/cable_termination.html:16 -#: netbox/templates/dcim/powerfeed.html:28 netbox/templates/dcim/rack.html:13 -#: netbox/templates/dcim/rack/base.html:4 -#: netbox/templates/dcim/rackreservation.html:19 -#: netbox/templates/dcim/rackreservation.html:36 -#: netbox/virtualization/forms/model_forms.py:113 +#: dcim/forms/bulk_edit.py:440 dcim/forms/bulk_edit.py:910 +#: dcim/forms/bulk_import.py:322 dcim/forms/bulk_import.py:325 +#: dcim/forms/bulk_import.py:553 dcim/forms/bulk_import.py:1358 +#: dcim/forms/bulk_import.py:1362 dcim/forms/filtersets.py:104 +#: dcim/forms/filtersets.py:324 dcim/forms/filtersets.py:405 +#: dcim/forms/filtersets.py:419 dcim/forms/filtersets.py:457 +#: dcim/forms/filtersets.py:772 dcim/forms/filtersets.py:1035 +#: dcim/forms/filtersets.py:1167 dcim/forms/model_forms.py:264 +#: dcim/forms/model_forms.py:306 dcim/forms/model_forms.py:479 +#: dcim/forms/model_forms.py:755 dcim/forms/object_create.py:400 +#: dcim/tables/devices.py:161 dcim/tables/power.py:70 dcim/tables/racks.py:217 +#: ipam/forms/filtersets.py:442 templates/dcim/device.html:30 +#: templates/dcim/inc/cable_termination.html:16 +#: templates/dcim/powerfeed.html:28 templates/dcim/rack.html:13 +#: templates/dcim/rack/base.html:4 templates/dcim/rackreservation.html:19 +#: templates/dcim/rackreservation.html:36 +#: virtualization/forms/model_forms.py:113 msgid "Rack" msgstr "Rack" -#: netbox/dcim/forms/bulk_edit.py:444 netbox/dcim/forms/bulk_edit.py:730 -#: netbox/dcim/forms/filtersets.py:325 netbox/dcim/forms/filtersets.py:398 -#: netbox/dcim/forms/filtersets.py:481 netbox/dcim/forms/filtersets.py:608 -#: netbox/dcim/forms/filtersets.py:721 netbox/dcim/forms/filtersets.py:942 -#: netbox/dcim/forms/model_forms.py:670 netbox/dcim/forms/model_forms.py:1580 -#: netbox/templates/dcim/device_edit.html:20 +#: dcim/forms/bulk_edit.py:444 dcim/forms/bulk_edit.py:730 +#: dcim/forms/filtersets.py:325 dcim/forms/filtersets.py:398 +#: dcim/forms/filtersets.py:481 dcim/forms/filtersets.py:608 +#: dcim/forms/filtersets.py:721 dcim/forms/filtersets.py:942 +#: dcim/forms/model_forms.py:670 dcim/forms/model_forms.py:1580 +#: templates/dcim/device_edit.html:20 msgid "Hardware" msgstr "Hardware" -#: netbox/dcim/forms/bulk_edit.py:500 netbox/dcim/forms/bulk_import.py:377 -#: netbox/dcim/forms/filtersets.py:499 netbox/dcim/forms/model_forms.py:353 +#: dcim/forms/bulk_edit.py:500 dcim/forms/bulk_import.py:377 +#: dcim/forms/filtersets.py:499 dcim/forms/model_forms.py:353 msgid "Default platform" msgstr "Standard-Betriebssystem" -#: netbox/dcim/forms/bulk_edit.py:505 netbox/dcim/forms/bulk_edit.py:564 -#: netbox/dcim/forms/filtersets.py:502 netbox/dcim/forms/filtersets.py:622 +#: dcim/forms/bulk_edit.py:505 dcim/forms/bulk_edit.py:564 +#: dcim/forms/filtersets.py:502 dcim/forms/filtersets.py:622 msgid "Part number" msgstr "Artikelnummer" -#: netbox/dcim/forms/bulk_edit.py:509 +#: dcim/forms/bulk_edit.py:509 msgid "U height" msgstr "Höheneinheit" -#: netbox/dcim/forms/bulk_edit.py:521 netbox/dcim/tables/devicetypes.py:102 +#: dcim/forms/bulk_edit.py:521 dcim/tables/devicetypes.py:102 msgid "Exclude from utilization" msgstr "Von der Nutzung ausschließen" -#: netbox/dcim/forms/bulk_edit.py:550 netbox/dcim/forms/model_forms.py:368 -#: netbox/dcim/tables/devicetypes.py:77 netbox/templates/dcim/device.html:88 -#: netbox/templates/dcim/devicebay.html:52 -#: netbox/templates/dcim/module.html:61 +#: dcim/forms/bulk_edit.py:550 dcim/forms/model_forms.py:368 +#: dcim/tables/devicetypes.py:77 templates/dcim/device.html:88 +#: templates/dcim/devicebay.html:52 templates/dcim/module.html:61 msgid "Device Type" msgstr "Gerätetyp" -#: netbox/dcim/forms/bulk_edit.py:592 netbox/dcim/forms/model_forms.py:401 -#: netbox/dcim/tables/modules.py:17 netbox/dcim/tables/modules.py:65 -#: netbox/templates/dcim/module.html:65 -#: netbox/templates/dcim/modulebay.html:66 -#: netbox/templates/dcim/moduletype.html:11 +#: dcim/forms/bulk_edit.py:592 dcim/forms/model_forms.py:401 +#: dcim/tables/modules.py:17 dcim/tables/modules.py:65 +#: templates/dcim/module.html:65 templates/dcim/modulebay.html:66 +#: templates/dcim/moduletype.html:22 msgid "Module Type" msgstr "Modultyp" -#: netbox/dcim/forms/bulk_edit.py:596 netbox/dcim/forms/model_forms.py:371 -#: netbox/dcim/forms/model_forms.py:402 -#: netbox/templates/dcim/devicetype.html:11 +#: dcim/forms/bulk_edit.py:596 dcim/forms/model_forms.py:371 +#: dcim/forms/model_forms.py:402 templates/dcim/devicetype.html:11 msgid "Chassis" msgstr "Gehäuse" -#: netbox/dcim/forms/bulk_edit.py:610 netbox/dcim/models/devices.py:484 -#: netbox/dcim/tables/devices.py:67 +#: dcim/forms/bulk_edit.py:610 dcim/models/devices.py:484 +#: dcim/tables/devices.py:67 msgid "VM role" msgstr "VM-Rolle" -#: netbox/dcim/forms/bulk_edit.py:613 netbox/dcim/forms/bulk_edit.py:637 -#: netbox/dcim/forms/bulk_edit.py:720 netbox/dcim/forms/bulk_import.py:434 -#: netbox/dcim/forms/bulk_import.py:438 netbox/dcim/forms/bulk_import.py:457 -#: netbox/dcim/forms/bulk_import.py:461 netbox/dcim/forms/bulk_import.py:586 -#: netbox/dcim/forms/bulk_import.py:590 netbox/dcim/forms/filtersets.py:689 -#: netbox/dcim/forms/filtersets.py:705 netbox/dcim/forms/filtersets.py:823 -#: netbox/dcim/forms/model_forms.py:415 netbox/dcim/forms/model_forms.py:441 -#: netbox/dcim/forms/model_forms.py:555 -#: netbox/virtualization/forms/bulk_import.py:132 -#: netbox/virtualization/forms/bulk_import.py:133 -#: netbox/virtualization/forms/filtersets.py:188 -#: netbox/virtualization/forms/model_forms.py:215 +#: dcim/forms/bulk_edit.py:613 dcim/forms/bulk_edit.py:637 +#: dcim/forms/bulk_edit.py:720 dcim/forms/bulk_import.py:434 +#: dcim/forms/bulk_import.py:438 dcim/forms/bulk_import.py:457 +#: dcim/forms/bulk_import.py:461 dcim/forms/bulk_import.py:586 +#: dcim/forms/bulk_import.py:590 dcim/forms/filtersets.py:689 +#: dcim/forms/filtersets.py:705 dcim/forms/filtersets.py:823 +#: dcim/forms/model_forms.py:415 dcim/forms/model_forms.py:441 +#: dcim/forms/model_forms.py:555 virtualization/forms/bulk_import.py:132 +#: virtualization/forms/bulk_import.py:133 +#: virtualization/forms/filtersets.py:188 +#: virtualization/forms/model_forms.py:215 msgid "Config template" msgstr "Konfigurationsvorlage" -#: netbox/dcim/forms/bulk_edit.py:661 netbox/dcim/forms/bulk_edit.py:1061 -#: netbox/dcim/forms/bulk_import.py:492 netbox/dcim/forms/filtersets.py:114 -#: netbox/dcim/forms/model_forms.py:501 netbox/dcim/forms/model_forms.py:872 -#: netbox/dcim/forms/model_forms.py:889 netbox/extras/filtersets.py:547 +#: dcim/forms/bulk_edit.py:661 dcim/forms/bulk_edit.py:1061 +#: dcim/forms/bulk_import.py:492 dcim/forms/filtersets.py:114 +#: dcim/forms/model_forms.py:501 dcim/forms/model_forms.py:872 +#: dcim/forms/model_forms.py:889 extras/filtersets.py:547 msgid "Device type" msgstr "Gerätetyp" -#: netbox/dcim/forms/bulk_edit.py:672 netbox/dcim/forms/bulk_import.py:473 -#: netbox/dcim/forms/filtersets.py:119 netbox/dcim/forms/model_forms.py:509 +#: dcim/forms/bulk_edit.py:672 dcim/forms/bulk_import.py:473 +#: dcim/forms/filtersets.py:119 dcim/forms/model_forms.py:509 msgid "Device role" msgstr "Geräterolle" -#: netbox/dcim/forms/bulk_edit.py:695 netbox/dcim/forms/bulk_import.py:498 -#: netbox/dcim/forms/filtersets.py:796 netbox/dcim/forms/model_forms.py:451 -#: netbox/dcim/forms/model_forms.py:513 netbox/dcim/tables/devices.py:182 -#: netbox/extras/filtersets.py:563 netbox/templates/dcim/device.html:186 -#: netbox/templates/dcim/platform.html:26 -#: netbox/templates/virtualization/virtualmachine.html:27 -#: netbox/virtualization/forms/bulk_edit.py:160 -#: netbox/virtualization/forms/bulk_import.py:122 -#: netbox/virtualization/forms/filtersets.py:168 -#: netbox/virtualization/forms/model_forms.py:203 -#: netbox/virtualization/tables/virtualmachines.py:79 +#: dcim/forms/bulk_edit.py:695 dcim/forms/bulk_import.py:498 +#: dcim/forms/filtersets.py:796 dcim/forms/model_forms.py:451 +#: dcim/forms/model_forms.py:513 dcim/tables/devices.py:182 +#: extras/filtersets.py:563 templates/dcim/device.html:186 +#: templates/dcim/platform.html:26 +#: templates/virtualization/virtualmachine.html:27 +#: virtualization/forms/bulk_edit.py:160 +#: virtualization/forms/bulk_import.py:122 +#: virtualization/forms/filtersets.py:168 +#: virtualization/forms/model_forms.py:203 +#: virtualization/tables/virtualmachines.py:79 msgid "Platform" msgstr "Betriebssystem" -#: netbox/dcim/forms/bulk_edit.py:728 netbox/dcim/forms/bulk_edit.py:1281 -#: netbox/dcim/forms/bulk_edit.py:1650 netbox/dcim/forms/bulk_edit.py:1696 -#: netbox/dcim/forms/bulk_import.py:641 netbox/dcim/forms/bulk_import.py:703 -#: netbox/dcim/forms/bulk_import.py:729 netbox/dcim/forms/bulk_import.py:755 -#: netbox/dcim/forms/bulk_import.py:775 netbox/dcim/forms/bulk_import.py:828 -#: netbox/dcim/forms/bulk_import.py:946 netbox/dcim/forms/bulk_import.py:994 -#: netbox/dcim/forms/bulk_import.py:1011 netbox/dcim/forms/bulk_import.py:1023 -#: netbox/dcim/forms/bulk_import.py:1071 netbox/dcim/forms/bulk_import.py:1422 -#: netbox/dcim/forms/connections.py:24 netbox/dcim/forms/filtersets.py:131 -#: netbox/dcim/forms/filtersets.py:921 netbox/dcim/forms/filtersets.py:1051 -#: netbox/dcim/forms/filtersets.py:1242 netbox/dcim/forms/filtersets.py:1267 -#: netbox/dcim/forms/filtersets.py:1291 netbox/dcim/forms/filtersets.py:1311 -#: netbox/dcim/forms/filtersets.py:1334 netbox/dcim/forms/filtersets.py:1444 -#: netbox/dcim/forms/filtersets.py:1469 netbox/dcim/forms/filtersets.py:1493 -#: netbox/dcim/forms/filtersets.py:1511 netbox/dcim/forms/filtersets.py:1528 -#: netbox/dcim/forms/filtersets.py:1592 netbox/dcim/forms/filtersets.py:1616 -#: netbox/dcim/forms/filtersets.py:1640 netbox/dcim/forms/model_forms.py:633 -#: netbox/dcim/forms/model_forms.py:849 netbox/dcim/forms/model_forms.py:1208 -#: netbox/dcim/forms/model_forms.py:1664 -#: netbox/dcim/forms/object_create.py:257 netbox/dcim/tables/connections.py:22 -#: netbox/dcim/tables/connections.py:41 netbox/dcim/tables/connections.py:60 -#: netbox/dcim/tables/devices.py:285 netbox/dcim/tables/devices.py:371 -#: netbox/dcim/tables/devices.py:412 netbox/dcim/tables/devices.py:454 -#: netbox/dcim/tables/devices.py:505 netbox/dcim/tables/devices.py:597 -#: netbox/dcim/tables/devices.py:697 netbox/dcim/tables/devices.py:754 -#: netbox/dcim/tables/devices.py:801 netbox/dcim/tables/devices.py:861 -#: netbox/dcim/tables/devices.py:930 netbox/dcim/tables/devices.py:1057 -#: netbox/dcim/tables/modules.py:52 netbox/extras/forms/filtersets.py:321 -#: netbox/ipam/forms/bulk_import.py:304 netbox/ipam/forms/bulk_import.py:481 -#: netbox/ipam/forms/filtersets.py:551 netbox/ipam/forms/model_forms.py:319 -#: netbox/ipam/forms/model_forms.py:679 netbox/ipam/forms/model_forms.py:712 -#: netbox/ipam/forms/model_forms.py:738 netbox/ipam/tables/vlans.py:180 -#: netbox/templates/dcim/consoleport.html:20 -#: netbox/templates/dcim/consoleserverport.html:20 -#: netbox/templates/dcim/device.html:15 netbox/templates/dcim/device.html:130 -#: netbox/templates/dcim/device_edit.html:10 -#: netbox/templates/dcim/devicebay.html:20 -#: netbox/templates/dcim/devicebay.html:48 -#: netbox/templates/dcim/frontport.html:20 -#: netbox/templates/dcim/interface.html:30 -#: netbox/templates/dcim/interface.html:161 -#: netbox/templates/dcim/inventoryitem.html:20 -#: netbox/templates/dcim/module.html:57 -#: netbox/templates/dcim/modulebay.html:20 -#: netbox/templates/dcim/poweroutlet.html:20 -#: netbox/templates/dcim/powerport.html:20 -#: netbox/templates/dcim/rearport.html:20 -#: netbox/templates/dcim/virtualchassis.html:65 -#: netbox/templates/dcim/virtualchassis_edit.html:51 -#: netbox/templates/dcim/virtualdevicecontext.html:22 -#: netbox/templates/virtualization/virtualmachine.html:114 -#: netbox/templates/vpn/tunneltermination.html:23 -#: netbox/templates/wireless/inc/wirelesslink_interface.html:6 -#: netbox/virtualization/filtersets.py:167 -#: netbox/virtualization/forms/bulk_edit.py:137 -#: netbox/virtualization/forms/bulk_import.py:99 -#: netbox/virtualization/forms/filtersets.py:128 -#: netbox/virtualization/forms/model_forms.py:185 -#: netbox/virtualization/tables/virtualmachines.py:71 netbox/vpn/choices.py:44 -#: netbox/vpn/forms/bulk_import.py:86 netbox/vpn/forms/bulk_import.py:283 -#: netbox/vpn/forms/filtersets.py:275 netbox/vpn/forms/model_forms.py:90 -#: netbox/vpn/forms/model_forms.py:125 netbox/vpn/forms/model_forms.py:236 -#: netbox/vpn/forms/model_forms.py:453 netbox/wireless/forms/model_forms.py:99 -#: netbox/wireless/forms/model_forms.py:141 -#: netbox/wireless/tables/wirelesslan.py:75 +#: dcim/forms/bulk_edit.py:728 dcim/forms/bulk_edit.py:1281 +#: dcim/forms/bulk_edit.py:1650 dcim/forms/bulk_edit.py:1696 +#: dcim/forms/bulk_import.py:641 dcim/forms/bulk_import.py:703 +#: dcim/forms/bulk_import.py:729 dcim/forms/bulk_import.py:755 +#: dcim/forms/bulk_import.py:775 dcim/forms/bulk_import.py:828 +#: dcim/forms/bulk_import.py:946 dcim/forms/bulk_import.py:994 +#: dcim/forms/bulk_import.py:1011 dcim/forms/bulk_import.py:1023 +#: dcim/forms/bulk_import.py:1071 dcim/forms/bulk_import.py:1422 +#: dcim/forms/connections.py:24 dcim/forms/filtersets.py:131 +#: dcim/forms/filtersets.py:921 dcim/forms/filtersets.py:1051 +#: dcim/forms/filtersets.py:1242 dcim/forms/filtersets.py:1267 +#: dcim/forms/filtersets.py:1291 dcim/forms/filtersets.py:1311 +#: dcim/forms/filtersets.py:1334 dcim/forms/filtersets.py:1444 +#: dcim/forms/filtersets.py:1469 dcim/forms/filtersets.py:1493 +#: dcim/forms/filtersets.py:1511 dcim/forms/filtersets.py:1528 +#: dcim/forms/filtersets.py:1592 dcim/forms/filtersets.py:1616 +#: dcim/forms/filtersets.py:1640 dcim/forms/model_forms.py:633 +#: dcim/forms/model_forms.py:849 dcim/forms/model_forms.py:1208 +#: dcim/forms/model_forms.py:1664 dcim/forms/object_create.py:257 +#: dcim/tables/connections.py:22 dcim/tables/connections.py:41 +#: dcim/tables/connections.py:60 dcim/tables/devices.py:285 +#: dcim/tables/devices.py:371 dcim/tables/devices.py:412 +#: dcim/tables/devices.py:454 dcim/tables/devices.py:505 +#: dcim/tables/devices.py:597 dcim/tables/devices.py:697 +#: dcim/tables/devices.py:754 dcim/tables/devices.py:801 +#: dcim/tables/devices.py:861 dcim/tables/devices.py:930 +#: dcim/tables/devices.py:1057 dcim/tables/modules.py:52 +#: extras/forms/filtersets.py:321 ipam/forms/bulk_import.py:304 +#: ipam/forms/bulk_import.py:481 ipam/forms/filtersets.py:551 +#: ipam/forms/model_forms.py:319 ipam/forms/model_forms.py:679 +#: ipam/forms/model_forms.py:712 ipam/forms/model_forms.py:738 +#: ipam/tables/vlans.py:180 templates/dcim/consoleport.html:20 +#: templates/dcim/consoleserverport.html:20 templates/dcim/device.html:15 +#: templates/dcim/device.html:130 templates/dcim/device_edit.html:10 +#: templates/dcim/devicebay.html:20 templates/dcim/devicebay.html:48 +#: templates/dcim/frontport.html:20 templates/dcim/interface.html:30 +#: templates/dcim/interface.html:161 templates/dcim/inventoryitem.html:20 +#: templates/dcim/module.html:57 templates/dcim/modulebay.html:20 +#: templates/dcim/poweroutlet.html:20 templates/dcim/powerport.html:20 +#: templates/dcim/rearport.html:20 templates/dcim/virtualchassis.html:65 +#: templates/dcim/virtualchassis_edit.html:51 +#: templates/dcim/virtualdevicecontext.html:22 +#: templates/virtualization/virtualmachine.html:114 +#: templates/vpn/tunneltermination.html:23 +#: templates/wireless/inc/wirelesslink_interface.html:6 +#: virtualization/filtersets.py:167 virtualization/forms/bulk_edit.py:137 +#: virtualization/forms/bulk_import.py:99 +#: virtualization/forms/filtersets.py:128 +#: virtualization/forms/model_forms.py:185 +#: virtualization/tables/virtualmachines.py:71 vpn/choices.py:44 +#: vpn/forms/bulk_import.py:86 vpn/forms/bulk_import.py:283 +#: vpn/forms/filtersets.py:275 vpn/forms/model_forms.py:90 +#: vpn/forms/model_forms.py:125 vpn/forms/model_forms.py:236 +#: vpn/forms/model_forms.py:453 wireless/forms/model_forms.py:99 +#: wireless/forms/model_forms.py:141 wireless/tables/wirelesslan.py:75 msgid "Device" msgstr "Gerät" -#: netbox/dcim/forms/bulk_edit.py:731 -#: netbox/templates/extras/dashboard/widget_config.html:7 -#: netbox/virtualization/forms/bulk_edit.py:191 +#: dcim/forms/bulk_edit.py:731 templates/extras/dashboard/widget_config.html:7 +#: virtualization/forms/bulk_edit.py:191 msgid "Configuration" msgstr "Konfiguration" -#: netbox/dcim/forms/bulk_edit.py:745 netbox/dcim/forms/bulk_import.py:653 -#: netbox/dcim/forms/model_forms.py:647 netbox/dcim/forms/model_forms.py:897 +#: dcim/forms/bulk_edit.py:745 dcim/forms/bulk_import.py:653 +#: dcim/forms/model_forms.py:647 dcim/forms/model_forms.py:897 msgid "Module type" msgstr "Modultyp" -#: netbox/dcim/forms/bulk_edit.py:799 netbox/dcim/forms/bulk_edit.py:984 -#: netbox/dcim/forms/bulk_edit.py:1003 netbox/dcim/forms/bulk_edit.py:1026 -#: netbox/dcim/forms/bulk_edit.py:1068 netbox/dcim/forms/bulk_edit.py:1112 -#: netbox/dcim/forms/bulk_edit.py:1163 netbox/dcim/forms/bulk_edit.py:1190 -#: netbox/dcim/forms/bulk_edit.py:1217 netbox/dcim/forms/bulk_edit.py:1235 -#: netbox/dcim/forms/bulk_edit.py:1253 netbox/dcim/forms/filtersets.py:67 -#: netbox/dcim/forms/object_create.py:46 netbox/templates/dcim/cable.html:32 -#: netbox/templates/dcim/consoleport.html:32 -#: netbox/templates/dcim/consoleserverport.html:32 -#: netbox/templates/dcim/devicebay.html:28 -#: netbox/templates/dcim/frontport.html:32 -#: netbox/templates/dcim/inc/panels/inventory_items.html:19 -#: netbox/templates/dcim/interface.html:42 -#: netbox/templates/dcim/inventoryitem.html:32 -#: netbox/templates/dcim/modulebay.html:34 -#: netbox/templates/dcim/poweroutlet.html:32 -#: netbox/templates/dcim/powerport.html:32 -#: netbox/templates/dcim/rearport.html:32 -#: netbox/templates/extras/customfield.html:26 -#: netbox/templates/generic/bulk_import.html:162 +#: dcim/forms/bulk_edit.py:799 dcim/forms/bulk_edit.py:984 +#: dcim/forms/bulk_edit.py:1003 dcim/forms/bulk_edit.py:1026 +#: dcim/forms/bulk_edit.py:1068 dcim/forms/bulk_edit.py:1112 +#: dcim/forms/bulk_edit.py:1163 dcim/forms/bulk_edit.py:1190 +#: dcim/forms/bulk_edit.py:1217 dcim/forms/bulk_edit.py:1235 +#: dcim/forms/bulk_edit.py:1253 dcim/forms/filtersets.py:67 +#: dcim/forms/object_create.py:46 templates/dcim/cable.html:32 +#: templates/dcim/consoleport.html:32 templates/dcim/consoleserverport.html:32 +#: templates/dcim/devicebay.html:28 templates/dcim/frontport.html:32 +#: templates/dcim/inc/panels/inventory_items.html:19 +#: templates/dcim/interface.html:42 templates/dcim/inventoryitem.html:32 +#: templates/dcim/modulebay.html:34 templates/dcim/poweroutlet.html:32 +#: templates/dcim/powerport.html:32 templates/dcim/rearport.html:32 +#: templates/extras/customfield.html:26 templates/generic/bulk_import.html:162 msgid "Label" msgstr "Label" -#: netbox/dcim/forms/bulk_edit.py:808 netbox/dcim/forms/filtersets.py:1068 -#: netbox/templates/dcim/cable.html:50 +#: dcim/forms/bulk_edit.py:808 dcim/forms/filtersets.py:1068 +#: templates/dcim/cable.html:50 msgid "Length" msgstr "Länge" -#: netbox/dcim/forms/bulk_edit.py:813 netbox/dcim/forms/bulk_import.py:1226 -#: netbox/dcim/forms/bulk_import.py:1229 netbox/dcim/forms/filtersets.py:1072 +#: dcim/forms/bulk_edit.py:813 dcim/forms/bulk_import.py:1226 +#: dcim/forms/bulk_import.py:1229 dcim/forms/filtersets.py:1072 msgid "Length unit" msgstr "Längeneinheit" -#: netbox/dcim/forms/bulk_edit.py:837 -#: netbox/templates/dcim/virtualchassis.html:23 +#: dcim/forms/bulk_edit.py:837 templates/dcim/virtualchassis.html:23 msgid "Domain" msgstr "Domäne" -#: netbox/dcim/forms/bulk_edit.py:905 netbox/dcim/forms/bulk_import.py:1345 -#: netbox/dcim/forms/filtersets.py:1158 netbox/dcim/forms/model_forms.py:750 +#: dcim/forms/bulk_edit.py:905 dcim/forms/bulk_import.py:1345 +#: dcim/forms/filtersets.py:1158 dcim/forms/model_forms.py:750 msgid "Power panel" msgstr "Stromverteiler" -#: netbox/dcim/forms/bulk_edit.py:927 netbox/dcim/forms/bulk_import.py:1381 -#: netbox/dcim/forms/filtersets.py:1180 -#: netbox/templates/dcim/powerfeed.html:83 +#: dcim/forms/bulk_edit.py:927 dcim/forms/bulk_import.py:1381 +#: dcim/forms/filtersets.py:1180 templates/dcim/powerfeed.html:83 msgid "Supply" msgstr "Versorgung" -#: netbox/dcim/forms/bulk_edit.py:933 netbox/dcim/forms/bulk_import.py:1386 -#: netbox/dcim/forms/filtersets.py:1185 -#: netbox/templates/dcim/powerfeed.html:95 +#: dcim/forms/bulk_edit.py:933 dcim/forms/bulk_import.py:1386 +#: dcim/forms/filtersets.py:1185 templates/dcim/powerfeed.html:95 msgid "Phase" msgstr "Phase" -#: netbox/dcim/forms/bulk_edit.py:939 netbox/dcim/forms/filtersets.py:1190 -#: netbox/templates/dcim/powerfeed.html:87 +#: dcim/forms/bulk_edit.py:939 dcim/forms/filtersets.py:1190 +#: templates/dcim/powerfeed.html:87 msgid "Voltage" msgstr "Spannung" -#: netbox/dcim/forms/bulk_edit.py:943 netbox/dcim/forms/filtersets.py:1194 -#: netbox/templates/dcim/powerfeed.html:91 +#: dcim/forms/bulk_edit.py:943 dcim/forms/filtersets.py:1194 +#: templates/dcim/powerfeed.html:91 msgid "Amperage" msgstr "Stromstärke" -#: netbox/dcim/forms/bulk_edit.py:947 netbox/dcim/forms/filtersets.py:1198 +#: dcim/forms/bulk_edit.py:947 dcim/forms/filtersets.py:1198 msgid "Max utilization" msgstr "Max. Auslastung" -#: netbox/dcim/forms/bulk_edit.py:1036 +#: dcim/forms/bulk_edit.py:1036 msgid "Maximum draw" msgstr "Maximale Auslastung" -#: netbox/dcim/forms/bulk_edit.py:1039 -#: netbox/dcim/models/device_component_templates.py:282 -#: netbox/dcim/models/device_components.py:356 +#: dcim/forms/bulk_edit.py:1039 dcim/models/device_component_templates.py:282 +#: dcim/models/device_components.py:356 msgid "Maximum power draw (watts)" msgstr "Maximale Leistungsaufnahme (Watt)" -#: netbox/dcim/forms/bulk_edit.py:1042 +#: dcim/forms/bulk_edit.py:1042 msgid "Allocated draw" msgstr "Zugewiesene Leistungsaufnahme" -#: netbox/dcim/forms/bulk_edit.py:1045 -#: netbox/dcim/models/device_component_templates.py:289 -#: netbox/dcim/models/device_components.py:363 +#: dcim/forms/bulk_edit.py:1045 dcim/models/device_component_templates.py:289 +#: dcim/models/device_components.py:363 msgid "Allocated power draw (watts)" msgstr "Zugewiesene Leistungsaufnahme (Watt)" -#: netbox/dcim/forms/bulk_edit.py:1078 netbox/dcim/forms/bulk_import.py:786 -#: netbox/dcim/forms/model_forms.py:953 netbox/dcim/forms/model_forms.py:1278 -#: netbox/dcim/forms/model_forms.py:1567 netbox/dcim/forms/object_import.py:55 +#: dcim/forms/bulk_edit.py:1078 dcim/forms/bulk_import.py:786 +#: dcim/forms/model_forms.py:953 dcim/forms/model_forms.py:1278 +#: dcim/forms/model_forms.py:1567 dcim/forms/object_import.py:55 msgid "Power port" msgstr "Stromanschluss" -#: netbox/dcim/forms/bulk_edit.py:1083 netbox/dcim/forms/bulk_import.py:793 +#: dcim/forms/bulk_edit.py:1083 dcim/forms/bulk_import.py:793 msgid "Feed leg" msgstr "Phasenlage" -#: netbox/dcim/forms/bulk_edit.py:1129 netbox/dcim/forms/bulk_edit.py:1440 +#: dcim/forms/bulk_edit.py:1129 dcim/forms/bulk_edit.py:1440 msgid "Management only" msgstr "Nur Management" -#: netbox/dcim/forms/bulk_edit.py:1139 netbox/dcim/forms/bulk_edit.py:1446 -#: netbox/dcim/forms/bulk_import.py:876 netbox/dcim/forms/filtersets.py:1394 -#: netbox/dcim/forms/object_import.py:90 -#: netbox/dcim/models/device_component_templates.py:437 -#: netbox/dcim/models/device_components.py:670 +#: dcim/forms/bulk_edit.py:1139 dcim/forms/bulk_edit.py:1446 +#: dcim/forms/bulk_import.py:876 dcim/forms/filtersets.py:1394 +#: dcim/forms/object_import.py:90 +#: dcim/models/device_component_templates.py:437 +#: dcim/models/device_components.py:670 msgid "PoE mode" msgstr "PoE-Modus" -#: netbox/dcim/forms/bulk_edit.py:1145 netbox/dcim/forms/bulk_edit.py:1452 -#: netbox/dcim/forms/bulk_import.py:882 netbox/dcim/forms/filtersets.py:1399 -#: netbox/dcim/forms/object_import.py:95 -#: netbox/dcim/models/device_component_templates.py:443 -#: netbox/dcim/models/device_components.py:676 +#: dcim/forms/bulk_edit.py:1145 dcim/forms/bulk_edit.py:1452 +#: dcim/forms/bulk_import.py:882 dcim/forms/filtersets.py:1399 +#: dcim/forms/object_import.py:95 +#: dcim/models/device_component_templates.py:443 +#: dcim/models/device_components.py:676 msgid "PoE type" msgstr "PoE-Typ" -#: netbox/dcim/forms/bulk_edit.py:1151 netbox/dcim/forms/filtersets.py:1404 -#: netbox/dcim/forms/object_import.py:100 +#: dcim/forms/bulk_edit.py:1151 dcim/forms/filtersets.py:1404 +#: dcim/forms/object_import.py:100 msgid "Wireless role" msgstr "WLAN Funktion" -#: netbox/dcim/forms/bulk_edit.py:1288 netbox/dcim/forms/model_forms.py:669 -#: netbox/dcim/forms/model_forms.py:1223 netbox/dcim/tables/devices.py:313 -#: netbox/templates/dcim/consoleport.html:24 -#: netbox/templates/dcim/consoleserverport.html:24 -#: netbox/templates/dcim/frontport.html:24 -#: netbox/templates/dcim/interface.html:34 -#: netbox/templates/dcim/module.html:54 -#: netbox/templates/dcim/modulebay.html:26 -#: netbox/templates/dcim/modulebay.html:58 -#: netbox/templates/dcim/poweroutlet.html:24 -#: netbox/templates/dcim/powerport.html:24 -#: netbox/templates/dcim/rearport.html:24 +#: dcim/forms/bulk_edit.py:1288 dcim/forms/model_forms.py:669 +#: dcim/forms/model_forms.py:1223 dcim/tables/devices.py:313 +#: templates/dcim/consoleport.html:24 templates/dcim/consoleserverport.html:24 +#: templates/dcim/frontport.html:24 templates/dcim/interface.html:34 +#: templates/dcim/module.html:54 templates/dcim/modulebay.html:26 +#: templates/dcim/modulebay.html:58 templates/dcim/poweroutlet.html:24 +#: templates/dcim/powerport.html:24 templates/dcim/rearport.html:24 msgid "Module" msgstr "Modul" -#: netbox/dcim/forms/bulk_edit.py:1420 netbox/dcim/tables/devices.py:665 -#: netbox/templates/dcim/interface.html:110 +#: dcim/forms/bulk_edit.py:1420 dcim/tables/devices.py:665 +#: templates/dcim/interface.html:110 msgid "LAG" msgstr "LAG" -#: netbox/dcim/forms/bulk_edit.py:1425 netbox/dcim/forms/model_forms.py:1305 +#: dcim/forms/bulk_edit.py:1425 dcim/forms/model_forms.py:1305 msgid "Virtual device contexts" msgstr "Virtual Device Contexts" -#: netbox/dcim/forms/bulk_edit.py:1431 netbox/dcim/forms/bulk_import.py:714 -#: netbox/dcim/forms/bulk_import.py:740 netbox/dcim/forms/filtersets.py:1252 -#: netbox/dcim/forms/filtersets.py:1277 netbox/dcim/forms/filtersets.py:1358 -#: netbox/dcim/tables/devices.py:610 -#: netbox/templates/circuits/inc/circuit_termination_fields.html:67 -#: netbox/templates/dcim/consoleport.html:40 -#: netbox/templates/dcim/consoleserverport.html:40 +#: dcim/forms/bulk_edit.py:1431 dcim/forms/bulk_import.py:714 +#: dcim/forms/bulk_import.py:740 dcim/forms/filtersets.py:1252 +#: dcim/forms/filtersets.py:1277 dcim/forms/filtersets.py:1358 +#: dcim/tables/devices.py:610 +#: templates/circuits/inc/circuit_termination_fields.html:67 +#: templates/dcim/consoleport.html:40 templates/dcim/consoleserverport.html:40 msgid "Speed" msgstr "Geschwindigkeit" -#: netbox/dcim/forms/bulk_edit.py:1460 netbox/dcim/forms/bulk_import.py:885 -#: netbox/templates/vpn/ikepolicy.html:25 -#: netbox/templates/vpn/ipsecprofile.html:21 -#: netbox/templates/vpn/ipsecprofile.html:48 -#: netbox/virtualization/forms/bulk_edit.py:233 -#: netbox/virtualization/forms/bulk_import.py:165 -#: netbox/vpn/forms/bulk_edit.py:146 netbox/vpn/forms/bulk_edit.py:232 -#: netbox/vpn/forms/bulk_import.py:176 netbox/vpn/forms/bulk_import.py:234 -#: netbox/vpn/forms/filtersets.py:135 netbox/vpn/forms/filtersets.py:178 -#: netbox/vpn/forms/filtersets.py:192 netbox/vpn/tables/crypto.py:64 -#: netbox/vpn/tables/crypto.py:162 +#: dcim/forms/bulk_edit.py:1460 dcim/forms/bulk_import.py:885 +#: templates/vpn/ikepolicy.html:25 templates/vpn/ipsecprofile.html:21 +#: templates/vpn/ipsecprofile.html:48 virtualization/forms/bulk_edit.py:233 +#: virtualization/forms/bulk_import.py:165 vpn/forms/bulk_edit.py:146 +#: vpn/forms/bulk_edit.py:232 vpn/forms/bulk_import.py:176 +#: vpn/forms/bulk_import.py:234 vpn/forms/filtersets.py:135 +#: vpn/forms/filtersets.py:178 vpn/forms/filtersets.py:192 +#: vpn/tables/crypto.py:64 vpn/tables/crypto.py:162 msgid "Mode" msgstr "Modus" -#: netbox/dcim/forms/bulk_edit.py:1468 netbox/dcim/forms/model_forms.py:1354 -#: netbox/ipam/forms/bulk_import.py:178 netbox/ipam/forms/filtersets.py:498 -#: netbox/ipam/models/vlans.py:84 netbox/virtualization/forms/bulk_edit.py:240 -#: netbox/virtualization/forms/model_forms.py:321 +#: dcim/forms/bulk_edit.py:1468 dcim/forms/model_forms.py:1354 +#: ipam/forms/bulk_import.py:178 ipam/forms/filtersets.py:498 +#: ipam/models/vlans.py:84 virtualization/forms/bulk_edit.py:240 +#: virtualization/forms/model_forms.py:321 msgid "VLAN group" msgstr "VLAN-Gruppe" -#: netbox/dcim/forms/bulk_edit.py:1476 netbox/dcim/forms/model_forms.py:1360 -#: netbox/dcim/tables/devices.py:579 -#: netbox/virtualization/forms/bulk_edit.py:248 -#: netbox/virtualization/forms/model_forms.py:326 +#: dcim/forms/bulk_edit.py:1476 dcim/forms/model_forms.py:1360 +#: dcim/tables/devices.py:579 virtualization/forms/bulk_edit.py:248 +#: virtualization/forms/model_forms.py:326 msgid "Untagged VLAN" msgstr "Untagged VLAN" -#: netbox/dcim/forms/bulk_edit.py:1484 netbox/dcim/forms/model_forms.py:1369 -#: netbox/dcim/tables/devices.py:585 -#: netbox/virtualization/forms/bulk_edit.py:256 -#: netbox/virtualization/forms/model_forms.py:335 +#: dcim/forms/bulk_edit.py:1484 dcim/forms/model_forms.py:1369 +#: dcim/tables/devices.py:585 virtualization/forms/bulk_edit.py:256 +#: virtualization/forms/model_forms.py:335 msgid "Tagged VLANs" msgstr "Getaggte VLANs" -#: netbox/dcim/forms/bulk_edit.py:1494 netbox/dcim/forms/model_forms.py:1341 +#: dcim/forms/bulk_edit.py:1494 dcim/forms/model_forms.py:1341 msgid "Wireless LAN group" msgstr "WLAN-Gruppe" -#: netbox/dcim/forms/bulk_edit.py:1499 netbox/dcim/forms/model_forms.py:1346 -#: netbox/dcim/tables/devices.py:619 netbox/netbox/navigation/menu.py:146 -#: netbox/templates/dcim/interface.html:280 -#: netbox/wireless/tables/wirelesslan.py:24 +#: dcim/forms/bulk_edit.py:1499 dcim/forms/model_forms.py:1346 +#: dcim/tables/devices.py:619 netbox/navigation/menu.py:146 +#: templates/dcim/interface.html:280 wireless/tables/wirelesslan.py:24 msgid "Wireless LANs" msgstr "WLANs" -#: netbox/dcim/forms/bulk_edit.py:1508 netbox/dcim/forms/filtersets.py:1328 -#: netbox/dcim/forms/model_forms.py:1390 netbox/ipam/forms/bulk_edit.py:285 -#: netbox/ipam/forms/bulk_edit.py:377 netbox/ipam/forms/filtersets.py:169 -#: netbox/templates/dcim/interface.html:122 -#: netbox/templates/ipam/prefix.html:95 -#: netbox/virtualization/forms/model_forms.py:349 +#: dcim/forms/bulk_edit.py:1508 dcim/forms/filtersets.py:1328 +#: dcim/forms/model_forms.py:1390 ipam/forms/bulk_edit.py:286 +#: ipam/forms/bulk_edit.py:378 ipam/forms/filtersets.py:169 +#: templates/dcim/interface.html:122 templates/ipam/prefix.html:95 +#: virtualization/forms/model_forms.py:349 msgid "Addressing" msgstr "Adressierung" -#: netbox/dcim/forms/bulk_edit.py:1509 netbox/dcim/forms/filtersets.py:720 -#: netbox/dcim/forms/model_forms.py:1391 -#: netbox/virtualization/forms/model_forms.py:350 +#: dcim/forms/bulk_edit.py:1509 dcim/forms/filtersets.py:720 +#: dcim/forms/model_forms.py:1391 virtualization/forms/model_forms.py:350 msgid "Operation" msgstr "Dienst / Port" -#: netbox/dcim/forms/bulk_edit.py:1510 netbox/dcim/forms/filtersets.py:1329 -#: netbox/dcim/forms/model_forms.py:987 netbox/dcim/forms/model_forms.py:1393 +#: dcim/forms/bulk_edit.py:1510 dcim/forms/filtersets.py:1329 +#: dcim/forms/model_forms.py:987 dcim/forms/model_forms.py:1393 msgid "PoE" msgstr "PoE" -#: netbox/dcim/forms/bulk_edit.py:1511 netbox/dcim/forms/model_forms.py:1392 -#: netbox/templates/dcim/interface.html:99 -#: netbox/virtualization/forms/bulk_edit.py:267 -#: netbox/virtualization/forms/model_forms.py:351 +#: dcim/forms/bulk_edit.py:1511 dcim/forms/model_forms.py:1392 +#: templates/dcim/interface.html:99 virtualization/forms/bulk_edit.py:267 +#: virtualization/forms/model_forms.py:351 msgid "Related Interfaces" msgstr "Verwandte Schnittstellen" -#: netbox/dcim/forms/bulk_edit.py:1512 netbox/dcim/forms/model_forms.py:1394 -#: netbox/virtualization/forms/bulk_edit.py:268 -#: netbox/virtualization/forms/model_forms.py:352 +#: dcim/forms/bulk_edit.py:1512 dcim/forms/model_forms.py:1394 +#: virtualization/forms/bulk_edit.py:268 +#: virtualization/forms/model_forms.py:352 msgid "802.1Q Switching" msgstr "802.1Q-Switching" -#: netbox/dcim/forms/bulk_edit.py:1574 netbox/dcim/forms/bulk_edit.py:1576 +#: dcim/forms/bulk_edit.py:1574 dcim/forms/bulk_edit.py:1576 msgid "Interface mode must be specified to assign VLANs" msgstr "Der Schnittstellenmodus muss gesetzt werden, um VLANs zuzuweisen" -#: netbox/dcim/forms/bulk_edit.py:1581 netbox/dcim/forms/common.py:50 +#: dcim/forms/bulk_edit.py:1581 dcim/forms/common.py:50 msgid "An access interface cannot have tagged VLANs assigned." msgstr "" "Einer Endgeräteschnittstelle (Access) können keine getaggten VLANs " "zugewiesen sein." -#: netbox/dcim/forms/bulk_import.py:64 +#: dcim/forms/bulk_import.py:64 msgid "Name of parent region" msgstr "Name der übergeordneten Region" -#: netbox/dcim/forms/bulk_import.py:78 +#: dcim/forms/bulk_import.py:78 msgid "Name of parent site group" msgstr "Name der übergeordneten Standortgruppe" -#: netbox/dcim/forms/bulk_import.py:97 +#: dcim/forms/bulk_import.py:97 msgid "Assigned region" msgstr "Zugewiesene Region" -#: netbox/dcim/forms/bulk_import.py:104 netbox/tenancy/forms/bulk_import.py:44 -#: netbox/tenancy/forms/bulk_import.py:85 -#: netbox/wireless/forms/bulk_import.py:40 +#: dcim/forms/bulk_import.py:104 tenancy/forms/bulk_import.py:44 +#: tenancy/forms/bulk_import.py:85 wireless/forms/bulk_import.py:40 msgid "Assigned group" msgstr "Zugewiesene Gruppe" -#: netbox/dcim/forms/bulk_import.py:123 +#: dcim/forms/bulk_import.py:123 msgid "available options" msgstr "verfügbare Optionen" -#: netbox/dcim/forms/bulk_import.py:134 netbox/dcim/forms/bulk_import.py:543 -#: netbox/dcim/forms/bulk_import.py:1342 netbox/ipam/forms/bulk_import.py:175 -#: netbox/ipam/forms/bulk_import.py:433 -#: netbox/virtualization/forms/bulk_import.py:63 -#: netbox/virtualization/forms/bulk_import.py:89 +#: dcim/forms/bulk_import.py:134 dcim/forms/bulk_import.py:543 +#: dcim/forms/bulk_import.py:1342 ipam/forms/bulk_import.py:175 +#: ipam/forms/bulk_import.py:433 virtualization/forms/bulk_import.py:63 +#: virtualization/forms/bulk_import.py:89 msgid "Assigned site" msgstr "Zugewiesener Standort" -#: netbox/dcim/forms/bulk_import.py:141 +#: dcim/forms/bulk_import.py:141 msgid "Parent location" msgstr "Übergeordnete Lokation" -#: netbox/dcim/forms/bulk_import.py:143 +#: dcim/forms/bulk_import.py:143 msgid "Location not found." msgstr "Lokation wurde nicht gefunden." -#: netbox/dcim/forms/bulk_import.py:185 +#: dcim/forms/bulk_import.py:185 msgid "The manufacturer of this rack type" msgstr "Der Hersteller dieses Racktyps" -#: netbox/dcim/forms/bulk_import.py:196 +#: dcim/forms/bulk_import.py:196 msgid "The lowest-numbered position in the rack" msgstr "Die Position mit der niedrigsten Nummer im Rack" -#: netbox/dcim/forms/bulk_import.py:201 netbox/dcim/forms/bulk_import.py:268 +#: dcim/forms/bulk_import.py:201 dcim/forms/bulk_import.py:268 msgid "Rail-to-rail width (in inches)" msgstr "Breite von Schiene zu Schiene (in Zoll)" -#: netbox/dcim/forms/bulk_import.py:207 netbox/dcim/forms/bulk_import.py:274 +#: dcim/forms/bulk_import.py:207 dcim/forms/bulk_import.py:274 msgid "Unit for outer dimensions" msgstr "Einheit für Außenmaße" -#: netbox/dcim/forms/bulk_import.py:213 netbox/dcim/forms/bulk_import.py:286 +#: dcim/forms/bulk_import.py:213 dcim/forms/bulk_import.py:286 msgid "Unit for rack weights" msgstr "Einheit für Rackgewichte" -#: netbox/dcim/forms/bulk_import.py:245 +#: dcim/forms/bulk_import.py:245 msgid "Name of assigned tenant" msgstr "Name des zugewiesenen Mandanten " -#: netbox/dcim/forms/bulk_import.py:257 +#: dcim/forms/bulk_import.py:257 msgid "Name of assigned role" msgstr "Name der zugewiesenen Rolle" -#: netbox/dcim/forms/bulk_import.py:280 netbox/dcim/forms/bulk_import.py:413 -#: netbox/dcim/forms/bulk_import.py:583 +#: dcim/forms/bulk_import.py:280 dcim/forms/bulk_import.py:413 +#: dcim/forms/bulk_import.py:583 msgid "Airflow direction" msgstr "Richtung des Luftstroms" -#: netbox/dcim/forms/bulk_import.py:312 +#: dcim/forms/bulk_import.py:312 msgid "Parent site" msgstr "Übergeordneter Standort" -#: netbox/dcim/forms/bulk_import.py:319 netbox/dcim/forms/bulk_import.py:1355 +#: dcim/forms/bulk_import.py:319 dcim/forms/bulk_import.py:1355 msgid "Rack's location (if any)" msgstr "Lokation des Racks (falls vorhanden)" -#: netbox/dcim/forms/bulk_import.py:328 netbox/dcim/forms/model_forms.py:311 -#: netbox/dcim/tables/racks.py:222 -#: netbox/templates/dcim/rackreservation.html:12 -#: netbox/templates/dcim/rackreservation.html:45 +#: dcim/forms/bulk_import.py:328 dcim/forms/model_forms.py:311 +#: dcim/tables/racks.py:222 templates/dcim/rackreservation.html:12 +#: templates/dcim/rackreservation.html:45 msgid "Units" msgstr "Einheiten" -#: netbox/dcim/forms/bulk_import.py:331 +#: dcim/forms/bulk_import.py:331 msgid "Comma-separated list of individual unit numbers" msgstr "Kommagetrennte Liste einzelner Einheitennummern" -#: netbox/dcim/forms/bulk_import.py:374 +#: dcim/forms/bulk_import.py:374 msgid "The manufacturer which produces this device type" msgstr "Der Hersteller, der diesen Gerätetyp herstellt" -#: netbox/dcim/forms/bulk_import.py:381 +#: dcim/forms/bulk_import.py:381 msgid "The default platform for devices of this type (optional)" msgstr "Das Standard-Betriebssystem für Geräte diesen Typs (optional)" -#: netbox/dcim/forms/bulk_import.py:386 +#: dcim/forms/bulk_import.py:386 msgid "Device weight" msgstr "Gewicht des Geräts" -#: netbox/dcim/forms/bulk_import.py:392 +#: dcim/forms/bulk_import.py:392 msgid "Unit for device weight" msgstr "Einheit für das Gerätegewicht" -#: netbox/dcim/forms/bulk_import.py:418 +#: dcim/forms/bulk_import.py:418 msgid "Module weight" msgstr "Gewicht des Moduls" -#: netbox/dcim/forms/bulk_import.py:424 +#: dcim/forms/bulk_import.py:424 msgid "Unit for module weight" msgstr "Einheit für das Modulgewicht" -#: netbox/dcim/forms/bulk_import.py:454 +#: dcim/forms/bulk_import.py:454 msgid "Limit platform assignments to this manufacturer" msgstr "Betriebssystem-Zuweisungen auf diesen Hersteller beschränken" -#: netbox/dcim/forms/bulk_import.py:476 netbox/dcim/forms/bulk_import.py:1425 -#: netbox/tenancy/forms/bulk_import.py:106 +#: dcim/forms/bulk_import.py:476 dcim/forms/bulk_import.py:1425 +#: tenancy/forms/bulk_import.py:106 msgid "Assigned role" msgstr "Zugewiesene Rolle" -#: netbox/dcim/forms/bulk_import.py:489 +#: dcim/forms/bulk_import.py:489 msgid "Device type manufacturer" msgstr "Gerätetyp Hersteller" -#: netbox/dcim/forms/bulk_import.py:495 +#: dcim/forms/bulk_import.py:495 msgid "Device type model" msgstr "Gerätetyp Modell" -#: netbox/dcim/forms/bulk_import.py:502 -#: netbox/virtualization/forms/bulk_import.py:126 +#: dcim/forms/bulk_import.py:502 virtualization/forms/bulk_import.py:126 msgid "Assigned platform" msgstr "Zugewiesenes Betriebssystem" -#: netbox/dcim/forms/bulk_import.py:510 netbox/dcim/forms/bulk_import.py:514 -#: netbox/dcim/forms/model_forms.py:536 +#: dcim/forms/bulk_import.py:510 dcim/forms/bulk_import.py:514 +#: dcim/forms/model_forms.py:536 msgid "Virtual chassis" msgstr "Virtuelles Gehäuse" -#: netbox/dcim/forms/bulk_import.py:517 netbox/dcim/forms/filtersets.py:728 -#: netbox/dcim/forms/filtersets.py:898 netbox/dcim/forms/model_forms.py:522 -#: netbox/dcim/tables/devices.py:202 netbox/extras/filtersets.py:596 -#: netbox/extras/forms/filtersets.py:322 netbox/ipam/forms/bulk_edit.py:482 -#: netbox/ipam/forms/filtersets.py:415 netbox/ipam/forms/filtersets.py:447 -#: netbox/templates/dcim/device.html:239 -#: netbox/templates/virtualization/cluster.html:10 -#: netbox/templates/virtualization/virtualmachine.html:92 -#: netbox/templates/virtualization/virtualmachine.html:101 -#: netbox/virtualization/filtersets.py:157 -#: netbox/virtualization/filtersets.py:277 -#: netbox/virtualization/forms/bulk_edit.py:129 -#: netbox/virtualization/forms/bulk_import.py:92 -#: netbox/virtualization/forms/filtersets.py:99 -#: netbox/virtualization/forms/filtersets.py:123 -#: netbox/virtualization/forms/filtersets.py:204 -#: netbox/virtualization/forms/model_forms.py:79 -#: netbox/virtualization/forms/model_forms.py:176 -#: netbox/virtualization/tables/virtualmachines.py:67 +#: dcim/forms/bulk_import.py:517 dcim/forms/filtersets.py:728 +#: dcim/forms/filtersets.py:898 dcim/forms/model_forms.py:522 +#: dcim/tables/devices.py:202 extras/filtersets.py:596 +#: extras/forms/filtersets.py:322 ipam/forms/filtersets.py:415 +#: ipam/forms/filtersets.py:447 templates/dcim/device.html:239 +#: templates/virtualization/cluster.html:10 +#: templates/virtualization/virtualmachine.html:92 +#: templates/virtualization/virtualmachine.html:101 +#: virtualization/filtersets.py:157 virtualization/filtersets.py:277 +#: virtualization/forms/bulk_edit.py:129 +#: virtualization/forms/bulk_import.py:92 +#: virtualization/forms/filtersets.py:99 +#: virtualization/forms/filtersets.py:123 +#: virtualization/forms/filtersets.py:204 +#: virtualization/forms/model_forms.py:79 +#: virtualization/forms/model_forms.py:176 +#: virtualization/tables/virtualmachines.py:67 msgid "Cluster" msgstr "Cluster" -#: netbox/dcim/forms/bulk_import.py:521 +#: dcim/forms/bulk_import.py:521 msgid "Virtualization cluster" msgstr "Virtualisierungscluster" -#: netbox/dcim/forms/bulk_import.py:550 +#: dcim/forms/bulk_import.py:550 msgid "Assigned location (if any)" msgstr "Zugewiesene Lokation (falls vorhanden)" -#: netbox/dcim/forms/bulk_import.py:557 +#: dcim/forms/bulk_import.py:557 msgid "Assigned rack (if any)" msgstr "Zugewiesenes Rack (falls vorhanden)" -#: netbox/dcim/forms/bulk_import.py:560 +#: dcim/forms/bulk_import.py:560 msgid "Face" msgstr "Ausrichtung" -#: netbox/dcim/forms/bulk_import.py:563 +#: dcim/forms/bulk_import.py:563 msgid "Mounted rack face" msgstr "Montierte Rackseite" -#: netbox/dcim/forms/bulk_import.py:570 +#: dcim/forms/bulk_import.py:570 msgid "Parent device (for child devices)" msgstr "Übergeordnetes Gerät (für untergeordnete Geräte)" -#: netbox/dcim/forms/bulk_import.py:573 +#: dcim/forms/bulk_import.py:573 msgid "Device bay" msgstr "Geräteeinsatz" -#: netbox/dcim/forms/bulk_import.py:577 +#: dcim/forms/bulk_import.py:577 msgid "Device bay in which this device is installed (for child devices)" msgstr "" "Geräteschacht, in dem dieses Gerät installiert ist (für untergeordnete " "Geräte)" -#: netbox/dcim/forms/bulk_import.py:644 +#: dcim/forms/bulk_import.py:644 msgid "The device in which this module is installed" msgstr "Das Gerät, in dem dieses Modul installiert ist" -#: netbox/dcim/forms/bulk_import.py:647 netbox/dcim/forms/model_forms.py:640 +#: dcim/forms/bulk_import.py:647 dcim/forms/model_forms.py:640 msgid "Module bay" msgstr "Moduleinsatz" -#: netbox/dcim/forms/bulk_import.py:650 +#: dcim/forms/bulk_import.py:650 msgid "The module bay in which this module is installed" msgstr "Der Modulschacht, in dem dieses Modul installiert ist" -#: netbox/dcim/forms/bulk_import.py:656 +#: dcim/forms/bulk_import.py:656 msgid "The type of module" msgstr "Der Typ des Moduls" -#: netbox/dcim/forms/bulk_import.py:664 netbox/dcim/forms/model_forms.py:656 +#: dcim/forms/bulk_import.py:664 dcim/forms/model_forms.py:656 msgid "Replicate components" msgstr "Komponenten replizieren" -#: netbox/dcim/forms/bulk_import.py:666 +#: dcim/forms/bulk_import.py:666 msgid "" "Automatically populate components associated with this module type (enabled " "by default)" @@ -4352,272 +3959,265 @@ msgstr "" "Automatisches Ausfüllen von Komponenten, die diesem Modultyp zugeordnet sind" " (standardmäßig aktiviert)" -#: netbox/dcim/forms/bulk_import.py:669 netbox/dcim/forms/model_forms.py:662 +#: dcim/forms/bulk_import.py:669 dcim/forms/model_forms.py:662 msgid "Adopt components" msgstr "Komponenten übernehmen" -#: netbox/dcim/forms/bulk_import.py:671 netbox/dcim/forms/model_forms.py:665 +#: dcim/forms/bulk_import.py:671 dcim/forms/model_forms.py:665 msgid "Adopt already existing components" msgstr "Übernehmen Sie bereits bestehende Komponenten" -#: netbox/dcim/forms/bulk_import.py:711 netbox/dcim/forms/bulk_import.py:737 -#: netbox/dcim/forms/bulk_import.py:763 +#: dcim/forms/bulk_import.py:711 dcim/forms/bulk_import.py:737 +#: dcim/forms/bulk_import.py:763 msgid "Port type" msgstr "Anschlusstyp" -#: netbox/dcim/forms/bulk_import.py:719 netbox/dcim/forms/bulk_import.py:745 +#: dcim/forms/bulk_import.py:719 dcim/forms/bulk_import.py:745 msgid "Port speed in bps" msgstr "Anschlussgeschwindigkeit in Bit/s" -#: netbox/dcim/forms/bulk_import.py:783 +#: dcim/forms/bulk_import.py:783 msgid "Outlet type" msgstr "Ausgangstyp" -#: netbox/dcim/forms/bulk_import.py:790 +#: dcim/forms/bulk_import.py:790 msgid "Local power port which feeds this outlet" msgstr "Lokaler Stromanschluss, der diese Steckdose speist" -#: netbox/dcim/forms/bulk_import.py:796 +#: dcim/forms/bulk_import.py:796 msgid "Electrical phase (for three-phase circuits)" msgstr "Elektrische Phase (für dreiphasige Stromkreise)" -#: netbox/dcim/forms/bulk_import.py:837 netbox/dcim/forms/model_forms.py:1316 -#: netbox/virtualization/forms/bulk_import.py:155 -#: netbox/virtualization/forms/model_forms.py:305 +#: dcim/forms/bulk_import.py:837 dcim/forms/model_forms.py:1316 +#: virtualization/forms/bulk_import.py:155 +#: virtualization/forms/model_forms.py:305 msgid "Parent interface" msgstr "Übergeordnete Schnittstelle" -#: netbox/dcim/forms/bulk_import.py:844 netbox/dcim/forms/model_forms.py:1324 -#: netbox/virtualization/forms/bulk_import.py:162 -#: netbox/virtualization/forms/model_forms.py:313 +#: dcim/forms/bulk_import.py:844 dcim/forms/model_forms.py:1324 +#: virtualization/forms/bulk_import.py:162 +#: virtualization/forms/model_forms.py:313 msgid "Bridged interface" msgstr "Überbrückte Schnittstelle" -#: netbox/dcim/forms/bulk_import.py:847 +#: dcim/forms/bulk_import.py:847 msgid "Lag" msgstr "Lag" -#: netbox/dcim/forms/bulk_import.py:851 +#: dcim/forms/bulk_import.py:851 msgid "Parent LAG interface" msgstr "Übergeordnete LAG-Schnittstelle" -#: netbox/dcim/forms/bulk_import.py:854 +#: dcim/forms/bulk_import.py:854 msgid "Vdcs" msgstr "Vdcs" -#: netbox/dcim/forms/bulk_import.py:859 +#: dcim/forms/bulk_import.py:859 msgid "VDC names separated by commas, encased with double quotes. Example:" msgstr "" "VDC-Namen, getrennt durch Kommas, umgeben von doppelten Anführungszeichen. " "Beispiel:" -#: netbox/dcim/forms/bulk_import.py:865 +#: dcim/forms/bulk_import.py:865 msgid "Physical medium" msgstr "Physikalisches Medium" -#: netbox/dcim/forms/bulk_import.py:868 netbox/dcim/forms/filtersets.py:1365 +#: dcim/forms/bulk_import.py:868 dcim/forms/filtersets.py:1365 msgid "Duplex" msgstr "Duplex" -#: netbox/dcim/forms/bulk_import.py:873 +#: dcim/forms/bulk_import.py:873 msgid "Poe mode" msgstr "PoE-Modus" -#: netbox/dcim/forms/bulk_import.py:879 +#: dcim/forms/bulk_import.py:879 msgid "Poe type" msgstr "PoE-Typ" -#: netbox/dcim/forms/bulk_import.py:888 -#: netbox/virtualization/forms/bulk_import.py:168 +#: dcim/forms/bulk_import.py:888 virtualization/forms/bulk_import.py:168 msgid "IEEE 802.1Q operational mode (for L2 interfaces)" msgstr "IEEE 802.1Q-Betriebsmodus (für L2-Schnittstellen)" -#: netbox/dcim/forms/bulk_import.py:895 netbox/ipam/forms/bulk_import.py:161 -#: netbox/ipam/forms/bulk_import.py:247 netbox/ipam/forms/bulk_import.py:283 -#: netbox/ipam/forms/filtersets.py:201 netbox/ipam/forms/filtersets.py:277 -#: netbox/ipam/forms/filtersets.py:336 -#: netbox/virtualization/forms/bulk_import.py:175 +#: dcim/forms/bulk_import.py:895 ipam/forms/bulk_import.py:161 +#: ipam/forms/bulk_import.py:247 ipam/forms/bulk_import.py:283 +#: ipam/forms/filtersets.py:201 ipam/forms/filtersets.py:277 +#: ipam/forms/filtersets.py:336 virtualization/forms/bulk_import.py:175 msgid "Assigned VRF" msgstr "Zugewiesenes VRF" -#: netbox/dcim/forms/bulk_import.py:898 +#: dcim/forms/bulk_import.py:898 msgid "Rf role" msgstr "Rf-Rolle" -#: netbox/dcim/forms/bulk_import.py:901 +#: dcim/forms/bulk_import.py:901 msgid "Wireless role (AP/station)" msgstr "WLAN Rolle (AP/Station)" -#: netbox/dcim/forms/bulk_import.py:937 +#: dcim/forms/bulk_import.py:937 #, python-brace-format msgid "VDC {vdc} is not assigned to device {device}" msgstr "VDC {vdc} ist dem Gerät {device} nicht zugewiesen" -#: netbox/dcim/forms/bulk_import.py:951 netbox/dcim/forms/model_forms.py:1000 -#: netbox/dcim/forms/model_forms.py:1575 -#: netbox/dcim/forms/object_import.py:117 +#: dcim/forms/bulk_import.py:951 dcim/forms/model_forms.py:1000 +#: dcim/forms/model_forms.py:1575 dcim/forms/object_import.py:117 msgid "Rear port" msgstr "Rückseitenanschluss" -#: netbox/dcim/forms/bulk_import.py:954 +#: dcim/forms/bulk_import.py:954 msgid "Corresponding rear port" msgstr "Entsprechender Rückanschluss" -#: netbox/dcim/forms/bulk_import.py:959 netbox/dcim/forms/bulk_import.py:1000 -#: netbox/dcim/forms/bulk_import.py:1216 +#: dcim/forms/bulk_import.py:959 dcim/forms/bulk_import.py:1000 +#: dcim/forms/bulk_import.py:1216 msgid "Physical medium classification" msgstr "Klassifizierung des physikalischen Mediums" -#: netbox/dcim/forms/bulk_import.py:1028 netbox/dcim/tables/devices.py:822 +#: dcim/forms/bulk_import.py:1028 dcim/tables/devices.py:822 msgid "Installed device" msgstr "Installiertes Gerät" -#: netbox/dcim/forms/bulk_import.py:1032 +#: dcim/forms/bulk_import.py:1032 msgid "Child device installed within this bay" msgstr "In diesem Schacht installiertes untergeordnetes Gerät" -#: netbox/dcim/forms/bulk_import.py:1034 +#: dcim/forms/bulk_import.py:1034 msgid "Child device not found." msgstr "Untergeordnetes Gerät wurde nicht gefunden." -#: netbox/dcim/forms/bulk_import.py:1092 +#: dcim/forms/bulk_import.py:1092 msgid "Parent inventory item" msgstr "Artikel aus dem übergeordneten Inventar" -#: netbox/dcim/forms/bulk_import.py:1095 +#: dcim/forms/bulk_import.py:1095 msgid "Component type" msgstr "Komponententyp" -#: netbox/dcim/forms/bulk_import.py:1099 +#: dcim/forms/bulk_import.py:1099 msgid "Component Type" msgstr "Komponententyp" -#: netbox/dcim/forms/bulk_import.py:1102 +#: dcim/forms/bulk_import.py:1102 msgid "Compnent name" msgstr "Name der Komponente" -#: netbox/dcim/forms/bulk_import.py:1104 +#: dcim/forms/bulk_import.py:1104 msgid "Component Name" msgstr "Name der Komponente" -#: netbox/dcim/forms/bulk_import.py:1146 +#: dcim/forms/bulk_import.py:1146 #, python-brace-format msgid "Component not found: {device} - {component_name}" msgstr "Komponente wurde nicht gefunden: {device} - {component_name}" -#: netbox/dcim/forms/bulk_import.py:1171 +#: dcim/forms/bulk_import.py:1171 msgid "Side A device" msgstr "Gerät Seite A" -#: netbox/dcim/forms/bulk_import.py:1174 netbox/dcim/forms/bulk_import.py:1192 +#: dcim/forms/bulk_import.py:1174 dcim/forms/bulk_import.py:1192 msgid "Device name" msgstr "Name des Geräts" -#: netbox/dcim/forms/bulk_import.py:1177 +#: dcim/forms/bulk_import.py:1177 msgid "Side A type" msgstr "Typ Seite A" -#: netbox/dcim/forms/bulk_import.py:1180 netbox/dcim/forms/bulk_import.py:1198 +#: dcim/forms/bulk_import.py:1180 dcim/forms/bulk_import.py:1198 msgid "Termination type" msgstr "Typ des Abschlusspunktes" -#: netbox/dcim/forms/bulk_import.py:1183 +#: dcim/forms/bulk_import.py:1183 msgid "Side A name" msgstr "Name der Seite A" -#: netbox/dcim/forms/bulk_import.py:1184 netbox/dcim/forms/bulk_import.py:1202 +#: dcim/forms/bulk_import.py:1184 dcim/forms/bulk_import.py:1202 msgid "Termination name" msgstr "Name des Abschlusspunktes" -#: netbox/dcim/forms/bulk_import.py:1189 +#: dcim/forms/bulk_import.py:1189 msgid "Side B device" msgstr "Gerät Seite B" -#: netbox/dcim/forms/bulk_import.py:1195 +#: dcim/forms/bulk_import.py:1195 msgid "Side B type" msgstr "Typ Seite B" -#: netbox/dcim/forms/bulk_import.py:1201 +#: dcim/forms/bulk_import.py:1201 msgid "Side B name" msgstr "Name der Seite B" -#: netbox/dcim/forms/bulk_import.py:1210 -#: netbox/wireless/forms/bulk_import.py:86 +#: dcim/forms/bulk_import.py:1210 wireless/forms/bulk_import.py:86 msgid "Connection status" msgstr "Status der Verbindung" -#: netbox/dcim/forms/bulk_import.py:1262 +#: dcim/forms/bulk_import.py:1262 #, python-brace-format msgid "Side {side_upper}: {device} {termination_object} is already connected" msgstr "" "Seite {side_upper}: {device} {termination_object} ist bereits verbunden" -#: netbox/dcim/forms/bulk_import.py:1268 +#: dcim/forms/bulk_import.py:1268 #, python-brace-format msgid "{side_upper} side termination not found: {device} {name}" msgstr "{side_upper} Seitlicher Abschluss nicht gefunden: {device} {name}" -#: netbox/dcim/forms/bulk_import.py:1293 netbox/dcim/forms/model_forms.py:785 -#: netbox/dcim/tables/devices.py:1027 netbox/templates/dcim/device.html:132 -#: netbox/templates/dcim/virtualchassis.html:27 -#: netbox/templates/dcim/virtualchassis.html:67 +#: dcim/forms/bulk_import.py:1293 dcim/forms/model_forms.py:785 +#: dcim/tables/devices.py:1027 templates/dcim/device.html:132 +#: templates/dcim/virtualchassis.html:27 templates/dcim/virtualchassis.html:67 msgid "Master" msgstr "Master" -#: netbox/dcim/forms/bulk_import.py:1297 +#: dcim/forms/bulk_import.py:1297 msgid "Master device" msgstr "Mastergerät" -#: netbox/dcim/forms/bulk_import.py:1314 +#: dcim/forms/bulk_import.py:1314 msgid "Name of parent site" msgstr "Name des übergeordneten Standorts" -#: netbox/dcim/forms/bulk_import.py:1348 +#: dcim/forms/bulk_import.py:1348 msgid "Upstream power panel" msgstr "vorgeschalteter Stromverteiler" -#: netbox/dcim/forms/bulk_import.py:1378 +#: dcim/forms/bulk_import.py:1378 msgid "Primary or redundant" msgstr "Primär oder redundant" -#: netbox/dcim/forms/bulk_import.py:1383 +#: dcim/forms/bulk_import.py:1383 msgid "Supply type (AC/DC)" msgstr "Versorgungsart (AC/DC)" -#: netbox/dcim/forms/bulk_import.py:1388 +#: dcim/forms/bulk_import.py:1388 msgid "Single or three-phase" msgstr "Ein- oder Dreiphasig" -#: netbox/dcim/forms/bulk_import.py:1439 netbox/dcim/forms/model_forms.py:1670 -#: netbox/templates/dcim/device.html:190 -#: netbox/templates/dcim/virtualdevicecontext.html:30 -#: netbox/templates/virtualization/virtualmachine.html:52 +#: dcim/forms/bulk_import.py:1439 dcim/forms/model_forms.py:1670 +#: templates/dcim/device.html:190 templates/dcim/virtualdevicecontext.html:30 +#: templates/virtualization/virtualmachine.html:52 msgid "Primary IPv4" msgstr "Primäre IPv4" -#: netbox/dcim/forms/bulk_import.py:1443 +#: dcim/forms/bulk_import.py:1443 msgid "IPv4 address with mask, e.g. 1.2.3.4/24" msgstr "IPv4-Adresse mit Maske, z. B. 1.2.3.4/24" -#: netbox/dcim/forms/bulk_import.py:1446 netbox/dcim/forms/model_forms.py:1679 -#: netbox/templates/dcim/device.html:206 -#: netbox/templates/dcim/virtualdevicecontext.html:41 -#: netbox/templates/virtualization/virtualmachine.html:68 +#: dcim/forms/bulk_import.py:1446 dcim/forms/model_forms.py:1679 +#: templates/dcim/device.html:206 templates/dcim/virtualdevicecontext.html:41 +#: templates/virtualization/virtualmachine.html:68 msgid "Primary IPv6" msgstr "Primäre IPv6" -#: netbox/dcim/forms/bulk_import.py:1450 +#: dcim/forms/bulk_import.py:1450 msgid "IPv6 address with prefix length, e.g. 2001:db8::1/64" msgstr "IPv6-Adresse mit Präfixlänge, z. B. 2001:db8: :1/64" -#: netbox/dcim/forms/common.py:24 netbox/dcim/models/device_components.py:527 -#: netbox/templates/dcim/interface.html:57 -#: netbox/templates/virtualization/vminterface.html:55 -#: netbox/virtualization/forms/bulk_edit.py:225 +#: dcim/forms/common.py:24 dcim/models/device_components.py:527 +#: templates/dcim/interface.html:57 +#: templates/virtualization/vminterface.html:55 +#: virtualization/forms/bulk_edit.py:225 msgid "MTU" msgstr "MTU" -#: netbox/dcim/forms/common.py:65 +#: dcim/forms/common.py:65 #, python-brace-format msgid "" "The tagged VLANs ({vlans}) must belong to the same site as the interface's " @@ -4627,7 +4227,7 @@ msgstr "" "übergeordnete Gerät/die übergeordnete VM der Schnittstelle, oder sie müssen " "global sein" -#: netbox/dcim/forms/common.py:126 +#: dcim/forms/common.py:126 msgid "" "Cannot install module with placeholder values in a module bay with no " "position defined." @@ -4635,7 +4235,7 @@ msgstr "" "Das Modul mit Platzhalterwerten kann nicht in einem Modulschacht ohne " "definierte Position installiert werden." -#: netbox/dcim/forms/common.py:131 +#: dcim/forms/common.py:131 #, python-brace-format msgid "" "Cannot install module with placeholder values in a module bay tree {level} " @@ -4644,204 +4244,189 @@ msgstr "" "Modul mit Platzhalterwerten kann nicht in einem Modul-Baytree installiert " "werden {level} in einem Baum, aber {tokens} Platzhalter angegeben." -#: netbox/dcim/forms/common.py:144 +#: dcim/forms/common.py:144 #, python-brace-format msgid "Cannot adopt {model} {name} as it already belongs to a module" msgstr "" "Kann nicht adoptieren {model} {name} da es schon zu einem Modul gehört" -#: netbox/dcim/forms/common.py:153 +#: dcim/forms/common.py:153 #, python-brace-format msgid "A {model} named {name} already exists" msgstr "Ein {model} genannt {name} existiert bereits" -#: netbox/dcim/forms/connections.py:49 netbox/dcim/forms/model_forms.py:738 -#: netbox/dcim/tables/power.py:66 -#: netbox/templates/dcim/inc/cable_termination.html:37 -#: netbox/templates/dcim/powerfeed.html:24 -#: netbox/templates/dcim/powerpanel.html:19 -#: netbox/templates/dcim/trace/powerpanel.html:4 +#: dcim/forms/connections.py:49 dcim/forms/model_forms.py:738 +#: dcim/tables/power.py:66 templates/dcim/inc/cable_termination.html:37 +#: templates/dcim/powerfeed.html:24 templates/dcim/powerpanel.html:19 +#: templates/dcim/trace/powerpanel.html:4 msgid "Power Panel" msgstr "Stromverteiler" -#: netbox/dcim/forms/connections.py:58 netbox/dcim/forms/model_forms.py:765 -#: netbox/templates/dcim/powerfeed.html:21 -#: netbox/templates/dcim/powerport.html:80 +#: dcim/forms/connections.py:58 dcim/forms/model_forms.py:765 +#: templates/dcim/powerfeed.html:21 templates/dcim/powerport.html:80 msgid "Power Feed" msgstr "Stromzufuhr" -#: netbox/dcim/forms/connections.py:81 +#: dcim/forms/connections.py:81 msgid "Side" msgstr "Seite" -#: netbox/dcim/forms/filtersets.py:136 netbox/dcim/tables/devices.py:295 +#: dcim/forms/filtersets.py:136 dcim/tables/devices.py:295 msgid "Device Status" msgstr "Gerätestatus" -#: netbox/dcim/forms/filtersets.py:149 +#: dcim/forms/filtersets.py:149 msgid "Parent region" msgstr "Übergeordnete Region" -#: netbox/dcim/forms/filtersets.py:163 netbox/tenancy/forms/bulk_import.py:28 -#: netbox/tenancy/forms/bulk_import.py:62 -#: netbox/tenancy/forms/filtersets.py:33 netbox/tenancy/forms/filtersets.py:62 -#: netbox/wireless/forms/bulk_import.py:25 -#: netbox/wireless/forms/filtersets.py:25 +#: dcim/forms/filtersets.py:163 tenancy/forms/bulk_import.py:28 +#: tenancy/forms/bulk_import.py:62 tenancy/forms/filtersets.py:33 +#: tenancy/forms/filtersets.py:62 wireless/forms/bulk_import.py:25 +#: wireless/forms/filtersets.py:25 msgid "Parent group" msgstr "Übergeordnete Gruppe" -#: netbox/dcim/forms/filtersets.py:242 netbox/templates/dcim/location.html:58 -#: netbox/templates/dcim/site.html:56 +#: dcim/forms/filtersets.py:242 templates/dcim/location.html:58 +#: templates/dcim/site.html:56 msgid "Facility" msgstr "Einrichtung" -#: netbox/dcim/forms/filtersets.py:380 +#: dcim/forms/filtersets.py:380 msgid "Rack type" msgstr "Racktyp" -#: netbox/dcim/forms/filtersets.py:397 +#: dcim/forms/filtersets.py:397 msgid "Function" msgstr "Funktion" -#: netbox/dcim/forms/filtersets.py:483 netbox/dcim/forms/model_forms.py:373 -#: netbox/templates/inc/panels/image_attachments.html:6 +#: dcim/forms/filtersets.py:483 dcim/forms/model_forms.py:373 +#: templates/inc/panels/image_attachments.html:6 msgid "Images" msgstr "Bilder" -#: netbox/dcim/forms/filtersets.py:486 netbox/dcim/forms/filtersets.py:611 -#: netbox/dcim/forms/filtersets.py:726 +#: dcim/forms/filtersets.py:486 dcim/forms/filtersets.py:611 +#: dcim/forms/filtersets.py:726 msgid "Components" msgstr "Komponenten" -#: netbox/dcim/forms/filtersets.py:506 +#: dcim/forms/filtersets.py:506 msgid "Subdevice role" msgstr "Rolle des Untergeräts" -#: netbox/dcim/forms/filtersets.py:790 netbox/dcim/tables/racks.py:54 -#: netbox/templates/dcim/racktype.html:20 +#: dcim/forms/filtersets.py:790 dcim/tables/racks.py:54 +#: templates/dcim/racktype.html:20 msgid "Model" msgstr "Modell" -#: netbox/dcim/forms/filtersets.py:834 +#: dcim/forms/filtersets.py:834 msgid "Has an OOB IP" msgstr "Hat eine OOB-IP" -#: netbox/dcim/forms/filtersets.py:841 +#: dcim/forms/filtersets.py:841 msgid "Virtual chassis member" msgstr "Virtuelles Gehäusemitglied" -#: netbox/dcim/forms/filtersets.py:890 +#: dcim/forms/filtersets.py:890 msgid "Has virtual device contexts" msgstr "Hat Virtual Device Contexts" -#: netbox/dcim/forms/filtersets.py:903 netbox/extras/filtersets.py:585 -#: netbox/ipam/forms/bulk_edit.py:479 netbox/ipam/forms/filtersets.py:452 -#: netbox/virtualization/forms/filtersets.py:112 +#: dcim/forms/filtersets.py:903 extras/filtersets.py:585 +#: ipam/forms/filtersets.py:452 virtualization/forms/filtersets.py:112 msgid "Cluster group" msgstr "Clustergruppe" -#: netbox/dcim/forms/filtersets.py:1210 +#: dcim/forms/filtersets.py:1210 msgid "Cabled" msgstr "Verkabelt" -#: netbox/dcim/forms/filtersets.py:1217 +#: dcim/forms/filtersets.py:1217 msgid "Occupied" msgstr "Belegt" -#: netbox/dcim/forms/filtersets.py:1244 netbox/dcim/forms/filtersets.py:1269 -#: netbox/dcim/forms/filtersets.py:1293 netbox/dcim/forms/filtersets.py:1313 -#: netbox/dcim/forms/filtersets.py:1336 netbox/dcim/tables/devices.py:364 -#: netbox/templates/dcim/consoleport.html:55 -#: netbox/templates/dcim/consoleserverport.html:55 -#: netbox/templates/dcim/frontport.html:69 -#: netbox/templates/dcim/interface.html:140 -#: netbox/templates/dcim/powerfeed.html:110 -#: netbox/templates/dcim/poweroutlet.html:59 -#: netbox/templates/dcim/powerport.html:59 -#: netbox/templates/dcim/rearport.html:65 +#: dcim/forms/filtersets.py:1244 dcim/forms/filtersets.py:1269 +#: dcim/forms/filtersets.py:1293 dcim/forms/filtersets.py:1313 +#: dcim/forms/filtersets.py:1336 dcim/tables/devices.py:364 +#: templates/dcim/consoleport.html:55 templates/dcim/consoleserverport.html:55 +#: templates/dcim/frontport.html:69 templates/dcim/interface.html:140 +#: templates/dcim/powerfeed.html:110 templates/dcim/poweroutlet.html:59 +#: templates/dcim/powerport.html:59 templates/dcim/rearport.html:65 msgid "Connection" msgstr "Verbindung" -#: netbox/dcim/forms/filtersets.py:1348 netbox/extras/forms/bulk_edit.py:326 -#: netbox/extras/forms/bulk_import.py:247 -#: netbox/extras/forms/filtersets.py:464 -#: netbox/extras/forms/model_forms.py:675 netbox/extras/tables/tables.py:579 -#: netbox/templates/extras/journalentry.html:30 +#: dcim/forms/filtersets.py:1348 extras/forms/bulk_edit.py:326 +#: extras/forms/bulk_import.py:247 extras/forms/filtersets.py:464 +#: extras/forms/model_forms.py:675 extras/tables/tables.py:579 +#: templates/extras/journalentry.html:30 msgid "Kind" msgstr "Art" -#: netbox/dcim/forms/filtersets.py:1377 +#: dcim/forms/filtersets.py:1377 msgid "Mgmt only" msgstr "Nur Verwaltung" -#: netbox/dcim/forms/filtersets.py:1389 netbox/dcim/forms/model_forms.py:1383 -#: netbox/dcim/models/device_components.py:629 -#: netbox/templates/dcim/interface.html:129 +#: dcim/forms/filtersets.py:1389 dcim/forms/model_forms.py:1383 +#: dcim/models/device_components.py:629 templates/dcim/interface.html:129 msgid "WWN" msgstr "WWN" -#: netbox/dcim/forms/filtersets.py:1409 +#: dcim/forms/filtersets.py:1409 msgid "Wireless channel" msgstr "WLAN Kanal" -#: netbox/dcim/forms/filtersets.py:1413 +#: dcim/forms/filtersets.py:1413 msgid "Channel frequency (MHz)" msgstr "Kanalfrequenz (MHz)" -#: netbox/dcim/forms/filtersets.py:1417 +#: dcim/forms/filtersets.py:1417 msgid "Channel width (MHz)" msgstr "Kanalbreite (MHz)" -#: netbox/dcim/forms/filtersets.py:1421 -#: netbox/templates/dcim/interface.html:85 +#: dcim/forms/filtersets.py:1421 templates/dcim/interface.html:85 msgid "Transmit power (dBm)" msgstr "Sendeleistung (dBm)" -#: netbox/dcim/forms/filtersets.py:1446 netbox/dcim/forms/filtersets.py:1471 -#: netbox/dcim/tables/devices.py:327 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:50 -#: netbox/templates/dcim/inc/connection_endpoints.html:4 -#: netbox/templates/dcim/rearport.html:73 -#: netbox/templates/dcim/trace/cable.html:7 +#: dcim/forms/filtersets.py:1446 dcim/forms/filtersets.py:1471 +#: dcim/tables/devices.py:327 templates/dcim/cable.html:12 +#: templates/dcim/cable_trace.html:46 templates/dcim/frontport.html:77 +#: templates/dcim/htmx/cable_edit.html:50 +#: templates/dcim/inc/connection_endpoints.html:4 +#: templates/dcim/rearport.html:73 templates/dcim/trace/cable.html:7 msgid "Cable" msgstr "Kabel" -#: netbox/dcim/forms/filtersets.py:1550 netbox/dcim/tables/devices.py:949 +#: dcim/forms/filtersets.py:1550 dcim/tables/devices.py:949 msgid "Discovered" msgstr "Erfasst" -#: netbox/dcim/forms/formsets.py:20 +#: dcim/forms/formsets.py:20 #, python-brace-format msgid "A virtual chassis member already exists in position {vc_position}." msgstr "Ein virtuelles Chassismitglied ist bereits in Position {vc_position}." -#: netbox/dcim/forms/model_forms.py:140 +#: dcim/forms/model_forms.py:140 msgid "Contact Info" msgstr "Kontaktinformationen" -#: netbox/dcim/forms/model_forms.py:195 netbox/templates/dcim/rackrole.html:19 +#: dcim/forms/model_forms.py:195 templates/dcim/rackrole.html:19 msgid "Rack Role" msgstr "Rackrolle" -#: netbox/dcim/forms/model_forms.py:212 netbox/dcim/forms/model_forms.py:362 -#: netbox/dcim/forms/model_forms.py:446 -#: netbox/utilities/forms/fields/fields.py:47 +#: dcim/forms/model_forms.py:212 dcim/forms/model_forms.py:362 +#: dcim/forms/model_forms.py:446 utilities/forms/fields/fields.py:47 msgid "Slug" msgstr "URL-Slug" -#: netbox/dcim/forms/model_forms.py:259 +#: dcim/forms/model_forms.py:259 msgid "Select a pre-defined rack type, or set physical characteristics below." msgstr "" "Wählen Sie einen vordefinierten Racktyp oder legen Sie unten die " "physikalischen Eigenschaften fest." -#: netbox/dcim/forms/model_forms.py:265 +#: dcim/forms/model_forms.py:265 msgid "Inventory Control" msgstr "Inventarsteuerung" -#: netbox/dcim/forms/model_forms.py:313 +#: dcim/forms/model_forms.py:313 msgid "" "Comma-separated list of numeric unit IDs. A range may be specified using a " "hyphen." @@ -4849,165 +4434,148 @@ msgstr "" "Kommagetrennte Liste numerischer Einheiten-IDs. Ein Bereich kann mit einem " "Bindestrich angegeben werden." -#: netbox/dcim/forms/model_forms.py:322 netbox/dcim/tables/racks.py:202 +#: dcim/forms/model_forms.py:322 dcim/tables/racks.py:202 msgid "Reservation" msgstr "Reservierung" -#: netbox/dcim/forms/model_forms.py:423 -#: netbox/templates/dcim/devicerole.html:23 +#: dcim/forms/model_forms.py:423 templates/dcim/devicerole.html:23 msgid "Device Role" msgstr "Rolle des Geräts" -#: netbox/dcim/forms/model_forms.py:490 netbox/dcim/models/devices.py:644 +#: dcim/forms/model_forms.py:490 dcim/models/devices.py:644 msgid "The lowest-numbered unit occupied by the device" msgstr "Die HE mit der niedrigsten Nummer, die vom Gerät belegt ist" -#: netbox/dcim/forms/model_forms.py:547 +#: dcim/forms/model_forms.py:547 msgid "The position in the virtual chassis this device is identified by" msgstr "" "Die Position im virtuellen Gehäuse, durch die dieses Gerät identifiziert " "wird" -#: netbox/dcim/forms/model_forms.py:552 +#: dcim/forms/model_forms.py:552 msgid "The priority of the device in the virtual chassis" msgstr "Die Priorität des Geräts im virtuellen Gehäuse" -#: netbox/dcim/forms/model_forms.py:659 +#: dcim/forms/model_forms.py:659 msgid "Automatically populate components associated with this module type" msgstr "" "Füllen Sie automatisch Komponenten aus, die diesem Modultyp zugeordnet sind" -#: netbox/dcim/forms/model_forms.py:767 +#: dcim/forms/model_forms.py:767 msgid "Characteristics" msgstr "Charakteristiken" -#: netbox/dcim/forms/model_forms.py:1087 +#: dcim/forms/model_forms.py:1087 msgid "Console port template" msgstr "Konsolenanschlussvorlage" -#: netbox/dcim/forms/model_forms.py:1095 +#: dcim/forms/model_forms.py:1095 msgid "Console server port template" msgstr "Port-Vorlage für Konsolenserver" -#: netbox/dcim/forms/model_forms.py:1103 +#: dcim/forms/model_forms.py:1103 msgid "Front port template" msgstr "Frontanschluss-Vorlage" -#: netbox/dcim/forms/model_forms.py:1111 +#: dcim/forms/model_forms.py:1111 msgid "Interface template" msgstr "Schnittstellen-Vorlage" -#: netbox/dcim/forms/model_forms.py:1119 +#: dcim/forms/model_forms.py:1119 msgid "Power outlet template" msgstr "Vorlage für Steckdosen" -#: netbox/dcim/forms/model_forms.py:1127 +#: dcim/forms/model_forms.py:1127 msgid "Power port template" msgstr "Vorlage für Stromverteiler" -#: netbox/dcim/forms/model_forms.py:1135 +#: dcim/forms/model_forms.py:1135 msgid "Rear port template" msgstr "Vorlage für den hinteren Anschluss" -#: netbox/dcim/forms/model_forms.py:1144 netbox/dcim/forms/model_forms.py:1388 -#: netbox/dcim/forms/model_forms.py:1551 netbox/dcim/forms/model_forms.py:1583 -#: netbox/dcim/tables/connections.py:65 netbox/ipam/forms/bulk_import.py:318 -#: netbox/ipam/forms/model_forms.py:280 netbox/ipam/forms/model_forms.py:289 -#: netbox/ipam/tables/fhrp.py:64 netbox/ipam/tables/ip.py:372 -#: netbox/ipam/tables/vlans.py:169 -#: netbox/templates/circuits/inc/circuit_termination_fields.html:51 -#: netbox/templates/dcim/frontport.html:106 -#: netbox/templates/dcim/interface.html:27 -#: netbox/templates/dcim/interface.html:184 -#: netbox/templates/dcim/interface.html:310 -#: netbox/templates/dcim/rearport.html:102 -#: netbox/templates/virtualization/vminterface.html:18 -#: netbox/templates/vpn/tunneltermination.html:31 -#: netbox/templates/wireless/inc/wirelesslink_interface.html:10 -#: netbox/templates/wireless/wirelesslink.html:10 -#: netbox/templates/wireless/wirelesslink.html:55 -#: netbox/virtualization/forms/model_forms.py:348 -#: netbox/vpn/forms/bulk_import.py:297 netbox/vpn/forms/model_forms.py:436 -#: netbox/vpn/forms/model_forms.py:445 -#: netbox/wireless/forms/model_forms.py:113 -#: netbox/wireless/forms/model_forms.py:155 +#: dcim/forms/model_forms.py:1144 dcim/forms/model_forms.py:1388 +#: dcim/forms/model_forms.py:1551 dcim/forms/model_forms.py:1583 +#: dcim/tables/connections.py:65 ipam/forms/bulk_import.py:318 +#: ipam/forms/model_forms.py:280 ipam/forms/model_forms.py:289 +#: ipam/tables/fhrp.py:64 ipam/tables/ip.py:372 ipam/tables/vlans.py:169 +#: templates/circuits/inc/circuit_termination_fields.html:51 +#: templates/dcim/frontport.html:106 templates/dcim/interface.html:27 +#: templates/dcim/interface.html:184 templates/dcim/interface.html:310 +#: templates/dcim/rearport.html:102 +#: templates/virtualization/vminterface.html:18 +#: templates/vpn/tunneltermination.html:31 +#: templates/wireless/inc/wirelesslink_interface.html:10 +#: templates/wireless/wirelesslink.html:10 +#: templates/wireless/wirelesslink.html:55 +#: virtualization/forms/model_forms.py:348 vpn/forms/bulk_import.py:297 +#: vpn/forms/model_forms.py:436 vpn/forms/model_forms.py:445 +#: wireless/forms/model_forms.py:113 wireless/forms/model_forms.py:155 msgid "Interface" msgstr "Schnittstelle" -#: netbox/dcim/forms/model_forms.py:1145 netbox/dcim/forms/model_forms.py:1584 -#: netbox/dcim/tables/connections.py:27 -#: netbox/templates/dcim/consoleport.html:17 -#: netbox/templates/dcim/consoleserverport.html:74 -#: netbox/templates/dcim/frontport.html:112 +#: dcim/forms/model_forms.py:1145 dcim/forms/model_forms.py:1584 +#: dcim/tables/connections.py:27 templates/dcim/consoleport.html:17 +#: templates/dcim/consoleserverport.html:74 templates/dcim/frontport.html:112 msgid "Console Port" msgstr "Konsolenanschluss" -#: netbox/dcim/forms/model_forms.py:1146 netbox/dcim/forms/model_forms.py:1585 -#: netbox/templates/dcim/consoleport.html:73 -#: netbox/templates/dcim/consoleserverport.html:17 -#: netbox/templates/dcim/frontport.html:109 +#: dcim/forms/model_forms.py:1146 dcim/forms/model_forms.py:1585 +#: templates/dcim/consoleport.html:73 templates/dcim/consoleserverport.html:17 +#: templates/dcim/frontport.html:109 msgid "Console Server Port" msgstr "Konsolenserveranschluss" -#: netbox/dcim/forms/model_forms.py:1147 netbox/dcim/forms/model_forms.py:1586 -#: netbox/templates/circuits/inc/circuit_termination_fields.html:52 -#: netbox/templates/dcim/consoleport.html:76 -#: netbox/templates/dcim/consoleserverport.html:77 -#: netbox/templates/dcim/frontport.html:17 -#: netbox/templates/dcim/frontport.html:115 -#: netbox/templates/dcim/interface.html:187 -#: netbox/templates/dcim/rearport.html:105 +#: dcim/forms/model_forms.py:1147 dcim/forms/model_forms.py:1586 +#: templates/circuits/inc/circuit_termination_fields.html:52 +#: templates/dcim/consoleport.html:76 templates/dcim/consoleserverport.html:77 +#: templates/dcim/frontport.html:17 templates/dcim/frontport.html:115 +#: templates/dcim/interface.html:187 templates/dcim/rearport.html:105 msgid "Front Port" msgstr "Frontanschluss" -#: netbox/dcim/forms/model_forms.py:1148 netbox/dcim/forms/model_forms.py:1587 -#: netbox/dcim/tables/devices.py:710 -#: netbox/templates/circuits/inc/circuit_termination_fields.html:53 -#: netbox/templates/dcim/consoleport.html:79 -#: netbox/templates/dcim/consoleserverport.html:80 -#: netbox/templates/dcim/frontport.html:50 -#: netbox/templates/dcim/frontport.html:118 -#: netbox/templates/dcim/interface.html:190 -#: netbox/templates/dcim/rearport.html:17 -#: netbox/templates/dcim/rearport.html:108 +#: dcim/forms/model_forms.py:1148 dcim/forms/model_forms.py:1587 +#: dcim/tables/devices.py:710 +#: templates/circuits/inc/circuit_termination_fields.html:53 +#: templates/dcim/consoleport.html:79 templates/dcim/consoleserverport.html:80 +#: templates/dcim/frontport.html:50 templates/dcim/frontport.html:118 +#: templates/dcim/interface.html:190 templates/dcim/rearport.html:17 +#: templates/dcim/rearport.html:108 msgid "Rear Port" msgstr "Rückanschluss" -#: netbox/dcim/forms/model_forms.py:1149 netbox/dcim/forms/model_forms.py:1588 -#: netbox/dcim/tables/connections.py:46 netbox/dcim/tables/devices.py:512 -#: netbox/templates/dcim/poweroutlet.html:44 -#: netbox/templates/dcim/powerport.html:17 +#: dcim/forms/model_forms.py:1149 dcim/forms/model_forms.py:1588 +#: dcim/tables/connections.py:46 dcim/tables/devices.py:512 +#: templates/dcim/poweroutlet.html:44 templates/dcim/powerport.html:17 msgid "Power Port" msgstr "Stromanschluss" -#: netbox/dcim/forms/model_forms.py:1150 netbox/dcim/forms/model_forms.py:1589 -#: netbox/templates/dcim/poweroutlet.html:17 -#: netbox/templates/dcim/powerport.html:77 +#: dcim/forms/model_forms.py:1150 dcim/forms/model_forms.py:1589 +#: templates/dcim/poweroutlet.html:17 templates/dcim/powerport.html:77 msgid "Power Outlet" msgstr "Stromabgang" -#: netbox/dcim/forms/model_forms.py:1152 netbox/dcim/forms/model_forms.py:1591 +#: dcim/forms/model_forms.py:1152 dcim/forms/model_forms.py:1591 msgid "Component Assignment" msgstr "Komponentenzuweisung" -#: netbox/dcim/forms/model_forms.py:1195 netbox/dcim/forms/model_forms.py:1638 +#: dcim/forms/model_forms.py:1195 dcim/forms/model_forms.py:1638 msgid "An InventoryItem can only be assigned to a single component." msgstr "" "Ein InventoryItem kann nur einer einzelnen Komponente zugewiesen werden." -#: netbox/dcim/forms/model_forms.py:1332 +#: dcim/forms/model_forms.py:1332 msgid "LAG interface" msgstr "LAG-Schnittstelle" -#: netbox/dcim/forms/model_forms.py:1355 +#: dcim/forms/model_forms.py:1355 msgid "Filter VLANs available for assignment by group." msgstr "Filtern Sie VLANs, die für die Zuweisung nach Gruppen verfügbar sind." -#: netbox/dcim/forms/model_forms.py:1484 +#: dcim/forms/model_forms.py:1484 msgid "Child Device" msgstr "untergeordnetes Gerät" -#: netbox/dcim/forms/model_forms.py:1485 +#: dcim/forms/model_forms.py:1485 msgid "" "Child devices must first be created and assigned to the site and rack of the" " parent device." @@ -5015,35 +4583,32 @@ msgstr "" "Untergeordnete Geräte müssen zuerst erstellt und dem Standort und dem Rack " "des übergeordneten Geräts zugewiesen werden." -#: netbox/dcim/forms/model_forms.py:1527 +#: dcim/forms/model_forms.py:1527 msgid "Console port" msgstr "Konsolenanschluss" -#: netbox/dcim/forms/model_forms.py:1535 +#: dcim/forms/model_forms.py:1535 msgid "Console server port" msgstr "Konsolenserveranschluss" -#: netbox/dcim/forms/model_forms.py:1543 +#: dcim/forms/model_forms.py:1543 msgid "Front port" msgstr "Frontanschluss" -#: netbox/dcim/forms/model_forms.py:1559 +#: dcim/forms/model_forms.py:1559 msgid "Power outlet" msgstr "Stromabgang" -#: netbox/dcim/forms/model_forms.py:1579 -#: netbox/templates/dcim/inventoryitem.html:17 +#: dcim/forms/model_forms.py:1579 templates/dcim/inventoryitem.html:17 msgid "Inventory Item" msgstr "Inventar-Artikel" -#: netbox/dcim/forms/model_forms.py:1652 -#: netbox/templates/dcim/inventoryitemrole.html:15 +#: dcim/forms/model_forms.py:1652 templates/dcim/inventoryitemrole.html:15 msgid "Inventory Item Role" msgstr "Rolle des Inventarartikels" -#: netbox/dcim/forms/object_create.py:48 -#: netbox/dcim/forms/object_create.py:199 -#: netbox/dcim/forms/object_create.py:355 +#: dcim/forms/object_create.py:48 dcim/forms/object_create.py:199 +#: dcim/forms/object_create.py:355 msgid "" "Alphanumeric ranges are supported. (Must match the number of objects being " "created.)" @@ -5051,7 +4616,7 @@ msgstr "" "Alphanumerische Bereiche werden unterstützt. (Muss der Anzahl der Objekte " "entsprechen, die erstellt werden.)" -#: netbox/dcim/forms/object_create.py:68 +#: dcim/forms/object_create.py:68 #, python-brace-format msgid "" "The provided pattern specifies {value_count} values, but {pattern_count} are" @@ -5060,19 +4625,18 @@ msgstr "" "Das bereitgestellte Muster spezifiziert {value_count} Werte, aber " "{pattern_count} werden erwartet." -#: netbox/dcim/forms/object_create.py:110 -#: netbox/dcim/forms/object_create.py:271 netbox/dcim/tables/devices.py:252 +#: dcim/forms/object_create.py:110 dcim/forms/object_create.py:271 +#: dcim/tables/devices.py:252 msgid "Rear ports" msgstr "Rückanschlüsse" -#: netbox/dcim/forms/object_create.py:111 -#: netbox/dcim/forms/object_create.py:272 +#: dcim/forms/object_create.py:111 dcim/forms/object_create.py:272 msgid "Select one rear port assignment for each front port being created." msgstr "" "Wählen Sie für jeden zu erstellenden Frontanschluss eine hintere Anschluss-" "Zuweisung aus." -#: netbox/dcim/forms/object_create.py:164 +#: dcim/forms/object_create.py:164 #, python-brace-format msgid "" "The number of front port templates to be created ({frontport_count}) must " @@ -5082,7 +4646,7 @@ msgstr "" "muss mit der ausgewählten Anzahl der hinteren Anschlusspositionen " "übereinstimmen ({rearport_count})." -#: netbox/dcim/forms/object_create.py:251 +#: dcim/forms/object_create.py:251 #, python-brace-format msgid "" "The string {module} will be replaced with the position of the " @@ -5091,7 +4655,7 @@ msgstr "" "Die Zeichenkette {module} wird durch die Position des " "zugewiesenen Moduls ersetzt, falls vorhanden." -#: netbox/dcim/forms/object_create.py:320 +#: dcim/forms/object_create.py:320 #, python-brace-format msgid "" "The number of front ports to be created ({frontport_count}) must match the " @@ -5101,18 +4665,17 @@ msgstr "" "der ausgewählten Anzahl der hinteren Anschlusspositionen übereinstimmen " "({rearport_count})." -#: netbox/dcim/forms/object_create.py:409 netbox/dcim/tables/devices.py:1033 -#: netbox/ipam/tables/fhrp.py:31 netbox/templates/dcim/virtualchassis.html:53 -#: netbox/templates/dcim/virtualchassis_edit.html:47 -#: netbox/templates/ipam/fhrpgroup.html:38 +#: dcim/forms/object_create.py:409 dcim/tables/devices.py:1033 +#: ipam/tables/fhrp.py:31 templates/dcim/virtualchassis.html:53 +#: templates/dcim/virtualchassis_edit.html:47 templates/ipam/fhrpgroup.html:38 msgid "Members" msgstr "Mitglieder" -#: netbox/dcim/forms/object_create.py:418 +#: dcim/forms/object_create.py:418 msgid "Initial position" msgstr "Ausgangsposition" -#: netbox/dcim/forms/object_create.py:421 +#: dcim/forms/object_create.py:421 msgid "" "Position of the first member device. Increases by one for each additional " "member." @@ -5120,72 +4683,70 @@ msgstr "" "Position des ersten Mitgliedsgeräts. Erhöht sich für jedes weitere Mitglied " "um eins." -#: netbox/dcim/forms/object_create.py:435 +#: dcim/forms/object_create.py:435 msgid "A position must be specified for the first VC member." msgstr "Für das erste VC-Mitglied muss eine Position angegeben werden." -#: netbox/dcim/models/cables.py:62 -#: netbox/dcim/models/device_component_templates.py:55 -#: netbox/dcim/models/device_components.py:62 -#: netbox/extras/models/customfields.py:111 +#: dcim/models/cables.py:62 dcim/models/device_component_templates.py:55 +#: dcim/models/device_components.py:62 extras/models/customfields.py:111 msgid "label" msgstr "Label" -#: netbox/dcim/models/cables.py:71 +#: dcim/models/cables.py:71 msgid "length" msgstr "Länge" -#: netbox/dcim/models/cables.py:78 +#: dcim/models/cables.py:78 msgid "length unit" msgstr "Längeneinheit" -#: netbox/dcim/models/cables.py:95 +#: dcim/models/cables.py:95 msgid "cable" msgstr "Kabel" -#: netbox/dcim/models/cables.py:96 +#: dcim/models/cables.py:96 msgid "cables" msgstr "Kabel" -#: netbox/dcim/models/cables.py:165 +#: dcim/models/cables.py:165 msgid "Must specify a unit when setting a cable length" msgstr "Bei der Eingabe einer Kabellänge muss eine Einheit angegeben werden" -#: netbox/dcim/models/cables.py:168 +#: dcim/models/cables.py:168 msgid "Must define A and B terminations when creating a new cable." msgstr "" "Beim Erstellen eines neuen Kabels müssen A- und B-Anschlüsse definiert " "werden." -#: netbox/dcim/models/cables.py:175 +#: dcim/models/cables.py:175 msgid "Cannot connect different termination types to same end of cable." msgstr "" "Verschiedene Anschlusstypen können nicht an dasselbe Kabelende angeschlossen" " werden." -#: netbox/dcim/models/cables.py:183 +#: dcim/models/cables.py:183 #, python-brace-format msgid "Incompatible termination types: {type_a} and {type_b}" msgstr "Inkompatible Verbindungssarten: {type_a} und {type_b}" -#: netbox/dcim/models/cables.py:193 +#: dcim/models/cables.py:193 msgid "A and B terminations cannot connect to the same object." msgstr "" "A- und B-Anschlüsse können nicht mit demselben Objekt verbunden werden." -#: netbox/dcim/models/cables.py:260 netbox/ipam/models/asns.py:37 +#: dcim/models/cables.py:260 ipam/models/asns.py:37 msgid "end" msgstr "Ende" -#: netbox/dcim/models/cables.py:313 +#: dcim/models/cables.py:313 msgid "cable termination" msgstr "Kabelabschlusspunkt" -#: netbox/dcim/models/cables.py:314 +#: dcim/models/cables.py:314 msgid "cable terminations" msgstr "Kabelabschlusspunkte" -#: netbox/dcim/models/cables.py:333 +#: dcim/models/cables.py:333 #, python-brace-format msgid "" "Duplicate termination found for {app_label}.{model} {termination_id}: cable " @@ -5194,38 +4755,38 @@ msgstr "" "Doppelte Terminierung gefunden für {app_label}.{model} {termination_id}: " "Kabel {cable_pk}" -#: netbox/dcim/models/cables.py:343 +#: dcim/models/cables.py:343 #, python-brace-format msgid "Cables cannot be terminated to {type_display} interfaces" msgstr "Kabel können nicht an {type_display} Schnittstellen terminiert werden" -#: netbox/dcim/models/cables.py:350 +#: dcim/models/cables.py:350 msgid "Circuit terminations attached to a provider network may not be cabled." msgstr "" "Transportnetzabschlüsse, die an ein Provider-Netzwerk angeschlossen sind, " "sind möglicherweise nicht verkabelt." -#: netbox/dcim/models/cables.py:448 netbox/extras/models/configs.py:50 +#: dcim/models/cables.py:448 extras/models/configs.py:50 msgid "is active" msgstr "ist aktiv" -#: netbox/dcim/models/cables.py:452 +#: dcim/models/cables.py:452 msgid "is complete" msgstr "ist abgeschlossen" -#: netbox/dcim/models/cables.py:456 +#: dcim/models/cables.py:456 msgid "is split" msgstr "ist aufgeteilt" -#: netbox/dcim/models/cables.py:464 +#: dcim/models/cables.py:464 msgid "cable path" msgstr "Kabelweg" -#: netbox/dcim/models/cables.py:465 +#: dcim/models/cables.py:465 msgid "cable paths" msgstr "Kabelwege" -#: netbox/dcim/models/device_component_templates.py:46 +#: dcim/models/device_component_templates.py:46 #, python-brace-format msgid "" "{module} is accepted as a substitution for the module bay position when " @@ -5234,18 +4795,18 @@ msgstr "" "{module} wird als Ersatz für die Position des Modulschachts akzeptiert, wenn" " es an einen Modultyp angehängt wird." -#: netbox/dcim/models/device_component_templates.py:58 -#: netbox/dcim/models/device_components.py:65 +#: dcim/models/device_component_templates.py:58 +#: dcim/models/device_components.py:65 msgid "Physical label" msgstr "Physisches Label" -#: netbox/dcim/models/device_component_templates.py:103 +#: dcim/models/device_component_templates.py:103 msgid "Component templates cannot be moved to a different device type." msgstr "" "Komponentenvorlagen können nicht auf einen anderen Gerätetyp verschoben " "werden." -#: netbox/dcim/models/device_component_templates.py:154 +#: dcim/models/device_component_templates.py:154 msgid "" "A component template cannot be associated with both a device type and a " "module type." @@ -5253,7 +4814,7 @@ msgstr "" "Eine Komponentenvorlage kann nicht gleichzeitig einem Gerätetyp und einem " "Modultyp zugeordnet werden." -#: netbox/dcim/models/device_component_templates.py:158 +#: dcim/models/device_component_templates.py:158 msgid "" "A component template must be associated with either a device type or a " "module type." @@ -5261,138 +4822,138 @@ msgstr "" "Eine Komponentenvorlage muss entweder einem Gerätetyp oder einem Modultyp " "zugeordnet sein." -#: netbox/dcim/models/device_component_templates.py:212 +#: dcim/models/device_component_templates.py:212 msgid "console port template" msgstr "Vorlage für Konsolenanschluss" -#: netbox/dcim/models/device_component_templates.py:213 +#: dcim/models/device_component_templates.py:213 msgid "console port templates" msgstr "Vorlagen für Konsolenanschlüsse" -#: netbox/dcim/models/device_component_templates.py:246 +#: dcim/models/device_component_templates.py:246 msgid "console server port template" msgstr "Portvorlage für Konsolenserver" -#: netbox/dcim/models/device_component_templates.py:247 +#: dcim/models/device_component_templates.py:247 msgid "console server port templates" msgstr "Portvorlagen für Konsolenserver" -#: netbox/dcim/models/device_component_templates.py:278 -#: netbox/dcim/models/device_components.py:352 +#: dcim/models/device_component_templates.py:278 +#: dcim/models/device_components.py:352 msgid "maximum draw" msgstr "maximale Leistungsaufnahme" -#: netbox/dcim/models/device_component_templates.py:285 -#: netbox/dcim/models/device_components.py:359 +#: dcim/models/device_component_templates.py:285 +#: dcim/models/device_components.py:359 msgid "allocated draw" msgstr "zugewiesene Leistungsaufnahme" -#: netbox/dcim/models/device_component_templates.py:295 +#: dcim/models/device_component_templates.py:295 msgid "power port template" msgstr "Vorlage für Stromanschluss" -#: netbox/dcim/models/device_component_templates.py:296 +#: dcim/models/device_component_templates.py:296 msgid "power port templates" msgstr "Vorlagen für Stromanschlüsse" -#: netbox/dcim/models/device_component_templates.py:315 -#: netbox/dcim/models/device_components.py:382 +#: dcim/models/device_component_templates.py:315 +#: dcim/models/device_components.py:382 #, python-brace-format msgid "Allocated draw cannot exceed the maximum draw ({maximum_draw}W)." msgstr "" "Die zugewiesene Leistungsaufnahme darf die maximale Leistung " "({maximum_draw}W) nicht überschreiten." -#: netbox/dcim/models/device_component_templates.py:347 -#: netbox/dcim/models/device_components.py:477 +#: dcim/models/device_component_templates.py:347 +#: dcim/models/device_components.py:477 msgid "feed leg" msgstr "Phasenlage" -#: netbox/dcim/models/device_component_templates.py:351 -#: netbox/dcim/models/device_components.py:481 +#: dcim/models/device_component_templates.py:351 +#: dcim/models/device_components.py:481 msgid "Phase (for three-phase feeds)" msgstr "Phase (bei dreiphasiger Stromzufuhr)" -#: netbox/dcim/models/device_component_templates.py:357 +#: dcim/models/device_component_templates.py:357 msgid "power outlet template" msgstr "Vorlage für Stromabgang" -#: netbox/dcim/models/device_component_templates.py:358 +#: dcim/models/device_component_templates.py:358 msgid "power outlet templates" msgstr "Vorlagen für Steckdosen" -#: netbox/dcim/models/device_component_templates.py:367 +#: dcim/models/device_component_templates.py:367 #, python-brace-format msgid "Parent power port ({power_port}) must belong to the same device type" msgstr "" "Übergeordneter Stromanschluss ({power_port}) muss zum gleichen Gerätetyp " "gehören" -#: netbox/dcim/models/device_component_templates.py:371 +#: dcim/models/device_component_templates.py:371 #, python-brace-format msgid "Parent power port ({power_port}) must belong to the same module type" msgstr "" "Übergeordneter Stromanschluss ({power_port}) muss zum gleichen Modultyp " "gehören" -#: netbox/dcim/models/device_component_templates.py:423 -#: netbox/dcim/models/device_components.py:611 +#: dcim/models/device_component_templates.py:423 +#: dcim/models/device_components.py:611 msgid "management only" msgstr "Nur Verwaltung" -#: netbox/dcim/models/device_component_templates.py:431 -#: netbox/dcim/models/device_components.py:550 +#: dcim/models/device_component_templates.py:431 +#: dcim/models/device_components.py:550 msgid "bridge interface" msgstr "Bridge-Schnittstelle" -#: netbox/dcim/models/device_component_templates.py:449 -#: netbox/dcim/models/device_components.py:636 +#: dcim/models/device_component_templates.py:449 +#: dcim/models/device_components.py:636 msgid "wireless role" msgstr "WLAN Rolle" -#: netbox/dcim/models/device_component_templates.py:455 +#: dcim/models/device_component_templates.py:455 msgid "interface template" msgstr "Schnittstellenvorlage" -#: netbox/dcim/models/device_component_templates.py:456 +#: dcim/models/device_component_templates.py:456 msgid "interface templates" msgstr "Schnittstellenvorlagen" -#: netbox/dcim/models/device_component_templates.py:463 -#: netbox/dcim/models/device_components.py:804 -#: netbox/virtualization/models/virtualmachines.py:405 +#: dcim/models/device_component_templates.py:463 +#: dcim/models/device_components.py:804 +#: virtualization/models/virtualmachines.py:405 msgid "An interface cannot be bridged to itself." msgstr "Eine Schnittstelle kann nicht zu sich selbst überbrückt werden." -#: netbox/dcim/models/device_component_templates.py:466 +#: dcim/models/device_component_templates.py:466 #, python-brace-format msgid "Bridge interface ({bridge}) must belong to the same device type" msgstr "Bridge-Schnittstelle ({bridge}) muss zum gleichen Gerätetyp gehören" -#: netbox/dcim/models/device_component_templates.py:470 +#: dcim/models/device_component_templates.py:470 #, python-brace-format msgid "Bridge interface ({bridge}) must belong to the same module type" msgstr "Bridge-Schnittstelle ({bridge}) muss zum gleichen Modultyp gehören" -#: netbox/dcim/models/device_component_templates.py:526 -#: netbox/dcim/models/device_components.py:984 +#: dcim/models/device_component_templates.py:526 +#: dcim/models/device_components.py:984 msgid "rear port position" msgstr "Position des Rückanschlusses" -#: netbox/dcim/models/device_component_templates.py:551 +#: dcim/models/device_component_templates.py:551 msgid "front port template" msgstr "Frontanschluss-Vorlage" -#: netbox/dcim/models/device_component_templates.py:552 +#: dcim/models/device_component_templates.py:552 msgid "front port templates" msgstr "Frontanschluss-Vorlagen" -#: netbox/dcim/models/device_component_templates.py:562 +#: dcim/models/device_component_templates.py:562 #, python-brace-format msgid "Rear port ({name}) must belong to the same device type" msgstr "Hinterer Anschluss ({name}) muss zum gleichen Gerätetyp gehören" -#: netbox/dcim/models/device_component_templates.py:568 +#: dcim/models/device_component_templates.py:568 #, python-brace-format msgid "" "Invalid rear port position ({position}); rear port {name} has only {count} " @@ -5401,47 +4962,47 @@ msgstr "" "Ungültige Position des hinteren Anschlusses ({position}); hinterer Anschluss" " {name} hat nur {count} Positionen" -#: netbox/dcim/models/device_component_templates.py:621 -#: netbox/dcim/models/device_components.py:1053 +#: dcim/models/device_component_templates.py:621 +#: dcim/models/device_components.py:1053 msgid "positions" msgstr "Positionen" -#: netbox/dcim/models/device_component_templates.py:632 +#: dcim/models/device_component_templates.py:632 msgid "rear port template" msgstr "Vorlage für den Rückanschluss" -#: netbox/dcim/models/device_component_templates.py:633 +#: dcim/models/device_component_templates.py:633 msgid "rear port templates" msgstr "Vorlagen für Rückanschlüsse" -#: netbox/dcim/models/device_component_templates.py:662 -#: netbox/dcim/models/device_components.py:1103 +#: dcim/models/device_component_templates.py:662 +#: dcim/models/device_components.py:1103 msgid "position" msgstr "Position" -#: netbox/dcim/models/device_component_templates.py:665 -#: netbox/dcim/models/device_components.py:1106 +#: dcim/models/device_component_templates.py:665 +#: dcim/models/device_components.py:1106 msgid "Identifier to reference when renaming installed components" msgstr "" "Bezeichner, auf den beim Umbenennen installierter Komponenten verwiesen wird" -#: netbox/dcim/models/device_component_templates.py:671 +#: dcim/models/device_component_templates.py:671 msgid "module bay template" msgstr "Vorlage für Moduleinsatz" -#: netbox/dcim/models/device_component_templates.py:672 +#: dcim/models/device_component_templates.py:672 msgid "module bay templates" msgstr "Vorlagen für Moduleinsätze" -#: netbox/dcim/models/device_component_templates.py:699 +#: dcim/models/device_component_templates.py:699 msgid "device bay template" msgstr "Vorlage für Geräteeinsatz" -#: netbox/dcim/models/device_component_templates.py:700 +#: dcim/models/device_component_templates.py:700 msgid "device bay templates" msgstr "Vorlagen für Geräteeinsätze" -#: netbox/dcim/models/device_component_templates.py:713 +#: dcim/models/device_component_templates.py:713 #, python-brace-format msgid "" "Subdevice role of device type ({device_type}) must be set to \"parent\" to " @@ -5450,214 +5011,209 @@ msgstr "" "Untergeräterolle des Gerätetyps ({device_type}) muss auf „Übergeordnet“ " "gesetzt sein, um Geräteschächte zuzulassen." -#: netbox/dcim/models/device_component_templates.py:768 -#: netbox/dcim/models/device_components.py:1262 +#: dcim/models/device_component_templates.py:768 +#: dcim/models/device_components.py:1262 msgid "part ID" msgstr "Teile-ID" -#: netbox/dcim/models/device_component_templates.py:770 -#: netbox/dcim/models/device_components.py:1264 +#: dcim/models/device_component_templates.py:770 +#: dcim/models/device_components.py:1264 msgid "Manufacturer-assigned part identifier" msgstr "Vom Hersteller zugewiesene Teile-ID" -#: netbox/dcim/models/device_component_templates.py:787 +#: dcim/models/device_component_templates.py:787 msgid "inventory item template" msgstr "Vorlage für Inventarartikel" -#: netbox/dcim/models/device_component_templates.py:788 +#: dcim/models/device_component_templates.py:788 msgid "inventory item templates" msgstr "Vorlagen für Inventarartikel" -#: netbox/dcim/models/device_components.py:105 +#: dcim/models/device_components.py:105 msgid "Components cannot be moved to a different device." msgstr "Komponenten können nicht auf ein anderes Gerät verschoben werden." -#: netbox/dcim/models/device_components.py:144 +#: dcim/models/device_components.py:144 msgid "cable end" msgstr "Kabelende" -#: netbox/dcim/models/device_components.py:150 +#: dcim/models/device_components.py:150 msgid "mark connected" msgstr "als verbunden markieren" -#: netbox/dcim/models/device_components.py:152 +#: dcim/models/device_components.py:152 msgid "Treat as if a cable is connected" msgstr "So behandeln, als ob ein Kabel angeschlossen wäre" -#: netbox/dcim/models/device_components.py:170 +#: dcim/models/device_components.py:170 msgid "Must specify cable end (A or B) when attaching a cable." msgstr "" "Beim Anschließen eines Kabels muss das Kabelende (A oder B) angegeben " "werden." -#: netbox/dcim/models/device_components.py:174 +#: dcim/models/device_components.py:174 msgid "Cable end must not be set without a cable." msgstr "Das Kabelende darf nicht ohne Kabel verlegt werden." -#: netbox/dcim/models/device_components.py:178 +#: dcim/models/device_components.py:178 msgid "Cannot mark as connected with a cable attached." msgstr "Mit angeschlossenem Kabel kann nicht als verbunden markiert werden." -#: netbox/dcim/models/device_components.py:202 +#: dcim/models/device_components.py:202 #, python-brace-format msgid "{class_name} models must declare a parent_object property" msgstr "" "{class_name} Modelle müssen eine parent_object-Eigenschaft deklarieren" -#: netbox/dcim/models/device_components.py:287 -#: netbox/dcim/models/device_components.py:316 -#: netbox/dcim/models/device_components.py:349 -#: netbox/dcim/models/device_components.py:467 +#: dcim/models/device_components.py:287 dcim/models/device_components.py:316 +#: dcim/models/device_components.py:349 dcim/models/device_components.py:467 msgid "Physical port type" msgstr "Physischer Anschlusstyp" -#: netbox/dcim/models/device_components.py:290 -#: netbox/dcim/models/device_components.py:319 +#: dcim/models/device_components.py:290 dcim/models/device_components.py:319 msgid "speed" msgstr "Geschwindigkeit" -#: netbox/dcim/models/device_components.py:294 -#: netbox/dcim/models/device_components.py:323 +#: dcim/models/device_components.py:294 dcim/models/device_components.py:323 msgid "Port speed in bits per second" msgstr "Anschlussgeschwindigkeit in Bit pro Sekunde" -#: netbox/dcim/models/device_components.py:300 +#: dcim/models/device_components.py:300 msgid "console port" msgstr "Konsolenanschluss" -#: netbox/dcim/models/device_components.py:301 +#: dcim/models/device_components.py:301 msgid "console ports" msgstr "Konsolenanschlüsse" -#: netbox/dcim/models/device_components.py:329 +#: dcim/models/device_components.py:329 msgid "console server port" msgstr "Konsolenserveranschluss" -#: netbox/dcim/models/device_components.py:330 +#: dcim/models/device_components.py:330 msgid "console server ports" msgstr "Konsolenserveranschlüsse" -#: netbox/dcim/models/device_components.py:369 +#: dcim/models/device_components.py:369 msgid "power port" msgstr "Stromanschluss" -#: netbox/dcim/models/device_components.py:370 +#: dcim/models/device_components.py:370 msgid "power ports" msgstr "Stromanschlüsse" -#: netbox/dcim/models/device_components.py:487 +#: dcim/models/device_components.py:487 msgid "power outlet" msgstr "Stromabgang" -#: netbox/dcim/models/device_components.py:488 +#: dcim/models/device_components.py:488 msgid "power outlets" msgstr "Steckdosen" -#: netbox/dcim/models/device_components.py:499 +#: dcim/models/device_components.py:499 #, python-brace-format msgid "Parent power port ({power_port}) must belong to the same device" msgstr "" "Übergeordneter Stromanschluss ({power_port}) muss zum selben Gerät gehören" -#: netbox/dcim/models/device_components.py:530 netbox/vpn/models/crypto.py:81 -#: netbox/vpn/models/crypto.py:226 +#: dcim/models/device_components.py:530 vpn/models/crypto.py:81 +#: vpn/models/crypto.py:226 msgid "mode" msgstr "Modus" -#: netbox/dcim/models/device_components.py:534 +#: dcim/models/device_components.py:534 msgid "IEEE 802.1Q tagging strategy" msgstr "IEEE 802.1Q-Tagging-Strategie" -#: netbox/dcim/models/device_components.py:542 +#: dcim/models/device_components.py:542 msgid "parent interface" msgstr "übergeordnete Schnittstelle" -#: netbox/dcim/models/device_components.py:602 +#: dcim/models/device_components.py:602 msgid "parent LAG" msgstr "übergeordnete LAG" -#: netbox/dcim/models/device_components.py:612 +#: dcim/models/device_components.py:612 msgid "This interface is used only for out-of-band management" msgstr "Diese Schnittstelle wird nur für Out-of-Band-Verwaltung verwendet" -#: netbox/dcim/models/device_components.py:617 +#: dcim/models/device_components.py:617 msgid "speed (Kbps)" msgstr "Geschwindigkeit (Kbps)" -#: netbox/dcim/models/device_components.py:620 +#: dcim/models/device_components.py:620 msgid "duplex" msgstr "Duplex" -#: netbox/dcim/models/device_components.py:630 +#: dcim/models/device_components.py:630 msgid "64-bit World Wide Name" msgstr "Weltweiter 64-Bit-Name" -#: netbox/dcim/models/device_components.py:642 +#: dcim/models/device_components.py:642 msgid "wireless channel" msgstr "WLAN Kanal" -#: netbox/dcim/models/device_components.py:649 +#: dcim/models/device_components.py:649 msgid "channel frequency (MHz)" msgstr "Kanalfrequenz (MHz)" -#: netbox/dcim/models/device_components.py:650 -#: netbox/dcim/models/device_components.py:658 +#: dcim/models/device_components.py:650 dcim/models/device_components.py:658 msgid "Populated by selected channel (if set)" msgstr "Wird vom ausgewählten Kanal aufgefüllt (falls gesetzt)" -#: netbox/dcim/models/device_components.py:664 +#: dcim/models/device_components.py:664 msgid "transmit power (dBm)" msgstr "Sendeleistung (dBm)" -#: netbox/dcim/models/device_components.py:689 netbox/wireless/models.py:117 +#: dcim/models/device_components.py:689 wireless/models.py:117 msgid "wireless LANs" msgstr "WLANs" -#: netbox/dcim/models/device_components.py:697 -#: netbox/virtualization/models/virtualmachines.py:335 +#: dcim/models/device_components.py:697 +#: virtualization/models/virtualmachines.py:335 msgid "untagged VLAN" msgstr "untagged VLAN" -#: netbox/dcim/models/device_components.py:703 -#: netbox/virtualization/models/virtualmachines.py:341 +#: dcim/models/device_components.py:703 +#: virtualization/models/virtualmachines.py:341 msgid "tagged VLANs" msgstr "tagged VLANs" -#: netbox/dcim/models/device_components.py:745 -#: netbox/virtualization/models/virtualmachines.py:377 +#: dcim/models/device_components.py:745 +#: virtualization/models/virtualmachines.py:377 msgid "interface" msgstr "Schnittstelle" -#: netbox/dcim/models/device_components.py:746 -#: netbox/virtualization/models/virtualmachines.py:378 +#: dcim/models/device_components.py:746 +#: virtualization/models/virtualmachines.py:378 msgid "interfaces" msgstr "Schnittstellen" -#: netbox/dcim/models/device_components.py:757 +#: dcim/models/device_components.py:757 #, python-brace-format msgid "{display_type} interfaces cannot have a cable attached." msgstr "" "{display_type} An Schnittstellen kann kein Kabel angeschlossen werden." -#: netbox/dcim/models/device_components.py:765 +#: dcim/models/device_components.py:765 #, python-brace-format msgid "{display_type} interfaces cannot be marked as connected." msgstr "" "{display_type} Schnittstellen können nicht als verbunden markiert werden." -#: netbox/dcim/models/device_components.py:774 -#: netbox/virtualization/models/virtualmachines.py:390 +#: dcim/models/device_components.py:774 +#: virtualization/models/virtualmachines.py:390 msgid "An interface cannot be its own parent." msgstr "" "Eine Schnittstelle kann nicht seine eigene übergeordnete Schnittstelle sein." -#: netbox/dcim/models/device_components.py:778 +#: dcim/models/device_components.py:778 msgid "Only virtual interfaces may be assigned to a parent interface." msgstr "" "Nur virtuelle Schnittstellen können einer übergeordneten Schnittstelle " "zugewiesen werden." -#: netbox/dcim/models/device_components.py:785 +#: dcim/models/device_components.py:785 #, python-brace-format msgid "" "The selected parent interface ({interface}) belongs to a different device " @@ -5666,7 +5222,7 @@ msgstr "" "Die ausgewählte übergeordnete Schnittstelle ({interface}) gehört zu einem " "anderen Gerät ({device})" -#: netbox/dcim/models/device_components.py:791 +#: dcim/models/device_components.py:791 #, python-brace-format msgid "" "The selected parent interface ({interface}) belongs to {device}, which is " @@ -5675,7 +5231,7 @@ msgstr "" "Die ausgewählte übergeordnete Schnittstelle ({interface}) gehört zu " "{device}, das nicht Teil des virtuellen Chassis ist {virtual_chassis}." -#: netbox/dcim/models/device_components.py:811 +#: dcim/models/device_components.py:811 #, python-brace-format msgid "" "The selected bridge interface ({bridge}) belongs to a different device " @@ -5684,7 +5240,7 @@ msgstr "" "Die gewählte Bridge-Schnittstelle ({bridge}) gehört zu einem anderen Gerät " "({device})." -#: netbox/dcim/models/device_components.py:817 +#: dcim/models/device_components.py:817 #, python-brace-format msgid "" "The selected bridge interface ({interface}) belongs to {device}, which is " @@ -5693,17 +5249,17 @@ msgstr "" "Die gewählte Bridge-Schnittstelle ({interface}) gehört zu {device}, das " "nicht Teil des virtuellen Chassis ist {virtual_chassis}." -#: netbox/dcim/models/device_components.py:828 +#: dcim/models/device_components.py:828 msgid "Virtual interfaces cannot have a parent LAG interface." msgstr "" "Virtuelle Schnittstellen können keine übergeordnete LAG-Schnittstelle haben." -#: netbox/dcim/models/device_components.py:832 +#: dcim/models/device_components.py:832 msgid "A LAG interface cannot be its own parent." msgstr "" "Eine LAG-Schnittstelle nicht seine eigene übergeordnete Schnittstelle sein." -#: netbox/dcim/models/device_components.py:839 +#: dcim/models/device_components.py:839 #, python-brace-format msgid "" "The selected LAG interface ({lag}) belongs to a different device ({device})." @@ -5711,7 +5267,7 @@ msgstr "" "Die gewählte LAG-Schnittstelle ({lag}) gehört zu einem anderen Gerät " "({device})." -#: netbox/dcim/models/device_components.py:845 +#: dcim/models/device_components.py:845 #, python-brace-format msgid "" "The selected LAG interface ({lag}) belongs to {device}, which is not part of" @@ -5720,50 +5276,50 @@ msgstr "" "Die gewählte LAG-Schnittstelle ({lag}) gehört zu {device}, das nicht Teil " "des virtuellen Chassis ist {virtual_chassis}." -#: netbox/dcim/models/device_components.py:856 +#: dcim/models/device_components.py:856 msgid "Virtual interfaces cannot have a PoE mode." msgstr "Virtuelle Schnittstellen können keinen PoE-Modus haben." -#: netbox/dcim/models/device_components.py:860 +#: dcim/models/device_components.py:860 msgid "Virtual interfaces cannot have a PoE type." msgstr "Virtuelle Schnittstellen können keinen PoE-Typ haben." -#: netbox/dcim/models/device_components.py:866 +#: dcim/models/device_components.py:866 msgid "Must specify PoE mode when designating a PoE type." msgstr "" "Bei der Festlegung eines PoE-Typs muss der PoE-Modus angegeben werden." -#: netbox/dcim/models/device_components.py:873 +#: dcim/models/device_components.py:873 msgid "Wireless role may be set only on wireless interfaces." msgstr "Die WLAN-Rolle kann nur auf Funkschnittstellen festgelegt werden." -#: netbox/dcim/models/device_components.py:875 +#: dcim/models/device_components.py:875 msgid "Channel may be set only on wireless interfaces." msgstr "Der Kanal kann nur an drahtlosen Schnittstellen eingestellt werden." -#: netbox/dcim/models/device_components.py:881 +#: dcim/models/device_components.py:881 msgid "Channel frequency may be set only on wireless interfaces." msgstr "" "Die Kanalfrequenz kann nur an drahtlosen Schnittstellen eingestellt werden." -#: netbox/dcim/models/device_components.py:885 +#: dcim/models/device_components.py:885 msgid "Cannot specify custom frequency with channel selected." msgstr "" "Bei ausgewähltem Kanal kann keine benutzerdefinierte Frequenz angegeben " "werden." -#: netbox/dcim/models/device_components.py:891 +#: dcim/models/device_components.py:891 msgid "Channel width may be set only on wireless interfaces." msgstr "" "Die Kanalbreite kann nur an drahtlosen Schnittstellen eingestellt werden." -#: netbox/dcim/models/device_components.py:893 +#: dcim/models/device_components.py:893 msgid "Cannot specify custom width with channel selected." msgstr "" "Bei ausgewähltem Kanal kann keine benutzerdefinierte Breite angegeben " "werden." -#: netbox/dcim/models/device_components.py:901 +#: dcim/models/device_components.py:901 #, python-brace-format msgid "" "The untagged VLAN ({untagged_vlan}) must belong to the same site as the " @@ -5772,24 +5328,24 @@ msgstr "" "Das untagged VLAN ({untagged_vlan}) muss zu demselben Standort gehören wie " "das übergeordnete Gerät der Schnittstelle, oder es muss global sein." -#: netbox/dcim/models/device_components.py:990 +#: dcim/models/device_components.py:990 msgid "Mapped position on corresponding rear port" msgstr "Abgebildete Position am entsprechenden hinteren Anschluss" -#: netbox/dcim/models/device_components.py:1006 +#: dcim/models/device_components.py:1006 msgid "front port" msgstr "Frontanschluss" -#: netbox/dcim/models/device_components.py:1007 +#: dcim/models/device_components.py:1007 msgid "front ports" msgstr "Frontanschlüsse" -#: netbox/dcim/models/device_components.py:1021 +#: dcim/models/device_components.py:1021 #, python-brace-format msgid "Rear port ({rear_port}) must belong to the same device" msgstr "Rückanschluss ({rear_port}) muss zum selben Gerät gehören" -#: netbox/dcim/models/device_components.py:1029 +#: dcim/models/device_components.py:1029 #, python-brace-format msgid "" "Invalid rear port position ({rear_port_position}): Rear port {name} has only" @@ -5798,19 +5354,19 @@ msgstr "" "Ungültige Position des hinteren Anschlusses ({rear_port_position}): Hinterer" " Anschluss {name} hat nur {positions} Stellungen." -#: netbox/dcim/models/device_components.py:1059 +#: dcim/models/device_components.py:1059 msgid "Number of front ports which may be mapped" msgstr "Anzahl der Frontanschlüsse, die zugeordnet werden können" -#: netbox/dcim/models/device_components.py:1064 +#: dcim/models/device_components.py:1064 msgid "rear port" msgstr "Rückanschluss" -#: netbox/dcim/models/device_components.py:1065 +#: dcim/models/device_components.py:1065 msgid "rear ports" msgstr "Rückanschlüsse" -#: netbox/dcim/models/device_components.py:1079 +#: dcim/models/device_components.py:1079 #, python-brace-format msgid "" "The number of positions cannot be less than the number of mapped front ports" @@ -5819,38 +5375,37 @@ msgstr "" "Die Anzahl der Positionen darf nicht kleiner sein als die Anzahl der " "zugewiesenen Vorderanschlüsse ({frontport_count})" -#: netbox/dcim/models/device_components.py:1120 +#: dcim/models/device_components.py:1120 msgid "module bay" msgstr "Moduleinsatz" -#: netbox/dcim/models/device_components.py:1121 +#: dcim/models/device_components.py:1121 msgid "module bays" msgstr "Moduleinsätze" -#: netbox/dcim/models/device_components.py:1138 -#: netbox/dcim/models/devices.py:1224 +#: dcim/models/device_components.py:1138 dcim/models/devices.py:1224 msgid "A module bay cannot belong to a module installed within it." msgstr "" "Ein Modulschacht kann nicht zu einem darin installierten Modul gehören." -#: netbox/dcim/models/device_components.py:1164 +#: dcim/models/device_components.py:1164 msgid "device bay" msgstr "Geräteeinsatz" -#: netbox/dcim/models/device_components.py:1165 +#: dcim/models/device_components.py:1165 msgid "device bays" msgstr "Geräteeinsätze" -#: netbox/dcim/models/device_components.py:1175 +#: dcim/models/device_components.py:1175 #, python-brace-format msgid "This type of device ({device_type}) does not support device bays." msgstr "Dieser Gerätetyp ({device_type}) unterstützt keine Geräteeinsätze." -#: netbox/dcim/models/device_components.py:1181 +#: dcim/models/device_components.py:1181 msgid "Cannot install a device into itself." msgstr "Ein Gerät kann nicht in sich selbst installiert werden." -#: netbox/dcim/models/device_components.py:1189 +#: dcim/models/device_components.py:1189 #, python-brace-format msgid "" "Cannot install the specified device; device is already installed in {bay}." @@ -5858,122 +5413,120 @@ msgstr "" "Das angegebene Gerät kann nicht installiert werden; Das Gerät ist bereits " "installiert in {bay}." -#: netbox/dcim/models/device_components.py:1210 +#: dcim/models/device_components.py:1210 msgid "inventory item role" msgstr "Inventarartikelrolle" -#: netbox/dcim/models/device_components.py:1211 +#: dcim/models/device_components.py:1211 msgid "inventory item roles" msgstr "Inventarartikelrollen" -#: netbox/dcim/models/device_components.py:1268 -#: netbox/dcim/models/devices.py:607 netbox/dcim/models/devices.py:1181 -#: netbox/dcim/models/racks.py:313 -#: netbox/virtualization/models/virtualmachines.py:131 +#: dcim/models/device_components.py:1268 dcim/models/devices.py:607 +#: dcim/models/devices.py:1181 dcim/models/racks.py:313 +#: virtualization/models/virtualmachines.py:131 msgid "serial number" msgstr "Seriennummer" -#: netbox/dcim/models/device_components.py:1276 -#: netbox/dcim/models/devices.py:615 netbox/dcim/models/devices.py:1188 -#: netbox/dcim/models/racks.py:320 +#: dcim/models/device_components.py:1276 dcim/models/devices.py:615 +#: dcim/models/devices.py:1188 dcim/models/racks.py:320 msgid "asset tag" msgstr "Asset-Tag" -#: netbox/dcim/models/device_components.py:1277 +#: dcim/models/device_components.py:1277 msgid "A unique tag used to identify this item" msgstr "" "Ein eindeutiges Etikett, das zur Identifizierung dieses Artikels verwendet " "wird" -#: netbox/dcim/models/device_components.py:1280 +#: dcim/models/device_components.py:1280 msgid "discovered" msgstr "erkannt" -#: netbox/dcim/models/device_components.py:1282 +#: dcim/models/device_components.py:1282 msgid "This item was automatically discovered" msgstr "Dieser Artikel wurde automatisch erkannt" -#: netbox/dcim/models/device_components.py:1300 +#: dcim/models/device_components.py:1300 msgid "inventory item" msgstr "Inventarartikel" -#: netbox/dcim/models/device_components.py:1301 +#: dcim/models/device_components.py:1301 msgid "inventory items" msgstr "Inventarartikel" -#: netbox/dcim/models/device_components.py:1312 +#: dcim/models/device_components.py:1312 msgid "Cannot assign self as parent." msgstr "Kann sich nicht als übergeordnetes Objekt zuweisen." -#: netbox/dcim/models/device_components.py:1320 +#: dcim/models/device_components.py:1320 msgid "Parent inventory item does not belong to the same device." msgstr "Der Artikel im übergeordneten Inventar gehört nicht zum selben Gerät." -#: netbox/dcim/models/device_components.py:1326 +#: dcim/models/device_components.py:1326 msgid "Cannot move an inventory item with dependent children" msgstr "" "Ein Inventargegenstand mit untergeordneten Inventargegenständen kann nicht " "bewegt werden" -#: netbox/dcim/models/device_components.py:1334 +#: dcim/models/device_components.py:1334 msgid "Cannot assign inventory item to component on another device" msgstr "" "Inventargegenstand kann nicht einer Komponente auf einem anderen Gerät " "zugewiesen werden" -#: netbox/dcim/models/devices.py:54 +#: dcim/models/devices.py:54 msgid "manufacturer" msgstr "Hersteller" -#: netbox/dcim/models/devices.py:55 +#: dcim/models/devices.py:55 msgid "manufacturers" msgstr "Hersteller" -#: netbox/dcim/models/devices.py:82 netbox/dcim/models/devices.py:382 -#: netbox/dcim/models/racks.py:133 +#: dcim/models/devices.py:82 dcim/models/devices.py:382 +#: dcim/models/racks.py:133 msgid "model" msgstr "Modell" -#: netbox/dcim/models/devices.py:95 +#: dcim/models/devices.py:95 msgid "default platform" msgstr "Standard-Betriebssystem" -#: netbox/dcim/models/devices.py:98 netbox/dcim/models/devices.py:386 +#: dcim/models/devices.py:98 dcim/models/devices.py:386 msgid "part number" msgstr "Teilenummer" -#: netbox/dcim/models/devices.py:101 netbox/dcim/models/devices.py:389 +#: dcim/models/devices.py:101 dcim/models/devices.py:389 msgid "Discrete part number (optional)" msgstr "Diskrete Teilenummer (optional)" -#: netbox/dcim/models/devices.py:107 netbox/dcim/models/racks.py:54 +#: dcim/models/devices.py:107 dcim/models/racks.py:54 msgid "height (U)" msgstr "Höhe (HE)" -#: netbox/dcim/models/devices.py:111 +#: dcim/models/devices.py:111 msgid "exclude from utilization" msgstr "von der Auslastung ausschließen" -#: netbox/dcim/models/devices.py:112 +#: dcim/models/devices.py:112 msgid "Devices of this type are excluded when calculating rack utilization." msgstr "" "Geräte diesen Typs sind bei der Berechnung der Rackauslastung " "ausgeschlossen." -#: netbox/dcim/models/devices.py:116 +#: dcim/models/devices.py:116 msgid "is full depth" msgstr "hat volle Tiefe" -#: netbox/dcim/models/devices.py:117 +#: dcim/models/devices.py:117 msgid "Device consumes both front and rear rack faces." msgstr "" "Das Gerät verbraucht sowohl die vordere als auch die hintere Rackfront." -#: netbox/dcim/models/devices.py:123 +#: dcim/models/devices.py:123 msgid "parent/child status" msgstr "Über-/Untergeordnetenstatus" -#: netbox/dcim/models/devices.py:124 +#: dcim/models/devices.py:124 msgid "" "Parent devices house child devices in device bays. Leave blank if this " "device type is neither a parent nor a child." @@ -5982,25 +5535,25 @@ msgstr "" "untergebracht. Lassen Sie das Feld leer, wenn es sich bei diesem Gerätetyp " "weder um ein übergeordnetes noch um ein untergeordnetes handelt." -#: netbox/dcim/models/devices.py:128 netbox/dcim/models/devices.py:392 -#: netbox/dcim/models/devices.py:659 netbox/dcim/models/racks.py:324 +#: dcim/models/devices.py:128 dcim/models/devices.py:392 +#: dcim/models/devices.py:659 dcim/models/racks.py:324 msgid "airflow" msgstr "Luftstrom" -#: netbox/dcim/models/devices.py:204 +#: dcim/models/devices.py:204 msgid "device type" msgstr "Gerätetyp" -#: netbox/dcim/models/devices.py:205 +#: dcim/models/devices.py:205 msgid "device types" msgstr "Gerätetypen" -#: netbox/dcim/models/devices.py:290 +#: dcim/models/devices.py:290 msgid "U height must be in increments of 0.5 rack units." msgstr "" "Die HE-Höhe muss in Schritten von 0,5 Höheneinheiten (HE) angegeben werden." -#: netbox/dcim/models/devices.py:307 +#: dcim/models/devices.py:307 #, python-brace-format msgid "" "Device {device} in rack {rack} does not have sufficient space to accommodate" @@ -6009,7 +5562,7 @@ msgstr "" "Gerät {device} im Rack {rack} hat nicht genug Platz für eine Höhe von " "{height}HE" -#: netbox/dcim/models/devices.py:322 +#: dcim/models/devices.py:322 #, python-brace-format msgid "" "Unable to set 0U height: Found {racked_instance_count} " @@ -6019,7 +5572,7 @@ msgstr "" "href=\"{url}\">{racked_instance_count} Instanzen bereits in Racks " "montiert." -#: netbox/dcim/models/devices.py:331 +#: dcim/models/devices.py:331 msgid "" "Must delete all device bay templates associated with this device before " "declassifying it as a parent device." @@ -6027,156 +5580,156 @@ msgstr "" "Alle mit diesem Gerät verknüpften Geräteschachtvorlagen müssen gelöscht " "werden, bevor es als übergeordnetes Gerät freigegeben wird." -#: netbox/dcim/models/devices.py:337 +#: dcim/models/devices.py:337 msgid "Child device types must be 0U." msgstr "Untergeordnete Gerätetypen müssen 0 HE sein." -#: netbox/dcim/models/devices.py:411 +#: dcim/models/devices.py:411 msgid "module type" msgstr "Modultyp" -#: netbox/dcim/models/devices.py:412 +#: dcim/models/devices.py:412 msgid "module types" msgstr "Modultypen" -#: netbox/dcim/models/devices.py:485 +#: dcim/models/devices.py:485 msgid "Virtual machines may be assigned to this role" msgstr "Virtuelle Maschinen können dieser Rolle zugewiesen werden" -#: netbox/dcim/models/devices.py:497 +#: dcim/models/devices.py:497 msgid "device role" msgstr "Geräterolle" -#: netbox/dcim/models/devices.py:498 +#: dcim/models/devices.py:498 msgid "device roles" msgstr "Geräterollen" -#: netbox/dcim/models/devices.py:515 +#: dcim/models/devices.py:515 msgid "Optionally limit this platform to devices of a certain manufacturer" msgstr "" "Beschränken Sie dieses Betriebssystem optional auf Geräte eines bestimmten " "Herstellers" -#: netbox/dcim/models/devices.py:527 +#: dcim/models/devices.py:527 msgid "platform" msgstr "Betriebssystem" -#: netbox/dcim/models/devices.py:528 +#: dcim/models/devices.py:528 msgid "platforms" msgstr "Betriebssysteme" -#: netbox/dcim/models/devices.py:576 +#: dcim/models/devices.py:576 msgid "The function this device serves" msgstr "Die Funktion, die dieses Gerät erfüllt" -#: netbox/dcim/models/devices.py:608 +#: dcim/models/devices.py:608 msgid "Chassis serial number, assigned by the manufacturer" msgstr "vom Hersteller vergebene Gehäuse-Seriennummer" -#: netbox/dcim/models/devices.py:616 netbox/dcim/models/devices.py:1189 +#: dcim/models/devices.py:616 dcim/models/devices.py:1189 msgid "A unique tag used to identify this device" msgstr "" "Ein eindeutiger Wert, der zur Identifizierung dieses Geräts verwendet wird" -#: netbox/dcim/models/devices.py:643 +#: dcim/models/devices.py:643 msgid "position (U)" msgstr "Position (HE)" -#: netbox/dcim/models/devices.py:650 +#: dcim/models/devices.py:650 msgid "rack face" msgstr "Rackseite" -#: netbox/dcim/models/devices.py:670 netbox/dcim/models/devices.py:1415 -#: netbox/virtualization/models/virtualmachines.py:100 +#: dcim/models/devices.py:670 dcim/models/devices.py:1415 +#: virtualization/models/virtualmachines.py:100 msgid "primary IPv4" msgstr "primäre IPv4-Adresse" -#: netbox/dcim/models/devices.py:678 netbox/dcim/models/devices.py:1423 -#: netbox/virtualization/models/virtualmachines.py:108 +#: dcim/models/devices.py:678 dcim/models/devices.py:1423 +#: virtualization/models/virtualmachines.py:108 msgid "primary IPv6" msgstr "primäre IPv6-Adresse" -#: netbox/dcim/models/devices.py:686 +#: dcim/models/devices.py:686 msgid "out-of-band IP" msgstr "Out-of-Band-IP-Adresse" -#: netbox/dcim/models/devices.py:703 +#: dcim/models/devices.py:703 msgid "VC position" msgstr "VC-Position" -#: netbox/dcim/models/devices.py:706 +#: dcim/models/devices.py:706 msgid "Virtual chassis position" msgstr "Position des virtuellen Gehäuses" -#: netbox/dcim/models/devices.py:709 +#: dcim/models/devices.py:709 msgid "VC priority" msgstr "VC-Priorität" -#: netbox/dcim/models/devices.py:713 +#: dcim/models/devices.py:713 msgid "Virtual chassis master election priority" msgstr "Priorität bei der Masterwahl für virtuelle Gehäuse" -#: netbox/dcim/models/devices.py:716 netbox/dcim/models/sites.py:207 +#: dcim/models/devices.py:716 dcim/models/sites.py:207 msgid "latitude" msgstr "Breitengrad" -#: netbox/dcim/models/devices.py:721 netbox/dcim/models/devices.py:729 -#: netbox/dcim/models/sites.py:212 netbox/dcim/models/sites.py:220 +#: dcim/models/devices.py:721 dcim/models/devices.py:729 +#: dcim/models/sites.py:212 dcim/models/sites.py:220 msgid "GPS coordinate in decimal format (xx.yyyyyy)" msgstr "GPS-Koordinate im Dezimalformat (xx.yyyyyy)" -#: netbox/dcim/models/devices.py:724 netbox/dcim/models/sites.py:215 +#: dcim/models/devices.py:724 dcim/models/sites.py:215 msgid "longitude" msgstr "Längengrad" -#: netbox/dcim/models/devices.py:797 +#: dcim/models/devices.py:797 msgid "Device name must be unique per site." msgstr "Der Name des Geräts muss pro Standort eindeutig sein." -#: netbox/dcim/models/devices.py:808 netbox/ipam/models/services.py:75 +#: dcim/models/devices.py:808 ipam/models/services.py:75 msgid "device" msgstr "Gerät" -#: netbox/dcim/models/devices.py:809 +#: dcim/models/devices.py:809 msgid "devices" msgstr "Geräte" -#: netbox/dcim/models/devices.py:835 +#: dcim/models/devices.py:835 #, python-brace-format msgid "Rack {rack} does not belong to site {site}." msgstr "Rack {rack} gehört nicht zum Standort {site}." -#: netbox/dcim/models/devices.py:840 +#: dcim/models/devices.py:840 #, python-brace-format msgid "Location {location} does not belong to site {site}." msgstr "Lokation {location} gehört nicht zum Standort {site}." -#: netbox/dcim/models/devices.py:846 +#: dcim/models/devices.py:846 #, python-brace-format msgid "Rack {rack} does not belong to location {location}." msgstr "Rack {rack} gehört nicht zur Lokation {location}." -#: netbox/dcim/models/devices.py:853 +#: dcim/models/devices.py:853 msgid "Cannot select a rack face without assigning a rack." msgstr "" "Es ist nicht möglich, eine Rackseite auszuwählen, ohne ein Rack zuzuweisen." -#: netbox/dcim/models/devices.py:857 +#: dcim/models/devices.py:857 msgid "Cannot select a rack position without assigning a rack." msgstr "" "Es ist nicht möglich, eine Rackposition auszuwählen, ohne ein Rack " "zuzuweisen." -#: netbox/dcim/models/devices.py:863 +#: dcim/models/devices.py:863 msgid "Position must be in increments of 0.5 rack units." msgstr "Die Position muss in Schritten von 0,5 Höheneinheiten erfolgen." -#: netbox/dcim/models/devices.py:867 +#: dcim/models/devices.py:867 msgid "Must specify rack face when defining rack position." msgstr "" "Bei der Definition der Rackposition muss die Rackseite angegeben werden." -#: netbox/dcim/models/devices.py:875 +#: dcim/models/devices.py:875 #, python-brace-format msgid "" "A 0U device type ({device_type}) cannot be assigned to a rack position." @@ -6184,7 +5737,7 @@ msgstr "" "Ein 0 HE-Gerätetyp ({device_type}) kann keiner Höheneinheit zugewiesen " "werden." -#: netbox/dcim/models/devices.py:886 +#: dcim/models/devices.py:886 msgid "" "Child device types cannot be assigned to a rack face. This is an attribute " "of the parent device." @@ -6192,7 +5745,7 @@ msgstr "" "Untergeordnete Gerätetypen können keiner Rackseite zugewiesen werden. Dies " "ist ein Attribut des übergeordneten Geräts." -#: netbox/dcim/models/devices.py:893 +#: dcim/models/devices.py:893 msgid "" "Child device types cannot be assigned to a rack position. This is an " "attribute of the parent device." @@ -6200,7 +5753,7 @@ msgstr "" "Untergeordnete Gerätetypen können keiner Rackposition zugewiesen werden. " "Dies ist ein Attribut des übergeordneten Geräts." -#: netbox/dcim/models/devices.py:907 +#: dcim/models/devices.py:907 #, python-brace-format msgid "" "U{position} is already occupied or does not have sufficient space to " @@ -6209,22 +5762,22 @@ msgstr "" "HE{position} ist bereits belegt oder verfügt nicht über ausreichend " "Speicherplatz für diesen Gerätetyp: {device_type} ({u_height}HE)" -#: netbox/dcim/models/devices.py:922 +#: dcim/models/devices.py:922 #, python-brace-format msgid "{ip} is not an IPv4 address." msgstr "{ip} ist keine IPv4-Adresse." -#: netbox/dcim/models/devices.py:931 netbox/dcim/models/devices.py:946 +#: dcim/models/devices.py:931 dcim/models/devices.py:946 #, python-brace-format msgid "The specified IP address ({ip}) is not assigned to this device." msgstr "Die angegebene IP-Adresse ({ip}) ist diesem Gerät nicht zugewiesen." -#: netbox/dcim/models/devices.py:937 +#: dcim/models/devices.py:937 #, python-brace-format msgid "{ip} is not an IPv6 address." msgstr "{ip} ist keine IPv6-Adresse." -#: netbox/dcim/models/devices.py:964 +#: dcim/models/devices.py:964 #, python-brace-format msgid "" "The assigned platform is limited to {platform_manufacturer} device types, " @@ -6233,18 +5786,18 @@ msgstr "" "Das zugewiesene Betriebssystem ist beschränkt auf {platform_manufacturer} " "Gerätetypen, aber der Typ dieses Geräts gehört zu {devicetype_manufacturer}." -#: netbox/dcim/models/devices.py:975 +#: dcim/models/devices.py:975 #, python-brace-format msgid "The assigned cluster belongs to a different site ({site})" msgstr "Der zugewiesene Cluster gehört zu einem anderen Standort ({site})" -#: netbox/dcim/models/devices.py:983 +#: dcim/models/devices.py:983 msgid "A device assigned to a virtual chassis must have its position defined." msgstr "" "Die Position eines Geräts, das einem virtuellen Gehäuse zugewiesen ist, muss" " definiert sein." -#: netbox/dcim/models/devices.py:988 +#: dcim/models/devices.py:988 #, python-brace-format msgid "" "Device cannot be removed from virtual chassis {virtual_chassis} because it " @@ -6253,15 +5806,15 @@ msgstr "" "Gerät kann nicht aus dem virtuellen Gehäuse entfernt werden " "{virtual_chassis} weil es derzeit der Master ist." -#: netbox/dcim/models/devices.py:1196 +#: dcim/models/devices.py:1196 msgid "module" msgstr "Modul" -#: netbox/dcim/models/devices.py:1197 +#: dcim/models/devices.py:1197 msgid "modules" msgstr "Module" -#: netbox/dcim/models/devices.py:1213 +#: dcim/models/devices.py:1213 #, python-brace-format msgid "" "Module must be installed within a module bay belonging to the assigned " @@ -6270,15 +5823,15 @@ msgstr "" "Das Modul muss in einem Modulschacht installiert werden, der zum " "zugewiesenen Gerät gehört ({device})." -#: netbox/dcim/models/devices.py:1334 +#: dcim/models/devices.py:1334 msgid "domain" msgstr "Domäne" -#: netbox/dcim/models/devices.py:1347 netbox/dcim/models/devices.py:1348 +#: dcim/models/devices.py:1347 dcim/models/devices.py:1348 msgid "virtual chassis" msgstr "virtuelles Gehäuse" -#: netbox/dcim/models/devices.py:1363 +#: dcim/models/devices.py:1363 #, python-brace-format msgid "" "The selected master ({master}) is not assigned to this virtual chassis." @@ -6286,7 +5839,7 @@ msgstr "" "Der gewählte Master ({master}) ist diesem virtuellen Chassis nicht " "zugewiesen." -#: netbox/dcim/models/devices.py:1379 +#: dcim/models/devices.py:1379 #, python-brace-format msgid "" "Unable to delete virtual chassis {self}. There are member interfaces which " @@ -6295,63 +5848,63 @@ msgstr "" "Das virtuelle Gehäuse kann nicht gelöscht werden {self}. Es gibt " "Mitgliedsschnittstellen, die gehäuseübergreifende LAG-Schnittstellen bilden." -#: netbox/dcim/models/devices.py:1404 netbox/vpn/models/l2vpn.py:37 +#: dcim/models/devices.py:1404 vpn/models/l2vpn.py:37 msgid "identifier" msgstr "identifizieren" -#: netbox/dcim/models/devices.py:1405 +#: dcim/models/devices.py:1405 msgid "Numeric identifier unique to the parent device" msgstr "Numerische Kennung, die für das übergeordnete Gerät eindeutig ist" -#: netbox/dcim/models/devices.py:1433 netbox/extras/models/customfields.py:225 -#: netbox/extras/models/models.py:107 netbox/extras/models/models.py:694 -#: netbox/netbox/models/__init__.py:115 +#: dcim/models/devices.py:1433 extras/models/customfields.py:225 +#: extras/models/models.py:107 extras/models/models.py:694 +#: netbox/models/__init__.py:115 msgid "comments" msgstr "Kommentare" -#: netbox/dcim/models/devices.py:1449 +#: dcim/models/devices.py:1449 msgid "virtual device context" msgstr "Virtual Device Context" -#: netbox/dcim/models/devices.py:1450 +#: dcim/models/devices.py:1450 msgid "virtual device contexts" msgstr "Virtual Device Context" -#: netbox/dcim/models/devices.py:1482 +#: dcim/models/devices.py:1482 #, python-brace-format msgid "{ip} is not an IPv{family} address." msgstr "{ip} ist keine IPv{family}-Adresse." -#: netbox/dcim/models/devices.py:1488 +#: dcim/models/devices.py:1488 msgid "Primary IP address must belong to an interface on the assigned device." msgstr "" "Die primäre IP-Adresse muss zu einer Schnittstelle auf dem zugewiesenen " "Gerät gehören." -#: netbox/dcim/models/mixins.py:15 netbox/extras/models/configs.py:41 -#: netbox/extras/models/models.py:313 netbox/extras/models/models.py:522 -#: netbox/extras/models/search.py:48 netbox/ipam/models/ip.py:194 +#: dcim/models/mixins.py:15 extras/models/configs.py:41 +#: extras/models/models.py:313 extras/models/models.py:522 +#: extras/models/search.py:48 ipam/models/ip.py:194 msgid "weight" msgstr "Gewicht" -#: netbox/dcim/models/mixins.py:22 +#: dcim/models/mixins.py:22 msgid "weight unit" msgstr "Gewichtseinheit" -#: netbox/dcim/models/mixins.py:51 +#: dcim/models/mixins.py:51 msgid "Must specify a unit when setting a weight" msgstr "" "Wenn ein Gewicht eingegeben wird, muss auch eine Einheit eingegeben werden." -#: netbox/dcim/models/power.py:55 +#: dcim/models/power.py:55 msgid "power panel" msgstr "Stromverteiler" -#: netbox/dcim/models/power.py:56 +#: dcim/models/power.py:56 msgid "power panels" msgstr "Stromverteiler" -#: netbox/dcim/models/power.py:70 +#: dcim/models/power.py:70 #, python-brace-format msgid "" "Location {location} ({location_site}) is in a different site than {site}" @@ -6359,43 +5912,43 @@ msgstr "" "Lokation {location} ({location_site}) befindet sich auf einem anderen " "Standort als {site}" -#: netbox/dcim/models/power.py:108 +#: dcim/models/power.py:108 msgid "supply" msgstr "liefern" -#: netbox/dcim/models/power.py:114 +#: dcim/models/power.py:114 msgid "phase" msgstr "Phase" -#: netbox/dcim/models/power.py:120 +#: dcim/models/power.py:120 msgid "voltage" msgstr "Spannung" -#: netbox/dcim/models/power.py:125 +#: dcim/models/power.py:125 msgid "amperage" msgstr "Stromstärke" -#: netbox/dcim/models/power.py:130 +#: dcim/models/power.py:130 msgid "max utilization" msgstr "maximale Auslastung" -#: netbox/dcim/models/power.py:133 +#: dcim/models/power.py:133 msgid "Maximum permissible draw (percentage)" msgstr "Maximal zulässige Auslastung (in Prozent)" -#: netbox/dcim/models/power.py:136 +#: dcim/models/power.py:136 msgid "available power" msgstr "verfügbare Leistung" -#: netbox/dcim/models/power.py:164 +#: dcim/models/power.py:164 msgid "power feed" msgstr "Stromzufuhr" -#: netbox/dcim/models/power.py:165 +#: dcim/models/power.py:165 msgid "power feeds" msgstr "Stromzufuhren" -#: netbox/dcim/models/power.py:179 +#: dcim/models/power.py:179 #, python-brace-format msgid "" "Rack {rack} ({rack_site}) and power panel {powerpanel} ({powerpanel_site}) " @@ -6404,63 +5957,63 @@ msgstr "" "Rack {rack} ({rack_site}) und Stromverteiler {powerpanel} " "({powerpanel_site}) befinden sich an verschiedenen Sites." -#: netbox/dcim/models/power.py:190 +#: dcim/models/power.py:190 msgid "Voltage cannot be negative for AC supply" msgstr "Die Spannung darf für die Wechselstromversorgung nicht negativ sein" -#: netbox/dcim/models/racks.py:47 +#: dcim/models/racks.py:47 msgid "width" msgstr "Breite" -#: netbox/dcim/models/racks.py:48 +#: dcim/models/racks.py:48 msgid "Rail-to-rail width" msgstr "Breite von Schiene zu Schiene" -#: netbox/dcim/models/racks.py:56 +#: dcim/models/racks.py:56 msgid "Height in rack units" msgstr "Höhe in Höheneinheiten (HE)" -#: netbox/dcim/models/racks.py:60 +#: dcim/models/racks.py:60 msgid "starting unit" msgstr "Start HE" -#: netbox/dcim/models/racks.py:62 +#: dcim/models/racks.py:62 msgid "Starting unit for rack" msgstr "Start HE für Rack" -#: netbox/dcim/models/racks.py:66 +#: dcim/models/racks.py:66 msgid "descending units" msgstr "absteigende Höheneinheiten" -#: netbox/dcim/models/racks.py:67 +#: dcim/models/racks.py:67 msgid "Units are numbered top-to-bottom" msgstr "Die Höheneinheiten sind von oben nach unten nummeriert" -#: netbox/dcim/models/racks.py:72 +#: dcim/models/racks.py:72 msgid "outer width" msgstr "äußere Breite" -#: netbox/dcim/models/racks.py:75 +#: dcim/models/racks.py:75 msgid "Outer dimension of rack (width)" msgstr "Außenabmessungen des Racks (Breite)" -#: netbox/dcim/models/racks.py:78 +#: dcim/models/racks.py:78 msgid "outer depth" msgstr "äußere Tiefe" -#: netbox/dcim/models/racks.py:81 +#: dcim/models/racks.py:81 msgid "Outer dimension of rack (depth)" msgstr "Außenabmessung des Racks (Tiefe)" -#: netbox/dcim/models/racks.py:84 +#: dcim/models/racks.py:84 msgid "outer unit" msgstr "Maßeinheit" -#: netbox/dcim/models/racks.py:90 +#: dcim/models/racks.py:90 msgid "mounting depth" msgstr "Einbautiefe" -#: netbox/dcim/models/racks.py:94 +#: dcim/models/racks.py:94 msgid "" "Maximum depth of a mounted device, in millimeters. For four-post racks, this" " is the distance between the front and rear rails." @@ -6468,79 +6021,78 @@ msgstr "" "Maximale Tiefe eines montierten Geräts in Millimetern. Bei Racks mit vier " "Pfosten ist dies der Abstand zwischen den vorderen und hinteren Schienen." -#: netbox/dcim/models/racks.py:102 +#: dcim/models/racks.py:102 msgid "max weight" msgstr "maximales Gewicht" -#: netbox/dcim/models/racks.py:105 +#: dcim/models/racks.py:105 msgid "Maximum load capacity for the rack" msgstr "Maximale Tragfähigkeit des Racks" -#: netbox/dcim/models/racks.py:125 netbox/dcim/models/racks.py:252 +#: dcim/models/racks.py:125 dcim/models/racks.py:252 msgid "form factor" msgstr "Formfaktor" -#: netbox/dcim/models/racks.py:162 +#: dcim/models/racks.py:162 msgid "rack type" msgstr "Racktyp" -#: netbox/dcim/models/racks.py:163 +#: dcim/models/racks.py:163 msgid "rack types" msgstr "Racktypen" -#: netbox/dcim/models/racks.py:180 netbox/dcim/models/racks.py:379 +#: dcim/models/racks.py:180 dcim/models/racks.py:379 msgid "Must specify a unit when setting an outer width/depth" msgstr "" "Muss eine Einheit angeben, wenn eine äußere Breite/Tiefe eingestellt wird" -#: netbox/dcim/models/racks.py:184 netbox/dcim/models/racks.py:383 +#: dcim/models/racks.py:184 dcim/models/racks.py:383 msgid "Must specify a unit when setting a maximum weight" msgstr "" "Bei der Einstellung eines Höchstgewichts muss eine Einheit angegeben werden" -#: netbox/dcim/models/racks.py:230 +#: dcim/models/racks.py:230 msgid "rack role" msgstr "Rolle des Rack" -#: netbox/dcim/models/racks.py:231 +#: dcim/models/racks.py:231 msgid "rack roles" msgstr "Rackrollen" -#: netbox/dcim/models/racks.py:274 +#: dcim/models/racks.py:274 msgid "facility ID" msgstr "Einrichtungs-ID" -#: netbox/dcim/models/racks.py:275 +#: dcim/models/racks.py:275 msgid "Locally-assigned identifier" msgstr "Lokal zugewiesener Bezeichner" -#: netbox/dcim/models/racks.py:308 netbox/ipam/forms/bulk_import.py:201 -#: netbox/ipam/forms/bulk_import.py:266 netbox/ipam/forms/bulk_import.py:301 -#: netbox/ipam/forms/bulk_import.py:459 -#: netbox/virtualization/forms/bulk_import.py:112 +#: dcim/models/racks.py:308 ipam/forms/bulk_import.py:201 +#: ipam/forms/bulk_import.py:266 ipam/forms/bulk_import.py:301 +#: ipam/forms/bulk_import.py:459 virtualization/forms/bulk_import.py:112 msgid "Functional role" msgstr "Funktionelle Rolle" -#: netbox/dcim/models/racks.py:321 +#: dcim/models/racks.py:321 msgid "A unique tag used to identify this rack" msgstr "" "Ein eindeutiger Wert, das zur Identifizierung dieses Racks verwendet wird" -#: netbox/dcim/models/racks.py:359 +#: dcim/models/racks.py:359 msgid "rack" msgstr "Rack" -#: netbox/dcim/models/racks.py:360 +#: dcim/models/racks.py:360 msgid "racks" msgstr "Racks" -#: netbox/dcim/models/racks.py:375 +#: dcim/models/racks.py:375 #, python-brace-format msgid "Assigned location must belong to parent site ({site})." msgstr "" "Die zugewiesene Lokation muss zum übergeordneten Standort gehören ({site})." -#: netbox/dcim/models/racks.py:393 +#: dcim/models/racks.py:393 #, python-brace-format msgid "" "Rack must be at least {min_height}U tall to house currently installed " @@ -6549,7 +6101,7 @@ msgstr "" "Das Rack muss mindestens {min_height}HE groß sein, um aktuell installierten " "Geräte unterzubringen." -#: netbox/dcim/models/racks.py:400 +#: dcim/models/racks.py:400 #, python-brace-format msgid "" "Rack unit numbering must begin at {position} or less to house currently " @@ -6558,968 +6110,905 @@ msgstr "" "Die Nummerierung der Höheneinheiten muss bei {position} oder weniger " "beginnen, um die aktuell installierten Geräte unterzubringen." -#: netbox/dcim/models/racks.py:408 +#: dcim/models/racks.py:408 #, python-brace-format msgid "Location must be from the same site, {site}." msgstr "Die Lokation muss vom selben Standort stammen, {site}." -#: netbox/dcim/models/racks.py:670 +#: dcim/models/racks.py:670 msgid "units" msgstr "Einheiten" -#: netbox/dcim/models/racks.py:696 +#: dcim/models/racks.py:696 msgid "rack reservation" msgstr "HE-Reservierung" -#: netbox/dcim/models/racks.py:697 +#: dcim/models/racks.py:697 msgid "rack reservations" msgstr "Rackreservierungen" -#: netbox/dcim/models/racks.py:714 +#: dcim/models/racks.py:714 #, python-brace-format msgid "Invalid unit(s) for {height}U rack: {unit_list}" msgstr "Ungültige Einheit(en) für {height}HE Rack: {unit_list}" -#: netbox/dcim/models/racks.py:727 +#: dcim/models/racks.py:727 #, python-brace-format msgid "The following units have already been reserved: {unit_list}" msgstr "Die folgenden Einheiten wurden bereits reserviert: {unit_list}" -#: netbox/dcim/models/sites.py:49 +#: dcim/models/sites.py:49 msgid "A top-level region with this name already exists." msgstr "" "Eine Region der obersten Ebene mit diesem Namen ist bereits vorhanden." -#: netbox/dcim/models/sites.py:59 +#: dcim/models/sites.py:59 msgid "A top-level region with this slug already exists." msgstr "Eine Top-Level-Region mit dieser URL-Slug existiert bereits." -#: netbox/dcim/models/sites.py:62 +#: dcim/models/sites.py:62 msgid "region" msgstr "Region" -#: netbox/dcim/models/sites.py:63 +#: dcim/models/sites.py:63 msgid "regions" msgstr "Regionen" -#: netbox/dcim/models/sites.py:102 +#: dcim/models/sites.py:102 msgid "A top-level site group with this name already exists." msgstr "" "Eine Standortgruppe auf oberster Ebene mit diesem Namen ist bereits " "vorhanden." -#: netbox/dcim/models/sites.py:112 +#: dcim/models/sites.py:112 msgid "A top-level site group with this slug already exists." msgstr "" "Eine Standortgruppe auf oberster Ebene mit diesem URL-Slug existiert " "bereits." -#: netbox/dcim/models/sites.py:115 +#: dcim/models/sites.py:115 msgid "site group" msgstr "Standortgruppe" -#: netbox/dcim/models/sites.py:116 +#: dcim/models/sites.py:116 msgid "site groups" msgstr "Standortgruppen" -#: netbox/dcim/models/sites.py:141 +#: dcim/models/sites.py:141 msgid "Full name of the site" msgstr "Vollständiger Name des Standorts" -#: netbox/dcim/models/sites.py:181 netbox/dcim/models/sites.py:279 +#: dcim/models/sites.py:181 dcim/models/sites.py:279 msgid "facility" msgstr "Einrichtung" -#: netbox/dcim/models/sites.py:184 netbox/dcim/models/sites.py:282 +#: dcim/models/sites.py:184 dcim/models/sites.py:282 msgid "Local facility ID or description" msgstr "Lokale Einrichtungs-ID oder Beschreibung" -#: netbox/dcim/models/sites.py:195 +#: dcim/models/sites.py:195 msgid "physical address" msgstr "physische Adresse" -#: netbox/dcim/models/sites.py:198 +#: dcim/models/sites.py:198 msgid "Physical location of the building" msgstr "Physischer Standort des Gebäudes" -#: netbox/dcim/models/sites.py:201 +#: dcim/models/sites.py:201 msgid "shipping address" msgstr "Lieferadresse" -#: netbox/dcim/models/sites.py:204 +#: dcim/models/sites.py:204 msgid "If different from the physical address" msgstr "Falls anders als die physische Adresse" -#: netbox/dcim/models/sites.py:238 +#: dcim/models/sites.py:238 msgid "site" msgstr "Standort" -#: netbox/dcim/models/sites.py:239 +#: dcim/models/sites.py:239 msgid "sites" msgstr "Standorte" -#: netbox/dcim/models/sites.py:309 +#: dcim/models/sites.py:309 msgid "A location with this name already exists within the specified site." msgstr "" "Eine Lokation mit diesem Namen ist bereits in dem angegebenen Standort " "vorhanden." -#: netbox/dcim/models/sites.py:319 +#: dcim/models/sites.py:319 msgid "A location with this slug already exists within the specified site." msgstr "" "Ein Lokation mit diesem URL-Slug existiert bereits auf dem angegebenen " "Standort." -#: netbox/dcim/models/sites.py:322 +#: dcim/models/sites.py:322 msgid "location" msgstr "Lokation" -#: netbox/dcim/models/sites.py:323 +#: dcim/models/sites.py:323 msgid "locations" msgstr "Lokationen" -#: netbox/dcim/models/sites.py:337 +#: dcim/models/sites.py:337 #, python-brace-format msgid "Parent location ({parent}) must belong to the same site ({site})." msgstr "" "Übergeordneter Standort ({parent}) muss zum gleichen Standort gehören " "({site})." -#: netbox/dcim/tables/cables.py:55 +#: dcim/tables/cables.py:55 msgid "Termination A" msgstr "Abschlusspunkt A" -#: netbox/dcim/tables/cables.py:60 +#: dcim/tables/cables.py:60 msgid "Termination B" msgstr "Abschlusspunkt B" -#: netbox/dcim/tables/cables.py:66 netbox/wireless/tables/wirelesslink.py:23 +#: dcim/tables/cables.py:66 wireless/tables/wirelesslink.py:23 msgid "Device A" msgstr "Gerät A" -#: netbox/dcim/tables/cables.py:72 netbox/wireless/tables/wirelesslink.py:32 +#: dcim/tables/cables.py:72 wireless/tables/wirelesslink.py:32 msgid "Device B" msgstr "Gerät B" -#: netbox/dcim/tables/cables.py:78 +#: dcim/tables/cables.py:78 msgid "Location A" msgstr "Standort A" -#: netbox/dcim/tables/cables.py:84 +#: dcim/tables/cables.py:84 msgid "Location B" msgstr "Standort B" -#: netbox/dcim/tables/cables.py:90 +#: dcim/tables/cables.py:90 msgid "Rack A" msgstr "Rack A" -#: netbox/dcim/tables/cables.py:96 +#: dcim/tables/cables.py:96 msgid "Rack B" msgstr "Rack B" -#: netbox/dcim/tables/cables.py:102 +#: dcim/tables/cables.py:102 msgid "Site A" msgstr "Standort A" -#: netbox/dcim/tables/cables.py:108 +#: dcim/tables/cables.py:108 msgid "Site B" msgstr "Standort B" -#: netbox/dcim/tables/connections.py:31 netbox/dcim/tables/connections.py:50 -#: netbox/dcim/tables/connections.py:71 -#: netbox/templates/dcim/inc/connection_endpoints.html:16 +#: dcim/tables/connections.py:31 dcim/tables/connections.py:50 +#: dcim/tables/connections.py:71 +#: templates/dcim/inc/connection_endpoints.html:16 msgid "Reachable" msgstr "Erreichbar" -#: netbox/dcim/tables/devices.py:58 netbox/dcim/tables/devices.py:106 -#: netbox/dcim/tables/racks.py:150 netbox/dcim/tables/sites.py:105 -#: netbox/dcim/tables/sites.py:148 netbox/extras/tables/tables.py:545 -#: netbox/netbox/navigation/menu.py:69 netbox/netbox/navigation/menu.py:73 -#: netbox/netbox/navigation/menu.py:75 -#: netbox/virtualization/forms/model_forms.py:122 -#: netbox/virtualization/tables/clusters.py:83 -#: netbox/virtualization/views.py:206 +#: dcim/tables/devices.py:58 dcim/tables/devices.py:106 +#: dcim/tables/racks.py:150 dcim/tables/sites.py:105 dcim/tables/sites.py:148 +#: extras/tables/tables.py:545 netbox/navigation/menu.py:69 +#: netbox/navigation/menu.py:73 netbox/navigation/menu.py:75 +#: virtualization/forms/model_forms.py:122 +#: virtualization/tables/clusters.py:83 virtualization/views.py:206 msgid "Devices" msgstr "Geräte" -#: netbox/dcim/tables/devices.py:63 netbox/dcim/tables/devices.py:111 -#: netbox/virtualization/tables/clusters.py:88 +#: dcim/tables/devices.py:63 dcim/tables/devices.py:111 +#: virtualization/tables/clusters.py:88 msgid "VMs" msgstr "VMs" -#: netbox/dcim/tables/devices.py:100 netbox/dcim/tables/devices.py:216 -#: netbox/extras/forms/model_forms.py:630 -#: netbox/templates/dcim/device.html:112 -#: netbox/templates/dcim/device/render_config.html:11 -#: netbox/templates/dcim/device/render_config.html:14 -#: netbox/templates/dcim/devicerole.html:44 -#: netbox/templates/dcim/platform.html:41 -#: netbox/templates/extras/configtemplate.html:10 -#: netbox/templates/virtualization/virtualmachine.html:48 -#: netbox/templates/virtualization/virtualmachine/render_config.html:11 -#: netbox/templates/virtualization/virtualmachine/render_config.html:14 -#: netbox/virtualization/tables/virtualmachines.py:107 +#: dcim/tables/devices.py:100 dcim/tables/devices.py:216 +#: extras/forms/model_forms.py:630 templates/dcim/device.html:112 +#: templates/dcim/device/render_config.html:11 +#: templates/dcim/device/render_config.html:14 +#: templates/dcim/devicerole.html:44 templates/dcim/platform.html:41 +#: templates/extras/configtemplate.html:10 +#: templates/virtualization/virtualmachine.html:48 +#: templates/virtualization/virtualmachine/render_config.html:11 +#: templates/virtualization/virtualmachine/render_config.html:14 +#: virtualization/tables/virtualmachines.py:107 msgid "Config Template" msgstr "Konfigvorlage" -#: netbox/dcim/tables/devices.py:150 netbox/templates/dcim/sitegroup.html:26 +#: dcim/tables/devices.py:150 templates/dcim/sitegroup.html:26 msgid "Site Group" msgstr "Standortgruppe" -#: netbox/dcim/tables/devices.py:187 netbox/dcim/tables/devices.py:1068 -#: netbox/ipam/forms/bulk_import.py:503 netbox/ipam/forms/model_forms.py:306 -#: netbox/ipam/forms/model_forms.py:315 netbox/ipam/tables/ip.py:356 -#: netbox/ipam/tables/ip.py:423 netbox/ipam/tables/ip.py:446 -#: netbox/templates/ipam/ipaddress.html:11 -#: netbox/virtualization/tables/virtualmachines.py:95 +#: dcim/tables/devices.py:187 dcim/tables/devices.py:1068 +#: ipam/forms/bulk_import.py:503 ipam/forms/model_forms.py:306 +#: ipam/forms/model_forms.py:315 ipam/tables/ip.py:356 ipam/tables/ip.py:423 +#: ipam/tables/ip.py:446 templates/ipam/ipaddress.html:11 +#: virtualization/tables/virtualmachines.py:95 msgid "IP Address" msgstr "IP-Adresse" -#: netbox/dcim/tables/devices.py:191 netbox/dcim/tables/devices.py:1072 -#: netbox/virtualization/tables/virtualmachines.py:86 +#: dcim/tables/devices.py:191 dcim/tables/devices.py:1072 +#: virtualization/tables/virtualmachines.py:86 msgid "IPv4 Address" msgstr "IPv4-Adresse" -#: netbox/dcim/tables/devices.py:195 netbox/dcim/tables/devices.py:1076 -#: netbox/virtualization/tables/virtualmachines.py:90 +#: dcim/tables/devices.py:195 dcim/tables/devices.py:1076 +#: virtualization/tables/virtualmachines.py:90 msgid "IPv6 Address" msgstr "IPv6-Adresse" -#: netbox/dcim/tables/devices.py:210 +#: dcim/tables/devices.py:210 msgid "VC Position" msgstr "VC-Position" -#: netbox/dcim/tables/devices.py:213 +#: dcim/tables/devices.py:213 msgid "VC Priority" msgstr "VC-Priorität" -#: netbox/dcim/tables/devices.py:220 netbox/templates/dcim/device_edit.html:38 -#: netbox/templates/dcim/devicebay_populate.html:16 +#: dcim/tables/devices.py:220 templates/dcim/device_edit.html:38 +#: templates/dcim/devicebay_populate.html:16 msgid "Parent Device" msgstr "Übergeordnetes Gerät" -#: netbox/dcim/tables/devices.py:225 +#: dcim/tables/devices.py:225 msgid "Position (Device Bay)" msgstr "Position (Geräteschacht)" -#: netbox/dcim/tables/devices.py:234 +#: dcim/tables/devices.py:234 msgid "Console ports" msgstr "Konsolenanschlüsse" -#: netbox/dcim/tables/devices.py:237 +#: dcim/tables/devices.py:237 msgid "Console server ports" msgstr "Konsolenserveranschlüsse" -#: netbox/dcim/tables/devices.py:240 +#: dcim/tables/devices.py:240 msgid "Power ports" msgstr "Stromanschlüsse" -#: netbox/dcim/tables/devices.py:243 +#: dcim/tables/devices.py:243 msgid "Power outlets" msgstr "Steckdosen" -#: netbox/dcim/tables/devices.py:246 netbox/dcim/tables/devices.py:1081 -#: netbox/dcim/tables/devicetypes.py:128 netbox/dcim/views.py:1042 -#: netbox/dcim/views.py:1281 netbox/dcim/views.py:1977 -#: netbox/netbox/navigation/menu.py:94 netbox/netbox/navigation/menu.py:250 -#: netbox/templates/dcim/device/base.html:37 -#: netbox/templates/dcim/device_list.html:43 -#: netbox/templates/dcim/devicetype/base.html:34 -#: netbox/templates/dcim/module.html:34 -#: netbox/templates/dcim/moduletype/base.html:34 -#: netbox/templates/dcim/virtualdevicecontext.html:61 -#: netbox/templates/dcim/virtualdevicecontext.html:81 -#: netbox/templates/virtualization/virtualmachine/base.html:27 -#: netbox/templates/virtualization/virtualmachine_list.html:14 -#: netbox/virtualization/tables/virtualmachines.py:101 -#: netbox/virtualization/views.py:366 netbox/wireless/tables/wirelesslan.py:55 +#: dcim/tables/devices.py:246 dcim/tables/devices.py:1081 +#: dcim/tables/devicetypes.py:128 dcim/views.py:1042 dcim/views.py:1281 +#: dcim/views.py:1977 netbox/navigation/menu.py:94 +#: netbox/navigation/menu.py:250 templates/dcim/device/base.html:37 +#: templates/dcim/device_list.html:43 templates/dcim/devicetype/base.html:34 +#: templates/dcim/inc/moduletype_buttons.html:25 templates/dcim/module.html:34 +#: templates/dcim/virtualdevicecontext.html:61 +#: templates/dcim/virtualdevicecontext.html:81 +#: templates/virtualization/virtualmachine/base.html:27 +#: templates/virtualization/virtualmachine_list.html:14 +#: virtualization/tables/virtualmachines.py:101 virtualization/views.py:366 +#: wireless/tables/wirelesslan.py:55 msgid "Interfaces" msgstr "Schnittstellen" -#: netbox/dcim/tables/devices.py:249 +#: dcim/tables/devices.py:249 msgid "Front ports" msgstr "Frontanschlüsse" -#: netbox/dcim/tables/devices.py:255 +#: dcim/tables/devices.py:255 msgid "Device bays" msgstr "Geräteeinsätze" -#: netbox/dcim/tables/devices.py:258 +#: dcim/tables/devices.py:258 msgid "Module bays" msgstr "Moduleinsätze" -#: netbox/dcim/tables/devices.py:261 +#: dcim/tables/devices.py:261 msgid "Inventory items" msgstr "Inventarartikel" -#: netbox/dcim/tables/devices.py:305 netbox/dcim/tables/modules.py:56 -#: netbox/templates/dcim/modulebay.html:17 +#: dcim/tables/devices.py:305 dcim/tables/modules.py:56 +#: templates/dcim/modulebay.html:17 msgid "Module Bay" msgstr "Moduleinsatz" -#: netbox/dcim/tables/devices.py:318 netbox/dcim/tables/devicetypes.py:47 -#: netbox/dcim/tables/devicetypes.py:143 netbox/dcim/views.py:1117 -#: netbox/dcim/views.py:2075 netbox/netbox/navigation/menu.py:103 -#: netbox/templates/dcim/device/base.html:52 -#: netbox/templates/dcim/device_list.html:71 -#: netbox/templates/dcim/devicetype/base.html:49 -#: netbox/templates/dcim/inc/panels/inventory_items.html:6 -#: netbox/templates/dcim/inventoryitemrole.html:32 +#: dcim/tables/devices.py:318 dcim/tables/devicetypes.py:47 +#: dcim/tables/devicetypes.py:143 dcim/views.py:1117 dcim/views.py:2075 +#: netbox/navigation/menu.py:103 templates/dcim/device/base.html:52 +#: templates/dcim/device_list.html:71 templates/dcim/devicetype/base.html:49 +#: templates/dcim/inc/panels/inventory_items.html:6 +#: templates/dcim/inventoryitemrole.html:32 msgid "Inventory Items" msgstr "Inventarartikel" -#: netbox/dcim/tables/devices.py:333 +#: dcim/tables/devices.py:333 msgid "Cable Color" msgstr "Farbe des Kabels" -#: netbox/dcim/tables/devices.py:339 +#: dcim/tables/devices.py:339 msgid "Link Peers" msgstr "Verbindungsenden" -#: netbox/dcim/tables/devices.py:342 +#: dcim/tables/devices.py:342 msgid "Mark Connected" msgstr "Als verbunden markieren" -#: netbox/dcim/tables/devices.py:461 +#: dcim/tables/devices.py:461 msgid "Maximum draw (W)" msgstr "Maximaler Stromverbrauch (W)" -#: netbox/dcim/tables/devices.py:464 +#: dcim/tables/devices.py:464 msgid "Allocated draw (W)" msgstr "Zugewiesener Stromverbrauch (W)" -#: netbox/dcim/tables/devices.py:558 netbox/ipam/forms/model_forms.py:701 -#: netbox/ipam/tables/fhrp.py:28 netbox/ipam/views.py:596 -#: netbox/ipam/views.py:696 netbox/netbox/navigation/menu.py:158 -#: netbox/netbox/navigation/menu.py:160 -#: netbox/templates/dcim/interface.html:339 -#: netbox/templates/ipam/ipaddress_bulk_add.html:15 -#: netbox/templates/ipam/service.html:40 -#: netbox/templates/virtualization/vminterface.html:85 -#: netbox/vpn/tables/tunnels.py:98 +#: dcim/tables/devices.py:558 ipam/forms/model_forms.py:701 +#: ipam/tables/fhrp.py:28 ipam/views.py:596 ipam/views.py:696 +#: netbox/navigation/menu.py:158 netbox/navigation/menu.py:160 +#: templates/dcim/interface.html:339 templates/ipam/ipaddress_bulk_add.html:15 +#: templates/ipam/service.html:40 templates/virtualization/vminterface.html:85 +#: vpn/tables/tunnels.py:98 msgid "IP Addresses" msgstr "IP-Adressen" -#: netbox/dcim/tables/devices.py:564 netbox/netbox/navigation/menu.py:202 -#: netbox/templates/ipam/inc/panels/fhrp_groups.html:6 +#: dcim/tables/devices.py:564 netbox/navigation/menu.py:202 +#: templates/ipam/inc/panels/fhrp_groups.html:6 msgid "FHRP Groups" msgstr "FHRP-Gruppen" -#: netbox/dcim/tables/devices.py:576 netbox/templates/dcim/interface.html:89 -#: netbox/templates/virtualization/vminterface.html:67 -#: netbox/templates/vpn/tunnel.html:18 -#: netbox/templates/vpn/tunneltermination.html:13 -#: netbox/vpn/forms/bulk_edit.py:76 netbox/vpn/forms/bulk_import.py:76 -#: netbox/vpn/forms/filtersets.py:42 netbox/vpn/forms/filtersets.py:82 -#: netbox/vpn/forms/model_forms.py:60 netbox/vpn/forms/model_forms.py:145 -#: netbox/vpn/tables/tunnels.py:78 +#: dcim/tables/devices.py:576 templates/dcim/interface.html:89 +#: templates/virtualization/vminterface.html:67 templates/vpn/tunnel.html:18 +#: templates/vpn/tunneltermination.html:13 vpn/forms/bulk_edit.py:76 +#: vpn/forms/bulk_import.py:76 vpn/forms/filtersets.py:42 +#: vpn/forms/filtersets.py:82 vpn/forms/model_forms.py:60 +#: vpn/forms/model_forms.py:145 vpn/tables/tunnels.py:78 msgid "Tunnel" msgstr "Tunnel" -#: netbox/dcim/tables/devices.py:604 netbox/dcim/tables/devicetypes.py:227 -#: netbox/templates/dcim/interface.html:65 +#: dcim/tables/devices.py:604 dcim/tables/devicetypes.py:227 +#: templates/dcim/interface.html:65 msgid "Management Only" msgstr "Nur zur Verwaltung" -#: netbox/dcim/tables/devices.py:623 +#: dcim/tables/devices.py:623 msgid "VDCs" msgstr "VDCs" -#: netbox/dcim/tables/devices.py:873 netbox/templates/dcim/modulebay.html:53 +#: dcim/tables/devices.py:873 templates/dcim/modulebay.html:53 msgid "Installed Module" msgstr "Installiertes Modul" -#: netbox/dcim/tables/devices.py:876 +#: dcim/tables/devices.py:876 msgid "Module Serial" msgstr "Seriennummer des Moduls" -#: netbox/dcim/tables/devices.py:880 +#: dcim/tables/devices.py:880 msgid "Module Asset Tag" msgstr "Modul-Asset-Tag" -#: netbox/dcim/tables/devices.py:889 +#: dcim/tables/devices.py:889 msgid "Module Status" msgstr "Status des Moduls" -#: netbox/dcim/tables/devices.py:944 netbox/dcim/tables/devicetypes.py:312 -#: netbox/templates/dcim/inventoryitem.html:40 +#: dcim/tables/devices.py:944 dcim/tables/devicetypes.py:312 +#: templates/dcim/inventoryitem.html:40 msgid "Component" msgstr "Komponente" -#: netbox/dcim/tables/devices.py:1000 +#: dcim/tables/devices.py:1000 msgid "Items" msgstr "Artikel" -#: netbox/dcim/tables/devicetypes.py:37 netbox/netbox/navigation/menu.py:84 -#: netbox/netbox/navigation/menu.py:86 +#: dcim/tables/devicetypes.py:37 netbox/navigation/menu.py:84 +#: netbox/navigation/menu.py:86 msgid "Device Types" msgstr "Gerätetypen" -#: netbox/dcim/tables/devicetypes.py:42 netbox/netbox/navigation/menu.py:87 +#: dcim/tables/devicetypes.py:42 netbox/navigation/menu.py:87 msgid "Module Types" msgstr "Modultypen" -#: netbox/dcim/tables/devicetypes.py:52 netbox/extras/forms/filtersets.py:371 -#: netbox/extras/forms/model_forms.py:537 netbox/extras/tables/tables.py:540 -#: netbox/netbox/navigation/menu.py:78 +#: dcim/tables/devicetypes.py:52 extras/forms/filtersets.py:371 +#: extras/forms/model_forms.py:537 extras/tables/tables.py:540 +#: netbox/navigation/menu.py:78 msgid "Platforms" msgstr "Betriebssysteme" -#: netbox/dcim/tables/devicetypes.py:84 -#: netbox/templates/dcim/devicetype.html:29 +#: dcim/tables/devicetypes.py:84 templates/dcim/devicetype.html:29 msgid "Default Platform" msgstr "Standard-Betriebssystem" -#: netbox/dcim/tables/devicetypes.py:88 -#: netbox/templates/dcim/devicetype.html:45 +#: dcim/tables/devicetypes.py:88 templates/dcim/devicetype.html:45 msgid "Full Depth" msgstr "Volle Tiefe" -#: netbox/dcim/tables/devicetypes.py:98 +#: dcim/tables/devicetypes.py:98 msgid "U Height" msgstr "Höhe in HE" -#: netbox/dcim/tables/devicetypes.py:113 netbox/dcim/tables/modules.py:26 -#: netbox/dcim/tables/racks.py:89 +#: dcim/tables/devicetypes.py:113 dcim/tables/modules.py:26 +#: dcim/tables/racks.py:89 msgid "Instances" msgstr "Instanzen" -#: netbox/dcim/tables/devicetypes.py:116 netbox/dcim/views.py:982 -#: netbox/dcim/views.py:1221 netbox/dcim/views.py:1913 -#: netbox/netbox/navigation/menu.py:97 -#: netbox/templates/dcim/device/base.html:25 -#: netbox/templates/dcim/device_list.html:15 -#: netbox/templates/dcim/devicetype/base.html:22 -#: netbox/templates/dcim/module.html:22 -#: netbox/templates/dcim/moduletype/base.html:22 +#: dcim/tables/devicetypes.py:116 dcim/views.py:982 dcim/views.py:1221 +#: dcim/views.py:1913 netbox/navigation/menu.py:97 +#: templates/dcim/device/base.html:25 templates/dcim/device_list.html:15 +#: templates/dcim/devicetype/base.html:22 +#: templates/dcim/inc/moduletype_buttons.html:13 templates/dcim/module.html:22 msgid "Console Ports" msgstr "Konsolenanschlüsse" -#: netbox/dcim/tables/devicetypes.py:119 netbox/dcim/views.py:997 -#: netbox/dcim/views.py:1236 netbox/dcim/views.py:1929 -#: netbox/netbox/navigation/menu.py:98 -#: netbox/templates/dcim/device/base.html:28 -#: netbox/templates/dcim/device_list.html:22 -#: netbox/templates/dcim/devicetype/base.html:25 -#: netbox/templates/dcim/module.html:25 -#: netbox/templates/dcim/moduletype/base.html:25 +#: dcim/tables/devicetypes.py:119 dcim/views.py:997 dcim/views.py:1236 +#: dcim/views.py:1929 netbox/navigation/menu.py:98 +#: templates/dcim/device/base.html:28 templates/dcim/device_list.html:22 +#: templates/dcim/devicetype/base.html:25 +#: templates/dcim/inc/moduletype_buttons.html:16 templates/dcim/module.html:25 msgid "Console Server Ports" msgstr "Konsolenserveranschlüsse" -#: netbox/dcim/tables/devicetypes.py:122 netbox/dcim/views.py:1012 -#: netbox/dcim/views.py:1251 netbox/dcim/views.py:1945 -#: netbox/netbox/navigation/menu.py:99 -#: netbox/templates/dcim/device/base.html:31 -#: netbox/templates/dcim/device_list.html:29 -#: netbox/templates/dcim/devicetype/base.html:28 -#: netbox/templates/dcim/module.html:28 -#: netbox/templates/dcim/moduletype/base.html:28 +#: dcim/tables/devicetypes.py:122 dcim/views.py:1012 dcim/views.py:1251 +#: dcim/views.py:1945 netbox/navigation/menu.py:99 +#: templates/dcim/device/base.html:31 templates/dcim/device_list.html:29 +#: templates/dcim/devicetype/base.html:28 +#: templates/dcim/inc/moduletype_buttons.html:19 templates/dcim/module.html:28 msgid "Power Ports" msgstr "Stromanschlüsse" -#: netbox/dcim/tables/devicetypes.py:125 netbox/dcim/views.py:1027 -#: netbox/dcim/views.py:1266 netbox/dcim/views.py:1961 -#: netbox/netbox/navigation/menu.py:100 -#: netbox/templates/dcim/device/base.html:34 -#: netbox/templates/dcim/device_list.html:36 -#: netbox/templates/dcim/devicetype/base.html:31 -#: netbox/templates/dcim/module.html:31 -#: netbox/templates/dcim/moduletype/base.html:31 +#: dcim/tables/devicetypes.py:125 dcim/views.py:1027 dcim/views.py:1266 +#: dcim/views.py:1961 netbox/navigation/menu.py:100 +#: templates/dcim/device/base.html:34 templates/dcim/device_list.html:36 +#: templates/dcim/devicetype/base.html:31 +#: templates/dcim/inc/moduletype_buttons.html:22 templates/dcim/module.html:31 msgid "Power Outlets" msgstr "Steckdosen" -#: netbox/dcim/tables/devicetypes.py:131 netbox/dcim/views.py:1057 -#: netbox/dcim/views.py:1296 netbox/dcim/views.py:1999 -#: netbox/netbox/navigation/menu.py:95 -#: netbox/templates/dcim/device/base.html:40 -#: netbox/templates/dcim/devicetype/base.html:37 -#: netbox/templates/dcim/module.html:37 -#: netbox/templates/dcim/moduletype/base.html:37 +#: dcim/tables/devicetypes.py:131 dcim/views.py:1057 dcim/views.py:1296 +#: dcim/views.py:1999 netbox/navigation/menu.py:95 +#: templates/dcim/device/base.html:40 templates/dcim/devicetype/base.html:37 +#: templates/dcim/inc/moduletype_buttons.html:28 templates/dcim/module.html:37 msgid "Front Ports" msgstr "Frontanschlüsse" -#: netbox/dcim/tables/devicetypes.py:134 netbox/dcim/views.py:1072 -#: netbox/dcim/views.py:1311 netbox/dcim/views.py:2015 -#: netbox/netbox/navigation/menu.py:96 -#: netbox/templates/dcim/device/base.html:43 -#: netbox/templates/dcim/device_list.html:50 -#: netbox/templates/dcim/devicetype/base.html:40 -#: netbox/templates/dcim/module.html:40 -#: netbox/templates/dcim/moduletype/base.html:40 +#: dcim/tables/devicetypes.py:134 dcim/views.py:1072 dcim/views.py:1311 +#: dcim/views.py:2015 netbox/navigation/menu.py:96 +#: templates/dcim/device/base.html:43 templates/dcim/device_list.html:50 +#: templates/dcim/devicetype/base.html:40 +#: templates/dcim/inc/moduletype_buttons.html:31 templates/dcim/module.html:40 msgid "Rear Ports" msgstr "Rückanschlüsse" -#: netbox/dcim/tables/devicetypes.py:137 netbox/dcim/views.py:1102 -#: netbox/dcim/views.py:2055 netbox/netbox/navigation/menu.py:102 -#: netbox/templates/dcim/device/base.html:49 -#: netbox/templates/dcim/device_list.html:57 -#: netbox/templates/dcim/devicetype/base.html:46 +#: dcim/tables/devicetypes.py:137 dcim/views.py:1102 dcim/views.py:2055 +#: netbox/navigation/menu.py:102 templates/dcim/device/base.html:49 +#: templates/dcim/device_list.html:57 templates/dcim/devicetype/base.html:46 msgid "Device Bays" msgstr "Geräteeinsätze" -#: netbox/dcim/tables/devicetypes.py:140 netbox/dcim/views.py:1087 -#: netbox/dcim/views.py:1326 netbox/dcim/views.py:2035 -#: netbox/netbox/navigation/menu.py:101 -#: netbox/templates/dcim/device/base.html:46 -#: netbox/templates/dcim/device_list.html:64 -#: netbox/templates/dcim/devicetype/base.html:43 -#: netbox/templates/dcim/module.html:43 -#: netbox/templates/dcim/moduletype/base.html:43 +#: dcim/tables/devicetypes.py:140 dcim/views.py:1087 dcim/views.py:1326 +#: dcim/views.py:2035 netbox/navigation/menu.py:101 +#: templates/dcim/device/base.html:46 templates/dcim/device_list.html:64 +#: templates/dcim/devicetype/base.html:43 +#: templates/dcim/inc/moduletype_buttons.html:34 templates/dcim/module.html:43 msgid "Module Bays" msgstr "Moduleinsätze" -#: netbox/dcim/tables/power.py:36 netbox/netbox/navigation/menu.py:297 -#: netbox/templates/dcim/powerpanel.html:51 +#: dcim/tables/power.py:36 netbox/navigation/menu.py:297 +#: templates/dcim/powerpanel.html:51 msgid "Power Feeds" msgstr "Stromzufuhren" -#: netbox/dcim/tables/power.py:80 netbox/templates/dcim/powerfeed.html:99 +#: dcim/tables/power.py:80 templates/dcim/powerfeed.html:99 msgid "Max Utilization" msgstr "Max. Auslastung" -#: netbox/dcim/tables/power.py:84 +#: dcim/tables/power.py:84 msgid "Available Power (VA)" msgstr "Verfügbare Leistung (VA)" -#: netbox/dcim/tables/racks.py:30 netbox/dcim/tables/sites.py:143 -#: netbox/netbox/navigation/menu.py:43 netbox/netbox/navigation/menu.py:47 -#: netbox/netbox/navigation/menu.py:49 +#: dcim/tables/racks.py:30 dcim/tables/sites.py:143 +#: netbox/navigation/menu.py:43 netbox/navigation/menu.py:47 +#: netbox/navigation/menu.py:49 msgid "Racks" msgstr "Racks" -#: netbox/dcim/tables/racks.py:63 netbox/dcim/tables/racks.py:142 -#: netbox/templates/dcim/device.html:318 -#: netbox/templates/dcim/inc/panels/racktype_dimensions.html:14 +#: dcim/tables/racks.py:63 dcim/tables/racks.py:142 +#: templates/dcim/device.html:318 +#: templates/dcim/inc/panels/racktype_dimensions.html:14 msgid "Height" msgstr "Höhe" -#: netbox/dcim/tables/racks.py:67 netbox/dcim/tables/racks.py:165 -#: netbox/templates/dcim/inc/panels/racktype_dimensions.html:18 +#: dcim/tables/racks.py:67 dcim/tables/racks.py:165 +#: templates/dcim/inc/panels/racktype_dimensions.html:18 msgid "Outer Width" msgstr "Äußere Breite" -#: netbox/dcim/tables/racks.py:71 netbox/dcim/tables/racks.py:169 -#: netbox/templates/dcim/inc/panels/racktype_dimensions.html:28 +#: dcim/tables/racks.py:71 dcim/tables/racks.py:169 +#: templates/dcim/inc/panels/racktype_dimensions.html:28 msgid "Outer Depth" msgstr "Äußere Tiefe" -#: netbox/dcim/tables/racks.py:79 netbox/dcim/tables/racks.py:177 +#: dcim/tables/racks.py:79 dcim/tables/racks.py:177 msgid "Max Weight" msgstr "Maximales Gewicht" -#: netbox/dcim/tables/racks.py:154 +#: dcim/tables/racks.py:154 msgid "Space" msgstr "Platz" -#: netbox/dcim/tables/sites.py:30 netbox/dcim/tables/sites.py:57 -#: netbox/extras/forms/filtersets.py:351 -#: netbox/extras/forms/model_forms.py:517 netbox/ipam/forms/bulk_edit.py:130 -#: netbox/ipam/forms/model_forms.py:153 netbox/ipam/tables/asn.py:66 -#: netbox/netbox/navigation/menu.py:15 netbox/netbox/navigation/menu.py:17 +#: dcim/tables/sites.py:30 dcim/tables/sites.py:57 +#: extras/forms/filtersets.py:351 extras/forms/model_forms.py:517 +#: ipam/forms/bulk_edit.py:131 ipam/forms/model_forms.py:153 +#: ipam/tables/asn.py:66 netbox/navigation/menu.py:15 +#: netbox/navigation/menu.py:17 msgid "Sites" msgstr "Standorte" -#: netbox/dcim/tests/test_api.py:47 +#: dcim/tests/test_api.py:47 msgid "Test case must set peer_termination_type" msgstr "Der Testfall muss peer_termination_type setzen" -#: netbox/dcim/views.py:140 +#: dcim/views.py:140 #, python-brace-format msgid "Disconnected {count} {type}" msgstr "Verbindung von {count} {type} unterbrochen" -#: netbox/dcim/views.py:740 netbox/netbox/navigation/menu.py:51 +#: dcim/views.py:740 netbox/navigation/menu.py:51 msgid "Reservations" msgstr "Rackreservierungen" -#: netbox/dcim/views.py:759 netbox/templates/dcim/location.html:90 -#: netbox/templates/dcim/site.html:140 +#: dcim/views.py:759 templates/dcim/location.html:90 +#: templates/dcim/site.html:140 msgid "Non-Racked Devices" msgstr "Nicht in einem Rack befindliche Geräte" -#: netbox/dcim/views.py:2088 netbox/extras/forms/model_forms.py:577 -#: netbox/templates/extras/configcontext.html:10 -#: netbox/virtualization/forms/model_forms.py:225 -#: netbox/virtualization/views.py:407 +#: dcim/views.py:2088 extras/forms/model_forms.py:577 +#: templates/extras/configcontext.html:10 +#: virtualization/forms/model_forms.py:225 virtualization/views.py:407 msgid "Config Context" msgstr "Konfigurationsvorlage" -#: netbox/dcim/views.py:2098 netbox/virtualization/views.py:417 +#: dcim/views.py:2098 virtualization/views.py:417 msgid "Render Config" msgstr "Konfiguration rendern" -#: netbox/dcim/views.py:2131 netbox/virtualization/views.py:450 +#: dcim/views.py:2131 virtualization/views.py:450 #, python-brace-format msgid "An error occurred while rendering the template: {error}" msgstr "Ein Fehler ist beim Rendern der Vorlage aufgetreten: {error}" -#: netbox/dcim/views.py:2149 netbox/extras/tables/tables.py:550 -#: netbox/netbox/navigation/menu.py:247 netbox/netbox/navigation/menu.py:249 -#: netbox/virtualization/views.py:180 +#: dcim/views.py:2149 extras/tables/tables.py:550 +#: netbox/navigation/menu.py:247 netbox/navigation/menu.py:249 +#: virtualization/views.py:180 msgid "Virtual Machines" msgstr "Virtuelle Maschinen" -#: netbox/dcim/views.py:2897 +#: dcim/views.py:2897 #, python-brace-format msgid "Installed device {device} in bay {device_bay}." msgstr "Gerät {device} im Schacht {device_bay} installiert." -#: netbox/dcim/views.py:2938 +#: dcim/views.py:2938 #, python-brace-format msgid "Removed device {device} from bay {device_bay}." msgstr "Gerät {device} im Schacht {device_bay} entfernt." -#: netbox/dcim/views.py:3044 netbox/ipam/tables/ip.py:234 +#: dcim/views.py:3044 ipam/tables/ip.py:234 msgid "Children" msgstr "Untergeordnet" -#: netbox/dcim/views.py:3510 +#: dcim/views.py:3510 #, python-brace-format msgid "Added member {device}" msgstr "Mitglied hinzugefügt {device}" -#: netbox/dcim/views.py:3557 +#: dcim/views.py:3557 #, python-brace-format msgid "Unable to remove master device {device} from the virtual chassis." msgstr "" "Ein Hauptgerät (Master Device) {device} kann von einem virtuellen Gehäuse " "nicht entfernt werden." -#: netbox/dcim/views.py:3570 +#: dcim/views.py:3570 #, python-brace-format msgid "Removed {device} from virtual chassis {chassis}" msgstr "{device} vom virtuellen Gehäuse {chassis} entfernt." -#: netbox/extras/api/customfields.py:89 +#: extras/api/customfields.py:89 #, python-brace-format msgid "Unknown related object(s): {name}" msgstr "Unbekanntes verwandtes Objekt (e): {name}" -#: netbox/extras/api/serializers_/customfields.py:73 +#: extras/api/serializers_/customfields.py:73 msgid "Changing the type of custom fields is not supported." msgstr "" "Das Ändern des Typs von benutzerdefinierten Feldern wird nicht unterstützt." -#: netbox/extras/api/serializers_/scripts.py:70 -#: netbox/extras/api/serializers_/scripts.py:75 +#: extras/api/serializers_/scripts.py:70 extras/api/serializers_/scripts.py:75 msgid "Scheduling is not enabled for this script." msgstr "Die Planung ist für dieses Skript nicht aktiviert." -#: netbox/extras/choices.py:30 netbox/extras/forms/misc.py:14 +#: extras/choices.py:30 extras/forms/misc.py:14 msgid "Text" msgstr "Text" -#: netbox/extras/choices.py:31 +#: extras/choices.py:31 msgid "Text (long)" msgstr "Text (lang)" -#: netbox/extras/choices.py:32 +#: extras/choices.py:32 msgid "Integer" msgstr "Ganzzahl" -#: netbox/extras/choices.py:33 +#: extras/choices.py:33 msgid "Decimal" msgstr "Dezimal" -#: netbox/extras/choices.py:34 +#: extras/choices.py:34 msgid "Boolean (true/false)" msgstr "Boolean (wahr/falsch)" -#: netbox/extras/choices.py:35 +#: extras/choices.py:35 msgid "Date" msgstr "Datum" -#: netbox/extras/choices.py:36 +#: extras/choices.py:36 msgid "Date & time" msgstr "Datum & Uhrzeit" -#: netbox/extras/choices.py:38 +#: extras/choices.py:38 msgid "JSON" msgstr "JSON" -#: netbox/extras/choices.py:39 +#: extras/choices.py:39 msgid "Selection" msgstr "Auswahl" -#: netbox/extras/choices.py:40 +#: extras/choices.py:40 msgid "Multiple selection" msgstr "Mehrfachauswahl" -#: netbox/extras/choices.py:42 +#: extras/choices.py:42 msgid "Multiple objects" msgstr "Mehrere Objekte" -#: netbox/extras/choices.py:53 netbox/netbox/preferences.py:21 -#: netbox/templates/extras/customfield.html:78 netbox/vpn/choices.py:20 -#: netbox/wireless/choices.py:27 +#: extras/choices.py:53 netbox/preferences.py:21 +#: templates/extras/customfield.html:78 vpn/choices.py:20 +#: wireless/choices.py:27 msgid "Disabled" msgstr "Deaktiviert" -#: netbox/extras/choices.py:54 +#: extras/choices.py:54 msgid "Loose" msgstr "Lose" -#: netbox/extras/choices.py:55 +#: extras/choices.py:55 msgid "Exact" msgstr "Exakt" -#: netbox/extras/choices.py:66 +#: extras/choices.py:66 msgid "Always" msgstr "Immer" -#: netbox/extras/choices.py:67 +#: extras/choices.py:67 msgid "If set" msgstr "Wenn gesetzt" -#: netbox/extras/choices.py:68 netbox/extras/choices.py:81 +#: extras/choices.py:68 extras/choices.py:81 msgid "Hidden" msgstr "Versteckt" -#: netbox/extras/choices.py:79 +#: extras/choices.py:79 msgid "Yes" msgstr "Ja" -#: netbox/extras/choices.py:80 +#: extras/choices.py:80 msgid "No" msgstr "Nein" -#: netbox/extras/choices.py:108 netbox/templates/tenancy/contact.html:57 -#: netbox/tenancy/forms/bulk_edit.py:118 -#: netbox/wireless/forms/model_forms.py:168 +#: extras/choices.py:108 templates/tenancy/contact.html:57 +#: tenancy/forms/bulk_edit.py:118 wireless/forms/model_forms.py:168 msgid "Link" msgstr "Link" -#: netbox/extras/choices.py:124 +#: extras/choices.py:124 msgid "Newest" msgstr "Neuestes" -#: netbox/extras/choices.py:125 +#: extras/choices.py:125 msgid "Oldest" msgstr "Älteste" -#: netbox/extras/choices.py:126 +#: extras/choices.py:126 msgid "Alphabetical (A-Z)" msgstr "Alphabetisch (A-Z)" -#: netbox/extras/choices.py:127 +#: extras/choices.py:127 msgid "Alphabetical (Z-A)" msgstr "Alphabetisch (Z-A)" -#: netbox/extras/choices.py:144 netbox/extras/choices.py:167 +#: extras/choices.py:144 extras/choices.py:167 msgid "Info" msgstr "Info" -#: netbox/extras/choices.py:145 netbox/extras/choices.py:168 +#: extras/choices.py:145 extras/choices.py:168 msgid "Success" msgstr "Erfolg" -#: netbox/extras/choices.py:146 netbox/extras/choices.py:169 +#: extras/choices.py:146 extras/choices.py:169 msgid "Warning" msgstr "Warnung" -#: netbox/extras/choices.py:147 +#: extras/choices.py:147 msgid "Danger" msgstr "Gefahr" -#: netbox/extras/choices.py:165 +#: extras/choices.py:165 msgid "Debug" msgstr "Debug" -#: netbox/extras/choices.py:166 netbox/netbox/choices.py:101 +#: extras/choices.py:166 netbox/choices.py:101 msgid "Default" msgstr "Standard" -#: netbox/extras/choices.py:170 +#: extras/choices.py:170 msgid "Failure" msgstr "Fehlschlag" -#: netbox/extras/choices.py:186 +#: extras/choices.py:186 msgid "Hourly" msgstr "Stündlich" -#: netbox/extras/choices.py:187 +#: extras/choices.py:187 msgid "12 hours" msgstr "12 Stunden" -#: netbox/extras/choices.py:188 +#: extras/choices.py:188 msgid "Daily" msgstr "täglich" -#: netbox/extras/choices.py:189 +#: extras/choices.py:189 msgid "Weekly" msgstr "Wöchentlich" -#: netbox/extras/choices.py:190 +#: extras/choices.py:190 msgid "30 days" msgstr "30 Tage" -#: netbox/extras/choices.py:226 -#: netbox/templates/dcim/virtualchassis_edit.html:107 -#: netbox/templates/generic/bulk_add_component.html:68 -#: netbox/templates/generic/object_edit.html:47 -#: netbox/templates/generic/object_edit.html:80 -#: netbox/templates/ipam/inc/ipaddress_edit_header.html:7 +#: extras/choices.py:226 templates/dcim/virtualchassis_edit.html:107 +#: templates/generic/bulk_add_component.html:68 +#: templates/generic/object_edit.html:47 templates/generic/object_edit.html:80 +#: templates/ipam/inc/ipaddress_edit_header.html:7 msgid "Create" msgstr "Erstellen" -#: netbox/extras/choices.py:227 +#: extras/choices.py:227 msgid "Update" msgstr "Aktualisieren" -#: netbox/extras/choices.py:228 -#: netbox/templates/circuits/inc/circuit_termination.html:23 -#: netbox/templates/dcim/inc/panels/inventory_items.html:37 -#: netbox/templates/dcim/moduletype/component_templates.html:23 -#: netbox/templates/dcim/powerpanel.html:66 -#: netbox/templates/extras/script_list.html:35 -#: netbox/templates/generic/bulk_delete.html:20 -#: netbox/templates/generic/bulk_delete.html:66 -#: netbox/templates/generic/object_delete.html:19 -#: netbox/templates/htmx/delete_form.html:57 -#: netbox/templates/ipam/inc/panels/fhrp_groups.html:48 -#: netbox/templates/users/objectpermission.html:46 -#: netbox/utilities/templates/buttons/delete.html:11 +#: extras/choices.py:228 templates/circuits/inc/circuit_termination.html:23 +#: templates/dcim/inc/panels/inventory_items.html:37 +#: templates/dcim/powerpanel.html:66 templates/extras/script_list.html:35 +#: templates/generic/bulk_delete.html:20 templates/generic/bulk_delete.html:66 +#: templates/generic/object_delete.html:19 templates/htmx/delete_form.html:57 +#: templates/ipam/inc/panels/fhrp_groups.html:48 +#: templates/users/objectpermission.html:46 +#: utilities/templates/buttons/delete.html:11 msgid "Delete" msgstr "Löschen" -#: netbox/extras/choices.py:252 netbox/netbox/choices.py:57 -#: netbox/netbox/choices.py:102 +#: extras/choices.py:252 netbox/choices.py:57 netbox/choices.py:102 msgid "Blue" msgstr "Blau" -#: netbox/extras/choices.py:253 netbox/netbox/choices.py:56 -#: netbox/netbox/choices.py:103 +#: extras/choices.py:253 netbox/choices.py:56 netbox/choices.py:103 msgid "Indigo" msgstr "Indigo" -#: netbox/extras/choices.py:254 netbox/netbox/choices.py:54 -#: netbox/netbox/choices.py:104 +#: extras/choices.py:254 netbox/choices.py:54 netbox/choices.py:104 msgid "Purple" msgstr "Purpur" -#: netbox/extras/choices.py:255 netbox/netbox/choices.py:51 -#: netbox/netbox/choices.py:105 +#: extras/choices.py:255 netbox/choices.py:51 netbox/choices.py:105 msgid "Pink" msgstr "Pink" -#: netbox/extras/choices.py:256 netbox/netbox/choices.py:50 -#: netbox/netbox/choices.py:106 +#: extras/choices.py:256 netbox/choices.py:50 netbox/choices.py:106 msgid "Red" msgstr "Rot" -#: netbox/extras/choices.py:257 netbox/netbox/choices.py:68 -#: netbox/netbox/choices.py:107 +#: extras/choices.py:257 netbox/choices.py:68 netbox/choices.py:107 msgid "Orange" msgstr "Orange" -#: netbox/extras/choices.py:258 netbox/netbox/choices.py:66 -#: netbox/netbox/choices.py:108 +#: extras/choices.py:258 netbox/choices.py:66 netbox/choices.py:108 msgid "Yellow" msgstr "Gelb" -#: netbox/extras/choices.py:259 netbox/netbox/choices.py:63 -#: netbox/netbox/choices.py:109 +#: extras/choices.py:259 netbox/choices.py:63 netbox/choices.py:109 msgid "Green" msgstr "Grün" -#: netbox/extras/choices.py:260 netbox/netbox/choices.py:60 -#: netbox/netbox/choices.py:110 +#: extras/choices.py:260 netbox/choices.py:60 netbox/choices.py:110 msgid "Teal" msgstr "Türkis" -#: netbox/extras/choices.py:261 netbox/netbox/choices.py:59 -#: netbox/netbox/choices.py:111 +#: extras/choices.py:261 netbox/choices.py:59 netbox/choices.py:111 msgid "Cyan" msgstr "Cyanblau" -#: netbox/extras/choices.py:262 netbox/netbox/choices.py:112 +#: extras/choices.py:262 netbox/choices.py:112 msgid "Gray" msgstr "Grau" -#: netbox/extras/choices.py:263 netbox/netbox/choices.py:74 -#: netbox/netbox/choices.py:113 +#: extras/choices.py:263 netbox/choices.py:74 netbox/choices.py:113 msgid "Black" msgstr "Schwarz" -#: netbox/extras/choices.py:264 netbox/netbox/choices.py:75 -#: netbox/netbox/choices.py:114 +#: extras/choices.py:264 netbox/choices.py:75 netbox/choices.py:114 msgid "White" msgstr "Weiß" -#: netbox/extras/choices.py:279 netbox/extras/forms/model_forms.py:353 -#: netbox/extras/forms/model_forms.py:430 -#: netbox/templates/extras/webhook.html:10 +#: extras/choices.py:279 extras/forms/model_forms.py:353 +#: extras/forms/model_forms.py:430 templates/extras/webhook.html:10 msgid "Webhook" msgstr "Webhook" -#: netbox/extras/choices.py:280 netbox/extras/forms/model_forms.py:418 -#: netbox/templates/extras/script/base.html:29 +#: extras/choices.py:280 extras/forms/model_forms.py:418 +#: templates/extras/script/base.html:29 msgid "Script" msgstr "Skript" -#: netbox/extras/choices.py:281 +#: extras/choices.py:281 msgid "Notification" msgstr "Benachrichtigung" -#: netbox/extras/conditions.py:54 +#: extras/conditions.py:54 #, python-brace-format msgid "Unknown operator: {op}. Must be one of: {operators}" msgstr "" "Unbekannter Operator: {op}. Muss einer von den folgenden sein: {operators}" -#: netbox/extras/conditions.py:58 +#: extras/conditions.py:58 #, python-brace-format msgid "Unsupported value type: {value}" msgstr "Nicht unterstützter Wertetyp: {value}" -#: netbox/extras/conditions.py:60 +#: extras/conditions.py:60 #, python-brace-format msgid "Invalid type for {op} operation: {value}" msgstr "Ungültiger Typ für {op} Dienst / Port: {value}" -#: netbox/extras/conditions.py:137 +#: extras/conditions.py:137 #, python-brace-format msgid "Ruleset must be a dictionary, not {ruleset}." msgstr "Der Regelsatz muss ein Dictionary sein, nicht {ruleset}." -#: netbox/extras/conditions.py:142 +#: extras/conditions.py:142 msgid "Invalid logic type: must be 'AND' or 'OR'. Please check documentation." msgstr "" "Ungültiger Logik-Typ: es muss 'AND' oder 'OR' sein. Siehe Dokumentation" -#: netbox/extras/conditions.py:154 +#: extras/conditions.py:154 msgid "Incorrect key(s) informed. Please check documentation." msgstr "Inkorrekte Key(s) rückgemeldet. Bitte die Dokumentation checken." -#: netbox/extras/dashboard/forms.py:38 +#: extras/dashboard/forms.py:38 msgid "Widget type" msgstr "Widget-Typ" -#: netbox/extras/dashboard/utils.py:36 +#: extras/dashboard/utils.py:36 #, python-brace-format msgid "Unregistered widget class: {name}" msgstr "Nicht registrierte Widget-Klasse: {name}" -#: netbox/extras/dashboard/widgets.py:125 +#: extras/dashboard/widgets.py:125 #, python-brace-format msgid "{class_name} must define a render() method." msgstr "{class_name} muss eine render () -Methode definieren." -#: netbox/extras/dashboard/widgets.py:144 +#: extras/dashboard/widgets.py:144 msgid "Note" msgstr "Hinweis" -#: netbox/extras/dashboard/widgets.py:145 +#: extras/dashboard/widgets.py:145 msgid "Display some arbitrary custom content. Markdown is supported." msgstr "" "Zeigt einige beliebige benutzerdefinierte Inhalte an. Markdown wird " "unterstützt." -#: netbox/extras/dashboard/widgets.py:158 +#: extras/dashboard/widgets.py:158 msgid "Object Counts" msgstr "Anzahl der Objekte" -#: netbox/extras/dashboard/widgets.py:159 +#: extras/dashboard/widgets.py:159 msgid "" "Display a set of NetBox models and the number of objects created for each " "type." @@ -7527,295 +7016,273 @@ msgstr "" "Zeigt eine Reihe von NetBox-Modellen und die Anzahl der für jeden Typ " "erstellten Objekte an." -#: netbox/extras/dashboard/widgets.py:169 +#: extras/dashboard/widgets.py:169 msgid "Filters to apply when counting the number of objects" msgstr "Filter, die beim Zählen der Anzahl der Objekte angewendet werden" -#: netbox/extras/dashboard/widgets.py:177 +#: extras/dashboard/widgets.py:177 msgid "Invalid format. Object filters must be passed as a dictionary." msgstr "" "Ungültiges Format. Objektfilter müssen als Wörterbuch übergeben werden." -#: netbox/extras/dashboard/widgets.py:208 +#: extras/dashboard/widgets.py:208 msgid "Object List" msgstr "Liste der Objekte" -#: netbox/extras/dashboard/widgets.py:209 +#: extras/dashboard/widgets.py:209 msgid "Display an arbitrary list of objects." msgstr "Zeigt eine beliebige Liste von Objekten an." -#: netbox/extras/dashboard/widgets.py:222 +#: extras/dashboard/widgets.py:222 msgid "The default number of objects to display" msgstr "Die Standardanzahl der anzuzeigenden Objekte" -#: netbox/extras/dashboard/widgets.py:234 +#: extras/dashboard/widgets.py:234 msgid "Invalid format. URL parameters must be passed as a dictionary." msgstr "" "Ungültiges Format. URL-Parameter müssen als Verzeichnis übergeben werden." -#: netbox/extras/dashboard/widgets.py:274 +#: extras/dashboard/widgets.py:274 msgid "RSS Feed" msgstr "RSS-Feed" -#: netbox/extras/dashboard/widgets.py:279 +#: extras/dashboard/widgets.py:279 msgid "Embed an RSS feed from an external website." msgstr "Betten Sie einen RSS-Feed von einer externen Website ein." -#: netbox/extras/dashboard/widgets.py:286 +#: extras/dashboard/widgets.py:286 msgid "Feed URL" msgstr "Feed-URL" -#: netbox/extras/dashboard/widgets.py:291 +#: extras/dashboard/widgets.py:291 msgid "The maximum number of objects to display" msgstr "Die maximale Anzahl der anzuzeigenden Objekte" -#: netbox/extras/dashboard/widgets.py:296 +#: extras/dashboard/widgets.py:296 msgid "How long to stored the cached content (in seconds)" msgstr "Wie lange soll der Inhalt zwischengespeichert werden (in Sekunden)" -#: netbox/extras/dashboard/widgets.py:348 -#: netbox/templates/account/base.html:10 -#: netbox/templates/account/bookmarks.html:7 -#: netbox/templates/inc/user_menu.html:48 +#: extras/dashboard/widgets.py:348 templates/account/base.html:10 +#: templates/account/bookmarks.html:7 templates/inc/user_menu.html:48 msgid "Bookmarks" msgstr "Lesezeichen" -#: netbox/extras/dashboard/widgets.py:352 +#: extras/dashboard/widgets.py:352 msgid "Show your personal bookmarks" msgstr "Zeige persönliche Lesezeichen an" -#: netbox/extras/events.py:147 +#: extras/events.py:147 #, python-brace-format msgid "Unknown action type for an event rule: {action_type}" msgstr "Unbekannter Aktionstyp für eine Ereignisregel: {action_type}" -#: netbox/extras/events.py:192 +#: extras/events.py:192 #, python-brace-format msgid "Cannot import events pipeline {name} error: {error}" msgstr "Ereignispipeline kann nicht importiert werden {name} Fehler: {error}" -#: netbox/extras/filtersets.py:45 +#: extras/filtersets.py:45 msgid "Script module (ID)" msgstr "Skriptmodul (ID)" -#: netbox/extras/filtersets.py:254 netbox/extras/filtersets.py:637 -#: netbox/extras/filtersets.py:665 +#: extras/filtersets.py:254 extras/filtersets.py:637 extras/filtersets.py:665 msgid "Data file (ID)" msgstr "Datei (ID)" -#: netbox/extras/filtersets.py:370 netbox/users/filtersets.py:68 -#: netbox/users/filtersets.py:191 +#: extras/filtersets.py:370 users/filtersets.py:68 users/filtersets.py:191 msgid "Group (name)" msgstr "Gruppe (Name)" -#: netbox/extras/filtersets.py:574 -#: netbox/virtualization/forms/filtersets.py:118 +#: extras/filtersets.py:574 virtualization/forms/filtersets.py:118 msgid "Cluster type" msgstr "Clustertyp" -#: netbox/extras/filtersets.py:580 netbox/virtualization/filtersets.py:95 -#: netbox/virtualization/filtersets.py:147 +#: extras/filtersets.py:580 virtualization/filtersets.py:95 +#: virtualization/filtersets.py:147 msgid "Cluster type (slug)" msgstr "Clustertyp (URL-Slug)" -#: netbox/extras/filtersets.py:601 netbox/tenancy/forms/forms.py:16 -#: netbox/tenancy/forms/forms.py:39 +#: extras/filtersets.py:601 tenancy/forms/forms.py:16 +#: tenancy/forms/forms.py:39 msgid "Tenant group" msgstr "Mandantengruppe" -#: netbox/extras/filtersets.py:607 netbox/tenancy/filtersets.py:188 -#: netbox/tenancy/filtersets.py:208 +#: extras/filtersets.py:607 tenancy/filtersets.py:188 +#: tenancy/filtersets.py:208 msgid "Tenant group (slug)" msgstr "Mandantengruppe (URL-Slug)" -#: netbox/extras/filtersets.py:623 netbox/extras/forms/model_forms.py:495 -#: netbox/templates/extras/tag.html:11 +#: extras/filtersets.py:623 extras/forms/model_forms.py:495 +#: templates/extras/tag.html:11 msgid "Tag" msgstr "Schlagwort" -#: netbox/extras/filtersets.py:629 +#: extras/filtersets.py:629 msgid "Tag (slug)" msgstr "Schlagwort (URL-Slug)" -#: netbox/extras/filtersets.py:689 netbox/extras/forms/filtersets.py:429 +#: extras/filtersets.py:689 extras/forms/filtersets.py:429 msgid "Has local config context data" msgstr "Hat lokale Konfigurationskontextdaten" -#: netbox/extras/forms/bulk_edit.py:35 netbox/extras/forms/filtersets.py:60 +#: extras/forms/bulk_edit.py:35 extras/forms/filtersets.py:60 msgid "Group name" msgstr "Name der Gruppe" -#: netbox/extras/forms/bulk_edit.py:43 netbox/extras/forms/filtersets.py:68 -#: netbox/extras/tables/tables.py:65 -#: netbox/templates/extras/customfield.html:38 -#: netbox/templates/generic/bulk_import.html:118 +#: extras/forms/bulk_edit.py:43 extras/forms/filtersets.py:68 +#: extras/tables/tables.py:65 templates/extras/customfield.html:38 +#: templates/generic/bulk_import.html:118 msgid "Required" msgstr "Erforderlich" -#: netbox/extras/forms/bulk_edit.py:48 netbox/extras/forms/filtersets.py:75 +#: extras/forms/bulk_edit.py:48 extras/forms/filtersets.py:75 msgid "Must be unique" msgstr "Muss einzigartig sein" -#: netbox/extras/forms/bulk_edit.py:61 netbox/extras/forms/bulk_import.py:60 -#: netbox/extras/forms/filtersets.py:89 -#: netbox/extras/models/customfields.py:209 +#: extras/forms/bulk_edit.py:61 extras/forms/bulk_import.py:60 +#: extras/forms/filtersets.py:89 extras/models/customfields.py:209 msgid "UI visible" msgstr "UI sichtbar" -#: netbox/extras/forms/bulk_edit.py:66 netbox/extras/forms/bulk_import.py:66 -#: netbox/extras/forms/filtersets.py:94 -#: netbox/extras/models/customfields.py:216 +#: extras/forms/bulk_edit.py:66 extras/forms/bulk_import.py:66 +#: extras/forms/filtersets.py:94 extras/models/customfields.py:216 msgid "UI editable" msgstr "UI editierbar" -#: netbox/extras/forms/bulk_edit.py:71 netbox/extras/forms/filtersets.py:97 +#: extras/forms/bulk_edit.py:71 extras/forms/filtersets.py:97 msgid "Is cloneable" msgstr "Ist klonbar" -#: netbox/extras/forms/bulk_edit.py:76 netbox/extras/forms/filtersets.py:104 +#: extras/forms/bulk_edit.py:76 extras/forms/filtersets.py:104 msgid "Minimum value" msgstr "Minimaler Wert" -#: netbox/extras/forms/bulk_edit.py:80 netbox/extras/forms/filtersets.py:108 +#: extras/forms/bulk_edit.py:80 extras/forms/filtersets.py:108 msgid "Maximum value" msgstr "Maximaler Wert" -#: netbox/extras/forms/bulk_edit.py:84 netbox/extras/forms/filtersets.py:112 +#: extras/forms/bulk_edit.py:84 extras/forms/filtersets.py:112 msgid "Validation regex" msgstr "Regex für die Überprüfung" -#: netbox/extras/forms/bulk_edit.py:91 netbox/extras/forms/filtersets.py:46 -#: netbox/extras/forms/model_forms.py:76 -#: netbox/templates/extras/customfield.html:70 +#: extras/forms/bulk_edit.py:91 extras/forms/filtersets.py:46 +#: extras/forms/model_forms.py:76 templates/extras/customfield.html:70 msgid "Behavior" msgstr "Verhalten" -#: netbox/extras/forms/bulk_edit.py:128 netbox/extras/forms/filtersets.py:149 +#: extras/forms/bulk_edit.py:128 extras/forms/filtersets.py:149 msgid "New window" msgstr "Neues Fenster" -#: netbox/extras/forms/bulk_edit.py:137 +#: extras/forms/bulk_edit.py:137 msgid "Button class" msgstr "Button-Klasse" -#: netbox/extras/forms/bulk_edit.py:154 netbox/extras/forms/filtersets.py:187 -#: netbox/extras/models/models.py:409 +#: extras/forms/bulk_edit.py:154 extras/forms/filtersets.py:187 +#: extras/models/models.py:409 msgid "MIME type" msgstr "MIME-Typ" -#: netbox/extras/forms/bulk_edit.py:159 netbox/extras/forms/filtersets.py:190 +#: extras/forms/bulk_edit.py:159 extras/forms/filtersets.py:190 msgid "File extension" msgstr "Dateiendung" -#: netbox/extras/forms/bulk_edit.py:164 netbox/extras/forms/filtersets.py:194 +#: extras/forms/bulk_edit.py:164 extras/forms/filtersets.py:194 msgid "As attachment" msgstr "Als Anlage" -#: netbox/extras/forms/bulk_edit.py:192 netbox/extras/forms/filtersets.py:236 -#: netbox/extras/tables/tables.py:256 -#: netbox/templates/extras/savedfilter.html:29 +#: extras/forms/bulk_edit.py:192 extras/forms/filtersets.py:236 +#: extras/tables/tables.py:256 templates/extras/savedfilter.html:29 msgid "Shared" msgstr "Geteilt" -#: netbox/extras/forms/bulk_edit.py:215 netbox/extras/forms/filtersets.py:265 -#: netbox/extras/models/models.py:174 +#: extras/forms/bulk_edit.py:215 extras/forms/filtersets.py:265 +#: extras/models/models.py:174 msgid "HTTP method" msgstr "HTTP-Method" -#: netbox/extras/forms/bulk_edit.py:219 netbox/extras/forms/filtersets.py:259 -#: netbox/templates/extras/webhook.html:30 +#: extras/forms/bulk_edit.py:219 extras/forms/filtersets.py:259 +#: templates/extras/webhook.html:30 msgid "Payload URL" msgstr "Payload-URL" -#: netbox/extras/forms/bulk_edit.py:224 netbox/extras/models/models.py:214 +#: extras/forms/bulk_edit.py:224 extras/models/models.py:214 msgid "SSL verification" msgstr "SSL-Verifizierung" -#: netbox/extras/forms/bulk_edit.py:227 -#: netbox/templates/extras/webhook.html:38 +#: extras/forms/bulk_edit.py:227 templates/extras/webhook.html:38 msgid "Secret" msgstr "Secret" -#: netbox/extras/forms/bulk_edit.py:232 +#: extras/forms/bulk_edit.py:232 msgid "CA file path" msgstr "CA-Dateipfad" -#: netbox/extras/forms/bulk_edit.py:253 netbox/extras/forms/bulk_import.py:192 -#: netbox/extras/forms/model_forms.py:377 +#: extras/forms/bulk_edit.py:253 extras/forms/bulk_import.py:192 +#: extras/forms/model_forms.py:377 msgid "Event types" msgstr "Ereignistypen" -#: netbox/extras/forms/bulk_edit.py:293 +#: extras/forms/bulk_edit.py:293 msgid "Is active" msgstr "Ist aktiv" -#: netbox/extras/forms/bulk_import.py:37 -#: netbox/extras/forms/bulk_import.py:118 -#: netbox/extras/forms/bulk_import.py:139 -#: netbox/extras/forms/bulk_import.py:162 -#: netbox/extras/forms/bulk_import.py:186 -#: netbox/extras/forms/filtersets.py:137 netbox/extras/forms/filtersets.py:224 -#: netbox/extras/forms/model_forms.py:47 -#: netbox/extras/forms/model_forms.py:205 -#: netbox/extras/forms/model_forms.py:237 -#: netbox/extras/forms/model_forms.py:278 -#: netbox/extras/forms/model_forms.py:372 -#: netbox/extras/forms/model_forms.py:489 -#: netbox/users/forms/model_forms.py:276 +#: extras/forms/bulk_import.py:37 extras/forms/bulk_import.py:118 +#: extras/forms/bulk_import.py:139 extras/forms/bulk_import.py:162 +#: extras/forms/bulk_import.py:186 extras/forms/filtersets.py:137 +#: extras/forms/filtersets.py:224 extras/forms/model_forms.py:47 +#: extras/forms/model_forms.py:205 extras/forms/model_forms.py:237 +#: extras/forms/model_forms.py:278 extras/forms/model_forms.py:372 +#: extras/forms/model_forms.py:489 users/forms/model_forms.py:276 msgid "Object types" msgstr "Typen von Objekten" -#: netbox/extras/forms/bulk_import.py:39 -#: netbox/extras/forms/bulk_import.py:120 -#: netbox/extras/forms/bulk_import.py:141 -#: netbox/extras/forms/bulk_import.py:164 -#: netbox/extras/forms/bulk_import.py:188 -#: netbox/tenancy/forms/bulk_import.py:96 +#: extras/forms/bulk_import.py:39 extras/forms/bulk_import.py:120 +#: extras/forms/bulk_import.py:141 extras/forms/bulk_import.py:164 +#: extras/forms/bulk_import.py:188 tenancy/forms/bulk_import.py:96 msgid "One or more assigned object types" msgstr "Ein oder mehrere zugewiesene Objekttypen" -#: netbox/extras/forms/bulk_import.py:44 +#: extras/forms/bulk_import.py:44 msgid "Field data type (e.g. text, integer, etc.)" msgstr "Felddatentyp (z. B. Text, Integer usw.)" -#: netbox/extras/forms/bulk_import.py:47 netbox/extras/forms/filtersets.py:208 -#: netbox/extras/forms/filtersets.py:281 -#: netbox/extras/forms/model_forms.py:304 -#: netbox/extras/forms/model_forms.py:341 -#: netbox/tenancy/forms/filtersets.py:92 +#: extras/forms/bulk_import.py:47 extras/forms/filtersets.py:208 +#: extras/forms/filtersets.py:281 extras/forms/model_forms.py:304 +#: extras/forms/model_forms.py:341 tenancy/forms/filtersets.py:92 msgid "Object type" msgstr "Typ des Objekts" -#: netbox/extras/forms/bulk_import.py:50 +#: extras/forms/bulk_import.py:50 msgid "Object type (for object or multi-object fields)" msgstr "Objekttyp (für Objekt- oder Mehrfachobjektfelder)" -#: netbox/extras/forms/bulk_import.py:53 netbox/extras/forms/filtersets.py:84 +#: extras/forms/bulk_import.py:53 extras/forms/filtersets.py:84 msgid "Choice set" msgstr "Auswahlset" -#: netbox/extras/forms/bulk_import.py:57 +#: extras/forms/bulk_import.py:57 msgid "Choice set (for selection fields)" msgstr "Auswahlset (für Auswahlfelder)" -#: netbox/extras/forms/bulk_import.py:63 +#: extras/forms/bulk_import.py:63 msgid "Whether the custom field is displayed in the UI" msgstr "" "Ob das benutzerdefinierte Feld in der Benutzeroberfläche angezeigt wird" -#: netbox/extras/forms/bulk_import.py:69 +#: extras/forms/bulk_import.py:69 msgid "Whether the custom field is editable in the UI" msgstr "" "Ob das benutzerdefinierte Feld in der Benutzeroberfläche bearbeitet werden " "kann" -#: netbox/extras/forms/bulk_import.py:85 +#: extras/forms/bulk_import.py:85 msgid "The base set of predefined choices to use (if any)" msgstr "" "Der Basissatz vordefinierter Auswahlmöglichkeiten, die verwendet werden " "sollen (falls vorhanden)" -#: netbox/extras/forms/bulk_import.py:91 +#: extras/forms/bulk_import.py:91 msgid "" "Quoted string of comma-separated field choices with optional labels " "separated by colon: \"choice1:First Choice,choice2:Second Choice\"" @@ -7824,204 +7291,188 @@ msgstr "" "optionalen Bezeichnungen, die durch einen Doppelpunkt getrennt sind: " "„Choice1:First Choice, Choice2:Second Choice“" -#: netbox/extras/forms/bulk_import.py:123 netbox/extras/models/models.py:323 +#: extras/forms/bulk_import.py:123 extras/models/models.py:323 msgid "button class" msgstr "Button-Klasse" -#: netbox/extras/forms/bulk_import.py:126 netbox/extras/models/models.py:327 +#: extras/forms/bulk_import.py:126 extras/models/models.py:327 msgid "" "The class of the first link in a group will be used for the dropdown button" msgstr "" "Die Klasse des ersten Links in einer Gruppe wird für den Dropdown-Button " "verwendet" -#: netbox/extras/forms/bulk_import.py:193 +#: extras/forms/bulk_import.py:193 msgid "The event type(s) which will trigger this rule" msgstr "Ereignistype(n), die diese Regel auslösen" -#: netbox/extras/forms/bulk_import.py:196 +#: extras/forms/bulk_import.py:196 msgid "Action object" msgstr "Aktionsobjekt" -#: netbox/extras/forms/bulk_import.py:198 +#: extras/forms/bulk_import.py:198 msgid "Webhook name or script as dotted path module.Class" msgstr "Webhook-Name oder Skript als gepunkteter Pfad module.Class" -#: netbox/extras/forms/bulk_import.py:219 +#: extras/forms/bulk_import.py:219 #, python-brace-format msgid "Webhook {name} not found" msgstr "Webhook {name} nicht gefunden" -#: netbox/extras/forms/bulk_import.py:228 +#: extras/forms/bulk_import.py:228 #, python-brace-format msgid "Script {name} not found" msgstr "Skript {name} nicht gefunden" -#: netbox/extras/forms/bulk_import.py:244 +#: extras/forms/bulk_import.py:244 msgid "Assigned object type" msgstr "Zugewiesener Objekttyp" -#: netbox/extras/forms/bulk_import.py:249 +#: extras/forms/bulk_import.py:249 msgid "The classification of entry" msgstr "Die Klassifizierung des Eintrags" -#: netbox/extras/forms/bulk_import.py:261 -#: netbox/extras/forms/model_forms.py:320 netbox/netbox/navigation/menu.py:390 -#: netbox/templates/extras/notificationgroup.html:41 -#: netbox/templates/users/group.html:29 netbox/users/forms/model_forms.py:236 -#: netbox/users/forms/model_forms.py:248 netbox/users/forms/model_forms.py:300 -#: netbox/users/tables.py:102 +#: extras/forms/bulk_import.py:261 extras/forms/model_forms.py:320 +#: netbox/navigation/menu.py:390 templates/extras/notificationgroup.html:41 +#: templates/users/group.html:29 users/forms/model_forms.py:236 +#: users/forms/model_forms.py:248 users/forms/model_forms.py:300 +#: users/tables.py:102 msgid "Users" msgstr "Benutzer" -#: netbox/extras/forms/bulk_import.py:265 +#: extras/forms/bulk_import.py:265 msgid "User names separated by commas, encased with double quotes" msgstr "" "Durch Kommas getrennte Benutzernamen, umgeben von doppelten " "Anführungszeichen" -#: netbox/extras/forms/bulk_import.py:268 -#: netbox/extras/forms/model_forms.py:315 netbox/netbox/navigation/menu.py:410 -#: netbox/templates/extras/notificationgroup.html:31 -#: netbox/users/forms/model_forms.py:181 netbox/users/forms/model_forms.py:193 -#: netbox/users/forms/model_forms.py:305 netbox/users/tables.py:35 -#: netbox/users/tables.py:106 +#: extras/forms/bulk_import.py:268 extras/forms/model_forms.py:315 +#: netbox/navigation/menu.py:410 templates/extras/notificationgroup.html:31 +#: users/forms/model_forms.py:181 users/forms/model_forms.py:193 +#: users/forms/model_forms.py:305 users/tables.py:35 users/tables.py:106 msgid "Groups" msgstr "Gruppen" -#: netbox/extras/forms/bulk_import.py:272 +#: extras/forms/bulk_import.py:272 msgid "Group names separated by commas, encased with double quotes" msgstr "" "Gruppennamen, getrennt durch Kommas, umgeben von doppelten Anführungszeichen" -#: netbox/extras/forms/filtersets.py:52 netbox/extras/forms/model_forms.py:56 +#: extras/forms/filtersets.py:52 extras/forms/model_forms.py:56 msgid "Related object type" msgstr "Verwandter Objekttyp" -#: netbox/extras/forms/filtersets.py:57 +#: extras/forms/filtersets.py:57 msgid "Field type" msgstr "Feld-Typ" -#: netbox/extras/forms/filtersets.py:120 -#: netbox/extras/forms/model_forms.py:157 netbox/extras/tables/tables.py:91 -#: netbox/templates/generic/bulk_import.html:154 +#: extras/forms/filtersets.py:120 extras/forms/model_forms.py:157 +#: extras/tables/tables.py:91 templates/generic/bulk_import.html:154 msgid "Choices" msgstr "Auswahlmöglichkeiten" -#: netbox/extras/forms/filtersets.py:164 netbox/extras/forms/filtersets.py:319 -#: netbox/extras/forms/filtersets.py:408 -#: netbox/extras/forms/model_forms.py:572 netbox/templates/core/job.html:96 -#: netbox/templates/extras/eventrule.html:84 +#: extras/forms/filtersets.py:164 extras/forms/filtersets.py:319 +#: extras/forms/filtersets.py:408 extras/forms/model_forms.py:572 +#: templates/core/job.html:96 templates/extras/eventrule.html:84 msgid "Data" msgstr "Daten" -#: netbox/extras/forms/filtersets.py:175 netbox/extras/forms/filtersets.py:333 -#: netbox/extras/forms/filtersets.py:418 netbox/netbox/choices.py:130 -#: netbox/utilities/forms/bulk_import.py:26 +#: extras/forms/filtersets.py:175 extras/forms/filtersets.py:333 +#: extras/forms/filtersets.py:418 netbox/choices.py:130 +#: utilities/forms/bulk_import.py:26 msgid "Data file" msgstr "Datei" -#: netbox/extras/forms/filtersets.py:183 +#: extras/forms/filtersets.py:183 msgid "Content types" msgstr "Inhaltstypen" -#: netbox/extras/forms/filtersets.py:255 netbox/extras/models/models.py:179 +#: extras/forms/filtersets.py:255 extras/models/models.py:179 msgid "HTTP content type" msgstr "HTTP-Inhaltstyp" -#: netbox/extras/forms/filtersets.py:286 +#: extras/forms/filtersets.py:286 msgid "Event type" msgstr "Ereignistyp" -#: netbox/extras/forms/filtersets.py:291 +#: extras/forms/filtersets.py:291 msgid "Action type" msgstr "Typ der Aktion" -#: netbox/extras/forms/filtersets.py:307 +#: extras/forms/filtersets.py:307 msgid "Tagged object type" msgstr "Typ des markierten Objekts" -#: netbox/extras/forms/filtersets.py:312 +#: extras/forms/filtersets.py:312 msgid "Allowed object type" msgstr "Erlaubter Objekttyp" -#: netbox/extras/forms/filtersets.py:341 -#: netbox/extras/forms/model_forms.py:507 netbox/netbox/navigation/menu.py:18 +#: extras/forms/filtersets.py:341 extras/forms/model_forms.py:507 +#: netbox/navigation/menu.py:18 msgid "Regions" msgstr "Regionen" -#: netbox/extras/forms/filtersets.py:346 -#: netbox/extras/forms/model_forms.py:512 +#: extras/forms/filtersets.py:346 extras/forms/model_forms.py:512 msgid "Site groups" msgstr "Standortgruppen" -#: netbox/extras/forms/filtersets.py:356 -#: netbox/extras/forms/model_forms.py:522 netbox/netbox/navigation/menu.py:20 -#: netbox/templates/dcim/site.html:127 +#: extras/forms/filtersets.py:356 extras/forms/model_forms.py:522 +#: netbox/navigation/menu.py:20 templates/dcim/site.html:127 msgid "Locations" msgstr "Lokationen" -#: netbox/extras/forms/filtersets.py:361 -#: netbox/extras/forms/model_forms.py:527 +#: extras/forms/filtersets.py:361 extras/forms/model_forms.py:527 msgid "Device types" msgstr "Gerätetypen" -#: netbox/extras/forms/filtersets.py:366 -#: netbox/extras/forms/model_forms.py:532 +#: extras/forms/filtersets.py:366 extras/forms/model_forms.py:532 msgid "Roles" msgstr "Prefix und VLAN-Rollen" -#: netbox/extras/forms/filtersets.py:376 -#: netbox/extras/forms/model_forms.py:542 +#: extras/forms/filtersets.py:376 extras/forms/model_forms.py:542 msgid "Cluster types" msgstr "Clustertypen" -#: netbox/extras/forms/filtersets.py:381 -#: netbox/extras/forms/model_forms.py:547 +#: extras/forms/filtersets.py:381 extras/forms/model_forms.py:547 msgid "Cluster groups" msgstr "Clustergruppen" -#: netbox/extras/forms/filtersets.py:386 -#: netbox/extras/forms/model_forms.py:552 netbox/netbox/navigation/menu.py:255 -#: netbox/netbox/navigation/menu.py:257 -#: netbox/templates/virtualization/clustertype.html:30 -#: netbox/virtualization/tables/clusters.py:23 -#: netbox/virtualization/tables/clusters.py:45 +#: extras/forms/filtersets.py:386 extras/forms/model_forms.py:552 +#: netbox/navigation/menu.py:255 netbox/navigation/menu.py:257 +#: templates/virtualization/clustertype.html:30 +#: virtualization/tables/clusters.py:23 virtualization/tables/clusters.py:45 msgid "Clusters" msgstr "Cluster" -#: netbox/extras/forms/filtersets.py:391 -#: netbox/extras/forms/model_forms.py:557 +#: extras/forms/filtersets.py:391 extras/forms/model_forms.py:557 msgid "Tenant groups" msgstr "Mandantengruppen" -#: netbox/extras/forms/model_forms.py:49 +#: extras/forms/model_forms.py:49 msgid "The type(s) of object that have this custom field" msgstr "Die Objekttypen, die dieses benutzerdefinierte Feld haben" -#: netbox/extras/forms/model_forms.py:52 +#: extras/forms/model_forms.py:52 msgid "Default value" msgstr "Vorgabewert" -#: netbox/extras/forms/model_forms.py:58 +#: extras/forms/model_forms.py:58 msgid "Type of the related object (for object/multi-object fields only)" msgstr "Typ des zugehörigen Objekts (nur für Objekt-/Mehrfachobjektfelder)" -#: netbox/extras/forms/model_forms.py:61 -#: netbox/templates/extras/customfield.html:60 +#: extras/forms/model_forms.py:61 templates/extras/customfield.html:60 msgid "Related object filter" msgstr "Filter für verwandte Objekte" -#: netbox/extras/forms/model_forms.py:63 +#: extras/forms/model_forms.py:63 msgid "Specify query parameters as a JSON object." msgstr "Geben Sie Abfrageparameter als JSON-Objekt an." -#: netbox/extras/forms/model_forms.py:73 -#: netbox/templates/extras/customfield.html:10 +#: extras/forms/model_forms.py:73 templates/extras/customfield.html:10 msgid "Custom Field" msgstr "Benutzerdefiniertes Feld" -#: netbox/extras/forms/model_forms.py:85 +#: extras/forms/model_forms.py:85 msgid "" "The type of data stored in this field. For object/multi-object fields, " "select the related object type below." @@ -8029,7 +7480,7 @@ msgstr "" "Die Art der in diesem Feld gespeicherten Daten. Wählen Sie für " "Objekt-/Multiobjekt-Felder unten den zugehörigen Objekttyp aus." -#: netbox/extras/forms/model_forms.py:88 +#: extras/forms/model_forms.py:88 msgid "" "This will be displayed as help text for the form field. Markdown is " "supported." @@ -8037,11 +7488,11 @@ msgstr "" "Dies wird als Hilfetext für das Formularfeld angezeigt. Markdown wird " "unterstützt." -#: netbox/extras/forms/model_forms.py:143 +#: extras/forms/model_forms.py:143 msgid "Related Object" msgstr "Verwandtes Objekt" -#: netbox/extras/forms/model_forms.py:169 +#: extras/forms/model_forms.py:169 msgid "" "Enter one choice per line. An optional label may be specified for each " "choice by appending it with a colon. Example:" @@ -8050,16 +7501,15 @@ msgstr "" "Bezeichnung angegeben werden, indem ein Doppelpunkt angehängt wird. " "Beispiel:" -#: netbox/extras/forms/model_forms.py:212 -#: netbox/templates/extras/customlink.html:10 +#: extras/forms/model_forms.py:212 templates/extras/customlink.html:10 msgid "Custom Link" msgstr "Benutzerdefinierter Link" -#: netbox/extras/forms/model_forms.py:214 +#: extras/forms/model_forms.py:214 msgid "Templates" msgstr "Vorlagen" -#: netbox/extras/forms/model_forms.py:226 +#: extras/forms/model_forms.py:226 #, python-brace-format msgid "" "Jinja2 template code for the link text. Reference the object as {example}. " @@ -8069,7 +7519,7 @@ msgstr "" "{example}. Links, die als leerer Text dargestellt werden, werden nicht " "angezeigt." -#: netbox/extras/forms/model_forms.py:230 +#: extras/forms/model_forms.py:230 #, python-brace-format msgid "" "Jinja2 template code for the link URL. Reference the object as {example}." @@ -8077,63 +7527,57 @@ msgstr "" "Jinja2-Vorlagencode für die Link-URL. Verweisen Sie auf das Objekt als " "{example}." -#: netbox/extras/forms/model_forms.py:241 -#: netbox/extras/forms/model_forms.py:624 +#: extras/forms/model_forms.py:241 extras/forms/model_forms.py:624 msgid "Template code" msgstr "Vorlagencode" -#: netbox/extras/forms/model_forms.py:247 -#: netbox/templates/extras/exporttemplate.html:12 +#: extras/forms/model_forms.py:247 templates/extras/exporttemplate.html:12 msgid "Export Template" msgstr "Vorlage exportieren" -#: netbox/extras/forms/model_forms.py:249 +#: extras/forms/model_forms.py:249 msgid "Rendering" msgstr "Rendern" -#: netbox/extras/forms/model_forms.py:263 -#: netbox/extras/forms/model_forms.py:649 +#: extras/forms/model_forms.py:263 extras/forms/model_forms.py:649 msgid "Template content is populated from the remote source selected below." msgstr "" "Der Vorlageninhalt wird aus der unten ausgewählten Remote-Quelle gefüllt." -#: netbox/extras/forms/model_forms.py:270 -#: netbox/extras/forms/model_forms.py:656 +#: extras/forms/model_forms.py:270 extras/forms/model_forms.py:656 msgid "Must specify either local content or a data file" msgstr "Muss entweder lokalen Inhalt oder eine Datendatei angeben" -#: netbox/extras/forms/model_forms.py:284 netbox/netbox/forms/mixins.py:70 -#: netbox/templates/extras/savedfilter.html:10 +#: extras/forms/model_forms.py:284 netbox/forms/mixins.py:70 +#: templates/extras/savedfilter.html:10 msgid "Saved Filter" msgstr "Gespeicherter Filter" -#: netbox/extras/forms/model_forms.py:334 +#: extras/forms/model_forms.py:334 msgid "A notification group specify at least one user or group." msgstr "" "Eine Benachrichtigungsgruppe muss mindestens einen Benutzer oder eine Gruppe" " haben." -#: netbox/extras/forms/model_forms.py:356 -#: netbox/templates/extras/webhook.html:23 +#: extras/forms/model_forms.py:356 templates/extras/webhook.html:23 msgid "HTTP Request" msgstr "HTTP-Request" -#: netbox/extras/forms/model_forms.py:358 -#: netbox/templates/extras/webhook.html:44 +#: extras/forms/model_forms.py:358 templates/extras/webhook.html:44 msgid "SSL" msgstr "SSL" -#: netbox/extras/forms/model_forms.py:380 +#: extras/forms/model_forms.py:380 msgid "Action choice" msgstr "Wahl der Aktion" -#: netbox/extras/forms/model_forms.py:385 +#: extras/forms/model_forms.py:385 msgid "Enter conditions in JSON format." msgstr "" "Geben Sie die Bedingungen ein in JSON - " "Format." -#: netbox/extras/forms/model_forms.py:389 +#: extras/forms/model_forms.py:389 msgid "" "Enter parameters to pass to the action in JSON format." @@ -8141,113 +7585,111 @@ msgstr "" "Geben Sie Parameter ein, die an die Aktion übergeben werden sollen JSON formatieren." -#: netbox/extras/forms/model_forms.py:394 -#: netbox/templates/extras/eventrule.html:10 +#: extras/forms/model_forms.py:394 templates/extras/eventrule.html:10 msgid "Event Rule" msgstr "Ereignisregel" -#: netbox/extras/forms/model_forms.py:395 +#: extras/forms/model_forms.py:395 msgid "Triggers" msgstr "Trigger" -#: netbox/extras/forms/model_forms.py:442 +#: extras/forms/model_forms.py:442 msgid "Notification group" msgstr "Benachrichtigungsgruppe" -#: netbox/extras/forms/model_forms.py:562 netbox/netbox/navigation/menu.py:26 -#: netbox/tenancy/tables/tenants.py:22 +#: extras/forms/model_forms.py:562 netbox/navigation/menu.py:26 +#: tenancy/tables/tenants.py:22 msgid "Tenants" msgstr "Mandanten" -#: netbox/extras/forms/model_forms.py:606 +#: extras/forms/model_forms.py:606 msgid "Data is populated from the remote source selected below." msgstr "Die Daten werden aus der unten ausgewählten Remote-Quelle gefüllt." -#: netbox/extras/forms/model_forms.py:612 +#: extras/forms/model_forms.py:612 msgid "Must specify either local data or a data file" msgstr "Muss entweder lokale Daten oder eine Datendatei angeben" -#: netbox/extras/forms/model_forms.py:631 -#: netbox/templates/core/datafile.html:55 +#: extras/forms/model_forms.py:631 templates/core/datafile.html:55 msgid "Content" msgstr "Inhalt" -#: netbox/extras/forms/reports.py:17 netbox/extras/forms/scripts.py:23 +#: extras/forms/reports.py:17 extras/forms/scripts.py:23 msgid "Schedule at" msgstr "geplant am" -#: netbox/extras/forms/reports.py:18 +#: extras/forms/reports.py:18 msgid "Schedule execution of report to a set time" msgstr "Planen Sie die Ausführung des Berichts auf eine festgelegte Zeit" -#: netbox/extras/forms/reports.py:23 netbox/extras/forms/scripts.py:29 +#: extras/forms/reports.py:23 extras/forms/scripts.py:29 msgid "Recurs every" msgstr "Wiederholt sich alle" -#: netbox/extras/forms/reports.py:27 +#: extras/forms/reports.py:27 msgid "Interval at which this report is re-run (in minutes)" msgstr "Intervall, in dem dieser Bericht erneut ausgeführt wird (in Minuten)" -#: netbox/extras/forms/reports.py:35 netbox/extras/forms/scripts.py:41 +#: extras/forms/reports.py:35 extras/forms/scripts.py:41 #, python-brace-format msgid " (current time: {now})" msgstr " (aktuelle Uhrzeit: {now})" -#: netbox/extras/forms/reports.py:45 netbox/extras/forms/scripts.py:51 +#: extras/forms/reports.py:45 extras/forms/scripts.py:51 msgid "Scheduled time must be in the future." msgstr "Die geplante Zeit muss in der Zukunft liegen." -#: netbox/extras/forms/scripts.py:17 +#: extras/forms/scripts.py:17 msgid "Commit changes" msgstr "Änderungen übernehmen" -#: netbox/extras/forms/scripts.py:18 +#: extras/forms/scripts.py:18 msgid "Commit changes to the database (uncheck for a dry-run)" msgstr "" "Änderungen in die Datenbank übernehmen (bei einem Probelauf das Häkchen " "entfernen)" -#: netbox/extras/forms/scripts.py:24 +#: extras/forms/scripts.py:24 msgid "Schedule execution of script to a set time" msgstr "Planen Sie die Ausführung des Skripts auf eine festgelegte Zeit" -#: netbox/extras/forms/scripts.py:33 +#: extras/forms/scripts.py:33 msgid "Interval at which this script is re-run (in minutes)" msgstr "Intervall, in dem dieses Skript erneut ausgeführt wird (in Minuten)" -#: netbox/extras/jobs.py:49 +#: extras/jobs.py:49 msgid "Database changes have been reverted automatically." msgstr "Datenbankänderungen wurden automatisch rückgängig gemacht." -#: netbox/extras/jobs.py:56 +#: extras/jobs.py:55 msgid "Script aborted with error: " msgstr "Das Skript wurde mit einem Fehler abgebrochen: " -#: netbox/extras/jobs.py:66 +#: extras/jobs.py:65 msgid "An exception occurred: " msgstr "Eine Ausnahme ist aufgetreten: " -#: netbox/extras/jobs.py:71 +#: extras/jobs.py:70 msgid "Database changes have been reverted due to error." msgstr "Datenbankänderungen wurden aufgrund eines Fehlers rückgängig gemacht." -#: netbox/extras/management/commands/reindex.py:66 +#: extras/management/commands/reindex.py:66 msgid "No indexers found!" msgstr "Keine Indexer gefunden!" -#: netbox/extras/models/configs.py:130 +#: extras/models/configs.py:130 msgid "config context" msgstr "Konfigurationsvorlage" -#: netbox/extras/models/configs.py:131 +#: extras/models/configs.py:131 msgid "config contexts" msgstr "Konfigurationsvorlage" -#: netbox/extras/models/configs.py:149 netbox/extras/models/configs.py:205 +#: extras/models/configs.py:149 extras/models/configs.py:205 msgid "JSON data must be in object form. Example:" msgstr "JSON-Daten müssen in Objektform vorliegen. Beispiel:" -#: netbox/extras/models/configs.py:169 +#: extras/models/configs.py:169 msgid "" "Local config context data takes precedence over source contexts in the final" " rendered config context" @@ -8255,19 +7697,19 @@ msgstr "" "Lokale Konfigurationskontextdaten haben im endgültigen gerenderten " "Konfigurationskontext Vorrang vor Quellkontexten" -#: netbox/extras/models/configs.py:224 +#: extras/models/configs.py:224 msgid "template code" msgstr "Vorlagen-Code" -#: netbox/extras/models/configs.py:225 +#: extras/models/configs.py:225 msgid "Jinja2 template code." msgstr "Jinja2-Vorlagen-Code." -#: netbox/extras/models/configs.py:228 +#: extras/models/configs.py:228 msgid "environment parameters" msgstr "Umgebungsparameter" -#: netbox/extras/models/configs.py:233 +#: extras/models/configs.py:233 msgid "" "Any additional" @@ -8277,43 +7719,43 @@ msgstr "" "href=\"https://jinja.palletsprojects.com/en/3.1.x/api/#jinja2.Environment\">zusätzliche" " Parameter um beim Aufbau der Jinja2-Umgebung zu bestehen." -#: netbox/extras/models/configs.py:240 +#: extras/models/configs.py:240 msgid "config template" msgstr "Konfigurationsvorlage" -#: netbox/extras/models/configs.py:241 +#: extras/models/configs.py:241 msgid "config templates" msgstr "Konfigurationsvorlagen" -#: netbox/extras/models/customfields.py:75 +#: extras/models/customfields.py:75 msgid "The object(s) to which this field applies." msgstr "Objekt(e), für die dieses Feld gilt." -#: netbox/extras/models/customfields.py:82 +#: extras/models/customfields.py:82 msgid "The type of data this custom field holds" msgstr "Der Datentyp, den dieses benutzerdefinierte Feld enthält" -#: netbox/extras/models/customfields.py:89 +#: extras/models/customfields.py:89 msgid "The type of NetBox object this field maps to (for object fields)" msgstr "" "Der Typ des NetBox-Objekts, dem dieses Feld zugeordnet ist (für " "Objektfelder)" -#: netbox/extras/models/customfields.py:95 +#: extras/models/customfields.py:95 msgid "Internal field name" msgstr "Interner Feldname" -#: netbox/extras/models/customfields.py:99 +#: extras/models/customfields.py:99 msgid "Only alphanumeric characters and underscores are allowed." msgstr "Nur alphanumerische Zeichen und Unterstriche sind zulässig." -#: netbox/extras/models/customfields.py:104 +#: extras/models/customfields.py:104 msgid "Double underscores are not permitted in custom field names." msgstr "" "Doppelte Unterstriche sind in den Namen benutzerdefinierter Felder nicht " "zulässig." -#: netbox/extras/models/customfields.py:115 +#: extras/models/customfields.py:115 msgid "" "Name of the field as displayed to users (if not provided, 'the field's name " "will be used)" @@ -8321,21 +7763,21 @@ msgstr "" "Name des Feldes, wie er den Benutzern angezeigt wird (falls nicht angegeben," " wird der Name des Felds verwendet)" -#: netbox/extras/models/customfields.py:119 netbox/extras/models/models.py:317 +#: extras/models/customfields.py:119 extras/models/models.py:317 msgid "group name" msgstr "Name der Gruppe" -#: netbox/extras/models/customfields.py:122 +#: extras/models/customfields.py:122 msgid "Custom fields within the same group will be displayed together" msgstr "" "Benutzerdefinierte Felder innerhalb derselben Gruppe werden zusammen " "angezeigt" -#: netbox/extras/models/customfields.py:130 +#: extras/models/customfields.py:130 msgid "required" msgstr "erforderlich" -#: netbox/extras/models/customfields.py:132 +#: extras/models/customfields.py:132 msgid "" "This field is required when creating new objects or editing an existing " "object." @@ -8343,20 +7785,20 @@ msgstr "" "Dieses Feld ist erforderlich, wenn Sie neue Objekte erstellen oder ein " "vorhandenes Objekt bearbeiten." -#: netbox/extras/models/customfields.py:135 +#: extras/models/customfields.py:135 msgid "must be unique" msgstr "muss einzigartig sein" -#: netbox/extras/models/customfields.py:137 +#: extras/models/customfields.py:137 msgid "The value of this field must be unique for the assigned object" msgstr "" "Der Wert dieses Feldes muss für das zugewiesene Objekt eindeutig sein." -#: netbox/extras/models/customfields.py:140 +#: extras/models/customfields.py:140 msgid "search weight" msgstr "Gewichtung der Suche" -#: netbox/extras/models/customfields.py:143 +#: extras/models/customfields.py:143 msgid "" "Weighting for search. Lower values are considered more important. Fields " "with a search weight of zero will be ignored." @@ -8364,11 +7806,11 @@ msgstr "" "Gewichtung für die Suche. Niedrigere Werte werden als wichtiger angesehen. " "Felder mit einem Suchgewicht von Null werden ignoriert." -#: netbox/extras/models/customfields.py:148 +#: extras/models/customfields.py:148 msgid "filter logic" msgstr "Filterlogik" -#: netbox/extras/models/customfields.py:152 +#: extras/models/customfields.py:152 msgid "" "Loose matches any instance of a given string; exact matches the entire " "field." @@ -8376,11 +7818,11 @@ msgstr "" "Loose entspricht einer beliebigen Instanz einer bestimmten Zeichenfolge; " "exact entspricht dem gesamten Feld." -#: netbox/extras/models/customfields.py:155 +#: extras/models/customfields.py:155 msgid "default" msgstr "Standard" -#: netbox/extras/models/customfields.py:159 +#: extras/models/customfields.py:159 msgid "" "Default value for the field (must be a JSON value). Encapsulate strings with" " double quotes (e.g. \"Foo\")." @@ -8388,7 +7830,7 @@ msgstr "" "Standardwert für das Feld (muss ein JSON-Wert sein). Kapsele Zeichenketten " "mit doppelten Anführungszeichen ein (z. B. „Foo“)." -#: netbox/extras/models/customfields.py:166 +#: extras/models/customfields.py:166 msgid "" "Filter the object selection choices using a query_params dict (must be a " "JSON value).Encapsulate strings with double quotes (e.g. \"Foo\")." @@ -8397,36 +7839,36 @@ msgstr "" "(muss ein JSON-Wert sein). Kapseln Sie Zeichenketten mit doppelten " "Anführungszeichen ein (z. B. „Foo“)." -#: netbox/extras/models/customfields.py:172 +#: extras/models/customfields.py:172 msgid "display weight" msgstr "Gewicht anzeigen" -#: netbox/extras/models/customfields.py:173 +#: extras/models/customfields.py:173 msgid "Fields with higher weights appear lower in a form." msgstr "" "Felder mit höheren Gewichten werden in einem Formular niedriger angezeigt." -#: netbox/extras/models/customfields.py:178 +#: extras/models/customfields.py:178 msgid "minimum value" msgstr "minimaler Wert" -#: netbox/extras/models/customfields.py:179 +#: extras/models/customfields.py:179 msgid "Minimum allowed value (for numeric fields)" msgstr "Zulässiger Mindestwert (für numerische Felder)" -#: netbox/extras/models/customfields.py:184 +#: extras/models/customfields.py:184 msgid "maximum value" msgstr "maximaler Wert" -#: netbox/extras/models/customfields.py:185 +#: extras/models/customfields.py:185 msgid "Maximum allowed value (for numeric fields)" msgstr "Zulässiger Maximalwert (für numerische Felder)" -#: netbox/extras/models/customfields.py:191 +#: extras/models/customfields.py:191 msgid "validation regex" msgstr "Regex für die Validierung" -#: netbox/extras/models/customfields.py:193 +#: extras/models/customfields.py:193 #, python-brace-format msgid "" "Regular expression to enforce on text field values. Use ^ and $ to force " @@ -8438,197 +7880,195 @@ msgstr "" "Beispiel ^ [A-Z]{3}$ begrenzt die Werte auf genau drei " "Großbuchstaben." -#: netbox/extras/models/customfields.py:201 +#: extras/models/customfields.py:201 msgid "choice set" msgstr "Auswahlset" -#: netbox/extras/models/customfields.py:210 +#: extras/models/customfields.py:210 msgid "Specifies whether the custom field is displayed in the UI" msgstr "" "Gibt an, ob das benutzerdefinierte Feld in der Benutzeroberfläche angezeigt " "wird" -#: netbox/extras/models/customfields.py:217 +#: extras/models/customfields.py:217 msgid "Specifies whether the custom field value can be edited in the UI" msgstr "" "Gibt an, ob der Wert des benutzerdefinierten Felds in der Benutzeroberfläche" " bearbeitet werden kann." -#: netbox/extras/models/customfields.py:221 +#: extras/models/customfields.py:221 msgid "is cloneable" msgstr "ist klonbar" -#: netbox/extras/models/customfields.py:222 +#: extras/models/customfields.py:222 msgid "Replicate this value when cloning objects" msgstr "Replizieren Sie diesen Wert beim Klonen von Objekten" -#: netbox/extras/models/customfields.py:239 +#: extras/models/customfields.py:239 msgid "custom field" msgstr "benutzerdefiniertes Feld" -#: netbox/extras/models/customfields.py:240 +#: extras/models/customfields.py:240 msgid "custom fields" msgstr "benutzerdefinierte Felder" -#: netbox/extras/models/customfields.py:329 +#: extras/models/customfields.py:329 #, python-brace-format msgid "Invalid default value \"{value}\": {error}" msgstr "Ungültiger Standardwert \"{value}\": {error}" -#: netbox/extras/models/customfields.py:336 +#: extras/models/customfields.py:336 msgid "A minimum value may be set only for numeric fields" msgstr "Ein Mindestwert kann nur für numerische Felder festgelegt werden" -#: netbox/extras/models/customfields.py:338 +#: extras/models/customfields.py:338 msgid "A maximum value may be set only for numeric fields" msgstr "Ein Maximalwert kann nur für numerische Felder festgelegt werden" -#: netbox/extras/models/customfields.py:348 +#: extras/models/customfields.py:348 msgid "" "Regular expression validation is supported only for text and URL fields" msgstr "" "Die Überprüfung regulärer Ausdrücke wird nur für Text- und URL-Felder " "unterstützt" -#: netbox/extras/models/customfields.py:354 +#: extras/models/customfields.py:354 msgid "Uniqueness cannot be enforced for boolean fields" msgstr "Eindeutigkeit kann für boolesche Felder nicht erzwungen werden" -#: netbox/extras/models/customfields.py:364 +#: extras/models/customfields.py:364 msgid "Selection fields must specify a set of choices." msgstr "Auswahlfelder müssen eine Reihe von Auswahlmöglichkeiten enthalten." -#: netbox/extras/models/customfields.py:368 +#: extras/models/customfields.py:368 msgid "Choices may be set only on selection fields." msgstr "Auswahlmöglichkeiten können nur für Auswahlfelder festgelegt werden." -#: netbox/extras/models/customfields.py:375 +#: extras/models/customfields.py:375 msgid "Object fields must define an object type." msgstr "Objektfelder müssen einen Objekttyp definieren." -#: netbox/extras/models/customfields.py:379 +#: extras/models/customfields.py:379 #, python-brace-format msgid "{type} fields may not define an object type." msgstr "{type} Felder definieren möglicherweise keinen Objekttyp." -#: netbox/extras/models/customfields.py:386 +#: extras/models/customfields.py:386 msgid "A related object filter can be defined only for object fields." msgstr "" "Ein verwandter Objektfilter kann nur für Objektfelder definiert werden." -#: netbox/extras/models/customfields.py:390 +#: extras/models/customfields.py:390 msgid "Filter must be defined as a dictionary mapping attributes to values." msgstr "" "Der Filter muss als Wörterbuch definiert werden, das Attributen Werten " "zuordnet." -#: netbox/extras/models/customfields.py:469 +#: extras/models/customfields.py:469 msgid "True" msgstr "Wahr" -#: netbox/extras/models/customfields.py:470 +#: extras/models/customfields.py:470 msgid "False" msgstr "Falsch" -#: netbox/extras/models/customfields.py:560 +#: extras/models/customfields.py:560 #, python-brace-format msgid "Values must match this regex: {regex}" msgstr "" "Die Werte müssen mit diesem Regex übereinstimmen: {regex}" -#: netbox/extras/models/customfields.py:654 +#: extras/models/customfields.py:654 msgid "Value must be a string." msgstr "Der Wert muss eine Zeichenfolge sein." -#: netbox/extras/models/customfields.py:656 +#: extras/models/customfields.py:656 #, python-brace-format msgid "Value must match regex '{regex}'" msgstr "Wert muss mit Regex '{regex}' übereinstimmen" -#: netbox/extras/models/customfields.py:661 +#: extras/models/customfields.py:661 msgid "Value must be an integer." msgstr "Der Wert muss eine Ganzzahl sein." -#: netbox/extras/models/customfields.py:664 -#: netbox/extras/models/customfields.py:679 +#: extras/models/customfields.py:664 extras/models/customfields.py:679 #, python-brace-format msgid "Value must be at least {minimum}" msgstr "Wert muss mindestens {minimum} sein" -#: netbox/extras/models/customfields.py:668 -#: netbox/extras/models/customfields.py:683 +#: extras/models/customfields.py:668 extras/models/customfields.py:683 #, python-brace-format msgid "Value must not exceed {maximum}" msgstr "Wert darf nicht {maximum} überschreiten" -#: netbox/extras/models/customfields.py:676 +#: extras/models/customfields.py:676 msgid "Value must be a decimal." msgstr "Der Wert muss eine Dezimalzahl sein." -#: netbox/extras/models/customfields.py:688 +#: extras/models/customfields.py:688 msgid "Value must be true or false." msgstr "Der Wert muss wahr oder falsch sein." -#: netbox/extras/models/customfields.py:696 +#: extras/models/customfields.py:696 msgid "Date values must be in ISO 8601 format (YYYY-MM-DD)." msgstr "Datumswerte müssen im ISO 8601-Format (YYYY-MM-DD) vorliegen." -#: netbox/extras/models/customfields.py:705 +#: extras/models/customfields.py:705 msgid "Date and time values must be in ISO 8601 format (YYYY-MM-DD HH:MM:SS)." msgstr "" "Datums- und Uhrzeitwerte müssen im ISO 8601-Format (YYYY-MM-DD HH:MM:SS) " "vorliegen." -#: netbox/extras/models/customfields.py:712 +#: extras/models/customfields.py:712 #, python-brace-format msgid "Invalid choice ({value}) for choice set {choiceset}." msgstr "Ungültige Auswahl ({value}) für Auswahlsatz {choiceset}." -#: netbox/extras/models/customfields.py:722 +#: extras/models/customfields.py:722 #, python-brace-format msgid "Invalid choice(s) ({value}) for choice set {choiceset}." msgstr "Ungültige Auswahl (en) ({value}) für Auswahlsatz {choiceset}." -#: netbox/extras/models/customfields.py:731 +#: extras/models/customfields.py:731 #, python-brace-format msgid "Value must be an object ID, not {type}" msgstr "Der Wert muss eine Objekt-ID sein, nicht {type}" -#: netbox/extras/models/customfields.py:737 +#: extras/models/customfields.py:737 #, python-brace-format msgid "Value must be a list of object IDs, not {type}" msgstr "Der Wert muss eine Liste von Objekt-IDs sein, nicht {type}" -#: netbox/extras/models/customfields.py:741 +#: extras/models/customfields.py:741 #, python-brace-format msgid "Found invalid object ID: {id}" msgstr "Ungültige Objekt-ID gefunden: {id}" -#: netbox/extras/models/customfields.py:744 +#: extras/models/customfields.py:744 msgid "Required field cannot be empty." msgstr "Das erforderliche Feld darf nicht leer sein." -#: netbox/extras/models/customfields.py:763 +#: extras/models/customfields.py:763 msgid "Base set of predefined choices (optional)" msgstr "Basissatz vordefinierter Auswahlmöglichkeiten (optional)" -#: netbox/extras/models/customfields.py:775 +#: extras/models/customfields.py:775 msgid "Choices are automatically ordered alphabetically" msgstr "Die Auswahlmöglichkeiten werden automatisch alphabetisch sortiert" -#: netbox/extras/models/customfields.py:782 +#: extras/models/customfields.py:782 msgid "custom field choice set" msgstr "benutzerdefinierter Feldauswahlsatz" -#: netbox/extras/models/customfields.py:783 +#: extras/models/customfields.py:783 msgid "custom field choice sets" msgstr "Benutzerdefinierte Feldoptionen" -#: netbox/extras/models/customfields.py:825 +#: extras/models/customfields.py:825 msgid "Must define base or extra choices." msgstr "Muss Basis- oder zusätzliche Auswahlmöglichkeiten definieren." -#: netbox/extras/models/customfields.py:849 +#: extras/models/customfields.py:849 #, python-brace-format msgid "" "Cannot remove choice {choice} as there are {model} objects which reference " @@ -8637,61 +8077,61 @@ msgstr "" "Auswahl kann nicht entfernt werden {choice} es gibt {model} Objekte, die " "darauf verweisen." -#: netbox/extras/models/dashboard.py:18 +#: extras/models/dashboard.py:18 msgid "layout" msgstr "Layout" -#: netbox/extras/models/dashboard.py:22 +#: extras/models/dashboard.py:22 msgid "config" msgstr "Konfiguration" -#: netbox/extras/models/dashboard.py:27 +#: extras/models/dashboard.py:27 msgid "dashboard" msgstr "Dashboard" -#: netbox/extras/models/dashboard.py:28 +#: extras/models/dashboard.py:28 msgid "dashboards" msgstr "Dashboards" -#: netbox/extras/models/models.py:52 +#: extras/models/models.py:52 msgid "object types" msgstr "Objekttypen" -#: netbox/extras/models/models.py:53 +#: extras/models/models.py:53 msgid "The object(s) to which this rule applies." msgstr "Die Objekte, für die diese Regel gilt." -#: netbox/extras/models/models.py:67 +#: extras/models/models.py:67 msgid "The types of event which will trigger this rule." msgstr "Die Ereignistypen, die diese Regel auslösen." -#: netbox/extras/models/models.py:74 +#: extras/models/models.py:74 msgid "conditions" msgstr "Dienste" -#: netbox/extras/models/models.py:77 +#: extras/models/models.py:77 msgid "" "A set of conditions which determine whether the event will be generated." msgstr "" "Eine Reihe von Bedingungen, die bestimmen, ob das Ereignis generiert wird." -#: netbox/extras/models/models.py:85 +#: extras/models/models.py:85 msgid "action type" msgstr "Aktionstyp" -#: netbox/extras/models/models.py:104 +#: extras/models/models.py:104 msgid "Additional data to pass to the action object" msgstr "Zusätzliche Daten, die an das Aktionsobjekt übergeben werden" -#: netbox/extras/models/models.py:116 +#: extras/models/models.py:116 msgid "event rule" msgstr "Ereignisregel" -#: netbox/extras/models/models.py:117 +#: extras/models/models.py:117 msgid "event rules" msgstr "Ereignisregeln" -#: netbox/extras/models/models.py:166 +#: extras/models/models.py:166 msgid "" "This URL will be called using the HTTP method defined when the webhook is " "called. Jinja2 template processing is supported with the same context as the" @@ -8701,7 +8141,7 @@ msgstr "" "definiert wurde. Die Verarbeitung von Jinja2-Vorlagen wird im gleichen " "Kontext wie der Anforderungstext unterstützt." -#: netbox/extras/models/models.py:181 +#: extras/models/models.py:181 msgid "" "The complete list of official content types is available hier." -#: netbox/extras/models/models.py:186 +#: extras/models/models.py:186 msgid "additional headers" msgstr "zusätzliche Kopfzeilen" -#: netbox/extras/models/models.py:189 +#: extras/models/models.py:189 msgid "" "User-supplied HTTP headers to be sent with the request in addition to the " "HTTP content type. Headers should be defined in the format Name: " @@ -8727,11 +8167,11 @@ msgstr "" "definiert werden Name: Wert. Die Jinja2-Vorlagenverarbeitung " "wird im gleichen Kontext wie der Anforderungstext (unten) unterstützt." -#: netbox/extras/models/models.py:195 +#: extras/models/models.py:195 msgid "body template" msgstr "Body Template" -#: netbox/extras/models/models.py:198 +#: extras/models/models.py:198 msgid "" "Jinja2 template for a custom request body. If blank, a JSON object " "representing the change will be included. Available context data includes: " @@ -8744,11 +8184,11 @@ msgstr "" "Modell, Zeitstempel, Nutzername, " "Anforderungs_ID, und Daten." -#: netbox/extras/models/models.py:204 +#: extras/models/models.py:204 msgid "secret" msgstr "Geheimer Schlüssel" -#: netbox/extras/models/models.py:208 +#: extras/models/models.py:208 msgid "" "When provided, the request will include a X-Hook-Signature " "header containing a HMAC hex digest of the payload body using the secret as " @@ -8759,16 +8199,16 @@ msgstr "" "Geheimnis als Schlüssel verwendet wird. Das Geheimnis wird in der Anfrage " "nicht übertragen." -#: netbox/extras/models/models.py:215 +#: extras/models/models.py:215 msgid "Enable SSL certificate verification. Disable with caution!" msgstr "" "Aktivieren Sie die SSL-Zertifikatsüberprüfung. Mit Vorsicht deaktivieren!" -#: netbox/extras/models/models.py:221 netbox/templates/extras/webhook.html:51 +#: extras/models/models.py:221 templates/extras/webhook.html:51 msgid "CA File Path" msgstr "CA-Dateipfad" -#: netbox/extras/models/models.py:223 +#: extras/models/models.py:223 msgid "" "The specific CA certificate file to use for SSL verification. Leave blank to" " use the system defaults." @@ -8777,65 +8217,65 @@ msgstr "" "werden soll. Lassen Sie das Feld leer, um die Systemstandardwerte zu " "verwenden." -#: netbox/extras/models/models.py:234 +#: extras/models/models.py:234 msgid "webhook" msgstr "Webhook" -#: netbox/extras/models/models.py:235 +#: extras/models/models.py:235 msgid "webhooks" msgstr "Webhooks" -#: netbox/extras/models/models.py:253 +#: extras/models/models.py:253 msgid "Do not specify a CA certificate file if SSL verification is disabled." msgstr "" "Geben Sie keine CA-Zertifikatsdatei an, wenn die SSL-Überprüfung deaktiviert" " ist." -#: netbox/extras/models/models.py:293 +#: extras/models/models.py:293 msgid "The object type(s) to which this link applies." msgstr "Die Objekttyp(en), für die dieser Link gilt." -#: netbox/extras/models/models.py:305 +#: extras/models/models.py:305 msgid "link text" msgstr "Linktext" -#: netbox/extras/models/models.py:306 +#: extras/models/models.py:306 msgid "Jinja2 template code for link text" msgstr "Jinja2-Vorlagencode für Linktext" -#: netbox/extras/models/models.py:309 +#: extras/models/models.py:309 msgid "link URL" msgstr "Link-URL" -#: netbox/extras/models/models.py:310 +#: extras/models/models.py:310 msgid "Jinja2 template code for link URL" msgstr "Jinja2-Vorlagencode für Link-URL" -#: netbox/extras/models/models.py:320 +#: extras/models/models.py:320 msgid "Links with the same group will appear as a dropdown menu" msgstr "Links mit derselben Gruppe werden als Drop-down-Menü angezeigt" -#: netbox/extras/models/models.py:330 +#: extras/models/models.py:330 msgid "new window" msgstr "neues Fenster" -#: netbox/extras/models/models.py:332 +#: extras/models/models.py:332 msgid "Force link to open in a new window" msgstr "Link erzwingen, in einem neuen Fenster zu öffnen" -#: netbox/extras/models/models.py:341 +#: extras/models/models.py:341 msgid "custom link" msgstr "benutzerdefinierter Link" -#: netbox/extras/models/models.py:342 +#: extras/models/models.py:342 msgid "custom links" msgstr "benutzerdefinierte Links" -#: netbox/extras/models/models.py:389 +#: extras/models/models.py:389 msgid "The object type(s) to which this template applies." msgstr "Die Objekttyp(en), für die diese Vorlage gilt." -#: netbox/extras/models/models.py:402 +#: extras/models/models.py:402 msgid "" "Jinja2 template code. The list of objects being exported is passed as a " "context variable named queryset." @@ -8843,1096 +8283,1061 @@ msgstr "" "Jinja2-Vorlagencode. Die Liste der exportierten Objekte wird als " "Kontextvariable mit dem Namen übergeben Abfragesatz." -#: netbox/extras/models/models.py:410 +#: extras/models/models.py:410 msgid "Defaults to text/plain; charset=utf-8" msgstr "Die Standardeinstellung ist text/plain; charset=utf-8" -#: netbox/extras/models/models.py:413 +#: extras/models/models.py:413 msgid "file extension" msgstr "Dateierweiterung" -#: netbox/extras/models/models.py:416 +#: extras/models/models.py:416 msgid "Extension to append to the rendered filename" msgstr "Erweiterung, die an den gerenderten Dateinamen angehängt werden soll" -#: netbox/extras/models/models.py:419 +#: extras/models/models.py:419 msgid "as attachment" msgstr "als Anlage" -#: netbox/extras/models/models.py:421 +#: extras/models/models.py:421 msgid "Download file as attachment" msgstr "Datei als Anlage herunterladen" -#: netbox/extras/models/models.py:430 +#: extras/models/models.py:430 msgid "export template" msgstr "Vorlage exportieren" -#: netbox/extras/models/models.py:431 +#: extras/models/models.py:431 msgid "export templates" msgstr "Exportvorlagen" -#: netbox/extras/models/models.py:448 +#: extras/models/models.py:448 #, python-brace-format msgid "\"{name}\" is a reserved name. Please choose a different name." msgstr "" "„{name}\"ist ein reservierter Name. Bitte wählen Sie einen anderen Namen." -#: netbox/extras/models/models.py:498 +#: extras/models/models.py:498 msgid "The object type(s) to which this filter applies." msgstr "Der/Die Objekttyp (en), für die dieser Filter gilt." -#: netbox/extras/models/models.py:530 +#: extras/models/models.py:530 msgid "shared" msgstr "geteilt" -#: netbox/extras/models/models.py:543 +#: extras/models/models.py:543 msgid "saved filter" msgstr "gespeicherter Filter" -#: netbox/extras/models/models.py:544 +#: extras/models/models.py:544 msgid "saved filters" msgstr "gespeicherte Filter" -#: netbox/extras/models/models.py:562 +#: extras/models/models.py:562 msgid "Filter parameters must be stored as a dictionary of keyword arguments." msgstr "" "Filterparameter müssen als Wörterbuch mit Schlüsselwortargumenten " "gespeichert werden." -#: netbox/extras/models/models.py:590 +#: extras/models/models.py:590 msgid "image height" msgstr "Höhe des Bildes" -#: netbox/extras/models/models.py:593 +#: extras/models/models.py:593 msgid "image width" msgstr "Breite des Bildes" -#: netbox/extras/models/models.py:610 +#: extras/models/models.py:610 msgid "image attachment" msgstr "Bildanhang" -#: netbox/extras/models/models.py:611 +#: extras/models/models.py:611 msgid "image attachments" msgstr "Bildanhänge" -#: netbox/extras/models/models.py:625 +#: extras/models/models.py:625 #, python-brace-format msgid "Image attachments cannot be assigned to this object type ({type})." msgstr "Bildanhänge können diesem Objekttyp nicht zugewiesen werden ({type})." -#: netbox/extras/models/models.py:688 +#: extras/models/models.py:688 msgid "kind" msgstr "Typ" -#: netbox/extras/models/models.py:702 +#: extras/models/models.py:702 msgid "journal entry" msgstr "Journaleintrag" -#: netbox/extras/models/models.py:703 +#: extras/models/models.py:703 msgid "journal entries" msgstr "Journaleinträge" -#: netbox/extras/models/models.py:718 +#: extras/models/models.py:718 #, python-brace-format msgid "Journaling is not supported for this object type ({type})." msgstr "Journaling wird für diesen Objekttyp nicht unterstützt ({type})." -#: netbox/extras/models/models.py:760 +#: extras/models/models.py:760 msgid "bookmark" msgstr "Lesezeichen" -#: netbox/extras/models/models.py:761 +#: extras/models/models.py:761 msgid "bookmarks" msgstr "Lesezeichen" -#: netbox/extras/models/models.py:774 +#: extras/models/models.py:774 #, python-brace-format msgid "Bookmarks cannot be assigned to this object type ({type})." msgstr "Diesem Objekttyp können keine Lesezeichen zugewiesen werden ({type})." -#: netbox/extras/models/notifications.py:43 +#: extras/models/notifications.py:43 msgid "read" msgstr "lesen" -#: netbox/extras/models/notifications.py:66 +#: extras/models/notifications.py:66 msgid "event" msgstr "Ereignis" -#: netbox/extras/models/notifications.py:84 +#: extras/models/notifications.py:84 msgid "notification" msgstr "Benachrichtigung" -#: netbox/extras/models/notifications.py:85 +#: extras/models/notifications.py:85 msgid "notifications" msgstr "Benachrichtigungen" -#: netbox/extras/models/notifications.py:99 -#: netbox/extras/models/notifications.py:234 +#: extras/models/notifications.py:99 extras/models/notifications.py:234 #, python-brace-format msgid "Objects of this type ({type}) do not support notifications." msgstr "Objekte dieses Typs ({type}) unterstützen keine Benachrichtigungen." -#: netbox/extras/models/notifications.py:137 netbox/users/models/users.py:58 -#: netbox/users/models/users.py:77 +#: extras/models/notifications.py:137 users/models/users.py:58 +#: users/models/users.py:77 msgid "groups" msgstr "Gruppen" -#: netbox/extras/models/notifications.py:143 netbox/users/models/users.py:93 +#: extras/models/notifications.py:143 users/models/users.py:93 msgid "users" msgstr "Benutzer" -#: netbox/extras/models/notifications.py:152 +#: extras/models/notifications.py:152 msgid "notification group" msgstr "Benachrichtigungsgruppe" -#: netbox/extras/models/notifications.py:153 +#: extras/models/notifications.py:153 msgid "notification groups" msgstr "Benachrichtigungsgruppen" -#: netbox/extras/models/notifications.py:217 +#: extras/models/notifications.py:217 msgid "subscription" msgstr "Abonnement" -#: netbox/extras/models/notifications.py:218 +#: extras/models/notifications.py:218 msgid "subscriptions" msgstr "Abonnements" -#: netbox/extras/models/scripts.py:42 +#: extras/models/scripts.py:42 msgid "is executable" msgstr "ist ausführbar" -#: netbox/extras/models/scripts.py:64 +#: extras/models/scripts.py:64 msgid "script" msgstr "Skript" -#: netbox/extras/models/scripts.py:65 +#: extras/models/scripts.py:65 msgid "scripts" msgstr "Skripte" -#: netbox/extras/models/scripts.py:111 +#: extras/models/scripts.py:111 msgid "script module" msgstr "Skriptmodul" -#: netbox/extras/models/scripts.py:112 +#: extras/models/scripts.py:112 msgid "script modules" msgstr "Skriptmodule" -#: netbox/extras/models/search.py:22 +#: extras/models/search.py:22 msgid "timestamp" msgstr "Zeitstempel" -#: netbox/extras/models/search.py:37 +#: extras/models/search.py:37 msgid "field" msgstr "Feld" -#: netbox/extras/models/search.py:45 +#: extras/models/search.py:45 msgid "value" msgstr "Wert" -#: netbox/extras/models/search.py:56 +#: extras/models/search.py:56 msgid "cached value" msgstr "zwischengespeicherter Wert" -#: netbox/extras/models/search.py:57 +#: extras/models/search.py:57 msgid "cached values" msgstr "zwischengespeicherte Werte" -#: netbox/extras/models/staging.py:44 +#: extras/models/staging.py:44 msgid "branch" msgstr "Branch" -#: netbox/extras/models/staging.py:45 +#: extras/models/staging.py:45 msgid "branches" msgstr "Branches" -#: netbox/extras/models/staging.py:97 +#: extras/models/staging.py:97 msgid "staged change" msgstr "vorbereitete Änderung" -#: netbox/extras/models/staging.py:98 +#: extras/models/staging.py:98 msgid "staged changes" msgstr "vorbereitete Änderungen" -#: netbox/extras/models/tags.py:40 +#: extras/models/tags.py:40 msgid "The object type(s) to which this tag can be applied." msgstr "Die Objekttyp (en), auf die dieses Tag angewendet werden kann." -#: netbox/extras/models/tags.py:49 +#: extras/models/tags.py:49 msgid "tag" msgstr "Tag" -#: netbox/extras/models/tags.py:50 +#: extras/models/tags.py:50 msgid "tags" msgstr "Tags" -#: netbox/extras/models/tags.py:78 +#: extras/models/tags.py:78 msgid "tagged item" msgstr "markierter Artikel" -#: netbox/extras/models/tags.py:79 +#: extras/models/tags.py:79 msgid "tagged items" msgstr "markierte Artikel" -#: netbox/extras/scripts.py:429 +#: extras/scripts.py:429 msgid "Script Data" msgstr "Skriptdaten" -#: netbox/extras/scripts.py:433 +#: extras/scripts.py:433 msgid "Script Execution Parameters" msgstr "Parameter für die Skriptausführung" -#: netbox/extras/tables/columns.py:12 -#: netbox/templates/htmx/notifications.html:18 +#: extras/tables/columns.py:12 templates/htmx/notifications.html:18 msgid "Dismiss" msgstr "Abweisen" -#: netbox/extras/tables/tables.py:62 netbox/extras/tables/tables.py:159 -#: netbox/extras/tables/tables.py:184 netbox/extras/tables/tables.py:250 -#: netbox/extras/tables/tables.py:276 netbox/extras/tables/tables.py:412 -#: netbox/extras/tables/tables.py:446 -#: netbox/templates/extras/customfield.html:105 -#: netbox/templates/extras/eventrule.html:27 -#: netbox/templates/users/objectpermission.html:64 netbox/users/tables.py:80 +#: extras/tables/tables.py:62 extras/tables/tables.py:159 +#: extras/tables/tables.py:184 extras/tables/tables.py:250 +#: extras/tables/tables.py:276 extras/tables/tables.py:412 +#: extras/tables/tables.py:446 templates/extras/customfield.html:105 +#: templates/extras/eventrule.html:27 templates/users/objectpermission.html:64 +#: users/tables.py:80 msgid "Object Types" msgstr "Objekttypen" -#: netbox/extras/tables/tables.py:69 +#: extras/tables/tables.py:69 msgid "Validate Uniqueness" msgstr "Überprüfen Sie die Eindeutigkeit" -#: netbox/extras/tables/tables.py:73 +#: extras/tables/tables.py:73 msgid "Visible" msgstr "Sichtbar" -#: netbox/extras/tables/tables.py:76 +#: extras/tables/tables.py:76 msgid "Editable" msgstr "Editierbar" -#: netbox/extras/tables/tables.py:82 +#: extras/tables/tables.py:82 msgid "Related Object Type" msgstr "Verwandter Objekttyp" -#: netbox/extras/tables/tables.py:86 -#: netbox/templates/extras/customfield.html:51 +#: extras/tables/tables.py:86 templates/extras/customfield.html:51 msgid "Choice Set" msgstr "Auswahlset" -#: netbox/extras/tables/tables.py:94 +#: extras/tables/tables.py:94 msgid "Is Cloneable" msgstr "Ist klonbar" -#: netbox/extras/tables/tables.py:98 -#: netbox/templates/extras/customfield.html:118 +#: extras/tables/tables.py:98 templates/extras/customfield.html:118 msgid "Minimum Value" msgstr "Minimaler Wert" -#: netbox/extras/tables/tables.py:101 -#: netbox/templates/extras/customfield.html:122 +#: extras/tables/tables.py:101 templates/extras/customfield.html:122 msgid "Maximum Value" msgstr "Maximaler Wert" -#: netbox/extras/tables/tables.py:104 +#: extras/tables/tables.py:104 msgid "Validation Regex" msgstr "Überprüfung Regex" -#: netbox/extras/tables/tables.py:137 +#: extras/tables/tables.py:137 msgid "Count" msgstr "Anzahl" -#: netbox/extras/tables/tables.py:140 +#: extras/tables/tables.py:140 msgid "Order Alphabetically" msgstr "Alphabetisch sortieren" -#: netbox/extras/tables/tables.py:165 -#: netbox/templates/extras/customlink.html:33 +#: extras/tables/tables.py:165 templates/extras/customlink.html:33 msgid "New Window" msgstr "Neues Fenster" -#: netbox/extras/tables/tables.py:187 +#: extras/tables/tables.py:187 msgid "As Attachment" msgstr "Als Anlage" -#: netbox/extras/tables/tables.py:195 netbox/extras/tables/tables.py:487 -#: netbox/extras/tables/tables.py:522 netbox/templates/core/datafile.html:24 -#: netbox/templates/dcim/device/render_config.html:22 -#: netbox/templates/extras/configcontext.html:39 -#: netbox/templates/extras/configtemplate.html:31 -#: netbox/templates/extras/exporttemplate.html:45 -#: netbox/templates/generic/bulk_import.html:35 -#: netbox/templates/virtualization/virtualmachine/render_config.html:22 +#: extras/tables/tables.py:195 extras/tables/tables.py:487 +#: extras/tables/tables.py:522 templates/core/datafile.html:24 +#: templates/dcim/device/render_config.html:22 +#: templates/extras/configcontext.html:39 +#: templates/extras/configtemplate.html:31 +#: templates/extras/exporttemplate.html:45 +#: templates/generic/bulk_import.html:35 +#: templates/virtualization/virtualmachine/render_config.html:22 msgid "Data File" msgstr "Datendatei" -#: netbox/extras/tables/tables.py:200 netbox/extras/tables/tables.py:499 -#: netbox/extras/tables/tables.py:527 +#: extras/tables/tables.py:200 extras/tables/tables.py:499 +#: extras/tables/tables.py:527 msgid "Synced" msgstr "Synchronisiert" -#: netbox/extras/tables/tables.py:227 +#: extras/tables/tables.py:227 msgid "Image" msgstr "Bild" -#: netbox/extras/tables/tables.py:232 +#: extras/tables/tables.py:232 msgid "Size (Bytes)" msgstr "Größe (Byte)" -#: netbox/extras/tables/tables.py:339 +#: extras/tables/tables.py:339 msgid "Read" msgstr "Lesen" -#: netbox/extras/tables/tables.py:382 +#: extras/tables/tables.py:382 msgid "SSL Validation" msgstr "SSL-Validierung" -#: netbox/extras/tables/tables.py:418 -#: netbox/templates/extras/eventrule.html:37 +#: extras/tables/tables.py:418 templates/extras/eventrule.html:37 msgid "Event Types" msgstr "Ereignistypen" -#: netbox/extras/tables/tables.py:535 netbox/netbox/navigation/menu.py:77 -#: netbox/templates/dcim/devicerole.html:8 +#: extras/tables/tables.py:535 netbox/navigation/menu.py:77 +#: templates/dcim/devicerole.html:8 msgid "Device Roles" msgstr "Geräterollen" -#: netbox/extras/tables/tables.py:587 +#: extras/tables/tables.py:587 msgid "Comments (Short)" msgstr "Kommentare (Kurz)" -#: netbox/extras/tables/tables.py:606 netbox/extras/tables/tables.py:640 +#: extras/tables/tables.py:606 extras/tables/tables.py:640 msgid "Line" msgstr "Linie" -#: netbox/extras/tables/tables.py:613 netbox/extras/tables/tables.py:650 +#: extras/tables/tables.py:613 extras/tables/tables.py:650 msgid "Level" msgstr "Stufe" -#: netbox/extras/tables/tables.py:619 netbox/extras/tables/tables.py:659 +#: extras/tables/tables.py:619 extras/tables/tables.py:659 msgid "Message" msgstr "Nachricht" -#: netbox/extras/tables/tables.py:643 +#: extras/tables/tables.py:643 msgid "Method" msgstr "Methode" -#: netbox/extras/validators.py:15 +#: extras/validators.py:15 #, python-format msgid "Ensure this value is equal to %(limit_value)s." msgstr "Stellen Sie sicher, dass dieser Wert gleich ist %(limit_value)s." -#: netbox/extras/validators.py:26 +#: extras/validators.py:26 #, python-format msgid "Ensure this value does not equal %(limit_value)s." msgstr "" "Stellen Sie sicher, dass dieser Wert nicht gleich ist %(limit_value)s." -#: netbox/extras/validators.py:37 +#: extras/validators.py:37 msgid "This field must be empty." msgstr "Dieses Feld muss leer sein." -#: netbox/extras/validators.py:52 +#: extras/validators.py:52 msgid "This field must not be empty." msgstr "Dieses Feld darf nicht leer sein." -#: netbox/extras/validators.py:94 +#: extras/validators.py:94 msgid "Validation rules must be passed as a dictionary" msgstr "Validierungsregeln müssen als Wörterbuch übergeben werden" -#: netbox/extras/validators.py:119 +#: extras/validators.py:119 #, python-brace-format msgid "Custom validation failed for {attribute}: {exception}" msgstr "" "Die benutzerdefinierte Überprüfung ist fehlgeschlagen für {attribute}: " "{exception}" -#: netbox/extras/validators.py:133 +#: extras/validators.py:133 #, python-brace-format msgid "Invalid attribute \"{name}\" for request" msgstr "Ungültiges Attribut“{name}„zur Anfrage" -#: netbox/extras/validators.py:150 +#: extras/validators.py:150 #, python-brace-format msgid "Invalid attribute \"{name}\" for {model}" msgstr "Ungültiges Attribut“{name}„für {model}" -#: netbox/extras/views.py:960 +#: extras/views.py:960 msgid "Your dashboard has been reset." msgstr "Ihr Dashboard wurde zurückgesetzt." -#: netbox/extras/views.py:1006 +#: extras/views.py:1006 msgid "Added widget: " msgstr "Hinzugefügtes Widget:" -#: netbox/extras/views.py:1047 +#: extras/views.py:1047 msgid "Updated widget: " msgstr "Aktualisiertes Widget: " -#: netbox/extras/views.py:1083 +#: extras/views.py:1083 msgid "Deleted widget: " msgstr "Gelöschtes Widget: " -#: netbox/extras/views.py:1085 +#: extras/views.py:1085 msgid "Error deleting widget: " msgstr "Fehler beim Löschen des Widgets: " -#: netbox/extras/views.py:1172 +#: extras/views.py:1172 msgid "Unable to run script: RQ worker process not running." msgstr "" "Das Skript kann nicht ausgeführt werden: Der RQ-Worker-Prozess läuft nicht." -#: netbox/ipam/api/field_serializers.py:17 +#: ipam/api/field_serializers.py:17 msgid "Enter a valid IPv4 or IPv6 address with optional mask." msgstr "" "Geben Sie eine gültige IPv4- oder IPv6-Adresse mit optionaler Maske ein." -#: netbox/ipam/api/field_serializers.py:24 +#: ipam/api/field_serializers.py:24 #, python-brace-format msgid "Invalid IP address format: {data}" msgstr "Ungültiges IP-Adressformat: {data}" -#: netbox/ipam/api/field_serializers.py:37 +#: ipam/api/field_serializers.py:37 msgid "Enter a valid IPv4 or IPv6 prefix and mask in CIDR notation." msgstr "" "Geben Sie ein gültiges IPv4- oder IPv6-Präfix und eine Maske in CIDR-" "Notation ein." -#: netbox/ipam/api/field_serializers.py:44 +#: ipam/api/field_serializers.py:44 #, python-brace-format msgid "Invalid IP prefix format: {data}" msgstr "Ungültiges IP-Präfixformat: {data}" -#: netbox/ipam/api/views.py:358 +#: ipam/api/views.py:358 msgid "" "Insufficient space is available to accommodate the requested prefix size(s)" msgstr "" "Für die angeforderte (n) Präfixgröße (n) ist nicht genügend Speicherplatz " "verfügbar" -#: netbox/ipam/choices.py:30 +#: ipam/choices.py:30 msgid "Container" msgstr "Container" -#: netbox/ipam/choices.py:72 +#: ipam/choices.py:72 msgid "DHCP" msgstr "DHCP" -#: netbox/ipam/choices.py:73 +#: ipam/choices.py:73 msgid "SLAAC" msgstr "SLAAC" -#: netbox/ipam/choices.py:89 +#: ipam/choices.py:89 msgid "Loopback" msgstr "Loopback" -#: netbox/ipam/choices.py:91 +#: ipam/choices.py:91 msgid "Anycast" msgstr "Anycast" -#: netbox/ipam/choices.py:115 +#: ipam/choices.py:115 msgid "Standard" msgstr "Standard" -#: netbox/ipam/choices.py:120 +#: ipam/choices.py:120 msgid "CheckPoint" msgstr "Checkpoint" -#: netbox/ipam/choices.py:123 +#: ipam/choices.py:123 msgid "Cisco" msgstr "Cisco" -#: netbox/ipam/choices.py:137 +#: ipam/choices.py:137 msgid "Plaintext" msgstr "Klartext" -#: netbox/ipam/fields.py:36 +#: ipam/fields.py:36 #, python-brace-format msgid "Invalid IP address format: {address}" msgstr "Ungültiges IP-Adressformat: {address}" -#: netbox/ipam/filtersets.py:48 netbox/vpn/filtersets.py:304 +#: ipam/filtersets.py:48 vpn/filtersets.py:304 msgid "Import target" msgstr "Ziel importieren" -#: netbox/ipam/filtersets.py:54 netbox/vpn/filtersets.py:310 +#: ipam/filtersets.py:54 vpn/filtersets.py:310 msgid "Import target (name)" msgstr "Importziel (Name)" -#: netbox/ipam/filtersets.py:59 netbox/vpn/filtersets.py:315 +#: ipam/filtersets.py:59 vpn/filtersets.py:315 msgid "Export target" msgstr "Ziel exportieren" -#: netbox/ipam/filtersets.py:65 netbox/vpn/filtersets.py:321 +#: ipam/filtersets.py:65 vpn/filtersets.py:321 msgid "Export target (name)" msgstr "Exportziel (Name)" -#: netbox/ipam/filtersets.py:86 +#: ipam/filtersets.py:86 msgid "Importing VRF" msgstr "VRF importieren" -#: netbox/ipam/filtersets.py:92 +#: ipam/filtersets.py:92 msgid "Import VRF (RD)" msgstr "VRF (RD) importieren" -#: netbox/ipam/filtersets.py:97 +#: ipam/filtersets.py:97 msgid "Exporting VRF" msgstr "VRF exportieren" -#: netbox/ipam/filtersets.py:103 +#: ipam/filtersets.py:103 msgid "Export VRF (RD)" msgstr "VRF (RD) exportieren" -#: netbox/ipam/filtersets.py:108 +#: ipam/filtersets.py:108 msgid "Importing L2VPN" msgstr "L2VPN importieren" -#: netbox/ipam/filtersets.py:114 +#: ipam/filtersets.py:114 msgid "Importing L2VPN (identifier)" msgstr "L2VPN importieren (Identifier)" -#: netbox/ipam/filtersets.py:119 +#: ipam/filtersets.py:119 msgid "Exporting L2VPN" msgstr "L2VPN exportieren" -#: netbox/ipam/filtersets.py:125 +#: ipam/filtersets.py:125 msgid "Exporting L2VPN (identifier)" msgstr "L2VPN exportieren (Identifier)" -#: netbox/ipam/filtersets.py:155 netbox/ipam/filtersets.py:281 -#: netbox/ipam/forms/model_forms.py:229 netbox/ipam/tables/ip.py:212 -#: netbox/templates/ipam/prefix.html:12 +#: ipam/filtersets.py:155 ipam/filtersets.py:281 ipam/forms/model_forms.py:229 +#: ipam/tables/ip.py:212 templates/ipam/prefix.html:12 msgid "Prefix" msgstr "Prefix" -#: netbox/ipam/filtersets.py:159 netbox/ipam/filtersets.py:198 -#: netbox/ipam/filtersets.py:221 +#: ipam/filtersets.py:159 ipam/filtersets.py:198 ipam/filtersets.py:221 msgid "RIR (ID)" msgstr "RIR (ID)" -#: netbox/ipam/filtersets.py:165 netbox/ipam/filtersets.py:204 -#: netbox/ipam/filtersets.py:227 +#: ipam/filtersets.py:165 ipam/filtersets.py:204 ipam/filtersets.py:227 msgid "RIR (slug)" msgstr "RIR (URL-Slug)" -#: netbox/ipam/filtersets.py:285 +#: ipam/filtersets.py:285 msgid "Within prefix" msgstr "Innerhalb des Prefixes" -#: netbox/ipam/filtersets.py:289 +#: ipam/filtersets.py:289 msgid "Within and including prefix" msgstr "Innerhalb und einschließlich Präfix" -#: netbox/ipam/filtersets.py:293 +#: ipam/filtersets.py:293 msgid "Prefixes which contain this prefix or IP" msgstr "Präfixe, die dieses Präfix oder diese IP enthalten" -#: netbox/ipam/filtersets.py:304 netbox/ipam/filtersets.py:572 -#: netbox/ipam/forms/bulk_edit.py:342 netbox/ipam/forms/filtersets.py:196 -#: netbox/ipam/forms/filtersets.py:331 +#: ipam/filtersets.py:304 ipam/filtersets.py:572 ipam/forms/bulk_edit.py:343 +#: ipam/forms/filtersets.py:196 ipam/forms/filtersets.py:331 msgid "Mask length" msgstr "Länge der Maske" -#: netbox/ipam/filtersets.py:373 netbox/vpn/filtersets.py:427 +#: ipam/filtersets.py:373 vpn/filtersets.py:427 msgid "VLAN (ID)" msgstr "VLAN (ID)" -#: netbox/ipam/filtersets.py:377 netbox/vpn/filtersets.py:422 +#: ipam/filtersets.py:377 vpn/filtersets.py:422 msgid "VLAN number (1-4094)" msgstr "VLAN-Nummer (1-4094)" -#: netbox/ipam/filtersets.py:471 netbox/ipam/filtersets.py:475 -#: netbox/ipam/filtersets.py:567 netbox/ipam/forms/model_forms.py:463 -#: netbox/templates/tenancy/contact.html:53 -#: netbox/tenancy/forms/bulk_edit.py:113 +#: ipam/filtersets.py:471 ipam/filtersets.py:475 ipam/filtersets.py:567 +#: ipam/forms/model_forms.py:463 templates/tenancy/contact.html:53 +#: tenancy/forms/bulk_edit.py:113 msgid "Address" msgstr "Adresse" -#: netbox/ipam/filtersets.py:479 +#: ipam/filtersets.py:479 msgid "Ranges which contain this prefix or IP" msgstr "Bereiche, die dieses Präfix oder diese IP enthalten" -#: netbox/ipam/filtersets.py:507 netbox/ipam/filtersets.py:563 +#: ipam/filtersets.py:507 ipam/filtersets.py:563 msgid "Parent prefix" msgstr "Übergeordnetes Präfix" -#: netbox/ipam/filtersets.py:616 netbox/ipam/filtersets.py:856 -#: netbox/ipam/filtersets.py:1131 netbox/vpn/filtersets.py:385 +#: ipam/filtersets.py:616 ipam/filtersets.py:856 ipam/filtersets.py:1131 +#: vpn/filtersets.py:385 msgid "Virtual machine (name)" msgstr "Virtuelle Maschine (Name)" -#: netbox/ipam/filtersets.py:621 netbox/ipam/filtersets.py:861 -#: netbox/ipam/filtersets.py:1125 netbox/virtualization/filtersets.py:282 -#: netbox/virtualization/filtersets.py:321 netbox/vpn/filtersets.py:390 +#: ipam/filtersets.py:621 ipam/filtersets.py:861 ipam/filtersets.py:1125 +#: virtualization/filtersets.py:282 virtualization/filtersets.py:321 +#: vpn/filtersets.py:390 msgid "Virtual machine (ID)" msgstr "Virtuelle Maschine (ID)" -#: netbox/ipam/filtersets.py:627 netbox/vpn/filtersets.py:97 -#: netbox/vpn/filtersets.py:396 +#: ipam/filtersets.py:627 vpn/filtersets.py:97 vpn/filtersets.py:396 msgid "Interface (name)" msgstr "Schnittstelle (Name)" -#: netbox/ipam/filtersets.py:638 netbox/vpn/filtersets.py:108 -#: netbox/vpn/filtersets.py:407 +#: ipam/filtersets.py:638 vpn/filtersets.py:108 vpn/filtersets.py:407 msgid "VM interface (name)" msgstr "VM-Schnittstelle (Name)" -#: netbox/ipam/filtersets.py:643 netbox/vpn/filtersets.py:113 +#: ipam/filtersets.py:643 vpn/filtersets.py:113 msgid "VM interface (ID)" msgstr "VM-Schnittstelle (ID)" -#: netbox/ipam/filtersets.py:648 +#: ipam/filtersets.py:648 msgid "FHRP group (ID)" msgstr "FHRP-Gruppe (ID)" -#: netbox/ipam/filtersets.py:652 +#: ipam/filtersets.py:652 msgid "Is assigned to an interface" msgstr "Ist einer Schnittstelle zugewiesen" -#: netbox/ipam/filtersets.py:656 +#: ipam/filtersets.py:656 msgid "Is assigned" msgstr "Ist zugewiesen" -#: netbox/ipam/filtersets.py:668 +#: ipam/filtersets.py:668 msgid "Service (ID)" msgstr "Dienst (ID)" -#: netbox/ipam/filtersets.py:673 +#: ipam/filtersets.py:673 msgid "NAT inside IP address (ID)" msgstr "NAT innerhalb der IP-Adresse (ID)" -#: netbox/ipam/filtersets.py:1041 netbox/ipam/forms/bulk_import.py:322 +#: ipam/filtersets.py:1041 ipam/forms/bulk_import.py:322 msgid "Assigned interface" msgstr "Zugewiesene Schnittstelle" -#: netbox/ipam/filtersets.py:1046 +#: ipam/filtersets.py:1046 msgid "Assigned VM interface" msgstr "Zugewiesene VM-Schnittstelle" -#: netbox/ipam/filtersets.py:1136 +#: ipam/filtersets.py:1136 msgid "IP address (ID)" msgstr "IP-Adresse (ID)" -#: netbox/ipam/filtersets.py:1142 netbox/ipam/models/ip.py:788 +#: ipam/filtersets.py:1142 ipam/models/ip.py:788 msgid "IP address" msgstr "IP-Adresse" -#: netbox/ipam/filtersets.py:1167 +#: ipam/filtersets.py:1167 msgid "Primary IPv4 (ID)" msgstr "Primäre IPv4 (ID)" -#: netbox/ipam/filtersets.py:1172 +#: ipam/filtersets.py:1172 msgid "Primary IPv6 (ID)" msgstr "Primäre IPv6 (ID)" -#: netbox/ipam/formfields.py:14 +#: ipam/formfields.py:14 msgid "Enter a valid IPv4 or IPv6 address (without a mask)." msgstr "Geben Sie eine gültige IPv4- oder IPv6-Adresse (ohne Maske) ein." -#: netbox/ipam/formfields.py:32 +#: ipam/formfields.py:32 #, python-brace-format msgid "Invalid IPv4/IPv6 address format: {address}" msgstr "Ungültiges IPv4/IPv6-Adressformat: {address}" -#: netbox/ipam/formfields.py:37 +#: ipam/formfields.py:37 msgid "This field requires an IP address without a mask." msgstr "Dieses Feld erfordert eine IP-Adresse ohne Maske." -#: netbox/ipam/formfields.py:39 netbox/ipam/formfields.py:61 +#: ipam/formfields.py:39 ipam/formfields.py:61 msgid "Please specify a valid IPv4 or IPv6 address." msgstr "Bitte geben Sie eine gültige IPv4- oder IPv6-Adresse an." -#: netbox/ipam/formfields.py:44 +#: ipam/formfields.py:44 msgid "Enter a valid IPv4 or IPv6 address (with CIDR mask)." msgstr "Geben Sie eine gültige IPv4- oder IPv6-Adresse (mit CIDR-Maske) ein." -#: netbox/ipam/formfields.py:56 +#: ipam/formfields.py:56 msgid "CIDR mask (e.g. /24) is required." msgstr "Eine CIDR-Maske (z. B. /24) ist erforderlich." -#: netbox/ipam/forms/bulk_create.py:13 +#: ipam/forms/bulk_create.py:13 msgid "Address pattern" msgstr "Adressmuster" -#: netbox/ipam/forms/bulk_edit.py:49 +#: ipam/forms/bulk_edit.py:50 msgid "Enforce unique space" msgstr "Erzwingen Sie einzigartigen Speicherplatz" -#: netbox/ipam/forms/bulk_edit.py:87 +#: ipam/forms/bulk_edit.py:88 msgid "Is private" msgstr "Ist privat" -#: netbox/ipam/forms/bulk_edit.py:108 netbox/ipam/forms/bulk_edit.py:137 -#: netbox/ipam/forms/bulk_edit.py:162 netbox/ipam/forms/bulk_import.py:89 -#: netbox/ipam/forms/bulk_import.py:109 netbox/ipam/forms/bulk_import.py:129 -#: netbox/ipam/forms/filtersets.py:110 netbox/ipam/forms/filtersets.py:125 -#: netbox/ipam/forms/filtersets.py:148 netbox/ipam/forms/model_forms.py:96 -#: netbox/ipam/forms/model_forms.py:109 netbox/ipam/forms/model_forms.py:131 -#: netbox/ipam/forms/model_forms.py:149 netbox/ipam/models/asns.py:31 -#: netbox/ipam/models/asns.py:103 netbox/ipam/models/ip.py:71 -#: netbox/ipam/models/ip.py:90 netbox/ipam/tables/asn.py:20 -#: netbox/ipam/tables/asn.py:45 netbox/templates/ipam/aggregate.html:18 -#: netbox/templates/ipam/asn.html:27 netbox/templates/ipam/asnrange.html:19 -#: netbox/templates/ipam/rir.html:19 +#: ipam/forms/bulk_edit.py:109 ipam/forms/bulk_edit.py:138 +#: ipam/forms/bulk_edit.py:163 ipam/forms/bulk_import.py:89 +#: ipam/forms/bulk_import.py:109 ipam/forms/bulk_import.py:129 +#: ipam/forms/filtersets.py:110 ipam/forms/filtersets.py:125 +#: ipam/forms/filtersets.py:148 ipam/forms/model_forms.py:96 +#: ipam/forms/model_forms.py:109 ipam/forms/model_forms.py:131 +#: ipam/forms/model_forms.py:149 ipam/models/asns.py:31 +#: ipam/models/asns.py:103 ipam/models/ip.py:71 ipam/models/ip.py:90 +#: ipam/tables/asn.py:20 ipam/tables/asn.py:45 +#: templates/ipam/aggregate.html:18 templates/ipam/asn.html:27 +#: templates/ipam/asnrange.html:19 templates/ipam/rir.html:19 msgid "RIR" msgstr "RIR" -#: netbox/ipam/forms/bulk_edit.py:170 +#: ipam/forms/bulk_edit.py:171 msgid "Date added" msgstr "hinzugefügt am" -#: netbox/ipam/forms/bulk_edit.py:228 netbox/ipam/forms/model_forms.py:586 -#: netbox/ipam/forms/model_forms.py:633 netbox/ipam/tables/ip.py:251 -#: netbox/templates/ipam/vlan_edit.html:37 -#: netbox/templates/ipam/vlangroup.html:27 +#: ipam/forms/bulk_edit.py:229 ipam/forms/model_forms.py:586 +#: ipam/forms/model_forms.py:633 ipam/tables/ip.py:251 +#: templates/ipam/vlan_edit.html:37 templates/ipam/vlangroup.html:27 msgid "VLAN Group" msgstr "VLAN-Gruppe" -#: netbox/ipam/forms/bulk_edit.py:233 netbox/ipam/forms/bulk_import.py:185 -#: netbox/ipam/forms/filtersets.py:256 netbox/ipam/forms/model_forms.py:218 -#: netbox/ipam/models/vlans.py:234 netbox/ipam/tables/ip.py:255 -#: netbox/templates/ipam/prefix.html:60 netbox/templates/ipam/vlan.html:12 -#: netbox/templates/ipam/vlan/base.html:6 -#: netbox/templates/ipam/vlan_edit.html:10 -#: netbox/templates/wireless/wirelesslan.html:30 -#: netbox/vpn/forms/bulk_import.py:304 netbox/vpn/forms/filtersets.py:284 -#: netbox/vpn/forms/model_forms.py:433 netbox/vpn/forms/model_forms.py:452 -#: netbox/wireless/forms/bulk_edit.py:55 -#: netbox/wireless/forms/bulk_import.py:48 -#: netbox/wireless/forms/model_forms.py:48 netbox/wireless/models.py:102 +#: ipam/forms/bulk_edit.py:234 ipam/forms/bulk_import.py:185 +#: ipam/forms/filtersets.py:256 ipam/forms/model_forms.py:218 +#: ipam/models/vlans.py:234 ipam/tables/ip.py:255 +#: templates/ipam/prefix.html:60 templates/ipam/vlan.html:12 +#: templates/ipam/vlan/base.html:6 templates/ipam/vlan_edit.html:10 +#: templates/wireless/wirelesslan.html:30 vpn/forms/bulk_import.py:304 +#: vpn/forms/filtersets.py:284 vpn/forms/model_forms.py:433 +#: vpn/forms/model_forms.py:452 wireless/forms/bulk_edit.py:55 +#: wireless/forms/bulk_import.py:48 wireless/forms/model_forms.py:48 +#: wireless/models.py:102 msgid "VLAN" msgstr "VLAN" -#: netbox/ipam/forms/bulk_edit.py:244 +#: ipam/forms/bulk_edit.py:245 msgid "Prefix length" msgstr "Länge des Prefixes" -#: netbox/ipam/forms/bulk_edit.py:267 netbox/ipam/forms/filtersets.py:241 -#: netbox/templates/ipam/prefix.html:85 +#: ipam/forms/bulk_edit.py:268 ipam/forms/filtersets.py:241 +#: templates/ipam/prefix.html:85 msgid "Is a pool" msgstr "Ist ein Pool" -#: netbox/ipam/forms/bulk_edit.py:272 netbox/ipam/forms/bulk_edit.py:317 -#: netbox/ipam/forms/filtersets.py:248 netbox/ipam/forms/filtersets.py:293 -#: netbox/ipam/models/ip.py:272 netbox/ipam/models/ip.py:539 +#: ipam/forms/bulk_edit.py:273 ipam/forms/bulk_edit.py:318 +#: ipam/forms/filtersets.py:248 ipam/forms/filtersets.py:293 +#: ipam/models/ip.py:272 ipam/models/ip.py:539 msgid "Treat as fully utilized" msgstr "Als voll ausgelastet behandeln" -#: netbox/ipam/forms/bulk_edit.py:286 netbox/ipam/forms/filtersets.py:171 +#: ipam/forms/bulk_edit.py:287 ipam/forms/filtersets.py:171 msgid "VLAN Assignment" msgstr "VLAN-Zuweisung" -#: netbox/ipam/forms/bulk_edit.py:365 netbox/ipam/models/ip.py:772 +#: ipam/forms/bulk_edit.py:366 ipam/models/ip.py:772 msgid "DNS name" msgstr "DNS-Name" -#: netbox/ipam/forms/bulk_edit.py:386 netbox/ipam/forms/bulk_edit.py:579 -#: netbox/ipam/forms/bulk_import.py:394 netbox/ipam/forms/bulk_import.py:469 -#: netbox/ipam/forms/bulk_import.py:495 netbox/ipam/forms/filtersets.py:390 -#: netbox/ipam/forms/filtersets.py:530 netbox/templates/ipam/fhrpgroup.html:22 -#: netbox/templates/ipam/inc/panels/fhrp_groups.html:24 -#: netbox/templates/ipam/service.html:32 -#: netbox/templates/ipam/servicetemplate.html:19 +#: ipam/forms/bulk_edit.py:387 ipam/forms/bulk_edit.py:534 +#: ipam/forms/bulk_import.py:394 ipam/forms/bulk_import.py:469 +#: ipam/forms/bulk_import.py:495 ipam/forms/filtersets.py:390 +#: ipam/forms/filtersets.py:530 templates/ipam/fhrpgroup.html:22 +#: templates/ipam/inc/panels/fhrp_groups.html:24 +#: templates/ipam/service.html:32 templates/ipam/servicetemplate.html:19 msgid "Protocol" msgstr "Protokoll" -#: netbox/ipam/forms/bulk_edit.py:393 netbox/ipam/forms/filtersets.py:397 -#: netbox/ipam/tables/fhrp.py:22 netbox/templates/ipam/fhrpgroup.html:26 +#: ipam/forms/bulk_edit.py:394 ipam/forms/filtersets.py:397 +#: ipam/tables/fhrp.py:22 templates/ipam/fhrpgroup.html:26 msgid "Group ID" msgstr "Gruppen-ID" -#: netbox/ipam/forms/bulk_edit.py:398 netbox/ipam/forms/filtersets.py:402 -#: netbox/wireless/forms/bulk_edit.py:68 -#: netbox/wireless/forms/bulk_edit.py:115 -#: netbox/wireless/forms/bulk_import.py:62 -#: netbox/wireless/forms/bulk_import.py:65 -#: netbox/wireless/forms/bulk_import.py:104 -#: netbox/wireless/forms/bulk_import.py:107 -#: netbox/wireless/forms/filtersets.py:54 -#: netbox/wireless/forms/filtersets.py:88 +#: ipam/forms/bulk_edit.py:399 ipam/forms/filtersets.py:402 +#: wireless/forms/bulk_edit.py:68 wireless/forms/bulk_edit.py:115 +#: wireless/forms/bulk_import.py:62 wireless/forms/bulk_import.py:65 +#: wireless/forms/bulk_import.py:104 wireless/forms/bulk_import.py:107 +#: wireless/forms/filtersets.py:54 wireless/forms/filtersets.py:88 msgid "Authentication type" msgstr "Typ der Authentifizierung" -#: netbox/ipam/forms/bulk_edit.py:403 netbox/ipam/forms/filtersets.py:406 +#: ipam/forms/bulk_edit.py:404 ipam/forms/filtersets.py:406 msgid "Authentication key" msgstr "Authentifizierungsschlüssel" -#: netbox/ipam/forms/bulk_edit.py:420 netbox/ipam/forms/filtersets.py:383 -#: netbox/ipam/forms/model_forms.py:474 netbox/netbox/navigation/menu.py:386 -#: netbox/templates/ipam/fhrpgroup.html:49 -#: netbox/templates/wireless/inc/authentication_attrs.html:5 -#: netbox/wireless/forms/bulk_edit.py:91 -#: netbox/wireless/forms/bulk_edit.py:149 -#: netbox/wireless/forms/filtersets.py:36 -#: netbox/wireless/forms/filtersets.py:76 -#: netbox/wireless/forms/model_forms.py:55 -#: netbox/wireless/forms/model_forms.py:171 +#: ipam/forms/bulk_edit.py:421 ipam/forms/filtersets.py:383 +#: ipam/forms/model_forms.py:474 netbox/navigation/menu.py:386 +#: templates/ipam/fhrpgroup.html:49 +#: templates/wireless/inc/authentication_attrs.html:5 +#: wireless/forms/bulk_edit.py:91 wireless/forms/bulk_edit.py:149 +#: wireless/forms/filtersets.py:36 wireless/forms/filtersets.py:76 +#: wireless/forms/model_forms.py:55 wireless/forms/model_forms.py:171 msgid "Authentication" msgstr "Authentifizierung" -#: netbox/ipam/forms/bulk_edit.py:432 netbox/ipam/forms/model_forms.py:575 +#: ipam/forms/bulk_edit.py:436 ipam/forms/model_forms.py:575 msgid "Scope type" msgstr "Art des Geltungsbereichs" -#: netbox/ipam/forms/bulk_edit.py:490 netbox/ipam/models/vlans.py:60 -msgid "VLAN ID ranges" -msgstr "VLAN-ID-Bereiche" - -#: netbox/ipam/forms/bulk_edit.py:498 netbox/ipam/forms/model_forms.py:578 -#: netbox/ipam/forms/model_forms.py:588 netbox/ipam/tables/vlans.py:71 -#: netbox/templates/ipam/vlangroup.html:38 +#: ipam/forms/bulk_edit.py:439 ipam/forms/bulk_edit.py:453 +#: ipam/forms/model_forms.py:578 ipam/forms/model_forms.py:588 +#: ipam/tables/vlans.py:71 templates/ipam/vlangroup.html:38 msgid "Scope" msgstr "Geltungsbereich" -#: netbox/ipam/forms/bulk_edit.py:570 +#: ipam/forms/bulk_edit.py:446 ipam/models/vlans.py:60 +msgid "VLAN ID ranges" +msgstr "VLAN-ID-Bereiche" + +#: ipam/forms/bulk_edit.py:525 msgid "Site & Group" msgstr "Standort und Gruppe" -#: netbox/ipam/forms/bulk_edit.py:584 netbox/ipam/forms/model_forms.py:659 -#: netbox/ipam/forms/model_forms.py:691 netbox/ipam/tables/services.py:19 -#: netbox/ipam/tables/services.py:49 netbox/templates/ipam/service.html:36 -#: netbox/templates/ipam/servicetemplate.html:23 +#: ipam/forms/bulk_edit.py:539 ipam/forms/model_forms.py:659 +#: ipam/forms/model_forms.py:691 ipam/tables/services.py:19 +#: ipam/tables/services.py:49 templates/ipam/service.html:36 +#: templates/ipam/servicetemplate.html:23 msgid "Ports" msgstr "Ports" -#: netbox/ipam/forms/bulk_import.py:48 +#: ipam/forms/bulk_import.py:48 msgid "Import route targets" msgstr "Routenziele importieren" -#: netbox/ipam/forms/bulk_import.py:54 +#: ipam/forms/bulk_import.py:54 msgid "Export route targets" msgstr "Routenziele exportieren" -#: netbox/ipam/forms/bulk_import.py:92 netbox/ipam/forms/bulk_import.py:112 -#: netbox/ipam/forms/bulk_import.py:132 +#: ipam/forms/bulk_import.py:92 ipam/forms/bulk_import.py:112 +#: ipam/forms/bulk_import.py:132 msgid "Assigned RIR" msgstr "Zugewiesenes RIR" -#: netbox/ipam/forms/bulk_import.py:182 +#: ipam/forms/bulk_import.py:182 msgid "VLAN's group (if any)" msgstr "VLAN-Gruppe (falls vorhanden)" -#: netbox/ipam/forms/bulk_import.py:308 +#: ipam/forms/bulk_import.py:308 msgid "Parent device of assigned interface (if any)" msgstr "Übergeordnetes Gerät der zugewiesenen Schnittstelle (falls vorhanden)" -#: netbox/ipam/forms/bulk_import.py:311 netbox/ipam/forms/bulk_import.py:488 -#: netbox/ipam/forms/model_forms.py:685 -#: netbox/virtualization/filtersets.py:288 -#: netbox/virtualization/filtersets.py:327 -#: netbox/virtualization/forms/bulk_edit.py:200 -#: netbox/virtualization/forms/bulk_edit.py:326 -#: netbox/virtualization/forms/bulk_import.py:146 -#: netbox/virtualization/forms/bulk_import.py:207 -#: netbox/virtualization/forms/filtersets.py:212 -#: netbox/virtualization/forms/filtersets.py:248 -#: netbox/virtualization/forms/model_forms.py:288 -#: netbox/vpn/forms/bulk_import.py:93 netbox/vpn/forms/bulk_import.py:290 +#: ipam/forms/bulk_import.py:311 ipam/forms/bulk_import.py:488 +#: ipam/forms/model_forms.py:685 virtualization/filtersets.py:288 +#: virtualization/filtersets.py:327 virtualization/forms/bulk_edit.py:200 +#: virtualization/forms/bulk_edit.py:326 +#: virtualization/forms/bulk_import.py:146 +#: virtualization/forms/bulk_import.py:207 +#: virtualization/forms/filtersets.py:212 +#: virtualization/forms/filtersets.py:248 +#: virtualization/forms/model_forms.py:288 vpn/forms/bulk_import.py:93 +#: vpn/forms/bulk_import.py:290 msgid "Virtual machine" msgstr "Virtuelle Maschine" -#: netbox/ipam/forms/bulk_import.py:315 +#: ipam/forms/bulk_import.py:315 msgid "Parent VM of assigned interface (if any)" msgstr "Übergeordnete VM der zugewiesenen Schnittstelle (falls vorhanden)" -#: netbox/ipam/forms/bulk_import.py:325 +#: ipam/forms/bulk_import.py:325 msgid "Is primary" msgstr "Ist primär" -#: netbox/ipam/forms/bulk_import.py:326 +#: ipam/forms/bulk_import.py:326 msgid "Make this the primary IP for the assigned device" msgstr "Machen Sie dies zur primären IP für das zugewiesene Gerät" -#: netbox/ipam/forms/bulk_import.py:365 +#: ipam/forms/bulk_import.py:365 msgid "No device or virtual machine specified; cannot set as primary IP" msgstr "" "Kein Gerät oder virtuelle Maschine angegeben; kann nicht als primäre IP " "festgelegt werden" -#: netbox/ipam/forms/bulk_import.py:369 +#: ipam/forms/bulk_import.py:369 msgid "No interface specified; cannot set as primary IP" msgstr "" "Keine Schnittstelle angegeben; kann nicht als primäre IP festgelegt werden" -#: netbox/ipam/forms/bulk_import.py:398 +#: ipam/forms/bulk_import.py:398 msgid "Auth type" msgstr "Authentifizierungstyp" -#: netbox/ipam/forms/bulk_import.py:413 +#: ipam/forms/bulk_import.py:413 msgid "Scope type (app & model)" msgstr "Art des Umfangs (App und Modell)" -#: netbox/ipam/forms/bulk_import.py:440 +#: ipam/forms/bulk_import.py:440 msgid "Assigned VLAN group" msgstr "Zugewiesene VLAN-Gruppe" -#: netbox/ipam/forms/bulk_import.py:471 netbox/ipam/forms/bulk_import.py:497 +#: ipam/forms/bulk_import.py:471 ipam/forms/bulk_import.py:497 msgid "IP protocol" msgstr "IP-Protokoll" -#: netbox/ipam/forms/bulk_import.py:485 +#: ipam/forms/bulk_import.py:485 msgid "Required if not assigned to a VM" msgstr "Erforderlich, wenn es keiner VM zugewiesen ist" -#: netbox/ipam/forms/bulk_import.py:492 +#: ipam/forms/bulk_import.py:492 msgid "Required if not assigned to a device" msgstr "Erforderlich, wenn es keinem Gerät zugewiesen ist" -#: netbox/ipam/forms/bulk_import.py:517 +#: ipam/forms/bulk_import.py:517 #, python-brace-format msgid "{ip} is not assigned to this device/VM." msgstr "{ip} ist diesem Gerät/dieser VM nicht zugewiesen." -#: netbox/ipam/forms/filtersets.py:47 netbox/ipam/forms/model_forms.py:63 -#: netbox/netbox/navigation/menu.py:189 netbox/vpn/forms/model_forms.py:410 +#: ipam/forms/filtersets.py:47 ipam/forms/model_forms.py:63 +#: netbox/navigation/menu.py:189 vpn/forms/model_forms.py:410 msgid "Route Targets" msgstr "Routenziele" -#: netbox/ipam/forms/filtersets.py:53 netbox/ipam/forms/model_forms.py:50 -#: netbox/vpn/forms/filtersets.py:224 netbox/vpn/forms/model_forms.py:397 +#: ipam/forms/filtersets.py:53 ipam/forms/model_forms.py:50 +#: vpn/forms/filtersets.py:224 vpn/forms/model_forms.py:397 msgid "Import targets" msgstr "Ziele importieren" -#: netbox/ipam/forms/filtersets.py:58 netbox/ipam/forms/model_forms.py:55 -#: netbox/vpn/forms/filtersets.py:229 netbox/vpn/forms/model_forms.py:402 +#: ipam/forms/filtersets.py:58 ipam/forms/model_forms.py:55 +#: vpn/forms/filtersets.py:229 vpn/forms/model_forms.py:402 msgid "Export targets" msgstr "Ziele exportieren" -#: netbox/ipam/forms/filtersets.py:73 +#: ipam/forms/filtersets.py:73 msgid "Imported by VRF" msgstr "Importiert von VRF" -#: netbox/ipam/forms/filtersets.py:78 +#: ipam/forms/filtersets.py:78 msgid "Exported by VRF" msgstr "Exportiert von VRF" -#: netbox/ipam/forms/filtersets.py:87 netbox/ipam/tables/ip.py:89 -#: netbox/templates/ipam/rir.html:30 +#: ipam/forms/filtersets.py:87 ipam/tables/ip.py:89 templates/ipam/rir.html:30 msgid "Private" msgstr "Privat" -#: netbox/ipam/forms/filtersets.py:105 netbox/ipam/forms/filtersets.py:191 -#: netbox/ipam/forms/filtersets.py:272 netbox/ipam/forms/filtersets.py:326 +#: ipam/forms/filtersets.py:105 ipam/forms/filtersets.py:191 +#: ipam/forms/filtersets.py:272 ipam/forms/filtersets.py:326 msgid "Address family" msgstr "Adressfamilie" -#: netbox/ipam/forms/filtersets.py:119 netbox/templates/ipam/asnrange.html:25 +#: ipam/forms/filtersets.py:119 templates/ipam/asnrange.html:25 msgid "Range" msgstr "Bereich" -#: netbox/ipam/forms/filtersets.py:128 +#: ipam/forms/filtersets.py:128 msgid "Start" msgstr "Start" -#: netbox/ipam/forms/filtersets.py:132 +#: ipam/forms/filtersets.py:132 msgid "End" msgstr "Ende" -#: netbox/ipam/forms/filtersets.py:186 +#: ipam/forms/filtersets.py:186 msgid "Search within" msgstr "Suche innerhalb" -#: netbox/ipam/forms/filtersets.py:207 netbox/ipam/forms/filtersets.py:342 +#: ipam/forms/filtersets.py:207 ipam/forms/filtersets.py:342 msgid "Present in VRF" msgstr "In VRF präsent" -#: netbox/ipam/forms/filtersets.py:311 +#: ipam/forms/filtersets.py:311 msgid "Device/VM" msgstr "Gerät/VM" -#: netbox/ipam/forms/filtersets.py:321 +#: ipam/forms/filtersets.py:321 msgid "Parent Prefix" msgstr "Übergeordnetes Prefix" -#: netbox/ipam/forms/filtersets.py:347 +#: ipam/forms/filtersets.py:347 msgid "Assigned Device" msgstr "Zugewiesenes Gerät" -#: netbox/ipam/forms/filtersets.py:352 +#: ipam/forms/filtersets.py:352 msgid "Assigned VM" msgstr "Zugewiesene VM" -#: netbox/ipam/forms/filtersets.py:366 +#: ipam/forms/filtersets.py:366 msgid "Assigned to an interface" msgstr "Einer Schnittstelle zugewiesen" -#: netbox/ipam/forms/filtersets.py:373 netbox/templates/ipam/ipaddress.html:51 +#: ipam/forms/filtersets.py:373 templates/ipam/ipaddress.html:51 msgid "DNS Name" msgstr "DNS-Name" -#: netbox/ipam/forms/filtersets.py:416 netbox/ipam/models/vlans.py:235 -#: netbox/ipam/tables/ip.py:176 netbox/ipam/tables/vlans.py:82 -#: netbox/ipam/views.py:971 netbox/netbox/navigation/menu.py:193 -#: netbox/netbox/navigation/menu.py:195 +#: ipam/forms/filtersets.py:416 ipam/models/vlans.py:235 ipam/tables/ip.py:176 +#: ipam/tables/vlans.py:82 ipam/views.py:971 netbox/navigation/menu.py:193 +#: netbox/navigation/menu.py:195 msgid "VLANs" msgstr "VLANs" -#: netbox/ipam/forms/filtersets.py:457 +#: ipam/forms/filtersets.py:457 msgid "Contains VLAN ID" msgstr "Enthält VLAN-ID" -#: netbox/ipam/forms/filtersets.py:513 netbox/ipam/models/vlans.py:176 -#: netbox/templates/ipam/vlan.html:31 +#: ipam/forms/filtersets.py:513 ipam/models/vlans.py:176 +#: templates/ipam/vlan.html:31 msgid "VLAN ID" msgstr "VLAN-ID" -#: netbox/ipam/forms/filtersets.py:556 netbox/ipam/forms/model_forms.py:320 -#: netbox/ipam/forms/model_forms.py:713 netbox/ipam/forms/model_forms.py:739 -#: netbox/ipam/tables/vlans.py:195 -#: netbox/templates/virtualization/virtualdisk.html:21 -#: netbox/templates/virtualization/virtualmachine.html:12 -#: netbox/templates/virtualization/vminterface.html:21 -#: netbox/templates/vpn/tunneltermination.html:25 -#: netbox/virtualization/forms/filtersets.py:197 -#: netbox/virtualization/forms/filtersets.py:242 -#: netbox/virtualization/forms/model_forms.py:220 -#: netbox/virtualization/tables/virtualmachines.py:135 -#: netbox/virtualization/tables/virtualmachines.py:190 -#: netbox/vpn/choices.py:45 netbox/vpn/forms/filtersets.py:293 -#: netbox/vpn/forms/model_forms.py:160 netbox/vpn/forms/model_forms.py:171 -#: netbox/vpn/forms/model_forms.py:273 netbox/vpn/forms/model_forms.py:454 +#: ipam/forms/filtersets.py:556 ipam/forms/model_forms.py:320 +#: ipam/forms/model_forms.py:713 ipam/forms/model_forms.py:739 +#: ipam/tables/vlans.py:195 templates/virtualization/virtualdisk.html:21 +#: templates/virtualization/virtualmachine.html:12 +#: templates/virtualization/vminterface.html:21 +#: templates/vpn/tunneltermination.html:25 +#: virtualization/forms/filtersets.py:197 +#: virtualization/forms/filtersets.py:242 +#: virtualization/forms/model_forms.py:220 +#: virtualization/tables/virtualmachines.py:135 +#: virtualization/tables/virtualmachines.py:190 vpn/choices.py:45 +#: vpn/forms/filtersets.py:293 vpn/forms/model_forms.py:160 +#: vpn/forms/model_forms.py:171 vpn/forms/model_forms.py:273 +#: vpn/forms/model_forms.py:454 msgid "Virtual Machine" msgstr "Virtuelle Maschine" -#: netbox/ipam/forms/model_forms.py:80 -#: netbox/templates/ipam/routetarget.html:10 +#: ipam/forms/model_forms.py:80 templates/ipam/routetarget.html:10 msgid "Route Target" msgstr "Ziel der Route" -#: netbox/ipam/forms/model_forms.py:114 netbox/ipam/tables/ip.py:117 -#: netbox/templates/ipam/aggregate.html:11 -#: netbox/templates/ipam/prefix.html:38 +#: ipam/forms/model_forms.py:114 ipam/tables/ip.py:117 +#: templates/ipam/aggregate.html:11 templates/ipam/prefix.html:38 msgid "Aggregate" msgstr "Aggregat" -#: netbox/ipam/forms/model_forms.py:135 netbox/templates/ipam/asnrange.html:12 +#: ipam/forms/model_forms.py:135 templates/ipam/asnrange.html:12 msgid "ASN Range" msgstr "ASN-Bereich" -#: netbox/ipam/forms/model_forms.py:231 +#: ipam/forms/model_forms.py:231 msgid "Site/VLAN Assignment" msgstr "Standort-/VLAN-Zuweisung" -#: netbox/ipam/forms/model_forms.py:259 netbox/templates/ipam/iprange.html:10 +#: ipam/forms/model_forms.py:259 templates/ipam/iprange.html:10 msgid "IP Range" msgstr "IP-Bereich" -#: netbox/ipam/forms/model_forms.py:295 netbox/ipam/forms/model_forms.py:321 -#: netbox/ipam/forms/model_forms.py:473 -#: netbox/templates/ipam/fhrpgroup.html:19 +#: ipam/forms/model_forms.py:295 ipam/forms/model_forms.py:321 +#: ipam/forms/model_forms.py:473 templates/ipam/fhrpgroup.html:19 msgid "FHRP Group" msgstr "FHRP-Gruppe" -#: netbox/ipam/forms/model_forms.py:310 +#: ipam/forms/model_forms.py:310 msgid "Make this the primary IP for the device/VM" msgstr "Machen Sie dies zur primären IP für das Gerät/die VM" -#: netbox/ipam/forms/model_forms.py:325 +#: ipam/forms/model_forms.py:325 msgid "NAT IP (Inside)" msgstr "NAT IP (innen)" -#: netbox/ipam/forms/model_forms.py:384 +#: ipam/forms/model_forms.py:384 msgid "An IP address can only be assigned to a single object." msgstr "Eine IP-Adresse kann nur einem einzigen Objekt zugewiesen werden." -#: netbox/ipam/forms/model_forms.py:390 netbox/ipam/models/ip.py:897 +#: ipam/forms/model_forms.py:390 ipam/models/ip.py:897 msgid "" "Cannot reassign IP address while it is designated as the primary IP for the " "parent object" @@ -9940,31 +9345,30 @@ msgstr "" "Die IP-Adresse kann nicht neu zugewiesen werden, solange sie als primäre IP " "für das übergeordnete Objekt festgelegt ist" -#: netbox/ipam/forms/model_forms.py:400 +#: ipam/forms/model_forms.py:400 msgid "" "Only IP addresses assigned to an interface can be designated as primary IPs." msgstr "" "Nur IP-Adressen, die einer Schnittstelle zugewiesen sind, können als primäre" " IPs festgelegt werden." -#: netbox/ipam/forms/model_forms.py:475 +#: ipam/forms/model_forms.py:475 msgid "Virtual IP Address" msgstr "Virtuelle IP-Adresse" -#: netbox/ipam/forms/model_forms.py:560 +#: ipam/forms/model_forms.py:560 msgid "Assignment already exists" msgstr "Zuweisung ist bereits vorhanden" -#: netbox/ipam/forms/model_forms.py:569 -#: netbox/templates/ipam/vlangroup.html:42 +#: ipam/forms/model_forms.py:569 templates/ipam/vlangroup.html:42 msgid "VLAN IDs" msgstr "VLAN-IDs" -#: netbox/ipam/forms/model_forms.py:587 +#: ipam/forms/model_forms.py:587 msgid "Child VLANs" msgstr "Untergeordnete VLANs" -#: netbox/ipam/forms/model_forms.py:664 netbox/ipam/forms/model_forms.py:696 +#: ipam/forms/model_forms.py:664 ipam/forms/model_forms.py:696 msgid "" "Comma-separated list of one or more port numbers. A range may be specified " "using a hyphen." @@ -9972,137 +9376,136 @@ msgstr "" "Kommagetrennte Liste mit einer oder mehreren Portnummern. Ein Bereich kann " "mit einem Bindestrich angegeben werden." -#: netbox/ipam/forms/model_forms.py:669 -#: netbox/templates/ipam/servicetemplate.html:12 +#: ipam/forms/model_forms.py:669 templates/ipam/servicetemplate.html:12 msgid "Service Template" msgstr "Vorlage für den Service" -#: netbox/ipam/forms/model_forms.py:716 +#: ipam/forms/model_forms.py:716 msgid "Port(s)" msgstr "Port(s)" -#: netbox/ipam/forms/model_forms.py:717 netbox/ipam/forms/model_forms.py:745 -#: netbox/templates/ipam/service.html:21 +#: ipam/forms/model_forms.py:717 ipam/forms/model_forms.py:745 +#: templates/ipam/service.html:21 msgid "Service" msgstr "Dienst / Port" -#: netbox/ipam/forms/model_forms.py:730 +#: ipam/forms/model_forms.py:730 msgid "Service template" msgstr "Dienstevorlagen (Ports)" -#: netbox/ipam/forms/model_forms.py:742 +#: ipam/forms/model_forms.py:742 msgid "From Template" msgstr "Aus Vorlage" -#: netbox/ipam/forms/model_forms.py:743 +#: ipam/forms/model_forms.py:743 msgid "Custom" msgstr "Benutzerdefiniert" -#: netbox/ipam/forms/model_forms.py:773 +#: ipam/forms/model_forms.py:773 msgid "" "Must specify name, protocol, and port(s) if not using a service template." msgstr "" "Muss Name, Protokoll und Port(s) angeben, wenn keine Dienstevorlage " "verwendet wird." -#: netbox/ipam/models/asns.py:34 +#: ipam/models/asns.py:34 msgid "start" msgstr "Start" -#: netbox/ipam/models/asns.py:51 +#: ipam/models/asns.py:51 msgid "ASN range" msgstr "ASN-Bereich" -#: netbox/ipam/models/asns.py:52 +#: ipam/models/asns.py:52 msgid "ASN ranges" msgstr "ASN-Bereiche" -#: netbox/ipam/models/asns.py:72 +#: ipam/models/asns.py:72 #, python-brace-format msgid "Starting ASN ({start}) must be lower than ending ASN ({end})." msgstr "" "ASN wird gestartet ({start}) muss niedriger sein als das Ende der ASN " "({end})." -#: netbox/ipam/models/asns.py:104 +#: ipam/models/asns.py:104 msgid "Regional Internet Registry responsible for this AS number space" msgstr "" "Regionale Internetregistrierung, die für diesen AS-Nummernraum zuständig ist" -#: netbox/ipam/models/asns.py:109 +#: ipam/models/asns.py:109 msgid "16- or 32-bit autonomous system number" msgstr "16- oder 32-Bit-Autonome Systemnummer" -#: netbox/ipam/models/fhrp.py:22 +#: ipam/models/fhrp.py:22 msgid "group ID" msgstr "Gruppen-ID" -#: netbox/ipam/models/fhrp.py:30 netbox/ipam/models/services.py:22 +#: ipam/models/fhrp.py:30 ipam/models/services.py:22 msgid "protocol" msgstr "Protokoll" -#: netbox/ipam/models/fhrp.py:38 netbox/wireless/models.py:28 +#: ipam/models/fhrp.py:38 wireless/models.py:28 msgid "authentication type" msgstr "Authentifizierungstyp" -#: netbox/ipam/models/fhrp.py:43 +#: ipam/models/fhrp.py:43 msgid "authentication key" msgstr "Authentifizierungsschlüssel" -#: netbox/ipam/models/fhrp.py:56 +#: ipam/models/fhrp.py:56 msgid "FHRP group" msgstr "FHRP-Gruppe" -#: netbox/ipam/models/fhrp.py:57 +#: ipam/models/fhrp.py:57 msgid "FHRP groups" msgstr "FHRP-Gruppen" -#: netbox/ipam/models/fhrp.py:113 +#: ipam/models/fhrp.py:113 msgid "FHRP group assignment" msgstr "FHRP-Gruppenzuweisung" -#: netbox/ipam/models/fhrp.py:114 +#: ipam/models/fhrp.py:114 msgid "FHRP group assignments" msgstr "FHRP-Gruppenaufgaben" -#: netbox/ipam/models/ip.py:65 +#: ipam/models/ip.py:65 msgid "private" msgstr "Privat" -#: netbox/ipam/models/ip.py:66 +#: ipam/models/ip.py:66 msgid "IP space managed by this RIR is considered private" msgstr "Der von diesem RIR verwaltete IP-Bereich gilt als privat" -#: netbox/ipam/models/ip.py:72 netbox/netbox/navigation/menu.py:182 +#: ipam/models/ip.py:72 netbox/navigation/menu.py:182 msgid "RIRs" msgstr "RIRs" -#: netbox/ipam/models/ip.py:84 +#: ipam/models/ip.py:84 msgid "IPv4 or IPv6 network" msgstr "IPv4- oder IPv6-Netzwerk" -#: netbox/ipam/models/ip.py:91 +#: ipam/models/ip.py:91 msgid "Regional Internet Registry responsible for this IP space" msgstr "" "Regionale Internetregistrierung, die für diesen IP-Bereich zuständig ist" -#: netbox/ipam/models/ip.py:101 +#: ipam/models/ip.py:101 msgid "date added" msgstr "Datum hinzugefügt" -#: netbox/ipam/models/ip.py:115 +#: ipam/models/ip.py:115 msgid "aggregate" msgstr "Aggregat" -#: netbox/ipam/models/ip.py:116 +#: ipam/models/ip.py:116 msgid "aggregates" msgstr "Aggregate" -#: netbox/ipam/models/ip.py:132 +#: ipam/models/ip.py:132 msgid "Cannot create aggregate with /0 mask." msgstr "Ein Aggregat mit der Maske /0 kann nicht erstellt werden." -#: netbox/ipam/models/ip.py:144 +#: ipam/models/ip.py:144 #, python-brace-format msgid "" "Aggregates cannot overlap. {prefix} is already covered by an existing " @@ -10111,7 +9514,7 @@ msgstr "" "Aggregate können sich nicht überschneiden. {prefix} wird bereits von einem " "vorhandenen Aggregat abgedeckt ({aggregate})." -#: netbox/ipam/models/ip.py:158 +#: ipam/models/ip.py:158 #, python-brace-format msgid "" "Prefixes cannot overlap aggregates. {prefix} covers an existing aggregate " @@ -10120,163 +9523,161 @@ msgstr "" "Präfixe können Aggregate nicht überlappen. {prefix} deckt ein vorhandenes " "Aggregat ab ({aggregate})." -#: netbox/ipam/models/ip.py:200 netbox/ipam/models/ip.py:737 -#: netbox/vpn/models/tunnels.py:114 +#: ipam/models/ip.py:200 ipam/models/ip.py:737 vpn/models/tunnels.py:114 msgid "role" msgstr "Rolle" -#: netbox/ipam/models/ip.py:201 +#: ipam/models/ip.py:201 msgid "roles" msgstr "Rollen" -#: netbox/ipam/models/ip.py:217 netbox/ipam/models/ip.py:293 +#: ipam/models/ip.py:217 ipam/models/ip.py:293 msgid "prefix" msgstr "Prefix" -#: netbox/ipam/models/ip.py:218 +#: ipam/models/ip.py:218 msgid "IPv4 or IPv6 network with mask" msgstr "IPv4- oder IPv6-Netzwerk mit Maske" -#: netbox/ipam/models/ip.py:254 +#: ipam/models/ip.py:254 msgid "Operational status of this prefix" msgstr "Betriebsstatus dieses Prefixes" -#: netbox/ipam/models/ip.py:262 +#: ipam/models/ip.py:262 msgid "The primary function of this prefix" msgstr "Die Hauptfunktion dieses Prefixes" -#: netbox/ipam/models/ip.py:265 +#: ipam/models/ip.py:265 msgid "is a pool" msgstr "ist ein Pool" -#: netbox/ipam/models/ip.py:267 +#: ipam/models/ip.py:267 msgid "All IP addresses within this prefix are considered usable" msgstr "" "Alle IP-Adressen innerhalb dieses Prefixes werden als nutzbar betrachtet" -#: netbox/ipam/models/ip.py:270 netbox/ipam/models/ip.py:537 +#: ipam/models/ip.py:270 ipam/models/ip.py:537 msgid "mark utilized" msgstr "als verwendet markieren" -#: netbox/ipam/models/ip.py:294 +#: ipam/models/ip.py:294 msgid "prefixes" msgstr "Prefixe" -#: netbox/ipam/models/ip.py:317 +#: ipam/models/ip.py:317 msgid "Cannot create prefix with /0 mask." msgstr "Prefix mit der Maske /0 kann nicht erstellt werden." -#: netbox/ipam/models/ip.py:324 netbox/ipam/models/ip.py:874 +#: ipam/models/ip.py:324 ipam/models/ip.py:874 #, python-brace-format msgid "VRF {vrf}" msgstr "VRF {vrf}" -#: netbox/ipam/models/ip.py:324 netbox/ipam/models/ip.py:874 +#: ipam/models/ip.py:324 ipam/models/ip.py:874 msgid "global table" msgstr "globale Tabelle" -#: netbox/ipam/models/ip.py:326 +#: ipam/models/ip.py:326 #, python-brace-format msgid "Duplicate prefix found in {table}: {prefix}" msgstr "Doppeltes Prefix gefunden in {table}: {prefix}" -#: netbox/ipam/models/ip.py:495 +#: ipam/models/ip.py:495 msgid "start address" msgstr "Startadresse" -#: netbox/ipam/models/ip.py:496 netbox/ipam/models/ip.py:500 -#: netbox/ipam/models/ip.py:712 +#: ipam/models/ip.py:496 ipam/models/ip.py:500 ipam/models/ip.py:712 msgid "IPv4 or IPv6 address (with mask)" msgstr "IPv4- oder IPv6-Adresse (mit Maske)" -#: netbox/ipam/models/ip.py:499 +#: ipam/models/ip.py:499 msgid "end address" msgstr "Endadresse" -#: netbox/ipam/models/ip.py:526 +#: ipam/models/ip.py:526 msgid "Operational status of this range" msgstr "Betriebsstatus dieses Bereichs" -#: netbox/ipam/models/ip.py:534 +#: ipam/models/ip.py:534 msgid "The primary function of this range" msgstr "Die Hauptfunktion dieses Bereichs" -#: netbox/ipam/models/ip.py:548 +#: ipam/models/ip.py:548 msgid "IP range" msgstr "IP-Bereich" -#: netbox/ipam/models/ip.py:549 +#: ipam/models/ip.py:549 msgid "IP ranges" msgstr "IP-Bereiche" -#: netbox/ipam/models/ip.py:565 +#: ipam/models/ip.py:565 msgid "Starting and ending IP address versions must match" msgstr "Die Versionen der Anfangs- und Endadresse müssen übereinstimmen" -#: netbox/ipam/models/ip.py:571 +#: ipam/models/ip.py:571 msgid "Starting and ending IP address masks must match" msgstr "Die Masken für Start- und Endadressen müssen übereinstimmen" -#: netbox/ipam/models/ip.py:578 +#: ipam/models/ip.py:578 #, python-brace-format msgid "" "Ending address must be greater than the starting address ({start_address})" msgstr "" "Die Endadresse muss größer als die Startadresse sein ({start_address})" -#: netbox/ipam/models/ip.py:590 +#: ipam/models/ip.py:590 #, python-brace-format msgid "Defined addresses overlap with range {overlapping_range} in VRF {vrf}" msgstr "" "Definierte Adressen überschneiden sich mit dem Bereich {overlapping_range} " "im VRF {vrf}" -#: netbox/ipam/models/ip.py:599 +#: ipam/models/ip.py:599 #, python-brace-format msgid "Defined range exceeds maximum supported size ({max_size})" msgstr "" "Der definierte Bereich überschreitet die maximal unterstützte Größe " "({max_size})" -#: netbox/ipam/models/ip.py:711 netbox/tenancy/models/contacts.py:82 +#: ipam/models/ip.py:711 tenancy/models/contacts.py:82 msgid "address" msgstr "Adresse" -#: netbox/ipam/models/ip.py:734 +#: ipam/models/ip.py:734 msgid "The operational status of this IP" msgstr "Der Betriebsstatus dieser IP" -#: netbox/ipam/models/ip.py:741 +#: ipam/models/ip.py:741 msgid "The functional role of this IP" msgstr "Die funktionale Rolle dieser IP" -#: netbox/ipam/models/ip.py:765 netbox/templates/ipam/ipaddress.html:72 +#: ipam/models/ip.py:765 templates/ipam/ipaddress.html:72 msgid "NAT (inside)" msgstr "NAT (innen)" -#: netbox/ipam/models/ip.py:766 +#: ipam/models/ip.py:766 msgid "The IP for which this address is the \"outside\" IP" msgstr "Die IP, für die diese Adresse die „externe“ IP ist" -#: netbox/ipam/models/ip.py:773 +#: ipam/models/ip.py:773 msgid "Hostname or FQDN (not case-sensitive)" msgstr "Hostname oder FQDN (Groß- und Kleinschreibung nicht beachten)" -#: netbox/ipam/models/ip.py:789 netbox/ipam/models/services.py:94 +#: ipam/models/ip.py:789 ipam/models/services.py:94 msgid "IP addresses" msgstr "IP-Adressen" -#: netbox/ipam/models/ip.py:845 +#: ipam/models/ip.py:845 msgid "Cannot create IP address with /0 mask." msgstr "Die IP-Adresse mit der Maske /0 kann nicht erstellt werden." -#: netbox/ipam/models/ip.py:851 +#: ipam/models/ip.py:851 #, python-brace-format msgid "{ip} is a network ID, which may not be assigned to an interface." msgstr "" "{ip} ist eine Netzwerk-ID, die keiner Schnittstelle zugewiesen werden darf." -#: netbox/ipam/models/ip.py:862 +#: ipam/models/ip.py:862 #, python-brace-format msgid "" "{ip} is a broadcast address, which may not be assigned to an interface." @@ -10284,72 +9685,72 @@ msgstr "" "{ip} ist eine Broadcast-Adresse, die keiner Schnittstelle zugewiesen werden " "darf." -#: netbox/ipam/models/ip.py:876 +#: ipam/models/ip.py:876 #, python-brace-format msgid "Duplicate IP address found in {table}: {ipaddress}" msgstr "Doppelte IP-Adresse gefunden in {table}: {ipaddress}" -#: netbox/ipam/models/ip.py:903 +#: ipam/models/ip.py:903 msgid "Only IPv6 addresses can be assigned SLAAC status" msgstr "Nur IPv6-Adressen kann der SLAAC-Status zugewiesen werden" -#: netbox/ipam/models/services.py:33 +#: ipam/models/services.py:33 msgid "port numbers" msgstr "Portnummern" -#: netbox/ipam/models/services.py:59 +#: ipam/models/services.py:59 msgid "service template" msgstr "Servicevorlage" -#: netbox/ipam/models/services.py:60 +#: ipam/models/services.py:60 msgid "service templates" msgstr "Servicevorlagen" -#: netbox/ipam/models/services.py:95 +#: ipam/models/services.py:95 msgid "The specific IP addresses (if any) to which this service is bound" msgstr "" "Die spezifischen IP-Adressen (falls vorhanden), an die dieser Dienst " "gebunden ist" -#: netbox/ipam/models/services.py:102 +#: ipam/models/services.py:102 msgid "service" msgstr "Dienst / Port" -#: netbox/ipam/models/services.py:103 +#: ipam/models/services.py:103 msgid "services" msgstr "Dienste (Ports)" -#: netbox/ipam/models/services.py:117 +#: ipam/models/services.py:117 msgid "" "A service cannot be associated with both a device and a virtual machine." msgstr "" "Ein Dienst kann nicht gleichzeitig einem Gerät und einer virtuellen Maschine" " zugeordnet werden." -#: netbox/ipam/models/services.py:119 +#: ipam/models/services.py:119 msgid "" "A service must be associated with either a device or a virtual machine." msgstr "" "Ein Dienst muss entweder einem Gerät oder einer virtuellen Maschine " "zugeordnet sein." -#: netbox/ipam/models/vlans.py:85 +#: ipam/models/vlans.py:85 msgid "VLAN groups" msgstr "VLAN-Gruppen" -#: netbox/ipam/models/vlans.py:95 +#: ipam/models/vlans.py:95 msgid "Cannot set scope_type without scope_id." msgstr "scope_type kann nicht ohne scope_id gesetzt werden." -#: netbox/ipam/models/vlans.py:97 +#: ipam/models/vlans.py:97 msgid "Cannot set scope_id without scope_type." msgstr "scope_id kann nicht ohne scope_type gesetzt werden." -#: netbox/ipam/models/vlans.py:101 +#: ipam/models/vlans.py:101 msgid "Ranges cannot overlap." msgstr "Bereiche dürfen sich nicht überschneiden." -#: netbox/ipam/models/vlans.py:106 +#: ipam/models/vlans.py:106 #, python-brace-format msgid "" "Maximum child VID must be greater than or equal to minimum child VID " @@ -10358,28 +9759,28 @@ msgstr "" "Die maximale untergeordnete VID muss größer oder gleich der Mindest-VID für " "untergeordnete VIDs sein ({value})" -#: netbox/ipam/models/vlans.py:165 +#: ipam/models/vlans.py:165 msgid "The specific site to which this VLAN is assigned (if any)" msgstr "" "Der spezifische Standort, der dieses VLAN zugewiesen ist (falls vorhanden)" -#: netbox/ipam/models/vlans.py:173 +#: ipam/models/vlans.py:173 msgid "VLAN group (optional)" msgstr "VLAN-Gruppe (optional)" -#: netbox/ipam/models/vlans.py:181 +#: ipam/models/vlans.py:181 msgid "Numeric VLAN ID (1-4094)" msgstr "Numerische VLAN-ID (1-4094)" -#: netbox/ipam/models/vlans.py:199 +#: ipam/models/vlans.py:199 msgid "Operational status of this VLAN" msgstr "Betriebsstatus dieses VLAN" -#: netbox/ipam/models/vlans.py:207 +#: ipam/models/vlans.py:207 msgid "The primary function of this VLAN" msgstr "Die Hauptfunktion dieses VLAN" -#: netbox/ipam/models/vlans.py:250 +#: ipam/models/vlans.py:250 #, python-brace-format msgid "" "VLAN is assigned to group {group} (scope: {scope}); cannot also assign to " @@ -10388,167 +9789,165 @@ msgstr "" "VLAN ist der Gruppe {group} (Scope: {scope}) zugewiesen; kann nicht auch dem" " Standort {site} zugewiesen werden." -#: netbox/ipam/models/vlans.py:259 +#: ipam/models/vlans.py:259 #, python-brace-format msgid "VID must be in ranges {ranges} for VLANs in group {group}" msgstr "" "VID muss in Bereichen liegen {ranges} für VLANs in einer Gruppe {group}" -#: netbox/ipam/models/vrfs.py:30 +#: ipam/models/vrfs.py:30 msgid "route distinguisher" msgstr "Routenunterscheidungsmerkmal" -#: netbox/ipam/models/vrfs.py:31 +#: ipam/models/vrfs.py:31 msgid "Unique route distinguisher (as defined in RFC 4364)" msgstr "Eindeutiger Routenbezeichner (wie in RFC 4364 definiert)" -#: netbox/ipam/models/vrfs.py:42 +#: ipam/models/vrfs.py:42 msgid "enforce unique space" msgstr "einzigartigen Raum erzwingen" -#: netbox/ipam/models/vrfs.py:43 +#: ipam/models/vrfs.py:43 msgid "Prevent duplicate prefixes/IP addresses within this VRF" msgstr "Vermeiden Sie doppelte Präfixe/IP-Adressen in diesem VRF" -#: netbox/ipam/models/vrfs.py:63 netbox/netbox/navigation/menu.py:186 -#: netbox/netbox/navigation/menu.py:188 +#: ipam/models/vrfs.py:63 netbox/navigation/menu.py:186 +#: netbox/navigation/menu.py:188 msgid "VRFs" msgstr "VRFs" -#: netbox/ipam/models/vrfs.py:82 +#: ipam/models/vrfs.py:82 msgid "Route target value (formatted in accordance with RFC 4360)" msgstr "Routenzielwert (formatiert gemäß RFC 4360)" -#: netbox/ipam/models/vrfs.py:94 +#: ipam/models/vrfs.py:94 msgid "route target" msgstr "Ziel der Route" -#: netbox/ipam/models/vrfs.py:95 +#: ipam/models/vrfs.py:95 msgid "route targets" msgstr "Routenziele" -#: netbox/ipam/tables/asn.py:52 +#: ipam/tables/asn.py:52 msgid "ASDOT" msgstr "ALS PUNKT" -#: netbox/ipam/tables/asn.py:57 +#: ipam/tables/asn.py:57 msgid "Site Count" msgstr "Anzahl der Standorte" -#: netbox/ipam/tables/asn.py:62 +#: ipam/tables/asn.py:62 msgid "Provider Count" msgstr "Anzahl der Provider" -#: netbox/ipam/tables/ip.py:95 netbox/netbox/navigation/menu.py:179 -#: netbox/netbox/navigation/menu.py:181 +#: ipam/tables/ip.py:95 netbox/navigation/menu.py:179 +#: netbox/navigation/menu.py:181 msgid "Aggregates" msgstr "Aggregate" -#: netbox/ipam/tables/ip.py:125 +#: ipam/tables/ip.py:125 msgid "Added" msgstr "Hinzugefügt" -#: netbox/ipam/tables/ip.py:128 netbox/ipam/tables/ip.py:166 -#: netbox/ipam/tables/vlans.py:142 netbox/ipam/views.py:346 -#: netbox/netbox/navigation/menu.py:165 netbox/netbox/navigation/menu.py:167 -#: netbox/templates/ipam/vlan.html:84 +#: ipam/tables/ip.py:128 ipam/tables/ip.py:166 ipam/tables/vlans.py:142 +#: ipam/views.py:346 netbox/navigation/menu.py:165 +#: netbox/navigation/menu.py:167 templates/ipam/vlan.html:84 msgid "Prefixes" msgstr "Prefixe" -#: netbox/ipam/tables/ip.py:131 netbox/ipam/tables/ip.py:270 -#: netbox/ipam/tables/ip.py:324 netbox/ipam/tables/vlans.py:86 -#: netbox/templates/dcim/device.html:260 -#: netbox/templates/ipam/aggregate.html:24 -#: netbox/templates/ipam/iprange.html:29 netbox/templates/ipam/prefix.html:106 +#: ipam/tables/ip.py:131 ipam/tables/ip.py:270 ipam/tables/ip.py:324 +#: ipam/tables/vlans.py:86 templates/dcim/device.html:260 +#: templates/ipam/aggregate.html:24 templates/ipam/iprange.html:29 +#: templates/ipam/prefix.html:106 msgid "Utilization" msgstr "Auslastung" -#: netbox/ipam/tables/ip.py:171 netbox/netbox/navigation/menu.py:161 +#: ipam/tables/ip.py:171 netbox/navigation/menu.py:161 msgid "IP Ranges" msgstr "IP-Bereiche" -#: netbox/ipam/tables/ip.py:221 +#: ipam/tables/ip.py:221 msgid "Prefix (Flat)" msgstr "Prefix (flach)" -#: netbox/ipam/tables/ip.py:225 +#: ipam/tables/ip.py:225 msgid "Depth" msgstr "Tiefe" -#: netbox/ipam/tables/ip.py:262 +#: ipam/tables/ip.py:262 msgid "Pool" msgstr "Pool" -#: netbox/ipam/tables/ip.py:266 netbox/ipam/tables/ip.py:320 +#: ipam/tables/ip.py:266 ipam/tables/ip.py:320 msgid "Marked Utilized" msgstr "Als ausgenutzt markiert" -#: netbox/ipam/tables/ip.py:304 +#: ipam/tables/ip.py:304 msgid "Start address" msgstr "Startadresse" -#: netbox/ipam/tables/ip.py:383 +#: ipam/tables/ip.py:383 msgid "NAT (Inside)" msgstr "NAT (Innen)" -#: netbox/ipam/tables/ip.py:388 +#: ipam/tables/ip.py:388 msgid "NAT (Outside)" msgstr "NAT (Außen)" -#: netbox/ipam/tables/ip.py:393 +#: ipam/tables/ip.py:393 msgid "Assigned" msgstr "Zugewiesen" -#: netbox/ipam/tables/ip.py:429 netbox/templates/vpn/l2vpntermination.html:16 -#: netbox/vpn/forms/filtersets.py:240 +#: ipam/tables/ip.py:429 templates/vpn/l2vpntermination.html:16 +#: vpn/forms/filtersets.py:240 msgid "Assigned Object" msgstr "Zugewiesenes Objekt" -#: netbox/ipam/tables/vlans.py:68 +#: ipam/tables/vlans.py:68 msgid "Scope Type" msgstr "Art des Geltungsbereichs" -#: netbox/ipam/tables/vlans.py:76 +#: ipam/tables/vlans.py:76 msgid "VID Ranges" msgstr "VID-Bereiche" -#: netbox/ipam/tables/vlans.py:111 netbox/ipam/tables/vlans.py:214 -#: netbox/templates/dcim/inc/interface_vlans_table.html:4 +#: ipam/tables/vlans.py:111 ipam/tables/vlans.py:214 +#: templates/dcim/inc/interface_vlans_table.html:4 msgid "VID" msgstr "VID" -#: netbox/ipam/tables/vrfs.py:30 +#: ipam/tables/vrfs.py:30 msgid "RD" msgstr "RD" -#: netbox/ipam/tables/vrfs.py:33 +#: ipam/tables/vrfs.py:33 msgid "Unique" msgstr "Einzigartig" -#: netbox/ipam/tables/vrfs.py:37 netbox/vpn/tables/l2vpn.py:27 +#: ipam/tables/vrfs.py:37 vpn/tables/l2vpn.py:27 msgid "Import Targets" msgstr "Ziele importieren" -#: netbox/ipam/tables/vrfs.py:42 netbox/vpn/tables/l2vpn.py:32 +#: ipam/tables/vrfs.py:42 vpn/tables/l2vpn.py:32 msgid "Export Targets" msgstr "Ziele exportieren" -#: netbox/ipam/validators.py:9 +#: ipam/validators.py:9 #, python-brace-format msgid "{prefix} is not a valid prefix. Did you mean {suggested}?" msgstr "{prefix} ist kein gültiges Präfix. Meinten Sie {suggested}?" -#: netbox/ipam/validators.py:16 +#: ipam/validators.py:16 #, python-format msgid "The prefix length must be less than or equal to %(limit_value)s." msgstr "Die Präfixlänge muss kleiner oder gleich sein %(limit_value)s." -#: netbox/ipam/validators.py:24 +#: ipam/validators.py:24 #, python-format msgid "The prefix length must be greater than or equal to %(limit_value)s." msgstr "Die Präfixlänge muss größer oder gleich sein %(limit_value)s." -#: netbox/ipam/validators.py:33 +#: ipam/validators.py:33 msgid "" "Only alphanumeric characters, asterisks, hyphens, periods, and underscores " "are allowed in DNS names" @@ -10556,31 +9955,31 @@ msgstr "" "In DNS-Namen sind nur alphanumerische Zeichen, Sternchen, Bindestriche, " "Punkte und Unterstriche zulässig" -#: netbox/ipam/views.py:533 +#: ipam/views.py:533 msgid "Child Prefixes" msgstr "untergeordnete Prefixe" -#: netbox/ipam/views.py:569 +#: ipam/views.py:569 msgid "Child Ranges" msgstr "untergeordnete Bereiche" -#: netbox/ipam/views.py:898 +#: ipam/views.py:898 msgid "Related IPs" msgstr "Verwandte IPs" -#: netbox/ipam/views.py:1127 +#: ipam/views.py:1127 msgid "Device Interfaces" msgstr "Geräteschnittstellen" -#: netbox/ipam/views.py:1145 +#: ipam/views.py:1145 msgid "VM Interfaces" msgstr "VM-Schnittstellen" -#: netbox/netbox/api/fields.py:65 +#: netbox/api/fields.py:65 msgid "This field may not be blank." msgstr "Dieses Feld darf nicht leer sein." -#: netbox/netbox/api/fields.py:70 +#: netbox/api/fields.py:70 msgid "" "Value must be passed directly (e.g. \"foo\": 123); do not use a dictionary " "or list." @@ -10588,343 +9987,330 @@ msgstr "" "Der Wert muss direkt übergeben werden (z. B. „foo“: 123); verwende kein " "Wörterbuch oder keine Liste." -#: netbox/netbox/api/fields.py:91 +#: netbox/api/fields.py:91 #, python-brace-format msgid "{value} is not a valid choice." msgstr "{value} ist keine gültige Auswahl." -#: netbox/netbox/api/fields.py:104 +#: netbox/api/fields.py:104 #, python-brace-format msgid "Invalid content type: {content_type}" msgstr "Ungültiger Inhaltstyp: {content_type}" -#: netbox/netbox/api/fields.py:105 +#: netbox/api/fields.py:105 msgid "Invalid value. Specify a content type as '.'." msgstr "" "Ungültiger Wert. Geben Sie einen Inhaltstyp an'.'." -#: netbox/netbox/api/fields.py:167 +#: netbox/api/fields.py:167 msgid "Ranges must be specified in the form (lower, upper)." msgstr "Bereiche müssen in der Form (unten, oben) angegeben werden." -#: netbox/netbox/api/fields.py:169 +#: netbox/api/fields.py:169 msgid "Range boundaries must be defined as integers." msgstr "Bereichsgrenzen müssen als ganze Zahlen (Integer) definiert werden." -#: netbox/netbox/api/serializers/fields.py:40 +#: netbox/api/serializers/fields.py:40 #, python-brace-format msgid "{class_name} must implement get_view_name()" msgstr "{class_name} muss get_view_name () implementieren" -#: netbox/netbox/authentication/__init__.py:138 +#: netbox/authentication/__init__.py:138 #, python-brace-format msgid "Invalid permission {permission} for model {model}" msgstr "Ungültige Erlaubnis {permission} für Modell {model}" -#: netbox/netbox/choices.py:49 +#: netbox/choices.py:49 msgid "Dark Red" msgstr "Dunkelrot" -#: netbox/netbox/choices.py:52 +#: netbox/choices.py:52 msgid "Rose" msgstr "Rose" -#: netbox/netbox/choices.py:53 +#: netbox/choices.py:53 msgid "Fuchsia" msgstr "Fuchsia" -#: netbox/netbox/choices.py:55 +#: netbox/choices.py:55 msgid "Dark Purple" msgstr "Dunkles Violett" -#: netbox/netbox/choices.py:58 +#: netbox/choices.py:58 msgid "Light Blue" msgstr "Hellblau" -#: netbox/netbox/choices.py:61 +#: netbox/choices.py:61 msgid "Aqua" msgstr "Aquamarin" -#: netbox/netbox/choices.py:62 +#: netbox/choices.py:62 msgid "Dark Green" msgstr "Dunkelgrün" -#: netbox/netbox/choices.py:64 +#: netbox/choices.py:64 msgid "Light Green" msgstr "Hellgrün" -#: netbox/netbox/choices.py:65 +#: netbox/choices.py:65 msgid "Lime" msgstr "Limette" -#: netbox/netbox/choices.py:67 +#: netbox/choices.py:67 msgid "Amber" msgstr "Bernstein" -#: netbox/netbox/choices.py:69 +#: netbox/choices.py:69 msgid "Dark Orange" msgstr "Dunkles Orange" -#: netbox/netbox/choices.py:70 +#: netbox/choices.py:70 msgid "Brown" msgstr "Braun" -#: netbox/netbox/choices.py:71 +#: netbox/choices.py:71 msgid "Light Grey" msgstr "Hellgrau" -#: netbox/netbox/choices.py:72 +#: netbox/choices.py:72 msgid "Grey" msgstr "Grau" -#: netbox/netbox/choices.py:73 +#: netbox/choices.py:73 msgid "Dark Grey" msgstr "Dunkelgrau" -#: netbox/netbox/choices.py:128 +#: netbox/choices.py:128 msgid "Direct" msgstr "Direkt" -#: netbox/netbox/choices.py:129 +#: netbox/choices.py:129 msgid "Upload" msgstr "Hochladen" -#: netbox/netbox/choices.py:141 netbox/netbox/choices.py:155 +#: netbox/choices.py:141 netbox/choices.py:155 msgid "Auto-detect" msgstr "Auto-Erkennung" -#: netbox/netbox/choices.py:156 +#: netbox/choices.py:156 msgid "Comma" msgstr "Komma" -#: netbox/netbox/choices.py:157 +#: netbox/choices.py:157 msgid "Semicolon" msgstr "Semikolon" -#: netbox/netbox/choices.py:158 +#: netbox/choices.py:158 msgid "Tab" msgstr "Tab" -#: netbox/netbox/config/__init__.py:67 +#: netbox/config/__init__.py:67 #, python-brace-format msgid "Invalid configuration parameter: {item}" msgstr "Ungültiger Konfigurationsparameter: {item}" -#: netbox/netbox/config/parameters.py:22 -#: netbox/templates/core/inc/config_data.html:62 +#: netbox/config/parameters.py:22 templates/core/inc/config_data.html:62 msgid "Login banner" msgstr "Login-Banner" -#: netbox/netbox/config/parameters.py:24 +#: netbox/config/parameters.py:24 msgid "Additional content to display on the login page" msgstr "Zusätzliche Inhalte zur Anzeige auf der Anmeldeseite" -#: netbox/netbox/config/parameters.py:33 -#: netbox/templates/core/inc/config_data.html:66 +#: netbox/config/parameters.py:33 templates/core/inc/config_data.html:66 msgid "Maintenance banner" msgstr "Banner zur Wartung" -#: netbox/netbox/config/parameters.py:35 +#: netbox/config/parameters.py:35 msgid "Additional content to display when in maintenance mode" msgstr "Zusätzliche Inhalte, die im Wartungsmodus angezeigt werden" -#: netbox/netbox/config/parameters.py:44 -#: netbox/templates/core/inc/config_data.html:70 +#: netbox/config/parameters.py:44 templates/core/inc/config_data.html:70 msgid "Top banner" msgstr "Oberes Banner" -#: netbox/netbox/config/parameters.py:46 +#: netbox/config/parameters.py:46 msgid "Additional content to display at the top of every page" msgstr "Zusätzliche Inhalte, die oben auf jeder Seite angezeigt werden" -#: netbox/netbox/config/parameters.py:55 -#: netbox/templates/core/inc/config_data.html:74 +#: netbox/config/parameters.py:55 templates/core/inc/config_data.html:74 msgid "Bottom banner" msgstr "Unteres Banner" -#: netbox/netbox/config/parameters.py:57 +#: netbox/config/parameters.py:57 msgid "Additional content to display at the bottom of every page" msgstr "Zusätzliche Inhalte, die am Ende jeder Seite angezeigt werden" -#: netbox/netbox/config/parameters.py:68 +#: netbox/config/parameters.py:68 msgid "Globally unique IP space" msgstr "Weltweit einzigartiger IP-Raum" -#: netbox/netbox/config/parameters.py:70 +#: netbox/config/parameters.py:70 msgid "Enforce unique IP addressing within the global table" msgstr "" "Erzwingen Sie eine eindeutige IP-Adressierung innerhalb der globalen Tabelle" -#: netbox/netbox/config/parameters.py:75 -#: netbox/templates/core/inc/config_data.html:44 +#: netbox/config/parameters.py:75 templates/core/inc/config_data.html:44 msgid "Prefer IPv4" msgstr "IPv4 bevorzugen" -#: netbox/netbox/config/parameters.py:77 +#: netbox/config/parameters.py:77 msgid "Prefer IPv4 addresses over IPv6" msgstr "Bevorzugen Sie IPv4-Adressen gegenüber IPv6" -#: netbox/netbox/config/parameters.py:84 +#: netbox/config/parameters.py:84 msgid "Rack unit height" msgstr "Höhe der Rackeinheit in HE" -#: netbox/netbox/config/parameters.py:86 +#: netbox/config/parameters.py:86 msgid "Default unit height for rendered rack elevations" msgstr "Standardhöhe für gerenderte Rackhöhen" -#: netbox/netbox/config/parameters.py:91 +#: netbox/config/parameters.py:91 msgid "Rack unit width" msgstr "Breite der Rackeinheit" -#: netbox/netbox/config/parameters.py:93 +#: netbox/config/parameters.py:93 msgid "Default unit width for rendered rack elevations" msgstr "Standardbreite für gerenderte Rackhöhen" -#: netbox/netbox/config/parameters.py:100 +#: netbox/config/parameters.py:100 msgid "Powerfeed voltage" msgstr "Spannung der Stromzufuhr" -#: netbox/netbox/config/parameters.py:102 +#: netbox/config/parameters.py:102 msgid "Default voltage for powerfeeds" msgstr "Standardspannung der Stromzufuhr" -#: netbox/netbox/config/parameters.py:107 +#: netbox/config/parameters.py:107 msgid "Powerfeed amperage" msgstr "Stromstärke der Stromzufuhr" -#: netbox/netbox/config/parameters.py:109 +#: netbox/config/parameters.py:109 msgid "Default amperage for powerfeeds" msgstr "Standardstromstärke für Stromzufuhren" -#: netbox/netbox/config/parameters.py:114 +#: netbox/config/parameters.py:114 msgid "Powerfeed max utilization" msgstr "Maximale Auslastung der Stromzufuhr" -#: netbox/netbox/config/parameters.py:116 +#: netbox/config/parameters.py:116 msgid "Default max utilization for powerfeeds" msgstr "Standardwert für die maximale Auslastung der Stromzufuhr" -#: netbox/netbox/config/parameters.py:123 -#: netbox/templates/core/inc/config_data.html:53 +#: netbox/config/parameters.py:123 templates/core/inc/config_data.html:53 msgid "Allowed URL schemes" msgstr "Zulässige URL-Schemata" -#: netbox/netbox/config/parameters.py:128 +#: netbox/config/parameters.py:128 msgid "Permitted schemes for URLs in user-provided content" msgstr "Zulässige Schemata für URLs in vom Benutzer bereitgestellten Inhalten" -#: netbox/netbox/config/parameters.py:136 +#: netbox/config/parameters.py:136 msgid "Default page size" msgstr "Standard-Seitengröße" -#: netbox/netbox/config/parameters.py:142 +#: netbox/config/parameters.py:142 msgid "Maximum page size" msgstr "Maximale Seitengröße" -#: netbox/netbox/config/parameters.py:150 -#: netbox/templates/core/inc/config_data.html:96 +#: netbox/config/parameters.py:150 templates/core/inc/config_data.html:96 msgid "Custom validators" msgstr "Benutzerdefinierte Validatoren" -#: netbox/netbox/config/parameters.py:152 +#: netbox/config/parameters.py:152 msgid "Custom validation rules (JSON)" msgstr "Benutzerdefinierte Validierungsregeln (JSON)" -#: netbox/netbox/config/parameters.py:160 -#: netbox/templates/core/inc/config_data.html:104 +#: netbox/config/parameters.py:160 templates/core/inc/config_data.html:104 msgid "Protection rules" msgstr "Schutzregeln" -#: netbox/netbox/config/parameters.py:162 +#: netbox/config/parameters.py:162 msgid "Deletion protection rules (JSON)" msgstr "Löschschutzregeln (JSON)" -#: netbox/netbox/config/parameters.py:172 -#: netbox/templates/core/inc/config_data.html:117 +#: netbox/config/parameters.py:172 templates/core/inc/config_data.html:117 msgid "Default preferences" msgstr "Standardeinstellungen" -#: netbox/netbox/config/parameters.py:174 +#: netbox/config/parameters.py:174 msgid "Default preferences for new users" msgstr "Standardeinstellungen für neue Benutzer" -#: netbox/netbox/config/parameters.py:181 -#: netbox/templates/core/inc/config_data.html:129 +#: netbox/config/parameters.py:181 templates/core/inc/config_data.html:129 msgid "Maintenance mode" msgstr "Wartungsmodus" -#: netbox/netbox/config/parameters.py:183 +#: netbox/config/parameters.py:183 msgid "Enable maintenance mode" msgstr "Wartungsmodus aktivieren" -#: netbox/netbox/config/parameters.py:188 -#: netbox/templates/core/inc/config_data.html:133 +#: netbox/config/parameters.py:188 templates/core/inc/config_data.html:133 msgid "GraphQL enabled" msgstr "GraphQL aktiviert" -#: netbox/netbox/config/parameters.py:190 +#: netbox/config/parameters.py:190 msgid "Enable the GraphQL API" msgstr "Aktiviere die GraphQL API" -#: netbox/netbox/config/parameters.py:195 -#: netbox/templates/core/inc/config_data.html:137 +#: netbox/config/parameters.py:195 templates/core/inc/config_data.html:137 msgid "Changelog retention" msgstr "Aufbewahrung des Changelogs" -#: netbox/netbox/config/parameters.py:197 +#: netbox/config/parameters.py:197 msgid "Days to retain changelog history (set to zero for unlimited)" msgstr "" "Tage zur Aufbewahrung des Changelog-Verlaufs (für unbegrenzt auf Null zu " "setzen)" -#: netbox/netbox/config/parameters.py:202 +#: netbox/config/parameters.py:202 msgid "Job result retention" msgstr "Beibehaltung der Arbeitsergebnisse" -#: netbox/netbox/config/parameters.py:204 +#: netbox/config/parameters.py:204 msgid "Days to retain job result history (set to zero for unlimited)" msgstr "" "Tage zur Aufbewahrung des Auftragsergebnisverlaufs (für unbegrenzt auf Null " "gesetzt)" -#: netbox/netbox/config/parameters.py:209 -#: netbox/templates/core/inc/config_data.html:145 +#: netbox/config/parameters.py:209 templates/core/inc/config_data.html:145 msgid "Maps URL" msgstr "Landkarten-URL" -#: netbox/netbox/config/parameters.py:211 +#: netbox/config/parameters.py:211 msgid "Base URL for mapping geographic locations" msgstr "Basis-URL für die Kartierung geografischer Standorte" -#: netbox/netbox/forms/__init__.py:12 +#: netbox/forms/__init__.py:12 msgid "Partial match" msgstr "Teilweise Übereinstimmung" -#: netbox/netbox/forms/__init__.py:13 +#: netbox/forms/__init__.py:13 msgid "Exact match" msgstr "Exakte Übereinstimmung" -#: netbox/netbox/forms/__init__.py:14 +#: netbox/forms/__init__.py:14 msgid "Starts with" msgstr "Beginnt mit" -#: netbox/netbox/forms/__init__.py:15 +#: netbox/forms/__init__.py:15 msgid "Ends with" msgstr "Endet mit" -#: netbox/netbox/forms/__init__.py:16 +#: netbox/forms/__init__.py:16 msgid "Regex" msgstr "Regex" -#: netbox/netbox/forms/__init__.py:34 +#: netbox/forms/__init__.py:34 msgid "Object type(s)" msgstr "Objekttyp(en)" -#: netbox/netbox/forms/__init__.py:40 +#: netbox/forms/__init__.py:40 msgid "Lookup" msgstr "Suchen" -#: netbox/netbox/forms/base.py:90 +#: netbox/forms/base.py:90 msgid "" "Tag slugs separated by commas, encased with double quotes (e.g. " "\"tag1,tag2,tag3\")" @@ -10932,433 +10318,417 @@ msgstr "" "Tag-URL-Slugs, getrennt durch Kommas, umgeben von doppelten " "Anführungszeichen (z. B. „tag1, tag2, tag3\")" -#: netbox/netbox/forms/base.py:120 +#: netbox/forms/base.py:120 msgid "Add tags" msgstr "Tags hinzufügen" -#: netbox/netbox/forms/base.py:125 +#: netbox/forms/base.py:125 msgid "Remove tags" msgstr "Tags entfernen" -#: netbox/netbox/forms/mixins.py:38 +#: netbox/forms/mixins.py:38 #, python-brace-format msgid "{class_name} must specify a model class." msgstr "{class_name} muss eine Modellklasse angeben." -#: netbox/netbox/models/features.py:280 +#: netbox/models/features.py:280 #, python-brace-format msgid "Unknown field name '{name}' in custom field data." msgstr "Unbekannter Feldname '{name}'in benutzerdefinierten Felddaten." -#: netbox/netbox/models/features.py:286 +#: netbox/models/features.py:286 #, python-brace-format msgid "Invalid value for custom field '{name}': {error}" msgstr "Ungültiger Wert für das benutzerdefinierte Feld '{name}': {error}" -#: netbox/netbox/models/features.py:295 +#: netbox/models/features.py:295 #, python-brace-format msgid "Custom field '{name}' must have a unique value." msgstr "Benutzerdefiniertes Feld '{name}'muss einen eindeutigen Wert haben." -#: netbox/netbox/models/features.py:302 +#: netbox/models/features.py:302 #, python-brace-format msgid "Missing required custom field '{name}'." msgstr "Erforderliches benutzerdefiniertes Feld fehlt '{name}'." -#: netbox/netbox/models/features.py:462 +#: netbox/models/features.py:462 msgid "Remote data source" msgstr "Entfernte Datenquelle" -#: netbox/netbox/models/features.py:472 +#: netbox/models/features.py:472 msgid "data path" msgstr "Datenpfad" -#: netbox/netbox/models/features.py:476 +#: netbox/models/features.py:476 msgid "Path to remote file (relative to data source root)" msgstr "Pfad zur Remote-Datei (relativ zum Stammverzeichnis)" -#: netbox/netbox/models/features.py:479 +#: netbox/models/features.py:479 msgid "auto sync enabled" msgstr "Auto-Sync aktiviert" -#: netbox/netbox/models/features.py:481 +#: netbox/models/features.py:481 msgid "Enable automatic synchronization of data when the data file is updated" msgstr "" "Automatische Synchronisation von Daten aktivieren, wenn die Datendatei " "aktualisiert wird" -#: netbox/netbox/models/features.py:484 +#: netbox/models/features.py:484 msgid "date synced" msgstr "Datum der Synchronisierung " -#: netbox/netbox/models/features.py:578 +#: netbox/models/features.py:578 #, python-brace-format msgid "{class_name} must implement a sync_data() method." msgstr "{class_name} muss eine sync_data () -Methode implementieren." -#: netbox/netbox/navigation/menu.py:11 +#: netbox/navigation/menu.py:11 msgid "Organization" msgstr "Organisation" -#: netbox/netbox/navigation/menu.py:19 +#: netbox/navigation/menu.py:19 msgid "Site Groups" msgstr "Standortgruppen" -#: netbox/netbox/navigation/menu.py:27 +#: netbox/navigation/menu.py:27 msgid "Tenant Groups" msgstr "Mandantengruppen" -#: netbox/netbox/navigation/menu.py:34 +#: netbox/navigation/menu.py:34 msgid "Contact Groups" msgstr "Kontaktgruppen" -#: netbox/netbox/navigation/menu.py:35 -#: netbox/templates/tenancy/contactrole.html:8 +#: netbox/navigation/menu.py:35 templates/tenancy/contactrole.html:8 msgid "Contact Roles" msgstr "Kontaktrollen" -#: netbox/netbox/navigation/menu.py:36 +#: netbox/navigation/menu.py:36 msgid "Contact Assignments" msgstr "Kontaktzuweisungen" -#: netbox/netbox/navigation/menu.py:50 +#: netbox/navigation/menu.py:50 msgid "Rack Roles" msgstr "Rackrollen" -#: netbox/netbox/navigation/menu.py:54 +#: netbox/navigation/menu.py:54 msgid "Elevations" msgstr "Rackübersichten" -#: netbox/netbox/navigation/menu.py:60 netbox/netbox/navigation/menu.py:62 +#: netbox/navigation/menu.py:60 netbox/navigation/menu.py:62 msgid "Rack Types" msgstr "Racktypen" -#: netbox/netbox/navigation/menu.py:76 +#: netbox/navigation/menu.py:76 msgid "Modules" msgstr "Module" -#: netbox/netbox/navigation/menu.py:80 netbox/templates/dcim/device.html:160 -#: netbox/templates/dcim/virtualdevicecontext.html:8 +#: netbox/navigation/menu.py:80 templates/dcim/device.html:160 +#: templates/dcim/virtualdevicecontext.html:8 msgid "Virtual Device Contexts" msgstr "Virtual Device Context" -#: netbox/netbox/navigation/menu.py:88 +#: netbox/navigation/menu.py:88 msgid "Manufacturers" msgstr "Hersteller" -#: netbox/netbox/navigation/menu.py:92 +#: netbox/navigation/menu.py:92 msgid "Device Components" msgstr "Gerätekomponenten" -#: netbox/netbox/navigation/menu.py:104 -#: netbox/templates/dcim/inventoryitemrole.html:8 +#: netbox/navigation/menu.py:104 templates/dcim/inventoryitemrole.html:8 msgid "Inventory Item Roles" msgstr "Inventarartikelrollen" -#: netbox/netbox/navigation/menu.py:111 netbox/netbox/navigation/menu.py:115 +#: netbox/navigation/menu.py:111 netbox/navigation/menu.py:115 msgid "Connections" msgstr "Verbindungen" -#: netbox/netbox/navigation/menu.py:117 +#: netbox/navigation/menu.py:117 msgid "Cables" msgstr "Kabel" -#: netbox/netbox/navigation/menu.py:118 +#: netbox/navigation/menu.py:118 msgid "Wireless Links" msgstr "Funkverbindungen" -#: netbox/netbox/navigation/menu.py:121 +#: netbox/navigation/menu.py:121 msgid "Interface Connections" msgstr "Schnittstellenverbindungen" -#: netbox/netbox/navigation/menu.py:126 +#: netbox/navigation/menu.py:126 msgid "Console Connections" msgstr "Konsolenverbindungen" -#: netbox/netbox/navigation/menu.py:131 +#: netbox/navigation/menu.py:131 msgid "Power Connections" msgstr "Stromverbindungen" -#: netbox/netbox/navigation/menu.py:147 +#: netbox/navigation/menu.py:147 msgid "Wireless LAN Groups" msgstr "WLAN-Gruppen" -#: netbox/netbox/navigation/menu.py:168 +#: netbox/navigation/menu.py:168 msgid "Prefix & VLAN Roles" msgstr "Prefix- und VLAN-Rollen" -#: netbox/netbox/navigation/menu.py:174 +#: netbox/navigation/menu.py:174 msgid "ASN Ranges" msgstr "ASN-Bereiche" -#: netbox/netbox/navigation/menu.py:196 +#: netbox/navigation/menu.py:196 msgid "VLAN Groups" msgstr "VLAN-Gruppen" -#: netbox/netbox/navigation/menu.py:203 +#: netbox/navigation/menu.py:203 msgid "Service Templates" msgstr "Dienstevorlagen (Ports)" -#: netbox/netbox/navigation/menu.py:204 netbox/templates/dcim/device.html:302 -#: netbox/templates/ipam/ipaddress.html:118 -#: netbox/templates/virtualization/virtualmachine.html:154 +#: netbox/navigation/menu.py:204 templates/dcim/device.html:302 +#: templates/ipam/ipaddress.html:118 +#: templates/virtualization/virtualmachine.html:154 msgid "Services" msgstr "Dienste (Ports)" -#: netbox/netbox/navigation/menu.py:211 +#: netbox/navigation/menu.py:211 msgid "VPN" msgstr "VPN" -#: netbox/netbox/navigation/menu.py:215 netbox/netbox/navigation/menu.py:217 -#: netbox/vpn/tables/tunnels.py:24 +#: netbox/navigation/menu.py:215 netbox/navigation/menu.py:217 +#: vpn/tables/tunnels.py:24 msgid "Tunnels" msgstr "Tunnel" -#: netbox/netbox/navigation/menu.py:218 -#: netbox/templates/vpn/tunnelgroup.html:8 +#: netbox/navigation/menu.py:218 templates/vpn/tunnelgroup.html:8 msgid "Tunnel Groups" msgstr "Tunnelgruppen" -#: netbox/netbox/navigation/menu.py:219 +#: netbox/navigation/menu.py:219 msgid "Tunnel Terminations" msgstr "Tunnelabschlusspunkte" -#: netbox/netbox/navigation/menu.py:223 netbox/netbox/navigation/menu.py:225 -#: netbox/vpn/models/l2vpn.py:64 +#: netbox/navigation/menu.py:223 netbox/navigation/menu.py:225 +#: vpn/models/l2vpn.py:64 msgid "L2VPNs" msgstr "L2VPNs" -#: netbox/netbox/navigation/menu.py:226 netbox/templates/vpn/l2vpn.html:56 -#: netbox/templates/vpn/tunnel.html:72 netbox/vpn/tables/tunnels.py:58 +#: netbox/navigation/menu.py:226 templates/vpn/l2vpn.html:56 +#: templates/vpn/tunnel.html:72 vpn/tables/tunnels.py:58 msgid "Terminations" msgstr "Abschlusspunkte" -#: netbox/netbox/navigation/menu.py:232 +#: netbox/navigation/menu.py:232 msgid "IKE Proposals" msgstr "IKE-Vorschläge" -#: netbox/netbox/navigation/menu.py:233 -#: netbox/templates/vpn/ikeproposal.html:41 +#: netbox/navigation/menu.py:233 templates/vpn/ikeproposal.html:41 msgid "IKE Policies" msgstr "IKE-Richtlinien" -#: netbox/netbox/navigation/menu.py:234 +#: netbox/navigation/menu.py:234 msgid "IPSec Proposals" msgstr "IPSec-Vorschläge" -#: netbox/netbox/navigation/menu.py:235 -#: netbox/templates/vpn/ipsecproposal.html:37 +#: netbox/navigation/menu.py:235 templates/vpn/ipsecproposal.html:37 msgid "IPSec Policies" msgstr "IPSec-Richtlinien" -#: netbox/netbox/navigation/menu.py:236 netbox/templates/vpn/ikepolicy.html:38 -#: netbox/templates/vpn/ipsecpolicy.html:25 +#: netbox/navigation/menu.py:236 templates/vpn/ikepolicy.html:38 +#: templates/vpn/ipsecpolicy.html:25 msgid "IPSec Profiles" msgstr "IPSec-Profile" -#: netbox/netbox/navigation/menu.py:243 -#: netbox/templates/dcim/device_edit.html:78 +#: netbox/navigation/menu.py:243 templates/dcim/device_edit.html:78 msgid "Virtualization" msgstr "Virtualisierung" -#: netbox/netbox/navigation/menu.py:251 -#: netbox/templates/virtualization/virtualmachine.html:174 -#: netbox/templates/virtualization/virtualmachine/base.html:32 -#: netbox/templates/virtualization/virtualmachine_list.html:21 -#: netbox/virtualization/tables/virtualmachines.py:104 -#: netbox/virtualization/views.py:388 +#: netbox/navigation/menu.py:251 +#: templates/virtualization/virtualmachine.html:174 +#: templates/virtualization/virtualmachine/base.html:32 +#: templates/virtualization/virtualmachine_list.html:21 +#: virtualization/tables/virtualmachines.py:104 virtualization/views.py:388 msgid "Virtual Disks" msgstr "Virtuelle Festplatten" -#: netbox/netbox/navigation/menu.py:258 +#: netbox/navigation/menu.py:258 msgid "Cluster Types" msgstr "Clustertypen" -#: netbox/netbox/navigation/menu.py:259 +#: netbox/navigation/menu.py:259 msgid "Cluster Groups" msgstr "Clustergruppen" -#: netbox/netbox/navigation/menu.py:273 +#: netbox/navigation/menu.py:273 msgid "Circuit Types" msgstr "Transportnetztypen" -#: netbox/netbox/navigation/menu.py:274 +#: netbox/navigation/menu.py:274 msgid "Circuit Groups" msgstr "Transportnetzgruppe" -#: netbox/netbox/navigation/menu.py:275 -#: netbox/templates/circuits/circuit.html:66 +#: netbox/navigation/menu.py:275 templates/circuits/circuit.html:66 msgid "Group Assignments" msgstr "Gruppenzuweisung" -#: netbox/netbox/navigation/menu.py:276 +#: netbox/navigation/menu.py:276 msgid "Circuit Terminations" msgstr "Transportnetzabschlusspunkt" -#: netbox/netbox/navigation/menu.py:280 netbox/netbox/navigation/menu.py:282 +#: netbox/navigation/menu.py:280 netbox/navigation/menu.py:282 msgid "Providers" msgstr "Provider" -#: netbox/netbox/navigation/menu.py:283 -#: netbox/templates/circuits/provider.html:51 +#: netbox/navigation/menu.py:283 templates/circuits/provider.html:51 msgid "Provider Accounts" msgstr "Providerkonten" -#: netbox/netbox/navigation/menu.py:284 +#: netbox/navigation/menu.py:284 msgid "Provider Networks" msgstr "Provider Netzwerke" -#: netbox/netbox/navigation/menu.py:298 +#: netbox/navigation/menu.py:298 msgid "Power Panels" msgstr "Stromverteiler" -#: netbox/netbox/navigation/menu.py:309 +#: netbox/navigation/menu.py:309 msgid "Configurations" msgstr "Konfigurationen" -#: netbox/netbox/navigation/menu.py:311 +#: netbox/navigation/menu.py:311 msgid "Config Contexts" msgstr "Konfigurationsvorlage" -#: netbox/netbox/navigation/menu.py:312 +#: netbox/navigation/menu.py:312 msgid "Config Templates" msgstr "Config-Vorlagen" -#: netbox/netbox/navigation/menu.py:319 netbox/netbox/navigation/menu.py:323 +#: netbox/navigation/menu.py:319 netbox/navigation/menu.py:323 msgid "Customization" msgstr "Personalisierung" -#: netbox/netbox/navigation/menu.py:325 -#: netbox/templates/dcim/device_edit.html:103 -#: netbox/templates/dcim/htmx/cable_edit.html:81 -#: netbox/templates/dcim/virtualchassis_add.html:31 -#: netbox/templates/dcim/virtualchassis_edit.html:40 -#: netbox/templates/generic/bulk_edit.html:76 -#: netbox/templates/htmx/form.html:19 netbox/templates/inc/filter_list.html:30 -#: netbox/templates/inc/panels/custom_fields.html:7 -#: netbox/templates/ipam/ipaddress_bulk_add.html:35 -#: netbox/templates/ipam/vlan_edit.html:59 +#: netbox/navigation/menu.py:325 templates/dcim/device_edit.html:103 +#: templates/dcim/htmx/cable_edit.html:81 +#: templates/dcim/virtualchassis_add.html:31 +#: templates/dcim/virtualchassis_edit.html:40 +#: templates/generic/bulk_edit.html:76 templates/htmx/form.html:19 +#: templates/inc/filter_list.html:30 templates/inc/panels/custom_fields.html:7 +#: templates/ipam/ipaddress_bulk_add.html:35 templates/ipam/vlan_edit.html:59 msgid "Custom Fields" msgstr "Benutzerdefinierte Felder" -#: netbox/netbox/navigation/menu.py:326 +#: netbox/navigation/menu.py:326 msgid "Custom Field Choices" msgstr "Benutzerdefinierte Feldoptionen" -#: netbox/netbox/navigation/menu.py:327 +#: netbox/navigation/menu.py:327 msgid "Custom Links" msgstr "Benutzerdefinierte Links" -#: netbox/netbox/navigation/menu.py:328 +#: netbox/navigation/menu.py:328 msgid "Export Templates" msgstr "Exportvorlagen" -#: netbox/netbox/navigation/menu.py:329 +#: netbox/navigation/menu.py:329 msgid "Saved Filters" msgstr "Gespeicherte Filter" -#: netbox/netbox/navigation/menu.py:331 +#: netbox/navigation/menu.py:331 msgid "Image Attachments" msgstr "Bildanhänge" -#: netbox/netbox/navigation/menu.py:349 +#: netbox/navigation/menu.py:349 msgid "Operations" msgstr "Operationen" -#: netbox/netbox/navigation/menu.py:353 +#: netbox/navigation/menu.py:353 msgid "Integrations" msgstr "Integrationen" -#: netbox/netbox/navigation/menu.py:355 +#: netbox/navigation/menu.py:355 msgid "Data Sources" msgstr "Datenquellen" -#: netbox/netbox/navigation/menu.py:356 +#: netbox/navigation/menu.py:356 msgid "Event Rules" msgstr "Ereignisregeln" -#: netbox/netbox/navigation/menu.py:357 +#: netbox/navigation/menu.py:357 msgid "Webhooks" msgstr "Webhooks" -#: netbox/netbox/navigation/menu.py:361 netbox/netbox/navigation/menu.py:365 -#: netbox/netbox/views/generic/feature_views.py:153 -#: netbox/templates/extras/report/base.html:37 -#: netbox/templates/extras/script/base.html:36 +#: netbox/navigation/menu.py:361 netbox/navigation/menu.py:365 +#: netbox/views/generic/feature_views.py:153 +#: templates/extras/report/base.html:37 templates/extras/script/base.html:36 msgid "Jobs" msgstr "Jobs" -#: netbox/netbox/navigation/menu.py:371 +#: netbox/navigation/menu.py:371 msgid "Logging" msgstr "Protokollierung" -#: netbox/netbox/navigation/menu.py:373 +#: netbox/navigation/menu.py:373 msgid "Notification Groups" msgstr "Benachrichtigungsgruppen" -#: netbox/netbox/navigation/menu.py:374 +#: netbox/navigation/menu.py:374 msgid "Journal Entries" msgstr "Journaleinträge" -#: netbox/netbox/navigation/menu.py:375 -#: netbox/templates/core/objectchange.html:9 -#: netbox/templates/core/objectchange_list.html:4 +#: netbox/navigation/menu.py:375 templates/core/objectchange.html:9 +#: templates/core/objectchange_list.html:4 msgid "Change Log" msgstr "Änderungsprotokoll" -#: netbox/netbox/navigation/menu.py:382 netbox/templates/inc/user_menu.html:29 +#: netbox/navigation/menu.py:382 templates/inc/user_menu.html:29 msgid "Admin" msgstr "Admin" -#: netbox/netbox/navigation/menu.py:430 netbox/templates/account/base.html:27 -#: netbox/templates/inc/user_menu.html:57 +#: netbox/navigation/menu.py:430 templates/account/base.html:27 +#: templates/inc/user_menu.html:57 msgid "API Tokens" msgstr "API-Token" -#: netbox/netbox/navigation/menu.py:437 netbox/users/forms/model_forms.py:187 -#: netbox/users/forms/model_forms.py:195 netbox/users/forms/model_forms.py:242 -#: netbox/users/forms/model_forms.py:249 +#: netbox/navigation/menu.py:437 users/forms/model_forms.py:187 +#: users/forms/model_forms.py:195 users/forms/model_forms.py:242 +#: users/forms/model_forms.py:249 msgid "Permissions" msgstr "Berechtigungen" -#: netbox/netbox/navigation/menu.py:445 netbox/netbox/navigation/menu.py:449 -#: netbox/templates/core/system.html:7 +#: netbox/navigation/menu.py:445 netbox/navigation/menu.py:449 +#: templates/core/system.html:7 msgid "System" msgstr "System" -#: netbox/netbox/navigation/menu.py:454 netbox/netbox/navigation/menu.py:502 -#: netbox/templates/500.html:35 netbox/templates/account/preferences.html:22 -#: netbox/templates/core/plugin.html:12 -#: netbox/templates/core/plugin_list.html:7 -#: netbox/templates/core/plugin_list.html:12 +#: netbox/navigation/menu.py:454 netbox/navigation/menu.py:502 +#: templates/500.html:35 templates/account/preferences.html:22 +#: templates/core/plugin.html:13 templates/core/plugin_list.html:7 +#: templates/core/plugin_list.html:12 msgid "Plugins" msgstr "Plugins" -#: netbox/netbox/navigation/menu.py:459 +#: netbox/navigation/menu.py:459 msgid "Configuration History" msgstr "Konfigurationsverlauf" -#: netbox/netbox/navigation/menu.py:465 netbox/templates/core/rq_task.html:8 -#: netbox/templates/core/rq_task_list.html:22 +#: netbox/navigation/menu.py:465 templates/core/rq_task.html:8 +#: templates/core/rq_task_list.html:22 msgid "Background Tasks" msgstr "Hintergrundaufgaben" -#: netbox/netbox/plugins/navigation.py:47 -#: netbox/netbox/plugins/navigation.py:69 +#: netbox/plugins/navigation.py:47 netbox/plugins/navigation.py:69 msgid "Permissions must be passed as a tuple or list." msgstr "Berechtigungen müssen als Tupel oder Liste übergeben werden." -#: netbox/netbox/plugins/navigation.py:51 +#: netbox/plugins/navigation.py:51 msgid "Buttons must be passed as a tuple or list." msgstr "Schaltflächen müssen als Tupel oder Liste übergeben werden." -#: netbox/netbox/plugins/navigation.py:73 +#: netbox/plugins/navigation.py:73 msgid "Button color must be a choice within ButtonColorChoices." msgstr "" "Die Farbe der Schaltfläche muss innerhalb von ButtonColorChoices ausgewählt " "werden." -#: netbox/netbox/plugins/registration.py:25 +#: netbox/plugins/registration.py:25 #, python-brace-format msgid "" "PluginTemplateExtension class {template_extension} was passed as an " @@ -11367,7 +10737,7 @@ msgstr "" "PluginTemplateExtension-Klasse {template_extension} wurde als Instanz " "übergeben!" -#: netbox/netbox/plugins/registration.py:31 +#: netbox/plugins/registration.py:31 #, python-brace-format msgid "" "{template_extension} is not a subclass of " @@ -11376,199 +10746,198 @@ msgstr "" "{template_extension} ist keine Unterklasse von " "NetBox.Plugins.PluginTemplateExtension!" -#: netbox/netbox/plugins/registration.py:51 +#: netbox/plugins/registration.py:51 #, python-brace-format msgid "{item} must be an instance of netbox.plugins.PluginMenuItem" msgstr "{item} muss eine Instanz von NetBox.Plugins.PluginMenuItem sein" -#: netbox/netbox/plugins/registration.py:62 +#: netbox/plugins/registration.py:62 #, python-brace-format msgid "{menu_link} must be an instance of netbox.plugins.PluginMenuItem" msgstr "{menu_link} muss eine Instanz von NetBox.Plugins.PluginMenuItem sein" -#: netbox/netbox/plugins/registration.py:67 +#: netbox/plugins/registration.py:67 #, python-brace-format msgid "{button} must be an instance of netbox.plugins.PluginMenuButton" msgstr "{button} muss eine Instanz von NetBox.Plugins.PluginMenuButton sein" -#: netbox/netbox/plugins/templates.py:37 +#: netbox/plugins/templates.py:37 msgid "extra_context must be a dictionary" msgstr "extra_context muss ein Dictionary sein" -#: netbox/netbox/preferences.py:19 +#: netbox/preferences.py:19 msgid "HTMX Navigation" msgstr "HTMX-Navigation" -#: netbox/netbox/preferences.py:24 +#: netbox/preferences.py:24 msgid "Enable dynamic UI navigation" msgstr "Dynamische UI-Navigation aktivieren" -#: netbox/netbox/preferences.py:26 +#: netbox/preferences.py:26 msgid "Experimental feature" msgstr "Experimentelle Funktion" -#: netbox/netbox/preferences.py:29 +#: netbox/preferences.py:29 msgid "Language" msgstr "Sprache" -#: netbox/netbox/preferences.py:34 +#: netbox/preferences.py:34 msgid "Forces UI translation to the specified language" msgstr "" "Erzwingt die Übersetzung der Benutzeroberfläche in die angegebene Sprache" -#: netbox/netbox/preferences.py:36 +#: netbox/preferences.py:36 msgid "Support for translation has been disabled locally" msgstr "Die Unterstützung für Übersetzungen wurde lokal deaktiviert" -#: netbox/netbox/preferences.py:42 +#: netbox/preferences.py:42 msgid "Page length" msgstr "Länge der Seite" -#: netbox/netbox/preferences.py:44 +#: netbox/preferences.py:44 msgid "The default number of objects to display per page" msgstr "Die Standardanzahl der pro Seite anzuzeigenden Objekte" -#: netbox/netbox/preferences.py:48 +#: netbox/preferences.py:48 msgid "Paginator placement" msgstr "Platzierung des Paginators" -#: netbox/netbox/preferences.py:50 +#: netbox/preferences.py:50 msgid "Bottom" msgstr "Unten" -#: netbox/netbox/preferences.py:51 +#: netbox/preferences.py:51 msgid "Top" msgstr "Oben" -#: netbox/netbox/preferences.py:52 +#: netbox/preferences.py:52 msgid "Both" msgstr "Beide" -#: netbox/netbox/preferences.py:55 +#: netbox/preferences.py:55 msgid "Where the paginator controls will be displayed relative to a table" msgstr "" "Wo die Seiten-Steuerelemente relativ zu einer Tabelle angezeigt werden" -#: netbox/netbox/preferences.py:60 +#: netbox/preferences.py:60 msgid "Data format" msgstr "Datenformat" -#: netbox/netbox/preferences.py:65 +#: netbox/preferences.py:65 msgid "The preferred syntax for displaying generic data within the UI" msgstr "" "Die bevorzugte Syntax für die Anzeige generischer Daten in der " "Benutzeroberfläche" -#: netbox/netbox/registry.py:14 +#: netbox/registry.py:14 #, python-brace-format msgid "Invalid store: {key}" msgstr "Ungültiger Shop: {key}" -#: netbox/netbox/registry.py:17 +#: netbox/registry.py:17 msgid "Cannot add stores to registry after initialization" msgstr "" "Stores können nach der Initialisierung nicht zur Registrierung hinzugefügt " "werden" -#: netbox/netbox/registry.py:20 +#: netbox/registry.py:20 msgid "Cannot delete stores from registry" msgstr "Stores können nicht aus der Registrierung gelöscht werden" -#: netbox/netbox/settings.py:760 +#: netbox/settings.py:760 msgid "Czech" msgstr "Tschechisch" -#: netbox/netbox/settings.py:761 +#: netbox/settings.py:761 msgid "Danish" msgstr "Dänisch" -#: netbox/netbox/settings.py:762 +#: netbox/settings.py:762 msgid "German" msgstr "Deutsch" -#: netbox/netbox/settings.py:763 +#: netbox/settings.py:763 msgid "English" msgstr "Englisch" -#: netbox/netbox/settings.py:764 +#: netbox/settings.py:764 msgid "Spanish" msgstr "Spanisch" -#: netbox/netbox/settings.py:765 +#: netbox/settings.py:765 msgid "French" msgstr "Französisch" -#: netbox/netbox/settings.py:766 +#: netbox/settings.py:766 msgid "Italian" msgstr "Italenisch" -#: netbox/netbox/settings.py:767 +#: netbox/settings.py:767 msgid "Japanese" msgstr "Japanisch" -#: netbox/netbox/settings.py:768 +#: netbox/settings.py:768 msgid "Dutch" msgstr "Niederländisch" -#: netbox/netbox/settings.py:769 +#: netbox/settings.py:769 msgid "Polish" msgstr "Polnisch" -#: netbox/netbox/settings.py:770 +#: netbox/settings.py:770 msgid "Portuguese" msgstr "Portugiesisch" -#: netbox/netbox/settings.py:771 +#: netbox/settings.py:771 msgid "Russian" msgstr "Russisch" -#: netbox/netbox/settings.py:772 +#: netbox/settings.py:772 msgid "Turkish" msgstr "Türkisch" -#: netbox/netbox/settings.py:773 +#: netbox/settings.py:773 msgid "Ukrainian" msgstr "Ukrainisch" -#: netbox/netbox/settings.py:774 +#: netbox/settings.py:774 msgid "Chinese" msgstr "Chinesisch" -#: netbox/netbox/tables/columns.py:176 +#: netbox/tables/columns.py:176 msgid "Select all" msgstr "Alles auswählen" -#: netbox/netbox/tables/columns.py:189 +#: netbox/tables/columns.py:189 msgid "Toggle all" msgstr "Alles umschalten" -#: netbox/netbox/tables/columns.py:300 +#: netbox/tables/columns.py:300 msgid "Toggle Dropdown" msgstr "Dropdown umschalten" -#: netbox/netbox/tables/columns.py:572 netbox/templates/core/job.html:53 +#: netbox/tables/columns.py:572 templates/core/job.html:53 msgid "Error" msgstr "Fehler" -#: netbox/netbox/tables/tables.py:58 +#: netbox/tables/tables.py:58 #, python-brace-format msgid "No {model_name} found" msgstr "Kein {model_name} gefunden" -#: netbox/netbox/tables/tables.py:249 -#: netbox/templates/generic/bulk_import.html:117 +#: netbox/tables/tables.py:249 templates/generic/bulk_import.html:117 msgid "Field" msgstr "Feld" -#: netbox/netbox/tables/tables.py:252 +#: netbox/tables/tables.py:252 msgid "Value" msgstr "Wert" -#: netbox/netbox/tests/dummy_plugin/navigation.py:29 +#: netbox/tests/dummy_plugin/navigation.py:29 msgid "Dummy Plugin" msgstr "Dummy-Plugin" -#: netbox/netbox/views/generic/bulk_views.py:114 +#: netbox/views/generic/bulk_views.py:114 #, python-brace-format msgid "" "There was an error rendering the selected export template ({template}): " @@ -11577,56 +10946,56 @@ msgstr "" "Beim Rendern der ausgewählten Exportvorlage ist ein Fehler aufgetreten " "({template}): {error}" -#: netbox/netbox/views/generic/bulk_views.py:416 +#: netbox/views/generic/bulk_views.py:416 #, python-brace-format msgid "Row {i}: Object with ID {id} does not exist" msgstr "Reihe {i}: Objekt mit ID {id} existiert nicht" -#: netbox/netbox/views/generic/bulk_views.py:699 -#: netbox/netbox/views/generic/bulk_views.py:897 -#: netbox/netbox/views/generic/bulk_views.py:945 +#: netbox/views/generic/bulk_views.py:702 +#: netbox/views/generic/bulk_views.py:900 +#: netbox/views/generic/bulk_views.py:948 #, python-brace-format msgid "No {object_type} were selected." msgstr "Kein {object_type}ausgewählt" -#: netbox/netbox/views/generic/bulk_views.py:779 +#: netbox/views/generic/bulk_views.py:782 #, python-brace-format msgid "Renamed {count} {object_type}" msgstr "Umbenannt {count} {object_type}" -#: netbox/netbox/views/generic/bulk_views.py:875 +#: netbox/views/generic/bulk_views.py:878 #, python-brace-format msgid "Deleted {count} {object_type}" msgstr "Gelöscht {count} {object_type}" -#: netbox/netbox/views/generic/feature_views.py:40 +#: netbox/views/generic/feature_views.py:40 msgid "Changelog" msgstr "Changelog" -#: netbox/netbox/views/generic/feature_views.py:93 +#: netbox/views/generic/feature_views.py:93 msgid "Journal" msgstr "Journal" -#: netbox/netbox/views/generic/feature_views.py:207 +#: netbox/views/generic/feature_views.py:207 msgid "Unable to synchronize data: No data file set." msgstr "Synchronisation nicht möglich: Keine Datei ausgewählt bzw. gesetzt." -#: netbox/netbox/views/generic/feature_views.py:211 +#: netbox/views/generic/feature_views.py:211 #, python-brace-format msgid "Synchronized data for {object_type} {object}." msgstr "Daten synchronisiert für {object_type} {object}." -#: netbox/netbox/views/generic/feature_views.py:236 +#: netbox/views/generic/feature_views.py:236 #, python-brace-format msgid "Synced {count} {object_type}" msgstr "Synchronisiert {count} {object_type}" -#: netbox/netbox/views/generic/object_views.py:108 +#: netbox/views/generic/object_views.py:108 #, python-brace-format msgid "{class_name} must implement get_children()" msgstr "{class_name} muss get_children () implementieren" -#: netbox/netbox/views/misc.py:44 +#: netbox/views/misc.py:44 msgid "" "There was an error loading the dashboard configuration. A default dashboard " "is in use." @@ -11634,752 +11003,707 @@ msgstr "" "Beim Laden der Dashboardkonfiguration ist ein Fehler aufgetreten. Ein " "Standarddashboard wird verwendet." -#: netbox/templates/403.html:4 +#: templates/403.html:4 msgid "Access Denied" msgstr "Zugriff verweigert" -#: netbox/templates/403.html:9 +#: templates/403.html:9 msgid "You do not have permission to access this page" msgstr "Sie sind nicht berechtigt, auf diese Seite zuzugreifen" -#: netbox/templates/404.html:4 +#: templates/404.html:4 msgid "Page Not Found" msgstr "Seite wurde nicht gefunden" -#: netbox/templates/404.html:9 +#: templates/404.html:9 msgid "The requested page does not exist" msgstr "Die angeforderte Seite existiert nicht" -#: netbox/templates/500.html:7 netbox/templates/500.html:18 +#: templates/500.html:7 templates/500.html:18 msgid "Server Error" msgstr "Serverfehler" -#: netbox/templates/500.html:23 +#: templates/500.html:23 msgid "There was a problem with your request. Please contact an administrator" msgstr "" "Bei Ihrer Anfrage ist ein Problem aufgetreten. Bitte kontaktieren Sie einen " "Administrator" -#: netbox/templates/500.html:28 +#: templates/500.html:28 msgid "The complete exception is provided below" msgstr "Die vollständige Ausnahme finden Sie unten." -#: netbox/templates/500.html:33 netbox/templates/core/system.html:40 +#: templates/500.html:33 templates/core/system.html:40 msgid "Python version" msgstr "Python-Version" -#: netbox/templates/500.html:34 +#: templates/500.html:34 msgid "NetBox version" msgstr "NetBox-Version" -#: netbox/templates/500.html:36 +#: templates/500.html:36 msgid "None installed" msgstr "Keine installiert" -#: netbox/templates/500.html:39 +#: templates/500.html:39 msgid "If further assistance is required, please post to the" msgstr "" "Wenn Sie weitere Unterstützung benötigen, senden Sie bitte eine E-Mail an" -#: netbox/templates/500.html:39 +#: templates/500.html:39 msgid "NetBox discussion forum" msgstr "NetBox-Diskussionsforum" -#: netbox/templates/500.html:39 +#: templates/500.html:39 msgid "on GitHub" msgstr "auf GitHub" -#: netbox/templates/500.html:42 netbox/templates/base/40x.html:17 +#: templates/500.html:42 templates/base/40x.html:17 msgid "Home Page" msgstr "Startseite" -#: netbox/templates/account/base.html:7 netbox/templates/inc/user_menu.html:45 -#: netbox/vpn/forms/bulk_edit.py:255 netbox/vpn/forms/filtersets.py:189 -#: netbox/vpn/forms/model_forms.py:379 +#: templates/account/base.html:7 templates/inc/user_menu.html:45 +#: vpn/forms/bulk_edit.py:255 vpn/forms/filtersets.py:189 +#: vpn/forms/model_forms.py:379 msgid "Profile" msgstr "Profil" -#: netbox/templates/account/base.html:13 -#: netbox/templates/account/notifications.html:7 -#: netbox/templates/inc/user_menu.html:15 +#: templates/account/base.html:13 templates/account/notifications.html:7 +#: templates/inc/user_menu.html:15 msgid "Notifications" msgstr "Benachrichtigungen" -#: netbox/templates/account/base.html:16 -#: netbox/templates/account/subscriptions.html:7 -#: netbox/templates/inc/user_menu.html:51 +#: templates/account/base.html:16 templates/account/subscriptions.html:7 +#: templates/inc/user_menu.html:51 msgid "Subscriptions" msgstr "Abos" -#: netbox/templates/account/base.html:19 -#: netbox/templates/inc/user_menu.html:54 +#: templates/account/base.html:19 templates/inc/user_menu.html:54 msgid "Preferences" msgstr "Einstellungen" -#: netbox/templates/account/password.html:5 +#: templates/account/password.html:5 msgid "Change Password" msgstr "Passwort ändern" -#: netbox/templates/account/password.html:19 -#: netbox/templates/account/preferences.html:77 -#: netbox/templates/core/configrevision_restore.html:63 -#: netbox/templates/dcim/devicebay_populate.html:34 -#: netbox/templates/dcim/virtualchassis_add_member.html:26 -#: netbox/templates/dcim/virtualchassis_edit.html:103 -#: netbox/templates/extras/object_journal.html:26 -#: netbox/templates/extras/script.html:38 -#: netbox/templates/generic/bulk_add_component.html:67 -#: netbox/templates/generic/bulk_delete.html:65 -#: netbox/templates/generic/bulk_edit.html:106 -#: netbox/templates/generic/bulk_import.html:56 -#: netbox/templates/generic/bulk_import.html:78 -#: netbox/templates/generic/bulk_import.html:100 -#: netbox/templates/generic/bulk_remove.html:62 -#: netbox/templates/generic/bulk_rename.html:63 -#: netbox/templates/generic/confirmation_form.html:19 -#: netbox/templates/generic/object_edit.html:72 -#: netbox/templates/htmx/delete_form.html:53 -#: netbox/templates/htmx/delete_form.html:55 -#: netbox/templates/ipam/ipaddress_assign.html:28 -#: netbox/templates/virtualization/cluster_add_devices.html:30 +#: templates/account/password.html:19 templates/account/preferences.html:77 +#: templates/core/configrevision_restore.html:63 +#: templates/dcim/devicebay_populate.html:34 +#: templates/dcim/virtualchassis_add_member.html:26 +#: templates/dcim/virtualchassis_edit.html:103 +#: templates/extras/object_journal.html:26 templates/extras/script.html:38 +#: templates/generic/bulk_add_component.html:67 +#: templates/generic/bulk_delete.html:65 templates/generic/bulk_edit.html:106 +#: templates/generic/bulk_import.html:56 templates/generic/bulk_import.html:78 +#: templates/generic/bulk_import.html:100 +#: templates/generic/bulk_remove.html:62 templates/generic/bulk_rename.html:63 +#: templates/generic/confirmation_form.html:19 +#: templates/generic/object_edit.html:72 templates/htmx/delete_form.html:53 +#: templates/htmx/delete_form.html:55 templates/ipam/ipaddress_assign.html:28 +#: templates/virtualization/cluster_add_devices.html:30 msgid "Cancel" msgstr "Abbrechen" -#: netbox/templates/account/password.html:20 -#: netbox/templates/account/preferences.html:78 -#: netbox/templates/dcim/devicebay_populate.html:35 -#: netbox/templates/dcim/virtualchassis_add_member.html:28 -#: netbox/templates/dcim/virtualchassis_edit.html:105 -#: netbox/templates/extras/dashboard/widget_add.html:26 -#: netbox/templates/extras/dashboard/widget_config.html:19 -#: netbox/templates/extras/object_journal.html:27 -#: netbox/templates/generic/object_edit.html:75 -#: netbox/utilities/templates/helpers/applied_filters.html:16 -#: netbox/utilities/templates/helpers/table_config_form.html:40 +#: templates/account/password.html:20 templates/account/preferences.html:78 +#: templates/dcim/devicebay_populate.html:35 +#: templates/dcim/virtualchassis_add_member.html:28 +#: templates/dcim/virtualchassis_edit.html:105 +#: templates/extras/dashboard/widget_add.html:26 +#: templates/extras/dashboard/widget_config.html:19 +#: templates/extras/object_journal.html:27 +#: templates/generic/object_edit.html:75 +#: utilities/templates/helpers/applied_filters.html:16 +#: utilities/templates/helpers/table_config_form.html:40 msgid "Save" msgstr "Speichern" -#: netbox/templates/account/preferences.html:34 +#: templates/account/preferences.html:34 msgid "Table Configurations" msgstr "Tabellenkonfigurationen" -#: netbox/templates/account/preferences.html:39 +#: templates/account/preferences.html:39 msgid "Clear table preferences" msgstr "Tabelleneinstellungen löschen" -#: netbox/templates/account/preferences.html:47 +#: templates/account/preferences.html:47 msgid "Toggle All" msgstr "Alles umschalten" -#: netbox/templates/account/preferences.html:49 +#: templates/account/preferences.html:49 msgid "Table" msgstr "Tabelle" -#: netbox/templates/account/preferences.html:50 +#: templates/account/preferences.html:50 msgid "Ordering" msgstr "Sortierung" -#: netbox/templates/account/preferences.html:51 +#: templates/account/preferences.html:51 msgid "Columns" msgstr "Spalten" -#: netbox/templates/account/preferences.html:71 -#: netbox/templates/dcim/cable_trace.html:113 -#: netbox/templates/extras/object_configcontext.html:43 +#: templates/account/preferences.html:71 templates/dcim/cable_trace.html:113 +#: templates/extras/object_configcontext.html:43 msgid "None found" msgstr "Keine gefunden" -#: netbox/templates/account/profile.html:6 +#: templates/account/profile.html:6 msgid "User Profile" msgstr "Benutzerprofil" -#: netbox/templates/account/profile.html:12 +#: templates/account/profile.html:12 msgid "Account Details" msgstr "Kontodetails" -#: netbox/templates/account/profile.html:29 -#: netbox/templates/tenancy/contact.html:43 -#: netbox/templates/users/user.html:25 netbox/tenancy/forms/bulk_edit.py:109 +#: templates/account/profile.html:29 templates/tenancy/contact.html:43 +#: templates/users/user.html:25 tenancy/forms/bulk_edit.py:109 msgid "Email" msgstr "E-Mail" -#: netbox/templates/account/profile.html:33 -#: netbox/templates/users/user.html:29 +#: templates/account/profile.html:33 templates/users/user.html:29 msgid "Account Created" msgstr "Konto erstellt" -#: netbox/templates/account/profile.html:37 -#: netbox/templates/users/user.html:33 +#: templates/account/profile.html:37 templates/users/user.html:33 msgid "Last Login" msgstr "Letzte Anmeldung" -#: netbox/templates/account/profile.html:41 -#: netbox/templates/users/user.html:45 +#: templates/account/profile.html:41 templates/users/user.html:45 msgid "Superuser" msgstr "Superuser" -#: netbox/templates/account/profile.html:45 -#: netbox/templates/inc/user_menu.html:31 netbox/templates/users/user.html:41 +#: templates/account/profile.html:45 templates/inc/user_menu.html:31 +#: templates/users/user.html:41 msgid "Staff" msgstr "Mitarbeiter" -#: netbox/templates/account/profile.html:53 -#: netbox/templates/users/objectpermission.html:82 -#: netbox/templates/users/user.html:53 +#: templates/account/profile.html:53 templates/users/objectpermission.html:82 +#: templates/users/user.html:53 msgid "Assigned Groups" msgstr "Zugewiesene Gruppen" -#: netbox/templates/account/profile.html:58 -#: netbox/templates/circuits/circuit_terminations_swap.html:18 -#: netbox/templates/circuits/circuit_terminations_swap.html:26 -#: netbox/templates/circuits/circuittermination.html:34 -#: netbox/templates/circuits/inc/circuit_termination.html:68 -#: netbox/templates/core/objectchange.html:124 -#: netbox/templates/core/objectchange.html:142 -#: netbox/templates/dcim/devicebay.html:59 -#: netbox/templates/dcim/inc/panels/inventory_items.html:45 -#: netbox/templates/dcim/interface.html:296 -#: netbox/templates/dcim/modulebay.html:80 -#: netbox/templates/extras/configcontext.html:70 -#: netbox/templates/extras/eventrule.html:66 -#: netbox/templates/extras/htmx/script_result.html:60 -#: netbox/templates/extras/webhook.html:65 -#: netbox/templates/extras/webhook.html:75 -#: netbox/templates/inc/panel_table.html:13 -#: netbox/templates/inc/panels/comments.html:10 -#: netbox/templates/ipam/inc/panels/fhrp_groups.html:56 -#: netbox/templates/users/group.html:34 netbox/templates/users/group.html:44 -#: netbox/templates/users/objectpermission.html:77 -#: netbox/templates/users/objectpermission.html:87 -#: netbox/templates/users/user.html:58 netbox/templates/users/user.html:68 +#: templates/account/profile.html:58 +#: templates/circuits/circuit_terminations_swap.html:18 +#: templates/circuits/circuit_terminations_swap.html:26 +#: templates/circuits/circuittermination.html:34 +#: templates/circuits/inc/circuit_termination.html:68 +#: templates/core/objectchange.html:124 templates/core/objectchange.html:142 +#: templates/dcim/devicebay.html:59 +#: templates/dcim/inc/panels/inventory_items.html:45 +#: templates/dcim/interface.html:296 templates/dcim/modulebay.html:80 +#: templates/extras/configcontext.html:70 templates/extras/eventrule.html:66 +#: templates/extras/htmx/script_result.html:60 +#: templates/extras/webhook.html:65 templates/extras/webhook.html:75 +#: templates/inc/panel_table.html:13 templates/inc/panels/comments.html:10 +#: templates/ipam/inc/panels/fhrp_groups.html:56 templates/users/group.html:34 +#: templates/users/group.html:44 templates/users/objectpermission.html:77 +#: templates/users/objectpermission.html:87 templates/users/user.html:58 +#: templates/users/user.html:68 msgid "None" msgstr "Keine" -#: netbox/templates/account/profile.html:68 -#: netbox/templates/users/user.html:78 +#: templates/account/profile.html:68 templates/users/user.html:78 msgid "Recent Activity" msgstr "Letzte Aktivität" -#: netbox/templates/account/token.html:8 -#: netbox/templates/account/token_list.html:6 +#: templates/account/token.html:8 templates/account/token_list.html:6 msgid "My API Tokens" msgstr "Meine API-Token" -#: netbox/templates/account/token.html:11 -#: netbox/templates/account/token.html:19 netbox/templates/users/token.html:6 -#: netbox/templates/users/token.html:14 netbox/users/forms/filtersets.py:120 +#: templates/account/token.html:11 templates/account/token.html:19 +#: templates/users/token.html:6 templates/users/token.html:14 +#: users/forms/filtersets.py:120 msgid "Token" msgstr "API-Token" -#: netbox/templates/account/token.html:39 netbox/templates/users/token.html:31 -#: netbox/users/forms/bulk_edit.py:107 +#: templates/account/token.html:39 templates/users/token.html:31 +#: users/forms/bulk_edit.py:107 msgid "Write enabled" msgstr "Schreiben aktiviert" -#: netbox/templates/account/token.html:51 netbox/templates/users/token.html:43 +#: templates/account/token.html:51 templates/users/token.html:43 msgid "Last used" msgstr "Zuletzt benutzt" -#: netbox/templates/account/token_list.html:12 +#: templates/account/token_list.html:12 msgid "Add a Token" msgstr "Einen API-Token hinzufügen" -#: netbox/templates/base/base.html:22 netbox/templates/home.html:27 +#: templates/base/base.html:22 templates/home.html:27 msgid "Home" msgstr "Home" -#: netbox/templates/base/layout.html:25 +#: templates/base/layout.html:25 msgid "NetBox Motif" msgstr "NetBox-Motiv" -#: netbox/templates/base/layout.html:38 netbox/templates/base/layout.html:39 -#: netbox/templates/login.html:14 netbox/templates/login.html:15 +#: templates/base/layout.html:38 templates/base/layout.html:39 +#: templates/login.html:14 templates/login.html:15 msgid "NetBox Logo" msgstr "NetBox-Logo" -#: netbox/templates/base/layout.html:150 netbox/templates/base/layout.html:151 +#: templates/base/layout.html:150 templates/base/layout.html:151 msgid "Docs" msgstr "Doku" -#: netbox/templates/base/layout.html:156 netbox/templates/base/layout.html:157 -#: netbox/templates/rest_framework/api.html:10 +#: templates/base/layout.html:156 templates/base/layout.html:157 +#: templates/rest_framework/api.html:10 msgid "REST API" msgstr "REST-API" -#: netbox/templates/base/layout.html:162 netbox/templates/base/layout.html:163 +#: templates/base/layout.html:162 templates/base/layout.html:163 msgid "REST API documentation" msgstr "REST-API-Dokumentation" -#: netbox/templates/base/layout.html:169 netbox/templates/base/layout.html:170 +#: templates/base/layout.html:169 templates/base/layout.html:170 msgid "GraphQL API" msgstr "GraphQL-API" -#: netbox/templates/base/layout.html:185 netbox/templates/base/layout.html:186 +#: templates/base/layout.html:185 templates/base/layout.html:186 msgid "NetBox Labs Support" msgstr "NetBox Labs Support" -#: netbox/templates/base/layout.html:194 netbox/templates/base/layout.html:195 +#: templates/base/layout.html:194 templates/base/layout.html:195 msgid "Source Code" msgstr "Quellcode" -#: netbox/templates/base/layout.html:200 netbox/templates/base/layout.html:201 +#: templates/base/layout.html:200 templates/base/layout.html:201 msgid "Community" msgstr "Community" -#: netbox/templates/circuits/circuit.html:47 +#: templates/circuits/circuit.html:47 msgid "Install Date" msgstr "Datum der Installation" -#: netbox/templates/circuits/circuit.html:51 +#: templates/circuits/circuit.html:51 msgid "Termination Date" msgstr "Kündigungsdatum" -#: netbox/templates/circuits/circuit.html:70 -#: netbox/templates/ipam/inc/panels/fhrp_groups.html:15 +#: templates/circuits/circuit.html:70 +#: templates/ipam/inc/panels/fhrp_groups.html:15 msgid "Assign Group" msgstr "Gruppe zuweisen" -#: netbox/templates/circuits/circuit_terminations_swap.html:4 +#: templates/circuits/circuit_terminations_swap.html:4 msgid "Swap Circuit Terminations" msgstr "Transportnetzabschlüsse austauschen" -#: netbox/templates/circuits/circuit_terminations_swap.html:8 +#: templates/circuits/circuit_terminations_swap.html:8 #, python-format msgid "Swap these terminations for circuit %(circuit)s?" msgstr "Tauschen Sie diese Abschlüsse gegen Tranportnetz aus: %(circuit)s?" -#: netbox/templates/circuits/circuit_terminations_swap.html:14 +#: templates/circuits/circuit_terminations_swap.html:14 msgid "A side" msgstr "A Seite" -#: netbox/templates/circuits/circuit_terminations_swap.html:22 +#: templates/circuits/circuit_terminations_swap.html:22 msgid "Z side" msgstr "Z-Seite" -#: netbox/templates/circuits/circuitgroup.html:16 +#: templates/circuits/circuitgroup.html:16 msgid "Assign Circuit" msgstr "Zugewiesenes Transportnetz" -#: netbox/templates/circuits/circuitgroupassignment.html:19 +#: templates/circuits/circuitgroupassignment.html:19 msgid "Circuit Group Assignment" msgstr "Zugewiesene Transportnetzgruppe" -#: netbox/templates/circuits/circuittype.html:10 +#: templates/circuits/circuittype.html:10 msgid "Add Circuit" msgstr "Transportnetz hinzufügen" -#: netbox/templates/circuits/circuittype.html:19 +#: templates/circuits/circuittype.html:19 msgid "Circuit Type" msgstr "Transportnetz Typ" -#: netbox/templates/circuits/inc/circuit_termination.html:10 -#: netbox/templates/dcim/devicetype/component_templates.html:33 -#: netbox/templates/dcim/manufacturer.html:11 -#: netbox/templates/dcim/moduletype/component_templates.html:29 -#: netbox/templates/generic/bulk_add_component.html:22 -#: netbox/templates/users/objectpermission.html:38 -#: netbox/utilities/templates/buttons/add.html:4 -#: netbox/utilities/templates/helpers/table_config_form.html:20 +#: templates/circuits/inc/circuit_termination.html:10 +#: templates/dcim/manufacturer.html:11 +#: templates/generic/bulk_add_component.html:22 +#: templates/users/objectpermission.html:38 +#: utilities/templates/buttons/add.html:4 +#: utilities/templates/helpers/table_config_form.html:20 msgid "Add" msgstr "Hinzufügen" -#: netbox/templates/circuits/inc/circuit_termination.html:15 -#: netbox/templates/circuits/inc/circuit_termination_fields.html:36 -#: netbox/templates/dcim/inc/panels/inventory_items.html:32 -#: netbox/templates/dcim/moduletype/component_templates.html:20 -#: netbox/templates/dcim/powerpanel.html:56 -#: netbox/templates/extras/script_list.html:30 -#: netbox/templates/generic/object_edit.html:47 -#: netbox/templates/ipam/inc/ipaddress_edit_header.html:7 -#: netbox/templates/ipam/inc/panels/fhrp_groups.html:43 -#: netbox/utilities/templates/buttons/edit.html:3 +#: templates/circuits/inc/circuit_termination.html:15 +#: templates/circuits/inc/circuit_termination_fields.html:36 +#: templates/dcim/inc/panels/inventory_items.html:32 +#: templates/dcim/powerpanel.html:56 templates/extras/script_list.html:30 +#: templates/generic/object_edit.html:47 +#: templates/ipam/inc/ipaddress_edit_header.html:7 +#: templates/ipam/inc/panels/fhrp_groups.html:43 +#: utilities/templates/buttons/edit.html:3 msgid "Edit" msgstr "Bearbeiten" -#: netbox/templates/circuits/inc/circuit_termination.html:18 +#: templates/circuits/inc/circuit_termination.html:18 msgid "Swap" msgstr "Tauschen" -#: netbox/templates/circuits/inc/circuit_termination_fields.html:19 -#: netbox/templates/dcim/consoleport.html:59 -#: netbox/templates/dcim/consoleserverport.html:60 -#: netbox/templates/dcim/powerfeed.html:114 +#: templates/circuits/inc/circuit_termination_fields.html:19 +#: templates/dcim/consoleport.html:59 templates/dcim/consoleserverport.html:60 +#: templates/dcim/powerfeed.html:114 msgid "Marked as connected" msgstr "Als verbunden markiert" -#: netbox/templates/circuits/inc/circuit_termination_fields.html:21 +#: templates/circuits/inc/circuit_termination_fields.html:21 msgid "to" msgstr "zu" -#: netbox/templates/circuits/inc/circuit_termination_fields.html:31 -#: netbox/templates/circuits/inc/circuit_termination_fields.html:32 -#: netbox/templates/dcim/frontport.html:80 -#: netbox/templates/dcim/inc/connection_endpoints.html:7 -#: netbox/templates/dcim/interface.html:154 -#: netbox/templates/dcim/rearport.html:76 +#: templates/circuits/inc/circuit_termination_fields.html:31 +#: templates/circuits/inc/circuit_termination_fields.html:32 +#: templates/dcim/frontport.html:80 +#: templates/dcim/inc/connection_endpoints.html:7 +#: templates/dcim/interface.html:154 templates/dcim/rearport.html:76 msgid "Trace" msgstr "Trace" -#: netbox/templates/circuits/inc/circuit_termination_fields.html:35 +#: templates/circuits/inc/circuit_termination_fields.html:35 msgid "Edit cable" msgstr "Kabel bearbeiten" -#: netbox/templates/circuits/inc/circuit_termination_fields.html:40 +#: templates/circuits/inc/circuit_termination_fields.html:40 msgid "Remove cable" msgstr "Kabel entfernen" -#: netbox/templates/circuits/inc/circuit_termination_fields.html:41 -#: netbox/templates/dcim/bulk_disconnect.html:5 -#: netbox/templates/dcim/device/consoleports.html:12 -#: netbox/templates/dcim/device/consoleserverports.html:12 -#: netbox/templates/dcim/device/frontports.html:12 -#: netbox/templates/dcim/device/interfaces.html:16 -#: netbox/templates/dcim/device/poweroutlets.html:12 -#: netbox/templates/dcim/device/powerports.html:12 -#: netbox/templates/dcim/device/rearports.html:12 -#: netbox/templates/dcim/powerpanel.html:61 +#: templates/circuits/inc/circuit_termination_fields.html:41 +#: templates/dcim/bulk_disconnect.html:5 +#: templates/dcim/device/consoleports.html:12 +#: templates/dcim/device/consoleserverports.html:12 +#: templates/dcim/device/frontports.html:12 +#: templates/dcim/device/interfaces.html:16 +#: templates/dcim/device/poweroutlets.html:12 +#: templates/dcim/device/powerports.html:12 +#: templates/dcim/device/rearports.html:12 templates/dcim/powerpanel.html:61 msgid "Disconnect" msgstr "Trennen" -#: netbox/templates/circuits/inc/circuit_termination_fields.html:48 -#: netbox/templates/dcim/consoleport.html:69 -#: netbox/templates/dcim/consoleserverport.html:70 -#: netbox/templates/dcim/frontport.html:102 -#: netbox/templates/dcim/interface.html:180 -#: netbox/templates/dcim/interface.html:200 -#: netbox/templates/dcim/powerfeed.html:127 -#: netbox/templates/dcim/poweroutlet.html:71 -#: netbox/templates/dcim/poweroutlet.html:72 -#: netbox/templates/dcim/powerport.html:73 -#: netbox/templates/dcim/rearport.html:98 +#: templates/circuits/inc/circuit_termination_fields.html:48 +#: templates/dcim/consoleport.html:69 templates/dcim/consoleserverport.html:70 +#: templates/dcim/frontport.html:102 templates/dcim/interface.html:180 +#: templates/dcim/interface.html:200 templates/dcim/powerfeed.html:127 +#: templates/dcim/poweroutlet.html:71 templates/dcim/poweroutlet.html:72 +#: templates/dcim/powerport.html:73 templates/dcim/rearport.html:98 msgid "Connect" msgstr "Verbinden" -#: netbox/templates/circuits/inc/circuit_termination_fields.html:70 +#: templates/circuits/inc/circuit_termination_fields.html:70 msgid "Downstream" msgstr "Downstream" -#: netbox/templates/circuits/inc/circuit_termination_fields.html:71 +#: templates/circuits/inc/circuit_termination_fields.html:71 msgid "Upstream" msgstr "Upstream" -#: netbox/templates/circuits/inc/circuit_termination_fields.html:80 +#: templates/circuits/inc/circuit_termination_fields.html:80 msgid "Cross-Connect" msgstr "Cross-Connect" -#: netbox/templates/circuits/inc/circuit_termination_fields.html:84 +#: templates/circuits/inc/circuit_termination_fields.html:84 msgid "Patch Panel/Port" msgstr "Patchpanel/Anschluss" -#: netbox/templates/circuits/provider.html:11 +#: templates/circuits/provider.html:11 msgid "Add circuit" msgstr "Transportnetz hinzufügen" -#: netbox/templates/circuits/provideraccount.html:17 +#: templates/circuits/provideraccount.html:17 msgid "Provider Account" msgstr "Providerkonto" -#: netbox/templates/core/configrevision.html:35 +#: templates/core/configrevision.html:35 msgid "Configuration Data" msgstr "Daten zur Konfiguration" -#: netbox/templates/core/configrevision.html:40 +#: templates/core/configrevision.html:40 msgid "Comment" msgstr "Kommentar" -#: netbox/templates/core/configrevision_restore.html:8 -#: netbox/templates/core/configrevision_restore.html:25 -#: netbox/templates/core/configrevision_restore.html:64 +#: templates/core/configrevision_restore.html:8 +#: templates/core/configrevision_restore.html:25 +#: templates/core/configrevision_restore.html:64 msgid "Restore" msgstr "Wiederherstellen" -#: netbox/templates/core/configrevision_restore.html:36 +#: templates/core/configrevision_restore.html:36 msgid "Parameter" msgstr "Parameter" -#: netbox/templates/core/configrevision_restore.html:37 +#: templates/core/configrevision_restore.html:37 msgid "Current Value" msgstr "Aktueller Wert" -#: netbox/templates/core/configrevision_restore.html:38 +#: templates/core/configrevision_restore.html:38 msgid "New Value" msgstr "Neuer Wert" -#: netbox/templates/core/configrevision_restore.html:50 +#: templates/core/configrevision_restore.html:50 msgid "Changed" msgstr "Geändert" -#: netbox/templates/core/datafile.html:42 -#: netbox/templates/ipam/iprange.html:25 -#: netbox/templates/virtualization/virtualdisk.html:29 -#: netbox/virtualization/tables/virtualmachines.py:198 +#: templates/core/datafile.html:42 templates/ipam/iprange.html:25 +#: templates/virtualization/virtualdisk.html:29 +#: virtualization/tables/virtualmachines.py:198 msgid "Size" msgstr "Größe" -#: netbox/templates/core/datafile.html:43 +#: templates/core/datafile.html:43 msgid "bytes" msgstr "Bytes" -#: netbox/templates/core/datafile.html:46 +#: templates/core/datafile.html:46 msgid "SHA256 Hash" msgstr "SHA256-Hash" -#: netbox/templates/core/datasource.html:14 -#: netbox/templates/core/datasource.html:20 -#: netbox/utilities/templates/buttons/sync.html:5 +#: templates/core/datasource.html:14 templates/core/datasource.html:20 +#: utilities/templates/buttons/sync.html:5 msgid "Sync" msgstr "Synchronisieren" -#: netbox/templates/core/datasource.html:50 +#: templates/core/datasource.html:50 msgid "Last synced" msgstr "Zuletzt synchronisiert" -#: netbox/templates/core/datasource.html:84 +#: templates/core/datasource.html:84 msgid "Backend" msgstr "Backend" -#: netbox/templates/core/datasource.html:99 +#: templates/core/datasource.html:99 msgid "No parameters defined" msgstr "Keine Parameter definiert" -#: netbox/templates/core/datasource.html:114 +#: templates/core/datasource.html:114 msgid "Files" msgstr "Dateien" -#: netbox/templates/core/inc/config_data.html:7 +#: templates/core/inc/config_data.html:7 msgid "Rack elevations" msgstr "Rackübersichten" -#: netbox/templates/core/inc/config_data.html:10 +#: templates/core/inc/config_data.html:10 msgid "Default unit height" msgstr "Standardhöhe der Einheit" -#: netbox/templates/core/inc/config_data.html:14 +#: templates/core/inc/config_data.html:14 msgid "Default unit width" msgstr "Standardbreite der Einheit" -#: netbox/templates/core/inc/config_data.html:20 +#: templates/core/inc/config_data.html:20 msgid "Power feeds" msgstr "Stromzufuhren" -#: netbox/templates/core/inc/config_data.html:23 +#: templates/core/inc/config_data.html:23 msgid "Default voltage" msgstr "Standardspannung" -#: netbox/templates/core/inc/config_data.html:27 +#: templates/core/inc/config_data.html:27 msgid "Default amperage" msgstr "Standardstromstärke" -#: netbox/templates/core/inc/config_data.html:31 +#: templates/core/inc/config_data.html:31 msgid "Default max utilization" msgstr "Maximale Standardauslastung" -#: netbox/templates/core/inc/config_data.html:40 +#: templates/core/inc/config_data.html:40 msgid "Enforce global unique" msgstr "Weltweit einzigartig durchsetzen" -#: netbox/templates/core/inc/config_data.html:83 +#: templates/core/inc/config_data.html:83 msgid "Paginate count" msgstr "Anzahl der Seiten" -#: netbox/templates/core/inc/config_data.html:87 +#: templates/core/inc/config_data.html:87 msgid "Max page size" msgstr "Max. Seitengröße" -#: netbox/templates/core/inc/config_data.html:114 +#: templates/core/inc/config_data.html:114 msgid "User preferences" msgstr "Benutzereinstellungen" -#: netbox/templates/core/inc/config_data.html:141 +#: templates/core/inc/config_data.html:141 msgid "Job retention" msgstr "Beibehaltung der Arbeitsplätze" -#: netbox/templates/core/job.html:35 netbox/templates/core/rq_task.html:12 -#: netbox/templates/core/rq_task.html:49 netbox/templates/core/rq_task.html:58 +#: templates/core/job.html:35 templates/core/rq_task.html:12 +#: templates/core/rq_task.html:49 templates/core/rq_task.html:58 msgid "Job" msgstr "Job" -#: netbox/templates/core/job.html:58 -#: netbox/templates/extras/journalentry.html:26 +#: templates/core/job.html:58 templates/extras/journalentry.html:26 msgid "Created By" msgstr "Erstellt von" -#: netbox/templates/core/job.html:66 +#: templates/core/job.html:66 msgid "Scheduling" msgstr "Terminplanung" -#: netbox/templates/core/job.html:77 +#: templates/core/job.html:77 #, python-format msgid "every %(interval)s minutes" msgstr "jeden %(interval)s Minuten" -#: netbox/templates/core/objectchange.html:29 -#: netbox/templates/users/objectpermission.html:42 +#: templates/core/objectchange.html:29 +#: templates/users/objectpermission.html:42 msgid "Change" msgstr "Änderung" -#: netbox/templates/core/objectchange.html:79 +#: templates/core/objectchange.html:79 msgid "Difference" msgstr "Unterschied" -#: netbox/templates/core/objectchange.html:82 +#: templates/core/objectchange.html:82 msgid "Previous" msgstr "Vorherige" -#: netbox/templates/core/objectchange.html:85 +#: templates/core/objectchange.html:85 msgid "Next" msgstr "Nächste" -#: netbox/templates/core/objectchange.html:93 +#: templates/core/objectchange.html:93 msgid "Object Created" msgstr "Objekt erstellt" -#: netbox/templates/core/objectchange.html:95 +#: templates/core/objectchange.html:95 msgid "Object Deleted" msgstr "Objekt gelöscht" -#: netbox/templates/core/objectchange.html:97 +#: templates/core/objectchange.html:97 msgid "No Changes" msgstr "Keine Änderungen" -#: netbox/templates/core/objectchange.html:111 +#: templates/core/objectchange.html:111 msgid "Pre-Change Data" msgstr "Daten vor der Änderung" -#: netbox/templates/core/objectchange.html:122 +#: templates/core/objectchange.html:122 msgid "Warning: Comparing non-atomic change to previous change record" msgstr "" "Warnung: Vergleich nichtatomarer Änderungen mit dem vorherigen " "Änderungsdatensatz" -#: netbox/templates/core/objectchange.html:131 +#: templates/core/objectchange.html:131 msgid "Post-Change Data" msgstr "Daten nach der Änderung" -#: netbox/templates/core/objectchange.html:162 +#: templates/core/objectchange.html:162 #, python-format msgid "See All %(count)s Changes" msgstr "Alles ansehen %(count)s Änderungen" -#: netbox/templates/core/objectchange_list.html:9 -#: netbox/templates/extras/object_changelog.html:15 +#: templates/core/objectchange_list.html:9 +#: templates/extras/object_changelog.html:15 msgid "Change log retention" msgstr "Aufbewahrung von Protokollen ändern" -#: netbox/templates/core/objectchange_list.html:9 -#: netbox/templates/extras/object_changelog.html:15 +#: templates/core/objectchange_list.html:9 +#: templates/extras/object_changelog.html:15 msgid "days" msgstr "Tage" -#: netbox/templates/core/objectchange_list.html:9 -#: netbox/templates/extras/object_changelog.html:15 +#: templates/core/objectchange_list.html:9 +#: templates/extras/object_changelog.html:15 msgid "Indefinite" msgstr "Unbestimmt" -#: netbox/templates/core/plugin.html:21 +#: templates/core/plugin.html:22 msgid "Not installed" msgstr "Nicht installiert" -#: netbox/templates/core/plugin.html:32 +#: templates/core/plugin.html:33 msgid "Overview" msgstr "Überblick" -#: netbox/templates/core/plugin.html:38 +#: templates/core/plugin.html:39 msgid "Install" msgstr "Installieren" -#: netbox/templates/core/plugin.html:50 +#: templates/core/plugin.html:51 msgid "Plugin Details" msgstr "Plugin Details" -#: netbox/templates/core/plugin.html:57 +#: templates/core/plugin.html:58 msgid "Summary" msgstr "Zusammenfassung" -#: netbox/templates/core/plugin.html:75 +#: templates/core/plugin.html:76 msgid "License" msgstr "Lizenz" -#: netbox/templates/core/plugin.html:95 +#: templates/core/plugin.html:96 msgid "Version History" msgstr "Versionshistorie" -#: netbox/templates/core/plugin.html:106 +#: templates/core/plugin.html:107 msgid "Local Installation Instructions" msgstr "Lokale Installationsanweisungen" -#: netbox/templates/core/rq_queue_list.html:5 -#: netbox/templates/core/rq_queue_list.html:13 -#: netbox/templates/core/rq_task_list.html:14 -#: netbox/templates/core/rq_worker.html:7 +#: templates/core/rq_queue_list.html:5 templates/core/rq_queue_list.html:13 +#: templates/core/rq_task_list.html:14 templates/core/rq_worker.html:7 msgid "Background Queues" msgstr "Hintergrundaufgaben" -#: netbox/templates/core/rq_queue_list.html:24 -#: netbox/templates/core/rq_queue_list.html:25 -#: netbox/templates/core/rq_worker_list.html:49 -#: netbox/templates/core/rq_worker_list.html:50 -#: netbox/templates/extras/script_result.html:67 -#: netbox/templates/extras/script_result.html:69 -#: netbox/templates/inc/table_controls_htmx.html:30 -#: netbox/templates/inc/table_controls_htmx.html:33 +#: templates/core/rq_queue_list.html:24 templates/core/rq_queue_list.html:25 +#: templates/core/rq_worker_list.html:49 templates/core/rq_worker_list.html:50 +#: templates/extras/script_result.html:67 +#: templates/extras/script_result.html:69 +#: templates/inc/table_controls_htmx.html:30 +#: templates/inc/table_controls_htmx.html:33 msgid "Configure Table" msgstr "Tabelle konfigurieren" -#: netbox/templates/core/rq_task.html:29 +#: templates/core/rq_task.html:29 msgid "Stop" msgstr "Stopp" -#: netbox/templates/core/rq_task.html:34 +#: templates/core/rq_task.html:34 msgid "Requeue" msgstr "Warteschlange" -#: netbox/templates/core/rq_task.html:39 +#: templates/core/rq_task.html:39 msgid "Enqueue" msgstr "Warteschlange" -#: netbox/templates/core/rq_task.html:61 +#: templates/core/rq_task.html:61 msgid "Queue" msgstr "Warteschlange" -#: netbox/templates/core/rq_task.html:65 +#: templates/core/rq_task.html:65 msgid "Timeout" msgstr "Auszeit" -#: netbox/templates/core/rq_task.html:69 +#: templates/core/rq_task.html:69 msgid "Result TTL" msgstr "Ergebnis TTL" -#: netbox/templates/core/rq_task.html:89 +#: templates/core/rq_task.html:89 msgid "Meta" msgstr "Meta" -#: netbox/templates/core/rq_task.html:93 +#: templates/core/rq_task.html:93 msgid "Arguments" msgstr "Argumente" -#: netbox/templates/core/rq_task.html:97 +#: templates/core/rq_task.html:97 msgid "Keyword Arguments" msgstr "Stichwort-Argumente" -#: netbox/templates/core/rq_task.html:103 +#: templates/core/rq_task.html:103 msgid "Depends on" msgstr "Hängt davon ab" -#: netbox/templates/core/rq_task.html:109 +#: templates/core/rq_task.html:109 msgid "Exception" msgstr "Ausnahme" -#: netbox/templates/core/rq_task_list.html:28 +#: templates/core/rq_task_list.html:28 msgid "tasks in " msgstr "Aufgaben in " -#: netbox/templates/core/rq_task_list.html:33 +#: templates/core/rq_task_list.html:33 msgid "Queued Jobs" msgstr "Jobs in der Warteschlange" -#: netbox/templates/core/rq_task_list.html:64 -#: netbox/templates/extras/script_result.html:86 +#: templates/core/rq_task_list.html:64 templates/extras/script_result.html:86 #, python-format msgid "" "Select all %(count)s %(object_type_plural)s matching query" @@ -12387,398 +11711,383 @@ msgstr "" "Wählen alles %(count)s %(object_type_plural)s passende " "Abfrage" -#: netbox/templates/core/rq_worker.html:10 +#: templates/core/rq_worker.html:10 msgid "Worker Info" msgstr "Informationen zum Arbeitnehmer" -#: netbox/templates/core/rq_worker.html:31 -#: netbox/templates/core/rq_worker.html:40 +#: templates/core/rq_worker.html:31 templates/core/rq_worker.html:40 msgid "Worker" msgstr "Arbeiter" -#: netbox/templates/core/rq_worker.html:55 +#: templates/core/rq_worker.html:55 msgid "Queues" msgstr "Warteschlangen" -#: netbox/templates/core/rq_worker.html:63 +#: templates/core/rq_worker.html:63 msgid "Curent Job" msgstr "Aktuelle Jobs" -#: netbox/templates/core/rq_worker.html:67 +#: templates/core/rq_worker.html:67 msgid "Successful job count" msgstr "Erfolgreiche Jobzählung" -#: netbox/templates/core/rq_worker.html:71 +#: templates/core/rq_worker.html:71 msgid "Failed job count" msgstr "Anzahl fehlgeschlagener Jobs" -#: netbox/templates/core/rq_worker.html:75 +#: templates/core/rq_worker.html:75 msgid "Total working time" msgstr "Gesamtarbeitszeit" -#: netbox/templates/core/rq_worker.html:76 +#: templates/core/rq_worker.html:76 msgid "seconds" msgstr "Sekunden" -#: netbox/templates/core/rq_worker_list.html:13 -#: netbox/templates/core/rq_worker_list.html:21 +#: templates/core/rq_worker_list.html:13 templates/core/rq_worker_list.html:21 msgid "Background Workers" msgstr "Berufstätige im Hintergrund" -#: netbox/templates/core/rq_worker_list.html:29 +#: templates/core/rq_worker_list.html:29 #, python-format msgid "Workers in %(queue_name)s" msgstr "Arbeiter in %(queue_name)s" -#: netbox/templates/core/system.html:11 -#: netbox/utilities/templates/buttons/export.html:4 +#: templates/core/system.html:11 utilities/templates/buttons/export.html:4 msgid "Export" msgstr "Exportieren" -#: netbox/templates/core/system.html:28 +#: templates/core/system.html:28 msgid "System Status" msgstr "Systemstatus" -#: netbox/templates/core/system.html:31 +#: templates/core/system.html:31 msgid "NetBox release" msgstr "NetBox-Release" -#: netbox/templates/core/system.html:44 +#: templates/core/system.html:44 msgid "Django version" msgstr "Django-Version" -#: netbox/templates/core/system.html:48 +#: templates/core/system.html:48 msgid "PostgreSQL version" msgstr "PostgreSQL-Version" -#: netbox/templates/core/system.html:52 +#: templates/core/system.html:52 msgid "Database name" msgstr "Datenbankname" -#: netbox/templates/core/system.html:56 +#: templates/core/system.html:56 msgid "Database size" msgstr "Datenbankgröße" -#: netbox/templates/core/system.html:61 +#: templates/core/system.html:61 msgid "Unavailable" msgstr "Nicht verfügbar" -#: netbox/templates/core/system.html:66 +#: templates/core/system.html:66 msgid "RQ workers" msgstr "RQ-Mitarbeiter" -#: netbox/templates/core/system.html:69 +#: templates/core/system.html:69 msgid "default queue" msgstr "Standardwarteschlange" -#: netbox/templates/core/system.html:73 +#: templates/core/system.html:73 msgid "System time" msgstr "Systemzeit" -#: netbox/templates/core/system.html:85 +#: templates/core/system.html:85 msgid "Current Configuration" msgstr "Aktuelle Konfiguration" -#: netbox/templates/dcim/bulk_disconnect.html:9 +#: templates/dcim/bulk_disconnect.html:9 #, python-format msgid "" "Are you sure you want to disconnect these %(count)s %(obj_type_plural)s?" msgstr "Möchten Sie diese wirklich trennen? %(count)s %(obj_type_plural)s?" -#: netbox/templates/dcim/cable_trace.html:10 +#: templates/dcim/cable_trace.html:10 #, python-format msgid "Cable Trace for %(object_type)s %(object)s" msgstr "Cable Trace für %(object_type)s %(object)s" -#: netbox/templates/dcim/cable_trace.html:24 -#: netbox/templates/dcim/inc/rack_elevation.html:7 +#: templates/dcim/cable_trace.html:24 templates/dcim/inc/rack_elevation.html:7 msgid "Download SVG" msgstr "SVG herunterladen" -#: netbox/templates/dcim/cable_trace.html:30 +#: templates/dcim/cable_trace.html:30 msgid "Asymmetric Path" msgstr "Asymmetrischer Pfad" -#: netbox/templates/dcim/cable_trace.html:31 +#: templates/dcim/cable_trace.html:31 msgid "The nodes below have no links and result in an asymmetric path" msgstr "" "Die darunter liegenden Knoten haben keine Links und führen zu einem " "asymmetrischen Pfad" -#: netbox/templates/dcim/cable_trace.html:38 +#: templates/dcim/cable_trace.html:38 msgid "Path split" msgstr "Pfad geteilt" -#: netbox/templates/dcim/cable_trace.html:39 +#: templates/dcim/cable_trace.html:39 msgid "Select a node below to continue" msgstr "Wählen Sie unten einen Knoten aus, um fortzufahren" -#: netbox/templates/dcim/cable_trace.html:55 +#: templates/dcim/cable_trace.html:55 msgid "Trace Completed" msgstr "Ablaufverfolgung abgeschlossen" -#: netbox/templates/dcim/cable_trace.html:58 +#: templates/dcim/cable_trace.html:58 msgid "Total segments" msgstr "Gesamtzahl der Segmente" -#: netbox/templates/dcim/cable_trace.html:62 +#: templates/dcim/cable_trace.html:62 msgid "Total length" msgstr "Gesamtlänge" -#: netbox/templates/dcim/cable_trace.html:77 +#: templates/dcim/cable_trace.html:77 msgid "No paths found" msgstr "Keine Pfade gefunden" -#: netbox/templates/dcim/cable_trace.html:85 +#: templates/dcim/cable_trace.html:85 msgid "Related Paths" msgstr "Verwandte Pfade" -#: netbox/templates/dcim/cable_trace.html:89 +#: templates/dcim/cable_trace.html:89 msgid "Origin" msgstr "Herkunft" -#: netbox/templates/dcim/cable_trace.html:90 +#: templates/dcim/cable_trace.html:90 msgid "Destination" msgstr "Ziel" -#: netbox/templates/dcim/cable_trace.html:91 +#: templates/dcim/cable_trace.html:91 msgid "Segments" msgstr "Segmente" -#: netbox/templates/dcim/cable_trace.html:104 +#: templates/dcim/cable_trace.html:104 msgid "Incomplete" msgstr "Unvollständig" -#: netbox/templates/dcim/component_list.html:14 +#: templates/dcim/component_list.html:14 msgid "Rename Selected" msgstr "Ausgewählte umbenennen" -#: netbox/templates/dcim/consoleport.html:65 -#: netbox/templates/dcim/consoleserverport.html:66 -#: netbox/templates/dcim/frontport.html:98 -#: netbox/templates/dcim/interface.html:176 -#: netbox/templates/dcim/poweroutlet.html:69 -#: netbox/templates/dcim/powerport.html:69 +#: templates/dcim/consoleport.html:65 templates/dcim/consoleserverport.html:66 +#: templates/dcim/frontport.html:98 templates/dcim/interface.html:176 +#: templates/dcim/poweroutlet.html:69 templates/dcim/powerport.html:69 msgid "Not Connected" msgstr "Nicht verbunden" -#: netbox/templates/dcim/device.html:34 +#: templates/dcim/device.html:34 msgid "Highlight device in rack" msgstr "Gerät im Rack hervorheben" -#: netbox/templates/dcim/device.html:55 +#: templates/dcim/device.html:55 msgid "Not racked" msgstr "Nicht eingebaut" -#: netbox/templates/dcim/device.html:62 netbox/templates/dcim/site.html:94 +#: templates/dcim/device.html:62 templates/dcim/site.html:94 msgid "GPS Coordinates" msgstr "GPS-Koordinaten" -#: netbox/templates/dcim/device.html:68 netbox/templates/dcim/site.html:81 -#: netbox/templates/dcim/site.html:100 +#: templates/dcim/device.html:68 templates/dcim/site.html:81 +#: templates/dcim/site.html:100 msgid "Map" msgstr "Karte" -#: netbox/templates/dcim/device.html:108 -#: netbox/templates/dcim/inventoryitem.html:56 -#: netbox/templates/dcim/module.html:81 -#: netbox/templates/dcim/modulebay.html:74 netbox/templates/dcim/rack.html:61 +#: templates/dcim/device.html:108 templates/dcim/inventoryitem.html:56 +#: templates/dcim/module.html:81 templates/dcim/modulebay.html:74 +#: templates/dcim/rack.html:61 msgid "Asset Tag" msgstr "Asset-Tag" -#: netbox/templates/dcim/device.html:123 +#: templates/dcim/device.html:123 msgid "View Virtual Chassis" msgstr "Virtuelles Gehäuse anzeigen" -#: netbox/templates/dcim/device.html:164 +#: templates/dcim/device.html:164 msgid "Create VDC" msgstr "VDC erstellen" -#: netbox/templates/dcim/device.html:175 -#: netbox/templates/dcim/device_edit.html:64 -#: netbox/virtualization/forms/model_forms.py:223 +#: templates/dcim/device.html:175 templates/dcim/device_edit.html:64 +#: virtualization/forms/model_forms.py:223 msgid "Management" msgstr "Management" -#: netbox/templates/dcim/device.html:195 netbox/templates/dcim/device.html:211 -#: netbox/templates/dcim/device.html:227 -#: netbox/templates/virtualization/virtualmachine.html:57 -#: netbox/templates/virtualization/virtualmachine.html:73 +#: templates/dcim/device.html:195 templates/dcim/device.html:211 +#: templates/dcim/device.html:227 +#: templates/virtualization/virtualmachine.html:57 +#: templates/virtualization/virtualmachine.html:73 msgid "NAT for" msgstr "NAT für" -#: netbox/templates/dcim/device.html:197 netbox/templates/dcim/device.html:213 -#: netbox/templates/dcim/device.html:229 -#: netbox/templates/virtualization/virtualmachine.html:59 -#: netbox/templates/virtualization/virtualmachine.html:75 +#: templates/dcim/device.html:197 templates/dcim/device.html:213 +#: templates/dcim/device.html:229 +#: templates/virtualization/virtualmachine.html:59 +#: templates/virtualization/virtualmachine.html:75 msgid "NAT" msgstr "NAT" -#: netbox/templates/dcim/device.html:252 netbox/templates/dcim/rack.html:73 +#: templates/dcim/device.html:252 templates/dcim/rack.html:73 msgid "Power Utilization" msgstr "Energienutzung" -#: netbox/templates/dcim/device.html:256 +#: templates/dcim/device.html:256 msgid "Input" msgstr "Eingabe" -#: netbox/templates/dcim/device.html:257 +#: templates/dcim/device.html:257 msgid "Outlets" msgstr "Abgänge" -#: netbox/templates/dcim/device.html:258 +#: templates/dcim/device.html:258 msgid "Allocated" msgstr "Zugeteilt" -#: netbox/templates/dcim/device.html:268 netbox/templates/dcim/device.html:270 -#: netbox/templates/dcim/device.html:286 -#: netbox/templates/dcim/powerfeed.html:67 +#: templates/dcim/device.html:268 templates/dcim/device.html:270 +#: templates/dcim/device.html:286 templates/dcim/powerfeed.html:67 msgid "VA" msgstr "VA" -#: netbox/templates/dcim/device.html:280 +#: templates/dcim/device.html:280 msgctxt "Leg of a power feed" msgid "Leg" msgstr "Bein" -#: netbox/templates/dcim/device.html:306 -#: netbox/templates/virtualization/virtualmachine.html:158 +#: templates/dcim/device.html:306 +#: templates/virtualization/virtualmachine.html:158 msgid "Add a service" msgstr "Einen Dienst hinzufügen" -#: netbox/templates/dcim/device/base.html:21 -#: netbox/templates/dcim/device_list.html:9 -#: netbox/templates/dcim/devicetype/base.html:18 -#: netbox/templates/dcim/module.html:18 -#: netbox/templates/dcim/moduletype/base.html:18 -#: netbox/templates/virtualization/virtualmachine/base.html:22 -#: netbox/templates/virtualization/virtualmachine_list.html:8 +#: templates/dcim/device/base.html:21 templates/dcim/device_list.html:9 +#: templates/dcim/devicetype/base.html:18 +#: templates/dcim/inc/moduletype_buttons.html:9 templates/dcim/module.html:18 +#: templates/virtualization/virtualmachine/base.html:22 +#: templates/virtualization/virtualmachine_list.html:8 msgid "Add Components" msgstr "Komponenten hinzufügen" -#: netbox/templates/dcim/device/consoleports.html:24 +#: templates/dcim/device/consoleports.html:24 msgid "Add Console Ports" msgstr "Konsolenanschlüsse hinzufügen" -#: netbox/templates/dcim/device/consoleserverports.html:24 +#: templates/dcim/device/consoleserverports.html:24 msgid "Add Console Server Ports" msgstr "Konsolenserveranschlüsse hinzufügen" -#: netbox/templates/dcim/device/devicebays.html:10 +#: templates/dcim/device/devicebays.html:10 msgid "Add Device Bays" msgstr "Geräteeinsätze hinzufügen" -#: netbox/templates/dcim/device/frontports.html:24 +#: templates/dcim/device/frontports.html:24 msgid "Add Front Ports" msgstr "Frontanschlüsse hinzufügen" -#: netbox/templates/dcim/device/inc/interface_table_controls.html:9 +#: templates/dcim/device/inc/interface_table_controls.html:9 msgid "Hide Enabled" msgstr "Aktivierte ausblenden" -#: netbox/templates/dcim/device/inc/interface_table_controls.html:10 +#: templates/dcim/device/inc/interface_table_controls.html:10 msgid "Hide Disabled" msgstr "Deaktivierte ausblenden" -#: netbox/templates/dcim/device/inc/interface_table_controls.html:11 +#: templates/dcim/device/inc/interface_table_controls.html:11 msgid "Hide Virtual" msgstr "Virtuelle ausblenden" -#: netbox/templates/dcim/device/inc/interface_table_controls.html:12 +#: templates/dcim/device/inc/interface_table_controls.html:12 msgid "Hide Disconnected" msgstr "Getrennte ausblenden" -#: netbox/templates/dcim/device/interfaces.html:27 +#: templates/dcim/device/interfaces.html:27 msgid "Add Interfaces" msgstr "Schnittstellen hinzufügen" -#: netbox/templates/dcim/device/inventory.html:10 -#: netbox/templates/dcim/inc/panels/inventory_items.html:10 +#: templates/dcim/device/inventory.html:10 +#: templates/dcim/inc/panels/inventory_items.html:10 msgid "Add Inventory Item" msgstr "Inventargegenstand hinzufügen" -#: netbox/templates/dcim/device/modulebays.html:10 +#: templates/dcim/device/modulebays.html:10 msgid "Add Module Bays" msgstr "Moduleinsätze hinzufügen" -#: netbox/templates/dcim/device/poweroutlets.html:24 +#: templates/dcim/device/poweroutlets.html:24 msgid "Add Power Outlets" msgstr "Steckdosen hinzufügen" -#: netbox/templates/dcim/device/powerports.html:24 +#: templates/dcim/device/powerports.html:24 msgid "Add Power Port" msgstr "Stromanschluss hinzufügen" -#: netbox/templates/dcim/device/rearports.html:24 +#: templates/dcim/device/rearports.html:24 msgid "Add Rear Ports" msgstr "Rückanschlüsse hinzufügen" -#: netbox/templates/dcim/device/render_config.html:5 -#: netbox/templates/virtualization/virtualmachine/render_config.html:5 +#: templates/dcim/device/render_config.html:5 +#: templates/virtualization/virtualmachine/render_config.html:5 msgid "Config" msgstr "Konfig" -#: netbox/templates/dcim/device/render_config.html:35 -#: netbox/templates/virtualization/virtualmachine/render_config.html:35 +#: templates/dcim/device/render_config.html:35 +#: templates/virtualization/virtualmachine/render_config.html:35 msgid "Context Data" msgstr "Kontextdaten" -#: netbox/templates/dcim/device/render_config.html:53 -#: netbox/templates/virtualization/virtualmachine/render_config.html:53 +#: templates/dcim/device/render_config.html:53 +#: templates/virtualization/virtualmachine/render_config.html:53 msgid "Rendered Config" msgstr "Gerenderte Konfiguration" -#: netbox/templates/dcim/device/render_config.html:55 -#: netbox/templates/virtualization/virtualmachine/render_config.html:55 +#: templates/dcim/device/render_config.html:55 +#: templates/virtualization/virtualmachine/render_config.html:55 msgid "Download" msgstr "Herunterladen" -#: netbox/templates/dcim/device/render_config.html:61 -#: netbox/templates/virtualization/virtualmachine/render_config.html:61 +#: templates/dcim/device/render_config.html:61 +#: templates/virtualization/virtualmachine/render_config.html:61 msgid "No configuration template found" msgstr "Keine Konfigurationsvorlage gefunden" -#: netbox/templates/dcim/device_edit.html:44 +#: templates/dcim/device_edit.html:44 msgid "Parent Bay" msgstr "Übergeordneter Einsatz" -#: netbox/templates/dcim/device_edit.html:48 -#: netbox/utilities/templates/form_helpers/render_field.html:22 +#: templates/dcim/device_edit.html:48 +#: utilities/templates/form_helpers/render_field.html:22 msgid "Regenerate Slug" msgstr "URL-Slug regenerieren" -#: netbox/templates/dcim/device_edit.html:49 -#: netbox/templates/generic/bulk_remove.html:21 -#: netbox/utilities/templates/helpers/table_config_form.html:23 +#: templates/dcim/device_edit.html:49 templates/generic/bulk_remove.html:21 +#: utilities/templates/helpers/table_config_form.html:23 msgid "Remove" msgstr "entfernen" -#: netbox/templates/dcim/device_edit.html:110 +#: templates/dcim/device_edit.html:110 msgid "Local Config Context Data" msgstr "Lokale Konfigurationskontextdaten" -#: netbox/templates/dcim/device_list.html:82 -#: netbox/templates/dcim/moduletype/component_templates.html:17 -#: netbox/templates/generic/bulk_rename.html:57 -#: netbox/templates/virtualization/virtualmachine/interfaces.html:11 -#: netbox/templates/virtualization/virtualmachine/virtual_disks.html:11 +#: templates/dcim/device_list.html:82 templates/generic/bulk_rename.html:57 +#: templates/virtualization/virtualmachine/interfaces.html:11 +#: templates/virtualization/virtualmachine/virtual_disks.html:11 msgid "Rename" msgstr "Umbenennen" -#: netbox/templates/dcim/devicebay.html:17 +#: templates/dcim/devicebay.html:17 msgid "Device Bay" msgstr "Geräteeinsatz" -#: netbox/templates/dcim/devicebay.html:43 +#: templates/dcim/devicebay.html:43 msgid "Installed Device" msgstr "Installiertes Gerät" -#: netbox/templates/dcim/devicebay_depopulate.html:6 +#: templates/dcim/devicebay_depopulate.html:6 #, python-format msgid "Remove %(device)s from %(device_bay)s?" msgstr "entferne %(device)s von %(device_bay)s?" -#: netbox/templates/dcim/devicebay_depopulate.html:13 +#: templates/dcim/devicebay_depopulate.html:13 #, python-format msgid "" "Are you sure you want to remove %(device)s from " @@ -12787,449 +12096,430 @@ msgstr "" "Sind Sie sicher, dass Sie entfernen möchten %(device)s von " "%(device_bay)s?" -#: netbox/templates/dcim/devicebay_populate.html:13 +#: templates/dcim/devicebay_populate.html:13 msgid "Populate" msgstr "Bestücken" -#: netbox/templates/dcim/devicebay_populate.html:22 +#: templates/dcim/devicebay_populate.html:22 msgid "Bay" msgstr "Einsatz" -#: netbox/templates/dcim/devicerole.html:14 -#: netbox/templates/dcim/platform.html:17 +#: templates/dcim/devicerole.html:14 templates/dcim/platform.html:17 msgid "Add Device" msgstr "Gerät hinzufügen" -#: netbox/templates/dcim/devicerole.html:40 +#: templates/dcim/devicerole.html:40 msgid "VM Role" msgstr "VM-Rolle" -#: netbox/templates/dcim/devicetype.html:18 -#: netbox/templates/dcim/moduletype.html:18 +#: templates/dcim/devicetype.html:18 templates/dcim/moduletype.html:29 msgid "Model Name" msgstr "Name des Modells" -#: netbox/templates/dcim/devicetype.html:25 -#: netbox/templates/dcim/moduletype.html:22 +#: templates/dcim/devicetype.html:25 templates/dcim/moduletype.html:33 msgid "Part Number" msgstr "Teilnummer" -#: netbox/templates/dcim/devicetype.html:41 +#: templates/dcim/devicetype.html:41 msgid "Exclude From Utilization" msgstr "Von der Auslastung ausschließen" -#: netbox/templates/dcim/devicetype.html:59 +#: templates/dcim/devicetype.html:59 msgid "Parent/Child" msgstr "Übergeordnet/Untergeordnet" -#: netbox/templates/dcim/devicetype.html:71 +#: templates/dcim/devicetype.html:71 msgid "Front Image" msgstr "Vorderes Bild" -#: netbox/templates/dcim/devicetype.html:83 +#: templates/dcim/devicetype.html:83 msgid "Rear Image" msgstr "Hinteres Bild" -#: netbox/templates/dcim/frontport.html:54 +#: templates/dcim/frontport.html:54 msgid "Rear Port Position" msgstr "Position des Rück-Anschlusses" -#: netbox/templates/dcim/frontport.html:72 -#: netbox/templates/dcim/interface.html:144 -#: netbox/templates/dcim/poweroutlet.html:63 -#: netbox/templates/dcim/powerport.html:63 -#: netbox/templates/dcim/rearport.html:68 +#: templates/dcim/frontport.html:72 templates/dcim/interface.html:144 +#: templates/dcim/poweroutlet.html:63 templates/dcim/powerport.html:63 +#: templates/dcim/rearport.html:68 msgid "Marked as Connected" msgstr "Als verbunden markiert" -#: netbox/templates/dcim/frontport.html:86 -#: netbox/templates/dcim/rearport.html:82 +#: templates/dcim/frontport.html:86 templates/dcim/rearport.html:82 msgid "Connection Status" msgstr "Status der Verbindung" -#: netbox/templates/dcim/htmx/cable_edit.html:10 +#: templates/dcim/htmx/cable_edit.html:10 msgid "A Side" msgstr "A-Seite" -#: netbox/templates/dcim/htmx/cable_edit.html:30 +#: templates/dcim/htmx/cable_edit.html:30 msgid "B Side" msgstr "B-Seite" -#: netbox/templates/dcim/inc/cable_termination.html:65 +#: templates/dcim/inc/cable_termination.html:65 msgid "No termination" msgstr "Kein Abschlusspunkt" -#: netbox/templates/dcim/inc/cable_toggle_buttons.html:3 +#: templates/dcim/inc/cable_toggle_buttons.html:3 msgid "Mark Planned" msgstr "Als geplant markieren" -#: netbox/templates/dcim/inc/cable_toggle_buttons.html:6 +#: templates/dcim/inc/cable_toggle_buttons.html:6 msgid "Mark Installed" msgstr "Als installiert markieren" -#: netbox/templates/dcim/inc/connection_endpoints.html:13 +#: templates/dcim/inc/connection_endpoints.html:13 msgid "Path Status" msgstr "Pfadstatus" -#: netbox/templates/dcim/inc/connection_endpoints.html:18 +#: templates/dcim/inc/connection_endpoints.html:18 msgid "Not Reachable" msgstr "Nicht erreichbar" -#: netbox/templates/dcim/inc/connection_endpoints.html:23 +#: templates/dcim/inc/connection_endpoints.html:23 msgid "Path Endpoints" msgstr "Pfadendpunkte" -#: netbox/templates/dcim/inc/endpoint_connection.html:8 -#: netbox/templates/dcim/powerfeed.html:120 -#: netbox/templates/dcim/rearport.html:94 +#: templates/dcim/inc/endpoint_connection.html:8 +#: templates/dcim/powerfeed.html:120 templates/dcim/rearport.html:94 msgid "Not connected" msgstr "Nicht verbunden" -#: netbox/templates/dcim/inc/interface_vlans_table.html:6 +#: templates/dcim/inc/interface_vlans_table.html:6 msgid "Untagged" msgstr "Untagged" -#: netbox/templates/dcim/inc/interface_vlans_table.html:37 +#: templates/dcim/inc/interface_vlans_table.html:37 msgid "No VLANs Assigned" msgstr "Keine VLANs zugewiesen" -#: netbox/templates/dcim/inc/interface_vlans_table.html:44 -#: netbox/templates/ipam/prefix_list.html:16 -#: netbox/templates/ipam/prefix_list.html:33 +#: templates/dcim/inc/interface_vlans_table.html:44 +#: templates/ipam/prefix_list.html:16 templates/ipam/prefix_list.html:33 msgid "Clear" msgstr "Lösche" -#: netbox/templates/dcim/inc/interface_vlans_table.html:47 +#: templates/dcim/inc/interface_vlans_table.html:47 msgid "Clear All" msgstr "Alles löschen" -#: netbox/templates/dcim/inc/panels/racktype_dimensions.html:38 +#: templates/dcim/inc/panels/racktype_dimensions.html:38 msgid "Mounting Depth" msgstr "Einbautiefe" -#: netbox/templates/dcim/inc/panels/racktype_numbering.html:6 +#: templates/dcim/inc/panels/racktype_numbering.html:6 msgid "Starting Unit" msgstr "Start HE" -#: netbox/templates/dcim/inc/panels/racktype_numbering.html:10 +#: templates/dcim/inc/panels/racktype_numbering.html:10 msgid "Descending Units" msgstr "Absteigende HE's" -#: netbox/templates/dcim/inc/rack_elevation.html:3 +#: templates/dcim/inc/rack_elevation.html:3 msgid "Rack elevation" msgstr "Höhe des Racks" -#: netbox/templates/dcim/interface.html:17 +#: templates/dcim/interface.html:17 msgid "Add Child Interface" msgstr "Untergeordnete Schnittstelle hinzufügen" -#: netbox/templates/dcim/interface.html:50 +#: templates/dcim/interface.html:50 msgid "Speed/Duplex" msgstr "Geschwindigkeit/Duplex" -#: netbox/templates/dcim/interface.html:73 +#: templates/dcim/interface.html:73 msgid "PoE Mode" msgstr "PoE-Modus" -#: netbox/templates/dcim/interface.html:77 +#: templates/dcim/interface.html:77 msgid "PoE Type" msgstr "PoE-Typ" -#: netbox/templates/dcim/interface.html:81 -#: netbox/templates/virtualization/vminterface.html:63 +#: templates/dcim/interface.html:81 +#: templates/virtualization/vminterface.html:63 msgid "802.1Q Mode" msgstr "802.1Q-Modus" -#: netbox/templates/dcim/interface.html:125 -#: netbox/templates/virtualization/vminterface.html:59 +#: templates/dcim/interface.html:125 +#: templates/virtualization/vminterface.html:59 msgid "MAC Address" msgstr "MAC-Adresse" -#: netbox/templates/dcim/interface.html:151 +#: templates/dcim/interface.html:151 msgid "Wireless Link" msgstr "Funkverbindung" -#: netbox/templates/dcim/interface.html:218 netbox/vpn/choices.py:55 +#: templates/dcim/interface.html:218 vpn/choices.py:55 msgid "Peer" msgstr "Peer" -#: netbox/templates/dcim/interface.html:230 -#: netbox/templates/wireless/inc/wirelesslink_interface.html:26 +#: templates/dcim/interface.html:230 +#: templates/wireless/inc/wirelesslink_interface.html:26 msgid "Channel" msgstr "Kanal" -#: netbox/templates/dcim/interface.html:239 -#: netbox/templates/wireless/inc/wirelesslink_interface.html:32 +#: templates/dcim/interface.html:239 +#: templates/wireless/inc/wirelesslink_interface.html:32 msgid "Channel Frequency" msgstr "Kanal-Frequenz" -#: netbox/templates/dcim/interface.html:242 -#: netbox/templates/dcim/interface.html:250 -#: netbox/templates/dcim/interface.html:261 -#: netbox/templates/dcim/interface.html:269 +#: templates/dcim/interface.html:242 templates/dcim/interface.html:250 +#: templates/dcim/interface.html:261 templates/dcim/interface.html:269 msgid "MHz" msgstr "MHz" -#: netbox/templates/dcim/interface.html:258 -#: netbox/templates/wireless/inc/wirelesslink_interface.html:42 +#: templates/dcim/interface.html:258 +#: templates/wireless/inc/wirelesslink_interface.html:42 msgid "Channel Width" msgstr "Kanal-Breite" -#: netbox/templates/dcim/interface.html:285 -#: netbox/templates/wireless/wirelesslan.html:14 -#: netbox/templates/wireless/wirelesslink.html:21 -#: netbox/wireless/forms/bulk_edit.py:60 -#: netbox/wireless/forms/bulk_edit.py:102 -#: netbox/wireless/forms/filtersets.py:40 -#: netbox/wireless/forms/filtersets.py:80 netbox/wireless/models.py:82 -#: netbox/wireless/models.py:156 netbox/wireless/tables/wirelesslan.py:44 +#: templates/dcim/interface.html:285 templates/wireless/wirelesslan.html:14 +#: templates/wireless/wirelesslink.html:21 wireless/forms/bulk_edit.py:60 +#: wireless/forms/bulk_edit.py:102 wireless/forms/filtersets.py:40 +#: wireless/forms/filtersets.py:80 wireless/models.py:82 +#: wireless/models.py:156 wireless/tables/wirelesslan.py:44 msgid "SSID" msgstr "SSID" -#: netbox/templates/dcim/interface.html:305 +#: templates/dcim/interface.html:305 msgid "LAG Members" msgstr "LAG-Mitglieder" -#: netbox/templates/dcim/interface.html:323 +#: templates/dcim/interface.html:323 msgid "No member interfaces" msgstr "Keine Mitgliederschnittstellen" -#: netbox/templates/dcim/interface.html:343 -#: netbox/templates/ipam/fhrpgroup.html:73 -#: netbox/templates/ipam/iprange/ip_addresses.html:7 -#: netbox/templates/ipam/prefix/ip_addresses.html:7 -#: netbox/templates/virtualization/vminterface.html:89 +#: templates/dcim/interface.html:343 templates/ipam/fhrpgroup.html:73 +#: templates/ipam/iprange/ip_addresses.html:7 +#: templates/ipam/prefix/ip_addresses.html:7 +#: templates/virtualization/vminterface.html:89 msgid "Add IP Address" msgstr "IP-Adresse hinzufügen" -#: netbox/templates/dcim/inventoryitem.html:24 +#: templates/dcim/inventoryitem.html:24 msgid "Parent Item" msgstr "Übergeordneter Artikel" -#: netbox/templates/dcim/inventoryitem.html:48 +#: templates/dcim/inventoryitem.html:48 msgid "Part ID" msgstr "Teile-ID" -#: netbox/templates/dcim/location.html:17 +#: templates/dcim/location.html:17 msgid "Add Child Location" msgstr "Untergeordnete Lokation hinzufügen" -#: netbox/templates/dcim/location.html:77 +#: templates/dcim/location.html:77 msgid "Child Locations" msgstr "Untergeordnete Lokationen" -#: netbox/templates/dcim/location.html:81 netbox/templates/dcim/site.html:131 +#: templates/dcim/location.html:81 templates/dcim/site.html:131 msgid "Add a Location" msgstr "Einen Lokation hinzufügen" -#: netbox/templates/dcim/location.html:94 netbox/templates/dcim/site.html:144 +#: templates/dcim/location.html:94 templates/dcim/site.html:144 msgid "Add a Device" msgstr "Ein Gerät hinzufügen" -#: netbox/templates/dcim/manufacturer.html:16 +#: templates/dcim/manufacturer.html:16 msgid "Add Device Type" msgstr "Gerätetyp hinzufügen" -#: netbox/templates/dcim/manufacturer.html:21 +#: templates/dcim/manufacturer.html:21 msgid "Add Module Type" msgstr "Modultyp hinzufügen" -#: netbox/templates/dcim/powerfeed.html:53 +#: templates/dcim/powerfeed.html:53 msgid "Connected Device" msgstr "Verbundenes Gerät" -#: netbox/templates/dcim/powerfeed.html:63 +#: templates/dcim/powerfeed.html:63 msgid "Utilization (Allocated" msgstr "Auslastung (zugewiesen)" -#: netbox/templates/dcim/powerfeed.html:80 +#: templates/dcim/powerfeed.html:80 msgid "Electrical Characteristics" msgstr "Elektrische Eigenschaften" -#: netbox/templates/dcim/powerfeed.html:88 +#: templates/dcim/powerfeed.html:88 msgctxt "Abbreviation for volts" msgid "V" msgstr "V" -#: netbox/templates/dcim/powerfeed.html:92 +#: templates/dcim/powerfeed.html:92 msgctxt "Abbreviation for amperes" msgid "A" msgstr "A" -#: netbox/templates/dcim/poweroutlet.html:48 +#: templates/dcim/poweroutlet.html:48 msgid "Feed Leg" msgstr "Phasenlage" -#: netbox/templates/dcim/powerpanel.html:72 +#: templates/dcim/powerpanel.html:72 msgid "Add Power Feeds" msgstr "Stromzufuhr hinzufügen" -#: netbox/templates/dcim/powerport.html:44 +#: templates/dcim/powerport.html:44 msgid "Maximum Draw" msgstr "maximale Auslastung" -#: netbox/templates/dcim/powerport.html:48 +#: templates/dcim/powerport.html:48 msgid "Allocated Draw" msgstr "zugewiesene Auslastung" -#: netbox/templates/dcim/rack.html:69 +#: templates/dcim/rack.html:69 msgid "Space Utilization" msgstr "Höheneinheitennutzung" -#: netbox/templates/dcim/rack.html:84 netbox/templates/dcim/racktype.html:44 +#: templates/dcim/rack.html:84 templates/dcim/racktype.html:44 msgid "Rack Weight" msgstr "Gewicht des Racks" -#: netbox/templates/dcim/rack.html:94 netbox/templates/dcim/racktype.html:54 +#: templates/dcim/rack.html:94 templates/dcim/racktype.html:54 msgid "Maximum Weight" msgstr "Maximales Gewicht" -#: netbox/templates/dcim/rack.html:104 +#: templates/dcim/rack.html:104 msgid "Total Weight" msgstr "Gesamtgewicht" -#: netbox/templates/dcim/rack.html:125 -#: netbox/templates/dcim/rack_elevation_list.html:15 +#: templates/dcim/rack.html:125 templates/dcim/rack_elevation_list.html:15 msgid "Images and Labels" msgstr "Bilder und Beschriftungen" -#: netbox/templates/dcim/rack.html:126 -#: netbox/templates/dcim/rack_elevation_list.html:16 +#: templates/dcim/rack.html:126 templates/dcim/rack_elevation_list.html:16 msgid "Images only" msgstr "Nur Bilder" -#: netbox/templates/dcim/rack.html:127 -#: netbox/templates/dcim/rack_elevation_list.html:17 +#: templates/dcim/rack.html:127 templates/dcim/rack_elevation_list.html:17 msgid "Labels only" msgstr "Nur Beschriftungen" -#: netbox/templates/dcim/rack/reservations.html:8 +#: templates/dcim/rack/reservations.html:8 msgid "Add reservation" msgstr "Reservierung hinzufügen" -#: netbox/templates/dcim/rack_elevation_list.html:12 +#: templates/dcim/rack_elevation_list.html:12 msgid "View List" msgstr "Liste ansehen" -#: netbox/templates/dcim/rack_elevation_list.html:14 +#: templates/dcim/rack_elevation_list.html:14 msgid "Select rack view" msgstr "Wählen Sie eine Rackansicht" -#: netbox/templates/dcim/rack_elevation_list.html:25 +#: templates/dcim/rack_elevation_list.html:25 msgid "Sort By" msgstr "Sortieren nach" -#: netbox/templates/dcim/rack_elevation_list.html:74 +#: templates/dcim/rack_elevation_list.html:74 msgid "No Racks Found" msgstr "Keine Racks gefunden" -#: netbox/templates/dcim/rack_list.html:8 +#: templates/dcim/rack_list.html:8 msgid "View Elevations" msgstr "Höhen anzeigen" -#: netbox/templates/dcim/rackreservation.html:42 +#: templates/dcim/rackreservation.html:42 msgid "Reservation Details" msgstr "Einzelheiten der Reservierung" -#: netbox/templates/dcim/rackrole.html:10 +#: templates/dcim/rackrole.html:10 msgid "Add Rack" msgstr "Rack hinzufügen" -#: netbox/templates/dcim/rearport.html:50 +#: templates/dcim/rearport.html:50 msgid "Positions" msgstr "Positionen" -#: netbox/templates/dcim/region.html:17 -#: netbox/templates/dcim/sitegroup.html:17 +#: templates/dcim/region.html:17 templates/dcim/sitegroup.html:17 msgid "Add Site" msgstr "Standort hinzufügen" -#: netbox/templates/dcim/region.html:55 +#: templates/dcim/region.html:55 msgid "Child Regions" msgstr "Untergeordnete Regionen" -#: netbox/templates/dcim/region.html:59 +#: templates/dcim/region.html:59 msgid "Add Region" msgstr "Region hinzufügen" -#: netbox/templates/dcim/site.html:64 +#: templates/dcim/site.html:64 msgid "Time Zone" msgstr "Zeitzone" -#: netbox/templates/dcim/site.html:67 +#: templates/dcim/site.html:67 msgid "UTC" msgstr "UTC" -#: netbox/templates/dcim/site.html:68 +#: templates/dcim/site.html:68 msgid "Site time" msgstr "Uhrzeit am Standort" -#: netbox/templates/dcim/site.html:75 +#: templates/dcim/site.html:75 msgid "Physical Address" msgstr "Physische Adresse" -#: netbox/templates/dcim/site.html:90 +#: templates/dcim/site.html:90 msgid "Shipping Address" msgstr "Lieferadresse" -#: netbox/templates/dcim/sitegroup.html:55 -#: netbox/templates/tenancy/contactgroup.html:46 -#: netbox/templates/tenancy/tenantgroup.html:55 -#: netbox/templates/wireless/wirelesslangroup.html:55 +#: templates/dcim/sitegroup.html:55 templates/tenancy/contactgroup.html:46 +#: templates/tenancy/tenantgroup.html:55 +#: templates/wireless/wirelesslangroup.html:55 msgid "Child Groups" msgstr "Untergeordnete Gruppen" -#: netbox/templates/dcim/sitegroup.html:59 +#: templates/dcim/sitegroup.html:59 msgid "Add Site Group" msgstr "Standortgruppe hinzufügen" -#: netbox/templates/dcim/trace/attachment.html:5 -#: netbox/templates/extras/exporttemplate.html:31 +#: templates/dcim/trace/attachment.html:5 +#: templates/extras/exporttemplate.html:31 msgid "Attachment" msgstr "Anlage" -#: netbox/templates/dcim/virtualchassis.html:57 +#: templates/dcim/virtualchassis.html:57 msgid "Add Member" msgstr "Mitglied hinzufügen" -#: netbox/templates/dcim/virtualchassis_add.html:18 +#: templates/dcim/virtualchassis_add.html:18 msgid "Member Devices" msgstr "Mitgliedsgeräte" -#: netbox/templates/dcim/virtualchassis_add_member.html:10 +#: templates/dcim/virtualchassis_add_member.html:10 #, python-format msgid "Add New Member to Virtual Chassis %(virtual_chassis)s" msgstr "Neues Mitglied zu virtuellem Gehäuse hinzufügen %(virtual_chassis)s" -#: netbox/templates/dcim/virtualchassis_add_member.html:19 +#: templates/dcim/virtualchassis_add_member.html:19 msgid "Add New Member" msgstr "Neues Mitglied hinzufügen" -#: netbox/templates/dcim/virtualchassis_add_member.html:27 -#: netbox/templates/generic/object_edit.html:78 -#: netbox/templates/users/objectpermission.html:31 -#: netbox/users/forms/filtersets.py:67 netbox/users/forms/model_forms.py:312 +#: templates/dcim/virtualchassis_add_member.html:27 +#: templates/generic/object_edit.html:78 +#: templates/users/objectpermission.html:31 users/forms/filtersets.py:67 +#: users/forms/model_forms.py:312 msgid "Actions" msgstr "Aktionen" -#: netbox/templates/dcim/virtualchassis_add_member.html:29 +#: templates/dcim/virtualchassis_add_member.html:29 msgid "Save & Add Another" msgstr "Speichern & weiteres hinzufügen" -#: netbox/templates/dcim/virtualchassis_edit.html:7 +#: templates/dcim/virtualchassis_edit.html:7 #, python-format msgid "Editing Virtual Chassis %(name)s" msgstr "Virtuelles Gehäuse %(name)s bearbeiten" -#: netbox/templates/dcim/virtualchassis_edit.html:53 +#: templates/dcim/virtualchassis_edit.html:53 msgid "Rack/Unit" msgstr "Rack/Einheit" -#: netbox/templates/dcim/virtualchassis_remove_member.html:5 +#: templates/dcim/virtualchassis_remove_member.html:5 msgid "Remove Virtual Chassis Member" msgstr "Virtuelles Gehäusemitglied entfernen" -#: netbox/templates/dcim/virtualchassis_remove_member.html:9 +#: templates/dcim/virtualchassis_remove_member.html:9 #, python-format msgid "" "Are you sure you want to remove %(device)s from virtual " @@ -13238,12 +12528,11 @@ msgstr "" "Sind Sie sicher, dass Sie entfernen möchten %(device)s aus " "dem virtuellen Gehäuse %(name)s?" -#: netbox/templates/dcim/virtualdevicecontext.html:26 -#: netbox/templates/vpn/l2vpn.html:18 +#: templates/dcim/virtualdevicecontext.html:26 templates/vpn/l2vpn.html:18 msgid "Identifier" msgstr "Identifier" -#: netbox/templates/exceptions/import_error.html:6 +#: templates/exceptions/import_error.html:6 msgid "" "A module import error occurred during this request. Common causes include " "the following:" @@ -13251,11 +12540,11 @@ msgstr "" "Während dieser Anfrage ist ein Modulimportfehler aufgetreten. Zu den " "häufigsten Ursachen gehören die folgenden:" -#: netbox/templates/exceptions/import_error.html:10 +#: templates/exceptions/import_error.html:10 msgid "Missing required packages" msgstr "Erforderliche Pakete fehlen" -#: netbox/templates/exceptions/import_error.html:11 +#: templates/exceptions/import_error.html:11 msgid "" "This installation of NetBox might be missing one or more required Python " "packages. These packages are listed in requirements.txt and " @@ -13272,11 +12561,11 @@ msgstr "" " aus einfrieren von der Konsole aus und vergleichen Sie die " "Ausgabe mit der Liste der benötigten Pakete." -#: netbox/templates/exceptions/import_error.html:20 +#: templates/exceptions/import_error.html:20 msgid "WSGI service not restarted after upgrade" msgstr "Der WSGI-Dienst wurde nach dem Upgrade nicht neu gestartet" -#: netbox/templates/exceptions/import_error.html:21 +#: templates/exceptions/import_error.html:21 msgid "" "If this installation has recently been upgraded, check that the WSGI service" " (e.g. gunicorn or uWSGI) has been restarted. This ensures that the new code" @@ -13286,7 +12575,7 @@ msgstr "" "WSGI-Dienst (z. B. gunicorn oder uWSGI) neu gestartet wurde. Dadurch wird " "sichergestellt, dass der neue Code ausgeführt wird." -#: netbox/templates/exceptions/permission_error.html:6 +#: templates/exceptions/permission_error.html:6 msgid "" "A file permission error was detected while processing this request. Common " "causes include the following:" @@ -13294,11 +12583,11 @@ msgstr "" "Bei der Verarbeitung dieser Anfrage wurde ein Dateiberechtigungsfehler " "festgestellt. Zu den häufigsten Ursachen gehören die folgenden:" -#: netbox/templates/exceptions/permission_error.html:10 +#: templates/exceptions/permission_error.html:10 msgid "Insufficient write permission to the media root" msgstr "Ungenügende Schreibrechte im Medienverzeichnis" -#: netbox/templates/exceptions/permission_error.html:11 +#: templates/exceptions/permission_error.html:11 #, python-format msgid "" "The configured media root is %(media_root)s. Ensure that the " @@ -13309,7 +12598,7 @@ msgstr "" " Sie sicher, dass der Benutzer NetBox ausgeführt wird und Zugriff hat, um " "Dateien innerhalb dieses Pfads zu schreiben." -#: netbox/templates/exceptions/programming_error.html:6 +#: templates/exceptions/programming_error.html:6 msgid "" "A database programming error was detected while processing this request. " "Common causes include the following:" @@ -13317,11 +12606,11 @@ msgstr "" "Bei der Verarbeitung dieser Anfrage wurde ein Datenbankprogrammierfehler " "festgestellt. Zu den häufigsten Ursachen gehören die folgenden:" -#: netbox/templates/exceptions/programming_error.html:10 +#: templates/exceptions/programming_error.html:10 msgid "Database migrations missing" msgstr "Datenbankmigrationen fehlen" -#: netbox/templates/exceptions/programming_error.html:11 +#: templates/exceptions/programming_error.html:11 msgid "" "When upgrading to a new NetBox release, the upgrade script must be run to " "apply any new database migrations. You can run migrations manually by " @@ -13332,11 +12621,11 @@ msgstr "" "Migrationen manuell anwenden, indem Sie python3 manage.py " "migrate von der Befehlszeile aus ausführen." -#: netbox/templates/exceptions/programming_error.html:18 +#: templates/exceptions/programming_error.html:18 msgid "Unsupported PostgreSQL version" msgstr "PostgreSQL-Version wird nicht unterstützt" -#: netbox/templates/exceptions/programming_error.html:19 +#: templates/exceptions/programming_error.html:19 msgid "" "Ensure that PostgreSQL version 12 or later is in use. You can check this by " "connecting to the database using NetBox's credentials and issuing a query " @@ -13347,102 +12636,99 @@ msgstr "" "NetBox eine Verbindung zur Datenbank herstellen und eine Abfrage mit " "SELECT VERSION()ausführen." -#: netbox/templates/extras/configcontext.html:45 -#: netbox/templates/extras/configtemplate.html:37 -#: netbox/templates/extras/exporttemplate.html:51 +#: templates/extras/configcontext.html:45 +#: templates/extras/configtemplate.html:37 +#: templates/extras/exporttemplate.html:51 msgid "The data file associated with this object has been deleted" msgstr "Die mit diesem Objekt verknüpfte Datei wurde gelöscht" -#: netbox/templates/extras/configcontext.html:54 -#: netbox/templates/extras/configtemplate.html:46 -#: netbox/templates/extras/exporttemplate.html:60 +#: templates/extras/configcontext.html:54 +#: templates/extras/configtemplate.html:46 +#: templates/extras/exporttemplate.html:60 msgid "Data Synced" msgstr "Daten synchronisiert" -#: netbox/templates/extras/configcontext_list.html:7 -#: netbox/templates/extras/configtemplate_list.html:7 -#: netbox/templates/extras/exporttemplate_list.html:7 +#: templates/extras/configcontext_list.html:7 +#: templates/extras/configtemplate_list.html:7 +#: templates/extras/exporttemplate_list.html:7 msgid "Sync Data" msgstr "Daten synchronisieren" -#: netbox/templates/extras/configtemplate.html:56 +#: templates/extras/configtemplate.html:56 msgid "Environment Parameters" msgstr "Umgebungsparameter" -#: netbox/templates/extras/configtemplate.html:67 -#: netbox/templates/extras/exporttemplate.html:79 +#: templates/extras/configtemplate.html:67 +#: templates/extras/exporttemplate.html:79 msgid "Template" msgstr "Vorlage" -#: netbox/templates/extras/customfield.html:30 -#: netbox/templates/extras/customlink.html:21 +#: templates/extras/customfield.html:30 templates/extras/customlink.html:21 msgid "Group Name" msgstr "Name der Gruppe" -#: netbox/templates/extras/customfield.html:42 +#: templates/extras/customfield.html:42 msgid "Must be Unique" msgstr "Muss einzigartig sein" -#: netbox/templates/extras/customfield.html:46 +#: templates/extras/customfield.html:46 msgid "Cloneable" msgstr "Klonbar" -#: netbox/templates/extras/customfield.html:56 +#: templates/extras/customfield.html:56 msgid "Default Value" msgstr "Standardwert" -#: netbox/templates/extras/customfield.html:73 +#: templates/extras/customfield.html:73 msgid "Search Weight" msgstr "Gewichtung in Suche" -#: netbox/templates/extras/customfield.html:83 +#: templates/extras/customfield.html:83 msgid "Filter Logic" msgstr "Filterlogik" -#: netbox/templates/extras/customfield.html:87 +#: templates/extras/customfield.html:87 msgid "Display Weight" msgstr "Gewicht anzeigen" -#: netbox/templates/extras/customfield.html:91 +#: templates/extras/customfield.html:91 msgid "UI Visible" msgstr "UI Sichtbar" -#: netbox/templates/extras/customfield.html:95 +#: templates/extras/customfield.html:95 msgid "UI Editable" msgstr "UI editierbar" -#: netbox/templates/extras/customfield.html:115 +#: templates/extras/customfield.html:115 msgid "Validation Rules" msgstr "Validierungsregeln" -#: netbox/templates/extras/customfield.html:126 +#: templates/extras/customfield.html:126 msgid "Regular Expression" msgstr "Regulärer Ausdruck" -#: netbox/templates/extras/customlink.html:29 +#: templates/extras/customlink.html:29 msgid "Button Class" msgstr "Button-Klasse" -#: netbox/templates/extras/customlink.html:39 -#: netbox/templates/extras/exporttemplate.html:66 -#: netbox/templates/extras/savedfilter.html:39 +#: templates/extras/customlink.html:39 templates/extras/exporttemplate.html:66 +#: templates/extras/savedfilter.html:39 msgid "Assigned Models" msgstr "Zugewiesene Modelle" -#: netbox/templates/extras/customlink.html:52 +#: templates/extras/customlink.html:52 msgid "Link Text" msgstr "Linktext" -#: netbox/templates/extras/customlink.html:58 +#: templates/extras/customlink.html:58 msgid "Link URL" msgstr "Link-URL" -#: netbox/templates/extras/dashboard/reset.html:4 -#: netbox/templates/home.html:66 +#: templates/extras/dashboard/reset.html:4 templates/home.html:66 msgid "Reset Dashboard" msgstr "Dashboard zurücksetzen" -#: netbox/templates/extras/dashboard/reset.html:8 +#: templates/extras/dashboard/reset.html:8 msgid "" "This will remove all configured widgets and restore the " "default dashboard configuration." @@ -13450,7 +12736,7 @@ msgstr "" "Das werden alle konfigurierte Widgets entfernt und die " "Standard-Dashboard-Konfiguration wieder hergestellt." -#: netbox/templates/extras/dashboard/reset.html:13 +#: templates/extras/dashboard/reset.html:13 msgid "" "This change affects only your dashboard, and will not impact other " "users." @@ -13458,156 +12744,154 @@ msgstr "" "Diese Änderung betrifft nur dein Dashboard und hat keine Auswirkungen" " auf andere Benutzer." -#: netbox/templates/extras/dashboard/widget.html:21 +#: templates/extras/dashboard/widget.html:21 msgid "widget configuration" msgstr "Wiget Konfiguration" -#: netbox/templates/extras/dashboard/widget.html:36 +#: templates/extras/dashboard/widget.html:36 msgid "Close widget" msgstr "Schließe Widget" -#: netbox/templates/extras/dashboard/widget_add.html:7 +#: templates/extras/dashboard/widget_add.html:7 msgid "Add a Widget" msgstr "Ein Widget hinzufügen" -#: netbox/templates/extras/dashboard/widgets/bookmarks.html:14 +#: templates/extras/dashboard/widgets/bookmarks.html:14 msgid "No bookmarks have been added yet." msgstr "Es wurden noch keine Lesezeichen hinzugefügt." -#: netbox/templates/extras/dashboard/widgets/objectcounts.html:10 +#: templates/extras/dashboard/widgets/objectcounts.html:10 msgid "No permission" msgstr "Keine Berechtigung" -#: netbox/templates/extras/dashboard/widgets/objectlist.html:6 +#: templates/extras/dashboard/widgets/objectlist.html:6 msgid "No permission to view this content" msgstr "Keine Berechtigung, diesen Inhalt anzusehen" -#: netbox/templates/extras/dashboard/widgets/objectlist.html:10 +#: templates/extras/dashboard/widgets/objectlist.html:10 msgid "Unable to load content. Invalid view name" msgstr "Inhalt kann nicht geladen werden. Ungültiger Name des Views" -#: netbox/templates/extras/dashboard/widgets/rssfeed.html:12 +#: templates/extras/dashboard/widgets/rssfeed.html:12 msgid "No content found" msgstr "Kein Inhalt gefunden" -#: netbox/templates/extras/dashboard/widgets/rssfeed.html:18 +#: templates/extras/dashboard/widgets/rssfeed.html:18 msgid "There was a problem fetching the RSS feed" msgstr "Beim Abrufen des RSS-Feeds ist ein Problem aufgetreten" -#: netbox/templates/extras/dashboard/widgets/rssfeed.html:21 +#: templates/extras/dashboard/widgets/rssfeed.html:21 msgid "HTTP" msgstr "HTTP" -#: netbox/templates/extras/eventrule.html:61 +#: templates/extras/eventrule.html:61 msgid "Conditions" msgstr "Dienst" -#: netbox/templates/extras/exporttemplate.html:23 +#: templates/extras/exporttemplate.html:23 msgid "MIME Type" msgstr "MIME-Typ" -#: netbox/templates/extras/exporttemplate.html:27 +#: templates/extras/exporttemplate.html:27 msgid "File Extension" msgstr "Dateiendung" -#: netbox/templates/extras/htmx/script_result.html:10 +#: templates/extras/htmx/script_result.html:10 msgid "Scheduled for" msgstr "Geplant für" -#: netbox/templates/extras/htmx/script_result.html:15 +#: templates/extras/htmx/script_result.html:15 msgid "Duration" msgstr "Dauer" -#: netbox/templates/extras/htmx/script_result.html:23 +#: templates/extras/htmx/script_result.html:23 msgid "Test Summary" msgstr "Zusammenfassung des Tests" -#: netbox/templates/extras/htmx/script_result.html:43 +#: templates/extras/htmx/script_result.html:43 msgid "Log" msgstr "Log" -#: netbox/templates/extras/htmx/script_result.html:56 +#: templates/extras/htmx/script_result.html:56 msgid "Output" msgstr "Ausgabe" -#: netbox/templates/extras/inc/result_pending.html:4 +#: templates/extras/inc/result_pending.html:4 msgid "Loading" msgstr "Wird geladen" -#: netbox/templates/extras/inc/result_pending.html:6 +#: templates/extras/inc/result_pending.html:6 msgid "Results pending" msgstr "Ergebnisse ausstehend" -#: netbox/templates/extras/journalentry.html:15 +#: templates/extras/journalentry.html:15 msgid "Journal Entry" msgstr "Journaleintrag" -#: netbox/templates/extras/notificationgroup.html:11 +#: templates/extras/notificationgroup.html:11 msgid "Notification Group" msgstr "Benachrichtigungsgruppe" -#: netbox/templates/extras/notificationgroup.html:36 -#: netbox/templates/extras/notificationgroup.html:46 -#: netbox/utilities/templates/widgets/clearable_file_input.html:12 +#: templates/extras/notificationgroup.html:36 +#: templates/extras/notificationgroup.html:46 +#: utilities/templates/widgets/clearable_file_input.html:12 msgid "None assigned" msgstr "Keine zugewiesen" -#: netbox/templates/extras/object_configcontext.html:19 +#: templates/extras/object_configcontext.html:19 msgid "The local config context overwrites all source contexts" msgstr "Der lokale Config-Kontext überschreibt alle Quellkontexte" -#: netbox/templates/extras/object_configcontext.html:25 +#: templates/extras/object_configcontext.html:25 msgid "Source Contexts" msgstr "Quellkontexte" -#: netbox/templates/extras/object_journal.html:17 +#: templates/extras/object_journal.html:17 msgid "New Journal Entry" msgstr "Neuer Journaleintrag" -#: netbox/templates/extras/report/base.html:30 +#: templates/extras/report/base.html:30 msgid "Report" msgstr "Bericht" -#: netbox/templates/extras/script.html:14 +#: templates/extras/script.html:14 msgid "You do not have permission to run scripts" msgstr "Sie sind nicht berechtigt, Skripts auszuführen" -#: netbox/templates/extras/script.html:41 -#: netbox/templates/extras/script.html:45 -#: netbox/templates/extras/script_list.html:86 +#: templates/extras/script.html:41 templates/extras/script.html:45 +#: templates/extras/script_list.html:86 msgid "Run Script" msgstr "Skript ausführen" -#: netbox/templates/extras/script.html:51 -#: netbox/templates/extras/script/source.html:10 +#: templates/extras/script.html:51 templates/extras/script/source.html:10 msgid "Error loading script" msgstr "Fehler beim Laden des Skripts" -#: netbox/templates/extras/script/jobs.html:16 +#: templates/extras/script/jobs.html:16 msgid "Script no longer exists in the source file." msgstr "Das Skript ist in der Quelldatei nicht mehr vorhanden." -#: netbox/templates/extras/script_list.html:46 +#: templates/extras/script_list.html:46 msgid "Last Run" msgstr "Letzter Lauf" -#: netbox/templates/extras/script_list.html:61 +#: templates/extras/script_list.html:61 msgid "Script is no longer present in the source file" msgstr "Das Skript ist in der Quelldatei nicht mehr vorhanden" -#: netbox/templates/extras/script_list.html:74 +#: templates/extras/script_list.html:74 msgid "Never" msgstr "Niemals" -#: netbox/templates/extras/script_list.html:84 +#: templates/extras/script_list.html:84 msgid "Run Again" msgstr "Nochmal ausführen" -#: netbox/templates/extras/script_list.html:138 +#: templates/extras/script_list.html:138 msgid "No Scripts Found" msgstr "Keine Skripte gefunden" -#: netbox/templates/extras/script_list.html:141 +#: templates/extras/script_list.html:141 #, python-format msgid "" "Get started by creating a script from " @@ -13616,83 +12900,81 @@ msgstr "" "Fangen Sie an mit ein Skript erstellen" " aus einer hochgeladenen Datei oder Datenquelle." -#: netbox/templates/extras/script_result.html:35 -#: netbox/templates/generic/object_list.html:50 -#: netbox/templates/search.html:13 +#: templates/extras/script_result.html:35 +#: templates/generic/object_list.html:50 templates/search.html:13 msgid "Results" msgstr "Ergebnisse" -#: netbox/templates/extras/script_result.html:46 +#: templates/extras/script_result.html:46 msgid "Log threshold" msgstr "Schwellenwert protokollieren" -#: netbox/templates/extras/script_result.html:56 +#: templates/extras/script_result.html:56 msgid "All" msgstr "Alle" -#: netbox/templates/extras/tag.html:32 +#: templates/extras/tag.html:32 msgid "Tagged Items" msgstr "Getaggte Artikel" -#: netbox/templates/extras/tag.html:43 +#: templates/extras/tag.html:43 msgid "Allowed Object Types" msgstr "Erlaubte Objekttypen" -#: netbox/templates/extras/tag.html:51 +#: templates/extras/tag.html:51 msgid "Any" msgstr "Irgendein" -#: netbox/templates/extras/tag.html:57 +#: templates/extras/tag.html:57 msgid "Tagged Item Types" msgstr "Artikeltypen mit Tags" -#: netbox/templates/extras/tag.html:81 +#: templates/extras/tag.html:81 msgid "Tagged Objects" msgstr "Getaggte Objekte" -#: netbox/templates/extras/webhook.html:26 +#: templates/extras/webhook.html:26 msgid "HTTP Method" msgstr "HTTP-Methode" -#: netbox/templates/extras/webhook.html:34 +#: templates/extras/webhook.html:34 msgid "HTTP Content Type" msgstr "HTTP-Inhaltstyp" -#: netbox/templates/extras/webhook.html:47 +#: templates/extras/webhook.html:47 msgid "SSL Verification" msgstr "SSL-Verifizierung" -#: netbox/templates/extras/webhook.html:60 +#: templates/extras/webhook.html:60 msgid "Additional Headers" msgstr "Zusätzliche Header" -#: netbox/templates/extras/webhook.html:70 +#: templates/extras/webhook.html:70 msgid "Body Template" msgstr "Body Template" -#: netbox/templates/generic/bulk_add_component.html:29 +#: templates/generic/bulk_add_component.html:29 msgid "Bulk Creation" msgstr "Massenerstellung" -#: netbox/templates/generic/bulk_add_component.html:34 -#: netbox/templates/generic/bulk_delete.html:32 -#: netbox/templates/generic/bulk_edit.html:33 +#: templates/generic/bulk_add_component.html:34 +#: templates/generic/bulk_delete.html:32 templates/generic/bulk_edit.html:33 msgid "Selected Objects" msgstr "Ausgewählte Objekte" -#: netbox/templates/generic/bulk_add_component.html:58 +#: templates/generic/bulk_add_component.html:58 msgid "to Add" msgstr "hinzufügen" -#: netbox/templates/generic/bulk_delete.html:27 +#: templates/generic/bulk_delete.html:27 msgid "Bulk Delete" msgstr "Massenlöschung" -#: netbox/templates/generic/bulk_delete.html:49 +#: templates/generic/bulk_delete.html:49 msgid "Confirm Bulk Deletion" msgstr "Massenlöschung bestätigen" -#: netbox/templates/generic/bulk_delete.html:50 +#: templates/generic/bulk_delete.html:50 #, python-format msgid "" "The following operation will delete %(count)s " @@ -13703,69 +12985,66 @@ msgstr "" "%(type_plural)s. Bitte überprüfen Sie die ausgewählten Objekte sorgfältig " "und bestätigen Sie diese Aktion." -#: netbox/templates/generic/bulk_edit.html:21 -#: netbox/templates/generic/object_edit.html:22 +#: templates/generic/bulk_edit.html:21 templates/generic/object_edit.html:22 msgid "Editing" msgstr "Bearbeitung" -#: netbox/templates/generic/bulk_edit.html:28 +#: templates/generic/bulk_edit.html:28 msgid "Bulk Edit" msgstr "Massenbearbeitung" -#: netbox/templates/generic/bulk_edit.html:107 -#: netbox/templates/generic/bulk_rename.html:66 +#: templates/generic/bulk_edit.html:107 templates/generic/bulk_rename.html:66 msgid "Apply" msgstr "Anwenden" -#: netbox/templates/generic/bulk_import.html:19 +#: templates/generic/bulk_import.html:19 msgid "Bulk Import" msgstr "Massenimport" -#: netbox/templates/generic/bulk_import.html:25 +#: templates/generic/bulk_import.html:25 msgid "Direct Import" msgstr "Direkter Import" -#: netbox/templates/generic/bulk_import.html:30 +#: templates/generic/bulk_import.html:30 msgid "Upload File" msgstr "Datei hochladen" -#: netbox/templates/generic/bulk_import.html:58 -#: netbox/templates/generic/bulk_import.html:80 -#: netbox/templates/generic/bulk_import.html:102 +#: templates/generic/bulk_import.html:58 templates/generic/bulk_import.html:80 +#: templates/generic/bulk_import.html:102 msgid "Submit" msgstr "Einreichen" -#: netbox/templates/generic/bulk_import.html:113 +#: templates/generic/bulk_import.html:113 msgid "Field Options" msgstr "Feldeigenschaften" -#: netbox/templates/generic/bulk_import.html:119 +#: templates/generic/bulk_import.html:119 msgid "Accessor" msgstr "Datentyp" -#: netbox/templates/generic/bulk_import.html:148 +#: templates/generic/bulk_import.html:148 msgid "choices" msgstr "Auswahlmöglichkeiten" -#: netbox/templates/generic/bulk_import.html:161 +#: templates/generic/bulk_import.html:161 msgid "Import Value" msgstr "Wert importieren" -#: netbox/templates/generic/bulk_import.html:181 +#: templates/generic/bulk_import.html:181 msgid "Format: YYYY-MM-DD" msgstr "Format: YYYY-MM-DD" -#: netbox/templates/generic/bulk_import.html:183 +#: templates/generic/bulk_import.html:183 msgid "Specify true or false" msgstr "Geben Sie wahr oder falsch an" -#: netbox/templates/generic/bulk_import.html:195 +#: templates/generic/bulk_import.html:195 msgid "Required fields must be specified for all objects." msgstr "" "Erforderliche Felder müssen für alle Objekte angegeben " "werden." -#: netbox/templates/generic/bulk_import.html:201 +#: templates/generic/bulk_import.html:201 #, python-format msgid "" "Related objects may be referenced by any unique attribute. For example, " @@ -13775,15 +13054,15 @@ msgstr "" "werden. Zum Beispiel %(example)s würde ein VRF anhand seines " "Routenunterscheiders identifizieren." -#: netbox/templates/generic/bulk_remove.html:28 +#: templates/generic/bulk_remove.html:28 msgid "Bulk Remove" msgstr "Massen-Entfernung" -#: netbox/templates/generic/bulk_remove.html:42 +#: templates/generic/bulk_remove.html:42 msgid "Confirm Bulk Removal" msgstr "Bestätigen Sie die Massenentfernung" -#: netbox/templates/generic/bulk_remove.html:43 +#: templates/generic/bulk_remove.html:43 #, python-format msgid "" "The following operation will remove %(count)s %(obj_type_plural)s from " @@ -13794,72 +13073,72 @@ msgstr "" "%(parent_obj)s. Bitte überprüfen Sie sorgfältig die %(obj_type_plural)s muss" " entfernt werden und unten bestätigt werden." -#: netbox/templates/generic/bulk_remove.html:64 +#: templates/generic/bulk_remove.html:64 #, python-format msgid "Remove these %(count)s %(obj_type_plural)s" msgstr "Entferne diese %(count)s %(obj_type_plural)s" -#: netbox/templates/generic/bulk_rename.html:20 +#: templates/generic/bulk_rename.html:20 msgid "Renaming" msgstr "Umbenennen" -#: netbox/templates/generic/bulk_rename.html:27 +#: templates/generic/bulk_rename.html:27 msgid "Bulk Rename" msgstr "Massen-Umbenennung" -#: netbox/templates/generic/bulk_rename.html:39 +#: templates/generic/bulk_rename.html:39 msgid "Current Name" msgstr "Aktueller Name" -#: netbox/templates/generic/bulk_rename.html:40 +#: templates/generic/bulk_rename.html:40 msgid "New Name" msgstr "Neuer Name" -#: netbox/templates/generic/bulk_rename.html:64 -#: netbox/utilities/templates/widgets/markdown_input.html:11 +#: templates/generic/bulk_rename.html:64 +#: utilities/templates/widgets/markdown_input.html:11 msgid "Preview" msgstr "Vorschau" -#: netbox/templates/generic/confirmation_form.html:16 +#: templates/generic/confirmation_form.html:16 msgid "Are you sure" msgstr "Bist du sicher" -#: netbox/templates/generic/confirmation_form.html:20 +#: templates/generic/confirmation_form.html:20 msgid "Confirm" msgstr "Bestätigen" -#: netbox/templates/generic/object_children.html:47 -#: netbox/utilities/templates/buttons/bulk_edit.html:4 +#: templates/generic/object_children.html:47 +#: utilities/templates/buttons/bulk_edit.html:4 msgid "Edit Selected" msgstr "Ausgewählte bearbeiten" -#: netbox/templates/generic/object_children.html:61 -#: netbox/utilities/templates/buttons/bulk_delete.html:4 +#: templates/generic/object_children.html:61 +#: utilities/templates/buttons/bulk_delete.html:4 msgid "Delete Selected" msgstr "Ausgewählte löschen" -#: netbox/templates/generic/object_edit.html:24 +#: templates/generic/object_edit.html:24 #, python-format msgid "Add a new %(object_type)s" msgstr "Füge ein neues %(object_type)s hinzu" -#: netbox/templates/generic/object_edit.html:35 +#: templates/generic/object_edit.html:35 msgid "View model documentation" msgstr "Modelldokumentation anzeigen" -#: netbox/templates/generic/object_edit.html:36 +#: templates/generic/object_edit.html:36 msgid "Help" msgstr "Hilfe" -#: netbox/templates/generic/object_edit.html:83 +#: templates/generic/object_edit.html:83 msgid "Create & Add Another" msgstr "Erstellen & Neues hinzufügen" -#: netbox/templates/generic/object_list.html:57 +#: templates/generic/object_list.html:57 msgid "Filters" msgstr "Filter" -#: netbox/templates/generic/object_list.html:88 +#: templates/generic/object_list.html:88 #, python-format msgid "" "Select all %(count)s " @@ -13868,40 +13147,40 @@ msgstr "" "Wählen alles %(count)s " "%(object_type_plural)s passende Abfrage" -#: netbox/templates/home.html:15 +#: templates/home.html:15 msgid "New Release Available" msgstr "Neue Version verfügbar" -#: netbox/templates/home.html:16 +#: templates/home.html:16 msgid "is available" msgstr "ist verfügbar" -#: netbox/templates/home.html:18 +#: templates/home.html:18 msgctxt "Document title" msgid "Upgrade Instructions" msgstr "Anweisungen zum Upgrade" -#: netbox/templates/home.html:40 +#: templates/home.html:40 msgid "Unlock Dashboard" msgstr "Dashboard entsperren" -#: netbox/templates/home.html:49 +#: templates/home.html:49 msgid "Lock Dashboard" msgstr "Dashboard sperren" -#: netbox/templates/home.html:60 +#: templates/home.html:60 msgid "Add Widget" msgstr "Widget hinzufügen" -#: netbox/templates/home.html:63 +#: templates/home.html:63 msgid "Save Layout" msgstr "Layout speichern" -#: netbox/templates/htmx/delete_form.html:7 +#: templates/htmx/delete_form.html:7 msgid "Confirm Deletion" msgstr "Löschen bestätigen" -#: netbox/templates/htmx/delete_form.html:11 +#: templates/htmx/delete_form.html:11 #, python-format msgid "" "Are you sure you want to delete " @@ -13910,40 +13189,40 @@ msgstr "" "Bist du sicher, dass du %(object_type)s %(object)s löschen willst?" -#: netbox/templates/htmx/delete_form.html:17 +#: templates/htmx/delete_form.html:17 msgid "The following objects will be deleted as a result of this action." msgstr "Die folgenden Objekte werden als Ergebnis dieser Aktion gelöscht." -#: netbox/templates/htmx/notifications.html:15 +#: templates/htmx/notifications.html:15 msgid "ago" msgstr "vor" -#: netbox/templates/htmx/notifications.html:26 +#: templates/htmx/notifications.html:26 msgid "No unread notifications" msgstr "Keine ungelesenen Benachrichtigungen" -#: netbox/templates/htmx/notifications.html:31 +#: templates/htmx/notifications.html:31 msgid "All notifications" msgstr "Alle Benachrichtigungen" -#: netbox/templates/htmx/object_selector.html:5 +#: templates/htmx/object_selector.html:5 msgid "Select" msgstr "Auswählen" -#: netbox/templates/inc/filter_list.html:42 -#: netbox/utilities/templates/helpers/table_config_form.html:39 +#: templates/inc/filter_list.html:43 +#: utilities/templates/helpers/table_config_form.html:39 msgid "Reset" msgstr "Zurücksetzen" -#: netbox/templates/inc/light_toggle.html:4 +#: templates/inc/light_toggle.html:4 msgid "Enable dark mode" msgstr "Dunkle Ansicht aktivieren" -#: netbox/templates/inc/light_toggle.html:7 +#: templates/inc/light_toggle.html:7 msgid "Enable light mode" msgstr "Helle Ansicht aktivieren" -#: netbox/templates/inc/missing_prerequisites.html:8 +#: templates/inc/missing_prerequisites.html:8 #, python-format msgid "" "Before you can add a %(model)s you must first create a " @@ -13952,283 +13231,281 @@ msgstr "" "Bevor Sie ein %(model)s hinzufügen können, müssen Sie zunächst ein " "%(prerequisite_model)s erstellen." -#: netbox/templates/inc/paginator.html:15 +#: templates/inc/paginator.html:15 msgid "Page selection" msgstr "Auswahl der Seite" -#: netbox/templates/inc/paginator.html:75 +#: templates/inc/paginator.html:75 #, python-format msgid "Showing %(start)s-%(end)s of %(total)s" msgstr "Zeige %(start)s-%(end)s von %(total)s" -#: netbox/templates/inc/paginator.html:82 +#: templates/inc/paginator.html:82 msgid "Pagination options" msgstr "Optionen für die Seitennummerierung" -#: netbox/templates/inc/paginator.html:86 +#: templates/inc/paginator.html:86 msgid "Per Page" msgstr "pro Seite" -#: netbox/templates/inc/panels/image_attachments.html:10 +#: templates/inc/panels/image_attachments.html:10 msgid "Attach an image" msgstr "Ein Bild anhängen" -#: netbox/templates/inc/panels/related_objects.html:5 +#: templates/inc/panels/related_objects.html:5 msgid "Related Objects" msgstr "Verwandte Objekte" -#: netbox/templates/inc/panels/tags.html:11 +#: templates/inc/panels/tags.html:11 msgid "No tags assigned" msgstr "Keine Tags zugewiesen" -#: netbox/templates/inc/sync_warning.html:10 +#: templates/inc/sync_warning.html:10 msgid "Data is out of sync with upstream file" msgstr "Die Daten sind nicht mit der Upstream-Datei synchronisiert" -#: netbox/templates/inc/table_controls_htmx.html:7 +#: templates/inc/table_controls_htmx.html:7 msgid "Quick search" msgstr "Schnellsuche" -#: netbox/templates/inc/table_controls_htmx.html:20 +#: templates/inc/table_controls_htmx.html:20 msgid "Saved filter" msgstr "Gespeicherte Filter" -#: netbox/templates/inc/table_htmx.html:18 +#: templates/inc/table_htmx.html:18 msgid "Clear ordering" msgstr "Reihenfolge löschen" -#: netbox/templates/inc/user_menu.html:6 +#: templates/inc/user_menu.html:6 msgid "Help center" msgstr "Hilfecenter" -#: netbox/templates/inc/user_menu.html:41 +#: templates/inc/user_menu.html:41 msgid "Django Admin" msgstr "Django-Admin" -#: netbox/templates/inc/user_menu.html:61 +#: templates/inc/user_menu.html:61 msgid "Log Out" msgstr "Abmelden" -#: netbox/templates/inc/user_menu.html:68 netbox/templates/login.html:38 +#: templates/inc/user_menu.html:68 templates/login.html:38 msgid "Log In" msgstr "Anmelden" -#: netbox/templates/ipam/aggregate.html:14 -#: netbox/templates/ipam/ipaddress.html:14 -#: netbox/templates/ipam/iprange.html:13 netbox/templates/ipam/prefix.html:15 +#: templates/ipam/aggregate.html:14 templates/ipam/ipaddress.html:14 +#: templates/ipam/iprange.html:13 templates/ipam/prefix.html:15 msgid "Family" msgstr "Familie" -#: netbox/templates/ipam/aggregate.html:39 +#: templates/ipam/aggregate.html:39 msgid "Date Added" msgstr "hinzugefügt am" -#: netbox/templates/ipam/aggregate/prefixes.html:8 -#: netbox/templates/ipam/prefix/prefixes.html:8 -#: netbox/templates/ipam/role.html:10 +#: templates/ipam/aggregate/prefixes.html:8 +#: templates/ipam/prefix/prefixes.html:8 templates/ipam/role.html:10 msgid "Add Prefix" msgstr "Prefix hinzufügen" -#: netbox/templates/ipam/asn.html:23 +#: templates/ipam/asn.html:23 msgid "AS Number" msgstr "AS-Nummer" -#: netbox/templates/ipam/fhrpgroup.html:52 +#: templates/ipam/fhrpgroup.html:52 msgid "Authentication Type" msgstr "Art der Authentifizierung" -#: netbox/templates/ipam/fhrpgroup.html:56 +#: templates/ipam/fhrpgroup.html:56 msgid "Authentication Key" msgstr "Authentifizierungsschlüssel" -#: netbox/templates/ipam/fhrpgroup.html:69 +#: templates/ipam/fhrpgroup.html:69 msgid "Virtual IP Addresses" msgstr "Virtuelle IP-Adressen" -#: netbox/templates/ipam/inc/ipaddress_edit_header.html:13 +#: templates/ipam/inc/ipaddress_edit_header.html:13 msgid "Assign IP" msgstr "IP zuweisen" -#: netbox/templates/ipam/inc/ipaddress_edit_header.html:19 +#: templates/ipam/inc/ipaddress_edit_header.html:19 msgid "Bulk Create" msgstr "Massen-Erstellung" -#: netbox/templates/ipam/inc/panels/fhrp_groups.html:10 +#: templates/ipam/inc/panels/fhrp_groups.html:10 msgid "Create Group" msgstr "Gruppe erstellen" -#: netbox/templates/ipam/inc/panels/fhrp_groups.html:25 +#: templates/ipam/inc/panels/fhrp_groups.html:25 msgid "Virtual IPs" msgstr "Virtuelle IPs" -#: netbox/templates/ipam/inc/toggle_available.html:7 +#: templates/ipam/inc/toggle_available.html:7 msgid "Show Assigned" msgstr "Zugewiesene anzeigen" -#: netbox/templates/ipam/inc/toggle_available.html:10 +#: templates/ipam/inc/toggle_available.html:10 msgid "Show Available" msgstr "Verfügbare anzeigen" -#: netbox/templates/ipam/inc/toggle_available.html:13 +#: templates/ipam/inc/toggle_available.html:13 msgid "Show All" msgstr "Alles anzeigen" -#: netbox/templates/ipam/ipaddress.html:23 -#: netbox/templates/ipam/iprange.html:45 netbox/templates/ipam/prefix.html:24 +#: templates/ipam/ipaddress.html:23 templates/ipam/iprange.html:45 +#: templates/ipam/prefix.html:24 msgid "Global" msgstr "Weltweit" -#: netbox/templates/ipam/ipaddress.html:85 +#: templates/ipam/ipaddress.html:85 msgid "NAT (outside)" msgstr "NAT (außen)" -#: netbox/templates/ipam/ipaddress_assign.html:8 +#: templates/ipam/ipaddress_assign.html:8 msgid "Assign an IP Address" msgstr "Eine IP-Adresse zuweisen" -#: netbox/templates/ipam/ipaddress_assign.html:22 +#: templates/ipam/ipaddress_assign.html:22 msgid "Select IP Address" msgstr "Wählen Sie die IP-Adresse" -#: netbox/templates/ipam/ipaddress_assign.html:35 +#: templates/ipam/ipaddress_assign.html:35 msgid "Search Results" msgstr "Suchergebnisse" -#: netbox/templates/ipam/ipaddress_bulk_add.html:6 +#: templates/ipam/ipaddress_bulk_add.html:6 msgid "Bulk Add IP Addresses" msgstr "IP-Adressen massenweise hinzufügen" -#: netbox/templates/ipam/iprange.html:17 +#: templates/ipam/iprange.html:17 msgid "Starting Address" msgstr "Startadresse" -#: netbox/templates/ipam/iprange.html:21 +#: templates/ipam/iprange.html:21 msgid "Ending Address" msgstr "Endadresse" -#: netbox/templates/ipam/iprange.html:33 netbox/templates/ipam/prefix.html:110 +#: templates/ipam/iprange.html:33 templates/ipam/prefix.html:110 msgid "Marked fully utilized" msgstr "Als voll belegt markiert" -#: netbox/templates/ipam/prefix.html:99 +#: templates/ipam/prefix.html:99 msgid "Addressing Details" msgstr "Angaben zur Adressierung" -#: netbox/templates/ipam/prefix.html:118 +#: templates/ipam/prefix.html:118 msgid "Child IPs" msgstr "untergeordnete IPs" -#: netbox/templates/ipam/prefix.html:126 +#: templates/ipam/prefix.html:126 msgid "Available IPs" msgstr "Verfügbare IPs" -#: netbox/templates/ipam/prefix.html:138 +#: templates/ipam/prefix.html:138 msgid "First available IP" msgstr "Erste verfügbare IP" -#: netbox/templates/ipam/prefix.html:179 +#: templates/ipam/prefix.html:179 msgid "Prefix Details" msgstr "Präfix-Details" -#: netbox/templates/ipam/prefix.html:185 +#: templates/ipam/prefix.html:185 msgid "Network Address" msgstr "Netzwerkadresse" -#: netbox/templates/ipam/prefix.html:189 +#: templates/ipam/prefix.html:189 msgid "Network Mask" msgstr "Netzwerkmaske" -#: netbox/templates/ipam/prefix.html:193 +#: templates/ipam/prefix.html:193 msgid "Wildcard Mask" msgstr "Wildcardmaske" -#: netbox/templates/ipam/prefix.html:197 +#: templates/ipam/prefix.html:197 msgid "Broadcast Address" msgstr "Broadcast-Adresse" -#: netbox/templates/ipam/prefix/ip_ranges.html:7 +#: templates/ipam/prefix/ip_ranges.html:7 msgid "Add IP Range" msgstr "IP-Bereich hinzufügen" -#: netbox/templates/ipam/prefix_list.html:7 +#: templates/ipam/prefix_list.html:7 msgid "Hide Depth Indicators" msgstr "Tiefenindikatoren ausblenden" -#: netbox/templates/ipam/prefix_list.html:11 +#: templates/ipam/prefix_list.html:11 msgid "Max Depth" msgstr "Max. Tiefe" -#: netbox/templates/ipam/prefix_list.html:28 +#: templates/ipam/prefix_list.html:28 msgid "Max Length" msgstr "Max. Länge" -#: netbox/templates/ipam/rir.html:10 +#: templates/ipam/rir.html:10 msgid "Add Aggregate" msgstr "Aggregat hinzufügen" -#: netbox/templates/ipam/routetarget.html:38 +#: templates/ipam/routetarget.html:38 msgid "Importing VRFs" msgstr "VRFs importieren" -#: netbox/templates/ipam/routetarget.html:44 +#: templates/ipam/routetarget.html:44 msgid "Exporting VRFs" msgstr "VRFs exportieren" -#: netbox/templates/ipam/routetarget.html:52 +#: templates/ipam/routetarget.html:52 msgid "Importing L2VPNs" msgstr "L2VPNs importieren" -#: netbox/templates/ipam/routetarget.html:58 +#: templates/ipam/routetarget.html:58 msgid "Exporting L2VPNs" msgstr "L2VPNs exportieren" -#: netbox/templates/ipam/vlan.html:88 +#: templates/ipam/vlan.html:88 msgid "Add a Prefix" msgstr "Präfix hinzufügen" -#: netbox/templates/ipam/vlangroup.html:18 +#: templates/ipam/vlangroup.html:18 msgid "Add VLAN" msgstr "VLAN hinzufügen" -#: netbox/templates/ipam/vrf.html:16 +#: templates/ipam/vrf.html:16 msgid "Route Distinguisher" msgstr "Routenunterscheidungsmerkmal" -#: netbox/templates/ipam/vrf.html:29 +#: templates/ipam/vrf.html:29 msgid "Unique IP Space" msgstr "Einzigartiger IP-Raum" -#: netbox/templates/login.html:29 -#: netbox/utilities/templates/form_helpers/render_errors.html:7 +#: templates/login.html:29 +#: utilities/templates/form_helpers/render_errors.html:7 msgid "Errors" msgstr "Fehler" -#: netbox/templates/login.html:69 +#: templates/login.html:69 msgid "Sign In" msgstr "Anmelden" -#: netbox/templates/login.html:77 +#: templates/login.html:77 msgctxt "Denotes an alternative option" msgid "Or" msgstr "Oder" -#: netbox/templates/media_failure.html:7 +#: templates/media_failure.html:7 msgid "Static Media Failure - NetBox" msgstr "Statischer Medienfehler - NetBox" -#: netbox/templates/media_failure.html:21 +#: templates/media_failure.html:21 msgid "Static Media Failure" msgstr "Statischer Medienfehler" -#: netbox/templates/media_failure.html:23 +#: templates/media_failure.html:23 msgid "The following static media file failed to load" msgstr "Die folgende statische Mediendatei konnte nicht geladen werden" -#: netbox/templates/media_failure.html:26 +#: templates/media_failure.html:26 msgid "Check the following" msgstr "Überprüfe das Folgende" -#: netbox/templates/media_failure.html:29 +#: templates/media_failure.html:29 msgid "" "manage.py collectstatic was run during the most recent upgrade." " This installs the most recent iteration of each static file into the static" @@ -14238,7 +13515,7 @@ msgstr "" "Upgrades ausgeführt. Dadurch wird die neueste Iteration jeder statischen " "Datei im statischen Stammpfad installiert." -#: netbox/templates/media_failure.html:35 +#: templates/media_failure.html:35 #, python-format msgid "" "The HTTP service (e.g. nginx or Apache) is configured to serve files from " @@ -14250,7 +13527,7 @@ msgstr "" "href=\"%(docs_url)s\">the installation documentation für weitere " "Anleitungen." -#: netbox/templates/media_failure.html:47 +#: templates/media_failure.html:47 #, python-format msgid "" "The file %(filename)s exists in the static root directory and " @@ -14259,569 +13536,550 @@ msgstr "" "Die Datei%(filename)s existiert im statischen Stammverzeichnis " "und ist für den HTTP-Server lesbar." -#: netbox/templates/media_failure.html:55 +#: templates/media_failure.html:55 #, python-format msgid "Click here to attempt loading NetBox again." msgstr "" "Klicken Sie hier um erneut zu versuchen, NetBox" " zu laden." -#: netbox/templates/tenancy/contact.html:18 netbox/tenancy/filtersets.py:147 -#: netbox/tenancy/forms/bulk_edit.py:137 -#: netbox/tenancy/forms/filtersets.py:102 netbox/tenancy/forms/forms.py:56 -#: netbox/tenancy/forms/model_forms.py:106 -#: netbox/tenancy/forms/model_forms.py:130 -#: netbox/tenancy/tables/contacts.py:98 +#: templates/tenancy/contact.html:18 tenancy/filtersets.py:147 +#: tenancy/forms/bulk_edit.py:137 tenancy/forms/filtersets.py:102 +#: tenancy/forms/forms.py:56 tenancy/forms/model_forms.py:106 +#: tenancy/forms/model_forms.py:130 tenancy/tables/contacts.py:98 msgid "Contact" msgstr "Kontakt" -#: netbox/templates/tenancy/contact.html:29 -#: netbox/tenancy/forms/bulk_edit.py:99 +#: templates/tenancy/contact.html:29 tenancy/forms/bulk_edit.py:99 msgid "Title" msgstr "Titel" -#: netbox/templates/tenancy/contact.html:33 -#: netbox/tenancy/forms/bulk_edit.py:104 netbox/tenancy/tables/contacts.py:64 +#: templates/tenancy/contact.html:33 tenancy/forms/bulk_edit.py:104 +#: tenancy/tables/contacts.py:64 msgid "Phone" msgstr "Telefon" -#: netbox/templates/tenancy/contactgroup.html:18 -#: netbox/tenancy/forms/forms.py:66 netbox/tenancy/forms/model_forms.py:75 +#: templates/tenancy/contactgroup.html:18 tenancy/forms/forms.py:66 +#: tenancy/forms/model_forms.py:75 msgid "Contact Group" msgstr "Kontaktgruppe" -#: netbox/templates/tenancy/contactgroup.html:50 +#: templates/tenancy/contactgroup.html:50 msgid "Add Contact Group" msgstr "Kontaktgruppe hinzufügen" -#: netbox/templates/tenancy/contactrole.html:15 -#: netbox/tenancy/filtersets.py:152 netbox/tenancy/forms/forms.py:61 -#: netbox/tenancy/forms/model_forms.py:87 +#: templates/tenancy/contactrole.html:15 tenancy/filtersets.py:152 +#: tenancy/forms/forms.py:61 tenancy/forms/model_forms.py:87 msgid "Contact Role" msgstr "Kontaktrolle" -#: netbox/templates/tenancy/object_contacts.html:9 +#: templates/tenancy/object_contacts.html:9 msgid "Add a contact" msgstr "Einen Kontakt hinzufügen" -#: netbox/templates/tenancy/tenantgroup.html:17 +#: templates/tenancy/tenantgroup.html:17 msgid "Add Tenant" msgstr "Mandant hinzufügen" -#: netbox/templates/tenancy/tenantgroup.html:26 -#: netbox/tenancy/forms/model_forms.py:32 netbox/tenancy/tables/columns.py:51 -#: netbox/tenancy/tables/columns.py:61 +#: templates/tenancy/tenantgroup.html:26 tenancy/forms/model_forms.py:32 +#: tenancy/tables/columns.py:51 tenancy/tables/columns.py:61 msgid "Tenant Group" msgstr "Mandantengruppe" -#: netbox/templates/tenancy/tenantgroup.html:59 +#: templates/tenancy/tenantgroup.html:59 msgid "Add Tenant Group" msgstr "Mandantengruppe hinzufügen" -#: netbox/templates/users/group.html:39 netbox/templates/users/user.html:63 +#: templates/users/group.html:39 templates/users/user.html:63 msgid "Assigned Permissions" msgstr "Zugewiesene Berechtigungen" -#: netbox/templates/users/objectpermission.html:6 -#: netbox/templates/users/objectpermission.html:14 -#: netbox/users/forms/filtersets.py:66 +#: templates/users/objectpermission.html:6 +#: templates/users/objectpermission.html:14 users/forms/filtersets.py:66 msgid "Permission" msgstr "Berechtigung" -#: netbox/templates/users/objectpermission.html:34 +#: templates/users/objectpermission.html:34 msgid "View" msgstr "Ansicht" -#: netbox/templates/users/objectpermission.html:52 -#: netbox/users/forms/model_forms.py:315 +#: templates/users/objectpermission.html:52 users/forms/model_forms.py:315 msgid "Constraints" msgstr "Einschränkungen" -#: netbox/templates/users/objectpermission.html:72 +#: templates/users/objectpermission.html:72 msgid "Assigned Users" msgstr "Zugewiesene Benutzer" -#: netbox/templates/virtualization/cluster.html:52 +#: templates/virtualization/cluster.html:52 msgid "Allocated Resources" msgstr "Zugewiesene Ressourcen" -#: netbox/templates/virtualization/cluster.html:55 -#: netbox/templates/virtualization/virtualmachine.html:125 +#: templates/virtualization/cluster.html:55 +#: templates/virtualization/virtualmachine.html:125 msgid "Virtual CPUs" msgstr "Virtuelle CPUs" -#: netbox/templates/virtualization/cluster.html:59 -#: netbox/templates/virtualization/virtualmachine.html:129 +#: templates/virtualization/cluster.html:59 +#: templates/virtualization/virtualmachine.html:129 msgid "Memory" msgstr "Arbeitsspeicher" -#: netbox/templates/virtualization/cluster.html:69 -#: netbox/templates/virtualization/virtualmachine.html:140 +#: templates/virtualization/cluster.html:69 +#: templates/virtualization/virtualmachine.html:140 msgid "Disk Space" msgstr "Speicherplatz" -#: netbox/templates/virtualization/cluster/base.html:18 +#: templates/virtualization/cluster/base.html:18 msgid "Add Virtual Machine" msgstr "Virtuelle Maschine hinzufügen" -#: netbox/templates/virtualization/cluster/base.html:24 +#: templates/virtualization/cluster/base.html:24 msgid "Assign Device" msgstr "Gerät zuweisen" -#: netbox/templates/virtualization/cluster/devices.html:10 +#: templates/virtualization/cluster/devices.html:10 msgid "Remove Selected" msgstr "Ausgewähltes entfernen" -#: netbox/templates/virtualization/cluster_add_devices.html:9 +#: templates/virtualization/cluster_add_devices.html:9 #, python-format msgid "Add Device to Cluster %(cluster)s" msgstr "Gerät zum Cluster hinzufügen %(cluster)s" -#: netbox/templates/virtualization/cluster_add_devices.html:23 +#: templates/virtualization/cluster_add_devices.html:23 msgid "Device Selection" msgstr "Geräte-Auswahl" -#: netbox/templates/virtualization/cluster_add_devices.html:31 +#: templates/virtualization/cluster_add_devices.html:31 msgid "Add Devices" msgstr "Geräte hinzufügen" -#: netbox/templates/virtualization/clustergroup.html:10 -#: netbox/templates/virtualization/clustertype.html:10 +#: templates/virtualization/clustergroup.html:10 +#: templates/virtualization/clustertype.html:10 msgid "Add Cluster" msgstr "Cluster hinzufügen" -#: netbox/templates/virtualization/clustergroup.html:19 -#: netbox/virtualization/forms/model_forms.py:50 +#: templates/virtualization/clustergroup.html:19 +#: virtualization/forms/model_forms.py:50 msgid "Cluster Group" msgstr "Clustergruppe" -#: netbox/templates/virtualization/clustertype.html:19 -#: netbox/templates/virtualization/virtualmachine.html:110 -#: netbox/virtualization/forms/model_forms.py:36 +#: templates/virtualization/clustertype.html:19 +#: templates/virtualization/virtualmachine.html:110 +#: virtualization/forms/model_forms.py:36 msgid "Cluster Type" msgstr "Cluster-Typ" -#: netbox/templates/virtualization/virtualdisk.html:18 +#: templates/virtualization/virtualdisk.html:18 msgid "Virtual Disk" msgstr "Virtuelle Festplatte" -#: netbox/templates/virtualization/virtualmachine.html:122 -#: netbox/virtualization/forms/bulk_edit.py:190 -#: netbox/virtualization/forms/model_forms.py:224 +#: templates/virtualization/virtualmachine.html:122 +#: virtualization/forms/bulk_edit.py:190 +#: virtualization/forms/model_forms.py:224 msgid "Resources" msgstr "Ressourcen" -#: netbox/templates/virtualization/virtualmachine.html:178 +#: templates/virtualization/virtualmachine.html:178 msgid "Add Virtual Disk" msgstr "Virtuelles Laufwerk hinzufügen" -#: netbox/templates/vpn/ikepolicy.html:10 -#: netbox/templates/vpn/ipsecprofile.html:33 netbox/vpn/tables/crypto.py:166 +#: templates/vpn/ikepolicy.html:10 templates/vpn/ipsecprofile.html:33 +#: vpn/tables/crypto.py:166 msgid "IKE Policy" msgstr "IKE-Richtlinie" -#: netbox/templates/vpn/ikepolicy.html:21 +#: templates/vpn/ikepolicy.html:21 msgid "IKE Version" msgstr "IKE-Version" -#: netbox/templates/vpn/ikepolicy.html:29 +#: templates/vpn/ikepolicy.html:29 msgid "Pre-Shared Key" msgstr "Vorab geteilter Schlüssel" -#: netbox/templates/vpn/ikepolicy.html:33 -#: netbox/templates/wireless/inc/authentication_attrs.html:20 +#: templates/vpn/ikepolicy.html:33 +#: templates/wireless/inc/authentication_attrs.html:20 msgid "Show Secret" msgstr "Secret anzeigen" -#: netbox/templates/vpn/ikepolicy.html:57 -#: netbox/templates/vpn/ipsecpolicy.html:45 -#: netbox/templates/vpn/ipsecprofile.html:52 -#: netbox/templates/vpn/ipsecprofile.html:77 -#: netbox/vpn/forms/model_forms.py:316 netbox/vpn/forms/model_forms.py:352 -#: netbox/vpn/tables/crypto.py:68 netbox/vpn/tables/crypto.py:134 +#: templates/vpn/ikepolicy.html:57 templates/vpn/ipsecpolicy.html:45 +#: templates/vpn/ipsecprofile.html:52 templates/vpn/ipsecprofile.html:77 +#: vpn/forms/model_forms.py:316 vpn/forms/model_forms.py:352 +#: vpn/tables/crypto.py:68 vpn/tables/crypto.py:134 msgid "Proposals" msgstr "Vorschläge" -#: netbox/templates/vpn/ikeproposal.html:10 +#: templates/vpn/ikeproposal.html:10 msgid "IKE Proposal" msgstr "IKE-Vorschlag" -#: netbox/templates/vpn/ikeproposal.html:21 netbox/vpn/forms/bulk_edit.py:97 -#: netbox/vpn/forms/bulk_import.py:145 netbox/vpn/forms/filtersets.py:101 +#: templates/vpn/ikeproposal.html:21 vpn/forms/bulk_edit.py:97 +#: vpn/forms/bulk_import.py:145 vpn/forms/filtersets.py:101 msgid "Authentication method" msgstr "Authentifizierungsmethode" -#: netbox/templates/vpn/ikeproposal.html:25 -#: netbox/templates/vpn/ipsecproposal.html:21 -#: netbox/vpn/forms/bulk_edit.py:102 netbox/vpn/forms/bulk_edit.py:172 -#: netbox/vpn/forms/bulk_import.py:149 netbox/vpn/forms/bulk_import.py:195 -#: netbox/vpn/forms/filtersets.py:106 netbox/vpn/forms/filtersets.py:154 +#: templates/vpn/ikeproposal.html:25 templates/vpn/ipsecproposal.html:21 +#: vpn/forms/bulk_edit.py:102 vpn/forms/bulk_edit.py:172 +#: vpn/forms/bulk_import.py:149 vpn/forms/bulk_import.py:195 +#: vpn/forms/filtersets.py:106 vpn/forms/filtersets.py:154 msgid "Encryption algorithm" msgstr "Verschlüsselungsalgorithmus" -#: netbox/templates/vpn/ikeproposal.html:29 -#: netbox/templates/vpn/ipsecproposal.html:25 -#: netbox/vpn/forms/bulk_edit.py:107 netbox/vpn/forms/bulk_edit.py:177 -#: netbox/vpn/forms/bulk_import.py:153 netbox/vpn/forms/bulk_import.py:200 -#: netbox/vpn/forms/filtersets.py:111 netbox/vpn/forms/filtersets.py:159 +#: templates/vpn/ikeproposal.html:29 templates/vpn/ipsecproposal.html:25 +#: vpn/forms/bulk_edit.py:107 vpn/forms/bulk_edit.py:177 +#: vpn/forms/bulk_import.py:153 vpn/forms/bulk_import.py:200 +#: vpn/forms/filtersets.py:111 vpn/forms/filtersets.py:159 msgid "Authentication algorithm" msgstr "Authentifizierungsalgorithmus" -#: netbox/templates/vpn/ikeproposal.html:33 +#: templates/vpn/ikeproposal.html:33 msgid "DH group" msgstr "DH-Gruppe" -#: netbox/templates/vpn/ikeproposal.html:37 -#: netbox/templates/vpn/ipsecproposal.html:29 -#: netbox/vpn/forms/bulk_edit.py:182 netbox/vpn/models/crypto.py:146 +#: templates/vpn/ikeproposal.html:37 templates/vpn/ipsecproposal.html:29 +#: vpn/forms/bulk_edit.py:182 vpn/models/crypto.py:146 msgid "SA lifetime (seconds)" msgstr "SA-Lebensdauer (Sekunden)" -#: netbox/templates/vpn/ipsecpolicy.html:10 -#: netbox/templates/vpn/ipsecprofile.html:66 netbox/vpn/tables/crypto.py:170 +#: templates/vpn/ipsecpolicy.html:10 templates/vpn/ipsecprofile.html:66 +#: vpn/tables/crypto.py:170 msgid "IPSec Policy" msgstr "IPSec-Richtlinie" -#: netbox/templates/vpn/ipsecpolicy.html:21 netbox/vpn/forms/bulk_edit.py:210 -#: netbox/vpn/models/crypto.py:193 +#: templates/vpn/ipsecpolicy.html:21 vpn/forms/bulk_edit.py:210 +#: vpn/models/crypto.py:193 msgid "PFS group" msgstr "PFS-Gruppe" -#: netbox/templates/vpn/ipsecprofile.html:10 -#: netbox/vpn/forms/model_forms.py:54 +#: templates/vpn/ipsecprofile.html:10 vpn/forms/model_forms.py:54 msgid "IPSec Profile" msgstr "IPSec-Profil" -#: netbox/templates/vpn/ipsecprofile.html:89 netbox/vpn/tables/crypto.py:137 +#: templates/vpn/ipsecprofile.html:89 vpn/tables/crypto.py:137 msgid "PFS Group" msgstr "PFS-Gruppe" -#: netbox/templates/vpn/ipsecproposal.html:10 +#: templates/vpn/ipsecproposal.html:10 msgid "IPSec Proposal" msgstr "IPSec-Vorschlag" -#: netbox/templates/vpn/ipsecproposal.html:33 -#: netbox/vpn/forms/bulk_edit.py:186 netbox/vpn/models/crypto.py:152 +#: templates/vpn/ipsecproposal.html:33 vpn/forms/bulk_edit.py:186 +#: vpn/models/crypto.py:152 msgid "SA lifetime (KB)" msgstr "SA-Lebensdauer (KB)" -#: netbox/templates/vpn/l2vpn.html:11 -#: netbox/templates/vpn/l2vpntermination.html:9 +#: templates/vpn/l2vpn.html:11 templates/vpn/l2vpntermination.html:9 msgid "L2VPN Attributes" msgstr "L2VPN-Attribute" -#: netbox/templates/vpn/l2vpn.html:60 netbox/templates/vpn/tunnel.html:76 +#: templates/vpn/l2vpn.html:60 templates/vpn/tunnel.html:76 msgid "Add a Termination" msgstr "Abschlusspunkt hinzufügen" -#: netbox/templates/vpn/tunnel.html:9 +#: templates/vpn/tunnel.html:9 msgid "Add Termination" msgstr "Abschlusspunkt hinzufügen" -#: netbox/templates/vpn/tunnel.html:37 netbox/vpn/forms/bulk_edit.py:49 -#: netbox/vpn/forms/bulk_import.py:48 netbox/vpn/forms/filtersets.py:57 +#: templates/vpn/tunnel.html:37 vpn/forms/bulk_edit.py:49 +#: vpn/forms/bulk_import.py:48 vpn/forms/filtersets.py:57 msgid "Encapsulation" msgstr "Verkapselung" -#: netbox/templates/vpn/tunnel.html:41 netbox/vpn/forms/bulk_edit.py:55 -#: netbox/vpn/forms/bulk_import.py:53 netbox/vpn/forms/filtersets.py:64 -#: netbox/vpn/models/crypto.py:250 netbox/vpn/tables/tunnels.py:51 +#: templates/vpn/tunnel.html:41 vpn/forms/bulk_edit.py:55 +#: vpn/forms/bulk_import.py:53 vpn/forms/filtersets.py:64 +#: vpn/models/crypto.py:250 vpn/tables/tunnels.py:51 msgid "IPSec profile" msgstr "IPSec-Profil" -#: netbox/templates/vpn/tunnel.html:45 netbox/vpn/forms/bulk_edit.py:69 -#: netbox/vpn/forms/filtersets.py:68 +#: templates/vpn/tunnel.html:45 vpn/forms/bulk_edit.py:69 +#: vpn/forms/filtersets.py:68 msgid "Tunnel ID" msgstr "Tunnel-ID" -#: netbox/templates/vpn/tunnelgroup.html:14 +#: templates/vpn/tunnelgroup.html:14 msgid "Add Tunnel" msgstr "Tunnel hinzufügen" -#: netbox/templates/vpn/tunnelgroup.html:23 netbox/vpn/forms/model_forms.py:36 -#: netbox/vpn/forms/model_forms.py:49 +#: templates/vpn/tunnelgroup.html:23 vpn/forms/model_forms.py:36 +#: vpn/forms/model_forms.py:49 msgid "Tunnel Group" msgstr "Tunnelgruppe" -#: netbox/templates/vpn/tunneltermination.html:10 +#: templates/vpn/tunneltermination.html:10 msgid "Tunnel Termination" msgstr "Tunnelabschlusspunkt" -#: netbox/templates/vpn/tunneltermination.html:35 -#: netbox/vpn/forms/bulk_import.py:107 netbox/vpn/forms/model_forms.py:102 -#: netbox/vpn/forms/model_forms.py:138 netbox/vpn/forms/model_forms.py:247 -#: netbox/vpn/tables/tunnels.py:101 +#: templates/vpn/tunneltermination.html:35 vpn/forms/bulk_import.py:107 +#: vpn/forms/model_forms.py:102 vpn/forms/model_forms.py:138 +#: vpn/forms/model_forms.py:247 vpn/tables/tunnels.py:101 msgid "Outside IP" msgstr "Öffentliche / Outside IP" -#: netbox/templates/vpn/tunneltermination.html:51 +#: templates/vpn/tunneltermination.html:51 msgid "Peer Terminations" msgstr "Peer-Abschlusspunkt" -#: netbox/templates/wireless/inc/authentication_attrs.html:12 +#: templates/wireless/inc/authentication_attrs.html:12 msgid "Cipher" msgstr "Chiffre" -#: netbox/templates/wireless/inc/authentication_attrs.html:16 +#: templates/wireless/inc/authentication_attrs.html:16 msgid "PSK" msgstr "PSK" -#: netbox/templates/wireless/inc/wirelesslink_interface.html:35 -#: netbox/templates/wireless/inc/wirelesslink_interface.html:45 +#: templates/wireless/inc/wirelesslink_interface.html:35 +#: templates/wireless/inc/wirelesslink_interface.html:45 msgctxt "Abbreviation for megahertz" msgid "MHz" msgstr "MHz" -#: netbox/templates/wireless/wirelesslan.html:57 +#: templates/wireless/wirelesslan.html:57 msgid "Attached Interfaces" msgstr "Angehängte Schnittstellen" -#: netbox/templates/wireless/wirelesslangroup.html:17 +#: templates/wireless/wirelesslangroup.html:17 msgid "Add Wireless LAN" msgstr "WLAN hinzufügen" -#: netbox/templates/wireless/wirelesslangroup.html:26 -#: netbox/wireless/forms/model_forms.py:28 +#: templates/wireless/wirelesslangroup.html:26 +#: wireless/forms/model_forms.py:28 msgid "Wireless LAN Group" msgstr "WLAN-Gruppe" -#: netbox/templates/wireless/wirelesslangroup.html:59 +#: templates/wireless/wirelesslangroup.html:59 msgid "Add Wireless LAN Group" msgstr "WLAN-Gruppe hinzufügen" -#: netbox/templates/wireless/wirelesslink.html:14 +#: templates/wireless/wirelesslink.html:14 msgid "Link Properties" msgstr "Link-Eigenschaften" -#: netbox/templates/wireless/wirelesslink.html:38 -#: netbox/wireless/forms/bulk_edit.py:129 -#: netbox/wireless/forms/filtersets.py:102 -#: netbox/wireless/forms/model_forms.py:165 +#: templates/wireless/wirelesslink.html:38 wireless/forms/bulk_edit.py:129 +#: wireless/forms/filtersets.py:102 wireless/forms/model_forms.py:165 msgid "Distance" msgstr "Entfernung" -#: netbox/tenancy/filtersets.py:28 +#: tenancy/filtersets.py:28 msgid "Parent contact group (ID)" msgstr "Übergeordnete Kontaktgruppe (ID)" -#: netbox/tenancy/filtersets.py:34 +#: tenancy/filtersets.py:34 msgid "Parent contact group (slug)" msgstr "Übergeordnete Kontaktgruppe (URL-Slug)" -#: netbox/tenancy/filtersets.py:40 netbox/tenancy/filtersets.py:67 -#: netbox/tenancy/filtersets.py:110 +#: tenancy/filtersets.py:40 tenancy/filtersets.py:67 tenancy/filtersets.py:110 msgid "Contact group (ID)" msgstr "Kontaktgruppe (ID)" -#: netbox/tenancy/filtersets.py:47 netbox/tenancy/filtersets.py:74 -#: netbox/tenancy/filtersets.py:117 +#: tenancy/filtersets.py:47 tenancy/filtersets.py:74 tenancy/filtersets.py:117 msgid "Contact group (slug)" msgstr "Kontaktgruppe (URL-Slug)" -#: netbox/tenancy/filtersets.py:104 +#: tenancy/filtersets.py:104 msgid "Contact (ID)" msgstr "Kontakt (ID)" -#: netbox/tenancy/filtersets.py:121 +#: tenancy/filtersets.py:121 msgid "Contact role (ID)" msgstr "Kontaktrolle (ID)" -#: netbox/tenancy/filtersets.py:127 +#: tenancy/filtersets.py:127 msgid "Contact role (slug)" msgstr "Kontaktrolle (URL-Slug)" -#: netbox/tenancy/filtersets.py:158 +#: tenancy/filtersets.py:158 msgid "Contact group" msgstr "Kontaktgruppe" -#: netbox/tenancy/filtersets.py:169 +#: tenancy/filtersets.py:169 msgid "Parent tenant group (ID)" msgstr "Übergeordnete Mandantengruppe (ID)" -#: netbox/tenancy/filtersets.py:175 +#: tenancy/filtersets.py:175 msgid "Parent tenant group (slug)" msgstr "Übergeordnete Mandantengruppe (URL-Slug)" -#: netbox/tenancy/filtersets.py:181 netbox/tenancy/filtersets.py:201 +#: tenancy/filtersets.py:181 tenancy/filtersets.py:201 msgid "Tenant group (ID)" msgstr "Mandantengruppe (ID)" -#: netbox/tenancy/filtersets.py:234 +#: tenancy/filtersets.py:234 msgid "Tenant Group (ID)" msgstr "Mandantengruppe (ID)" -#: netbox/tenancy/filtersets.py:241 +#: tenancy/filtersets.py:241 msgid "Tenant Group (slug)" msgstr "Mandantengruppe (URL-Slug)" -#: netbox/tenancy/forms/bulk_edit.py:66 +#: tenancy/forms/bulk_edit.py:66 msgid "Desciption" msgstr "Beschreibung" -#: netbox/tenancy/forms/bulk_import.py:101 +#: tenancy/forms/bulk_import.py:101 msgid "Assigned contact" msgstr "Zugewiesener Kontakt" -#: netbox/tenancy/models/contacts.py:32 +#: tenancy/models/contacts.py:32 msgid "contact group" msgstr "Kontaktgruppe" -#: netbox/tenancy/models/contacts.py:33 +#: tenancy/models/contacts.py:33 msgid "contact groups" msgstr "Kontaktgruppen" -#: netbox/tenancy/models/contacts.py:48 +#: tenancy/models/contacts.py:48 msgid "contact role" msgstr "Kontaktrolle" -#: netbox/tenancy/models/contacts.py:49 +#: tenancy/models/contacts.py:49 msgid "contact roles" msgstr "Kontaktrollen" -#: netbox/tenancy/models/contacts.py:68 +#: tenancy/models/contacts.py:68 msgid "title" msgstr "Titel" -#: netbox/tenancy/models/contacts.py:73 +#: tenancy/models/contacts.py:73 msgid "phone" msgstr "Telefon" -#: netbox/tenancy/models/contacts.py:78 +#: tenancy/models/contacts.py:78 msgid "email" msgstr "E-Mail" -#: netbox/tenancy/models/contacts.py:87 +#: tenancy/models/contacts.py:87 msgid "link" msgstr "Link" -#: netbox/tenancy/models/contacts.py:103 +#: tenancy/models/contacts.py:103 msgid "contact" msgstr "Kontakt" -#: netbox/tenancy/models/contacts.py:104 +#: tenancy/models/contacts.py:104 msgid "contacts" msgstr "Kontakte" -#: netbox/tenancy/models/contacts.py:153 +#: tenancy/models/contacts.py:153 msgid "contact assignment" msgstr "Kontaktzuweisung" -#: netbox/tenancy/models/contacts.py:154 +#: tenancy/models/contacts.py:154 msgid "contact assignments" msgstr "Kontaktzuweisungen" -#: netbox/tenancy/models/contacts.py:170 +#: tenancy/models/contacts.py:170 #, python-brace-format msgid "Contacts cannot be assigned to this object type ({type})." msgstr "Kontakte können diesem Objekttyp nicht zugewiesen werden ({type})." -#: netbox/tenancy/models/tenants.py:32 +#: tenancy/models/tenants.py:32 msgid "tenant group" msgstr "Mandantengruppe" -#: netbox/tenancy/models/tenants.py:33 +#: tenancy/models/tenants.py:33 msgid "tenant groups" msgstr "Mandantengruppen" -#: netbox/tenancy/models/tenants.py:70 +#: tenancy/models/tenants.py:70 msgid "Tenant name must be unique per group." msgstr "Der Mandantenname muss pro Gruppe eindeutig sein." -#: netbox/tenancy/models/tenants.py:80 +#: tenancy/models/tenants.py:80 msgid "Tenant slug must be unique per group." msgstr "" "Die URL-freundliche Mandantenbezeichnung (URL-Slug) muss pro Gruppe " "einzigartig sein." -#: netbox/tenancy/models/tenants.py:88 +#: tenancy/models/tenants.py:88 msgid "tenant" msgstr "Mandant" -#: netbox/tenancy/models/tenants.py:89 +#: tenancy/models/tenants.py:89 msgid "tenants" msgstr "Mandanten" -#: netbox/tenancy/tables/contacts.py:112 +#: tenancy/tables/contacts.py:112 msgid "Contact Title" msgstr "Kontakt-Titel" -#: netbox/tenancy/tables/contacts.py:116 +#: tenancy/tables/contacts.py:116 msgid "Contact Phone" msgstr "Kontakt-Telefon" -#: netbox/tenancy/tables/contacts.py:121 +#: tenancy/tables/contacts.py:121 msgid "Contact Email" msgstr "Kontakt-E-Mail" -#: netbox/tenancy/tables/contacts.py:125 +#: tenancy/tables/contacts.py:125 msgid "Contact Address" msgstr "Kontakt-Adresse" -#: netbox/tenancy/tables/contacts.py:129 +#: tenancy/tables/contacts.py:129 msgid "Contact Link" msgstr "Kontakt-Link" -#: netbox/tenancy/tables/contacts.py:133 +#: tenancy/tables/contacts.py:133 msgid "Contact Description" msgstr "Kontakt-Beschreibung" -#: netbox/users/filtersets.py:33 netbox/users/filtersets.py:73 +#: users/filtersets.py:33 users/filtersets.py:73 msgid "Permission (ID)" msgstr "Berechtigung (ID)" -#: netbox/users/filtersets.py:38 netbox/users/filtersets.py:78 +#: users/filtersets.py:38 users/filtersets.py:78 msgid "Notification group (ID)" msgstr "Benachrichtigungsgruppe (ID)" -#: netbox/users/forms/bulk_edit.py:26 +#: users/forms/bulk_edit.py:26 msgid "First name" msgstr "Vorname" -#: netbox/users/forms/bulk_edit.py:31 +#: users/forms/bulk_edit.py:31 msgid "Last name" msgstr "Nachname" -#: netbox/users/forms/bulk_edit.py:43 +#: users/forms/bulk_edit.py:43 msgid "Staff status" msgstr "Mitarbeiter-Status" -#: netbox/users/forms/bulk_edit.py:48 +#: users/forms/bulk_edit.py:48 msgid "Superuser status" msgstr "Superuser-Status" -#: netbox/users/forms/bulk_import.py:41 +#: users/forms/bulk_import.py:41 msgid "If no key is provided, one will be generated automatically." msgstr "Wenn kein Schlüssel angegeben wird, wird automatisch einer generiert." -#: netbox/users/forms/filtersets.py:51 netbox/users/tables.py:42 +#: users/forms/filtersets.py:51 users/tables.py:42 msgid "Is Staff" msgstr "Ist Mitarbeiter" -#: netbox/users/forms/filtersets.py:58 netbox/users/tables.py:45 +#: users/forms/filtersets.py:58 users/tables.py:45 msgid "Is Superuser" msgstr "Ist Superuser" -#: netbox/users/forms/filtersets.py:91 netbox/users/tables.py:86 +#: users/forms/filtersets.py:91 users/tables.py:86 msgid "Can View" msgstr "Kann ansehen" -#: netbox/users/forms/filtersets.py:98 netbox/users/tables.py:89 +#: users/forms/filtersets.py:98 users/tables.py:89 msgid "Can Add" msgstr "Kann hinzufügen" -#: netbox/users/forms/filtersets.py:105 netbox/users/tables.py:92 +#: users/forms/filtersets.py:105 users/tables.py:92 msgid "Can Change" msgstr "Kann ändern" -#: netbox/users/forms/filtersets.py:112 netbox/users/tables.py:95 +#: users/forms/filtersets.py:112 users/tables.py:95 msgid "Can Delete" msgstr "Kann löschen" -#: netbox/users/forms/model_forms.py:62 +#: users/forms/model_forms.py:62 msgid "User Interface" msgstr "Benutzeroberfläche" -#: netbox/users/forms/model_forms.py:114 +#: users/forms/model_forms.py:114 msgid "" "Keys must be at least 40 characters in length. Be sure to record " "your key prior to submitting this form, as it may no longer be " @@ -14832,7 +14090,7 @@ msgstr "" "da er möglicherweise nicht mehr zugänglich ist, sobald das Token erstellt " "wurde." -#: netbox/users/forms/model_forms.py:126 +#: users/forms/model_forms.py:126 msgid "" "Allowed IPv4/IPv6 networks from where the token can be used. Leave blank for" " no restrictions. Example: " @@ -14843,33 +14101,33 @@ msgstr "" "möchten. Beispiel: 10.1.1.0/24, 192.168.10.16/32.2001:db 8:1: " ":/64" -#: netbox/users/forms/model_forms.py:175 +#: users/forms/model_forms.py:175 msgid "Confirm password" msgstr "Passwort bestätigen" -#: netbox/users/forms/model_forms.py:178 +#: users/forms/model_forms.py:178 msgid "Enter the same password as before, for verification." msgstr "Geben Sie zur Überprüfung dasselbe Passwort wie zuvor ein." -#: netbox/users/forms/model_forms.py:227 +#: users/forms/model_forms.py:227 msgid "Passwords do not match! Please check your input and try again." msgstr "" "Passwörter stimmen nicht überein! Bitte überprüfen Sie Ihre Eingabe und " "versuchen Sie es erneut." -#: netbox/users/forms/model_forms.py:294 +#: users/forms/model_forms.py:294 msgid "Additional actions" msgstr "Zusätzliche Aktionen" -#: netbox/users/forms/model_forms.py:297 +#: users/forms/model_forms.py:297 msgid "Actions granted in addition to those listed above" msgstr "Zusätzlich zu den oben aufgeführten Maßnahmen gewährte Maßnahmen" -#: netbox/users/forms/model_forms.py:313 +#: users/forms/model_forms.py:313 msgid "Objects" msgstr "Objekte" -#: netbox/users/forms/model_forms.py:325 +#: users/forms/model_forms.py:325 msgid "" "JSON expression of a queryset filter that will return only permitted " "objects. Leave null to match all objects of this type. A list of multiple " @@ -14880,82 +14138,82 @@ msgstr "" "entsprechen. Eine Liste mehrerer Objekte führt zu einer logischen ODER-" "Operation." -#: netbox/users/forms/model_forms.py:364 +#: users/forms/model_forms.py:364 msgid "At least one action must be selected." msgstr "Es muss mindestens eine Aktion ausgewählt werden." -#: netbox/users/forms/model_forms.py:382 +#: users/forms/model_forms.py:382 #, python-brace-format msgid "Invalid filter for {model}: {error}" msgstr "Ungültiger Filter für {model}: {error}" -#: netbox/users/models/permissions.py:39 +#: users/models/permissions.py:39 msgid "The list of actions granted by this permission" msgstr "Die Liste der Aktionen, die durch diese Berechtigung gewährt wurden" -#: netbox/users/models/permissions.py:44 +#: users/models/permissions.py:44 msgid "constraints" msgstr "Einschränkungen" -#: netbox/users/models/permissions.py:45 +#: users/models/permissions.py:45 msgid "" "Queryset filter matching the applicable objects of the selected type(s)" msgstr "" "Queryset-Filter, der den entsprechenden Objekten der ausgewählten Typen " "entspricht" -#: netbox/users/models/permissions.py:52 +#: users/models/permissions.py:52 msgid "permission" msgstr "Berechtigung" -#: netbox/users/models/permissions.py:53 netbox/users/models/users.py:47 +#: users/models/permissions.py:53 users/models/users.py:47 msgid "permissions" msgstr "Berechtigungen" -#: netbox/users/models/preferences.py:29 netbox/users/models/preferences.py:30 +#: users/models/preferences.py:29 users/models/preferences.py:30 msgid "user preferences" msgstr "Benutzereinstellungen" -#: netbox/users/models/preferences.py:97 +#: users/models/preferences.py:97 #, python-brace-format msgid "Key '{path}' is a leaf node; cannot assign new keys" msgstr "" "Schlüssel '{path}'ist ein Blattknoten; es können keine neuen Schlüssel " "zugewiesen werden" -#: netbox/users/models/preferences.py:109 +#: users/models/preferences.py:109 #, python-brace-format msgid "Key '{path}' is a dictionary; cannot assign a non-dictionary value" msgstr "" "Schlüssel '{path}'ist ein Wörterbuch; es kann kein Wert zugewiesen werden, " "der nicht aus dem Wörterbuch stammt" -#: netbox/users/models/tokens.py:36 +#: users/models/tokens.py:36 msgid "expires" msgstr "läuft ab" -#: netbox/users/models/tokens.py:41 +#: users/models/tokens.py:41 msgid "last used" msgstr "zuletzt benutzt" -#: netbox/users/models/tokens.py:46 +#: users/models/tokens.py:46 msgid "key" msgstr "Schlüssel" -#: netbox/users/models/tokens.py:52 +#: users/models/tokens.py:52 msgid "write enabled" msgstr "Schreiben aktiviert" -#: netbox/users/models/tokens.py:54 +#: users/models/tokens.py:54 msgid "Permit create/update/delete operations using this key" msgstr "" "Lasse Erstellen/Aktualisieren/Löschen Vorgänge mit diesem Schlüssel zu" -#: netbox/users/models/tokens.py:65 +#: users/models/tokens.py:65 msgid "allowed IPs" msgstr "erlaubte IPs" -#: netbox/users/models/tokens.py:67 +#: users/models/tokens.py:67 msgid "" "Allowed IPv4/IPv6 networks from where the token can be used. Leave blank for" " no restrictions. Ex: \"10.1.1.0/24, 192.168.10.16/32, 2001:DB8:1::/64\"" @@ -14964,43 +14222,43 @@ msgstr "" "kann. Lassen Sie das Feld leer, wenn Sie keine Einschränkungen haben " "möchten. Beispiel: „10.1.1.0/24, 192.168.10.16/32, 2001:DB 8:1: :/64\"" -#: netbox/users/models/tokens.py:75 +#: users/models/tokens.py:75 msgid "token" msgstr "Token" -#: netbox/users/models/tokens.py:76 +#: users/models/tokens.py:76 msgid "tokens" msgstr "Token" -#: netbox/users/models/users.py:57 netbox/vpn/models/crypto.py:42 +#: users/models/users.py:57 vpn/models/crypto.py:42 msgid "group" msgstr "Gruppe" -#: netbox/users/models/users.py:92 +#: users/models/users.py:92 msgid "user" msgstr "Benutzer" -#: netbox/users/models/users.py:104 +#: users/models/users.py:104 msgid "A user with this username already exists." msgstr "Ein Benutzer mit diesem Benutzernamen existiert bereits." -#: netbox/users/tables.py:98 +#: users/tables.py:98 msgid "Custom Actions" msgstr "Benutzerdefinierte Aktionen" -#: netbox/utilities/api.py:153 +#: utilities/api.py:153 #, python-brace-format msgid "Related object not found using the provided attributes: {params}" msgstr "" "Verwandtes Objekt wurde mit den angegebenen Attributen nicht gefunden: " "{params}" -#: netbox/utilities/api.py:156 +#: utilities/api.py:156 #, python-brace-format msgid "Multiple objects match the provided attributes: {params}" msgstr "Mehrere Objekte entsprechen den angegebenen Attributen: {params}" -#: netbox/utilities/api.py:168 +#: utilities/api.py:168 #, python-brace-format msgid "" "Related objects must be referenced by numeric ID or by dictionary of " @@ -15010,43 +14268,43 @@ msgstr "" "Attributverzeichnisses referenziert werden. Es wurde ein unbekannter Wert " "empfangen: {value}" -#: netbox/utilities/api.py:177 +#: utilities/api.py:177 #, python-brace-format msgid "Related object not found using the provided numeric ID: {id}" msgstr "" "Verwandtes Objekt wurde mit der angegebenen numerischen ID nicht gefunden: " "{id}" -#: netbox/utilities/choices.py:19 +#: utilities/choices.py:19 #, python-brace-format msgid "{name} has a key defined but CHOICES is not a list" msgstr "{name} hat einen Schlüssel definiert, aber CHOICES ist keine Liste" -#: netbox/utilities/conversion.py:19 +#: utilities/conversion.py:19 msgid "Weight must be a positive number" msgstr "Das Gewicht muss eine positive Zahl sein" -#: netbox/utilities/conversion.py:21 +#: utilities/conversion.py:21 #, python-brace-format msgid "Invalid value '{weight}' for weight (must be a number)" msgstr "Ungültiger Wert '{weight}'für Gewicht (muss eine Zahl sein)" -#: netbox/utilities/conversion.py:32 netbox/utilities/conversion.py:62 +#: utilities/conversion.py:32 utilities/conversion.py:62 #, python-brace-format msgid "Unknown unit {unit}. Must be one of the following: {valid_units}" msgstr "" "Unbekannte Einheit {unit}. Es muss eine der folgenden sein: {valid_units}" -#: netbox/utilities/conversion.py:45 +#: utilities/conversion.py:45 msgid "Length must be a positive number" msgstr "Die Länge muss eine positive Zahl sein" -#: netbox/utilities/conversion.py:47 +#: utilities/conversion.py:47 #, python-brace-format msgid "Invalid value '{length}' for length (must be a number)" msgstr "Ungültiger Wert '{length}' für die Länge (muss eine Zahl sein)" -#: netbox/utilities/error_handlers.py:31 +#: utilities/error_handlers.py:31 #, python-brace-format msgid "" "Unable to delete {objects}. {count} dependent objects were " @@ -15055,15 +14313,15 @@ msgstr "" "Löschen von {objects} nicht möglich. {count} abhängige " "Objekte wurden gefunden: " -#: netbox/utilities/error_handlers.py:33 +#: utilities/error_handlers.py:33 msgid "More than 50" msgstr "Mehr als 50" -#: netbox/utilities/fields.py:30 +#: utilities/fields.py:30 msgid "RGB color in hexadecimal. Example: " msgstr "RGB Farbe in hexadezimaler Form. Beispiel:" -#: netbox/utilities/fields.py:159 +#: utilities/fields.py:159 #, python-format msgid "" "%s(%r) is invalid. to_model parameter to CounterCacheField must be a string " @@ -15072,7 +14330,7 @@ msgstr "" "%s(%r) ist ungültig. Der to_model-Parameter für CounterCacheField muss eine " "Zeichenfolge im Format 'app.model' sein" -#: netbox/utilities/fields.py:169 +#: utilities/fields.py:169 #, python-format msgid "" "%s(%r) is invalid. to_field parameter to CounterCacheField must be a string " @@ -15081,37 +14339,37 @@ msgstr "" "%s(%r) ist ungültig. Der to_field-Parameter für CounterCacheField muss eine " "Zeichenfolge im Format 'field' sein" -#: netbox/utilities/forms/bulk_import.py:23 +#: utilities/forms/bulk_import.py:23 msgid "Enter object data in CSV, JSON or YAML format." msgstr "Geben Sie Objektdaten im CSV-, JSON- oder YAML-Format ein." -#: netbox/utilities/forms/bulk_import.py:36 +#: utilities/forms/bulk_import.py:36 msgid "CSV delimiter" msgstr "CSV-Trennzeichen" -#: netbox/utilities/forms/bulk_import.py:37 +#: utilities/forms/bulk_import.py:37 msgid "The character which delimits CSV fields. Applies only to CSV format." msgstr "Das Zeichen, das CSV-Felder begrenzt. Gilt nur für das CSV-Format." -#: netbox/utilities/forms/bulk_import.py:51 +#: utilities/forms/bulk_import.py:51 msgid "Form data must be empty when uploading/selecting a file." msgstr "" "Formulardaten müssen leer sein, wenn eine Datei hochladen/ausgewählt wird." -#: netbox/utilities/forms/bulk_import.py:80 +#: utilities/forms/bulk_import.py:80 #, python-brace-format msgid "Unknown data format: {format}" msgstr "Unbekanntes Datenformat: {format}" -#: netbox/utilities/forms/bulk_import.py:100 +#: utilities/forms/bulk_import.py:100 msgid "Unable to detect data format. Please specify." msgstr "Das Datenformat konnte nicht erkannt werden. Bitte spezifizieren Sie." -#: netbox/utilities/forms/bulk_import.py:123 +#: utilities/forms/bulk_import.py:123 msgid "Invalid CSV delimiter" msgstr "Ungültiges CSV-Trennzeichen" -#: netbox/utilities/forms/bulk_import.py:167 +#: utilities/forms/bulk_import.py:167 msgid "" "Invalid YAML data. Data must be in the form of multiple documents, or a " "single document comprising a list of dictionaries." @@ -15119,7 +14377,7 @@ msgstr "" "Ungültige YAML-Daten. Die Daten müssen in Form mehrerer Dokumente oder eines" " einzelnen Dokuments vorliegen, das eine Liste von Wörterbüchern umfasst." -#: netbox/utilities/forms/fields/array.py:20 +#: utilities/forms/fields/array.py:20 #, python-brace-format msgid "" "Invalid list ({value}). Must be numeric and ranges must be in ascending " @@ -15128,7 +14386,7 @@ msgstr "" "Ungültige Liste ({value}). Muss numerisch sein und Bereiche müssen in " "aufsteigender Reihenfolge sein." -#: netbox/utilities/forms/fields/array.py:40 +#: utilities/forms/fields/array.py:40 msgid "" "Specify one or more numeric ranges separated by commas. Example: " "1-5,20-30" @@ -15136,7 +14394,7 @@ msgstr "" "Geben Sie einen oder mehrere numerische Bereiche an, die durch Kommas " "getrennt sind. Beispiel: 1-5,20-30" -#: netbox/utilities/forms/fields/array.py:47 +#: utilities/forms/fields/array.py:47 #, python-brace-format msgid "" "Invalid ranges ({value}). Must be a range of integers in ascending order." @@ -15144,18 +14402,17 @@ msgstr "" "Ungültige Bereiche ({value}). Muss ein Bereich von ganzen Zahlen in " "aufsteigender Reihenfolge sein." -#: netbox/utilities/forms/fields/csv.py:44 +#: utilities/forms/fields/csv.py:44 #, python-brace-format msgid "Invalid value for a multiple choice field: {value}" msgstr "Ungültiger Wert für ein Multiple-Choice-Feld: {value}" -#: netbox/utilities/forms/fields/csv.py:57 -#: netbox/utilities/forms/fields/csv.py:78 +#: utilities/forms/fields/csv.py:57 utilities/forms/fields/csv.py:78 #, python-format msgid "Object not found: %(value)s" msgstr "Objekt wurde nicht gefunden: %(value)s" -#: netbox/utilities/forms/fields/csv.py:65 +#: utilities/forms/fields/csv.py:65 #, python-brace-format msgid "" "\"{value}\" is not a unique value for this field; multiple objects were " @@ -15164,20 +14421,20 @@ msgstr "" "„{value}\"ist kein eindeutiger Wert für dieses Feld; es wurden mehrere " "Objekte gefunden" -#: netbox/utilities/forms/fields/csv.py:69 +#: utilities/forms/fields/csv.py:69 #, python-brace-format msgid "\"{field_name}\" is an invalid accessor field name." msgstr "„{field_name}\"ist ein ungültiger Zugriffs-Feldname." -#: netbox/utilities/forms/fields/csv.py:101 +#: utilities/forms/fields/csv.py:101 msgid "Object type must be specified as \".\"" msgstr "Der Objekttyp muss als \".“ angegeben werden." -#: netbox/utilities/forms/fields/csv.py:105 +#: utilities/forms/fields/csv.py:105 msgid "Invalid object type" msgstr "Ungültiger Objekttyp" -#: netbox/utilities/forms/fields/expandable.py:25 +#: utilities/forms/fields/expandable.py:25 msgid "" "Alphanumeric ranges are supported for bulk creation. Mixed cases and types " "within a single range are not supported (example: " @@ -15187,7 +14444,7 @@ msgstr "" "und Kleinschreibung und Typen innerhalb eines einzigen Bereichs werden nicht" " unterstützt (Beispiel: [ge, xe] -0/0/ [0-9])." -#: netbox/utilities/forms/fields/expandable.py:46 +#: utilities/forms/fields/expandable.py:46 msgid "" "Specify a numeric range to create multiple IPs.
Example: " "192.0.2.[1,5,100-254]/24" @@ -15195,7 +14452,7 @@ msgstr "" "Geben Sie einen numerischen Bereich an, um mehrere IPs zu erstellen.
Beispiel: 192,0,2. [1.5,100-254] /24" -#: netbox/utilities/forms/fields/fields.py:31 +#: utilities/forms/fields/fields.py:31 #, python-brace-format msgid "" " Markdown Syntax wird unterstützt" -#: netbox/utilities/forms/fields/fields.py:48 +#: utilities/forms/fields/fields.py:48 msgid "URL-friendly unique shorthand" msgstr "URL-freundliche, einzigartige Kurzschrift" -#: netbox/utilities/forms/fields/fields.py:101 +#: utilities/forms/fields/fields.py:101 msgid "Enter context data in JSON format." msgstr "" "Geben Sie Kontextdaten im JSON Format ein." -#: netbox/utilities/forms/fields/fields.py:124 +#: utilities/forms/fields/fields.py:124 msgid "MAC address must be in EUI-48 format" msgstr "Die MAC-Adresse muss im EUI-48-Format sein" -#: netbox/utilities/forms/forms.py:52 +#: utilities/forms/forms.py:52 msgid "Use regular expressions" msgstr "Verwenden Sie reguläre Ausdrücke" -#: netbox/utilities/forms/forms.py:75 +#: utilities/forms/forms.py:75 msgid "" "Numeric ID of an existing object to update (if not creating a new object)" msgstr "" "Numerische ID eines vorhandenen Objekts, das aktualisiert werden soll (wenn " "kein neues Objekt erstellt wird)" -#: netbox/utilities/forms/forms.py:92 +#: utilities/forms/forms.py:92 #, python-brace-format msgid "Unrecognized header: {name}" msgstr "Unbekannter Header: {name}" -#: netbox/utilities/forms/forms.py:118 +#: utilities/forms/forms.py:118 msgid "Available Columns" msgstr "Verfügbare Spalten" -#: netbox/utilities/forms/forms.py:126 +#: utilities/forms/forms.py:126 msgid "Selected Columns" msgstr "Ausgewählte Spalten" -#: netbox/utilities/forms/mixins.py:44 +#: utilities/forms/mixins.py:44 msgid "" "This object has been modified since the form was rendered. Please consult " "the object's change log for details." @@ -15249,13 +14506,13 @@ msgstr "" "Dieses Objekt wurde seit dem Rendern des Formulars geändert. Einzelheiten " "entnehmen Sie bitte dem Änderungsprotokoll des Objekts." -#: netbox/utilities/forms/utils.py:42 netbox/utilities/forms/utils.py:68 -#: netbox/utilities/forms/utils.py:85 netbox/utilities/forms/utils.py:87 +#: utilities/forms/utils.py:42 utilities/forms/utils.py:68 +#: utilities/forms/utils.py:85 utilities/forms/utils.py:87 #, python-brace-format msgid "Range \"{value}\" is invalid." msgstr "Bereich “{value}\" ist ungültig." -#: netbox/utilities/forms/utils.py:74 +#: utilities/forms/utils.py:74 #, python-brace-format msgid "" "Invalid range: Ending value ({end}) must be greater than beginning value " @@ -15264,71 +14521,71 @@ msgstr "" "Ungültiger Bereich: Der Endwert ({end}) muss größer als der Anfangswert " "({begin}) sein." -#: netbox/utilities/forms/utils.py:232 +#: utilities/forms/utils.py:232 #, python-brace-format msgid "Duplicate or conflicting column header for \"{field}\"" msgstr "Doppelte oder widersprüchliche Spaltenüberschrift für“{field}“" -#: netbox/utilities/forms/utils.py:238 +#: utilities/forms/utils.py:238 #, python-brace-format msgid "Duplicate or conflicting column header for \"{header}\"" msgstr "Doppelte oder widersprüchliche Spaltenüberschrift für“{header}“" -#: netbox/utilities/forms/utils.py:247 +#: utilities/forms/utils.py:247 #, python-brace-format msgid "Row {row}: Expected {count_expected} columns but found {count_found}" msgstr "" "Reihe {row}: {count_expected} Spalten erwartet, aber {count_found} gefunden" -#: netbox/utilities/forms/utils.py:270 +#: utilities/forms/utils.py:270 #, python-brace-format msgid "Unexpected column header \"{field}\" found." msgstr "Unerwartete Spaltenüberschrift“{field}„gefunden." -#: netbox/utilities/forms/utils.py:272 +#: utilities/forms/utils.py:272 #, python-brace-format msgid "Column \"{field}\" is not a related object; cannot use dots" msgstr "" "Spalte“{field}\"ist kein verwandtes Objekt; Punkte können nicht verwendet " "werden" -#: netbox/utilities/forms/utils.py:276 +#: utilities/forms/utils.py:276 #, python-brace-format msgid "Invalid related object attribute for column \"{field}\": {to_field}" msgstr "Ungültiges verwandtes Objektattribut für Spalte“{field}„: {to_field}" -#: netbox/utilities/forms/utils.py:284 +#: utilities/forms/utils.py:284 #, python-brace-format msgid "Required column header \"{header}\" not found." msgstr "Erforderliche Spaltenüberschrift“{header}„nicht gefunden." -#: netbox/utilities/forms/widgets/apiselect.py:124 +#: utilities/forms/widgets/apiselect.py:124 #, python-brace-format msgid "Missing required value for dynamic query param: '{dynamic_params}'" msgstr "" "Fehlender erforderlicher Wert für den dynamischen Abfrageparameter: " "'{dynamic_params}'" -#: netbox/utilities/forms/widgets/apiselect.py:141 +#: utilities/forms/widgets/apiselect.py:141 #, python-brace-format msgid "Missing required value for static query param: '{static_params}'" msgstr "" "Fehlender erforderlicher Wert für den statischen Abfrageparameter: " "'{static_params}'" -#: netbox/utilities/password_validation.py:13 +#: utilities/password_validation.py:13 msgid "Password must have at least one numeral." msgstr "Das Passwort muss mindestens eine Ziffer enthalten." -#: netbox/utilities/password_validation.py:18 +#: utilities/password_validation.py:18 msgid "Password must have at least one uppercase letter." msgstr "Das Passwort muss mindestens einen Großbuchstaben enthalten." -#: netbox/utilities/password_validation.py:23 +#: utilities/password_validation.py:23 msgid "Password must have at least one lowercase letter." msgstr "Das Passwort muss mindestens einen Kleinbuchstaben enthalten." -#: netbox/utilities/password_validation.py:27 +#: utilities/password_validation.py:27 msgid "" "Your password must contain at least one numeral, one uppercase letter and " "one lowercase letter." @@ -15336,7 +14593,7 @@ msgstr "" "Ihr Passwort muss mindestens eine Ziffer, einen Großbuchstaben und einen " "Kleinbuchstaben enthalten." -#: netbox/utilities/permissions.py:42 +#: utilities/permissions.py:42 #, python-brace-format msgid "" "Invalid permission name: {name}. Must be in the format " @@ -15345,128 +14602,128 @@ msgstr "" "Ungültiger Berechtigungsname: {name}. Muss im Format " "._ sein." -#: netbox/utilities/permissions.py:60 +#: utilities/permissions.py:60 #, python-brace-format msgid "Unknown app_label/model_name for {name}" msgstr "Unbekanntes app_label/model_name für {name}" -#: netbox/utilities/request.py:76 +#: utilities/request.py:76 #, python-brace-format msgid "Invalid IP address set for {header}: {ip}" msgstr "Ungültige IP-Adresse gesetzt für {header}: {ip}" -#: netbox/utilities/tables.py:47 +#: utilities/tables.py:47 #, python-brace-format msgid "A column named {name} is already defined for table {table_name}" msgstr "" "Eine Spalte mit dem Namen {name} ist bereits für die Tabelle {table_name} " "definiert" -#: netbox/utilities/templates/builtins/customfield_value.html:30 +#: utilities/templates/builtins/customfield_value.html:30 msgid "Not defined" msgstr "Nicht definiert" -#: netbox/utilities/templates/buttons/bookmark.html:9 +#: utilities/templates/buttons/bookmark.html:9 msgid "Unbookmark" msgstr "Lesezeichen aufheben" -#: netbox/utilities/templates/buttons/bookmark.html:13 +#: utilities/templates/buttons/bookmark.html:13 msgid "Bookmark" msgstr "Lesezeichen setzen" -#: netbox/utilities/templates/buttons/clone.html:4 +#: utilities/templates/buttons/clone.html:4 msgid "Clone" msgstr "Klonen" -#: netbox/utilities/templates/buttons/export.html:7 +#: utilities/templates/buttons/export.html:7 msgid "Current View" msgstr "Aktuelle Ansicht" -#: netbox/utilities/templates/buttons/export.html:8 +#: utilities/templates/buttons/export.html:8 msgid "All Data" msgstr "Alle Daten" -#: netbox/utilities/templates/buttons/export.html:28 +#: utilities/templates/buttons/export.html:28 msgid "Add export template" msgstr "Exportvorlage hinzufügen" -#: netbox/utilities/templates/buttons/import.html:4 +#: utilities/templates/buttons/import.html:4 msgid "Import" msgstr "Importieren" -#: netbox/utilities/templates/buttons/subscribe.html:10 +#: utilities/templates/buttons/subscribe.html:10 msgid "Unsubscribe" msgstr "Nicht abonnieren" -#: netbox/utilities/templates/buttons/subscribe.html:14 +#: utilities/templates/buttons/subscribe.html:14 msgid "Subscribe" msgstr "Abonnieren" -#: netbox/utilities/templates/form_helpers/render_field.html:41 +#: utilities/templates/form_helpers/render_field.html:41 msgid "Copy to clipboard" msgstr "In die Zwischenablage kopieren" -#: netbox/utilities/templates/form_helpers/render_field.html:57 +#: 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 +#: utilities/templates/form_helpers/render_field.html:70 msgid "Set Null" msgstr "Auf Null setzen" -#: netbox/utilities/templates/helpers/applied_filters.html:11 +#: utilities/templates/helpers/applied_filters.html:11 msgid "Clear all" msgstr "Alles löschen" -#: netbox/utilities/templates/helpers/table_config_form.html:8 +#: utilities/templates/helpers/table_config_form.html:8 msgid "Table Configuration" msgstr "Tabellenkonfiguration" -#: netbox/utilities/templates/helpers/table_config_form.html:31 +#: utilities/templates/helpers/table_config_form.html:31 msgid "Move Up" msgstr "Nach oben bewegen" -#: netbox/utilities/templates/helpers/table_config_form.html:34 +#: utilities/templates/helpers/table_config_form.html:34 msgid "Move Down" msgstr "Nach unten bewegen" -#: netbox/utilities/templates/navigation/menu.html:14 +#: utilities/templates/navigation/menu.html:14 msgid "Search…" msgstr "Suchen..." -#: netbox/utilities/templates/navigation/menu.html:14 +#: utilities/templates/navigation/menu.html:14 msgid "Search NetBox" msgstr "Suche NetBox" -#: netbox/utilities/templates/widgets/apiselect.html:7 +#: utilities/templates/widgets/apiselect.html:7 msgid "Open selector" msgstr "Selektor öffnen" -#: netbox/utilities/templates/widgets/markdown_input.html:6 +#: utilities/templates/widgets/markdown_input.html:6 msgid "Write" msgstr "Schreiben" -#: netbox/utilities/testing/views.py:632 +#: utilities/testing/views.py:632 msgid "The test must define csv_update_data." msgstr "Der Test muss csv_update_data definieren." -#: netbox/utilities/validators.py:65 +#: utilities/validators.py:65 #, python-brace-format msgid "{value} is not a valid regular expression." msgstr "{value} ist kein gültiger regulärer Ausdruck." -#: netbox/utilities/views.py:57 +#: utilities/views.py:57 #, python-brace-format msgid "{self.__class__.__name__} must implement get_required_permission()" msgstr "" "{self.__class__.__name__} muss get_required_permission() implementieren" -#: netbox/utilities/views.py:93 +#: utilities/views.py:93 #, python-brace-format msgid "{class_name} must implement get_required_permission()" msgstr "{class_name} muss get_required_permission() implementieren" -#: netbox/utilities/views.py:117 +#: utilities/views.py:117 #, python-brace-format msgid "" "{class_name} has no queryset defined. ObjectPermissionRequiredMixin may only" @@ -15476,63 +14733,61 @@ msgstr "" "darf nur für Ansichten verwendet werden, die einen Basis-Abfragesatz " "definieren" -#: netbox/virtualization/filtersets.py:79 +#: virtualization/filtersets.py:79 msgid "Parent group (ID)" msgstr "Übergeordnete Gruppe (ID)" -#: netbox/virtualization/filtersets.py:85 +#: virtualization/filtersets.py:85 msgid "Parent group (slug)" msgstr "Übergeordnete Gruppe (URL-Slug)" -#: netbox/virtualization/filtersets.py:89 -#: netbox/virtualization/filtersets.py:141 +#: virtualization/filtersets.py:89 virtualization/filtersets.py:141 msgid "Cluster type (ID)" msgstr "Clustertyp (ID)" -#: netbox/virtualization/filtersets.py:151 -#: netbox/virtualization/filtersets.py:271 +#: virtualization/filtersets.py:151 virtualization/filtersets.py:271 msgid "Cluster (ID)" msgstr "Cluster (ID)" -#: netbox/virtualization/forms/bulk_edit.py:166 -#: netbox/virtualization/models/virtualmachines.py:115 +#: virtualization/forms/bulk_edit.py:166 +#: virtualization/models/virtualmachines.py:115 msgid "vCPUs" msgstr "vCPUs" -#: netbox/virtualization/forms/bulk_edit.py:170 +#: virtualization/forms/bulk_edit.py:170 msgid "Memory (MB)" msgstr "Speicher (MB)" -#: netbox/virtualization/forms/bulk_edit.py:174 +#: virtualization/forms/bulk_edit.py:174 msgid "Disk (GB)" msgstr "Festplatte (GB)" -#: netbox/virtualization/forms/bulk_edit.py:334 -#: netbox/virtualization/forms/filtersets.py:251 +#: virtualization/forms/bulk_edit.py:334 +#: virtualization/forms/filtersets.py:251 msgid "Size (GB)" msgstr "Größe (GB)" -#: netbox/virtualization/forms/bulk_import.py:44 +#: virtualization/forms/bulk_import.py:44 msgid "Type of cluster" msgstr "Art des Clusters" -#: netbox/virtualization/forms/bulk_import.py:51 +#: virtualization/forms/bulk_import.py:51 msgid "Assigned cluster group" msgstr "Zugewiesene Clustergruppe" -#: netbox/virtualization/forms/bulk_import.py:96 +#: virtualization/forms/bulk_import.py:96 msgid "Assigned cluster" msgstr "Zugewiesener Cluster" -#: netbox/virtualization/forms/bulk_import.py:103 +#: virtualization/forms/bulk_import.py:103 msgid "Assigned device within cluster" msgstr "Zugewiesenes Gerät innerhalb des Clusters" -#: netbox/virtualization/forms/filtersets.py:183 +#: virtualization/forms/filtersets.py:183 msgid "Serial number" msgstr "Seriennummer" -#: netbox/virtualization/forms/model_forms.py:153 +#: virtualization/forms/model_forms.py:153 #, python-brace-format msgid "" "{device} belongs to a different site ({device_site}) than the cluster " @@ -15541,52 +14796,52 @@ msgstr "" "{device} gehört zu einerm anderen Standort ({device_site}) als das Cluster " "({cluster_site})" -#: netbox/virtualization/forms/model_forms.py:192 +#: virtualization/forms/model_forms.py:192 msgid "Optionally pin this VM to a specific host device within the cluster" msgstr "" "Pinnen Sie diese VM optional an ein bestimmtes Host-Gerät innerhalb des " "Clusters an" -#: netbox/virtualization/forms/model_forms.py:221 +#: virtualization/forms/model_forms.py:221 msgid "Site/Cluster" msgstr "Standort/Cluster" -#: netbox/virtualization/forms/model_forms.py:244 +#: virtualization/forms/model_forms.py:244 msgid "Disk size is managed via the attachment of virtual disks." msgstr "" "Die Festplattengröße wird durch das Anhängen virtueller Festplatten " "verwaltet." -#: netbox/virtualization/forms/model_forms.py:372 -#: netbox/virtualization/tables/virtualmachines.py:111 +#: virtualization/forms/model_forms.py:372 +#: virtualization/tables/virtualmachines.py:111 msgid "Disk" msgstr "Festplatte" -#: netbox/virtualization/models/clusters.py:25 +#: virtualization/models/clusters.py:25 msgid "cluster type" msgstr "Clustertyp" -#: netbox/virtualization/models/clusters.py:26 +#: virtualization/models/clusters.py:26 msgid "cluster types" msgstr "Clustertypen" -#: netbox/virtualization/models/clusters.py:45 +#: virtualization/models/clusters.py:45 msgid "cluster group" msgstr "Clustergruppe" -#: netbox/virtualization/models/clusters.py:46 +#: virtualization/models/clusters.py:46 msgid "cluster groups" msgstr "Clustergruppen" -#: netbox/virtualization/models/clusters.py:121 +#: virtualization/models/clusters.py:121 msgid "cluster" msgstr "Cluster" -#: netbox/virtualization/models/clusters.py:122 +#: virtualization/models/clusters.py:122 msgid "clusters" msgstr "Cluster" -#: netbox/virtualization/models/clusters.py:141 +#: virtualization/models/clusters.py:141 #, python-brace-format msgid "" "{count} devices are assigned as hosts for this cluster but are not in site " @@ -15595,33 +14850,33 @@ msgstr "" "{count} Geräte sind als Hosts für diesen Cluster zugewiesen, befinden sich " "aber nicht an dem Standort {site}" -#: netbox/virtualization/models/virtualmachines.py:123 +#: virtualization/models/virtualmachines.py:123 msgid "memory (MB)" msgstr "Speicher (MB)" -#: netbox/virtualization/models/virtualmachines.py:128 +#: virtualization/models/virtualmachines.py:128 msgid "disk (MB)" msgstr "Festplatte (MB)" -#: netbox/virtualization/models/virtualmachines.py:166 +#: virtualization/models/virtualmachines.py:166 msgid "Virtual machine name must be unique per cluster." msgstr "Der Name der virtuellen Maschine muss pro Cluster eindeutig sein." -#: netbox/virtualization/models/virtualmachines.py:169 +#: virtualization/models/virtualmachines.py:169 msgid "virtual machine" msgstr "virtuelle Maschine" -#: netbox/virtualization/models/virtualmachines.py:170 +#: virtualization/models/virtualmachines.py:170 msgid "virtual machines" msgstr "virtuelle Maschinen" -#: netbox/virtualization/models/virtualmachines.py:184 +#: virtualization/models/virtualmachines.py:184 msgid "A virtual machine must be assigned to a site and/or cluster." msgstr "" "Eine virtuelle Maschine muss einem Standort und/oder einem Cluster " "zugewiesen werden." -#: netbox/virtualization/models/virtualmachines.py:191 +#: virtualization/models/virtualmachines.py:191 #, python-brace-format msgid "" "The selected cluster ({cluster}) is not assigned to this site ({site})." @@ -15629,11 +14884,11 @@ msgstr "" "Das ausgewählte Cluster ({cluster}) ist diesem Standort nicht zugeordnet " "({site})." -#: netbox/virtualization/models/virtualmachines.py:198 +#: virtualization/models/virtualmachines.py:198 msgid "Must specify a cluster when assigning a host device." msgstr "Bei der Zuweisung eines Hostgeräts muss ein Cluster angegeben werden." -#: netbox/virtualization/models/virtualmachines.py:203 +#: virtualization/models/virtualmachines.py:203 #, python-brace-format msgid "" "The selected device ({device}) is not assigned to this cluster ({cluster})." @@ -15641,7 +14896,7 @@ msgstr "" "Das gewählte Gerät ({device}) ist diesem Cluster nicht zugewiesen " "({cluster})." -#: netbox/virtualization/models/virtualmachines.py:215 +#: virtualization/models/virtualmachines.py:215 #, python-brace-format msgid "" "The specified disk size ({size}) must match the aggregate size of assigned " @@ -15650,18 +14905,18 @@ msgstr "" "Die angegebene Festplattengröße ({size}) muss der Gesamtgröße der " "zugewiesenen virtuellen Laufwerke entsprechen ({total_size})." -#: netbox/virtualization/models/virtualmachines.py:229 +#: virtualization/models/virtualmachines.py:229 #, python-brace-format msgid "Must be an IPv{family} address. ({ip} is an IPv{version} address.)" msgstr "" "Muss eine IPv{family} Adresse sein. ({ip} ist eine IPv{version} Adresse.)" -#: netbox/virtualization/models/virtualmachines.py:238 +#: virtualization/models/virtualmachines.py:238 #, python-brace-format msgid "The specified IP address ({ip}) is not assigned to this VM." msgstr "Die angegebene IP-Adresse ({ip}) ist dieser VM nicht zugewiesen." -#: netbox/virtualization/models/virtualmachines.py:396 +#: virtualization/models/virtualmachines.py:396 #, python-brace-format msgid "" "The selected parent interface ({parent}) belongs to a different virtual " @@ -15670,7 +14925,7 @@ msgstr "" "Die ausgewählte übergeordnete Schnittstelle ({parent}) gehört zu einer " "anderen virtuellen Maschine ({virtual_machine})." -#: netbox/virtualization/models/virtualmachines.py:411 +#: virtualization/models/virtualmachines.py:411 #, python-brace-format msgid "" "The selected bridge interface ({bridge}) belongs to a different virtual " @@ -15679,7 +14934,7 @@ msgstr "" "Die gewählte Bridge-Schnittstelle ({bridge}) gehört zu einer anderen " "virtuellen Maschine ({virtual_machine})." -#: netbox/virtualization/models/virtualmachines.py:422 +#: virtualization/models/virtualmachines.py:422 #, python-brace-format msgid "" "The untagged VLAN ({untagged_vlan}) must belong to the same site as the " @@ -15689,407 +14944,400 @@ msgstr "" "wie die übergeordnete virtuelle Maschine der Schnittstelle, oder sie muss " "global sein." -#: netbox/virtualization/models/virtualmachines.py:434 +#: virtualization/models/virtualmachines.py:434 msgid "size (MB)" msgstr "Größe (MB)" -#: netbox/virtualization/models/virtualmachines.py:438 +#: virtualization/models/virtualmachines.py:438 msgid "virtual disk" msgstr "virtuelle Festplatte" -#: netbox/virtualization/models/virtualmachines.py:439 +#: virtualization/models/virtualmachines.py:439 msgid "virtual disks" msgstr "virtuelle Festplatten" -#: netbox/virtualization/views.py:275 +#: virtualization/views.py:275 #, python-brace-format msgid "Added {count} devices to cluster {cluster}" msgstr "Füge {count} Geräte zum Cluster {cluster}hinzu " -#: netbox/virtualization/views.py:310 +#: virtualization/views.py:310 #, python-brace-format msgid "Removed {count} devices from cluster {cluster}" msgstr "Entferne {count}Geräte vom Cluster {cluster}" -#: netbox/vpn/choices.py:31 +#: vpn/choices.py:31 msgid "IPsec - Transport" msgstr "IPSec - Transport" -#: netbox/vpn/choices.py:32 +#: vpn/choices.py:32 msgid "IPsec - Tunnel" msgstr "IPSec-Tunnel" -#: netbox/vpn/choices.py:33 +#: vpn/choices.py:33 msgid "IP-in-IP" msgstr "IP-in-IP" -#: netbox/vpn/choices.py:34 +#: vpn/choices.py:34 msgid "GRE" msgstr "GRE" -#: netbox/vpn/choices.py:56 +#: vpn/choices.py:56 msgid "Hub" msgstr "Hub" -#: netbox/vpn/choices.py:57 +#: vpn/choices.py:57 msgid "Spoke" msgstr "Spoke" -#: netbox/vpn/choices.py:80 +#: vpn/choices.py:80 msgid "Aggressive" msgstr "Aggressiv" -#: netbox/vpn/choices.py:81 +#: vpn/choices.py:81 msgid "Main" msgstr "Haupt" -#: netbox/vpn/choices.py:92 +#: vpn/choices.py:92 msgid "Pre-shared keys" msgstr "Vorab geteilte Schlüssel (Preshared Keys)" -#: netbox/vpn/choices.py:93 +#: vpn/choices.py:93 msgid "Certificates" msgstr "Zertifikate" -#: netbox/vpn/choices.py:94 +#: vpn/choices.py:94 msgid "RSA signatures" msgstr "RSA-Signaturen" -#: netbox/vpn/choices.py:95 +#: vpn/choices.py:95 msgid "DSA signatures" msgstr "DSA-Signaturen" -#: netbox/vpn/choices.py:178 netbox/vpn/choices.py:179 -#: netbox/vpn/choices.py:180 netbox/vpn/choices.py:181 -#: netbox/vpn/choices.py:182 netbox/vpn/choices.py:183 -#: netbox/vpn/choices.py:184 netbox/vpn/choices.py:185 -#: netbox/vpn/choices.py:186 netbox/vpn/choices.py:187 -#: netbox/vpn/choices.py:188 netbox/vpn/choices.py:189 -#: netbox/vpn/choices.py:190 netbox/vpn/choices.py:191 -#: netbox/vpn/choices.py:192 netbox/vpn/choices.py:193 -#: netbox/vpn/choices.py:194 netbox/vpn/choices.py:195 -#: netbox/vpn/choices.py:196 netbox/vpn/choices.py:197 -#: netbox/vpn/choices.py:198 netbox/vpn/choices.py:199 -#: netbox/vpn/choices.py:200 netbox/vpn/choices.py:201 +#: vpn/choices.py:178 vpn/choices.py:179 vpn/choices.py:180 vpn/choices.py:181 +#: vpn/choices.py:182 vpn/choices.py:183 vpn/choices.py:184 vpn/choices.py:185 +#: vpn/choices.py:186 vpn/choices.py:187 vpn/choices.py:188 vpn/choices.py:189 +#: vpn/choices.py:190 vpn/choices.py:191 vpn/choices.py:192 vpn/choices.py:193 +#: vpn/choices.py:194 vpn/choices.py:195 vpn/choices.py:196 vpn/choices.py:197 +#: vpn/choices.py:198 vpn/choices.py:199 vpn/choices.py:200 vpn/choices.py:201 #, python-brace-format msgid "Group {n}" msgstr "Gruppe {n}" -#: netbox/vpn/choices.py:243 +#: vpn/choices.py:243 msgid "Ethernet Private LAN" msgstr "Privates Ethernet-LAN" -#: netbox/vpn/choices.py:244 +#: vpn/choices.py:244 msgid "Ethernet Virtual Private LAN" msgstr "Virtuelles privates Ethernet-LAN" -#: netbox/vpn/choices.py:247 +#: vpn/choices.py:247 msgid "Ethernet Private Tree" msgstr "Privater Ethernet-Baum" -#: netbox/vpn/choices.py:248 +#: vpn/choices.py:248 msgid "Ethernet Virtual Private Tree" msgstr "Virtueller privater Ethernet-Baum" -#: netbox/vpn/filtersets.py:41 +#: vpn/filtersets.py:41 msgid "Tunnel group (ID)" msgstr "Tunnelgruppe (ID)" -#: netbox/vpn/filtersets.py:47 +#: vpn/filtersets.py:47 msgid "Tunnel group (slug)" msgstr "Tunnelgruppe (URL-Slug)" -#: netbox/vpn/filtersets.py:54 +#: vpn/filtersets.py:54 msgid "IPSec profile (ID)" msgstr "IPSec-Profil (ID)" -#: netbox/vpn/filtersets.py:60 +#: vpn/filtersets.py:60 msgid "IPSec profile (name)" msgstr "IPSec-Profil (Name)" -#: netbox/vpn/filtersets.py:81 +#: vpn/filtersets.py:81 msgid "Tunnel (ID)" msgstr "Tunnel (ID)" -#: netbox/vpn/filtersets.py:87 +#: vpn/filtersets.py:87 msgid "Tunnel (name)" msgstr "Tunnel (Name)" -#: netbox/vpn/filtersets.py:118 +#: vpn/filtersets.py:118 msgid "Outside IP (ID)" msgstr "Externe IP (ID)" -#: netbox/vpn/filtersets.py:130 netbox/vpn/filtersets.py:263 +#: vpn/filtersets.py:130 vpn/filtersets.py:263 msgid "IKE policy (ID)" msgstr "IKE-Richtlinie (ID)" -#: netbox/vpn/filtersets.py:136 netbox/vpn/filtersets.py:269 +#: vpn/filtersets.py:136 vpn/filtersets.py:269 msgid "IKE policy (name)" msgstr "IKE-Richtlinie (Name)" -#: netbox/vpn/filtersets.py:200 netbox/vpn/filtersets.py:273 +#: vpn/filtersets.py:200 vpn/filtersets.py:273 msgid "IPSec policy (ID)" msgstr "IPSec-Richtlinie (ID)" -#: netbox/vpn/filtersets.py:206 netbox/vpn/filtersets.py:279 +#: vpn/filtersets.py:206 vpn/filtersets.py:279 msgid "IPSec policy (name)" msgstr "IPSec-Richtlinie (Name)" -#: netbox/vpn/filtersets.py:348 +#: vpn/filtersets.py:348 msgid "L2VPN (slug)" msgstr "L2VPN (URL-Slug)" -#: netbox/vpn/filtersets.py:412 +#: vpn/filtersets.py:412 msgid "VM Interface (ID)" msgstr "VM-Schnittstelle (ID)" -#: netbox/vpn/filtersets.py:418 +#: vpn/filtersets.py:418 msgid "VLAN (name)" msgstr "VLAN (Name)" -#: netbox/vpn/forms/bulk_edit.py:45 netbox/vpn/forms/bulk_import.py:42 -#: netbox/vpn/forms/filtersets.py:54 +#: vpn/forms/bulk_edit.py:45 vpn/forms/bulk_import.py:42 +#: vpn/forms/filtersets.py:54 msgid "Tunnel group" msgstr "Tunnelgruppe" -#: netbox/vpn/forms/bulk_edit.py:117 netbox/vpn/models/crypto.py:47 +#: vpn/forms/bulk_edit.py:117 vpn/models/crypto.py:47 msgid "SA lifetime" msgstr "SA-Lebendauer" -#: netbox/vpn/forms/bulk_edit.py:151 netbox/wireless/forms/bulk_edit.py:79 -#: netbox/wireless/forms/bulk_edit.py:126 -#: netbox/wireless/forms/filtersets.py:64 -#: netbox/wireless/forms/filtersets.py:98 +#: vpn/forms/bulk_edit.py:151 wireless/forms/bulk_edit.py:79 +#: wireless/forms/bulk_edit.py:126 wireless/forms/filtersets.py:64 +#: wireless/forms/filtersets.py:98 msgid "Pre-shared key" msgstr "Vorab geteilter Schlüssel (Pre-shared key)" -#: netbox/vpn/forms/bulk_edit.py:237 netbox/vpn/forms/bulk_import.py:239 -#: netbox/vpn/forms/filtersets.py:199 netbox/vpn/forms/model_forms.py:370 -#: netbox/vpn/models/crypto.py:104 +#: vpn/forms/bulk_edit.py:237 vpn/forms/bulk_import.py:239 +#: vpn/forms/filtersets.py:199 vpn/forms/model_forms.py:370 +#: vpn/models/crypto.py:104 msgid "IKE policy" msgstr "IKE-Richtlinie" -#: netbox/vpn/forms/bulk_edit.py:242 netbox/vpn/forms/bulk_import.py:244 -#: netbox/vpn/forms/filtersets.py:204 netbox/vpn/forms/model_forms.py:374 -#: netbox/vpn/models/crypto.py:209 +#: vpn/forms/bulk_edit.py:242 vpn/forms/bulk_import.py:244 +#: vpn/forms/filtersets.py:204 vpn/forms/model_forms.py:374 +#: vpn/models/crypto.py:209 msgid "IPSec policy" msgstr "IPSec-Richtlinie" -#: netbox/vpn/forms/bulk_import.py:50 +#: vpn/forms/bulk_import.py:50 msgid "Tunnel encapsulation" msgstr "Tunnelkapselung" -#: netbox/vpn/forms/bulk_import.py:83 +#: vpn/forms/bulk_import.py:83 msgid "Operational role" msgstr "Operative Rolle" -#: netbox/vpn/forms/bulk_import.py:90 +#: vpn/forms/bulk_import.py:90 msgid "Parent device of assigned interface" msgstr "Übergeordnetes Gerät der zugewiesenen Schnittstelle" -#: netbox/vpn/forms/bulk_import.py:97 +#: vpn/forms/bulk_import.py:97 msgid "Parent VM of assigned interface" msgstr "Übergeordnete VM der zugewiesenen Schnittstelle" -#: netbox/vpn/forms/bulk_import.py:104 +#: vpn/forms/bulk_import.py:104 msgid "Device or virtual machine interface" msgstr "Geräte- oder VM-Schnittstelle" -#: netbox/vpn/forms/bulk_import.py:183 +#: vpn/forms/bulk_import.py:183 msgid "IKE proposal(s)" msgstr "IKE-Vorschlag (e)" -#: netbox/vpn/forms/bulk_import.py:215 netbox/vpn/models/crypto.py:197 +#: vpn/forms/bulk_import.py:215 vpn/models/crypto.py:197 msgid "Diffie-Hellman group for Perfect Forward Secrecy" msgstr "Diffie-Hellman-Gruppe für Perfect Forward Secrecy" -#: netbox/vpn/forms/bulk_import.py:222 +#: vpn/forms/bulk_import.py:222 msgid "IPSec proposal(s)" msgstr "IPSec-Vorschlag (e)" -#: netbox/vpn/forms/bulk_import.py:236 +#: vpn/forms/bulk_import.py:236 msgid "IPSec protocol" msgstr "IPSec-Protokoll" -#: netbox/vpn/forms/bulk_import.py:266 +#: vpn/forms/bulk_import.py:266 msgid "L2VPN type" msgstr "L2VPN-Typ" -#: netbox/vpn/forms/bulk_import.py:287 +#: vpn/forms/bulk_import.py:287 msgid "Parent device (for interface)" msgstr "Übergeordnetes Gerät (für Schnittstelle)" -#: netbox/vpn/forms/bulk_import.py:294 +#: vpn/forms/bulk_import.py:294 msgid "Parent virtual machine (for interface)" msgstr "Übergeordnete virtuelle Maschine (für Schnittstelle)" -#: netbox/vpn/forms/bulk_import.py:301 +#: vpn/forms/bulk_import.py:301 msgid "Assigned interface (device or VM)" msgstr "Zugewiesene Schnittstelle (Gerät oder VM)" -#: netbox/vpn/forms/bulk_import.py:334 +#: vpn/forms/bulk_import.py:334 msgid "Cannot import device and VM interface terminations simultaneously." msgstr "" "Geräte- und VM-Schnittstellenabschlüsse können nicht gleichzeitig importiert" " werden." -#: netbox/vpn/forms/bulk_import.py:336 +#: vpn/forms/bulk_import.py:336 msgid "Each termination must specify either an interface or a VLAN." msgstr "" "Bei jeder Terminierung muss entweder eine Schnittstelle oder ein VLAN " "angegeben werden." -#: netbox/vpn/forms/bulk_import.py:338 +#: vpn/forms/bulk_import.py:338 msgid "Cannot assign both an interface and a VLAN." msgstr "" "Es kann nicht sowohl eine Schnittstelle als auch ein VLAN zugewiesen werden." -#: netbox/vpn/forms/filtersets.py:130 +#: vpn/forms/filtersets.py:130 msgid "IKE version" msgstr "IKE-Ausführung" -#: netbox/vpn/forms/filtersets.py:142 netbox/vpn/forms/filtersets.py:175 -#: netbox/vpn/forms/model_forms.py:298 netbox/vpn/forms/model_forms.py:334 +#: vpn/forms/filtersets.py:142 vpn/forms/filtersets.py:175 +#: vpn/forms/model_forms.py:298 vpn/forms/model_forms.py:334 msgid "Proposal" msgstr "Vorschlag" -#: netbox/vpn/forms/filtersets.py:251 +#: vpn/forms/filtersets.py:251 msgid "Assigned Object Type" msgstr "Zugewiesener Objekttyp" -#: netbox/vpn/forms/model_forms.py:95 netbox/vpn/forms/model_forms.py:130 -#: netbox/vpn/forms/model_forms.py:240 netbox/vpn/tables/tunnels.py:91 +#: vpn/forms/model_forms.py:95 vpn/forms/model_forms.py:130 +#: vpn/forms/model_forms.py:240 vpn/tables/tunnels.py:91 msgid "Tunnel interface" msgstr "Tunnelschnittstelle" -#: netbox/vpn/forms/model_forms.py:150 +#: vpn/forms/model_forms.py:150 msgid "First Termination" msgstr "Erster Endpunkt" -#: netbox/vpn/forms/model_forms.py:153 +#: vpn/forms/model_forms.py:153 msgid "Second Termination" msgstr "Zweiter Endpunkt" -#: netbox/vpn/forms/model_forms.py:197 +#: vpn/forms/model_forms.py:197 msgid "This parameter is required when defining a termination." msgstr "" "Dieser Parameter ist erforderlich, wenn ein Abschlusspunkt definiert wird." -#: netbox/vpn/forms/model_forms.py:320 netbox/vpn/forms/model_forms.py:356 +#: vpn/forms/model_forms.py:320 vpn/forms/model_forms.py:356 msgid "Policy" msgstr "Richtlinie" -#: netbox/vpn/forms/model_forms.py:487 +#: vpn/forms/model_forms.py:487 msgid "A termination must specify an interface or VLAN." msgstr "Eine Terminierung muss eine Schnittstelle oder ein VLAN angeben." -#: netbox/vpn/forms/model_forms.py:489 +#: vpn/forms/model_forms.py:489 msgid "" "A termination can only have one terminating object (an interface or VLAN)." msgstr "" "Eine Terminierung kann nur ein Terminierungsobjekt haben (eine Schnittstelle" " oder ein VLAN)." -#: netbox/vpn/models/crypto.py:33 +#: vpn/models/crypto.py:33 msgid "encryption algorithm" msgstr "Verschlüsselungsalgorithmus" -#: netbox/vpn/models/crypto.py:37 +#: vpn/models/crypto.py:37 msgid "authentication algorithm" msgstr "Authentifizierungsalgorithmus" -#: netbox/vpn/models/crypto.py:44 +#: vpn/models/crypto.py:44 msgid "Diffie-Hellman group ID" msgstr "Diffie-Hellman-Gruppen-ID" -#: netbox/vpn/models/crypto.py:50 +#: vpn/models/crypto.py:50 msgid "Security association lifetime (in seconds)" msgstr "Lebensdauer der Sicherheitsverbindung (in Sekunden)" -#: netbox/vpn/models/crypto.py:59 +#: vpn/models/crypto.py:59 msgid "IKE proposal" msgstr "IKE-Vorschlag" -#: netbox/vpn/models/crypto.py:60 +#: vpn/models/crypto.py:60 msgid "IKE proposals" msgstr "IKE-Vorschläge" -#: netbox/vpn/models/crypto.py:76 +#: vpn/models/crypto.py:76 msgid "version" msgstr "Version" -#: netbox/vpn/models/crypto.py:88 netbox/vpn/models/crypto.py:190 +#: vpn/models/crypto.py:88 vpn/models/crypto.py:190 msgid "proposals" msgstr "Vorschläge" -#: netbox/vpn/models/crypto.py:91 netbox/wireless/models.py:39 +#: vpn/models/crypto.py:91 wireless/models.py:39 msgid "pre-shared key" msgstr "vorab geteilter Schlüssel" -#: netbox/vpn/models/crypto.py:105 +#: vpn/models/crypto.py:105 msgid "IKE policies" msgstr "IKE-Richtlinien" -#: netbox/vpn/models/crypto.py:118 +#: vpn/models/crypto.py:118 msgid "Mode is required for selected IKE version" msgstr "Der Modus ist für die ausgewählte IKE-Version erforderlich" -#: netbox/vpn/models/crypto.py:122 +#: vpn/models/crypto.py:122 msgid "Mode cannot be used for selected IKE version" msgstr "Der Modus kann nicht für die ausgewählte IKE-Version verwendet werden" -#: netbox/vpn/models/crypto.py:136 +#: vpn/models/crypto.py:136 msgid "encryption" msgstr "Verschlüsselung" -#: netbox/vpn/models/crypto.py:141 +#: vpn/models/crypto.py:141 msgid "authentication" msgstr "Authentifizierung" -#: netbox/vpn/models/crypto.py:149 +#: vpn/models/crypto.py:149 msgid "Security association lifetime (seconds)" msgstr "Lebensdauer der Sicherheitsverbindung (Sekunden)" -#: netbox/vpn/models/crypto.py:155 +#: vpn/models/crypto.py:155 msgid "Security association lifetime (in kilobytes)" msgstr "Lebensdauer der Sicherheitsverbindung (in Kilobyte)" -#: netbox/vpn/models/crypto.py:164 +#: vpn/models/crypto.py:164 msgid "IPSec proposal" msgstr "IPSec-Vorschlag" -#: netbox/vpn/models/crypto.py:165 +#: vpn/models/crypto.py:165 msgid "IPSec proposals" msgstr "IPSec-Vorschläge" -#: netbox/vpn/models/crypto.py:178 +#: vpn/models/crypto.py:178 msgid "Encryption and/or authentication algorithm must be defined" msgstr "" "Der Verschlüsselungs- und/oder Authentifizierungsalgorithmus muss definiert " "werden" -#: netbox/vpn/models/crypto.py:210 +#: vpn/models/crypto.py:210 msgid "IPSec policies" msgstr "IPSec-Richtlinien" -#: netbox/vpn/models/crypto.py:251 +#: vpn/models/crypto.py:251 msgid "IPSec profiles" msgstr "IPSec-Profile" -#: netbox/vpn/models/l2vpn.py:116 +#: vpn/models/l2vpn.py:116 msgid "L2VPN termination" msgstr "L2VPN-Abschlusspunkt" -#: netbox/vpn/models/l2vpn.py:117 +#: vpn/models/l2vpn.py:117 msgid "L2VPN terminations" msgstr "L2VPN-Abschlusspunkte" -#: netbox/vpn/models/l2vpn.py:135 +#: vpn/models/l2vpn.py:135 #, python-brace-format msgid "L2VPN Termination already assigned ({assigned_object})" msgstr "L2VPN-Terminierung wurde bereits zugewiesen ({assigned_object})" -#: netbox/vpn/models/l2vpn.py:147 +#: vpn/models/l2vpn.py:147 #, python-brace-format msgid "" "{l2vpn_type} L2VPNs cannot have more than two terminations; found " @@ -16098,195 +15346,187 @@ msgstr "" "{l2vpn_type} L2VPNs können nicht mehr als zwei Terminierungen haben; " "gefunden {terminations_count} bereits definiert." -#: netbox/vpn/models/tunnels.py:26 +#: vpn/models/tunnels.py:26 msgid "tunnel group" msgstr "Tunnelgruppe" -#: netbox/vpn/models/tunnels.py:27 +#: vpn/models/tunnels.py:27 msgid "tunnel groups" msgstr "Tunnelgruppen" -#: netbox/vpn/models/tunnels.py:53 +#: vpn/models/tunnels.py:53 msgid "encapsulation" msgstr "Encapsulation" -#: netbox/vpn/models/tunnels.py:72 +#: vpn/models/tunnels.py:72 msgid "tunnel ID" msgstr "Tunnel-ID" -#: netbox/vpn/models/tunnels.py:94 +#: vpn/models/tunnels.py:94 msgid "tunnel" msgstr "Tunnel" -#: netbox/vpn/models/tunnels.py:95 +#: vpn/models/tunnels.py:95 msgid "tunnels" msgstr "Tunnel" -#: netbox/vpn/models/tunnels.py:153 +#: vpn/models/tunnels.py:153 msgid "An object may be terminated to only one tunnel at a time." msgstr "Ein Objekt kann jeweils nur an einem Tunnel terminiert werden." -#: netbox/vpn/models/tunnels.py:156 +#: vpn/models/tunnels.py:156 msgid "tunnel termination" msgstr "Tunnelabschlusspunkt" -#: netbox/vpn/models/tunnels.py:157 +#: vpn/models/tunnels.py:157 msgid "tunnel terminations" msgstr "Tunnelabschlusspunkte" -#: netbox/vpn/models/tunnels.py:174 +#: vpn/models/tunnels.py:174 #, python-brace-format msgid "{name} is already attached to a tunnel ({tunnel})." msgstr "{name} ist bereits an einen Tunnel angeschlossen ({tunnel})." -#: netbox/vpn/tables/crypto.py:22 +#: vpn/tables/crypto.py:22 msgid "Authentication Method" msgstr "Authentifizierungsmethode" -#: netbox/vpn/tables/crypto.py:25 netbox/vpn/tables/crypto.py:97 +#: vpn/tables/crypto.py:25 vpn/tables/crypto.py:97 msgid "Encryption Algorithm" msgstr "Verschlüsselungsalgorithmus" -#: netbox/vpn/tables/crypto.py:28 netbox/vpn/tables/crypto.py:100 +#: vpn/tables/crypto.py:28 vpn/tables/crypto.py:100 msgid "Authentication Algorithm" msgstr "Authentifizierungsalgorithmus" -#: netbox/vpn/tables/crypto.py:34 +#: vpn/tables/crypto.py:34 msgid "SA Lifetime" msgstr "SA-Lebensdauer" -#: netbox/vpn/tables/crypto.py:71 +#: vpn/tables/crypto.py:71 msgid "Pre-shared Key" msgstr "Vorab geteilter Schlüssel" -#: netbox/vpn/tables/crypto.py:103 +#: vpn/tables/crypto.py:103 msgid "SA Lifetime (Seconds)" msgstr "SA-Lebensdauer (Sekunden)" -#: netbox/vpn/tables/crypto.py:106 +#: vpn/tables/crypto.py:106 msgid "SA Lifetime (KB)" msgstr "SA-Lebensdauer (KB)" -#: netbox/vpn/tables/l2vpn.py:69 +#: vpn/tables/l2vpn.py:69 msgid "Object Parent" msgstr "Übergeordnetes Objekt" -#: netbox/vpn/tables/l2vpn.py:74 +#: vpn/tables/l2vpn.py:74 msgid "Object Site" msgstr "Objektstandort" -#: netbox/wireless/choices.py:11 +#: wireless/choices.py:11 msgid "Access point" msgstr "Accesspoint" -#: netbox/wireless/choices.py:12 +#: wireless/choices.py:12 msgid "Station" msgstr "Client" -#: netbox/wireless/choices.py:467 +#: wireless/choices.py:467 msgid "Open" msgstr "Offen" -#: netbox/wireless/choices.py:469 +#: wireless/choices.py:469 msgid "WPA Personal (PSK)" msgstr "WPA Persönlich (PSK)" -#: netbox/wireless/choices.py:470 +#: wireless/choices.py:470 msgid "WPA Enterprise" msgstr "WPA Enterprise" -#: netbox/wireless/forms/bulk_edit.py:73 -#: netbox/wireless/forms/bulk_edit.py:120 -#: netbox/wireless/forms/bulk_import.py:68 -#: netbox/wireless/forms/bulk_import.py:71 -#: netbox/wireless/forms/bulk_import.py:110 -#: netbox/wireless/forms/bulk_import.py:113 -#: netbox/wireless/forms/filtersets.py:59 -#: netbox/wireless/forms/filtersets.py:93 +#: wireless/forms/bulk_edit.py:73 wireless/forms/bulk_edit.py:120 +#: wireless/forms/bulk_import.py:68 wireless/forms/bulk_import.py:71 +#: wireless/forms/bulk_import.py:110 wireless/forms/bulk_import.py:113 +#: wireless/forms/filtersets.py:59 wireless/forms/filtersets.py:93 msgid "Authentication cipher" msgstr "Authentifizierungchiffre" -#: netbox/wireless/forms/bulk_edit.py:134 -#: netbox/wireless/forms/bulk_import.py:116 -#: netbox/wireless/forms/bulk_import.py:119 -#: netbox/wireless/forms/filtersets.py:106 +#: wireless/forms/bulk_edit.py:134 wireless/forms/bulk_import.py:116 +#: wireless/forms/bulk_import.py:119 wireless/forms/filtersets.py:106 msgid "Distance unit" msgstr "Entfernungseinheit" -#: netbox/wireless/forms/bulk_import.py:52 +#: wireless/forms/bulk_import.py:52 msgid "Bridged VLAN" msgstr "Bridged VLAN" -#: netbox/wireless/forms/bulk_import.py:89 -#: netbox/wireless/tables/wirelesslink.py:28 +#: wireless/forms/bulk_import.py:89 wireless/tables/wirelesslink.py:28 msgid "Interface A" msgstr "Schnittstelle A" -#: netbox/wireless/forms/bulk_import.py:93 -#: netbox/wireless/tables/wirelesslink.py:37 +#: wireless/forms/bulk_import.py:93 wireless/tables/wirelesslink.py:37 msgid "Interface B" msgstr "Schnittstelle B" -#: netbox/wireless/forms/model_forms.py:161 +#: wireless/forms/model_forms.py:161 msgid "Side B" msgstr "Seite B" -#: netbox/wireless/models.py:31 +#: wireless/models.py:31 msgid "authentication cipher" msgstr "Authentifizierungchiffre" -#: netbox/wireless/models.py:69 +#: wireless/models.py:69 msgid "wireless LAN group" msgstr "WLAN-Gruppe" -#: netbox/wireless/models.py:70 +#: wireless/models.py:70 msgid "wireless LAN groups" msgstr "WLAN-Gruppen" -#: netbox/wireless/models.py:116 +#: wireless/models.py:116 msgid "wireless LAN" msgstr "WLAN" -#: netbox/wireless/models.py:144 +#: wireless/models.py:144 msgid "interface A" msgstr "Schnittstelle A" -#: netbox/wireless/models.py:151 +#: wireless/models.py:151 msgid "interface B" msgstr "Schnittstelle B" -#: netbox/wireless/models.py:165 +#: wireless/models.py:165 msgid "distance" msgstr "Entfernung" -#: netbox/wireless/models.py:172 +#: wireless/models.py:172 msgid "distance unit" msgstr "Entfernungseinheit" -#: netbox/wireless/models.py:219 +#: wireless/models.py:219 msgid "wireless link" msgstr "Funkverbindung" -#: netbox/wireless/models.py:220 +#: wireless/models.py:220 msgid "wireless links" msgstr "Funkverbindungen" -#: netbox/wireless/models.py:236 +#: wireless/models.py:236 msgid "Must specify a unit when setting a wireless distance" msgstr "" "Beim Einstellen einer Funkentfernung muss eine Einheit angegeben werden" -#: netbox/wireless/models.py:242 netbox/wireless/models.py:248 +#: wireless/models.py:242 wireless/models.py:248 #, python-brace-format msgid "{type} is not a wireless interface." msgstr "{type} ist keine Funkschnittstelle." -#: netbox/wireless/utils.py:16 +#: wireless/utils.py:16 #, python-brace-format msgid "Invalid channel value: {channel}" msgstr "Ungültiger Kanalwert: {channel}" -#: netbox/wireless/utils.py:26 +#: wireless/utils.py:26 #, python-brace-format msgid "Invalid channel attribute: {name}" msgstr "Ungültiges Kanalattribut: {name}" diff --git a/netbox/translations/es/LC_MESSAGES/django.po b/netbox/translations/es/LC_MESSAGES/django.po index bacc34b10..ee77d76fc 100644 --- a/netbox/translations/es/LC_MESSAGES/django.po +++ b/netbox/translations/es/LC_MESSAGES/django.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-12 05:02+0000\n" +"POT-Creation-Date: 2024-10-28 19:20+0000\n" "PO-Revision-Date: 2023-10-30 17:48+0000\n" "Last-Translator: Jeremy Stretch, 2024\n" "Language-Team: Spanish (https://app.transifex.com/netbox-community/teams/178115/es/)\n" @@ -21,2143 +21,1874 @@ msgstr "" "Language: es\n" "Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" -#: netbox/account/tables.py:27 netbox/templates/account/token.html:22 -#: netbox/templates/users/token.html:17 netbox/users/forms/bulk_import.py:39 -#: netbox/users/forms/model_forms.py:112 +#: account/tables.py:27 templates/account/token.html:22 +#: templates/users/token.html:17 users/forms/bulk_import.py:39 +#: users/forms/model_forms.py:112 msgid "Key" msgstr "Llave" -#: netbox/account/tables.py:31 netbox/users/forms/filtersets.py:132 +#: account/tables.py:31 users/forms/filtersets.py:132 msgid "Write Enabled" msgstr "Escritura habilitada" -#: netbox/account/tables.py:35 netbox/core/choices.py:86 -#: netbox/core/tables/jobs.py:29 netbox/core/tables/tasks.py:79 -#: netbox/extras/tables/tables.py:335 netbox/extras/tables/tables.py:566 -#: netbox/templates/account/token.html:43 -#: netbox/templates/core/configrevision.html:26 -#: netbox/templates/core/configrevision_restore.html:12 -#: netbox/templates/core/job.html:69 netbox/templates/core/rq_task.html:16 -#: netbox/templates/core/rq_task.html:73 -#: netbox/templates/core/rq_worker.html:14 -#: netbox/templates/extras/htmx/script_result.html:12 -#: netbox/templates/extras/journalentry.html:22 -#: netbox/templates/generic/object.html:58 -#: netbox/templates/users/token.html:35 +#: account/tables.py:35 core/choices.py:86 core/tables/jobs.py:29 +#: core/tables/tasks.py:79 extras/tables/tables.py:335 +#: extras/tables/tables.py:566 templates/account/token.html:43 +#: templates/core/configrevision.html:26 +#: templates/core/configrevision_restore.html:12 templates/core/job.html:69 +#: templates/core/rq_task.html:16 templates/core/rq_task.html:73 +#: templates/core/rq_worker.html:14 +#: templates/extras/htmx/script_result.html:12 +#: templates/extras/journalentry.html:22 templates/generic/object.html:58 +#: templates/users/token.html:35 msgid "Created" msgstr "Creado" -#: netbox/account/tables.py:39 netbox/templates/account/token.html:47 -#: netbox/templates/users/token.html:39 netbox/users/forms/bulk_edit.py:117 -#: netbox/users/forms/filtersets.py:136 +#: account/tables.py:39 templates/account/token.html:47 +#: templates/users/token.html:39 users/forms/bulk_edit.py:117 +#: users/forms/filtersets.py:136 msgid "Expires" msgstr "Caduca" -#: netbox/account/tables.py:42 netbox/users/forms/filtersets.py:141 +#: account/tables.py:42 users/forms/filtersets.py:141 msgid "Last Used" msgstr "Utilizado por última vez" -#: netbox/account/tables.py:45 netbox/templates/account/token.html:55 -#: netbox/templates/users/token.html:47 netbox/users/forms/bulk_edit.py:122 -#: netbox/users/forms/model_forms.py:124 +#: account/tables.py:45 templates/account/token.html:55 +#: templates/users/token.html:47 users/forms/bulk_edit.py:122 +#: users/forms/model_forms.py:124 msgid "Allowed IPs" msgstr "IPs permitidas" -#: netbox/account/views.py:114 +#: account/views.py:114 #, python-brace-format msgid "Logged in as {user}." msgstr "Ha iniciado sesión como {user}." -#: netbox/account/views.py:164 +#: account/views.py:164 msgid "You have logged out." msgstr "Has cerrado sesión." -#: netbox/account/views.py:216 +#: account/views.py:216 msgid "Your preferences have been updated." msgstr "Se han actualizado tus preferencias." -#: netbox/account/views.py:239 +#: account/views.py:239 msgid "LDAP-authenticated user credentials cannot be changed within NetBox." msgstr "" "Las credenciales de usuario autenticadas por LDAP no se pueden cambiar en " "NetBox." -#: netbox/account/views.py:254 +#: account/views.py:254 msgid "Your password has been changed successfully." 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:185 -#: netbox/dcim/choices.py:237 netbox/dcim/choices.py:1530 -#: netbox/dcim/choices.py:1606 netbox/dcim/choices.py:1656 -#: netbox/virtualization/choices.py:20 netbox/virtualization/choices.py:45 -#: netbox/vpn/choices.py:18 +#: circuits/choices.py:21 dcim/choices.py:20 dcim/choices.py:102 +#: dcim/choices.py:185 dcim/choices.py:237 dcim/choices.py:1530 +#: dcim/choices.py:1606 dcim/choices.py:1656 virtualization/choices.py:20 +#: virtualization/choices.py:45 vpn/choices.py:18 msgid "Planned" msgstr "Planificado" -#: netbox/circuits/choices.py:22 netbox/netbox/navigation/menu.py:305 +#: circuits/choices.py:22 netbox/navigation/menu.py:305 msgid "Provisioning" msgstr "Aprovisionamiento" -#: netbox/circuits/choices.py:23 netbox/core/tables/tasks.py:22 -#: netbox/dcim/choices.py:22 netbox/dcim/choices.py:103 -#: netbox/dcim/choices.py:184 netbox/dcim/choices.py:236 -#: netbox/dcim/choices.py:1605 netbox/dcim/choices.py:1655 -#: netbox/extras/tables/tables.py:495 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:25 -#: netbox/templates/users/user.html:37 netbox/users/forms/bulk_edit.py:38 -#: netbox/virtualization/choices.py:22 netbox/virtualization/choices.py:44 -#: netbox/vpn/choices.py:19 netbox/wireless/choices.py:25 +#: circuits/choices.py:23 core/tables/tasks.py:22 dcim/choices.py:22 +#: dcim/choices.py:103 dcim/choices.py:184 dcim/choices.py:236 +#: dcim/choices.py:1605 dcim/choices.py:1655 extras/tables/tables.py:495 +#: ipam/choices.py:31 ipam/choices.py:49 ipam/choices.py:69 +#: ipam/choices.py:154 templates/extras/configcontext.html:25 +#: templates/users/user.html:37 users/forms/bulk_edit.py:38 +#: virtualization/choices.py:22 virtualization/choices.py:44 vpn/choices.py:19 +#: wireless/choices.py:25 msgid "Active" msgstr "Activo" -#: netbox/circuits/choices.py:24 netbox/dcim/choices.py:183 -#: netbox/dcim/choices.py:235 netbox/dcim/choices.py:1604 -#: netbox/dcim/choices.py:1657 netbox/virtualization/choices.py:24 -#: netbox/virtualization/choices.py:43 +#: circuits/choices.py:24 dcim/choices.py:183 dcim/choices.py:235 +#: dcim/choices.py:1604 dcim/choices.py:1657 virtualization/choices.py:24 +#: virtualization/choices.py:43 msgid "Offline" msgstr "Desconectado" -#: netbox/circuits/choices.py:25 +#: circuits/choices.py:25 msgid "Deprovisioning" msgstr "Desaprovisionamiento" -#: netbox/circuits/choices.py:26 +#: circuits/choices.py:26 msgid "Decommissioned" msgstr "Desmantelado" -#: netbox/circuits/choices.py:90 netbox/dcim/choices.py:1617 -#: netbox/tenancy/choices.py:17 +#: circuits/choices.py:90 dcim/choices.py:1617 tenancy/choices.py:17 msgid "Primary" msgstr "Primaria" -#: netbox/circuits/choices.py:91 netbox/ipam/choices.py:90 -#: netbox/tenancy/choices.py:18 +#: circuits/choices.py:91 ipam/choices.py:90 tenancy/choices.py:18 msgid "Secondary" msgstr "Secundaria" -#: netbox/circuits/choices.py:92 netbox/tenancy/choices.py:19 +#: circuits/choices.py:92 tenancy/choices.py:19 msgid "Tertiary" msgstr "Terciario" -#: netbox/circuits/choices.py:93 netbox/tenancy/choices.py:20 +#: circuits/choices.py:93 tenancy/choices.py:20 msgid "Inactive" msgstr "Inactivo" -#: netbox/circuits/filtersets.py:31 netbox/circuits/filtersets.py:198 -#: netbox/dcim/filtersets.py:98 netbox/dcim/filtersets.py:152 -#: netbox/dcim/filtersets.py:212 netbox/dcim/filtersets.py:333 -#: netbox/dcim/filtersets.py:464 netbox/dcim/filtersets.py:1021 -#: netbox/dcim/filtersets.py:1368 netbox/dcim/filtersets.py:1903 -#: netbox/dcim/filtersets.py:2146 netbox/dcim/filtersets.py:2204 -#: netbox/ipam/filtersets.py:339 netbox/ipam/filtersets.py:959 -#: netbox/virtualization/filtersets.py:45 -#: netbox/virtualization/filtersets.py:173 netbox/vpn/filtersets.py:358 +#: circuits/filtersets.py:31 circuits/filtersets.py:198 dcim/filtersets.py:98 +#: dcim/filtersets.py:152 dcim/filtersets.py:212 dcim/filtersets.py:333 +#: dcim/filtersets.py:464 dcim/filtersets.py:1021 dcim/filtersets.py:1368 +#: dcim/filtersets.py:1903 dcim/filtersets.py:2146 dcim/filtersets.py:2204 +#: ipam/filtersets.py:339 ipam/filtersets.py:959 +#: virtualization/filtersets.py:45 virtualization/filtersets.py:173 +#: vpn/filtersets.py:358 msgid "Region (ID)" msgstr "Región (ID)" -#: netbox/circuits/filtersets.py:38 netbox/circuits/filtersets.py:205 -#: netbox/dcim/filtersets.py:105 netbox/dcim/filtersets.py:158 -#: netbox/dcim/filtersets.py:219 netbox/dcim/filtersets.py:340 -#: netbox/dcim/filtersets.py:471 netbox/dcim/filtersets.py:1028 -#: netbox/dcim/filtersets.py:1375 netbox/dcim/filtersets.py:1910 -#: netbox/dcim/filtersets.py:2153 netbox/dcim/filtersets.py:2211 -#: netbox/extras/filtersets.py:509 netbox/ipam/filtersets.py:346 -#: netbox/ipam/filtersets.py:966 netbox/virtualization/filtersets.py:52 -#: netbox/virtualization/filtersets.py:180 netbox/vpn/filtersets.py:353 +#: circuits/filtersets.py:38 circuits/filtersets.py:205 dcim/filtersets.py:105 +#: dcim/filtersets.py:158 dcim/filtersets.py:219 dcim/filtersets.py:340 +#: dcim/filtersets.py:471 dcim/filtersets.py:1028 dcim/filtersets.py:1375 +#: dcim/filtersets.py:1910 dcim/filtersets.py:2153 dcim/filtersets.py:2211 +#: extras/filtersets.py:509 ipam/filtersets.py:346 ipam/filtersets.py:966 +#: virtualization/filtersets.py:52 virtualization/filtersets.py:180 +#: vpn/filtersets.py:353 msgid "Region (slug)" msgstr "Región (slug)" -#: netbox/circuits/filtersets.py:44 netbox/circuits/filtersets.py:211 -#: netbox/dcim/filtersets.py:128 netbox/dcim/filtersets.py:225 -#: netbox/dcim/filtersets.py:346 netbox/dcim/filtersets.py:477 -#: netbox/dcim/filtersets.py:1034 netbox/dcim/filtersets.py:1381 -#: netbox/dcim/filtersets.py:1916 netbox/dcim/filtersets.py:2159 -#: netbox/dcim/filtersets.py:2217 netbox/ipam/filtersets.py:352 -#: netbox/ipam/filtersets.py:972 netbox/virtualization/filtersets.py:58 -#: netbox/virtualization/filtersets.py:186 +#: circuits/filtersets.py:44 circuits/filtersets.py:211 dcim/filtersets.py:128 +#: dcim/filtersets.py:225 dcim/filtersets.py:346 dcim/filtersets.py:477 +#: dcim/filtersets.py:1034 dcim/filtersets.py:1381 dcim/filtersets.py:1916 +#: dcim/filtersets.py:2159 dcim/filtersets.py:2217 ipam/filtersets.py:352 +#: ipam/filtersets.py:972 virtualization/filtersets.py:58 +#: virtualization/filtersets.py:186 msgid "Site group (ID)" msgstr "Grupo de sitios (ID)" -#: netbox/circuits/filtersets.py:51 netbox/circuits/filtersets.py:218 -#: netbox/dcim/filtersets.py:135 netbox/dcim/filtersets.py:232 -#: netbox/dcim/filtersets.py:353 netbox/dcim/filtersets.py:484 -#: netbox/dcim/filtersets.py:1041 netbox/dcim/filtersets.py:1388 -#: netbox/dcim/filtersets.py:1923 netbox/dcim/filtersets.py:2166 -#: netbox/dcim/filtersets.py:2224 netbox/extras/filtersets.py:515 -#: netbox/ipam/filtersets.py:359 netbox/ipam/filtersets.py:979 -#: netbox/virtualization/filtersets.py:65 -#: netbox/virtualization/filtersets.py:193 +#: circuits/filtersets.py:51 circuits/filtersets.py:218 dcim/filtersets.py:135 +#: dcim/filtersets.py:232 dcim/filtersets.py:353 dcim/filtersets.py:484 +#: dcim/filtersets.py:1041 dcim/filtersets.py:1388 dcim/filtersets.py:1923 +#: dcim/filtersets.py:2166 dcim/filtersets.py:2224 extras/filtersets.py:515 +#: ipam/filtersets.py:359 ipam/filtersets.py:979 +#: virtualization/filtersets.py:65 virtualization/filtersets.py:193 msgid "Site group (slug)" msgstr "Grupo de sitios (slug)" -#: netbox/circuits/filtersets.py:56 netbox/circuits/forms/bulk_edit.py:188 -#: netbox/circuits/forms/bulk_edit.py:216 -#: netbox/circuits/forms/bulk_import.py:124 -#: netbox/circuits/forms/filtersets.py:51 -#: netbox/circuits/forms/filtersets.py:171 -#: netbox/circuits/forms/filtersets.py:209 -#: netbox/circuits/forms/model_forms.py:138 -#: netbox/circuits/forms/model_forms.py:154 -#: netbox/circuits/tables/circuits.py:113 netbox/dcim/forms/bulk_edit.py:168 -#: netbox/dcim/forms/bulk_edit.py:329 netbox/dcim/forms/bulk_edit.py:677 -#: netbox/dcim/forms/bulk_edit.py:873 netbox/dcim/forms/bulk_import.py:131 -#: netbox/dcim/forms/bulk_import.py:230 netbox/dcim/forms/bulk_import.py:309 -#: netbox/dcim/forms/bulk_import.py:540 netbox/dcim/forms/bulk_import.py:1311 -#: netbox/dcim/forms/bulk_import.py:1339 netbox/dcim/forms/filtersets.py:87 -#: netbox/dcim/forms/filtersets.py:225 netbox/dcim/forms/filtersets.py:342 -#: netbox/dcim/forms/filtersets.py:439 netbox/dcim/forms/filtersets.py:753 -#: netbox/dcim/forms/filtersets.py:997 netbox/dcim/forms/filtersets.py:1021 -#: netbox/dcim/forms/filtersets.py:1111 netbox/dcim/forms/filtersets.py:1149 -#: netbox/dcim/forms/filtersets.py:1584 netbox/dcim/forms/filtersets.py:1608 -#: netbox/dcim/forms/filtersets.py:1632 netbox/dcim/forms/model_forms.py:137 -#: netbox/dcim/forms/model_forms.py:165 netbox/dcim/forms/model_forms.py:238 -#: netbox/dcim/forms/model_forms.py:463 netbox/dcim/forms/model_forms.py:723 -#: netbox/dcim/forms/object_create.py:391 netbox/dcim/tables/devices.py:153 -#: netbox/dcim/tables/power.py:26 netbox/dcim/tables/power.py:93 -#: netbox/dcim/tables/racks.py:122 netbox/dcim/tables/racks.py:207 -#: netbox/dcim/tables/sites.py:134 netbox/extras/filtersets.py:525 -#: netbox/ipam/forms/bulk_edit.py:217 netbox/ipam/forms/bulk_edit.py:284 -#: netbox/ipam/forms/bulk_edit.py:451 netbox/ipam/forms/bulk_edit.py:529 -#: netbox/ipam/forms/bulk_import.py:171 netbox/ipam/forms/bulk_import.py:429 -#: netbox/ipam/forms/filtersets.py:153 netbox/ipam/forms/filtersets.py:231 -#: netbox/ipam/forms/filtersets.py:432 netbox/ipam/forms/filtersets.py:489 -#: netbox/ipam/forms/model_forms.py:205 netbox/ipam/forms/model_forms.py:636 -#: netbox/ipam/tables/ip.py:245 netbox/ipam/tables/vlans.py:118 -#: netbox/ipam/tables/vlans.py:221 -#: netbox/templates/circuits/inc/circuit_termination_fields.html:6 -#: netbox/templates/dcim/device.html:22 -#: netbox/templates/dcim/inc/cable_termination.html:8 -#: netbox/templates/dcim/inc/cable_termination.html:33 -#: netbox/templates/dcim/location.html:37 -#: netbox/templates/dcim/powerpanel.html:22 netbox/templates/dcim/rack.html:20 -#: netbox/templates/dcim/rackreservation.html:28 -#: netbox/templates/dcim/site.html:28 netbox/templates/ipam/prefix.html:56 -#: netbox/templates/ipam/vlan.html:23 netbox/templates/ipam/vlan_edit.html:40 -#: netbox/templates/virtualization/cluster.html:42 -#: netbox/templates/virtualization/virtualmachine.html:95 -#: netbox/virtualization/forms/bulk_edit.py:91 -#: netbox/virtualization/forms/bulk_edit.py:109 -#: netbox/virtualization/forms/bulk_edit.py:124 -#: netbox/virtualization/forms/bulk_import.py:59 -#: netbox/virtualization/forms/bulk_import.py:85 -#: netbox/virtualization/forms/filtersets.py:79 -#: netbox/virtualization/forms/filtersets.py:148 -#: netbox/virtualization/forms/model_forms.py:71 -#: netbox/virtualization/forms/model_forms.py:104 -#: netbox/virtualization/forms/model_forms.py:171 -#: netbox/virtualization/tables/clusters.py:77 -#: netbox/virtualization/tables/virtualmachines.py:63 -#: netbox/vpn/forms/filtersets.py:266 netbox/wireless/forms/model_forms.py:76 -#: netbox/wireless/forms/model_forms.py:118 +#: circuits/filtersets.py:56 circuits/forms/bulk_edit.py:188 +#: circuits/forms/bulk_edit.py:216 circuits/forms/bulk_import.py:124 +#: circuits/forms/filtersets.py:51 circuits/forms/filtersets.py:171 +#: circuits/forms/filtersets.py:209 circuits/forms/model_forms.py:138 +#: circuits/forms/model_forms.py:154 circuits/tables/circuits.py:113 +#: dcim/forms/bulk_edit.py:168 dcim/forms/bulk_edit.py:329 +#: dcim/forms/bulk_edit.py:677 dcim/forms/bulk_edit.py:873 +#: dcim/forms/bulk_import.py:131 dcim/forms/bulk_import.py:230 +#: dcim/forms/bulk_import.py:309 dcim/forms/bulk_import.py:540 +#: dcim/forms/bulk_import.py:1311 dcim/forms/bulk_import.py:1339 +#: dcim/forms/filtersets.py:87 dcim/forms/filtersets.py:225 +#: dcim/forms/filtersets.py:342 dcim/forms/filtersets.py:439 +#: dcim/forms/filtersets.py:753 dcim/forms/filtersets.py:997 +#: dcim/forms/filtersets.py:1021 dcim/forms/filtersets.py:1111 +#: dcim/forms/filtersets.py:1149 dcim/forms/filtersets.py:1584 +#: dcim/forms/filtersets.py:1608 dcim/forms/filtersets.py:1632 +#: dcim/forms/model_forms.py:137 dcim/forms/model_forms.py:165 +#: dcim/forms/model_forms.py:238 dcim/forms/model_forms.py:463 +#: dcim/forms/model_forms.py:723 dcim/forms/object_create.py:391 +#: dcim/tables/devices.py:153 dcim/tables/power.py:26 dcim/tables/power.py:93 +#: dcim/tables/racks.py:122 dcim/tables/racks.py:207 dcim/tables/sites.py:134 +#: extras/filtersets.py:525 ipam/forms/bulk_edit.py:218 +#: ipam/forms/bulk_edit.py:285 ipam/forms/bulk_edit.py:484 +#: ipam/forms/bulk_import.py:171 ipam/forms/bulk_import.py:429 +#: ipam/forms/filtersets.py:153 ipam/forms/filtersets.py:231 +#: ipam/forms/filtersets.py:432 ipam/forms/filtersets.py:489 +#: ipam/forms/model_forms.py:205 ipam/forms/model_forms.py:636 +#: ipam/tables/ip.py:245 ipam/tables/vlans.py:118 ipam/tables/vlans.py:221 +#: templates/circuits/inc/circuit_termination_fields.html:6 +#: templates/dcim/device.html:22 templates/dcim/inc/cable_termination.html:8 +#: templates/dcim/inc/cable_termination.html:33 +#: templates/dcim/location.html:37 templates/dcim/powerpanel.html:22 +#: templates/dcim/rack.html:20 templates/dcim/rackreservation.html:28 +#: templates/dcim/site.html:28 templates/ipam/prefix.html:56 +#: templates/ipam/vlan.html:23 templates/ipam/vlan_edit.html:40 +#: templates/virtualization/cluster.html:42 +#: templates/virtualization/virtualmachine.html:95 +#: virtualization/forms/bulk_edit.py:91 virtualization/forms/bulk_edit.py:109 +#: virtualization/forms/bulk_edit.py:124 +#: virtualization/forms/bulk_import.py:59 +#: virtualization/forms/bulk_import.py:85 +#: virtualization/forms/filtersets.py:79 +#: virtualization/forms/filtersets.py:148 +#: virtualization/forms/model_forms.py:71 +#: virtualization/forms/model_forms.py:104 +#: virtualization/forms/model_forms.py:171 +#: virtualization/tables/clusters.py:77 +#: virtualization/tables/virtualmachines.py:63 vpn/forms/filtersets.py:266 +#: wireless/forms/model_forms.py:76 wireless/forms/model_forms.py:118 msgid "Site" msgstr "Sitio" -#: netbox/circuits/filtersets.py:62 netbox/circuits/filtersets.py:229 -#: netbox/circuits/filtersets.py:274 netbox/dcim/filtersets.py:242 -#: netbox/dcim/filtersets.py:363 netbox/dcim/filtersets.py:458 -#: netbox/extras/filtersets.py:531 netbox/ipam/filtersets.py:238 -#: netbox/ipam/filtersets.py:369 netbox/ipam/filtersets.py:989 -#: netbox/virtualization/filtersets.py:75 -#: netbox/virtualization/filtersets.py:203 netbox/vpn/filtersets.py:363 +#: circuits/filtersets.py:62 circuits/filtersets.py:229 +#: circuits/filtersets.py:274 dcim/filtersets.py:242 dcim/filtersets.py:363 +#: dcim/filtersets.py:458 extras/filtersets.py:531 ipam/filtersets.py:238 +#: ipam/filtersets.py:369 ipam/filtersets.py:989 +#: virtualization/filtersets.py:75 virtualization/filtersets.py:203 +#: vpn/filtersets.py:363 msgid "Site (slug)" msgstr "Sitio (babosa)" -#: netbox/circuits/filtersets.py:67 +#: circuits/filtersets.py:67 msgid "ASN (ID)" msgstr "ASN (ID)" -#: netbox/circuits/filtersets.py:73 netbox/circuits/forms/filtersets.py:31 -#: netbox/ipam/forms/model_forms.py:159 netbox/ipam/models/asns.py:108 -#: netbox/ipam/models/asns.py:125 netbox/ipam/tables/asn.py:41 -#: netbox/templates/ipam/asn.html:20 +#: circuits/filtersets.py:73 circuits/forms/filtersets.py:31 +#: ipam/forms/model_forms.py:159 ipam/models/asns.py:108 +#: ipam/models/asns.py:125 ipam/tables/asn.py:41 templates/ipam/asn.html:20 msgid "ASN" msgstr "ASN" -#: netbox/circuits/filtersets.py:95 netbox/circuits/filtersets.py:122 -#: netbox/circuits/filtersets.py:156 netbox/circuits/filtersets.py:283 -#: netbox/circuits/filtersets.py:325 netbox/ipam/filtersets.py:243 +#: circuits/filtersets.py:95 circuits/filtersets.py:122 +#: circuits/filtersets.py:156 circuits/filtersets.py:283 +#: circuits/filtersets.py:325 ipam/filtersets.py:243 msgid "Provider (ID)" msgstr "Proveedor (ID)" -#: netbox/circuits/filtersets.py:101 netbox/circuits/filtersets.py:128 -#: netbox/circuits/filtersets.py:162 netbox/circuits/filtersets.py:289 -#: netbox/circuits/filtersets.py:331 netbox/ipam/filtersets.py:249 +#: circuits/filtersets.py:101 circuits/filtersets.py:128 +#: circuits/filtersets.py:162 circuits/filtersets.py:289 +#: circuits/filtersets.py:331 ipam/filtersets.py:249 msgid "Provider (slug)" msgstr "Proveedor (babosa)" -#: netbox/circuits/filtersets.py:167 +#: circuits/filtersets.py:167 msgid "Provider account (ID)" msgstr "Cuenta de proveedor (ID)" -#: netbox/circuits/filtersets.py:173 +#: circuits/filtersets.py:173 msgid "Provider account (account)" msgstr "Cuenta de proveedor (cuenta)" -#: netbox/circuits/filtersets.py:178 +#: circuits/filtersets.py:178 msgid "Provider network (ID)" msgstr "Red de proveedores (ID)" -#: netbox/circuits/filtersets.py:182 +#: circuits/filtersets.py:182 msgid "Circuit type (ID)" msgstr "Tipo de circuito (ID)" -#: netbox/circuits/filtersets.py:188 +#: circuits/filtersets.py:188 msgid "Circuit type (slug)" msgstr "Tipo de circuito (slug)" -#: netbox/circuits/filtersets.py:223 netbox/circuits/filtersets.py:268 -#: netbox/dcim/filtersets.py:236 netbox/dcim/filtersets.py:357 -#: netbox/dcim/filtersets.py:452 netbox/dcim/filtersets.py:1045 -#: netbox/dcim/filtersets.py:1393 netbox/dcim/filtersets.py:1928 -#: netbox/dcim/filtersets.py:2170 netbox/dcim/filtersets.py:2229 -#: netbox/ipam/filtersets.py:232 netbox/ipam/filtersets.py:363 -#: netbox/ipam/filtersets.py:983 netbox/virtualization/filtersets.py:69 -#: netbox/virtualization/filtersets.py:197 netbox/vpn/filtersets.py:368 +#: circuits/filtersets.py:223 circuits/filtersets.py:268 +#: dcim/filtersets.py:236 dcim/filtersets.py:357 dcim/filtersets.py:452 +#: dcim/filtersets.py:1045 dcim/filtersets.py:1393 dcim/filtersets.py:1928 +#: dcim/filtersets.py:2170 dcim/filtersets.py:2229 ipam/filtersets.py:232 +#: ipam/filtersets.py:363 ipam/filtersets.py:983 +#: virtualization/filtersets.py:69 virtualization/filtersets.py:197 +#: vpn/filtersets.py:368 msgid "Site (ID)" msgstr "Sitio (ID)" -#: netbox/circuits/filtersets.py:233 netbox/circuits/filtersets.py:237 +#: circuits/filtersets.py:233 circuits/filtersets.py:237 msgid "Termination A (ID)" msgstr "Terminación A (ID)" -#: netbox/circuits/filtersets.py:260 netbox/circuits/filtersets.py:320 -#: netbox/core/filtersets.py:77 netbox/core/filtersets.py:136 -#: netbox/core/filtersets.py:173 netbox/dcim/filtersets.py:751 -#: netbox/dcim/filtersets.py:1362 netbox/dcim/filtersets.py:2277 -#: netbox/extras/filtersets.py:41 netbox/extras/filtersets.py:63 -#: netbox/extras/filtersets.py:92 netbox/extras/filtersets.py:132 -#: netbox/extras/filtersets.py:181 netbox/extras/filtersets.py:209 -#: netbox/extras/filtersets.py:239 netbox/extras/filtersets.py:276 -#: netbox/extras/filtersets.py:348 netbox/extras/filtersets.py:391 -#: netbox/extras/filtersets.py:438 netbox/extras/filtersets.py:498 -#: netbox/extras/filtersets.py:657 netbox/extras/filtersets.py:703 -#: netbox/ipam/forms/model_forms.py:449 netbox/netbox/filtersets.py:282 -#: netbox/netbox/forms/__init__.py:22 netbox/netbox/forms/base.py:167 -#: netbox/templates/htmx/object_selector.html:28 -#: netbox/templates/inc/filter_list.html:45 -#: netbox/templates/ipam/ipaddress_assign.html:29 -#: netbox/templates/search.html:7 netbox/templates/search.html:26 -#: netbox/tenancy/filtersets.py:99 netbox/users/filtersets.py:23 -#: netbox/users/filtersets.py:57 netbox/users/filtersets.py:102 -#: netbox/users/filtersets.py:150 netbox/utilities/forms/forms.py:104 -#: netbox/utilities/templates/navigation/menu.html:16 +#: circuits/filtersets.py:260 circuits/filtersets.py:320 core/filtersets.py:77 +#: core/filtersets.py:136 core/filtersets.py:173 dcim/filtersets.py:751 +#: dcim/filtersets.py:1362 dcim/filtersets.py:2277 extras/filtersets.py:41 +#: extras/filtersets.py:63 extras/filtersets.py:92 extras/filtersets.py:132 +#: extras/filtersets.py:181 extras/filtersets.py:209 extras/filtersets.py:239 +#: extras/filtersets.py:276 extras/filtersets.py:348 extras/filtersets.py:391 +#: extras/filtersets.py:438 extras/filtersets.py:498 extras/filtersets.py:657 +#: extras/filtersets.py:703 ipam/forms/model_forms.py:449 +#: netbox/filtersets.py:282 netbox/forms/__init__.py:22 +#: netbox/forms/base.py:167 templates/htmx/object_selector.html:28 +#: templates/inc/filter_list.html:46 templates/ipam/ipaddress_assign.html:29 +#: templates/search.html:7 templates/search.html:26 tenancy/filtersets.py:99 +#: users/filtersets.py:23 users/filtersets.py:57 users/filtersets.py:102 +#: users/filtersets.py:150 utilities/forms/forms.py:104 +#: utilities/templates/navigation/menu.html:16 msgid "Search" msgstr "Búsqueda" -#: netbox/circuits/filtersets.py:264 netbox/circuits/forms/bulk_edit.py:172 -#: netbox/circuits/forms/bulk_edit.py:246 -#: netbox/circuits/forms/bulk_import.py:115 -#: netbox/circuits/forms/filtersets.py:198 -#: netbox/circuits/forms/filtersets.py:214 -#: netbox/circuits/forms/filtersets.py:260 -#: netbox/circuits/forms/model_forms.py:111 -#: netbox/circuits/forms/model_forms.py:133 -#: netbox/circuits/forms/model_forms.py:199 -#: netbox/circuits/tables/circuits.py:104 -#: netbox/circuits/tables/circuits.py:164 netbox/dcim/forms/connections.py:73 -#: netbox/templates/circuits/circuit.html:15 -#: netbox/templates/circuits/circuitgroupassignment.html:26 -#: netbox/templates/circuits/circuittermination.html:19 -#: netbox/templates/dcim/inc/cable_termination.html:55 -#: netbox/templates/dcim/trace/circuit.html:4 +#: circuits/filtersets.py:264 circuits/forms/bulk_edit.py:172 +#: circuits/forms/bulk_edit.py:246 circuits/forms/bulk_import.py:115 +#: circuits/forms/filtersets.py:198 circuits/forms/filtersets.py:214 +#: circuits/forms/filtersets.py:260 circuits/forms/model_forms.py:111 +#: circuits/forms/model_forms.py:133 circuits/forms/model_forms.py:199 +#: circuits/tables/circuits.py:104 circuits/tables/circuits.py:164 +#: dcim/forms/connections.py:73 templates/circuits/circuit.html:15 +#: templates/circuits/circuitgroupassignment.html:26 +#: templates/circuits/circuittermination.html:19 +#: templates/dcim/inc/cable_termination.html:55 +#: templates/dcim/trace/circuit.html:4 msgid "Circuit" msgstr "Circuito" -#: netbox/circuits/filtersets.py:278 +#: circuits/filtersets.py:278 msgid "ProviderNetwork (ID)" msgstr "Red de proveedores (ID)" -#: netbox/circuits/filtersets.py:335 +#: circuits/filtersets.py:335 msgid "Circuit (ID)" msgstr "Circuito (ID)" -#: netbox/circuits/filtersets.py:341 +#: circuits/filtersets.py:341 msgid "Circuit (CID)" msgstr "Circuito (CID)" -#: netbox/circuits/filtersets.py:345 +#: circuits/filtersets.py:345 msgid "Circuit group (ID)" msgstr "Grupo de circuitos (ID)" -#: netbox/circuits/filtersets.py:351 +#: circuits/filtersets.py:351 msgid "Circuit group (slug)" msgstr "Grupo de circuitos (slug)" -#: netbox/circuits/forms/bulk_edit.py:30 -#: netbox/circuits/forms/filtersets.py:56 -#: netbox/circuits/forms/model_forms.py:29 -#: netbox/circuits/tables/providers.py:33 netbox/dcim/forms/bulk_edit.py:128 -#: netbox/dcim/forms/filtersets.py:195 netbox/dcim/forms/model_forms.py:123 -#: netbox/dcim/tables/sites.py:94 netbox/ipam/models/asns.py:126 -#: netbox/ipam/tables/asn.py:27 netbox/ipam/views.py:213 -#: netbox/netbox/navigation/menu.py:172 netbox/netbox/navigation/menu.py:175 -#: netbox/templates/circuits/provider.html:23 +#: circuits/forms/bulk_edit.py:30 circuits/forms/filtersets.py:56 +#: circuits/forms/model_forms.py:29 circuits/tables/providers.py:33 +#: dcim/forms/bulk_edit.py:128 dcim/forms/filtersets.py:195 +#: dcim/forms/model_forms.py:123 dcim/tables/sites.py:94 +#: ipam/models/asns.py:126 ipam/tables/asn.py:27 ipam/views.py:213 +#: netbox/navigation/menu.py:172 netbox/navigation/menu.py:175 +#: templates/circuits/provider.html:23 msgid "ASNs" msgstr "ASNs" -#: netbox/circuits/forms/bulk_edit.py:34 netbox/circuits/forms/bulk_edit.py:56 -#: netbox/circuits/forms/bulk_edit.py:83 -#: netbox/circuits/forms/bulk_edit.py:104 -#: netbox/circuits/forms/bulk_edit.py:164 -#: netbox/circuits/forms/bulk_edit.py:183 -#: netbox/circuits/forms/bulk_edit.py:228 netbox/core/forms/bulk_edit.py:28 -#: netbox/dcim/forms/bulk_create.py:35 netbox/dcim/forms/bulk_edit.py:73 -#: netbox/dcim/forms/bulk_edit.py:92 netbox/dcim/forms/bulk_edit.py:151 -#: netbox/dcim/forms/bulk_edit.py:192 netbox/dcim/forms/bulk_edit.py:210 -#: netbox/dcim/forms/bulk_edit.py:288 netbox/dcim/forms/bulk_edit.py:432 -#: netbox/dcim/forms/bulk_edit.py:466 netbox/dcim/forms/bulk_edit.py:481 -#: netbox/dcim/forms/bulk_edit.py:540 netbox/dcim/forms/bulk_edit.py:584 -#: netbox/dcim/forms/bulk_edit.py:618 netbox/dcim/forms/bulk_edit.py:642 -#: netbox/dcim/forms/bulk_edit.py:715 netbox/dcim/forms/bulk_edit.py:767 -#: netbox/dcim/forms/bulk_edit.py:819 netbox/dcim/forms/bulk_edit.py:842 -#: netbox/dcim/forms/bulk_edit.py:890 netbox/dcim/forms/bulk_edit.py:960 -#: netbox/dcim/forms/bulk_edit.py:1013 netbox/dcim/forms/bulk_edit.py:1048 -#: netbox/dcim/forms/bulk_edit.py:1088 netbox/dcim/forms/bulk_edit.py:1132 -#: netbox/dcim/forms/bulk_edit.py:1177 netbox/dcim/forms/bulk_edit.py:1204 -#: netbox/dcim/forms/bulk_edit.py:1222 netbox/dcim/forms/bulk_edit.py:1240 -#: netbox/dcim/forms/bulk_edit.py:1258 netbox/dcim/forms/bulk_edit.py:1682 -#: netbox/extras/forms/bulk_edit.py:39 netbox/extras/forms/bulk_edit.py:149 -#: netbox/extras/forms/bulk_edit.py:178 netbox/extras/forms/bulk_edit.py:208 -#: netbox/extras/forms/bulk_edit.py:256 netbox/extras/forms/bulk_edit.py:274 -#: netbox/extras/forms/bulk_edit.py:298 netbox/extras/forms/bulk_edit.py:312 -#: netbox/extras/forms/bulk_edit.py:339 netbox/extras/tables/tables.py:79 -#: netbox/ipam/forms/bulk_edit.py:52 netbox/ipam/forms/bulk_edit.py:72 -#: netbox/ipam/forms/bulk_edit.py:92 netbox/ipam/forms/bulk_edit.py:116 -#: netbox/ipam/forms/bulk_edit.py:145 netbox/ipam/forms/bulk_edit.py:174 -#: netbox/ipam/forms/bulk_edit.py:193 netbox/ipam/forms/bulk_edit.py:275 -#: netbox/ipam/forms/bulk_edit.py:320 netbox/ipam/forms/bulk_edit.py:368 -#: netbox/ipam/forms/bulk_edit.py:411 netbox/ipam/forms/bulk_edit.py:427 -#: netbox/ipam/forms/bulk_edit.py:561 netbox/ipam/forms/bulk_edit.py:592 -#: netbox/templates/account/token.html:35 -#: netbox/templates/circuits/circuit.html:59 -#: netbox/templates/circuits/circuitgroup.html:32 -#: netbox/templates/circuits/circuittype.html:26 -#: netbox/templates/circuits/inc/circuit_termination_fields.html:88 -#: netbox/templates/circuits/provider.html:33 -#: netbox/templates/circuits/providernetwork.html:32 -#: netbox/templates/core/datasource.html:54 -#: netbox/templates/core/plugin.html:79 netbox/templates/dcim/cable.html:36 -#: netbox/templates/dcim/consoleport.html:44 -#: netbox/templates/dcim/consoleserverport.html:44 -#: netbox/templates/dcim/device.html:94 -#: netbox/templates/dcim/devicebay.html:32 -#: netbox/templates/dcim/devicerole.html:30 -#: netbox/templates/dcim/devicetype.html:33 -#: netbox/templates/dcim/frontport.html:58 -#: netbox/templates/dcim/interface.html:69 -#: netbox/templates/dcim/inventoryitem.html:60 -#: netbox/templates/dcim/inventoryitemrole.html:22 -#: netbox/templates/dcim/location.html:33 -#: netbox/templates/dcim/manufacturer.html:40 -#: netbox/templates/dcim/module.html:73 -#: netbox/templates/dcim/modulebay.html:42 -#: netbox/templates/dcim/moduletype.html:26 -#: netbox/templates/dcim/platform.html:33 -#: netbox/templates/dcim/powerfeed.html:40 -#: netbox/templates/dcim/poweroutlet.html:40 -#: netbox/templates/dcim/powerpanel.html:30 -#: netbox/templates/dcim/powerport.html:40 netbox/templates/dcim/rack.html:53 -#: netbox/templates/dcim/rackreservation.html:62 -#: netbox/templates/dcim/rackrole.html:26 -#: netbox/templates/dcim/racktype.html:24 -#: netbox/templates/dcim/rearport.html:54 netbox/templates/dcim/region.html:33 -#: netbox/templates/dcim/site.html:60 netbox/templates/dcim/sitegroup.html:33 -#: netbox/templates/dcim/virtualchassis.html:31 -#: netbox/templates/extras/configcontext.html:21 -#: netbox/templates/extras/configtemplate.html:17 -#: netbox/templates/extras/customfield.html:34 -#: netbox/templates/extras/dashboard/widget_add.html:14 -#: netbox/templates/extras/eventrule.html:21 -#: netbox/templates/extras/exporttemplate.html:19 -#: netbox/templates/extras/notificationgroup.html:20 -#: netbox/templates/extras/savedfilter.html:17 -#: netbox/templates/extras/script_list.html:45 -#: netbox/templates/extras/tag.html:20 netbox/templates/extras/webhook.html:17 -#: netbox/templates/generic/bulk_import.html:120 -#: netbox/templates/ipam/aggregate.html:43 netbox/templates/ipam/asn.html:42 -#: netbox/templates/ipam/asnrange.html:38 -#: netbox/templates/ipam/fhrpgroup.html:34 -#: netbox/templates/ipam/ipaddress.html:55 -#: netbox/templates/ipam/iprange.html:67 netbox/templates/ipam/prefix.html:81 -#: netbox/templates/ipam/rir.html:26 netbox/templates/ipam/role.html:26 -#: netbox/templates/ipam/routetarget.html:21 -#: netbox/templates/ipam/service.html:50 -#: netbox/templates/ipam/servicetemplate.html:27 -#: netbox/templates/ipam/vlan.html:62 netbox/templates/ipam/vlangroup.html:34 -#: netbox/templates/ipam/vrf.html:33 netbox/templates/tenancy/contact.html:67 -#: netbox/templates/tenancy/contactgroup.html:25 -#: netbox/templates/tenancy/contactrole.html:22 -#: netbox/templates/tenancy/tenant.html:24 -#: netbox/templates/tenancy/tenantgroup.html:33 -#: netbox/templates/users/group.html:21 -#: netbox/templates/users/objectpermission.html:21 -#: netbox/templates/users/token.html:27 -#: netbox/templates/virtualization/cluster.html:25 -#: netbox/templates/virtualization/clustergroup.html:26 -#: netbox/templates/virtualization/clustertype.html:26 -#: netbox/templates/virtualization/virtualdisk.html:39 -#: netbox/templates/virtualization/virtualmachine.html:31 -#: netbox/templates/virtualization/vminterface.html:51 -#: netbox/templates/vpn/ikepolicy.html:17 -#: netbox/templates/vpn/ikeproposal.html:17 -#: netbox/templates/vpn/ipsecpolicy.html:17 -#: netbox/templates/vpn/ipsecprofile.html:17 -#: netbox/templates/vpn/ipsecprofile.html:40 -#: netbox/templates/vpn/ipsecprofile.html:73 -#: netbox/templates/vpn/ipsecproposal.html:17 -#: netbox/templates/vpn/l2vpn.html:26 netbox/templates/vpn/tunnel.html:33 -#: netbox/templates/vpn/tunnelgroup.html:30 -#: netbox/templates/wireless/wirelesslan.html:26 -#: netbox/templates/wireless/wirelesslangroup.html:33 -#: netbox/templates/wireless/wirelesslink.html:34 -#: netbox/tenancy/forms/bulk_edit.py:32 netbox/tenancy/forms/bulk_edit.py:80 -#: netbox/tenancy/forms/bulk_edit.py:122 netbox/users/forms/bulk_edit.py:64 -#: netbox/users/forms/bulk_edit.py:82 netbox/users/forms/bulk_edit.py:112 -#: netbox/virtualization/forms/bulk_edit.py:32 -#: netbox/virtualization/forms/bulk_edit.py:46 -#: netbox/virtualization/forms/bulk_edit.py:100 -#: netbox/virtualization/forms/bulk_edit.py:177 -#: netbox/virtualization/forms/bulk_edit.py:228 -#: netbox/virtualization/forms/bulk_edit.py:337 -#: netbox/vpn/forms/bulk_edit.py:28 netbox/vpn/forms/bulk_edit.py:64 -#: netbox/vpn/forms/bulk_edit.py:121 netbox/vpn/forms/bulk_edit.py:155 -#: netbox/vpn/forms/bulk_edit.py:190 netbox/vpn/forms/bulk_edit.py:215 -#: netbox/vpn/forms/bulk_edit.py:247 netbox/vpn/forms/bulk_edit.py:274 -#: netbox/wireless/forms/bulk_edit.py:29 netbox/wireless/forms/bulk_edit.py:82 -#: netbox/wireless/forms/bulk_edit.py:140 +#: circuits/forms/bulk_edit.py:34 circuits/forms/bulk_edit.py:56 +#: circuits/forms/bulk_edit.py:83 circuits/forms/bulk_edit.py:104 +#: circuits/forms/bulk_edit.py:164 circuits/forms/bulk_edit.py:183 +#: circuits/forms/bulk_edit.py:228 core/forms/bulk_edit.py:28 +#: dcim/forms/bulk_create.py:35 dcim/forms/bulk_edit.py:73 +#: dcim/forms/bulk_edit.py:92 dcim/forms/bulk_edit.py:151 +#: dcim/forms/bulk_edit.py:192 dcim/forms/bulk_edit.py:210 +#: dcim/forms/bulk_edit.py:288 dcim/forms/bulk_edit.py:432 +#: dcim/forms/bulk_edit.py:466 dcim/forms/bulk_edit.py:481 +#: dcim/forms/bulk_edit.py:540 dcim/forms/bulk_edit.py:584 +#: dcim/forms/bulk_edit.py:618 dcim/forms/bulk_edit.py:642 +#: dcim/forms/bulk_edit.py:715 dcim/forms/bulk_edit.py:767 +#: dcim/forms/bulk_edit.py:819 dcim/forms/bulk_edit.py:842 +#: dcim/forms/bulk_edit.py:890 dcim/forms/bulk_edit.py:960 +#: dcim/forms/bulk_edit.py:1013 dcim/forms/bulk_edit.py:1048 +#: dcim/forms/bulk_edit.py:1088 dcim/forms/bulk_edit.py:1132 +#: dcim/forms/bulk_edit.py:1177 dcim/forms/bulk_edit.py:1204 +#: dcim/forms/bulk_edit.py:1222 dcim/forms/bulk_edit.py:1240 +#: dcim/forms/bulk_edit.py:1258 dcim/forms/bulk_edit.py:1682 +#: extras/forms/bulk_edit.py:39 extras/forms/bulk_edit.py:149 +#: extras/forms/bulk_edit.py:178 extras/forms/bulk_edit.py:208 +#: extras/forms/bulk_edit.py:256 extras/forms/bulk_edit.py:274 +#: extras/forms/bulk_edit.py:298 extras/forms/bulk_edit.py:312 +#: extras/forms/bulk_edit.py:339 extras/tables/tables.py:79 +#: ipam/forms/bulk_edit.py:53 ipam/forms/bulk_edit.py:73 +#: ipam/forms/bulk_edit.py:93 ipam/forms/bulk_edit.py:117 +#: ipam/forms/bulk_edit.py:146 ipam/forms/bulk_edit.py:175 +#: ipam/forms/bulk_edit.py:194 ipam/forms/bulk_edit.py:276 +#: ipam/forms/bulk_edit.py:321 ipam/forms/bulk_edit.py:369 +#: ipam/forms/bulk_edit.py:412 ipam/forms/bulk_edit.py:428 +#: ipam/forms/bulk_edit.py:516 ipam/forms/bulk_edit.py:547 +#: templates/account/token.html:35 templates/circuits/circuit.html:59 +#: templates/circuits/circuitgroup.html:32 +#: templates/circuits/circuittype.html:26 +#: templates/circuits/inc/circuit_termination_fields.html:88 +#: templates/circuits/provider.html:33 +#: templates/circuits/providernetwork.html:32 +#: templates/core/datasource.html:54 templates/core/plugin.html:80 +#: templates/dcim/cable.html:36 templates/dcim/consoleport.html:44 +#: templates/dcim/consoleserverport.html:44 templates/dcim/device.html:94 +#: templates/dcim/devicebay.html:32 templates/dcim/devicerole.html:30 +#: templates/dcim/devicetype.html:33 templates/dcim/frontport.html:58 +#: templates/dcim/interface.html:69 templates/dcim/inventoryitem.html:60 +#: templates/dcim/inventoryitemrole.html:22 templates/dcim/location.html:33 +#: templates/dcim/manufacturer.html:40 templates/dcim/module.html:73 +#: templates/dcim/modulebay.html:42 templates/dcim/moduletype.html:37 +#: templates/dcim/platform.html:33 templates/dcim/powerfeed.html:40 +#: templates/dcim/poweroutlet.html:40 templates/dcim/powerpanel.html:30 +#: templates/dcim/powerport.html:40 templates/dcim/rack.html:53 +#: templates/dcim/rackreservation.html:62 templates/dcim/rackrole.html:26 +#: templates/dcim/racktype.html:24 templates/dcim/rearport.html:54 +#: templates/dcim/region.html:33 templates/dcim/site.html:60 +#: templates/dcim/sitegroup.html:33 templates/dcim/virtualchassis.html:31 +#: templates/extras/configcontext.html:21 +#: templates/extras/configtemplate.html:17 +#: templates/extras/customfield.html:34 +#: templates/extras/dashboard/widget_add.html:14 +#: templates/extras/eventrule.html:21 templates/extras/exporttemplate.html:19 +#: templates/extras/notificationgroup.html:20 +#: templates/extras/savedfilter.html:17 templates/extras/script_list.html:45 +#: templates/extras/tag.html:20 templates/extras/webhook.html:17 +#: templates/generic/bulk_import.html:120 templates/ipam/aggregate.html:43 +#: templates/ipam/asn.html:42 templates/ipam/asnrange.html:38 +#: templates/ipam/fhrpgroup.html:34 templates/ipam/ipaddress.html:55 +#: templates/ipam/iprange.html:67 templates/ipam/prefix.html:81 +#: templates/ipam/rir.html:26 templates/ipam/role.html:26 +#: templates/ipam/routetarget.html:21 templates/ipam/service.html:50 +#: templates/ipam/servicetemplate.html:27 templates/ipam/vlan.html:62 +#: templates/ipam/vlangroup.html:34 templates/ipam/vrf.html:33 +#: templates/tenancy/contact.html:67 templates/tenancy/contactgroup.html:25 +#: templates/tenancy/contactrole.html:22 templates/tenancy/tenant.html:24 +#: templates/tenancy/tenantgroup.html:33 templates/users/group.html:21 +#: templates/users/objectpermission.html:21 templates/users/token.html:27 +#: templates/virtualization/cluster.html:25 +#: templates/virtualization/clustergroup.html:26 +#: templates/virtualization/clustertype.html:26 +#: templates/virtualization/virtualdisk.html:39 +#: templates/virtualization/virtualmachine.html:31 +#: templates/virtualization/vminterface.html:51 +#: templates/vpn/ikepolicy.html:17 templates/vpn/ikeproposal.html:17 +#: templates/vpn/ipsecpolicy.html:17 templates/vpn/ipsecprofile.html:17 +#: templates/vpn/ipsecprofile.html:40 templates/vpn/ipsecprofile.html:73 +#: templates/vpn/ipsecproposal.html:17 templates/vpn/l2vpn.html:26 +#: templates/vpn/tunnel.html:33 templates/vpn/tunnelgroup.html:30 +#: templates/wireless/wirelesslan.html:26 +#: templates/wireless/wirelesslangroup.html:33 +#: templates/wireless/wirelesslink.html:34 tenancy/forms/bulk_edit.py:32 +#: tenancy/forms/bulk_edit.py:80 tenancy/forms/bulk_edit.py:122 +#: users/forms/bulk_edit.py:64 users/forms/bulk_edit.py:82 +#: users/forms/bulk_edit.py:112 virtualization/forms/bulk_edit.py:32 +#: virtualization/forms/bulk_edit.py:46 virtualization/forms/bulk_edit.py:100 +#: virtualization/forms/bulk_edit.py:177 virtualization/forms/bulk_edit.py:228 +#: virtualization/forms/bulk_edit.py:337 vpn/forms/bulk_edit.py:28 +#: vpn/forms/bulk_edit.py:64 vpn/forms/bulk_edit.py:121 +#: vpn/forms/bulk_edit.py:155 vpn/forms/bulk_edit.py:190 +#: vpn/forms/bulk_edit.py:215 vpn/forms/bulk_edit.py:247 +#: vpn/forms/bulk_edit.py:274 wireless/forms/bulk_edit.py:29 +#: wireless/forms/bulk_edit.py:82 wireless/forms/bulk_edit.py:140 msgid "Description" msgstr "Descripción" -#: netbox/circuits/forms/bulk_edit.py:51 netbox/circuits/forms/bulk_edit.py:73 -#: netbox/circuits/forms/bulk_edit.py:123 -#: netbox/circuits/forms/bulk_import.py:36 -#: netbox/circuits/forms/bulk_import.py:51 -#: netbox/circuits/forms/bulk_import.py:74 -#: netbox/circuits/forms/filtersets.py:70 -#: netbox/circuits/forms/filtersets.py:88 -#: netbox/circuits/forms/filtersets.py:116 -#: netbox/circuits/forms/filtersets.py:131 -#: netbox/circuits/forms/filtersets.py:199 -#: netbox/circuits/forms/filtersets.py:232 -#: netbox/circuits/forms/filtersets.py:255 -#: netbox/circuits/forms/model_forms.py:47 -#: netbox/circuits/forms/model_forms.py:61 -#: netbox/circuits/forms/model_forms.py:93 -#: netbox/circuits/tables/circuits.py:58 -#: netbox/circuits/tables/circuits.py:108 -#: netbox/circuits/tables/circuits.py:160 -#: netbox/circuits/tables/providers.py:72 -#: netbox/circuits/tables/providers.py:103 -#: netbox/templates/circuits/circuit.html:18 -#: netbox/templates/circuits/circuittermination.html:25 -#: netbox/templates/circuits/provider.html:20 -#: netbox/templates/circuits/provideraccount.html:20 -#: netbox/templates/circuits/providernetwork.html:20 -#: netbox/templates/dcim/inc/cable_termination.html:51 +#: circuits/forms/bulk_edit.py:51 circuits/forms/bulk_edit.py:73 +#: circuits/forms/bulk_edit.py:123 circuits/forms/bulk_import.py:36 +#: circuits/forms/bulk_import.py:51 circuits/forms/bulk_import.py:74 +#: circuits/forms/filtersets.py:70 circuits/forms/filtersets.py:88 +#: circuits/forms/filtersets.py:116 circuits/forms/filtersets.py:131 +#: circuits/forms/filtersets.py:199 circuits/forms/filtersets.py:232 +#: circuits/forms/filtersets.py:255 circuits/forms/model_forms.py:47 +#: circuits/forms/model_forms.py:61 circuits/forms/model_forms.py:93 +#: circuits/tables/circuits.py:58 circuits/tables/circuits.py:108 +#: circuits/tables/circuits.py:160 circuits/tables/providers.py:72 +#: circuits/tables/providers.py:103 templates/circuits/circuit.html:18 +#: templates/circuits/circuittermination.html:25 +#: templates/circuits/provider.html:20 +#: templates/circuits/provideraccount.html:20 +#: templates/circuits/providernetwork.html:20 +#: templates/dcim/inc/cable_termination.html:51 msgid "Provider" msgstr "Proveedor" -#: netbox/circuits/forms/bulk_edit.py:80 -#: netbox/circuits/forms/filtersets.py:91 -#: netbox/templates/circuits/providernetwork.html:28 +#: circuits/forms/bulk_edit.py:80 circuits/forms/filtersets.py:91 +#: templates/circuits/providernetwork.html:28 msgid "Service ID" msgstr "ID de servicio" -#: netbox/circuits/forms/bulk_edit.py:100 -#: netbox/circuits/forms/filtersets.py:107 netbox/dcim/forms/bulk_edit.py:206 -#: netbox/dcim/forms/bulk_edit.py:604 netbox/dcim/forms/bulk_edit.py:804 -#: netbox/dcim/forms/bulk_edit.py:1173 netbox/dcim/forms/bulk_edit.py:1200 -#: netbox/dcim/forms/bulk_edit.py:1678 netbox/dcim/forms/filtersets.py:1064 -#: netbox/dcim/forms/filtersets.py:1455 netbox/dcim/forms/filtersets.py:1479 -#: netbox/dcim/tables/devices.py:704 netbox/dcim/tables/devices.py:761 -#: netbox/dcim/tables/devices.py:1003 netbox/dcim/tables/devicetypes.py:249 -#: netbox/dcim/tables/devicetypes.py:264 netbox/dcim/tables/racks.py:33 -#: netbox/extras/forms/bulk_edit.py:270 netbox/extras/tables/tables.py:443 -#: netbox/templates/circuits/circuittype.html:30 -#: netbox/templates/dcim/cable.html:40 -#: netbox/templates/dcim/devicerole.html:34 -#: netbox/templates/dcim/frontport.html:40 -#: netbox/templates/dcim/inventoryitemrole.html:26 -#: netbox/templates/dcim/rackrole.html:30 -#: netbox/templates/dcim/rearport.html:40 netbox/templates/extras/tag.html:26 +#: circuits/forms/bulk_edit.py:100 circuits/forms/filtersets.py:107 +#: dcim/forms/bulk_edit.py:206 dcim/forms/bulk_edit.py:604 +#: dcim/forms/bulk_edit.py:804 dcim/forms/bulk_edit.py:1173 +#: dcim/forms/bulk_edit.py:1200 dcim/forms/bulk_edit.py:1678 +#: dcim/forms/filtersets.py:1064 dcim/forms/filtersets.py:1455 +#: dcim/forms/filtersets.py:1479 dcim/tables/devices.py:704 +#: dcim/tables/devices.py:761 dcim/tables/devices.py:1003 +#: dcim/tables/devicetypes.py:249 dcim/tables/devicetypes.py:264 +#: dcim/tables/racks.py:33 extras/forms/bulk_edit.py:270 +#: extras/tables/tables.py:443 templates/circuits/circuittype.html:30 +#: templates/dcim/cable.html:40 templates/dcim/devicerole.html:34 +#: templates/dcim/frontport.html:40 templates/dcim/inventoryitemrole.html:26 +#: templates/dcim/rackrole.html:30 templates/dcim/rearport.html:40 +#: templates/extras/tag.html:26 msgid "Color" msgstr "Color" -#: netbox/circuits/forms/bulk_edit.py:118 -#: netbox/circuits/forms/bulk_import.py:87 -#: netbox/circuits/forms/filtersets.py:126 netbox/core/forms/bulk_edit.py:18 -#: netbox/core/forms/filtersets.py:33 netbox/core/tables/change_logging.py:32 -#: netbox/core/tables/data.py:20 netbox/core/tables/jobs.py:18 -#: netbox/dcim/forms/bulk_edit.py:782 netbox/dcim/forms/bulk_edit.py:921 -#: netbox/dcim/forms/bulk_edit.py:989 netbox/dcim/forms/bulk_edit.py:1008 -#: netbox/dcim/forms/bulk_edit.py:1031 netbox/dcim/forms/bulk_edit.py:1073 -#: netbox/dcim/forms/bulk_edit.py:1117 netbox/dcim/forms/bulk_edit.py:1168 -#: netbox/dcim/forms/bulk_edit.py:1195 netbox/dcim/forms/bulk_import.py:188 -#: netbox/dcim/forms/bulk_import.py:260 netbox/dcim/forms/bulk_import.py:708 -#: netbox/dcim/forms/bulk_import.py:734 netbox/dcim/forms/bulk_import.py:760 -#: netbox/dcim/forms/bulk_import.py:780 netbox/dcim/forms/bulk_import.py:863 -#: netbox/dcim/forms/bulk_import.py:957 netbox/dcim/forms/bulk_import.py:999 -#: netbox/dcim/forms/bulk_import.py:1213 netbox/dcim/forms/bulk_import.py:1376 -#: netbox/dcim/forms/filtersets.py:955 netbox/dcim/forms/filtersets.py:1054 -#: netbox/dcim/forms/filtersets.py:1175 netbox/dcim/forms/filtersets.py:1247 -#: netbox/dcim/forms/filtersets.py:1272 netbox/dcim/forms/filtersets.py:1296 -#: netbox/dcim/forms/filtersets.py:1316 netbox/dcim/forms/filtersets.py:1353 -#: netbox/dcim/forms/filtersets.py:1450 netbox/dcim/forms/filtersets.py:1474 -#: netbox/dcim/forms/model_forms.py:703 netbox/dcim/forms/model_forms.py:709 -#: netbox/dcim/forms/object_import.py:84 -#: netbox/dcim/forms/object_import.py:113 -#: netbox/dcim/forms/object_import.py:145 netbox/dcim/tables/devices.py:178 -#: netbox/dcim/tables/devices.py:814 netbox/dcim/tables/power.py:77 -#: netbox/dcim/tables/racks.py:138 netbox/extras/forms/bulk_import.py:42 -#: netbox/extras/tables/tables.py:405 netbox/extras/tables/tables.py:465 -#: netbox/netbox/tables/tables.py:240 -#: netbox/templates/circuits/circuit.html:30 -#: netbox/templates/core/datasource.html:38 -#: netbox/templates/dcim/cable.html:15 -#: netbox/templates/dcim/consoleport.html:36 -#: netbox/templates/dcim/consoleserverport.html:36 -#: netbox/templates/dcim/frontport.html:36 -#: netbox/templates/dcim/interface.html:46 -#: netbox/templates/dcim/interface.html:169 -#: netbox/templates/dcim/interface.html:311 -#: netbox/templates/dcim/powerfeed.html:32 -#: netbox/templates/dcim/poweroutlet.html:36 -#: netbox/templates/dcim/powerport.html:36 -#: netbox/templates/dcim/rearport.html:36 -#: netbox/templates/extras/eventrule.html:74 -#: netbox/templates/virtualization/cluster.html:17 -#: netbox/templates/vpn/l2vpn.html:22 -#: netbox/templates/wireless/inc/authentication_attrs.html:8 -#: netbox/templates/wireless/inc/wirelesslink_interface.html:14 -#: netbox/virtualization/forms/bulk_edit.py:60 -#: netbox/virtualization/forms/bulk_import.py:41 -#: netbox/virtualization/forms/filtersets.py:54 -#: netbox/virtualization/forms/model_forms.py:62 -#: netbox/virtualization/tables/clusters.py:66 -#: netbox/vpn/forms/bulk_edit.py:264 netbox/vpn/forms/bulk_import.py:264 -#: netbox/vpn/forms/filtersets.py:217 netbox/vpn/forms/model_forms.py:84 -#: netbox/vpn/forms/model_forms.py:119 netbox/vpn/forms/model_forms.py:231 +#: circuits/forms/bulk_edit.py:118 circuits/forms/bulk_import.py:87 +#: circuits/forms/filtersets.py:126 core/forms/bulk_edit.py:18 +#: core/forms/filtersets.py:33 core/tables/change_logging.py:32 +#: core/tables/data.py:20 core/tables/jobs.py:18 dcim/forms/bulk_edit.py:782 +#: dcim/forms/bulk_edit.py:921 dcim/forms/bulk_edit.py:989 +#: dcim/forms/bulk_edit.py:1008 dcim/forms/bulk_edit.py:1031 +#: dcim/forms/bulk_edit.py:1073 dcim/forms/bulk_edit.py:1117 +#: dcim/forms/bulk_edit.py:1168 dcim/forms/bulk_edit.py:1195 +#: dcim/forms/bulk_import.py:188 dcim/forms/bulk_import.py:260 +#: dcim/forms/bulk_import.py:708 dcim/forms/bulk_import.py:734 +#: dcim/forms/bulk_import.py:760 dcim/forms/bulk_import.py:780 +#: dcim/forms/bulk_import.py:863 dcim/forms/bulk_import.py:957 +#: dcim/forms/bulk_import.py:999 dcim/forms/bulk_import.py:1213 +#: dcim/forms/bulk_import.py:1376 dcim/forms/filtersets.py:955 +#: dcim/forms/filtersets.py:1054 dcim/forms/filtersets.py:1175 +#: dcim/forms/filtersets.py:1247 dcim/forms/filtersets.py:1272 +#: dcim/forms/filtersets.py:1296 dcim/forms/filtersets.py:1316 +#: dcim/forms/filtersets.py:1353 dcim/forms/filtersets.py:1450 +#: dcim/forms/filtersets.py:1474 dcim/forms/model_forms.py:703 +#: dcim/forms/model_forms.py:709 dcim/forms/object_import.py:84 +#: dcim/forms/object_import.py:113 dcim/forms/object_import.py:145 +#: dcim/tables/devices.py:178 dcim/tables/devices.py:814 +#: dcim/tables/power.py:77 dcim/tables/racks.py:138 +#: extras/forms/bulk_import.py:42 extras/tables/tables.py:405 +#: extras/tables/tables.py:465 netbox/tables/tables.py:240 +#: templates/circuits/circuit.html:30 templates/core/datasource.html:38 +#: templates/dcim/cable.html:15 templates/dcim/consoleport.html:36 +#: templates/dcim/consoleserverport.html:36 templates/dcim/frontport.html:36 +#: templates/dcim/interface.html:46 templates/dcim/interface.html:169 +#: templates/dcim/interface.html:311 templates/dcim/powerfeed.html:32 +#: templates/dcim/poweroutlet.html:36 templates/dcim/powerport.html:36 +#: templates/dcim/rearport.html:36 templates/extras/eventrule.html:74 +#: templates/virtualization/cluster.html:17 templates/vpn/l2vpn.html:22 +#: templates/wireless/inc/authentication_attrs.html:8 +#: templates/wireless/inc/wirelesslink_interface.html:14 +#: virtualization/forms/bulk_edit.py:60 virtualization/forms/bulk_import.py:41 +#: virtualization/forms/filtersets.py:54 +#: virtualization/forms/model_forms.py:62 virtualization/tables/clusters.py:66 +#: vpn/forms/bulk_edit.py:264 vpn/forms/bulk_import.py:264 +#: vpn/forms/filtersets.py:217 vpn/forms/model_forms.py:84 +#: vpn/forms/model_forms.py:119 vpn/forms/model_forms.py:231 msgid "Type" msgstr "Tipo" -#: netbox/circuits/forms/bulk_edit.py:128 -#: netbox/circuits/forms/bulk_import.py:80 -#: netbox/circuits/forms/filtersets.py:139 -#: netbox/circuits/forms/model_forms.py:98 +#: circuits/forms/bulk_edit.py:128 circuits/forms/bulk_import.py:80 +#: circuits/forms/filtersets.py:139 circuits/forms/model_forms.py:98 msgid "Provider account" msgstr "Cuenta de proveedor" -#: netbox/circuits/forms/bulk_edit.py:136 -#: netbox/circuits/forms/bulk_import.py:93 -#: netbox/circuits/forms/filtersets.py:150 netbox/core/forms/filtersets.py:38 -#: netbox/core/forms/filtersets.py:79 netbox/core/tables/data.py:23 -#: netbox/core/tables/jobs.py:26 netbox/core/tables/tasks.py:88 -#: netbox/dcim/forms/bulk_edit.py:106 netbox/dcim/forms/bulk_edit.py:181 -#: netbox/dcim/forms/bulk_edit.py:351 netbox/dcim/forms/bulk_edit.py:700 -#: netbox/dcim/forms/bulk_edit.py:756 netbox/dcim/forms/bulk_edit.py:788 -#: netbox/dcim/forms/bulk_edit.py:915 netbox/dcim/forms/bulk_edit.py:1701 -#: netbox/dcim/forms/bulk_import.py:88 netbox/dcim/forms/bulk_import.py:147 -#: netbox/dcim/forms/bulk_import.py:248 netbox/dcim/forms/bulk_import.py:505 -#: netbox/dcim/forms/bulk_import.py:659 netbox/dcim/forms/bulk_import.py:1207 -#: netbox/dcim/forms/bulk_import.py:1371 netbox/dcim/forms/bulk_import.py:1435 -#: netbox/dcim/forms/filtersets.py:178 netbox/dcim/forms/filtersets.py:237 -#: netbox/dcim/forms/filtersets.py:359 netbox/dcim/forms/filtersets.py:799 -#: netbox/dcim/forms/filtersets.py:924 netbox/dcim/forms/filtersets.py:958 -#: netbox/dcim/forms/filtersets.py:1059 netbox/dcim/forms/filtersets.py:1170 -#: netbox/dcim/tables/devices.py:140 netbox/dcim/tables/devices.py:817 -#: netbox/dcim/tables/devices.py:1063 netbox/dcim/tables/modules.py:69 -#: netbox/dcim/tables/power.py:74 netbox/dcim/tables/racks.py:126 -#: netbox/dcim/tables/sites.py:82 netbox/dcim/tables/sites.py:138 -#: netbox/ipam/forms/bulk_edit.py:255 netbox/ipam/forms/bulk_edit.py:305 -#: netbox/ipam/forms/bulk_edit.py:353 netbox/ipam/forms/bulk_edit.py:551 -#: netbox/ipam/forms/bulk_import.py:192 netbox/ipam/forms/bulk_import.py:257 -#: netbox/ipam/forms/bulk_import.py:293 netbox/ipam/forms/bulk_import.py:450 -#: netbox/ipam/forms/filtersets.py:210 netbox/ipam/forms/filtersets.py:281 -#: netbox/ipam/forms/filtersets.py:355 netbox/ipam/forms/filtersets.py:501 -#: netbox/ipam/forms/model_forms.py:468 netbox/ipam/tables/ip.py:237 -#: netbox/ipam/tables/ip.py:312 netbox/ipam/tables/ip.py:363 -#: netbox/ipam/tables/ip.py:426 netbox/ipam/tables/ip.py:453 -#: netbox/ipam/tables/vlans.py:126 netbox/ipam/tables/vlans.py:232 -#: netbox/templates/circuits/circuit.html:34 -#: netbox/templates/core/datasource.html:46 netbox/templates/core/job.html:48 -#: netbox/templates/core/rq_task.html:81 netbox/templates/core/system.html:18 -#: netbox/templates/dcim/cable.html:19 netbox/templates/dcim/device.html:178 -#: netbox/templates/dcim/location.html:45 netbox/templates/dcim/module.html:69 -#: netbox/templates/dcim/powerfeed.html:36 netbox/templates/dcim/rack.html:41 -#: netbox/templates/dcim/site.html:43 -#: netbox/templates/extras/script_list.html:47 -#: netbox/templates/ipam/ipaddress.html:37 -#: netbox/templates/ipam/iprange.html:54 netbox/templates/ipam/prefix.html:73 -#: netbox/templates/ipam/vlan.html:48 -#: netbox/templates/virtualization/cluster.html:21 -#: netbox/templates/virtualization/virtualmachine.html:19 -#: netbox/templates/vpn/tunnel.html:25 -#: netbox/templates/wireless/wirelesslan.html:22 -#: netbox/templates/wireless/wirelesslink.html:17 -#: netbox/users/forms/filtersets.py:32 netbox/users/forms/model_forms.py:194 -#: netbox/virtualization/forms/bulk_edit.py:70 -#: netbox/virtualization/forms/bulk_edit.py:118 -#: netbox/virtualization/forms/bulk_import.py:54 -#: netbox/virtualization/forms/bulk_import.py:80 -#: netbox/virtualization/forms/filtersets.py:62 -#: netbox/virtualization/forms/filtersets.py:160 -#: netbox/virtualization/tables/clusters.py:74 -#: netbox/virtualization/tables/virtualmachines.py:60 -#: netbox/vpn/forms/bulk_edit.py:39 netbox/vpn/forms/bulk_import.py:37 -#: netbox/vpn/forms/filtersets.py:47 netbox/vpn/tables/tunnels.py:48 -#: netbox/wireless/forms/bulk_edit.py:43 -#: netbox/wireless/forms/bulk_edit.py:105 -#: netbox/wireless/forms/bulk_import.py:43 -#: netbox/wireless/forms/bulk_import.py:84 -#: netbox/wireless/forms/filtersets.py:49 -#: netbox/wireless/forms/filtersets.py:83 -#: netbox/wireless/tables/wirelesslan.py:52 -#: netbox/wireless/tables/wirelesslink.py:20 +#: circuits/forms/bulk_edit.py:136 circuits/forms/bulk_import.py:93 +#: circuits/forms/filtersets.py:150 core/forms/filtersets.py:38 +#: core/forms/filtersets.py:79 core/tables/data.py:23 core/tables/jobs.py:26 +#: core/tables/tasks.py:88 dcim/forms/bulk_edit.py:106 +#: dcim/forms/bulk_edit.py:181 dcim/forms/bulk_edit.py:351 +#: dcim/forms/bulk_edit.py:700 dcim/forms/bulk_edit.py:756 +#: dcim/forms/bulk_edit.py:788 dcim/forms/bulk_edit.py:915 +#: dcim/forms/bulk_edit.py:1701 dcim/forms/bulk_import.py:88 +#: dcim/forms/bulk_import.py:147 dcim/forms/bulk_import.py:248 +#: dcim/forms/bulk_import.py:505 dcim/forms/bulk_import.py:659 +#: dcim/forms/bulk_import.py:1207 dcim/forms/bulk_import.py:1371 +#: dcim/forms/bulk_import.py:1435 dcim/forms/filtersets.py:178 +#: dcim/forms/filtersets.py:237 dcim/forms/filtersets.py:359 +#: dcim/forms/filtersets.py:799 dcim/forms/filtersets.py:924 +#: dcim/forms/filtersets.py:958 dcim/forms/filtersets.py:1059 +#: dcim/forms/filtersets.py:1170 dcim/tables/devices.py:140 +#: dcim/tables/devices.py:817 dcim/tables/devices.py:1063 +#: dcim/tables/modules.py:69 dcim/tables/power.py:74 dcim/tables/racks.py:126 +#: dcim/tables/sites.py:82 dcim/tables/sites.py:138 +#: ipam/forms/bulk_edit.py:256 ipam/forms/bulk_edit.py:306 +#: ipam/forms/bulk_edit.py:354 ipam/forms/bulk_edit.py:506 +#: ipam/forms/bulk_import.py:192 ipam/forms/bulk_import.py:257 +#: ipam/forms/bulk_import.py:293 ipam/forms/bulk_import.py:450 +#: ipam/forms/filtersets.py:210 ipam/forms/filtersets.py:281 +#: ipam/forms/filtersets.py:355 ipam/forms/filtersets.py:501 +#: ipam/forms/model_forms.py:468 ipam/tables/ip.py:237 ipam/tables/ip.py:312 +#: ipam/tables/ip.py:363 ipam/tables/ip.py:426 ipam/tables/ip.py:453 +#: ipam/tables/vlans.py:126 ipam/tables/vlans.py:232 +#: templates/circuits/circuit.html:34 templates/core/datasource.html:46 +#: templates/core/job.html:48 templates/core/rq_task.html:81 +#: templates/core/system.html:18 templates/dcim/cable.html:19 +#: templates/dcim/device.html:178 templates/dcim/location.html:45 +#: templates/dcim/module.html:69 templates/dcim/powerfeed.html:36 +#: templates/dcim/rack.html:41 templates/dcim/site.html:43 +#: templates/extras/script_list.html:47 templates/ipam/ipaddress.html:37 +#: templates/ipam/iprange.html:54 templates/ipam/prefix.html:73 +#: templates/ipam/vlan.html:48 templates/virtualization/cluster.html:21 +#: templates/virtualization/virtualmachine.html:19 +#: templates/vpn/tunnel.html:25 templates/wireless/wirelesslan.html:22 +#: templates/wireless/wirelesslink.html:17 users/forms/filtersets.py:32 +#: users/forms/model_forms.py:194 virtualization/forms/bulk_edit.py:70 +#: virtualization/forms/bulk_edit.py:118 +#: virtualization/forms/bulk_import.py:54 +#: virtualization/forms/bulk_import.py:80 +#: virtualization/forms/filtersets.py:62 +#: virtualization/forms/filtersets.py:160 virtualization/tables/clusters.py:74 +#: virtualization/tables/virtualmachines.py:60 vpn/forms/bulk_edit.py:39 +#: vpn/forms/bulk_import.py:37 vpn/forms/filtersets.py:47 +#: vpn/tables/tunnels.py:48 wireless/forms/bulk_edit.py:43 +#: wireless/forms/bulk_edit.py:105 wireless/forms/bulk_import.py:43 +#: wireless/forms/bulk_import.py:84 wireless/forms/filtersets.py:49 +#: wireless/forms/filtersets.py:83 wireless/tables/wirelesslan.py:52 +#: wireless/tables/wirelesslink.py:20 msgid "Status" msgstr "Estado" -#: netbox/circuits/forms/bulk_edit.py:142 -#: netbox/circuits/forms/bulk_edit.py:233 -#: netbox/circuits/forms/bulk_import.py:98 -#: netbox/circuits/forms/bulk_import.py:158 -#: netbox/circuits/forms/filtersets.py:119 -#: netbox/circuits/forms/filtersets.py:241 netbox/dcim/forms/bulk_edit.py:122 -#: netbox/dcim/forms/bulk_edit.py:187 netbox/dcim/forms/bulk_edit.py:346 -#: netbox/dcim/forms/bulk_edit.py:461 netbox/dcim/forms/bulk_edit.py:690 -#: netbox/dcim/forms/bulk_edit.py:794 netbox/dcim/forms/bulk_edit.py:1706 -#: netbox/dcim/forms/bulk_import.py:107 netbox/dcim/forms/bulk_import.py:152 -#: netbox/dcim/forms/bulk_import.py:241 netbox/dcim/forms/bulk_import.py:334 -#: netbox/dcim/forms/bulk_import.py:479 netbox/dcim/forms/bulk_import.py:1219 -#: netbox/dcim/forms/bulk_import.py:1428 netbox/dcim/forms/filtersets.py:173 -#: netbox/dcim/forms/filtersets.py:205 netbox/dcim/forms/filtersets.py:323 -#: netbox/dcim/forms/filtersets.py:399 netbox/dcim/forms/filtersets.py:420 -#: netbox/dcim/forms/filtersets.py:722 netbox/dcim/forms/filtersets.py:916 -#: netbox/dcim/forms/filtersets.py:978 netbox/dcim/forms/filtersets.py:1008 -#: netbox/dcim/forms/filtersets.py:1130 netbox/dcim/tables/power.py:88 -#: netbox/extras/filtersets.py:612 netbox/extras/forms/filtersets.py:323 -#: netbox/extras/forms/filtersets.py:396 netbox/ipam/forms/bulk_edit.py:42 -#: netbox/ipam/forms/bulk_edit.py:67 netbox/ipam/forms/bulk_edit.py:111 -#: netbox/ipam/forms/bulk_edit.py:140 netbox/ipam/forms/bulk_edit.py:165 -#: netbox/ipam/forms/bulk_edit.py:250 netbox/ipam/forms/bulk_edit.py:300 -#: netbox/ipam/forms/bulk_edit.py:348 netbox/ipam/forms/bulk_edit.py:546 -#: netbox/ipam/forms/bulk_import.py:38 netbox/ipam/forms/bulk_import.py:67 -#: netbox/ipam/forms/bulk_import.py:95 netbox/ipam/forms/bulk_import.py:115 -#: netbox/ipam/forms/bulk_import.py:135 netbox/ipam/forms/bulk_import.py:164 -#: netbox/ipam/forms/bulk_import.py:250 netbox/ipam/forms/bulk_import.py:286 -#: netbox/ipam/forms/bulk_import.py:443 netbox/ipam/forms/filtersets.py:48 -#: netbox/ipam/forms/filtersets.py:68 netbox/ipam/forms/filtersets.py:100 -#: netbox/ipam/forms/filtersets.py:120 netbox/ipam/forms/filtersets.py:143 -#: netbox/ipam/forms/filtersets.py:174 netbox/ipam/forms/filtersets.py:267 -#: netbox/ipam/forms/filtersets.py:310 netbox/ipam/forms/filtersets.py:469 -#: netbox/ipam/tables/ip.py:456 netbox/ipam/tables/vlans.py:229 -#: netbox/templates/circuits/circuit.html:38 -#: netbox/templates/circuits/circuitgroup.html:36 -#: netbox/templates/dcim/cable.html:23 netbox/templates/dcim/device.html:79 -#: netbox/templates/dcim/location.html:49 -#: netbox/templates/dcim/powerfeed.html:44 netbox/templates/dcim/rack.html:32 -#: netbox/templates/dcim/rackreservation.html:49 -#: netbox/templates/dcim/site.html:47 -#: netbox/templates/dcim/virtualdevicecontext.html:52 -#: netbox/templates/ipam/aggregate.html:30 netbox/templates/ipam/asn.html:33 -#: netbox/templates/ipam/asnrange.html:29 -#: netbox/templates/ipam/ipaddress.html:28 -#: netbox/templates/ipam/iprange.html:58 netbox/templates/ipam/prefix.html:29 -#: netbox/templates/ipam/routetarget.html:17 -#: netbox/templates/ipam/vlan.html:39 netbox/templates/ipam/vrf.html:20 -#: netbox/templates/tenancy/tenant.html:17 -#: netbox/templates/virtualization/cluster.html:33 -#: netbox/templates/virtualization/virtualmachine.html:39 -#: netbox/templates/vpn/l2vpn.html:30 netbox/templates/vpn/tunnel.html:49 -#: netbox/templates/wireless/wirelesslan.html:34 -#: netbox/templates/wireless/wirelesslink.html:25 -#: netbox/tenancy/forms/forms.py:25 netbox/tenancy/forms/forms.py:48 -#: netbox/tenancy/forms/model_forms.py:52 netbox/tenancy/tables/columns.py:64 -#: netbox/virtualization/forms/bulk_edit.py:76 -#: netbox/virtualization/forms/bulk_edit.py:155 -#: netbox/virtualization/forms/bulk_import.py:66 -#: netbox/virtualization/forms/bulk_import.py:115 -#: netbox/virtualization/forms/filtersets.py:47 -#: netbox/virtualization/forms/filtersets.py:105 -#: netbox/vpn/forms/bulk_edit.py:59 netbox/vpn/forms/bulk_edit.py:269 -#: netbox/vpn/forms/bulk_import.py:59 netbox/vpn/forms/bulk_import.py:258 -#: netbox/vpn/forms/filtersets.py:214 netbox/wireless/forms/bulk_edit.py:63 -#: netbox/wireless/forms/bulk_edit.py:110 -#: netbox/wireless/forms/bulk_import.py:55 -#: netbox/wireless/forms/bulk_import.py:97 -#: netbox/wireless/forms/filtersets.py:35 -#: netbox/wireless/forms/filtersets.py:75 +#: circuits/forms/bulk_edit.py:142 circuits/forms/bulk_edit.py:233 +#: circuits/forms/bulk_import.py:98 circuits/forms/bulk_import.py:158 +#: circuits/forms/filtersets.py:119 circuits/forms/filtersets.py:241 +#: dcim/forms/bulk_edit.py:122 dcim/forms/bulk_edit.py:187 +#: dcim/forms/bulk_edit.py:346 dcim/forms/bulk_edit.py:461 +#: dcim/forms/bulk_edit.py:690 dcim/forms/bulk_edit.py:794 +#: dcim/forms/bulk_edit.py:1706 dcim/forms/bulk_import.py:107 +#: dcim/forms/bulk_import.py:152 dcim/forms/bulk_import.py:241 +#: dcim/forms/bulk_import.py:334 dcim/forms/bulk_import.py:479 +#: dcim/forms/bulk_import.py:1219 dcim/forms/bulk_import.py:1428 +#: dcim/forms/filtersets.py:173 dcim/forms/filtersets.py:205 +#: dcim/forms/filtersets.py:323 dcim/forms/filtersets.py:399 +#: dcim/forms/filtersets.py:420 dcim/forms/filtersets.py:722 +#: dcim/forms/filtersets.py:916 dcim/forms/filtersets.py:978 +#: dcim/forms/filtersets.py:1008 dcim/forms/filtersets.py:1130 +#: dcim/tables/power.py:88 extras/filtersets.py:612 +#: extras/forms/filtersets.py:323 extras/forms/filtersets.py:396 +#: ipam/forms/bulk_edit.py:43 ipam/forms/bulk_edit.py:68 +#: ipam/forms/bulk_edit.py:112 ipam/forms/bulk_edit.py:141 +#: ipam/forms/bulk_edit.py:166 ipam/forms/bulk_edit.py:251 +#: ipam/forms/bulk_edit.py:301 ipam/forms/bulk_edit.py:349 +#: ipam/forms/bulk_edit.py:501 ipam/forms/bulk_import.py:38 +#: ipam/forms/bulk_import.py:67 ipam/forms/bulk_import.py:95 +#: ipam/forms/bulk_import.py:115 ipam/forms/bulk_import.py:135 +#: ipam/forms/bulk_import.py:164 ipam/forms/bulk_import.py:250 +#: ipam/forms/bulk_import.py:286 ipam/forms/bulk_import.py:443 +#: ipam/forms/filtersets.py:48 ipam/forms/filtersets.py:68 +#: ipam/forms/filtersets.py:100 ipam/forms/filtersets.py:120 +#: ipam/forms/filtersets.py:143 ipam/forms/filtersets.py:174 +#: ipam/forms/filtersets.py:267 ipam/forms/filtersets.py:310 +#: ipam/forms/filtersets.py:469 ipam/tables/ip.py:456 ipam/tables/vlans.py:229 +#: templates/circuits/circuit.html:38 templates/circuits/circuitgroup.html:36 +#: templates/dcim/cable.html:23 templates/dcim/device.html:79 +#: templates/dcim/location.html:49 templates/dcim/powerfeed.html:44 +#: templates/dcim/rack.html:32 templates/dcim/rackreservation.html:49 +#: templates/dcim/site.html:47 templates/dcim/virtualdevicecontext.html:52 +#: templates/ipam/aggregate.html:30 templates/ipam/asn.html:33 +#: templates/ipam/asnrange.html:29 templates/ipam/ipaddress.html:28 +#: templates/ipam/iprange.html:58 templates/ipam/prefix.html:29 +#: templates/ipam/routetarget.html:17 templates/ipam/vlan.html:39 +#: templates/ipam/vrf.html:20 templates/tenancy/tenant.html:17 +#: templates/virtualization/cluster.html:33 +#: templates/virtualization/virtualmachine.html:39 templates/vpn/l2vpn.html:30 +#: templates/vpn/tunnel.html:49 templates/wireless/wirelesslan.html:34 +#: templates/wireless/wirelesslink.html:25 tenancy/forms/forms.py:25 +#: tenancy/forms/forms.py:48 tenancy/forms/model_forms.py:52 +#: tenancy/tables/columns.py:64 virtualization/forms/bulk_edit.py:76 +#: virtualization/forms/bulk_edit.py:155 +#: virtualization/forms/bulk_import.py:66 +#: virtualization/forms/bulk_import.py:115 +#: virtualization/forms/filtersets.py:47 +#: virtualization/forms/filtersets.py:105 vpn/forms/bulk_edit.py:59 +#: vpn/forms/bulk_edit.py:269 vpn/forms/bulk_import.py:59 +#: vpn/forms/bulk_import.py:258 vpn/forms/filtersets.py:214 +#: wireless/forms/bulk_edit.py:63 wireless/forms/bulk_edit.py:110 +#: wireless/forms/bulk_import.py:55 wireless/forms/bulk_import.py:97 +#: wireless/forms/filtersets.py:35 wireless/forms/filtersets.py:75 msgid "Tenant" msgstr "Inquilino" -#: netbox/circuits/forms/bulk_edit.py:147 -#: netbox/circuits/forms/filtersets.py:174 +#: circuits/forms/bulk_edit.py:147 circuits/forms/filtersets.py:174 msgid "Install date" msgstr "Fecha de instalación" -#: netbox/circuits/forms/bulk_edit.py:152 -#: netbox/circuits/forms/filtersets.py:179 +#: circuits/forms/bulk_edit.py:152 circuits/forms/filtersets.py:179 msgid "Termination date" msgstr "Fecha de terminación" -#: netbox/circuits/forms/bulk_edit.py:158 -#: netbox/circuits/forms/filtersets.py:186 +#: circuits/forms/bulk_edit.py:158 circuits/forms/filtersets.py:186 msgid "Commit rate (Kbps)" msgstr "Velocidad de confirmación (Kbps)" -#: netbox/circuits/forms/bulk_edit.py:173 -#: netbox/circuits/forms/model_forms.py:112 +#: circuits/forms/bulk_edit.py:173 circuits/forms/model_forms.py:112 msgid "Service Parameters" msgstr "Parámetros de servicio" -#: netbox/circuits/forms/bulk_edit.py:174 -#: netbox/circuits/forms/model_forms.py:113 -#: netbox/circuits/forms/model_forms.py:183 -#: netbox/dcim/forms/model_forms.py:139 netbox/dcim/forms/model_forms.py:181 -#: netbox/dcim/forms/model_forms.py:266 netbox/dcim/forms/model_forms.py:323 -#: netbox/dcim/forms/model_forms.py:768 netbox/dcim/forms/model_forms.py:1692 -#: netbox/ipam/forms/model_forms.py:64 netbox/ipam/forms/model_forms.py:81 -#: netbox/ipam/forms/model_forms.py:115 netbox/ipam/forms/model_forms.py:136 -#: netbox/ipam/forms/model_forms.py:160 netbox/ipam/forms/model_forms.py:232 -#: netbox/ipam/forms/model_forms.py:261 netbox/ipam/forms/model_forms.py:316 -#: netbox/netbox/navigation/menu.py:24 -#: netbox/templates/dcim/device_edit.html:85 -#: netbox/templates/dcim/htmx/cable_edit.html:72 -#: netbox/templates/ipam/ipaddress_bulk_add.html:27 -#: netbox/templates/ipam/vlan_edit.html:22 -#: netbox/virtualization/forms/model_forms.py:80 -#: netbox/virtualization/forms/model_forms.py:222 -#: netbox/vpn/forms/bulk_edit.py:78 netbox/vpn/forms/filtersets.py:44 -#: netbox/vpn/forms/model_forms.py:62 netbox/vpn/forms/model_forms.py:147 -#: netbox/vpn/forms/model_forms.py:411 netbox/wireless/forms/model_forms.py:54 -#: netbox/wireless/forms/model_forms.py:170 +#: circuits/forms/bulk_edit.py:174 circuits/forms/model_forms.py:113 +#: circuits/forms/model_forms.py:183 dcim/forms/model_forms.py:139 +#: dcim/forms/model_forms.py:181 dcim/forms/model_forms.py:266 +#: dcim/forms/model_forms.py:323 dcim/forms/model_forms.py:768 +#: dcim/forms/model_forms.py:1692 ipam/forms/model_forms.py:64 +#: ipam/forms/model_forms.py:81 ipam/forms/model_forms.py:115 +#: ipam/forms/model_forms.py:136 ipam/forms/model_forms.py:160 +#: ipam/forms/model_forms.py:232 ipam/forms/model_forms.py:261 +#: ipam/forms/model_forms.py:316 netbox/navigation/menu.py:24 +#: templates/dcim/device_edit.html:85 templates/dcim/htmx/cable_edit.html:72 +#: templates/ipam/ipaddress_bulk_add.html:27 templates/ipam/vlan_edit.html:22 +#: virtualization/forms/model_forms.py:80 +#: virtualization/forms/model_forms.py:222 vpn/forms/bulk_edit.py:78 +#: vpn/forms/filtersets.py:44 vpn/forms/model_forms.py:62 +#: vpn/forms/model_forms.py:147 vpn/forms/model_forms.py:411 +#: wireless/forms/model_forms.py:54 wireless/forms/model_forms.py:170 msgid "Tenancy" msgstr "Arrendamiento" -#: netbox/circuits/forms/bulk_edit.py:193 -#: netbox/circuits/forms/bulk_edit.py:217 -#: netbox/circuits/forms/model_forms.py:155 -#: netbox/circuits/tables/circuits.py:117 -#: netbox/templates/circuits/inc/circuit_termination_fields.html:62 -#: netbox/templates/circuits/providernetwork.html:17 +#: circuits/forms/bulk_edit.py:193 circuits/forms/bulk_edit.py:217 +#: circuits/forms/model_forms.py:155 circuits/tables/circuits.py:117 +#: templates/circuits/inc/circuit_termination_fields.html:62 +#: templates/circuits/providernetwork.html:17 msgid "Provider Network" msgstr "Red de proveedores" -#: netbox/circuits/forms/bulk_edit.py:199 +#: circuits/forms/bulk_edit.py:199 msgid "Port speed (Kbps)" msgstr "Velocidad del puerto (Kbps)" -#: netbox/circuits/forms/bulk_edit.py:203 +#: circuits/forms/bulk_edit.py:203 msgid "Upstream speed (Kbps)" msgstr "Velocidad de subida (Kbps)" -#: netbox/circuits/forms/bulk_edit.py:206 netbox/dcim/forms/bulk_edit.py:951 -#: netbox/dcim/forms/bulk_edit.py:1315 netbox/dcim/forms/bulk_edit.py:1332 -#: netbox/dcim/forms/bulk_edit.py:1349 netbox/dcim/forms/bulk_edit.py:1367 -#: netbox/dcim/forms/bulk_edit.py:1455 netbox/dcim/forms/bulk_edit.py:1594 -#: netbox/dcim/forms/bulk_edit.py:1611 +#: circuits/forms/bulk_edit.py:206 dcim/forms/bulk_edit.py:951 +#: dcim/forms/bulk_edit.py:1315 dcim/forms/bulk_edit.py:1332 +#: dcim/forms/bulk_edit.py:1349 dcim/forms/bulk_edit.py:1367 +#: dcim/forms/bulk_edit.py:1455 dcim/forms/bulk_edit.py:1594 +#: dcim/forms/bulk_edit.py:1611 msgid "Mark connected" msgstr "Marcar conectado" -#: netbox/circuits/forms/bulk_edit.py:219 -#: netbox/circuits/forms/model_forms.py:157 -#: netbox/templates/circuits/inc/circuit_termination_fields.html:54 -#: netbox/templates/dcim/frontport.html:121 -#: netbox/templates/dcim/interface.html:193 -#: netbox/templates/dcim/rearport.html:111 +#: circuits/forms/bulk_edit.py:219 circuits/forms/model_forms.py:157 +#: templates/circuits/inc/circuit_termination_fields.html:54 +#: templates/dcim/frontport.html:121 templates/dcim/interface.html:193 +#: templates/dcim/rearport.html:111 msgid "Circuit Termination" msgstr "Terminación del circuito" -#: netbox/circuits/forms/bulk_edit.py:221 -#: netbox/circuits/forms/model_forms.py:159 +#: circuits/forms/bulk_edit.py:221 circuits/forms/model_forms.py:159 msgid "Termination Details" msgstr "Detalles de terminación" -#: netbox/circuits/forms/bulk_edit.py:251 -#: netbox/circuits/forms/filtersets.py:268 -#: netbox/circuits/tables/circuits.py:168 netbox/dcim/forms/model_forms.py:551 -#: netbox/templates/circuits/circuitgroupassignment.html:30 -#: netbox/templates/dcim/device.html:133 -#: netbox/templates/dcim/virtualchassis.html:68 -#: netbox/templates/dcim/virtualchassis_edit.html:56 -#: netbox/templates/ipam/inc/panels/fhrp_groups.html:26 -#: netbox/tenancy/forms/bulk_edit.py:147 -#: netbox/tenancy/forms/filtersets.py:110 +#: circuits/forms/bulk_edit.py:251 circuits/forms/filtersets.py:268 +#: circuits/tables/circuits.py:168 dcim/forms/model_forms.py:551 +#: templates/circuits/circuitgroupassignment.html:30 +#: templates/dcim/device.html:133 templates/dcim/virtualchassis.html:68 +#: templates/dcim/virtualchassis_edit.html:56 +#: templates/ipam/inc/panels/fhrp_groups.html:26 +#: tenancy/forms/bulk_edit.py:147 tenancy/forms/filtersets.py:110 msgid "Priority" msgstr "Prioridad" -#: netbox/circuits/forms/bulk_import.py:39 -#: netbox/circuits/forms/bulk_import.py:54 -#: netbox/circuits/forms/bulk_import.py:77 +#: circuits/forms/bulk_import.py:39 circuits/forms/bulk_import.py:54 +#: circuits/forms/bulk_import.py:77 msgid "Assigned provider" msgstr "Proveedor asignado" -#: netbox/circuits/forms/bulk_import.py:83 +#: circuits/forms/bulk_import.py:83 msgid "Assigned provider account" msgstr "Cuenta de proveedor asignada" -#: netbox/circuits/forms/bulk_import.py:90 +#: circuits/forms/bulk_import.py:90 msgid "Type of circuit" msgstr "Tipo de circuito" -#: netbox/circuits/forms/bulk_import.py:95 netbox/dcim/forms/bulk_import.py:90 -#: netbox/dcim/forms/bulk_import.py:149 netbox/dcim/forms/bulk_import.py:250 -#: netbox/dcim/forms/bulk_import.py:507 netbox/dcim/forms/bulk_import.py:661 -#: netbox/dcim/forms/bulk_import.py:1373 netbox/ipam/forms/bulk_import.py:194 -#: netbox/ipam/forms/bulk_import.py:259 netbox/ipam/forms/bulk_import.py:295 -#: netbox/ipam/forms/bulk_import.py:452 -#: netbox/virtualization/forms/bulk_import.py:56 -#: netbox/virtualization/forms/bulk_import.py:82 -#: netbox/vpn/forms/bulk_import.py:39 netbox/wireless/forms/bulk_import.py:45 +#: circuits/forms/bulk_import.py:95 dcim/forms/bulk_import.py:90 +#: dcim/forms/bulk_import.py:149 dcim/forms/bulk_import.py:250 +#: dcim/forms/bulk_import.py:507 dcim/forms/bulk_import.py:661 +#: dcim/forms/bulk_import.py:1373 ipam/forms/bulk_import.py:194 +#: ipam/forms/bulk_import.py:259 ipam/forms/bulk_import.py:295 +#: ipam/forms/bulk_import.py:452 virtualization/forms/bulk_import.py:56 +#: virtualization/forms/bulk_import.py:82 vpn/forms/bulk_import.py:39 +#: wireless/forms/bulk_import.py:45 msgid "Operational status" msgstr "Estado operativo" -#: netbox/circuits/forms/bulk_import.py:102 -#: netbox/circuits/forms/bulk_import.py:162 -#: netbox/dcim/forms/bulk_import.py:111 netbox/dcim/forms/bulk_import.py:156 -#: netbox/dcim/forms/bulk_import.py:338 netbox/dcim/forms/bulk_import.py:483 -#: netbox/dcim/forms/bulk_import.py:1223 netbox/dcim/forms/bulk_import.py:1368 -#: netbox/dcim/forms/bulk_import.py:1432 netbox/ipam/forms/bulk_import.py:42 -#: netbox/ipam/forms/bulk_import.py:71 netbox/ipam/forms/bulk_import.py:99 -#: netbox/ipam/forms/bulk_import.py:119 netbox/ipam/forms/bulk_import.py:139 -#: netbox/ipam/forms/bulk_import.py:168 netbox/ipam/forms/bulk_import.py:254 -#: netbox/ipam/forms/bulk_import.py:290 netbox/ipam/forms/bulk_import.py:447 -#: netbox/virtualization/forms/bulk_import.py:70 -#: netbox/virtualization/forms/bulk_import.py:119 -#: netbox/vpn/forms/bulk_import.py:63 netbox/wireless/forms/bulk_import.py:59 -#: netbox/wireless/forms/bulk_import.py:101 +#: circuits/forms/bulk_import.py:102 circuits/forms/bulk_import.py:162 +#: dcim/forms/bulk_import.py:111 dcim/forms/bulk_import.py:156 +#: dcim/forms/bulk_import.py:338 dcim/forms/bulk_import.py:483 +#: dcim/forms/bulk_import.py:1223 dcim/forms/bulk_import.py:1368 +#: dcim/forms/bulk_import.py:1432 ipam/forms/bulk_import.py:42 +#: ipam/forms/bulk_import.py:71 ipam/forms/bulk_import.py:99 +#: ipam/forms/bulk_import.py:119 ipam/forms/bulk_import.py:139 +#: ipam/forms/bulk_import.py:168 ipam/forms/bulk_import.py:254 +#: ipam/forms/bulk_import.py:290 ipam/forms/bulk_import.py:447 +#: virtualization/forms/bulk_import.py:70 +#: virtualization/forms/bulk_import.py:119 vpn/forms/bulk_import.py:63 +#: wireless/forms/bulk_import.py:59 wireless/forms/bulk_import.py:101 msgid "Assigned tenant" msgstr "Inquilino asignado" -#: netbox/circuits/forms/bulk_import.py:120 -#: netbox/templates/circuits/inc/circuit_termination.html:6 -#: netbox/templates/circuits/inc/circuit_termination_fields.html:15 -#: netbox/templates/dcim/cable.html:68 netbox/templates/dcim/cable.html:72 -#: netbox/vpn/forms/bulk_import.py:100 netbox/vpn/forms/filtersets.py:77 +#: circuits/forms/bulk_import.py:120 +#: templates/circuits/inc/circuit_termination.html:6 +#: templates/circuits/inc/circuit_termination_fields.html:15 +#: templates/dcim/cable.html:68 templates/dcim/cable.html:72 +#: vpn/forms/bulk_import.py:100 vpn/forms/filtersets.py:77 msgid "Termination" msgstr "Terminación" -#: netbox/circuits/forms/bulk_import.py:130 -#: netbox/circuits/forms/filtersets.py:147 -#: netbox/circuits/forms/filtersets.py:227 -#: netbox/circuits/forms/model_forms.py:144 +#: circuits/forms/bulk_import.py:130 circuits/forms/filtersets.py:147 +#: circuits/forms/filtersets.py:227 circuits/forms/model_forms.py:144 msgid "Provider network" msgstr "Red de proveedores" -#: netbox/circuits/forms/filtersets.py:30 -#: netbox/circuits/forms/filtersets.py:118 -#: netbox/circuits/forms/filtersets.py:200 netbox/dcim/forms/bulk_edit.py:338 -#: netbox/dcim/forms/bulk_edit.py:441 netbox/dcim/forms/bulk_edit.py:682 -#: netbox/dcim/forms/bulk_edit.py:729 netbox/dcim/forms/bulk_edit.py:882 -#: netbox/dcim/forms/bulk_import.py:235 netbox/dcim/forms/bulk_import.py:315 -#: netbox/dcim/forms/bulk_import.py:546 netbox/dcim/forms/bulk_import.py:1317 -#: netbox/dcim/forms/bulk_import.py:1351 netbox/dcim/forms/filtersets.py:95 -#: netbox/dcim/forms/filtersets.py:322 netbox/dcim/forms/filtersets.py:356 -#: netbox/dcim/forms/filtersets.py:396 netbox/dcim/forms/filtersets.py:447 -#: netbox/dcim/forms/filtersets.py:719 netbox/dcim/forms/filtersets.py:762 -#: netbox/dcim/forms/filtersets.py:977 netbox/dcim/forms/filtersets.py:1006 -#: netbox/dcim/forms/filtersets.py:1026 netbox/dcim/forms/filtersets.py:1090 -#: netbox/dcim/forms/filtersets.py:1120 netbox/dcim/forms/filtersets.py:1129 -#: netbox/dcim/forms/filtersets.py:1240 netbox/dcim/forms/filtersets.py:1264 -#: netbox/dcim/forms/filtersets.py:1289 netbox/dcim/forms/filtersets.py:1308 -#: netbox/dcim/forms/filtersets.py:1331 netbox/dcim/forms/filtersets.py:1442 -#: netbox/dcim/forms/filtersets.py:1466 netbox/dcim/forms/filtersets.py:1490 -#: netbox/dcim/forms/filtersets.py:1508 netbox/dcim/forms/filtersets.py:1525 -#: netbox/dcim/forms/model_forms.py:180 netbox/dcim/forms/model_forms.py:243 -#: netbox/dcim/forms/model_forms.py:468 netbox/dcim/forms/model_forms.py:728 -#: netbox/dcim/tables/devices.py:157 netbox/dcim/tables/power.py:30 -#: netbox/dcim/tables/racks.py:118 netbox/dcim/tables/racks.py:212 -#: netbox/extras/filtersets.py:536 netbox/extras/forms/filtersets.py:320 -#: netbox/ipam/forms/bulk_edit.py:460 netbox/ipam/forms/filtersets.py:173 -#: netbox/ipam/forms/filtersets.py:414 netbox/ipam/forms/filtersets.py:437 -#: netbox/ipam/forms/filtersets.py:467 netbox/templates/dcim/device.html:26 -#: netbox/templates/dcim/device_edit.html:30 -#: netbox/templates/dcim/inc/cable_termination.html:12 -#: netbox/templates/dcim/location.html:26 -#: netbox/templates/dcim/powerpanel.html:26 netbox/templates/dcim/rack.html:24 -#: netbox/templates/dcim/rackreservation.html:32 -#: netbox/virtualization/forms/filtersets.py:46 -#: netbox/virtualization/forms/filtersets.py:100 -#: netbox/wireless/forms/model_forms.py:87 -#: netbox/wireless/forms/model_forms.py:129 +#: circuits/forms/filtersets.py:30 circuits/forms/filtersets.py:118 +#: circuits/forms/filtersets.py:200 dcim/forms/bulk_edit.py:338 +#: dcim/forms/bulk_edit.py:441 dcim/forms/bulk_edit.py:682 +#: dcim/forms/bulk_edit.py:729 dcim/forms/bulk_edit.py:882 +#: dcim/forms/bulk_import.py:235 dcim/forms/bulk_import.py:315 +#: dcim/forms/bulk_import.py:546 dcim/forms/bulk_import.py:1317 +#: dcim/forms/bulk_import.py:1351 dcim/forms/filtersets.py:95 +#: dcim/forms/filtersets.py:322 dcim/forms/filtersets.py:356 +#: dcim/forms/filtersets.py:396 dcim/forms/filtersets.py:447 +#: dcim/forms/filtersets.py:719 dcim/forms/filtersets.py:762 +#: dcim/forms/filtersets.py:977 dcim/forms/filtersets.py:1006 +#: dcim/forms/filtersets.py:1026 dcim/forms/filtersets.py:1090 +#: dcim/forms/filtersets.py:1120 dcim/forms/filtersets.py:1129 +#: dcim/forms/filtersets.py:1240 dcim/forms/filtersets.py:1264 +#: dcim/forms/filtersets.py:1289 dcim/forms/filtersets.py:1308 +#: dcim/forms/filtersets.py:1331 dcim/forms/filtersets.py:1442 +#: dcim/forms/filtersets.py:1466 dcim/forms/filtersets.py:1490 +#: dcim/forms/filtersets.py:1508 dcim/forms/filtersets.py:1525 +#: dcim/forms/model_forms.py:180 dcim/forms/model_forms.py:243 +#: dcim/forms/model_forms.py:468 dcim/forms/model_forms.py:728 +#: dcim/tables/devices.py:157 dcim/tables/power.py:30 dcim/tables/racks.py:118 +#: dcim/tables/racks.py:212 extras/filtersets.py:536 +#: extras/forms/filtersets.py:320 ipam/forms/filtersets.py:173 +#: ipam/forms/filtersets.py:414 ipam/forms/filtersets.py:437 +#: ipam/forms/filtersets.py:467 templates/dcim/device.html:26 +#: templates/dcim/device_edit.html:30 +#: templates/dcim/inc/cable_termination.html:12 +#: templates/dcim/location.html:26 templates/dcim/powerpanel.html:26 +#: templates/dcim/rack.html:24 templates/dcim/rackreservation.html:32 +#: virtualization/forms/filtersets.py:46 +#: virtualization/forms/filtersets.py:100 wireless/forms/model_forms.py:87 +#: wireless/forms/model_forms.py:129 msgid "Location" msgstr "Ubicación" -#: netbox/circuits/forms/filtersets.py:32 -#: netbox/circuits/forms/filtersets.py:120 netbox/dcim/forms/filtersets.py:144 -#: netbox/dcim/forms/filtersets.py:158 netbox/dcim/forms/filtersets.py:174 -#: netbox/dcim/forms/filtersets.py:206 netbox/dcim/forms/filtersets.py:328 -#: netbox/dcim/forms/filtersets.py:400 netbox/dcim/forms/filtersets.py:471 -#: netbox/dcim/forms/filtersets.py:723 netbox/dcim/forms/filtersets.py:1091 -#: netbox/netbox/navigation/menu.py:31 netbox/netbox/navigation/menu.py:33 -#: netbox/tenancy/forms/filtersets.py:42 netbox/tenancy/tables/columns.py:70 -#: netbox/tenancy/tables/contacts.py:25 netbox/tenancy/views.py:19 -#: netbox/virtualization/forms/filtersets.py:37 -#: netbox/virtualization/forms/filtersets.py:48 -#: netbox/virtualization/forms/filtersets.py:106 +#: circuits/forms/filtersets.py:32 circuits/forms/filtersets.py:120 +#: dcim/forms/filtersets.py:144 dcim/forms/filtersets.py:158 +#: dcim/forms/filtersets.py:174 dcim/forms/filtersets.py:206 +#: dcim/forms/filtersets.py:328 dcim/forms/filtersets.py:400 +#: dcim/forms/filtersets.py:471 dcim/forms/filtersets.py:723 +#: dcim/forms/filtersets.py:1091 netbox/navigation/menu.py:31 +#: netbox/navigation/menu.py:33 tenancy/forms/filtersets.py:42 +#: tenancy/tables/columns.py:70 tenancy/tables/contacts.py:25 +#: tenancy/views.py:19 virtualization/forms/filtersets.py:37 +#: virtualization/forms/filtersets.py:48 +#: virtualization/forms/filtersets.py:106 msgid "Contacts" msgstr "Contactos" -#: netbox/circuits/forms/filtersets.py:37 -#: netbox/circuits/forms/filtersets.py:157 netbox/dcim/forms/bulk_edit.py:112 -#: netbox/dcim/forms/bulk_edit.py:313 netbox/dcim/forms/bulk_edit.py:857 -#: netbox/dcim/forms/bulk_import.py:93 netbox/dcim/forms/filtersets.py:73 -#: netbox/dcim/forms/filtersets.py:185 netbox/dcim/forms/filtersets.py:211 -#: netbox/dcim/forms/filtersets.py:334 netbox/dcim/forms/filtersets.py:425 -#: netbox/dcim/forms/filtersets.py:739 netbox/dcim/forms/filtersets.py:983 -#: netbox/dcim/forms/filtersets.py:1013 netbox/dcim/forms/filtersets.py:1097 -#: netbox/dcim/forms/filtersets.py:1136 netbox/dcim/forms/filtersets.py:1576 -#: netbox/dcim/forms/filtersets.py:1600 netbox/dcim/forms/filtersets.py:1624 -#: netbox/dcim/forms/model_forms.py:112 netbox/dcim/forms/object_create.py:375 -#: netbox/dcim/tables/devices.py:143 netbox/dcim/tables/sites.py:85 -#: netbox/extras/filtersets.py:503 netbox/ipam/forms/bulk_edit.py:207 -#: netbox/ipam/forms/bulk_edit.py:441 netbox/ipam/forms/bulk_edit.py:519 -#: netbox/ipam/forms/filtersets.py:217 netbox/ipam/forms/filtersets.py:422 -#: netbox/ipam/forms/filtersets.py:475 netbox/templates/dcim/device.html:18 -#: netbox/templates/dcim/rack.html:16 -#: netbox/templates/dcim/rackreservation.html:22 -#: netbox/templates/dcim/region.html:26 netbox/templates/dcim/site.html:31 -#: netbox/templates/ipam/prefix.html:49 netbox/templates/ipam/vlan.html:16 -#: netbox/virtualization/forms/bulk_edit.py:81 -#: netbox/virtualization/forms/filtersets.py:59 -#: netbox/virtualization/forms/filtersets.py:133 -#: netbox/virtualization/forms/model_forms.py:92 -#: netbox/vpn/forms/filtersets.py:257 +#: circuits/forms/filtersets.py:37 circuits/forms/filtersets.py:157 +#: dcim/forms/bulk_edit.py:112 dcim/forms/bulk_edit.py:313 +#: dcim/forms/bulk_edit.py:857 dcim/forms/bulk_import.py:93 +#: dcim/forms/filtersets.py:73 dcim/forms/filtersets.py:185 +#: dcim/forms/filtersets.py:211 dcim/forms/filtersets.py:334 +#: dcim/forms/filtersets.py:425 dcim/forms/filtersets.py:739 +#: dcim/forms/filtersets.py:983 dcim/forms/filtersets.py:1013 +#: dcim/forms/filtersets.py:1097 dcim/forms/filtersets.py:1136 +#: dcim/forms/filtersets.py:1576 dcim/forms/filtersets.py:1600 +#: dcim/forms/filtersets.py:1624 dcim/forms/model_forms.py:112 +#: dcim/forms/object_create.py:375 dcim/tables/devices.py:143 +#: dcim/tables/sites.py:85 extras/filtersets.py:503 +#: ipam/forms/bulk_edit.py:208 ipam/forms/bulk_edit.py:474 +#: ipam/forms/filtersets.py:217 ipam/forms/filtersets.py:422 +#: ipam/forms/filtersets.py:475 templates/dcim/device.html:18 +#: templates/dcim/rack.html:16 templates/dcim/rackreservation.html:22 +#: templates/dcim/region.html:26 templates/dcim/site.html:31 +#: templates/ipam/prefix.html:49 templates/ipam/vlan.html:16 +#: virtualization/forms/bulk_edit.py:81 virtualization/forms/filtersets.py:59 +#: virtualization/forms/filtersets.py:133 +#: virtualization/forms/model_forms.py:92 vpn/forms/filtersets.py:257 msgid "Region" msgstr "Región" -#: netbox/circuits/forms/filtersets.py:42 -#: netbox/circuits/forms/filtersets.py:162 netbox/dcim/forms/bulk_edit.py:321 -#: netbox/dcim/forms/bulk_edit.py:865 netbox/dcim/forms/filtersets.py:78 -#: netbox/dcim/forms/filtersets.py:190 netbox/dcim/forms/filtersets.py:216 -#: netbox/dcim/forms/filtersets.py:347 netbox/dcim/forms/filtersets.py:430 -#: netbox/dcim/forms/filtersets.py:744 netbox/dcim/forms/filtersets.py:988 -#: netbox/dcim/forms/filtersets.py:1102 netbox/dcim/forms/filtersets.py:1141 -#: netbox/dcim/forms/object_create.py:383 netbox/extras/filtersets.py:520 -#: netbox/ipam/forms/bulk_edit.py:212 netbox/ipam/forms/bulk_edit.py:448 -#: netbox/ipam/forms/bulk_edit.py:524 netbox/ipam/forms/filtersets.py:222 -#: netbox/ipam/forms/filtersets.py:427 netbox/ipam/forms/filtersets.py:480 -#: netbox/virtualization/forms/bulk_edit.py:86 -#: netbox/virtualization/forms/filtersets.py:69 -#: netbox/virtualization/forms/filtersets.py:138 -#: netbox/virtualization/forms/model_forms.py:98 +#: circuits/forms/filtersets.py:42 circuits/forms/filtersets.py:162 +#: dcim/forms/bulk_edit.py:321 dcim/forms/bulk_edit.py:865 +#: dcim/forms/filtersets.py:78 dcim/forms/filtersets.py:190 +#: dcim/forms/filtersets.py:216 dcim/forms/filtersets.py:347 +#: dcim/forms/filtersets.py:430 dcim/forms/filtersets.py:744 +#: dcim/forms/filtersets.py:988 dcim/forms/filtersets.py:1102 +#: dcim/forms/filtersets.py:1141 dcim/forms/object_create.py:383 +#: extras/filtersets.py:520 ipam/forms/bulk_edit.py:213 +#: ipam/forms/bulk_edit.py:479 ipam/forms/filtersets.py:222 +#: ipam/forms/filtersets.py:427 ipam/forms/filtersets.py:480 +#: virtualization/forms/bulk_edit.py:86 virtualization/forms/filtersets.py:69 +#: virtualization/forms/filtersets.py:138 +#: virtualization/forms/model_forms.py:98 msgid "Site group" msgstr "Grupo de sitios" -#: netbox/circuits/forms/filtersets.py:65 -#: netbox/circuits/forms/filtersets.py:83 -#: netbox/circuits/forms/filtersets.py:102 -#: netbox/circuits/forms/filtersets.py:117 netbox/core/forms/filtersets.py:67 -#: netbox/core/forms/filtersets.py:135 netbox/dcim/forms/bulk_edit.py:828 -#: netbox/dcim/forms/filtersets.py:172 netbox/dcim/forms/filtersets.py:204 -#: netbox/dcim/forms/filtersets.py:915 netbox/dcim/forms/filtersets.py:1007 -#: netbox/dcim/forms/filtersets.py:1131 netbox/dcim/forms/filtersets.py:1239 -#: netbox/dcim/forms/filtersets.py:1263 netbox/dcim/forms/filtersets.py:1288 -#: netbox/dcim/forms/filtersets.py:1307 netbox/dcim/forms/filtersets.py:1327 -#: netbox/dcim/forms/filtersets.py:1441 netbox/dcim/forms/filtersets.py:1465 -#: netbox/dcim/forms/filtersets.py:1489 netbox/dcim/forms/filtersets.py:1507 -#: netbox/dcim/forms/filtersets.py:1523 netbox/extras/forms/bulk_edit.py:90 -#: netbox/extras/forms/filtersets.py:44 netbox/extras/forms/filtersets.py:134 -#: netbox/extras/forms/filtersets.py:165 netbox/extras/forms/filtersets.py:205 -#: netbox/extras/forms/filtersets.py:221 netbox/extras/forms/filtersets.py:252 -#: netbox/extras/forms/filtersets.py:276 netbox/extras/forms/filtersets.py:441 -#: netbox/ipam/forms/filtersets.py:99 netbox/ipam/forms/filtersets.py:266 -#: netbox/ipam/forms/filtersets.py:307 netbox/ipam/forms/filtersets.py:382 -#: netbox/ipam/forms/filtersets.py:468 netbox/ipam/forms/filtersets.py:527 -#: netbox/ipam/forms/filtersets.py:545 netbox/netbox/tables/tables.py:256 -#: netbox/virtualization/forms/filtersets.py:45 -#: netbox/virtualization/forms/filtersets.py:103 -#: netbox/virtualization/forms/filtersets.py:198 -#: netbox/virtualization/forms/filtersets.py:243 -#: netbox/vpn/forms/filtersets.py:213 netbox/wireless/forms/bulk_edit.py:150 -#: netbox/wireless/forms/filtersets.py:34 -#: netbox/wireless/forms/filtersets.py:74 +#: circuits/forms/filtersets.py:65 circuits/forms/filtersets.py:83 +#: circuits/forms/filtersets.py:102 circuits/forms/filtersets.py:117 +#: core/forms/filtersets.py:67 core/forms/filtersets.py:135 +#: dcim/forms/bulk_edit.py:828 dcim/forms/filtersets.py:172 +#: dcim/forms/filtersets.py:204 dcim/forms/filtersets.py:915 +#: dcim/forms/filtersets.py:1007 dcim/forms/filtersets.py:1131 +#: dcim/forms/filtersets.py:1239 dcim/forms/filtersets.py:1263 +#: dcim/forms/filtersets.py:1288 dcim/forms/filtersets.py:1307 +#: dcim/forms/filtersets.py:1327 dcim/forms/filtersets.py:1441 +#: dcim/forms/filtersets.py:1465 dcim/forms/filtersets.py:1489 +#: dcim/forms/filtersets.py:1507 dcim/forms/filtersets.py:1523 +#: extras/forms/bulk_edit.py:90 extras/forms/filtersets.py:44 +#: extras/forms/filtersets.py:134 extras/forms/filtersets.py:165 +#: extras/forms/filtersets.py:205 extras/forms/filtersets.py:221 +#: extras/forms/filtersets.py:252 extras/forms/filtersets.py:276 +#: extras/forms/filtersets.py:441 ipam/forms/filtersets.py:99 +#: ipam/forms/filtersets.py:266 ipam/forms/filtersets.py:307 +#: ipam/forms/filtersets.py:382 ipam/forms/filtersets.py:468 +#: ipam/forms/filtersets.py:527 ipam/forms/filtersets.py:545 +#: netbox/tables/tables.py:256 virtualization/forms/filtersets.py:45 +#: virtualization/forms/filtersets.py:103 +#: virtualization/forms/filtersets.py:198 +#: virtualization/forms/filtersets.py:243 vpn/forms/filtersets.py:213 +#: wireless/forms/bulk_edit.py:150 wireless/forms/filtersets.py:34 +#: wireless/forms/filtersets.py:74 msgid "Attributes" msgstr "Atributos" -#: netbox/circuits/forms/filtersets.py:73 -#: netbox/circuits/tables/circuits.py:63 -#: netbox/circuits/tables/providers.py:66 -#: netbox/templates/circuits/circuit.html:22 -#: netbox/templates/circuits/provideraccount.html:24 +#: circuits/forms/filtersets.py:73 circuits/tables/circuits.py:63 +#: circuits/tables/providers.py:66 templates/circuits/circuit.html:22 +#: templates/circuits/provideraccount.html:24 msgid "Account" msgstr "Cuenta" -#: netbox/circuits/forms/filtersets.py:217 +#: circuits/forms/filtersets.py:217 msgid "Term Side" msgstr "Lado del término" -#: netbox/circuits/forms/filtersets.py:250 -#: netbox/extras/forms/model_forms.py:582 netbox/ipam/forms/filtersets.py:142 -#: netbox/ipam/forms/filtersets.py:546 netbox/ipam/forms/model_forms.py:323 -#: netbox/templates/extras/configcontext.html:60 -#: netbox/templates/ipam/ipaddress.html:59 -#: netbox/templates/ipam/vlan_edit.html:30 -#: netbox/tenancy/forms/filtersets.py:87 netbox/users/forms/model_forms.py:314 +#: circuits/forms/filtersets.py:250 extras/forms/model_forms.py:582 +#: ipam/forms/filtersets.py:142 ipam/forms/filtersets.py:546 +#: ipam/forms/model_forms.py:323 templates/extras/configcontext.html:60 +#: templates/ipam/ipaddress.html:59 templates/ipam/vlan_edit.html:30 +#: tenancy/forms/filtersets.py:87 users/forms/model_forms.py:314 msgid "Assignment" msgstr "Asignación" -#: netbox/circuits/forms/filtersets.py:265 -#: netbox/circuits/forms/model_forms.py:195 -#: netbox/circuits/tables/circuits.py:155 netbox/dcim/forms/bulk_edit.py:117 -#: netbox/dcim/forms/bulk_import.py:100 netbox/dcim/forms/model_forms.py:117 -#: netbox/dcim/tables/sites.py:89 netbox/extras/forms/filtersets.py:480 -#: netbox/ipam/filtersets.py:999 netbox/ipam/forms/bulk_edit.py:538 -#: netbox/ipam/forms/bulk_import.py:436 netbox/ipam/forms/model_forms.py:528 -#: netbox/ipam/tables/fhrp.py:67 netbox/ipam/tables/vlans.py:122 -#: netbox/ipam/tables/vlans.py:226 -#: netbox/templates/circuits/circuitgroupassignment.html:22 -#: netbox/templates/dcim/interface.html:284 netbox/templates/dcim/site.html:37 -#: netbox/templates/ipam/inc/panels/fhrp_groups.html:23 -#: netbox/templates/ipam/vlan.html:27 netbox/templates/tenancy/contact.html:21 -#: netbox/templates/tenancy/tenant.html:20 netbox/templates/users/group.html:6 -#: netbox/templates/users/group.html:14 -#: netbox/templates/virtualization/cluster.html:29 -#: netbox/templates/vpn/tunnel.html:29 -#: netbox/templates/wireless/wirelesslan.html:18 -#: netbox/tenancy/forms/bulk_edit.py:43 netbox/tenancy/forms/bulk_edit.py:94 -#: netbox/tenancy/forms/bulk_import.py:40 -#: netbox/tenancy/forms/bulk_import.py:81 -#: netbox/tenancy/forms/filtersets.py:48 netbox/tenancy/forms/filtersets.py:78 -#: netbox/tenancy/forms/filtersets.py:97 -#: netbox/tenancy/forms/model_forms.py:45 -#: netbox/tenancy/forms/model_forms.py:97 -#: netbox/tenancy/forms/model_forms.py:122 -#: netbox/tenancy/tables/contacts.py:60 netbox/tenancy/tables/contacts.py:107 -#: netbox/tenancy/tables/tenants.py:42 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 -#: netbox/virtualization/forms/bulk_edit.py:65 -#: netbox/virtualization/forms/bulk_import.py:47 -#: netbox/virtualization/forms/filtersets.py:85 -#: netbox/virtualization/forms/model_forms.py:66 -#: netbox/virtualization/tables/clusters.py:70 -#: netbox/vpn/forms/bulk_edit.py:112 netbox/vpn/forms/bulk_import.py:158 -#: netbox/vpn/forms/filtersets.py:116 netbox/vpn/tables/crypto.py:31 -#: netbox/vpn/tables/tunnels.py:44 netbox/wireless/forms/bulk_edit.py:48 -#: netbox/wireless/forms/bulk_import.py:36 -#: netbox/wireless/forms/filtersets.py:46 -#: netbox/wireless/forms/model_forms.py:40 -#: netbox/wireless/tables/wirelesslan.py:48 +#: circuits/forms/filtersets.py:265 circuits/forms/model_forms.py:195 +#: circuits/tables/circuits.py:155 dcim/forms/bulk_edit.py:117 +#: dcim/forms/bulk_import.py:100 dcim/forms/model_forms.py:117 +#: dcim/tables/sites.py:89 extras/forms/filtersets.py:480 +#: ipam/filtersets.py:999 ipam/forms/bulk_edit.py:493 +#: ipam/forms/bulk_import.py:436 ipam/forms/model_forms.py:528 +#: ipam/tables/fhrp.py:67 ipam/tables/vlans.py:122 ipam/tables/vlans.py:226 +#: templates/circuits/circuitgroupassignment.html:22 +#: templates/dcim/interface.html:284 templates/dcim/site.html:37 +#: templates/ipam/inc/panels/fhrp_groups.html:23 templates/ipam/vlan.html:27 +#: templates/tenancy/contact.html:21 templates/tenancy/tenant.html:20 +#: templates/users/group.html:6 templates/users/group.html:14 +#: templates/virtualization/cluster.html:29 templates/vpn/tunnel.html:29 +#: templates/wireless/wirelesslan.html:18 tenancy/forms/bulk_edit.py:43 +#: tenancy/forms/bulk_edit.py:94 tenancy/forms/bulk_import.py:40 +#: tenancy/forms/bulk_import.py:81 tenancy/forms/filtersets.py:48 +#: tenancy/forms/filtersets.py:78 tenancy/forms/filtersets.py:97 +#: tenancy/forms/model_forms.py:45 tenancy/forms/model_forms.py:97 +#: tenancy/forms/model_forms.py:122 tenancy/tables/contacts.py:60 +#: tenancy/tables/contacts.py:107 tenancy/tables/tenants.py:42 +#: users/filtersets.py:62 users/filtersets.py:185 users/forms/filtersets.py:31 +#: users/forms/filtersets.py:37 users/forms/filtersets.py:79 +#: virtualization/forms/bulk_edit.py:65 virtualization/forms/bulk_import.py:47 +#: virtualization/forms/filtersets.py:85 +#: virtualization/forms/model_forms.py:66 virtualization/tables/clusters.py:70 +#: vpn/forms/bulk_edit.py:112 vpn/forms/bulk_import.py:158 +#: vpn/forms/filtersets.py:116 vpn/tables/crypto.py:31 +#: vpn/tables/tunnels.py:44 wireless/forms/bulk_edit.py:48 +#: wireless/forms/bulk_import.py:36 wireless/forms/filtersets.py:46 +#: wireless/forms/model_forms.py:40 wireless/tables/wirelesslan.py:48 msgid "Group" msgstr "Grupo" -#: netbox/circuits/forms/model_forms.py:182 -#: netbox/templates/circuits/circuitgroup.html:25 +#: circuits/forms/model_forms.py:182 templates/circuits/circuitgroup.html:25 msgid "Circuit Group" msgstr "Grupo de circuitos" -#: netbox/circuits/models/circuits.py:27 netbox/dcim/models/cables.py:67 -#: netbox/dcim/models/device_component_templates.py:517 -#: netbox/dcim/models/device_component_templates.py:617 -#: netbox/dcim/models/device_components.py:975 -#: netbox/dcim/models/device_components.py:1049 -#: netbox/dcim/models/device_components.py:1204 -#: netbox/dcim/models/devices.py:479 netbox/dcim/models/racks.py:224 -#: netbox/extras/models/tags.py:28 +#: circuits/models/circuits.py:27 dcim/models/cables.py:67 +#: dcim/models/device_component_templates.py:517 +#: dcim/models/device_component_templates.py:617 +#: dcim/models/device_components.py:975 dcim/models/device_components.py:1049 +#: dcim/models/device_components.py:1204 dcim/models/devices.py:479 +#: dcim/models/racks.py:224 extras/models/tags.py:28 msgid "color" msgstr "color" -#: netbox/circuits/models/circuits.py:36 +#: circuits/models/circuits.py:36 msgid "circuit type" msgstr "tipo de circuito" -#: netbox/circuits/models/circuits.py:37 +#: circuits/models/circuits.py:37 msgid "circuit types" msgstr "tipos de circuitos" -#: netbox/circuits/models/circuits.py:48 +#: circuits/models/circuits.py:48 msgid "circuit ID" msgstr "ID de circuito" -#: netbox/circuits/models/circuits.py:49 +#: circuits/models/circuits.py:49 msgid "Unique circuit ID" msgstr "ID de circuito único" -#: netbox/circuits/models/circuits.py:69 netbox/core/models/data.py:52 -#: netbox/core/models/jobs.py:84 netbox/dcim/models/cables.py:49 -#: netbox/dcim/models/devices.py:653 netbox/dcim/models/devices.py:1173 -#: netbox/dcim/models/devices.py:1399 netbox/dcim/models/power.py:96 -#: netbox/dcim/models/racks.py:297 netbox/dcim/models/sites.py:154 -#: netbox/dcim/models/sites.py:266 netbox/ipam/models/ip.py:253 -#: netbox/ipam/models/ip.py:522 netbox/ipam/models/ip.py:730 -#: netbox/ipam/models/vlans.py:195 netbox/virtualization/models/clusters.py:74 -#: netbox/virtualization/models/virtualmachines.py:84 -#: netbox/vpn/models/tunnels.py:40 netbox/wireless/models.py:95 -#: netbox/wireless/models.py:159 +#: circuits/models/circuits.py:69 core/models/data.py:52 +#: core/models/jobs.py:84 dcim/models/cables.py:49 dcim/models/devices.py:653 +#: dcim/models/devices.py:1173 dcim/models/devices.py:1399 +#: dcim/models/power.py:96 dcim/models/racks.py:297 dcim/models/sites.py:154 +#: dcim/models/sites.py:266 ipam/models/ip.py:253 ipam/models/ip.py:522 +#: ipam/models/ip.py:730 ipam/models/vlans.py:195 +#: virtualization/models/clusters.py:74 +#: virtualization/models/virtualmachines.py:84 vpn/models/tunnels.py:40 +#: wireless/models.py:95 wireless/models.py:159 msgid "status" msgstr "estado" -#: netbox/circuits/models/circuits.py:84 netbox/templates/core/plugin.html:19 +#: circuits/models/circuits.py:84 templates/core/plugin.html:20 msgid "installed" msgstr "instalada" -#: netbox/circuits/models/circuits.py:89 +#: circuits/models/circuits.py:89 msgid "terminates" msgstr "termina" -#: netbox/circuits/models/circuits.py:94 +#: circuits/models/circuits.py:94 msgid "commit rate (Kbps)" msgstr "velocidad de confirmación (Kbps)" -#: netbox/circuits/models/circuits.py:95 +#: circuits/models/circuits.py:95 msgid "Committed rate" msgstr "Tarifa comprometida" -#: netbox/circuits/models/circuits.py:137 +#: circuits/models/circuits.py:137 msgid "circuit" msgstr "circuito" -#: netbox/circuits/models/circuits.py:138 +#: circuits/models/circuits.py:138 msgid "circuits" msgstr "circuitos" -#: netbox/circuits/models/circuits.py:170 +#: circuits/models/circuits.py:170 msgid "circuit group" msgstr "grupo de circuitos" -#: netbox/circuits/models/circuits.py:171 +#: circuits/models/circuits.py:171 msgid "circuit groups" msgstr "grupos de circuitos" -#: netbox/circuits/models/circuits.py:195 netbox/ipam/models/fhrp.py:93 -#: netbox/tenancy/models/contacts.py:134 +#: circuits/models/circuits.py:195 ipam/models/fhrp.py:93 +#: tenancy/models/contacts.py:134 msgid "priority" msgstr "prioridad" -#: netbox/circuits/models/circuits.py:213 +#: circuits/models/circuits.py:213 msgid "Circuit group assignment" msgstr "Asignación de grupos de circuitos" -#: netbox/circuits/models/circuits.py:214 +#: circuits/models/circuits.py:214 msgid "Circuit group assignments" msgstr "Asignaciones de grupos de circuitos" -#: netbox/circuits/models/circuits.py:240 +#: circuits/models/circuits.py:240 msgid "termination" msgstr "terminación" -#: netbox/circuits/models/circuits.py:257 +#: circuits/models/circuits.py:257 msgid "port speed (Kbps)" msgstr "velocidad de puerto (Kbps)" -#: netbox/circuits/models/circuits.py:260 +#: circuits/models/circuits.py:260 msgid "Physical circuit speed" msgstr "Velocidad del circuito físico" -#: netbox/circuits/models/circuits.py:265 +#: circuits/models/circuits.py:265 msgid "upstream speed (Kbps)" msgstr "velocidad de subida (Kbps)" -#: netbox/circuits/models/circuits.py:266 +#: circuits/models/circuits.py:266 msgid "Upstream speed, if different from port speed" msgstr "Velocidad ascendente, si es diferente de la velocidad del puerto" -#: netbox/circuits/models/circuits.py:271 +#: circuits/models/circuits.py:271 msgid "cross-connect ID" msgstr "ID de conexión cruzada" -#: netbox/circuits/models/circuits.py:272 +#: circuits/models/circuits.py:272 msgid "ID of the local cross-connect" msgstr "ID de la conexión cruzada local" -#: netbox/circuits/models/circuits.py:277 +#: circuits/models/circuits.py:277 msgid "patch panel/port(s)" msgstr "panel de parche/puerto(s)" -#: netbox/circuits/models/circuits.py:278 +#: circuits/models/circuits.py:278 msgid "Patch panel ID and port number(s)" msgstr "ID del panel de conexiones y números de puerto" -#: netbox/circuits/models/circuits.py:281 -#: netbox/dcim/models/device_component_templates.py:61 -#: netbox/dcim/models/device_components.py:68 netbox/dcim/models/racks.py:685 -#: netbox/extras/models/configs.py:45 netbox/extras/models/configs.py:219 -#: netbox/extras/models/customfields.py:125 netbox/extras/models/models.py:61 -#: netbox/extras/models/models.py:158 netbox/extras/models/models.py:396 -#: netbox/extras/models/models.py:511 -#: netbox/extras/models/notifications.py:131 -#: netbox/extras/models/staging.py:31 netbox/extras/models/tags.py:32 -#: netbox/netbox/models/__init__.py:110 netbox/netbox/models/__init__.py:145 -#: netbox/netbox/models/__init__.py:191 netbox/users/models/permissions.py:24 -#: netbox/users/models/tokens.py:57 netbox/users/models/users.py:33 -#: netbox/virtualization/models/virtualmachines.py:289 +#: circuits/models/circuits.py:281 +#: dcim/models/device_component_templates.py:61 +#: dcim/models/device_components.py:68 dcim/models/racks.py:685 +#: extras/models/configs.py:45 extras/models/configs.py:219 +#: extras/models/customfields.py:125 extras/models/models.py:61 +#: extras/models/models.py:158 extras/models/models.py:396 +#: extras/models/models.py:511 extras/models/notifications.py:131 +#: extras/models/staging.py:31 extras/models/tags.py:32 +#: netbox/models/__init__.py:110 netbox/models/__init__.py:145 +#: netbox/models/__init__.py:191 users/models/permissions.py:24 +#: users/models/tokens.py:57 users/models/users.py:33 +#: virtualization/models/virtualmachines.py:289 msgid "description" msgstr "descripción" -#: netbox/circuits/models/circuits.py:294 +#: circuits/models/circuits.py:294 msgid "circuit termination" msgstr "terminación de circuito" -#: netbox/circuits/models/circuits.py:295 +#: circuits/models/circuits.py:295 msgid "circuit terminations" msgstr "terminaciones de circuitos" -#: netbox/circuits/models/circuits.py:308 +#: circuits/models/circuits.py:308 msgid "" "A circuit termination must attach to either a site or a provider network." msgstr "" "Una terminación de circuito debe conectarse a un sitio o a una red de " "proveedores." -#: netbox/circuits/models/circuits.py:310 +#: circuits/models/circuits.py:310 msgid "" "A circuit termination cannot attach to both a site and a provider network." msgstr "" "Una terminación de circuito no puede conectarse tanto a un sitio como a una " "red de proveedores." -#: netbox/circuits/models/providers.py:22 -#: netbox/circuits/models/providers.py:66 -#: netbox/circuits/models/providers.py:104 netbox/core/models/data.py:39 -#: netbox/core/models/jobs.py:45 -#: netbox/dcim/models/device_component_templates.py:43 -#: netbox/dcim/models/device_components.py:53 -#: netbox/dcim/models/devices.py:593 netbox/dcim/models/devices.py:1330 -#: netbox/dcim/models/devices.py:1395 netbox/dcim/models/power.py:39 -#: netbox/dcim/models/power.py:92 netbox/dcim/models/racks.py:262 -#: netbox/dcim/models/sites.py:138 netbox/extras/models/configs.py:36 -#: netbox/extras/models/configs.py:215 netbox/extras/models/customfields.py:92 -#: netbox/extras/models/models.py:56 netbox/extras/models/models.py:153 -#: netbox/extras/models/models.py:296 netbox/extras/models/models.py:392 -#: netbox/extras/models/models.py:501 netbox/extras/models/models.py:596 -#: netbox/extras/models/notifications.py:126 -#: netbox/extras/models/scripts.py:30 netbox/extras/models/staging.py:26 -#: netbox/ipam/models/asns.py:18 netbox/ipam/models/fhrp.py:25 -#: netbox/ipam/models/services.py:52 netbox/ipam/models/services.py:88 -#: netbox/ipam/models/vlans.py:36 netbox/ipam/models/vlans.py:184 -#: netbox/ipam/models/vrfs.py:22 netbox/ipam/models/vrfs.py:79 -#: netbox/netbox/models/__init__.py:137 netbox/netbox/models/__init__.py:181 -#: netbox/tenancy/models/contacts.py:64 netbox/tenancy/models/tenants.py:20 -#: netbox/tenancy/models/tenants.py:45 netbox/users/models/permissions.py:20 -#: netbox/users/models/users.py:28 netbox/virtualization/models/clusters.py:57 -#: netbox/virtualization/models/virtualmachines.py:72 -#: netbox/virtualization/models/virtualmachines.py:279 -#: netbox/vpn/models/crypto.py:24 netbox/vpn/models/crypto.py:71 -#: netbox/vpn/models/crypto.py:131 netbox/vpn/models/crypto.py:183 -#: netbox/vpn/models/crypto.py:221 netbox/vpn/models/l2vpn.py:22 -#: netbox/vpn/models/tunnels.py:35 netbox/wireless/models.py:51 +#: circuits/models/providers.py:22 circuits/models/providers.py:66 +#: circuits/models/providers.py:104 core/models/data.py:39 +#: core/models/jobs.py:45 dcim/models/device_component_templates.py:43 +#: dcim/models/device_components.py:53 dcim/models/devices.py:593 +#: dcim/models/devices.py:1330 dcim/models/devices.py:1395 +#: dcim/models/power.py:39 dcim/models/power.py:92 dcim/models/racks.py:262 +#: dcim/models/sites.py:138 extras/models/configs.py:36 +#: extras/models/configs.py:215 extras/models/customfields.py:92 +#: extras/models/models.py:56 extras/models/models.py:153 +#: extras/models/models.py:296 extras/models/models.py:392 +#: extras/models/models.py:501 extras/models/models.py:596 +#: extras/models/notifications.py:126 extras/models/scripts.py:30 +#: extras/models/staging.py:26 ipam/models/asns.py:18 ipam/models/fhrp.py:25 +#: ipam/models/services.py:52 ipam/models/services.py:88 +#: ipam/models/vlans.py:36 ipam/models/vlans.py:184 ipam/models/vrfs.py:22 +#: ipam/models/vrfs.py:79 netbox/models/__init__.py:137 +#: netbox/models/__init__.py:181 tenancy/models/contacts.py:64 +#: tenancy/models/tenants.py:20 tenancy/models/tenants.py:45 +#: users/models/permissions.py:20 users/models/users.py:28 +#: virtualization/models/clusters.py:57 +#: virtualization/models/virtualmachines.py:72 +#: virtualization/models/virtualmachines.py:279 vpn/models/crypto.py:24 +#: vpn/models/crypto.py:71 vpn/models/crypto.py:131 vpn/models/crypto.py:183 +#: vpn/models/crypto.py:221 vpn/models/l2vpn.py:22 vpn/models/tunnels.py:35 +#: wireless/models.py:51 msgid "name" msgstr "nombre" -#: netbox/circuits/models/providers.py:25 +#: circuits/models/providers.py:25 msgid "Full name of the provider" msgstr "Nombre completo del proveedor" -#: netbox/circuits/models/providers.py:28 netbox/dcim/models/devices.py:86 -#: netbox/dcim/models/racks.py:137 netbox/dcim/models/sites.py:149 -#: netbox/extras/models/models.py:506 netbox/ipam/models/asns.py:23 -#: netbox/ipam/models/vlans.py:40 netbox/netbox/models/__init__.py:141 -#: netbox/netbox/models/__init__.py:186 netbox/tenancy/models/tenants.py:25 -#: netbox/tenancy/models/tenants.py:49 netbox/vpn/models/l2vpn.py:27 -#: netbox/wireless/models.py:56 +#: circuits/models/providers.py:28 dcim/models/devices.py:86 +#: dcim/models/racks.py:137 dcim/models/sites.py:149 +#: extras/models/models.py:506 ipam/models/asns.py:23 ipam/models/vlans.py:40 +#: netbox/models/__init__.py:141 netbox/models/__init__.py:186 +#: tenancy/models/tenants.py:25 tenancy/models/tenants.py:49 +#: vpn/models/l2vpn.py:27 wireless/models.py:56 msgid "slug" msgstr "pegar" -#: netbox/circuits/models/providers.py:42 +#: circuits/models/providers.py:42 msgid "provider" msgstr "proveedora" -#: netbox/circuits/models/providers.py:43 +#: circuits/models/providers.py:43 msgid "providers" msgstr "proveedores" -#: netbox/circuits/models/providers.py:63 +#: circuits/models/providers.py:63 msgid "account ID" msgstr "ID de cuenta" -#: netbox/circuits/models/providers.py:86 +#: circuits/models/providers.py:86 msgid "provider account" msgstr "cuenta de proveedor" -#: netbox/circuits/models/providers.py:87 +#: circuits/models/providers.py:87 msgid "provider accounts" msgstr "cuentas de proveedores" -#: netbox/circuits/models/providers.py:115 +#: circuits/models/providers.py:115 msgid "service ID" msgstr "ID de servicio" -#: netbox/circuits/models/providers.py:126 +#: circuits/models/providers.py:126 msgid "provider network" msgstr "red de proveedores" -#: netbox/circuits/models/providers.py:127 +#: circuits/models/providers.py:127 msgid "provider networks" msgstr "redes de proveedores" -#: netbox/circuits/tables/circuits.py:32 -#: netbox/circuits/tables/circuits.py:132 -#: netbox/circuits/tables/providers.py:18 -#: netbox/circuits/tables/providers.py:69 -#: netbox/circuits/tables/providers.py:99 netbox/core/tables/data.py:16 -#: netbox/core/tables/jobs.py:14 netbox/core/tables/plugins.py:44 -#: netbox/core/tables/tasks.py:11 netbox/core/tables/tasks.py:115 -#: netbox/dcim/forms/filtersets.py:63 netbox/dcim/forms/object_create.py:43 -#: netbox/dcim/tables/devices.py:52 netbox/dcim/tables/devices.py:92 -#: netbox/dcim/tables/devices.py:134 netbox/dcim/tables/devices.py:289 -#: netbox/dcim/tables/devices.py:392 netbox/dcim/tables/devices.py:433 -#: netbox/dcim/tables/devices.py:482 netbox/dcim/tables/devices.py:531 -#: netbox/dcim/tables/devices.py:648 netbox/dcim/tables/devices.py:731 -#: netbox/dcim/tables/devices.py:778 netbox/dcim/tables/devices.py:841 -#: netbox/dcim/tables/devices.py:911 netbox/dcim/tables/devices.py:974 -#: netbox/dcim/tables/devices.py:994 netbox/dcim/tables/devices.py:1023 -#: netbox/dcim/tables/devices.py:1053 netbox/dcim/tables/devicetypes.py:31 -#: netbox/dcim/tables/power.py:22 netbox/dcim/tables/power.py:62 -#: netbox/dcim/tables/racks.py:24 netbox/dcim/tables/racks.py:113 -#: netbox/dcim/tables/sites.py:24 netbox/dcim/tables/sites.py:51 -#: netbox/dcim/tables/sites.py:78 netbox/dcim/tables/sites.py:130 -#: netbox/extras/forms/filtersets.py:213 netbox/extras/tables/tables.py:58 -#: netbox/extras/tables/tables.py:122 netbox/extras/tables/tables.py:155 -#: netbox/extras/tables/tables.py:180 netbox/extras/tables/tables.py:246 -#: netbox/extras/tables/tables.py:361 netbox/extras/tables/tables.py:378 -#: netbox/extras/tables/tables.py:401 netbox/extras/tables/tables.py:439 -#: netbox/extras/tables/tables.py:491 netbox/extras/tables/tables.py:514 -#: netbox/ipam/forms/bulk_edit.py:406 netbox/ipam/forms/filtersets.py:386 -#: netbox/ipam/tables/asn.py:16 netbox/ipam/tables/ip.py:85 -#: netbox/ipam/tables/ip.py:160 netbox/ipam/tables/services.py:15 -#: netbox/ipam/tables/services.py:40 netbox/ipam/tables/vlans.py:64 -#: netbox/ipam/tables/vlans.py:114 netbox/ipam/tables/vrfs.py:26 -#: netbox/ipam/tables/vrfs.py:68 -#: netbox/templates/circuits/circuitgroup.html:28 -#: netbox/templates/circuits/circuittype.html:22 -#: netbox/templates/circuits/provideraccount.html:28 -#: netbox/templates/circuits/providernetwork.html:24 -#: netbox/templates/core/datasource.html:34 netbox/templates/core/job.html:44 -#: netbox/templates/core/plugin.html:53 -#: netbox/templates/core/rq_worker.html:43 -#: netbox/templates/dcim/consoleport.html:28 -#: netbox/templates/dcim/consoleserverport.html:28 -#: netbox/templates/dcim/devicebay.html:24 -#: netbox/templates/dcim/devicerole.html:26 -#: netbox/templates/dcim/frontport.html:28 -#: netbox/templates/dcim/inc/interface_vlans_table.html:5 -#: netbox/templates/dcim/inc/panels/inventory_items.html:18 -#: netbox/templates/dcim/interface.html:38 -#: netbox/templates/dcim/interface.html:165 -#: netbox/templates/dcim/inventoryitem.html:28 -#: netbox/templates/dcim/inventoryitemrole.html:18 -#: netbox/templates/dcim/location.html:29 -#: netbox/templates/dcim/manufacturer.html:36 -#: netbox/templates/dcim/modulebay.html:30 -#: netbox/templates/dcim/platform.html:29 -#: netbox/templates/dcim/poweroutlet.html:28 -#: netbox/templates/dcim/powerport.html:28 -#: netbox/templates/dcim/rackrole.html:22 -#: netbox/templates/dcim/rearport.html:28 netbox/templates/dcim/region.html:29 -#: netbox/templates/dcim/sitegroup.html:29 -#: netbox/templates/dcim/virtualdevicecontext.html:18 -#: netbox/templates/extras/configcontext.html:13 -#: netbox/templates/extras/configtemplate.html:13 -#: netbox/templates/extras/customfield.html:13 -#: netbox/templates/extras/customlink.html:13 -#: netbox/templates/extras/eventrule.html:13 -#: netbox/templates/extras/exporttemplate.html:15 -#: netbox/templates/extras/notificationgroup.html:14 -#: netbox/templates/extras/savedfilter.html:13 -#: netbox/templates/extras/script_list.html:44 -#: netbox/templates/extras/tag.html:14 netbox/templates/extras/webhook.html:13 -#: netbox/templates/ipam/asnrange.html:15 -#: netbox/templates/ipam/fhrpgroup.html:30 netbox/templates/ipam/rir.html:22 -#: netbox/templates/ipam/role.html:22 -#: netbox/templates/ipam/routetarget.html:13 -#: netbox/templates/ipam/service.html:24 -#: netbox/templates/ipam/servicetemplate.html:15 -#: netbox/templates/ipam/vlan.html:35 netbox/templates/ipam/vlangroup.html:30 -#: netbox/templates/tenancy/contact.html:25 -#: netbox/templates/tenancy/contactgroup.html:21 -#: netbox/templates/tenancy/contactrole.html:18 -#: netbox/templates/tenancy/tenantgroup.html:29 -#: netbox/templates/users/group.html:17 -#: netbox/templates/users/objectpermission.html:17 -#: netbox/templates/virtualization/cluster.html:13 -#: netbox/templates/virtualization/clustergroup.html:22 -#: netbox/templates/virtualization/clustertype.html:22 -#: netbox/templates/virtualization/virtualdisk.html:25 -#: netbox/templates/virtualization/virtualmachine.html:15 -#: netbox/templates/virtualization/vminterface.html:25 -#: netbox/templates/vpn/ikepolicy.html:13 -#: netbox/templates/vpn/ikeproposal.html:13 -#: netbox/templates/vpn/ipsecpolicy.html:13 -#: netbox/templates/vpn/ipsecprofile.html:13 -#: netbox/templates/vpn/ipsecprofile.html:36 -#: netbox/templates/vpn/ipsecprofile.html:69 -#: netbox/templates/vpn/ipsecproposal.html:13 -#: netbox/templates/vpn/l2vpn.html:14 netbox/templates/vpn/tunnel.html:21 -#: netbox/templates/vpn/tunnelgroup.html:26 -#: netbox/templates/wireless/wirelesslangroup.html:29 -#: netbox/tenancy/tables/contacts.py:19 netbox/tenancy/tables/contacts.py:41 -#: netbox/tenancy/tables/contacts.py:56 netbox/tenancy/tables/tenants.py:16 -#: netbox/tenancy/tables/tenants.py:38 netbox/users/tables.py:62 -#: netbox/users/tables.py:76 netbox/virtualization/forms/bulk_create.py:20 -#: netbox/virtualization/forms/object_create.py:13 -#: netbox/virtualization/forms/object_create.py:23 -#: netbox/virtualization/tables/clusters.py:17 -#: netbox/virtualization/tables/clusters.py:39 -#: netbox/virtualization/tables/clusters.py:62 -#: netbox/virtualization/tables/virtualmachines.py:55 -#: netbox/virtualization/tables/virtualmachines.py:139 -#: netbox/virtualization/tables/virtualmachines.py:194 -#: netbox/vpn/tables/crypto.py:18 netbox/vpn/tables/crypto.py:57 -#: netbox/vpn/tables/crypto.py:93 netbox/vpn/tables/crypto.py:129 -#: netbox/vpn/tables/crypto.py:158 netbox/vpn/tables/l2vpn.py:23 -#: netbox/vpn/tables/tunnels.py:18 netbox/vpn/tables/tunnels.py:40 -#: netbox/wireless/tables/wirelesslan.py:18 -#: netbox/wireless/tables/wirelesslan.py:79 +#: circuits/tables/circuits.py:32 circuits/tables/circuits.py:132 +#: circuits/tables/providers.py:18 circuits/tables/providers.py:69 +#: circuits/tables/providers.py:99 core/tables/data.py:16 +#: core/tables/jobs.py:14 core/tables/plugins.py:44 core/tables/tasks.py:11 +#: core/tables/tasks.py:115 dcim/forms/filtersets.py:63 +#: dcim/forms/object_create.py:43 dcim/tables/devices.py:52 +#: dcim/tables/devices.py:92 dcim/tables/devices.py:134 +#: dcim/tables/devices.py:289 dcim/tables/devices.py:392 +#: dcim/tables/devices.py:433 dcim/tables/devices.py:482 +#: dcim/tables/devices.py:531 dcim/tables/devices.py:648 +#: dcim/tables/devices.py:731 dcim/tables/devices.py:778 +#: dcim/tables/devices.py:841 dcim/tables/devices.py:911 +#: dcim/tables/devices.py:974 dcim/tables/devices.py:994 +#: dcim/tables/devices.py:1023 dcim/tables/devices.py:1053 +#: dcim/tables/devicetypes.py:31 dcim/tables/power.py:22 +#: dcim/tables/power.py:62 dcim/tables/racks.py:24 dcim/tables/racks.py:113 +#: dcim/tables/sites.py:24 dcim/tables/sites.py:51 dcim/tables/sites.py:78 +#: dcim/tables/sites.py:130 extras/forms/filtersets.py:213 +#: extras/tables/tables.py:58 extras/tables/tables.py:122 +#: extras/tables/tables.py:155 extras/tables/tables.py:180 +#: extras/tables/tables.py:246 extras/tables/tables.py:361 +#: extras/tables/tables.py:378 extras/tables/tables.py:401 +#: extras/tables/tables.py:439 extras/tables/tables.py:491 +#: extras/tables/tables.py:514 ipam/forms/bulk_edit.py:407 +#: ipam/forms/filtersets.py:386 ipam/tables/asn.py:16 ipam/tables/ip.py:85 +#: ipam/tables/ip.py:160 ipam/tables/services.py:15 ipam/tables/services.py:40 +#: ipam/tables/vlans.py:64 ipam/tables/vlans.py:114 ipam/tables/vrfs.py:26 +#: ipam/tables/vrfs.py:68 templates/circuits/circuitgroup.html:28 +#: templates/circuits/circuittype.html:22 +#: templates/circuits/provideraccount.html:28 +#: templates/circuits/providernetwork.html:24 +#: templates/core/datasource.html:34 templates/core/job.html:44 +#: templates/core/plugin.html:54 templates/core/rq_worker.html:43 +#: templates/dcim/consoleport.html:28 templates/dcim/consoleserverport.html:28 +#: templates/dcim/devicebay.html:24 templates/dcim/devicerole.html:26 +#: templates/dcim/frontport.html:28 +#: templates/dcim/inc/interface_vlans_table.html:5 +#: templates/dcim/inc/panels/inventory_items.html:18 +#: templates/dcim/interface.html:38 templates/dcim/interface.html:165 +#: templates/dcim/inventoryitem.html:28 +#: templates/dcim/inventoryitemrole.html:18 templates/dcim/location.html:29 +#: templates/dcim/manufacturer.html:36 templates/dcim/modulebay.html:30 +#: templates/dcim/platform.html:29 templates/dcim/poweroutlet.html:28 +#: templates/dcim/powerport.html:28 templates/dcim/rackrole.html:22 +#: templates/dcim/rearport.html:28 templates/dcim/region.html:29 +#: templates/dcim/sitegroup.html:29 +#: templates/dcim/virtualdevicecontext.html:18 +#: templates/extras/configcontext.html:13 +#: templates/extras/configtemplate.html:13 +#: templates/extras/customfield.html:13 templates/extras/customlink.html:13 +#: templates/extras/eventrule.html:13 templates/extras/exporttemplate.html:15 +#: templates/extras/notificationgroup.html:14 +#: templates/extras/savedfilter.html:13 templates/extras/script_list.html:44 +#: templates/extras/tag.html:14 templates/extras/webhook.html:13 +#: templates/ipam/asnrange.html:15 templates/ipam/fhrpgroup.html:30 +#: templates/ipam/rir.html:22 templates/ipam/role.html:22 +#: templates/ipam/routetarget.html:13 templates/ipam/service.html:24 +#: templates/ipam/servicetemplate.html:15 templates/ipam/vlan.html:35 +#: templates/ipam/vlangroup.html:30 templates/tenancy/contact.html:25 +#: templates/tenancy/contactgroup.html:21 +#: templates/tenancy/contactrole.html:18 templates/tenancy/tenantgroup.html:29 +#: templates/users/group.html:17 templates/users/objectpermission.html:17 +#: templates/virtualization/cluster.html:13 +#: templates/virtualization/clustergroup.html:22 +#: templates/virtualization/clustertype.html:22 +#: templates/virtualization/virtualdisk.html:25 +#: templates/virtualization/virtualmachine.html:15 +#: templates/virtualization/vminterface.html:25 +#: templates/vpn/ikepolicy.html:13 templates/vpn/ikeproposal.html:13 +#: templates/vpn/ipsecpolicy.html:13 templates/vpn/ipsecprofile.html:13 +#: templates/vpn/ipsecprofile.html:36 templates/vpn/ipsecprofile.html:69 +#: templates/vpn/ipsecproposal.html:13 templates/vpn/l2vpn.html:14 +#: templates/vpn/tunnel.html:21 templates/vpn/tunnelgroup.html:26 +#: templates/wireless/wirelesslangroup.html:29 tenancy/tables/contacts.py:19 +#: tenancy/tables/contacts.py:41 tenancy/tables/contacts.py:56 +#: tenancy/tables/tenants.py:16 tenancy/tables/tenants.py:38 +#: users/tables.py:62 users/tables.py:76 +#: virtualization/forms/bulk_create.py:20 +#: virtualization/forms/object_create.py:13 +#: virtualization/forms/object_create.py:23 +#: virtualization/tables/clusters.py:17 virtualization/tables/clusters.py:39 +#: virtualization/tables/clusters.py:62 +#: virtualization/tables/virtualmachines.py:55 +#: virtualization/tables/virtualmachines.py:139 +#: virtualization/tables/virtualmachines.py:194 vpn/tables/crypto.py:18 +#: vpn/tables/crypto.py:57 vpn/tables/crypto.py:93 vpn/tables/crypto.py:129 +#: vpn/tables/crypto.py:158 vpn/tables/l2vpn.py:23 vpn/tables/tunnels.py:18 +#: vpn/tables/tunnels.py:40 wireless/tables/wirelesslan.py:18 +#: wireless/tables/wirelesslan.py:79 msgid "Name" msgstr "Nombre" -#: netbox/circuits/tables/circuits.py:41 -#: netbox/circuits/tables/circuits.py:138 -#: netbox/circuits/tables/providers.py:45 -#: netbox/circuits/tables/providers.py:79 netbox/netbox/navigation/menu.py:266 -#: netbox/netbox/navigation/menu.py:270 netbox/netbox/navigation/menu.py:272 -#: netbox/templates/circuits/provider.html:57 -#: netbox/templates/circuits/provideraccount.html:44 -#: netbox/templates/circuits/providernetwork.html:50 +#: circuits/tables/circuits.py:41 circuits/tables/circuits.py:138 +#: circuits/tables/providers.py:45 circuits/tables/providers.py:79 +#: netbox/navigation/menu.py:266 netbox/navigation/menu.py:270 +#: netbox/navigation/menu.py:272 templates/circuits/provider.html:57 +#: templates/circuits/provideraccount.html:44 +#: templates/circuits/providernetwork.html:50 msgid "Circuits" msgstr "Circuitos" -#: netbox/circuits/tables/circuits.py:55 -#: netbox/templates/circuits/circuit.html:26 +#: circuits/tables/circuits.py:55 templates/circuits/circuit.html:26 msgid "Circuit ID" msgstr "ID de circuito" -#: netbox/circuits/tables/circuits.py:69 -#: netbox/wireless/forms/model_forms.py:160 +#: circuits/tables/circuits.py:69 wireless/forms/model_forms.py:160 msgid "Side A" msgstr "Lado A" -#: netbox/circuits/tables/circuits.py:74 +#: circuits/tables/circuits.py:74 msgid "Side Z" msgstr "Lado Z" -#: netbox/circuits/tables/circuits.py:77 -#: netbox/templates/circuits/circuit.html:55 +#: circuits/tables/circuits.py:77 templates/circuits/circuit.html:55 msgid "Commit Rate" msgstr "Tasa de compromiso" -#: netbox/circuits/tables/circuits.py:80 -#: netbox/circuits/tables/providers.py:48 -#: netbox/circuits/tables/providers.py:82 -#: netbox/circuits/tables/providers.py:107 netbox/dcim/tables/devices.py:1036 -#: netbox/dcim/tables/devicetypes.py:92 netbox/dcim/tables/modules.py:29 -#: netbox/dcim/tables/modules.py:72 netbox/dcim/tables/power.py:39 -#: netbox/dcim/tables/power.py:96 netbox/dcim/tables/racks.py:84 -#: netbox/dcim/tables/racks.py:145 netbox/dcim/tables/racks.py:225 -#: netbox/dcim/tables/sites.py:108 netbox/extras/tables/tables.py:582 -#: netbox/ipam/tables/asn.py:69 netbox/ipam/tables/fhrp.py:34 -#: netbox/ipam/tables/ip.py:136 netbox/ipam/tables/ip.py:275 -#: netbox/ipam/tables/ip.py:329 netbox/ipam/tables/ip.py:397 -#: netbox/ipam/tables/services.py:24 netbox/ipam/tables/services.py:54 -#: netbox/ipam/tables/vlans.py:145 netbox/ipam/tables/vrfs.py:47 -#: netbox/ipam/tables/vrfs.py:72 netbox/templates/dcim/htmx/cable_edit.html:89 -#: netbox/templates/generic/bulk_edit.html:86 -#: netbox/templates/inc/panels/comments.html:5 -#: netbox/tenancy/tables/contacts.py:68 netbox/tenancy/tables/tenants.py:46 -#: netbox/utilities/forms/fields/fields.py:29 -#: netbox/virtualization/tables/clusters.py:91 -#: netbox/virtualization/tables/virtualmachines.py:82 -#: netbox/vpn/tables/crypto.py:37 netbox/vpn/tables/crypto.py:74 -#: netbox/vpn/tables/crypto.py:109 netbox/vpn/tables/crypto.py:140 -#: netbox/vpn/tables/crypto.py:173 netbox/vpn/tables/l2vpn.py:37 -#: netbox/vpn/tables/tunnels.py:61 netbox/wireless/tables/wirelesslan.py:27 -#: netbox/wireless/tables/wirelesslan.py:58 +#: circuits/tables/circuits.py:80 circuits/tables/providers.py:48 +#: circuits/tables/providers.py:82 circuits/tables/providers.py:107 +#: dcim/tables/devices.py:1036 dcim/tables/devicetypes.py:92 +#: dcim/tables/modules.py:29 dcim/tables/modules.py:72 dcim/tables/power.py:39 +#: dcim/tables/power.py:96 dcim/tables/racks.py:84 dcim/tables/racks.py:145 +#: dcim/tables/racks.py:225 dcim/tables/sites.py:108 +#: extras/tables/tables.py:582 ipam/tables/asn.py:69 ipam/tables/fhrp.py:34 +#: ipam/tables/ip.py:136 ipam/tables/ip.py:275 ipam/tables/ip.py:329 +#: ipam/tables/ip.py:397 ipam/tables/services.py:24 ipam/tables/services.py:54 +#: ipam/tables/vlans.py:145 ipam/tables/vrfs.py:47 ipam/tables/vrfs.py:72 +#: templates/dcim/htmx/cable_edit.html:89 templates/generic/bulk_edit.html:86 +#: templates/inc/panels/comments.html:5 tenancy/tables/contacts.py:68 +#: tenancy/tables/tenants.py:46 utilities/forms/fields/fields.py:29 +#: virtualization/tables/clusters.py:91 +#: virtualization/tables/virtualmachines.py:82 vpn/tables/crypto.py:37 +#: vpn/tables/crypto.py:74 vpn/tables/crypto.py:109 vpn/tables/crypto.py:140 +#: vpn/tables/crypto.py:173 vpn/tables/l2vpn.py:37 vpn/tables/tunnels.py:61 +#: wireless/tables/wirelesslan.py:27 wireless/tables/wirelesslan.py:58 msgid "Comments" msgstr "Comentarios" -#: netbox/circuits/tables/circuits.py:86 -#: netbox/templates/tenancy/contact.html:84 -#: netbox/tenancy/tables/contacts.py:73 +#: circuits/tables/circuits.py:86 templates/tenancy/contact.html:84 +#: tenancy/tables/contacts.py:73 msgid "Assignments" msgstr "Asignaciones" -#: netbox/circuits/tables/providers.py:23 +#: circuits/tables/providers.py:23 msgid "Accounts" msgstr "Cuentas" -#: netbox/circuits/tables/providers.py:29 +#: circuits/tables/providers.py:29 msgid "Account Count" msgstr "Recuento de cuentas" -#: netbox/circuits/tables/providers.py:39 netbox/dcim/tables/sites.py:100 +#: circuits/tables/providers.py:39 dcim/tables/sites.py:100 msgid "ASN Count" msgstr "Recuento de ASN" -#: netbox/circuits/views.py:331 +#: circuits/views.py:331 #, python-brace-format msgid "No terminations have been defined for circuit {circuit}." msgstr "No se han definido terminaciones para el circuito {circuit}." -#: netbox/circuits/views.py:380 +#: circuits/views.py:380 #, python-brace-format msgid "Swapped terminations for circuit {circuit}." msgstr "Terminaciones intercambiadas por circuito {circuit}." -#: netbox/core/api/views.py:39 +#: core/api/views.py:39 msgid "This user does not have permission to synchronize this data source." msgstr "Este usuario no tiene permiso para sincronizar esta fuente de datos." -#: netbox/core/choices.py:18 +#: core/choices.py:18 msgid "New" msgstr "Nuevo" -#: netbox/core/choices.py:19 netbox/core/constants.py:18 -#: netbox/core/tables/tasks.py:15 netbox/templates/core/rq_task.html:77 +#: core/choices.py:19 core/constants.py:18 core/tables/tasks.py:15 +#: templates/core/rq_task.html:77 msgid "Queued" msgstr "En cola" -#: netbox/core/choices.py:20 +#: core/choices.py:20 msgid "Syncing" msgstr "Sincronización" -#: netbox/core/choices.py:21 netbox/core/choices.py:57 -#: netbox/core/tables/jobs.py:41 netbox/templates/core/job.html:86 +#: core/choices.py:21 core/choices.py:57 core/tables/jobs.py:41 +#: templates/core/job.html:86 msgid "Completed" msgstr "Completado" -#: netbox/core/choices.py:22 netbox/core/choices.py:59 -#: netbox/core/constants.py:20 netbox/core/tables/tasks.py:34 -#: netbox/dcim/choices.py:187 netbox/dcim/choices.py:239 -#: netbox/dcim/choices.py:1607 netbox/virtualization/choices.py:47 +#: core/choices.py:22 core/choices.py:59 core/constants.py:20 +#: core/tables/tasks.py:34 dcim/choices.py:187 dcim/choices.py:239 +#: dcim/choices.py:1607 virtualization/choices.py:47 msgid "Failed" msgstr "Falló" -#: netbox/core/choices.py:35 netbox/netbox/navigation/menu.py:335 -#: netbox/netbox/navigation/menu.py:339 -#: netbox/templates/extras/script/base.html:14 -#: netbox/templates/extras/script_list.html:7 -#: netbox/templates/extras/script_list.html:12 -#: netbox/templates/extras/script_result.html:17 +#: core/choices.py:35 netbox/navigation/menu.py:335 +#: netbox/navigation/menu.py:339 templates/extras/script/base.html:14 +#: templates/extras/script_list.html:7 templates/extras/script_list.html:12 +#: templates/extras/script_result.html:17 msgid "Scripts" msgstr "Guiones" -#: netbox/core/choices.py:36 netbox/templates/extras/report/base.html:13 +#: core/choices.py:36 templates/extras/report/base.html:13 msgid "Reports" msgstr "Informes" -#: netbox/core/choices.py:54 +#: core/choices.py:54 msgid "Pending" msgstr "Pendiente" -#: netbox/core/choices.py:55 netbox/core/constants.py:23 -#: netbox/core/tables/jobs.py:32 netbox/core/tables/tasks.py:38 -#: netbox/templates/core/job.html:73 +#: core/choices.py:55 core/constants.py:23 core/tables/jobs.py:32 +#: core/tables/tasks.py:38 templates/core/job.html:73 msgid "Scheduled" msgstr "Programado" -#: netbox/core/choices.py:56 +#: core/choices.py:56 msgid "Running" msgstr "Corriendo" -#: netbox/core/choices.py:58 +#: core/choices.py:58 msgid "Errored" msgstr "Erróneo" -#: netbox/core/choices.py:87 netbox/core/tables/plugins.py:63 -#: netbox/templates/generic/object.html:61 +#: core/choices.py:87 core/tables/plugins.py:63 +#: templates/generic/object.html:61 msgid "Updated" msgstr "Actualizado" -#: netbox/core/choices.py:88 +#: core/choices.py:88 msgid "Deleted" msgstr "Eliminado" -#: netbox/core/constants.py:19 netbox/core/tables/tasks.py:30 +#: core/constants.py:19 core/tables/tasks.py:30 msgid "Finished" msgstr "Terminado" -#: netbox/core/constants.py:21 netbox/core/tables/jobs.py:38 -#: netbox/templates/core/job.html:82 -#: netbox/templates/extras/htmx/script_result.html:8 +#: core/constants.py:21 core/tables/jobs.py:38 templates/core/job.html:82 +#: templates/extras/htmx/script_result.html:8 msgid "Started" msgstr "Empezado" -#: netbox/core/constants.py:22 netbox/core/tables/tasks.py:26 +#: core/constants.py:22 core/tables/tasks.py:26 msgid "Deferred" msgstr "Aplazado" -#: netbox/core/constants.py:24 +#: core/constants.py:24 msgid "Stopped" msgstr "Detenido" -#: netbox/core/constants.py:25 +#: core/constants.py:25 msgid "Cancelled" msgstr "Cancelado" -#: netbox/core/data_backends.py:32 netbox/core/tables/plugins.py:51 -#: netbox/templates/core/plugin.html:87 -#: netbox/templates/dcim/interface.html:216 +#: core/data_backends.py:32 core/tables/plugins.py:51 +#: templates/core/plugin.html:88 templates/dcim/interface.html:216 msgid "Local" msgstr "Local" -#: netbox/core/data_backends.py:50 netbox/core/tables/change_logging.py:20 -#: netbox/templates/account/profile.html:15 -#: netbox/templates/users/user.html:17 netbox/users/tables.py:31 +#: core/data_backends.py:50 core/tables/change_logging.py:20 +#: templates/account/profile.html:15 templates/users/user.html:17 +#: users/tables.py:31 msgid "Username" msgstr "Nombre de usuario" -#: netbox/core/data_backends.py:52 netbox/core/data_backends.py:58 +#: core/data_backends.py:52 core/data_backends.py:58 msgid "Only used for cloning with HTTP(S)" msgstr "Solo se usa para clonar con HTTP (S)" -#: netbox/core/data_backends.py:56 netbox/templates/account/base.html:23 -#: netbox/templates/account/password.html:12 -#: netbox/users/forms/model_forms.py:170 +#: core/data_backends.py:56 templates/account/base.html:23 +#: templates/account/password.html:12 users/forms/model_forms.py:170 msgid "Password" msgstr "Contraseña" -#: netbox/core/data_backends.py:62 +#: core/data_backends.py:62 msgid "Branch" msgstr "Rama" -#: netbox/core/data_backends.py:120 +#: core/data_backends.py:120 #, python-brace-format msgid "Fetching remote data failed ({name}): {error}" msgstr "Fallo al obtener datos remotos ({name}): {error}" -#: netbox/core/data_backends.py:133 +#: core/data_backends.py:133 msgid "AWS access key ID" msgstr "ID de clave de acceso de AWS" -#: netbox/core/data_backends.py:137 +#: core/data_backends.py:137 msgid "AWS secret access key" msgstr "Clave de acceso secreta de AWS" -#: netbox/core/events.py:27 +#: core/events.py:27 msgid "Object created" msgstr "Objeto creado" -#: netbox/core/events.py:28 +#: core/events.py:28 msgid "Object updated" msgstr "Objeto actualizado" -#: netbox/core/events.py:29 +#: core/events.py:29 msgid "Object deleted" msgstr "Objeto eliminado" -#: netbox/core/events.py:30 +#: core/events.py:30 msgid "Job started" msgstr "Trabajo iniciado" -#: netbox/core/events.py:31 +#: core/events.py:31 msgid "Job completed" msgstr "Trabajo completado" -#: netbox/core/events.py:32 +#: core/events.py:32 msgid "Job failed" msgstr "Fallo en el trabajo" -#: netbox/core/events.py:33 +#: core/events.py:33 msgid "Job errored" msgstr "Error en el trabajo" -#: netbox/core/filtersets.py:53 netbox/extras/filtersets.py:250 -#: netbox/extras/filtersets.py:633 netbox/extras/filtersets.py:661 +#: core/filtersets.py:53 extras/filtersets.py:250 extras/filtersets.py:633 +#: extras/filtersets.py:661 msgid "Data source (ID)" msgstr "Fuente de datos (ID)" -#: netbox/core/filtersets.py:59 +#: core/filtersets.py:59 msgid "Data source (name)" msgstr "Fuente de datos (nombre)" -#: netbox/core/filtersets.py:145 netbox/dcim/filtersets.py:501 -#: netbox/extras/filtersets.py:287 netbox/extras/filtersets.py:331 -#: netbox/extras/filtersets.py:353 netbox/extras/filtersets.py:413 -#: netbox/users/filtersets.py:28 +#: core/filtersets.py:145 dcim/filtersets.py:501 extras/filtersets.py:287 +#: extras/filtersets.py:331 extras/filtersets.py:353 extras/filtersets.py:413 +#: users/filtersets.py:28 msgid "User (ID)" msgstr "Usuario (ID)" -#: netbox/core/filtersets.py:151 +#: core/filtersets.py:151 msgid "User name" msgstr "Nombre de usuario" -#: netbox/core/forms/bulk_edit.py:25 netbox/core/forms/filtersets.py:43 -#: netbox/core/tables/data.py:26 netbox/dcim/forms/bulk_edit.py:1122 -#: netbox/dcim/forms/bulk_edit.py:1400 netbox/dcim/forms/filtersets.py:1370 -#: netbox/dcim/tables/devices.py:553 netbox/dcim/tables/devicetypes.py:224 -#: netbox/extras/forms/bulk_edit.py:123 netbox/extras/forms/bulk_edit.py:187 -#: netbox/extras/forms/bulk_edit.py:246 netbox/extras/forms/filtersets.py:142 -#: netbox/extras/forms/filtersets.py:229 netbox/extras/forms/filtersets.py:294 -#: netbox/extras/tables/tables.py:162 netbox/extras/tables/tables.py:253 -#: netbox/extras/tables/tables.py:415 netbox/netbox/preferences.py:22 -#: netbox/templates/core/datasource.html:42 -#: netbox/templates/dcim/interface.html:61 -#: netbox/templates/extras/customlink.html:17 -#: netbox/templates/extras/eventrule.html:17 -#: netbox/templates/extras/savedfilter.html:25 -#: netbox/templates/users/objectpermission.html:25 -#: netbox/templates/virtualization/vminterface.html:29 -#: netbox/users/forms/bulk_edit.py:89 netbox/users/forms/filtersets.py:70 -#: netbox/users/tables.py:83 netbox/virtualization/forms/bulk_edit.py:217 -#: netbox/virtualization/forms/filtersets.py:215 +#: core/forms/bulk_edit.py:25 core/forms/filtersets.py:43 +#: core/tables/data.py:26 dcim/forms/bulk_edit.py:1122 +#: dcim/forms/bulk_edit.py:1400 dcim/forms/filtersets.py:1370 +#: dcim/tables/devices.py:553 dcim/tables/devicetypes.py:224 +#: extras/forms/bulk_edit.py:123 extras/forms/bulk_edit.py:187 +#: extras/forms/bulk_edit.py:246 extras/forms/filtersets.py:142 +#: extras/forms/filtersets.py:229 extras/forms/filtersets.py:294 +#: extras/tables/tables.py:162 extras/tables/tables.py:253 +#: extras/tables/tables.py:415 netbox/preferences.py:22 +#: templates/core/datasource.html:42 templates/dcim/interface.html:61 +#: templates/extras/customlink.html:17 templates/extras/eventrule.html:17 +#: templates/extras/savedfilter.html:25 +#: templates/users/objectpermission.html:25 +#: templates/virtualization/vminterface.html:29 users/forms/bulk_edit.py:89 +#: users/forms/filtersets.py:70 users/tables.py:83 +#: virtualization/forms/bulk_edit.py:217 +#: virtualization/forms/filtersets.py:215 msgid "Enabled" msgstr "Habilitado" -#: netbox/core/forms/bulk_edit.py:34 netbox/extras/forms/model_forms.py:285 -#: netbox/templates/extras/savedfilter.html:52 -#: netbox/vpn/forms/filtersets.py:97 netbox/vpn/forms/filtersets.py:127 -#: netbox/vpn/forms/filtersets.py:151 netbox/vpn/forms/filtersets.py:170 -#: netbox/vpn/forms/model_forms.py:301 netbox/vpn/forms/model_forms.py:321 -#: netbox/vpn/forms/model_forms.py:337 netbox/vpn/forms/model_forms.py:357 -#: netbox/vpn/forms/model_forms.py:380 +#: core/forms/bulk_edit.py:34 extras/forms/model_forms.py:285 +#: templates/extras/savedfilter.html:52 vpn/forms/filtersets.py:97 +#: vpn/forms/filtersets.py:127 vpn/forms/filtersets.py:151 +#: vpn/forms/filtersets.py:170 vpn/forms/model_forms.py:301 +#: vpn/forms/model_forms.py:321 vpn/forms/model_forms.py:337 +#: vpn/forms/model_forms.py:357 vpn/forms/model_forms.py:380 msgid "Parameters" msgstr "Parámetros" -#: netbox/core/forms/bulk_edit.py:38 netbox/templates/core/datasource.html:68 +#: core/forms/bulk_edit.py:38 templates/core/datasource.html:68 msgid "Ignore rules" msgstr "Ignorar las reglas" -#: netbox/core/forms/filtersets.py:30 netbox/core/forms/model_forms.py:97 -#: netbox/extras/forms/model_forms.py:248 -#: netbox/extras/forms/model_forms.py:578 -#: netbox/extras/forms/model_forms.py:632 netbox/extras/tables/tables.py:191 -#: netbox/extras/tables/tables.py:483 netbox/extras/tables/tables.py:518 -#: netbox/templates/core/datasource.html:31 -#: netbox/templates/dcim/device/render_config.html:18 -#: netbox/templates/extras/configcontext.html:29 -#: netbox/templates/extras/configtemplate.html:21 -#: netbox/templates/extras/exporttemplate.html:35 -#: netbox/templates/virtualization/virtualmachine/render_config.html:18 +#: core/forms/filtersets.py:30 core/forms/model_forms.py:97 +#: extras/forms/model_forms.py:248 extras/forms/model_forms.py:578 +#: extras/forms/model_forms.py:632 extras/tables/tables.py:191 +#: extras/tables/tables.py:483 extras/tables/tables.py:518 +#: templates/core/datasource.html:31 +#: templates/dcim/device/render_config.html:18 +#: templates/extras/configcontext.html:29 +#: templates/extras/configtemplate.html:21 +#: templates/extras/exporttemplate.html:35 +#: templates/virtualization/virtualmachine/render_config.html:18 msgid "Data Source" msgstr "Fuente de datos" -#: netbox/core/forms/filtersets.py:55 netbox/core/forms/mixins.py:21 +#: core/forms/filtersets.py:55 core/forms/mixins.py:21 msgid "File" msgstr "Expediente" -#: netbox/core/forms/filtersets.py:60 netbox/core/forms/mixins.py:16 -#: netbox/extras/forms/filtersets.py:170 netbox/extras/forms/filtersets.py:328 -#: netbox/extras/forms/filtersets.py:413 +#: core/forms/filtersets.py:60 core/forms/mixins.py:16 +#: extras/forms/filtersets.py:170 extras/forms/filtersets.py:328 +#: extras/forms/filtersets.py:413 msgid "Data source" msgstr "Fuente de datos" -#: netbox/core/forms/filtersets.py:70 netbox/extras/forms/filtersets.py:440 +#: core/forms/filtersets.py:70 extras/forms/filtersets.py:440 msgid "Creation" msgstr "Creación" -#: netbox/core/forms/filtersets.py:74 netbox/core/forms/filtersets.py:160 -#: netbox/extras/forms/filtersets.py:461 netbox/extras/tables/tables.py:220 -#: netbox/extras/tables/tables.py:294 netbox/extras/tables/tables.py:326 -#: netbox/extras/tables/tables.py:571 netbox/templates/core/job.html:38 -#: netbox/templates/core/objectchange.html:52 -#: netbox/tenancy/tables/contacts.py:90 netbox/vpn/tables/l2vpn.py:59 +#: core/forms/filtersets.py:74 core/forms/filtersets.py:160 +#: extras/forms/filtersets.py:461 extras/tables/tables.py:220 +#: extras/tables/tables.py:294 extras/tables/tables.py:326 +#: extras/tables/tables.py:571 templates/core/job.html:38 +#: templates/core/objectchange.html:52 tenancy/tables/contacts.py:90 +#: vpn/tables/l2vpn.py:59 msgid "Object Type" msgstr "Tipo de objeto" -#: netbox/core/forms/filtersets.py:84 +#: core/forms/filtersets.py:84 msgid "Created after" msgstr "Creado después" -#: netbox/core/forms/filtersets.py:89 +#: core/forms/filtersets.py:89 msgid "Created before" msgstr "Creado antes" -#: netbox/core/forms/filtersets.py:94 +#: core/forms/filtersets.py:94 msgid "Scheduled after" msgstr "Programado después" -#: netbox/core/forms/filtersets.py:99 +#: core/forms/filtersets.py:99 msgid "Scheduled before" msgstr "Programado antes" -#: netbox/core/forms/filtersets.py:104 +#: core/forms/filtersets.py:104 msgid "Started after" msgstr "Comenzó después" -#: netbox/core/forms/filtersets.py:109 +#: core/forms/filtersets.py:109 msgid "Started before" msgstr "Comenzó antes" -#: netbox/core/forms/filtersets.py:114 +#: core/forms/filtersets.py:114 msgid "Completed after" msgstr "Completado después" -#: netbox/core/forms/filtersets.py:119 +#: core/forms/filtersets.py:119 msgid "Completed before" msgstr "Completado antes" -#: netbox/core/forms/filtersets.py:126 netbox/core/forms/filtersets.py:155 -#: netbox/dcim/forms/bulk_edit.py:456 netbox/dcim/forms/filtersets.py:418 -#: netbox/dcim/forms/filtersets.py:462 netbox/dcim/forms/model_forms.py:316 -#: netbox/extras/forms/filtersets.py:456 netbox/extras/forms/filtersets.py:475 -#: netbox/extras/tables/tables.py:302 netbox/extras/tables/tables.py:342 -#: netbox/templates/core/objectchange.html:36 -#: netbox/templates/dcim/rackreservation.html:58 -#: netbox/templates/extras/savedfilter.html:21 -#: netbox/templates/inc/user_menu.html:33 netbox/templates/users/token.html:21 -#: netbox/templates/users/user.html:6 netbox/templates/users/user.html:14 -#: netbox/users/filtersets.py:107 netbox/users/filtersets.py:174 -#: netbox/users/forms/filtersets.py:84 netbox/users/forms/filtersets.py:125 -#: netbox/users/forms/model_forms.py:155 netbox/users/forms/model_forms.py:192 -#: netbox/users/tables.py:19 +#: core/forms/filtersets.py:126 core/forms/filtersets.py:155 +#: dcim/forms/bulk_edit.py:456 dcim/forms/filtersets.py:418 +#: dcim/forms/filtersets.py:462 dcim/forms/model_forms.py:316 +#: extras/forms/filtersets.py:456 extras/forms/filtersets.py:475 +#: extras/tables/tables.py:302 extras/tables/tables.py:342 +#: templates/core/objectchange.html:36 templates/dcim/rackreservation.html:58 +#: templates/extras/savedfilter.html:21 templates/inc/user_menu.html:33 +#: templates/users/token.html:21 templates/users/user.html:6 +#: templates/users/user.html:14 users/filtersets.py:107 +#: users/filtersets.py:174 users/forms/filtersets.py:84 +#: users/forms/filtersets.py:125 users/forms/model_forms.py:155 +#: users/forms/model_forms.py:192 users/tables.py:19 msgid "User" msgstr "usuario" -#: netbox/core/forms/filtersets.py:134 netbox/core/tables/change_logging.py:15 -#: netbox/extras/tables/tables.py:609 netbox/extras/tables/tables.py:646 -#: netbox/templates/core/objectchange.html:32 +#: core/forms/filtersets.py:134 core/tables/change_logging.py:15 +#: extras/tables/tables.py:609 extras/tables/tables.py:646 +#: templates/core/objectchange.html:32 msgid "Time" msgstr "Hora" -#: netbox/core/forms/filtersets.py:139 netbox/extras/forms/filtersets.py:445 +#: core/forms/filtersets.py:139 extras/forms/filtersets.py:445 msgid "After" msgstr "Después" -#: netbox/core/forms/filtersets.py:144 netbox/extras/forms/filtersets.py:450 +#: core/forms/filtersets.py:144 extras/forms/filtersets.py:450 msgid "Before" msgstr "Antes" -#: netbox/core/forms/filtersets.py:148 netbox/core/tables/change_logging.py:29 -#: netbox/extras/forms/model_forms.py:396 -#: netbox/templates/core/objectchange.html:46 -#: netbox/templates/extras/eventrule.html:71 +#: core/forms/filtersets.py:148 core/tables/change_logging.py:29 +#: extras/forms/model_forms.py:396 templates/core/objectchange.html:46 +#: templates/extras/eventrule.html:71 msgid "Action" msgstr "Acción" -#: netbox/core/forms/model_forms.py:54 netbox/core/tables/data.py:46 -#: netbox/templates/core/datafile.html:27 -#: netbox/templates/extras/report/base.html:33 -#: netbox/templates/extras/script/base.html:32 +#: core/forms/model_forms.py:54 core/tables/data.py:46 +#: templates/core/datafile.html:27 templates/extras/report/base.html:33 +#: templates/extras/script/base.html:32 msgid "Source" msgstr "Fuente" -#: netbox/core/forms/model_forms.py:58 +#: core/forms/model_forms.py:58 msgid "Backend Parameters" msgstr "Parámetros de backend" -#: netbox/core/forms/model_forms.py:96 +#: core/forms/model_forms.py:96 msgid "File Upload" msgstr "Carga de archivos" -#: netbox/core/forms/model_forms.py:108 +#: core/forms/model_forms.py:108 msgid "Cannot upload a file and sync from an existing file" msgstr "" "No se puede cargar un archivo y sincronizarlo desde un archivo existente" -#: netbox/core/forms/model_forms.py:110 +#: core/forms/model_forms.py:110 msgid "Must upload a file or select a data file to sync" msgstr "" "Debe cargar un archivo o seleccionar un archivo de datos para sincronizarlo" -#: netbox/core/forms/model_forms.py:153 -#: netbox/templates/dcim/rack_elevation_list.html:6 +#: core/forms/model_forms.py:153 templates/dcim/rack_elevation_list.html:6 msgid "Rack Elevations" msgstr "Elevaciones de estanterías" -#: netbox/core/forms/model_forms.py:157 netbox/dcim/choices.py:1518 -#: netbox/dcim/forms/bulk_edit.py:969 netbox/dcim/forms/bulk_edit.py:1357 -#: netbox/dcim/forms/bulk_edit.py:1375 netbox/dcim/tables/racks.py:158 -#: netbox/netbox/navigation/menu.py:291 netbox/netbox/navigation/menu.py:295 +#: core/forms/model_forms.py:157 dcim/choices.py:1518 +#: dcim/forms/bulk_edit.py:969 dcim/forms/bulk_edit.py:1357 +#: dcim/forms/bulk_edit.py:1375 dcim/tables/racks.py:158 +#: netbox/navigation/menu.py:291 netbox/navigation/menu.py:295 msgid "Power" msgstr "Potencia" -#: netbox/core/forms/model_forms.py:159 netbox/netbox/navigation/menu.py:154 -#: netbox/templates/core/inc/config_data.html:37 +#: core/forms/model_forms.py:159 netbox/navigation/menu.py:154 +#: templates/core/inc/config_data.html:37 msgid "IPAM" msgstr "IPAM" -#: netbox/core/forms/model_forms.py:160 netbox/netbox/navigation/menu.py:230 -#: netbox/templates/core/inc/config_data.html:50 -#: netbox/vpn/forms/bulk_edit.py:77 netbox/vpn/forms/filtersets.py:43 -#: netbox/vpn/forms/model_forms.py:61 netbox/vpn/forms/model_forms.py:146 +#: core/forms/model_forms.py:160 netbox/navigation/menu.py:230 +#: templates/core/inc/config_data.html:50 vpn/forms/bulk_edit.py:77 +#: vpn/forms/filtersets.py:43 vpn/forms/model_forms.py:61 +#: vpn/forms/model_forms.py:146 msgid "Security" msgstr "Seguridad" -#: netbox/core/forms/model_forms.py:161 -#: netbox/templates/core/inc/config_data.html:59 +#: core/forms/model_forms.py:161 templates/core/inc/config_data.html:59 msgid "Banners" msgstr "Banners" -#: netbox/core/forms/model_forms.py:162 -#: netbox/templates/core/inc/config_data.html:80 +#: core/forms/model_forms.py:162 templates/core/inc/config_data.html:80 msgid "Pagination" msgstr "Paginación" -#: netbox/core/forms/model_forms.py:163 netbox/extras/forms/bulk_edit.py:92 -#: netbox/extras/forms/filtersets.py:47 netbox/extras/forms/model_forms.py:116 -#: netbox/extras/forms/model_forms.py:129 -#: netbox/templates/core/inc/config_data.html:93 +#: core/forms/model_forms.py:163 extras/forms/bulk_edit.py:92 +#: extras/forms/filtersets.py:47 extras/forms/model_forms.py:116 +#: extras/forms/model_forms.py:129 templates/core/inc/config_data.html:93 msgid "Validation" msgstr "Validación" -#: netbox/core/forms/model_forms.py:164 -#: netbox/templates/account/preferences.html:6 +#: core/forms/model_forms.py:164 templates/account/preferences.html:6 msgid "User Preferences" msgstr "Preferencias de usuario" -#: netbox/core/forms/model_forms.py:167 netbox/dcim/forms/filtersets.py:732 -#: netbox/templates/core/inc/config_data.html:127 -#: netbox/users/forms/model_forms.py:64 +#: core/forms/model_forms.py:167 dcim/forms/filtersets.py:732 +#: templates/core/inc/config_data.html:127 users/forms/model_forms.py:64 msgid "Miscellaneous" msgstr "Misceláneo" -#: netbox/core/forms/model_forms.py:169 +#: core/forms/model_forms.py:169 msgid "Config Revision" msgstr "Revisión de configuración" -#: netbox/core/forms/model_forms.py:208 +#: core/forms/model_forms.py:208 msgid "This parameter has been defined statically and cannot be modified." msgstr "Este parámetro se ha definido estáticamente y no se puede modificar." -#: netbox/core/forms/model_forms.py:216 +#: core/forms/model_forms.py:216 #, python-brace-format msgid "Current value: {value}" msgstr "Valor actual: {value}" -#: netbox/core/forms/model_forms.py:218 +#: core/forms/model_forms.py:218 msgid " (default)" msgstr " (predeterminado)" -#: netbox/core/models/change_logging.py:29 +#: core/models/change_logging.py:29 msgid "time" msgstr "tiempo" -#: netbox/core/models/change_logging.py:42 +#: core/models/change_logging.py:42 msgid "user name" msgstr "nombre de usuario" -#: netbox/core/models/change_logging.py:47 +#: core/models/change_logging.py:47 msgid "request ID" msgstr "ID de solicitud" -#: netbox/core/models/change_logging.py:52 netbox/extras/models/staging.py:69 +#: core/models/change_logging.py:52 extras/models/staging.py:69 msgid "action" msgstr "acción" -#: netbox/core/models/change_logging.py:86 +#: core/models/change_logging.py:86 msgid "pre-change data" msgstr "datos de cambio previo" -#: netbox/core/models/change_logging.py:92 +#: core/models/change_logging.py:92 msgid "post-change data" msgstr "datos posteriores al cambio" -#: netbox/core/models/change_logging.py:106 +#: core/models/change_logging.py:106 msgid "object change" msgstr "cambio de objeto" -#: netbox/core/models/change_logging.py:107 +#: core/models/change_logging.py:107 msgid "object changes" msgstr "cambios de objetos" -#: netbox/core/models/change_logging.py:123 +#: core/models/change_logging.py:123 #, python-brace-format msgid "Change logging is not supported for this object type ({type})." msgstr "" "El registro de cambios no es compatible con este tipo de objeto ({type})." -#: netbox/core/models/config.py:18 netbox/core/models/data.py:266 -#: netbox/core/models/files.py:27 netbox/core/models/jobs.py:49 -#: netbox/extras/models/models.py:730 netbox/extras/models/notifications.py:39 -#: netbox/extras/models/notifications.py:186 -#: netbox/netbox/models/features.py:53 netbox/users/models/tokens.py:32 +#: core/models/config.py:18 core/models/data.py:266 core/models/files.py:27 +#: core/models/jobs.py:49 extras/models/models.py:730 +#: extras/models/notifications.py:39 extras/models/notifications.py:186 +#: netbox/models/features.py:53 users/models/tokens.py:32 msgid "created" msgstr "creado" -#: netbox/core/models/config.py:22 +#: core/models/config.py:22 msgid "comment" msgstr "comentario" -#: netbox/core/models/config.py:29 +#: core/models/config.py:29 msgid "configuration data" msgstr "datos de configuración" -#: netbox/core/models/config.py:36 +#: core/models/config.py:36 msgid "config revision" msgstr "revisión de configuración" -#: netbox/core/models/config.py:37 +#: core/models/config.py:37 msgid "config revisions" msgstr "revisiones de configuración" -#: netbox/core/models/config.py:41 +#: core/models/config.py:41 msgid "Default configuration" msgstr "Configuración predeterminada" -#: netbox/core/models/config.py:43 +#: core/models/config.py:43 msgid "Current configuration" msgstr "Configuración actual" -#: netbox/core/models/config.py:44 +#: core/models/config.py:44 #, python-brace-format msgid "Config revision #{id}" msgstr "Revisión de configuración #{id}" -#: netbox/core/models/data.py:44 netbox/dcim/models/cables.py:43 -#: netbox/dcim/models/device_component_templates.py:203 -#: netbox/dcim/models/device_component_templates.py:237 -#: netbox/dcim/models/device_component_templates.py:272 -#: netbox/dcim/models/device_component_templates.py:334 -#: netbox/dcim/models/device_component_templates.py:413 -#: netbox/dcim/models/device_component_templates.py:512 -#: netbox/dcim/models/device_component_templates.py:612 -#: netbox/dcim/models/device_components.py:283 -#: netbox/dcim/models/device_components.py:312 -#: netbox/dcim/models/device_components.py:345 -#: netbox/dcim/models/device_components.py:463 -#: netbox/dcim/models/device_components.py:605 -#: netbox/dcim/models/device_components.py:970 -#: netbox/dcim/models/device_components.py:1044 -#: netbox/dcim/models/power.py:102 netbox/extras/models/customfields.py:78 -#: netbox/extras/models/search.py:41 -#: netbox/virtualization/models/clusters.py:61 netbox/vpn/models/l2vpn.py:32 +#: core/models/data.py:44 dcim/models/cables.py:43 +#: dcim/models/device_component_templates.py:203 +#: dcim/models/device_component_templates.py:237 +#: dcim/models/device_component_templates.py:272 +#: dcim/models/device_component_templates.py:334 +#: dcim/models/device_component_templates.py:413 +#: dcim/models/device_component_templates.py:512 +#: dcim/models/device_component_templates.py:612 +#: dcim/models/device_components.py:283 dcim/models/device_components.py:312 +#: dcim/models/device_components.py:345 dcim/models/device_components.py:463 +#: dcim/models/device_components.py:605 dcim/models/device_components.py:970 +#: dcim/models/device_components.py:1044 dcim/models/power.py:102 +#: extras/models/customfields.py:78 extras/models/search.py:41 +#: virtualization/models/clusters.py:61 vpn/models/l2vpn.py:32 msgid "type" msgstr "tipo" -#: netbox/core/models/data.py:49 netbox/extras/choices.py:37 -#: netbox/extras/models/models.py:164 netbox/extras/tables/tables.py:656 -#: netbox/templates/core/datasource.html:58 -#: netbox/templates/core/plugin.html:65 +#: core/models/data.py:49 extras/choices.py:37 extras/models/models.py:164 +#: extras/tables/tables.py:656 templates/core/datasource.html:58 +#: templates/core/plugin.html:66 msgid "URL" msgstr "URL" -#: netbox/core/models/data.py:59 -#: netbox/dcim/models/device_component_templates.py:418 -#: netbox/dcim/models/device_components.py:512 -#: netbox/extras/models/models.py:70 netbox/extras/models/models.py:301 -#: netbox/extras/models/models.py:526 netbox/users/models/permissions.py:29 +#: core/models/data.py:59 dcim/models/device_component_templates.py:418 +#: dcim/models/device_components.py:512 extras/models/models.py:70 +#: extras/models/models.py:301 extras/models/models.py:526 +#: users/models/permissions.py:29 msgid "enabled" msgstr "habilitado" -#: netbox/core/models/data.py:63 +#: core/models/data.py:63 msgid "ignore rules" msgstr "ignorar reglas" -#: netbox/core/models/data.py:65 +#: core/models/data.py:65 msgid "Patterns (one per line) matching files to ignore when syncing" msgstr "" "Patrones (uno por línea) que coinciden con los archivos para ignorarlos al " "sincronizar" -#: netbox/core/models/data.py:68 netbox/extras/models/models.py:534 +#: core/models/data.py:68 extras/models/models.py:534 msgid "parameters" msgstr "parámetros" -#: netbox/core/models/data.py:73 +#: core/models/data.py:73 msgid "last synced" msgstr "sincronizado por última vez" -#: netbox/core/models/data.py:81 +#: core/models/data.py:81 msgid "data source" msgstr "fuente de datos" -#: netbox/core/models/data.py:82 +#: core/models/data.py:82 msgid "data sources" msgstr "fuentes de datos" -#: netbox/core/models/data.py:122 +#: core/models/data.py:122 #, python-brace-format msgid "Unknown backend type: {type}" msgstr "Tipo de backend desconocido: {type}" -#: netbox/core/models/data.py:164 +#: core/models/data.py:164 msgid "Cannot initiate sync; syncing already in progress." msgstr "" "No se puede iniciar la sincronización; la sincronización ya está en curso." -#: netbox/core/models/data.py:177 +#: core/models/data.py:177 msgid "" "There was an error initializing the backend. A dependency needs to be " "installed: " @@ -2165,1286 +1896,1224 @@ msgstr "" "Se ha producido un error al inicializar el backend. Es necesario instalar " "una dependencia: " -#: netbox/core/models/data.py:270 netbox/core/models/files.py:31 -#: netbox/netbox/models/features.py:59 +#: core/models/data.py:270 core/models/files.py:31 +#: netbox/models/features.py:59 msgid "last updated" msgstr "última actualización" -#: netbox/core/models/data.py:280 netbox/dcim/models/cables.py:444 +#: core/models/data.py:280 dcim/models/cables.py:444 msgid "path" msgstr "ruta" -#: netbox/core/models/data.py:283 +#: core/models/data.py:283 msgid "File path relative to the data source's root" msgstr "Ruta del archivo relativa a la raíz de la fuente de datos" -#: netbox/core/models/data.py:287 netbox/ipam/models/ip.py:503 +#: core/models/data.py:287 ipam/models/ip.py:503 msgid "size" msgstr "tamaño" -#: netbox/core/models/data.py:290 +#: core/models/data.py:290 msgid "hash" msgstr "picadillo" -#: netbox/core/models/data.py:294 +#: core/models/data.py:294 msgid "Length must be 64 hexadecimal characters." msgstr "La longitud debe ser de 64 caracteres hexadecimales." -#: netbox/core/models/data.py:296 +#: core/models/data.py:296 msgid "SHA256 hash of the file data" msgstr "Hash SHA256 de los datos del archivo" -#: netbox/core/models/data.py:313 +#: core/models/data.py:313 msgid "data file" msgstr "archivo de datos" -#: netbox/core/models/data.py:314 +#: core/models/data.py:314 msgid "data files" msgstr "archivos de datos" -#: netbox/core/models/data.py:401 +#: core/models/data.py:401 msgid "auto sync record" msgstr "registro de sincronización automática" -#: netbox/core/models/data.py:402 +#: core/models/data.py:402 msgid "auto sync records" msgstr "sincronización automática de registros" -#: netbox/core/models/files.py:37 +#: core/models/files.py:37 msgid "file root" msgstr "raíz del archivo" -#: netbox/core/models/files.py:42 +#: core/models/files.py:42 msgid "file path" msgstr "ruta del archivo" -#: netbox/core/models/files.py:44 +#: core/models/files.py:44 msgid "File path relative to the designated root path" msgstr "Ruta del archivo relativa a la ruta raíz designada" -#: netbox/core/models/files.py:61 +#: core/models/files.py:61 msgid "managed file" msgstr "archivo gestionado" -#: netbox/core/models/files.py:62 +#: core/models/files.py:62 msgid "managed files" msgstr "archivos gestionados" -#: netbox/core/models/jobs.py:53 +#: core/models/jobs.py:53 msgid "scheduled" msgstr "programado" -#: netbox/core/models/jobs.py:58 +#: core/models/jobs.py:58 msgid "interval" msgstr "intervalo" -#: netbox/core/models/jobs.py:64 +#: core/models/jobs.py:64 msgid "Recurrence interval (in minutes)" msgstr "Intervalo de recurrencia (en minutos)" -#: netbox/core/models/jobs.py:67 +#: core/models/jobs.py:67 msgid "started" msgstr "iniciado" -#: netbox/core/models/jobs.py:72 +#: core/models/jobs.py:72 msgid "completed" msgstr "completado" -#: netbox/core/models/jobs.py:90 netbox/extras/models/models.py:101 -#: netbox/extras/models/staging.py:87 +#: core/models/jobs.py:90 extras/models/models.py:101 +#: extras/models/staging.py:87 msgid "data" msgstr "dato" -#: netbox/core/models/jobs.py:95 +#: core/models/jobs.py:95 msgid "error" msgstr "error" -#: netbox/core/models/jobs.py:100 +#: core/models/jobs.py:100 msgid "job ID" msgstr "ID de trabajo" -#: netbox/core/models/jobs.py:111 +#: core/models/jobs.py:111 msgid "job" msgstr "trabajo" -#: netbox/core/models/jobs.py:112 +#: core/models/jobs.py:112 msgid "jobs" msgstr "trabajos" -#: netbox/core/models/jobs.py:135 +#: core/models/jobs.py:135 #, python-brace-format msgid "Jobs cannot be assigned to this object type ({type})." msgstr "No se pueden asignar trabajos a este tipo de objeto ({type})." -#: netbox/core/models/jobs.py:185 +#: core/models/jobs.py:185 #, python-brace-format msgid "Invalid status for job termination. Choices are: {choices}" msgstr "" "Estado no válido para la terminación del trabajo. Las opciones son: " "{choices}" -#: netbox/core/models/jobs.py:216 +#: core/models/jobs.py:216 msgid "" "enqueue() cannot be called with values for both schedule_at and immediate." msgstr "" "no se puede llamar a enqueue () con valores tanto para schedule_at como para" " immediate." -#: netbox/core/signals.py:126 +#: core/signals.py:126 #, python-brace-format msgid "Deletion is prevented by a protection rule: {message}" msgstr "La eliminación se impide mediante una regla de protección: {message}" -#: netbox/core/tables/change_logging.py:25 -#: netbox/templates/account/profile.html:19 -#: netbox/templates/users/user.html:21 +#: core/tables/change_logging.py:25 templates/account/profile.html:19 +#: templates/users/user.html:21 msgid "Full Name" msgstr "Nombre completo" -#: netbox/core/tables/change_logging.py:37 netbox/core/tables/jobs.py:21 -#: netbox/extras/choices.py:41 netbox/extras/tables/tables.py:279 -#: netbox/extras/tables/tables.py:297 netbox/extras/tables/tables.py:329 -#: netbox/extras/tables/tables.py:409 netbox/extras/tables/tables.py:470 -#: netbox/extras/tables/tables.py:576 netbox/extras/tables/tables.py:616 -#: netbox/extras/tables/tables.py:653 netbox/netbox/tables/tables.py:244 -#: netbox/templates/core/objectchange.html:58 -#: netbox/templates/extras/eventrule.html:78 -#: netbox/templates/extras/journalentry.html:18 -#: netbox/tenancy/tables/contacts.py:93 netbox/vpn/tables/l2vpn.py:64 +#: core/tables/change_logging.py:37 core/tables/jobs.py:21 +#: extras/choices.py:41 extras/tables/tables.py:279 +#: extras/tables/tables.py:297 extras/tables/tables.py:329 +#: extras/tables/tables.py:409 extras/tables/tables.py:470 +#: extras/tables/tables.py:576 extras/tables/tables.py:616 +#: extras/tables/tables.py:653 netbox/tables/tables.py:244 +#: templates/core/objectchange.html:58 templates/extras/eventrule.html:78 +#: templates/extras/journalentry.html:18 tenancy/tables/contacts.py:93 +#: vpn/tables/l2vpn.py:64 msgid "Object" msgstr "Objeto" -#: netbox/core/tables/change_logging.py:42 -#: netbox/templates/core/objectchange.html:68 +#: core/tables/change_logging.py:42 templates/core/objectchange.html:68 msgid "Request ID" msgstr "ID de solicitud" -#: netbox/core/tables/config.py:21 netbox/users/forms/filtersets.py:44 -#: netbox/users/tables.py:39 +#: core/tables/config.py:21 users/forms/filtersets.py:44 users/tables.py:39 msgid "Is Active" msgstr "Está activo" -#: netbox/core/tables/data.py:50 netbox/templates/core/datafile.html:31 +#: core/tables/data.py:50 templates/core/datafile.html:31 msgid "Path" msgstr "Ruta" -#: netbox/core/tables/data.py:54 -#: netbox/templates/extras/inc/result_pending.html:7 +#: core/tables/data.py:54 templates/extras/inc/result_pending.html:7 msgid "Last updated" msgstr "Última actualización" -#: netbox/core/tables/jobs.py:10 netbox/core/tables/tasks.py:76 -#: netbox/dcim/tables/devicetypes.py:164 netbox/extras/tables/tables.py:216 -#: netbox/extras/tables/tables.py:460 netbox/netbox/tables/tables.py:189 -#: netbox/templates/dcim/virtualchassis_edit.html:52 -#: netbox/utilities/forms/forms.py:73 -#: netbox/wireless/tables/wirelesslink.py:17 +#: core/tables/jobs.py:10 core/tables/tasks.py:76 +#: dcim/tables/devicetypes.py:164 extras/tables/tables.py:216 +#: extras/tables/tables.py:460 netbox/tables/tables.py:189 +#: templates/dcim/virtualchassis_edit.html:52 utilities/forms/forms.py:73 +#: wireless/tables/wirelesslink.py:17 msgid "ID" msgstr "ID" -#: netbox/core/tables/jobs.py:35 +#: core/tables/jobs.py:35 msgid "Interval" msgstr "Intervalo" -#: netbox/core/tables/plugins.py:14 netbox/templates/vpn/ipsecprofile.html:44 -#: netbox/vpn/forms/bulk_edit.py:141 netbox/vpn/forms/bulk_import.py:172 -#: netbox/vpn/tables/crypto.py:61 +#: core/tables/plugins.py:14 templates/vpn/ipsecprofile.html:44 +#: vpn/forms/bulk_edit.py:141 vpn/forms/bulk_import.py:172 +#: vpn/tables/crypto.py:61 msgid "Version" msgstr "Versión" -#: netbox/core/tables/plugins.py:19 netbox/templates/core/datafile.html:38 +#: core/tables/plugins.py:19 templates/core/datafile.html:38 msgid "Last Updated" msgstr "Última actualización" -#: netbox/core/tables/plugins.py:23 +#: core/tables/plugins.py:23 msgid "Minimum NetBox Version" msgstr "Versión mínima de NetBox" -#: netbox/core/tables/plugins.py:27 +#: core/tables/plugins.py:27 msgid "Maximum NetBox Version" msgstr "Versión máxima de NetBox" -#: netbox/core/tables/plugins.py:31 netbox/core/tables/plugins.py:74 +#: core/tables/plugins.py:31 core/tables/plugins.py:74 msgid "No plugin data found" msgstr "No se han encontrado datos de complementos" -#: netbox/core/tables/plugins.py:48 netbox/templates/core/plugin.html:61 +#: core/tables/plugins.py:48 templates/core/plugin.html:62 msgid "Author" msgstr "autor" -#: netbox/core/tables/plugins.py:54 +#: core/tables/plugins.py:54 msgid "Installed" msgstr "Instalado" -#: netbox/core/tables/plugins.py:57 netbox/templates/core/plugin.html:83 +#: core/tables/plugins.py:57 templates/core/plugin.html:84 msgid "Certified" msgstr "Certificado" -#: netbox/core/tables/plugins.py:60 +#: core/tables/plugins.py:60 msgid "Published" msgstr "Publicado" -#: netbox/core/tables/plugins.py:66 +#: core/tables/plugins.py:66 msgid "Installed Version" msgstr "Versión instalada" -#: netbox/core/tables/plugins.py:70 +#: core/tables/plugins.py:70 msgid "Latest Version" msgstr "Versión más reciente" -#: netbox/core/tables/tasks.py:18 +#: core/tables/tasks.py:18 msgid "Oldest Task" msgstr "Tarea más antigua" -#: netbox/core/tables/tasks.py:42 netbox/templates/core/rq_worker_list.html:39 +#: core/tables/tasks.py:42 templates/core/rq_worker_list.html:39 msgid "Workers" msgstr "Trabajadores" -#: netbox/core/tables/tasks.py:46 netbox/vpn/tables/tunnels.py:88 +#: core/tables/tasks.py:46 vpn/tables/tunnels.py:88 msgid "Host" msgstr "Anfitrión" -#: netbox/core/tables/tasks.py:50 netbox/ipam/forms/filtersets.py:535 +#: core/tables/tasks.py:50 ipam/forms/filtersets.py:535 msgid "Port" msgstr "Puerto" -#: netbox/core/tables/tasks.py:54 +#: core/tables/tasks.py:54 msgid "DB" msgstr "DB" -#: netbox/core/tables/tasks.py:58 +#: core/tables/tasks.py:58 msgid "Scheduler PID" msgstr "PID del planificador" -#: netbox/core/tables/tasks.py:62 +#: core/tables/tasks.py:62 msgid "No queues found" msgstr "No se han encontrado colas" -#: netbox/core/tables/tasks.py:82 +#: core/tables/tasks.py:82 msgid "Enqueued" msgstr "En cola" -#: netbox/core/tables/tasks.py:85 +#: core/tables/tasks.py:85 msgid "Ended" msgstr "Finalizado" -#: netbox/core/tables/tasks.py:93 netbox/templates/core/rq_task.html:85 +#: core/tables/tasks.py:93 templates/core/rq_task.html:85 msgid "Callable" msgstr "Invocable" -#: netbox/core/tables/tasks.py:97 +#: core/tables/tasks.py:97 msgid "No tasks found" msgstr "No se ha encontrado ninguna tarea" -#: netbox/core/tables/tasks.py:118 netbox/templates/core/rq_worker.html:47 +#: core/tables/tasks.py:118 templates/core/rq_worker.html:47 msgid "State" msgstr "Estado" -#: netbox/core/tables/tasks.py:121 netbox/templates/core/rq_worker.html:51 +#: core/tables/tasks.py:121 templates/core/rq_worker.html:51 msgid "Birth" msgstr "Nacimiento" -#: netbox/core/tables/tasks.py:124 netbox/templates/core/rq_worker.html:59 +#: core/tables/tasks.py:124 templates/core/rq_worker.html:59 msgid "PID" msgstr "PAGADO" -#: netbox/core/tables/tasks.py:128 +#: core/tables/tasks.py:128 msgid "No workers found" msgstr "No se encontró ningún trabajador" -#: netbox/core/views.py:90 +#: core/views.py:90 #, python-brace-format msgid "Queued job #{id} to sync {datasource}" msgstr "N.º de trabajo en cola{id} sincronizar {datasource}" -#: netbox/core/views.py:319 +#: core/views.py:319 #, python-brace-format msgid "Restored configuration revision #{id}" msgstr "Revisión de la configuración restaurada #{id}" -#: netbox/core/views.py:412 netbox/core/views.py:455 netbox/core/views.py:531 +#: core/views.py:412 core/views.py:455 core/views.py:531 #, python-brace-format msgid "Job {job_id} not found" msgstr "Trabajo {job_id} no se encontró" -#: netbox/core/views.py:463 +#: core/views.py:463 #, python-brace-format msgid "Job {id} has been deleted." msgstr "Trabajo {id} se ha eliminado." -#: netbox/core/views.py:465 +#: core/views.py:465 #, python-brace-format msgid "Error deleting job {id}: {error}" msgstr "Error al eliminar el trabajo {id}: {error}" -#: netbox/core/views.py:478 netbox/core/views.py:496 +#: core/views.py:478 core/views.py:496 #, python-brace-format msgid "Job {id} not found." msgstr "Trabajo {id} no se encontró." -#: netbox/core/views.py:484 +#: core/views.py:484 #, python-brace-format msgid "Job {id} has been re-enqueued." msgstr "Trabajo {id} se ha vuelto a poner en cola." -#: netbox/core/views.py:519 +#: core/views.py:519 #, python-brace-format msgid "Job {id} has been enqueued." msgstr "Trabajo {id} ha sido puesto en cola." -#: netbox/core/views.py:538 +#: core/views.py:538 #, python-brace-format msgid "Job {id} has been stopped." msgstr "Trabajo {id} se ha detenido." -#: netbox/core/views.py:540 +#: core/views.py:540 #, python-brace-format msgid "Failed to stop job {id}" msgstr "No se pudo detener el trabajo {id}" -#: netbox/core/views.py:678 +#: core/views.py:678 msgid "Plugins catalog could not be loaded" msgstr "No se pudo cargar el catálogo de complementos" -#: netbox/core/views.py:712 +#: core/views.py:712 #, python-brace-format msgid "Plugin {name} not found" msgstr "Plugin {name} no se encontró" -#: netbox/dcim/api/serializers_/devices.py:49 -#: netbox/dcim/api/serializers_/devicetypes.py:25 +#: dcim/api/serializers_/devices.py:49 dcim/api/serializers_/devicetypes.py:25 msgid "Position (U)" msgstr "Posición (U)" -#: netbox/dcim/api/serializers_/racks.py:112 -#: netbox/templates/dcim/rack.html:28 +#: dcim/api/serializers_/racks.py:112 templates/dcim/rack.html:28 msgid "Facility ID" msgstr "ID de la instalación" -#: netbox/dcim/choices.py:21 netbox/virtualization/choices.py:21 +#: dcim/choices.py:21 virtualization/choices.py:21 msgid "Staging" msgstr "Puesta en escena" -#: netbox/dcim/choices.py:23 netbox/dcim/choices.py:189 -#: netbox/dcim/choices.py:240 netbox/dcim/choices.py:1531 -#: netbox/virtualization/choices.py:23 netbox/virtualization/choices.py:48 +#: dcim/choices.py:23 dcim/choices.py:189 dcim/choices.py:240 +#: dcim/choices.py:1531 virtualization/choices.py:23 +#: virtualization/choices.py:48 msgid "Decommissioning" msgstr "Desmantelamiento" -#: netbox/dcim/choices.py:24 +#: dcim/choices.py:24 msgid "Retired" msgstr "Retirado" -#: netbox/dcim/choices.py:65 +#: dcim/choices.py:65 msgid "2-post frame" msgstr "Marco de 2 postes" -#: netbox/dcim/choices.py:66 +#: dcim/choices.py:66 msgid "4-post frame" msgstr "Marco de 4 postes" -#: netbox/dcim/choices.py:67 +#: dcim/choices.py:67 msgid "4-post cabinet" msgstr "Armario de 4 postes" -#: netbox/dcim/choices.py:68 +#: dcim/choices.py:68 msgid "Wall-mounted frame" msgstr "Marco de pared" -#: netbox/dcim/choices.py:69 +#: dcim/choices.py:69 msgid "Wall-mounted frame (vertical)" msgstr "Marco de pared (vertical)" -#: netbox/dcim/choices.py:70 +#: dcim/choices.py:70 msgid "Wall-mounted cabinet" msgstr "Armario de pared" -#: netbox/dcim/choices.py:71 +#: dcim/choices.py:71 msgid "Wall-mounted cabinet (vertical)" msgstr "Armario de pared (vertical)" -#: netbox/dcim/choices.py:83 netbox/dcim/choices.py:84 -#: netbox/dcim/choices.py:85 netbox/dcim/choices.py:86 +#: dcim/choices.py:83 dcim/choices.py:84 dcim/choices.py:85 dcim/choices.py:86 #, python-brace-format msgid "{n} inches" msgstr "{n} pulgadas" -#: netbox/dcim/choices.py:100 netbox/ipam/choices.py:32 -#: netbox/ipam/choices.py:50 netbox/ipam/choices.py:70 -#: netbox/ipam/choices.py:155 netbox/wireless/choices.py:26 +#: dcim/choices.py:100 ipam/choices.py:32 ipam/choices.py:50 +#: ipam/choices.py:70 ipam/choices.py:155 wireless/choices.py:26 msgid "Reserved" msgstr "Reservado" -#: netbox/dcim/choices.py:101 netbox/templates/dcim/device.html:259 +#: dcim/choices.py:101 templates/dcim/device.html:259 msgid "Available" msgstr "Disponible" -#: netbox/dcim/choices.py:104 netbox/ipam/choices.py:33 -#: netbox/ipam/choices.py:51 netbox/ipam/choices.py:71 -#: netbox/ipam/choices.py:156 netbox/wireless/choices.py:28 +#: dcim/choices.py:104 ipam/choices.py:33 ipam/choices.py:51 +#: ipam/choices.py:71 ipam/choices.py:156 wireless/choices.py:28 msgid "Deprecated" msgstr "Obsoleto" -#: netbox/dcim/choices.py:114 -#: netbox/templates/dcim/inc/panels/racktype_dimensions.html:41 +#: dcim/choices.py:114 templates/dcim/inc/panels/racktype_dimensions.html:41 msgid "Millimeters" msgstr "Milímetros" -#: netbox/dcim/choices.py:115 netbox/dcim/choices.py:1553 +#: dcim/choices.py:115 dcim/choices.py:1553 msgid "Inches" msgstr "Pulgadas" -#: netbox/dcim/choices.py:136 netbox/dcim/choices.py:207 -#: netbox/dcim/choices.py:254 +#: dcim/choices.py:136 dcim/choices.py:207 dcim/choices.py:254 msgid "Front to rear" msgstr "De adelante hacia atrás" -#: netbox/dcim/choices.py:137 netbox/dcim/choices.py:208 -#: netbox/dcim/choices.py:255 +#: dcim/choices.py:137 dcim/choices.py:208 dcim/choices.py:255 msgid "Rear to front" msgstr "De atrás hacia adelante" -#: netbox/dcim/choices.py:151 netbox/dcim/forms/bulk_edit.py:68 -#: netbox/dcim/forms/bulk_edit.py:87 netbox/dcim/forms/bulk_edit.py:173 -#: netbox/dcim/forms/bulk_edit.py:1405 netbox/dcim/forms/bulk_import.py:60 -#: netbox/dcim/forms/bulk_import.py:74 netbox/dcim/forms/bulk_import.py:137 -#: netbox/dcim/forms/bulk_import.py:566 netbox/dcim/forms/bulk_import.py:833 -#: netbox/dcim/forms/bulk_import.py:1088 netbox/dcim/forms/filtersets.py:234 -#: netbox/dcim/forms/model_forms.py:74 netbox/dcim/forms/model_forms.py:93 -#: netbox/dcim/forms/model_forms.py:170 netbox/dcim/forms/model_forms.py:1062 -#: netbox/dcim/forms/model_forms.py:1502 -#: netbox/dcim/forms/object_import.py:176 netbox/dcim/tables/devices.py:656 -#: netbox/dcim/tables/devices.py:869 netbox/dcim/tables/devices.py:954 -#: netbox/extras/tables/tables.py:223 netbox/ipam/tables/fhrp.py:59 -#: netbox/ipam/tables/ip.py:378 netbox/ipam/tables/services.py:44 -#: netbox/templates/dcim/interface.html:102 -#: netbox/templates/dcim/interface.html:309 -#: netbox/templates/dcim/location.html:41 netbox/templates/dcim/region.html:37 -#: netbox/templates/dcim/sitegroup.html:37 -#: netbox/templates/ipam/service.html:28 -#: netbox/templates/tenancy/contactgroup.html:29 -#: netbox/templates/tenancy/tenantgroup.html:37 -#: netbox/templates/virtualization/vminterface.html:39 -#: netbox/templates/wireless/wirelesslangroup.html:37 -#: netbox/tenancy/forms/bulk_edit.py:27 netbox/tenancy/forms/bulk_edit.py:61 -#: netbox/tenancy/forms/bulk_import.py:24 -#: netbox/tenancy/forms/bulk_import.py:58 -#: netbox/tenancy/forms/model_forms.py:25 -#: netbox/tenancy/forms/model_forms.py:68 -#: netbox/virtualization/forms/bulk_edit.py:207 -#: netbox/virtualization/forms/bulk_import.py:151 -#: netbox/virtualization/tables/virtualmachines.py:162 -#: netbox/wireless/forms/bulk_edit.py:24 -#: netbox/wireless/forms/bulk_import.py:21 -#: netbox/wireless/forms/model_forms.py:21 +#: dcim/choices.py:151 dcim/forms/bulk_edit.py:68 dcim/forms/bulk_edit.py:87 +#: dcim/forms/bulk_edit.py:173 dcim/forms/bulk_edit.py:1405 +#: dcim/forms/bulk_import.py:60 dcim/forms/bulk_import.py:74 +#: dcim/forms/bulk_import.py:137 dcim/forms/bulk_import.py:566 +#: dcim/forms/bulk_import.py:833 dcim/forms/bulk_import.py:1088 +#: dcim/forms/filtersets.py:234 dcim/forms/model_forms.py:74 +#: dcim/forms/model_forms.py:93 dcim/forms/model_forms.py:170 +#: dcim/forms/model_forms.py:1062 dcim/forms/model_forms.py:1502 +#: dcim/forms/object_import.py:176 dcim/tables/devices.py:656 +#: dcim/tables/devices.py:869 dcim/tables/devices.py:954 +#: extras/tables/tables.py:223 ipam/tables/fhrp.py:59 ipam/tables/ip.py:378 +#: ipam/tables/services.py:44 templates/dcim/interface.html:102 +#: templates/dcim/interface.html:309 templates/dcim/location.html:41 +#: templates/dcim/region.html:37 templates/dcim/sitegroup.html:37 +#: templates/ipam/service.html:28 templates/tenancy/contactgroup.html:29 +#: templates/tenancy/tenantgroup.html:37 +#: templates/virtualization/vminterface.html:39 +#: templates/wireless/wirelesslangroup.html:37 tenancy/forms/bulk_edit.py:27 +#: tenancy/forms/bulk_edit.py:61 tenancy/forms/bulk_import.py:24 +#: tenancy/forms/bulk_import.py:58 tenancy/forms/model_forms.py:25 +#: tenancy/forms/model_forms.py:68 virtualization/forms/bulk_edit.py:207 +#: virtualization/forms/bulk_import.py:151 +#: virtualization/tables/virtualmachines.py:162 wireless/forms/bulk_edit.py:24 +#: wireless/forms/bulk_import.py:21 wireless/forms/model_forms.py:21 msgid "Parent" msgstr "Padre" -#: netbox/dcim/choices.py:152 +#: dcim/choices.py:152 msgid "Child" msgstr "Niño" -#: netbox/dcim/choices.py:166 netbox/templates/dcim/device.html:340 -#: netbox/templates/dcim/rack.html:133 -#: netbox/templates/dcim/rack_elevation_list.html:20 -#: netbox/templates/dcim/rackreservation.html:76 +#: dcim/choices.py:166 templates/dcim/device.html:340 +#: templates/dcim/rack.html:133 templates/dcim/rack_elevation_list.html:20 +#: templates/dcim/rackreservation.html:76 msgid "Front" msgstr "Delantera" -#: netbox/dcim/choices.py:167 netbox/templates/dcim/device.html:346 -#: netbox/templates/dcim/rack.html:139 -#: netbox/templates/dcim/rack_elevation_list.html:21 -#: netbox/templates/dcim/rackreservation.html:82 +#: dcim/choices.py:167 templates/dcim/device.html:346 +#: templates/dcim/rack.html:139 templates/dcim/rack_elevation_list.html:21 +#: templates/dcim/rackreservation.html:82 msgid "Rear" msgstr "Trasera" -#: netbox/dcim/choices.py:186 netbox/dcim/choices.py:238 -#: netbox/virtualization/choices.py:46 +#: dcim/choices.py:186 dcim/choices.py:238 virtualization/choices.py:46 msgid "Staged" msgstr "Escenificado" -#: netbox/dcim/choices.py:188 +#: dcim/choices.py:188 msgid "Inventory" msgstr "Inventario" -#: netbox/dcim/choices.py:209 netbox/dcim/choices.py:256 +#: dcim/choices.py:209 dcim/choices.py:256 msgid "Left to right" msgstr "De izquierda a derecha" -#: netbox/dcim/choices.py:210 netbox/dcim/choices.py:257 +#: dcim/choices.py:210 dcim/choices.py:257 msgid "Right to left" msgstr "De derecha a izquierda" -#: netbox/dcim/choices.py:211 netbox/dcim/choices.py:258 +#: dcim/choices.py:211 dcim/choices.py:258 msgid "Side to rear" msgstr "De lado a atrás" -#: netbox/dcim/choices.py:212 +#: dcim/choices.py:212 msgid "Rear to side" msgstr "De atrás hacia los lados" -#: netbox/dcim/choices.py:213 +#: dcim/choices.py:213 msgid "Bottom to top" msgstr "De abajo hacia arriba" -#: netbox/dcim/choices.py:214 +#: dcim/choices.py:214 msgid "Top to bottom" msgstr "De arriba a abajo" -#: netbox/dcim/choices.py:215 netbox/dcim/choices.py:259 -#: netbox/dcim/choices.py:1303 +#: dcim/choices.py:215 dcim/choices.py:259 dcim/choices.py:1303 msgid "Passive" msgstr "Pasivo" -#: netbox/dcim/choices.py:216 +#: dcim/choices.py:216 msgid "Mixed" msgstr "Mezclado" -#: netbox/dcim/choices.py:484 netbox/dcim/choices.py:733 +#: dcim/choices.py:484 dcim/choices.py:733 msgid "NEMA (Non-locking)" msgstr "NEMA (sin bloqueo)" -#: netbox/dcim/choices.py:506 netbox/dcim/choices.py:755 +#: dcim/choices.py:506 dcim/choices.py:755 msgid "NEMA (Locking)" msgstr "NEMA (Bloqueo)" -#: netbox/dcim/choices.py:530 netbox/dcim/choices.py:779 +#: dcim/choices.py:530 dcim/choices.py:779 msgid "California Style" msgstr "Estilo californiano" -#: netbox/dcim/choices.py:538 +#: dcim/choices.py:538 msgid "International/ITA" msgstr "Internacional/ITA" -#: netbox/dcim/choices.py:573 netbox/dcim/choices.py:814 +#: dcim/choices.py:573 dcim/choices.py:814 msgid "Proprietary" msgstr "Proprietario" -#: netbox/dcim/choices.py:581 netbox/dcim/choices.py:824 -#: netbox/dcim/choices.py:1219 netbox/dcim/choices.py:1221 -#: netbox/dcim/choices.py:1447 netbox/dcim/choices.py:1449 -#: netbox/netbox/navigation/menu.py:200 +#: dcim/choices.py:581 dcim/choices.py:824 dcim/choices.py:1219 +#: dcim/choices.py:1221 dcim/choices.py:1447 dcim/choices.py:1449 +#: netbox/navigation/menu.py:200 msgid "Other" msgstr "Otros" -#: netbox/dcim/choices.py:787 +#: dcim/choices.py:787 msgid "ITA/International" msgstr "ITA/Internacional" -#: netbox/dcim/choices.py:854 +#: dcim/choices.py:854 msgid "Physical" msgstr "Físico" -#: netbox/dcim/choices.py:855 netbox/dcim/choices.py:1023 +#: dcim/choices.py:855 dcim/choices.py:1023 msgid "Virtual" msgstr "Virtual" -#: netbox/dcim/choices.py:856 netbox/dcim/choices.py:1097 -#: netbox/dcim/forms/bulk_edit.py:1515 netbox/dcim/forms/filtersets.py:1330 -#: netbox/dcim/forms/model_forms.py:988 netbox/dcim/forms/model_forms.py:1397 -#: netbox/netbox/navigation/menu.py:140 netbox/netbox/navigation/menu.py:144 -#: netbox/templates/dcim/interface.html:210 +#: dcim/choices.py:856 dcim/choices.py:1097 dcim/forms/bulk_edit.py:1515 +#: dcim/forms/filtersets.py:1330 dcim/forms/model_forms.py:988 +#: dcim/forms/model_forms.py:1397 netbox/navigation/menu.py:140 +#: netbox/navigation/menu.py:144 templates/dcim/interface.html:210 msgid "Wireless" msgstr "inalámbrico" -#: netbox/dcim/choices.py:1021 +#: dcim/choices.py:1021 msgid "Virtual interfaces" msgstr "Interfaces virtuales" -#: netbox/dcim/choices.py:1024 netbox/dcim/forms/bulk_edit.py:1410 -#: netbox/dcim/forms/bulk_import.py:840 netbox/dcim/forms/model_forms.py:974 -#: netbox/dcim/tables/devices.py:660 netbox/templates/dcim/interface.html:106 -#: netbox/templates/virtualization/vminterface.html:43 -#: netbox/virtualization/forms/bulk_edit.py:212 -#: netbox/virtualization/forms/bulk_import.py:158 -#: netbox/virtualization/tables/virtualmachines.py:166 +#: dcim/choices.py:1024 dcim/forms/bulk_edit.py:1410 +#: dcim/forms/bulk_import.py:840 dcim/forms/model_forms.py:974 +#: dcim/tables/devices.py:660 templates/dcim/interface.html:106 +#: templates/virtualization/vminterface.html:43 +#: virtualization/forms/bulk_edit.py:212 +#: virtualization/forms/bulk_import.py:158 +#: virtualization/tables/virtualmachines.py:166 msgid "Bridge" msgstr "puente" -#: netbox/dcim/choices.py:1025 +#: dcim/choices.py:1025 msgid "Link Aggregation Group (LAG)" msgstr "Grupo de agregación de enlaces (LAG)" -#: netbox/dcim/choices.py:1029 +#: dcim/choices.py:1029 msgid "Ethernet (fixed)" msgstr "Ethernet (fijo)" -#: netbox/dcim/choices.py:1044 +#: dcim/choices.py:1044 msgid "Ethernet (modular)" msgstr "Ethernet (modular)" -#: netbox/dcim/choices.py:1081 +#: dcim/choices.py:1081 msgid "Ethernet (backplane)" msgstr "Ethernet (placa base)" -#: netbox/dcim/choices.py:1113 +#: dcim/choices.py:1113 msgid "Cellular" msgstr "Celular" -#: netbox/dcim/choices.py:1165 netbox/dcim/forms/filtersets.py:383 -#: netbox/dcim/forms/filtersets.py:809 netbox/dcim/forms/filtersets.py:963 -#: netbox/dcim/forms/filtersets.py:1542 -#: netbox/templates/dcim/inventoryitem.html:52 -#: netbox/templates/dcim/virtualchassis_edit.html:54 +#: dcim/choices.py:1165 dcim/forms/filtersets.py:383 +#: dcim/forms/filtersets.py:809 dcim/forms/filtersets.py:963 +#: dcim/forms/filtersets.py:1542 templates/dcim/inventoryitem.html:52 +#: templates/dcim/virtualchassis_edit.html:54 msgid "Serial" msgstr "serie" -#: netbox/dcim/choices.py:1180 +#: dcim/choices.py:1180 msgid "Coaxial" msgstr "Coaxial" -#: netbox/dcim/choices.py:1200 +#: dcim/choices.py:1200 msgid "Stacking" msgstr "Apilamiento" -#: netbox/dcim/choices.py:1250 +#: dcim/choices.py:1250 msgid "Half" msgstr "Mitad" -#: netbox/dcim/choices.py:1251 +#: dcim/choices.py:1251 msgid "Full" msgstr "Lleno" -#: netbox/dcim/choices.py:1252 netbox/netbox/preferences.py:31 -#: netbox/wireless/choices.py:480 +#: dcim/choices.py:1252 netbox/preferences.py:31 wireless/choices.py:480 msgid "Auto" msgstr "Auto" -#: netbox/dcim/choices.py:1263 +#: dcim/choices.py:1263 msgid "Access" msgstr "Acceso" -#: netbox/dcim/choices.py:1264 netbox/ipam/tables/vlans.py:172 -#: netbox/ipam/tables/vlans.py:217 -#: netbox/templates/dcim/inc/interface_vlans_table.html:7 +#: dcim/choices.py:1264 ipam/tables/vlans.py:172 ipam/tables/vlans.py:217 +#: templates/dcim/inc/interface_vlans_table.html:7 msgid "Tagged" msgstr "Etiquetado" -#: netbox/dcim/choices.py:1265 +#: dcim/choices.py:1265 msgid "Tagged (All)" msgstr "Etiquetado (Todos)" -#: netbox/dcim/choices.py:1294 +#: dcim/choices.py:1294 msgid "IEEE Standard" msgstr "Estándar IEEE" -#: netbox/dcim/choices.py:1305 +#: dcim/choices.py:1305 msgid "Passive 24V (2-pair)" msgstr "Pasivo 24 V (2 pares)" -#: netbox/dcim/choices.py:1306 +#: dcim/choices.py:1306 msgid "Passive 24V (4-pair)" msgstr "Pasivo de 24 V (4 pares)" -#: netbox/dcim/choices.py:1307 +#: dcim/choices.py:1307 msgid "Passive 48V (2-pair)" msgstr "Pasivo 48 V (2 pares)" -#: netbox/dcim/choices.py:1308 +#: dcim/choices.py:1308 msgid "Passive 48V (4-pair)" msgstr "Pasivo de 48 V (4 pares)" -#: netbox/dcim/choices.py:1378 netbox/dcim/choices.py:1488 +#: dcim/choices.py:1378 dcim/choices.py:1488 msgid "Copper" msgstr "Cobre" -#: netbox/dcim/choices.py:1401 +#: dcim/choices.py:1401 msgid "Fiber Optic" msgstr "Fibra óptica" -#: netbox/dcim/choices.py:1434 netbox/dcim/choices.py:1517 +#: dcim/choices.py:1434 dcim/choices.py:1517 msgid "USB" msgstr "USB" -#: netbox/dcim/choices.py:1504 +#: dcim/choices.py:1504 msgid "Fiber" msgstr "Fibra" -#: netbox/dcim/choices.py:1529 netbox/dcim/forms/filtersets.py:1227 +#: dcim/choices.py:1529 dcim/forms/filtersets.py:1227 msgid "Connected" msgstr "Conectado" -#: netbox/dcim/choices.py:1548 netbox/wireless/choices.py:497 +#: dcim/choices.py:1548 wireless/choices.py:497 msgid "Kilometers" msgstr "Kilómetros" -#: netbox/dcim/choices.py:1549 netbox/templates/dcim/cable_trace.html:65 -#: netbox/wireless/choices.py:498 +#: dcim/choices.py:1549 templates/dcim/cable_trace.html:65 +#: wireless/choices.py:498 msgid "Meters" msgstr "Medidores" -#: netbox/dcim/choices.py:1550 +#: dcim/choices.py:1550 msgid "Centimeters" msgstr "Centímetros" -#: netbox/dcim/choices.py:1551 netbox/wireless/choices.py:499 +#: dcim/choices.py:1551 wireless/choices.py:499 msgid "Miles" msgstr "Millas" -#: netbox/dcim/choices.py:1552 netbox/templates/dcim/cable_trace.html:66 -#: netbox/wireless/choices.py:500 +#: dcim/choices.py:1552 templates/dcim/cable_trace.html:66 +#: wireless/choices.py:500 msgid "Feet" msgstr "Pies" -#: netbox/dcim/choices.py:1568 netbox/templates/dcim/device.html:327 -#: netbox/templates/dcim/rack.html:107 +#: dcim/choices.py:1568 templates/dcim/device.html:327 +#: templates/dcim/rack.html:107 msgid "Kilograms" msgstr "Kilogramos" -#: netbox/dcim/choices.py:1569 +#: dcim/choices.py:1569 msgid "Grams" msgstr "Gramos" -#: netbox/dcim/choices.py:1570 netbox/templates/dcim/device.html:328 -#: netbox/templates/dcim/rack.html:108 +#: dcim/choices.py:1570 templates/dcim/device.html:328 +#: templates/dcim/rack.html:108 msgid "Pounds" msgstr "Libras" -#: netbox/dcim/choices.py:1571 +#: dcim/choices.py:1571 msgid "Ounces" msgstr "Onzas" -#: netbox/dcim/choices.py:1618 +#: dcim/choices.py:1618 msgid "Redundant" msgstr "Redundante" -#: netbox/dcim/choices.py:1639 +#: dcim/choices.py:1639 msgid "Single phase" msgstr "Monofásico" -#: netbox/dcim/choices.py:1640 +#: dcim/choices.py:1640 msgid "Three-phase" msgstr "Trifásico" -#: netbox/dcim/fields.py:45 +#: dcim/fields.py:45 #, python-brace-format msgid "Invalid MAC address format: {value}" msgstr "Formato de dirección MAC no válido: {value}" -#: netbox/dcim/fields.py:71 +#: dcim/fields.py:71 #, python-brace-format msgid "Invalid WWN format: {value}" msgstr "Formato WWN no válido: {value}" -#: netbox/dcim/filtersets.py:86 +#: dcim/filtersets.py:86 msgid "Parent region (ID)" msgstr "Región principal (ID)" -#: netbox/dcim/filtersets.py:92 +#: dcim/filtersets.py:92 msgid "Parent region (slug)" msgstr "Región principal (babosa)" -#: netbox/dcim/filtersets.py:116 +#: dcim/filtersets.py:116 msgid "Parent site group (ID)" msgstr "Grupo de sitio principal (ID)" -#: netbox/dcim/filtersets.py:122 +#: dcim/filtersets.py:122 msgid "Parent site group (slug)" msgstr "Grupo de sitios principal (slug)" -#: netbox/dcim/filtersets.py:164 netbox/extras/filtersets.py:364 -#: netbox/ipam/filtersets.py:841 netbox/ipam/filtersets.py:993 +#: dcim/filtersets.py:164 extras/filtersets.py:364 ipam/filtersets.py:841 +#: ipam/filtersets.py:993 msgid "Group (ID)" msgstr "Grupo (ID)" -#: netbox/dcim/filtersets.py:170 +#: dcim/filtersets.py:170 msgid "Group (slug)" msgstr "Grupo (babosa)" -#: netbox/dcim/filtersets.py:176 netbox/dcim/filtersets.py:181 +#: dcim/filtersets.py:176 dcim/filtersets.py:181 msgid "AS (ID)" msgstr "COMO (ID)" -#: netbox/dcim/filtersets.py:246 +#: dcim/filtersets.py:246 msgid "Parent location (ID)" msgstr "Ubicación principal (ID)" -#: netbox/dcim/filtersets.py:252 +#: dcim/filtersets.py:252 msgid "Parent location (slug)" msgstr "Ubicación principal (slug)" -#: netbox/dcim/filtersets.py:258 netbox/dcim/filtersets.py:369 -#: netbox/dcim/filtersets.py:490 netbox/dcim/filtersets.py:1057 -#: netbox/dcim/filtersets.py:1404 netbox/dcim/filtersets.py:2182 +#: dcim/filtersets.py:258 dcim/filtersets.py:369 dcim/filtersets.py:490 +#: dcim/filtersets.py:1057 dcim/filtersets.py:1404 dcim/filtersets.py:2182 msgid "Location (ID)" msgstr "Ubicación (ID)" -#: netbox/dcim/filtersets.py:265 netbox/dcim/filtersets.py:376 -#: netbox/dcim/filtersets.py:497 netbox/dcim/filtersets.py:1410 -#: netbox/extras/filtersets.py:542 +#: dcim/filtersets.py:265 dcim/filtersets.py:376 dcim/filtersets.py:497 +#: dcim/filtersets.py:1410 extras/filtersets.py:542 msgid "Location (slug)" msgstr "Ubicación (babosa)" -#: netbox/dcim/filtersets.py:296 netbox/dcim/filtersets.py:381 -#: netbox/dcim/filtersets.py:539 netbox/dcim/filtersets.py:678 -#: netbox/dcim/filtersets.py:882 netbox/dcim/filtersets.py:933 -#: netbox/dcim/filtersets.py:973 netbox/dcim/filtersets.py:1306 -#: netbox/dcim/filtersets.py:1840 +#: dcim/filtersets.py:296 dcim/filtersets.py:381 dcim/filtersets.py:539 +#: dcim/filtersets.py:678 dcim/filtersets.py:882 dcim/filtersets.py:933 +#: dcim/filtersets.py:973 dcim/filtersets.py:1306 dcim/filtersets.py:1840 msgid "Manufacturer (ID)" msgstr "Fabricante (ID)" -#: netbox/dcim/filtersets.py:302 netbox/dcim/filtersets.py:387 -#: netbox/dcim/filtersets.py:545 netbox/dcim/filtersets.py:684 -#: netbox/dcim/filtersets.py:888 netbox/dcim/filtersets.py:939 -#: netbox/dcim/filtersets.py:979 netbox/dcim/filtersets.py:1312 -#: netbox/dcim/filtersets.py:1846 +#: dcim/filtersets.py:302 dcim/filtersets.py:387 dcim/filtersets.py:545 +#: dcim/filtersets.py:684 dcim/filtersets.py:888 dcim/filtersets.py:939 +#: dcim/filtersets.py:979 dcim/filtersets.py:1312 dcim/filtersets.py:1846 msgid "Manufacturer (slug)" msgstr "Fabricante (babosa)" -#: netbox/dcim/filtersets.py:393 +#: dcim/filtersets.py:393 msgid "Rack type (slug)" msgstr "Tipo de bastidor (babosa)" -#: netbox/dcim/filtersets.py:397 +#: dcim/filtersets.py:397 msgid "Rack type (ID)" msgstr "Tipo de bastidor (ID)" -#: netbox/dcim/filtersets.py:411 netbox/dcim/filtersets.py:892 -#: netbox/dcim/filtersets.py:994 netbox/dcim/filtersets.py:1850 -#: netbox/ipam/filtersets.py:381 netbox/ipam/filtersets.py:493 -#: netbox/ipam/filtersets.py:1003 netbox/virtualization/filtersets.py:210 +#: dcim/filtersets.py:411 dcim/filtersets.py:892 dcim/filtersets.py:994 +#: dcim/filtersets.py:1850 ipam/filtersets.py:381 ipam/filtersets.py:493 +#: ipam/filtersets.py:1003 virtualization/filtersets.py:210 msgid "Role (ID)" msgstr "Función (ID)" -#: netbox/dcim/filtersets.py:417 netbox/dcim/filtersets.py:898 -#: netbox/dcim/filtersets.py:1000 netbox/dcim/filtersets.py:1856 -#: netbox/extras/filtersets.py:558 netbox/ipam/filtersets.py:387 -#: netbox/ipam/filtersets.py:499 netbox/ipam/filtersets.py:1009 -#: netbox/virtualization/filtersets.py:216 +#: dcim/filtersets.py:417 dcim/filtersets.py:898 dcim/filtersets.py:1000 +#: dcim/filtersets.py:1856 extras/filtersets.py:558 ipam/filtersets.py:387 +#: ipam/filtersets.py:499 ipam/filtersets.py:1009 +#: virtualization/filtersets.py:216 msgid "Role (slug)" msgstr "Rol (babosa)" -#: netbox/dcim/filtersets.py:447 netbox/dcim/filtersets.py:1062 -#: netbox/dcim/filtersets.py:1415 netbox/dcim/filtersets.py:2244 +#: dcim/filtersets.py:447 dcim/filtersets.py:1062 dcim/filtersets.py:1415 +#: dcim/filtersets.py:2244 msgid "Rack (ID)" msgstr "Rack (ID)" -#: netbox/dcim/filtersets.py:507 netbox/extras/filtersets.py:293 -#: netbox/extras/filtersets.py:337 netbox/extras/filtersets.py:359 -#: netbox/extras/filtersets.py:419 netbox/users/filtersets.py:113 -#: netbox/users/filtersets.py:180 +#: dcim/filtersets.py:507 extras/filtersets.py:293 extras/filtersets.py:337 +#: extras/filtersets.py:359 extras/filtersets.py:419 users/filtersets.py:113 +#: users/filtersets.py:180 msgid "User (name)" msgstr "Usuario (nombre)" -#: netbox/dcim/filtersets.py:549 +#: dcim/filtersets.py:549 msgid "Default platform (ID)" msgstr "Plataforma predeterminada (ID)" -#: netbox/dcim/filtersets.py:555 +#: dcim/filtersets.py:555 msgid "Default platform (slug)" msgstr "Plataforma predeterminada (slug)" -#: netbox/dcim/filtersets.py:558 netbox/dcim/forms/filtersets.py:517 +#: dcim/filtersets.py:558 dcim/forms/filtersets.py:517 msgid "Has a front image" msgstr "Tiene una imagen frontal" -#: netbox/dcim/filtersets.py:562 netbox/dcim/forms/filtersets.py:524 +#: dcim/filtersets.py:562 dcim/forms/filtersets.py:524 msgid "Has a rear image" msgstr "Tiene una imagen trasera" -#: netbox/dcim/filtersets.py:567 netbox/dcim/filtersets.py:688 -#: netbox/dcim/filtersets.py:1131 netbox/dcim/forms/filtersets.py:531 -#: netbox/dcim/forms/filtersets.py:627 netbox/dcim/forms/filtersets.py:848 +#: dcim/filtersets.py:567 dcim/filtersets.py:688 dcim/filtersets.py:1131 +#: dcim/forms/filtersets.py:531 dcim/forms/filtersets.py:627 +#: dcim/forms/filtersets.py:848 msgid "Has console ports" msgstr "Tiene puertos de consola" -#: netbox/dcim/filtersets.py:571 netbox/dcim/filtersets.py:692 -#: netbox/dcim/filtersets.py:1135 netbox/dcim/forms/filtersets.py:538 -#: netbox/dcim/forms/filtersets.py:634 netbox/dcim/forms/filtersets.py:855 +#: dcim/filtersets.py:571 dcim/filtersets.py:692 dcim/filtersets.py:1135 +#: dcim/forms/filtersets.py:538 dcim/forms/filtersets.py:634 +#: dcim/forms/filtersets.py:855 msgid "Has console server ports" msgstr "Tiene puertos de servidor de consola" -#: netbox/dcim/filtersets.py:575 netbox/dcim/filtersets.py:696 -#: netbox/dcim/filtersets.py:1139 netbox/dcim/forms/filtersets.py:545 -#: netbox/dcim/forms/filtersets.py:641 netbox/dcim/forms/filtersets.py:862 +#: dcim/filtersets.py:575 dcim/filtersets.py:696 dcim/filtersets.py:1139 +#: dcim/forms/filtersets.py:545 dcim/forms/filtersets.py:641 +#: dcim/forms/filtersets.py:862 msgid "Has power ports" msgstr "Tiene puertos de alimentación" -#: netbox/dcim/filtersets.py:579 netbox/dcim/filtersets.py:700 -#: netbox/dcim/filtersets.py:1143 netbox/dcim/forms/filtersets.py:552 -#: netbox/dcim/forms/filtersets.py:648 netbox/dcim/forms/filtersets.py:869 +#: dcim/filtersets.py:579 dcim/filtersets.py:700 dcim/filtersets.py:1143 +#: dcim/forms/filtersets.py:552 dcim/forms/filtersets.py:648 +#: dcim/forms/filtersets.py:869 msgid "Has power outlets" msgstr "Tiene tomas de corriente" -#: netbox/dcim/filtersets.py:583 netbox/dcim/filtersets.py:704 -#: netbox/dcim/filtersets.py:1147 netbox/dcim/forms/filtersets.py:559 -#: netbox/dcim/forms/filtersets.py:655 netbox/dcim/forms/filtersets.py:876 +#: dcim/filtersets.py:583 dcim/filtersets.py:704 dcim/filtersets.py:1147 +#: dcim/forms/filtersets.py:559 dcim/forms/filtersets.py:655 +#: dcim/forms/filtersets.py:876 msgid "Has interfaces" msgstr "Tiene interfaces" -#: netbox/dcim/filtersets.py:587 netbox/dcim/filtersets.py:708 -#: netbox/dcim/filtersets.py:1151 netbox/dcim/forms/filtersets.py:566 -#: netbox/dcim/forms/filtersets.py:662 netbox/dcim/forms/filtersets.py:883 +#: dcim/filtersets.py:587 dcim/filtersets.py:708 dcim/filtersets.py:1151 +#: dcim/forms/filtersets.py:566 dcim/forms/filtersets.py:662 +#: dcim/forms/filtersets.py:883 msgid "Has pass-through ports" msgstr "Tiene puertos de paso" -#: netbox/dcim/filtersets.py:591 netbox/dcim/filtersets.py:1155 -#: netbox/dcim/forms/filtersets.py:580 +#: dcim/filtersets.py:591 dcim/filtersets.py:1155 dcim/forms/filtersets.py:580 msgid "Has module bays" msgstr "Tiene compartimentos para módulos" -#: netbox/dcim/filtersets.py:595 netbox/dcim/filtersets.py:1159 -#: netbox/dcim/forms/filtersets.py:573 +#: dcim/filtersets.py:595 dcim/filtersets.py:1159 dcim/forms/filtersets.py:573 msgid "Has device bays" msgstr "Tiene compartimentos para dispositivos" -#: netbox/dcim/filtersets.py:599 netbox/dcim/forms/filtersets.py:587 +#: dcim/filtersets.py:599 dcim/forms/filtersets.py:587 msgid "Has inventory items" msgstr "Tiene artículos de inventario" -#: netbox/dcim/filtersets.py:756 netbox/dcim/filtersets.py:989 -#: netbox/dcim/filtersets.py:1436 +#: dcim/filtersets.py:756 dcim/filtersets.py:989 dcim/filtersets.py:1436 msgid "Device type (ID)" msgstr "Tipo de dispositivo (ID)" -#: netbox/dcim/filtersets.py:772 netbox/dcim/filtersets.py:1317 +#: dcim/filtersets.py:772 dcim/filtersets.py:1317 msgid "Module type (ID)" msgstr "Tipo de módulo (ID)" -#: netbox/dcim/filtersets.py:804 netbox/dcim/filtersets.py:1591 +#: dcim/filtersets.py:804 dcim/filtersets.py:1591 msgid "Power port (ID)" msgstr "Puerto de alimentación (ID)" -#: netbox/dcim/filtersets.py:878 netbox/dcim/filtersets.py:1836 +#: dcim/filtersets.py:878 dcim/filtersets.py:1836 msgid "Parent inventory item (ID)" msgstr "Artículo del inventario principal (ID)" -#: netbox/dcim/filtersets.py:921 netbox/dcim/filtersets.py:947 -#: netbox/dcim/filtersets.py:1127 netbox/virtualization/filtersets.py:238 +#: dcim/filtersets.py:921 dcim/filtersets.py:947 dcim/filtersets.py:1127 +#: virtualization/filtersets.py:238 msgid "Config template (ID)" msgstr "Plantilla de configuración (ID)" -#: netbox/dcim/filtersets.py:985 +#: dcim/filtersets.py:985 msgid "Device type (slug)" msgstr "Tipo de dispositivo (slug)" -#: netbox/dcim/filtersets.py:1005 +#: dcim/filtersets.py:1005 msgid "Parent Device (ID)" msgstr "Dispositivo principal (ID)" -#: netbox/dcim/filtersets.py:1009 netbox/virtualization/filtersets.py:220 +#: dcim/filtersets.py:1009 virtualization/filtersets.py:220 msgid "Platform (ID)" msgstr "Plataforma (ID)" -#: netbox/dcim/filtersets.py:1015 netbox/extras/filtersets.py:569 -#: netbox/virtualization/filtersets.py:226 +#: dcim/filtersets.py:1015 extras/filtersets.py:569 +#: virtualization/filtersets.py:226 msgid "Platform (slug)" msgstr "Plataforma (babosa)" -#: netbox/dcim/filtersets.py:1051 netbox/dcim/filtersets.py:1399 -#: netbox/dcim/filtersets.py:1934 netbox/dcim/filtersets.py:2176 -#: netbox/dcim/filtersets.py:2235 +#: dcim/filtersets.py:1051 dcim/filtersets.py:1399 dcim/filtersets.py:1934 +#: dcim/filtersets.py:2176 dcim/filtersets.py:2235 msgid "Site name (slug)" msgstr "Nombre del sitio (slug)" -#: netbox/dcim/filtersets.py:1067 +#: dcim/filtersets.py:1067 msgid "Parent bay (ID)" msgstr "Bahía principal (ID)" -#: netbox/dcim/filtersets.py:1071 +#: dcim/filtersets.py:1071 msgid "VM cluster (ID)" msgstr "Clúster de máquinas virtuales (ID)" -#: netbox/dcim/filtersets.py:1077 netbox/extras/filtersets.py:591 -#: netbox/virtualization/filtersets.py:136 +#: dcim/filtersets.py:1077 extras/filtersets.py:591 +#: virtualization/filtersets.py:136 msgid "Cluster group (slug)" msgstr "Grupo de racimos (babosa)" -#: netbox/dcim/filtersets.py:1082 netbox/virtualization/filtersets.py:130 +#: dcim/filtersets.py:1082 virtualization/filtersets.py:130 msgid "Cluster group (ID)" msgstr "Grupo de clústeres (ID)" -#: netbox/dcim/filtersets.py:1088 +#: dcim/filtersets.py:1088 msgid "Device model (slug)" msgstr "Modelo de dispositivo (slug)" -#: netbox/dcim/filtersets.py:1099 netbox/dcim/forms/bulk_edit.py:516 +#: dcim/filtersets.py:1099 dcim/forms/bulk_edit.py:516 msgid "Is full depth" msgstr "Es de profundidad total" -#: netbox/dcim/filtersets.py:1103 netbox/dcim/forms/common.py:18 -#: netbox/dcim/forms/filtersets.py:818 netbox/dcim/forms/filtersets.py:1385 -#: netbox/dcim/models/device_components.py:518 -#: netbox/virtualization/filtersets.py:230 -#: netbox/virtualization/filtersets.py:301 -#: netbox/virtualization/forms/filtersets.py:172 -#: netbox/virtualization/forms/filtersets.py:223 +#: dcim/filtersets.py:1103 dcim/forms/common.py:18 +#: dcim/forms/filtersets.py:818 dcim/forms/filtersets.py:1385 +#: dcim/models/device_components.py:518 virtualization/filtersets.py:230 +#: virtualization/filtersets.py:301 virtualization/forms/filtersets.py:172 +#: virtualization/forms/filtersets.py:223 msgid "MAC address" msgstr "Dirección MAC" -#: netbox/dcim/filtersets.py:1110 netbox/dcim/filtersets.py:1274 -#: netbox/dcim/forms/filtersets.py:827 netbox/dcim/forms/filtersets.py:930 -#: netbox/virtualization/filtersets.py:234 -#: netbox/virtualization/forms/filtersets.py:176 +#: dcim/filtersets.py:1110 dcim/filtersets.py:1274 +#: dcim/forms/filtersets.py:827 dcim/forms/filtersets.py:930 +#: virtualization/filtersets.py:234 virtualization/forms/filtersets.py:176 msgid "Has a primary IP" msgstr "Tiene una IP principal" -#: netbox/dcim/filtersets.py:1114 +#: dcim/filtersets.py:1114 msgid "Has an out-of-band IP" msgstr "Tiene una IP fuera de banda" -#: netbox/dcim/filtersets.py:1119 +#: dcim/filtersets.py:1119 msgid "Virtual chassis (ID)" msgstr "Chasis virtual (ID)" -#: netbox/dcim/filtersets.py:1123 +#: dcim/filtersets.py:1123 msgid "Is a virtual chassis member" msgstr "Es un miembro del chasis virtual" -#: netbox/dcim/filtersets.py:1164 +#: dcim/filtersets.py:1164 msgid "OOB IP (ID)" msgstr "LOB VIP (ID)" -#: netbox/dcim/filtersets.py:1168 +#: dcim/filtersets.py:1168 msgid "Has virtual device context" msgstr "Tiene contexto de dispositivo virtual" -#: netbox/dcim/filtersets.py:1257 +#: dcim/filtersets.py:1257 msgid "VDC (ID)" msgstr "VDC (IDENTIFICACIÓN)" -#: netbox/dcim/filtersets.py:1262 +#: dcim/filtersets.py:1262 msgid "Device model" msgstr "Modelo de dispositivo" -#: netbox/dcim/filtersets.py:1267 netbox/ipam/filtersets.py:632 -#: netbox/vpn/filtersets.py:102 netbox/vpn/filtersets.py:401 +#: dcim/filtersets.py:1267 ipam/filtersets.py:632 vpn/filtersets.py:102 +#: vpn/filtersets.py:401 msgid "Interface (ID)" msgstr "Interfaz (ID)" -#: netbox/dcim/filtersets.py:1323 +#: dcim/filtersets.py:1323 msgid "Module type (model)" msgstr "Tipo de módulo (modelo)" -#: netbox/dcim/filtersets.py:1329 +#: dcim/filtersets.py:1329 msgid "Module bay (ID)" msgstr "Bahía de módulos (ID)" -#: netbox/dcim/filtersets.py:1333 netbox/dcim/filtersets.py:1425 -#: netbox/ipam/filtersets.py:611 netbox/ipam/filtersets.py:851 -#: netbox/ipam/filtersets.py:1115 netbox/virtualization/filtersets.py:161 -#: netbox/vpn/filtersets.py:379 +#: dcim/filtersets.py:1333 dcim/filtersets.py:1425 ipam/filtersets.py:611 +#: ipam/filtersets.py:851 ipam/filtersets.py:1115 +#: virtualization/filtersets.py:161 vpn/filtersets.py:379 msgid "Device (ID)" msgstr "Dispositivo (ID)" -#: netbox/dcim/filtersets.py:1421 +#: dcim/filtersets.py:1421 msgid "Rack (name)" msgstr "Rack (nombre)" -#: netbox/dcim/filtersets.py:1431 netbox/ipam/filtersets.py:606 -#: netbox/ipam/filtersets.py:846 netbox/ipam/filtersets.py:1121 -#: netbox/vpn/filtersets.py:374 +#: dcim/filtersets.py:1431 ipam/filtersets.py:606 ipam/filtersets.py:846 +#: ipam/filtersets.py:1121 vpn/filtersets.py:374 msgid "Device (name)" msgstr "Dispositivo (nombre)" -#: netbox/dcim/filtersets.py:1442 +#: dcim/filtersets.py:1442 msgid "Device type (model)" msgstr "Tipo de dispositivo (modelo)" -#: netbox/dcim/filtersets.py:1447 +#: dcim/filtersets.py:1447 msgid "Device role (ID)" msgstr "Función del dispositivo (ID)" -#: netbox/dcim/filtersets.py:1453 +#: dcim/filtersets.py:1453 msgid "Device role (slug)" msgstr "Función del dispositivo (slug)" -#: netbox/dcim/filtersets.py:1458 +#: dcim/filtersets.py:1458 msgid "Virtual Chassis (ID)" msgstr "Chasis virtual (ID)" -#: netbox/dcim/filtersets.py:1464 netbox/dcim/forms/filtersets.py:109 -#: netbox/dcim/tables/devices.py:206 netbox/netbox/navigation/menu.py:79 -#: netbox/templates/dcim/device.html:120 -#: netbox/templates/dcim/device_edit.html:93 -#: netbox/templates/dcim/virtualchassis.html:20 -#: netbox/templates/dcim/virtualchassis_add.html:8 -#: netbox/templates/dcim/virtualchassis_edit.html:24 +#: dcim/filtersets.py:1464 dcim/forms/filtersets.py:109 +#: dcim/tables/devices.py:206 netbox/navigation/menu.py:79 +#: templates/dcim/device.html:120 templates/dcim/device_edit.html:93 +#: templates/dcim/virtualchassis.html:20 +#: templates/dcim/virtualchassis_add.html:8 +#: templates/dcim/virtualchassis_edit.html:24 msgid "Virtual Chassis" msgstr "Chasis virtual" -#: netbox/dcim/filtersets.py:1488 +#: dcim/filtersets.py:1488 msgid "Module (ID)" msgstr "Módulo (ID)" -#: netbox/dcim/filtersets.py:1495 +#: dcim/filtersets.py:1495 msgid "Cable (ID)" msgstr "Cable (ID)" -#: netbox/dcim/filtersets.py:1604 netbox/ipam/forms/bulk_import.py:189 -#: netbox/vpn/forms/bulk_import.py:308 +#: dcim/filtersets.py:1604 ipam/forms/bulk_import.py:189 +#: vpn/forms/bulk_import.py:308 msgid "Assigned VLAN" msgstr "VLAN asignada" -#: netbox/dcim/filtersets.py:1608 +#: dcim/filtersets.py:1608 msgid "Assigned VID" msgstr "VID asignado" -#: netbox/dcim/filtersets.py:1613 netbox/dcim/forms/bulk_edit.py:1489 -#: netbox/dcim/forms/bulk_import.py:891 netbox/dcim/forms/filtersets.py:1428 -#: netbox/dcim/forms/model_forms.py:1378 -#: netbox/dcim/models/device_components.py:711 -#: netbox/dcim/tables/devices.py:626 netbox/ipam/filtersets.py:316 -#: netbox/ipam/filtersets.py:327 netbox/ipam/filtersets.py:483 -#: netbox/ipam/filtersets.py:584 netbox/ipam/filtersets.py:595 -#: netbox/ipam/forms/bulk_edit.py:241 netbox/ipam/forms/bulk_edit.py:297 -#: netbox/ipam/forms/bulk_edit.py:339 netbox/ipam/forms/bulk_import.py:157 -#: netbox/ipam/forms/bulk_import.py:243 netbox/ipam/forms/bulk_import.py:279 -#: netbox/ipam/forms/filtersets.py:67 netbox/ipam/forms/filtersets.py:172 -#: netbox/ipam/forms/filtersets.py:309 netbox/ipam/forms/model_forms.py:62 -#: netbox/ipam/forms/model_forms.py:202 netbox/ipam/forms/model_forms.py:247 -#: netbox/ipam/forms/model_forms.py:300 netbox/ipam/forms/model_forms.py:431 -#: netbox/ipam/forms/model_forms.py:445 netbox/ipam/forms/model_forms.py:459 -#: netbox/ipam/models/ip.py:233 netbox/ipam/models/ip.py:512 -#: netbox/ipam/models/ip.py:720 netbox/ipam/models/vrfs.py:62 -#: netbox/ipam/tables/ip.py:242 netbox/ipam/tables/ip.py:309 -#: netbox/ipam/tables/ip.py:360 netbox/ipam/tables/ip.py:450 -#: netbox/templates/dcim/interface.html:133 -#: netbox/templates/ipam/ipaddress.html:18 -#: netbox/templates/ipam/iprange.html:40 netbox/templates/ipam/prefix.html:19 -#: netbox/templates/ipam/vrf.html:7 netbox/templates/ipam/vrf.html:13 -#: netbox/templates/virtualization/vminterface.html:47 -#: netbox/virtualization/forms/bulk_edit.py:261 -#: netbox/virtualization/forms/bulk_import.py:171 -#: netbox/virtualization/forms/filtersets.py:228 -#: netbox/virtualization/forms/model_forms.py:344 -#: netbox/virtualization/models/virtualmachines.py:355 -#: netbox/virtualization/tables/virtualmachines.py:143 +#: dcim/filtersets.py:1613 dcim/forms/bulk_edit.py:1489 +#: dcim/forms/bulk_import.py:891 dcim/forms/filtersets.py:1428 +#: dcim/forms/model_forms.py:1378 dcim/models/device_components.py:711 +#: dcim/tables/devices.py:626 ipam/filtersets.py:316 ipam/filtersets.py:327 +#: ipam/filtersets.py:483 ipam/filtersets.py:584 ipam/filtersets.py:595 +#: ipam/forms/bulk_edit.py:242 ipam/forms/bulk_edit.py:298 +#: ipam/forms/bulk_edit.py:340 ipam/forms/bulk_import.py:157 +#: ipam/forms/bulk_import.py:243 ipam/forms/bulk_import.py:279 +#: ipam/forms/filtersets.py:67 ipam/forms/filtersets.py:172 +#: ipam/forms/filtersets.py:309 ipam/forms/model_forms.py:62 +#: ipam/forms/model_forms.py:202 ipam/forms/model_forms.py:247 +#: ipam/forms/model_forms.py:300 ipam/forms/model_forms.py:431 +#: ipam/forms/model_forms.py:445 ipam/forms/model_forms.py:459 +#: ipam/models/ip.py:233 ipam/models/ip.py:512 ipam/models/ip.py:720 +#: ipam/models/vrfs.py:62 ipam/tables/ip.py:242 ipam/tables/ip.py:309 +#: ipam/tables/ip.py:360 ipam/tables/ip.py:450 +#: templates/dcim/interface.html:133 templates/ipam/ipaddress.html:18 +#: templates/ipam/iprange.html:40 templates/ipam/prefix.html:19 +#: templates/ipam/vrf.html:7 templates/ipam/vrf.html:13 +#: templates/virtualization/vminterface.html:47 +#: virtualization/forms/bulk_edit.py:261 +#: virtualization/forms/bulk_import.py:171 +#: virtualization/forms/filtersets.py:228 +#: virtualization/forms/model_forms.py:344 +#: virtualization/models/virtualmachines.py:355 +#: virtualization/tables/virtualmachines.py:143 msgid "VRF" msgstr "VRF" -#: netbox/dcim/filtersets.py:1619 netbox/ipam/filtersets.py:322 -#: netbox/ipam/filtersets.py:333 netbox/ipam/filtersets.py:489 -#: netbox/ipam/filtersets.py:590 netbox/ipam/filtersets.py:601 +#: dcim/filtersets.py:1619 ipam/filtersets.py:322 ipam/filtersets.py:333 +#: ipam/filtersets.py:489 ipam/filtersets.py:590 ipam/filtersets.py:601 msgid "VRF (RD)" msgstr "VRF (ROJO)" -#: netbox/dcim/filtersets.py:1624 netbox/ipam/filtersets.py:1030 -#: netbox/vpn/filtersets.py:342 +#: dcim/filtersets.py:1624 ipam/filtersets.py:1030 vpn/filtersets.py:342 msgid "L2VPN (ID)" msgstr "L2VPN (ID)" -#: netbox/dcim/filtersets.py:1630 netbox/dcim/forms/filtersets.py:1433 -#: netbox/dcim/tables/devices.py:570 netbox/ipam/filtersets.py:1036 -#: netbox/ipam/forms/filtersets.py:518 netbox/ipam/tables/vlans.py:137 -#: netbox/templates/dcim/interface.html:93 netbox/templates/ipam/vlan.html:66 -#: netbox/templates/vpn/l2vpntermination.html:12 -#: netbox/virtualization/forms/filtersets.py:233 -#: netbox/vpn/forms/bulk_import.py:280 netbox/vpn/forms/filtersets.py:246 -#: netbox/vpn/forms/model_forms.py:409 netbox/vpn/forms/model_forms.py:427 -#: netbox/vpn/models/l2vpn.py:63 netbox/vpn/tables/l2vpn.py:55 +#: dcim/filtersets.py:1630 dcim/forms/filtersets.py:1433 +#: dcim/tables/devices.py:570 ipam/filtersets.py:1036 +#: ipam/forms/filtersets.py:518 ipam/tables/vlans.py:137 +#: templates/dcim/interface.html:93 templates/ipam/vlan.html:66 +#: templates/vpn/l2vpntermination.html:12 +#: virtualization/forms/filtersets.py:233 vpn/forms/bulk_import.py:280 +#: vpn/forms/filtersets.py:246 vpn/forms/model_forms.py:409 +#: vpn/forms/model_forms.py:427 vpn/models/l2vpn.py:63 vpn/tables/l2vpn.py:55 msgid "L2VPN" msgstr "L2VPN" -#: netbox/dcim/filtersets.py:1662 +#: dcim/filtersets.py:1662 msgid "Virtual Chassis Interfaces for Device" msgstr "Interfaces de chasis virtuales para dispositivos" -#: netbox/dcim/filtersets.py:1667 +#: dcim/filtersets.py:1667 msgid "Virtual Chassis Interfaces for Device (ID)" msgstr "Interfaces de chasis virtuales para dispositivos (ID)" -#: netbox/dcim/filtersets.py:1671 +#: dcim/filtersets.py:1671 msgid "Kind of interface" msgstr "Tipo de interfaz" -#: netbox/dcim/filtersets.py:1676 netbox/virtualization/filtersets.py:293 +#: dcim/filtersets.py:1676 virtualization/filtersets.py:293 msgid "Parent interface (ID)" msgstr "Interfaz principal (ID)" -#: netbox/dcim/filtersets.py:1681 netbox/virtualization/filtersets.py:298 +#: dcim/filtersets.py:1681 virtualization/filtersets.py:298 msgid "Bridged interface (ID)" msgstr "Interfaz puenteada (ID)" -#: netbox/dcim/filtersets.py:1686 +#: dcim/filtersets.py:1686 msgid "LAG interface (ID)" msgstr "Interfaz LAG (ID)" -#: netbox/dcim/filtersets.py:1713 netbox/dcim/filtersets.py:1725 -#: netbox/dcim/forms/filtersets.py:1345 netbox/dcim/forms/model_forms.py:1690 -#: netbox/templates/dcim/virtualdevicecontext.html:15 +#: dcim/filtersets.py:1713 dcim/filtersets.py:1725 +#: dcim/forms/filtersets.py:1345 dcim/forms/model_forms.py:1690 +#: templates/dcim/virtualdevicecontext.html:15 msgid "Virtual Device Context" msgstr "Contexto de dispositivo virtual" -#: netbox/dcim/filtersets.py:1719 +#: dcim/filtersets.py:1719 msgid "Virtual Device Context (Identifier)" msgstr "Contexto de dispositivo virtual (identificador)" -#: netbox/dcim/filtersets.py:1730 -#: netbox/templates/wireless/wirelesslan.html:11 -#: netbox/wireless/forms/model_forms.py:53 +#: dcim/filtersets.py:1730 templates/wireless/wirelesslan.html:11 +#: wireless/forms/model_forms.py:53 msgid "Wireless LAN" msgstr "LAN inalámbrica" -#: netbox/dcim/filtersets.py:1734 netbox/dcim/tables/devices.py:613 +#: dcim/filtersets.py:1734 dcim/tables/devices.py:613 msgid "Wireless link" msgstr "Enlace inalámbrico" -#: netbox/dcim/filtersets.py:1803 +#: dcim/filtersets.py:1803 msgid "Parent module bay (ID)" msgstr "Compartimento del módulo principal (ID)" -#: netbox/dcim/filtersets.py:1808 +#: dcim/filtersets.py:1808 msgid "Installed module (ID)" msgstr "Módulo instalado (ID)" -#: netbox/dcim/filtersets.py:1819 +#: dcim/filtersets.py:1819 msgid "Installed device (ID)" msgstr "Dispositivo instalado (ID)" -#: netbox/dcim/filtersets.py:1825 +#: dcim/filtersets.py:1825 msgid "Installed device (name)" msgstr "Dispositivo instalado (nombre)" -#: netbox/dcim/filtersets.py:1891 +#: dcim/filtersets.py:1891 msgid "Master (ID)" msgstr "Maestro (ID)" -#: netbox/dcim/filtersets.py:1897 +#: dcim/filtersets.py:1897 msgid "Master (name)" msgstr "Maestro (nombre)" -#: netbox/dcim/filtersets.py:1939 netbox/tenancy/filtersets.py:245 +#: dcim/filtersets.py:1939 tenancy/filtersets.py:245 msgid "Tenant (ID)" msgstr "Inquilino (ID)" -#: netbox/dcim/filtersets.py:1945 netbox/extras/filtersets.py:618 -#: netbox/tenancy/filtersets.py:251 +#: dcim/filtersets.py:1945 extras/filtersets.py:618 tenancy/filtersets.py:251 msgid "Tenant (slug)" msgstr "Inquilino (babosa)" -#: netbox/dcim/filtersets.py:1981 netbox/dcim/forms/filtersets.py:1077 +#: dcim/filtersets.py:1981 dcim/forms/filtersets.py:1077 msgid "Unterminated" msgstr "Inacabado" -#: netbox/dcim/filtersets.py:2239 +#: dcim/filtersets.py:2239 msgid "Power panel (ID)" msgstr "Panel de alimentación (ID)" -#: netbox/dcim/forms/bulk_create.py:40 netbox/extras/forms/filtersets.py:401 -#: netbox/extras/forms/model_forms.py:567 -#: netbox/extras/forms/model_forms.py:619 netbox/netbox/forms/base.py:86 -#: netbox/netbox/forms/mixins.py:81 netbox/netbox/tables/columns.py:478 -#: netbox/templates/circuits/inc/circuit_termination.html:32 -#: netbox/templates/generic/bulk_edit.html:65 -#: netbox/templates/inc/panels/tags.html:5 -#: netbox/utilities/forms/fields/fields.py:81 +#: dcim/forms/bulk_create.py:40 extras/forms/filtersets.py:401 +#: extras/forms/model_forms.py:567 extras/forms/model_forms.py:619 +#: netbox/forms/base.py:86 netbox/forms/mixins.py:81 +#: netbox/tables/columns.py:478 +#: templates/circuits/inc/circuit_termination.html:32 +#: templates/generic/bulk_edit.html:65 templates/inc/panels/tags.html:5 +#: utilities/forms/fields/fields.py:81 msgid "Tags" msgstr "Etiquetas" -#: netbox/dcim/forms/bulk_create.py:112 netbox/dcim/forms/filtersets.py:1498 -#: netbox/dcim/forms/model_forms.py:488 netbox/dcim/forms/model_forms.py:546 -#: netbox/dcim/forms/object_create.py:197 -#: netbox/dcim/forms/object_create.py:353 netbox/dcim/tables/devices.py:165 -#: netbox/dcim/tables/devices.py:707 netbox/dcim/tables/devicetypes.py:246 -#: netbox/templates/dcim/device.html:43 netbox/templates/dcim/device.html:131 -#: netbox/templates/dcim/modulebay.html:38 -#: netbox/templates/dcim/virtualchassis.html:66 -#: netbox/templates/dcim/virtualchassis_edit.html:55 +#: dcim/forms/bulk_create.py:112 dcim/forms/filtersets.py:1498 +#: dcim/forms/model_forms.py:488 dcim/forms/model_forms.py:546 +#: dcim/forms/object_create.py:197 dcim/forms/object_create.py:353 +#: dcim/tables/devices.py:165 dcim/tables/devices.py:707 +#: dcim/tables/devicetypes.py:246 templates/dcim/device.html:43 +#: templates/dcim/device.html:131 templates/dcim/modulebay.html:38 +#: templates/dcim/virtualchassis.html:66 +#: templates/dcim/virtualchassis_edit.html:55 msgid "Position" msgstr "Posición" -#: netbox/dcim/forms/bulk_create.py:114 +#: dcim/forms/bulk_create.py:114 msgid "" "Alphanumeric ranges are supported. (Must match the number of names being " "created.)" @@ -3452,888 +3121,826 @@ msgstr "" "Se admiten los rangos alfanuméricos. (Debe coincidir con el número de " "nombres que se están creando)." -#: netbox/dcim/forms/bulk_edit.py:132 +#: dcim/forms/bulk_edit.py:132 msgid "Contact name" msgstr "Nombre de contacto" -#: netbox/dcim/forms/bulk_edit.py:137 +#: dcim/forms/bulk_edit.py:137 msgid "Contact phone" msgstr "Teléfono de contacto" -#: netbox/dcim/forms/bulk_edit.py:143 +#: dcim/forms/bulk_edit.py:143 msgid "Contact E-mail" msgstr "Correo electrónico de contacto" -#: netbox/dcim/forms/bulk_edit.py:146 netbox/dcim/forms/bulk_import.py:123 -#: netbox/dcim/forms/model_forms.py:128 +#: dcim/forms/bulk_edit.py:146 dcim/forms/bulk_import.py:123 +#: dcim/forms/model_forms.py:128 msgid "Time zone" msgstr "Zona horaria" -#: netbox/dcim/forms/bulk_edit.py:224 netbox/dcim/forms/bulk_edit.py:495 -#: netbox/dcim/forms/bulk_edit.py:559 netbox/dcim/forms/bulk_edit.py:632 -#: netbox/dcim/forms/bulk_edit.py:656 netbox/dcim/forms/bulk_edit.py:740 -#: netbox/dcim/forms/bulk_edit.py:1267 netbox/dcim/forms/bulk_edit.py:1660 -#: netbox/dcim/forms/bulk_import.py:182 netbox/dcim/forms/bulk_import.py:371 -#: netbox/dcim/forms/bulk_import.py:405 netbox/dcim/forms/bulk_import.py:450 -#: netbox/dcim/forms/bulk_import.py:486 netbox/dcim/forms/bulk_import.py:1082 -#: netbox/dcim/forms/filtersets.py:313 netbox/dcim/forms/filtersets.py:372 -#: netbox/dcim/forms/filtersets.py:494 netbox/dcim/forms/filtersets.py:619 -#: netbox/dcim/forms/filtersets.py:700 netbox/dcim/forms/filtersets.py:782 -#: netbox/dcim/forms/filtersets.py:947 netbox/dcim/forms/filtersets.py:1539 -#: netbox/dcim/forms/model_forms.py:207 netbox/dcim/forms/model_forms.py:337 -#: netbox/dcim/forms/model_forms.py:349 netbox/dcim/forms/model_forms.py:395 -#: netbox/dcim/forms/model_forms.py:436 netbox/dcim/forms/model_forms.py:1075 -#: netbox/dcim/forms/model_forms.py:1515 -#: netbox/dcim/forms/object_import.py:187 netbox/dcim/tables/devices.py:96 -#: netbox/dcim/tables/devices.py:172 netbox/dcim/tables/devices.py:940 -#: netbox/dcim/tables/devicetypes.py:80 netbox/dcim/tables/devicetypes.py:308 -#: netbox/dcim/tables/modules.py:20 netbox/dcim/tables/modules.py:60 -#: netbox/dcim/tables/racks.py:58 netbox/dcim/tables/racks.py:132 -#: netbox/templates/dcim/devicetype.html:14 -#: netbox/templates/dcim/inventoryitem.html:44 -#: netbox/templates/dcim/manufacturer.html:33 -#: netbox/templates/dcim/modulebay.html:62 -#: netbox/templates/dcim/moduletype.html:14 -#: netbox/templates/dcim/platform.html:37 -#: netbox/templates/dcim/racktype.html:16 +#: dcim/forms/bulk_edit.py:224 dcim/forms/bulk_edit.py:495 +#: dcim/forms/bulk_edit.py:559 dcim/forms/bulk_edit.py:632 +#: dcim/forms/bulk_edit.py:656 dcim/forms/bulk_edit.py:740 +#: dcim/forms/bulk_edit.py:1267 dcim/forms/bulk_edit.py:1660 +#: dcim/forms/bulk_import.py:182 dcim/forms/bulk_import.py:371 +#: dcim/forms/bulk_import.py:405 dcim/forms/bulk_import.py:450 +#: dcim/forms/bulk_import.py:486 dcim/forms/bulk_import.py:1082 +#: dcim/forms/filtersets.py:313 dcim/forms/filtersets.py:372 +#: dcim/forms/filtersets.py:494 dcim/forms/filtersets.py:619 +#: dcim/forms/filtersets.py:700 dcim/forms/filtersets.py:782 +#: dcim/forms/filtersets.py:947 dcim/forms/filtersets.py:1539 +#: dcim/forms/model_forms.py:207 dcim/forms/model_forms.py:337 +#: dcim/forms/model_forms.py:349 dcim/forms/model_forms.py:395 +#: dcim/forms/model_forms.py:436 dcim/forms/model_forms.py:1075 +#: dcim/forms/model_forms.py:1515 dcim/forms/object_import.py:187 +#: dcim/tables/devices.py:96 dcim/tables/devices.py:172 +#: dcim/tables/devices.py:940 dcim/tables/devicetypes.py:80 +#: dcim/tables/devicetypes.py:308 dcim/tables/modules.py:20 +#: dcim/tables/modules.py:60 dcim/tables/racks.py:58 dcim/tables/racks.py:132 +#: templates/dcim/devicetype.html:14 templates/dcim/inventoryitem.html:44 +#: templates/dcim/manufacturer.html:33 templates/dcim/modulebay.html:62 +#: templates/dcim/moduletype.html:25 templates/dcim/platform.html:37 +#: templates/dcim/racktype.html:16 msgid "Manufacturer" msgstr "fabricante" -#: netbox/dcim/forms/bulk_edit.py:229 netbox/dcim/forms/bulk_edit.py:372 -#: netbox/dcim/forms/bulk_import.py:191 netbox/dcim/forms/bulk_import.py:263 -#: netbox/dcim/forms/filtersets.py:255 -#: netbox/templates/dcim/inc/panels/racktype_dimensions.html:6 +#: dcim/forms/bulk_edit.py:229 dcim/forms/bulk_edit.py:372 +#: dcim/forms/bulk_import.py:191 dcim/forms/bulk_import.py:263 +#: dcim/forms/filtersets.py:255 +#: templates/dcim/inc/panels/racktype_dimensions.html:6 msgid "Form factor" msgstr "Factor de forma" -#: netbox/dcim/forms/bulk_edit.py:234 netbox/dcim/forms/bulk_edit.py:377 -#: netbox/dcim/forms/bulk_import.py:199 netbox/dcim/forms/bulk_import.py:266 -#: netbox/dcim/forms/filtersets.py:260 -#: netbox/templates/dcim/inc/panels/racktype_dimensions.html:10 +#: dcim/forms/bulk_edit.py:234 dcim/forms/bulk_edit.py:377 +#: dcim/forms/bulk_import.py:199 dcim/forms/bulk_import.py:266 +#: dcim/forms/filtersets.py:260 +#: templates/dcim/inc/panels/racktype_dimensions.html:10 msgid "Width" msgstr "Anchura" -#: netbox/dcim/forms/bulk_edit.py:240 netbox/dcim/forms/bulk_edit.py:383 -#: netbox/templates/dcim/devicetype.html:37 +#: dcim/forms/bulk_edit.py:240 dcim/forms/bulk_edit.py:383 +#: templates/dcim/devicetype.html:37 msgid "Height (U)" msgstr "Altura (U)" -#: netbox/dcim/forms/bulk_edit.py:249 netbox/dcim/forms/bulk_edit.py:388 -#: netbox/dcim/forms/filtersets.py:274 +#: dcim/forms/bulk_edit.py:249 dcim/forms/bulk_edit.py:388 +#: dcim/forms/filtersets.py:274 msgid "Descending units" msgstr "Unidades descendentes" -#: netbox/dcim/forms/bulk_edit.py:252 netbox/dcim/forms/bulk_edit.py:391 +#: dcim/forms/bulk_edit.py:252 dcim/forms/bulk_edit.py:391 msgid "Outer width" msgstr "Anchura exterior" -#: netbox/dcim/forms/bulk_edit.py:257 netbox/dcim/forms/bulk_edit.py:396 +#: dcim/forms/bulk_edit.py:257 dcim/forms/bulk_edit.py:396 msgid "Outer depth" msgstr "Profundidad exterior" -#: netbox/dcim/forms/bulk_edit.py:262 netbox/dcim/forms/bulk_edit.py:401 -#: netbox/dcim/forms/bulk_import.py:204 netbox/dcim/forms/bulk_import.py:271 +#: dcim/forms/bulk_edit.py:262 dcim/forms/bulk_edit.py:401 +#: dcim/forms/bulk_import.py:204 dcim/forms/bulk_import.py:271 msgid "Outer unit" msgstr "Unidad exterior" -#: netbox/dcim/forms/bulk_edit.py:267 netbox/dcim/forms/bulk_edit.py:406 +#: dcim/forms/bulk_edit.py:267 dcim/forms/bulk_edit.py:406 msgid "Mounting depth" msgstr "Profundidad de montaje" -#: netbox/dcim/forms/bulk_edit.py:272 netbox/dcim/forms/bulk_edit.py:299 -#: netbox/dcim/forms/bulk_edit.py:416 netbox/dcim/forms/bulk_edit.py:446 -#: netbox/dcim/forms/bulk_edit.py:529 netbox/dcim/forms/bulk_edit.py:552 -#: netbox/dcim/forms/bulk_edit.py:573 netbox/dcim/forms/bulk_edit.py:595 -#: netbox/dcim/forms/bulk_import.py:384 netbox/dcim/forms/bulk_import.py:416 -#: netbox/dcim/forms/filtersets.py:285 netbox/dcim/forms/filtersets.py:307 -#: netbox/dcim/forms/filtersets.py:327 netbox/dcim/forms/filtersets.py:401 -#: netbox/dcim/forms/filtersets.py:488 netbox/dcim/forms/filtersets.py:594 -#: netbox/dcim/forms/filtersets.py:613 netbox/dcim/forms/filtersets.py:674 -#: netbox/dcim/forms/model_forms.py:221 netbox/dcim/forms/model_forms.py:298 -#: netbox/dcim/tables/devicetypes.py:106 netbox/dcim/tables/modules.py:35 -#: netbox/dcim/tables/racks.py:74 netbox/dcim/tables/racks.py:172 -#: netbox/extras/forms/bulk_edit.py:53 netbox/extras/forms/bulk_edit.py:133 -#: netbox/extras/forms/bulk_edit.py:183 netbox/extras/forms/bulk_edit.py:288 -#: netbox/extras/forms/filtersets.py:64 netbox/extras/forms/filtersets.py:156 -#: netbox/extras/forms/filtersets.py:243 netbox/ipam/forms/bulk_edit.py:189 -#: netbox/templates/dcim/device.html:324 -#: netbox/templates/dcim/devicetype.html:49 -#: netbox/templates/dcim/moduletype.html:34 netbox/templates/dcim/rack.html:81 -#: netbox/templates/dcim/racktype.html:41 -#: netbox/templates/extras/configcontext.html:17 -#: netbox/templates/extras/customlink.html:25 -#: netbox/templates/extras/savedfilter.html:33 -#: netbox/templates/ipam/role.html:30 +#: dcim/forms/bulk_edit.py:272 dcim/forms/bulk_edit.py:299 +#: dcim/forms/bulk_edit.py:416 dcim/forms/bulk_edit.py:446 +#: dcim/forms/bulk_edit.py:529 dcim/forms/bulk_edit.py:552 +#: dcim/forms/bulk_edit.py:573 dcim/forms/bulk_edit.py:595 +#: dcim/forms/bulk_import.py:384 dcim/forms/bulk_import.py:416 +#: dcim/forms/filtersets.py:285 dcim/forms/filtersets.py:307 +#: dcim/forms/filtersets.py:327 dcim/forms/filtersets.py:401 +#: dcim/forms/filtersets.py:488 dcim/forms/filtersets.py:594 +#: dcim/forms/filtersets.py:613 dcim/forms/filtersets.py:674 +#: dcim/forms/model_forms.py:221 dcim/forms/model_forms.py:298 +#: dcim/tables/devicetypes.py:106 dcim/tables/modules.py:35 +#: dcim/tables/racks.py:74 dcim/tables/racks.py:172 +#: extras/forms/bulk_edit.py:53 extras/forms/bulk_edit.py:133 +#: extras/forms/bulk_edit.py:183 extras/forms/bulk_edit.py:288 +#: extras/forms/filtersets.py:64 extras/forms/filtersets.py:156 +#: extras/forms/filtersets.py:243 ipam/forms/bulk_edit.py:190 +#: templates/dcim/device.html:324 templates/dcim/devicetype.html:49 +#: templates/dcim/moduletype.html:45 templates/dcim/rack.html:81 +#: templates/dcim/racktype.html:41 templates/extras/configcontext.html:17 +#: templates/extras/customlink.html:25 templates/extras/savedfilter.html:33 +#: templates/ipam/role.html:30 msgid "Weight" msgstr "Peso" -#: netbox/dcim/forms/bulk_edit.py:277 netbox/dcim/forms/bulk_edit.py:421 -#: netbox/dcim/forms/filtersets.py:290 +#: dcim/forms/bulk_edit.py:277 dcim/forms/bulk_edit.py:421 +#: dcim/forms/filtersets.py:290 msgid "Max weight" msgstr "Peso máximo" -#: netbox/dcim/forms/bulk_edit.py:282 netbox/dcim/forms/bulk_edit.py:426 -#: netbox/dcim/forms/bulk_edit.py:534 netbox/dcim/forms/bulk_edit.py:578 -#: netbox/dcim/forms/bulk_import.py:210 netbox/dcim/forms/bulk_import.py:283 -#: netbox/dcim/forms/bulk_import.py:389 netbox/dcim/forms/bulk_import.py:421 -#: netbox/dcim/forms/filtersets.py:295 netbox/dcim/forms/filtersets.py:598 -#: netbox/dcim/forms/filtersets.py:678 +#: dcim/forms/bulk_edit.py:282 dcim/forms/bulk_edit.py:426 +#: dcim/forms/bulk_edit.py:534 dcim/forms/bulk_edit.py:578 +#: dcim/forms/bulk_import.py:210 dcim/forms/bulk_import.py:283 +#: dcim/forms/bulk_import.py:389 dcim/forms/bulk_import.py:421 +#: dcim/forms/filtersets.py:295 dcim/forms/filtersets.py:598 +#: dcim/forms/filtersets.py:678 msgid "Weight unit" msgstr "Unidad de peso" -#: netbox/dcim/forms/bulk_edit.py:296 netbox/dcim/forms/filtersets.py:305 -#: netbox/dcim/forms/model_forms.py:217 netbox/dcim/forms/model_forms.py:256 -#: netbox/templates/dcim/rack.html:45 netbox/templates/dcim/racktype.html:13 +#: dcim/forms/bulk_edit.py:296 dcim/forms/filtersets.py:305 +#: dcim/forms/model_forms.py:217 dcim/forms/model_forms.py:256 +#: templates/dcim/rack.html:45 templates/dcim/racktype.html:13 msgid "Rack Type" msgstr "Tipo de bastidor" -#: netbox/dcim/forms/bulk_edit.py:298 netbox/dcim/forms/model_forms.py:220 -#: netbox/dcim/forms/model_forms.py:297 +#: dcim/forms/bulk_edit.py:298 dcim/forms/model_forms.py:220 +#: dcim/forms/model_forms.py:297 msgid "Outer Dimensions" msgstr "Dimensiones exteriores" -#: netbox/dcim/forms/bulk_edit.py:301 netbox/dcim/forms/model_forms.py:222 -#: netbox/dcim/forms/model_forms.py:299 netbox/templates/dcim/device.html:315 -#: netbox/templates/dcim/inc/panels/racktype_dimensions.html:3 +#: dcim/forms/bulk_edit.py:301 dcim/forms/model_forms.py:222 +#: dcim/forms/model_forms.py:299 templates/dcim/device.html:315 +#: templates/dcim/inc/panels/racktype_dimensions.html:3 msgid "Dimensions" msgstr "Dimensiones" -#: netbox/dcim/forms/bulk_edit.py:303 netbox/dcim/forms/filtersets.py:306 -#: netbox/dcim/forms/filtersets.py:326 netbox/dcim/forms/model_forms.py:224 -#: netbox/templates/dcim/inc/panels/racktype_numbering.html:3 +#: dcim/forms/bulk_edit.py:303 dcim/forms/filtersets.py:306 +#: dcim/forms/filtersets.py:326 dcim/forms/model_forms.py:224 +#: templates/dcim/inc/panels/racktype_numbering.html:3 msgid "Numbering" msgstr "Numeración" -#: netbox/dcim/forms/bulk_edit.py:357 netbox/dcim/forms/bulk_edit.py:1262 -#: netbox/dcim/forms/bulk_edit.py:1655 netbox/dcim/forms/bulk_import.py:253 -#: netbox/dcim/forms/bulk_import.py:1076 netbox/dcim/forms/filtersets.py:367 -#: netbox/dcim/forms/filtersets.py:777 netbox/dcim/forms/filtersets.py:1534 -#: netbox/dcim/forms/model_forms.py:251 netbox/dcim/forms/model_forms.py:1070 -#: netbox/dcim/forms/model_forms.py:1510 -#: netbox/dcim/forms/object_import.py:181 netbox/dcim/tables/devices.py:169 -#: netbox/dcim/tables/devices.py:809 netbox/dcim/tables/devices.py:937 -#: netbox/dcim/tables/devicetypes.py:304 netbox/dcim/tables/racks.py:129 -#: netbox/extras/filtersets.py:552 netbox/ipam/forms/bulk_edit.py:260 -#: netbox/ipam/forms/bulk_edit.py:310 netbox/ipam/forms/bulk_edit.py:358 -#: netbox/ipam/forms/bulk_edit.py:556 netbox/ipam/forms/bulk_import.py:197 -#: netbox/ipam/forms/bulk_import.py:262 netbox/ipam/forms/bulk_import.py:298 -#: netbox/ipam/forms/bulk_import.py:455 netbox/ipam/forms/filtersets.py:237 -#: netbox/ipam/forms/filtersets.py:289 netbox/ipam/forms/filtersets.py:360 -#: netbox/ipam/forms/filtersets.py:509 netbox/ipam/forms/model_forms.py:188 -#: netbox/ipam/forms/model_forms.py:221 netbox/ipam/forms/model_forms.py:250 -#: netbox/ipam/forms/model_forms.py:643 netbox/ipam/tables/ip.py:258 -#: netbox/ipam/tables/ip.py:316 netbox/ipam/tables/ip.py:367 -#: netbox/ipam/tables/vlans.py:130 netbox/ipam/tables/vlans.py:235 -#: netbox/templates/dcim/device.html:182 -#: netbox/templates/dcim/inc/panels/inventory_items.html:20 -#: netbox/templates/dcim/interface.html:223 -#: netbox/templates/dcim/inventoryitem.html:36 -#: netbox/templates/dcim/rack.html:49 netbox/templates/ipam/ipaddress.html:41 -#: netbox/templates/ipam/iprange.html:50 netbox/templates/ipam/prefix.html:77 -#: netbox/templates/ipam/role.html:19 netbox/templates/ipam/vlan.html:52 -#: netbox/templates/virtualization/virtualmachine.html:23 -#: netbox/templates/vpn/tunneltermination.html:17 -#: netbox/templates/wireless/inc/wirelesslink_interface.html:20 -#: netbox/tenancy/forms/bulk_edit.py:142 -#: netbox/tenancy/forms/filtersets.py:107 -#: netbox/tenancy/forms/model_forms.py:137 -#: netbox/tenancy/tables/contacts.py:102 -#: netbox/virtualization/forms/bulk_edit.py:145 -#: netbox/virtualization/forms/bulk_import.py:106 -#: netbox/virtualization/forms/filtersets.py:157 -#: netbox/virtualization/forms/model_forms.py:195 -#: netbox/virtualization/tables/virtualmachines.py:75 -#: netbox/vpn/forms/bulk_edit.py:87 netbox/vpn/forms/bulk_import.py:81 -#: netbox/vpn/forms/filtersets.py:85 netbox/vpn/forms/model_forms.py:78 -#: netbox/vpn/forms/model_forms.py:113 netbox/vpn/tables/tunnels.py:82 +#: dcim/forms/bulk_edit.py:357 dcim/forms/bulk_edit.py:1262 +#: dcim/forms/bulk_edit.py:1655 dcim/forms/bulk_import.py:253 +#: dcim/forms/bulk_import.py:1076 dcim/forms/filtersets.py:367 +#: dcim/forms/filtersets.py:777 dcim/forms/filtersets.py:1534 +#: dcim/forms/model_forms.py:251 dcim/forms/model_forms.py:1070 +#: dcim/forms/model_forms.py:1510 dcim/forms/object_import.py:181 +#: dcim/tables/devices.py:169 dcim/tables/devices.py:809 +#: dcim/tables/devices.py:937 dcim/tables/devicetypes.py:304 +#: dcim/tables/racks.py:129 extras/filtersets.py:552 +#: ipam/forms/bulk_edit.py:261 ipam/forms/bulk_edit.py:311 +#: ipam/forms/bulk_edit.py:359 ipam/forms/bulk_edit.py:511 +#: ipam/forms/bulk_import.py:197 ipam/forms/bulk_import.py:262 +#: ipam/forms/bulk_import.py:298 ipam/forms/bulk_import.py:455 +#: ipam/forms/filtersets.py:237 ipam/forms/filtersets.py:289 +#: ipam/forms/filtersets.py:360 ipam/forms/filtersets.py:509 +#: ipam/forms/model_forms.py:188 ipam/forms/model_forms.py:221 +#: ipam/forms/model_forms.py:250 ipam/forms/model_forms.py:643 +#: ipam/tables/ip.py:258 ipam/tables/ip.py:316 ipam/tables/ip.py:367 +#: ipam/tables/vlans.py:130 ipam/tables/vlans.py:235 +#: templates/dcim/device.html:182 +#: templates/dcim/inc/panels/inventory_items.html:20 +#: templates/dcim/interface.html:223 templates/dcim/inventoryitem.html:36 +#: templates/dcim/rack.html:49 templates/ipam/ipaddress.html:41 +#: templates/ipam/iprange.html:50 templates/ipam/prefix.html:77 +#: templates/ipam/role.html:19 templates/ipam/vlan.html:52 +#: templates/virtualization/virtualmachine.html:23 +#: templates/vpn/tunneltermination.html:17 +#: templates/wireless/inc/wirelesslink_interface.html:20 +#: tenancy/forms/bulk_edit.py:142 tenancy/forms/filtersets.py:107 +#: tenancy/forms/model_forms.py:137 tenancy/tables/contacts.py:102 +#: virtualization/forms/bulk_edit.py:145 +#: virtualization/forms/bulk_import.py:106 +#: virtualization/forms/filtersets.py:157 +#: virtualization/forms/model_forms.py:195 +#: virtualization/tables/virtualmachines.py:75 vpn/forms/bulk_edit.py:87 +#: vpn/forms/bulk_import.py:81 vpn/forms/filtersets.py:85 +#: vpn/forms/model_forms.py:78 vpn/forms/model_forms.py:113 +#: vpn/tables/tunnels.py:82 msgid "Role" msgstr "Rol" -#: netbox/dcim/forms/bulk_edit.py:364 netbox/dcim/forms/bulk_edit.py:712 -#: netbox/dcim/forms/bulk_edit.py:764 netbox/templates/dcim/device.html:104 -#: netbox/templates/dcim/module.html:77 -#: netbox/templates/dcim/modulebay.html:70 netbox/templates/dcim/rack.html:57 -#: netbox/templates/virtualization/virtualmachine.html:35 +#: dcim/forms/bulk_edit.py:364 dcim/forms/bulk_edit.py:712 +#: dcim/forms/bulk_edit.py:764 templates/dcim/device.html:104 +#: templates/dcim/module.html:77 templates/dcim/modulebay.html:70 +#: templates/dcim/rack.html:57 templates/virtualization/virtualmachine.html:35 msgid "Serial Number" msgstr "Número de serie" -#: netbox/dcim/forms/bulk_edit.py:367 netbox/dcim/forms/filtersets.py:387 -#: netbox/dcim/forms/filtersets.py:813 netbox/dcim/forms/filtersets.py:967 -#: netbox/dcim/forms/filtersets.py:1546 +#: dcim/forms/bulk_edit.py:367 dcim/forms/filtersets.py:387 +#: dcim/forms/filtersets.py:813 dcim/forms/filtersets.py:967 +#: dcim/forms/filtersets.py:1546 msgid "Asset tag" msgstr "Etiqueta de activo" -#: netbox/dcim/forms/bulk_edit.py:411 netbox/dcim/forms/bulk_edit.py:524 -#: netbox/dcim/forms/bulk_edit.py:568 netbox/dcim/forms/bulk_edit.py:705 -#: netbox/dcim/forms/bulk_import.py:277 netbox/dcim/forms/bulk_import.py:410 -#: netbox/dcim/forms/bulk_import.py:580 netbox/dcim/forms/filtersets.py:280 -#: netbox/dcim/forms/filtersets.py:511 netbox/dcim/forms/filtersets.py:669 -#: netbox/dcim/forms/filtersets.py:804 netbox/templates/dcim/device.html:98 -#: netbox/templates/dcim/devicetype.html:65 -#: netbox/templates/dcim/moduletype.html:30 netbox/templates/dcim/rack.html:65 -#: netbox/templates/dcim/racktype.html:28 +#: dcim/forms/bulk_edit.py:411 dcim/forms/bulk_edit.py:524 +#: dcim/forms/bulk_edit.py:568 dcim/forms/bulk_edit.py:705 +#: dcim/forms/bulk_import.py:277 dcim/forms/bulk_import.py:410 +#: dcim/forms/bulk_import.py:580 dcim/forms/filtersets.py:280 +#: dcim/forms/filtersets.py:511 dcim/forms/filtersets.py:669 +#: dcim/forms/filtersets.py:804 templates/dcim/device.html:98 +#: templates/dcim/devicetype.html:65 templates/dcim/moduletype.html:41 +#: templates/dcim/rack.html:65 templates/dcim/racktype.html:28 msgid "Airflow" msgstr "Flujo de aire" -#: netbox/dcim/forms/bulk_edit.py:440 netbox/dcim/forms/bulk_edit.py:910 -#: netbox/dcim/forms/bulk_import.py:322 netbox/dcim/forms/bulk_import.py:325 -#: netbox/dcim/forms/bulk_import.py:553 netbox/dcim/forms/bulk_import.py:1358 -#: netbox/dcim/forms/bulk_import.py:1362 netbox/dcim/forms/filtersets.py:104 -#: netbox/dcim/forms/filtersets.py:324 netbox/dcim/forms/filtersets.py:405 -#: netbox/dcim/forms/filtersets.py:419 netbox/dcim/forms/filtersets.py:457 -#: netbox/dcim/forms/filtersets.py:772 netbox/dcim/forms/filtersets.py:1035 -#: netbox/dcim/forms/filtersets.py:1167 netbox/dcim/forms/model_forms.py:264 -#: netbox/dcim/forms/model_forms.py:306 netbox/dcim/forms/model_forms.py:479 -#: netbox/dcim/forms/model_forms.py:755 netbox/dcim/forms/object_create.py:400 -#: netbox/dcim/tables/devices.py:161 netbox/dcim/tables/power.py:70 -#: netbox/dcim/tables/racks.py:217 netbox/ipam/forms/bulk_edit.py:468 -#: netbox/ipam/forms/filtersets.py:442 netbox/templates/dcim/device.html:30 -#: netbox/templates/dcim/inc/cable_termination.html:16 -#: netbox/templates/dcim/powerfeed.html:28 netbox/templates/dcim/rack.html:13 -#: netbox/templates/dcim/rack/base.html:4 -#: netbox/templates/dcim/rackreservation.html:19 -#: netbox/templates/dcim/rackreservation.html:36 -#: netbox/virtualization/forms/model_forms.py:113 +#: dcim/forms/bulk_edit.py:440 dcim/forms/bulk_edit.py:910 +#: dcim/forms/bulk_import.py:322 dcim/forms/bulk_import.py:325 +#: dcim/forms/bulk_import.py:553 dcim/forms/bulk_import.py:1358 +#: dcim/forms/bulk_import.py:1362 dcim/forms/filtersets.py:104 +#: dcim/forms/filtersets.py:324 dcim/forms/filtersets.py:405 +#: dcim/forms/filtersets.py:419 dcim/forms/filtersets.py:457 +#: dcim/forms/filtersets.py:772 dcim/forms/filtersets.py:1035 +#: dcim/forms/filtersets.py:1167 dcim/forms/model_forms.py:264 +#: dcim/forms/model_forms.py:306 dcim/forms/model_forms.py:479 +#: dcim/forms/model_forms.py:755 dcim/forms/object_create.py:400 +#: dcim/tables/devices.py:161 dcim/tables/power.py:70 dcim/tables/racks.py:217 +#: ipam/forms/filtersets.py:442 templates/dcim/device.html:30 +#: templates/dcim/inc/cable_termination.html:16 +#: templates/dcim/powerfeed.html:28 templates/dcim/rack.html:13 +#: templates/dcim/rack/base.html:4 templates/dcim/rackreservation.html:19 +#: templates/dcim/rackreservation.html:36 +#: virtualization/forms/model_forms.py:113 msgid "Rack" msgstr "Estante" -#: netbox/dcim/forms/bulk_edit.py:444 netbox/dcim/forms/bulk_edit.py:730 -#: netbox/dcim/forms/filtersets.py:325 netbox/dcim/forms/filtersets.py:398 -#: netbox/dcim/forms/filtersets.py:481 netbox/dcim/forms/filtersets.py:608 -#: netbox/dcim/forms/filtersets.py:721 netbox/dcim/forms/filtersets.py:942 -#: netbox/dcim/forms/model_forms.py:670 netbox/dcim/forms/model_forms.py:1580 -#: netbox/templates/dcim/device_edit.html:20 +#: dcim/forms/bulk_edit.py:444 dcim/forms/bulk_edit.py:730 +#: dcim/forms/filtersets.py:325 dcim/forms/filtersets.py:398 +#: dcim/forms/filtersets.py:481 dcim/forms/filtersets.py:608 +#: dcim/forms/filtersets.py:721 dcim/forms/filtersets.py:942 +#: dcim/forms/model_forms.py:670 dcim/forms/model_forms.py:1580 +#: templates/dcim/device_edit.html:20 msgid "Hardware" msgstr "Hardware" -#: netbox/dcim/forms/bulk_edit.py:500 netbox/dcim/forms/bulk_import.py:377 -#: netbox/dcim/forms/filtersets.py:499 netbox/dcim/forms/model_forms.py:353 +#: dcim/forms/bulk_edit.py:500 dcim/forms/bulk_import.py:377 +#: dcim/forms/filtersets.py:499 dcim/forms/model_forms.py:353 msgid "Default platform" msgstr "Plataforma predeterminada" -#: netbox/dcim/forms/bulk_edit.py:505 netbox/dcim/forms/bulk_edit.py:564 -#: netbox/dcim/forms/filtersets.py:502 netbox/dcim/forms/filtersets.py:622 +#: dcim/forms/bulk_edit.py:505 dcim/forms/bulk_edit.py:564 +#: dcim/forms/filtersets.py:502 dcim/forms/filtersets.py:622 msgid "Part number" msgstr "Número de pieza" -#: netbox/dcim/forms/bulk_edit.py:509 +#: dcim/forms/bulk_edit.py:509 msgid "U height" msgstr "Altura en U" -#: netbox/dcim/forms/bulk_edit.py:521 netbox/dcim/tables/devicetypes.py:102 +#: dcim/forms/bulk_edit.py:521 dcim/tables/devicetypes.py:102 msgid "Exclude from utilization" msgstr "Excluir de la utilización" -#: netbox/dcim/forms/bulk_edit.py:550 netbox/dcim/forms/model_forms.py:368 -#: netbox/dcim/tables/devicetypes.py:77 netbox/templates/dcim/device.html:88 -#: netbox/templates/dcim/devicebay.html:52 -#: netbox/templates/dcim/module.html:61 +#: dcim/forms/bulk_edit.py:550 dcim/forms/model_forms.py:368 +#: dcim/tables/devicetypes.py:77 templates/dcim/device.html:88 +#: templates/dcim/devicebay.html:52 templates/dcim/module.html:61 msgid "Device Type" msgstr "Tipo de dispositivo" -#: netbox/dcim/forms/bulk_edit.py:592 netbox/dcim/forms/model_forms.py:401 -#: netbox/dcim/tables/modules.py:17 netbox/dcim/tables/modules.py:65 -#: netbox/templates/dcim/module.html:65 -#: netbox/templates/dcim/modulebay.html:66 -#: netbox/templates/dcim/moduletype.html:11 +#: dcim/forms/bulk_edit.py:592 dcim/forms/model_forms.py:401 +#: dcim/tables/modules.py:17 dcim/tables/modules.py:65 +#: templates/dcim/module.html:65 templates/dcim/modulebay.html:66 +#: templates/dcim/moduletype.html:22 msgid "Module Type" msgstr "Tipo de módulo" -#: netbox/dcim/forms/bulk_edit.py:596 netbox/dcim/forms/model_forms.py:371 -#: netbox/dcim/forms/model_forms.py:402 -#: netbox/templates/dcim/devicetype.html:11 +#: dcim/forms/bulk_edit.py:596 dcim/forms/model_forms.py:371 +#: dcim/forms/model_forms.py:402 templates/dcim/devicetype.html:11 msgid "Chassis" msgstr "Chasis" -#: netbox/dcim/forms/bulk_edit.py:610 netbox/dcim/models/devices.py:484 -#: netbox/dcim/tables/devices.py:67 +#: dcim/forms/bulk_edit.py:610 dcim/models/devices.py:484 +#: dcim/tables/devices.py:67 msgid "VM role" msgstr "Función de máquina virtual" -#: netbox/dcim/forms/bulk_edit.py:613 netbox/dcim/forms/bulk_edit.py:637 -#: netbox/dcim/forms/bulk_edit.py:720 netbox/dcim/forms/bulk_import.py:434 -#: netbox/dcim/forms/bulk_import.py:438 netbox/dcim/forms/bulk_import.py:457 -#: netbox/dcim/forms/bulk_import.py:461 netbox/dcim/forms/bulk_import.py:586 -#: netbox/dcim/forms/bulk_import.py:590 netbox/dcim/forms/filtersets.py:689 -#: netbox/dcim/forms/filtersets.py:705 netbox/dcim/forms/filtersets.py:823 -#: netbox/dcim/forms/model_forms.py:415 netbox/dcim/forms/model_forms.py:441 -#: netbox/dcim/forms/model_forms.py:555 -#: netbox/virtualization/forms/bulk_import.py:132 -#: netbox/virtualization/forms/bulk_import.py:133 -#: netbox/virtualization/forms/filtersets.py:188 -#: netbox/virtualization/forms/model_forms.py:215 +#: dcim/forms/bulk_edit.py:613 dcim/forms/bulk_edit.py:637 +#: dcim/forms/bulk_edit.py:720 dcim/forms/bulk_import.py:434 +#: dcim/forms/bulk_import.py:438 dcim/forms/bulk_import.py:457 +#: dcim/forms/bulk_import.py:461 dcim/forms/bulk_import.py:586 +#: dcim/forms/bulk_import.py:590 dcim/forms/filtersets.py:689 +#: dcim/forms/filtersets.py:705 dcim/forms/filtersets.py:823 +#: dcim/forms/model_forms.py:415 dcim/forms/model_forms.py:441 +#: dcim/forms/model_forms.py:555 virtualization/forms/bulk_import.py:132 +#: virtualization/forms/bulk_import.py:133 +#: virtualization/forms/filtersets.py:188 +#: virtualization/forms/model_forms.py:215 msgid "Config template" msgstr "Plantilla de configuración" -#: netbox/dcim/forms/bulk_edit.py:661 netbox/dcim/forms/bulk_edit.py:1061 -#: netbox/dcim/forms/bulk_import.py:492 netbox/dcim/forms/filtersets.py:114 -#: netbox/dcim/forms/model_forms.py:501 netbox/dcim/forms/model_forms.py:872 -#: netbox/dcim/forms/model_forms.py:889 netbox/extras/filtersets.py:547 +#: dcim/forms/bulk_edit.py:661 dcim/forms/bulk_edit.py:1061 +#: dcim/forms/bulk_import.py:492 dcim/forms/filtersets.py:114 +#: dcim/forms/model_forms.py:501 dcim/forms/model_forms.py:872 +#: dcim/forms/model_forms.py:889 extras/filtersets.py:547 msgid "Device type" msgstr "Tipo de dispositivo" -#: netbox/dcim/forms/bulk_edit.py:672 netbox/dcim/forms/bulk_import.py:473 -#: netbox/dcim/forms/filtersets.py:119 netbox/dcim/forms/model_forms.py:509 +#: dcim/forms/bulk_edit.py:672 dcim/forms/bulk_import.py:473 +#: dcim/forms/filtersets.py:119 dcim/forms/model_forms.py:509 msgid "Device role" msgstr "Función del dispositivo" -#: netbox/dcim/forms/bulk_edit.py:695 netbox/dcim/forms/bulk_import.py:498 -#: netbox/dcim/forms/filtersets.py:796 netbox/dcim/forms/model_forms.py:451 -#: netbox/dcim/forms/model_forms.py:513 netbox/dcim/tables/devices.py:182 -#: netbox/extras/filtersets.py:563 netbox/templates/dcim/device.html:186 -#: netbox/templates/dcim/platform.html:26 -#: netbox/templates/virtualization/virtualmachine.html:27 -#: netbox/virtualization/forms/bulk_edit.py:160 -#: netbox/virtualization/forms/bulk_import.py:122 -#: netbox/virtualization/forms/filtersets.py:168 -#: netbox/virtualization/forms/model_forms.py:203 -#: netbox/virtualization/tables/virtualmachines.py:79 +#: dcim/forms/bulk_edit.py:695 dcim/forms/bulk_import.py:498 +#: dcim/forms/filtersets.py:796 dcim/forms/model_forms.py:451 +#: dcim/forms/model_forms.py:513 dcim/tables/devices.py:182 +#: extras/filtersets.py:563 templates/dcim/device.html:186 +#: templates/dcim/platform.html:26 +#: templates/virtualization/virtualmachine.html:27 +#: virtualization/forms/bulk_edit.py:160 +#: virtualization/forms/bulk_import.py:122 +#: virtualization/forms/filtersets.py:168 +#: virtualization/forms/model_forms.py:203 +#: virtualization/tables/virtualmachines.py:79 msgid "Platform" msgstr "Plataforma" -#: netbox/dcim/forms/bulk_edit.py:728 netbox/dcim/forms/bulk_edit.py:1281 -#: netbox/dcim/forms/bulk_edit.py:1650 netbox/dcim/forms/bulk_edit.py:1696 -#: netbox/dcim/forms/bulk_import.py:641 netbox/dcim/forms/bulk_import.py:703 -#: netbox/dcim/forms/bulk_import.py:729 netbox/dcim/forms/bulk_import.py:755 -#: netbox/dcim/forms/bulk_import.py:775 netbox/dcim/forms/bulk_import.py:828 -#: netbox/dcim/forms/bulk_import.py:946 netbox/dcim/forms/bulk_import.py:994 -#: netbox/dcim/forms/bulk_import.py:1011 netbox/dcim/forms/bulk_import.py:1023 -#: netbox/dcim/forms/bulk_import.py:1071 netbox/dcim/forms/bulk_import.py:1422 -#: netbox/dcim/forms/connections.py:24 netbox/dcim/forms/filtersets.py:131 -#: netbox/dcim/forms/filtersets.py:921 netbox/dcim/forms/filtersets.py:1051 -#: netbox/dcim/forms/filtersets.py:1242 netbox/dcim/forms/filtersets.py:1267 -#: netbox/dcim/forms/filtersets.py:1291 netbox/dcim/forms/filtersets.py:1311 -#: netbox/dcim/forms/filtersets.py:1334 netbox/dcim/forms/filtersets.py:1444 -#: netbox/dcim/forms/filtersets.py:1469 netbox/dcim/forms/filtersets.py:1493 -#: netbox/dcim/forms/filtersets.py:1511 netbox/dcim/forms/filtersets.py:1528 -#: netbox/dcim/forms/filtersets.py:1592 netbox/dcim/forms/filtersets.py:1616 -#: netbox/dcim/forms/filtersets.py:1640 netbox/dcim/forms/model_forms.py:633 -#: netbox/dcim/forms/model_forms.py:849 netbox/dcim/forms/model_forms.py:1208 -#: netbox/dcim/forms/model_forms.py:1664 -#: netbox/dcim/forms/object_create.py:257 netbox/dcim/tables/connections.py:22 -#: netbox/dcim/tables/connections.py:41 netbox/dcim/tables/connections.py:60 -#: netbox/dcim/tables/devices.py:285 netbox/dcim/tables/devices.py:371 -#: netbox/dcim/tables/devices.py:412 netbox/dcim/tables/devices.py:454 -#: netbox/dcim/tables/devices.py:505 netbox/dcim/tables/devices.py:597 -#: netbox/dcim/tables/devices.py:697 netbox/dcim/tables/devices.py:754 -#: netbox/dcim/tables/devices.py:801 netbox/dcim/tables/devices.py:861 -#: netbox/dcim/tables/devices.py:930 netbox/dcim/tables/devices.py:1057 -#: netbox/dcim/tables/modules.py:52 netbox/extras/forms/filtersets.py:321 -#: netbox/ipam/forms/bulk_import.py:304 netbox/ipam/forms/bulk_import.py:481 -#: netbox/ipam/forms/filtersets.py:551 netbox/ipam/forms/model_forms.py:319 -#: netbox/ipam/forms/model_forms.py:679 netbox/ipam/forms/model_forms.py:712 -#: netbox/ipam/forms/model_forms.py:738 netbox/ipam/tables/vlans.py:180 -#: netbox/templates/dcim/consoleport.html:20 -#: netbox/templates/dcim/consoleserverport.html:20 -#: netbox/templates/dcim/device.html:15 netbox/templates/dcim/device.html:130 -#: netbox/templates/dcim/device_edit.html:10 -#: netbox/templates/dcim/devicebay.html:20 -#: netbox/templates/dcim/devicebay.html:48 -#: netbox/templates/dcim/frontport.html:20 -#: netbox/templates/dcim/interface.html:30 -#: netbox/templates/dcim/interface.html:161 -#: netbox/templates/dcim/inventoryitem.html:20 -#: netbox/templates/dcim/module.html:57 -#: netbox/templates/dcim/modulebay.html:20 -#: netbox/templates/dcim/poweroutlet.html:20 -#: netbox/templates/dcim/powerport.html:20 -#: netbox/templates/dcim/rearport.html:20 -#: netbox/templates/dcim/virtualchassis.html:65 -#: netbox/templates/dcim/virtualchassis_edit.html:51 -#: netbox/templates/dcim/virtualdevicecontext.html:22 -#: netbox/templates/virtualization/virtualmachine.html:114 -#: netbox/templates/vpn/tunneltermination.html:23 -#: netbox/templates/wireless/inc/wirelesslink_interface.html:6 -#: netbox/virtualization/filtersets.py:167 -#: netbox/virtualization/forms/bulk_edit.py:137 -#: netbox/virtualization/forms/bulk_import.py:99 -#: netbox/virtualization/forms/filtersets.py:128 -#: netbox/virtualization/forms/model_forms.py:185 -#: netbox/virtualization/tables/virtualmachines.py:71 netbox/vpn/choices.py:44 -#: netbox/vpn/forms/bulk_import.py:86 netbox/vpn/forms/bulk_import.py:283 -#: netbox/vpn/forms/filtersets.py:275 netbox/vpn/forms/model_forms.py:90 -#: netbox/vpn/forms/model_forms.py:125 netbox/vpn/forms/model_forms.py:236 -#: netbox/vpn/forms/model_forms.py:453 netbox/wireless/forms/model_forms.py:99 -#: netbox/wireless/forms/model_forms.py:141 -#: netbox/wireless/tables/wirelesslan.py:75 +#: dcim/forms/bulk_edit.py:728 dcim/forms/bulk_edit.py:1281 +#: dcim/forms/bulk_edit.py:1650 dcim/forms/bulk_edit.py:1696 +#: dcim/forms/bulk_import.py:641 dcim/forms/bulk_import.py:703 +#: dcim/forms/bulk_import.py:729 dcim/forms/bulk_import.py:755 +#: dcim/forms/bulk_import.py:775 dcim/forms/bulk_import.py:828 +#: dcim/forms/bulk_import.py:946 dcim/forms/bulk_import.py:994 +#: dcim/forms/bulk_import.py:1011 dcim/forms/bulk_import.py:1023 +#: dcim/forms/bulk_import.py:1071 dcim/forms/bulk_import.py:1422 +#: dcim/forms/connections.py:24 dcim/forms/filtersets.py:131 +#: dcim/forms/filtersets.py:921 dcim/forms/filtersets.py:1051 +#: dcim/forms/filtersets.py:1242 dcim/forms/filtersets.py:1267 +#: dcim/forms/filtersets.py:1291 dcim/forms/filtersets.py:1311 +#: dcim/forms/filtersets.py:1334 dcim/forms/filtersets.py:1444 +#: dcim/forms/filtersets.py:1469 dcim/forms/filtersets.py:1493 +#: dcim/forms/filtersets.py:1511 dcim/forms/filtersets.py:1528 +#: dcim/forms/filtersets.py:1592 dcim/forms/filtersets.py:1616 +#: dcim/forms/filtersets.py:1640 dcim/forms/model_forms.py:633 +#: dcim/forms/model_forms.py:849 dcim/forms/model_forms.py:1208 +#: dcim/forms/model_forms.py:1664 dcim/forms/object_create.py:257 +#: dcim/tables/connections.py:22 dcim/tables/connections.py:41 +#: dcim/tables/connections.py:60 dcim/tables/devices.py:285 +#: dcim/tables/devices.py:371 dcim/tables/devices.py:412 +#: dcim/tables/devices.py:454 dcim/tables/devices.py:505 +#: dcim/tables/devices.py:597 dcim/tables/devices.py:697 +#: dcim/tables/devices.py:754 dcim/tables/devices.py:801 +#: dcim/tables/devices.py:861 dcim/tables/devices.py:930 +#: dcim/tables/devices.py:1057 dcim/tables/modules.py:52 +#: extras/forms/filtersets.py:321 ipam/forms/bulk_import.py:304 +#: ipam/forms/bulk_import.py:481 ipam/forms/filtersets.py:551 +#: ipam/forms/model_forms.py:319 ipam/forms/model_forms.py:679 +#: ipam/forms/model_forms.py:712 ipam/forms/model_forms.py:738 +#: ipam/tables/vlans.py:180 templates/dcim/consoleport.html:20 +#: templates/dcim/consoleserverport.html:20 templates/dcim/device.html:15 +#: templates/dcim/device.html:130 templates/dcim/device_edit.html:10 +#: templates/dcim/devicebay.html:20 templates/dcim/devicebay.html:48 +#: templates/dcim/frontport.html:20 templates/dcim/interface.html:30 +#: templates/dcim/interface.html:161 templates/dcim/inventoryitem.html:20 +#: templates/dcim/module.html:57 templates/dcim/modulebay.html:20 +#: templates/dcim/poweroutlet.html:20 templates/dcim/powerport.html:20 +#: templates/dcim/rearport.html:20 templates/dcim/virtualchassis.html:65 +#: templates/dcim/virtualchassis_edit.html:51 +#: templates/dcim/virtualdevicecontext.html:22 +#: templates/virtualization/virtualmachine.html:114 +#: templates/vpn/tunneltermination.html:23 +#: templates/wireless/inc/wirelesslink_interface.html:6 +#: virtualization/filtersets.py:167 virtualization/forms/bulk_edit.py:137 +#: virtualization/forms/bulk_import.py:99 +#: virtualization/forms/filtersets.py:128 +#: virtualization/forms/model_forms.py:185 +#: virtualization/tables/virtualmachines.py:71 vpn/choices.py:44 +#: vpn/forms/bulk_import.py:86 vpn/forms/bulk_import.py:283 +#: vpn/forms/filtersets.py:275 vpn/forms/model_forms.py:90 +#: vpn/forms/model_forms.py:125 vpn/forms/model_forms.py:236 +#: vpn/forms/model_forms.py:453 wireless/forms/model_forms.py:99 +#: wireless/forms/model_forms.py:141 wireless/tables/wirelesslan.py:75 msgid "Device" msgstr "Dispositivo" -#: netbox/dcim/forms/bulk_edit.py:731 -#: netbox/templates/extras/dashboard/widget_config.html:7 -#: netbox/virtualization/forms/bulk_edit.py:191 +#: dcim/forms/bulk_edit.py:731 templates/extras/dashboard/widget_config.html:7 +#: virtualization/forms/bulk_edit.py:191 msgid "Configuration" msgstr "Configuración" -#: netbox/dcim/forms/bulk_edit.py:745 netbox/dcim/forms/bulk_import.py:653 -#: netbox/dcim/forms/model_forms.py:647 netbox/dcim/forms/model_forms.py:897 +#: dcim/forms/bulk_edit.py:745 dcim/forms/bulk_import.py:653 +#: dcim/forms/model_forms.py:647 dcim/forms/model_forms.py:897 msgid "Module type" msgstr "Tipo de módulo" -#: netbox/dcim/forms/bulk_edit.py:799 netbox/dcim/forms/bulk_edit.py:984 -#: netbox/dcim/forms/bulk_edit.py:1003 netbox/dcim/forms/bulk_edit.py:1026 -#: netbox/dcim/forms/bulk_edit.py:1068 netbox/dcim/forms/bulk_edit.py:1112 -#: netbox/dcim/forms/bulk_edit.py:1163 netbox/dcim/forms/bulk_edit.py:1190 -#: netbox/dcim/forms/bulk_edit.py:1217 netbox/dcim/forms/bulk_edit.py:1235 -#: netbox/dcim/forms/bulk_edit.py:1253 netbox/dcim/forms/filtersets.py:67 -#: netbox/dcim/forms/object_create.py:46 netbox/templates/dcim/cable.html:32 -#: netbox/templates/dcim/consoleport.html:32 -#: netbox/templates/dcim/consoleserverport.html:32 -#: netbox/templates/dcim/devicebay.html:28 -#: netbox/templates/dcim/frontport.html:32 -#: netbox/templates/dcim/inc/panels/inventory_items.html:19 -#: netbox/templates/dcim/interface.html:42 -#: netbox/templates/dcim/inventoryitem.html:32 -#: netbox/templates/dcim/modulebay.html:34 -#: netbox/templates/dcim/poweroutlet.html:32 -#: netbox/templates/dcim/powerport.html:32 -#: netbox/templates/dcim/rearport.html:32 -#: netbox/templates/extras/customfield.html:26 -#: netbox/templates/generic/bulk_import.html:162 +#: dcim/forms/bulk_edit.py:799 dcim/forms/bulk_edit.py:984 +#: dcim/forms/bulk_edit.py:1003 dcim/forms/bulk_edit.py:1026 +#: dcim/forms/bulk_edit.py:1068 dcim/forms/bulk_edit.py:1112 +#: dcim/forms/bulk_edit.py:1163 dcim/forms/bulk_edit.py:1190 +#: dcim/forms/bulk_edit.py:1217 dcim/forms/bulk_edit.py:1235 +#: dcim/forms/bulk_edit.py:1253 dcim/forms/filtersets.py:67 +#: dcim/forms/object_create.py:46 templates/dcim/cable.html:32 +#: templates/dcim/consoleport.html:32 templates/dcim/consoleserverport.html:32 +#: templates/dcim/devicebay.html:28 templates/dcim/frontport.html:32 +#: templates/dcim/inc/panels/inventory_items.html:19 +#: templates/dcim/interface.html:42 templates/dcim/inventoryitem.html:32 +#: templates/dcim/modulebay.html:34 templates/dcim/poweroutlet.html:32 +#: templates/dcim/powerport.html:32 templates/dcim/rearport.html:32 +#: templates/extras/customfield.html:26 templates/generic/bulk_import.html:162 msgid "Label" msgstr "Etiqueta" -#: netbox/dcim/forms/bulk_edit.py:808 netbox/dcim/forms/filtersets.py:1068 -#: netbox/templates/dcim/cable.html:50 +#: dcim/forms/bulk_edit.py:808 dcim/forms/filtersets.py:1068 +#: templates/dcim/cable.html:50 msgid "Length" msgstr "Longitud" -#: netbox/dcim/forms/bulk_edit.py:813 netbox/dcim/forms/bulk_import.py:1226 -#: netbox/dcim/forms/bulk_import.py:1229 netbox/dcim/forms/filtersets.py:1072 +#: dcim/forms/bulk_edit.py:813 dcim/forms/bulk_import.py:1226 +#: dcim/forms/bulk_import.py:1229 dcim/forms/filtersets.py:1072 msgid "Length unit" msgstr "Unidad de longitud" -#: netbox/dcim/forms/bulk_edit.py:837 -#: netbox/templates/dcim/virtualchassis.html:23 +#: dcim/forms/bulk_edit.py:837 templates/dcim/virtualchassis.html:23 msgid "Domain" msgstr "Dominio" -#: netbox/dcim/forms/bulk_edit.py:905 netbox/dcim/forms/bulk_import.py:1345 -#: netbox/dcim/forms/filtersets.py:1158 netbox/dcim/forms/model_forms.py:750 +#: dcim/forms/bulk_edit.py:905 dcim/forms/bulk_import.py:1345 +#: dcim/forms/filtersets.py:1158 dcim/forms/model_forms.py:750 msgid "Power panel" msgstr "Panel de alimentación" -#: netbox/dcim/forms/bulk_edit.py:927 netbox/dcim/forms/bulk_import.py:1381 -#: netbox/dcim/forms/filtersets.py:1180 -#: netbox/templates/dcim/powerfeed.html:83 +#: dcim/forms/bulk_edit.py:927 dcim/forms/bulk_import.py:1381 +#: dcim/forms/filtersets.py:1180 templates/dcim/powerfeed.html:83 msgid "Supply" msgstr "Suministro" -#: netbox/dcim/forms/bulk_edit.py:933 netbox/dcim/forms/bulk_import.py:1386 -#: netbox/dcim/forms/filtersets.py:1185 -#: netbox/templates/dcim/powerfeed.html:95 +#: dcim/forms/bulk_edit.py:933 dcim/forms/bulk_import.py:1386 +#: dcim/forms/filtersets.py:1185 templates/dcim/powerfeed.html:95 msgid "Phase" msgstr "Fase" -#: netbox/dcim/forms/bulk_edit.py:939 netbox/dcim/forms/filtersets.py:1190 -#: netbox/templates/dcim/powerfeed.html:87 +#: dcim/forms/bulk_edit.py:939 dcim/forms/filtersets.py:1190 +#: templates/dcim/powerfeed.html:87 msgid "Voltage" msgstr "Tensión" -#: netbox/dcim/forms/bulk_edit.py:943 netbox/dcim/forms/filtersets.py:1194 -#: netbox/templates/dcim/powerfeed.html:91 +#: dcim/forms/bulk_edit.py:943 dcim/forms/filtersets.py:1194 +#: templates/dcim/powerfeed.html:91 msgid "Amperage" msgstr "Amperaje" -#: netbox/dcim/forms/bulk_edit.py:947 netbox/dcim/forms/filtersets.py:1198 +#: dcim/forms/bulk_edit.py:947 dcim/forms/filtersets.py:1198 msgid "Max utilization" msgstr "Utilización máxima" -#: netbox/dcim/forms/bulk_edit.py:1036 +#: dcim/forms/bulk_edit.py:1036 msgid "Maximum draw" msgstr "Sorteo máximo" -#: netbox/dcim/forms/bulk_edit.py:1039 -#: netbox/dcim/models/device_component_templates.py:282 -#: netbox/dcim/models/device_components.py:356 +#: dcim/forms/bulk_edit.py:1039 dcim/models/device_component_templates.py:282 +#: dcim/models/device_components.py:356 msgid "Maximum power draw (watts)" msgstr "Consumo máximo de energía (vatios)" -#: netbox/dcim/forms/bulk_edit.py:1042 +#: dcim/forms/bulk_edit.py:1042 msgid "Allocated draw" msgstr "Sorteo asignado" -#: netbox/dcim/forms/bulk_edit.py:1045 -#: netbox/dcim/models/device_component_templates.py:289 -#: netbox/dcim/models/device_components.py:363 +#: dcim/forms/bulk_edit.py:1045 dcim/models/device_component_templates.py:289 +#: dcim/models/device_components.py:363 msgid "Allocated power draw (watts)" msgstr "Consumo de energía asignado (vatios)" -#: netbox/dcim/forms/bulk_edit.py:1078 netbox/dcim/forms/bulk_import.py:786 -#: netbox/dcim/forms/model_forms.py:953 netbox/dcim/forms/model_forms.py:1278 -#: netbox/dcim/forms/model_forms.py:1567 netbox/dcim/forms/object_import.py:55 +#: dcim/forms/bulk_edit.py:1078 dcim/forms/bulk_import.py:786 +#: dcim/forms/model_forms.py:953 dcim/forms/model_forms.py:1278 +#: dcim/forms/model_forms.py:1567 dcim/forms/object_import.py:55 msgid "Power port" msgstr "Puerto de alimentación" -#: netbox/dcim/forms/bulk_edit.py:1083 netbox/dcim/forms/bulk_import.py:793 +#: dcim/forms/bulk_edit.py:1083 dcim/forms/bulk_import.py:793 msgid "Feed leg" msgstr "Pierna de alimentación" -#: netbox/dcim/forms/bulk_edit.py:1129 netbox/dcim/forms/bulk_edit.py:1440 +#: dcim/forms/bulk_edit.py:1129 dcim/forms/bulk_edit.py:1440 msgid "Management only" msgstr "Solo administración" -#: netbox/dcim/forms/bulk_edit.py:1139 netbox/dcim/forms/bulk_edit.py:1446 -#: netbox/dcim/forms/bulk_import.py:876 netbox/dcim/forms/filtersets.py:1394 -#: netbox/dcim/forms/object_import.py:90 -#: netbox/dcim/models/device_component_templates.py:437 -#: netbox/dcim/models/device_components.py:670 +#: dcim/forms/bulk_edit.py:1139 dcim/forms/bulk_edit.py:1446 +#: dcim/forms/bulk_import.py:876 dcim/forms/filtersets.py:1394 +#: dcim/forms/object_import.py:90 +#: dcim/models/device_component_templates.py:437 +#: dcim/models/device_components.py:670 msgid "PoE mode" msgstr "Modo PoE" -#: netbox/dcim/forms/bulk_edit.py:1145 netbox/dcim/forms/bulk_edit.py:1452 -#: netbox/dcim/forms/bulk_import.py:882 netbox/dcim/forms/filtersets.py:1399 -#: netbox/dcim/forms/object_import.py:95 -#: netbox/dcim/models/device_component_templates.py:443 -#: netbox/dcim/models/device_components.py:676 +#: dcim/forms/bulk_edit.py:1145 dcim/forms/bulk_edit.py:1452 +#: dcim/forms/bulk_import.py:882 dcim/forms/filtersets.py:1399 +#: dcim/forms/object_import.py:95 +#: dcim/models/device_component_templates.py:443 +#: dcim/models/device_components.py:676 msgid "PoE type" msgstr "Tipo de PoE" -#: netbox/dcim/forms/bulk_edit.py:1151 netbox/dcim/forms/filtersets.py:1404 -#: netbox/dcim/forms/object_import.py:100 +#: dcim/forms/bulk_edit.py:1151 dcim/forms/filtersets.py:1404 +#: dcim/forms/object_import.py:100 msgid "Wireless role" msgstr "Función inalámbrica" -#: netbox/dcim/forms/bulk_edit.py:1288 netbox/dcim/forms/model_forms.py:669 -#: netbox/dcim/forms/model_forms.py:1223 netbox/dcim/tables/devices.py:313 -#: netbox/templates/dcim/consoleport.html:24 -#: netbox/templates/dcim/consoleserverport.html:24 -#: netbox/templates/dcim/frontport.html:24 -#: netbox/templates/dcim/interface.html:34 -#: netbox/templates/dcim/module.html:54 -#: netbox/templates/dcim/modulebay.html:26 -#: netbox/templates/dcim/modulebay.html:58 -#: netbox/templates/dcim/poweroutlet.html:24 -#: netbox/templates/dcim/powerport.html:24 -#: netbox/templates/dcim/rearport.html:24 +#: dcim/forms/bulk_edit.py:1288 dcim/forms/model_forms.py:669 +#: dcim/forms/model_forms.py:1223 dcim/tables/devices.py:313 +#: templates/dcim/consoleport.html:24 templates/dcim/consoleserverport.html:24 +#: templates/dcim/frontport.html:24 templates/dcim/interface.html:34 +#: templates/dcim/module.html:54 templates/dcim/modulebay.html:26 +#: templates/dcim/modulebay.html:58 templates/dcim/poweroutlet.html:24 +#: templates/dcim/powerport.html:24 templates/dcim/rearport.html:24 msgid "Module" msgstr "Módulo" -#: netbox/dcim/forms/bulk_edit.py:1420 netbox/dcim/tables/devices.py:665 -#: netbox/templates/dcim/interface.html:110 +#: dcim/forms/bulk_edit.py:1420 dcim/tables/devices.py:665 +#: templates/dcim/interface.html:110 msgid "LAG" msgstr "DESFASE" -#: netbox/dcim/forms/bulk_edit.py:1425 netbox/dcim/forms/model_forms.py:1305 +#: dcim/forms/bulk_edit.py:1425 dcim/forms/model_forms.py:1305 msgid "Virtual device contexts" msgstr "Contextos de dispositivos virtuales" -#: netbox/dcim/forms/bulk_edit.py:1431 netbox/dcim/forms/bulk_import.py:714 -#: netbox/dcim/forms/bulk_import.py:740 netbox/dcim/forms/filtersets.py:1252 -#: netbox/dcim/forms/filtersets.py:1277 netbox/dcim/forms/filtersets.py:1358 -#: netbox/dcim/tables/devices.py:610 -#: netbox/templates/circuits/inc/circuit_termination_fields.html:67 -#: netbox/templates/dcim/consoleport.html:40 -#: netbox/templates/dcim/consoleserverport.html:40 +#: dcim/forms/bulk_edit.py:1431 dcim/forms/bulk_import.py:714 +#: dcim/forms/bulk_import.py:740 dcim/forms/filtersets.py:1252 +#: dcim/forms/filtersets.py:1277 dcim/forms/filtersets.py:1358 +#: dcim/tables/devices.py:610 +#: templates/circuits/inc/circuit_termination_fields.html:67 +#: templates/dcim/consoleport.html:40 templates/dcim/consoleserverport.html:40 msgid "Speed" msgstr "Velocidad" -#: netbox/dcim/forms/bulk_edit.py:1460 netbox/dcim/forms/bulk_import.py:885 -#: netbox/templates/vpn/ikepolicy.html:25 -#: netbox/templates/vpn/ipsecprofile.html:21 -#: netbox/templates/vpn/ipsecprofile.html:48 -#: netbox/virtualization/forms/bulk_edit.py:233 -#: netbox/virtualization/forms/bulk_import.py:165 -#: netbox/vpn/forms/bulk_edit.py:146 netbox/vpn/forms/bulk_edit.py:232 -#: netbox/vpn/forms/bulk_import.py:176 netbox/vpn/forms/bulk_import.py:234 -#: netbox/vpn/forms/filtersets.py:135 netbox/vpn/forms/filtersets.py:178 -#: netbox/vpn/forms/filtersets.py:192 netbox/vpn/tables/crypto.py:64 -#: netbox/vpn/tables/crypto.py:162 +#: dcim/forms/bulk_edit.py:1460 dcim/forms/bulk_import.py:885 +#: templates/vpn/ikepolicy.html:25 templates/vpn/ipsecprofile.html:21 +#: templates/vpn/ipsecprofile.html:48 virtualization/forms/bulk_edit.py:233 +#: virtualization/forms/bulk_import.py:165 vpn/forms/bulk_edit.py:146 +#: vpn/forms/bulk_edit.py:232 vpn/forms/bulk_import.py:176 +#: vpn/forms/bulk_import.py:234 vpn/forms/filtersets.py:135 +#: vpn/forms/filtersets.py:178 vpn/forms/filtersets.py:192 +#: vpn/tables/crypto.py:64 vpn/tables/crypto.py:162 msgid "Mode" msgstr "Modo" -#: netbox/dcim/forms/bulk_edit.py:1468 netbox/dcim/forms/model_forms.py:1354 -#: netbox/ipam/forms/bulk_import.py:178 netbox/ipam/forms/filtersets.py:498 -#: netbox/ipam/models/vlans.py:84 netbox/virtualization/forms/bulk_edit.py:240 -#: netbox/virtualization/forms/model_forms.py:321 +#: dcim/forms/bulk_edit.py:1468 dcim/forms/model_forms.py:1354 +#: ipam/forms/bulk_import.py:178 ipam/forms/filtersets.py:498 +#: ipam/models/vlans.py:84 virtualization/forms/bulk_edit.py:240 +#: virtualization/forms/model_forms.py:321 msgid "VLAN group" msgstr "Grupo de VLAN" -#: netbox/dcim/forms/bulk_edit.py:1476 netbox/dcim/forms/model_forms.py:1360 -#: netbox/dcim/tables/devices.py:579 -#: netbox/virtualization/forms/bulk_edit.py:248 -#: netbox/virtualization/forms/model_forms.py:326 +#: dcim/forms/bulk_edit.py:1476 dcim/forms/model_forms.py:1360 +#: dcim/tables/devices.py:579 virtualization/forms/bulk_edit.py:248 +#: virtualization/forms/model_forms.py:326 msgid "Untagged VLAN" msgstr "VLAN sin etiquetar" -#: netbox/dcim/forms/bulk_edit.py:1484 netbox/dcim/forms/model_forms.py:1369 -#: netbox/dcim/tables/devices.py:585 -#: netbox/virtualization/forms/bulk_edit.py:256 -#: netbox/virtualization/forms/model_forms.py:335 +#: dcim/forms/bulk_edit.py:1484 dcim/forms/model_forms.py:1369 +#: dcim/tables/devices.py:585 virtualization/forms/bulk_edit.py:256 +#: virtualization/forms/model_forms.py:335 msgid "Tagged VLANs" msgstr "VLAN etiquetadas" -#: netbox/dcim/forms/bulk_edit.py:1494 netbox/dcim/forms/model_forms.py:1341 +#: dcim/forms/bulk_edit.py:1494 dcim/forms/model_forms.py:1341 msgid "Wireless LAN group" msgstr "Grupo LAN inalámbrico" -#: netbox/dcim/forms/bulk_edit.py:1499 netbox/dcim/forms/model_forms.py:1346 -#: netbox/dcim/tables/devices.py:619 netbox/netbox/navigation/menu.py:146 -#: netbox/templates/dcim/interface.html:280 -#: netbox/wireless/tables/wirelesslan.py:24 +#: dcim/forms/bulk_edit.py:1499 dcim/forms/model_forms.py:1346 +#: dcim/tables/devices.py:619 netbox/navigation/menu.py:146 +#: templates/dcim/interface.html:280 wireless/tables/wirelesslan.py:24 msgid "Wireless LANs" msgstr "LAN inalámbricas" -#: netbox/dcim/forms/bulk_edit.py:1508 netbox/dcim/forms/filtersets.py:1328 -#: netbox/dcim/forms/model_forms.py:1390 netbox/ipam/forms/bulk_edit.py:285 -#: netbox/ipam/forms/bulk_edit.py:377 netbox/ipam/forms/filtersets.py:169 -#: netbox/templates/dcim/interface.html:122 -#: netbox/templates/ipam/prefix.html:95 -#: netbox/virtualization/forms/model_forms.py:349 +#: dcim/forms/bulk_edit.py:1508 dcim/forms/filtersets.py:1328 +#: dcim/forms/model_forms.py:1390 ipam/forms/bulk_edit.py:286 +#: ipam/forms/bulk_edit.py:378 ipam/forms/filtersets.py:169 +#: templates/dcim/interface.html:122 templates/ipam/prefix.html:95 +#: virtualization/forms/model_forms.py:349 msgid "Addressing" msgstr "Dirigiéndose" -#: netbox/dcim/forms/bulk_edit.py:1509 netbox/dcim/forms/filtersets.py:720 -#: netbox/dcim/forms/model_forms.py:1391 -#: netbox/virtualization/forms/model_forms.py:350 +#: dcim/forms/bulk_edit.py:1509 dcim/forms/filtersets.py:720 +#: dcim/forms/model_forms.py:1391 virtualization/forms/model_forms.py:350 msgid "Operation" msgstr "Operación" -#: netbox/dcim/forms/bulk_edit.py:1510 netbox/dcim/forms/filtersets.py:1329 -#: netbox/dcim/forms/model_forms.py:987 netbox/dcim/forms/model_forms.py:1393 +#: dcim/forms/bulk_edit.py:1510 dcim/forms/filtersets.py:1329 +#: dcim/forms/model_forms.py:987 dcim/forms/model_forms.py:1393 msgid "PoE" msgstr "PoE" -#: netbox/dcim/forms/bulk_edit.py:1511 netbox/dcim/forms/model_forms.py:1392 -#: netbox/templates/dcim/interface.html:99 -#: netbox/virtualization/forms/bulk_edit.py:267 -#: netbox/virtualization/forms/model_forms.py:351 +#: dcim/forms/bulk_edit.py:1511 dcim/forms/model_forms.py:1392 +#: templates/dcim/interface.html:99 virtualization/forms/bulk_edit.py:267 +#: virtualization/forms/model_forms.py:351 msgid "Related Interfaces" msgstr "Interfaces relacionadas" -#: netbox/dcim/forms/bulk_edit.py:1512 netbox/dcim/forms/model_forms.py:1394 -#: netbox/virtualization/forms/bulk_edit.py:268 -#: netbox/virtualization/forms/model_forms.py:352 +#: dcim/forms/bulk_edit.py:1512 dcim/forms/model_forms.py:1394 +#: virtualization/forms/bulk_edit.py:268 +#: virtualization/forms/model_forms.py:352 msgid "802.1Q Switching" msgstr "Conmutación 802.1Q" -#: netbox/dcim/forms/bulk_edit.py:1574 netbox/dcim/forms/bulk_edit.py:1576 +#: dcim/forms/bulk_edit.py:1574 dcim/forms/bulk_edit.py:1576 msgid "Interface mode must be specified to assign VLANs" msgstr "Se debe especificar el modo de interfaz para asignar las VLAN" -#: netbox/dcim/forms/bulk_edit.py:1581 netbox/dcim/forms/common.py:50 +#: dcim/forms/bulk_edit.py:1581 dcim/forms/common.py:50 msgid "An access interface cannot have tagged VLANs assigned." msgstr "Una interfaz de acceso no puede tener asignadas VLAN etiquetadas." -#: netbox/dcim/forms/bulk_import.py:64 +#: dcim/forms/bulk_import.py:64 msgid "Name of parent region" msgstr "Nombre de la región principal" -#: netbox/dcim/forms/bulk_import.py:78 +#: dcim/forms/bulk_import.py:78 msgid "Name of parent site group" msgstr "Nombre del grupo de sitios principal" -#: netbox/dcim/forms/bulk_import.py:97 +#: dcim/forms/bulk_import.py:97 msgid "Assigned region" msgstr "Región asignada" -#: netbox/dcim/forms/bulk_import.py:104 netbox/tenancy/forms/bulk_import.py:44 -#: netbox/tenancy/forms/bulk_import.py:85 -#: netbox/wireless/forms/bulk_import.py:40 +#: dcim/forms/bulk_import.py:104 tenancy/forms/bulk_import.py:44 +#: tenancy/forms/bulk_import.py:85 wireless/forms/bulk_import.py:40 msgid "Assigned group" msgstr "Grupo asignado" -#: netbox/dcim/forms/bulk_import.py:123 +#: dcim/forms/bulk_import.py:123 msgid "available options" msgstr "opciones disponibles" -#: netbox/dcim/forms/bulk_import.py:134 netbox/dcim/forms/bulk_import.py:543 -#: netbox/dcim/forms/bulk_import.py:1342 netbox/ipam/forms/bulk_import.py:175 -#: netbox/ipam/forms/bulk_import.py:433 -#: netbox/virtualization/forms/bulk_import.py:63 -#: netbox/virtualization/forms/bulk_import.py:89 +#: dcim/forms/bulk_import.py:134 dcim/forms/bulk_import.py:543 +#: dcim/forms/bulk_import.py:1342 ipam/forms/bulk_import.py:175 +#: ipam/forms/bulk_import.py:433 virtualization/forms/bulk_import.py:63 +#: virtualization/forms/bulk_import.py:89 msgid "Assigned site" msgstr "Sitio asignado" -#: netbox/dcim/forms/bulk_import.py:141 +#: dcim/forms/bulk_import.py:141 msgid "Parent location" msgstr "Ubicación de los padres" -#: netbox/dcim/forms/bulk_import.py:143 +#: dcim/forms/bulk_import.py:143 msgid "Location not found." msgstr "No se encontró la ubicación." -#: netbox/dcim/forms/bulk_import.py:185 +#: dcim/forms/bulk_import.py:185 msgid "The manufacturer of this rack type" msgstr "El fabricante de este tipo de bastidor" -#: netbox/dcim/forms/bulk_import.py:196 +#: dcim/forms/bulk_import.py:196 msgid "The lowest-numbered position in the rack" msgstr "La posición con el número más bajo del estante" -#: netbox/dcim/forms/bulk_import.py:201 netbox/dcim/forms/bulk_import.py:268 +#: dcim/forms/bulk_import.py:201 dcim/forms/bulk_import.py:268 msgid "Rail-to-rail width (in inches)" msgstr "Ancho de raíl a raíl (en pulgadas)" -#: netbox/dcim/forms/bulk_import.py:207 netbox/dcim/forms/bulk_import.py:274 +#: dcim/forms/bulk_import.py:207 dcim/forms/bulk_import.py:274 msgid "Unit for outer dimensions" msgstr "Unidad para dimensiones exteriores" -#: netbox/dcim/forms/bulk_import.py:213 netbox/dcim/forms/bulk_import.py:286 +#: dcim/forms/bulk_import.py:213 dcim/forms/bulk_import.py:286 msgid "Unit for rack weights" msgstr "Unidad para pesas de cremallera" -#: netbox/dcim/forms/bulk_import.py:245 +#: dcim/forms/bulk_import.py:245 msgid "Name of assigned tenant" msgstr "Nombre del inquilino asignado" -#: netbox/dcim/forms/bulk_import.py:257 +#: dcim/forms/bulk_import.py:257 msgid "Name of assigned role" msgstr "Nombre de la función asignada" -#: netbox/dcim/forms/bulk_import.py:280 netbox/dcim/forms/bulk_import.py:413 -#: netbox/dcim/forms/bulk_import.py:583 +#: dcim/forms/bulk_import.py:280 dcim/forms/bulk_import.py:413 +#: dcim/forms/bulk_import.py:583 msgid "Airflow direction" msgstr "Dirección del flujo de aire" -#: netbox/dcim/forms/bulk_import.py:312 +#: dcim/forms/bulk_import.py:312 msgid "Parent site" msgstr "Sitio para padres" -#: netbox/dcim/forms/bulk_import.py:319 netbox/dcim/forms/bulk_import.py:1355 +#: dcim/forms/bulk_import.py:319 dcim/forms/bulk_import.py:1355 msgid "Rack's location (if any)" msgstr "Ubicación del bastidor (si existe)" -#: netbox/dcim/forms/bulk_import.py:328 netbox/dcim/forms/model_forms.py:311 -#: netbox/dcim/tables/racks.py:222 -#: netbox/templates/dcim/rackreservation.html:12 -#: netbox/templates/dcim/rackreservation.html:45 +#: dcim/forms/bulk_import.py:328 dcim/forms/model_forms.py:311 +#: dcim/tables/racks.py:222 templates/dcim/rackreservation.html:12 +#: templates/dcim/rackreservation.html:45 msgid "Units" msgstr "Unidades" -#: netbox/dcim/forms/bulk_import.py:331 +#: dcim/forms/bulk_import.py:331 msgid "Comma-separated list of individual unit numbers" msgstr "Lista separada por comas de números de unidades individuales" -#: netbox/dcim/forms/bulk_import.py:374 +#: dcim/forms/bulk_import.py:374 msgid "The manufacturer which produces this device type" msgstr "El fabricante que produce este tipo de dispositivo" -#: netbox/dcim/forms/bulk_import.py:381 +#: dcim/forms/bulk_import.py:381 msgid "The default platform for devices of this type (optional)" msgstr "" "La plataforma predeterminada para dispositivos de este tipo (opcional)" -#: netbox/dcim/forms/bulk_import.py:386 +#: dcim/forms/bulk_import.py:386 msgid "Device weight" msgstr "Peso del dispositivo" -#: netbox/dcim/forms/bulk_import.py:392 +#: dcim/forms/bulk_import.py:392 msgid "Unit for device weight" msgstr "Unidad para el peso del dispositivo" -#: netbox/dcim/forms/bulk_import.py:418 +#: dcim/forms/bulk_import.py:418 msgid "Module weight" msgstr "Peso del módulo" -#: netbox/dcim/forms/bulk_import.py:424 +#: dcim/forms/bulk_import.py:424 msgid "Unit for module weight" msgstr "Unidad para el peso del módulo" -#: netbox/dcim/forms/bulk_import.py:454 +#: dcim/forms/bulk_import.py:454 msgid "Limit platform assignments to this manufacturer" msgstr "Limite las asignaciones de plataforma a este fabricante" -#: netbox/dcim/forms/bulk_import.py:476 netbox/dcim/forms/bulk_import.py:1425 -#: netbox/tenancy/forms/bulk_import.py:106 +#: dcim/forms/bulk_import.py:476 dcim/forms/bulk_import.py:1425 +#: tenancy/forms/bulk_import.py:106 msgid "Assigned role" msgstr "Función asignada" -#: netbox/dcim/forms/bulk_import.py:489 +#: dcim/forms/bulk_import.py:489 msgid "Device type manufacturer" msgstr "Fabricante del tipo de dispositivo" -#: netbox/dcim/forms/bulk_import.py:495 +#: dcim/forms/bulk_import.py:495 msgid "Device type model" msgstr "Modelo de tipo de dispositivo" -#: netbox/dcim/forms/bulk_import.py:502 -#: netbox/virtualization/forms/bulk_import.py:126 +#: dcim/forms/bulk_import.py:502 virtualization/forms/bulk_import.py:126 msgid "Assigned platform" msgstr "Plataforma asignada" -#: netbox/dcim/forms/bulk_import.py:510 netbox/dcim/forms/bulk_import.py:514 -#: netbox/dcim/forms/model_forms.py:536 +#: dcim/forms/bulk_import.py:510 dcim/forms/bulk_import.py:514 +#: dcim/forms/model_forms.py:536 msgid "Virtual chassis" msgstr "Chasis virtual" -#: netbox/dcim/forms/bulk_import.py:517 netbox/dcim/forms/filtersets.py:728 -#: netbox/dcim/forms/filtersets.py:898 netbox/dcim/forms/model_forms.py:522 -#: netbox/dcim/tables/devices.py:202 netbox/extras/filtersets.py:596 -#: netbox/extras/forms/filtersets.py:322 netbox/ipam/forms/bulk_edit.py:482 -#: netbox/ipam/forms/filtersets.py:415 netbox/ipam/forms/filtersets.py:447 -#: netbox/templates/dcim/device.html:239 -#: netbox/templates/virtualization/cluster.html:10 -#: netbox/templates/virtualization/virtualmachine.html:92 -#: netbox/templates/virtualization/virtualmachine.html:101 -#: netbox/virtualization/filtersets.py:157 -#: netbox/virtualization/filtersets.py:277 -#: netbox/virtualization/forms/bulk_edit.py:129 -#: netbox/virtualization/forms/bulk_import.py:92 -#: netbox/virtualization/forms/filtersets.py:99 -#: netbox/virtualization/forms/filtersets.py:123 -#: netbox/virtualization/forms/filtersets.py:204 -#: netbox/virtualization/forms/model_forms.py:79 -#: netbox/virtualization/forms/model_forms.py:176 -#: netbox/virtualization/tables/virtualmachines.py:67 +#: dcim/forms/bulk_import.py:517 dcim/forms/filtersets.py:728 +#: dcim/forms/filtersets.py:898 dcim/forms/model_forms.py:522 +#: dcim/tables/devices.py:202 extras/filtersets.py:596 +#: extras/forms/filtersets.py:322 ipam/forms/filtersets.py:415 +#: ipam/forms/filtersets.py:447 templates/dcim/device.html:239 +#: templates/virtualization/cluster.html:10 +#: templates/virtualization/virtualmachine.html:92 +#: templates/virtualization/virtualmachine.html:101 +#: virtualization/filtersets.py:157 virtualization/filtersets.py:277 +#: virtualization/forms/bulk_edit.py:129 +#: virtualization/forms/bulk_import.py:92 +#: virtualization/forms/filtersets.py:99 +#: virtualization/forms/filtersets.py:123 +#: virtualization/forms/filtersets.py:204 +#: virtualization/forms/model_forms.py:79 +#: virtualization/forms/model_forms.py:176 +#: virtualization/tables/virtualmachines.py:67 msgid "Cluster" msgstr "Clúster" -#: netbox/dcim/forms/bulk_import.py:521 +#: dcim/forms/bulk_import.py:521 msgid "Virtualization cluster" msgstr "Clúster de virtualización" -#: netbox/dcim/forms/bulk_import.py:550 +#: dcim/forms/bulk_import.py:550 msgid "Assigned location (if any)" msgstr "Ubicación asignada (si la hay)" -#: netbox/dcim/forms/bulk_import.py:557 +#: dcim/forms/bulk_import.py:557 msgid "Assigned rack (if any)" msgstr "Bastidor asignado (si lo hay)" -#: netbox/dcim/forms/bulk_import.py:560 +#: dcim/forms/bulk_import.py:560 msgid "Face" msgstr "Cara" -#: netbox/dcim/forms/bulk_import.py:563 +#: dcim/forms/bulk_import.py:563 msgid "Mounted rack face" msgstr "Cara de bastidor montada" -#: netbox/dcim/forms/bulk_import.py:570 +#: dcim/forms/bulk_import.py:570 msgid "Parent device (for child devices)" msgstr "Dispositivo principal (para dispositivos infantiles)" -#: netbox/dcim/forms/bulk_import.py:573 +#: dcim/forms/bulk_import.py:573 msgid "Device bay" msgstr "Compartimento para dispositivos" -#: netbox/dcim/forms/bulk_import.py:577 +#: dcim/forms/bulk_import.py:577 msgid "Device bay in which this device is installed (for child devices)" msgstr "" "Compartimento de dispositivos en el que está instalado este dispositivo " "(para dispositivos infantiles)" -#: netbox/dcim/forms/bulk_import.py:644 +#: dcim/forms/bulk_import.py:644 msgid "The device in which this module is installed" msgstr "El dispositivo en el que está instalado este módulo" -#: netbox/dcim/forms/bulk_import.py:647 netbox/dcim/forms/model_forms.py:640 +#: dcim/forms/bulk_import.py:647 dcim/forms/model_forms.py:640 msgid "Module bay" msgstr "Compartimento de módulos" -#: netbox/dcim/forms/bulk_import.py:650 +#: dcim/forms/bulk_import.py:650 msgid "The module bay in which this module is installed" msgstr "El compartimiento del módulo en el que está instalado este módulo" -#: netbox/dcim/forms/bulk_import.py:656 +#: dcim/forms/bulk_import.py:656 msgid "The type of module" msgstr "El tipo de módulo" -#: netbox/dcim/forms/bulk_import.py:664 netbox/dcim/forms/model_forms.py:656 +#: dcim/forms/bulk_import.py:664 dcim/forms/model_forms.py:656 msgid "Replicate components" msgstr "Replicar componentes" -#: netbox/dcim/forms/bulk_import.py:666 +#: dcim/forms/bulk_import.py:666 msgid "" "Automatically populate components associated with this module type (enabled " "by default)" @@ -4341,271 +3948,264 @@ msgstr "" "Rellenar automáticamente los componentes asociados a este tipo de módulo " "(activado de forma predeterminada)" -#: netbox/dcim/forms/bulk_import.py:669 netbox/dcim/forms/model_forms.py:662 +#: dcim/forms/bulk_import.py:669 dcim/forms/model_forms.py:662 msgid "Adopt components" msgstr "Adopte componentes" -#: netbox/dcim/forms/bulk_import.py:671 netbox/dcim/forms/model_forms.py:665 +#: dcim/forms/bulk_import.py:671 dcim/forms/model_forms.py:665 msgid "Adopt already existing components" msgstr "Adopte los componentes ya existentes" -#: netbox/dcim/forms/bulk_import.py:711 netbox/dcim/forms/bulk_import.py:737 -#: netbox/dcim/forms/bulk_import.py:763 +#: dcim/forms/bulk_import.py:711 dcim/forms/bulk_import.py:737 +#: dcim/forms/bulk_import.py:763 msgid "Port type" msgstr "Tipo de puerto" -#: netbox/dcim/forms/bulk_import.py:719 netbox/dcim/forms/bulk_import.py:745 +#: dcim/forms/bulk_import.py:719 dcim/forms/bulk_import.py:745 msgid "Port speed in bps" msgstr "Velocidad de puerto en bps" -#: netbox/dcim/forms/bulk_import.py:783 +#: dcim/forms/bulk_import.py:783 msgid "Outlet type" msgstr "Tipo de toma" -#: netbox/dcim/forms/bulk_import.py:790 +#: dcim/forms/bulk_import.py:790 msgid "Local power port which feeds this outlet" msgstr "Puerto de alimentación local que alimenta esta toma" -#: netbox/dcim/forms/bulk_import.py:796 +#: dcim/forms/bulk_import.py:796 msgid "Electrical phase (for three-phase circuits)" msgstr "Fase eléctrica (para circuitos trifásicos)" -#: netbox/dcim/forms/bulk_import.py:837 netbox/dcim/forms/model_forms.py:1316 -#: netbox/virtualization/forms/bulk_import.py:155 -#: netbox/virtualization/forms/model_forms.py:305 +#: dcim/forms/bulk_import.py:837 dcim/forms/model_forms.py:1316 +#: virtualization/forms/bulk_import.py:155 +#: virtualization/forms/model_forms.py:305 msgid "Parent interface" msgstr "Interfaz principal" -#: netbox/dcim/forms/bulk_import.py:844 netbox/dcim/forms/model_forms.py:1324 -#: netbox/virtualization/forms/bulk_import.py:162 -#: netbox/virtualization/forms/model_forms.py:313 +#: dcim/forms/bulk_import.py:844 dcim/forms/model_forms.py:1324 +#: virtualization/forms/bulk_import.py:162 +#: virtualization/forms/model_forms.py:313 msgid "Bridged interface" msgstr "Interfaz puenteada" -#: netbox/dcim/forms/bulk_import.py:847 +#: dcim/forms/bulk_import.py:847 msgid "Lag" msgstr "Retraso" -#: netbox/dcim/forms/bulk_import.py:851 +#: dcim/forms/bulk_import.py:851 msgid "Parent LAG interface" msgstr "Interfaz LAG principal" -#: netbox/dcim/forms/bulk_import.py:854 +#: dcim/forms/bulk_import.py:854 msgid "Vdcs" msgstr "VDC" -#: netbox/dcim/forms/bulk_import.py:859 +#: dcim/forms/bulk_import.py:859 msgid "VDC names separated by commas, encased with double quotes. Example:" msgstr "" "Los nombres de los VDC están separados por comas y entre comillas dobles. " "Ejemplo:" -#: netbox/dcim/forms/bulk_import.py:865 +#: dcim/forms/bulk_import.py:865 msgid "Physical medium" msgstr "Medio físico" -#: netbox/dcim/forms/bulk_import.py:868 netbox/dcim/forms/filtersets.py:1365 +#: dcim/forms/bulk_import.py:868 dcim/forms/filtersets.py:1365 msgid "Duplex" msgstr "Dúplex" -#: netbox/dcim/forms/bulk_import.py:873 +#: dcim/forms/bulk_import.py:873 msgid "Poe mode" msgstr "Modo Poe" -#: netbox/dcim/forms/bulk_import.py:879 +#: dcim/forms/bulk_import.py:879 msgid "Poe type" msgstr "Tipo de Poe" -#: netbox/dcim/forms/bulk_import.py:888 -#: netbox/virtualization/forms/bulk_import.py:168 +#: dcim/forms/bulk_import.py:888 virtualization/forms/bulk_import.py:168 msgid "IEEE 802.1Q operational mode (for L2 interfaces)" msgstr "Modo operativo IEEE 802.1Q (para interfaces L2)" -#: netbox/dcim/forms/bulk_import.py:895 netbox/ipam/forms/bulk_import.py:161 -#: netbox/ipam/forms/bulk_import.py:247 netbox/ipam/forms/bulk_import.py:283 -#: netbox/ipam/forms/filtersets.py:201 netbox/ipam/forms/filtersets.py:277 -#: netbox/ipam/forms/filtersets.py:336 -#: netbox/virtualization/forms/bulk_import.py:175 +#: dcim/forms/bulk_import.py:895 ipam/forms/bulk_import.py:161 +#: ipam/forms/bulk_import.py:247 ipam/forms/bulk_import.py:283 +#: ipam/forms/filtersets.py:201 ipam/forms/filtersets.py:277 +#: ipam/forms/filtersets.py:336 virtualization/forms/bulk_import.py:175 msgid "Assigned VRF" msgstr "VRF asignado" -#: netbox/dcim/forms/bulk_import.py:898 +#: dcim/forms/bulk_import.py:898 msgid "Rf role" msgstr "Rol RF" -#: netbox/dcim/forms/bulk_import.py:901 +#: dcim/forms/bulk_import.py:901 msgid "Wireless role (AP/station)" msgstr "Función inalámbrica (AP/estación)" -#: netbox/dcim/forms/bulk_import.py:937 +#: dcim/forms/bulk_import.py:937 #, python-brace-format msgid "VDC {vdc} is not assigned to device {device}" msgstr "VDC {vdc} no está asignado al dispositivo {device}" -#: netbox/dcim/forms/bulk_import.py:951 netbox/dcim/forms/model_forms.py:1000 -#: netbox/dcim/forms/model_forms.py:1575 -#: netbox/dcim/forms/object_import.py:117 +#: dcim/forms/bulk_import.py:951 dcim/forms/model_forms.py:1000 +#: dcim/forms/model_forms.py:1575 dcim/forms/object_import.py:117 msgid "Rear port" msgstr "Puerto trasero" -#: netbox/dcim/forms/bulk_import.py:954 +#: dcim/forms/bulk_import.py:954 msgid "Corresponding rear port" msgstr "Puerto trasero correspondiente" -#: netbox/dcim/forms/bulk_import.py:959 netbox/dcim/forms/bulk_import.py:1000 -#: netbox/dcim/forms/bulk_import.py:1216 +#: dcim/forms/bulk_import.py:959 dcim/forms/bulk_import.py:1000 +#: dcim/forms/bulk_import.py:1216 msgid "Physical medium classification" msgstr "Clasificación de medios físicos" -#: netbox/dcim/forms/bulk_import.py:1028 netbox/dcim/tables/devices.py:822 +#: dcim/forms/bulk_import.py:1028 dcim/tables/devices.py:822 msgid "Installed device" msgstr "Dispositivo instalado" -#: netbox/dcim/forms/bulk_import.py:1032 +#: dcim/forms/bulk_import.py:1032 msgid "Child device installed within this bay" msgstr "Dispositivo infantil instalado en esta bahía" -#: netbox/dcim/forms/bulk_import.py:1034 +#: dcim/forms/bulk_import.py:1034 msgid "Child device not found." msgstr "No se encontró el dispositivo infantil." -#: netbox/dcim/forms/bulk_import.py:1092 +#: dcim/forms/bulk_import.py:1092 msgid "Parent inventory item" msgstr "Artículo del inventario principal" -#: netbox/dcim/forms/bulk_import.py:1095 +#: dcim/forms/bulk_import.py:1095 msgid "Component type" msgstr "Tipo de componente" -#: netbox/dcim/forms/bulk_import.py:1099 +#: dcim/forms/bulk_import.py:1099 msgid "Component Type" msgstr "Tipo de componente" -#: netbox/dcim/forms/bulk_import.py:1102 +#: dcim/forms/bulk_import.py:1102 msgid "Compnent name" msgstr "Nombre del componente" -#: netbox/dcim/forms/bulk_import.py:1104 +#: dcim/forms/bulk_import.py:1104 msgid "Component Name" msgstr "Nombre del componente" -#: netbox/dcim/forms/bulk_import.py:1146 +#: dcim/forms/bulk_import.py:1146 #, python-brace-format msgid "Component not found: {device} - {component_name}" msgstr "No se encontró el componente: {device} - {component_name}" -#: netbox/dcim/forms/bulk_import.py:1171 +#: dcim/forms/bulk_import.py:1171 msgid "Side A device" msgstr "Dispositivo del lado A" -#: netbox/dcim/forms/bulk_import.py:1174 netbox/dcim/forms/bulk_import.py:1192 +#: dcim/forms/bulk_import.py:1174 dcim/forms/bulk_import.py:1192 msgid "Device name" msgstr "Nombre del dispositivo" -#: netbox/dcim/forms/bulk_import.py:1177 +#: dcim/forms/bulk_import.py:1177 msgid "Side A type" msgstr "Tipo de lado A" -#: netbox/dcim/forms/bulk_import.py:1180 netbox/dcim/forms/bulk_import.py:1198 +#: dcim/forms/bulk_import.py:1180 dcim/forms/bulk_import.py:1198 msgid "Termination type" msgstr "Tipo de terminación" -#: netbox/dcim/forms/bulk_import.py:1183 +#: dcim/forms/bulk_import.py:1183 msgid "Side A name" msgstr "Nombre de la cara A" -#: netbox/dcim/forms/bulk_import.py:1184 netbox/dcim/forms/bulk_import.py:1202 +#: dcim/forms/bulk_import.py:1184 dcim/forms/bulk_import.py:1202 msgid "Termination name" msgstr "Nombre de terminación" -#: netbox/dcim/forms/bulk_import.py:1189 +#: dcim/forms/bulk_import.py:1189 msgid "Side B device" msgstr "Dispositivo Side B" -#: netbox/dcim/forms/bulk_import.py:1195 +#: dcim/forms/bulk_import.py:1195 msgid "Side B type" msgstr "Tipo de lado B" -#: netbox/dcim/forms/bulk_import.py:1201 +#: dcim/forms/bulk_import.py:1201 msgid "Side B name" msgstr "Nombre de la cara B" -#: netbox/dcim/forms/bulk_import.py:1210 -#: netbox/wireless/forms/bulk_import.py:86 +#: dcim/forms/bulk_import.py:1210 wireless/forms/bulk_import.py:86 msgid "Connection status" msgstr "Estado de conexión" -#: netbox/dcim/forms/bulk_import.py:1262 +#: dcim/forms/bulk_import.py:1262 #, python-brace-format msgid "Side {side_upper}: {device} {termination_object} is already connected" msgstr "Lado {side_upper}: {device} {termination_object} ya está conectado" -#: netbox/dcim/forms/bulk_import.py:1268 +#: dcim/forms/bulk_import.py:1268 #, python-brace-format msgid "{side_upper} side termination not found: {device} {name}" msgstr "{side_upper} no se encontró la terminación lateral: {device} {name}" -#: netbox/dcim/forms/bulk_import.py:1293 netbox/dcim/forms/model_forms.py:785 -#: netbox/dcim/tables/devices.py:1027 netbox/templates/dcim/device.html:132 -#: netbox/templates/dcim/virtualchassis.html:27 -#: netbox/templates/dcim/virtualchassis.html:67 +#: dcim/forms/bulk_import.py:1293 dcim/forms/model_forms.py:785 +#: dcim/tables/devices.py:1027 templates/dcim/device.html:132 +#: templates/dcim/virtualchassis.html:27 templates/dcim/virtualchassis.html:67 msgid "Master" msgstr "Maestro" -#: netbox/dcim/forms/bulk_import.py:1297 +#: dcim/forms/bulk_import.py:1297 msgid "Master device" msgstr "Dispositivo maestro" -#: netbox/dcim/forms/bulk_import.py:1314 +#: dcim/forms/bulk_import.py:1314 msgid "Name of parent site" msgstr "Nombre del sitio principal" -#: netbox/dcim/forms/bulk_import.py:1348 +#: dcim/forms/bulk_import.py:1348 msgid "Upstream power panel" msgstr "Panel de alimentación ascendente" -#: netbox/dcim/forms/bulk_import.py:1378 +#: dcim/forms/bulk_import.py:1378 msgid "Primary or redundant" msgstr "Primario o redundante" -#: netbox/dcim/forms/bulk_import.py:1383 +#: dcim/forms/bulk_import.py:1383 msgid "Supply type (AC/DC)" msgstr "Tipo de alimentación (AC/DC)" -#: netbox/dcim/forms/bulk_import.py:1388 +#: dcim/forms/bulk_import.py:1388 msgid "Single or three-phase" msgstr "Monofásico o trifásico" -#: netbox/dcim/forms/bulk_import.py:1439 netbox/dcim/forms/model_forms.py:1670 -#: netbox/templates/dcim/device.html:190 -#: netbox/templates/dcim/virtualdevicecontext.html:30 -#: netbox/templates/virtualization/virtualmachine.html:52 +#: dcim/forms/bulk_import.py:1439 dcim/forms/model_forms.py:1670 +#: templates/dcim/device.html:190 templates/dcim/virtualdevicecontext.html:30 +#: templates/virtualization/virtualmachine.html:52 msgid "Primary IPv4" msgstr "IPv4 principal" -#: netbox/dcim/forms/bulk_import.py:1443 +#: dcim/forms/bulk_import.py:1443 msgid "IPv4 address with mask, e.g. 1.2.3.4/24" msgstr "Dirección IPv4 con máscara, p. ej. 1.2.3.4/24" -#: netbox/dcim/forms/bulk_import.py:1446 netbox/dcim/forms/model_forms.py:1679 -#: netbox/templates/dcim/device.html:206 -#: netbox/templates/dcim/virtualdevicecontext.html:41 -#: netbox/templates/virtualization/virtualmachine.html:68 +#: dcim/forms/bulk_import.py:1446 dcim/forms/model_forms.py:1679 +#: templates/dcim/device.html:206 templates/dcim/virtualdevicecontext.html:41 +#: templates/virtualization/virtualmachine.html:68 msgid "Primary IPv6" msgstr "IPv6 principal" -#: netbox/dcim/forms/bulk_import.py:1450 +#: dcim/forms/bulk_import.py:1450 msgid "IPv6 address with prefix length, e.g. 2001:db8::1/64" msgstr "Dirección IPv6 con longitud de prefijo, por ejemplo, 2001:db8: :1/64" -#: netbox/dcim/forms/common.py:24 netbox/dcim/models/device_components.py:527 -#: netbox/templates/dcim/interface.html:57 -#: netbox/templates/virtualization/vminterface.html:55 -#: netbox/virtualization/forms/bulk_edit.py:225 +#: dcim/forms/common.py:24 dcim/models/device_components.py:527 +#: templates/dcim/interface.html:57 +#: templates/virtualization/vminterface.html:55 +#: virtualization/forms/bulk_edit.py:225 msgid "MTU" msgstr "MUT" -#: netbox/dcim/forms/common.py:65 +#: dcim/forms/common.py:65 #, python-brace-format msgid "" "The tagged VLANs ({vlans}) must belong to the same site as the interface's " @@ -4614,7 +4214,7 @@ msgstr "" "Las VLAN etiquetadas ({vlans}) deben pertenecer al mismo sitio que el " "dispositivo o máquina virtual principal de la interfaz o deben ser globales" -#: netbox/dcim/forms/common.py:126 +#: dcim/forms/common.py:126 msgid "" "Cannot install module with placeholder values in a module bay with no " "position defined." @@ -4622,7 +4222,7 @@ msgstr "" "No se puede instalar el módulo con valores de marcador de posición en un " "compartimento de módulos sin una posición definida." -#: netbox/dcim/forms/common.py:131 +#: dcim/forms/common.py:131 #, python-brace-format msgid "" "Cannot install module with placeholder values in a module bay tree {level} " @@ -4632,203 +4232,188 @@ msgstr "" "árbol de compartimentos de módulos {level} en un árbol, pero {tokens} " "marcadores de posición dados." -#: netbox/dcim/forms/common.py:144 +#: dcim/forms/common.py:144 #, python-brace-format msgid "Cannot adopt {model} {name} as it already belongs to a module" msgstr "No puede adoptar {model} {name} porque ya pertenece a un módulo" -#: netbox/dcim/forms/common.py:153 +#: dcim/forms/common.py:153 #, python-brace-format msgid "A {model} named {name} already exists" msgstr "UN {model} llamado {name} ya existe" -#: netbox/dcim/forms/connections.py:49 netbox/dcim/forms/model_forms.py:738 -#: netbox/dcim/tables/power.py:66 -#: netbox/templates/dcim/inc/cable_termination.html:37 -#: netbox/templates/dcim/powerfeed.html:24 -#: netbox/templates/dcim/powerpanel.html:19 -#: netbox/templates/dcim/trace/powerpanel.html:4 +#: dcim/forms/connections.py:49 dcim/forms/model_forms.py:738 +#: dcim/tables/power.py:66 templates/dcim/inc/cable_termination.html:37 +#: templates/dcim/powerfeed.html:24 templates/dcim/powerpanel.html:19 +#: templates/dcim/trace/powerpanel.html:4 msgid "Power Panel" msgstr "Panel de alimentación" -#: netbox/dcim/forms/connections.py:58 netbox/dcim/forms/model_forms.py:765 -#: netbox/templates/dcim/powerfeed.html:21 -#: netbox/templates/dcim/powerport.html:80 +#: dcim/forms/connections.py:58 dcim/forms/model_forms.py:765 +#: templates/dcim/powerfeed.html:21 templates/dcim/powerport.html:80 msgid "Power Feed" msgstr "Alimentación eléctrica" -#: netbox/dcim/forms/connections.py:81 +#: dcim/forms/connections.py:81 msgid "Side" msgstr "Lado" -#: netbox/dcim/forms/filtersets.py:136 netbox/dcim/tables/devices.py:295 +#: dcim/forms/filtersets.py:136 dcim/tables/devices.py:295 msgid "Device Status" msgstr "Estado del dispositivo" -#: netbox/dcim/forms/filtersets.py:149 +#: dcim/forms/filtersets.py:149 msgid "Parent region" msgstr "Región principal" -#: netbox/dcim/forms/filtersets.py:163 netbox/tenancy/forms/bulk_import.py:28 -#: netbox/tenancy/forms/bulk_import.py:62 -#: netbox/tenancy/forms/filtersets.py:33 netbox/tenancy/forms/filtersets.py:62 -#: netbox/wireless/forms/bulk_import.py:25 -#: netbox/wireless/forms/filtersets.py:25 +#: dcim/forms/filtersets.py:163 tenancy/forms/bulk_import.py:28 +#: tenancy/forms/bulk_import.py:62 tenancy/forms/filtersets.py:33 +#: tenancy/forms/filtersets.py:62 wireless/forms/bulk_import.py:25 +#: wireless/forms/filtersets.py:25 msgid "Parent group" msgstr "Grupo de padres" -#: netbox/dcim/forms/filtersets.py:242 netbox/templates/dcim/location.html:58 -#: netbox/templates/dcim/site.html:56 +#: dcim/forms/filtersets.py:242 templates/dcim/location.html:58 +#: templates/dcim/site.html:56 msgid "Facility" msgstr "Instalación" -#: netbox/dcim/forms/filtersets.py:380 +#: dcim/forms/filtersets.py:380 msgid "Rack type" msgstr "Tipo de bastidor" -#: netbox/dcim/forms/filtersets.py:397 +#: dcim/forms/filtersets.py:397 msgid "Function" msgstr "Función" -#: netbox/dcim/forms/filtersets.py:483 netbox/dcim/forms/model_forms.py:373 -#: netbox/templates/inc/panels/image_attachments.html:6 +#: dcim/forms/filtersets.py:483 dcim/forms/model_forms.py:373 +#: templates/inc/panels/image_attachments.html:6 msgid "Images" msgstr "Imágenes" -#: netbox/dcim/forms/filtersets.py:486 netbox/dcim/forms/filtersets.py:611 -#: netbox/dcim/forms/filtersets.py:726 +#: dcim/forms/filtersets.py:486 dcim/forms/filtersets.py:611 +#: dcim/forms/filtersets.py:726 msgid "Components" msgstr "Componentes" -#: netbox/dcim/forms/filtersets.py:506 +#: dcim/forms/filtersets.py:506 msgid "Subdevice role" msgstr "Función de subdispositivo" -#: netbox/dcim/forms/filtersets.py:790 netbox/dcim/tables/racks.py:54 -#: netbox/templates/dcim/racktype.html:20 +#: dcim/forms/filtersets.py:790 dcim/tables/racks.py:54 +#: templates/dcim/racktype.html:20 msgid "Model" msgstr "modelo" -#: netbox/dcim/forms/filtersets.py:834 +#: dcim/forms/filtersets.py:834 msgid "Has an OOB IP" msgstr "Tiene una IP OOB" -#: netbox/dcim/forms/filtersets.py:841 +#: dcim/forms/filtersets.py:841 msgid "Virtual chassis member" msgstr "Miembro del chasis virtual" -#: netbox/dcim/forms/filtersets.py:890 +#: dcim/forms/filtersets.py:890 msgid "Has virtual device contexts" msgstr "Tiene contextos de dispositivos virtuales" -#: netbox/dcim/forms/filtersets.py:903 netbox/extras/filtersets.py:585 -#: netbox/ipam/forms/bulk_edit.py:479 netbox/ipam/forms/filtersets.py:452 -#: netbox/virtualization/forms/filtersets.py:112 +#: dcim/forms/filtersets.py:903 extras/filtersets.py:585 +#: ipam/forms/filtersets.py:452 virtualization/forms/filtersets.py:112 msgid "Cluster group" msgstr "Grupo de clústeres" -#: netbox/dcim/forms/filtersets.py:1210 +#: dcim/forms/filtersets.py:1210 msgid "Cabled" msgstr "Cableado" -#: netbox/dcim/forms/filtersets.py:1217 +#: dcim/forms/filtersets.py:1217 msgid "Occupied" msgstr "Ocupado" -#: netbox/dcim/forms/filtersets.py:1244 netbox/dcim/forms/filtersets.py:1269 -#: netbox/dcim/forms/filtersets.py:1293 netbox/dcim/forms/filtersets.py:1313 -#: netbox/dcim/forms/filtersets.py:1336 netbox/dcim/tables/devices.py:364 -#: netbox/templates/dcim/consoleport.html:55 -#: netbox/templates/dcim/consoleserverport.html:55 -#: netbox/templates/dcim/frontport.html:69 -#: netbox/templates/dcim/interface.html:140 -#: netbox/templates/dcim/powerfeed.html:110 -#: netbox/templates/dcim/poweroutlet.html:59 -#: netbox/templates/dcim/powerport.html:59 -#: netbox/templates/dcim/rearport.html:65 +#: dcim/forms/filtersets.py:1244 dcim/forms/filtersets.py:1269 +#: dcim/forms/filtersets.py:1293 dcim/forms/filtersets.py:1313 +#: dcim/forms/filtersets.py:1336 dcim/tables/devices.py:364 +#: templates/dcim/consoleport.html:55 templates/dcim/consoleserverport.html:55 +#: templates/dcim/frontport.html:69 templates/dcim/interface.html:140 +#: templates/dcim/powerfeed.html:110 templates/dcim/poweroutlet.html:59 +#: templates/dcim/powerport.html:59 templates/dcim/rearport.html:65 msgid "Connection" msgstr "Conexión" -#: netbox/dcim/forms/filtersets.py:1348 netbox/extras/forms/bulk_edit.py:326 -#: netbox/extras/forms/bulk_import.py:247 -#: netbox/extras/forms/filtersets.py:464 -#: netbox/extras/forms/model_forms.py:675 netbox/extras/tables/tables.py:579 -#: netbox/templates/extras/journalentry.html:30 +#: dcim/forms/filtersets.py:1348 extras/forms/bulk_edit.py:326 +#: extras/forms/bulk_import.py:247 extras/forms/filtersets.py:464 +#: extras/forms/model_forms.py:675 extras/tables/tables.py:579 +#: templates/extras/journalentry.html:30 msgid "Kind" msgstr "Amable" -#: netbox/dcim/forms/filtersets.py:1377 +#: dcim/forms/filtersets.py:1377 msgid "Mgmt only" msgstr "Solo administración" -#: netbox/dcim/forms/filtersets.py:1389 netbox/dcim/forms/model_forms.py:1383 -#: netbox/dcim/models/device_components.py:629 -#: netbox/templates/dcim/interface.html:129 +#: dcim/forms/filtersets.py:1389 dcim/forms/model_forms.py:1383 +#: dcim/models/device_components.py:629 templates/dcim/interface.html:129 msgid "WWN" msgstr "WWN" -#: netbox/dcim/forms/filtersets.py:1409 +#: dcim/forms/filtersets.py:1409 msgid "Wireless channel" msgstr "Canal inalámbrico" -#: netbox/dcim/forms/filtersets.py:1413 +#: dcim/forms/filtersets.py:1413 msgid "Channel frequency (MHz)" msgstr "Frecuencia de canal (MHz)" -#: netbox/dcim/forms/filtersets.py:1417 +#: dcim/forms/filtersets.py:1417 msgid "Channel width (MHz)" msgstr "Ancho de canal (MHz)" -#: netbox/dcim/forms/filtersets.py:1421 -#: netbox/templates/dcim/interface.html:85 +#: dcim/forms/filtersets.py:1421 templates/dcim/interface.html:85 msgid "Transmit power (dBm)" msgstr "Potencia de transmisión (dBm)" -#: netbox/dcim/forms/filtersets.py:1446 netbox/dcim/forms/filtersets.py:1471 -#: netbox/dcim/tables/devices.py:327 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:50 -#: netbox/templates/dcim/inc/connection_endpoints.html:4 -#: netbox/templates/dcim/rearport.html:73 -#: netbox/templates/dcim/trace/cable.html:7 +#: dcim/forms/filtersets.py:1446 dcim/forms/filtersets.py:1471 +#: dcim/tables/devices.py:327 templates/dcim/cable.html:12 +#: templates/dcim/cable_trace.html:46 templates/dcim/frontport.html:77 +#: templates/dcim/htmx/cable_edit.html:50 +#: templates/dcim/inc/connection_endpoints.html:4 +#: templates/dcim/rearport.html:73 templates/dcim/trace/cable.html:7 msgid "Cable" msgstr "Cable" -#: netbox/dcim/forms/filtersets.py:1550 netbox/dcim/tables/devices.py:949 +#: dcim/forms/filtersets.py:1550 dcim/tables/devices.py:949 msgid "Discovered" msgstr "Descubierto" -#: netbox/dcim/forms/formsets.py:20 +#: dcim/forms/formsets.py:20 #, python-brace-format msgid "A virtual chassis member already exists in position {vc_position}." msgstr "Ya existe un miembro del chasis virtual en posición {vc_position}." -#: netbox/dcim/forms/model_forms.py:140 +#: dcim/forms/model_forms.py:140 msgid "Contact Info" msgstr "Información de contacto" -#: netbox/dcim/forms/model_forms.py:195 netbox/templates/dcim/rackrole.html:19 +#: dcim/forms/model_forms.py:195 templates/dcim/rackrole.html:19 msgid "Rack Role" msgstr "Rol de bastidor" -#: netbox/dcim/forms/model_forms.py:212 netbox/dcim/forms/model_forms.py:362 -#: netbox/dcim/forms/model_forms.py:446 -#: netbox/utilities/forms/fields/fields.py:47 +#: dcim/forms/model_forms.py:212 dcim/forms/model_forms.py:362 +#: dcim/forms/model_forms.py:446 utilities/forms/fields/fields.py:47 msgid "Slug" msgstr "Babosa" -#: netbox/dcim/forms/model_forms.py:259 +#: dcim/forms/model_forms.py:259 msgid "Select a pre-defined rack type, or set physical characteristics below." msgstr "" "Seleccione un tipo de bastidor predefinido o defina las características " "físicas a continuación." -#: netbox/dcim/forms/model_forms.py:265 +#: dcim/forms/model_forms.py:265 msgid "Inventory Control" msgstr "Control de inventario" -#: netbox/dcim/forms/model_forms.py:313 +#: dcim/forms/model_forms.py:313 msgid "" "Comma-separated list of numeric unit IDs. A range may be specified using a " "hyphen." @@ -4836,163 +4421,146 @@ msgstr "" "Lista de identificadores de unidades numéricas separados por comas. Se puede" " especificar un rango mediante un guión." -#: netbox/dcim/forms/model_forms.py:322 netbox/dcim/tables/racks.py:202 +#: dcim/forms/model_forms.py:322 dcim/tables/racks.py:202 msgid "Reservation" msgstr "Reservación" -#: netbox/dcim/forms/model_forms.py:423 -#: netbox/templates/dcim/devicerole.html:23 +#: dcim/forms/model_forms.py:423 templates/dcim/devicerole.html:23 msgid "Device Role" msgstr "Función del dispositivo" -#: netbox/dcim/forms/model_forms.py:490 netbox/dcim/models/devices.py:644 +#: dcim/forms/model_forms.py:490 dcim/models/devices.py:644 msgid "The lowest-numbered unit occupied by the device" msgstr "La unidad con el número más bajo ocupado por el dispositivo" -#: netbox/dcim/forms/model_forms.py:547 +#: dcim/forms/model_forms.py:547 msgid "The position in the virtual chassis this device is identified by" msgstr "" "La posición en el chasis virtual por la que se identifica este dispositivo" -#: netbox/dcim/forms/model_forms.py:552 +#: dcim/forms/model_forms.py:552 msgid "The priority of the device in the virtual chassis" msgstr "La prioridad del dispositivo en el chasis virtual" -#: netbox/dcim/forms/model_forms.py:659 +#: dcim/forms/model_forms.py:659 msgid "Automatically populate components associated with this module type" msgstr "" "Rellenar automáticamente los componentes asociados a este tipo de módulo" -#: netbox/dcim/forms/model_forms.py:767 +#: dcim/forms/model_forms.py:767 msgid "Characteristics" msgstr "Características" -#: netbox/dcim/forms/model_forms.py:1087 +#: dcim/forms/model_forms.py:1087 msgid "Console port template" msgstr "Plantilla de puerto de consola" -#: netbox/dcim/forms/model_forms.py:1095 +#: dcim/forms/model_forms.py:1095 msgid "Console server port template" msgstr "Plantilla de puerto de servidor de consola" -#: netbox/dcim/forms/model_forms.py:1103 +#: dcim/forms/model_forms.py:1103 msgid "Front port template" msgstr "Plantilla de puerto frontal" -#: netbox/dcim/forms/model_forms.py:1111 +#: dcim/forms/model_forms.py:1111 msgid "Interface template" msgstr "Plantilla de interfaz" -#: netbox/dcim/forms/model_forms.py:1119 +#: dcim/forms/model_forms.py:1119 msgid "Power outlet template" msgstr "Plantilla de toma de corriente" -#: netbox/dcim/forms/model_forms.py:1127 +#: dcim/forms/model_forms.py:1127 msgid "Power port template" msgstr "Plantilla de puerto de alimentación" -#: netbox/dcim/forms/model_forms.py:1135 +#: dcim/forms/model_forms.py:1135 msgid "Rear port template" msgstr "Plantilla de puerto trasero" -#: netbox/dcim/forms/model_forms.py:1144 netbox/dcim/forms/model_forms.py:1388 -#: netbox/dcim/forms/model_forms.py:1551 netbox/dcim/forms/model_forms.py:1583 -#: netbox/dcim/tables/connections.py:65 netbox/ipam/forms/bulk_import.py:318 -#: netbox/ipam/forms/model_forms.py:280 netbox/ipam/forms/model_forms.py:289 -#: netbox/ipam/tables/fhrp.py:64 netbox/ipam/tables/ip.py:372 -#: netbox/ipam/tables/vlans.py:169 -#: netbox/templates/circuits/inc/circuit_termination_fields.html:51 -#: netbox/templates/dcim/frontport.html:106 -#: netbox/templates/dcim/interface.html:27 -#: netbox/templates/dcim/interface.html:184 -#: netbox/templates/dcim/interface.html:310 -#: netbox/templates/dcim/rearport.html:102 -#: netbox/templates/virtualization/vminterface.html:18 -#: netbox/templates/vpn/tunneltermination.html:31 -#: netbox/templates/wireless/inc/wirelesslink_interface.html:10 -#: netbox/templates/wireless/wirelesslink.html:10 -#: netbox/templates/wireless/wirelesslink.html:55 -#: netbox/virtualization/forms/model_forms.py:348 -#: netbox/vpn/forms/bulk_import.py:297 netbox/vpn/forms/model_forms.py:436 -#: netbox/vpn/forms/model_forms.py:445 -#: netbox/wireless/forms/model_forms.py:113 -#: netbox/wireless/forms/model_forms.py:155 +#: dcim/forms/model_forms.py:1144 dcim/forms/model_forms.py:1388 +#: dcim/forms/model_forms.py:1551 dcim/forms/model_forms.py:1583 +#: dcim/tables/connections.py:65 ipam/forms/bulk_import.py:318 +#: ipam/forms/model_forms.py:280 ipam/forms/model_forms.py:289 +#: ipam/tables/fhrp.py:64 ipam/tables/ip.py:372 ipam/tables/vlans.py:169 +#: templates/circuits/inc/circuit_termination_fields.html:51 +#: templates/dcim/frontport.html:106 templates/dcim/interface.html:27 +#: templates/dcim/interface.html:184 templates/dcim/interface.html:310 +#: templates/dcim/rearport.html:102 +#: templates/virtualization/vminterface.html:18 +#: templates/vpn/tunneltermination.html:31 +#: templates/wireless/inc/wirelesslink_interface.html:10 +#: templates/wireless/wirelesslink.html:10 +#: templates/wireless/wirelesslink.html:55 +#: virtualization/forms/model_forms.py:348 vpn/forms/bulk_import.py:297 +#: vpn/forms/model_forms.py:436 vpn/forms/model_forms.py:445 +#: wireless/forms/model_forms.py:113 wireless/forms/model_forms.py:155 msgid "Interface" msgstr "Interfaz" -#: netbox/dcim/forms/model_forms.py:1145 netbox/dcim/forms/model_forms.py:1584 -#: netbox/dcim/tables/connections.py:27 -#: netbox/templates/dcim/consoleport.html:17 -#: netbox/templates/dcim/consoleserverport.html:74 -#: netbox/templates/dcim/frontport.html:112 +#: dcim/forms/model_forms.py:1145 dcim/forms/model_forms.py:1584 +#: dcim/tables/connections.py:27 templates/dcim/consoleport.html:17 +#: templates/dcim/consoleserverport.html:74 templates/dcim/frontport.html:112 msgid "Console Port" msgstr "Puerto de consola" -#: netbox/dcim/forms/model_forms.py:1146 netbox/dcim/forms/model_forms.py:1585 -#: netbox/templates/dcim/consoleport.html:73 -#: netbox/templates/dcim/consoleserverport.html:17 -#: netbox/templates/dcim/frontport.html:109 +#: dcim/forms/model_forms.py:1146 dcim/forms/model_forms.py:1585 +#: templates/dcim/consoleport.html:73 templates/dcim/consoleserverport.html:17 +#: templates/dcim/frontport.html:109 msgid "Console Server Port" msgstr "Puerto de servidor de consola" -#: netbox/dcim/forms/model_forms.py:1147 netbox/dcim/forms/model_forms.py:1586 -#: netbox/templates/circuits/inc/circuit_termination_fields.html:52 -#: netbox/templates/dcim/consoleport.html:76 -#: netbox/templates/dcim/consoleserverport.html:77 -#: netbox/templates/dcim/frontport.html:17 -#: netbox/templates/dcim/frontport.html:115 -#: netbox/templates/dcim/interface.html:187 -#: netbox/templates/dcim/rearport.html:105 +#: dcim/forms/model_forms.py:1147 dcim/forms/model_forms.py:1586 +#: templates/circuits/inc/circuit_termination_fields.html:52 +#: templates/dcim/consoleport.html:76 templates/dcim/consoleserverport.html:77 +#: templates/dcim/frontport.html:17 templates/dcim/frontport.html:115 +#: templates/dcim/interface.html:187 templates/dcim/rearport.html:105 msgid "Front Port" msgstr "Puerto frontal" -#: netbox/dcim/forms/model_forms.py:1148 netbox/dcim/forms/model_forms.py:1587 -#: netbox/dcim/tables/devices.py:710 -#: netbox/templates/circuits/inc/circuit_termination_fields.html:53 -#: netbox/templates/dcim/consoleport.html:79 -#: netbox/templates/dcim/consoleserverport.html:80 -#: netbox/templates/dcim/frontport.html:50 -#: netbox/templates/dcim/frontport.html:118 -#: netbox/templates/dcim/interface.html:190 -#: netbox/templates/dcim/rearport.html:17 -#: netbox/templates/dcim/rearport.html:108 +#: dcim/forms/model_forms.py:1148 dcim/forms/model_forms.py:1587 +#: dcim/tables/devices.py:710 +#: templates/circuits/inc/circuit_termination_fields.html:53 +#: templates/dcim/consoleport.html:79 templates/dcim/consoleserverport.html:80 +#: templates/dcim/frontport.html:50 templates/dcim/frontport.html:118 +#: templates/dcim/interface.html:190 templates/dcim/rearport.html:17 +#: templates/dcim/rearport.html:108 msgid "Rear Port" msgstr "Puerto trasero" -#: netbox/dcim/forms/model_forms.py:1149 netbox/dcim/forms/model_forms.py:1588 -#: netbox/dcim/tables/connections.py:46 netbox/dcim/tables/devices.py:512 -#: netbox/templates/dcim/poweroutlet.html:44 -#: netbox/templates/dcim/powerport.html:17 +#: dcim/forms/model_forms.py:1149 dcim/forms/model_forms.py:1588 +#: dcim/tables/connections.py:46 dcim/tables/devices.py:512 +#: templates/dcim/poweroutlet.html:44 templates/dcim/powerport.html:17 msgid "Power Port" msgstr "Puerto de alimentación" -#: netbox/dcim/forms/model_forms.py:1150 netbox/dcim/forms/model_forms.py:1589 -#: netbox/templates/dcim/poweroutlet.html:17 -#: netbox/templates/dcim/powerport.html:77 +#: dcim/forms/model_forms.py:1150 dcim/forms/model_forms.py:1589 +#: templates/dcim/poweroutlet.html:17 templates/dcim/powerport.html:77 msgid "Power Outlet" msgstr "Toma de corriente" -#: netbox/dcim/forms/model_forms.py:1152 netbox/dcim/forms/model_forms.py:1591 +#: dcim/forms/model_forms.py:1152 dcim/forms/model_forms.py:1591 msgid "Component Assignment" msgstr "Asignación de componentes" -#: netbox/dcim/forms/model_forms.py:1195 netbox/dcim/forms/model_forms.py:1638 +#: dcim/forms/model_forms.py:1195 dcim/forms/model_forms.py:1638 msgid "An InventoryItem can only be assigned to a single component." msgstr "Un InventoryItem solo se puede asignar a un único componente." -#: netbox/dcim/forms/model_forms.py:1332 +#: dcim/forms/model_forms.py:1332 msgid "LAG interface" msgstr "Interfaz LAG" -#: netbox/dcim/forms/model_forms.py:1355 +#: dcim/forms/model_forms.py:1355 msgid "Filter VLANs available for assignment by group." msgstr "Filtre las VLAN disponibles para la asignación por grupo." -#: netbox/dcim/forms/model_forms.py:1484 +#: dcim/forms/model_forms.py:1484 msgid "Child Device" msgstr "Dispositivo infantil" -#: netbox/dcim/forms/model_forms.py:1485 +#: dcim/forms/model_forms.py:1485 msgid "" "Child devices must first be created and assigned to the site and rack of the" " parent device." @@ -5000,35 +4568,32 @@ msgstr "" "Los dispositivos secundarios primero deben crearse y asignarse al sitio y al" " rack del dispositivo principal." -#: netbox/dcim/forms/model_forms.py:1527 +#: dcim/forms/model_forms.py:1527 msgid "Console port" msgstr "Puerto de consola" -#: netbox/dcim/forms/model_forms.py:1535 +#: dcim/forms/model_forms.py:1535 msgid "Console server port" msgstr "Puerto de servidor de consola" -#: netbox/dcim/forms/model_forms.py:1543 +#: dcim/forms/model_forms.py:1543 msgid "Front port" msgstr "Puerto frontal" -#: netbox/dcim/forms/model_forms.py:1559 +#: dcim/forms/model_forms.py:1559 msgid "Power outlet" msgstr "toma de corriente" -#: netbox/dcim/forms/model_forms.py:1579 -#: netbox/templates/dcim/inventoryitem.html:17 +#: dcim/forms/model_forms.py:1579 templates/dcim/inventoryitem.html:17 msgid "Inventory Item" msgstr "Artículo de inventario" -#: netbox/dcim/forms/model_forms.py:1652 -#: netbox/templates/dcim/inventoryitemrole.html:15 +#: dcim/forms/model_forms.py:1652 templates/dcim/inventoryitemrole.html:15 msgid "Inventory Item Role" msgstr "Función del artículo de inventario" -#: netbox/dcim/forms/object_create.py:48 -#: netbox/dcim/forms/object_create.py:199 -#: netbox/dcim/forms/object_create.py:355 +#: dcim/forms/object_create.py:48 dcim/forms/object_create.py:199 +#: dcim/forms/object_create.py:355 msgid "" "Alphanumeric ranges are supported. (Must match the number of objects being " "created.)" @@ -5036,7 +4601,7 @@ msgstr "" "Se admiten los rangos alfanuméricos. (Debe coincidir con el número de " "objetos que se están creando)." -#: netbox/dcim/forms/object_create.py:68 +#: dcim/forms/object_create.py:68 #, python-brace-format msgid "" "The provided pattern specifies {value_count} values, but {pattern_count} are" @@ -5045,19 +4610,18 @@ msgstr "" "El patrón proporcionado especifica {value_count} valores, pero " "{pattern_count} se esperan." -#: netbox/dcim/forms/object_create.py:110 -#: netbox/dcim/forms/object_create.py:271 netbox/dcim/tables/devices.py:252 +#: dcim/forms/object_create.py:110 dcim/forms/object_create.py:271 +#: dcim/tables/devices.py:252 msgid "Rear ports" msgstr "Puertos traseros" -#: netbox/dcim/forms/object_create.py:111 -#: netbox/dcim/forms/object_create.py:272 +#: dcim/forms/object_create.py:111 dcim/forms/object_create.py:272 msgid "Select one rear port assignment for each front port being created." msgstr "" "Seleccione una asignación de puerto posterior para cada puerto frontal que " "se vaya a crear." -#: netbox/dcim/forms/object_create.py:164 +#: dcim/forms/object_create.py:164 #, python-brace-format msgid "" "The number of front port templates to be created ({frontport_count}) must " @@ -5067,7 +4631,7 @@ msgstr "" "({frontport_count}) debe coincidir con el número seleccionado de posiciones " "de los puertos traseros ({rearport_count})." -#: netbox/dcim/forms/object_create.py:251 +#: dcim/forms/object_create.py:251 #, python-brace-format msgid "" "The string {module} will be replaced with the position of the " @@ -5076,7 +4640,7 @@ msgstr "" "La cadena {module} se sustituirá por la posición del módulo " "asignado, si lo hubiera." -#: netbox/dcim/forms/object_create.py:320 +#: dcim/forms/object_create.py:320 #, python-brace-format msgid "" "The number of front ports to be created ({frontport_count}) must match the " @@ -5086,18 +4650,17 @@ msgstr "" "coincidir con el número seleccionado de posiciones de los puertos traseros " "({rearport_count})." -#: netbox/dcim/forms/object_create.py:409 netbox/dcim/tables/devices.py:1033 -#: netbox/ipam/tables/fhrp.py:31 netbox/templates/dcim/virtualchassis.html:53 -#: netbox/templates/dcim/virtualchassis_edit.html:47 -#: netbox/templates/ipam/fhrpgroup.html:38 +#: dcim/forms/object_create.py:409 dcim/tables/devices.py:1033 +#: ipam/tables/fhrp.py:31 templates/dcim/virtualchassis.html:53 +#: templates/dcim/virtualchassis_edit.html:47 templates/ipam/fhrpgroup.html:38 msgid "Members" msgstr "Miembros" -#: netbox/dcim/forms/object_create.py:418 +#: dcim/forms/object_create.py:418 msgid "Initial position" msgstr "Posición inicial" -#: netbox/dcim/forms/object_create.py:421 +#: dcim/forms/object_create.py:421 msgid "" "Position of the first member device. Increases by one for each additional " "member." @@ -5105,69 +4668,67 @@ msgstr "" "Posición del primer dispositivo miembro. Aumenta en uno por cada miembro " "adicional." -#: netbox/dcim/forms/object_create.py:435 +#: dcim/forms/object_create.py:435 msgid "A position must be specified for the first VC member." msgstr "Se debe especificar un puesto para el primer miembro del VC." -#: netbox/dcim/models/cables.py:62 -#: netbox/dcim/models/device_component_templates.py:55 -#: netbox/dcim/models/device_components.py:62 -#: netbox/extras/models/customfields.py:111 +#: dcim/models/cables.py:62 dcim/models/device_component_templates.py:55 +#: dcim/models/device_components.py:62 extras/models/customfields.py:111 msgid "label" msgstr "etiqueta" -#: netbox/dcim/models/cables.py:71 +#: dcim/models/cables.py:71 msgid "length" msgstr "longitud" -#: netbox/dcim/models/cables.py:78 +#: dcim/models/cables.py:78 msgid "length unit" msgstr "unidad de longitud" -#: netbox/dcim/models/cables.py:95 +#: dcim/models/cables.py:95 msgid "cable" msgstr "cable" -#: netbox/dcim/models/cables.py:96 +#: dcim/models/cables.py:96 msgid "cables" msgstr "cables" -#: netbox/dcim/models/cables.py:165 +#: dcim/models/cables.py:165 msgid "Must specify a unit when setting a cable length" msgstr "Debe especificar una unidad al configurar la longitud de un cable" -#: netbox/dcim/models/cables.py:168 +#: dcim/models/cables.py:168 msgid "Must define A and B terminations when creating a new cable." msgstr "Debe definir las terminaciones A y B al crear un cable nuevo." -#: netbox/dcim/models/cables.py:175 +#: dcim/models/cables.py:175 msgid "Cannot connect different termination types to same end of cable." msgstr "" "No se pueden conectar diferentes tipos de terminaciones al mismo extremo del" " cable." -#: netbox/dcim/models/cables.py:183 +#: dcim/models/cables.py:183 #, python-brace-format msgid "Incompatible termination types: {type_a} and {type_b}" msgstr "Tipos de terminación incompatibles: {type_a} y {type_b}" -#: netbox/dcim/models/cables.py:193 +#: dcim/models/cables.py:193 msgid "A and B terminations cannot connect to the same object." msgstr "Las terminaciones A y B no pueden conectarse al mismo objeto." -#: netbox/dcim/models/cables.py:260 netbox/ipam/models/asns.py:37 +#: dcim/models/cables.py:260 ipam/models/asns.py:37 msgid "end" msgstr "fin" -#: netbox/dcim/models/cables.py:313 +#: dcim/models/cables.py:313 msgid "cable termination" msgstr "terminación de cable" -#: netbox/dcim/models/cables.py:314 +#: dcim/models/cables.py:314 msgid "cable terminations" msgstr "terminaciones de cables" -#: netbox/dcim/models/cables.py:333 +#: dcim/models/cables.py:333 #, python-brace-format msgid "" "Duplicate termination found for {app_label}.{model} {termination_id}: cable " @@ -5176,38 +4737,38 @@ msgstr "" "Se encontró una terminación duplicada para {app_label}.{model} " "{termination_id}: cable {cable_pk}" -#: netbox/dcim/models/cables.py:343 +#: dcim/models/cables.py:343 #, python-brace-format msgid "Cables cannot be terminated to {type_display} interfaces" msgstr "Los cables no se pueden terminar en {type_display} interfaz" -#: netbox/dcim/models/cables.py:350 +#: dcim/models/cables.py:350 msgid "Circuit terminations attached to a provider network may not be cabled." msgstr "" "Es posible que las terminaciones de circuito conectadas a la red de un " "proveedor no estén cableadas." -#: netbox/dcim/models/cables.py:448 netbox/extras/models/configs.py:50 +#: dcim/models/cables.py:448 extras/models/configs.py:50 msgid "is active" msgstr "está activo" -#: netbox/dcim/models/cables.py:452 +#: dcim/models/cables.py:452 msgid "is complete" msgstr "está completo" -#: netbox/dcim/models/cables.py:456 +#: dcim/models/cables.py:456 msgid "is split" msgstr "está dividido" -#: netbox/dcim/models/cables.py:464 +#: dcim/models/cables.py:464 msgid "cable path" msgstr "ruta de cable" -#: netbox/dcim/models/cables.py:465 +#: dcim/models/cables.py:465 msgid "cable paths" msgstr "rutas de cable" -#: netbox/dcim/models/device_component_templates.py:46 +#: dcim/models/device_component_templates.py:46 #, python-brace-format msgid "" "{module} is accepted as a substitution for the module bay position when " @@ -5216,18 +4777,18 @@ msgstr "" "{module} se acepta como sustituto de la posición del compartimiento del " "módulo cuando se conecta a un tipo de módulo." -#: netbox/dcim/models/device_component_templates.py:58 -#: netbox/dcim/models/device_components.py:65 +#: dcim/models/device_component_templates.py:58 +#: dcim/models/device_components.py:65 msgid "Physical label" msgstr "Etiqueta física" -#: netbox/dcim/models/device_component_templates.py:103 +#: dcim/models/device_component_templates.py:103 msgid "Component templates cannot be moved to a different device type." msgstr "" "Las plantillas de componentes no se pueden mover a un tipo de dispositivo " "diferente." -#: netbox/dcim/models/device_component_templates.py:154 +#: dcim/models/device_component_templates.py:154 msgid "" "A component template cannot be associated with both a device type and a " "module type." @@ -5235,7 +4796,7 @@ msgstr "" "Una plantilla de componente no se puede asociar a un tipo de dispositivo ni " "a un tipo de módulo." -#: netbox/dcim/models/device_component_templates.py:158 +#: dcim/models/device_component_templates.py:158 msgid "" "A component template must be associated with either a device type or a " "module type." @@ -5243,138 +4804,138 @@ msgstr "" "Una plantilla de componente debe estar asociada a un tipo de dispositivo o a" " un tipo de módulo." -#: netbox/dcim/models/device_component_templates.py:212 +#: dcim/models/device_component_templates.py:212 msgid "console port template" msgstr "plantilla de puerto de consola" -#: netbox/dcim/models/device_component_templates.py:213 +#: dcim/models/device_component_templates.py:213 msgid "console port templates" msgstr "plantillas de puertos de consola" -#: netbox/dcim/models/device_component_templates.py:246 +#: dcim/models/device_component_templates.py:246 msgid "console server port template" msgstr "plantilla de puerto de servidor de consola" -#: netbox/dcim/models/device_component_templates.py:247 +#: dcim/models/device_component_templates.py:247 msgid "console server port templates" msgstr "plantillas de puertos de servidor de consola" -#: netbox/dcim/models/device_component_templates.py:278 -#: netbox/dcim/models/device_components.py:352 +#: dcim/models/device_component_templates.py:278 +#: dcim/models/device_components.py:352 msgid "maximum draw" msgstr "sorteo máximo" -#: netbox/dcim/models/device_component_templates.py:285 -#: netbox/dcim/models/device_components.py:359 +#: dcim/models/device_component_templates.py:285 +#: dcim/models/device_components.py:359 msgid "allocated draw" msgstr "sorteo asignado" -#: netbox/dcim/models/device_component_templates.py:295 +#: dcim/models/device_component_templates.py:295 msgid "power port template" msgstr "plantilla de puerto de alimentación" -#: netbox/dcim/models/device_component_templates.py:296 +#: dcim/models/device_component_templates.py:296 msgid "power port templates" msgstr "plantillas de puertos de alimentación" -#: netbox/dcim/models/device_component_templates.py:315 -#: netbox/dcim/models/device_components.py:382 +#: dcim/models/device_component_templates.py:315 +#: dcim/models/device_components.py:382 #, python-brace-format msgid "Allocated draw cannot exceed the maximum draw ({maximum_draw}W)." msgstr "" "El sorteo asignado no puede superar el sorteo máximo ({maximum_draw}W)." -#: netbox/dcim/models/device_component_templates.py:347 -#: netbox/dcim/models/device_components.py:477 +#: dcim/models/device_component_templates.py:347 +#: dcim/models/device_components.py:477 msgid "feed leg" msgstr "pierna de alimentación" -#: netbox/dcim/models/device_component_templates.py:351 -#: netbox/dcim/models/device_components.py:481 +#: dcim/models/device_component_templates.py:351 +#: dcim/models/device_components.py:481 msgid "Phase (for three-phase feeds)" msgstr "Fase (para alimentaciones trifásicas)" -#: netbox/dcim/models/device_component_templates.py:357 +#: dcim/models/device_component_templates.py:357 msgid "power outlet template" msgstr "plantilla de toma de corriente" -#: netbox/dcim/models/device_component_templates.py:358 +#: dcim/models/device_component_templates.py:358 msgid "power outlet templates" msgstr "plantillas de tomas de corriente" -#: netbox/dcim/models/device_component_templates.py:367 +#: dcim/models/device_component_templates.py:367 #, python-brace-format msgid "Parent power port ({power_port}) must belong to the same device type" msgstr "" "Puerto de alimentación principal ({power_port}) debe pertenecer al mismo " "tipo de dispositivo" -#: netbox/dcim/models/device_component_templates.py:371 +#: dcim/models/device_component_templates.py:371 #, python-brace-format msgid "Parent power port ({power_port}) must belong to the same module type" msgstr "" "Puerto de alimentación principal ({power_port}) debe pertenecer al mismo " "tipo de módulo" -#: netbox/dcim/models/device_component_templates.py:423 -#: netbox/dcim/models/device_components.py:611 +#: dcim/models/device_component_templates.py:423 +#: dcim/models/device_components.py:611 msgid "management only" msgstr "solo administración" -#: netbox/dcim/models/device_component_templates.py:431 -#: netbox/dcim/models/device_components.py:550 +#: dcim/models/device_component_templates.py:431 +#: dcim/models/device_components.py:550 msgid "bridge interface" msgstr "interfaz de puente" -#: netbox/dcim/models/device_component_templates.py:449 -#: netbox/dcim/models/device_components.py:636 +#: dcim/models/device_component_templates.py:449 +#: dcim/models/device_components.py:636 msgid "wireless role" msgstr "función inalámbrica" -#: netbox/dcim/models/device_component_templates.py:455 +#: dcim/models/device_component_templates.py:455 msgid "interface template" msgstr "plantilla de interfaz" -#: netbox/dcim/models/device_component_templates.py:456 +#: dcim/models/device_component_templates.py:456 msgid "interface templates" msgstr "plantillas de interfaz" -#: netbox/dcim/models/device_component_templates.py:463 -#: netbox/dcim/models/device_components.py:804 -#: netbox/virtualization/models/virtualmachines.py:405 +#: dcim/models/device_component_templates.py:463 +#: dcim/models/device_components.py:804 +#: virtualization/models/virtualmachines.py:405 msgid "An interface cannot be bridged to itself." msgstr "Una interfaz no se puede conectar a sí misma." -#: netbox/dcim/models/device_component_templates.py:466 +#: dcim/models/device_component_templates.py:466 #, python-brace-format msgid "Bridge interface ({bridge}) must belong to the same device type" msgstr "" "Interfaz de puente ({bridge}) debe pertenecer al mismo tipo de dispositivo" -#: netbox/dcim/models/device_component_templates.py:470 +#: dcim/models/device_component_templates.py:470 #, python-brace-format msgid "Bridge interface ({bridge}) must belong to the same module type" msgstr "Interfaz de puente ({bridge}) debe pertenecer al mismo tipo de módulo" -#: netbox/dcim/models/device_component_templates.py:526 -#: netbox/dcim/models/device_components.py:984 +#: dcim/models/device_component_templates.py:526 +#: dcim/models/device_components.py:984 msgid "rear port position" msgstr "posición del puerto trasero" -#: netbox/dcim/models/device_component_templates.py:551 +#: dcim/models/device_component_templates.py:551 msgid "front port template" msgstr "plantilla de puerto frontal" -#: netbox/dcim/models/device_component_templates.py:552 +#: dcim/models/device_component_templates.py:552 msgid "front port templates" msgstr "plantillas de puertos frontales" -#: netbox/dcim/models/device_component_templates.py:562 +#: dcim/models/device_component_templates.py:562 #, python-brace-format msgid "Rear port ({name}) must belong to the same device type" msgstr "Puerto trasero ({name}) debe pertenecer al mismo tipo de dispositivo" -#: netbox/dcim/models/device_component_templates.py:568 +#: dcim/models/device_component_templates.py:568 #, python-brace-format msgid "" "Invalid rear port position ({position}); rear port {name} has only {count} " @@ -5383,48 +4944,48 @@ msgstr "" "Posición del puerto trasero no válida ({position}); puerto trasero {name} " "solo tiene {count} posiciones" -#: netbox/dcim/models/device_component_templates.py:621 -#: netbox/dcim/models/device_components.py:1053 +#: dcim/models/device_component_templates.py:621 +#: dcim/models/device_components.py:1053 msgid "positions" msgstr "posiciones" -#: netbox/dcim/models/device_component_templates.py:632 +#: dcim/models/device_component_templates.py:632 msgid "rear port template" msgstr "plantilla de puerto trasero" -#: netbox/dcim/models/device_component_templates.py:633 +#: dcim/models/device_component_templates.py:633 msgid "rear port templates" msgstr "plantillas de puertos traseros" -#: netbox/dcim/models/device_component_templates.py:662 -#: netbox/dcim/models/device_components.py:1103 +#: dcim/models/device_component_templates.py:662 +#: dcim/models/device_components.py:1103 msgid "position" msgstr "posición" -#: netbox/dcim/models/device_component_templates.py:665 -#: netbox/dcim/models/device_components.py:1106 +#: dcim/models/device_component_templates.py:665 +#: dcim/models/device_components.py:1106 msgid "Identifier to reference when renaming installed components" msgstr "" "Identificador al que se debe hacer referencia al cambiar el nombre de los " "componentes instalados" -#: netbox/dcim/models/device_component_templates.py:671 +#: dcim/models/device_component_templates.py:671 msgid "module bay template" msgstr "plantilla de bahía de módulos" -#: netbox/dcim/models/device_component_templates.py:672 +#: dcim/models/device_component_templates.py:672 msgid "module bay templates" msgstr "plantillas de compartimentos de módulos" -#: netbox/dcim/models/device_component_templates.py:699 +#: dcim/models/device_component_templates.py:699 msgid "device bay template" msgstr "plantilla de compartimento de dispositivos" -#: netbox/dcim/models/device_component_templates.py:700 +#: dcim/models/device_component_templates.py:700 msgid "device bay templates" msgstr "plantillas de compartimentos de dispositivos" -#: netbox/dcim/models/device_component_templates.py:713 +#: dcim/models/device_component_templates.py:713 #, python-brace-format msgid "" "Subdevice role of device type ({device_type}) must be set to \"parent\" to " @@ -5434,207 +4995,202 @@ msgstr "" "configurarse como «principal» para permitir compartimentos para " "dispositivos." -#: netbox/dcim/models/device_component_templates.py:768 -#: netbox/dcim/models/device_components.py:1262 +#: dcim/models/device_component_templates.py:768 +#: dcim/models/device_components.py:1262 msgid "part ID" msgstr "ID de pieza" -#: netbox/dcim/models/device_component_templates.py:770 -#: netbox/dcim/models/device_components.py:1264 +#: dcim/models/device_component_templates.py:770 +#: dcim/models/device_components.py:1264 msgid "Manufacturer-assigned part identifier" msgstr "Identificador de pieza asignado por el fabricante" -#: netbox/dcim/models/device_component_templates.py:787 +#: dcim/models/device_component_templates.py:787 msgid "inventory item template" msgstr "plantilla de artículos de inventario" -#: netbox/dcim/models/device_component_templates.py:788 +#: dcim/models/device_component_templates.py:788 msgid "inventory item templates" msgstr "plantillas de artículos de inventario" -#: netbox/dcim/models/device_components.py:105 +#: dcim/models/device_components.py:105 msgid "Components cannot be moved to a different device." msgstr "Los componentes no se pueden mover a un dispositivo diferente." -#: netbox/dcim/models/device_components.py:144 +#: dcim/models/device_components.py:144 msgid "cable end" msgstr "extremo del cable" -#: netbox/dcim/models/device_components.py:150 +#: dcim/models/device_components.py:150 msgid "mark connected" msgstr "marcar conectado" -#: netbox/dcim/models/device_components.py:152 +#: dcim/models/device_components.py:152 msgid "Treat as if a cable is connected" msgstr "Tratar como si hubiera un cable conectado" -#: netbox/dcim/models/device_components.py:170 +#: dcim/models/device_components.py:170 msgid "Must specify cable end (A or B) when attaching a cable." msgstr "Debe especificar el extremo del cable (A o B) al conectar un cable." -#: netbox/dcim/models/device_components.py:174 +#: dcim/models/device_components.py:174 msgid "Cable end must not be set without a cable." msgstr "El extremo del cable no se debe colocar sin cable." -#: netbox/dcim/models/device_components.py:178 +#: dcim/models/device_components.py:178 msgid "Cannot mark as connected with a cable attached." msgstr "No se puede marcar como conectado con un cable conectado." -#: netbox/dcim/models/device_components.py:202 +#: dcim/models/device_components.py:202 #, python-brace-format msgid "{class_name} models must declare a parent_object property" msgstr "{class_name} los modelos deben declarar una propiedad parent_object" -#: netbox/dcim/models/device_components.py:287 -#: netbox/dcim/models/device_components.py:316 -#: netbox/dcim/models/device_components.py:349 -#: netbox/dcim/models/device_components.py:467 +#: dcim/models/device_components.py:287 dcim/models/device_components.py:316 +#: dcim/models/device_components.py:349 dcim/models/device_components.py:467 msgid "Physical port type" msgstr "Tipo de puerto físico" -#: netbox/dcim/models/device_components.py:290 -#: netbox/dcim/models/device_components.py:319 +#: dcim/models/device_components.py:290 dcim/models/device_components.py:319 msgid "speed" msgstr "velocidad" -#: netbox/dcim/models/device_components.py:294 -#: netbox/dcim/models/device_components.py:323 +#: dcim/models/device_components.py:294 dcim/models/device_components.py:323 msgid "Port speed in bits per second" msgstr "Velocidad de puerto en bits por segundo" -#: netbox/dcim/models/device_components.py:300 +#: dcim/models/device_components.py:300 msgid "console port" msgstr "puerto de consola" -#: netbox/dcim/models/device_components.py:301 +#: dcim/models/device_components.py:301 msgid "console ports" msgstr "puertos de consola" -#: netbox/dcim/models/device_components.py:329 +#: dcim/models/device_components.py:329 msgid "console server port" msgstr "puerto de servidor de consola" -#: netbox/dcim/models/device_components.py:330 +#: dcim/models/device_components.py:330 msgid "console server ports" msgstr "puertos de servidor de consola" -#: netbox/dcim/models/device_components.py:369 +#: dcim/models/device_components.py:369 msgid "power port" msgstr "puerto de alimentación" -#: netbox/dcim/models/device_components.py:370 +#: dcim/models/device_components.py:370 msgid "power ports" msgstr "puertos de alimentación" -#: netbox/dcim/models/device_components.py:487 +#: dcim/models/device_components.py:487 msgid "power outlet" msgstr "toma de corriente" -#: netbox/dcim/models/device_components.py:488 +#: dcim/models/device_components.py:488 msgid "power outlets" msgstr "tomas de corriente" -#: netbox/dcim/models/device_components.py:499 +#: dcim/models/device_components.py:499 #, python-brace-format msgid "Parent power port ({power_port}) must belong to the same device" msgstr "" "Puerto de alimentación principal ({power_port}) debe pertenecer al mismo " "dispositivo" -#: netbox/dcim/models/device_components.py:530 netbox/vpn/models/crypto.py:81 -#: netbox/vpn/models/crypto.py:226 +#: dcim/models/device_components.py:530 vpn/models/crypto.py:81 +#: vpn/models/crypto.py:226 msgid "mode" msgstr "modo" -#: netbox/dcim/models/device_components.py:534 +#: dcim/models/device_components.py:534 msgid "IEEE 802.1Q tagging strategy" msgstr "Estrategia de etiquetado IEEE 802.1Q" -#: netbox/dcim/models/device_components.py:542 +#: dcim/models/device_components.py:542 msgid "parent interface" msgstr "interfaz principal" -#: netbox/dcim/models/device_components.py:602 +#: dcim/models/device_components.py:602 msgid "parent LAG" msgstr "LAG principal" -#: netbox/dcim/models/device_components.py:612 +#: dcim/models/device_components.py:612 msgid "This interface is used only for out-of-band management" msgstr "Esta interfaz se usa solo para la administración fuera de banda" -#: netbox/dcim/models/device_components.py:617 +#: dcim/models/device_components.py:617 msgid "speed (Kbps)" msgstr "velocidad (Kbps)" -#: netbox/dcim/models/device_components.py:620 +#: dcim/models/device_components.py:620 msgid "duplex" msgstr "dúplex" -#: netbox/dcim/models/device_components.py:630 +#: dcim/models/device_components.py:630 msgid "64-bit World Wide Name" msgstr "Nombre mundial de 64 bits" -#: netbox/dcim/models/device_components.py:642 +#: dcim/models/device_components.py:642 msgid "wireless channel" msgstr "canal inalámbrico" -#: netbox/dcim/models/device_components.py:649 +#: dcim/models/device_components.py:649 msgid "channel frequency (MHz)" msgstr "frecuencia de canal (MHz)" -#: netbox/dcim/models/device_components.py:650 -#: netbox/dcim/models/device_components.py:658 +#: dcim/models/device_components.py:650 dcim/models/device_components.py:658 msgid "Populated by selected channel (if set)" msgstr "Se rellena por el canal seleccionado (si está configurado)" -#: netbox/dcim/models/device_components.py:664 +#: dcim/models/device_components.py:664 msgid "transmit power (dBm)" msgstr "potencia de transmisión (dBm)" -#: netbox/dcim/models/device_components.py:689 netbox/wireless/models.py:117 +#: dcim/models/device_components.py:689 wireless/models.py:117 msgid "wireless LANs" msgstr "LAN inalámbricas" -#: netbox/dcim/models/device_components.py:697 -#: netbox/virtualization/models/virtualmachines.py:335 +#: dcim/models/device_components.py:697 +#: virtualization/models/virtualmachines.py:335 msgid "untagged VLAN" msgstr "VLAN sin etiquetar" -#: netbox/dcim/models/device_components.py:703 -#: netbox/virtualization/models/virtualmachines.py:341 +#: dcim/models/device_components.py:703 +#: virtualization/models/virtualmachines.py:341 msgid "tagged VLANs" msgstr "VLAN etiquetadas" -#: netbox/dcim/models/device_components.py:745 -#: netbox/virtualization/models/virtualmachines.py:377 +#: dcim/models/device_components.py:745 +#: virtualization/models/virtualmachines.py:377 msgid "interface" msgstr "interfaz" -#: netbox/dcim/models/device_components.py:746 -#: netbox/virtualization/models/virtualmachines.py:378 +#: dcim/models/device_components.py:746 +#: virtualization/models/virtualmachines.py:378 msgid "interfaces" msgstr "interfaz" -#: netbox/dcim/models/device_components.py:757 +#: dcim/models/device_components.py:757 #, python-brace-format msgid "{display_type} interfaces cannot have a cable attached." msgstr "{display_type} las interfaces no pueden tener un cable conectado." -#: netbox/dcim/models/device_components.py:765 +#: dcim/models/device_components.py:765 #, python-brace-format msgid "{display_type} interfaces cannot be marked as connected." msgstr "{display_type} las interfaces no se pueden marcar como conectadas." -#: netbox/dcim/models/device_components.py:774 -#: netbox/virtualization/models/virtualmachines.py:390 +#: dcim/models/device_components.py:774 +#: virtualization/models/virtualmachines.py:390 msgid "An interface cannot be its own parent." msgstr "Una interfaz no puede ser su propia interfaz principal." -#: netbox/dcim/models/device_components.py:778 +#: dcim/models/device_components.py:778 msgid "Only virtual interfaces may be assigned to a parent interface." msgstr "Solo se pueden asignar interfaces virtuales a una interfaz principal." -#: netbox/dcim/models/device_components.py:785 +#: dcim/models/device_components.py:785 #, python-brace-format msgid "" "The selected parent interface ({interface}) belongs to a different device " @@ -5643,7 +5199,7 @@ msgstr "" "La interfaz principal seleccionada ({interface}) pertenece a un dispositivo " "diferente ({device})" -#: netbox/dcim/models/device_components.py:791 +#: dcim/models/device_components.py:791 #, python-brace-format msgid "" "The selected parent interface ({interface}) belongs to {device}, which is " @@ -5652,7 +5208,7 @@ msgstr "" "La interfaz principal seleccionada ({interface}) pertenece a {device}, que " "no forma parte del chasis virtual {virtual_chassis}." -#: netbox/dcim/models/device_components.py:811 +#: dcim/models/device_components.py:811 #, python-brace-format msgid "" "The selected bridge interface ({bridge}) belongs to a different device " @@ -5661,7 +5217,7 @@ msgstr "" "La interfaz de puente seleccionada ({bridge}) pertenece a un dispositivo " "diferente ({device})." -#: netbox/dcim/models/device_components.py:817 +#: dcim/models/device_components.py:817 #, python-brace-format msgid "" "The selected bridge interface ({interface}) belongs to {device}, which is " @@ -5670,15 +5226,15 @@ msgstr "" "La interfaz de puente seleccionada ({interface}) pertenece a {device}, que " "no forma parte del chasis virtual {virtual_chassis}." -#: netbox/dcim/models/device_components.py:828 +#: dcim/models/device_components.py:828 msgid "Virtual interfaces cannot have a parent LAG interface." msgstr "Las interfaces virtuales no pueden tener una interfaz LAG principal." -#: netbox/dcim/models/device_components.py:832 +#: dcim/models/device_components.py:832 msgid "A LAG interface cannot be its own parent." msgstr "Una interfaz LAG no puede ser su propia interfaz principal." -#: netbox/dcim/models/device_components.py:839 +#: dcim/models/device_components.py:839 #, python-brace-format msgid "" "The selected LAG interface ({lag}) belongs to a different device ({device})." @@ -5686,7 +5242,7 @@ msgstr "" "La interfaz LAG seleccionada ({lag}) pertenece a un dispositivo diferente " "({device})." -#: netbox/dcim/models/device_components.py:845 +#: dcim/models/device_components.py:845 #, python-brace-format msgid "" "The selected LAG interface ({lag}) belongs to {device}, which is not part of" @@ -5695,51 +5251,51 @@ msgstr "" "La interfaz LAG seleccionada ({lag}) pertenece a {device}, que no forma " "parte del chasis virtual {virtual_chassis}." -#: netbox/dcim/models/device_components.py:856 +#: dcim/models/device_components.py:856 msgid "Virtual interfaces cannot have a PoE mode." msgstr "Las interfaces virtuales no pueden tener un modo PoE." -#: netbox/dcim/models/device_components.py:860 +#: dcim/models/device_components.py:860 msgid "Virtual interfaces cannot have a PoE type." msgstr "Las interfaces virtuales no pueden tener un tipo PoE." -#: netbox/dcim/models/device_components.py:866 +#: dcim/models/device_components.py:866 msgid "Must specify PoE mode when designating a PoE type." msgstr "Debe especificar el modo PoE al designar un tipo de PoE." -#: netbox/dcim/models/device_components.py:873 +#: dcim/models/device_components.py:873 msgid "Wireless role may be set only on wireless interfaces." msgstr "" "La función inalámbrica solo se puede configurar en las interfaces " "inalámbricas." -#: netbox/dcim/models/device_components.py:875 +#: dcim/models/device_components.py:875 msgid "Channel may be set only on wireless interfaces." msgstr "El canal solo se puede configurar en las interfaces inalámbricas." -#: netbox/dcim/models/device_components.py:881 +#: dcim/models/device_components.py:881 msgid "Channel frequency may be set only on wireless interfaces." msgstr "" "La frecuencia del canal solo se puede configurar en las interfaces " "inalámbricas." -#: netbox/dcim/models/device_components.py:885 +#: dcim/models/device_components.py:885 msgid "Cannot specify custom frequency with channel selected." msgstr "" "No se puede especificar la frecuencia personalizada con el canal " "seleccionado." -#: netbox/dcim/models/device_components.py:891 +#: dcim/models/device_components.py:891 msgid "Channel width may be set only on wireless interfaces." msgstr "" "El ancho del canal solo se puede establecer en las interfaces inalámbricas." -#: netbox/dcim/models/device_components.py:893 +#: dcim/models/device_components.py:893 msgid "Cannot specify custom width with channel selected." msgstr "" "No se puede especificar un ancho personalizado con el canal seleccionado." -#: netbox/dcim/models/device_components.py:901 +#: dcim/models/device_components.py:901 #, python-brace-format msgid "" "The untagged VLAN ({untagged_vlan}) must belong to the same site as the " @@ -5748,24 +5304,24 @@ msgstr "" "La VLAN sin etiquetar ({untagged_vlan}) debe pertenecer al mismo sitio que " "el dispositivo principal de la interfaz o debe ser global." -#: netbox/dcim/models/device_components.py:990 +#: dcim/models/device_components.py:990 msgid "Mapped position on corresponding rear port" msgstr "Posición mapeada en el puerto trasero correspondiente" -#: netbox/dcim/models/device_components.py:1006 +#: dcim/models/device_components.py:1006 msgid "front port" msgstr "puerto frontal" -#: netbox/dcim/models/device_components.py:1007 +#: dcim/models/device_components.py:1007 msgid "front ports" msgstr "puertos frontales" -#: netbox/dcim/models/device_components.py:1021 +#: dcim/models/device_components.py:1021 #, python-brace-format msgid "Rear port ({rear_port}) must belong to the same device" msgstr "Puerto trasero ({rear_port}) debe pertenecer al mismo dispositivo" -#: netbox/dcim/models/device_components.py:1029 +#: dcim/models/device_components.py:1029 #, python-brace-format msgid "" "Invalid rear port position ({rear_port_position}): Rear port {name} has only" @@ -5774,19 +5330,19 @@ msgstr "" "Posición del puerto trasero no válida ({rear_port_position}): puerto trasero" " {name} solo tiene {positions} posiciones." -#: netbox/dcim/models/device_components.py:1059 +#: dcim/models/device_components.py:1059 msgid "Number of front ports which may be mapped" msgstr "Número de puertos frontales que se pueden mapear" -#: netbox/dcim/models/device_components.py:1064 +#: dcim/models/device_components.py:1064 msgid "rear port" msgstr "puerto trasero" -#: netbox/dcim/models/device_components.py:1065 +#: dcim/models/device_components.py:1065 msgid "rear ports" msgstr "puertos traseros" -#: netbox/dcim/models/device_components.py:1079 +#: dcim/models/device_components.py:1079 #, python-brace-format msgid "" "The number of positions cannot be less than the number of mapped front ports" @@ -5795,40 +5351,39 @@ msgstr "" "El número de posiciones no puede ser inferior al número de puertos frontales" " mapeados ({frontport_count})" -#: netbox/dcim/models/device_components.py:1120 +#: dcim/models/device_components.py:1120 msgid "module bay" msgstr "compartimiento de módulos" -#: netbox/dcim/models/device_components.py:1121 +#: dcim/models/device_components.py:1121 msgid "module bays" msgstr "compartimentos de módulos" -#: netbox/dcim/models/device_components.py:1138 -#: netbox/dcim/models/devices.py:1224 +#: dcim/models/device_components.py:1138 dcim/models/devices.py:1224 msgid "A module bay cannot belong to a module installed within it." msgstr "" "Una bahía de módulos no puede pertenecer a un módulo instalado en ella." -#: netbox/dcim/models/device_components.py:1164 +#: dcim/models/device_components.py:1164 msgid "device bay" msgstr "compartimiento de dispositivos" -#: netbox/dcim/models/device_components.py:1165 +#: dcim/models/device_components.py:1165 msgid "device bays" msgstr "compartimentos para dispositivos" -#: netbox/dcim/models/device_components.py:1175 +#: dcim/models/device_components.py:1175 #, python-brace-format msgid "This type of device ({device_type}) does not support device bays." msgstr "" "Este tipo de dispositivo ({device_type}) no admite compartimentos para " "dispositivos." -#: netbox/dcim/models/device_components.py:1181 +#: dcim/models/device_components.py:1181 msgid "Cannot install a device into itself." msgstr "No se puede instalar un dispositivo en sí mismo." -#: netbox/dcim/models/device_components.py:1189 +#: dcim/models/device_components.py:1189 #, python-brace-format msgid "" "Cannot install the specified device; device is already installed in {bay}." @@ -5836,118 +5391,116 @@ msgstr "" "No se puede instalar el dispositivo especificado; el dispositivo ya está " "instalado en {bay}." -#: netbox/dcim/models/device_components.py:1210 +#: dcim/models/device_components.py:1210 msgid "inventory item role" msgstr "rol de artículo de inventario" -#: netbox/dcim/models/device_components.py:1211 +#: dcim/models/device_components.py:1211 msgid "inventory item roles" msgstr "roles de artículos de inventario" -#: netbox/dcim/models/device_components.py:1268 -#: netbox/dcim/models/devices.py:607 netbox/dcim/models/devices.py:1181 -#: netbox/dcim/models/racks.py:313 -#: netbox/virtualization/models/virtualmachines.py:131 +#: dcim/models/device_components.py:1268 dcim/models/devices.py:607 +#: dcim/models/devices.py:1181 dcim/models/racks.py:313 +#: virtualization/models/virtualmachines.py:131 msgid "serial number" msgstr "número de serie" -#: netbox/dcim/models/device_components.py:1276 -#: netbox/dcim/models/devices.py:615 netbox/dcim/models/devices.py:1188 -#: netbox/dcim/models/racks.py:320 +#: dcim/models/device_components.py:1276 dcim/models/devices.py:615 +#: dcim/models/devices.py:1188 dcim/models/racks.py:320 msgid "asset tag" msgstr "etiqueta de activo" -#: netbox/dcim/models/device_components.py:1277 +#: dcim/models/device_components.py:1277 msgid "A unique tag used to identify this item" msgstr "Una etiqueta única que se utiliza para identificar este artículo" -#: netbox/dcim/models/device_components.py:1280 +#: dcim/models/device_components.py:1280 msgid "discovered" msgstr "descubierto" -#: netbox/dcim/models/device_components.py:1282 +#: dcim/models/device_components.py:1282 msgid "This item was automatically discovered" msgstr "Este artículo se descubrió automáticamente" -#: netbox/dcim/models/device_components.py:1300 +#: dcim/models/device_components.py:1300 msgid "inventory item" msgstr "artículo de inventario" -#: netbox/dcim/models/device_components.py:1301 +#: dcim/models/device_components.py:1301 msgid "inventory items" msgstr "artículos de inventario" -#: netbox/dcim/models/device_components.py:1312 +#: dcim/models/device_components.py:1312 msgid "Cannot assign self as parent." msgstr "No se puede asignar a sí mismo como padre." -#: netbox/dcim/models/device_components.py:1320 +#: dcim/models/device_components.py:1320 msgid "Parent inventory item does not belong to the same device." msgstr "" "El artículo del inventario principal no pertenece al mismo dispositivo." -#: netbox/dcim/models/device_components.py:1326 +#: dcim/models/device_components.py:1326 msgid "Cannot move an inventory item with dependent children" msgstr "No se puede mover un artículo del inventario con hijos a cargo" -#: netbox/dcim/models/device_components.py:1334 +#: dcim/models/device_components.py:1334 msgid "Cannot assign inventory item to component on another device" msgstr "" "No se puede asignar un artículo de inventario a un componente de otro " "dispositivo" -#: netbox/dcim/models/devices.py:54 +#: dcim/models/devices.py:54 msgid "manufacturer" msgstr "fabricante" -#: netbox/dcim/models/devices.py:55 +#: dcim/models/devices.py:55 msgid "manufacturers" msgstr "fabricantes" -#: netbox/dcim/models/devices.py:82 netbox/dcim/models/devices.py:382 -#: netbox/dcim/models/racks.py:133 +#: dcim/models/devices.py:82 dcim/models/devices.py:382 +#: dcim/models/racks.py:133 msgid "model" msgstr "modelo" -#: netbox/dcim/models/devices.py:95 +#: dcim/models/devices.py:95 msgid "default platform" msgstr "plataforma predeterminada" -#: netbox/dcim/models/devices.py:98 netbox/dcim/models/devices.py:386 +#: dcim/models/devices.py:98 dcim/models/devices.py:386 msgid "part number" msgstr "número de pieza" -#: netbox/dcim/models/devices.py:101 netbox/dcim/models/devices.py:389 +#: dcim/models/devices.py:101 dcim/models/devices.py:389 msgid "Discrete part number (optional)" msgstr "Número de pieza discreto (opcional)" -#: netbox/dcim/models/devices.py:107 netbox/dcim/models/racks.py:54 +#: dcim/models/devices.py:107 dcim/models/racks.py:54 msgid "height (U)" msgstr "altura (U)" -#: netbox/dcim/models/devices.py:111 +#: dcim/models/devices.py:111 msgid "exclude from utilization" msgstr "excluir de la utilización" -#: netbox/dcim/models/devices.py:112 +#: dcim/models/devices.py:112 msgid "Devices of this type are excluded when calculating rack utilization." msgstr "" "Los dispositivos de este tipo se excluyen al calcular la utilización de los " "racks." -#: netbox/dcim/models/devices.py:116 +#: dcim/models/devices.py:116 msgid "is full depth" msgstr "es de profundidad total" -#: netbox/dcim/models/devices.py:117 +#: dcim/models/devices.py:117 msgid "Device consumes both front and rear rack faces." msgstr "El dispositivo consume las caras delantera y trasera del bastidor." -#: netbox/dcim/models/devices.py:123 +#: dcim/models/devices.py:123 msgid "parent/child status" msgstr "estado de padre/hijo" -#: netbox/dcim/models/devices.py:124 +#: dcim/models/devices.py:124 msgid "" "Parent devices house child devices in device bays. Leave blank if this " "device type is neither a parent nor a child." @@ -5956,24 +5509,24 @@ msgstr "" "compartimentos para dispositivos. Déjelo en blanco si este tipo de " "dispositivo no es para padres ni para niños." -#: netbox/dcim/models/devices.py:128 netbox/dcim/models/devices.py:392 -#: netbox/dcim/models/devices.py:659 netbox/dcim/models/racks.py:324 +#: dcim/models/devices.py:128 dcim/models/devices.py:392 +#: dcim/models/devices.py:659 dcim/models/racks.py:324 msgid "airflow" msgstr "flujo de aire" -#: netbox/dcim/models/devices.py:204 +#: dcim/models/devices.py:204 msgid "device type" msgstr "tipo de dispositivo" -#: netbox/dcim/models/devices.py:205 +#: dcim/models/devices.py:205 msgid "device types" msgstr "tipos de dispositivos" -#: netbox/dcim/models/devices.py:290 +#: dcim/models/devices.py:290 msgid "U height must be in increments of 0.5 rack units." msgstr "La altura en U debe ser en incrementos de 0,5 unidades de bastidor." -#: netbox/dcim/models/devices.py:307 +#: dcim/models/devices.py:307 #, python-brace-format msgid "" "Device {device} in rack {rack} does not have sufficient space to accommodate" @@ -5982,7 +5535,7 @@ msgstr "" "Dispositivo {device} en un estante {rack} no tiene espacio suficiente para " "acomodar una altura de {height}U" -#: netbox/dcim/models/devices.py:322 +#: dcim/models/devices.py:322 #, python-brace-format msgid "" "Unable to set 0U height: Found {racked_instance_count} " @@ -5992,7 +5545,7 @@ msgstr "" "href=\"{url}\">{racked_instance_count} instancias ya está montado dentro" " de bastidores." -#: netbox/dcim/models/devices.py:331 +#: dcim/models/devices.py:331 msgid "" "Must delete all device bay templates associated with this device before " "declassifying it as a parent device." @@ -6001,155 +5554,155 @@ msgstr "" "asociadas a este dispositivo antes de desclasificarlo como dispositivo " "principal." -#: netbox/dcim/models/devices.py:337 +#: dcim/models/devices.py:337 msgid "Child device types must be 0U." msgstr "Los tipos de dispositivos secundarios deben ser 0U." -#: netbox/dcim/models/devices.py:411 +#: dcim/models/devices.py:411 msgid "module type" msgstr "tipo de módulo" -#: netbox/dcim/models/devices.py:412 +#: dcim/models/devices.py:412 msgid "module types" msgstr "tipos de módulos" -#: netbox/dcim/models/devices.py:485 +#: dcim/models/devices.py:485 msgid "Virtual machines may be assigned to this role" msgstr "Se pueden asignar máquinas virtuales a esta función" -#: netbox/dcim/models/devices.py:497 +#: dcim/models/devices.py:497 msgid "device role" msgstr "rol del dispositivo" -#: netbox/dcim/models/devices.py:498 +#: dcim/models/devices.py:498 msgid "device roles" msgstr "funciones del dispositivo" -#: netbox/dcim/models/devices.py:515 +#: dcim/models/devices.py:515 msgid "Optionally limit this platform to devices of a certain manufacturer" msgstr "" "Si lo desea, limite esta plataforma a dispositivos de un fabricante " "determinado." -#: netbox/dcim/models/devices.py:527 +#: dcim/models/devices.py:527 msgid "platform" msgstr "plataforma" -#: netbox/dcim/models/devices.py:528 +#: dcim/models/devices.py:528 msgid "platforms" msgstr "plataformas" -#: netbox/dcim/models/devices.py:576 +#: dcim/models/devices.py:576 msgid "The function this device serves" msgstr "La función que cumple este dispositivo" -#: netbox/dcim/models/devices.py:608 +#: dcim/models/devices.py:608 msgid "Chassis serial number, assigned by the manufacturer" msgstr "Número de serie del chasis, asignado por el fabricante" -#: netbox/dcim/models/devices.py:616 netbox/dcim/models/devices.py:1189 +#: dcim/models/devices.py:616 dcim/models/devices.py:1189 msgid "A unique tag used to identify this device" msgstr "Una etiqueta única que se utiliza para identificar este dispositivo" -#: netbox/dcim/models/devices.py:643 +#: dcim/models/devices.py:643 msgid "position (U)" msgstr "posición (U)" -#: netbox/dcim/models/devices.py:650 +#: dcim/models/devices.py:650 msgid "rack face" msgstr "cara del estante" -#: netbox/dcim/models/devices.py:670 netbox/dcim/models/devices.py:1415 -#: netbox/virtualization/models/virtualmachines.py:100 +#: dcim/models/devices.py:670 dcim/models/devices.py:1415 +#: virtualization/models/virtualmachines.py:100 msgid "primary IPv4" msgstr "IPv4 principal" -#: netbox/dcim/models/devices.py:678 netbox/dcim/models/devices.py:1423 -#: netbox/virtualization/models/virtualmachines.py:108 +#: dcim/models/devices.py:678 dcim/models/devices.py:1423 +#: virtualization/models/virtualmachines.py:108 msgid "primary IPv6" msgstr "IPv6 principal" -#: netbox/dcim/models/devices.py:686 +#: dcim/models/devices.py:686 msgid "out-of-band IP" msgstr "IP fuera de banda" -#: netbox/dcim/models/devices.py:703 +#: dcim/models/devices.py:703 msgid "VC position" msgstr "Posición VC" -#: netbox/dcim/models/devices.py:706 +#: dcim/models/devices.py:706 msgid "Virtual chassis position" msgstr "Posición virtual del chasis" -#: netbox/dcim/models/devices.py:709 +#: dcim/models/devices.py:709 msgid "VC priority" msgstr "Prioridad VC" -#: netbox/dcim/models/devices.py:713 +#: dcim/models/devices.py:713 msgid "Virtual chassis master election priority" msgstr "Prioridad de elección del maestro del chasis virtual" -#: netbox/dcim/models/devices.py:716 netbox/dcim/models/sites.py:207 +#: dcim/models/devices.py:716 dcim/models/sites.py:207 msgid "latitude" msgstr "latitud" -#: netbox/dcim/models/devices.py:721 netbox/dcim/models/devices.py:729 -#: netbox/dcim/models/sites.py:212 netbox/dcim/models/sites.py:220 +#: dcim/models/devices.py:721 dcim/models/devices.py:729 +#: dcim/models/sites.py:212 dcim/models/sites.py:220 msgid "GPS coordinate in decimal format (xx.yyyyyy)" msgstr "Coordenada GPS en formato decimal (xx.aaaaa)" -#: netbox/dcim/models/devices.py:724 netbox/dcim/models/sites.py:215 +#: dcim/models/devices.py:724 dcim/models/sites.py:215 msgid "longitude" msgstr "longitud" -#: netbox/dcim/models/devices.py:797 +#: dcim/models/devices.py:797 msgid "Device name must be unique per site." msgstr "El nombre del dispositivo debe ser único por sitio." -#: netbox/dcim/models/devices.py:808 netbox/ipam/models/services.py:75 +#: dcim/models/devices.py:808 ipam/models/services.py:75 msgid "device" msgstr "dispositivo" -#: netbox/dcim/models/devices.py:809 +#: dcim/models/devices.py:809 msgid "devices" msgstr "dispositivos" -#: netbox/dcim/models/devices.py:835 +#: dcim/models/devices.py:835 #, python-brace-format msgid "Rack {rack} does not belong to site {site}." msgstr "Estante {rack} no pertenece al sitio {site}." -#: netbox/dcim/models/devices.py:840 +#: dcim/models/devices.py:840 #, python-brace-format msgid "Location {location} does not belong to site {site}." msgstr "Ubicación {location} no pertenece al sitio {site}." -#: netbox/dcim/models/devices.py:846 +#: dcim/models/devices.py:846 #, python-brace-format msgid "Rack {rack} does not belong to location {location}." msgstr "Estante {rack} no pertenece a la ubicación {location}." -#: netbox/dcim/models/devices.py:853 +#: dcim/models/devices.py:853 msgid "Cannot select a rack face without assigning a rack." msgstr "No se puede seleccionar una cara de bastidor sin asignar un bastidor." -#: netbox/dcim/models/devices.py:857 +#: dcim/models/devices.py:857 msgid "Cannot select a rack position without assigning a rack." msgstr "" "No se puede seleccionar una posición de cremallera sin asignar una " "cremallera." -#: netbox/dcim/models/devices.py:863 +#: dcim/models/devices.py:863 msgid "Position must be in increments of 0.5 rack units." msgstr "La posición debe estar en incrementos de 0,5 unidades de estante." -#: netbox/dcim/models/devices.py:867 +#: dcim/models/devices.py:867 msgid "Must specify rack face when defining rack position." msgstr "" "Debe especificar la cara de la cremallera al definir la posición de la " "cremallera." -#: netbox/dcim/models/devices.py:875 +#: dcim/models/devices.py:875 #, python-brace-format msgid "" "A 0U device type ({device_type}) cannot be assigned to a rack position." @@ -6157,7 +5710,7 @@ msgstr "" "Un tipo de dispositivo 0U ({device_type}) no se puede asignar a una posición" " de estantería." -#: netbox/dcim/models/devices.py:886 +#: dcim/models/devices.py:886 msgid "" "Child device types cannot be assigned to a rack face. This is an attribute " "of the parent device." @@ -6165,7 +5718,7 @@ msgstr "" "Los tipos de dispositivos secundarios no se pueden asignar a la cara de un " "bastidor. Este es un atributo del dispositivo principal." -#: netbox/dcim/models/devices.py:893 +#: dcim/models/devices.py:893 msgid "" "Child device types cannot be assigned to a rack position. This is an " "attribute of the parent device." @@ -6173,7 +5726,7 @@ msgstr "" "Los tipos de dispositivos secundarios no se pueden asignar a una posición de" " bastidor. Este es un atributo del dispositivo principal." -#: netbox/dcim/models/devices.py:907 +#: dcim/models/devices.py:907 #, python-brace-format msgid "" "U{position} is already occupied or does not have sufficient space to " @@ -6182,23 +5735,23 @@ msgstr "" "U{position} ya está ocupado o no tiene espacio suficiente para este tipo de " "dispositivo: {device_type} ({u_height}U)" -#: netbox/dcim/models/devices.py:922 +#: dcim/models/devices.py:922 #, python-brace-format msgid "{ip} is not an IPv4 address." msgstr "{ip} no es una dirección IPv4." -#: netbox/dcim/models/devices.py:931 netbox/dcim/models/devices.py:946 +#: dcim/models/devices.py:931 dcim/models/devices.py:946 #, python-brace-format msgid "The specified IP address ({ip}) is not assigned to this device." msgstr "" "La dirección IP especificada ({ip}) no está asignado a este dispositivo." -#: netbox/dcim/models/devices.py:937 +#: dcim/models/devices.py:937 #, python-brace-format msgid "{ip} is not an IPv6 address." msgstr "{ip} no es una dirección IPv6." -#: netbox/dcim/models/devices.py:964 +#: dcim/models/devices.py:964 #, python-brace-format msgid "" "The assigned platform is limited to {platform_manufacturer} device types, " @@ -6208,17 +5761,17 @@ msgstr "" "dispositivos, pero el tipo de este dispositivo pertenece a " "{devicetype_manufacturer}." -#: netbox/dcim/models/devices.py:975 +#: dcim/models/devices.py:975 #, python-brace-format msgid "The assigned cluster belongs to a different site ({site})" msgstr "El clúster asignado pertenece a un sitio diferente ({site})" -#: netbox/dcim/models/devices.py:983 +#: dcim/models/devices.py:983 msgid "A device assigned to a virtual chassis must have its position defined." msgstr "" "Un dispositivo asignado a un chasis virtual debe tener su posición definida." -#: netbox/dcim/models/devices.py:988 +#: dcim/models/devices.py:988 #, python-brace-format msgid "" "Device cannot be removed from virtual chassis {virtual_chassis} because it " @@ -6227,15 +5780,15 @@ msgstr "" "El dispositivo no se puede extraer del chasis virtual {virtual_chassis} " "porque actualmente está designado como su maestro." -#: netbox/dcim/models/devices.py:1196 +#: dcim/models/devices.py:1196 msgid "module" msgstr "módulo" -#: netbox/dcim/models/devices.py:1197 +#: dcim/models/devices.py:1197 msgid "modules" msgstr "módulos" -#: netbox/dcim/models/devices.py:1213 +#: dcim/models/devices.py:1213 #, python-brace-format msgid "" "Module must be installed within a module bay belonging to the assigned " @@ -6244,22 +5797,22 @@ msgstr "" "El módulo debe instalarse en un compartimiento de módulos que pertenezca al " "dispositivo asignado ({device})." -#: netbox/dcim/models/devices.py:1334 +#: dcim/models/devices.py:1334 msgid "domain" msgstr "dominio" -#: netbox/dcim/models/devices.py:1347 netbox/dcim/models/devices.py:1348 +#: dcim/models/devices.py:1347 dcim/models/devices.py:1348 msgid "virtual chassis" msgstr "chasis virtual" -#: netbox/dcim/models/devices.py:1363 +#: dcim/models/devices.py:1363 #, python-brace-format msgid "" "The selected master ({master}) is not assigned to this virtual chassis." msgstr "" "El maestro seleccionado ({master}) no está asignado a este chasis virtual." -#: netbox/dcim/models/devices.py:1379 +#: dcim/models/devices.py:1379 #, python-brace-format msgid "" "Unable to delete virtual chassis {self}. There are member interfaces which " @@ -6268,105 +5821,105 @@ msgstr "" "No se puede eliminar el chasis virtual {self}. Hay interfaces miembros que " "forman interfaces LAG entre chasis." -#: netbox/dcim/models/devices.py:1404 netbox/vpn/models/l2vpn.py:37 +#: dcim/models/devices.py:1404 vpn/models/l2vpn.py:37 msgid "identifier" msgstr "identificador" -#: netbox/dcim/models/devices.py:1405 +#: dcim/models/devices.py:1405 msgid "Numeric identifier unique to the parent device" msgstr "Identificador numérico exclusivo del dispositivo principal" -#: netbox/dcim/models/devices.py:1433 netbox/extras/models/customfields.py:225 -#: netbox/extras/models/models.py:107 netbox/extras/models/models.py:694 -#: netbox/netbox/models/__init__.py:115 +#: dcim/models/devices.py:1433 extras/models/customfields.py:225 +#: extras/models/models.py:107 extras/models/models.py:694 +#: netbox/models/__init__.py:115 msgid "comments" msgstr "comentarios" -#: netbox/dcim/models/devices.py:1449 +#: dcim/models/devices.py:1449 msgid "virtual device context" msgstr "contexto de dispositivo virtual" -#: netbox/dcim/models/devices.py:1450 +#: dcim/models/devices.py:1450 msgid "virtual device contexts" msgstr "contextos de dispositivos virtuales" -#: netbox/dcim/models/devices.py:1482 +#: dcim/models/devices.py:1482 #, python-brace-format msgid "{ip} is not an IPv{family} address." msgstr "{ip} no es un IPv{family} dirección." -#: netbox/dcim/models/devices.py:1488 +#: dcim/models/devices.py:1488 msgid "Primary IP address must belong to an interface on the assigned device." msgstr "" "La dirección IP principal debe pertenecer a una interfaz del dispositivo " "asignado." -#: netbox/dcim/models/mixins.py:15 netbox/extras/models/configs.py:41 -#: netbox/extras/models/models.py:313 netbox/extras/models/models.py:522 -#: netbox/extras/models/search.py:48 netbox/ipam/models/ip.py:194 +#: dcim/models/mixins.py:15 extras/models/configs.py:41 +#: extras/models/models.py:313 extras/models/models.py:522 +#: extras/models/search.py:48 ipam/models/ip.py:194 msgid "weight" msgstr "peso" -#: netbox/dcim/models/mixins.py:22 +#: dcim/models/mixins.py:22 msgid "weight unit" msgstr "unidad de peso" -#: netbox/dcim/models/mixins.py:51 +#: dcim/models/mixins.py:51 msgid "Must specify a unit when setting a weight" msgstr "Debe especificar una unidad al establecer un peso" -#: netbox/dcim/models/power.py:55 +#: dcim/models/power.py:55 msgid "power panel" msgstr "panel de alimentación" -#: netbox/dcim/models/power.py:56 +#: dcim/models/power.py:56 msgid "power panels" msgstr "paneles de alimentación" -#: netbox/dcim/models/power.py:70 +#: dcim/models/power.py:70 #, python-brace-format msgid "" "Location {location} ({location_site}) is in a different site than {site}" msgstr "" "Ubicación {location} ({location_site}) está en un sitio diferente al {site}" -#: netbox/dcim/models/power.py:108 +#: dcim/models/power.py:108 msgid "supply" msgstr "suministrar" -#: netbox/dcim/models/power.py:114 +#: dcim/models/power.py:114 msgid "phase" msgstr "fase" -#: netbox/dcim/models/power.py:120 +#: dcim/models/power.py:120 msgid "voltage" msgstr "voltaje" -#: netbox/dcim/models/power.py:125 +#: dcim/models/power.py:125 msgid "amperage" msgstr "amperaje" -#: netbox/dcim/models/power.py:130 +#: dcim/models/power.py:130 msgid "max utilization" msgstr "utilización máxima" -#: netbox/dcim/models/power.py:133 +#: dcim/models/power.py:133 msgid "Maximum permissible draw (percentage)" msgstr "Consumo máximo permitido (porcentaje)" -#: netbox/dcim/models/power.py:136 +#: dcim/models/power.py:136 msgid "available power" msgstr "potencia disponible" -#: netbox/dcim/models/power.py:164 +#: dcim/models/power.py:164 msgid "power feed" msgstr "alimentación" -#: netbox/dcim/models/power.py:165 +#: dcim/models/power.py:165 msgid "power feeds" msgstr "fuentes de alimentación" -#: netbox/dcim/models/power.py:179 +#: dcim/models/power.py:179 #, python-brace-format msgid "" "Rack {rack} ({rack_site}) and power panel {powerpanel} ({powerpanel_site}) " @@ -6375,64 +5928,64 @@ msgstr "" "Estante {rack} ({rack_site}) y panel de alimentación {powerpanel} " "({powerpanel_site}) están en diferentes sitios." -#: netbox/dcim/models/power.py:190 +#: dcim/models/power.py:190 msgid "Voltage cannot be negative for AC supply" msgstr "" "La tensión no puede ser negativa para el suministro de corriente alterna" -#: netbox/dcim/models/racks.py:47 +#: dcim/models/racks.py:47 msgid "width" msgstr "anchura" -#: netbox/dcim/models/racks.py:48 +#: dcim/models/racks.py:48 msgid "Rail-to-rail width" msgstr "Ancho de riel a riel" -#: netbox/dcim/models/racks.py:56 +#: dcim/models/racks.py:56 msgid "Height in rack units" msgstr "Altura en unidades de estantería" -#: netbox/dcim/models/racks.py:60 +#: dcim/models/racks.py:60 msgid "starting unit" msgstr "unidad de arranque" -#: netbox/dcim/models/racks.py:62 +#: dcim/models/racks.py:62 msgid "Starting unit for rack" msgstr "Unidad de arranque para bastidor" -#: netbox/dcim/models/racks.py:66 +#: dcim/models/racks.py:66 msgid "descending units" msgstr "unidades descendentes" -#: netbox/dcim/models/racks.py:67 +#: dcim/models/racks.py:67 msgid "Units are numbered top-to-bottom" msgstr "Las unidades están numeradas de arriba a abajo" -#: netbox/dcim/models/racks.py:72 +#: dcim/models/racks.py:72 msgid "outer width" msgstr "ancho exterior" -#: netbox/dcim/models/racks.py:75 +#: dcim/models/racks.py:75 msgid "Outer dimension of rack (width)" msgstr "Dimensión exterior del estante (ancho)" -#: netbox/dcim/models/racks.py:78 +#: dcim/models/racks.py:78 msgid "outer depth" msgstr "profundidad exterior" -#: netbox/dcim/models/racks.py:81 +#: dcim/models/racks.py:81 msgid "Outer dimension of rack (depth)" msgstr "Dimensión exterior del bastidor (profundidad)" -#: netbox/dcim/models/racks.py:84 +#: dcim/models/racks.py:84 msgid "outer unit" msgstr "unidad exterior" -#: netbox/dcim/models/racks.py:90 +#: dcim/models/racks.py:90 msgid "mounting depth" msgstr "profundidad de montaje" -#: netbox/dcim/models/racks.py:94 +#: dcim/models/racks.py:94 msgid "" "Maximum depth of a mounted device, in millimeters. For four-post racks, this" " is the distance between the front and rear rails." @@ -6441,77 +5994,76 @@ msgstr "" "los estantes de cuatro postes, esta es la distancia entre los rieles " "delantero y trasero." -#: netbox/dcim/models/racks.py:102 +#: dcim/models/racks.py:102 msgid "max weight" msgstr "peso máximo" -#: netbox/dcim/models/racks.py:105 +#: dcim/models/racks.py:105 msgid "Maximum load capacity for the rack" msgstr "Capacidad de carga máxima del bastidor" -#: netbox/dcim/models/racks.py:125 netbox/dcim/models/racks.py:252 +#: dcim/models/racks.py:125 dcim/models/racks.py:252 msgid "form factor" msgstr "factor de forma" -#: netbox/dcim/models/racks.py:162 +#: dcim/models/racks.py:162 msgid "rack type" msgstr "tipo de bastidor" -#: netbox/dcim/models/racks.py:163 +#: dcim/models/racks.py:163 msgid "rack types" msgstr "tipos de estanterías" -#: netbox/dcim/models/racks.py:180 netbox/dcim/models/racks.py:379 +#: dcim/models/racks.py:180 dcim/models/racks.py:379 msgid "Must specify a unit when setting an outer width/depth" msgstr "" "Debe especificar una unidad al establecer una anchura o profundidad " "exteriores" -#: netbox/dcim/models/racks.py:184 netbox/dcim/models/racks.py:383 +#: dcim/models/racks.py:184 dcim/models/racks.py:383 msgid "Must specify a unit when setting a maximum weight" msgstr "Debe especificar una unidad al establecer un peso máximo" -#: netbox/dcim/models/racks.py:230 +#: dcim/models/racks.py:230 msgid "rack role" msgstr "rol de bastidor" -#: netbox/dcim/models/racks.py:231 +#: dcim/models/racks.py:231 msgid "rack roles" msgstr "roles de seguimiento" -#: netbox/dcim/models/racks.py:274 +#: dcim/models/racks.py:274 msgid "facility ID" msgstr "ID de la instalación" -#: netbox/dcim/models/racks.py:275 +#: dcim/models/racks.py:275 msgid "Locally-assigned identifier" msgstr "Identificador asignado localmente" -#: netbox/dcim/models/racks.py:308 netbox/ipam/forms/bulk_import.py:201 -#: netbox/ipam/forms/bulk_import.py:266 netbox/ipam/forms/bulk_import.py:301 -#: netbox/ipam/forms/bulk_import.py:459 -#: netbox/virtualization/forms/bulk_import.py:112 +#: dcim/models/racks.py:308 ipam/forms/bulk_import.py:201 +#: ipam/forms/bulk_import.py:266 ipam/forms/bulk_import.py:301 +#: ipam/forms/bulk_import.py:459 virtualization/forms/bulk_import.py:112 msgid "Functional role" msgstr "Función funcional" -#: netbox/dcim/models/racks.py:321 +#: dcim/models/racks.py:321 msgid "A unique tag used to identify this rack" msgstr "Una etiqueta única que se utiliza para identificar este estante" -#: netbox/dcim/models/racks.py:359 +#: dcim/models/racks.py:359 msgid "rack" msgstr "estante" -#: netbox/dcim/models/racks.py:360 +#: dcim/models/racks.py:360 msgid "racks" msgstr "bastidores" -#: netbox/dcim/models/racks.py:375 +#: dcim/models/racks.py:375 #, python-brace-format msgid "Assigned location must belong to parent site ({site})." msgstr "La ubicación asignada debe pertenecer al sitio principal ({site})." -#: netbox/dcim/models/racks.py:393 +#: dcim/models/racks.py:393 #, python-brace-format msgid "" "Rack must be at least {min_height}U tall to house currently installed " @@ -6520,7 +6072,7 @@ msgstr "" "El estante debe tener al menos {min_height}Hablo para alojar los " "dispositivos instalados actualmente." -#: netbox/dcim/models/racks.py:400 +#: dcim/models/racks.py:400 #, python-brace-format msgid "" "Rack unit numbering must begin at {position} or less to house currently " @@ -6529,956 +6081,893 @@ msgstr "" "La numeración de las unidades del bastidor debe comenzar en {position} o " "menos para alojar los dispositivos actualmente instalados." -#: netbox/dcim/models/racks.py:408 +#: dcim/models/racks.py:408 #, python-brace-format msgid "Location must be from the same site, {site}." msgstr "La ubicación debe ser del mismo sitio, {site}." -#: netbox/dcim/models/racks.py:670 +#: dcim/models/racks.py:670 msgid "units" msgstr "unidades" -#: netbox/dcim/models/racks.py:696 +#: dcim/models/racks.py:696 msgid "rack reservation" msgstr "reserva de seguimiento" -#: netbox/dcim/models/racks.py:697 +#: dcim/models/racks.py:697 msgid "rack reservations" msgstr "Seguimiento de reservas" -#: netbox/dcim/models/racks.py:714 +#: dcim/models/racks.py:714 #, python-brace-format msgid "Invalid unit(s) for {height}U rack: {unit_list}" msgstr "" "Unidad (es) no válida (s) para {height}Rack de Reino Unido: {unit_list}" -#: netbox/dcim/models/racks.py:727 +#: dcim/models/racks.py:727 #, python-brace-format msgid "The following units have already been reserved: {unit_list}" msgstr "Ya se han reservado las siguientes unidades: {unit_list}" -#: netbox/dcim/models/sites.py:49 +#: dcim/models/sites.py:49 msgid "A top-level region with this name already exists." msgstr "Ya existe una región de nivel superior con este nombre." -#: netbox/dcim/models/sites.py:59 +#: dcim/models/sites.py:59 msgid "A top-level region with this slug already exists." msgstr "Ya existe una región de alto nivel con esta babosa." -#: netbox/dcim/models/sites.py:62 +#: dcim/models/sites.py:62 msgid "region" msgstr "región" -#: netbox/dcim/models/sites.py:63 +#: dcim/models/sites.py:63 msgid "regions" msgstr "regiones" -#: netbox/dcim/models/sites.py:102 +#: dcim/models/sites.py:102 msgid "A top-level site group with this name already exists." msgstr "Ya existe un grupo de sitio de nivel superior con este nombre." -#: netbox/dcim/models/sites.py:112 +#: dcim/models/sites.py:112 msgid "A top-level site group with this slug already exists." msgstr "Ya existe un grupo de sitios de nivel superior con este slug." -#: netbox/dcim/models/sites.py:115 +#: dcim/models/sites.py:115 msgid "site group" msgstr "grupo de sitios" -#: netbox/dcim/models/sites.py:116 +#: dcim/models/sites.py:116 msgid "site groups" msgstr "grupos de sitios" -#: netbox/dcim/models/sites.py:141 +#: dcim/models/sites.py:141 msgid "Full name of the site" msgstr "Nombre completo del sitio" -#: netbox/dcim/models/sites.py:181 netbox/dcim/models/sites.py:279 +#: dcim/models/sites.py:181 dcim/models/sites.py:279 msgid "facility" msgstr "instalaciones" -#: netbox/dcim/models/sites.py:184 netbox/dcim/models/sites.py:282 +#: dcim/models/sites.py:184 dcim/models/sites.py:282 msgid "Local facility ID or description" msgstr "ID o descripción de la instalación local" -#: netbox/dcim/models/sites.py:195 +#: dcim/models/sites.py:195 msgid "physical address" msgstr "dirección física" -#: netbox/dcim/models/sites.py:198 +#: dcim/models/sites.py:198 msgid "Physical location of the building" msgstr "Ubicación física del edificio" -#: netbox/dcim/models/sites.py:201 +#: dcim/models/sites.py:201 msgid "shipping address" msgstr "dirección de envío" -#: netbox/dcim/models/sites.py:204 +#: dcim/models/sites.py:204 msgid "If different from the physical address" msgstr "Si es diferente de la dirección física" -#: netbox/dcim/models/sites.py:238 +#: dcim/models/sites.py:238 msgid "site" msgstr "sitio" -#: netbox/dcim/models/sites.py:239 +#: dcim/models/sites.py:239 msgid "sites" msgstr "sitios" -#: netbox/dcim/models/sites.py:309 +#: dcim/models/sites.py:309 msgid "A location with this name already exists within the specified site." msgstr "Ya existe una ubicación con este nombre en el sitio especificado." -#: netbox/dcim/models/sites.py:319 +#: dcim/models/sites.py:319 msgid "A location with this slug already exists within the specified site." msgstr "Ya existe una ubicación con esta babosa en el sitio especificado." -#: netbox/dcim/models/sites.py:322 +#: dcim/models/sites.py:322 msgid "location" msgstr "ubicación" -#: netbox/dcim/models/sites.py:323 +#: dcim/models/sites.py:323 msgid "locations" msgstr "ubicaciones" -#: netbox/dcim/models/sites.py:337 +#: dcim/models/sites.py:337 #, python-brace-format msgid "Parent location ({parent}) must belong to the same site ({site})." msgstr "" "Ubicación de los padres ({parent}) debe pertenecer al mismo sitio ({site})." -#: netbox/dcim/tables/cables.py:55 +#: dcim/tables/cables.py:55 msgid "Termination A" msgstr "Terminación A" -#: netbox/dcim/tables/cables.py:60 +#: dcim/tables/cables.py:60 msgid "Termination B" msgstr "Terminación B" -#: netbox/dcim/tables/cables.py:66 netbox/wireless/tables/wirelesslink.py:23 +#: dcim/tables/cables.py:66 wireless/tables/wirelesslink.py:23 msgid "Device A" msgstr "Dispositivo A" -#: netbox/dcim/tables/cables.py:72 netbox/wireless/tables/wirelesslink.py:32 +#: dcim/tables/cables.py:72 wireless/tables/wirelesslink.py:32 msgid "Device B" msgstr "Dispositivo B" -#: netbox/dcim/tables/cables.py:78 +#: dcim/tables/cables.py:78 msgid "Location A" msgstr "Ubicación A" -#: netbox/dcim/tables/cables.py:84 +#: dcim/tables/cables.py:84 msgid "Location B" msgstr "Ubicación B" -#: netbox/dcim/tables/cables.py:90 +#: dcim/tables/cables.py:90 msgid "Rack A" msgstr "Bastidor A" -#: netbox/dcim/tables/cables.py:96 +#: dcim/tables/cables.py:96 msgid "Rack B" msgstr "Estante B" -#: netbox/dcim/tables/cables.py:102 +#: dcim/tables/cables.py:102 msgid "Site A" msgstr "Sitio A" -#: netbox/dcim/tables/cables.py:108 +#: dcim/tables/cables.py:108 msgid "Site B" msgstr "Sitio B" -#: netbox/dcim/tables/connections.py:31 netbox/dcim/tables/connections.py:50 -#: netbox/dcim/tables/connections.py:71 -#: netbox/templates/dcim/inc/connection_endpoints.html:16 +#: dcim/tables/connections.py:31 dcim/tables/connections.py:50 +#: dcim/tables/connections.py:71 +#: templates/dcim/inc/connection_endpoints.html:16 msgid "Reachable" msgstr "Accesible" -#: netbox/dcim/tables/devices.py:58 netbox/dcim/tables/devices.py:106 -#: netbox/dcim/tables/racks.py:150 netbox/dcim/tables/sites.py:105 -#: netbox/dcim/tables/sites.py:148 netbox/extras/tables/tables.py:545 -#: netbox/netbox/navigation/menu.py:69 netbox/netbox/navigation/menu.py:73 -#: netbox/netbox/navigation/menu.py:75 -#: netbox/virtualization/forms/model_forms.py:122 -#: netbox/virtualization/tables/clusters.py:83 -#: netbox/virtualization/views.py:206 +#: dcim/tables/devices.py:58 dcim/tables/devices.py:106 +#: dcim/tables/racks.py:150 dcim/tables/sites.py:105 dcim/tables/sites.py:148 +#: extras/tables/tables.py:545 netbox/navigation/menu.py:69 +#: netbox/navigation/menu.py:73 netbox/navigation/menu.py:75 +#: virtualization/forms/model_forms.py:122 +#: virtualization/tables/clusters.py:83 virtualization/views.py:206 msgid "Devices" msgstr "Dispositivos" -#: netbox/dcim/tables/devices.py:63 netbox/dcim/tables/devices.py:111 -#: netbox/virtualization/tables/clusters.py:88 +#: dcim/tables/devices.py:63 dcim/tables/devices.py:111 +#: virtualization/tables/clusters.py:88 msgid "VMs" msgstr "VM" -#: netbox/dcim/tables/devices.py:100 netbox/dcim/tables/devices.py:216 -#: netbox/extras/forms/model_forms.py:630 -#: netbox/templates/dcim/device.html:112 -#: netbox/templates/dcim/device/render_config.html:11 -#: netbox/templates/dcim/device/render_config.html:14 -#: netbox/templates/dcim/devicerole.html:44 -#: netbox/templates/dcim/platform.html:41 -#: netbox/templates/extras/configtemplate.html:10 -#: netbox/templates/virtualization/virtualmachine.html:48 -#: netbox/templates/virtualization/virtualmachine/render_config.html:11 -#: netbox/templates/virtualization/virtualmachine/render_config.html:14 -#: netbox/virtualization/tables/virtualmachines.py:107 +#: dcim/tables/devices.py:100 dcim/tables/devices.py:216 +#: extras/forms/model_forms.py:630 templates/dcim/device.html:112 +#: templates/dcim/device/render_config.html:11 +#: templates/dcim/device/render_config.html:14 +#: templates/dcim/devicerole.html:44 templates/dcim/platform.html:41 +#: templates/extras/configtemplate.html:10 +#: templates/virtualization/virtualmachine.html:48 +#: templates/virtualization/virtualmachine/render_config.html:11 +#: templates/virtualization/virtualmachine/render_config.html:14 +#: virtualization/tables/virtualmachines.py:107 msgid "Config Template" msgstr "Plantilla de configuración" -#: netbox/dcim/tables/devices.py:150 netbox/templates/dcim/sitegroup.html:26 +#: dcim/tables/devices.py:150 templates/dcim/sitegroup.html:26 msgid "Site Group" msgstr "Grupo de sitios" -#: netbox/dcim/tables/devices.py:187 netbox/dcim/tables/devices.py:1068 -#: netbox/ipam/forms/bulk_import.py:503 netbox/ipam/forms/model_forms.py:306 -#: netbox/ipam/forms/model_forms.py:315 netbox/ipam/tables/ip.py:356 -#: netbox/ipam/tables/ip.py:423 netbox/ipam/tables/ip.py:446 -#: netbox/templates/ipam/ipaddress.html:11 -#: netbox/virtualization/tables/virtualmachines.py:95 +#: dcim/tables/devices.py:187 dcim/tables/devices.py:1068 +#: ipam/forms/bulk_import.py:503 ipam/forms/model_forms.py:306 +#: ipam/forms/model_forms.py:315 ipam/tables/ip.py:356 ipam/tables/ip.py:423 +#: ipam/tables/ip.py:446 templates/ipam/ipaddress.html:11 +#: virtualization/tables/virtualmachines.py:95 msgid "IP Address" msgstr "Dirección IP" -#: netbox/dcim/tables/devices.py:191 netbox/dcim/tables/devices.py:1072 -#: netbox/virtualization/tables/virtualmachines.py:86 +#: dcim/tables/devices.py:191 dcim/tables/devices.py:1072 +#: virtualization/tables/virtualmachines.py:86 msgid "IPv4 Address" msgstr "Dirección IPv4" -#: netbox/dcim/tables/devices.py:195 netbox/dcim/tables/devices.py:1076 -#: netbox/virtualization/tables/virtualmachines.py:90 +#: dcim/tables/devices.py:195 dcim/tables/devices.py:1076 +#: virtualization/tables/virtualmachines.py:90 msgid "IPv6 Address" msgstr "Dirección IPv6" -#: netbox/dcim/tables/devices.py:210 +#: dcim/tables/devices.py:210 msgid "VC Position" msgstr "Posición VC" -#: netbox/dcim/tables/devices.py:213 +#: dcim/tables/devices.py:213 msgid "VC Priority" msgstr "Prioridad VC" -#: netbox/dcim/tables/devices.py:220 netbox/templates/dcim/device_edit.html:38 -#: netbox/templates/dcim/devicebay_populate.html:16 +#: dcim/tables/devices.py:220 templates/dcim/device_edit.html:38 +#: templates/dcim/devicebay_populate.html:16 msgid "Parent Device" msgstr "Dispositivo principal" -#: netbox/dcim/tables/devices.py:225 +#: dcim/tables/devices.py:225 msgid "Position (Device Bay)" msgstr "Posición (bahía de dispositivos)" -#: netbox/dcim/tables/devices.py:234 +#: dcim/tables/devices.py:234 msgid "Console ports" msgstr "Puertos de consola" -#: netbox/dcim/tables/devices.py:237 +#: dcim/tables/devices.py:237 msgid "Console server ports" msgstr "Puertos de servidor de consola" -#: netbox/dcim/tables/devices.py:240 +#: dcim/tables/devices.py:240 msgid "Power ports" msgstr "Puertos de alimentación" -#: netbox/dcim/tables/devices.py:243 +#: dcim/tables/devices.py:243 msgid "Power outlets" msgstr "tomas de corriente" -#: netbox/dcim/tables/devices.py:246 netbox/dcim/tables/devices.py:1081 -#: netbox/dcim/tables/devicetypes.py:128 netbox/dcim/views.py:1042 -#: netbox/dcim/views.py:1281 netbox/dcim/views.py:1977 -#: netbox/netbox/navigation/menu.py:94 netbox/netbox/navigation/menu.py:250 -#: netbox/templates/dcim/device/base.html:37 -#: netbox/templates/dcim/device_list.html:43 -#: netbox/templates/dcim/devicetype/base.html:34 -#: netbox/templates/dcim/module.html:34 -#: netbox/templates/dcim/moduletype/base.html:34 -#: netbox/templates/dcim/virtualdevicecontext.html:61 -#: netbox/templates/dcim/virtualdevicecontext.html:81 -#: netbox/templates/virtualization/virtualmachine/base.html:27 -#: netbox/templates/virtualization/virtualmachine_list.html:14 -#: netbox/virtualization/tables/virtualmachines.py:101 -#: netbox/virtualization/views.py:366 netbox/wireless/tables/wirelesslan.py:55 +#: dcim/tables/devices.py:246 dcim/tables/devices.py:1081 +#: dcim/tables/devicetypes.py:128 dcim/views.py:1042 dcim/views.py:1281 +#: dcim/views.py:1977 netbox/navigation/menu.py:94 +#: netbox/navigation/menu.py:250 templates/dcim/device/base.html:37 +#: templates/dcim/device_list.html:43 templates/dcim/devicetype/base.html:34 +#: templates/dcim/inc/moduletype_buttons.html:25 templates/dcim/module.html:34 +#: templates/dcim/virtualdevicecontext.html:61 +#: templates/dcim/virtualdevicecontext.html:81 +#: templates/virtualization/virtualmachine/base.html:27 +#: templates/virtualization/virtualmachine_list.html:14 +#: virtualization/tables/virtualmachines.py:101 virtualization/views.py:366 +#: wireless/tables/wirelesslan.py:55 msgid "Interfaces" msgstr "Interfaces" -#: netbox/dcim/tables/devices.py:249 +#: dcim/tables/devices.py:249 msgid "Front ports" msgstr "Puertos frontales" -#: netbox/dcim/tables/devices.py:255 +#: dcim/tables/devices.py:255 msgid "Device bays" msgstr "Compartimentos para dispositivos" -#: netbox/dcim/tables/devices.py:258 +#: dcim/tables/devices.py:258 msgid "Module bays" msgstr "Bahías de módulos" -#: netbox/dcim/tables/devices.py:261 +#: dcim/tables/devices.py:261 msgid "Inventory items" msgstr "Artículos de inventario" -#: netbox/dcim/tables/devices.py:305 netbox/dcim/tables/modules.py:56 -#: netbox/templates/dcim/modulebay.html:17 +#: dcim/tables/devices.py:305 dcim/tables/modules.py:56 +#: templates/dcim/modulebay.html:17 msgid "Module Bay" msgstr "Bahía de módulos" -#: netbox/dcim/tables/devices.py:318 netbox/dcim/tables/devicetypes.py:47 -#: netbox/dcim/tables/devicetypes.py:143 netbox/dcim/views.py:1117 -#: netbox/dcim/views.py:2075 netbox/netbox/navigation/menu.py:103 -#: netbox/templates/dcim/device/base.html:52 -#: netbox/templates/dcim/device_list.html:71 -#: netbox/templates/dcim/devicetype/base.html:49 -#: netbox/templates/dcim/inc/panels/inventory_items.html:6 -#: netbox/templates/dcim/inventoryitemrole.html:32 +#: dcim/tables/devices.py:318 dcim/tables/devicetypes.py:47 +#: dcim/tables/devicetypes.py:143 dcim/views.py:1117 dcim/views.py:2075 +#: netbox/navigation/menu.py:103 templates/dcim/device/base.html:52 +#: templates/dcim/device_list.html:71 templates/dcim/devicetype/base.html:49 +#: templates/dcim/inc/panels/inventory_items.html:6 +#: templates/dcim/inventoryitemrole.html:32 msgid "Inventory Items" msgstr "Artículos de inventario" -#: netbox/dcim/tables/devices.py:333 +#: dcim/tables/devices.py:333 msgid "Cable Color" msgstr "Color del cable" -#: netbox/dcim/tables/devices.py:339 +#: dcim/tables/devices.py:339 msgid "Link Peers" msgstr "Vincula a tus compañeros" -#: netbox/dcim/tables/devices.py:342 +#: dcim/tables/devices.py:342 msgid "Mark Connected" msgstr "Marcar conectado" -#: netbox/dcim/tables/devices.py:461 +#: dcim/tables/devices.py:461 msgid "Maximum draw (W)" msgstr "Consumo máximo (W)" -#: netbox/dcim/tables/devices.py:464 +#: dcim/tables/devices.py:464 msgid "Allocated draw (W)" msgstr "Sorteo asignado (W)" -#: netbox/dcim/tables/devices.py:558 netbox/ipam/forms/model_forms.py:701 -#: netbox/ipam/tables/fhrp.py:28 netbox/ipam/views.py:596 -#: netbox/ipam/views.py:696 netbox/netbox/navigation/menu.py:158 -#: netbox/netbox/navigation/menu.py:160 -#: netbox/templates/dcim/interface.html:339 -#: netbox/templates/ipam/ipaddress_bulk_add.html:15 -#: netbox/templates/ipam/service.html:40 -#: netbox/templates/virtualization/vminterface.html:85 -#: netbox/vpn/tables/tunnels.py:98 +#: dcim/tables/devices.py:558 ipam/forms/model_forms.py:701 +#: ipam/tables/fhrp.py:28 ipam/views.py:596 ipam/views.py:696 +#: netbox/navigation/menu.py:158 netbox/navigation/menu.py:160 +#: templates/dcim/interface.html:339 templates/ipam/ipaddress_bulk_add.html:15 +#: templates/ipam/service.html:40 templates/virtualization/vminterface.html:85 +#: vpn/tables/tunnels.py:98 msgid "IP Addresses" msgstr "Direcciones IP" -#: netbox/dcim/tables/devices.py:564 netbox/netbox/navigation/menu.py:202 -#: netbox/templates/ipam/inc/panels/fhrp_groups.html:6 +#: dcim/tables/devices.py:564 netbox/navigation/menu.py:202 +#: templates/ipam/inc/panels/fhrp_groups.html:6 msgid "FHRP Groups" msgstr "Grupos FHRP" -#: netbox/dcim/tables/devices.py:576 netbox/templates/dcim/interface.html:89 -#: netbox/templates/virtualization/vminterface.html:67 -#: netbox/templates/vpn/tunnel.html:18 -#: netbox/templates/vpn/tunneltermination.html:13 -#: netbox/vpn/forms/bulk_edit.py:76 netbox/vpn/forms/bulk_import.py:76 -#: netbox/vpn/forms/filtersets.py:42 netbox/vpn/forms/filtersets.py:82 -#: netbox/vpn/forms/model_forms.py:60 netbox/vpn/forms/model_forms.py:145 -#: netbox/vpn/tables/tunnels.py:78 +#: dcim/tables/devices.py:576 templates/dcim/interface.html:89 +#: templates/virtualization/vminterface.html:67 templates/vpn/tunnel.html:18 +#: templates/vpn/tunneltermination.html:13 vpn/forms/bulk_edit.py:76 +#: vpn/forms/bulk_import.py:76 vpn/forms/filtersets.py:42 +#: vpn/forms/filtersets.py:82 vpn/forms/model_forms.py:60 +#: vpn/forms/model_forms.py:145 vpn/tables/tunnels.py:78 msgid "Tunnel" msgstr "Túnel" -#: netbox/dcim/tables/devices.py:604 netbox/dcim/tables/devicetypes.py:227 -#: netbox/templates/dcim/interface.html:65 +#: dcim/tables/devices.py:604 dcim/tables/devicetypes.py:227 +#: templates/dcim/interface.html:65 msgid "Management Only" msgstr "Solo administración" -#: netbox/dcim/tables/devices.py:623 +#: dcim/tables/devices.py:623 msgid "VDCs" msgstr "VDC" -#: netbox/dcim/tables/devices.py:873 netbox/templates/dcim/modulebay.html:53 +#: dcim/tables/devices.py:873 templates/dcim/modulebay.html:53 msgid "Installed Module" msgstr "Módulo instalado" -#: netbox/dcim/tables/devices.py:876 +#: dcim/tables/devices.py:876 msgid "Module Serial" msgstr "Serie del módulo" -#: netbox/dcim/tables/devices.py:880 +#: dcim/tables/devices.py:880 msgid "Module Asset Tag" msgstr "Etiqueta de activo del módulo" -#: netbox/dcim/tables/devices.py:889 +#: dcim/tables/devices.py:889 msgid "Module Status" msgstr "Estado del módulo" -#: netbox/dcim/tables/devices.py:944 netbox/dcim/tables/devicetypes.py:312 -#: netbox/templates/dcim/inventoryitem.html:40 +#: dcim/tables/devices.py:944 dcim/tables/devicetypes.py:312 +#: templates/dcim/inventoryitem.html:40 msgid "Component" msgstr "Componente" -#: netbox/dcim/tables/devices.py:1000 +#: dcim/tables/devices.py:1000 msgid "Items" msgstr "Artículos" -#: netbox/dcim/tables/devicetypes.py:37 netbox/netbox/navigation/menu.py:84 -#: netbox/netbox/navigation/menu.py:86 +#: dcim/tables/devicetypes.py:37 netbox/navigation/menu.py:84 +#: netbox/navigation/menu.py:86 msgid "Device Types" msgstr "Tipos de dispositivos" -#: netbox/dcim/tables/devicetypes.py:42 netbox/netbox/navigation/menu.py:87 +#: dcim/tables/devicetypes.py:42 netbox/navigation/menu.py:87 msgid "Module Types" msgstr "Tipos de módulos" -#: netbox/dcim/tables/devicetypes.py:52 netbox/extras/forms/filtersets.py:371 -#: netbox/extras/forms/model_forms.py:537 netbox/extras/tables/tables.py:540 -#: netbox/netbox/navigation/menu.py:78 +#: dcim/tables/devicetypes.py:52 extras/forms/filtersets.py:371 +#: extras/forms/model_forms.py:537 extras/tables/tables.py:540 +#: netbox/navigation/menu.py:78 msgid "Platforms" msgstr "Plataformas" -#: netbox/dcim/tables/devicetypes.py:84 -#: netbox/templates/dcim/devicetype.html:29 +#: dcim/tables/devicetypes.py:84 templates/dcim/devicetype.html:29 msgid "Default Platform" msgstr "Plataforma predeterminada" -#: netbox/dcim/tables/devicetypes.py:88 -#: netbox/templates/dcim/devicetype.html:45 +#: dcim/tables/devicetypes.py:88 templates/dcim/devicetype.html:45 msgid "Full Depth" msgstr "Profundidad total" -#: netbox/dcim/tables/devicetypes.py:98 +#: dcim/tables/devicetypes.py:98 msgid "U Height" msgstr "Altura en U" -#: netbox/dcim/tables/devicetypes.py:113 netbox/dcim/tables/modules.py:26 -#: netbox/dcim/tables/racks.py:89 +#: dcim/tables/devicetypes.py:113 dcim/tables/modules.py:26 +#: dcim/tables/racks.py:89 msgid "Instances" msgstr "Instancias" -#: netbox/dcim/tables/devicetypes.py:116 netbox/dcim/views.py:982 -#: netbox/dcim/views.py:1221 netbox/dcim/views.py:1913 -#: netbox/netbox/navigation/menu.py:97 -#: netbox/templates/dcim/device/base.html:25 -#: netbox/templates/dcim/device_list.html:15 -#: netbox/templates/dcim/devicetype/base.html:22 -#: netbox/templates/dcim/module.html:22 -#: netbox/templates/dcim/moduletype/base.html:22 +#: dcim/tables/devicetypes.py:116 dcim/views.py:982 dcim/views.py:1221 +#: dcim/views.py:1913 netbox/navigation/menu.py:97 +#: templates/dcim/device/base.html:25 templates/dcim/device_list.html:15 +#: templates/dcim/devicetype/base.html:22 +#: templates/dcim/inc/moduletype_buttons.html:13 templates/dcim/module.html:22 msgid "Console Ports" msgstr "Puertos de consola" -#: netbox/dcim/tables/devicetypes.py:119 netbox/dcim/views.py:997 -#: netbox/dcim/views.py:1236 netbox/dcim/views.py:1929 -#: netbox/netbox/navigation/menu.py:98 -#: netbox/templates/dcim/device/base.html:28 -#: netbox/templates/dcim/device_list.html:22 -#: netbox/templates/dcim/devicetype/base.html:25 -#: netbox/templates/dcim/module.html:25 -#: netbox/templates/dcim/moduletype/base.html:25 +#: dcim/tables/devicetypes.py:119 dcim/views.py:997 dcim/views.py:1236 +#: dcim/views.py:1929 netbox/navigation/menu.py:98 +#: templates/dcim/device/base.html:28 templates/dcim/device_list.html:22 +#: templates/dcim/devicetype/base.html:25 +#: templates/dcim/inc/moduletype_buttons.html:16 templates/dcim/module.html:25 msgid "Console Server Ports" msgstr "Puertos de servidor de consola" -#: netbox/dcim/tables/devicetypes.py:122 netbox/dcim/views.py:1012 -#: netbox/dcim/views.py:1251 netbox/dcim/views.py:1945 -#: netbox/netbox/navigation/menu.py:99 -#: netbox/templates/dcim/device/base.html:31 -#: netbox/templates/dcim/device_list.html:29 -#: netbox/templates/dcim/devicetype/base.html:28 -#: netbox/templates/dcim/module.html:28 -#: netbox/templates/dcim/moduletype/base.html:28 +#: dcim/tables/devicetypes.py:122 dcim/views.py:1012 dcim/views.py:1251 +#: dcim/views.py:1945 netbox/navigation/menu.py:99 +#: templates/dcim/device/base.html:31 templates/dcim/device_list.html:29 +#: templates/dcim/devicetype/base.html:28 +#: templates/dcim/inc/moduletype_buttons.html:19 templates/dcim/module.html:28 msgid "Power Ports" msgstr "Puertos de alimentación" -#: netbox/dcim/tables/devicetypes.py:125 netbox/dcim/views.py:1027 -#: netbox/dcim/views.py:1266 netbox/dcim/views.py:1961 -#: netbox/netbox/navigation/menu.py:100 -#: netbox/templates/dcim/device/base.html:34 -#: netbox/templates/dcim/device_list.html:36 -#: netbox/templates/dcim/devicetype/base.html:31 -#: netbox/templates/dcim/module.html:31 -#: netbox/templates/dcim/moduletype/base.html:31 +#: dcim/tables/devicetypes.py:125 dcim/views.py:1027 dcim/views.py:1266 +#: dcim/views.py:1961 netbox/navigation/menu.py:100 +#: templates/dcim/device/base.html:34 templates/dcim/device_list.html:36 +#: templates/dcim/devicetype/base.html:31 +#: templates/dcim/inc/moduletype_buttons.html:22 templates/dcim/module.html:31 msgid "Power Outlets" msgstr "Tomas de corriente" -#: netbox/dcim/tables/devicetypes.py:131 netbox/dcim/views.py:1057 -#: netbox/dcim/views.py:1296 netbox/dcim/views.py:1999 -#: netbox/netbox/navigation/menu.py:95 -#: netbox/templates/dcim/device/base.html:40 -#: netbox/templates/dcim/devicetype/base.html:37 -#: netbox/templates/dcim/module.html:37 -#: netbox/templates/dcim/moduletype/base.html:37 +#: dcim/tables/devicetypes.py:131 dcim/views.py:1057 dcim/views.py:1296 +#: dcim/views.py:1999 netbox/navigation/menu.py:95 +#: templates/dcim/device/base.html:40 templates/dcim/devicetype/base.html:37 +#: templates/dcim/inc/moduletype_buttons.html:28 templates/dcim/module.html:37 msgid "Front Ports" msgstr "Puertos frontales" -#: netbox/dcim/tables/devicetypes.py:134 netbox/dcim/views.py:1072 -#: netbox/dcim/views.py:1311 netbox/dcim/views.py:2015 -#: netbox/netbox/navigation/menu.py:96 -#: netbox/templates/dcim/device/base.html:43 -#: netbox/templates/dcim/device_list.html:50 -#: netbox/templates/dcim/devicetype/base.html:40 -#: netbox/templates/dcim/module.html:40 -#: netbox/templates/dcim/moduletype/base.html:40 +#: dcim/tables/devicetypes.py:134 dcim/views.py:1072 dcim/views.py:1311 +#: dcim/views.py:2015 netbox/navigation/menu.py:96 +#: templates/dcim/device/base.html:43 templates/dcim/device_list.html:50 +#: templates/dcim/devicetype/base.html:40 +#: templates/dcim/inc/moduletype_buttons.html:31 templates/dcim/module.html:40 msgid "Rear Ports" msgstr "Puertos traseros" -#: netbox/dcim/tables/devicetypes.py:137 netbox/dcim/views.py:1102 -#: netbox/dcim/views.py:2055 netbox/netbox/navigation/menu.py:102 -#: netbox/templates/dcim/device/base.html:49 -#: netbox/templates/dcim/device_list.html:57 -#: netbox/templates/dcim/devicetype/base.html:46 +#: dcim/tables/devicetypes.py:137 dcim/views.py:1102 dcim/views.py:2055 +#: netbox/navigation/menu.py:102 templates/dcim/device/base.html:49 +#: templates/dcim/device_list.html:57 templates/dcim/devicetype/base.html:46 msgid "Device Bays" msgstr "Bahías de dispositivos" -#: netbox/dcim/tables/devicetypes.py:140 netbox/dcim/views.py:1087 -#: netbox/dcim/views.py:1326 netbox/dcim/views.py:2035 -#: netbox/netbox/navigation/menu.py:101 -#: netbox/templates/dcim/device/base.html:46 -#: netbox/templates/dcim/device_list.html:64 -#: netbox/templates/dcim/devicetype/base.html:43 -#: netbox/templates/dcim/module.html:43 -#: netbox/templates/dcim/moduletype/base.html:43 +#: dcim/tables/devicetypes.py:140 dcim/views.py:1087 dcim/views.py:1326 +#: dcim/views.py:2035 netbox/navigation/menu.py:101 +#: templates/dcim/device/base.html:46 templates/dcim/device_list.html:64 +#: templates/dcim/devicetype/base.html:43 +#: templates/dcim/inc/moduletype_buttons.html:34 templates/dcim/module.html:43 msgid "Module Bays" msgstr "Bahías de módulos" -#: netbox/dcim/tables/power.py:36 netbox/netbox/navigation/menu.py:297 -#: netbox/templates/dcim/powerpanel.html:51 +#: dcim/tables/power.py:36 netbox/navigation/menu.py:297 +#: templates/dcim/powerpanel.html:51 msgid "Power Feeds" msgstr "Fuentes de alimentación" -#: netbox/dcim/tables/power.py:80 netbox/templates/dcim/powerfeed.html:99 +#: dcim/tables/power.py:80 templates/dcim/powerfeed.html:99 msgid "Max Utilization" msgstr "Utilización máxima" -#: netbox/dcim/tables/power.py:84 +#: dcim/tables/power.py:84 msgid "Available Power (VA)" msgstr "Potencia disponible (VA)" -#: netbox/dcim/tables/racks.py:30 netbox/dcim/tables/sites.py:143 -#: netbox/netbox/navigation/menu.py:43 netbox/netbox/navigation/menu.py:47 -#: netbox/netbox/navigation/menu.py:49 +#: dcim/tables/racks.py:30 dcim/tables/sites.py:143 +#: netbox/navigation/menu.py:43 netbox/navigation/menu.py:47 +#: netbox/navigation/menu.py:49 msgid "Racks" msgstr "Bastidores" -#: netbox/dcim/tables/racks.py:63 netbox/dcim/tables/racks.py:142 -#: netbox/templates/dcim/device.html:318 -#: netbox/templates/dcim/inc/panels/racktype_dimensions.html:14 +#: dcim/tables/racks.py:63 dcim/tables/racks.py:142 +#: templates/dcim/device.html:318 +#: templates/dcim/inc/panels/racktype_dimensions.html:14 msgid "Height" msgstr "Altura" -#: netbox/dcim/tables/racks.py:67 netbox/dcim/tables/racks.py:165 -#: netbox/templates/dcim/inc/panels/racktype_dimensions.html:18 +#: dcim/tables/racks.py:67 dcim/tables/racks.py:165 +#: templates/dcim/inc/panels/racktype_dimensions.html:18 msgid "Outer Width" msgstr "Anchura exterior" -#: netbox/dcim/tables/racks.py:71 netbox/dcim/tables/racks.py:169 -#: netbox/templates/dcim/inc/panels/racktype_dimensions.html:28 +#: dcim/tables/racks.py:71 dcim/tables/racks.py:169 +#: templates/dcim/inc/panels/racktype_dimensions.html:28 msgid "Outer Depth" msgstr "Profundidad exterior" -#: netbox/dcim/tables/racks.py:79 netbox/dcim/tables/racks.py:177 +#: dcim/tables/racks.py:79 dcim/tables/racks.py:177 msgid "Max Weight" msgstr "Peso máximo" -#: netbox/dcim/tables/racks.py:154 +#: dcim/tables/racks.py:154 msgid "Space" msgstr "Espacio" -#: netbox/dcim/tables/sites.py:30 netbox/dcim/tables/sites.py:57 -#: netbox/extras/forms/filtersets.py:351 -#: netbox/extras/forms/model_forms.py:517 netbox/ipam/forms/bulk_edit.py:130 -#: netbox/ipam/forms/model_forms.py:153 netbox/ipam/tables/asn.py:66 -#: netbox/netbox/navigation/menu.py:15 netbox/netbox/navigation/menu.py:17 +#: dcim/tables/sites.py:30 dcim/tables/sites.py:57 +#: extras/forms/filtersets.py:351 extras/forms/model_forms.py:517 +#: ipam/forms/bulk_edit.py:131 ipam/forms/model_forms.py:153 +#: ipam/tables/asn.py:66 netbox/navigation/menu.py:15 +#: netbox/navigation/menu.py:17 msgid "Sites" msgstr "Sitios" -#: netbox/dcim/tests/test_api.py:47 +#: dcim/tests/test_api.py:47 msgid "Test case must set peer_termination_type" msgstr "El caso de prueba debe establecer peer_termination_type" -#: netbox/dcim/views.py:140 +#: dcim/views.py:140 #, python-brace-format msgid "Disconnected {count} {type}" msgstr "Desconectado {count} {type}" -#: netbox/dcim/views.py:740 netbox/netbox/navigation/menu.py:51 +#: dcim/views.py:740 netbox/navigation/menu.py:51 msgid "Reservations" msgstr "Reservaciones" -#: netbox/dcim/views.py:759 netbox/templates/dcim/location.html:90 -#: netbox/templates/dcim/site.html:140 +#: dcim/views.py:759 templates/dcim/location.html:90 +#: templates/dcim/site.html:140 msgid "Non-Racked Devices" msgstr "Dispositivos no rakeados" -#: netbox/dcim/views.py:2088 netbox/extras/forms/model_forms.py:577 -#: netbox/templates/extras/configcontext.html:10 -#: netbox/virtualization/forms/model_forms.py:225 -#: netbox/virtualization/views.py:407 +#: dcim/views.py:2088 extras/forms/model_forms.py:577 +#: templates/extras/configcontext.html:10 +#: virtualization/forms/model_forms.py:225 virtualization/views.py:407 msgid "Config Context" msgstr "Contexto de configuración" -#: netbox/dcim/views.py:2098 netbox/virtualization/views.py:417 +#: dcim/views.py:2098 virtualization/views.py:417 msgid "Render Config" msgstr "Configuración de renderizado" -#: netbox/dcim/views.py:2131 netbox/virtualization/views.py:450 +#: dcim/views.py:2131 virtualization/views.py:450 #, python-brace-format msgid "An error occurred while rendering the template: {error}" msgstr "Se ha producido un error al renderizar la plantilla: {error}" -#: netbox/dcim/views.py:2149 netbox/extras/tables/tables.py:550 -#: netbox/netbox/navigation/menu.py:247 netbox/netbox/navigation/menu.py:249 -#: netbox/virtualization/views.py:180 +#: dcim/views.py:2149 extras/tables/tables.py:550 +#: netbox/navigation/menu.py:247 netbox/navigation/menu.py:249 +#: virtualization/views.py:180 msgid "Virtual Machines" msgstr "Máquinas virtuales" -#: netbox/dcim/views.py:2897 +#: dcim/views.py:2897 #, python-brace-format msgid "Installed device {device} in bay {device_bay}." msgstr "Dispositivo instalado {device} en la bahía {device_bay}." -#: netbox/dcim/views.py:2938 +#: dcim/views.py:2938 #, python-brace-format msgid "Removed device {device} from bay {device_bay}." msgstr "Dispositivo eliminado {device} desde la bahía {device_bay}." -#: netbox/dcim/views.py:3044 netbox/ipam/tables/ip.py:234 +#: dcim/views.py:3044 ipam/tables/ip.py:234 msgid "Children" msgstr "Niños" -#: netbox/dcim/views.py:3510 +#: dcim/views.py:3510 #, python-brace-format msgid "Added member {device}" msgstr "Miembro agregado {device}" -#: netbox/dcim/views.py:3557 +#: dcim/views.py:3557 #, python-brace-format msgid "Unable to remove master device {device} from the virtual chassis." msgstr "" "No se puede eliminar el dispositivo maestro {device} desde el chasis " "virtual." -#: netbox/dcim/views.py:3570 +#: dcim/views.py:3570 #, python-brace-format msgid "Removed {device} from virtual chassis {chassis}" msgstr "Eliminado {device} desde un chasis virtual {chassis}" -#: netbox/extras/api/customfields.py:89 +#: extras/api/customfields.py:89 #, python-brace-format msgid "Unknown related object(s): {name}" msgstr "Objeto (s) relacionado (s) desconocido (s): {name}" -#: netbox/extras/api/serializers_/customfields.py:73 +#: extras/api/serializers_/customfields.py:73 msgid "Changing the type of custom fields is not supported." msgstr "No se admite cambiar el tipo de campos personalizados." -#: netbox/extras/api/serializers_/scripts.py:70 -#: netbox/extras/api/serializers_/scripts.py:75 +#: extras/api/serializers_/scripts.py:70 extras/api/serializers_/scripts.py:75 msgid "Scheduling is not enabled for this script." msgstr "La programación no está habilitada para este script." -#: netbox/extras/choices.py:30 netbox/extras/forms/misc.py:14 +#: extras/choices.py:30 extras/forms/misc.py:14 msgid "Text" msgstr "Texto" -#: netbox/extras/choices.py:31 +#: extras/choices.py:31 msgid "Text (long)" msgstr "Texto (largo)" -#: netbox/extras/choices.py:32 +#: extras/choices.py:32 msgid "Integer" msgstr "Número entero" -#: netbox/extras/choices.py:33 +#: extras/choices.py:33 msgid "Decimal" msgstr "Decimal" -#: netbox/extras/choices.py:34 +#: extras/choices.py:34 msgid "Boolean (true/false)" msgstr "Booleano (verdadero o falso)" -#: netbox/extras/choices.py:35 +#: extras/choices.py:35 msgid "Date" msgstr "Fecha" -#: netbox/extras/choices.py:36 +#: extras/choices.py:36 msgid "Date & time" msgstr "Fecha y hora" -#: netbox/extras/choices.py:38 +#: extras/choices.py:38 msgid "JSON" msgstr "JSON" -#: netbox/extras/choices.py:39 +#: extras/choices.py:39 msgid "Selection" msgstr "Selección" -#: netbox/extras/choices.py:40 +#: extras/choices.py:40 msgid "Multiple selection" msgstr "Selección múltiple" -#: netbox/extras/choices.py:42 +#: extras/choices.py:42 msgid "Multiple objects" msgstr "Objetos múltiples" -#: netbox/extras/choices.py:53 netbox/netbox/preferences.py:21 -#: netbox/templates/extras/customfield.html:78 netbox/vpn/choices.py:20 -#: netbox/wireless/choices.py:27 +#: extras/choices.py:53 netbox/preferences.py:21 +#: templates/extras/customfield.html:78 vpn/choices.py:20 +#: wireless/choices.py:27 msgid "Disabled" msgstr "Discapacitado" -#: netbox/extras/choices.py:54 +#: extras/choices.py:54 msgid "Loose" msgstr "Suelto" -#: netbox/extras/choices.py:55 +#: extras/choices.py:55 msgid "Exact" msgstr "Exacto" -#: netbox/extras/choices.py:66 +#: extras/choices.py:66 msgid "Always" msgstr "Siempre" -#: netbox/extras/choices.py:67 +#: extras/choices.py:67 msgid "If set" msgstr "Si está configurado" -#: netbox/extras/choices.py:68 netbox/extras/choices.py:81 +#: extras/choices.py:68 extras/choices.py:81 msgid "Hidden" msgstr "Oculto" -#: netbox/extras/choices.py:79 +#: extras/choices.py:79 msgid "Yes" msgstr "Sí" -#: netbox/extras/choices.py:80 +#: extras/choices.py:80 msgid "No" msgstr "No" -#: netbox/extras/choices.py:108 netbox/templates/tenancy/contact.html:57 -#: netbox/tenancy/forms/bulk_edit.py:118 -#: netbox/wireless/forms/model_forms.py:168 +#: extras/choices.py:108 templates/tenancy/contact.html:57 +#: tenancy/forms/bulk_edit.py:118 wireless/forms/model_forms.py:168 msgid "Link" msgstr "Enlace" -#: netbox/extras/choices.py:124 +#: extras/choices.py:124 msgid "Newest" msgstr "El más reciente" -#: netbox/extras/choices.py:125 +#: extras/choices.py:125 msgid "Oldest" msgstr "El más antiguo" -#: netbox/extras/choices.py:126 +#: extras/choices.py:126 msgid "Alphabetical (A-Z)" msgstr "Alfabético (A-Z)" -#: netbox/extras/choices.py:127 +#: extras/choices.py:127 msgid "Alphabetical (Z-A)" msgstr "Alfabético (Z-A)" -#: netbox/extras/choices.py:144 netbox/extras/choices.py:167 +#: extras/choices.py:144 extras/choices.py:167 msgid "Info" msgstr "Información" -#: netbox/extras/choices.py:145 netbox/extras/choices.py:168 +#: extras/choices.py:145 extras/choices.py:168 msgid "Success" msgstr "Éxito" -#: netbox/extras/choices.py:146 netbox/extras/choices.py:169 +#: extras/choices.py:146 extras/choices.py:169 msgid "Warning" msgstr "Advertencia" -#: netbox/extras/choices.py:147 +#: extras/choices.py:147 msgid "Danger" msgstr "Peligro" -#: netbox/extras/choices.py:165 +#: extras/choices.py:165 msgid "Debug" msgstr "Depurar" -#: netbox/extras/choices.py:166 netbox/netbox/choices.py:101 +#: extras/choices.py:166 netbox/choices.py:101 msgid "Default" msgstr "Predeterminado" -#: netbox/extras/choices.py:170 +#: extras/choices.py:170 msgid "Failure" msgstr "Fracaso" -#: netbox/extras/choices.py:186 +#: extras/choices.py:186 msgid "Hourly" msgstr "Cada hora" -#: netbox/extras/choices.py:187 +#: extras/choices.py:187 msgid "12 hours" msgstr "12 horas" -#: netbox/extras/choices.py:188 +#: extras/choices.py:188 msgid "Daily" msgstr "Diariamente" -#: netbox/extras/choices.py:189 +#: extras/choices.py:189 msgid "Weekly" msgstr "Semanal" -#: netbox/extras/choices.py:190 +#: extras/choices.py:190 msgid "30 days" msgstr "30 días" -#: netbox/extras/choices.py:226 -#: netbox/templates/dcim/virtualchassis_edit.html:107 -#: netbox/templates/generic/bulk_add_component.html:68 -#: netbox/templates/generic/object_edit.html:47 -#: netbox/templates/generic/object_edit.html:80 -#: netbox/templates/ipam/inc/ipaddress_edit_header.html:7 +#: extras/choices.py:226 templates/dcim/virtualchassis_edit.html:107 +#: templates/generic/bulk_add_component.html:68 +#: templates/generic/object_edit.html:47 templates/generic/object_edit.html:80 +#: templates/ipam/inc/ipaddress_edit_header.html:7 msgid "Create" msgstr "Crear" -#: netbox/extras/choices.py:227 +#: extras/choices.py:227 msgid "Update" msgstr "Actualización" -#: netbox/extras/choices.py:228 -#: netbox/templates/circuits/inc/circuit_termination.html:23 -#: netbox/templates/dcim/inc/panels/inventory_items.html:37 -#: netbox/templates/dcim/moduletype/component_templates.html:23 -#: netbox/templates/dcim/powerpanel.html:66 -#: netbox/templates/extras/script_list.html:35 -#: netbox/templates/generic/bulk_delete.html:20 -#: netbox/templates/generic/bulk_delete.html:66 -#: netbox/templates/generic/object_delete.html:19 -#: netbox/templates/htmx/delete_form.html:57 -#: netbox/templates/ipam/inc/panels/fhrp_groups.html:48 -#: netbox/templates/users/objectpermission.html:46 -#: netbox/utilities/templates/buttons/delete.html:11 +#: extras/choices.py:228 templates/circuits/inc/circuit_termination.html:23 +#: templates/dcim/inc/panels/inventory_items.html:37 +#: templates/dcim/powerpanel.html:66 templates/extras/script_list.html:35 +#: templates/generic/bulk_delete.html:20 templates/generic/bulk_delete.html:66 +#: templates/generic/object_delete.html:19 templates/htmx/delete_form.html:57 +#: templates/ipam/inc/panels/fhrp_groups.html:48 +#: templates/users/objectpermission.html:46 +#: utilities/templates/buttons/delete.html:11 msgid "Delete" msgstr "Eliminar" -#: netbox/extras/choices.py:252 netbox/netbox/choices.py:57 -#: netbox/netbox/choices.py:102 +#: extras/choices.py:252 netbox/choices.py:57 netbox/choices.py:102 msgid "Blue" msgstr "Azul" -#: netbox/extras/choices.py:253 netbox/netbox/choices.py:56 -#: netbox/netbox/choices.py:103 +#: extras/choices.py:253 netbox/choices.py:56 netbox/choices.py:103 msgid "Indigo" msgstr "añil" -#: netbox/extras/choices.py:254 netbox/netbox/choices.py:54 -#: netbox/netbox/choices.py:104 +#: extras/choices.py:254 netbox/choices.py:54 netbox/choices.py:104 msgid "Purple" msgstr "Morado" -#: netbox/extras/choices.py:255 netbox/netbox/choices.py:51 -#: netbox/netbox/choices.py:105 +#: extras/choices.py:255 netbox/choices.py:51 netbox/choices.py:105 msgid "Pink" msgstr "Rosado" -#: netbox/extras/choices.py:256 netbox/netbox/choices.py:50 -#: netbox/netbox/choices.py:106 +#: extras/choices.py:256 netbox/choices.py:50 netbox/choices.py:106 msgid "Red" msgstr "rojo" -#: netbox/extras/choices.py:257 netbox/netbox/choices.py:68 -#: netbox/netbox/choices.py:107 +#: extras/choices.py:257 netbox/choices.py:68 netbox/choices.py:107 msgid "Orange" msgstr "naranja" -#: netbox/extras/choices.py:258 netbox/netbox/choices.py:66 -#: netbox/netbox/choices.py:108 +#: extras/choices.py:258 netbox/choices.py:66 netbox/choices.py:108 msgid "Yellow" msgstr "Amarillo" -#: netbox/extras/choices.py:259 netbox/netbox/choices.py:63 -#: netbox/netbox/choices.py:109 +#: extras/choices.py:259 netbox/choices.py:63 netbox/choices.py:109 msgid "Green" msgstr "Verde" -#: netbox/extras/choices.py:260 netbox/netbox/choices.py:60 -#: netbox/netbox/choices.py:110 +#: extras/choices.py:260 netbox/choices.py:60 netbox/choices.py:110 msgid "Teal" msgstr "Verde azulado" -#: netbox/extras/choices.py:261 netbox/netbox/choices.py:59 -#: netbox/netbox/choices.py:111 +#: extras/choices.py:261 netbox/choices.py:59 netbox/choices.py:111 msgid "Cyan" msgstr "Cian" -#: netbox/extras/choices.py:262 netbox/netbox/choices.py:112 +#: extras/choices.py:262 netbox/choices.py:112 msgid "Gray" msgstr "Gris" -#: netbox/extras/choices.py:263 netbox/netbox/choices.py:74 -#: netbox/netbox/choices.py:113 +#: extras/choices.py:263 netbox/choices.py:74 netbox/choices.py:113 msgid "Black" msgstr "Negro" -#: netbox/extras/choices.py:264 netbox/netbox/choices.py:75 -#: netbox/netbox/choices.py:114 +#: extras/choices.py:264 netbox/choices.py:75 netbox/choices.py:114 msgid "White" msgstr "blanco" -#: netbox/extras/choices.py:279 netbox/extras/forms/model_forms.py:353 -#: netbox/extras/forms/model_forms.py:430 -#: netbox/templates/extras/webhook.html:10 +#: extras/choices.py:279 extras/forms/model_forms.py:353 +#: extras/forms/model_forms.py:430 templates/extras/webhook.html:10 msgid "Webhook" msgstr "Webhook" -#: netbox/extras/choices.py:280 netbox/extras/forms/model_forms.py:418 -#: netbox/templates/extras/script/base.html:29 +#: extras/choices.py:280 extras/forms/model_forms.py:418 +#: templates/extras/script/base.html:29 msgid "Script" msgstr "Guión" -#: netbox/extras/choices.py:281 +#: extras/choices.py:281 msgid "Notification" msgstr "Notificación" -#: netbox/extras/conditions.py:54 +#: extras/conditions.py:54 #, python-brace-format msgid "Unknown operator: {op}. Must be one of: {operators}" msgstr "Operador desconocido: {op}. Debe ser uno de: {operators}" -#: netbox/extras/conditions.py:58 +#: extras/conditions.py:58 #, python-brace-format msgid "Unsupported value type: {value}" msgstr "Tipo de valor no admitido: {value}" -#: netbox/extras/conditions.py:60 +#: extras/conditions.py:60 #, python-brace-format msgid "Invalid type for {op} operation: {value}" msgstr "Tipo no válido para {op} operación: {value}" -#: netbox/extras/conditions.py:137 +#: extras/conditions.py:137 #, python-brace-format msgid "Ruleset must be a dictionary, not {ruleset}." msgstr "El conjunto de reglas debe ser un diccionario, no {ruleset}." -#: netbox/extras/conditions.py:142 +#: extras/conditions.py:142 msgid "Invalid logic type: must be 'AND' or 'OR'. Please check documentation." msgstr "" "Tipo de lógica no válido: debe ser «AND» u «OR». Consulte la documentación." -#: netbox/extras/conditions.py:154 +#: extras/conditions.py:154 msgid "Incorrect key(s) informed. Please check documentation." msgstr "" "Se informó de claves incorrectas. Por favor, consulte la documentación." -#: netbox/extras/dashboard/forms.py:38 +#: extras/dashboard/forms.py:38 msgid "Widget type" msgstr "Tipo de widget" -#: netbox/extras/dashboard/utils.py:36 +#: extras/dashboard/utils.py:36 #, python-brace-format msgid "Unregistered widget class: {name}" msgstr "Clase de widget no registrada: {name}" -#: netbox/extras/dashboard/widgets.py:125 +#: extras/dashboard/widgets.py:125 #, python-brace-format msgid "{class_name} must define a render() method." msgstr "{class_name} debe definir un método render ()." -#: netbox/extras/dashboard/widgets.py:144 +#: extras/dashboard/widgets.py:144 msgid "Note" msgstr "Nota" -#: netbox/extras/dashboard/widgets.py:145 +#: extras/dashboard/widgets.py:145 msgid "Display some arbitrary custom content. Markdown is supported." msgstr "Muestra contenido personalizado arbitrario. Markdown es compatible." -#: netbox/extras/dashboard/widgets.py:158 +#: extras/dashboard/widgets.py:158 msgid "Object Counts" msgstr "Recuentos de objetos" -#: netbox/extras/dashboard/widgets.py:159 +#: extras/dashboard/widgets.py:159 msgid "" "Display a set of NetBox models and the number of objects created for each " "type." @@ -7486,292 +6975,270 @@ msgstr "" "Muestre un conjunto de modelos de NetBox y el número de objetos creados para" " cada tipo." -#: netbox/extras/dashboard/widgets.py:169 +#: extras/dashboard/widgets.py:169 msgid "Filters to apply when counting the number of objects" msgstr "Filtros para aplicar al contar el número de objetos" -#: netbox/extras/dashboard/widgets.py:177 +#: extras/dashboard/widgets.py:177 msgid "Invalid format. Object filters must be passed as a dictionary." msgstr "" "Formato no válido. Los filtros de objetos se deben pasar como un " "diccionario." -#: netbox/extras/dashboard/widgets.py:208 +#: extras/dashboard/widgets.py:208 msgid "Object List" msgstr "Lista de objetos" -#: netbox/extras/dashboard/widgets.py:209 +#: extras/dashboard/widgets.py:209 msgid "Display an arbitrary list of objects." msgstr "Muestra una lista arbitraria de objetos." -#: netbox/extras/dashboard/widgets.py:222 +#: extras/dashboard/widgets.py:222 msgid "The default number of objects to display" msgstr "El número predeterminado de objetos que se van a mostrar" -#: netbox/extras/dashboard/widgets.py:234 +#: extras/dashboard/widgets.py:234 msgid "Invalid format. URL parameters must be passed as a dictionary." msgstr "" "Formato no válido. Los parámetros de URL se deben pasar como un diccionario." -#: netbox/extras/dashboard/widgets.py:274 +#: extras/dashboard/widgets.py:274 msgid "RSS Feed" msgstr "Fuente RSS" -#: netbox/extras/dashboard/widgets.py:279 +#: extras/dashboard/widgets.py:279 msgid "Embed an RSS feed from an external website." msgstr "Inserte una fuente RSS desde un sitio web externo." -#: netbox/extras/dashboard/widgets.py:286 +#: extras/dashboard/widgets.py:286 msgid "Feed URL" msgstr "URL del feed" -#: netbox/extras/dashboard/widgets.py:291 +#: extras/dashboard/widgets.py:291 msgid "The maximum number of objects to display" msgstr "El número máximo de objetos que se van a mostrar" -#: netbox/extras/dashboard/widgets.py:296 +#: extras/dashboard/widgets.py:296 msgid "How long to stored the cached content (in seconds)" msgstr "Cuánto tiempo se debe almacenar el contenido en caché (en segundos)" -#: netbox/extras/dashboard/widgets.py:348 -#: netbox/templates/account/base.html:10 -#: netbox/templates/account/bookmarks.html:7 -#: netbox/templates/inc/user_menu.html:48 +#: extras/dashboard/widgets.py:348 templates/account/base.html:10 +#: templates/account/bookmarks.html:7 templates/inc/user_menu.html:48 msgid "Bookmarks" msgstr "Marcadores" -#: netbox/extras/dashboard/widgets.py:352 +#: extras/dashboard/widgets.py:352 msgid "Show your personal bookmarks" msgstr "Muestra tus marcadores personales" -#: netbox/extras/events.py:147 +#: extras/events.py:147 #, python-brace-format msgid "Unknown action type for an event rule: {action_type}" msgstr "Tipo de acción desconocido para una regla de evento: {action_type}" -#: netbox/extras/events.py:192 +#: extras/events.py:192 #, python-brace-format msgid "Cannot import events pipeline {name} error: {error}" msgstr "No se puede importar la canalización de eventos {name} error: {error}" -#: netbox/extras/filtersets.py:45 +#: extras/filtersets.py:45 msgid "Script module (ID)" msgstr "Módulo de script (ID)" -#: netbox/extras/filtersets.py:254 netbox/extras/filtersets.py:637 -#: netbox/extras/filtersets.py:665 +#: extras/filtersets.py:254 extras/filtersets.py:637 extras/filtersets.py:665 msgid "Data file (ID)" msgstr "Archivo de datos (ID)" -#: netbox/extras/filtersets.py:370 netbox/users/filtersets.py:68 -#: netbox/users/filtersets.py:191 +#: extras/filtersets.py:370 users/filtersets.py:68 users/filtersets.py:191 msgid "Group (name)" msgstr "Grupo (nombre)" -#: netbox/extras/filtersets.py:574 -#: netbox/virtualization/forms/filtersets.py:118 +#: extras/filtersets.py:574 virtualization/forms/filtersets.py:118 msgid "Cluster type" msgstr "Tipo de clúster" -#: netbox/extras/filtersets.py:580 netbox/virtualization/filtersets.py:95 -#: netbox/virtualization/filtersets.py:147 +#: extras/filtersets.py:580 virtualization/filtersets.py:95 +#: virtualization/filtersets.py:147 msgid "Cluster type (slug)" msgstr "Tipo de clúster (babosa)" -#: netbox/extras/filtersets.py:601 netbox/tenancy/forms/forms.py:16 -#: netbox/tenancy/forms/forms.py:39 +#: extras/filtersets.py:601 tenancy/forms/forms.py:16 +#: tenancy/forms/forms.py:39 msgid "Tenant group" msgstr "Grupo de inquilinos" -#: netbox/extras/filtersets.py:607 netbox/tenancy/filtersets.py:188 -#: netbox/tenancy/filtersets.py:208 +#: extras/filtersets.py:607 tenancy/filtersets.py:188 +#: tenancy/filtersets.py:208 msgid "Tenant group (slug)" msgstr "Grupo de inquilinos (slug)" -#: netbox/extras/filtersets.py:623 netbox/extras/forms/model_forms.py:495 -#: netbox/templates/extras/tag.html:11 +#: extras/filtersets.py:623 extras/forms/model_forms.py:495 +#: templates/extras/tag.html:11 msgid "Tag" msgstr "Etiqueta" -#: netbox/extras/filtersets.py:629 +#: extras/filtersets.py:629 msgid "Tag (slug)" msgstr "Etiqueta (babosa)" -#: netbox/extras/filtersets.py:689 netbox/extras/forms/filtersets.py:429 +#: extras/filtersets.py:689 extras/forms/filtersets.py:429 msgid "Has local config context data" msgstr "Tiene datos de contexto de configuración local" -#: netbox/extras/forms/bulk_edit.py:35 netbox/extras/forms/filtersets.py:60 +#: extras/forms/bulk_edit.py:35 extras/forms/filtersets.py:60 msgid "Group name" msgstr "Nombre del grupo" -#: netbox/extras/forms/bulk_edit.py:43 netbox/extras/forms/filtersets.py:68 -#: netbox/extras/tables/tables.py:65 -#: netbox/templates/extras/customfield.html:38 -#: netbox/templates/generic/bulk_import.html:118 +#: extras/forms/bulk_edit.py:43 extras/forms/filtersets.py:68 +#: extras/tables/tables.py:65 templates/extras/customfield.html:38 +#: templates/generic/bulk_import.html:118 msgid "Required" msgstr "Obligatorio" -#: netbox/extras/forms/bulk_edit.py:48 netbox/extras/forms/filtersets.py:75 +#: extras/forms/bulk_edit.py:48 extras/forms/filtersets.py:75 msgid "Must be unique" msgstr "Debe ser único" -#: netbox/extras/forms/bulk_edit.py:61 netbox/extras/forms/bulk_import.py:60 -#: netbox/extras/forms/filtersets.py:89 -#: netbox/extras/models/customfields.py:209 +#: extras/forms/bulk_edit.py:61 extras/forms/bulk_import.py:60 +#: extras/forms/filtersets.py:89 extras/models/customfields.py:209 msgid "UI visible" msgstr "Interfaz de usuario visible" -#: netbox/extras/forms/bulk_edit.py:66 netbox/extras/forms/bulk_import.py:66 -#: netbox/extras/forms/filtersets.py:94 -#: netbox/extras/models/customfields.py:216 +#: extras/forms/bulk_edit.py:66 extras/forms/bulk_import.py:66 +#: extras/forms/filtersets.py:94 extras/models/customfields.py:216 msgid "UI editable" msgstr "Interfaz de usuario editable" -#: netbox/extras/forms/bulk_edit.py:71 netbox/extras/forms/filtersets.py:97 +#: extras/forms/bulk_edit.py:71 extras/forms/filtersets.py:97 msgid "Is cloneable" msgstr "Es clonable" -#: netbox/extras/forms/bulk_edit.py:76 netbox/extras/forms/filtersets.py:104 +#: extras/forms/bulk_edit.py:76 extras/forms/filtersets.py:104 msgid "Minimum value" msgstr "Valor mínimo" -#: netbox/extras/forms/bulk_edit.py:80 netbox/extras/forms/filtersets.py:108 +#: extras/forms/bulk_edit.py:80 extras/forms/filtersets.py:108 msgid "Maximum value" msgstr "Valor máximo" -#: netbox/extras/forms/bulk_edit.py:84 netbox/extras/forms/filtersets.py:112 +#: extras/forms/bulk_edit.py:84 extras/forms/filtersets.py:112 msgid "Validation regex" msgstr "Regex de validación" -#: netbox/extras/forms/bulk_edit.py:91 netbox/extras/forms/filtersets.py:46 -#: netbox/extras/forms/model_forms.py:76 -#: netbox/templates/extras/customfield.html:70 +#: extras/forms/bulk_edit.py:91 extras/forms/filtersets.py:46 +#: extras/forms/model_forms.py:76 templates/extras/customfield.html:70 msgid "Behavior" msgstr "Comportamiento" -#: netbox/extras/forms/bulk_edit.py:128 netbox/extras/forms/filtersets.py:149 +#: extras/forms/bulk_edit.py:128 extras/forms/filtersets.py:149 msgid "New window" msgstr "Ventana nueva" -#: netbox/extras/forms/bulk_edit.py:137 +#: extras/forms/bulk_edit.py:137 msgid "Button class" msgstr "Clase de botones" -#: netbox/extras/forms/bulk_edit.py:154 netbox/extras/forms/filtersets.py:187 -#: netbox/extras/models/models.py:409 +#: extras/forms/bulk_edit.py:154 extras/forms/filtersets.py:187 +#: extras/models/models.py:409 msgid "MIME type" msgstr "Tipo MIME" -#: netbox/extras/forms/bulk_edit.py:159 netbox/extras/forms/filtersets.py:190 +#: extras/forms/bulk_edit.py:159 extras/forms/filtersets.py:190 msgid "File extension" msgstr "Extensión de archivo" -#: netbox/extras/forms/bulk_edit.py:164 netbox/extras/forms/filtersets.py:194 +#: extras/forms/bulk_edit.py:164 extras/forms/filtersets.py:194 msgid "As attachment" msgstr "Como archivo adjunto" -#: netbox/extras/forms/bulk_edit.py:192 netbox/extras/forms/filtersets.py:236 -#: netbox/extras/tables/tables.py:256 -#: netbox/templates/extras/savedfilter.html:29 +#: extras/forms/bulk_edit.py:192 extras/forms/filtersets.py:236 +#: extras/tables/tables.py:256 templates/extras/savedfilter.html:29 msgid "Shared" msgstr "Compartido" -#: netbox/extras/forms/bulk_edit.py:215 netbox/extras/forms/filtersets.py:265 -#: netbox/extras/models/models.py:174 +#: extras/forms/bulk_edit.py:215 extras/forms/filtersets.py:265 +#: extras/models/models.py:174 msgid "HTTP method" msgstr "Método HTTP" -#: netbox/extras/forms/bulk_edit.py:219 netbox/extras/forms/filtersets.py:259 -#: netbox/templates/extras/webhook.html:30 +#: extras/forms/bulk_edit.py:219 extras/forms/filtersets.py:259 +#: templates/extras/webhook.html:30 msgid "Payload URL" msgstr "URL de carga" -#: netbox/extras/forms/bulk_edit.py:224 netbox/extras/models/models.py:214 +#: extras/forms/bulk_edit.py:224 extras/models/models.py:214 msgid "SSL verification" msgstr "Verificación SSL" -#: netbox/extras/forms/bulk_edit.py:227 -#: netbox/templates/extras/webhook.html:38 +#: extras/forms/bulk_edit.py:227 templates/extras/webhook.html:38 msgid "Secret" msgstr "Secreto" -#: netbox/extras/forms/bulk_edit.py:232 +#: extras/forms/bulk_edit.py:232 msgid "CA file path" msgstr "Ruta del archivo CA" -#: netbox/extras/forms/bulk_edit.py:253 netbox/extras/forms/bulk_import.py:192 -#: netbox/extras/forms/model_forms.py:377 +#: extras/forms/bulk_edit.py:253 extras/forms/bulk_import.py:192 +#: extras/forms/model_forms.py:377 msgid "Event types" msgstr "Tipos de eventos" -#: netbox/extras/forms/bulk_edit.py:293 +#: extras/forms/bulk_edit.py:293 msgid "Is active" msgstr "Está activo" -#: netbox/extras/forms/bulk_import.py:37 -#: netbox/extras/forms/bulk_import.py:118 -#: netbox/extras/forms/bulk_import.py:139 -#: netbox/extras/forms/bulk_import.py:162 -#: netbox/extras/forms/bulk_import.py:186 -#: netbox/extras/forms/filtersets.py:137 netbox/extras/forms/filtersets.py:224 -#: netbox/extras/forms/model_forms.py:47 -#: netbox/extras/forms/model_forms.py:205 -#: netbox/extras/forms/model_forms.py:237 -#: netbox/extras/forms/model_forms.py:278 -#: netbox/extras/forms/model_forms.py:372 -#: netbox/extras/forms/model_forms.py:489 -#: netbox/users/forms/model_forms.py:276 +#: extras/forms/bulk_import.py:37 extras/forms/bulk_import.py:118 +#: extras/forms/bulk_import.py:139 extras/forms/bulk_import.py:162 +#: extras/forms/bulk_import.py:186 extras/forms/filtersets.py:137 +#: extras/forms/filtersets.py:224 extras/forms/model_forms.py:47 +#: extras/forms/model_forms.py:205 extras/forms/model_forms.py:237 +#: extras/forms/model_forms.py:278 extras/forms/model_forms.py:372 +#: extras/forms/model_forms.py:489 users/forms/model_forms.py:276 msgid "Object types" msgstr "Tipos de objetos" -#: netbox/extras/forms/bulk_import.py:39 -#: netbox/extras/forms/bulk_import.py:120 -#: netbox/extras/forms/bulk_import.py:141 -#: netbox/extras/forms/bulk_import.py:164 -#: netbox/extras/forms/bulk_import.py:188 -#: netbox/tenancy/forms/bulk_import.py:96 +#: extras/forms/bulk_import.py:39 extras/forms/bulk_import.py:120 +#: extras/forms/bulk_import.py:141 extras/forms/bulk_import.py:164 +#: extras/forms/bulk_import.py:188 tenancy/forms/bulk_import.py:96 msgid "One or more assigned object types" msgstr "Uno o más tipos de objetos asignados" -#: netbox/extras/forms/bulk_import.py:44 +#: extras/forms/bulk_import.py:44 msgid "Field data type (e.g. text, integer, etc.)" msgstr "Tipo de datos de campo (por ejemplo, texto, entero, etc.)" -#: netbox/extras/forms/bulk_import.py:47 netbox/extras/forms/filtersets.py:208 -#: netbox/extras/forms/filtersets.py:281 -#: netbox/extras/forms/model_forms.py:304 -#: netbox/extras/forms/model_forms.py:341 -#: netbox/tenancy/forms/filtersets.py:92 +#: extras/forms/bulk_import.py:47 extras/forms/filtersets.py:208 +#: extras/forms/filtersets.py:281 extras/forms/model_forms.py:304 +#: extras/forms/model_forms.py:341 tenancy/forms/filtersets.py:92 msgid "Object type" msgstr "Tipo de objeto" -#: netbox/extras/forms/bulk_import.py:50 +#: extras/forms/bulk_import.py:50 msgid "Object type (for object or multi-object fields)" msgstr "Tipo de objeto (para campos de objetos o de varios objetos)" -#: netbox/extras/forms/bulk_import.py:53 netbox/extras/forms/filtersets.py:84 +#: extras/forms/bulk_import.py:53 extras/forms/filtersets.py:84 msgid "Choice set" msgstr "Set de elección" -#: netbox/extras/forms/bulk_import.py:57 +#: extras/forms/bulk_import.py:57 msgid "Choice set (for selection fields)" msgstr "Conjunto de opciones (para campos de selección)" -#: netbox/extras/forms/bulk_import.py:63 +#: extras/forms/bulk_import.py:63 msgid "Whether the custom field is displayed in the UI" msgstr "Si el campo personalizado se muestra en la interfaz de usuario" -#: netbox/extras/forms/bulk_import.py:69 +#: extras/forms/bulk_import.py:69 msgid "Whether the custom field is editable in the UI" msgstr "Si el campo personalizado se puede editar en la interfaz de usuario" -#: netbox/extras/forms/bulk_import.py:85 +#: extras/forms/bulk_import.py:85 msgid "The base set of predefined choices to use (if any)" msgstr "" "El conjunto base de opciones predefinidas que se van a utilizar (si las hay)" -#: netbox/extras/forms/bulk_import.py:91 +#: extras/forms/bulk_import.py:91 msgid "" "Quoted string of comma-separated field choices with optional labels " "separated by colon: \"choice1:First Choice,choice2:Second Choice\"" @@ -7780,200 +7247,184 @@ msgstr "" " opcionales separadas por dos puntos: «Choice1:First Choice, Choice2:Second " "Choice»" -#: netbox/extras/forms/bulk_import.py:123 netbox/extras/models/models.py:323 +#: extras/forms/bulk_import.py:123 extras/models/models.py:323 msgid "button class" msgstr "clase de botones" -#: netbox/extras/forms/bulk_import.py:126 netbox/extras/models/models.py:327 +#: extras/forms/bulk_import.py:126 extras/models/models.py:327 msgid "" "The class of the first link in a group will be used for the dropdown button" msgstr "" "La clase del primer enlace de un grupo se usará para el botón desplegable" -#: netbox/extras/forms/bulk_import.py:193 +#: extras/forms/bulk_import.py:193 msgid "The event type(s) which will trigger this rule" msgstr "Los tipos de eventos que activarán esta regla" -#: netbox/extras/forms/bulk_import.py:196 +#: extras/forms/bulk_import.py:196 msgid "Action object" msgstr "Objeto de acción" -#: netbox/extras/forms/bulk_import.py:198 +#: extras/forms/bulk_import.py:198 msgid "Webhook name or script as dotted path module.Class" msgstr "Nombre o script del webhook como ruta punteada module.Class" -#: netbox/extras/forms/bulk_import.py:219 +#: extras/forms/bulk_import.py:219 #, python-brace-format msgid "Webhook {name} not found" msgstr "Webhook {name} no se encontró" -#: netbox/extras/forms/bulk_import.py:228 +#: extras/forms/bulk_import.py:228 #, python-brace-format msgid "Script {name} not found" msgstr "Guión {name} no se encontró" -#: netbox/extras/forms/bulk_import.py:244 +#: extras/forms/bulk_import.py:244 msgid "Assigned object type" msgstr "Tipo de objeto asignado" -#: netbox/extras/forms/bulk_import.py:249 +#: extras/forms/bulk_import.py:249 msgid "The classification of entry" msgstr "La clasificación de entrada" -#: netbox/extras/forms/bulk_import.py:261 -#: netbox/extras/forms/model_forms.py:320 netbox/netbox/navigation/menu.py:390 -#: netbox/templates/extras/notificationgroup.html:41 -#: netbox/templates/users/group.html:29 netbox/users/forms/model_forms.py:236 -#: netbox/users/forms/model_forms.py:248 netbox/users/forms/model_forms.py:300 -#: netbox/users/tables.py:102 +#: extras/forms/bulk_import.py:261 extras/forms/model_forms.py:320 +#: netbox/navigation/menu.py:390 templates/extras/notificationgroup.html:41 +#: templates/users/group.html:29 users/forms/model_forms.py:236 +#: users/forms/model_forms.py:248 users/forms/model_forms.py:300 +#: users/tables.py:102 msgid "Users" msgstr "usuarios" -#: netbox/extras/forms/bulk_import.py:265 +#: extras/forms/bulk_import.py:265 msgid "User names separated by commas, encased with double quotes" msgstr "Nombres de usuario separados por comas y entre comillas dobles" -#: netbox/extras/forms/bulk_import.py:268 -#: netbox/extras/forms/model_forms.py:315 netbox/netbox/navigation/menu.py:410 -#: netbox/templates/extras/notificationgroup.html:31 -#: netbox/users/forms/model_forms.py:181 netbox/users/forms/model_forms.py:193 -#: netbox/users/forms/model_forms.py:305 netbox/users/tables.py:35 -#: netbox/users/tables.py:106 +#: extras/forms/bulk_import.py:268 extras/forms/model_forms.py:315 +#: netbox/navigation/menu.py:410 templates/extras/notificationgroup.html:31 +#: users/forms/model_forms.py:181 users/forms/model_forms.py:193 +#: users/forms/model_forms.py:305 users/tables.py:35 users/tables.py:106 msgid "Groups" msgstr "Grupos" -#: netbox/extras/forms/bulk_import.py:272 +#: extras/forms/bulk_import.py:272 msgid "Group names separated by commas, encased with double quotes" msgstr "Nombres de grupos separados por comas y entre comillas" -#: netbox/extras/forms/filtersets.py:52 netbox/extras/forms/model_forms.py:56 +#: extras/forms/filtersets.py:52 extras/forms/model_forms.py:56 msgid "Related object type" msgstr "Tipo de objeto relacionado" -#: netbox/extras/forms/filtersets.py:57 +#: extras/forms/filtersets.py:57 msgid "Field type" msgstr "Tipo de campo" -#: netbox/extras/forms/filtersets.py:120 -#: netbox/extras/forms/model_forms.py:157 netbox/extras/tables/tables.py:91 -#: netbox/templates/generic/bulk_import.html:154 +#: extras/forms/filtersets.py:120 extras/forms/model_forms.py:157 +#: extras/tables/tables.py:91 templates/generic/bulk_import.html:154 msgid "Choices" msgstr "Opciones" -#: netbox/extras/forms/filtersets.py:164 netbox/extras/forms/filtersets.py:319 -#: netbox/extras/forms/filtersets.py:408 -#: netbox/extras/forms/model_forms.py:572 netbox/templates/core/job.html:96 -#: netbox/templates/extras/eventrule.html:84 +#: extras/forms/filtersets.py:164 extras/forms/filtersets.py:319 +#: extras/forms/filtersets.py:408 extras/forms/model_forms.py:572 +#: templates/core/job.html:96 templates/extras/eventrule.html:84 msgid "Data" msgstr "Datos" -#: netbox/extras/forms/filtersets.py:175 netbox/extras/forms/filtersets.py:333 -#: netbox/extras/forms/filtersets.py:418 netbox/netbox/choices.py:130 -#: netbox/utilities/forms/bulk_import.py:26 +#: extras/forms/filtersets.py:175 extras/forms/filtersets.py:333 +#: extras/forms/filtersets.py:418 netbox/choices.py:130 +#: utilities/forms/bulk_import.py:26 msgid "Data file" msgstr "Archivo de datos" -#: netbox/extras/forms/filtersets.py:183 +#: extras/forms/filtersets.py:183 msgid "Content types" msgstr "Tipos de contenido" -#: netbox/extras/forms/filtersets.py:255 netbox/extras/models/models.py:179 +#: extras/forms/filtersets.py:255 extras/models/models.py:179 msgid "HTTP content type" msgstr "Tipo de contenido HTTP" -#: netbox/extras/forms/filtersets.py:286 +#: extras/forms/filtersets.py:286 msgid "Event type" msgstr "Tipo de evento" -#: netbox/extras/forms/filtersets.py:291 +#: extras/forms/filtersets.py:291 msgid "Action type" msgstr "Tipo de acción" -#: netbox/extras/forms/filtersets.py:307 +#: extras/forms/filtersets.py:307 msgid "Tagged object type" msgstr "Tipo de objeto etiquetado" -#: netbox/extras/forms/filtersets.py:312 +#: extras/forms/filtersets.py:312 msgid "Allowed object type" msgstr "Tipo de objeto permitido" -#: netbox/extras/forms/filtersets.py:341 -#: netbox/extras/forms/model_forms.py:507 netbox/netbox/navigation/menu.py:18 +#: extras/forms/filtersets.py:341 extras/forms/model_forms.py:507 +#: netbox/navigation/menu.py:18 msgid "Regions" msgstr "Regiones" -#: netbox/extras/forms/filtersets.py:346 -#: netbox/extras/forms/model_forms.py:512 +#: extras/forms/filtersets.py:346 extras/forms/model_forms.py:512 msgid "Site groups" msgstr "Grupos de sitios" -#: netbox/extras/forms/filtersets.py:356 -#: netbox/extras/forms/model_forms.py:522 netbox/netbox/navigation/menu.py:20 -#: netbox/templates/dcim/site.html:127 +#: extras/forms/filtersets.py:356 extras/forms/model_forms.py:522 +#: netbox/navigation/menu.py:20 templates/dcim/site.html:127 msgid "Locations" msgstr "Ubicaciones" -#: netbox/extras/forms/filtersets.py:361 -#: netbox/extras/forms/model_forms.py:527 +#: extras/forms/filtersets.py:361 extras/forms/model_forms.py:527 msgid "Device types" msgstr "Tipos de dispositivos" -#: netbox/extras/forms/filtersets.py:366 -#: netbox/extras/forms/model_forms.py:532 +#: extras/forms/filtersets.py:366 extras/forms/model_forms.py:532 msgid "Roles" msgstr "Funciones" -#: netbox/extras/forms/filtersets.py:376 -#: netbox/extras/forms/model_forms.py:542 +#: extras/forms/filtersets.py:376 extras/forms/model_forms.py:542 msgid "Cluster types" msgstr "Tipos de clústeres" -#: netbox/extras/forms/filtersets.py:381 -#: netbox/extras/forms/model_forms.py:547 +#: extras/forms/filtersets.py:381 extras/forms/model_forms.py:547 msgid "Cluster groups" msgstr "Grupos de clústeres" -#: netbox/extras/forms/filtersets.py:386 -#: netbox/extras/forms/model_forms.py:552 netbox/netbox/navigation/menu.py:255 -#: netbox/netbox/navigation/menu.py:257 -#: netbox/templates/virtualization/clustertype.html:30 -#: netbox/virtualization/tables/clusters.py:23 -#: netbox/virtualization/tables/clusters.py:45 +#: extras/forms/filtersets.py:386 extras/forms/model_forms.py:552 +#: netbox/navigation/menu.py:255 netbox/navigation/menu.py:257 +#: templates/virtualization/clustertype.html:30 +#: virtualization/tables/clusters.py:23 virtualization/tables/clusters.py:45 msgid "Clusters" msgstr "Clústers" -#: netbox/extras/forms/filtersets.py:391 -#: netbox/extras/forms/model_forms.py:557 +#: extras/forms/filtersets.py:391 extras/forms/model_forms.py:557 msgid "Tenant groups" msgstr "Grupos de inquilinos" -#: netbox/extras/forms/model_forms.py:49 +#: extras/forms/model_forms.py:49 msgid "The type(s) of object that have this custom field" msgstr "Los tipos de objeto que tienen este campo personalizado" -#: netbox/extras/forms/model_forms.py:52 +#: extras/forms/model_forms.py:52 msgid "Default value" msgstr "Valor predeterminado" -#: netbox/extras/forms/model_forms.py:58 +#: extras/forms/model_forms.py:58 msgid "Type of the related object (for object/multi-object fields only)" msgstr "Tipo del objeto relacionado (solo para campos de objeto/multiobjeto)" -#: netbox/extras/forms/model_forms.py:61 -#: netbox/templates/extras/customfield.html:60 +#: extras/forms/model_forms.py:61 templates/extras/customfield.html:60 msgid "Related object filter" msgstr "Filtro de objetos relacionados" -#: netbox/extras/forms/model_forms.py:63 +#: extras/forms/model_forms.py:63 msgid "Specify query parameters as a JSON object." msgstr "Especifique los parámetros de consulta como un objeto JSON." -#: netbox/extras/forms/model_forms.py:73 -#: netbox/templates/extras/customfield.html:10 +#: extras/forms/model_forms.py:73 templates/extras/customfield.html:10 msgid "Custom Field" msgstr "Campo personalizado" -#: netbox/extras/forms/model_forms.py:85 +#: extras/forms/model_forms.py:85 msgid "" "The type of data stored in this field. For object/multi-object fields, " "select the related object type below." @@ -7981,7 +7432,7 @@ msgstr "" "El tipo de datos almacenados en este campo. Para los campos de objetos o " "multiobjetos, seleccione el tipo de objeto relacionado a continuación." -#: netbox/extras/forms/model_forms.py:88 +#: extras/forms/model_forms.py:88 msgid "" "This will be displayed as help text for the form field. Markdown is " "supported." @@ -7989,11 +7440,11 @@ msgstr "" "Esto se mostrará como texto de ayuda para el campo del formulario. Markdown " "es compatible." -#: netbox/extras/forms/model_forms.py:143 +#: extras/forms/model_forms.py:143 msgid "Related Object" msgstr "Objeto relacionado" -#: netbox/extras/forms/model_forms.py:169 +#: extras/forms/model_forms.py:169 msgid "" "Enter one choice per line. An optional label may be specified for each " "choice by appending it with a colon. Example:" @@ -8001,16 +7452,15 @@ msgstr "" "Introduzca una opción por línea. Se puede especificar una etiqueta opcional " "para cada elección añadiendo dos puntos. Ejemplo:" -#: netbox/extras/forms/model_forms.py:212 -#: netbox/templates/extras/customlink.html:10 +#: extras/forms/model_forms.py:212 templates/extras/customlink.html:10 msgid "Custom Link" msgstr "Vínculo personalizado" -#: netbox/extras/forms/model_forms.py:214 +#: extras/forms/model_forms.py:214 msgid "Templates" msgstr "Plantillas" -#: netbox/extras/forms/model_forms.py:226 +#: extras/forms/model_forms.py:226 #, python-brace-format msgid "" "Jinja2 template code for the link text. Reference the object as {example}. " @@ -8020,7 +7470,7 @@ msgstr "" "objeto como {example}. Los enlaces que se muestren como texto vacío no se " "mostrarán." -#: netbox/extras/forms/model_forms.py:230 +#: extras/forms/model_forms.py:230 #, python-brace-format msgid "" "Jinja2 template code for the link URL. Reference the object as {example}." @@ -8028,62 +7478,56 @@ msgstr "" "Código de plantilla Jinja2 para la URL del enlace. Haga referencia al objeto" " como {example}." -#: netbox/extras/forms/model_forms.py:241 -#: netbox/extras/forms/model_forms.py:624 +#: extras/forms/model_forms.py:241 extras/forms/model_forms.py:624 msgid "Template code" msgstr "Código de plantilla" -#: netbox/extras/forms/model_forms.py:247 -#: netbox/templates/extras/exporttemplate.html:12 +#: extras/forms/model_forms.py:247 templates/extras/exporttemplate.html:12 msgid "Export Template" msgstr "Plantilla de exportación" -#: netbox/extras/forms/model_forms.py:249 +#: extras/forms/model_forms.py:249 msgid "Rendering" msgstr "Renderización" -#: netbox/extras/forms/model_forms.py:263 -#: netbox/extras/forms/model_forms.py:649 +#: extras/forms/model_forms.py:263 extras/forms/model_forms.py:649 msgid "Template content is populated from the remote source selected below." msgstr "" "El contenido de la plantilla se rellena desde la fuente remota seleccionada " "a continuación." -#: netbox/extras/forms/model_forms.py:270 -#: netbox/extras/forms/model_forms.py:656 +#: extras/forms/model_forms.py:270 extras/forms/model_forms.py:656 msgid "Must specify either local content or a data file" msgstr "Debe especificar el contenido local o un archivo de datos" -#: netbox/extras/forms/model_forms.py:284 netbox/netbox/forms/mixins.py:70 -#: netbox/templates/extras/savedfilter.html:10 +#: extras/forms/model_forms.py:284 netbox/forms/mixins.py:70 +#: templates/extras/savedfilter.html:10 msgid "Saved Filter" msgstr "Filtro guardado" -#: netbox/extras/forms/model_forms.py:334 +#: extras/forms/model_forms.py:334 msgid "A notification group specify at least one user or group." msgstr "Un grupo de notificaciones especifica al menos un usuario o grupo." -#: netbox/extras/forms/model_forms.py:356 -#: netbox/templates/extras/webhook.html:23 +#: extras/forms/model_forms.py:356 templates/extras/webhook.html:23 msgid "HTTP Request" msgstr "Solicitud HTTP" -#: netbox/extras/forms/model_forms.py:358 -#: netbox/templates/extras/webhook.html:44 +#: extras/forms/model_forms.py:358 templates/extras/webhook.html:44 msgid "SSL" msgstr "SSL" -#: netbox/extras/forms/model_forms.py:380 +#: extras/forms/model_forms.py:380 msgid "Action choice" msgstr "Elección de acción" -#: netbox/extras/forms/model_forms.py:385 +#: extras/forms/model_forms.py:385 msgid "Enter conditions in JSON format." msgstr "" "Introduzca las condiciones en JSON " "formato." -#: netbox/extras/forms/model_forms.py:389 +#: extras/forms/model_forms.py:389 msgid "" "Enter parameters to pass to the action in JSON format." @@ -8091,114 +7535,112 @@ msgstr "" "Introduzca los parámetros para pasar a la acción en JSON formato." -#: netbox/extras/forms/model_forms.py:394 -#: netbox/templates/extras/eventrule.html:10 +#: extras/forms/model_forms.py:394 templates/extras/eventrule.html:10 msgid "Event Rule" msgstr "Regla del evento" -#: netbox/extras/forms/model_forms.py:395 +#: extras/forms/model_forms.py:395 msgid "Triggers" msgstr "Disparadores" -#: netbox/extras/forms/model_forms.py:442 +#: extras/forms/model_forms.py:442 msgid "Notification group" msgstr "Grupo de notificaciones" -#: netbox/extras/forms/model_forms.py:562 netbox/netbox/navigation/menu.py:26 -#: netbox/tenancy/tables/tenants.py:22 +#: extras/forms/model_forms.py:562 netbox/navigation/menu.py:26 +#: tenancy/tables/tenants.py:22 msgid "Tenants" msgstr "Inquilinos" -#: netbox/extras/forms/model_forms.py:606 +#: extras/forms/model_forms.py:606 msgid "Data is populated from the remote source selected below." msgstr "" "Los datos se rellenan desde la fuente remota seleccionada a continuación." -#: netbox/extras/forms/model_forms.py:612 +#: extras/forms/model_forms.py:612 msgid "Must specify either local data or a data file" msgstr "Debe especificar datos locales o un archivo de datos" -#: netbox/extras/forms/model_forms.py:631 -#: netbox/templates/core/datafile.html:55 +#: extras/forms/model_forms.py:631 templates/core/datafile.html:55 msgid "Content" msgstr "Contenido" -#: netbox/extras/forms/reports.py:17 netbox/extras/forms/scripts.py:23 +#: extras/forms/reports.py:17 extras/forms/scripts.py:23 msgid "Schedule at" msgstr "Programe en" -#: netbox/extras/forms/reports.py:18 +#: extras/forms/reports.py:18 msgid "Schedule execution of report to a set time" msgstr "Programe la ejecución del informe a una hora determinada" -#: netbox/extras/forms/reports.py:23 netbox/extras/forms/scripts.py:29 +#: extras/forms/reports.py:23 extras/forms/scripts.py:29 msgid "Recurs every" msgstr "Se repite cada" -#: netbox/extras/forms/reports.py:27 +#: extras/forms/reports.py:27 msgid "Interval at which this report is re-run (in minutes)" msgstr "Intervalo en el que se vuelve a ejecutar este informe (en minutos)" -#: netbox/extras/forms/reports.py:35 netbox/extras/forms/scripts.py:41 +#: extras/forms/reports.py:35 extras/forms/scripts.py:41 #, python-brace-format msgid " (current time: {now})" msgstr " (hora actual: {now})" -#: netbox/extras/forms/reports.py:45 netbox/extras/forms/scripts.py:51 +#: extras/forms/reports.py:45 extras/forms/scripts.py:51 msgid "Scheduled time must be in the future." msgstr "La hora programada debe estar en el futuro." -#: netbox/extras/forms/scripts.py:17 +#: extras/forms/scripts.py:17 msgid "Commit changes" msgstr "Confirmar cambios" -#: netbox/extras/forms/scripts.py:18 +#: extras/forms/scripts.py:18 msgid "Commit changes to the database (uncheck for a dry-run)" msgstr "" "Confirme los cambios en la base de datos (desactive la casilla para una " "ejecución en seco)" -#: netbox/extras/forms/scripts.py:24 +#: extras/forms/scripts.py:24 msgid "Schedule execution of script to a set time" msgstr "Programe la ejecución del script a una hora determinada" -#: netbox/extras/forms/scripts.py:33 +#: extras/forms/scripts.py:33 msgid "Interval at which this script is re-run (in minutes)" msgstr "Intervalo en el que se vuelve a ejecutar este script (en minutos)" -#: netbox/extras/jobs.py:49 +#: extras/jobs.py:49 msgid "Database changes have been reverted automatically." msgstr "Los cambios en la base de datos se han revertido automáticamente." -#: netbox/extras/jobs.py:56 +#: extras/jobs.py:55 msgid "Script aborted with error: " msgstr "Secuencia de comandos abortada con un error: " -#: netbox/extras/jobs.py:66 +#: extras/jobs.py:65 msgid "An exception occurred: " msgstr "Se ha producido una excepción: " -#: netbox/extras/jobs.py:71 +#: extras/jobs.py:70 msgid "Database changes have been reverted due to error." msgstr "Los cambios en la base de datos se han revertido debido a un error." -#: netbox/extras/management/commands/reindex.py:66 +#: extras/management/commands/reindex.py:66 msgid "No indexers found!" msgstr "¡No se encontró ningún indexador!" -#: netbox/extras/models/configs.py:130 +#: extras/models/configs.py:130 msgid "config context" msgstr "contexto de configuración" -#: netbox/extras/models/configs.py:131 +#: extras/models/configs.py:131 msgid "config contexts" msgstr "contextos de configuración" -#: netbox/extras/models/configs.py:149 netbox/extras/models/configs.py:205 +#: extras/models/configs.py:149 extras/models/configs.py:205 msgid "JSON data must be in object form. Example:" msgstr "Los datos JSON deben estar en forma de objeto. Ejemplo:" -#: netbox/extras/models/configs.py:169 +#: extras/models/configs.py:169 msgid "" "Local config context data takes precedence over source contexts in the final" " rendered config context" @@ -8206,19 +7648,19 @@ msgstr "" "Los datos del contexto de configuración local tienen prioridad sobre los " "contextos de origen en el contexto de configuración renderizado final." -#: netbox/extras/models/configs.py:224 +#: extras/models/configs.py:224 msgid "template code" msgstr "código de plantilla" -#: netbox/extras/models/configs.py:225 +#: extras/models/configs.py:225 msgid "Jinja2 template code." msgstr "Código de plantilla Jinja2." -#: netbox/extras/models/configs.py:228 +#: extras/models/configs.py:228 msgid "environment parameters" msgstr "parámetros ambientales" -#: netbox/extras/models/configs.py:233 +#: extras/models/configs.py:233 msgid "" "Any additional" @@ -8228,43 +7670,43 @@ msgstr "" "href=\"https://jinja.palletsprojects.com/en/3.1.x/api/#jinja2.Environment\">parámetros" " adicionales para pasar al construir el entorno Jinja2." -#: netbox/extras/models/configs.py:240 +#: extras/models/configs.py:240 msgid "config template" msgstr "plantilla de configuración" -#: netbox/extras/models/configs.py:241 +#: extras/models/configs.py:241 msgid "config templates" msgstr "plantillas de configuración" -#: netbox/extras/models/customfields.py:75 +#: extras/models/customfields.py:75 msgid "The object(s) to which this field applies." msgstr "Los objetos a los que se aplica este campo." -#: netbox/extras/models/customfields.py:82 +#: extras/models/customfields.py:82 msgid "The type of data this custom field holds" msgstr "El tipo de datos que contiene este campo personalizado" -#: netbox/extras/models/customfields.py:89 +#: extras/models/customfields.py:89 msgid "The type of NetBox object this field maps to (for object fields)" msgstr "" "El tipo de objeto NetBox al que se asigna este campo (para campos de " "objetos)" -#: netbox/extras/models/customfields.py:95 +#: extras/models/customfields.py:95 msgid "Internal field name" msgstr "Nombre del campo interno" -#: netbox/extras/models/customfields.py:99 +#: extras/models/customfields.py:99 msgid "Only alphanumeric characters and underscores are allowed." msgstr "Solo se permiten caracteres alfanuméricos y guiones bajos." -#: netbox/extras/models/customfields.py:104 +#: extras/models/customfields.py:104 msgid "Double underscores are not permitted in custom field names." msgstr "" "No se permiten los guiones dobles de subrayado en los nombres de campo " "personalizados." -#: netbox/extras/models/customfields.py:115 +#: extras/models/customfields.py:115 msgid "" "Name of the field as displayed to users (if not provided, 'the field's name " "will be used)" @@ -8272,19 +7714,19 @@ msgstr "" "Nombre del campo tal como se muestra a los usuarios (si no se proporciona, " "se usará el nombre del campo)" -#: netbox/extras/models/customfields.py:119 netbox/extras/models/models.py:317 +#: extras/models/customfields.py:119 extras/models/models.py:317 msgid "group name" msgstr "nombre del grupo" -#: netbox/extras/models/customfields.py:122 +#: extras/models/customfields.py:122 msgid "Custom fields within the same group will be displayed together" msgstr "Los campos personalizados del mismo grupo se mostrarán juntos" -#: netbox/extras/models/customfields.py:130 +#: extras/models/customfields.py:130 msgid "required" msgstr "requerido" -#: netbox/extras/models/customfields.py:132 +#: extras/models/customfields.py:132 msgid "" "This field is required when creating new objects or editing an existing " "object." @@ -8292,19 +7734,19 @@ msgstr "" "Este campo es obligatorio para crear objetos nuevos o editar un objeto " "existente." -#: netbox/extras/models/customfields.py:135 +#: extras/models/customfields.py:135 msgid "must be unique" msgstr "debe ser único" -#: netbox/extras/models/customfields.py:137 +#: extras/models/customfields.py:137 msgid "The value of this field must be unique for the assigned object" msgstr "El valor de este campo debe ser único para el objeto asignado" -#: netbox/extras/models/customfields.py:140 +#: extras/models/customfields.py:140 msgid "search weight" msgstr "peso de búsqueda" -#: netbox/extras/models/customfields.py:143 +#: extras/models/customfields.py:143 msgid "" "Weighting for search. Lower values are considered more important. Fields " "with a search weight of zero will be ignored." @@ -8312,11 +7754,11 @@ msgstr "" "Ponderación para la búsqueda. Los valores más bajos se consideran más " "importantes. Los campos con un peso de búsqueda de cero se ignorarán." -#: netbox/extras/models/customfields.py:148 +#: extras/models/customfields.py:148 msgid "filter logic" msgstr "lógica de filtros" -#: netbox/extras/models/customfields.py:152 +#: extras/models/customfields.py:152 msgid "" "Loose matches any instance of a given string; exact matches the entire " "field." @@ -8324,11 +7766,11 @@ msgstr "" "Loose coincide con cualquier instancia de una cadena determinada; exact " "coincide con todo el campo." -#: netbox/extras/models/customfields.py:155 +#: extras/models/customfields.py:155 msgid "default" msgstr "predeterminado" -#: netbox/extras/models/customfields.py:159 +#: extras/models/customfields.py:159 msgid "" "Default value for the field (must be a JSON value). Encapsulate strings with" " double quotes (e.g. \"Foo\")." @@ -8336,7 +7778,7 @@ msgstr "" "Valor predeterminado para el campo (debe ser un valor JSON). Encapsula " "cadenas con comillas dobles (por ejemplo, «Foo»)." -#: netbox/extras/models/customfields.py:166 +#: extras/models/customfields.py:166 msgid "" "Filter the object selection choices using a query_params dict (must be a " "JSON value).Encapsulate strings with double quotes (e.g. \"Foo\")." @@ -8345,35 +7787,35 @@ msgstr "" "query_params (debe ser un valor JSON). Encapsula cadenas con comillas dobles" " (por ejemplo, «Foo»)." -#: netbox/extras/models/customfields.py:172 +#: extras/models/customfields.py:172 msgid "display weight" msgstr "peso de la pantalla" -#: netbox/extras/models/customfields.py:173 +#: extras/models/customfields.py:173 msgid "Fields with higher weights appear lower in a form." msgstr "Los campos con pesos más altos aparecen más abajo en un formulario." -#: netbox/extras/models/customfields.py:178 +#: extras/models/customfields.py:178 msgid "minimum value" msgstr "valor mínimo" -#: netbox/extras/models/customfields.py:179 +#: extras/models/customfields.py:179 msgid "Minimum allowed value (for numeric fields)" msgstr "Valor mínimo permitido (para campos numéricos)" -#: netbox/extras/models/customfields.py:184 +#: extras/models/customfields.py:184 msgid "maximum value" msgstr "valor máximo" -#: netbox/extras/models/customfields.py:185 +#: extras/models/customfields.py:185 msgid "Maximum allowed value (for numeric fields)" msgstr "Valor máximo permitido (para campos numéricos)" -#: netbox/extras/models/customfields.py:191 +#: extras/models/customfields.py:191 msgid "validation regex" msgstr "expresión regular de validación" -#: netbox/extras/models/customfields.py:193 +#: extras/models/customfields.py:193 #, python-brace-format msgid "" "Regular expression to enforce on text field values. Use ^ and $ to force " @@ -8384,198 +7826,196 @@ msgstr "" "y $ para forzar la coincidencia de toda la cadena. Por ejemplo, ^ " "[A-Z]{3}$ limitará los valores a exactamente tres letras mayúsculas." -#: netbox/extras/models/customfields.py:201 +#: extras/models/customfields.py:201 msgid "choice set" msgstr "conjunto de opciones" -#: netbox/extras/models/customfields.py:210 +#: extras/models/customfields.py:210 msgid "Specifies whether the custom field is displayed in the UI" msgstr "" "Especifica si el campo personalizado se muestra en la interfaz de usuario" -#: netbox/extras/models/customfields.py:217 +#: extras/models/customfields.py:217 msgid "Specifies whether the custom field value can be edited in the UI" msgstr "" "Especifica si el valor del campo personalizado se puede editar en la " "interfaz de usuario" -#: netbox/extras/models/customfields.py:221 +#: extras/models/customfields.py:221 msgid "is cloneable" msgstr "es clonable" -#: netbox/extras/models/customfields.py:222 +#: extras/models/customfields.py:222 msgid "Replicate this value when cloning objects" msgstr "Replique este valor al clonar objetos" -#: netbox/extras/models/customfields.py:239 +#: extras/models/customfields.py:239 msgid "custom field" msgstr "campo personalizado" -#: netbox/extras/models/customfields.py:240 +#: extras/models/customfields.py:240 msgid "custom fields" msgstr "campos personalizados" -#: netbox/extras/models/customfields.py:329 +#: extras/models/customfields.py:329 #, python-brace-format msgid "Invalid default value \"{value}\": {error}" msgstr "Valor predeterminado no válido»{value}«: {error}" -#: netbox/extras/models/customfields.py:336 +#: extras/models/customfields.py:336 msgid "A minimum value may be set only for numeric fields" msgstr "Solo se puede establecer un valor mínimo para los campos numéricos" -#: netbox/extras/models/customfields.py:338 +#: extras/models/customfields.py:338 msgid "A maximum value may be set only for numeric fields" msgstr "Solo se puede establecer un valor máximo para los campos numéricos" -#: netbox/extras/models/customfields.py:348 +#: extras/models/customfields.py:348 msgid "" "Regular expression validation is supported only for text and URL fields" msgstr "" "La validación de expresiones regulares solo se admite para campos de texto y" " URL" -#: netbox/extras/models/customfields.py:354 +#: extras/models/customfields.py:354 msgid "Uniqueness cannot be enforced for boolean fields" msgstr "La unicidad no se puede aplicar a los campos booleanos" -#: netbox/extras/models/customfields.py:364 +#: extras/models/customfields.py:364 msgid "Selection fields must specify a set of choices." msgstr "Los campos de selección deben especificar un conjunto de opciones." -#: netbox/extras/models/customfields.py:368 +#: extras/models/customfields.py:368 msgid "Choices may be set only on selection fields." msgstr "Las elecciones solo se pueden establecer en los campos de selección." -#: netbox/extras/models/customfields.py:375 +#: extras/models/customfields.py:375 msgid "Object fields must define an object type." msgstr "Los campos de objeto deben definir un tipo de objeto." -#: netbox/extras/models/customfields.py:379 +#: extras/models/customfields.py:379 #, python-brace-format msgid "{type} fields may not define an object type." msgstr "{type} es posible que los campos no definan un tipo de objeto." -#: netbox/extras/models/customfields.py:386 +#: extras/models/customfields.py:386 msgid "A related object filter can be defined only for object fields." msgstr "" "Un filtro de objetos relacionados solo se puede definir para los campos de " "objetos." -#: netbox/extras/models/customfields.py:390 +#: extras/models/customfields.py:390 msgid "Filter must be defined as a dictionary mapping attributes to values." msgstr "" "El filtro debe definirse como un diccionario que asigna atributos a valores." -#: netbox/extras/models/customfields.py:469 +#: extras/models/customfields.py:469 msgid "True" msgstr "Cierto" -#: netbox/extras/models/customfields.py:470 +#: extras/models/customfields.py:470 msgid "False" msgstr "Falso" -#: netbox/extras/models/customfields.py:560 +#: extras/models/customfields.py:560 #, python-brace-format msgid "Values must match this regex: {regex}" msgstr "" "Los valores deben coincidir con esta expresión regular: {regex}" -#: netbox/extras/models/customfields.py:654 +#: extras/models/customfields.py:654 msgid "Value must be a string." msgstr "El valor debe ser una cadena." -#: netbox/extras/models/customfields.py:656 +#: extras/models/customfields.py:656 #, python-brace-format msgid "Value must match regex '{regex}'" msgstr "El valor debe coincidir con la expresión regular '{regex}'" -#: netbox/extras/models/customfields.py:661 +#: extras/models/customfields.py:661 msgid "Value must be an integer." msgstr "El valor debe ser un número entero." -#: netbox/extras/models/customfields.py:664 -#: netbox/extras/models/customfields.py:679 +#: extras/models/customfields.py:664 extras/models/customfields.py:679 #, python-brace-format msgid "Value must be at least {minimum}" msgstr "El valor debe ser al menos {minimum}" -#: netbox/extras/models/customfields.py:668 -#: netbox/extras/models/customfields.py:683 +#: extras/models/customfields.py:668 extras/models/customfields.py:683 #, python-brace-format msgid "Value must not exceed {maximum}" msgstr "El valor no debe superar {maximum}" -#: netbox/extras/models/customfields.py:676 +#: extras/models/customfields.py:676 msgid "Value must be a decimal." msgstr "El valor debe ser decimal." -#: netbox/extras/models/customfields.py:688 +#: extras/models/customfields.py:688 msgid "Value must be true or false." msgstr "El valor debe ser verdadero o falso." -#: netbox/extras/models/customfields.py:696 +#: extras/models/customfields.py:696 msgid "Date values must be in ISO 8601 format (YYYY-MM-DD)." msgstr "Los valores de fecha deben estar en formato ISO 8601 (AAAA-MM-DD)." -#: netbox/extras/models/customfields.py:705 +#: extras/models/customfields.py:705 msgid "Date and time values must be in ISO 8601 format (YYYY-MM-DD HH:MM:SS)." msgstr "" "Los valores de fecha y hora deben estar en formato ISO 8601 (AAAA-MM-DD " "HH:MM:SS)." -#: netbox/extras/models/customfields.py:712 +#: extras/models/customfields.py:712 #, python-brace-format msgid "Invalid choice ({value}) for choice set {choiceset}." msgstr "" "Elección no válida ({value}) para el conjunto de opciones {choiceset}." -#: netbox/extras/models/customfields.py:722 +#: extras/models/customfields.py:722 #, python-brace-format msgid "Invalid choice(s) ({value}) for choice set {choiceset}." msgstr "" "Elecciones no válidas ({value}) para el conjunto de opciones {choiceset}." -#: netbox/extras/models/customfields.py:731 +#: extras/models/customfields.py:731 #, python-brace-format msgid "Value must be an object ID, not {type}" msgstr "El valor debe ser un ID de objeto, no {type}" -#: netbox/extras/models/customfields.py:737 +#: extras/models/customfields.py:737 #, python-brace-format msgid "Value must be a list of object IDs, not {type}" msgstr "El valor debe ser una lista de identificadores de objetos, no {type}" -#: netbox/extras/models/customfields.py:741 +#: extras/models/customfields.py:741 #, python-brace-format msgid "Found invalid object ID: {id}" msgstr "Se encontró un ID de objeto no válido: {id}" -#: netbox/extras/models/customfields.py:744 +#: extras/models/customfields.py:744 msgid "Required field cannot be empty." msgstr "El campo obligatorio no puede estar vacío." -#: netbox/extras/models/customfields.py:763 +#: extras/models/customfields.py:763 msgid "Base set of predefined choices (optional)" msgstr "Conjunto básico de opciones predefinidas (opcional)" -#: netbox/extras/models/customfields.py:775 +#: extras/models/customfields.py:775 msgid "Choices are automatically ordered alphabetically" msgstr "Las opciones se ordenan alfabéticamente automáticamente" -#: netbox/extras/models/customfields.py:782 +#: extras/models/customfields.py:782 msgid "custom field choice set" msgstr "conjunto de opciones de campo personalizadas" -#: netbox/extras/models/customfields.py:783 +#: extras/models/customfields.py:783 msgid "custom field choice sets" msgstr "conjuntos de opciones de campo personalizadas" -#: netbox/extras/models/customfields.py:825 +#: extras/models/customfields.py:825 msgid "Must define base or extra choices." msgstr "Debe definir opciones básicas o adicionales." -#: netbox/extras/models/customfields.py:849 +#: extras/models/customfields.py:849 #, python-brace-format msgid "" "Cannot remove choice {choice} as there are {model} objects which reference " @@ -8584,60 +8024,60 @@ msgstr "" "No se puede eliminar la opción {choice} como los hay {model} objetos que " "hacen referencia a él." -#: netbox/extras/models/dashboard.py:18 +#: extras/models/dashboard.py:18 msgid "layout" msgstr "diseño" -#: netbox/extras/models/dashboard.py:22 +#: extras/models/dashboard.py:22 msgid "config" msgstr "configuración" -#: netbox/extras/models/dashboard.py:27 +#: extras/models/dashboard.py:27 msgid "dashboard" msgstr "salpicadero" -#: netbox/extras/models/dashboard.py:28 +#: extras/models/dashboard.py:28 msgid "dashboards" msgstr "tableros" -#: netbox/extras/models/models.py:52 +#: extras/models/models.py:52 msgid "object types" msgstr "tipos de objetos" -#: netbox/extras/models/models.py:53 +#: extras/models/models.py:53 msgid "The object(s) to which this rule applies." msgstr "Los objetos a los que se aplica esta regla." -#: netbox/extras/models/models.py:67 +#: extras/models/models.py:67 msgid "The types of event which will trigger this rule." msgstr "Los tipos de eventos que activarán esta regla." -#: netbox/extras/models/models.py:74 +#: extras/models/models.py:74 msgid "conditions" msgstr "condiciones" -#: netbox/extras/models/models.py:77 +#: extras/models/models.py:77 msgid "" "A set of conditions which determine whether the event will be generated." msgstr "Conjunto de condiciones que determinan si se generará el evento." -#: netbox/extras/models/models.py:85 +#: extras/models/models.py:85 msgid "action type" msgstr "tipo de acción" -#: netbox/extras/models/models.py:104 +#: extras/models/models.py:104 msgid "Additional data to pass to the action object" msgstr "Datos adicionales para pasar al objeto de acción" -#: netbox/extras/models/models.py:116 +#: extras/models/models.py:116 msgid "event rule" msgstr "regla de evento" -#: netbox/extras/models/models.py:117 +#: extras/models/models.py:117 msgid "event rules" msgstr "reglas del evento" -#: netbox/extras/models/models.py:166 +#: extras/models/models.py:166 msgid "" "This URL will be called using the HTTP method defined when the webhook is " "called. Jinja2 template processing is supported with the same context as the" @@ -8647,7 +8087,7 @@ msgstr "" "webhook. El procesamiento de plantillas de Jinja2 se admite en el mismo " "contexto que el cuerpo de la solicitud." -#: netbox/extras/models/models.py:181 +#: extras/models/models.py:181 msgid "" "The complete list of official content types is available aquí." -#: netbox/extras/models/models.py:186 +#: extras/models/models.py:186 msgid "additional headers" msgstr "encabezados adicionales" -#: netbox/extras/models/models.py:189 +#: extras/models/models.py:189 msgid "" "User-supplied HTTP headers to be sent with the request in addition to the " "HTTP content type. Headers should be defined in the format Name: " @@ -8674,11 +8114,11 @@ msgstr "" " Jinja2 se admite en el mismo contexto que el cuerpo de la solicitud (a " "continuación)." -#: netbox/extras/models/models.py:195 +#: extras/models/models.py:195 msgid "body template" msgstr "plantilla corporal" -#: netbox/extras/models/models.py:198 +#: extras/models/models.py:198 msgid "" "Jinja2 template for a custom request body. If blank, a JSON object " "representing the change will be included. Available context data includes: " @@ -8691,11 +8131,11 @@ msgstr "" "marca de tiempo, nombre de usuario, " "id_solicitud, y dato." -#: netbox/extras/models/models.py:204 +#: extras/models/models.py:204 msgid "secret" msgstr "secreto" -#: netbox/extras/models/models.py:208 +#: extras/models/models.py:208 msgid "" "When provided, the request will include a X-Hook-Signature " "header containing a HMAC hex digest of the payload body using the secret as " @@ -8706,16 +8146,16 @@ msgstr "" "carga utilizando el secreto como clave. El secreto no se transmite en la " "solicitud." -#: netbox/extras/models/models.py:215 +#: extras/models/models.py:215 msgid "Enable SSL certificate verification. Disable with caution!" msgstr "" "Habilita la verificación del certificado SSL. ¡Desactívala con precaución!" -#: netbox/extras/models/models.py:221 netbox/templates/extras/webhook.html:51 +#: extras/models/models.py:221 templates/extras/webhook.html:51 msgid "CA File Path" msgstr "Ruta del archivo CA" -#: netbox/extras/models/models.py:223 +#: extras/models/models.py:223 msgid "" "The specific CA certificate file to use for SSL verification. Leave blank to" " use the system defaults." @@ -8724,65 +8164,65 @@ msgstr "" "verificación SSL. Déjelo en blanco para usar los valores predeterminados del" " sistema." -#: netbox/extras/models/models.py:234 +#: extras/models/models.py:234 msgid "webhook" msgstr "webhook" -#: netbox/extras/models/models.py:235 +#: extras/models/models.py:235 msgid "webhooks" msgstr "webhooks" -#: netbox/extras/models/models.py:253 +#: extras/models/models.py:253 msgid "Do not specify a CA certificate file if SSL verification is disabled." msgstr "" "No especifique un archivo de certificado de CA si la verificación SSL está " "deshabilitada." -#: netbox/extras/models/models.py:293 +#: extras/models/models.py:293 msgid "The object type(s) to which this link applies." msgstr "Los tipos de objeto a los que se aplica este enlace." -#: netbox/extras/models/models.py:305 +#: extras/models/models.py:305 msgid "link text" msgstr "texto de enlace" -#: netbox/extras/models/models.py:306 +#: extras/models/models.py:306 msgid "Jinja2 template code for link text" msgstr "Código de plantilla Jinja2 para texto de enlace" -#: netbox/extras/models/models.py:309 +#: extras/models/models.py:309 msgid "link URL" msgstr "URL del enlace" -#: netbox/extras/models/models.py:310 +#: extras/models/models.py:310 msgid "Jinja2 template code for link URL" msgstr "Código de plantilla Jinja2 para la URL del enlace" -#: netbox/extras/models/models.py:320 +#: extras/models/models.py:320 msgid "Links with the same group will appear as a dropdown menu" msgstr "Los enlaces con el mismo grupo aparecerán en un menú desplegable" -#: netbox/extras/models/models.py:330 +#: extras/models/models.py:330 msgid "new window" msgstr "ventana nueva" -#: netbox/extras/models/models.py:332 +#: extras/models/models.py:332 msgid "Force link to open in a new window" msgstr "Forzar que el enlace se abra en una ventana nueva" -#: netbox/extras/models/models.py:341 +#: extras/models/models.py:341 msgid "custom link" msgstr "enlace personalizado" -#: netbox/extras/models/models.py:342 +#: extras/models/models.py:342 msgid "custom links" msgstr "enlaces personalizados" -#: netbox/extras/models/models.py:389 +#: extras/models/models.py:389 msgid "The object type(s) to which this template applies." msgstr "Los tipos de objeto a los que se aplica esta plantilla." -#: netbox/extras/models/models.py:402 +#: extras/models/models.py:402 msgid "" "Jinja2 template code. The list of objects being exported is passed as a " "context variable named queryset." @@ -8790,1092 +8230,1057 @@ msgstr "" "Código de plantilla Jinja2. La lista de objetos que se exportan se pasa como" " una variable de contexto denominada conjunto de consultas." -#: netbox/extras/models/models.py:410 +#: extras/models/models.py:410 msgid "Defaults to text/plain; charset=utf-8" msgstr "El valor predeterminado es texto/plano; charset=utf-8" -#: netbox/extras/models/models.py:413 +#: extras/models/models.py:413 msgid "file extension" msgstr "extensión de archivo" -#: netbox/extras/models/models.py:416 +#: extras/models/models.py:416 msgid "Extension to append to the rendered filename" msgstr "Extensión para añadir al nombre de archivo renderizado" -#: netbox/extras/models/models.py:419 +#: extras/models/models.py:419 msgid "as attachment" msgstr "como adjunto" -#: netbox/extras/models/models.py:421 +#: extras/models/models.py:421 msgid "Download file as attachment" msgstr "Descargar archivo como archivo adjunto" -#: netbox/extras/models/models.py:430 +#: extras/models/models.py:430 msgid "export template" msgstr "plantilla de exportación" -#: netbox/extras/models/models.py:431 +#: extras/models/models.py:431 msgid "export templates" msgstr "plantillas de exportación" -#: netbox/extras/models/models.py:448 +#: extras/models/models.py:448 #, python-brace-format msgid "\"{name}\" is a reserved name. Please choose a different name." msgstr "«{name}\"es un nombre reservado. Elija un nombre diferente." -#: netbox/extras/models/models.py:498 +#: extras/models/models.py:498 msgid "The object type(s) to which this filter applies." msgstr "Los tipos de objeto a los que se aplica este filtro." -#: netbox/extras/models/models.py:530 +#: extras/models/models.py:530 msgid "shared" msgstr "compartido" -#: netbox/extras/models/models.py:543 +#: extras/models/models.py:543 msgid "saved filter" msgstr "filtro guardado" -#: netbox/extras/models/models.py:544 +#: extras/models/models.py:544 msgid "saved filters" msgstr "filtros guardados" -#: netbox/extras/models/models.py:562 +#: extras/models/models.py:562 msgid "Filter parameters must be stored as a dictionary of keyword arguments." msgstr "" "Los parámetros de filtro se deben almacenar como un diccionario de " "argumentos de palabras clave." -#: netbox/extras/models/models.py:590 +#: extras/models/models.py:590 msgid "image height" msgstr "altura de la imagen" -#: netbox/extras/models/models.py:593 +#: extras/models/models.py:593 msgid "image width" msgstr "ancho de imagen" -#: netbox/extras/models/models.py:610 +#: extras/models/models.py:610 msgid "image attachment" msgstr "adjunto de imagen" -#: netbox/extras/models/models.py:611 +#: extras/models/models.py:611 msgid "image attachments" msgstr "archivos adjuntos de imágenes" -#: netbox/extras/models/models.py:625 +#: extras/models/models.py:625 #, python-brace-format msgid "Image attachments cannot be assigned to this object type ({type})." msgstr "" "Los archivos adjuntos de imágenes no se pueden asignar a este tipo de objeto" " ({type})." -#: netbox/extras/models/models.py:688 +#: extras/models/models.py:688 msgid "kind" msgstr "amable" -#: netbox/extras/models/models.py:702 +#: extras/models/models.py:702 msgid "journal entry" msgstr "entrada de diario" -#: netbox/extras/models/models.py:703 +#: extras/models/models.py:703 msgid "journal entries" msgstr "entradas de diario" -#: netbox/extras/models/models.py:718 +#: extras/models/models.py:718 #, python-brace-format msgid "Journaling is not supported for this object type ({type})." msgstr "No se admite el registro en diario para este tipo de objeto ({type})." -#: netbox/extras/models/models.py:760 +#: extras/models/models.py:760 msgid "bookmark" msgstr "marcalibros" -#: netbox/extras/models/models.py:761 +#: extras/models/models.py:761 msgid "bookmarks" msgstr "marcapáginas" -#: netbox/extras/models/models.py:774 +#: extras/models/models.py:774 #, python-brace-format msgid "Bookmarks cannot be assigned to this object type ({type})." msgstr "No se pueden asignar marcadores a este tipo de objeto ({type})." -#: netbox/extras/models/notifications.py:43 +#: extras/models/notifications.py:43 msgid "read" msgstr "leer" -#: netbox/extras/models/notifications.py:66 +#: extras/models/notifications.py:66 msgid "event" msgstr "acto" -#: netbox/extras/models/notifications.py:84 +#: extras/models/notifications.py:84 msgid "notification" msgstr "notificación" -#: netbox/extras/models/notifications.py:85 +#: extras/models/notifications.py:85 msgid "notifications" msgstr "notificaciones" -#: netbox/extras/models/notifications.py:99 -#: netbox/extras/models/notifications.py:234 +#: extras/models/notifications.py:99 extras/models/notifications.py:234 #, python-brace-format msgid "Objects of this type ({type}) do not support notifications." msgstr "Objetos de este tipo ({type}) no admiten notificaciones." -#: netbox/extras/models/notifications.py:137 netbox/users/models/users.py:58 -#: netbox/users/models/users.py:77 +#: extras/models/notifications.py:137 users/models/users.py:58 +#: users/models/users.py:77 msgid "groups" msgstr "grupos" -#: netbox/extras/models/notifications.py:143 netbox/users/models/users.py:93 +#: extras/models/notifications.py:143 users/models/users.py:93 msgid "users" msgstr "usuarios" -#: netbox/extras/models/notifications.py:152 +#: extras/models/notifications.py:152 msgid "notification group" msgstr "grupo de notificaciones" -#: netbox/extras/models/notifications.py:153 +#: extras/models/notifications.py:153 msgid "notification groups" msgstr "grupos de notificaciones" -#: netbox/extras/models/notifications.py:217 +#: extras/models/notifications.py:217 msgid "subscription" msgstr "suscripción" -#: netbox/extras/models/notifications.py:218 +#: extras/models/notifications.py:218 msgid "subscriptions" msgstr "suscripciones" -#: netbox/extras/models/scripts.py:42 +#: extras/models/scripts.py:42 msgid "is executable" msgstr "es ejecutable" -#: netbox/extras/models/scripts.py:64 +#: extras/models/scripts.py:64 msgid "script" msgstr "secuencia de comandos" -#: netbox/extras/models/scripts.py:65 +#: extras/models/scripts.py:65 msgid "scripts" msgstr "scripts" -#: netbox/extras/models/scripts.py:111 +#: extras/models/scripts.py:111 msgid "script module" msgstr "módulo de script" -#: netbox/extras/models/scripts.py:112 +#: extras/models/scripts.py:112 msgid "script modules" msgstr "módulos de script" -#: netbox/extras/models/search.py:22 +#: extras/models/search.py:22 msgid "timestamp" msgstr "marca de tiempo" -#: netbox/extras/models/search.py:37 +#: extras/models/search.py:37 msgid "field" msgstr "campo" -#: netbox/extras/models/search.py:45 +#: extras/models/search.py:45 msgid "value" msgstr "valor" -#: netbox/extras/models/search.py:56 +#: extras/models/search.py:56 msgid "cached value" msgstr "valor almacenado en caché" -#: netbox/extras/models/search.py:57 +#: extras/models/search.py:57 msgid "cached values" msgstr "valores en caché" -#: netbox/extras/models/staging.py:44 +#: extras/models/staging.py:44 msgid "branch" msgstr "sucursal" -#: netbox/extras/models/staging.py:45 +#: extras/models/staging.py:45 msgid "branches" msgstr "sucursales" -#: netbox/extras/models/staging.py:97 +#: extras/models/staging.py:97 msgid "staged change" msgstr "cambio por etapas" -#: netbox/extras/models/staging.py:98 +#: extras/models/staging.py:98 msgid "staged changes" msgstr "cambios por etapas" -#: netbox/extras/models/tags.py:40 +#: extras/models/tags.py:40 msgid "The object type(s) to which this tag can be applied." msgstr "Los tipos de objeto a los que se puede aplicar esta etiqueta." -#: netbox/extras/models/tags.py:49 +#: extras/models/tags.py:49 msgid "tag" msgstr "etiqueta" -#: netbox/extras/models/tags.py:50 +#: extras/models/tags.py:50 msgid "tags" msgstr "etiquetas" -#: netbox/extras/models/tags.py:78 +#: extras/models/tags.py:78 msgid "tagged item" msgstr "artículo etiquetado" -#: netbox/extras/models/tags.py:79 +#: extras/models/tags.py:79 msgid "tagged items" msgstr "artículos etiquetados" -#: netbox/extras/scripts.py:429 +#: extras/scripts.py:429 msgid "Script Data" msgstr "Datos del script" -#: netbox/extras/scripts.py:433 +#: extras/scripts.py:433 msgid "Script Execution Parameters" msgstr "Parámetros de ejecución del script" -#: netbox/extras/tables/columns.py:12 -#: netbox/templates/htmx/notifications.html:18 +#: extras/tables/columns.py:12 templates/htmx/notifications.html:18 msgid "Dismiss" msgstr "Descartar" -#: netbox/extras/tables/tables.py:62 netbox/extras/tables/tables.py:159 -#: netbox/extras/tables/tables.py:184 netbox/extras/tables/tables.py:250 -#: netbox/extras/tables/tables.py:276 netbox/extras/tables/tables.py:412 -#: netbox/extras/tables/tables.py:446 -#: netbox/templates/extras/customfield.html:105 -#: netbox/templates/extras/eventrule.html:27 -#: netbox/templates/users/objectpermission.html:64 netbox/users/tables.py:80 +#: extras/tables/tables.py:62 extras/tables/tables.py:159 +#: extras/tables/tables.py:184 extras/tables/tables.py:250 +#: extras/tables/tables.py:276 extras/tables/tables.py:412 +#: extras/tables/tables.py:446 templates/extras/customfield.html:105 +#: templates/extras/eventrule.html:27 templates/users/objectpermission.html:64 +#: users/tables.py:80 msgid "Object Types" msgstr "Tipos de objetos" -#: netbox/extras/tables/tables.py:69 +#: extras/tables/tables.py:69 msgid "Validate Uniqueness" msgstr "Valide la singularidad" -#: netbox/extras/tables/tables.py:73 +#: extras/tables/tables.py:73 msgid "Visible" msgstr "Visible" -#: netbox/extras/tables/tables.py:76 +#: extras/tables/tables.py:76 msgid "Editable" msgstr "Editable" -#: netbox/extras/tables/tables.py:82 +#: extras/tables/tables.py:82 msgid "Related Object Type" msgstr "Tipo de objeto relacionado" -#: netbox/extras/tables/tables.py:86 -#: netbox/templates/extras/customfield.html:51 +#: extras/tables/tables.py:86 templates/extras/customfield.html:51 msgid "Choice Set" msgstr "Set de elección" -#: netbox/extras/tables/tables.py:94 +#: extras/tables/tables.py:94 msgid "Is Cloneable" msgstr "Se puede clonar" -#: netbox/extras/tables/tables.py:98 -#: netbox/templates/extras/customfield.html:118 +#: extras/tables/tables.py:98 templates/extras/customfield.html:118 msgid "Minimum Value" msgstr "Valor mínimo" -#: netbox/extras/tables/tables.py:101 -#: netbox/templates/extras/customfield.html:122 +#: extras/tables/tables.py:101 templates/extras/customfield.html:122 msgid "Maximum Value" msgstr "Valor máximo" -#: netbox/extras/tables/tables.py:104 +#: extras/tables/tables.py:104 msgid "Validation Regex" msgstr "Regex de validación" -#: netbox/extras/tables/tables.py:137 +#: extras/tables/tables.py:137 msgid "Count" msgstr "Contar" -#: netbox/extras/tables/tables.py:140 +#: extras/tables/tables.py:140 msgid "Order Alphabetically" msgstr "Ordenar alfabéticamente" -#: netbox/extras/tables/tables.py:165 -#: netbox/templates/extras/customlink.html:33 +#: extras/tables/tables.py:165 templates/extras/customlink.html:33 msgid "New Window" msgstr "Ventana nueva" -#: netbox/extras/tables/tables.py:187 +#: extras/tables/tables.py:187 msgid "As Attachment" msgstr "Como archivo adjunto" -#: netbox/extras/tables/tables.py:195 netbox/extras/tables/tables.py:487 -#: netbox/extras/tables/tables.py:522 netbox/templates/core/datafile.html:24 -#: netbox/templates/dcim/device/render_config.html:22 -#: netbox/templates/extras/configcontext.html:39 -#: netbox/templates/extras/configtemplate.html:31 -#: netbox/templates/extras/exporttemplate.html:45 -#: netbox/templates/generic/bulk_import.html:35 -#: netbox/templates/virtualization/virtualmachine/render_config.html:22 +#: extras/tables/tables.py:195 extras/tables/tables.py:487 +#: extras/tables/tables.py:522 templates/core/datafile.html:24 +#: templates/dcim/device/render_config.html:22 +#: templates/extras/configcontext.html:39 +#: templates/extras/configtemplate.html:31 +#: templates/extras/exporttemplate.html:45 +#: templates/generic/bulk_import.html:35 +#: templates/virtualization/virtualmachine/render_config.html:22 msgid "Data File" msgstr "Archivo de datos" -#: netbox/extras/tables/tables.py:200 netbox/extras/tables/tables.py:499 -#: netbox/extras/tables/tables.py:527 +#: extras/tables/tables.py:200 extras/tables/tables.py:499 +#: extras/tables/tables.py:527 msgid "Synced" msgstr "Sincronizado" -#: netbox/extras/tables/tables.py:227 +#: extras/tables/tables.py:227 msgid "Image" msgstr "Imagen" -#: netbox/extras/tables/tables.py:232 +#: extras/tables/tables.py:232 msgid "Size (Bytes)" msgstr "Tamaño (bytes)" -#: netbox/extras/tables/tables.py:339 +#: extras/tables/tables.py:339 msgid "Read" msgstr "Leer" -#: netbox/extras/tables/tables.py:382 +#: extras/tables/tables.py:382 msgid "SSL Validation" msgstr "Validación SSL" -#: netbox/extras/tables/tables.py:418 -#: netbox/templates/extras/eventrule.html:37 +#: extras/tables/tables.py:418 templates/extras/eventrule.html:37 msgid "Event Types" msgstr "Tipos de eventos" -#: netbox/extras/tables/tables.py:535 netbox/netbox/navigation/menu.py:77 -#: netbox/templates/dcim/devicerole.html:8 +#: extras/tables/tables.py:535 netbox/navigation/menu.py:77 +#: templates/dcim/devicerole.html:8 msgid "Device Roles" msgstr "Funciones del dispositivo" -#: netbox/extras/tables/tables.py:587 +#: extras/tables/tables.py:587 msgid "Comments (Short)" msgstr "Comentarios (cortos)" -#: netbox/extras/tables/tables.py:606 netbox/extras/tables/tables.py:640 +#: extras/tables/tables.py:606 extras/tables/tables.py:640 msgid "Line" msgstr "Línea" -#: netbox/extras/tables/tables.py:613 netbox/extras/tables/tables.py:650 +#: extras/tables/tables.py:613 extras/tables/tables.py:650 msgid "Level" msgstr "Nivel" -#: netbox/extras/tables/tables.py:619 netbox/extras/tables/tables.py:659 +#: extras/tables/tables.py:619 extras/tables/tables.py:659 msgid "Message" msgstr "Mensaje" -#: netbox/extras/tables/tables.py:643 +#: extras/tables/tables.py:643 msgid "Method" msgstr "Método" -#: netbox/extras/validators.py:15 +#: extras/validators.py:15 #, python-format msgid "Ensure this value is equal to %(limit_value)s." msgstr "Asegúrese de que este valor sea igual a %(limit_value)s." -#: netbox/extras/validators.py:26 +#: extras/validators.py:26 #, python-format msgid "Ensure this value does not equal %(limit_value)s." msgstr "Asegúrese de que este valor no sea igual %(limit_value)s." -#: netbox/extras/validators.py:37 +#: extras/validators.py:37 msgid "This field must be empty." msgstr "Este campo debe estar vacío." -#: netbox/extras/validators.py:52 +#: extras/validators.py:52 msgid "This field must not be empty." msgstr "Este campo no debe estar vacío." -#: netbox/extras/validators.py:94 +#: extras/validators.py:94 msgid "Validation rules must be passed as a dictionary" msgstr "Las reglas de validación se deben pasar como un diccionario" -#: netbox/extras/validators.py:119 +#: extras/validators.py:119 #, python-brace-format msgid "Custom validation failed for {attribute}: {exception}" msgstr "Fallo en la validación personalizada para {attribute}: {exception}" -#: netbox/extras/validators.py:133 +#: extras/validators.py:133 #, python-brace-format msgid "Invalid attribute \"{name}\" for request" msgstr "Atributo no válido»{name}«para solicitar" -#: netbox/extras/validators.py:150 +#: extras/validators.py:150 #, python-brace-format msgid "Invalid attribute \"{name}\" for {model}" msgstr "Atributo no válido»{name}«para {model}" -#: netbox/extras/views.py:960 +#: extras/views.py:960 msgid "Your dashboard has been reset." msgstr "Tu panel de control se ha restablecido." -#: netbox/extras/views.py:1006 +#: extras/views.py:1006 msgid "Added widget: " msgstr "Widget añadido: " -#: netbox/extras/views.py:1047 +#: extras/views.py:1047 msgid "Updated widget: " msgstr "Widget actualizado: " -#: netbox/extras/views.py:1083 +#: extras/views.py:1083 msgid "Deleted widget: " msgstr "Widget eliminado: " -#: netbox/extras/views.py:1085 +#: extras/views.py:1085 msgid "Error deleting widget: " msgstr "Error al eliminar el widget: " -#: netbox/extras/views.py:1172 +#: extras/views.py:1172 msgid "Unable to run script: RQ worker process not running." msgstr "" "No se puede ejecutar el script: el proceso de trabajo de RQ no se está " "ejecutando." -#: netbox/ipam/api/field_serializers.py:17 +#: ipam/api/field_serializers.py:17 msgid "Enter a valid IPv4 or IPv6 address with optional mask." msgstr "Introduzca una dirección IPv4 o IPv6 válida con máscara opcional." -#: netbox/ipam/api/field_serializers.py:24 +#: ipam/api/field_serializers.py:24 #, python-brace-format msgid "Invalid IP address format: {data}" msgstr "Formato de dirección IP no válido: {data}" -#: netbox/ipam/api/field_serializers.py:37 +#: ipam/api/field_serializers.py:37 msgid "Enter a valid IPv4 or IPv6 prefix and mask in CIDR notation." msgstr "" "Introduzca un prefijo y una máscara IPv4 o IPv6 válidos en notación CIDR." -#: netbox/ipam/api/field_serializers.py:44 +#: ipam/api/field_serializers.py:44 #, python-brace-format msgid "Invalid IP prefix format: {data}" msgstr "Formato de prefijo IP no válido: {data}" -#: netbox/ipam/api/views.py:358 +#: ipam/api/views.py:358 msgid "" "Insufficient space is available to accommodate the requested prefix size(s)" msgstr "" "No hay suficiente espacio disponible para los tamaños de prefijo solicitados" -#: netbox/ipam/choices.py:30 +#: ipam/choices.py:30 msgid "Container" msgstr "Contenedor" -#: netbox/ipam/choices.py:72 +#: ipam/choices.py:72 msgid "DHCP" msgstr "DHCP" -#: netbox/ipam/choices.py:73 +#: ipam/choices.py:73 msgid "SLAAC" msgstr "SLACO" -#: netbox/ipam/choices.py:89 +#: ipam/choices.py:89 msgid "Loopback" msgstr "Bucle invertido" -#: netbox/ipam/choices.py:91 +#: ipam/choices.py:91 msgid "Anycast" msgstr "Anycast" -#: netbox/ipam/choices.py:115 +#: ipam/choices.py:115 msgid "Standard" msgstr "Estándar" -#: netbox/ipam/choices.py:120 +#: ipam/choices.py:120 msgid "CheckPoint" msgstr "Punto de control" -#: netbox/ipam/choices.py:123 +#: ipam/choices.py:123 msgid "Cisco" msgstr "Cisco" -#: netbox/ipam/choices.py:137 +#: ipam/choices.py:137 msgid "Plaintext" msgstr "Texto plano" -#: netbox/ipam/fields.py:36 +#: ipam/fields.py:36 #, python-brace-format msgid "Invalid IP address format: {address}" msgstr "Formato de dirección IP no válido: {address}" -#: netbox/ipam/filtersets.py:48 netbox/vpn/filtersets.py:304 +#: ipam/filtersets.py:48 vpn/filtersets.py:304 msgid "Import target" msgstr "Objetivo de importación" -#: netbox/ipam/filtersets.py:54 netbox/vpn/filtersets.py:310 +#: ipam/filtersets.py:54 vpn/filtersets.py:310 msgid "Import target (name)" msgstr "Destino de importación (nombre)" -#: netbox/ipam/filtersets.py:59 netbox/vpn/filtersets.py:315 +#: ipam/filtersets.py:59 vpn/filtersets.py:315 msgid "Export target" msgstr "Objetivo de exportación" -#: netbox/ipam/filtersets.py:65 netbox/vpn/filtersets.py:321 +#: ipam/filtersets.py:65 vpn/filtersets.py:321 msgid "Export target (name)" msgstr "Destino de exportación (nombre)" -#: netbox/ipam/filtersets.py:86 +#: ipam/filtersets.py:86 msgid "Importing VRF" msgstr "Importación de VRF" -#: netbox/ipam/filtersets.py:92 +#: ipam/filtersets.py:92 msgid "Import VRF (RD)" msgstr "Importar VRF (RD)" -#: netbox/ipam/filtersets.py:97 +#: ipam/filtersets.py:97 msgid "Exporting VRF" msgstr "Exportación de VRF" -#: netbox/ipam/filtersets.py:103 +#: ipam/filtersets.py:103 msgid "Export VRF (RD)" msgstr "Exportar VRF (RD)" -#: netbox/ipam/filtersets.py:108 +#: ipam/filtersets.py:108 msgid "Importing L2VPN" msgstr "Importación de L2VPN" -#: netbox/ipam/filtersets.py:114 +#: ipam/filtersets.py:114 msgid "Importing L2VPN (identifier)" msgstr "Importación de L2VPN (identificador)" -#: netbox/ipam/filtersets.py:119 +#: ipam/filtersets.py:119 msgid "Exporting L2VPN" msgstr "Exportación de L2VPN" -#: netbox/ipam/filtersets.py:125 +#: ipam/filtersets.py:125 msgid "Exporting L2VPN (identifier)" msgstr "Exportación de L2VPN (identificador)" -#: netbox/ipam/filtersets.py:155 netbox/ipam/filtersets.py:281 -#: netbox/ipam/forms/model_forms.py:229 netbox/ipam/tables/ip.py:212 -#: netbox/templates/ipam/prefix.html:12 +#: ipam/filtersets.py:155 ipam/filtersets.py:281 ipam/forms/model_forms.py:229 +#: ipam/tables/ip.py:212 templates/ipam/prefix.html:12 msgid "Prefix" msgstr "Prefijo" -#: netbox/ipam/filtersets.py:159 netbox/ipam/filtersets.py:198 -#: netbox/ipam/filtersets.py:221 +#: ipam/filtersets.py:159 ipam/filtersets.py:198 ipam/filtersets.py:221 msgid "RIR (ID)" msgstr "RIR (ID)" -#: netbox/ipam/filtersets.py:165 netbox/ipam/filtersets.py:204 -#: netbox/ipam/filtersets.py:227 +#: ipam/filtersets.py:165 ipam/filtersets.py:204 ipam/filtersets.py:227 msgid "RIR (slug)" msgstr "RIR (babosa)" -#: netbox/ipam/filtersets.py:285 +#: ipam/filtersets.py:285 msgid "Within prefix" msgstr "Dentro del prefijo" -#: netbox/ipam/filtersets.py:289 +#: ipam/filtersets.py:289 msgid "Within and including prefix" msgstr "Dentro del prefijo e incluído" -#: netbox/ipam/filtersets.py:293 +#: ipam/filtersets.py:293 msgid "Prefixes which contain this prefix or IP" msgstr "Prefijos que contienen este prefijo o IP" -#: netbox/ipam/filtersets.py:304 netbox/ipam/filtersets.py:572 -#: netbox/ipam/forms/bulk_edit.py:342 netbox/ipam/forms/filtersets.py:196 -#: netbox/ipam/forms/filtersets.py:331 +#: ipam/filtersets.py:304 ipam/filtersets.py:572 ipam/forms/bulk_edit.py:343 +#: ipam/forms/filtersets.py:196 ipam/forms/filtersets.py:331 msgid "Mask length" msgstr "Longitud de la máscara" -#: netbox/ipam/filtersets.py:373 netbox/vpn/filtersets.py:427 +#: ipam/filtersets.py:373 vpn/filtersets.py:427 msgid "VLAN (ID)" msgstr "VLAN (ID)" -#: netbox/ipam/filtersets.py:377 netbox/vpn/filtersets.py:422 +#: ipam/filtersets.py:377 vpn/filtersets.py:422 msgid "VLAN number (1-4094)" msgstr "Número de VLAN (1-4094)" -#: netbox/ipam/filtersets.py:471 netbox/ipam/filtersets.py:475 -#: netbox/ipam/filtersets.py:567 netbox/ipam/forms/model_forms.py:463 -#: netbox/templates/tenancy/contact.html:53 -#: netbox/tenancy/forms/bulk_edit.py:113 +#: ipam/filtersets.py:471 ipam/filtersets.py:475 ipam/filtersets.py:567 +#: ipam/forms/model_forms.py:463 templates/tenancy/contact.html:53 +#: tenancy/forms/bulk_edit.py:113 msgid "Address" msgstr "Dirección" -#: netbox/ipam/filtersets.py:479 +#: ipam/filtersets.py:479 msgid "Ranges which contain this prefix or IP" msgstr "Intervalos que contienen este prefijo o IP" -#: netbox/ipam/filtersets.py:507 netbox/ipam/filtersets.py:563 +#: ipam/filtersets.py:507 ipam/filtersets.py:563 msgid "Parent prefix" msgstr "Prefijo principal" -#: netbox/ipam/filtersets.py:616 netbox/ipam/filtersets.py:856 -#: netbox/ipam/filtersets.py:1131 netbox/vpn/filtersets.py:385 +#: ipam/filtersets.py:616 ipam/filtersets.py:856 ipam/filtersets.py:1131 +#: vpn/filtersets.py:385 msgid "Virtual machine (name)" msgstr "Máquina virtual (nombre)" -#: netbox/ipam/filtersets.py:621 netbox/ipam/filtersets.py:861 -#: netbox/ipam/filtersets.py:1125 netbox/virtualization/filtersets.py:282 -#: netbox/virtualization/filtersets.py:321 netbox/vpn/filtersets.py:390 +#: ipam/filtersets.py:621 ipam/filtersets.py:861 ipam/filtersets.py:1125 +#: virtualization/filtersets.py:282 virtualization/filtersets.py:321 +#: vpn/filtersets.py:390 msgid "Virtual machine (ID)" msgstr "Máquina virtual (ID)" -#: netbox/ipam/filtersets.py:627 netbox/vpn/filtersets.py:97 -#: netbox/vpn/filtersets.py:396 +#: ipam/filtersets.py:627 vpn/filtersets.py:97 vpn/filtersets.py:396 msgid "Interface (name)" msgstr "Interfaz (nombre)" -#: netbox/ipam/filtersets.py:638 netbox/vpn/filtersets.py:108 -#: netbox/vpn/filtersets.py:407 +#: ipam/filtersets.py:638 vpn/filtersets.py:108 vpn/filtersets.py:407 msgid "VM interface (name)" msgstr "Interfaz VM (nombre)" -#: netbox/ipam/filtersets.py:643 netbox/vpn/filtersets.py:113 +#: ipam/filtersets.py:643 vpn/filtersets.py:113 msgid "VM interface (ID)" msgstr "Interfaz de máquina virtual (ID)" -#: netbox/ipam/filtersets.py:648 +#: ipam/filtersets.py:648 msgid "FHRP group (ID)" msgstr "Grupo FHRP (ID)" -#: netbox/ipam/filtersets.py:652 +#: ipam/filtersets.py:652 msgid "Is assigned to an interface" msgstr "Está asignado a una interfaz" -#: netbox/ipam/filtersets.py:656 +#: ipam/filtersets.py:656 msgid "Is assigned" msgstr "Está asignado" -#: netbox/ipam/filtersets.py:668 +#: ipam/filtersets.py:668 msgid "Service (ID)" msgstr "Servicio (ID)" -#: netbox/ipam/filtersets.py:673 +#: ipam/filtersets.py:673 msgid "NAT inside IP address (ID)" msgstr "Dirección IP interna de NAT (ID)" -#: netbox/ipam/filtersets.py:1041 netbox/ipam/forms/bulk_import.py:322 +#: ipam/filtersets.py:1041 ipam/forms/bulk_import.py:322 msgid "Assigned interface" msgstr "Interfaz asignada" -#: netbox/ipam/filtersets.py:1046 +#: ipam/filtersets.py:1046 msgid "Assigned VM interface" msgstr "Interfaz VM asignada" -#: netbox/ipam/filtersets.py:1136 +#: ipam/filtersets.py:1136 msgid "IP address (ID)" msgstr "Dirección IP (ID)" -#: netbox/ipam/filtersets.py:1142 netbox/ipam/models/ip.py:788 +#: ipam/filtersets.py:1142 ipam/models/ip.py:788 msgid "IP address" msgstr "dirección IP" -#: netbox/ipam/filtersets.py:1167 +#: ipam/filtersets.py:1167 msgid "Primary IPv4 (ID)" msgstr "IPv4 principal (ID)" -#: netbox/ipam/filtersets.py:1172 +#: ipam/filtersets.py:1172 msgid "Primary IPv6 (ID)" msgstr "IPv6 principal (ID)" -#: netbox/ipam/formfields.py:14 +#: ipam/formfields.py:14 msgid "Enter a valid IPv4 or IPv6 address (without a mask)." msgstr "Introduzca una dirección IPv4 o IPv6 válida (sin máscara)." -#: netbox/ipam/formfields.py:32 +#: ipam/formfields.py:32 #, python-brace-format msgid "Invalid IPv4/IPv6 address format: {address}" msgstr "Formato de dirección IPv4/IPv6 no válido: {address}" -#: netbox/ipam/formfields.py:37 +#: ipam/formfields.py:37 msgid "This field requires an IP address without a mask." msgstr "Este campo requiere una dirección IP sin máscara." -#: netbox/ipam/formfields.py:39 netbox/ipam/formfields.py:61 +#: ipam/formfields.py:39 ipam/formfields.py:61 msgid "Please specify a valid IPv4 or IPv6 address." msgstr "Especifique una dirección IPv4 o IPv6 válida." -#: netbox/ipam/formfields.py:44 +#: ipam/formfields.py:44 msgid "Enter a valid IPv4 or IPv6 address (with CIDR mask)." msgstr "Introduzca una dirección IPv4 o IPv6 válida (con máscara CIDR)." -#: netbox/ipam/formfields.py:56 +#: ipam/formfields.py:56 msgid "CIDR mask (e.g. /24) is required." msgstr "Se requiere una máscara CIDR (por ejemplo, /24)." -#: netbox/ipam/forms/bulk_create.py:13 +#: ipam/forms/bulk_create.py:13 msgid "Address pattern" msgstr "Patrón de direcciones" -#: netbox/ipam/forms/bulk_edit.py:49 +#: ipam/forms/bulk_edit.py:50 msgid "Enforce unique space" msgstr "Haga valer un espacio único" -#: netbox/ipam/forms/bulk_edit.py:87 +#: ipam/forms/bulk_edit.py:88 msgid "Is private" msgstr "Es privado" -#: netbox/ipam/forms/bulk_edit.py:108 netbox/ipam/forms/bulk_edit.py:137 -#: netbox/ipam/forms/bulk_edit.py:162 netbox/ipam/forms/bulk_import.py:89 -#: netbox/ipam/forms/bulk_import.py:109 netbox/ipam/forms/bulk_import.py:129 -#: netbox/ipam/forms/filtersets.py:110 netbox/ipam/forms/filtersets.py:125 -#: netbox/ipam/forms/filtersets.py:148 netbox/ipam/forms/model_forms.py:96 -#: netbox/ipam/forms/model_forms.py:109 netbox/ipam/forms/model_forms.py:131 -#: netbox/ipam/forms/model_forms.py:149 netbox/ipam/models/asns.py:31 -#: netbox/ipam/models/asns.py:103 netbox/ipam/models/ip.py:71 -#: netbox/ipam/models/ip.py:90 netbox/ipam/tables/asn.py:20 -#: netbox/ipam/tables/asn.py:45 netbox/templates/ipam/aggregate.html:18 -#: netbox/templates/ipam/asn.html:27 netbox/templates/ipam/asnrange.html:19 -#: netbox/templates/ipam/rir.html:19 +#: ipam/forms/bulk_edit.py:109 ipam/forms/bulk_edit.py:138 +#: ipam/forms/bulk_edit.py:163 ipam/forms/bulk_import.py:89 +#: ipam/forms/bulk_import.py:109 ipam/forms/bulk_import.py:129 +#: ipam/forms/filtersets.py:110 ipam/forms/filtersets.py:125 +#: ipam/forms/filtersets.py:148 ipam/forms/model_forms.py:96 +#: ipam/forms/model_forms.py:109 ipam/forms/model_forms.py:131 +#: ipam/forms/model_forms.py:149 ipam/models/asns.py:31 +#: ipam/models/asns.py:103 ipam/models/ip.py:71 ipam/models/ip.py:90 +#: ipam/tables/asn.py:20 ipam/tables/asn.py:45 +#: templates/ipam/aggregate.html:18 templates/ipam/asn.html:27 +#: templates/ipam/asnrange.html:19 templates/ipam/rir.html:19 msgid "RIR" msgstr "RIR" -#: netbox/ipam/forms/bulk_edit.py:170 +#: ipam/forms/bulk_edit.py:171 msgid "Date added" msgstr "Fecha añadida" -#: netbox/ipam/forms/bulk_edit.py:228 netbox/ipam/forms/model_forms.py:586 -#: netbox/ipam/forms/model_forms.py:633 netbox/ipam/tables/ip.py:251 -#: netbox/templates/ipam/vlan_edit.html:37 -#: netbox/templates/ipam/vlangroup.html:27 +#: ipam/forms/bulk_edit.py:229 ipam/forms/model_forms.py:586 +#: ipam/forms/model_forms.py:633 ipam/tables/ip.py:251 +#: templates/ipam/vlan_edit.html:37 templates/ipam/vlangroup.html:27 msgid "VLAN Group" msgstr "Grupo VLAN" -#: netbox/ipam/forms/bulk_edit.py:233 netbox/ipam/forms/bulk_import.py:185 -#: netbox/ipam/forms/filtersets.py:256 netbox/ipam/forms/model_forms.py:218 -#: netbox/ipam/models/vlans.py:234 netbox/ipam/tables/ip.py:255 -#: netbox/templates/ipam/prefix.html:60 netbox/templates/ipam/vlan.html:12 -#: netbox/templates/ipam/vlan/base.html:6 -#: netbox/templates/ipam/vlan_edit.html:10 -#: netbox/templates/wireless/wirelesslan.html:30 -#: netbox/vpn/forms/bulk_import.py:304 netbox/vpn/forms/filtersets.py:284 -#: netbox/vpn/forms/model_forms.py:433 netbox/vpn/forms/model_forms.py:452 -#: netbox/wireless/forms/bulk_edit.py:55 -#: netbox/wireless/forms/bulk_import.py:48 -#: netbox/wireless/forms/model_forms.py:48 netbox/wireless/models.py:102 +#: ipam/forms/bulk_edit.py:234 ipam/forms/bulk_import.py:185 +#: ipam/forms/filtersets.py:256 ipam/forms/model_forms.py:218 +#: ipam/models/vlans.py:234 ipam/tables/ip.py:255 +#: templates/ipam/prefix.html:60 templates/ipam/vlan.html:12 +#: templates/ipam/vlan/base.html:6 templates/ipam/vlan_edit.html:10 +#: templates/wireless/wirelesslan.html:30 vpn/forms/bulk_import.py:304 +#: vpn/forms/filtersets.py:284 vpn/forms/model_forms.py:433 +#: vpn/forms/model_forms.py:452 wireless/forms/bulk_edit.py:55 +#: wireless/forms/bulk_import.py:48 wireless/forms/model_forms.py:48 +#: wireless/models.py:102 msgid "VLAN" msgstr "VLAN" -#: netbox/ipam/forms/bulk_edit.py:244 +#: ipam/forms/bulk_edit.py:245 msgid "Prefix length" msgstr "Longitud del prefijo" -#: netbox/ipam/forms/bulk_edit.py:267 netbox/ipam/forms/filtersets.py:241 -#: netbox/templates/ipam/prefix.html:85 +#: ipam/forms/bulk_edit.py:268 ipam/forms/filtersets.py:241 +#: templates/ipam/prefix.html:85 msgid "Is a pool" msgstr "Es una piscina" -#: netbox/ipam/forms/bulk_edit.py:272 netbox/ipam/forms/bulk_edit.py:317 -#: netbox/ipam/forms/filtersets.py:248 netbox/ipam/forms/filtersets.py:293 -#: netbox/ipam/models/ip.py:272 netbox/ipam/models/ip.py:539 +#: ipam/forms/bulk_edit.py:273 ipam/forms/bulk_edit.py:318 +#: ipam/forms/filtersets.py:248 ipam/forms/filtersets.py:293 +#: ipam/models/ip.py:272 ipam/models/ip.py:539 msgid "Treat as fully utilized" msgstr "Tratar como si se hubiera utilizado por completo" -#: netbox/ipam/forms/bulk_edit.py:286 netbox/ipam/forms/filtersets.py:171 +#: ipam/forms/bulk_edit.py:287 ipam/forms/filtersets.py:171 msgid "VLAN Assignment" msgstr "Asignación de VLAN" -#: netbox/ipam/forms/bulk_edit.py:365 netbox/ipam/models/ip.py:772 +#: ipam/forms/bulk_edit.py:366 ipam/models/ip.py:772 msgid "DNS name" msgstr "Nombre DNS" -#: netbox/ipam/forms/bulk_edit.py:386 netbox/ipam/forms/bulk_edit.py:579 -#: netbox/ipam/forms/bulk_import.py:394 netbox/ipam/forms/bulk_import.py:469 -#: netbox/ipam/forms/bulk_import.py:495 netbox/ipam/forms/filtersets.py:390 -#: netbox/ipam/forms/filtersets.py:530 netbox/templates/ipam/fhrpgroup.html:22 -#: netbox/templates/ipam/inc/panels/fhrp_groups.html:24 -#: netbox/templates/ipam/service.html:32 -#: netbox/templates/ipam/servicetemplate.html:19 +#: ipam/forms/bulk_edit.py:387 ipam/forms/bulk_edit.py:534 +#: ipam/forms/bulk_import.py:394 ipam/forms/bulk_import.py:469 +#: ipam/forms/bulk_import.py:495 ipam/forms/filtersets.py:390 +#: ipam/forms/filtersets.py:530 templates/ipam/fhrpgroup.html:22 +#: templates/ipam/inc/panels/fhrp_groups.html:24 +#: templates/ipam/service.html:32 templates/ipam/servicetemplate.html:19 msgid "Protocol" msgstr "Protocolo" -#: netbox/ipam/forms/bulk_edit.py:393 netbox/ipam/forms/filtersets.py:397 -#: netbox/ipam/tables/fhrp.py:22 netbox/templates/ipam/fhrpgroup.html:26 +#: ipam/forms/bulk_edit.py:394 ipam/forms/filtersets.py:397 +#: ipam/tables/fhrp.py:22 templates/ipam/fhrpgroup.html:26 msgid "Group ID" msgstr "ID de grupo" -#: netbox/ipam/forms/bulk_edit.py:398 netbox/ipam/forms/filtersets.py:402 -#: netbox/wireless/forms/bulk_edit.py:68 -#: netbox/wireless/forms/bulk_edit.py:115 -#: netbox/wireless/forms/bulk_import.py:62 -#: netbox/wireless/forms/bulk_import.py:65 -#: netbox/wireless/forms/bulk_import.py:104 -#: netbox/wireless/forms/bulk_import.py:107 -#: netbox/wireless/forms/filtersets.py:54 -#: netbox/wireless/forms/filtersets.py:88 +#: ipam/forms/bulk_edit.py:399 ipam/forms/filtersets.py:402 +#: wireless/forms/bulk_edit.py:68 wireless/forms/bulk_edit.py:115 +#: wireless/forms/bulk_import.py:62 wireless/forms/bulk_import.py:65 +#: wireless/forms/bulk_import.py:104 wireless/forms/bulk_import.py:107 +#: wireless/forms/filtersets.py:54 wireless/forms/filtersets.py:88 msgid "Authentication type" msgstr "Tipo de autenticación" -#: netbox/ipam/forms/bulk_edit.py:403 netbox/ipam/forms/filtersets.py:406 +#: ipam/forms/bulk_edit.py:404 ipam/forms/filtersets.py:406 msgid "Authentication key" msgstr "Clave de autenticación" -#: netbox/ipam/forms/bulk_edit.py:420 netbox/ipam/forms/filtersets.py:383 -#: netbox/ipam/forms/model_forms.py:474 netbox/netbox/navigation/menu.py:386 -#: netbox/templates/ipam/fhrpgroup.html:49 -#: netbox/templates/wireless/inc/authentication_attrs.html:5 -#: netbox/wireless/forms/bulk_edit.py:91 -#: netbox/wireless/forms/bulk_edit.py:149 -#: netbox/wireless/forms/filtersets.py:36 -#: netbox/wireless/forms/filtersets.py:76 -#: netbox/wireless/forms/model_forms.py:55 -#: netbox/wireless/forms/model_forms.py:171 +#: ipam/forms/bulk_edit.py:421 ipam/forms/filtersets.py:383 +#: ipam/forms/model_forms.py:474 netbox/navigation/menu.py:386 +#: templates/ipam/fhrpgroup.html:49 +#: templates/wireless/inc/authentication_attrs.html:5 +#: wireless/forms/bulk_edit.py:91 wireless/forms/bulk_edit.py:149 +#: wireless/forms/filtersets.py:36 wireless/forms/filtersets.py:76 +#: wireless/forms/model_forms.py:55 wireless/forms/model_forms.py:171 msgid "Authentication" msgstr "AUTENTICACIÓN" -#: netbox/ipam/forms/bulk_edit.py:432 netbox/ipam/forms/model_forms.py:575 +#: ipam/forms/bulk_edit.py:436 ipam/forms/model_forms.py:575 msgid "Scope type" msgstr "Tipo de ámbito" -#: netbox/ipam/forms/bulk_edit.py:490 netbox/ipam/models/vlans.py:60 -msgid "VLAN ID ranges" -msgstr "Intervalos de ID de VLAN" - -#: netbox/ipam/forms/bulk_edit.py:498 netbox/ipam/forms/model_forms.py:578 -#: netbox/ipam/forms/model_forms.py:588 netbox/ipam/tables/vlans.py:71 -#: netbox/templates/ipam/vlangroup.html:38 +#: ipam/forms/bulk_edit.py:439 ipam/forms/bulk_edit.py:453 +#: ipam/forms/model_forms.py:578 ipam/forms/model_forms.py:588 +#: ipam/tables/vlans.py:71 templates/ipam/vlangroup.html:38 msgid "Scope" msgstr "Alcance" -#: netbox/ipam/forms/bulk_edit.py:570 +#: ipam/forms/bulk_edit.py:446 ipam/models/vlans.py:60 +msgid "VLAN ID ranges" +msgstr "Intervalos de ID de VLAN" + +#: ipam/forms/bulk_edit.py:525 msgid "Site & Group" msgstr "Sitio y grupo" -#: netbox/ipam/forms/bulk_edit.py:584 netbox/ipam/forms/model_forms.py:659 -#: netbox/ipam/forms/model_forms.py:691 netbox/ipam/tables/services.py:19 -#: netbox/ipam/tables/services.py:49 netbox/templates/ipam/service.html:36 -#: netbox/templates/ipam/servicetemplate.html:23 +#: ipam/forms/bulk_edit.py:539 ipam/forms/model_forms.py:659 +#: ipam/forms/model_forms.py:691 ipam/tables/services.py:19 +#: ipam/tables/services.py:49 templates/ipam/service.html:36 +#: templates/ipam/servicetemplate.html:23 msgid "Ports" msgstr "Puertos" -#: netbox/ipam/forms/bulk_import.py:48 +#: ipam/forms/bulk_import.py:48 msgid "Import route targets" msgstr "Importar destinos de ruta" -#: netbox/ipam/forms/bulk_import.py:54 +#: ipam/forms/bulk_import.py:54 msgid "Export route targets" msgstr "Exportar destinos de ruta" -#: netbox/ipam/forms/bulk_import.py:92 netbox/ipam/forms/bulk_import.py:112 -#: netbox/ipam/forms/bulk_import.py:132 +#: ipam/forms/bulk_import.py:92 ipam/forms/bulk_import.py:112 +#: ipam/forms/bulk_import.py:132 msgid "Assigned RIR" msgstr "RIR asignado" -#: netbox/ipam/forms/bulk_import.py:182 +#: ipam/forms/bulk_import.py:182 msgid "VLAN's group (if any)" msgstr "Grupo de VLAN (si lo hay)" -#: netbox/ipam/forms/bulk_import.py:308 +#: ipam/forms/bulk_import.py:308 msgid "Parent device of assigned interface (if any)" msgstr "Dispositivo principal de la interfaz asignada (si existe)" -#: netbox/ipam/forms/bulk_import.py:311 netbox/ipam/forms/bulk_import.py:488 -#: netbox/ipam/forms/model_forms.py:685 -#: netbox/virtualization/filtersets.py:288 -#: netbox/virtualization/filtersets.py:327 -#: netbox/virtualization/forms/bulk_edit.py:200 -#: netbox/virtualization/forms/bulk_edit.py:326 -#: netbox/virtualization/forms/bulk_import.py:146 -#: netbox/virtualization/forms/bulk_import.py:207 -#: netbox/virtualization/forms/filtersets.py:212 -#: netbox/virtualization/forms/filtersets.py:248 -#: netbox/virtualization/forms/model_forms.py:288 -#: netbox/vpn/forms/bulk_import.py:93 netbox/vpn/forms/bulk_import.py:290 +#: ipam/forms/bulk_import.py:311 ipam/forms/bulk_import.py:488 +#: ipam/forms/model_forms.py:685 virtualization/filtersets.py:288 +#: virtualization/filtersets.py:327 virtualization/forms/bulk_edit.py:200 +#: virtualization/forms/bulk_edit.py:326 +#: virtualization/forms/bulk_import.py:146 +#: virtualization/forms/bulk_import.py:207 +#: virtualization/forms/filtersets.py:212 +#: virtualization/forms/filtersets.py:248 +#: virtualization/forms/model_forms.py:288 vpn/forms/bulk_import.py:93 +#: vpn/forms/bulk_import.py:290 msgid "Virtual machine" msgstr "Máquina virtual" -#: netbox/ipam/forms/bulk_import.py:315 +#: ipam/forms/bulk_import.py:315 msgid "Parent VM of assigned interface (if any)" msgstr "VM principal de la interfaz asignada (si existe)" -#: netbox/ipam/forms/bulk_import.py:325 +#: ipam/forms/bulk_import.py:325 msgid "Is primary" msgstr "Es primaria" -#: netbox/ipam/forms/bulk_import.py:326 +#: ipam/forms/bulk_import.py:326 msgid "Make this the primary IP for the assigned device" msgstr "Conviértase en la IP principal del dispositivo asignado" -#: netbox/ipam/forms/bulk_import.py:365 +#: ipam/forms/bulk_import.py:365 msgid "No device or virtual machine specified; cannot set as primary IP" msgstr "" "No se especificó ningún dispositivo o máquina virtual; no se puede " "establecer como IP principal" -#: netbox/ipam/forms/bulk_import.py:369 +#: ipam/forms/bulk_import.py:369 msgid "No interface specified; cannot set as primary IP" msgstr "" "No se especificó ninguna interfaz; no se puede establecer como IP principal" -#: netbox/ipam/forms/bulk_import.py:398 +#: ipam/forms/bulk_import.py:398 msgid "Auth type" msgstr "Tipo de autenticación" -#: netbox/ipam/forms/bulk_import.py:413 +#: ipam/forms/bulk_import.py:413 msgid "Scope type (app & model)" msgstr "Tipo de ámbito (aplicación y modelo)" -#: netbox/ipam/forms/bulk_import.py:440 +#: ipam/forms/bulk_import.py:440 msgid "Assigned VLAN group" msgstr "Grupo de VLAN asignado" -#: netbox/ipam/forms/bulk_import.py:471 netbox/ipam/forms/bulk_import.py:497 +#: ipam/forms/bulk_import.py:471 ipam/forms/bulk_import.py:497 msgid "IP protocol" msgstr "Protocolo IP" -#: netbox/ipam/forms/bulk_import.py:485 +#: ipam/forms/bulk_import.py:485 msgid "Required if not assigned to a VM" msgstr "Obligatorio si no está asignado a una VM" -#: netbox/ipam/forms/bulk_import.py:492 +#: ipam/forms/bulk_import.py:492 msgid "Required if not assigned to a device" msgstr "Obligatorio si no está asignado a un dispositivo" -#: netbox/ipam/forms/bulk_import.py:517 +#: ipam/forms/bulk_import.py:517 #, python-brace-format msgid "{ip} is not assigned to this device/VM." msgstr "{ip} no está asignado a este dispositivo/máquina virtual." -#: netbox/ipam/forms/filtersets.py:47 netbox/ipam/forms/model_forms.py:63 -#: netbox/netbox/navigation/menu.py:189 netbox/vpn/forms/model_forms.py:410 +#: ipam/forms/filtersets.py:47 ipam/forms/model_forms.py:63 +#: netbox/navigation/menu.py:189 vpn/forms/model_forms.py:410 msgid "Route Targets" msgstr "Objetivos de ruta" -#: netbox/ipam/forms/filtersets.py:53 netbox/ipam/forms/model_forms.py:50 -#: netbox/vpn/forms/filtersets.py:224 netbox/vpn/forms/model_forms.py:397 +#: ipam/forms/filtersets.py:53 ipam/forms/model_forms.py:50 +#: vpn/forms/filtersets.py:224 vpn/forms/model_forms.py:397 msgid "Import targets" msgstr "Importar objetivos" -#: netbox/ipam/forms/filtersets.py:58 netbox/ipam/forms/model_forms.py:55 -#: netbox/vpn/forms/filtersets.py:229 netbox/vpn/forms/model_forms.py:402 +#: ipam/forms/filtersets.py:58 ipam/forms/model_forms.py:55 +#: vpn/forms/filtersets.py:229 vpn/forms/model_forms.py:402 msgid "Export targets" msgstr "Objetivos de exportación" -#: netbox/ipam/forms/filtersets.py:73 +#: ipam/forms/filtersets.py:73 msgid "Imported by VRF" msgstr "Importado por VRF" -#: netbox/ipam/forms/filtersets.py:78 +#: ipam/forms/filtersets.py:78 msgid "Exported by VRF" msgstr "Exportado por VRF" -#: netbox/ipam/forms/filtersets.py:87 netbox/ipam/tables/ip.py:89 -#: netbox/templates/ipam/rir.html:30 +#: ipam/forms/filtersets.py:87 ipam/tables/ip.py:89 templates/ipam/rir.html:30 msgid "Private" msgstr "Privada" -#: netbox/ipam/forms/filtersets.py:105 netbox/ipam/forms/filtersets.py:191 -#: netbox/ipam/forms/filtersets.py:272 netbox/ipam/forms/filtersets.py:326 +#: ipam/forms/filtersets.py:105 ipam/forms/filtersets.py:191 +#: ipam/forms/filtersets.py:272 ipam/forms/filtersets.py:326 msgid "Address family" msgstr "Familia de direcciones" -#: netbox/ipam/forms/filtersets.py:119 netbox/templates/ipam/asnrange.html:25 +#: ipam/forms/filtersets.py:119 templates/ipam/asnrange.html:25 msgid "Range" msgstr "Alcance" -#: netbox/ipam/forms/filtersets.py:128 +#: ipam/forms/filtersets.py:128 msgid "Start" msgstr "Comenzar" -#: netbox/ipam/forms/filtersets.py:132 +#: ipam/forms/filtersets.py:132 msgid "End" msgstr "Fin" -#: netbox/ipam/forms/filtersets.py:186 +#: ipam/forms/filtersets.py:186 msgid "Search within" msgstr "Busca dentro" -#: netbox/ipam/forms/filtersets.py:207 netbox/ipam/forms/filtersets.py:342 +#: ipam/forms/filtersets.py:207 ipam/forms/filtersets.py:342 msgid "Present in VRF" msgstr "Presente en VRF" -#: netbox/ipam/forms/filtersets.py:311 +#: ipam/forms/filtersets.py:311 msgid "Device/VM" msgstr "Dispositivo/VM" -#: netbox/ipam/forms/filtersets.py:321 +#: ipam/forms/filtersets.py:321 msgid "Parent Prefix" msgstr "Prefijo principal" -#: netbox/ipam/forms/filtersets.py:347 +#: ipam/forms/filtersets.py:347 msgid "Assigned Device" msgstr "Dispositivo asignado" -#: netbox/ipam/forms/filtersets.py:352 +#: ipam/forms/filtersets.py:352 msgid "Assigned VM" msgstr "VM asignada" -#: netbox/ipam/forms/filtersets.py:366 +#: ipam/forms/filtersets.py:366 msgid "Assigned to an interface" msgstr "Asignado a una interfaz" -#: netbox/ipam/forms/filtersets.py:373 netbox/templates/ipam/ipaddress.html:51 +#: ipam/forms/filtersets.py:373 templates/ipam/ipaddress.html:51 msgid "DNS Name" msgstr "Nombre DNS" -#: netbox/ipam/forms/filtersets.py:416 netbox/ipam/models/vlans.py:235 -#: netbox/ipam/tables/ip.py:176 netbox/ipam/tables/vlans.py:82 -#: netbox/ipam/views.py:971 netbox/netbox/navigation/menu.py:193 -#: netbox/netbox/navigation/menu.py:195 +#: ipam/forms/filtersets.py:416 ipam/models/vlans.py:235 ipam/tables/ip.py:176 +#: ipam/tables/vlans.py:82 ipam/views.py:971 netbox/navigation/menu.py:193 +#: netbox/navigation/menu.py:195 msgid "VLANs" msgstr "VLAN" -#: netbox/ipam/forms/filtersets.py:457 +#: ipam/forms/filtersets.py:457 msgid "Contains VLAN ID" msgstr "Contiene el identificador de VLAN" -#: netbox/ipam/forms/filtersets.py:513 netbox/ipam/models/vlans.py:176 -#: netbox/templates/ipam/vlan.html:31 +#: ipam/forms/filtersets.py:513 ipam/models/vlans.py:176 +#: templates/ipam/vlan.html:31 msgid "VLAN ID" msgstr "IDENTIFICADOR DE VLAN" -#: netbox/ipam/forms/filtersets.py:556 netbox/ipam/forms/model_forms.py:320 -#: netbox/ipam/forms/model_forms.py:713 netbox/ipam/forms/model_forms.py:739 -#: netbox/ipam/tables/vlans.py:195 -#: netbox/templates/virtualization/virtualdisk.html:21 -#: netbox/templates/virtualization/virtualmachine.html:12 -#: netbox/templates/virtualization/vminterface.html:21 -#: netbox/templates/vpn/tunneltermination.html:25 -#: netbox/virtualization/forms/filtersets.py:197 -#: netbox/virtualization/forms/filtersets.py:242 -#: netbox/virtualization/forms/model_forms.py:220 -#: netbox/virtualization/tables/virtualmachines.py:135 -#: netbox/virtualization/tables/virtualmachines.py:190 -#: netbox/vpn/choices.py:45 netbox/vpn/forms/filtersets.py:293 -#: netbox/vpn/forms/model_forms.py:160 netbox/vpn/forms/model_forms.py:171 -#: netbox/vpn/forms/model_forms.py:273 netbox/vpn/forms/model_forms.py:454 +#: ipam/forms/filtersets.py:556 ipam/forms/model_forms.py:320 +#: ipam/forms/model_forms.py:713 ipam/forms/model_forms.py:739 +#: ipam/tables/vlans.py:195 templates/virtualization/virtualdisk.html:21 +#: templates/virtualization/virtualmachine.html:12 +#: templates/virtualization/vminterface.html:21 +#: templates/vpn/tunneltermination.html:25 +#: virtualization/forms/filtersets.py:197 +#: virtualization/forms/filtersets.py:242 +#: virtualization/forms/model_forms.py:220 +#: virtualization/tables/virtualmachines.py:135 +#: virtualization/tables/virtualmachines.py:190 vpn/choices.py:45 +#: vpn/forms/filtersets.py:293 vpn/forms/model_forms.py:160 +#: vpn/forms/model_forms.py:171 vpn/forms/model_forms.py:273 +#: vpn/forms/model_forms.py:454 msgid "Virtual Machine" msgstr "Máquina virtual" -#: netbox/ipam/forms/model_forms.py:80 -#: netbox/templates/ipam/routetarget.html:10 +#: ipam/forms/model_forms.py:80 templates/ipam/routetarget.html:10 msgid "Route Target" msgstr "Objetivo de ruta" -#: netbox/ipam/forms/model_forms.py:114 netbox/ipam/tables/ip.py:117 -#: netbox/templates/ipam/aggregate.html:11 -#: netbox/templates/ipam/prefix.html:38 +#: ipam/forms/model_forms.py:114 ipam/tables/ip.py:117 +#: templates/ipam/aggregate.html:11 templates/ipam/prefix.html:38 msgid "Aggregate" msgstr "Agregado" -#: netbox/ipam/forms/model_forms.py:135 netbox/templates/ipam/asnrange.html:12 +#: ipam/forms/model_forms.py:135 templates/ipam/asnrange.html:12 msgid "ASN Range" msgstr "Gama ASN" -#: netbox/ipam/forms/model_forms.py:231 +#: ipam/forms/model_forms.py:231 msgid "Site/VLAN Assignment" msgstr "Asignación de sitio/VLAN" -#: netbox/ipam/forms/model_forms.py:259 netbox/templates/ipam/iprange.html:10 +#: ipam/forms/model_forms.py:259 templates/ipam/iprange.html:10 msgid "IP Range" msgstr "Rango de IP" -#: netbox/ipam/forms/model_forms.py:295 netbox/ipam/forms/model_forms.py:321 -#: netbox/ipam/forms/model_forms.py:473 -#: netbox/templates/ipam/fhrpgroup.html:19 +#: ipam/forms/model_forms.py:295 ipam/forms/model_forms.py:321 +#: ipam/forms/model_forms.py:473 templates/ipam/fhrpgroup.html:19 msgid "FHRP Group" msgstr "Grupo FHRP" -#: netbox/ipam/forms/model_forms.py:310 +#: ipam/forms/model_forms.py:310 msgid "Make this the primary IP for the device/VM" msgstr "Haga que esta sea la IP principal del dispositivo/VM" -#: netbox/ipam/forms/model_forms.py:325 +#: ipam/forms/model_forms.py:325 msgid "NAT IP (Inside)" msgstr "NAT IP (interior)" -#: netbox/ipam/forms/model_forms.py:384 +#: ipam/forms/model_forms.py:384 msgid "An IP address can only be assigned to a single object." msgstr "Solo se puede asignar una dirección IP a un único objeto." -#: netbox/ipam/forms/model_forms.py:390 netbox/ipam/models/ip.py:897 +#: ipam/forms/model_forms.py:390 ipam/models/ip.py:897 msgid "" "Cannot reassign IP address while it is designated as the primary IP for the " "parent object" @@ -9883,31 +9288,30 @@ msgstr "" "No se puede reasignar la dirección IP mientras esté designada como la IP " "principal del objeto principal" -#: netbox/ipam/forms/model_forms.py:400 +#: ipam/forms/model_forms.py:400 msgid "" "Only IP addresses assigned to an interface can be designated as primary IPs." msgstr "" "Solo las direcciones IP asignadas a una interfaz se pueden designar como IP " "principales." -#: netbox/ipam/forms/model_forms.py:475 +#: ipam/forms/model_forms.py:475 msgid "Virtual IP Address" msgstr "Dirección IP virtual" -#: netbox/ipam/forms/model_forms.py:560 +#: ipam/forms/model_forms.py:560 msgid "Assignment already exists" msgstr "La asignación ya existe" -#: netbox/ipam/forms/model_forms.py:569 -#: netbox/templates/ipam/vlangroup.html:42 +#: ipam/forms/model_forms.py:569 templates/ipam/vlangroup.html:42 msgid "VLAN IDs" msgstr "ID de VLAN" -#: netbox/ipam/forms/model_forms.py:587 +#: ipam/forms/model_forms.py:587 msgid "Child VLANs" msgstr "VLAN secundarias" -#: netbox/ipam/forms/model_forms.py:664 netbox/ipam/forms/model_forms.py:696 +#: ipam/forms/model_forms.py:664 ipam/forms/model_forms.py:696 msgid "" "Comma-separated list of one or more port numbers. A range may be specified " "using a hyphen." @@ -9915,133 +9319,132 @@ msgstr "" "Lista separada por comas de uno o más números de puerto. Se puede " "especificar un rango mediante un guión." -#: netbox/ipam/forms/model_forms.py:669 -#: netbox/templates/ipam/servicetemplate.html:12 +#: ipam/forms/model_forms.py:669 templates/ipam/servicetemplate.html:12 msgid "Service Template" msgstr "Plantilla de servicio" -#: netbox/ipam/forms/model_forms.py:716 +#: ipam/forms/model_forms.py:716 msgid "Port(s)" msgstr "Puerto (s)" -#: netbox/ipam/forms/model_forms.py:717 netbox/ipam/forms/model_forms.py:745 -#: netbox/templates/ipam/service.html:21 +#: ipam/forms/model_forms.py:717 ipam/forms/model_forms.py:745 +#: templates/ipam/service.html:21 msgid "Service" msgstr "Servicio" -#: netbox/ipam/forms/model_forms.py:730 +#: ipam/forms/model_forms.py:730 msgid "Service template" msgstr "Plantilla de servicio" -#: netbox/ipam/forms/model_forms.py:742 +#: ipam/forms/model_forms.py:742 msgid "From Template" msgstr "Desde plantilla" -#: netbox/ipam/forms/model_forms.py:743 +#: ipam/forms/model_forms.py:743 msgid "Custom" msgstr "Personalizado" -#: netbox/ipam/forms/model_forms.py:773 +#: ipam/forms/model_forms.py:773 msgid "" "Must specify name, protocol, and port(s) if not using a service template." msgstr "" "Debe especificar el nombre, el protocolo y los puertos si no utiliza una " "plantilla de servicio." -#: netbox/ipam/models/asns.py:34 +#: ipam/models/asns.py:34 msgid "start" msgstr "comienzo" -#: netbox/ipam/models/asns.py:51 +#: ipam/models/asns.py:51 msgid "ASN range" msgstr "Gama ASN" -#: netbox/ipam/models/asns.py:52 +#: ipam/models/asns.py:52 msgid "ASN ranges" msgstr "Gamas de ASN" -#: netbox/ipam/models/asns.py:72 +#: ipam/models/asns.py:72 #, python-brace-format msgid "Starting ASN ({start}) must be lower than ending ASN ({end})." msgstr "Iniciar ASN ({start}) debe ser inferior al ASN final ({end})." -#: netbox/ipam/models/asns.py:104 +#: ipam/models/asns.py:104 msgid "Regional Internet Registry responsible for this AS number space" msgstr "Registro regional de Internet responsable de este espacio numérico AS" -#: netbox/ipam/models/asns.py:109 +#: ipam/models/asns.py:109 msgid "16- or 32-bit autonomous system number" msgstr "Número de sistema autónomo de 16 o 32 bits" -#: netbox/ipam/models/fhrp.py:22 +#: ipam/models/fhrp.py:22 msgid "group ID" msgstr "ID de grupo" -#: netbox/ipam/models/fhrp.py:30 netbox/ipam/models/services.py:22 +#: ipam/models/fhrp.py:30 ipam/models/services.py:22 msgid "protocol" msgstr "protocolo" -#: netbox/ipam/models/fhrp.py:38 netbox/wireless/models.py:28 +#: ipam/models/fhrp.py:38 wireless/models.py:28 msgid "authentication type" msgstr "tipo de autenticación" -#: netbox/ipam/models/fhrp.py:43 +#: ipam/models/fhrp.py:43 msgid "authentication key" msgstr "clave de autenticación" -#: netbox/ipam/models/fhrp.py:56 +#: ipam/models/fhrp.py:56 msgid "FHRP group" msgstr "Grupo FHRP" -#: netbox/ipam/models/fhrp.py:57 +#: ipam/models/fhrp.py:57 msgid "FHRP groups" msgstr "Grupos FHRP" -#: netbox/ipam/models/fhrp.py:113 +#: ipam/models/fhrp.py:113 msgid "FHRP group assignment" msgstr "Asignación grupal de FHRP" -#: netbox/ipam/models/fhrp.py:114 +#: ipam/models/fhrp.py:114 msgid "FHRP group assignments" msgstr "Tareas grupales de FHRP" -#: netbox/ipam/models/ip.py:65 +#: ipam/models/ip.py:65 msgid "private" msgstr "privado" -#: netbox/ipam/models/ip.py:66 +#: ipam/models/ip.py:66 msgid "IP space managed by this RIR is considered private" msgstr "El espacio IP administrado por este RIR se considera privado" -#: netbox/ipam/models/ip.py:72 netbox/netbox/navigation/menu.py:182 +#: ipam/models/ip.py:72 netbox/navigation/menu.py:182 msgid "RIRs" msgstr "RIR" -#: netbox/ipam/models/ip.py:84 +#: ipam/models/ip.py:84 msgid "IPv4 or IPv6 network" msgstr "Red IPv4 o IPv6" -#: netbox/ipam/models/ip.py:91 +#: ipam/models/ip.py:91 msgid "Regional Internet Registry responsible for this IP space" msgstr "Registro regional de Internet responsable de este espacio IP" -#: netbox/ipam/models/ip.py:101 +#: ipam/models/ip.py:101 msgid "date added" msgstr "fecha añadida" -#: netbox/ipam/models/ip.py:115 +#: ipam/models/ip.py:115 msgid "aggregate" msgstr "agregado" -#: netbox/ipam/models/ip.py:116 +#: ipam/models/ip.py:116 msgid "aggregates" msgstr "agregados" -#: netbox/ipam/models/ip.py:132 +#: ipam/models/ip.py:132 msgid "Cannot create aggregate with /0 mask." msgstr "No se puede crear un agregado con la máscara /0." -#: netbox/ipam/models/ip.py:144 +#: ipam/models/ip.py:144 #, python-brace-format msgid "" "Aggregates cannot overlap. {prefix} is already covered by an existing " @@ -10050,7 +9453,7 @@ msgstr "" "Los agregados no pueden superponerse. {prefix} ya está cubierto por un " "agregado existente ({aggregate})." -#: netbox/ipam/models/ip.py:158 +#: ipam/models/ip.py:158 #, python-brace-format msgid "" "Prefixes cannot overlap aggregates. {prefix} covers an existing aggregate " @@ -10059,161 +9462,159 @@ msgstr "" "Los prefijos no pueden superponerse a los agregados. {prefix} cubre un " "agregado existente ({aggregate})." -#: netbox/ipam/models/ip.py:200 netbox/ipam/models/ip.py:737 -#: netbox/vpn/models/tunnels.py:114 +#: ipam/models/ip.py:200 ipam/models/ip.py:737 vpn/models/tunnels.py:114 msgid "role" msgstr "papel" -#: netbox/ipam/models/ip.py:201 +#: ipam/models/ip.py:201 msgid "roles" msgstr "papeles" -#: netbox/ipam/models/ip.py:217 netbox/ipam/models/ip.py:293 +#: ipam/models/ip.py:217 ipam/models/ip.py:293 msgid "prefix" msgstr "prefijo" -#: netbox/ipam/models/ip.py:218 +#: ipam/models/ip.py:218 msgid "IPv4 or IPv6 network with mask" msgstr "Red IPv4 o IPv6 con máscara" -#: netbox/ipam/models/ip.py:254 +#: ipam/models/ip.py:254 msgid "Operational status of this prefix" msgstr "Estado operativo de este prefijo" -#: netbox/ipam/models/ip.py:262 +#: ipam/models/ip.py:262 msgid "The primary function of this prefix" msgstr "La función principal de este prefijo" -#: netbox/ipam/models/ip.py:265 +#: ipam/models/ip.py:265 msgid "is a pool" msgstr "es una piscina" -#: netbox/ipam/models/ip.py:267 +#: ipam/models/ip.py:267 msgid "All IP addresses within this prefix are considered usable" msgstr "" "Todas las direcciones IP incluidas en este prefijo se consideran " "utilizables." -#: netbox/ipam/models/ip.py:270 netbox/ipam/models/ip.py:537 +#: ipam/models/ip.py:270 ipam/models/ip.py:537 msgid "mark utilized" msgstr "marca utilizada" -#: netbox/ipam/models/ip.py:294 +#: ipam/models/ip.py:294 msgid "prefixes" msgstr "prefijos" -#: netbox/ipam/models/ip.py:317 +#: ipam/models/ip.py:317 msgid "Cannot create prefix with /0 mask." msgstr "No se puede crear un prefijo con la máscara /0." -#: netbox/ipam/models/ip.py:324 netbox/ipam/models/ip.py:874 +#: ipam/models/ip.py:324 ipam/models/ip.py:874 #, python-brace-format msgid "VRF {vrf}" msgstr "VRF {vrf}" -#: netbox/ipam/models/ip.py:324 netbox/ipam/models/ip.py:874 +#: ipam/models/ip.py:324 ipam/models/ip.py:874 msgid "global table" msgstr "tabla global" -#: netbox/ipam/models/ip.py:326 +#: ipam/models/ip.py:326 #, python-brace-format msgid "Duplicate prefix found in {table}: {prefix}" msgstr "Se encuentra un prefijo duplicado en {table}: {prefix}" -#: netbox/ipam/models/ip.py:495 +#: ipam/models/ip.py:495 msgid "start address" msgstr "dirección de inicio" -#: netbox/ipam/models/ip.py:496 netbox/ipam/models/ip.py:500 -#: netbox/ipam/models/ip.py:712 +#: ipam/models/ip.py:496 ipam/models/ip.py:500 ipam/models/ip.py:712 msgid "IPv4 or IPv6 address (with mask)" msgstr "Dirección IPv4 o IPv6 (con máscara)" -#: netbox/ipam/models/ip.py:499 +#: ipam/models/ip.py:499 msgid "end address" msgstr "dirección final" -#: netbox/ipam/models/ip.py:526 +#: ipam/models/ip.py:526 msgid "Operational status of this range" msgstr "Estado operativo de esta gama" -#: netbox/ipam/models/ip.py:534 +#: ipam/models/ip.py:534 msgid "The primary function of this range" msgstr "La función principal de esta gama" -#: netbox/ipam/models/ip.py:548 +#: ipam/models/ip.py:548 msgid "IP range" msgstr "Rango IP" -#: netbox/ipam/models/ip.py:549 +#: ipam/models/ip.py:549 msgid "IP ranges" msgstr "Intervalos de IP" -#: netbox/ipam/models/ip.py:565 +#: ipam/models/ip.py:565 msgid "Starting and ending IP address versions must match" msgstr "Las versiones de la dirección IP inicial y final deben coincidir" -#: netbox/ipam/models/ip.py:571 +#: ipam/models/ip.py:571 msgid "Starting and ending IP address masks must match" msgstr "Las máscaras de direcciones IP iniciales y finales deben coincidir" -#: netbox/ipam/models/ip.py:578 +#: ipam/models/ip.py:578 #, python-brace-format msgid "" "Ending address must be greater than the starting address ({start_address})" msgstr "" "La dirección final debe ser mayor que la dirección inicial ({start_address})" -#: netbox/ipam/models/ip.py:590 +#: ipam/models/ip.py:590 #, python-brace-format msgid "Defined addresses overlap with range {overlapping_range} in VRF {vrf}" msgstr "" "Las direcciones definidas se superponen con el rango {overlapping_range} en " "VRF {vrf}" -#: netbox/ipam/models/ip.py:599 +#: ipam/models/ip.py:599 #, python-brace-format msgid "Defined range exceeds maximum supported size ({max_size})" msgstr "El rango definido supera el tamaño máximo admitido ({max_size})" -#: netbox/ipam/models/ip.py:711 netbox/tenancy/models/contacts.py:82 +#: ipam/models/ip.py:711 tenancy/models/contacts.py:82 msgid "address" msgstr "dirección" -#: netbox/ipam/models/ip.py:734 +#: ipam/models/ip.py:734 msgid "The operational status of this IP" msgstr "El estado operativo de esta IP" -#: netbox/ipam/models/ip.py:741 +#: ipam/models/ip.py:741 msgid "The functional role of this IP" msgstr "La función funcional de esta propiedad intelectual" -#: netbox/ipam/models/ip.py:765 netbox/templates/ipam/ipaddress.html:72 +#: ipam/models/ip.py:765 templates/ipam/ipaddress.html:72 msgid "NAT (inside)" msgstr "NAT (interior)" -#: netbox/ipam/models/ip.py:766 +#: ipam/models/ip.py:766 msgid "The IP for which this address is the \"outside\" IP" msgstr "La IP para la que esta dirección es la IP «externa»" -#: netbox/ipam/models/ip.py:773 +#: ipam/models/ip.py:773 msgid "Hostname or FQDN (not case-sensitive)" msgstr "Nombre de host o FQDN (no distingue mayúsculas de minúsculas)" -#: netbox/ipam/models/ip.py:789 netbox/ipam/models/services.py:94 +#: ipam/models/ip.py:789 ipam/models/services.py:94 msgid "IP addresses" msgstr "direcciones IP" -#: netbox/ipam/models/ip.py:845 +#: ipam/models/ip.py:845 msgid "Cannot create IP address with /0 mask." msgstr "No se puede crear una dirección IP con la máscara /0." -#: netbox/ipam/models/ip.py:851 +#: ipam/models/ip.py:851 #, python-brace-format msgid "{ip} is a network ID, which may not be assigned to an interface." msgstr "{ip} es un ID de red, que no puede asignarse a una interfaz." -#: netbox/ipam/models/ip.py:862 +#: ipam/models/ip.py:862 #, python-brace-format msgid "" "{ip} is a broadcast address, which may not be assigned to an interface." @@ -10221,71 +9622,71 @@ msgstr "" "{ip} es una dirección de transmisión, que puede no estar asignada a una " "interfaz." -#: netbox/ipam/models/ip.py:876 +#: ipam/models/ip.py:876 #, python-brace-format msgid "Duplicate IP address found in {table}: {ipaddress}" msgstr "Se encontró una dirección IP duplicada en {table}: {ipaddress}" -#: netbox/ipam/models/ip.py:903 +#: ipam/models/ip.py:903 msgid "Only IPv6 addresses can be assigned SLAAC status" msgstr "Solo a las direcciones IPv6 se les puede asignar el estado SLAAC" -#: netbox/ipam/models/services.py:33 +#: ipam/models/services.py:33 msgid "port numbers" msgstr "números de puerto" -#: netbox/ipam/models/services.py:59 +#: ipam/models/services.py:59 msgid "service template" msgstr "plantilla de servicio" -#: netbox/ipam/models/services.py:60 +#: ipam/models/services.py:60 msgid "service templates" msgstr "plantillas de servicio" -#: netbox/ipam/models/services.py:95 +#: ipam/models/services.py:95 msgid "The specific IP addresses (if any) to which this service is bound" msgstr "" "Las direcciones IP específicas (si las hay) a las que está vinculado este " "servicio" -#: netbox/ipam/models/services.py:102 +#: ipam/models/services.py:102 msgid "service" msgstr "servicio" -#: netbox/ipam/models/services.py:103 +#: ipam/models/services.py:103 msgid "services" msgstr "servicios" -#: netbox/ipam/models/services.py:117 +#: ipam/models/services.py:117 msgid "" "A service cannot be associated with both a device and a virtual machine." msgstr "" "No se puede asociar un servicio tanto a un dispositivo como a una máquina " "virtual." -#: netbox/ipam/models/services.py:119 +#: ipam/models/services.py:119 msgid "" "A service must be associated with either a device or a virtual machine." msgstr "" "Un servicio debe estar asociado a un dispositivo o a una máquina virtual." -#: netbox/ipam/models/vlans.py:85 +#: ipam/models/vlans.py:85 msgid "VLAN groups" msgstr "Grupos de VLAN" -#: netbox/ipam/models/vlans.py:95 +#: ipam/models/vlans.py:95 msgid "Cannot set scope_type without scope_id." msgstr "No se puede establecer scope_type sin scope_id." -#: netbox/ipam/models/vlans.py:97 +#: ipam/models/vlans.py:97 msgid "Cannot set scope_id without scope_type." msgstr "No se puede establecer scope_id sin scope_type." -#: netbox/ipam/models/vlans.py:101 +#: ipam/models/vlans.py:101 msgid "Ranges cannot overlap." msgstr "Los rangos no se pueden superponer." -#: netbox/ipam/models/vlans.py:106 +#: ipam/models/vlans.py:106 #, python-brace-format msgid "" "Maximum child VID must be greater than or equal to minimum child VID " @@ -10294,27 +9695,27 @@ msgstr "" "El VID infantil máximo debe ser mayor o igual al VID infantil mínimo " "({value})" -#: netbox/ipam/models/vlans.py:165 +#: ipam/models/vlans.py:165 msgid "The specific site to which this VLAN is assigned (if any)" msgstr "El sitio específico al que está asignada esta VLAN (si existe)" -#: netbox/ipam/models/vlans.py:173 +#: ipam/models/vlans.py:173 msgid "VLAN group (optional)" msgstr "Grupo de VLAN (opcional)" -#: netbox/ipam/models/vlans.py:181 +#: ipam/models/vlans.py:181 msgid "Numeric VLAN ID (1-4094)" msgstr "ID de VLAN numérico (1-4094)" -#: netbox/ipam/models/vlans.py:199 +#: ipam/models/vlans.py:199 msgid "Operational status of this VLAN" msgstr "Estado operativo de esta VLAN" -#: netbox/ipam/models/vlans.py:207 +#: ipam/models/vlans.py:207 msgid "The primary function of this VLAN" msgstr "La función principal de esta VLAN" -#: netbox/ipam/models/vlans.py:250 +#: ipam/models/vlans.py:250 #, python-brace-format msgid "" "VLAN is assigned to group {group} (scope: {scope}); cannot also assign to " @@ -10323,166 +9724,164 @@ msgstr "" "La VLAN está asignada al grupo {group} (alcance: {scope}); no se puede " "asignar también al sitio {site}." -#: netbox/ipam/models/vlans.py:259 +#: ipam/models/vlans.py:259 #, python-brace-format msgid "VID must be in ranges {ranges} for VLANs in group {group}" msgstr "El VID debe estar en rangos {ranges} para VLAN en grupo {group}" -#: netbox/ipam/models/vrfs.py:30 +#: ipam/models/vrfs.py:30 msgid "route distinguisher" msgstr "distinguidor de rutas" -#: netbox/ipam/models/vrfs.py:31 +#: ipam/models/vrfs.py:31 msgid "Unique route distinguisher (as defined in RFC 4364)" msgstr "Distintor de ruta único (tal como se define en el RFC 4364)" -#: netbox/ipam/models/vrfs.py:42 +#: ipam/models/vrfs.py:42 msgid "enforce unique space" msgstr "reforzar un espacio único" -#: netbox/ipam/models/vrfs.py:43 +#: ipam/models/vrfs.py:43 msgid "Prevent duplicate prefixes/IP addresses within this VRF" msgstr "Evite la duplicación de prefijos/direcciones IP en este VRF" -#: netbox/ipam/models/vrfs.py:63 netbox/netbox/navigation/menu.py:186 -#: netbox/netbox/navigation/menu.py:188 +#: ipam/models/vrfs.py:63 netbox/navigation/menu.py:186 +#: netbox/navigation/menu.py:188 msgid "VRFs" msgstr "VRFs" -#: netbox/ipam/models/vrfs.py:82 +#: ipam/models/vrfs.py:82 msgid "Route target value (formatted in accordance with RFC 4360)" msgstr "Valor objetivo de ruta (formateado de acuerdo con el RFC 4360)" -#: netbox/ipam/models/vrfs.py:94 +#: ipam/models/vrfs.py:94 msgid "route target" msgstr "destino de ruta" -#: netbox/ipam/models/vrfs.py:95 +#: ipam/models/vrfs.py:95 msgid "route targets" msgstr "objetivos de ruta" -#: netbox/ipam/tables/asn.py:52 +#: ipam/tables/asn.py:52 msgid "ASDOT" msgstr "COMO PUNTO" -#: netbox/ipam/tables/asn.py:57 +#: ipam/tables/asn.py:57 msgid "Site Count" msgstr "Recuento de sitios" -#: netbox/ipam/tables/asn.py:62 +#: ipam/tables/asn.py:62 msgid "Provider Count" msgstr "Recuento de proveedores" -#: netbox/ipam/tables/ip.py:95 netbox/netbox/navigation/menu.py:179 -#: netbox/netbox/navigation/menu.py:181 +#: ipam/tables/ip.py:95 netbox/navigation/menu.py:179 +#: netbox/navigation/menu.py:181 msgid "Aggregates" msgstr "Agregados" -#: netbox/ipam/tables/ip.py:125 +#: ipam/tables/ip.py:125 msgid "Added" msgstr "Añadido" -#: netbox/ipam/tables/ip.py:128 netbox/ipam/tables/ip.py:166 -#: netbox/ipam/tables/vlans.py:142 netbox/ipam/views.py:346 -#: netbox/netbox/navigation/menu.py:165 netbox/netbox/navigation/menu.py:167 -#: netbox/templates/ipam/vlan.html:84 +#: ipam/tables/ip.py:128 ipam/tables/ip.py:166 ipam/tables/vlans.py:142 +#: ipam/views.py:346 netbox/navigation/menu.py:165 +#: netbox/navigation/menu.py:167 templates/ipam/vlan.html:84 msgid "Prefixes" msgstr "Prefijos" -#: netbox/ipam/tables/ip.py:131 netbox/ipam/tables/ip.py:270 -#: netbox/ipam/tables/ip.py:324 netbox/ipam/tables/vlans.py:86 -#: netbox/templates/dcim/device.html:260 -#: netbox/templates/ipam/aggregate.html:24 -#: netbox/templates/ipam/iprange.html:29 netbox/templates/ipam/prefix.html:106 +#: ipam/tables/ip.py:131 ipam/tables/ip.py:270 ipam/tables/ip.py:324 +#: ipam/tables/vlans.py:86 templates/dcim/device.html:260 +#: templates/ipam/aggregate.html:24 templates/ipam/iprange.html:29 +#: templates/ipam/prefix.html:106 msgid "Utilization" msgstr "Utilización" -#: netbox/ipam/tables/ip.py:171 netbox/netbox/navigation/menu.py:161 +#: ipam/tables/ip.py:171 netbox/navigation/menu.py:161 msgid "IP Ranges" msgstr "Intervalos de IP" -#: netbox/ipam/tables/ip.py:221 +#: ipam/tables/ip.py:221 msgid "Prefix (Flat)" msgstr "Prefijo (plano)" -#: netbox/ipam/tables/ip.py:225 +#: ipam/tables/ip.py:225 msgid "Depth" msgstr "Profundidad" -#: netbox/ipam/tables/ip.py:262 +#: ipam/tables/ip.py:262 msgid "Pool" msgstr "Piscina" -#: netbox/ipam/tables/ip.py:266 netbox/ipam/tables/ip.py:320 +#: ipam/tables/ip.py:266 ipam/tables/ip.py:320 msgid "Marked Utilized" msgstr "Marcado como utilizado" -#: netbox/ipam/tables/ip.py:304 +#: ipam/tables/ip.py:304 msgid "Start address" msgstr "Dirección de inicio" -#: netbox/ipam/tables/ip.py:383 +#: ipam/tables/ip.py:383 msgid "NAT (Inside)" msgstr "NAT (interior)" -#: netbox/ipam/tables/ip.py:388 +#: ipam/tables/ip.py:388 msgid "NAT (Outside)" msgstr "NAT (exterior)" -#: netbox/ipam/tables/ip.py:393 +#: ipam/tables/ip.py:393 msgid "Assigned" msgstr "Asignado" -#: netbox/ipam/tables/ip.py:429 netbox/templates/vpn/l2vpntermination.html:16 -#: netbox/vpn/forms/filtersets.py:240 +#: ipam/tables/ip.py:429 templates/vpn/l2vpntermination.html:16 +#: vpn/forms/filtersets.py:240 msgid "Assigned Object" msgstr "Objeto asignado" -#: netbox/ipam/tables/vlans.py:68 +#: ipam/tables/vlans.py:68 msgid "Scope Type" msgstr "Tipo de ámbito" -#: netbox/ipam/tables/vlans.py:76 +#: ipam/tables/vlans.py:76 msgid "VID Ranges" msgstr "Gamas VID" -#: netbox/ipam/tables/vlans.py:111 netbox/ipam/tables/vlans.py:214 -#: netbox/templates/dcim/inc/interface_vlans_table.html:4 +#: ipam/tables/vlans.py:111 ipam/tables/vlans.py:214 +#: templates/dcim/inc/interface_vlans_table.html:4 msgid "VID" msgstr "VÍDEO" -#: netbox/ipam/tables/vrfs.py:30 +#: ipam/tables/vrfs.py:30 msgid "RD" msgstr "ROJO" -#: netbox/ipam/tables/vrfs.py:33 +#: ipam/tables/vrfs.py:33 msgid "Unique" msgstr "Único" -#: netbox/ipam/tables/vrfs.py:37 netbox/vpn/tables/l2vpn.py:27 +#: ipam/tables/vrfs.py:37 vpn/tables/l2vpn.py:27 msgid "Import Targets" msgstr "Objetivos de importación" -#: netbox/ipam/tables/vrfs.py:42 netbox/vpn/tables/l2vpn.py:32 +#: ipam/tables/vrfs.py:42 vpn/tables/l2vpn.py:32 msgid "Export Targets" msgstr "Objetivos de exportación" -#: netbox/ipam/validators.py:9 +#: ipam/validators.py:9 #, python-brace-format msgid "{prefix} is not a valid prefix. Did you mean {suggested}?" msgstr "{prefix} no es un prefijo válido. ¿Querías decir {suggested}?" -#: netbox/ipam/validators.py:16 +#: ipam/validators.py:16 #, python-format msgid "The prefix length must be less than or equal to %(limit_value)s." msgstr "La longitud del prefijo debe ser inferior o igual a %(limit_value)s." -#: netbox/ipam/validators.py:24 +#: ipam/validators.py:24 #, python-format msgid "The prefix length must be greater than or equal to %(limit_value)s." msgstr "La longitud del prefijo debe ser mayor o igual a %(limit_value)s." -#: netbox/ipam/validators.py:33 +#: ipam/validators.py:33 msgid "" "Only alphanumeric characters, asterisks, hyphens, periods, and underscores " "are allowed in DNS names" @@ -10490,31 +9889,31 @@ msgstr "" "Solo se permiten caracteres alfanuméricos, asteriscos, guiones, puntos y " "guiones bajos en los nombres DNS" -#: netbox/ipam/views.py:533 +#: ipam/views.py:533 msgid "Child Prefixes" msgstr "Prefijos infantiles" -#: netbox/ipam/views.py:569 +#: ipam/views.py:569 msgid "Child Ranges" msgstr "Rangos infantiles" -#: netbox/ipam/views.py:898 +#: ipam/views.py:898 msgid "Related IPs" msgstr "IPs relacionadas" -#: netbox/ipam/views.py:1127 +#: ipam/views.py:1127 msgid "Device Interfaces" msgstr "Interfaces de dispositivos" -#: netbox/ipam/views.py:1145 +#: ipam/views.py:1145 msgid "VM Interfaces" msgstr "Interfaces de VM" -#: netbox/netbox/api/fields.py:65 +#: netbox/api/fields.py:65 msgid "This field may not be blank." msgstr "Es posible que este campo no esté en blanco." -#: netbox/netbox/api/fields.py:70 +#: netbox/api/fields.py:70 msgid "" "Value must be passed directly (e.g. \"foo\": 123); do not use a dictionary " "or list." @@ -10522,349 +9921,336 @@ msgstr "" "El valor debe pasarse directamente (por ejemplo, «foo»: 123); no utilice un " "diccionario o una lista." -#: netbox/netbox/api/fields.py:91 +#: netbox/api/fields.py:91 #, python-brace-format msgid "{value} is not a valid choice." msgstr "{value} no es una opción válida." -#: netbox/netbox/api/fields.py:104 +#: netbox/api/fields.py:104 #, python-brace-format msgid "Invalid content type: {content_type}" msgstr "Tipo de contenido no válido: {content_type}" -#: netbox/netbox/api/fields.py:105 +#: netbox/api/fields.py:105 msgid "Invalid value. Specify a content type as '.'." msgstr "" "Valor no válido. Especifique un tipo de contenido como " "'.'." -#: netbox/netbox/api/fields.py:167 +#: netbox/api/fields.py:167 msgid "Ranges must be specified in the form (lower, upper)." msgstr "" "Los rangos se deben especificar en el formulario (inferior, superior)." -#: netbox/netbox/api/fields.py:169 +#: netbox/api/fields.py:169 msgid "Range boundaries must be defined as integers." msgstr "Los límites del rango se deben definir como números enteros." -#: netbox/netbox/api/serializers/fields.py:40 +#: netbox/api/serializers/fields.py:40 #, python-brace-format msgid "{class_name} must implement get_view_name()" msgstr "{class_name} debe implementar get_view_name ()" -#: netbox/netbox/authentication/__init__.py:138 +#: netbox/authentication/__init__.py:138 #, python-brace-format msgid "Invalid permission {permission} for model {model}" msgstr "Permiso no válido {permission} para modelo {model}" -#: netbox/netbox/choices.py:49 +#: netbox/choices.py:49 msgid "Dark Red" msgstr "rojo oscuro" -#: netbox/netbox/choices.py:52 +#: netbox/choices.py:52 msgid "Rose" msgstr "Rosa" -#: netbox/netbox/choices.py:53 +#: netbox/choices.py:53 msgid "Fuchsia" msgstr "Fucsia" -#: netbox/netbox/choices.py:55 +#: netbox/choices.py:55 msgid "Dark Purple" msgstr "Púrpura oscuro" -#: netbox/netbox/choices.py:58 +#: netbox/choices.py:58 msgid "Light Blue" msgstr "Azul claro" -#: netbox/netbox/choices.py:61 +#: netbox/choices.py:61 msgid "Aqua" msgstr "Aguamarina" -#: netbox/netbox/choices.py:62 +#: netbox/choices.py:62 msgid "Dark Green" msgstr "Verde oscuro" -#: netbox/netbox/choices.py:64 +#: netbox/choices.py:64 msgid "Light Green" msgstr "Verde claro" -#: netbox/netbox/choices.py:65 +#: netbox/choices.py:65 msgid "Lime" msgstr "Lima" -#: netbox/netbox/choices.py:67 +#: netbox/choices.py:67 msgid "Amber" msgstr "Ámbar" -#: netbox/netbox/choices.py:69 +#: netbox/choices.py:69 msgid "Dark Orange" msgstr "Naranja oscuro" -#: netbox/netbox/choices.py:70 +#: netbox/choices.py:70 msgid "Brown" msgstr "Marrón" -#: netbox/netbox/choices.py:71 +#: netbox/choices.py:71 msgid "Light Grey" msgstr "Gris claro" -#: netbox/netbox/choices.py:72 +#: netbox/choices.py:72 msgid "Grey" msgstr "Gris" -#: netbox/netbox/choices.py:73 +#: netbox/choices.py:73 msgid "Dark Grey" msgstr "Gris oscuro" -#: netbox/netbox/choices.py:128 +#: netbox/choices.py:128 msgid "Direct" msgstr "Directo" -#: netbox/netbox/choices.py:129 +#: netbox/choices.py:129 msgid "Upload" msgstr "Cargar" -#: netbox/netbox/choices.py:141 netbox/netbox/choices.py:155 +#: netbox/choices.py:141 netbox/choices.py:155 msgid "Auto-detect" msgstr "Detección automática" -#: netbox/netbox/choices.py:156 +#: netbox/choices.py:156 msgid "Comma" msgstr "Coma" -#: netbox/netbox/choices.py:157 +#: netbox/choices.py:157 msgid "Semicolon" msgstr "Punto y coma" -#: netbox/netbox/choices.py:158 +#: netbox/choices.py:158 msgid "Tab" msgstr "Pestaña" -#: netbox/netbox/config/__init__.py:67 +#: netbox/config/__init__.py:67 #, python-brace-format msgid "Invalid configuration parameter: {item}" msgstr "Parámetro de configuración no válido: {item}" -#: netbox/netbox/config/parameters.py:22 -#: netbox/templates/core/inc/config_data.html:62 +#: netbox/config/parameters.py:22 templates/core/inc/config_data.html:62 msgid "Login banner" msgstr "banner de inicio de sesión" -#: netbox/netbox/config/parameters.py:24 +#: netbox/config/parameters.py:24 msgid "Additional content to display on the login page" msgstr "Contenido adicional para mostrar en la página de inicio de sesión" -#: netbox/netbox/config/parameters.py:33 -#: netbox/templates/core/inc/config_data.html:66 +#: netbox/config/parameters.py:33 templates/core/inc/config_data.html:66 msgid "Maintenance banner" msgstr "Banner de mantenimiento" -#: netbox/netbox/config/parameters.py:35 +#: netbox/config/parameters.py:35 msgid "Additional content to display when in maintenance mode" msgstr "Contenido adicional para mostrar en modo de mantenimiento" -#: netbox/netbox/config/parameters.py:44 -#: netbox/templates/core/inc/config_data.html:70 +#: netbox/config/parameters.py:44 templates/core/inc/config_data.html:70 msgid "Top banner" msgstr "Banner superior" -#: netbox/netbox/config/parameters.py:46 +#: netbox/config/parameters.py:46 msgid "Additional content to display at the top of every page" msgstr "Contenido adicional para mostrar en la parte superior de cada página" -#: netbox/netbox/config/parameters.py:55 -#: netbox/templates/core/inc/config_data.html:74 +#: netbox/config/parameters.py:55 templates/core/inc/config_data.html:74 msgid "Bottom banner" msgstr "Banner inferior" -#: netbox/netbox/config/parameters.py:57 +#: netbox/config/parameters.py:57 msgid "Additional content to display at the bottom of every page" msgstr "Contenido adicional para mostrar en la parte inferior de cada página" -#: netbox/netbox/config/parameters.py:68 +#: netbox/config/parameters.py:68 msgid "Globally unique IP space" msgstr "Espacio IP único a nivel mundial" -#: netbox/netbox/config/parameters.py:70 +#: netbox/config/parameters.py:70 msgid "Enforce unique IP addressing within the global table" msgstr "Imponga un direccionamiento IP único dentro de la tabla global" -#: netbox/netbox/config/parameters.py:75 -#: netbox/templates/core/inc/config_data.html:44 +#: netbox/config/parameters.py:75 templates/core/inc/config_data.html:44 msgid "Prefer IPv4" msgstr "Prefiero IPv4" -#: netbox/netbox/config/parameters.py:77 +#: netbox/config/parameters.py:77 msgid "Prefer IPv4 addresses over IPv6" msgstr "Prefiere las direcciones IPv4 en lugar de IPv6" -#: netbox/netbox/config/parameters.py:84 +#: netbox/config/parameters.py:84 msgid "Rack unit height" msgstr "Altura de la unidad de estantería" -#: netbox/netbox/config/parameters.py:86 +#: netbox/config/parameters.py:86 msgid "Default unit height for rendered rack elevations" msgstr "" "Altura unitaria predeterminada para elevaciones de estanterías renderizadas" -#: netbox/netbox/config/parameters.py:91 +#: netbox/config/parameters.py:91 msgid "Rack unit width" msgstr "Ancho de la unidad de bastidor" -#: netbox/netbox/config/parameters.py:93 +#: netbox/config/parameters.py:93 msgid "Default unit width for rendered rack elevations" msgstr "" "Ancho de unidad predeterminado para las elevaciones de estanterías " "renderizadas" -#: netbox/netbox/config/parameters.py:100 +#: netbox/config/parameters.py:100 msgid "Powerfeed voltage" msgstr "Tensión de alimentación" -#: netbox/netbox/config/parameters.py:102 +#: netbox/config/parameters.py:102 msgid "Default voltage for powerfeeds" msgstr "Tensión predeterminada para las alimentaciones" -#: netbox/netbox/config/parameters.py:107 +#: netbox/config/parameters.py:107 msgid "Powerfeed amperage" msgstr "Amperaje de alimentación" -#: netbox/netbox/config/parameters.py:109 +#: netbox/config/parameters.py:109 msgid "Default amperage for powerfeeds" msgstr "Amperaje predeterminado para las alimentaciones" -#: netbox/netbox/config/parameters.py:114 +#: netbox/config/parameters.py:114 msgid "Powerfeed max utilization" msgstr "Utilización máxima de Powerfeed" -#: netbox/netbox/config/parameters.py:116 +#: netbox/config/parameters.py:116 msgid "Default max utilization for powerfeeds" msgstr "Utilización máxima predeterminada de las fuentes de alimentación" -#: netbox/netbox/config/parameters.py:123 -#: netbox/templates/core/inc/config_data.html:53 +#: netbox/config/parameters.py:123 templates/core/inc/config_data.html:53 msgid "Allowed URL schemes" msgstr "Esquemas de URL permitidos" -#: netbox/netbox/config/parameters.py:128 +#: netbox/config/parameters.py:128 msgid "Permitted schemes for URLs in user-provided content" msgstr "" "Esquemas permitidos para las URL en el contenido proporcionado por el " "usuario" -#: netbox/netbox/config/parameters.py:136 +#: netbox/config/parameters.py:136 msgid "Default page size" msgstr "Tamaño de página predeterminado" -#: netbox/netbox/config/parameters.py:142 +#: netbox/config/parameters.py:142 msgid "Maximum page size" msgstr "Tamaño máximo de página" -#: netbox/netbox/config/parameters.py:150 -#: netbox/templates/core/inc/config_data.html:96 +#: netbox/config/parameters.py:150 templates/core/inc/config_data.html:96 msgid "Custom validators" msgstr "Validadores personalizados" -#: netbox/netbox/config/parameters.py:152 +#: netbox/config/parameters.py:152 msgid "Custom validation rules (JSON)" msgstr "Reglas de validación personalizadas (JSON)" -#: netbox/netbox/config/parameters.py:160 -#: netbox/templates/core/inc/config_data.html:104 +#: netbox/config/parameters.py:160 templates/core/inc/config_data.html:104 msgid "Protection rules" msgstr "Normas de protección" -#: netbox/netbox/config/parameters.py:162 +#: netbox/config/parameters.py:162 msgid "Deletion protection rules (JSON)" msgstr "Reglas de protección contra eliminaciones (JSON)" -#: netbox/netbox/config/parameters.py:172 -#: netbox/templates/core/inc/config_data.html:117 +#: netbox/config/parameters.py:172 templates/core/inc/config_data.html:117 msgid "Default preferences" msgstr "Preferencias predeterminadas" -#: netbox/netbox/config/parameters.py:174 +#: netbox/config/parameters.py:174 msgid "Default preferences for new users" msgstr "Preferencias predeterminadas para usuarios nuevos" -#: netbox/netbox/config/parameters.py:181 -#: netbox/templates/core/inc/config_data.html:129 +#: netbox/config/parameters.py:181 templates/core/inc/config_data.html:129 msgid "Maintenance mode" msgstr "Modo de mantenimiento" -#: netbox/netbox/config/parameters.py:183 +#: netbox/config/parameters.py:183 msgid "Enable maintenance mode" msgstr "Habilitar el modo de mantenimiento" -#: netbox/netbox/config/parameters.py:188 -#: netbox/templates/core/inc/config_data.html:133 +#: netbox/config/parameters.py:188 templates/core/inc/config_data.html:133 msgid "GraphQL enabled" msgstr "GraphQL habilitado" -#: netbox/netbox/config/parameters.py:190 +#: netbox/config/parameters.py:190 msgid "Enable the GraphQL API" msgstr "Habilita la API de GraphQL" -#: netbox/netbox/config/parameters.py:195 -#: netbox/templates/core/inc/config_data.html:137 +#: netbox/config/parameters.py:195 templates/core/inc/config_data.html:137 msgid "Changelog retention" msgstr "Retención del registro de cambios" -#: netbox/netbox/config/parameters.py:197 +#: netbox/config/parameters.py:197 msgid "Days to retain changelog history (set to zero for unlimited)" msgstr "" "Días para conservar el historial de cambios (se establece en cero de forma " "ilimitada)" -#: netbox/netbox/config/parameters.py:202 +#: netbox/config/parameters.py:202 msgid "Job result retention" msgstr "Retención de resultados laborales" -#: netbox/netbox/config/parameters.py:204 +#: netbox/config/parameters.py:204 msgid "Days to retain job result history (set to zero for unlimited)" msgstr "" "Días para conservar el historial de resultados del trabajo (establecido en " "cero para un número ilimitado)" -#: netbox/netbox/config/parameters.py:209 -#: netbox/templates/core/inc/config_data.html:145 +#: netbox/config/parameters.py:209 templates/core/inc/config_data.html:145 msgid "Maps URL" msgstr "URL de mapas" -#: netbox/netbox/config/parameters.py:211 +#: netbox/config/parameters.py:211 msgid "Base URL for mapping geographic locations" msgstr "URL base para mapear ubicaciones geográficas" -#: netbox/netbox/forms/__init__.py:12 +#: netbox/forms/__init__.py:12 msgid "Partial match" msgstr "Coincidencia parcial" -#: netbox/netbox/forms/__init__.py:13 +#: netbox/forms/__init__.py:13 msgid "Exact match" msgstr "Coincidencia exacta" -#: netbox/netbox/forms/__init__.py:14 +#: netbox/forms/__init__.py:14 msgid "Starts with" msgstr "Empieza con" -#: netbox/netbox/forms/__init__.py:15 +#: netbox/forms/__init__.py:15 msgid "Ends with" msgstr "Termina con" -#: netbox/netbox/forms/__init__.py:16 +#: netbox/forms/__init__.py:16 msgid "Regex" msgstr "Regex" -#: netbox/netbox/forms/__init__.py:34 +#: netbox/forms/__init__.py:34 msgid "Object type(s)" msgstr "Tipo(s) de objeto(s)" -#: netbox/netbox/forms/__init__.py:40 +#: netbox/forms/__init__.py:40 msgid "Lookup" msgstr "Búsqueda" -#: netbox/netbox/forms/base.py:90 +#: netbox/forms/base.py:90 msgid "" "Tag slugs separated by commas, encased with double quotes (e.g. " "\"tag1,tag2,tag3\")" @@ -10872,431 +10258,415 @@ msgstr "" "Etiquete las babosas separadas por comas y entre comillas dobles (por " "ejemplo, «tag1, tag2, tag3\")" -#: netbox/netbox/forms/base.py:120 +#: netbox/forms/base.py:120 msgid "Add tags" msgstr "Añadir etiquetas" -#: netbox/netbox/forms/base.py:125 +#: netbox/forms/base.py:125 msgid "Remove tags" msgstr "Eliminar etiquetas" -#: netbox/netbox/forms/mixins.py:38 +#: netbox/forms/mixins.py:38 #, python-brace-format msgid "{class_name} must specify a model class." msgstr "{class_name} debe especificar una clase modelo." -#: netbox/netbox/models/features.py:280 +#: netbox/models/features.py:280 #, python-brace-format msgid "Unknown field name '{name}' in custom field data." msgstr "Nombre de campo desconocido '{name}'en datos de campo personalizados." -#: netbox/netbox/models/features.py:286 +#: netbox/models/features.py:286 #, python-brace-format msgid "Invalid value for custom field '{name}': {error}" msgstr "Valor no válido para el campo personalizado '{name}': {error}" -#: netbox/netbox/models/features.py:295 +#: netbox/models/features.py:295 #, python-brace-format msgid "Custom field '{name}' must have a unique value." msgstr "Campo personalizado '{name}'debe tener un valor único." -#: netbox/netbox/models/features.py:302 +#: netbox/models/features.py:302 #, python-brace-format msgid "Missing required custom field '{name}'." msgstr "Falta el campo personalizado obligatorio '{name}'." -#: netbox/netbox/models/features.py:462 +#: netbox/models/features.py:462 msgid "Remote data source" msgstr "Fuente de datos remota" -#: netbox/netbox/models/features.py:472 +#: netbox/models/features.py:472 msgid "data path" msgstr "ruta de datos" -#: netbox/netbox/models/features.py:476 +#: netbox/models/features.py:476 msgid "Path to remote file (relative to data source root)" msgstr "Ruta al archivo remoto (relativa a la raíz de la fuente de datos)" -#: netbox/netbox/models/features.py:479 +#: netbox/models/features.py:479 msgid "auto sync enabled" msgstr "sincronización automática habilitada" -#: netbox/netbox/models/features.py:481 +#: netbox/models/features.py:481 msgid "Enable automatic synchronization of data when the data file is updated" msgstr "" "Habilitar la sincronización automática de datos cuando se actualiza el " "archivo de datos" -#: netbox/netbox/models/features.py:484 +#: netbox/models/features.py:484 msgid "date synced" msgstr "fecha sincronizada" -#: netbox/netbox/models/features.py:578 +#: netbox/models/features.py:578 #, python-brace-format msgid "{class_name} must implement a sync_data() method." msgstr "{class_name} debe implementar un método sync_data ()." -#: netbox/netbox/navigation/menu.py:11 +#: netbox/navigation/menu.py:11 msgid "Organization" msgstr "Organización" -#: netbox/netbox/navigation/menu.py:19 +#: netbox/navigation/menu.py:19 msgid "Site Groups" msgstr "Grupos de sitios" -#: netbox/netbox/navigation/menu.py:27 +#: netbox/navigation/menu.py:27 msgid "Tenant Groups" msgstr "Grupos de inquilinos" -#: netbox/netbox/navigation/menu.py:34 +#: netbox/navigation/menu.py:34 msgid "Contact Groups" msgstr "Grupos de contactos" -#: netbox/netbox/navigation/menu.py:35 -#: netbox/templates/tenancy/contactrole.html:8 +#: netbox/navigation/menu.py:35 templates/tenancy/contactrole.html:8 msgid "Contact Roles" msgstr "Funciones de contacto" -#: netbox/netbox/navigation/menu.py:36 +#: netbox/navigation/menu.py:36 msgid "Contact Assignments" msgstr "Asignaciones de contactos" -#: netbox/netbox/navigation/menu.py:50 +#: netbox/navigation/menu.py:50 msgid "Rack Roles" msgstr "Roles de bastidor" -#: netbox/netbox/navigation/menu.py:54 +#: netbox/navigation/menu.py:54 msgid "Elevations" msgstr "Elevaciones" -#: netbox/netbox/navigation/menu.py:60 netbox/netbox/navigation/menu.py:62 +#: netbox/navigation/menu.py:60 netbox/navigation/menu.py:62 msgid "Rack Types" msgstr "Tipos de estanterías" -#: netbox/netbox/navigation/menu.py:76 +#: netbox/navigation/menu.py:76 msgid "Modules" msgstr "Módulos" -#: netbox/netbox/navigation/menu.py:80 netbox/templates/dcim/device.html:160 -#: netbox/templates/dcim/virtualdevicecontext.html:8 +#: netbox/navigation/menu.py:80 templates/dcim/device.html:160 +#: templates/dcim/virtualdevicecontext.html:8 msgid "Virtual Device Contexts" msgstr "Contextos de dispositivos virtuales" -#: netbox/netbox/navigation/menu.py:88 +#: netbox/navigation/menu.py:88 msgid "Manufacturers" msgstr "fabricantes" -#: netbox/netbox/navigation/menu.py:92 +#: netbox/navigation/menu.py:92 msgid "Device Components" msgstr "Componentes del dispositivo" -#: netbox/netbox/navigation/menu.py:104 -#: netbox/templates/dcim/inventoryitemrole.html:8 +#: netbox/navigation/menu.py:104 templates/dcim/inventoryitemrole.html:8 msgid "Inventory Item Roles" msgstr "Funciones de los artículos de inventario" -#: netbox/netbox/navigation/menu.py:111 netbox/netbox/navigation/menu.py:115 +#: netbox/navigation/menu.py:111 netbox/navigation/menu.py:115 msgid "Connections" msgstr "Conexiones" -#: netbox/netbox/navigation/menu.py:117 +#: netbox/navigation/menu.py:117 msgid "Cables" msgstr "Cables" -#: netbox/netbox/navigation/menu.py:118 +#: netbox/navigation/menu.py:118 msgid "Wireless Links" msgstr "Vínculos inalámbricos" -#: netbox/netbox/navigation/menu.py:121 +#: netbox/navigation/menu.py:121 msgid "Interface Connections" msgstr "Conexiones de interfaz" -#: netbox/netbox/navigation/menu.py:126 +#: netbox/navigation/menu.py:126 msgid "Console Connections" msgstr "Conexiones de consola" -#: netbox/netbox/navigation/menu.py:131 +#: netbox/navigation/menu.py:131 msgid "Power Connections" msgstr "Conexiones de alimentación" -#: netbox/netbox/navigation/menu.py:147 +#: netbox/navigation/menu.py:147 msgid "Wireless LAN Groups" msgstr "Grupos de LAN inalámbrica" -#: netbox/netbox/navigation/menu.py:168 +#: netbox/navigation/menu.py:168 msgid "Prefix & VLAN Roles" msgstr "Funciones de prefijo y VLAN" -#: netbox/netbox/navigation/menu.py:174 +#: netbox/navigation/menu.py:174 msgid "ASN Ranges" msgstr "Rangos de ASN" -#: netbox/netbox/navigation/menu.py:196 +#: netbox/navigation/menu.py:196 msgid "VLAN Groups" msgstr "Grupos de VLAN" -#: netbox/netbox/navigation/menu.py:203 +#: netbox/navigation/menu.py:203 msgid "Service Templates" msgstr "Plantillas de servicio" -#: netbox/netbox/navigation/menu.py:204 netbox/templates/dcim/device.html:302 -#: netbox/templates/ipam/ipaddress.html:118 -#: netbox/templates/virtualization/virtualmachine.html:154 +#: netbox/navigation/menu.py:204 templates/dcim/device.html:302 +#: templates/ipam/ipaddress.html:118 +#: templates/virtualization/virtualmachine.html:154 msgid "Services" msgstr "Servicios" -#: netbox/netbox/navigation/menu.py:211 +#: netbox/navigation/menu.py:211 msgid "VPN" msgstr "VPN" -#: netbox/netbox/navigation/menu.py:215 netbox/netbox/navigation/menu.py:217 -#: netbox/vpn/tables/tunnels.py:24 +#: netbox/navigation/menu.py:215 netbox/navigation/menu.py:217 +#: vpn/tables/tunnels.py:24 msgid "Tunnels" msgstr "Túneles" -#: netbox/netbox/navigation/menu.py:218 -#: netbox/templates/vpn/tunnelgroup.html:8 +#: netbox/navigation/menu.py:218 templates/vpn/tunnelgroup.html:8 msgid "Tunnel Groups" msgstr "Grupos de túneles" -#: netbox/netbox/navigation/menu.py:219 +#: netbox/navigation/menu.py:219 msgid "Tunnel Terminations" msgstr "Terminaciones de túneles" -#: netbox/netbox/navigation/menu.py:223 netbox/netbox/navigation/menu.py:225 -#: netbox/vpn/models/l2vpn.py:64 +#: netbox/navigation/menu.py:223 netbox/navigation/menu.py:225 +#: vpn/models/l2vpn.py:64 msgid "L2VPNs" msgstr "VPNs L2" -#: netbox/netbox/navigation/menu.py:226 netbox/templates/vpn/l2vpn.html:56 -#: netbox/templates/vpn/tunnel.html:72 netbox/vpn/tables/tunnels.py:58 +#: netbox/navigation/menu.py:226 templates/vpn/l2vpn.html:56 +#: templates/vpn/tunnel.html:72 vpn/tables/tunnels.py:58 msgid "Terminations" msgstr "Terminaciones" -#: netbox/netbox/navigation/menu.py:232 +#: netbox/navigation/menu.py:232 msgid "IKE Proposals" msgstr "Propuestas IKE" -#: netbox/netbox/navigation/menu.py:233 -#: netbox/templates/vpn/ikeproposal.html:41 +#: netbox/navigation/menu.py:233 templates/vpn/ikeproposal.html:41 msgid "IKE Policies" msgstr "Políticas de IKE" -#: netbox/netbox/navigation/menu.py:234 +#: netbox/navigation/menu.py:234 msgid "IPSec Proposals" msgstr "Propuestas de IPSec" -#: netbox/netbox/navigation/menu.py:235 -#: netbox/templates/vpn/ipsecproposal.html:37 +#: netbox/navigation/menu.py:235 templates/vpn/ipsecproposal.html:37 msgid "IPSec Policies" msgstr "Políticas IPSec" -#: netbox/netbox/navigation/menu.py:236 netbox/templates/vpn/ikepolicy.html:38 -#: netbox/templates/vpn/ipsecpolicy.html:25 +#: netbox/navigation/menu.py:236 templates/vpn/ikepolicy.html:38 +#: templates/vpn/ipsecpolicy.html:25 msgid "IPSec Profiles" msgstr "Perfiles IPSec" -#: netbox/netbox/navigation/menu.py:243 -#: netbox/templates/dcim/device_edit.html:78 +#: netbox/navigation/menu.py:243 templates/dcim/device_edit.html:78 msgid "Virtualization" msgstr "Virtualización" -#: netbox/netbox/navigation/menu.py:251 -#: netbox/templates/virtualization/virtualmachine.html:174 -#: netbox/templates/virtualization/virtualmachine/base.html:32 -#: netbox/templates/virtualization/virtualmachine_list.html:21 -#: netbox/virtualization/tables/virtualmachines.py:104 -#: netbox/virtualization/views.py:388 +#: netbox/navigation/menu.py:251 +#: templates/virtualization/virtualmachine.html:174 +#: templates/virtualization/virtualmachine/base.html:32 +#: templates/virtualization/virtualmachine_list.html:21 +#: virtualization/tables/virtualmachines.py:104 virtualization/views.py:388 msgid "Virtual Disks" msgstr "Discos virtuales" -#: netbox/netbox/navigation/menu.py:258 +#: netbox/navigation/menu.py:258 msgid "Cluster Types" msgstr "Tipos de clústeres" -#: netbox/netbox/navigation/menu.py:259 +#: netbox/navigation/menu.py:259 msgid "Cluster Groups" msgstr "Grupos de clústeres" -#: netbox/netbox/navigation/menu.py:273 +#: netbox/navigation/menu.py:273 msgid "Circuit Types" msgstr "Tipos de circuitos" -#: netbox/netbox/navigation/menu.py:274 +#: netbox/navigation/menu.py:274 msgid "Circuit Groups" msgstr "Grupos de circuitos" -#: netbox/netbox/navigation/menu.py:275 -#: netbox/templates/circuits/circuit.html:66 +#: netbox/navigation/menu.py:275 templates/circuits/circuit.html:66 msgid "Group Assignments" msgstr "Tareas grupales" -#: netbox/netbox/navigation/menu.py:276 +#: netbox/navigation/menu.py:276 msgid "Circuit Terminations" msgstr "Terminaciones de circuitos" -#: netbox/netbox/navigation/menu.py:280 netbox/netbox/navigation/menu.py:282 +#: netbox/navigation/menu.py:280 netbox/navigation/menu.py:282 msgid "Providers" msgstr "Proveedores" -#: netbox/netbox/navigation/menu.py:283 -#: netbox/templates/circuits/provider.html:51 +#: netbox/navigation/menu.py:283 templates/circuits/provider.html:51 msgid "Provider Accounts" msgstr "Cuentas de proveedores" -#: netbox/netbox/navigation/menu.py:284 +#: netbox/navigation/menu.py:284 msgid "Provider Networks" msgstr "Redes de proveedores" -#: netbox/netbox/navigation/menu.py:298 +#: netbox/navigation/menu.py:298 msgid "Power Panels" msgstr "Paneles de alimentación" -#: netbox/netbox/navigation/menu.py:309 +#: netbox/navigation/menu.py:309 msgid "Configurations" msgstr "Configuraciones" -#: netbox/netbox/navigation/menu.py:311 +#: netbox/navigation/menu.py:311 msgid "Config Contexts" msgstr "Contextos de configuración" -#: netbox/netbox/navigation/menu.py:312 +#: netbox/navigation/menu.py:312 msgid "Config Templates" msgstr "Plantillas de configuración" -#: netbox/netbox/navigation/menu.py:319 netbox/netbox/navigation/menu.py:323 +#: netbox/navigation/menu.py:319 netbox/navigation/menu.py:323 msgid "Customization" msgstr "Personalización" -#: netbox/netbox/navigation/menu.py:325 -#: netbox/templates/dcim/device_edit.html:103 -#: netbox/templates/dcim/htmx/cable_edit.html:81 -#: netbox/templates/dcim/virtualchassis_add.html:31 -#: netbox/templates/dcim/virtualchassis_edit.html:40 -#: netbox/templates/generic/bulk_edit.html:76 -#: netbox/templates/htmx/form.html:19 netbox/templates/inc/filter_list.html:30 -#: netbox/templates/inc/panels/custom_fields.html:7 -#: netbox/templates/ipam/ipaddress_bulk_add.html:35 -#: netbox/templates/ipam/vlan_edit.html:59 +#: netbox/navigation/menu.py:325 templates/dcim/device_edit.html:103 +#: templates/dcim/htmx/cable_edit.html:81 +#: templates/dcim/virtualchassis_add.html:31 +#: templates/dcim/virtualchassis_edit.html:40 +#: templates/generic/bulk_edit.html:76 templates/htmx/form.html:19 +#: templates/inc/filter_list.html:30 templates/inc/panels/custom_fields.html:7 +#: templates/ipam/ipaddress_bulk_add.html:35 templates/ipam/vlan_edit.html:59 msgid "Custom Fields" msgstr "Campos personalizados" -#: netbox/netbox/navigation/menu.py:326 +#: netbox/navigation/menu.py:326 msgid "Custom Field Choices" msgstr "Opciones de campo personalizadas" -#: netbox/netbox/navigation/menu.py:327 +#: netbox/navigation/menu.py:327 msgid "Custom Links" msgstr "Vínculos personalizados" -#: netbox/netbox/navigation/menu.py:328 +#: netbox/navigation/menu.py:328 msgid "Export Templates" msgstr "Plantillas de exportación" -#: netbox/netbox/navigation/menu.py:329 +#: netbox/navigation/menu.py:329 msgid "Saved Filters" msgstr "Filtros guardados" -#: netbox/netbox/navigation/menu.py:331 +#: netbox/navigation/menu.py:331 msgid "Image Attachments" msgstr "Adjuntos de imágenes" -#: netbox/netbox/navigation/menu.py:349 +#: netbox/navigation/menu.py:349 msgid "Operations" msgstr "Operaciones" -#: netbox/netbox/navigation/menu.py:353 +#: netbox/navigation/menu.py:353 msgid "Integrations" msgstr "Integraciones" -#: netbox/netbox/navigation/menu.py:355 +#: netbox/navigation/menu.py:355 msgid "Data Sources" msgstr "Fuentes de datos" -#: netbox/netbox/navigation/menu.py:356 +#: netbox/navigation/menu.py:356 msgid "Event Rules" msgstr "Reglas del evento" -#: netbox/netbox/navigation/menu.py:357 +#: netbox/navigation/menu.py:357 msgid "Webhooks" msgstr "Webhooks" -#: netbox/netbox/navigation/menu.py:361 netbox/netbox/navigation/menu.py:365 -#: netbox/netbox/views/generic/feature_views.py:153 -#: netbox/templates/extras/report/base.html:37 -#: netbox/templates/extras/script/base.html:36 +#: netbox/navigation/menu.py:361 netbox/navigation/menu.py:365 +#: netbox/views/generic/feature_views.py:153 +#: templates/extras/report/base.html:37 templates/extras/script/base.html:36 msgid "Jobs" msgstr "Trabajos" -#: netbox/netbox/navigation/menu.py:371 +#: netbox/navigation/menu.py:371 msgid "Logging" msgstr "Explotación" -#: netbox/netbox/navigation/menu.py:373 +#: netbox/navigation/menu.py:373 msgid "Notification Groups" msgstr "Grupos de notificaciones" -#: netbox/netbox/navigation/menu.py:374 +#: netbox/navigation/menu.py:374 msgid "Journal Entries" msgstr "Entradas del diario" -#: netbox/netbox/navigation/menu.py:375 -#: netbox/templates/core/objectchange.html:9 -#: netbox/templates/core/objectchange_list.html:4 +#: netbox/navigation/menu.py:375 templates/core/objectchange.html:9 +#: templates/core/objectchange_list.html:4 msgid "Change Log" msgstr "Registro de cambios" -#: netbox/netbox/navigation/menu.py:382 netbox/templates/inc/user_menu.html:29 +#: netbox/navigation/menu.py:382 templates/inc/user_menu.html:29 msgid "Admin" msgstr "Admin" -#: netbox/netbox/navigation/menu.py:430 netbox/templates/account/base.html:27 -#: netbox/templates/inc/user_menu.html:57 +#: netbox/navigation/menu.py:430 templates/account/base.html:27 +#: templates/inc/user_menu.html:57 msgid "API Tokens" msgstr "Tokens de API" -#: netbox/netbox/navigation/menu.py:437 netbox/users/forms/model_forms.py:187 -#: netbox/users/forms/model_forms.py:195 netbox/users/forms/model_forms.py:242 -#: netbox/users/forms/model_forms.py:249 +#: netbox/navigation/menu.py:437 users/forms/model_forms.py:187 +#: users/forms/model_forms.py:195 users/forms/model_forms.py:242 +#: users/forms/model_forms.py:249 msgid "Permissions" msgstr "Permisos" -#: netbox/netbox/navigation/menu.py:445 netbox/netbox/navigation/menu.py:449 -#: netbox/templates/core/system.html:7 +#: netbox/navigation/menu.py:445 netbox/navigation/menu.py:449 +#: templates/core/system.html:7 msgid "System" msgstr "Sistema" -#: netbox/netbox/navigation/menu.py:454 netbox/netbox/navigation/menu.py:502 -#: netbox/templates/500.html:35 netbox/templates/account/preferences.html:22 -#: netbox/templates/core/plugin.html:12 -#: netbox/templates/core/plugin_list.html:7 -#: netbox/templates/core/plugin_list.html:12 +#: netbox/navigation/menu.py:454 netbox/navigation/menu.py:502 +#: templates/500.html:35 templates/account/preferences.html:22 +#: templates/core/plugin.html:13 templates/core/plugin_list.html:7 +#: templates/core/plugin_list.html:12 msgid "Plugins" msgstr "Plugins" -#: netbox/netbox/navigation/menu.py:459 +#: netbox/navigation/menu.py:459 msgid "Configuration History" msgstr "Historial de configuración" -#: netbox/netbox/navigation/menu.py:465 netbox/templates/core/rq_task.html:8 -#: netbox/templates/core/rq_task_list.html:22 +#: netbox/navigation/menu.py:465 templates/core/rq_task.html:8 +#: templates/core/rq_task_list.html:22 msgid "Background Tasks" msgstr "Tareas en segundo plano" -#: netbox/netbox/plugins/navigation.py:47 -#: netbox/netbox/plugins/navigation.py:69 +#: netbox/plugins/navigation.py:47 netbox/plugins/navigation.py:69 msgid "Permissions must be passed as a tuple or list." msgstr "Los permisos se deben pasar en forma de tupla o lista." -#: netbox/netbox/plugins/navigation.py:51 +#: netbox/plugins/navigation.py:51 msgid "Buttons must be passed as a tuple or list." msgstr "Los botones se deben pasar como una tupla o una lista." -#: netbox/netbox/plugins/navigation.py:73 +#: netbox/plugins/navigation.py:73 msgid "Button color must be a choice within ButtonColorChoices." msgstr "El color del botón debe ser una opción dentro de ButtonColorChoices." -#: netbox/netbox/plugins/registration.py:25 +#: netbox/plugins/registration.py:25 #, python-brace-format msgid "" "PluginTemplateExtension class {template_extension} was passed as an " @@ -11305,7 +10675,7 @@ msgstr "" "Clase PluginTemplateExtension {template_extension} ¡se aprobó como " "instancia!" -#: netbox/netbox/plugins/registration.py:31 +#: netbox/plugins/registration.py:31 #, python-brace-format msgid "" "{template_extension} is not a subclass of " @@ -11314,195 +10684,194 @@ msgstr "" "{template_extension} ¡no es una subclase de " "NetBox.Plugins.PluginTemplateExtension!" -#: netbox/netbox/plugins/registration.py:51 +#: netbox/plugins/registration.py:51 #, python-brace-format msgid "{item} must be an instance of netbox.plugins.PluginMenuItem" msgstr "{item} debe ser una instancia de netbox.plugins.PluginMenuItem" -#: netbox/netbox/plugins/registration.py:62 +#: netbox/plugins/registration.py:62 #, python-brace-format msgid "{menu_link} must be an instance of netbox.plugins.PluginMenuItem" msgstr "{menu_link} debe ser una instancia de netbox.plugins.PluginMenuItem" -#: netbox/netbox/plugins/registration.py:67 +#: netbox/plugins/registration.py:67 #, python-brace-format msgid "{button} must be an instance of netbox.plugins.PluginMenuButton" msgstr "{button} debe ser una instancia de netbox.plugins.PluginMenuButton" -#: netbox/netbox/plugins/templates.py:37 +#: netbox/plugins/templates.py:37 msgid "extra_context must be a dictionary" msgstr "extra_context debe ser un diccionario" -#: netbox/netbox/preferences.py:19 +#: netbox/preferences.py:19 msgid "HTMX Navigation" msgstr "Navegación HTMX" -#: netbox/netbox/preferences.py:24 +#: netbox/preferences.py:24 msgid "Enable dynamic UI navigation" msgstr "Habilitar la navegación dinámica por interfaz de usuario" -#: netbox/netbox/preferences.py:26 +#: netbox/preferences.py:26 msgid "Experimental feature" msgstr "Función experimental" -#: netbox/netbox/preferences.py:29 +#: netbox/preferences.py:29 msgid "Language" msgstr "Idioma" -#: netbox/netbox/preferences.py:34 +#: netbox/preferences.py:34 msgid "Forces UI translation to the specified language" msgstr "Fuerza la traducción de la interfaz de usuario al idioma especificado" -#: netbox/netbox/preferences.py:36 +#: netbox/preferences.py:36 msgid "Support for translation has been disabled locally" msgstr "La compatibilidad con la traducción se ha desactivado localmente" -#: netbox/netbox/preferences.py:42 +#: netbox/preferences.py:42 msgid "Page length" msgstr "Longitud de página" -#: netbox/netbox/preferences.py:44 +#: netbox/preferences.py:44 msgid "The default number of objects to display per page" msgstr "El número predeterminado de objetos que se mostrarán por página" -#: netbox/netbox/preferences.py:48 +#: netbox/preferences.py:48 msgid "Paginator placement" msgstr "Colocación del paginador" -#: netbox/netbox/preferences.py:50 +#: netbox/preferences.py:50 msgid "Bottom" msgstr "Parte inferior" -#: netbox/netbox/preferences.py:51 +#: netbox/preferences.py:51 msgid "Top" msgstr "Parte superior" -#: netbox/netbox/preferences.py:52 +#: netbox/preferences.py:52 msgid "Both" msgstr "Ambos" -#: netbox/netbox/preferences.py:55 +#: netbox/preferences.py:55 msgid "Where the paginator controls will be displayed relative to a table" msgstr "" "Dónde se mostrarán los controles del paginador en relación con una tabla" -#: netbox/netbox/preferences.py:60 +#: netbox/preferences.py:60 msgid "Data format" msgstr "Formato de datos" -#: netbox/netbox/preferences.py:65 +#: netbox/preferences.py:65 msgid "The preferred syntax for displaying generic data within the UI" msgstr "" "La sintaxis preferida para mostrar datos genéricos en la interfaz de usuario" -#: netbox/netbox/registry.py:14 +#: netbox/registry.py:14 #, python-brace-format msgid "Invalid store: {key}" msgstr "Tienda no válida: {key}" -#: netbox/netbox/registry.py:17 +#: netbox/registry.py:17 msgid "Cannot add stores to registry after initialization" msgstr "No se pueden agregar tiendas al registro después de la inicialización" -#: netbox/netbox/registry.py:20 +#: netbox/registry.py:20 msgid "Cannot delete stores from registry" msgstr "No se pueden eliminar las tiendas del registro" -#: netbox/netbox/settings.py:760 +#: netbox/settings.py:760 msgid "Czech" msgstr "checa" -#: netbox/netbox/settings.py:761 +#: netbox/settings.py:761 msgid "Danish" msgstr "danés" -#: netbox/netbox/settings.py:762 +#: netbox/settings.py:762 msgid "German" msgstr "alemán" -#: netbox/netbox/settings.py:763 +#: netbox/settings.py:763 msgid "English" msgstr "Inglés" -#: netbox/netbox/settings.py:764 +#: netbox/settings.py:764 msgid "Spanish" msgstr "española" -#: netbox/netbox/settings.py:765 +#: netbox/settings.py:765 msgid "French" msgstr "francesa" -#: netbox/netbox/settings.py:766 +#: netbox/settings.py:766 msgid "Italian" msgstr "italiano" -#: netbox/netbox/settings.py:767 +#: netbox/settings.py:767 msgid "Japanese" msgstr "japonés" -#: netbox/netbox/settings.py:768 +#: netbox/settings.py:768 msgid "Dutch" msgstr "holandesa" -#: netbox/netbox/settings.py:769 +#: netbox/settings.py:769 msgid "Polish" msgstr "polaco" -#: netbox/netbox/settings.py:770 +#: netbox/settings.py:770 msgid "Portuguese" msgstr "portugués" -#: netbox/netbox/settings.py:771 +#: netbox/settings.py:771 msgid "Russian" msgstr "rusa" -#: netbox/netbox/settings.py:772 +#: netbox/settings.py:772 msgid "Turkish" msgstr "turca" -#: netbox/netbox/settings.py:773 +#: netbox/settings.py:773 msgid "Ukrainian" msgstr "ucraniana" -#: netbox/netbox/settings.py:774 +#: netbox/settings.py:774 msgid "Chinese" msgstr "chino" -#: netbox/netbox/tables/columns.py:176 +#: netbox/tables/columns.py:176 msgid "Select all" msgstr "Selecciona todo" -#: netbox/netbox/tables/columns.py:189 +#: netbox/tables/columns.py:189 msgid "Toggle all" msgstr "Alternar todo" -#: netbox/netbox/tables/columns.py:300 +#: netbox/tables/columns.py:300 msgid "Toggle Dropdown" msgstr "Alternar menú desplegable" -#: netbox/netbox/tables/columns.py:572 netbox/templates/core/job.html:53 +#: netbox/tables/columns.py:572 templates/core/job.html:53 msgid "Error" msgstr "Error" -#: netbox/netbox/tables/tables.py:58 +#: netbox/tables/tables.py:58 #, python-brace-format msgid "No {model_name} found" msgstr "No {model_name} encontrado" -#: netbox/netbox/tables/tables.py:249 -#: netbox/templates/generic/bulk_import.html:117 +#: netbox/tables/tables.py:249 templates/generic/bulk_import.html:117 msgid "Field" msgstr "Campo" -#: netbox/netbox/tables/tables.py:252 +#: netbox/tables/tables.py:252 msgid "Value" msgstr "Valor" -#: netbox/netbox/tests/dummy_plugin/navigation.py:29 +#: netbox/tests/dummy_plugin/navigation.py:29 msgid "Dummy Plugin" msgstr "Plugin ficticio" -#: netbox/netbox/views/generic/bulk_views.py:114 +#: netbox/views/generic/bulk_views.py:114 #, python-brace-format msgid "" "There was an error rendering the selected export template ({template}): " @@ -11511,58 +10880,58 @@ msgstr "" "Se ha producido un error al procesar la plantilla de exportación " "seleccionada ({template}): {error}" -#: netbox/netbox/views/generic/bulk_views.py:416 +#: netbox/views/generic/bulk_views.py:416 #, python-brace-format msgid "Row {i}: Object with ID {id} does not exist" msgstr "Fila {i}: Objeto con ID {id} no existe" -#: netbox/netbox/views/generic/bulk_views.py:699 -#: netbox/netbox/views/generic/bulk_views.py:897 -#: netbox/netbox/views/generic/bulk_views.py:945 +#: netbox/views/generic/bulk_views.py:702 +#: netbox/views/generic/bulk_views.py:900 +#: netbox/views/generic/bulk_views.py:948 #, python-brace-format msgid "No {object_type} were selected." msgstr "No {object_type} fueron seleccionados." -#: netbox/netbox/views/generic/bulk_views.py:779 +#: netbox/views/generic/bulk_views.py:782 #, python-brace-format msgid "Renamed {count} {object_type}" msgstr "Renombrado {count} {object_type}" -#: netbox/netbox/views/generic/bulk_views.py:875 +#: netbox/views/generic/bulk_views.py:878 #, python-brace-format msgid "Deleted {count} {object_type}" msgstr "Eliminado {count} {object_type}" -#: netbox/netbox/views/generic/feature_views.py:40 +#: netbox/views/generic/feature_views.py:40 msgid "Changelog" msgstr "Registro de cambios" -#: netbox/netbox/views/generic/feature_views.py:93 +#: netbox/views/generic/feature_views.py:93 msgid "Journal" msgstr "diario" -#: netbox/netbox/views/generic/feature_views.py:207 +#: netbox/views/generic/feature_views.py:207 msgid "Unable to synchronize data: No data file set." msgstr "" "No se pueden sincronizar los datos: no hay ningún archivo de datos " "establecido." -#: netbox/netbox/views/generic/feature_views.py:211 +#: netbox/views/generic/feature_views.py:211 #, python-brace-format msgid "Synchronized data for {object_type} {object}." msgstr "Datos sincronizados para {object_type} {object}." -#: netbox/netbox/views/generic/feature_views.py:236 +#: netbox/views/generic/feature_views.py:236 #, python-brace-format msgid "Synced {count} {object_type}" msgstr "Sincronizado {count} {object_type}" -#: netbox/netbox/views/generic/object_views.py:108 +#: netbox/views/generic/object_views.py:108 #, python-brace-format msgid "{class_name} must implement get_children()" msgstr "{class_name} debe implementar get_children ()" -#: netbox/netbox/views/misc.py:44 +#: netbox/views/misc.py:44 msgid "" "There was an error loading the dashboard configuration. A default dashboard " "is in use." @@ -11570,751 +10939,706 @@ msgstr "" "Se ha producido un error al cargar la configuración del panel. Se está " "utilizando un panel predeterminado." -#: netbox/templates/403.html:4 +#: templates/403.html:4 msgid "Access Denied" msgstr "Acceso denegado" -#: netbox/templates/403.html:9 +#: templates/403.html:9 msgid "You do not have permission to access this page" msgstr "No tienes permiso para acceder a esta página" -#: netbox/templates/404.html:4 +#: templates/404.html:4 msgid "Page Not Found" msgstr "No se encontró la página" -#: netbox/templates/404.html:9 +#: templates/404.html:9 msgid "The requested page does not exist" msgstr "La página solicitada no existe" -#: netbox/templates/500.html:7 netbox/templates/500.html:18 +#: templates/500.html:7 templates/500.html:18 msgid "Server Error" msgstr "Error de servidor" -#: netbox/templates/500.html:23 +#: templates/500.html:23 msgid "There was a problem with your request. Please contact an administrator" msgstr "" "Ha surgido un problema con tu solicitud. Póngase en contacto con un " "administrador" -#: netbox/templates/500.html:28 +#: templates/500.html:28 msgid "The complete exception is provided below" msgstr "La excepción completa se proporciona a continuación" -#: netbox/templates/500.html:33 netbox/templates/core/system.html:40 +#: templates/500.html:33 templates/core/system.html:40 msgid "Python version" msgstr "Versión de Python" -#: netbox/templates/500.html:34 +#: templates/500.html:34 msgid "NetBox version" msgstr "Versión NetBox" -#: netbox/templates/500.html:36 +#: templates/500.html:36 msgid "None installed" msgstr "No hay ninguno instalado" -#: netbox/templates/500.html:39 +#: templates/500.html:39 msgid "If further assistance is required, please post to the" msgstr "Si necesita más ayuda, envíela por correo a" -#: netbox/templates/500.html:39 +#: templates/500.html:39 msgid "NetBox discussion forum" msgstr "Foro de discusión de NetBox" -#: netbox/templates/500.html:39 +#: templates/500.html:39 msgid "on GitHub" msgstr "en GitHub" -#: netbox/templates/500.html:42 netbox/templates/base/40x.html:17 +#: templates/500.html:42 templates/base/40x.html:17 msgid "Home Page" msgstr "Página de inicio" -#: netbox/templates/account/base.html:7 netbox/templates/inc/user_menu.html:45 -#: netbox/vpn/forms/bulk_edit.py:255 netbox/vpn/forms/filtersets.py:189 -#: netbox/vpn/forms/model_forms.py:379 +#: templates/account/base.html:7 templates/inc/user_menu.html:45 +#: vpn/forms/bulk_edit.py:255 vpn/forms/filtersets.py:189 +#: vpn/forms/model_forms.py:379 msgid "Profile" msgstr "Perfil" -#: netbox/templates/account/base.html:13 -#: netbox/templates/account/notifications.html:7 -#: netbox/templates/inc/user_menu.html:15 +#: templates/account/base.html:13 templates/account/notifications.html:7 +#: templates/inc/user_menu.html:15 msgid "Notifications" msgstr "Notificaciones" -#: netbox/templates/account/base.html:16 -#: netbox/templates/account/subscriptions.html:7 -#: netbox/templates/inc/user_menu.html:51 +#: templates/account/base.html:16 templates/account/subscriptions.html:7 +#: templates/inc/user_menu.html:51 msgid "Subscriptions" msgstr "Suscripciones" -#: netbox/templates/account/base.html:19 -#: netbox/templates/inc/user_menu.html:54 +#: templates/account/base.html:19 templates/inc/user_menu.html:54 msgid "Preferences" msgstr "Preferencias" -#: netbox/templates/account/password.html:5 +#: templates/account/password.html:5 msgid "Change Password" msgstr "Cambiar contraseña" -#: netbox/templates/account/password.html:19 -#: netbox/templates/account/preferences.html:77 -#: netbox/templates/core/configrevision_restore.html:63 -#: netbox/templates/dcim/devicebay_populate.html:34 -#: netbox/templates/dcim/virtualchassis_add_member.html:26 -#: netbox/templates/dcim/virtualchassis_edit.html:103 -#: netbox/templates/extras/object_journal.html:26 -#: netbox/templates/extras/script.html:38 -#: netbox/templates/generic/bulk_add_component.html:67 -#: netbox/templates/generic/bulk_delete.html:65 -#: netbox/templates/generic/bulk_edit.html:106 -#: netbox/templates/generic/bulk_import.html:56 -#: netbox/templates/generic/bulk_import.html:78 -#: netbox/templates/generic/bulk_import.html:100 -#: netbox/templates/generic/bulk_remove.html:62 -#: netbox/templates/generic/bulk_rename.html:63 -#: netbox/templates/generic/confirmation_form.html:19 -#: netbox/templates/generic/object_edit.html:72 -#: netbox/templates/htmx/delete_form.html:53 -#: netbox/templates/htmx/delete_form.html:55 -#: netbox/templates/ipam/ipaddress_assign.html:28 -#: netbox/templates/virtualization/cluster_add_devices.html:30 +#: templates/account/password.html:19 templates/account/preferences.html:77 +#: templates/core/configrevision_restore.html:63 +#: templates/dcim/devicebay_populate.html:34 +#: templates/dcim/virtualchassis_add_member.html:26 +#: templates/dcim/virtualchassis_edit.html:103 +#: templates/extras/object_journal.html:26 templates/extras/script.html:38 +#: templates/generic/bulk_add_component.html:67 +#: templates/generic/bulk_delete.html:65 templates/generic/bulk_edit.html:106 +#: templates/generic/bulk_import.html:56 templates/generic/bulk_import.html:78 +#: templates/generic/bulk_import.html:100 +#: templates/generic/bulk_remove.html:62 templates/generic/bulk_rename.html:63 +#: templates/generic/confirmation_form.html:19 +#: templates/generic/object_edit.html:72 templates/htmx/delete_form.html:53 +#: templates/htmx/delete_form.html:55 templates/ipam/ipaddress_assign.html:28 +#: templates/virtualization/cluster_add_devices.html:30 msgid "Cancel" msgstr "Cancelar" -#: netbox/templates/account/password.html:20 -#: netbox/templates/account/preferences.html:78 -#: netbox/templates/dcim/devicebay_populate.html:35 -#: netbox/templates/dcim/virtualchassis_add_member.html:28 -#: netbox/templates/dcim/virtualchassis_edit.html:105 -#: netbox/templates/extras/dashboard/widget_add.html:26 -#: netbox/templates/extras/dashboard/widget_config.html:19 -#: netbox/templates/extras/object_journal.html:27 -#: netbox/templates/generic/object_edit.html:75 -#: netbox/utilities/templates/helpers/applied_filters.html:16 -#: netbox/utilities/templates/helpers/table_config_form.html:40 +#: templates/account/password.html:20 templates/account/preferences.html:78 +#: templates/dcim/devicebay_populate.html:35 +#: templates/dcim/virtualchassis_add_member.html:28 +#: templates/dcim/virtualchassis_edit.html:105 +#: templates/extras/dashboard/widget_add.html:26 +#: templates/extras/dashboard/widget_config.html:19 +#: templates/extras/object_journal.html:27 +#: templates/generic/object_edit.html:75 +#: utilities/templates/helpers/applied_filters.html:16 +#: utilities/templates/helpers/table_config_form.html:40 msgid "Save" msgstr "Guardar" -#: netbox/templates/account/preferences.html:34 +#: templates/account/preferences.html:34 msgid "Table Configurations" msgstr "Configuraciones de tablas" -#: netbox/templates/account/preferences.html:39 +#: templates/account/preferences.html:39 msgid "Clear table preferences" msgstr "Borrar preferencias de mesa" -#: netbox/templates/account/preferences.html:47 +#: templates/account/preferences.html:47 msgid "Toggle All" msgstr "Alternar todo" -#: netbox/templates/account/preferences.html:49 +#: templates/account/preferences.html:49 msgid "Table" msgstr "Tabla" -#: netbox/templates/account/preferences.html:50 +#: templates/account/preferences.html:50 msgid "Ordering" msgstr "Pedido" -#: netbox/templates/account/preferences.html:51 +#: templates/account/preferences.html:51 msgid "Columns" msgstr "Columnas" -#: netbox/templates/account/preferences.html:71 -#: netbox/templates/dcim/cable_trace.html:113 -#: netbox/templates/extras/object_configcontext.html:43 +#: templates/account/preferences.html:71 templates/dcim/cable_trace.html:113 +#: templates/extras/object_configcontext.html:43 msgid "None found" msgstr "No se encontró ninguno" -#: netbox/templates/account/profile.html:6 +#: templates/account/profile.html:6 msgid "User Profile" msgstr "Perfil de usuario" -#: netbox/templates/account/profile.html:12 +#: templates/account/profile.html:12 msgid "Account Details" msgstr "Detalles de la cuenta" -#: netbox/templates/account/profile.html:29 -#: netbox/templates/tenancy/contact.html:43 -#: netbox/templates/users/user.html:25 netbox/tenancy/forms/bulk_edit.py:109 +#: templates/account/profile.html:29 templates/tenancy/contact.html:43 +#: templates/users/user.html:25 tenancy/forms/bulk_edit.py:109 msgid "Email" msgstr "Correo electrónico" -#: netbox/templates/account/profile.html:33 -#: netbox/templates/users/user.html:29 +#: templates/account/profile.html:33 templates/users/user.html:29 msgid "Account Created" msgstr "Cuenta creada" -#: netbox/templates/account/profile.html:37 -#: netbox/templates/users/user.html:33 +#: templates/account/profile.html:37 templates/users/user.html:33 msgid "Last Login" msgstr "Último inicio de sesión" -#: netbox/templates/account/profile.html:41 -#: netbox/templates/users/user.html:45 +#: templates/account/profile.html:41 templates/users/user.html:45 msgid "Superuser" msgstr "Superusuario" -#: netbox/templates/account/profile.html:45 -#: netbox/templates/inc/user_menu.html:31 netbox/templates/users/user.html:41 +#: templates/account/profile.html:45 templates/inc/user_menu.html:31 +#: templates/users/user.html:41 msgid "Staff" msgstr "Personal" -#: netbox/templates/account/profile.html:53 -#: netbox/templates/users/objectpermission.html:82 -#: netbox/templates/users/user.html:53 +#: templates/account/profile.html:53 templates/users/objectpermission.html:82 +#: templates/users/user.html:53 msgid "Assigned Groups" msgstr "Grupos asignados" -#: netbox/templates/account/profile.html:58 -#: netbox/templates/circuits/circuit_terminations_swap.html:18 -#: netbox/templates/circuits/circuit_terminations_swap.html:26 -#: netbox/templates/circuits/circuittermination.html:34 -#: netbox/templates/circuits/inc/circuit_termination.html:68 -#: netbox/templates/core/objectchange.html:124 -#: netbox/templates/core/objectchange.html:142 -#: netbox/templates/dcim/devicebay.html:59 -#: netbox/templates/dcim/inc/panels/inventory_items.html:45 -#: netbox/templates/dcim/interface.html:296 -#: netbox/templates/dcim/modulebay.html:80 -#: netbox/templates/extras/configcontext.html:70 -#: netbox/templates/extras/eventrule.html:66 -#: netbox/templates/extras/htmx/script_result.html:60 -#: netbox/templates/extras/webhook.html:65 -#: netbox/templates/extras/webhook.html:75 -#: netbox/templates/inc/panel_table.html:13 -#: netbox/templates/inc/panels/comments.html:10 -#: netbox/templates/ipam/inc/panels/fhrp_groups.html:56 -#: netbox/templates/users/group.html:34 netbox/templates/users/group.html:44 -#: netbox/templates/users/objectpermission.html:77 -#: netbox/templates/users/objectpermission.html:87 -#: netbox/templates/users/user.html:58 netbox/templates/users/user.html:68 +#: templates/account/profile.html:58 +#: templates/circuits/circuit_terminations_swap.html:18 +#: templates/circuits/circuit_terminations_swap.html:26 +#: templates/circuits/circuittermination.html:34 +#: templates/circuits/inc/circuit_termination.html:68 +#: templates/core/objectchange.html:124 templates/core/objectchange.html:142 +#: templates/dcim/devicebay.html:59 +#: templates/dcim/inc/panels/inventory_items.html:45 +#: templates/dcim/interface.html:296 templates/dcim/modulebay.html:80 +#: templates/extras/configcontext.html:70 templates/extras/eventrule.html:66 +#: templates/extras/htmx/script_result.html:60 +#: templates/extras/webhook.html:65 templates/extras/webhook.html:75 +#: templates/inc/panel_table.html:13 templates/inc/panels/comments.html:10 +#: templates/ipam/inc/panels/fhrp_groups.html:56 templates/users/group.html:34 +#: templates/users/group.html:44 templates/users/objectpermission.html:77 +#: templates/users/objectpermission.html:87 templates/users/user.html:58 +#: templates/users/user.html:68 msgid "None" msgstr "Ninguna" -#: netbox/templates/account/profile.html:68 -#: netbox/templates/users/user.html:78 +#: templates/account/profile.html:68 templates/users/user.html:78 msgid "Recent Activity" msgstr "Actividad reciente" -#: netbox/templates/account/token.html:8 -#: netbox/templates/account/token_list.html:6 +#: templates/account/token.html:8 templates/account/token_list.html:6 msgid "My API Tokens" msgstr "Mis fichas de API" -#: netbox/templates/account/token.html:11 -#: netbox/templates/account/token.html:19 netbox/templates/users/token.html:6 -#: netbox/templates/users/token.html:14 netbox/users/forms/filtersets.py:120 +#: templates/account/token.html:11 templates/account/token.html:19 +#: templates/users/token.html:6 templates/users/token.html:14 +#: users/forms/filtersets.py:120 msgid "Token" msgstr "Símbolo" -#: netbox/templates/account/token.html:39 netbox/templates/users/token.html:31 -#: netbox/users/forms/bulk_edit.py:107 +#: templates/account/token.html:39 templates/users/token.html:31 +#: users/forms/bulk_edit.py:107 msgid "Write enabled" msgstr "Escritura habilitada" -#: netbox/templates/account/token.html:51 netbox/templates/users/token.html:43 +#: templates/account/token.html:51 templates/users/token.html:43 msgid "Last used" msgstr "Utilizado por última vez" -#: netbox/templates/account/token_list.html:12 +#: templates/account/token_list.html:12 msgid "Add a Token" msgstr "Añadir un token" -#: netbox/templates/base/base.html:22 netbox/templates/home.html:27 +#: templates/base/base.html:22 templates/home.html:27 msgid "Home" msgstr "Inicio" -#: netbox/templates/base/layout.html:25 +#: templates/base/layout.html:25 msgid "NetBox Motif" msgstr "Motivo NetBox" -#: netbox/templates/base/layout.html:38 netbox/templates/base/layout.html:39 -#: netbox/templates/login.html:14 netbox/templates/login.html:15 +#: templates/base/layout.html:38 templates/base/layout.html:39 +#: templates/login.html:14 templates/login.html:15 msgid "NetBox Logo" msgstr "Logotipo de NetBox" -#: netbox/templates/base/layout.html:150 netbox/templates/base/layout.html:151 +#: templates/base/layout.html:150 templates/base/layout.html:151 msgid "Docs" msgstr "Documentos" -#: netbox/templates/base/layout.html:156 netbox/templates/base/layout.html:157 -#: netbox/templates/rest_framework/api.html:10 +#: templates/base/layout.html:156 templates/base/layout.html:157 +#: templates/rest_framework/api.html:10 msgid "REST API" msgstr "API DE DESCANSO" -#: netbox/templates/base/layout.html:162 netbox/templates/base/layout.html:163 +#: templates/base/layout.html:162 templates/base/layout.html:163 msgid "REST API documentation" msgstr "Documentación de la API REST" -#: netbox/templates/base/layout.html:169 netbox/templates/base/layout.html:170 +#: templates/base/layout.html:169 templates/base/layout.html:170 msgid "GraphQL API" msgstr "API de GraphQL" -#: netbox/templates/base/layout.html:185 netbox/templates/base/layout.html:186 +#: templates/base/layout.html:185 templates/base/layout.html:186 msgid "NetBox Labs Support" msgstr "Soporte de NetBox Labs" -#: netbox/templates/base/layout.html:194 netbox/templates/base/layout.html:195 +#: templates/base/layout.html:194 templates/base/layout.html:195 msgid "Source Code" msgstr "Código fuente" -#: netbox/templates/base/layout.html:200 netbox/templates/base/layout.html:201 +#: templates/base/layout.html:200 templates/base/layout.html:201 msgid "Community" msgstr "Comunidad" -#: netbox/templates/circuits/circuit.html:47 +#: templates/circuits/circuit.html:47 msgid "Install Date" msgstr "Fecha de instalación" -#: netbox/templates/circuits/circuit.html:51 +#: templates/circuits/circuit.html:51 msgid "Termination Date" msgstr "Fecha de terminación" -#: netbox/templates/circuits/circuit.html:70 -#: netbox/templates/ipam/inc/panels/fhrp_groups.html:15 +#: templates/circuits/circuit.html:70 +#: templates/ipam/inc/panels/fhrp_groups.html:15 msgid "Assign Group" msgstr "Asignar grupo" -#: netbox/templates/circuits/circuit_terminations_swap.html:4 +#: templates/circuits/circuit_terminations_swap.html:4 msgid "Swap Circuit Terminations" msgstr "Intercambiar terminaciones de circuitos" -#: netbox/templates/circuits/circuit_terminations_swap.html:8 +#: templates/circuits/circuit_terminations_swap.html:8 #, python-format msgid "Swap these terminations for circuit %(circuit)s?" msgstr "Cambie estas terminaciones por circuito %(circuit)s?" -#: netbox/templates/circuits/circuit_terminations_swap.html:14 +#: templates/circuits/circuit_terminations_swap.html:14 msgid "A side" msgstr "Un lado" -#: netbox/templates/circuits/circuit_terminations_swap.html:22 +#: templates/circuits/circuit_terminations_swap.html:22 msgid "Z side" msgstr "Lado Z" -#: netbox/templates/circuits/circuitgroup.html:16 +#: templates/circuits/circuitgroup.html:16 msgid "Assign Circuit" msgstr "Asignar circuito" -#: netbox/templates/circuits/circuitgroupassignment.html:19 +#: templates/circuits/circuitgroupassignment.html:19 msgid "Circuit Group Assignment" msgstr "Asignación de grupos de circuitos" -#: netbox/templates/circuits/circuittype.html:10 +#: templates/circuits/circuittype.html:10 msgid "Add Circuit" msgstr "Agregar circuito" -#: netbox/templates/circuits/circuittype.html:19 +#: templates/circuits/circuittype.html:19 msgid "Circuit Type" msgstr "Tipo de circuito" -#: netbox/templates/circuits/inc/circuit_termination.html:10 -#: netbox/templates/dcim/devicetype/component_templates.html:33 -#: netbox/templates/dcim/manufacturer.html:11 -#: netbox/templates/dcim/moduletype/component_templates.html:29 -#: netbox/templates/generic/bulk_add_component.html:22 -#: netbox/templates/users/objectpermission.html:38 -#: netbox/utilities/templates/buttons/add.html:4 -#: netbox/utilities/templates/helpers/table_config_form.html:20 +#: templates/circuits/inc/circuit_termination.html:10 +#: templates/dcim/manufacturer.html:11 +#: templates/generic/bulk_add_component.html:22 +#: templates/users/objectpermission.html:38 +#: utilities/templates/buttons/add.html:4 +#: utilities/templates/helpers/table_config_form.html:20 msgid "Add" msgstr "Añadir" -#: netbox/templates/circuits/inc/circuit_termination.html:15 -#: netbox/templates/circuits/inc/circuit_termination_fields.html:36 -#: netbox/templates/dcim/inc/panels/inventory_items.html:32 -#: netbox/templates/dcim/moduletype/component_templates.html:20 -#: netbox/templates/dcim/powerpanel.html:56 -#: netbox/templates/extras/script_list.html:30 -#: netbox/templates/generic/object_edit.html:47 -#: netbox/templates/ipam/inc/ipaddress_edit_header.html:7 -#: netbox/templates/ipam/inc/panels/fhrp_groups.html:43 -#: netbox/utilities/templates/buttons/edit.html:3 +#: templates/circuits/inc/circuit_termination.html:15 +#: templates/circuits/inc/circuit_termination_fields.html:36 +#: templates/dcim/inc/panels/inventory_items.html:32 +#: templates/dcim/powerpanel.html:56 templates/extras/script_list.html:30 +#: templates/generic/object_edit.html:47 +#: templates/ipam/inc/ipaddress_edit_header.html:7 +#: templates/ipam/inc/panels/fhrp_groups.html:43 +#: utilities/templates/buttons/edit.html:3 msgid "Edit" msgstr "Editar" -#: netbox/templates/circuits/inc/circuit_termination.html:18 +#: templates/circuits/inc/circuit_termination.html:18 msgid "Swap" msgstr "Intercambiar" -#: netbox/templates/circuits/inc/circuit_termination_fields.html:19 -#: netbox/templates/dcim/consoleport.html:59 -#: netbox/templates/dcim/consoleserverport.html:60 -#: netbox/templates/dcim/powerfeed.html:114 +#: templates/circuits/inc/circuit_termination_fields.html:19 +#: templates/dcim/consoleport.html:59 templates/dcim/consoleserverport.html:60 +#: templates/dcim/powerfeed.html:114 msgid "Marked as connected" msgstr "Marcado como conectado" -#: netbox/templates/circuits/inc/circuit_termination_fields.html:21 +#: templates/circuits/inc/circuit_termination_fields.html:21 msgid "to" msgstr "a" -#: netbox/templates/circuits/inc/circuit_termination_fields.html:31 -#: netbox/templates/circuits/inc/circuit_termination_fields.html:32 -#: netbox/templates/dcim/frontport.html:80 -#: netbox/templates/dcim/inc/connection_endpoints.html:7 -#: netbox/templates/dcim/interface.html:154 -#: netbox/templates/dcim/rearport.html:76 +#: templates/circuits/inc/circuit_termination_fields.html:31 +#: templates/circuits/inc/circuit_termination_fields.html:32 +#: templates/dcim/frontport.html:80 +#: templates/dcim/inc/connection_endpoints.html:7 +#: templates/dcim/interface.html:154 templates/dcim/rearport.html:76 msgid "Trace" msgstr "Rastrear" -#: netbox/templates/circuits/inc/circuit_termination_fields.html:35 +#: templates/circuits/inc/circuit_termination_fields.html:35 msgid "Edit cable" msgstr "Editar cable" -#: netbox/templates/circuits/inc/circuit_termination_fields.html:40 +#: templates/circuits/inc/circuit_termination_fields.html:40 msgid "Remove cable" msgstr "Quitar el cable" -#: netbox/templates/circuits/inc/circuit_termination_fields.html:41 -#: netbox/templates/dcim/bulk_disconnect.html:5 -#: netbox/templates/dcim/device/consoleports.html:12 -#: netbox/templates/dcim/device/consoleserverports.html:12 -#: netbox/templates/dcim/device/frontports.html:12 -#: netbox/templates/dcim/device/interfaces.html:16 -#: netbox/templates/dcim/device/poweroutlets.html:12 -#: netbox/templates/dcim/device/powerports.html:12 -#: netbox/templates/dcim/device/rearports.html:12 -#: netbox/templates/dcim/powerpanel.html:61 +#: templates/circuits/inc/circuit_termination_fields.html:41 +#: templates/dcim/bulk_disconnect.html:5 +#: templates/dcim/device/consoleports.html:12 +#: templates/dcim/device/consoleserverports.html:12 +#: templates/dcim/device/frontports.html:12 +#: templates/dcim/device/interfaces.html:16 +#: templates/dcim/device/poweroutlets.html:12 +#: templates/dcim/device/powerports.html:12 +#: templates/dcim/device/rearports.html:12 templates/dcim/powerpanel.html:61 msgid "Disconnect" msgstr "Desconectar" -#: netbox/templates/circuits/inc/circuit_termination_fields.html:48 -#: netbox/templates/dcim/consoleport.html:69 -#: netbox/templates/dcim/consoleserverport.html:70 -#: netbox/templates/dcim/frontport.html:102 -#: netbox/templates/dcim/interface.html:180 -#: netbox/templates/dcim/interface.html:200 -#: netbox/templates/dcim/powerfeed.html:127 -#: netbox/templates/dcim/poweroutlet.html:71 -#: netbox/templates/dcim/poweroutlet.html:72 -#: netbox/templates/dcim/powerport.html:73 -#: netbox/templates/dcim/rearport.html:98 +#: templates/circuits/inc/circuit_termination_fields.html:48 +#: templates/dcim/consoleport.html:69 templates/dcim/consoleserverport.html:70 +#: templates/dcim/frontport.html:102 templates/dcim/interface.html:180 +#: templates/dcim/interface.html:200 templates/dcim/powerfeed.html:127 +#: templates/dcim/poweroutlet.html:71 templates/dcim/poweroutlet.html:72 +#: templates/dcim/powerport.html:73 templates/dcim/rearport.html:98 msgid "Connect" msgstr "Conectar" -#: netbox/templates/circuits/inc/circuit_termination_fields.html:70 +#: templates/circuits/inc/circuit_termination_fields.html:70 msgid "Downstream" msgstr "Río abajo" -#: netbox/templates/circuits/inc/circuit_termination_fields.html:71 +#: templates/circuits/inc/circuit_termination_fields.html:71 msgid "Upstream" msgstr "Aguas arriba" -#: netbox/templates/circuits/inc/circuit_termination_fields.html:80 +#: templates/circuits/inc/circuit_termination_fields.html:80 msgid "Cross-Connect" msgstr "Conexión cruzada" -#: netbox/templates/circuits/inc/circuit_termination_fields.html:84 +#: templates/circuits/inc/circuit_termination_fields.html:84 msgid "Patch Panel/Port" msgstr "Panel de conexión/puerto" -#: netbox/templates/circuits/provider.html:11 +#: templates/circuits/provider.html:11 msgid "Add circuit" msgstr "Añadir circuito" -#: netbox/templates/circuits/provideraccount.html:17 +#: templates/circuits/provideraccount.html:17 msgid "Provider Account" msgstr "Cuenta de proveedor" -#: netbox/templates/core/configrevision.html:35 +#: templates/core/configrevision.html:35 msgid "Configuration Data" msgstr "Datos de configuración" -#: netbox/templates/core/configrevision.html:40 +#: templates/core/configrevision.html:40 msgid "Comment" msgstr "Comentar" -#: netbox/templates/core/configrevision_restore.html:8 -#: netbox/templates/core/configrevision_restore.html:25 -#: netbox/templates/core/configrevision_restore.html:64 +#: templates/core/configrevision_restore.html:8 +#: templates/core/configrevision_restore.html:25 +#: templates/core/configrevision_restore.html:64 msgid "Restore" msgstr "Restaurar" -#: netbox/templates/core/configrevision_restore.html:36 +#: templates/core/configrevision_restore.html:36 msgid "Parameter" msgstr "Parámetro" -#: netbox/templates/core/configrevision_restore.html:37 +#: templates/core/configrevision_restore.html:37 msgid "Current Value" msgstr "Valor actual" -#: netbox/templates/core/configrevision_restore.html:38 +#: templates/core/configrevision_restore.html:38 msgid "New Value" msgstr "Nuevo valor" -#: netbox/templates/core/configrevision_restore.html:50 +#: templates/core/configrevision_restore.html:50 msgid "Changed" msgstr "Cambiado" -#: netbox/templates/core/datafile.html:42 -#: netbox/templates/ipam/iprange.html:25 -#: netbox/templates/virtualization/virtualdisk.html:29 -#: netbox/virtualization/tables/virtualmachines.py:198 +#: templates/core/datafile.html:42 templates/ipam/iprange.html:25 +#: templates/virtualization/virtualdisk.html:29 +#: virtualization/tables/virtualmachines.py:198 msgid "Size" msgstr "Tamaño" -#: netbox/templates/core/datafile.html:43 +#: templates/core/datafile.html:43 msgid "bytes" msgstr "bytes" -#: netbox/templates/core/datafile.html:46 +#: templates/core/datafile.html:46 msgid "SHA256 Hash" msgstr "Hash SHA256" -#: netbox/templates/core/datasource.html:14 -#: netbox/templates/core/datasource.html:20 -#: netbox/utilities/templates/buttons/sync.html:5 +#: templates/core/datasource.html:14 templates/core/datasource.html:20 +#: utilities/templates/buttons/sync.html:5 msgid "Sync" msgstr "Sincronizar" -#: netbox/templates/core/datasource.html:50 +#: templates/core/datasource.html:50 msgid "Last synced" msgstr "Última sincronización" -#: netbox/templates/core/datasource.html:84 +#: templates/core/datasource.html:84 msgid "Backend" msgstr "Backend" -#: netbox/templates/core/datasource.html:99 +#: templates/core/datasource.html:99 msgid "No parameters defined" msgstr "No hay parámetros definidos" -#: netbox/templates/core/datasource.html:114 +#: templates/core/datasource.html:114 msgid "Files" msgstr "Expedientes" -#: netbox/templates/core/inc/config_data.html:7 +#: templates/core/inc/config_data.html:7 msgid "Rack elevations" msgstr "Elevaciones de estanterías" -#: netbox/templates/core/inc/config_data.html:10 +#: templates/core/inc/config_data.html:10 msgid "Default unit height" msgstr "Altura por defecto de la unidad" -#: netbox/templates/core/inc/config_data.html:14 +#: templates/core/inc/config_data.html:14 msgid "Default unit width" msgstr "Ancho de unidad predeterminado" -#: netbox/templates/core/inc/config_data.html:20 +#: templates/core/inc/config_data.html:20 msgid "Power feeds" msgstr "Fuentes de alimentación" -#: netbox/templates/core/inc/config_data.html:23 +#: templates/core/inc/config_data.html:23 msgid "Default voltage" msgstr "Tensión predeterminada" -#: netbox/templates/core/inc/config_data.html:27 +#: templates/core/inc/config_data.html:27 msgid "Default amperage" msgstr "Amperaje predeterminado" -#: netbox/templates/core/inc/config_data.html:31 +#: templates/core/inc/config_data.html:31 msgid "Default max utilization" msgstr "Utilización máxima predeterminada" -#: netbox/templates/core/inc/config_data.html:40 +#: templates/core/inc/config_data.html:40 msgid "Enforce global unique" msgstr "Imponga la exclusividad global" -#: netbox/templates/core/inc/config_data.html:83 +#: templates/core/inc/config_data.html:83 msgid "Paginate count" msgstr "Recuento de paginaciones" -#: netbox/templates/core/inc/config_data.html:87 +#: templates/core/inc/config_data.html:87 msgid "Max page size" msgstr "Tamaño máximo de página" -#: netbox/templates/core/inc/config_data.html:114 +#: templates/core/inc/config_data.html:114 msgid "User preferences" msgstr "Preferencias de usuario" -#: netbox/templates/core/inc/config_data.html:141 +#: templates/core/inc/config_data.html:141 msgid "Job retention" msgstr "Retención de empleo" -#: netbox/templates/core/job.html:35 netbox/templates/core/rq_task.html:12 -#: netbox/templates/core/rq_task.html:49 netbox/templates/core/rq_task.html:58 +#: templates/core/job.html:35 templates/core/rq_task.html:12 +#: templates/core/rq_task.html:49 templates/core/rq_task.html:58 msgid "Job" msgstr "Trabajo" -#: netbox/templates/core/job.html:58 -#: netbox/templates/extras/journalentry.html:26 +#: templates/core/job.html:58 templates/extras/journalentry.html:26 msgid "Created By" msgstr "Creado por" -#: netbox/templates/core/job.html:66 +#: templates/core/job.html:66 msgid "Scheduling" msgstr "Programación" -#: netbox/templates/core/job.html:77 +#: templates/core/job.html:77 #, python-format msgid "every %(interval)s minutes" msgstr "cada %(interval)s minutos" -#: netbox/templates/core/objectchange.html:29 -#: netbox/templates/users/objectpermission.html:42 +#: templates/core/objectchange.html:29 +#: templates/users/objectpermission.html:42 msgid "Change" msgstr "Cambiar" -#: netbox/templates/core/objectchange.html:79 +#: templates/core/objectchange.html:79 msgid "Difference" msgstr "Diferencia" -#: netbox/templates/core/objectchange.html:82 +#: templates/core/objectchange.html:82 msgid "Previous" msgstr "Anterior" -#: netbox/templates/core/objectchange.html:85 +#: templates/core/objectchange.html:85 msgid "Next" msgstr "Próxima" -#: netbox/templates/core/objectchange.html:93 +#: templates/core/objectchange.html:93 msgid "Object Created" msgstr "Objeto creado" -#: netbox/templates/core/objectchange.html:95 +#: templates/core/objectchange.html:95 msgid "Object Deleted" msgstr "Objeto eliminado" -#: netbox/templates/core/objectchange.html:97 +#: templates/core/objectchange.html:97 msgid "No Changes" msgstr "Sin cambios" -#: netbox/templates/core/objectchange.html:111 +#: templates/core/objectchange.html:111 msgid "Pre-Change Data" msgstr "Datos previos al cambio" -#: netbox/templates/core/objectchange.html:122 +#: templates/core/objectchange.html:122 msgid "Warning: Comparing non-atomic change to previous change record" msgstr "" "Advertencia: comparación del cambio no atómico con el registro de cambios " "anterior" -#: netbox/templates/core/objectchange.html:131 +#: templates/core/objectchange.html:131 msgid "Post-Change Data" msgstr "Datos posteriores al cambio" -#: netbox/templates/core/objectchange.html:162 +#: templates/core/objectchange.html:162 #, python-format msgid "See All %(count)s Changes" msgstr "Ver todos %(count)s Cambios" -#: netbox/templates/core/objectchange_list.html:9 -#: netbox/templates/extras/object_changelog.html:15 +#: templates/core/objectchange_list.html:9 +#: templates/extras/object_changelog.html:15 msgid "Change log retention" msgstr "Cambiar la retención de registros" -#: netbox/templates/core/objectchange_list.html:9 -#: netbox/templates/extras/object_changelog.html:15 +#: templates/core/objectchange_list.html:9 +#: templates/extras/object_changelog.html:15 msgid "days" msgstr "días" -#: netbox/templates/core/objectchange_list.html:9 -#: netbox/templates/extras/object_changelog.html:15 +#: templates/core/objectchange_list.html:9 +#: templates/extras/object_changelog.html:15 msgid "Indefinite" msgstr "Indefinido" -#: netbox/templates/core/plugin.html:21 +#: templates/core/plugin.html:22 msgid "Not installed" msgstr "No instalado" -#: netbox/templates/core/plugin.html:32 +#: templates/core/plugin.html:33 msgid "Overview" msgstr "Visión general" -#: netbox/templates/core/plugin.html:38 +#: templates/core/plugin.html:39 msgid "Install" msgstr "Instalar" -#: netbox/templates/core/plugin.html:50 +#: templates/core/plugin.html:51 msgid "Plugin Details" msgstr "Detalles del plugin" -#: netbox/templates/core/plugin.html:57 +#: templates/core/plugin.html:58 msgid "Summary" msgstr "Resumen" -#: netbox/templates/core/plugin.html:75 +#: templates/core/plugin.html:76 msgid "License" msgstr "Licencia" -#: netbox/templates/core/plugin.html:95 +#: templates/core/plugin.html:96 msgid "Version History" msgstr "Historial de versiones" -#: netbox/templates/core/plugin.html:106 +#: templates/core/plugin.html:107 msgid "Local Installation Instructions" msgstr "Instrucciones de instalación local" -#: netbox/templates/core/rq_queue_list.html:5 -#: netbox/templates/core/rq_queue_list.html:13 -#: netbox/templates/core/rq_task_list.html:14 -#: netbox/templates/core/rq_worker.html:7 +#: templates/core/rq_queue_list.html:5 templates/core/rq_queue_list.html:13 +#: templates/core/rq_task_list.html:14 templates/core/rq_worker.html:7 msgid "Background Queues" msgstr "Colas en segundo plano" -#: netbox/templates/core/rq_queue_list.html:24 -#: netbox/templates/core/rq_queue_list.html:25 -#: netbox/templates/core/rq_worker_list.html:49 -#: netbox/templates/core/rq_worker_list.html:50 -#: netbox/templates/extras/script_result.html:67 -#: netbox/templates/extras/script_result.html:69 -#: netbox/templates/inc/table_controls_htmx.html:30 -#: netbox/templates/inc/table_controls_htmx.html:33 +#: templates/core/rq_queue_list.html:24 templates/core/rq_queue_list.html:25 +#: templates/core/rq_worker_list.html:49 templates/core/rq_worker_list.html:50 +#: templates/extras/script_result.html:67 +#: templates/extras/script_result.html:69 +#: templates/inc/table_controls_htmx.html:30 +#: templates/inc/table_controls_htmx.html:33 msgid "Configure Table" msgstr "Configurar tabla" -#: netbox/templates/core/rq_task.html:29 +#: templates/core/rq_task.html:29 msgid "Stop" msgstr "Parar" -#: netbox/templates/core/rq_task.html:34 +#: templates/core/rq_task.html:34 msgid "Requeue" msgstr "Rehacer cola" -#: netbox/templates/core/rq_task.html:39 +#: templates/core/rq_task.html:39 msgid "Enqueue" msgstr "Lista" -#: netbox/templates/core/rq_task.html:61 +#: templates/core/rq_task.html:61 msgid "Queue" msgstr "Fila" -#: netbox/templates/core/rq_task.html:65 +#: templates/core/rq_task.html:65 msgid "Timeout" msgstr "Tiempo de espera" -#: netbox/templates/core/rq_task.html:69 +#: templates/core/rq_task.html:69 msgid "Result TTL" msgstr "Resultado TTL" -#: netbox/templates/core/rq_task.html:89 +#: templates/core/rq_task.html:89 msgid "Meta" msgstr "Meta" -#: netbox/templates/core/rq_task.html:93 +#: templates/core/rq_task.html:93 msgid "Arguments" msgstr "Argumentos" -#: netbox/templates/core/rq_task.html:97 +#: templates/core/rq_task.html:97 msgid "Keyword Arguments" msgstr "Argumentos de palabras" -#: netbox/templates/core/rq_task.html:103 +#: templates/core/rq_task.html:103 msgid "Depends on" msgstr "Depende de" -#: netbox/templates/core/rq_task.html:109 +#: templates/core/rq_task.html:109 msgid "Exception" msgstr "Excepción" -#: netbox/templates/core/rq_task_list.html:28 +#: templates/core/rq_task_list.html:28 msgid "tasks in " msgstr "tareas en " -#: netbox/templates/core/rq_task_list.html:33 +#: templates/core/rq_task_list.html:33 msgid "Queued Jobs" msgstr "Trabajos en cola" -#: netbox/templates/core/rq_task_list.html:64 -#: netbox/templates/extras/script_result.html:86 +#: templates/core/rq_task_list.html:64 templates/extras/script_result.html:86 #, python-format msgid "" "Select all %(count)s %(object_type_plural)s matching query" @@ -12322,399 +11646,384 @@ msgstr "" "Seleccione todo %(count)s %(object_type_plural)s consulta " "coincidente" -#: netbox/templates/core/rq_worker.html:10 +#: templates/core/rq_worker.html:10 msgid "Worker Info" msgstr "Información del trabajador" -#: netbox/templates/core/rq_worker.html:31 -#: netbox/templates/core/rq_worker.html:40 +#: templates/core/rq_worker.html:31 templates/core/rq_worker.html:40 msgid "Worker" msgstr "Trabajador" -#: netbox/templates/core/rq_worker.html:55 +#: templates/core/rq_worker.html:55 msgid "Queues" msgstr "Colas" -#: netbox/templates/core/rq_worker.html:63 +#: templates/core/rq_worker.html:63 msgid "Curent Job" msgstr "Empleo actual" -#: netbox/templates/core/rq_worker.html:67 +#: templates/core/rq_worker.html:67 msgid "Successful job count" msgstr "Recuento de trabajos exitoso" -#: netbox/templates/core/rq_worker.html:71 +#: templates/core/rq_worker.html:71 msgid "Failed job count" msgstr "Recuento de trabajos fallidos" -#: netbox/templates/core/rq_worker.html:75 +#: templates/core/rq_worker.html:75 msgid "Total working time" msgstr "Tiempo total de trabajo" -#: netbox/templates/core/rq_worker.html:76 +#: templates/core/rq_worker.html:76 msgid "seconds" msgstr "segundos" -#: netbox/templates/core/rq_worker_list.html:13 -#: netbox/templates/core/rq_worker_list.html:21 +#: templates/core/rq_worker_list.html:13 templates/core/rq_worker_list.html:21 msgid "Background Workers" msgstr "Trabajadores en segundo plano" -#: netbox/templates/core/rq_worker_list.html:29 +#: templates/core/rq_worker_list.html:29 #, python-format msgid "Workers in %(queue_name)s" msgstr "Trabajadores en %(queue_name)s" -#: netbox/templates/core/system.html:11 -#: netbox/utilities/templates/buttons/export.html:4 +#: templates/core/system.html:11 utilities/templates/buttons/export.html:4 msgid "Export" msgstr "Exportación" -#: netbox/templates/core/system.html:28 +#: templates/core/system.html:28 msgid "System Status" msgstr "Estado del sistema" -#: netbox/templates/core/system.html:31 +#: templates/core/system.html:31 msgid "NetBox release" msgstr "Lanzamiento de NetBox" -#: netbox/templates/core/system.html:44 +#: templates/core/system.html:44 msgid "Django version" msgstr "Versión Django" -#: netbox/templates/core/system.html:48 +#: templates/core/system.html:48 msgid "PostgreSQL version" msgstr "Versión PostgreSQL" -#: netbox/templates/core/system.html:52 +#: templates/core/system.html:52 msgid "Database name" msgstr "Nombre de base de datos" -#: netbox/templates/core/system.html:56 +#: templates/core/system.html:56 msgid "Database size" msgstr "Tamaño de base de datos" -#: netbox/templates/core/system.html:61 +#: templates/core/system.html:61 msgid "Unavailable" msgstr "No disponible" -#: netbox/templates/core/system.html:66 +#: templates/core/system.html:66 msgid "RQ workers" msgstr "Trabajadores de RQ" -#: netbox/templates/core/system.html:69 +#: templates/core/system.html:69 msgid "default queue" msgstr "cola predeterminada" -#: netbox/templates/core/system.html:73 +#: templates/core/system.html:73 msgid "System time" msgstr "Hora del sistema" -#: netbox/templates/core/system.html:85 +#: templates/core/system.html:85 msgid "Current Configuration" msgstr "Configuración actual" -#: netbox/templates/dcim/bulk_disconnect.html:9 +#: templates/dcim/bulk_disconnect.html:9 #, python-format msgid "" "Are you sure you want to disconnect these %(count)s %(obj_type_plural)s?" msgstr "" "¿Está seguro de que desea desconectarlos? %(count)s %(obj_type_plural)s?" -#: netbox/templates/dcim/cable_trace.html:10 +#: templates/dcim/cable_trace.html:10 #, python-format msgid "Cable Trace for %(object_type)s %(object)s" msgstr "Cable Trace para %(object_type)s %(object)s" -#: netbox/templates/dcim/cable_trace.html:24 -#: netbox/templates/dcim/inc/rack_elevation.html:7 +#: templates/dcim/cable_trace.html:24 templates/dcim/inc/rack_elevation.html:7 msgid "Download SVG" msgstr "Descargar SVG" -#: netbox/templates/dcim/cable_trace.html:30 +#: templates/dcim/cable_trace.html:30 msgid "Asymmetric Path" msgstr "Ruta asimétrica" -#: netbox/templates/dcim/cable_trace.html:31 +#: templates/dcim/cable_trace.html:31 msgid "The nodes below have no links and result in an asymmetric path" msgstr "" "Los nodos siguientes no tienen enlaces y dan como resultado una ruta " "asimétrica" -#: netbox/templates/dcim/cable_trace.html:38 +#: templates/dcim/cable_trace.html:38 msgid "Path split" msgstr "Ruta dividida" -#: netbox/templates/dcim/cable_trace.html:39 +#: templates/dcim/cable_trace.html:39 msgid "Select a node below to continue" msgstr "Seleccione un nodo de los siguientes para continuar" -#: netbox/templates/dcim/cable_trace.html:55 +#: templates/dcim/cable_trace.html:55 msgid "Trace Completed" msgstr "Rastreo completado" -#: netbox/templates/dcim/cable_trace.html:58 +#: templates/dcim/cable_trace.html:58 msgid "Total segments" msgstr "Total de segmentos" -#: netbox/templates/dcim/cable_trace.html:62 +#: templates/dcim/cable_trace.html:62 msgid "Total length" msgstr "Longitud total" -#: netbox/templates/dcim/cable_trace.html:77 +#: templates/dcim/cable_trace.html:77 msgid "No paths found" msgstr "No se encontró ninguna ruta" -#: netbox/templates/dcim/cable_trace.html:85 +#: templates/dcim/cable_trace.html:85 msgid "Related Paths" msgstr "Rutas relacionadas" -#: netbox/templates/dcim/cable_trace.html:89 +#: templates/dcim/cable_trace.html:89 msgid "Origin" msgstr "Origen" -#: netbox/templates/dcim/cable_trace.html:90 +#: templates/dcim/cable_trace.html:90 msgid "Destination" msgstr "Destino" -#: netbox/templates/dcim/cable_trace.html:91 +#: templates/dcim/cable_trace.html:91 msgid "Segments" msgstr "Segmentos" -#: netbox/templates/dcim/cable_trace.html:104 +#: templates/dcim/cable_trace.html:104 msgid "Incomplete" msgstr "Incompleto" -#: netbox/templates/dcim/component_list.html:14 +#: templates/dcim/component_list.html:14 msgid "Rename Selected" msgstr "Cambiar nombre seleccionado" -#: netbox/templates/dcim/consoleport.html:65 -#: netbox/templates/dcim/consoleserverport.html:66 -#: netbox/templates/dcim/frontport.html:98 -#: netbox/templates/dcim/interface.html:176 -#: netbox/templates/dcim/poweroutlet.html:69 -#: netbox/templates/dcim/powerport.html:69 +#: templates/dcim/consoleport.html:65 templates/dcim/consoleserverport.html:66 +#: templates/dcim/frontport.html:98 templates/dcim/interface.html:176 +#: templates/dcim/poweroutlet.html:69 templates/dcim/powerport.html:69 msgid "Not Connected" msgstr "No conectado" -#: netbox/templates/dcim/device.html:34 +#: templates/dcim/device.html:34 msgid "Highlight device in rack" msgstr "Resalte el dispositivo en el estante" -#: netbox/templates/dcim/device.html:55 +#: templates/dcim/device.html:55 msgid "Not racked" msgstr "No está atormentado" -#: netbox/templates/dcim/device.html:62 netbox/templates/dcim/site.html:94 +#: templates/dcim/device.html:62 templates/dcim/site.html:94 msgid "GPS Coordinates" msgstr "Coordenadas GPS" -#: netbox/templates/dcim/device.html:68 netbox/templates/dcim/site.html:81 -#: netbox/templates/dcim/site.html:100 +#: templates/dcim/device.html:68 templates/dcim/site.html:81 +#: templates/dcim/site.html:100 msgid "Map" msgstr "Mapa" -#: netbox/templates/dcim/device.html:108 -#: netbox/templates/dcim/inventoryitem.html:56 -#: netbox/templates/dcim/module.html:81 -#: netbox/templates/dcim/modulebay.html:74 netbox/templates/dcim/rack.html:61 +#: templates/dcim/device.html:108 templates/dcim/inventoryitem.html:56 +#: templates/dcim/module.html:81 templates/dcim/modulebay.html:74 +#: templates/dcim/rack.html:61 msgid "Asset Tag" msgstr "Etiqueta de activo" -#: netbox/templates/dcim/device.html:123 +#: templates/dcim/device.html:123 msgid "View Virtual Chassis" msgstr "Ver chasis virtual" -#: netbox/templates/dcim/device.html:164 +#: templates/dcim/device.html:164 msgid "Create VDC" msgstr "Crear VDC" -#: netbox/templates/dcim/device.html:175 -#: netbox/templates/dcim/device_edit.html:64 -#: netbox/virtualization/forms/model_forms.py:223 +#: templates/dcim/device.html:175 templates/dcim/device_edit.html:64 +#: virtualization/forms/model_forms.py:223 msgid "Management" msgstr "Administración" -#: netbox/templates/dcim/device.html:195 netbox/templates/dcim/device.html:211 -#: netbox/templates/dcim/device.html:227 -#: netbox/templates/virtualization/virtualmachine.html:57 -#: netbox/templates/virtualization/virtualmachine.html:73 +#: templates/dcim/device.html:195 templates/dcim/device.html:211 +#: templates/dcim/device.html:227 +#: templates/virtualization/virtualmachine.html:57 +#: templates/virtualization/virtualmachine.html:73 msgid "NAT for" msgstr "NAT para" -#: netbox/templates/dcim/device.html:197 netbox/templates/dcim/device.html:213 -#: netbox/templates/dcim/device.html:229 -#: netbox/templates/virtualization/virtualmachine.html:59 -#: netbox/templates/virtualization/virtualmachine.html:75 +#: templates/dcim/device.html:197 templates/dcim/device.html:213 +#: templates/dcim/device.html:229 +#: templates/virtualization/virtualmachine.html:59 +#: templates/virtualization/virtualmachine.html:75 msgid "NAT" msgstr "NATA" -#: netbox/templates/dcim/device.html:252 netbox/templates/dcim/rack.html:73 +#: templates/dcim/device.html:252 templates/dcim/rack.html:73 msgid "Power Utilization" msgstr "Utilización de energía" -#: netbox/templates/dcim/device.html:256 +#: templates/dcim/device.html:256 msgid "Input" msgstr "Entrada" -#: netbox/templates/dcim/device.html:257 +#: templates/dcim/device.html:257 msgid "Outlets" msgstr "Puntos de venta" -#: netbox/templates/dcim/device.html:258 +#: templates/dcim/device.html:258 msgid "Allocated" msgstr "Asignado" -#: netbox/templates/dcim/device.html:268 netbox/templates/dcim/device.html:270 -#: netbox/templates/dcim/device.html:286 -#: netbox/templates/dcim/powerfeed.html:67 +#: templates/dcim/device.html:268 templates/dcim/device.html:270 +#: templates/dcim/device.html:286 templates/dcim/powerfeed.html:67 msgid "VA" msgstr "VA" -#: netbox/templates/dcim/device.html:280 +#: templates/dcim/device.html:280 msgctxt "Leg of a power feed" msgid "Leg" msgstr "Pierna" -#: netbox/templates/dcim/device.html:306 -#: netbox/templates/virtualization/virtualmachine.html:158 +#: templates/dcim/device.html:306 +#: templates/virtualization/virtualmachine.html:158 msgid "Add a service" msgstr "Añadir un servicio" -#: netbox/templates/dcim/device/base.html:21 -#: netbox/templates/dcim/device_list.html:9 -#: netbox/templates/dcim/devicetype/base.html:18 -#: netbox/templates/dcim/module.html:18 -#: netbox/templates/dcim/moduletype/base.html:18 -#: netbox/templates/virtualization/virtualmachine/base.html:22 -#: netbox/templates/virtualization/virtualmachine_list.html:8 +#: templates/dcim/device/base.html:21 templates/dcim/device_list.html:9 +#: templates/dcim/devicetype/base.html:18 +#: templates/dcim/inc/moduletype_buttons.html:9 templates/dcim/module.html:18 +#: templates/virtualization/virtualmachine/base.html:22 +#: templates/virtualization/virtualmachine_list.html:8 msgid "Add Components" msgstr "Agregar componentes" -#: netbox/templates/dcim/device/consoleports.html:24 +#: templates/dcim/device/consoleports.html:24 msgid "Add Console Ports" msgstr "Agregar puertos de consola" -#: netbox/templates/dcim/device/consoleserverports.html:24 +#: templates/dcim/device/consoleserverports.html:24 msgid "Add Console Server Ports" msgstr "Agregar puertos de servidor de consola" -#: netbox/templates/dcim/device/devicebays.html:10 +#: templates/dcim/device/devicebays.html:10 msgid "Add Device Bays" msgstr "Agregar compartimentos de dispositivos" -#: netbox/templates/dcim/device/frontports.html:24 +#: templates/dcim/device/frontports.html:24 msgid "Add Front Ports" msgstr "Agregar puertos frontales" -#: netbox/templates/dcim/device/inc/interface_table_controls.html:9 +#: templates/dcim/device/inc/interface_table_controls.html:9 msgid "Hide Enabled" msgstr "Ocultar activado" -#: netbox/templates/dcim/device/inc/interface_table_controls.html:10 +#: templates/dcim/device/inc/interface_table_controls.html:10 msgid "Hide Disabled" msgstr "Ocultar desactivado" -#: netbox/templates/dcim/device/inc/interface_table_controls.html:11 +#: templates/dcim/device/inc/interface_table_controls.html:11 msgid "Hide Virtual" msgstr "Ocultar virtual" -#: netbox/templates/dcim/device/inc/interface_table_controls.html:12 +#: templates/dcim/device/inc/interface_table_controls.html:12 msgid "Hide Disconnected" msgstr "Ocultar desconectado" -#: netbox/templates/dcim/device/interfaces.html:27 +#: templates/dcim/device/interfaces.html:27 msgid "Add Interfaces" msgstr "Agregar interfaces" -#: netbox/templates/dcim/device/inventory.html:10 -#: netbox/templates/dcim/inc/panels/inventory_items.html:10 +#: templates/dcim/device/inventory.html:10 +#: templates/dcim/inc/panels/inventory_items.html:10 msgid "Add Inventory Item" msgstr "Añadir artículo de inventario" -#: netbox/templates/dcim/device/modulebays.html:10 +#: templates/dcim/device/modulebays.html:10 msgid "Add Module Bays" msgstr "Agregar compartimentos de módulos" -#: netbox/templates/dcim/device/poweroutlets.html:24 +#: templates/dcim/device/poweroutlets.html:24 msgid "Add Power Outlets" msgstr "Añadir tomas de corriente" -#: netbox/templates/dcim/device/powerports.html:24 +#: templates/dcim/device/powerports.html:24 msgid "Add Power Port" msgstr "Agregar puerto de alimentación" -#: netbox/templates/dcim/device/rearports.html:24 +#: templates/dcim/device/rearports.html:24 msgid "Add Rear Ports" msgstr "Agregar puertos traseros" -#: netbox/templates/dcim/device/render_config.html:5 -#: netbox/templates/virtualization/virtualmachine/render_config.html:5 +#: templates/dcim/device/render_config.html:5 +#: templates/virtualization/virtualmachine/render_config.html:5 msgid "Config" msgstr "Configuración" -#: netbox/templates/dcim/device/render_config.html:35 -#: netbox/templates/virtualization/virtualmachine/render_config.html:35 +#: templates/dcim/device/render_config.html:35 +#: templates/virtualization/virtualmachine/render_config.html:35 msgid "Context Data" msgstr "Datos de contexto" -#: netbox/templates/dcim/device/render_config.html:53 -#: netbox/templates/virtualization/virtualmachine/render_config.html:53 +#: templates/dcim/device/render_config.html:53 +#: templates/virtualization/virtualmachine/render_config.html:53 msgid "Rendered Config" msgstr "Configuración renderizada" -#: netbox/templates/dcim/device/render_config.html:55 -#: netbox/templates/virtualization/virtualmachine/render_config.html:55 +#: templates/dcim/device/render_config.html:55 +#: templates/virtualization/virtualmachine/render_config.html:55 msgid "Download" msgstr "Descargar" -#: netbox/templates/dcim/device/render_config.html:61 -#: netbox/templates/virtualization/virtualmachine/render_config.html:61 +#: templates/dcim/device/render_config.html:61 +#: templates/virtualization/virtualmachine/render_config.html:61 msgid "No configuration template found" msgstr "No se encontró ninguna plantilla de configuración" -#: netbox/templates/dcim/device_edit.html:44 +#: templates/dcim/device_edit.html:44 msgid "Parent Bay" msgstr "Bahía para padres" -#: netbox/templates/dcim/device_edit.html:48 -#: netbox/utilities/templates/form_helpers/render_field.html:22 +#: templates/dcim/device_edit.html:48 +#: utilities/templates/form_helpers/render_field.html:22 msgid "Regenerate Slug" msgstr "Regenera a Slug" -#: netbox/templates/dcim/device_edit.html:49 -#: netbox/templates/generic/bulk_remove.html:21 -#: netbox/utilities/templates/helpers/table_config_form.html:23 +#: templates/dcim/device_edit.html:49 templates/generic/bulk_remove.html:21 +#: utilities/templates/helpers/table_config_form.html:23 msgid "Remove" msgstr "Eliminar" -#: netbox/templates/dcim/device_edit.html:110 +#: templates/dcim/device_edit.html:110 msgid "Local Config Context Data" msgstr "Datos de contexto de configuración local" -#: netbox/templates/dcim/device_list.html:82 -#: netbox/templates/dcim/moduletype/component_templates.html:17 -#: netbox/templates/generic/bulk_rename.html:57 -#: netbox/templates/virtualization/virtualmachine/interfaces.html:11 -#: netbox/templates/virtualization/virtualmachine/virtual_disks.html:11 +#: templates/dcim/device_list.html:82 templates/generic/bulk_rename.html:57 +#: templates/virtualization/virtualmachine/interfaces.html:11 +#: templates/virtualization/virtualmachine/virtual_disks.html:11 msgid "Rename" msgstr "Cambiar nombre" -#: netbox/templates/dcim/devicebay.html:17 +#: templates/dcim/devicebay.html:17 msgid "Device Bay" msgstr "Bahía de dispositivos" -#: netbox/templates/dcim/devicebay.html:43 +#: templates/dcim/devicebay.html:43 msgid "Installed Device" msgstr "Dispositivo instalado" -#: netbox/templates/dcim/devicebay_depopulate.html:6 +#: templates/dcim/devicebay_depopulate.html:6 #, python-format msgid "Remove %(device)s from %(device_bay)s?" msgstr "Eliminar %(device)s de %(device_bay)s?" -#: netbox/templates/dcim/devicebay_depopulate.html:13 +#: templates/dcim/devicebay_depopulate.html:13 #, python-format msgid "" "Are you sure you want to remove %(device)s from " @@ -12723,449 +12032,430 @@ msgstr "" "¿Estás seguro de que quieres eliminar? %(device)s de " "%(device_bay)s?" -#: netbox/templates/dcim/devicebay_populate.html:13 +#: templates/dcim/devicebay_populate.html:13 msgid "Populate" msgstr "Poblar" -#: netbox/templates/dcim/devicebay_populate.html:22 +#: templates/dcim/devicebay_populate.html:22 msgid "Bay" msgstr "Bahía" -#: netbox/templates/dcim/devicerole.html:14 -#: netbox/templates/dcim/platform.html:17 +#: templates/dcim/devicerole.html:14 templates/dcim/platform.html:17 msgid "Add Device" msgstr "Agregar dispositivo" -#: netbox/templates/dcim/devicerole.html:40 +#: templates/dcim/devicerole.html:40 msgid "VM Role" msgstr "Función de máquina virtual" -#: netbox/templates/dcim/devicetype.html:18 -#: netbox/templates/dcim/moduletype.html:18 +#: templates/dcim/devicetype.html:18 templates/dcim/moduletype.html:29 msgid "Model Name" msgstr "Nombre del modelo" -#: netbox/templates/dcim/devicetype.html:25 -#: netbox/templates/dcim/moduletype.html:22 +#: templates/dcim/devicetype.html:25 templates/dcim/moduletype.html:33 msgid "Part Number" msgstr "Número de pieza" -#: netbox/templates/dcim/devicetype.html:41 +#: templates/dcim/devicetype.html:41 msgid "Exclude From Utilization" msgstr "Excluir de la utilización" -#: netbox/templates/dcim/devicetype.html:59 +#: templates/dcim/devicetype.html:59 msgid "Parent/Child" msgstr "Padre/hijo" -#: netbox/templates/dcim/devicetype.html:71 +#: templates/dcim/devicetype.html:71 msgid "Front Image" msgstr "Imagen frontal" -#: netbox/templates/dcim/devicetype.html:83 +#: templates/dcim/devicetype.html:83 msgid "Rear Image" msgstr "Imagen trasera" -#: netbox/templates/dcim/frontport.html:54 +#: templates/dcim/frontport.html:54 msgid "Rear Port Position" msgstr "Posición del puerto trasero" -#: netbox/templates/dcim/frontport.html:72 -#: netbox/templates/dcim/interface.html:144 -#: netbox/templates/dcim/poweroutlet.html:63 -#: netbox/templates/dcim/powerport.html:63 -#: netbox/templates/dcim/rearport.html:68 +#: templates/dcim/frontport.html:72 templates/dcim/interface.html:144 +#: templates/dcim/poweroutlet.html:63 templates/dcim/powerport.html:63 +#: templates/dcim/rearport.html:68 msgid "Marked as Connected" msgstr "Marcado como conectado" -#: netbox/templates/dcim/frontport.html:86 -#: netbox/templates/dcim/rearport.html:82 +#: templates/dcim/frontport.html:86 templates/dcim/rearport.html:82 msgid "Connection Status" msgstr "Estado de conexión" -#: netbox/templates/dcim/htmx/cable_edit.html:10 +#: templates/dcim/htmx/cable_edit.html:10 msgid "A Side" msgstr "Un lado" -#: netbox/templates/dcim/htmx/cable_edit.html:30 +#: templates/dcim/htmx/cable_edit.html:30 msgid "B Side" msgstr "Lado B" -#: netbox/templates/dcim/inc/cable_termination.html:65 +#: templates/dcim/inc/cable_termination.html:65 msgid "No termination" msgstr "Sin rescisión" -#: netbox/templates/dcim/inc/cable_toggle_buttons.html:3 +#: templates/dcim/inc/cable_toggle_buttons.html:3 msgid "Mark Planned" msgstr "Marcar como planificado" -#: netbox/templates/dcim/inc/cable_toggle_buttons.html:6 +#: templates/dcim/inc/cable_toggle_buttons.html:6 msgid "Mark Installed" msgstr "Marcar como instalado" -#: netbox/templates/dcim/inc/connection_endpoints.html:13 +#: templates/dcim/inc/connection_endpoints.html:13 msgid "Path Status" msgstr "Estado de la ruta" -#: netbox/templates/dcim/inc/connection_endpoints.html:18 +#: templates/dcim/inc/connection_endpoints.html:18 msgid "Not Reachable" msgstr "No accesible" -#: netbox/templates/dcim/inc/connection_endpoints.html:23 +#: templates/dcim/inc/connection_endpoints.html:23 msgid "Path Endpoints" msgstr "Puntos finales de ruta" -#: netbox/templates/dcim/inc/endpoint_connection.html:8 -#: netbox/templates/dcim/powerfeed.html:120 -#: netbox/templates/dcim/rearport.html:94 +#: templates/dcim/inc/endpoint_connection.html:8 +#: templates/dcim/powerfeed.html:120 templates/dcim/rearport.html:94 msgid "Not connected" msgstr "No conectado" -#: netbox/templates/dcim/inc/interface_vlans_table.html:6 +#: templates/dcim/inc/interface_vlans_table.html:6 msgid "Untagged" msgstr "Sin etiquetar" -#: netbox/templates/dcim/inc/interface_vlans_table.html:37 +#: templates/dcim/inc/interface_vlans_table.html:37 msgid "No VLANs Assigned" msgstr "No hay VLAN asignadas" -#: netbox/templates/dcim/inc/interface_vlans_table.html:44 -#: netbox/templates/ipam/prefix_list.html:16 -#: netbox/templates/ipam/prefix_list.html:33 +#: templates/dcim/inc/interface_vlans_table.html:44 +#: templates/ipam/prefix_list.html:16 templates/ipam/prefix_list.html:33 msgid "Clear" msgstr "Borrar" -#: netbox/templates/dcim/inc/interface_vlans_table.html:47 +#: templates/dcim/inc/interface_vlans_table.html:47 msgid "Clear All" msgstr "Borrar todo" -#: netbox/templates/dcim/inc/panels/racktype_dimensions.html:38 +#: templates/dcim/inc/panels/racktype_dimensions.html:38 msgid "Mounting Depth" msgstr "Profundidad de montaje" -#: netbox/templates/dcim/inc/panels/racktype_numbering.html:6 +#: templates/dcim/inc/panels/racktype_numbering.html:6 msgid "Starting Unit" msgstr "Unidad inicial" -#: netbox/templates/dcim/inc/panels/racktype_numbering.html:10 +#: templates/dcim/inc/panels/racktype_numbering.html:10 msgid "Descending Units" msgstr "Unidades descendentes" -#: netbox/templates/dcim/inc/rack_elevation.html:3 +#: templates/dcim/inc/rack_elevation.html:3 msgid "Rack elevation" msgstr "Elevación del bastidor" -#: netbox/templates/dcim/interface.html:17 +#: templates/dcim/interface.html:17 msgid "Add Child Interface" msgstr "Agregar interfaz secundaria" -#: netbox/templates/dcim/interface.html:50 +#: templates/dcim/interface.html:50 msgid "Speed/Duplex" msgstr "Velocidad/dúplex" -#: netbox/templates/dcim/interface.html:73 +#: templates/dcim/interface.html:73 msgid "PoE Mode" msgstr "Modo PoE" -#: netbox/templates/dcim/interface.html:77 +#: templates/dcim/interface.html:77 msgid "PoE Type" msgstr "Tipo de PoE" -#: netbox/templates/dcim/interface.html:81 -#: netbox/templates/virtualization/vminterface.html:63 +#: templates/dcim/interface.html:81 +#: templates/virtualization/vminterface.html:63 msgid "802.1Q Mode" msgstr "Modo 802.1Q" -#: netbox/templates/dcim/interface.html:125 -#: netbox/templates/virtualization/vminterface.html:59 +#: templates/dcim/interface.html:125 +#: templates/virtualization/vminterface.html:59 msgid "MAC Address" msgstr "Dirección MAC" -#: netbox/templates/dcim/interface.html:151 +#: templates/dcim/interface.html:151 msgid "Wireless Link" msgstr "Enlace inalámbrico" -#: netbox/templates/dcim/interface.html:218 netbox/vpn/choices.py:55 +#: templates/dcim/interface.html:218 vpn/choices.py:55 msgid "Peer" msgstr "Par" -#: netbox/templates/dcim/interface.html:230 -#: netbox/templates/wireless/inc/wirelesslink_interface.html:26 +#: templates/dcim/interface.html:230 +#: templates/wireless/inc/wirelesslink_interface.html:26 msgid "Channel" msgstr "Canal" -#: netbox/templates/dcim/interface.html:239 -#: netbox/templates/wireless/inc/wirelesslink_interface.html:32 +#: templates/dcim/interface.html:239 +#: templates/wireless/inc/wirelesslink_interface.html:32 msgid "Channel Frequency" msgstr "Frecuencia de canal" -#: netbox/templates/dcim/interface.html:242 -#: netbox/templates/dcim/interface.html:250 -#: netbox/templates/dcim/interface.html:261 -#: netbox/templates/dcim/interface.html:269 +#: templates/dcim/interface.html:242 templates/dcim/interface.html:250 +#: templates/dcim/interface.html:261 templates/dcim/interface.html:269 msgid "MHz" msgstr "megahercio" -#: netbox/templates/dcim/interface.html:258 -#: netbox/templates/wireless/inc/wirelesslink_interface.html:42 +#: templates/dcim/interface.html:258 +#: templates/wireless/inc/wirelesslink_interface.html:42 msgid "Channel Width" msgstr "Ancho de canal" -#: netbox/templates/dcim/interface.html:285 -#: netbox/templates/wireless/wirelesslan.html:14 -#: netbox/templates/wireless/wirelesslink.html:21 -#: netbox/wireless/forms/bulk_edit.py:60 -#: netbox/wireless/forms/bulk_edit.py:102 -#: netbox/wireless/forms/filtersets.py:40 -#: netbox/wireless/forms/filtersets.py:80 netbox/wireless/models.py:82 -#: netbox/wireless/models.py:156 netbox/wireless/tables/wirelesslan.py:44 +#: templates/dcim/interface.html:285 templates/wireless/wirelesslan.html:14 +#: templates/wireless/wirelesslink.html:21 wireless/forms/bulk_edit.py:60 +#: wireless/forms/bulk_edit.py:102 wireless/forms/filtersets.py:40 +#: wireless/forms/filtersets.py:80 wireless/models.py:82 +#: wireless/models.py:156 wireless/tables/wirelesslan.py:44 msgid "SSID" msgstr "SSID" -#: netbox/templates/dcim/interface.html:305 +#: templates/dcim/interface.html:305 msgid "LAG Members" msgstr "Miembros del LAG" -#: netbox/templates/dcim/interface.html:323 +#: templates/dcim/interface.html:323 msgid "No member interfaces" msgstr "Sin interfaces de miembros" -#: netbox/templates/dcim/interface.html:343 -#: netbox/templates/ipam/fhrpgroup.html:73 -#: netbox/templates/ipam/iprange/ip_addresses.html:7 -#: netbox/templates/ipam/prefix/ip_addresses.html:7 -#: netbox/templates/virtualization/vminterface.html:89 +#: templates/dcim/interface.html:343 templates/ipam/fhrpgroup.html:73 +#: templates/ipam/iprange/ip_addresses.html:7 +#: templates/ipam/prefix/ip_addresses.html:7 +#: templates/virtualization/vminterface.html:89 msgid "Add IP Address" msgstr "Agregar dirección IP" -#: netbox/templates/dcim/inventoryitem.html:24 +#: templates/dcim/inventoryitem.html:24 msgid "Parent Item" msgstr "Artículo principal" -#: netbox/templates/dcim/inventoryitem.html:48 +#: templates/dcim/inventoryitem.html:48 msgid "Part ID" msgstr "ID de pieza" -#: netbox/templates/dcim/location.html:17 +#: templates/dcim/location.html:17 msgid "Add Child Location" msgstr "Agregar ubicación infantil" -#: netbox/templates/dcim/location.html:77 +#: templates/dcim/location.html:77 msgid "Child Locations" msgstr "Ubicaciones para niños" -#: netbox/templates/dcim/location.html:81 netbox/templates/dcim/site.html:131 +#: templates/dcim/location.html:81 templates/dcim/site.html:131 msgid "Add a Location" msgstr "Agregar una ubicación" -#: netbox/templates/dcim/location.html:94 netbox/templates/dcim/site.html:144 +#: templates/dcim/location.html:94 templates/dcim/site.html:144 msgid "Add a Device" msgstr "Agregar un dispositivo" -#: netbox/templates/dcim/manufacturer.html:16 +#: templates/dcim/manufacturer.html:16 msgid "Add Device Type" msgstr "Agregar tipo de dispositivo" -#: netbox/templates/dcim/manufacturer.html:21 +#: templates/dcim/manufacturer.html:21 msgid "Add Module Type" msgstr "Agregar tipo de módulo" -#: netbox/templates/dcim/powerfeed.html:53 +#: templates/dcim/powerfeed.html:53 msgid "Connected Device" msgstr "Dispositivo conectado" -#: netbox/templates/dcim/powerfeed.html:63 +#: templates/dcim/powerfeed.html:63 msgid "Utilization (Allocated" msgstr "Utilización (asignada)" -#: netbox/templates/dcim/powerfeed.html:80 +#: templates/dcim/powerfeed.html:80 msgid "Electrical Characteristics" msgstr "Características eléctricas" -#: netbox/templates/dcim/powerfeed.html:88 +#: templates/dcim/powerfeed.html:88 msgctxt "Abbreviation for volts" msgid "V" msgstr "V" -#: netbox/templates/dcim/powerfeed.html:92 +#: templates/dcim/powerfeed.html:92 msgctxt "Abbreviation for amperes" msgid "A" msgstr "UN" -#: netbox/templates/dcim/poweroutlet.html:48 +#: templates/dcim/poweroutlet.html:48 msgid "Feed Leg" msgstr "Pierna de alimentación" -#: netbox/templates/dcim/powerpanel.html:72 +#: templates/dcim/powerpanel.html:72 msgid "Add Power Feeds" msgstr "Añadir fuentes de alimentación" -#: netbox/templates/dcim/powerport.html:44 +#: templates/dcim/powerport.html:44 msgid "Maximum Draw" msgstr "Sorteo máximo" -#: netbox/templates/dcim/powerport.html:48 +#: templates/dcim/powerport.html:48 msgid "Allocated Draw" msgstr "Sorteo asignado" -#: netbox/templates/dcim/rack.html:69 +#: templates/dcim/rack.html:69 msgid "Space Utilization" msgstr "Utilización del espacio" -#: netbox/templates/dcim/rack.html:84 netbox/templates/dcim/racktype.html:44 +#: templates/dcim/rack.html:84 templates/dcim/racktype.html:44 msgid "Rack Weight" msgstr "Peso del estante" -#: netbox/templates/dcim/rack.html:94 netbox/templates/dcim/racktype.html:54 +#: templates/dcim/rack.html:94 templates/dcim/racktype.html:54 msgid "Maximum Weight" msgstr "Peso máximo" -#: netbox/templates/dcim/rack.html:104 +#: templates/dcim/rack.html:104 msgid "Total Weight" msgstr "Peso total" -#: netbox/templates/dcim/rack.html:125 -#: netbox/templates/dcim/rack_elevation_list.html:15 +#: templates/dcim/rack.html:125 templates/dcim/rack_elevation_list.html:15 msgid "Images and Labels" msgstr "Imágenes y etiquetas" -#: netbox/templates/dcim/rack.html:126 -#: netbox/templates/dcim/rack_elevation_list.html:16 +#: templates/dcim/rack.html:126 templates/dcim/rack_elevation_list.html:16 msgid "Images only" msgstr "Solo imágenes" -#: netbox/templates/dcim/rack.html:127 -#: netbox/templates/dcim/rack_elevation_list.html:17 +#: templates/dcim/rack.html:127 templates/dcim/rack_elevation_list.html:17 msgid "Labels only" msgstr "Solo etiquetas" -#: netbox/templates/dcim/rack/reservations.html:8 +#: templates/dcim/rack/reservations.html:8 msgid "Add reservation" msgstr "Añadir reserva" -#: netbox/templates/dcim/rack_elevation_list.html:12 +#: templates/dcim/rack_elevation_list.html:12 msgid "View List" msgstr "Ver lista" -#: netbox/templates/dcim/rack_elevation_list.html:14 +#: templates/dcim/rack_elevation_list.html:14 msgid "Select rack view" msgstr "Seleccione la vista de estantería" -#: netbox/templates/dcim/rack_elevation_list.html:25 +#: templates/dcim/rack_elevation_list.html:25 msgid "Sort By" msgstr "Ordenar por" -#: netbox/templates/dcim/rack_elevation_list.html:74 +#: templates/dcim/rack_elevation_list.html:74 msgid "No Racks Found" msgstr "No se encontró ningún estante" -#: netbox/templates/dcim/rack_list.html:8 +#: templates/dcim/rack_list.html:8 msgid "View Elevations" msgstr "Ver elevaciones" -#: netbox/templates/dcim/rackreservation.html:42 +#: templates/dcim/rackreservation.html:42 msgid "Reservation Details" msgstr "Detalles de la reserva" -#: netbox/templates/dcim/rackrole.html:10 +#: templates/dcim/rackrole.html:10 msgid "Add Rack" msgstr "Añadir estante" -#: netbox/templates/dcim/rearport.html:50 +#: templates/dcim/rearport.html:50 msgid "Positions" msgstr "Posiciones" -#: netbox/templates/dcim/region.html:17 -#: netbox/templates/dcim/sitegroup.html:17 +#: templates/dcim/region.html:17 templates/dcim/sitegroup.html:17 msgid "Add Site" msgstr "Agregar sitio" -#: netbox/templates/dcim/region.html:55 +#: templates/dcim/region.html:55 msgid "Child Regions" msgstr "Regiones infantiles" -#: netbox/templates/dcim/region.html:59 +#: templates/dcim/region.html:59 msgid "Add Region" msgstr "Agregar región" -#: netbox/templates/dcim/site.html:64 +#: templates/dcim/site.html:64 msgid "Time Zone" msgstr "Zona horaria" -#: netbox/templates/dcim/site.html:67 +#: templates/dcim/site.html:67 msgid "UTC" msgstr "UTC" -#: netbox/templates/dcim/site.html:68 +#: templates/dcim/site.html:68 msgid "Site time" msgstr "Hora del sitio" -#: netbox/templates/dcim/site.html:75 +#: templates/dcim/site.html:75 msgid "Physical Address" msgstr "Dirección física" -#: netbox/templates/dcim/site.html:90 +#: templates/dcim/site.html:90 msgid "Shipping Address" msgstr "Dirección de envío" -#: netbox/templates/dcim/sitegroup.html:55 -#: netbox/templates/tenancy/contactgroup.html:46 -#: netbox/templates/tenancy/tenantgroup.html:55 -#: netbox/templates/wireless/wirelesslangroup.html:55 +#: templates/dcim/sitegroup.html:55 templates/tenancy/contactgroup.html:46 +#: templates/tenancy/tenantgroup.html:55 +#: templates/wireless/wirelesslangroup.html:55 msgid "Child Groups" msgstr "Grupos de niños" -#: netbox/templates/dcim/sitegroup.html:59 +#: templates/dcim/sitegroup.html:59 msgid "Add Site Group" msgstr "Agregar grupo de sitios" -#: netbox/templates/dcim/trace/attachment.html:5 -#: netbox/templates/extras/exporttemplate.html:31 +#: templates/dcim/trace/attachment.html:5 +#: templates/extras/exporttemplate.html:31 msgid "Attachment" msgstr "Fijación" -#: netbox/templates/dcim/virtualchassis.html:57 +#: templates/dcim/virtualchassis.html:57 msgid "Add Member" msgstr "Agregar miembro" -#: netbox/templates/dcim/virtualchassis_add.html:18 +#: templates/dcim/virtualchassis_add.html:18 msgid "Member Devices" msgstr "Dispositivos de los miembros" -#: netbox/templates/dcim/virtualchassis_add_member.html:10 +#: templates/dcim/virtualchassis_add_member.html:10 #, python-format msgid "Add New Member to Virtual Chassis %(virtual_chassis)s" msgstr "Agregar un nuevo miembro al chasis virtual %(virtual_chassis)s" -#: netbox/templates/dcim/virtualchassis_add_member.html:19 +#: templates/dcim/virtualchassis_add_member.html:19 msgid "Add New Member" msgstr "Agregar nuevo miembro" -#: netbox/templates/dcim/virtualchassis_add_member.html:27 -#: netbox/templates/generic/object_edit.html:78 -#: netbox/templates/users/objectpermission.html:31 -#: netbox/users/forms/filtersets.py:67 netbox/users/forms/model_forms.py:312 +#: templates/dcim/virtualchassis_add_member.html:27 +#: templates/generic/object_edit.html:78 +#: templates/users/objectpermission.html:31 users/forms/filtersets.py:67 +#: users/forms/model_forms.py:312 msgid "Actions" msgstr "Acciones" -#: netbox/templates/dcim/virtualchassis_add_member.html:29 +#: templates/dcim/virtualchassis_add_member.html:29 msgid "Save & Add Another" msgstr "Guardar y añadir otro" -#: netbox/templates/dcim/virtualchassis_edit.html:7 +#: templates/dcim/virtualchassis_edit.html:7 #, python-format msgid "Editing Virtual Chassis %(name)s" msgstr "Edición de chasis virtuales %(name)s" -#: netbox/templates/dcim/virtualchassis_edit.html:53 +#: templates/dcim/virtualchassis_edit.html:53 msgid "Rack/Unit" msgstr "Bastidor/unidad" -#: netbox/templates/dcim/virtualchassis_remove_member.html:5 +#: templates/dcim/virtualchassis_remove_member.html:5 msgid "Remove Virtual Chassis Member" msgstr "Eliminar miembro del chasis virtual" -#: netbox/templates/dcim/virtualchassis_remove_member.html:9 +#: templates/dcim/virtualchassis_remove_member.html:9 #, python-format msgid "" "Are you sure you want to remove %(device)s from virtual " @@ -13174,12 +12464,11 @@ msgstr "" "¿Estás seguro de que quieres eliminar? %(device)s desde un " "chasis virtual %(name)s?" -#: netbox/templates/dcim/virtualdevicecontext.html:26 -#: netbox/templates/vpn/l2vpn.html:18 +#: templates/dcim/virtualdevicecontext.html:26 templates/vpn/l2vpn.html:18 msgid "Identifier" msgstr "Identificador" -#: netbox/templates/exceptions/import_error.html:6 +#: templates/exceptions/import_error.html:6 msgid "" "A module import error occurred during this request. Common causes include " "the following:" @@ -13187,11 +12476,11 @@ msgstr "" "Se ha producido un error de importación del módulo durante esta solicitud. " "Entre las causas más frecuentes se incluyen las siguientes:" -#: netbox/templates/exceptions/import_error.html:10 +#: templates/exceptions/import_error.html:10 msgid "Missing required packages" msgstr "Faltan paquetes requeridos" -#: netbox/templates/exceptions/import_error.html:11 +#: templates/exceptions/import_error.html:11 msgid "" "This installation of NetBox might be missing one or more required Python " "packages. These packages are listed in requirements.txt and " @@ -13208,11 +12497,11 @@ msgstr "" "congelada desde la consola y compare el resultado con la lista de " "paquetes necesarios." -#: netbox/templates/exceptions/import_error.html:20 +#: templates/exceptions/import_error.html:20 msgid "WSGI service not restarted after upgrade" msgstr "El servicio WSGI no se reinicia después de la actualización" -#: netbox/templates/exceptions/import_error.html:21 +#: templates/exceptions/import_error.html:21 msgid "" "If this installation has recently been upgraded, check that the WSGI service" " (e.g. gunicorn or uWSGI) has been restarted. This ensures that the new code" @@ -13222,7 +12511,7 @@ msgstr "" "WSGI (por ejemplo, gunicorn o uWSGI) se haya reiniciado. Esto garantiza que " "el nuevo código se esté ejecutando." -#: netbox/templates/exceptions/permission_error.html:6 +#: templates/exceptions/permission_error.html:6 msgid "" "A file permission error was detected while processing this request. Common " "causes include the following:" @@ -13230,11 +12519,11 @@ msgstr "" "Se detectó un error de permisos de archivos al procesar esta solicitud. " "Entre las causas más frecuentes se incluyen las siguientes:" -#: netbox/templates/exceptions/permission_error.html:10 +#: templates/exceptions/permission_error.html:10 msgid "Insufficient write permission to the media root" msgstr "Permisos de escritura insuficientes en la raíz multimedia" -#: netbox/templates/exceptions/permission_error.html:11 +#: templates/exceptions/permission_error.html:11 #, python-format msgid "" "The configured media root is %(media_root)s. Ensure that the " @@ -13245,7 +12534,7 @@ msgstr "" "que el usuario NetBox se ejecute con acceso para escribir archivos en todas " "las ubicaciones de esta ruta." -#: netbox/templates/exceptions/programming_error.html:6 +#: templates/exceptions/programming_error.html:6 msgid "" "A database programming error was detected while processing this request. " "Common causes include the following:" @@ -13253,11 +12542,11 @@ msgstr "" "Se detectó un error de programación de la base de datos al procesar esta " "solicitud. Entre las causas más frecuentes se incluyen las siguientes:" -#: netbox/templates/exceptions/programming_error.html:10 +#: templates/exceptions/programming_error.html:10 msgid "Database migrations missing" msgstr "Faltan migraciones de bases de datos" -#: netbox/templates/exceptions/programming_error.html:11 +#: templates/exceptions/programming_error.html:11 msgid "" "When upgrading to a new NetBox release, the upgrade script must be run to " "apply any new database migrations. You can run migrations manually by " @@ -13268,11 +12557,11 @@ msgstr "" "Puede ejecutar las migraciones manualmente mediante la ejecución " "python3 manage.py migre desde la línea de comandos." -#: netbox/templates/exceptions/programming_error.html:18 +#: templates/exceptions/programming_error.html:18 msgid "Unsupported PostgreSQL version" msgstr "Versión de PostgreSQL no compatible" -#: netbox/templates/exceptions/programming_error.html:19 +#: templates/exceptions/programming_error.html:19 msgid "" "Ensure that PostgreSQL version 12 or later is in use. You can check this by " "connecting to the database using NetBox's credentials and issuing a query " @@ -13282,102 +12571,99 @@ msgstr "" "comprobarlo, conéctese a la base de datos utilizando las credenciales de " "NetBox y emitiendo una consulta para SELECCIONE LA VERSIÓN ()." -#: netbox/templates/extras/configcontext.html:45 -#: netbox/templates/extras/configtemplate.html:37 -#: netbox/templates/extras/exporttemplate.html:51 +#: templates/extras/configcontext.html:45 +#: templates/extras/configtemplate.html:37 +#: templates/extras/exporttemplate.html:51 msgid "The data file associated with this object has been deleted" msgstr "Se ha eliminado el archivo de datos asociado a este objeto" -#: netbox/templates/extras/configcontext.html:54 -#: netbox/templates/extras/configtemplate.html:46 -#: netbox/templates/extras/exporttemplate.html:60 +#: templates/extras/configcontext.html:54 +#: templates/extras/configtemplate.html:46 +#: templates/extras/exporttemplate.html:60 msgid "Data Synced" msgstr "Datos sincronizados" -#: netbox/templates/extras/configcontext_list.html:7 -#: netbox/templates/extras/configtemplate_list.html:7 -#: netbox/templates/extras/exporttemplate_list.html:7 +#: templates/extras/configcontext_list.html:7 +#: templates/extras/configtemplate_list.html:7 +#: templates/extras/exporttemplate_list.html:7 msgid "Sync Data" msgstr "Sincronizar datos" -#: netbox/templates/extras/configtemplate.html:56 +#: templates/extras/configtemplate.html:56 msgid "Environment Parameters" msgstr "Parámetros del entorno" -#: netbox/templates/extras/configtemplate.html:67 -#: netbox/templates/extras/exporttemplate.html:79 +#: templates/extras/configtemplate.html:67 +#: templates/extras/exporttemplate.html:79 msgid "Template" msgstr "plantilla" -#: netbox/templates/extras/customfield.html:30 -#: netbox/templates/extras/customlink.html:21 +#: templates/extras/customfield.html:30 templates/extras/customlink.html:21 msgid "Group Name" msgstr "Nombre del grupo" -#: netbox/templates/extras/customfield.html:42 +#: templates/extras/customfield.html:42 msgid "Must be Unique" msgstr "Debe ser único" -#: netbox/templates/extras/customfield.html:46 +#: templates/extras/customfield.html:46 msgid "Cloneable" msgstr "Clonable" -#: netbox/templates/extras/customfield.html:56 +#: templates/extras/customfield.html:56 msgid "Default Value" msgstr "Valor predeterminado" -#: netbox/templates/extras/customfield.html:73 +#: templates/extras/customfield.html:73 msgid "Search Weight" msgstr "Peso de búsqueda" -#: netbox/templates/extras/customfield.html:83 +#: templates/extras/customfield.html:83 msgid "Filter Logic" msgstr "Lógica de filtros" -#: netbox/templates/extras/customfield.html:87 +#: templates/extras/customfield.html:87 msgid "Display Weight" msgstr "Peso de la pantalla" -#: netbox/templates/extras/customfield.html:91 +#: templates/extras/customfield.html:91 msgid "UI Visible" msgstr "Interfaz de usuario visible" -#: netbox/templates/extras/customfield.html:95 +#: templates/extras/customfield.html:95 msgid "UI Editable" msgstr "Interfaz de usuario editable" -#: netbox/templates/extras/customfield.html:115 +#: templates/extras/customfield.html:115 msgid "Validation Rules" msgstr "Reglas de validación" -#: netbox/templates/extras/customfield.html:126 +#: templates/extras/customfield.html:126 msgid "Regular Expression" msgstr "Expresión regular" -#: netbox/templates/extras/customlink.html:29 +#: templates/extras/customlink.html:29 msgid "Button Class" msgstr "Clase de botones" -#: netbox/templates/extras/customlink.html:39 -#: netbox/templates/extras/exporttemplate.html:66 -#: netbox/templates/extras/savedfilter.html:39 +#: templates/extras/customlink.html:39 templates/extras/exporttemplate.html:66 +#: templates/extras/savedfilter.html:39 msgid "Assigned Models" msgstr "Modelos asignados" -#: netbox/templates/extras/customlink.html:52 +#: templates/extras/customlink.html:52 msgid "Link Text" msgstr "Texto del enlace" -#: netbox/templates/extras/customlink.html:58 +#: templates/extras/customlink.html:58 msgid "Link URL" msgstr "URL del enlace" -#: netbox/templates/extras/dashboard/reset.html:4 -#: netbox/templates/home.html:66 +#: templates/extras/dashboard/reset.html:4 templates/home.html:66 msgid "Reset Dashboard" msgstr "Restablecer panel" -#: netbox/templates/extras/dashboard/reset.html:8 +#: templates/extras/dashboard/reset.html:8 msgid "" "This will remove all configured widgets and restore the " "default dashboard configuration." @@ -13385,7 +12671,7 @@ msgstr "" "Esto eliminará todo configuró los widgets y restauró la " "configuración predeterminada del panel de control." -#: netbox/templates/extras/dashboard/reset.html:13 +#: templates/extras/dashboard/reset.html:13 msgid "" "This change affects only your dashboard, and will not impact other " "users." @@ -13393,157 +12679,155 @@ msgstr "" "Este cambio solo afecta vuestro panel de control, y no afectará a " "otros usuarios." -#: netbox/templates/extras/dashboard/widget.html:21 +#: templates/extras/dashboard/widget.html:21 msgid "widget configuration" msgstr "configuración de widgets" -#: netbox/templates/extras/dashboard/widget.html:36 +#: templates/extras/dashboard/widget.html:36 msgid "Close widget" msgstr "Cerrar widget" -#: netbox/templates/extras/dashboard/widget_add.html:7 +#: templates/extras/dashboard/widget_add.html:7 msgid "Add a Widget" msgstr "Añadir un widget" -#: netbox/templates/extras/dashboard/widgets/bookmarks.html:14 +#: templates/extras/dashboard/widgets/bookmarks.html:14 msgid "No bookmarks have been added yet." msgstr "Aún no se ha añadido ningún marcador." -#: netbox/templates/extras/dashboard/widgets/objectcounts.html:10 +#: templates/extras/dashboard/widgets/objectcounts.html:10 msgid "No permission" msgstr "Sin permiso" -#: netbox/templates/extras/dashboard/widgets/objectlist.html:6 +#: templates/extras/dashboard/widgets/objectlist.html:6 msgid "No permission to view this content" msgstr "Sin permiso para ver este contenido" -#: netbox/templates/extras/dashboard/widgets/objectlist.html:10 +#: templates/extras/dashboard/widgets/objectlist.html:10 msgid "Unable to load content. Invalid view name" msgstr "No se puede cargar el contenido. Nombre de vista no válido" -#: netbox/templates/extras/dashboard/widgets/rssfeed.html:12 +#: templates/extras/dashboard/widgets/rssfeed.html:12 msgid "No content found" msgstr "No se ha encontrado contenido" -#: netbox/templates/extras/dashboard/widgets/rssfeed.html:18 +#: templates/extras/dashboard/widgets/rssfeed.html:18 msgid "There was a problem fetching the RSS feed" msgstr "Se ha producido un problema al obtener la fuente RSS" -#: netbox/templates/extras/dashboard/widgets/rssfeed.html:21 +#: templates/extras/dashboard/widgets/rssfeed.html:21 msgid "HTTP" msgstr "HTTP" -#: netbox/templates/extras/eventrule.html:61 +#: templates/extras/eventrule.html:61 msgid "Conditions" msgstr "Condiciones" -#: netbox/templates/extras/exporttemplate.html:23 +#: templates/extras/exporttemplate.html:23 msgid "MIME Type" msgstr "Tipo MIME" -#: netbox/templates/extras/exporttemplate.html:27 +#: templates/extras/exporttemplate.html:27 msgid "File Extension" msgstr "Extensión de archivo" -#: netbox/templates/extras/htmx/script_result.html:10 +#: templates/extras/htmx/script_result.html:10 msgid "Scheduled for" msgstr "Programado para" -#: netbox/templates/extras/htmx/script_result.html:15 +#: templates/extras/htmx/script_result.html:15 msgid "Duration" msgstr "Duración" -#: netbox/templates/extras/htmx/script_result.html:23 +#: templates/extras/htmx/script_result.html:23 msgid "Test Summary" msgstr "Resumen de la prueba" -#: netbox/templates/extras/htmx/script_result.html:43 +#: templates/extras/htmx/script_result.html:43 msgid "Log" msgstr "Registro" -#: netbox/templates/extras/htmx/script_result.html:56 +#: templates/extras/htmx/script_result.html:56 msgid "Output" msgstr "Salida" -#: netbox/templates/extras/inc/result_pending.html:4 +#: templates/extras/inc/result_pending.html:4 msgid "Loading" msgstr "Cargando" -#: netbox/templates/extras/inc/result_pending.html:6 +#: templates/extras/inc/result_pending.html:6 msgid "Results pending" msgstr "Resultados pendientes" -#: netbox/templates/extras/journalentry.html:15 +#: templates/extras/journalentry.html:15 msgid "Journal Entry" msgstr "Entrada de diario" -#: netbox/templates/extras/notificationgroup.html:11 +#: templates/extras/notificationgroup.html:11 msgid "Notification Group" msgstr "Grupo de notificaciones" -#: netbox/templates/extras/notificationgroup.html:36 -#: netbox/templates/extras/notificationgroup.html:46 -#: netbox/utilities/templates/widgets/clearable_file_input.html:12 +#: templates/extras/notificationgroup.html:36 +#: templates/extras/notificationgroup.html:46 +#: utilities/templates/widgets/clearable_file_input.html:12 msgid "None assigned" msgstr "No se ha asignado ninguno" -#: netbox/templates/extras/object_configcontext.html:19 +#: templates/extras/object_configcontext.html:19 msgid "The local config context overwrites all source contexts" msgstr "" "El contexto de configuración local sobrescribe todos los contextos fuente" -#: netbox/templates/extras/object_configcontext.html:25 +#: templates/extras/object_configcontext.html:25 msgid "Source Contexts" msgstr "Contextos de origen" -#: netbox/templates/extras/object_journal.html:17 +#: templates/extras/object_journal.html:17 msgid "New Journal Entry" msgstr "Nueva entrada de diario" -#: netbox/templates/extras/report/base.html:30 +#: templates/extras/report/base.html:30 msgid "Report" msgstr "Informe" -#: netbox/templates/extras/script.html:14 +#: templates/extras/script.html:14 msgid "You do not have permission to run scripts" msgstr "No tiene permiso para ejecutar scripts" -#: netbox/templates/extras/script.html:41 -#: netbox/templates/extras/script.html:45 -#: netbox/templates/extras/script_list.html:86 +#: templates/extras/script.html:41 templates/extras/script.html:45 +#: templates/extras/script_list.html:86 msgid "Run Script" msgstr "Ejecutar script" -#: netbox/templates/extras/script.html:51 -#: netbox/templates/extras/script/source.html:10 +#: templates/extras/script.html:51 templates/extras/script/source.html:10 msgid "Error loading script" msgstr "Error al cargar el script" -#: netbox/templates/extras/script/jobs.html:16 +#: templates/extras/script/jobs.html:16 msgid "Script no longer exists in the source file." msgstr "El script ya no existe en el archivo fuente." -#: netbox/templates/extras/script_list.html:46 +#: templates/extras/script_list.html:46 msgid "Last Run" msgstr "Última ejecución" -#: netbox/templates/extras/script_list.html:61 +#: templates/extras/script_list.html:61 msgid "Script is no longer present in the source file" msgstr "La secuencia de comandos ya no está presente en el archivo fuente" -#: netbox/templates/extras/script_list.html:74 +#: templates/extras/script_list.html:74 msgid "Never" msgstr "Nunca" -#: netbox/templates/extras/script_list.html:84 +#: templates/extras/script_list.html:84 msgid "Run Again" msgstr "Corre otra vez" -#: netbox/templates/extras/script_list.html:138 +#: templates/extras/script_list.html:138 msgid "No Scripts Found" msgstr "No se encontró ningún script" -#: netbox/templates/extras/script_list.html:141 +#: templates/extras/script_list.html:141 #, python-format msgid "" "Get started by creating a script from " @@ -13552,83 +12836,81 @@ msgstr "" "Comience por crear un guion desde un " "archivo o fuente de datos cargados." -#: netbox/templates/extras/script_result.html:35 -#: netbox/templates/generic/object_list.html:50 -#: netbox/templates/search.html:13 +#: templates/extras/script_result.html:35 +#: templates/generic/object_list.html:50 templates/search.html:13 msgid "Results" msgstr "Resultados" -#: netbox/templates/extras/script_result.html:46 +#: templates/extras/script_result.html:46 msgid "Log threshold" msgstr "Umbral de registro" -#: netbox/templates/extras/script_result.html:56 +#: templates/extras/script_result.html:56 msgid "All" msgstr "Todas" -#: netbox/templates/extras/tag.html:32 +#: templates/extras/tag.html:32 msgid "Tagged Items" msgstr "Artículos etiquetados" -#: netbox/templates/extras/tag.html:43 +#: templates/extras/tag.html:43 msgid "Allowed Object Types" msgstr "Tipos de objetos permitidos" -#: netbox/templates/extras/tag.html:51 +#: templates/extras/tag.html:51 msgid "Any" msgstr "Cualquier" -#: netbox/templates/extras/tag.html:57 +#: templates/extras/tag.html:57 msgid "Tagged Item Types" msgstr "Tipos de artículos etiquetados" -#: netbox/templates/extras/tag.html:81 +#: templates/extras/tag.html:81 msgid "Tagged Objects" msgstr "Objetos etiquetados" -#: netbox/templates/extras/webhook.html:26 +#: templates/extras/webhook.html:26 msgid "HTTP Method" msgstr "Método HTTP" -#: netbox/templates/extras/webhook.html:34 +#: templates/extras/webhook.html:34 msgid "HTTP Content Type" msgstr "Tipo de contenido HTTP" -#: netbox/templates/extras/webhook.html:47 +#: templates/extras/webhook.html:47 msgid "SSL Verification" msgstr "Verificación SSL" -#: netbox/templates/extras/webhook.html:60 +#: templates/extras/webhook.html:60 msgid "Additional Headers" msgstr "Encabezados adicionales" -#: netbox/templates/extras/webhook.html:70 +#: templates/extras/webhook.html:70 msgid "Body Template" msgstr "Plantilla corporal" -#: netbox/templates/generic/bulk_add_component.html:29 +#: templates/generic/bulk_add_component.html:29 msgid "Bulk Creation" msgstr "Creación masiva" -#: netbox/templates/generic/bulk_add_component.html:34 -#: netbox/templates/generic/bulk_delete.html:32 -#: netbox/templates/generic/bulk_edit.html:33 +#: templates/generic/bulk_add_component.html:34 +#: templates/generic/bulk_delete.html:32 templates/generic/bulk_edit.html:33 msgid "Selected Objects" msgstr "Objetos seleccionados" -#: netbox/templates/generic/bulk_add_component.html:58 +#: templates/generic/bulk_add_component.html:58 msgid "to Add" msgstr "añadir" -#: netbox/templates/generic/bulk_delete.html:27 +#: templates/generic/bulk_delete.html:27 msgid "Bulk Delete" msgstr "Eliminación masiva" -#: netbox/templates/generic/bulk_delete.html:49 +#: templates/generic/bulk_delete.html:49 msgid "Confirm Bulk Deletion" msgstr "Confirme la eliminación masiva" -#: netbox/templates/generic/bulk_delete.html:50 +#: templates/generic/bulk_delete.html:50 #, python-format msgid "" "The following operation will delete %(count)s " @@ -13638,69 +12920,66 @@ msgstr "" "La siguiente operación eliminará %(count)s %(type_plural)s." " Revise cuidadosamente los objetos seleccionados y confirme esta acción." -#: netbox/templates/generic/bulk_edit.html:21 -#: netbox/templates/generic/object_edit.html:22 +#: templates/generic/bulk_edit.html:21 templates/generic/object_edit.html:22 msgid "Editing" msgstr "Edición" -#: netbox/templates/generic/bulk_edit.html:28 +#: templates/generic/bulk_edit.html:28 msgid "Bulk Edit" msgstr "Edición masiva" -#: netbox/templates/generic/bulk_edit.html:107 -#: netbox/templates/generic/bulk_rename.html:66 +#: templates/generic/bulk_edit.html:107 templates/generic/bulk_rename.html:66 msgid "Apply" msgstr "Aplica" -#: netbox/templates/generic/bulk_import.html:19 +#: templates/generic/bulk_import.html:19 msgid "Bulk Import" msgstr "Importación masiva" -#: netbox/templates/generic/bulk_import.html:25 +#: templates/generic/bulk_import.html:25 msgid "Direct Import" msgstr "Importación directa" -#: netbox/templates/generic/bulk_import.html:30 +#: templates/generic/bulk_import.html:30 msgid "Upload File" msgstr "Cargar archivo" -#: netbox/templates/generic/bulk_import.html:58 -#: netbox/templates/generic/bulk_import.html:80 -#: netbox/templates/generic/bulk_import.html:102 +#: templates/generic/bulk_import.html:58 templates/generic/bulk_import.html:80 +#: templates/generic/bulk_import.html:102 msgid "Submit" msgstr "Enviar" -#: netbox/templates/generic/bulk_import.html:113 +#: templates/generic/bulk_import.html:113 msgid "Field Options" msgstr "Opciones de campo" -#: netbox/templates/generic/bulk_import.html:119 +#: templates/generic/bulk_import.html:119 msgid "Accessor" msgstr "Accesor" -#: netbox/templates/generic/bulk_import.html:148 +#: templates/generic/bulk_import.html:148 msgid "choices" msgstr "opciones" -#: netbox/templates/generic/bulk_import.html:161 +#: templates/generic/bulk_import.html:161 msgid "Import Value" msgstr "Valor de importación" -#: netbox/templates/generic/bulk_import.html:181 +#: templates/generic/bulk_import.html:181 msgid "Format: YYYY-MM-DD" msgstr "Formato: AAAA-MM-DD" -#: netbox/templates/generic/bulk_import.html:183 +#: templates/generic/bulk_import.html:183 msgid "Specify true or false" msgstr "Especifique verdadero o falso" -#: netbox/templates/generic/bulk_import.html:195 +#: templates/generic/bulk_import.html:195 msgid "Required fields must be specified for all objects." msgstr "" "Campos obligatorios mosto especificarse para todos los " "objetos." -#: netbox/templates/generic/bulk_import.html:201 +#: templates/generic/bulk_import.html:201 #, python-format msgid "" "Related objects may be referenced by any unique attribute. For example, " @@ -13710,15 +12989,15 @@ msgstr "" "atributo único. Por ejemplo, %(example)s identificaría un VRF " "por su identificador de ruta." -#: netbox/templates/generic/bulk_remove.html:28 +#: templates/generic/bulk_remove.html:28 msgid "Bulk Remove" msgstr "Eliminación masiva" -#: netbox/templates/generic/bulk_remove.html:42 +#: templates/generic/bulk_remove.html:42 msgid "Confirm Bulk Removal" msgstr "Confirme la eliminación masiva" -#: netbox/templates/generic/bulk_remove.html:43 +#: templates/generic/bulk_remove.html:43 #, python-format msgid "" "The following operation will remove %(count)s %(obj_type_plural)s from " @@ -13729,72 +13008,72 @@ msgstr "" "%(parent_obj)s. Por favor, revise detenidamente el %(obj_type_plural)s para " "eliminarlo y confirmarlo a continuación." -#: netbox/templates/generic/bulk_remove.html:64 +#: templates/generic/bulk_remove.html:64 #, python-format msgid "Remove these %(count)s %(obj_type_plural)s" msgstr "Elimine estos %(count)s %(obj_type_plural)s" -#: netbox/templates/generic/bulk_rename.html:20 +#: templates/generic/bulk_rename.html:20 msgid "Renaming" msgstr "Cambiar el nombre" -#: netbox/templates/generic/bulk_rename.html:27 +#: templates/generic/bulk_rename.html:27 msgid "Bulk Rename" msgstr "Cambio de nombre masivo" -#: netbox/templates/generic/bulk_rename.html:39 +#: templates/generic/bulk_rename.html:39 msgid "Current Name" msgstr "Nombre actual" -#: netbox/templates/generic/bulk_rename.html:40 +#: templates/generic/bulk_rename.html:40 msgid "New Name" msgstr "Nombre nuevo" -#: netbox/templates/generic/bulk_rename.html:64 -#: netbox/utilities/templates/widgets/markdown_input.html:11 +#: templates/generic/bulk_rename.html:64 +#: utilities/templates/widgets/markdown_input.html:11 msgid "Preview" msgstr "Vista previa" -#: netbox/templates/generic/confirmation_form.html:16 +#: templates/generic/confirmation_form.html:16 msgid "Are you sure" msgstr "¿Estás seguro" -#: netbox/templates/generic/confirmation_form.html:20 +#: templates/generic/confirmation_form.html:20 msgid "Confirm" msgstr "Confirmar" -#: netbox/templates/generic/object_children.html:47 -#: netbox/utilities/templates/buttons/bulk_edit.html:4 +#: templates/generic/object_children.html:47 +#: utilities/templates/buttons/bulk_edit.html:4 msgid "Edit Selected" msgstr "Editar seleccionado" -#: netbox/templates/generic/object_children.html:61 -#: netbox/utilities/templates/buttons/bulk_delete.html:4 +#: templates/generic/object_children.html:61 +#: utilities/templates/buttons/bulk_delete.html:4 msgid "Delete Selected" msgstr "Eliminar seleccionado" -#: netbox/templates/generic/object_edit.html:24 +#: templates/generic/object_edit.html:24 #, python-format msgid "Add a new %(object_type)s" msgstr "Añadir una nueva %(object_type)s" -#: netbox/templates/generic/object_edit.html:35 +#: templates/generic/object_edit.html:35 msgid "View model documentation" msgstr "Ver la documentación del modelo" -#: netbox/templates/generic/object_edit.html:36 +#: templates/generic/object_edit.html:36 msgid "Help" msgstr "Ayuda" -#: netbox/templates/generic/object_edit.html:83 +#: templates/generic/object_edit.html:83 msgid "Create & Add Another" msgstr "Crear y agregar otro" -#: netbox/templates/generic/object_list.html:57 +#: templates/generic/object_list.html:57 msgid "Filters" msgstr "Filtros" -#: netbox/templates/generic/object_list.html:88 +#: templates/generic/object_list.html:88 #, python-format msgid "" "Select all %(count)s " @@ -13803,40 +13082,40 @@ msgstr "" "Seleccione todo %(count)s " "%(object_type_plural)s consulta coincidente" -#: netbox/templates/home.html:15 +#: templates/home.html:15 msgid "New Release Available" msgstr "Nueva versión disponible" -#: netbox/templates/home.html:16 +#: templates/home.html:16 msgid "is available" msgstr "está disponible" -#: netbox/templates/home.html:18 +#: templates/home.html:18 msgctxt "Document title" msgid "Upgrade Instructions" msgstr "Instrucciones de actualización" -#: netbox/templates/home.html:40 +#: templates/home.html:40 msgid "Unlock Dashboard" msgstr "Desbloquear panel" -#: netbox/templates/home.html:49 +#: templates/home.html:49 msgid "Lock Dashboard" msgstr "Panel de control de bloqueo" -#: netbox/templates/home.html:60 +#: templates/home.html:60 msgid "Add Widget" msgstr "Agregar widget" -#: netbox/templates/home.html:63 +#: templates/home.html:63 msgid "Save Layout" msgstr "Guardar diseño" -#: netbox/templates/htmx/delete_form.html:7 +#: templates/htmx/delete_form.html:7 msgid "Confirm Deletion" msgstr "Confirme la eliminación" -#: netbox/templates/htmx/delete_form.html:11 +#: templates/htmx/delete_form.html:11 #, python-format msgid "" "Are you sure you want to delete " @@ -13845,40 +13124,40 @@ msgstr "" "¿Estás seguro de que quieres eliminar" " %(object_type)s %(object)s?" -#: netbox/templates/htmx/delete_form.html:17 +#: templates/htmx/delete_form.html:17 msgid "The following objects will be deleted as a result of this action." msgstr "Como resultado de esta acción, se eliminarán los siguientes objetos." -#: netbox/templates/htmx/notifications.html:15 +#: templates/htmx/notifications.html:15 msgid "ago" msgstr "hace" -#: netbox/templates/htmx/notifications.html:26 +#: templates/htmx/notifications.html:26 msgid "No unread notifications" msgstr "No hay notificaciones sin leer" -#: netbox/templates/htmx/notifications.html:31 +#: templates/htmx/notifications.html:31 msgid "All notifications" msgstr "Todas las notificaciones" -#: netbox/templates/htmx/object_selector.html:5 +#: templates/htmx/object_selector.html:5 msgid "Select" msgstr "Seleccione" -#: netbox/templates/inc/filter_list.html:42 -#: netbox/utilities/templates/helpers/table_config_form.html:39 +#: templates/inc/filter_list.html:43 +#: utilities/templates/helpers/table_config_form.html:39 msgid "Reset" msgstr "Restablecer" -#: netbox/templates/inc/light_toggle.html:4 +#: templates/inc/light_toggle.html:4 msgid "Enable dark mode" msgstr "Activar el modo oscuro" -#: netbox/templates/inc/light_toggle.html:7 +#: templates/inc/light_toggle.html:7 msgid "Enable light mode" msgstr "Activar el modo de luz" -#: netbox/templates/inc/missing_prerequisites.html:8 +#: templates/inc/missing_prerequisites.html:8 #, python-format msgid "" "Before you can add a %(model)s you must first create a " @@ -13887,283 +13166,281 @@ msgstr "" "Antes de poder añadir un %(model)s primero debes crear un " "%(prerequisite_model)s." -#: netbox/templates/inc/paginator.html:15 +#: templates/inc/paginator.html:15 msgid "Page selection" msgstr "Selección de páginas" -#: netbox/templates/inc/paginator.html:75 +#: templates/inc/paginator.html:75 #, python-format msgid "Showing %(start)s-%(end)s of %(total)s" msgstr "Mostrando %(start)s-%(end)s de %(total)s" -#: netbox/templates/inc/paginator.html:82 +#: templates/inc/paginator.html:82 msgid "Pagination options" msgstr "Opciones de paginación" -#: netbox/templates/inc/paginator.html:86 +#: templates/inc/paginator.html:86 msgid "Per Page" msgstr "Por página" -#: netbox/templates/inc/panels/image_attachments.html:10 +#: templates/inc/panels/image_attachments.html:10 msgid "Attach an image" msgstr "Adjunta una imagen" -#: netbox/templates/inc/panels/related_objects.html:5 +#: templates/inc/panels/related_objects.html:5 msgid "Related Objects" msgstr "Objetos relacionados" -#: netbox/templates/inc/panels/tags.html:11 +#: templates/inc/panels/tags.html:11 msgid "No tags assigned" msgstr "No hay etiquetas asignadas" -#: netbox/templates/inc/sync_warning.html:10 +#: templates/inc/sync_warning.html:10 msgid "Data is out of sync with upstream file" msgstr "Los datos no están sincronizados con el archivo anterior" -#: netbox/templates/inc/table_controls_htmx.html:7 +#: templates/inc/table_controls_htmx.html:7 msgid "Quick search" msgstr "Búsqueda rápida" -#: netbox/templates/inc/table_controls_htmx.html:20 +#: templates/inc/table_controls_htmx.html:20 msgid "Saved filter" msgstr "Filtro guardado" -#: netbox/templates/inc/table_htmx.html:18 +#: templates/inc/table_htmx.html:18 msgid "Clear ordering" msgstr "Pedido claro" -#: netbox/templates/inc/user_menu.html:6 +#: templates/inc/user_menu.html:6 msgid "Help center" msgstr "Centro de ayuda" -#: netbox/templates/inc/user_menu.html:41 +#: templates/inc/user_menu.html:41 msgid "Django Admin" msgstr "Administrador de Django" -#: netbox/templates/inc/user_menu.html:61 +#: templates/inc/user_menu.html:61 msgid "Log Out" msgstr "Cerrar sesión" -#: netbox/templates/inc/user_menu.html:68 netbox/templates/login.html:38 +#: templates/inc/user_menu.html:68 templates/login.html:38 msgid "Log In" msgstr "Iniciar sesión" -#: netbox/templates/ipam/aggregate.html:14 -#: netbox/templates/ipam/ipaddress.html:14 -#: netbox/templates/ipam/iprange.html:13 netbox/templates/ipam/prefix.html:15 +#: templates/ipam/aggregate.html:14 templates/ipam/ipaddress.html:14 +#: templates/ipam/iprange.html:13 templates/ipam/prefix.html:15 msgid "Family" msgstr "Familia" -#: netbox/templates/ipam/aggregate.html:39 +#: templates/ipam/aggregate.html:39 msgid "Date Added" msgstr "Fecha añadida" -#: netbox/templates/ipam/aggregate/prefixes.html:8 -#: netbox/templates/ipam/prefix/prefixes.html:8 -#: netbox/templates/ipam/role.html:10 +#: templates/ipam/aggregate/prefixes.html:8 +#: templates/ipam/prefix/prefixes.html:8 templates/ipam/role.html:10 msgid "Add Prefix" msgstr "Agregar prefijo" -#: netbox/templates/ipam/asn.html:23 +#: templates/ipam/asn.html:23 msgid "AS Number" msgstr "Número AS" -#: netbox/templates/ipam/fhrpgroup.html:52 +#: templates/ipam/fhrpgroup.html:52 msgid "Authentication Type" msgstr "Tipo de autenticación" -#: netbox/templates/ipam/fhrpgroup.html:56 +#: templates/ipam/fhrpgroup.html:56 msgid "Authentication Key" msgstr "Clave de autenticación" -#: netbox/templates/ipam/fhrpgroup.html:69 +#: templates/ipam/fhrpgroup.html:69 msgid "Virtual IP Addresses" msgstr "Direcciones IP virtuales" -#: netbox/templates/ipam/inc/ipaddress_edit_header.html:13 +#: templates/ipam/inc/ipaddress_edit_header.html:13 msgid "Assign IP" msgstr "Asignar IP" -#: netbox/templates/ipam/inc/ipaddress_edit_header.html:19 +#: templates/ipam/inc/ipaddress_edit_header.html:19 msgid "Bulk Create" msgstr "Creación masiva" -#: netbox/templates/ipam/inc/panels/fhrp_groups.html:10 +#: templates/ipam/inc/panels/fhrp_groups.html:10 msgid "Create Group" msgstr "Crear grupo" -#: netbox/templates/ipam/inc/panels/fhrp_groups.html:25 +#: templates/ipam/inc/panels/fhrp_groups.html:25 msgid "Virtual IPs" msgstr "IP virtuales" -#: netbox/templates/ipam/inc/toggle_available.html:7 +#: templates/ipam/inc/toggle_available.html:7 msgid "Show Assigned" msgstr "Mostrar asignado" -#: netbox/templates/ipam/inc/toggle_available.html:10 +#: templates/ipam/inc/toggle_available.html:10 msgid "Show Available" msgstr "Mostrar disponible" -#: netbox/templates/ipam/inc/toggle_available.html:13 +#: templates/ipam/inc/toggle_available.html:13 msgid "Show All" msgstr "Mostrar todo" -#: netbox/templates/ipam/ipaddress.html:23 -#: netbox/templates/ipam/iprange.html:45 netbox/templates/ipam/prefix.html:24 +#: templates/ipam/ipaddress.html:23 templates/ipam/iprange.html:45 +#: templates/ipam/prefix.html:24 msgid "Global" msgstr "Global" -#: netbox/templates/ipam/ipaddress.html:85 +#: templates/ipam/ipaddress.html:85 msgid "NAT (outside)" msgstr "NAT (exterior)" -#: netbox/templates/ipam/ipaddress_assign.html:8 +#: templates/ipam/ipaddress_assign.html:8 msgid "Assign an IP Address" msgstr "Asignar una dirección IP" -#: netbox/templates/ipam/ipaddress_assign.html:22 +#: templates/ipam/ipaddress_assign.html:22 msgid "Select IP Address" msgstr "Seleccione la dirección IP" -#: netbox/templates/ipam/ipaddress_assign.html:35 +#: templates/ipam/ipaddress_assign.html:35 msgid "Search Results" msgstr "Resultados de la búsqueda" -#: netbox/templates/ipam/ipaddress_bulk_add.html:6 +#: templates/ipam/ipaddress_bulk_add.html:6 msgid "Bulk Add IP Addresses" msgstr "Agregar direcciones IP de forma masiva" -#: netbox/templates/ipam/iprange.html:17 +#: templates/ipam/iprange.html:17 msgid "Starting Address" msgstr "Dirección inicial" -#: netbox/templates/ipam/iprange.html:21 +#: templates/ipam/iprange.html:21 msgid "Ending Address" msgstr "Dirección final" -#: netbox/templates/ipam/iprange.html:33 netbox/templates/ipam/prefix.html:110 +#: templates/ipam/iprange.html:33 templates/ipam/prefix.html:110 msgid "Marked fully utilized" msgstr "Marcado como totalmente utilizado" -#: netbox/templates/ipam/prefix.html:99 +#: templates/ipam/prefix.html:99 msgid "Addressing Details" msgstr "Detalles de direccionamiento" -#: netbox/templates/ipam/prefix.html:118 +#: templates/ipam/prefix.html:118 msgid "Child IPs" msgstr "IP para niños" -#: netbox/templates/ipam/prefix.html:126 +#: templates/ipam/prefix.html:126 msgid "Available IPs" msgstr "IPs disponibles" -#: netbox/templates/ipam/prefix.html:138 +#: templates/ipam/prefix.html:138 msgid "First available IP" msgstr "Primera IP disponible" -#: netbox/templates/ipam/prefix.html:179 +#: templates/ipam/prefix.html:179 msgid "Prefix Details" msgstr "Detalles del prefijo" -#: netbox/templates/ipam/prefix.html:185 +#: templates/ipam/prefix.html:185 msgid "Network Address" msgstr "Dirección de red" -#: netbox/templates/ipam/prefix.html:189 +#: templates/ipam/prefix.html:189 msgid "Network Mask" msgstr "Máscara de red" -#: netbox/templates/ipam/prefix.html:193 +#: templates/ipam/prefix.html:193 msgid "Wildcard Mask" msgstr "Máscara Wildcard" -#: netbox/templates/ipam/prefix.html:197 +#: templates/ipam/prefix.html:197 msgid "Broadcast Address" msgstr "Dirección de transmisión" -#: netbox/templates/ipam/prefix/ip_ranges.html:7 +#: templates/ipam/prefix/ip_ranges.html:7 msgid "Add IP Range" msgstr "Agregar rango de IP" -#: netbox/templates/ipam/prefix_list.html:7 +#: templates/ipam/prefix_list.html:7 msgid "Hide Depth Indicators" msgstr "Ocultar indicadores de profundidad" -#: netbox/templates/ipam/prefix_list.html:11 +#: templates/ipam/prefix_list.html:11 msgid "Max Depth" msgstr "Profundidad máxima" -#: netbox/templates/ipam/prefix_list.html:28 +#: templates/ipam/prefix_list.html:28 msgid "Max Length" msgstr "Longitud máxima" -#: netbox/templates/ipam/rir.html:10 +#: templates/ipam/rir.html:10 msgid "Add Aggregate" msgstr "Agregar agregado" -#: netbox/templates/ipam/routetarget.html:38 +#: templates/ipam/routetarget.html:38 msgid "Importing VRFs" msgstr "Importación de VRF" -#: netbox/templates/ipam/routetarget.html:44 +#: templates/ipam/routetarget.html:44 msgid "Exporting VRFs" msgstr "Exportación de VRF" -#: netbox/templates/ipam/routetarget.html:52 +#: templates/ipam/routetarget.html:52 msgid "Importing L2VPNs" msgstr "Importación de VPNs L2" -#: netbox/templates/ipam/routetarget.html:58 +#: templates/ipam/routetarget.html:58 msgid "Exporting L2VPNs" msgstr "Exportación de VPNs L2" -#: netbox/templates/ipam/vlan.html:88 +#: templates/ipam/vlan.html:88 msgid "Add a Prefix" msgstr "Agregar un prefijo" -#: netbox/templates/ipam/vlangroup.html:18 +#: templates/ipam/vlangroup.html:18 msgid "Add VLAN" msgstr "Agregar VLAN" -#: netbox/templates/ipam/vrf.html:16 +#: templates/ipam/vrf.html:16 msgid "Route Distinguisher" msgstr "Distinguidor de rutas" -#: netbox/templates/ipam/vrf.html:29 +#: templates/ipam/vrf.html:29 msgid "Unique IP Space" msgstr "Espacio IP único" -#: netbox/templates/login.html:29 -#: netbox/utilities/templates/form_helpers/render_errors.html:7 +#: templates/login.html:29 +#: utilities/templates/form_helpers/render_errors.html:7 msgid "Errors" msgstr "Errores" -#: netbox/templates/login.html:69 +#: templates/login.html:69 msgid "Sign In" msgstr "Iniciar sesión" -#: netbox/templates/login.html:77 +#: templates/login.html:77 msgctxt "Denotes an alternative option" msgid "Or" msgstr "O" -#: netbox/templates/media_failure.html:7 +#: templates/media_failure.html:7 msgid "Static Media Failure - NetBox" msgstr "Fallo de medios estáticos - NetBox" -#: netbox/templates/media_failure.html:21 +#: templates/media_failure.html:21 msgid "Static Media Failure" msgstr "Fallo de medios estáticos" -#: netbox/templates/media_failure.html:23 +#: templates/media_failure.html:23 msgid "The following static media file failed to load" msgstr "No se pudo cargar el siguiente archivo multimedia estático" -#: netbox/templates/media_failure.html:26 +#: templates/media_failure.html:26 msgid "Check the following" msgstr "Compruebe lo siguiente" -#: netbox/templates/media_failure.html:29 +#: templates/media_failure.html:29 msgid "" "manage.py collectstatic was run during the most recent upgrade." " This installs the most recent iteration of each static file into the static" @@ -14173,7 +13450,7 @@ msgstr "" " más reciente. Esto instala la iteración más reciente de cada archivo " "estático en la ruta raíz estática." -#: netbox/templates/media_failure.html:35 +#: templates/media_failure.html:35 #, python-format msgid "" "The HTTP service (e.g. nginx or Apache) is configured to serve files from " @@ -14185,7 +13462,7 @@ msgstr "" "href=\"%(docs_url)s\">la documentación de instalación para obtener más " "información." -#: netbox/templates/media_failure.html:47 +#: templates/media_failure.html:47 #, python-format msgid "" "The file %(filename)s exists in the static root directory and " @@ -14194,567 +13471,548 @@ msgstr "" "El archivo %(filename)s existe en el directorio raíz estático y" " el servidor HTTP lo puede leer." -#: netbox/templates/media_failure.html:55 +#: templates/media_failure.html:55 #, python-format msgid "Click here to attempt loading NetBox again." msgstr "" "Haga clic aquí para intentar cargar NetBox de " "nuevo." -#: netbox/templates/tenancy/contact.html:18 netbox/tenancy/filtersets.py:147 -#: netbox/tenancy/forms/bulk_edit.py:137 -#: netbox/tenancy/forms/filtersets.py:102 netbox/tenancy/forms/forms.py:56 -#: netbox/tenancy/forms/model_forms.py:106 -#: netbox/tenancy/forms/model_forms.py:130 -#: netbox/tenancy/tables/contacts.py:98 +#: templates/tenancy/contact.html:18 tenancy/filtersets.py:147 +#: tenancy/forms/bulk_edit.py:137 tenancy/forms/filtersets.py:102 +#: tenancy/forms/forms.py:56 tenancy/forms/model_forms.py:106 +#: tenancy/forms/model_forms.py:130 tenancy/tables/contacts.py:98 msgid "Contact" msgstr "Contacto" -#: netbox/templates/tenancy/contact.html:29 -#: netbox/tenancy/forms/bulk_edit.py:99 +#: templates/tenancy/contact.html:29 tenancy/forms/bulk_edit.py:99 msgid "Title" msgstr "Título" -#: netbox/templates/tenancy/contact.html:33 -#: netbox/tenancy/forms/bulk_edit.py:104 netbox/tenancy/tables/contacts.py:64 +#: templates/tenancy/contact.html:33 tenancy/forms/bulk_edit.py:104 +#: tenancy/tables/contacts.py:64 msgid "Phone" msgstr "Teléfono" -#: netbox/templates/tenancy/contactgroup.html:18 -#: netbox/tenancy/forms/forms.py:66 netbox/tenancy/forms/model_forms.py:75 +#: templates/tenancy/contactgroup.html:18 tenancy/forms/forms.py:66 +#: tenancy/forms/model_forms.py:75 msgid "Contact Group" msgstr "Grupo de contacto" -#: netbox/templates/tenancy/contactgroup.html:50 +#: templates/tenancy/contactgroup.html:50 msgid "Add Contact Group" msgstr "Agregar grupo de contactos" -#: netbox/templates/tenancy/contactrole.html:15 -#: netbox/tenancy/filtersets.py:152 netbox/tenancy/forms/forms.py:61 -#: netbox/tenancy/forms/model_forms.py:87 +#: templates/tenancy/contactrole.html:15 tenancy/filtersets.py:152 +#: tenancy/forms/forms.py:61 tenancy/forms/model_forms.py:87 msgid "Contact Role" msgstr "Función de contacto" -#: netbox/templates/tenancy/object_contacts.html:9 +#: templates/tenancy/object_contacts.html:9 msgid "Add a contact" msgstr "Añadir un contacto" -#: netbox/templates/tenancy/tenantgroup.html:17 +#: templates/tenancy/tenantgroup.html:17 msgid "Add Tenant" msgstr "Agregar inquilino" -#: netbox/templates/tenancy/tenantgroup.html:26 -#: netbox/tenancy/forms/model_forms.py:32 netbox/tenancy/tables/columns.py:51 -#: netbox/tenancy/tables/columns.py:61 +#: templates/tenancy/tenantgroup.html:26 tenancy/forms/model_forms.py:32 +#: tenancy/tables/columns.py:51 tenancy/tables/columns.py:61 msgid "Tenant Group" msgstr "Grupo de inquilinos" -#: netbox/templates/tenancy/tenantgroup.html:59 +#: templates/tenancy/tenantgroup.html:59 msgid "Add Tenant Group" msgstr "Agregar grupo de inquilinos" -#: netbox/templates/users/group.html:39 netbox/templates/users/user.html:63 +#: templates/users/group.html:39 templates/users/user.html:63 msgid "Assigned Permissions" msgstr "Permisos asignados" -#: netbox/templates/users/objectpermission.html:6 -#: netbox/templates/users/objectpermission.html:14 -#: netbox/users/forms/filtersets.py:66 +#: templates/users/objectpermission.html:6 +#: templates/users/objectpermission.html:14 users/forms/filtersets.py:66 msgid "Permission" msgstr "Permiso" -#: netbox/templates/users/objectpermission.html:34 +#: templates/users/objectpermission.html:34 msgid "View" msgstr "Ver" -#: netbox/templates/users/objectpermission.html:52 -#: netbox/users/forms/model_forms.py:315 +#: templates/users/objectpermission.html:52 users/forms/model_forms.py:315 msgid "Constraints" msgstr "Restricciones" -#: netbox/templates/users/objectpermission.html:72 +#: templates/users/objectpermission.html:72 msgid "Assigned Users" msgstr "Usuarios asignados" -#: netbox/templates/virtualization/cluster.html:52 +#: templates/virtualization/cluster.html:52 msgid "Allocated Resources" msgstr "Recursos asignados" -#: netbox/templates/virtualization/cluster.html:55 -#: netbox/templates/virtualization/virtualmachine.html:125 +#: templates/virtualization/cluster.html:55 +#: templates/virtualization/virtualmachine.html:125 msgid "Virtual CPUs" msgstr "CPUs virtuales" -#: netbox/templates/virtualization/cluster.html:59 -#: netbox/templates/virtualization/virtualmachine.html:129 +#: templates/virtualization/cluster.html:59 +#: templates/virtualization/virtualmachine.html:129 msgid "Memory" msgstr "Memoria" -#: netbox/templates/virtualization/cluster.html:69 -#: netbox/templates/virtualization/virtualmachine.html:140 +#: templates/virtualization/cluster.html:69 +#: templates/virtualization/virtualmachine.html:140 msgid "Disk Space" msgstr "Espacio en disco" -#: netbox/templates/virtualization/cluster/base.html:18 +#: templates/virtualization/cluster/base.html:18 msgid "Add Virtual Machine" msgstr "Agregar máquina virtual" -#: netbox/templates/virtualization/cluster/base.html:24 +#: templates/virtualization/cluster/base.html:24 msgid "Assign Device" msgstr "Asignar dispositivo" -#: netbox/templates/virtualization/cluster/devices.html:10 +#: templates/virtualization/cluster/devices.html:10 msgid "Remove Selected" msgstr "Eliminar seleccionado" -#: netbox/templates/virtualization/cluster_add_devices.html:9 +#: templates/virtualization/cluster_add_devices.html:9 #, python-format msgid "Add Device to Cluster %(cluster)s" msgstr "Agregar dispositivo al clúster %(cluster)s" -#: netbox/templates/virtualization/cluster_add_devices.html:23 +#: templates/virtualization/cluster_add_devices.html:23 msgid "Device Selection" msgstr "Selección de dispositivos" -#: netbox/templates/virtualization/cluster_add_devices.html:31 +#: templates/virtualization/cluster_add_devices.html:31 msgid "Add Devices" msgstr "Agregar dispositivos" -#: netbox/templates/virtualization/clustergroup.html:10 -#: netbox/templates/virtualization/clustertype.html:10 +#: templates/virtualization/clustergroup.html:10 +#: templates/virtualization/clustertype.html:10 msgid "Add Cluster" msgstr "Agregar clúster" -#: netbox/templates/virtualization/clustergroup.html:19 -#: netbox/virtualization/forms/model_forms.py:50 +#: templates/virtualization/clustergroup.html:19 +#: virtualization/forms/model_forms.py:50 msgid "Cluster Group" msgstr "Grupo de clústeres" -#: netbox/templates/virtualization/clustertype.html:19 -#: netbox/templates/virtualization/virtualmachine.html:110 -#: netbox/virtualization/forms/model_forms.py:36 +#: templates/virtualization/clustertype.html:19 +#: templates/virtualization/virtualmachine.html:110 +#: virtualization/forms/model_forms.py:36 msgid "Cluster Type" msgstr "Tipo de clúster" -#: netbox/templates/virtualization/virtualdisk.html:18 +#: templates/virtualization/virtualdisk.html:18 msgid "Virtual Disk" msgstr "Disco virtual" -#: netbox/templates/virtualization/virtualmachine.html:122 -#: netbox/virtualization/forms/bulk_edit.py:190 -#: netbox/virtualization/forms/model_forms.py:224 +#: templates/virtualization/virtualmachine.html:122 +#: virtualization/forms/bulk_edit.py:190 +#: virtualization/forms/model_forms.py:224 msgid "Resources" msgstr "Recursos" -#: netbox/templates/virtualization/virtualmachine.html:178 +#: templates/virtualization/virtualmachine.html:178 msgid "Add Virtual Disk" msgstr "Agregar disco virtual" -#: netbox/templates/vpn/ikepolicy.html:10 -#: netbox/templates/vpn/ipsecprofile.html:33 netbox/vpn/tables/crypto.py:166 +#: templates/vpn/ikepolicy.html:10 templates/vpn/ipsecprofile.html:33 +#: vpn/tables/crypto.py:166 msgid "IKE Policy" msgstr "Política de IKE" -#: netbox/templates/vpn/ikepolicy.html:21 +#: templates/vpn/ikepolicy.html:21 msgid "IKE Version" msgstr "Versión IKE" -#: netbox/templates/vpn/ikepolicy.html:29 +#: templates/vpn/ikepolicy.html:29 msgid "Pre-Shared Key" msgstr "Clave previamente compartida" -#: netbox/templates/vpn/ikepolicy.html:33 -#: netbox/templates/wireless/inc/authentication_attrs.html:20 +#: templates/vpn/ikepolicy.html:33 +#: templates/wireless/inc/authentication_attrs.html:20 msgid "Show Secret" msgstr "Mostrar secreto" -#: netbox/templates/vpn/ikepolicy.html:57 -#: netbox/templates/vpn/ipsecpolicy.html:45 -#: netbox/templates/vpn/ipsecprofile.html:52 -#: netbox/templates/vpn/ipsecprofile.html:77 -#: netbox/vpn/forms/model_forms.py:316 netbox/vpn/forms/model_forms.py:352 -#: netbox/vpn/tables/crypto.py:68 netbox/vpn/tables/crypto.py:134 +#: templates/vpn/ikepolicy.html:57 templates/vpn/ipsecpolicy.html:45 +#: templates/vpn/ipsecprofile.html:52 templates/vpn/ipsecprofile.html:77 +#: vpn/forms/model_forms.py:316 vpn/forms/model_forms.py:352 +#: vpn/tables/crypto.py:68 vpn/tables/crypto.py:134 msgid "Proposals" msgstr "Propuestas" -#: netbox/templates/vpn/ikeproposal.html:10 +#: templates/vpn/ikeproposal.html:10 msgid "IKE Proposal" msgstr "Propuesta IKE" -#: netbox/templates/vpn/ikeproposal.html:21 netbox/vpn/forms/bulk_edit.py:97 -#: netbox/vpn/forms/bulk_import.py:145 netbox/vpn/forms/filtersets.py:101 +#: templates/vpn/ikeproposal.html:21 vpn/forms/bulk_edit.py:97 +#: vpn/forms/bulk_import.py:145 vpn/forms/filtersets.py:101 msgid "Authentication method" msgstr "Método de autenticación" -#: netbox/templates/vpn/ikeproposal.html:25 -#: netbox/templates/vpn/ipsecproposal.html:21 -#: netbox/vpn/forms/bulk_edit.py:102 netbox/vpn/forms/bulk_edit.py:172 -#: netbox/vpn/forms/bulk_import.py:149 netbox/vpn/forms/bulk_import.py:195 -#: netbox/vpn/forms/filtersets.py:106 netbox/vpn/forms/filtersets.py:154 +#: templates/vpn/ikeproposal.html:25 templates/vpn/ipsecproposal.html:21 +#: vpn/forms/bulk_edit.py:102 vpn/forms/bulk_edit.py:172 +#: vpn/forms/bulk_import.py:149 vpn/forms/bulk_import.py:195 +#: vpn/forms/filtersets.py:106 vpn/forms/filtersets.py:154 msgid "Encryption algorithm" msgstr "Algoritmo de cifrado" -#: netbox/templates/vpn/ikeproposal.html:29 -#: netbox/templates/vpn/ipsecproposal.html:25 -#: netbox/vpn/forms/bulk_edit.py:107 netbox/vpn/forms/bulk_edit.py:177 -#: netbox/vpn/forms/bulk_import.py:153 netbox/vpn/forms/bulk_import.py:200 -#: netbox/vpn/forms/filtersets.py:111 netbox/vpn/forms/filtersets.py:159 +#: templates/vpn/ikeproposal.html:29 templates/vpn/ipsecproposal.html:25 +#: vpn/forms/bulk_edit.py:107 vpn/forms/bulk_edit.py:177 +#: vpn/forms/bulk_import.py:153 vpn/forms/bulk_import.py:200 +#: vpn/forms/filtersets.py:111 vpn/forms/filtersets.py:159 msgid "Authentication algorithm" msgstr "Algoritmo de autenticación" -#: netbox/templates/vpn/ikeproposal.html:33 +#: templates/vpn/ikeproposal.html:33 msgid "DH group" msgstr "Grupo DH" -#: netbox/templates/vpn/ikeproposal.html:37 -#: netbox/templates/vpn/ipsecproposal.html:29 -#: netbox/vpn/forms/bulk_edit.py:182 netbox/vpn/models/crypto.py:146 +#: templates/vpn/ikeproposal.html:37 templates/vpn/ipsecproposal.html:29 +#: vpn/forms/bulk_edit.py:182 vpn/models/crypto.py:146 msgid "SA lifetime (seconds)" msgstr "Una vida útil (segundos)" -#: netbox/templates/vpn/ipsecpolicy.html:10 -#: netbox/templates/vpn/ipsecprofile.html:66 netbox/vpn/tables/crypto.py:170 +#: templates/vpn/ipsecpolicy.html:10 templates/vpn/ipsecprofile.html:66 +#: vpn/tables/crypto.py:170 msgid "IPSec Policy" msgstr "Política IPSec" -#: netbox/templates/vpn/ipsecpolicy.html:21 netbox/vpn/forms/bulk_edit.py:210 -#: netbox/vpn/models/crypto.py:193 +#: templates/vpn/ipsecpolicy.html:21 vpn/forms/bulk_edit.py:210 +#: vpn/models/crypto.py:193 msgid "PFS group" msgstr "Grupo PFS" -#: netbox/templates/vpn/ipsecprofile.html:10 -#: netbox/vpn/forms/model_forms.py:54 +#: templates/vpn/ipsecprofile.html:10 vpn/forms/model_forms.py:54 msgid "IPSec Profile" msgstr "Perfil IPSec" -#: netbox/templates/vpn/ipsecprofile.html:89 netbox/vpn/tables/crypto.py:137 +#: templates/vpn/ipsecprofile.html:89 vpn/tables/crypto.py:137 msgid "PFS Group" msgstr "Grupo PFS" -#: netbox/templates/vpn/ipsecproposal.html:10 +#: templates/vpn/ipsecproposal.html:10 msgid "IPSec Proposal" msgstr "Propuesta de IPSec" -#: netbox/templates/vpn/ipsecproposal.html:33 -#: netbox/vpn/forms/bulk_edit.py:186 netbox/vpn/models/crypto.py:152 +#: templates/vpn/ipsecproposal.html:33 vpn/forms/bulk_edit.py:186 +#: vpn/models/crypto.py:152 msgid "SA lifetime (KB)" msgstr "Una vida útil (KB)" -#: netbox/templates/vpn/l2vpn.html:11 -#: netbox/templates/vpn/l2vpntermination.html:9 +#: templates/vpn/l2vpn.html:11 templates/vpn/l2vpntermination.html:9 msgid "L2VPN Attributes" msgstr "Atributos de L2VPN" -#: netbox/templates/vpn/l2vpn.html:60 netbox/templates/vpn/tunnel.html:76 +#: templates/vpn/l2vpn.html:60 templates/vpn/tunnel.html:76 msgid "Add a Termination" msgstr "Agregar una terminación" -#: netbox/templates/vpn/tunnel.html:9 +#: templates/vpn/tunnel.html:9 msgid "Add Termination" msgstr "Agregar terminación" -#: netbox/templates/vpn/tunnel.html:37 netbox/vpn/forms/bulk_edit.py:49 -#: netbox/vpn/forms/bulk_import.py:48 netbox/vpn/forms/filtersets.py:57 +#: templates/vpn/tunnel.html:37 vpn/forms/bulk_edit.py:49 +#: vpn/forms/bulk_import.py:48 vpn/forms/filtersets.py:57 msgid "Encapsulation" msgstr "Encapsulación" -#: netbox/templates/vpn/tunnel.html:41 netbox/vpn/forms/bulk_edit.py:55 -#: netbox/vpn/forms/bulk_import.py:53 netbox/vpn/forms/filtersets.py:64 -#: netbox/vpn/models/crypto.py:250 netbox/vpn/tables/tunnels.py:51 +#: templates/vpn/tunnel.html:41 vpn/forms/bulk_edit.py:55 +#: vpn/forms/bulk_import.py:53 vpn/forms/filtersets.py:64 +#: vpn/models/crypto.py:250 vpn/tables/tunnels.py:51 msgid "IPSec profile" msgstr "Perfil IPSec" -#: netbox/templates/vpn/tunnel.html:45 netbox/vpn/forms/bulk_edit.py:69 -#: netbox/vpn/forms/filtersets.py:68 +#: templates/vpn/tunnel.html:45 vpn/forms/bulk_edit.py:69 +#: vpn/forms/filtersets.py:68 msgid "Tunnel ID" msgstr "ID de túnel" -#: netbox/templates/vpn/tunnelgroup.html:14 +#: templates/vpn/tunnelgroup.html:14 msgid "Add Tunnel" msgstr "Añadir túnel" -#: netbox/templates/vpn/tunnelgroup.html:23 netbox/vpn/forms/model_forms.py:36 -#: netbox/vpn/forms/model_forms.py:49 +#: templates/vpn/tunnelgroup.html:23 vpn/forms/model_forms.py:36 +#: vpn/forms/model_forms.py:49 msgid "Tunnel Group" msgstr "Grupo Tunnel" -#: netbox/templates/vpn/tunneltermination.html:10 +#: templates/vpn/tunneltermination.html:10 msgid "Tunnel Termination" msgstr "Terminación del túnel" -#: netbox/templates/vpn/tunneltermination.html:35 -#: netbox/vpn/forms/bulk_import.py:107 netbox/vpn/forms/model_forms.py:102 -#: netbox/vpn/forms/model_forms.py:138 netbox/vpn/forms/model_forms.py:247 -#: netbox/vpn/tables/tunnels.py:101 +#: templates/vpn/tunneltermination.html:35 vpn/forms/bulk_import.py:107 +#: vpn/forms/model_forms.py:102 vpn/forms/model_forms.py:138 +#: vpn/forms/model_forms.py:247 vpn/tables/tunnels.py:101 msgid "Outside IP" msgstr "IP externa" -#: netbox/templates/vpn/tunneltermination.html:51 +#: templates/vpn/tunneltermination.html:51 msgid "Peer Terminations" msgstr "Terminaciones de pares" -#: netbox/templates/wireless/inc/authentication_attrs.html:12 +#: templates/wireless/inc/authentication_attrs.html:12 msgid "Cipher" msgstr "Cifrar" -#: netbox/templates/wireless/inc/authentication_attrs.html:16 +#: templates/wireless/inc/authentication_attrs.html:16 msgid "PSK" msgstr "PSK" -#: netbox/templates/wireless/inc/wirelesslink_interface.html:35 -#: netbox/templates/wireless/inc/wirelesslink_interface.html:45 +#: templates/wireless/inc/wirelesslink_interface.html:35 +#: templates/wireless/inc/wirelesslink_interface.html:45 msgctxt "Abbreviation for megahertz" msgid "MHz" msgstr "megahercio" -#: netbox/templates/wireless/wirelesslan.html:57 +#: templates/wireless/wirelesslan.html:57 msgid "Attached Interfaces" msgstr "Interfaces conectadas" -#: netbox/templates/wireless/wirelesslangroup.html:17 +#: templates/wireless/wirelesslangroup.html:17 msgid "Add Wireless LAN" msgstr "Agregar LAN inalámbrica" -#: netbox/templates/wireless/wirelesslangroup.html:26 -#: netbox/wireless/forms/model_forms.py:28 +#: templates/wireless/wirelesslangroup.html:26 +#: wireless/forms/model_forms.py:28 msgid "Wireless LAN Group" msgstr "Grupo de LAN inalámbrica" -#: netbox/templates/wireless/wirelesslangroup.html:59 +#: templates/wireless/wirelesslangroup.html:59 msgid "Add Wireless LAN Group" msgstr "Agregar grupo de LAN inalámbrica" -#: netbox/templates/wireless/wirelesslink.html:14 +#: templates/wireless/wirelesslink.html:14 msgid "Link Properties" msgstr "Propiedades del enlace" -#: netbox/templates/wireless/wirelesslink.html:38 -#: netbox/wireless/forms/bulk_edit.py:129 -#: netbox/wireless/forms/filtersets.py:102 -#: netbox/wireless/forms/model_forms.py:165 +#: templates/wireless/wirelesslink.html:38 wireless/forms/bulk_edit.py:129 +#: wireless/forms/filtersets.py:102 wireless/forms/model_forms.py:165 msgid "Distance" msgstr "Distancia" -#: netbox/tenancy/filtersets.py:28 +#: tenancy/filtersets.py:28 msgid "Parent contact group (ID)" msgstr "Grupo de contacto de padres (ID)" -#: netbox/tenancy/filtersets.py:34 +#: tenancy/filtersets.py:34 msgid "Parent contact group (slug)" msgstr "Grupo de contacto para padres (slug)" -#: netbox/tenancy/filtersets.py:40 netbox/tenancy/filtersets.py:67 -#: netbox/tenancy/filtersets.py:110 +#: tenancy/filtersets.py:40 tenancy/filtersets.py:67 tenancy/filtersets.py:110 msgid "Contact group (ID)" msgstr "Grupo de contactos (ID)" -#: netbox/tenancy/filtersets.py:47 netbox/tenancy/filtersets.py:74 -#: netbox/tenancy/filtersets.py:117 +#: tenancy/filtersets.py:47 tenancy/filtersets.py:74 tenancy/filtersets.py:117 msgid "Contact group (slug)" msgstr "Grupo de contacto (slug)" -#: netbox/tenancy/filtersets.py:104 +#: tenancy/filtersets.py:104 msgid "Contact (ID)" msgstr "Contacto (ID)" -#: netbox/tenancy/filtersets.py:121 +#: tenancy/filtersets.py:121 msgid "Contact role (ID)" msgstr "Rol de contacto (ID)" -#: netbox/tenancy/filtersets.py:127 +#: tenancy/filtersets.py:127 msgid "Contact role (slug)" msgstr "Rol de contacto (babosa)" -#: netbox/tenancy/filtersets.py:158 +#: tenancy/filtersets.py:158 msgid "Contact group" msgstr "Grupo de contactos" -#: netbox/tenancy/filtersets.py:169 +#: tenancy/filtersets.py:169 msgid "Parent tenant group (ID)" msgstr "Grupo de padres e inquilinos (ID)" -#: netbox/tenancy/filtersets.py:175 +#: tenancy/filtersets.py:175 msgid "Parent tenant group (slug)" msgstr "Grupo de padres e inquilinos (slug)" -#: netbox/tenancy/filtersets.py:181 netbox/tenancy/filtersets.py:201 +#: tenancy/filtersets.py:181 tenancy/filtersets.py:201 msgid "Tenant group (ID)" msgstr "Grupo de inquilinos (ID)" -#: netbox/tenancy/filtersets.py:234 +#: tenancy/filtersets.py:234 msgid "Tenant Group (ID)" msgstr "Grupo de inquilinos (ID)" -#: netbox/tenancy/filtersets.py:241 +#: tenancy/filtersets.py:241 msgid "Tenant Group (slug)" msgstr "Grupo de inquilinos (babosa)" -#: netbox/tenancy/forms/bulk_edit.py:66 +#: tenancy/forms/bulk_edit.py:66 msgid "Desciption" msgstr "Descripción" -#: netbox/tenancy/forms/bulk_import.py:101 +#: tenancy/forms/bulk_import.py:101 msgid "Assigned contact" msgstr "Contacto asignado" -#: netbox/tenancy/models/contacts.py:32 +#: tenancy/models/contacts.py:32 msgid "contact group" msgstr "grupo de contacto" -#: netbox/tenancy/models/contacts.py:33 +#: tenancy/models/contacts.py:33 msgid "contact groups" msgstr "grupos de contacto" -#: netbox/tenancy/models/contacts.py:48 +#: tenancy/models/contacts.py:48 msgid "contact role" msgstr "rol de contacto" -#: netbox/tenancy/models/contacts.py:49 +#: tenancy/models/contacts.py:49 msgid "contact roles" msgstr "roles de contacto" -#: netbox/tenancy/models/contacts.py:68 +#: tenancy/models/contacts.py:68 msgid "title" msgstr "título" -#: netbox/tenancy/models/contacts.py:73 +#: tenancy/models/contacts.py:73 msgid "phone" msgstr "llamar por teléfono" -#: netbox/tenancy/models/contacts.py:78 +#: tenancy/models/contacts.py:78 msgid "email" msgstr "correo electrónico" -#: netbox/tenancy/models/contacts.py:87 +#: tenancy/models/contacts.py:87 msgid "link" msgstr "eslabón" -#: netbox/tenancy/models/contacts.py:103 +#: tenancy/models/contacts.py:103 msgid "contact" msgstr "contacto" -#: netbox/tenancy/models/contacts.py:104 +#: tenancy/models/contacts.py:104 msgid "contacts" msgstr "contactos" -#: netbox/tenancy/models/contacts.py:153 +#: tenancy/models/contacts.py:153 msgid "contact assignment" msgstr "asignación de contactos" -#: netbox/tenancy/models/contacts.py:154 +#: tenancy/models/contacts.py:154 msgid "contact assignments" msgstr "asignaciones de contactos" -#: netbox/tenancy/models/contacts.py:170 +#: tenancy/models/contacts.py:170 #, python-brace-format msgid "Contacts cannot be assigned to this object type ({type})." msgstr "No se pueden asignar contactos a este tipo de objeto ({type})." -#: netbox/tenancy/models/tenants.py:32 +#: tenancy/models/tenants.py:32 msgid "tenant group" msgstr "grupo de inquilinos" -#: netbox/tenancy/models/tenants.py:33 +#: tenancy/models/tenants.py:33 msgid "tenant groups" msgstr "grupos de inquilinos" -#: netbox/tenancy/models/tenants.py:70 +#: tenancy/models/tenants.py:70 msgid "Tenant name must be unique per group." msgstr "El nombre del inquilino debe ser único por grupo." -#: netbox/tenancy/models/tenants.py:80 +#: tenancy/models/tenants.py:80 msgid "Tenant slug must be unique per group." msgstr "La babosa del inquilino debe ser única por grupo." -#: netbox/tenancy/models/tenants.py:88 +#: tenancy/models/tenants.py:88 msgid "tenant" msgstr "inquilino" -#: netbox/tenancy/models/tenants.py:89 +#: tenancy/models/tenants.py:89 msgid "tenants" msgstr "inquilinos" -#: netbox/tenancy/tables/contacts.py:112 +#: tenancy/tables/contacts.py:112 msgid "Contact Title" msgstr "Título del contacto" -#: netbox/tenancy/tables/contacts.py:116 +#: tenancy/tables/contacts.py:116 msgid "Contact Phone" msgstr "Teléfono de contacto" -#: netbox/tenancy/tables/contacts.py:121 +#: tenancy/tables/contacts.py:121 msgid "Contact Email" msgstr "Correo electrónico de contacto" -#: netbox/tenancy/tables/contacts.py:125 +#: tenancy/tables/contacts.py:125 msgid "Contact Address" msgstr "Dirección de contacto" -#: netbox/tenancy/tables/contacts.py:129 +#: tenancy/tables/contacts.py:129 msgid "Contact Link" msgstr "Enlace de contacto" -#: netbox/tenancy/tables/contacts.py:133 +#: tenancy/tables/contacts.py:133 msgid "Contact Description" msgstr "Descripción del contacto" -#: netbox/users/filtersets.py:33 netbox/users/filtersets.py:73 +#: users/filtersets.py:33 users/filtersets.py:73 msgid "Permission (ID)" msgstr "Permiso (ID)" -#: netbox/users/filtersets.py:38 netbox/users/filtersets.py:78 +#: users/filtersets.py:38 users/filtersets.py:78 msgid "Notification group (ID)" msgstr "Grupo de notificaciones (ID)" -#: netbox/users/forms/bulk_edit.py:26 +#: users/forms/bulk_edit.py:26 msgid "First name" msgstr "Nombre de pila" -#: netbox/users/forms/bulk_edit.py:31 +#: users/forms/bulk_edit.py:31 msgid "Last name" msgstr "Apellido" -#: netbox/users/forms/bulk_edit.py:43 +#: users/forms/bulk_edit.py:43 msgid "Staff status" msgstr "Situación del personal" -#: netbox/users/forms/bulk_edit.py:48 +#: users/forms/bulk_edit.py:48 msgid "Superuser status" msgstr "Estado de superusuario" -#: netbox/users/forms/bulk_import.py:41 +#: users/forms/bulk_import.py:41 msgid "If no key is provided, one will be generated automatically." msgstr "Si no se proporciona ninguna clave, se generará una automáticamente." -#: netbox/users/forms/filtersets.py:51 netbox/users/tables.py:42 +#: users/forms/filtersets.py:51 users/tables.py:42 msgid "Is Staff" msgstr "Es personal" -#: netbox/users/forms/filtersets.py:58 netbox/users/tables.py:45 +#: users/forms/filtersets.py:58 users/tables.py:45 msgid "Is Superuser" msgstr "Es superusuario" -#: netbox/users/forms/filtersets.py:91 netbox/users/tables.py:86 +#: users/forms/filtersets.py:91 users/tables.py:86 msgid "Can View" msgstr "Puede ver" -#: netbox/users/forms/filtersets.py:98 netbox/users/tables.py:89 +#: users/forms/filtersets.py:98 users/tables.py:89 msgid "Can Add" msgstr "Puede agregar" -#: netbox/users/forms/filtersets.py:105 netbox/users/tables.py:92 +#: users/forms/filtersets.py:105 users/tables.py:92 msgid "Can Change" msgstr "Puede cambiar" -#: netbox/users/forms/filtersets.py:112 netbox/users/tables.py:95 +#: users/forms/filtersets.py:112 users/tables.py:95 msgid "Can Delete" msgstr "Puede eliminar" -#: netbox/users/forms/model_forms.py:62 +#: users/forms/model_forms.py:62 msgid "User Interface" msgstr "Interfaz de usuario" -#: netbox/users/forms/model_forms.py:114 +#: users/forms/model_forms.py:114 msgid "" "Keys must be at least 40 characters in length. Be sure to record " "your key prior to submitting this form, as it may no longer be " @@ -14764,7 +14022,7 @@ msgstr "" "su clave antes de enviar este formulario, ya que es posible que ya " "no se pueda acceder a él una vez que se haya creado el token." -#: netbox/users/forms/model_forms.py:126 +#: users/forms/model_forms.py:126 msgid "" "Allowed IPv4/IPv6 networks from where the token can be used. Leave blank for" " no restrictions. Example: " @@ -14774,33 +14032,33 @@ msgstr "" "blanco para que no haya restricciones. Ejemplo: 10.1.1.0/24, " "192.168.10.16/32, 2001:db 8:1: :/64" -#: netbox/users/forms/model_forms.py:175 +#: users/forms/model_forms.py:175 msgid "Confirm password" msgstr "Confirme la contraseña" -#: netbox/users/forms/model_forms.py:178 +#: users/forms/model_forms.py:178 msgid "Enter the same password as before, for verification." msgstr "Introduce la misma contraseña que antes para verificarla." -#: netbox/users/forms/model_forms.py:227 +#: users/forms/model_forms.py:227 msgid "Passwords do not match! Please check your input and try again." msgstr "" "¡Las contraseñas no coinciden! Compruebe los datos introducidos e inténtelo " "de nuevo." -#: netbox/users/forms/model_forms.py:294 +#: users/forms/model_forms.py:294 msgid "Additional actions" msgstr "Acciones adicionales" -#: netbox/users/forms/model_forms.py:297 +#: users/forms/model_forms.py:297 msgid "Actions granted in addition to those listed above" msgstr "Acciones concedidas además de las enumeradas anteriormente" -#: netbox/users/forms/model_forms.py:313 +#: users/forms/model_forms.py:313 msgid "Objects" msgstr "Objetos" -#: netbox/users/forms/model_forms.py:325 +#: users/forms/model_forms.py:325 msgid "" "JSON expression of a queryset filter that will return only permitted " "objects. Leave null to match all objects of this type. A list of multiple " @@ -14811,80 +14069,80 @@ msgstr "" "este tipo. Una lista de varios objetos dará como resultado una operación OR " "lógica." -#: netbox/users/forms/model_forms.py:364 +#: users/forms/model_forms.py:364 msgid "At least one action must be selected." msgstr "Debe seleccionarse al menos una acción." -#: netbox/users/forms/model_forms.py:382 +#: users/forms/model_forms.py:382 #, python-brace-format msgid "Invalid filter for {model}: {error}" msgstr "Filtro no válido para {model}: {error}" -#: netbox/users/models/permissions.py:39 +#: users/models/permissions.py:39 msgid "The list of actions granted by this permission" msgstr "La lista de acciones concedidas por este permiso" -#: netbox/users/models/permissions.py:44 +#: users/models/permissions.py:44 msgid "constraints" msgstr "restricciones" -#: netbox/users/models/permissions.py:45 +#: users/models/permissions.py:45 msgid "" "Queryset filter matching the applicable objects of the selected type(s)" msgstr "" "Filtro Queryset que coincide con los objetos aplicables de los tipos " "seleccionados" -#: netbox/users/models/permissions.py:52 +#: users/models/permissions.py:52 msgid "permission" msgstr "permiso" -#: netbox/users/models/permissions.py:53 netbox/users/models/users.py:47 +#: users/models/permissions.py:53 users/models/users.py:47 msgid "permissions" msgstr "permisos" -#: netbox/users/models/preferences.py:29 netbox/users/models/preferences.py:30 +#: users/models/preferences.py:29 users/models/preferences.py:30 msgid "user preferences" msgstr "preferencias de usuario" -#: netbox/users/models/preferences.py:97 +#: users/models/preferences.py:97 #, python-brace-format msgid "Key '{path}' is a leaf node; cannot assign new keys" msgstr "Clave '{path}'es un nodo de hoja; no se pueden asignar claves nuevas" -#: netbox/users/models/preferences.py:109 +#: users/models/preferences.py:109 #, python-brace-format msgid "Key '{path}' is a dictionary; cannot assign a non-dictionary value" msgstr "" "Clave '{path}'es un diccionario; no puede asignar un valor que no sea de " "diccionario" -#: netbox/users/models/tokens.py:36 +#: users/models/tokens.py:36 msgid "expires" msgstr "caduca" -#: netbox/users/models/tokens.py:41 +#: users/models/tokens.py:41 msgid "last used" msgstr "utilizado por última vez" -#: netbox/users/models/tokens.py:46 +#: users/models/tokens.py:46 msgid "key" msgstr "clave" -#: netbox/users/models/tokens.py:52 +#: users/models/tokens.py:52 msgid "write enabled" msgstr "escritura habilitada" -#: netbox/users/models/tokens.py:54 +#: users/models/tokens.py:54 msgid "Permit create/update/delete operations using this key" msgstr "" "Permitir operaciones de creación/actualización/eliminación con esta clave" -#: netbox/users/models/tokens.py:65 +#: users/models/tokens.py:65 msgid "allowed IPs" msgstr "IP permitidas" -#: netbox/users/models/tokens.py:67 +#: users/models/tokens.py:67 msgid "" "Allowed IPv4/IPv6 networks from where the token can be used. Leave blank for" " no restrictions. Ex: \"10.1.1.0/24, 192.168.10.16/32, 2001:DB8:1::/64\"" @@ -14893,43 +14151,43 @@ msgstr "" "blanco para que no haya restricciones. Por ejemplo: «10.1.1.0/24, " "192.168.10.16/32, 2001:DB 8:1: :/64\"" -#: netbox/users/models/tokens.py:75 +#: users/models/tokens.py:75 msgid "token" msgstr "simbólico" -#: netbox/users/models/tokens.py:76 +#: users/models/tokens.py:76 msgid "tokens" msgstr "fichas" -#: netbox/users/models/users.py:57 netbox/vpn/models/crypto.py:42 +#: users/models/users.py:57 vpn/models/crypto.py:42 msgid "group" msgstr "grupo" -#: netbox/users/models/users.py:92 +#: users/models/users.py:92 msgid "user" msgstr "usuario" -#: netbox/users/models/users.py:104 +#: users/models/users.py:104 msgid "A user with this username already exists." msgstr "Ya existe un usuario con este nombre de usuario." -#: netbox/users/tables.py:98 +#: users/tables.py:98 msgid "Custom Actions" msgstr "Acciones personalizadas" -#: netbox/utilities/api.py:153 +#: utilities/api.py:153 #, python-brace-format msgid "Related object not found using the provided attributes: {params}" msgstr "" "No se encontró el objeto relacionado con los atributos proporcionados: " "{params}" -#: netbox/utilities/api.py:156 +#: utilities/api.py:156 #, python-brace-format msgid "Multiple objects match the provided attributes: {params}" msgstr "Varios objetos coinciden con los atributos proporcionados: {params}" -#: netbox/utilities/api.py:168 +#: utilities/api.py:168 #, python-brace-format msgid "" "Related objects must be referenced by numeric ID or by dictionary of " @@ -14939,43 +14197,43 @@ msgstr "" "identificador numérico o un diccionario de atributos. Recibió un valor no " "reconocido: {value}" -#: netbox/utilities/api.py:177 +#: utilities/api.py:177 #, python-brace-format msgid "Related object not found using the provided numeric ID: {id}" msgstr "" "No se encontró el objeto relacionado con el identificador numérico " "proporcionado: {id}" -#: netbox/utilities/choices.py:19 +#: utilities/choices.py:19 #, python-brace-format msgid "{name} has a key defined but CHOICES is not a list" msgstr "{name} tiene una clave definida, pero CHOICES no es una lista" -#: netbox/utilities/conversion.py:19 +#: utilities/conversion.py:19 msgid "Weight must be a positive number" msgstr "El peso debe ser un número positivo" -#: netbox/utilities/conversion.py:21 +#: utilities/conversion.py:21 #, python-brace-format msgid "Invalid value '{weight}' for weight (must be a number)" msgstr "Valor no válido '{weight}'para el peso (debe ser un número)" -#: netbox/utilities/conversion.py:32 netbox/utilities/conversion.py:62 +#: utilities/conversion.py:32 utilities/conversion.py:62 #, python-brace-format msgid "Unknown unit {unit}. Must be one of the following: {valid_units}" msgstr "" "Unidad desconocida {unit}. Debe ser uno de los siguientes: {valid_units}" -#: netbox/utilities/conversion.py:45 +#: utilities/conversion.py:45 msgid "Length must be a positive number" msgstr "La longitud debe ser un número positivo" -#: netbox/utilities/conversion.py:47 +#: utilities/conversion.py:47 #, python-brace-format msgid "Invalid value '{length}' for length (must be a number)" msgstr "Valor no válido '{length}'para la longitud (debe ser un número)" -#: netbox/utilities/error_handlers.py:31 +#: utilities/error_handlers.py:31 #, python-brace-format msgid "" "Unable to delete {objects}. {count} dependent objects were " @@ -14984,15 +14242,15 @@ msgstr "" "No se puede eliminar {objects}. {count} se encontraron " "objetos dependientes: " -#: netbox/utilities/error_handlers.py:33 +#: utilities/error_handlers.py:33 msgid "More than 50" msgstr "Más de 50" -#: netbox/utilities/fields.py:30 +#: utilities/fields.py:30 msgid "RGB color in hexadecimal. Example: " msgstr "Color RGB en hexadecimal. Ejemplo: " -#: netbox/utilities/fields.py:159 +#: utilities/fields.py:159 #, python-format msgid "" "%s(%r) is invalid. to_model parameter to CounterCacheField must be a string " @@ -15001,7 +14259,7 @@ msgstr "" "%s(%r) no es válido. El parámetro to_model de CounterCacheField debe ser una" " cadena con el formato 'app.model'" -#: netbox/utilities/fields.py:169 +#: utilities/fields.py:169 #, python-format msgid "" "%s(%r) is invalid. to_field parameter to CounterCacheField must be a string " @@ -15010,39 +14268,39 @@ msgstr "" "%s(%r) no es válido. El parámetro to_field de CounterCacheField debe ser una" " cadena con el formato 'campo'" -#: netbox/utilities/forms/bulk_import.py:23 +#: utilities/forms/bulk_import.py:23 msgid "Enter object data in CSV, JSON or YAML format." msgstr "Introduzca los datos del objeto en formato CSV, JSON o YAML." -#: netbox/utilities/forms/bulk_import.py:36 +#: utilities/forms/bulk_import.py:36 msgid "CSV delimiter" msgstr "Delimitador CSV" -#: netbox/utilities/forms/bulk_import.py:37 +#: utilities/forms/bulk_import.py:37 msgid "The character which delimits CSV fields. Applies only to CSV format." msgstr "" "El carácter que delimita los campos CSV. Se aplica solo al formato CSV." -#: netbox/utilities/forms/bulk_import.py:51 +#: utilities/forms/bulk_import.py:51 msgid "Form data must be empty when uploading/selecting a file." msgstr "" "Los datos del formulario deben estar vacíos al cargar o seleccionar un " "archivo." -#: netbox/utilities/forms/bulk_import.py:80 +#: utilities/forms/bulk_import.py:80 #, python-brace-format msgid "Unknown data format: {format}" msgstr "Formato de datos desconocido: {format}" -#: netbox/utilities/forms/bulk_import.py:100 +#: utilities/forms/bulk_import.py:100 msgid "Unable to detect data format. Please specify." msgstr "No se pudo detectar el formato de los datos. Especifique." -#: netbox/utilities/forms/bulk_import.py:123 +#: utilities/forms/bulk_import.py:123 msgid "Invalid CSV delimiter" msgstr "Delimitador CSV no válido" -#: netbox/utilities/forms/bulk_import.py:167 +#: utilities/forms/bulk_import.py:167 msgid "" "Invalid YAML data. Data must be in the form of multiple documents, or a " "single document comprising a list of dictionaries." @@ -15050,7 +14308,7 @@ msgstr "" "Datos YAML no válidos. Los datos deben estar en forma de varios documentos o" " de un solo documento que contenga una lista de diccionarios." -#: netbox/utilities/forms/fields/array.py:20 +#: utilities/forms/fields/array.py:20 #, python-brace-format msgid "" "Invalid list ({value}). Must be numeric and ranges must be in ascending " @@ -15059,7 +14317,7 @@ msgstr "" "Lista no válida ({value}). Debe ser numérico y los rangos deben estar en " "orden ascendente." -#: netbox/utilities/forms/fields/array.py:40 +#: utilities/forms/fields/array.py:40 msgid "" "Specify one or more numeric ranges separated by commas. Example: " "1-5,20-30" @@ -15067,7 +14325,7 @@ msgstr "" "Especifique uno o más rangos numéricos separados por comas. Ejemplo: " "1-5, 20-30" -#: netbox/utilities/forms/fields/array.py:47 +#: utilities/forms/fields/array.py:47 #, python-brace-format msgid "" "Invalid ranges ({value}). Must be a range of integers in ascending order." @@ -15075,18 +14333,17 @@ msgstr "" "Intervalos no válidos ({value}). Debe ser un rango de números enteros en " "orden ascendente." -#: netbox/utilities/forms/fields/csv.py:44 +#: utilities/forms/fields/csv.py:44 #, python-brace-format msgid "Invalid value for a multiple choice field: {value}" msgstr "Valor no válido para un campo de opción múltiple: {value}" -#: netbox/utilities/forms/fields/csv.py:57 -#: netbox/utilities/forms/fields/csv.py:78 +#: utilities/forms/fields/csv.py:57 utilities/forms/fields/csv.py:78 #, python-format msgid "Object not found: %(value)s" msgstr "Objeto no encontrado: %(value)s" -#: netbox/utilities/forms/fields/csv.py:65 +#: utilities/forms/fields/csv.py:65 #, python-brace-format msgid "" "\"{value}\" is not a unique value for this field; multiple objects were " @@ -15095,20 +14352,20 @@ msgstr "" "«{value}\"no es un valor único para este campo; se han encontrado varios " "objetos" -#: netbox/utilities/forms/fields/csv.py:69 +#: utilities/forms/fields/csv.py:69 #, python-brace-format msgid "\"{field_name}\" is an invalid accessor field name." msgstr "«{field_name}\"es un nombre de campo de acceso no válido." -#: netbox/utilities/forms/fields/csv.py:101 +#: utilities/forms/fields/csv.py:101 msgid "Object type must be specified as \".\"" msgstr "El tipo de objeto debe especificarse como».»" -#: netbox/utilities/forms/fields/csv.py:105 +#: utilities/forms/fields/csv.py:105 msgid "Invalid object type" msgstr "Tipo de objeto no válido" -#: netbox/utilities/forms/fields/expandable.py:25 +#: utilities/forms/fields/expandable.py:25 msgid "" "Alphanumeric ranges are supported for bulk creation. Mixed cases and types " "within a single range are not supported (example: " @@ -15118,7 +14375,7 @@ msgstr "" "admiten casos y tipos mixtos dentro de un único rango (por ejemplo: " "[Edad, sexo] -0/0/ [0-9])." -#: netbox/utilities/forms/fields/expandable.py:46 +#: utilities/forms/fields/expandable.py:46 msgid "" "Specify a numeric range to create multiple IPs.
Example: " "192.0.2.[1,5,100-254]/24" @@ -15126,7 +14383,7 @@ msgstr "" "Especifique un rango numérico para crear varias direcciones IP.
Ejemplo: 192.0.2. [1,5,100-254] /24" -#: netbox/utilities/forms/fields/fields.py:31 +#: utilities/forms/fields/fields.py:31 #, python-brace-format msgid "" " Markdown se admite la sintaxis" -#: netbox/utilities/forms/fields/fields.py:48 +#: utilities/forms/fields/fields.py:48 msgid "URL-friendly unique shorthand" msgstr "Abreviatura única compatible con URL" -#: netbox/utilities/forms/fields/fields.py:101 +#: utilities/forms/fields/fields.py:101 msgid "Enter context data in JSON format." msgstr "" "Introduzca los datos de contexto en JSON " "formato." -#: netbox/utilities/forms/fields/fields.py:124 +#: utilities/forms/fields/fields.py:124 msgid "MAC address must be in EUI-48 format" msgstr "La dirección MAC debe estar en formato EUI-48" -#: netbox/utilities/forms/forms.py:52 +#: utilities/forms/forms.py:52 msgid "Use regular expressions" msgstr "Usa expresiones regulares" -#: netbox/utilities/forms/forms.py:75 +#: utilities/forms/forms.py:75 msgid "" "Numeric ID of an existing object to update (if not creating a new object)" msgstr "" "ID numérico de un objeto existente que se va a actualizar (si no se está " "creando un objeto nuevo)" -#: netbox/utilities/forms/forms.py:92 +#: utilities/forms/forms.py:92 #, python-brace-format msgid "Unrecognized header: {name}" msgstr "Encabezado no reconocido: {name}" -#: netbox/utilities/forms/forms.py:118 +#: utilities/forms/forms.py:118 msgid "Available Columns" msgstr "Columnas disponibles" -#: netbox/utilities/forms/forms.py:126 +#: utilities/forms/forms.py:126 msgid "Selected Columns" msgstr "Columnas seleccionadas" -#: netbox/utilities/forms/mixins.py:44 +#: utilities/forms/mixins.py:44 msgid "" "This object has been modified since the form was rendered. Please consult " "the object's change log for details." @@ -15181,13 +14438,13 @@ msgstr "" "Este objeto se ha modificado desde que se renderizó el formulario. Consulte " "el registro de cambios del objeto para obtener más información." -#: netbox/utilities/forms/utils.py:42 netbox/utilities/forms/utils.py:68 -#: netbox/utilities/forms/utils.py:85 netbox/utilities/forms/utils.py:87 +#: utilities/forms/utils.py:42 utilities/forms/utils.py:68 +#: utilities/forms/utils.py:85 utilities/forms/utils.py:87 #, python-brace-format msgid "Range \"{value}\" is invalid." msgstr "Gama»{value}«no es válido." -#: netbox/utilities/forms/utils.py:74 +#: utilities/forms/utils.py:74 #, python-brace-format msgid "" "Invalid range: Ending value ({end}) must be greater than beginning value " @@ -15196,72 +14453,72 @@ msgstr "" "Intervalo no válido: valor final ({end}) debe ser mayor que el valor inicial" " ({begin})." -#: netbox/utilities/forms/utils.py:232 +#: utilities/forms/utils.py:232 #, python-brace-format msgid "Duplicate or conflicting column header for \"{field}\"" msgstr "Cabecera de columna duplicada o conflictiva para»{field}»" -#: netbox/utilities/forms/utils.py:238 +#: utilities/forms/utils.py:238 #, python-brace-format msgid "Duplicate or conflicting column header for \"{header}\"" msgstr "Cabecera de columna duplicada o conflictiva para»{header}»" -#: netbox/utilities/forms/utils.py:247 +#: utilities/forms/utils.py:247 #, python-brace-format msgid "Row {row}: Expected {count_expected} columns but found {count_found}" msgstr "" "Fila {row}: Esperado {count_expected} columnas pero encontradas " "{count_found}" -#: netbox/utilities/forms/utils.py:270 +#: utilities/forms/utils.py:270 #, python-brace-format msgid "Unexpected column header \"{field}\" found." msgstr "Encabezado de columna inesperado»{field}«encontrado." -#: netbox/utilities/forms/utils.py:272 +#: utilities/forms/utils.py:272 #, python-brace-format msgid "Column \"{field}\" is not a related object; cannot use dots" msgstr "Columna»{field}\"no es un objeto relacionado; no puede usar puntos" -#: netbox/utilities/forms/utils.py:276 +#: utilities/forms/utils.py:276 #, python-brace-format msgid "Invalid related object attribute for column \"{field}\": {to_field}" msgstr "" "Atributo de objeto relacionado no válido para la columna»{field}«: " "{to_field}" -#: netbox/utilities/forms/utils.py:284 +#: utilities/forms/utils.py:284 #, python-brace-format msgid "Required column header \"{header}\" not found." msgstr "Encabezado de columna obligatorio»{header}«no se encontró." -#: netbox/utilities/forms/widgets/apiselect.py:124 +#: utilities/forms/widgets/apiselect.py:124 #, python-brace-format msgid "Missing required value for dynamic query param: '{dynamic_params}'" msgstr "" "Falta el valor requerido para el parámetro de consulta dinámica: " "'{dynamic_params}'" -#: netbox/utilities/forms/widgets/apiselect.py:141 +#: utilities/forms/widgets/apiselect.py:141 #, python-brace-format msgid "Missing required value for static query param: '{static_params}'" msgstr "" "Falta el valor requerido para el parámetro de consulta estática: " "'{static_params}'" -#: netbox/utilities/password_validation.py:13 +#: utilities/password_validation.py:13 msgid "Password must have at least one numeral." msgstr "La contraseña debe tener al menos un número." -#: netbox/utilities/password_validation.py:18 +#: utilities/password_validation.py:18 msgid "Password must have at least one uppercase letter." msgstr "La contraseña debe tener al menos una letra mayúscula." -#: netbox/utilities/password_validation.py:23 +#: utilities/password_validation.py:23 msgid "Password must have at least one lowercase letter." msgstr "La contraseña debe tener al menos una letra minúscula." -#: netbox/utilities/password_validation.py:27 +#: utilities/password_validation.py:27 msgid "" "Your password must contain at least one numeral, one uppercase letter and " "one lowercase letter." @@ -15269,7 +14526,7 @@ msgstr "" "La contraseña debe contener al menos un número, una letra mayúscula y una " "minúscula." -#: netbox/utilities/permissions.py:42 +#: utilities/permissions.py:42 #, python-brace-format msgid "" "Invalid permission name: {name}. Must be in the format " @@ -15278,126 +14535,126 @@ msgstr "" "Nombre de permiso no válido: {name}. Debe estar en el formato " "._" -#: netbox/utilities/permissions.py:60 +#: utilities/permissions.py:60 #, python-brace-format msgid "Unknown app_label/model_name for {name}" msgstr "App_label/model_name desconocido para {name}" -#: netbox/utilities/request.py:76 +#: utilities/request.py:76 #, python-brace-format msgid "Invalid IP address set for {header}: {ip}" msgstr "Dirección IP no válida establecida para {header}: {ip}" -#: netbox/utilities/tables.py:47 +#: utilities/tables.py:47 #, python-brace-format msgid "A column named {name} is already defined for table {table_name}" msgstr "" "Una columna denominada {name} ya está definido para la tabla {table_name}" -#: netbox/utilities/templates/builtins/customfield_value.html:30 +#: utilities/templates/builtins/customfield_value.html:30 msgid "Not defined" msgstr "No definido" -#: netbox/utilities/templates/buttons/bookmark.html:9 +#: utilities/templates/buttons/bookmark.html:9 msgid "Unbookmark" msgstr "Desmarcar" -#: netbox/utilities/templates/buttons/bookmark.html:13 +#: utilities/templates/buttons/bookmark.html:13 msgid "Bookmark" msgstr "Marcador" -#: netbox/utilities/templates/buttons/clone.html:4 +#: utilities/templates/buttons/clone.html:4 msgid "Clone" msgstr "Clon" -#: netbox/utilities/templates/buttons/export.html:7 +#: utilities/templates/buttons/export.html:7 msgid "Current View" msgstr "Vista actual" -#: netbox/utilities/templates/buttons/export.html:8 +#: utilities/templates/buttons/export.html:8 msgid "All Data" msgstr "Todos los datos" -#: netbox/utilities/templates/buttons/export.html:28 +#: utilities/templates/buttons/export.html:28 msgid "Add export template" msgstr "Añadir plantilla de exportación" -#: netbox/utilities/templates/buttons/import.html:4 +#: utilities/templates/buttons/import.html:4 msgid "Import" msgstr "Importar" -#: netbox/utilities/templates/buttons/subscribe.html:10 +#: utilities/templates/buttons/subscribe.html:10 msgid "Unsubscribe" msgstr "Cancelar suscripción" -#: netbox/utilities/templates/buttons/subscribe.html:14 +#: utilities/templates/buttons/subscribe.html:14 msgid "Subscribe" msgstr "Suscríbase" -#: netbox/utilities/templates/form_helpers/render_field.html:41 +#: utilities/templates/form_helpers/render_field.html:41 msgid "Copy to clipboard" msgstr "Copiar al portapapeles" -#: netbox/utilities/templates/form_helpers/render_field.html:57 +#: 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 +#: utilities/templates/form_helpers/render_field.html:70 msgid "Set Null" msgstr "Establecer nulo" -#: netbox/utilities/templates/helpers/applied_filters.html:11 +#: utilities/templates/helpers/applied_filters.html:11 msgid "Clear all" msgstr "Borrar todo" -#: netbox/utilities/templates/helpers/table_config_form.html:8 +#: utilities/templates/helpers/table_config_form.html:8 msgid "Table Configuration" msgstr "Configuración de tablas" -#: netbox/utilities/templates/helpers/table_config_form.html:31 +#: utilities/templates/helpers/table_config_form.html:31 msgid "Move Up" msgstr "Muévete hacia arriba" -#: netbox/utilities/templates/helpers/table_config_form.html:34 +#: utilities/templates/helpers/table_config_form.html:34 msgid "Move Down" msgstr "Muévete hacia abajo" -#: netbox/utilities/templates/navigation/menu.html:14 +#: utilities/templates/navigation/menu.html:14 msgid "Search…" msgstr "Buscar..." -#: netbox/utilities/templates/navigation/menu.html:14 +#: utilities/templates/navigation/menu.html:14 msgid "Search NetBox" msgstr "Buscar en NetBox" -#: netbox/utilities/templates/widgets/apiselect.html:7 +#: utilities/templates/widgets/apiselect.html:7 msgid "Open selector" msgstr "Selector abierto" -#: netbox/utilities/templates/widgets/markdown_input.html:6 +#: utilities/templates/widgets/markdown_input.html:6 msgid "Write" msgstr "Escribe" -#: netbox/utilities/testing/views.py:632 +#: utilities/testing/views.py:632 msgid "The test must define csv_update_data." msgstr "La prueba debe definir csv_update_data." -#: netbox/utilities/validators.py:65 +#: utilities/validators.py:65 #, python-brace-format msgid "{value} is not a valid regular expression." msgstr "{value} no es una expresión regular válida." -#: netbox/utilities/views.py:57 +#: utilities/views.py:57 #, python-brace-format msgid "{self.__class__.__name__} must implement get_required_permission()" msgstr "{self.__class__.__name__} debe implementar get_required_permission ()" -#: netbox/utilities/views.py:93 +#: utilities/views.py:93 #, python-brace-format msgid "{class_name} must implement get_required_permission()" msgstr "{class_name} debe implementar get_required_permission ()" -#: netbox/utilities/views.py:117 +#: utilities/views.py:117 #, python-brace-format msgid "" "{class_name} has no queryset defined. ObjectPermissionRequiredMixin may only" @@ -15407,63 +14664,61 @@ msgstr "" "ObjectPermissionRequiredMixin solo se puede usar en vistas que definan un " "conjunto de consultas base" -#: netbox/virtualization/filtersets.py:79 +#: virtualization/filtersets.py:79 msgid "Parent group (ID)" msgstr "Grupo de padres (ID)" -#: netbox/virtualization/filtersets.py:85 +#: virtualization/filtersets.py:85 msgid "Parent group (slug)" msgstr "Grupo de padres (babosas)" -#: netbox/virtualization/filtersets.py:89 -#: netbox/virtualization/filtersets.py:141 +#: virtualization/filtersets.py:89 virtualization/filtersets.py:141 msgid "Cluster type (ID)" msgstr "Tipo de clúster (ID)" -#: netbox/virtualization/filtersets.py:151 -#: netbox/virtualization/filtersets.py:271 +#: virtualization/filtersets.py:151 virtualization/filtersets.py:271 msgid "Cluster (ID)" msgstr "Clúster (ID)" -#: netbox/virtualization/forms/bulk_edit.py:166 -#: netbox/virtualization/models/virtualmachines.py:115 +#: virtualization/forms/bulk_edit.py:166 +#: virtualization/models/virtualmachines.py:115 msgid "vCPUs" msgstr "CPU virtuales" -#: netbox/virtualization/forms/bulk_edit.py:170 +#: virtualization/forms/bulk_edit.py:170 msgid "Memory (MB)" msgstr "Memoria (MB)" -#: netbox/virtualization/forms/bulk_edit.py:174 +#: virtualization/forms/bulk_edit.py:174 msgid "Disk (GB)" msgstr "Disco (GB)" -#: netbox/virtualization/forms/bulk_edit.py:334 -#: netbox/virtualization/forms/filtersets.py:251 +#: virtualization/forms/bulk_edit.py:334 +#: virtualization/forms/filtersets.py:251 msgid "Size (GB)" msgstr "Tamaño (GB)" -#: netbox/virtualization/forms/bulk_import.py:44 +#: virtualization/forms/bulk_import.py:44 msgid "Type of cluster" msgstr "Tipo de clúster" -#: netbox/virtualization/forms/bulk_import.py:51 +#: virtualization/forms/bulk_import.py:51 msgid "Assigned cluster group" msgstr "Grupo de clústeres asignado" -#: netbox/virtualization/forms/bulk_import.py:96 +#: virtualization/forms/bulk_import.py:96 msgid "Assigned cluster" msgstr "Clúster asignado" -#: netbox/virtualization/forms/bulk_import.py:103 +#: virtualization/forms/bulk_import.py:103 msgid "Assigned device within cluster" msgstr "Dispositivo asignado dentro del clúster" -#: netbox/virtualization/forms/filtersets.py:183 +#: virtualization/forms/filtersets.py:183 msgid "Serial number" msgstr "Número de serie" -#: netbox/virtualization/forms/model_forms.py:153 +#: virtualization/forms/model_forms.py:153 #, python-brace-format msgid "" "{device} belongs to a different site ({device_site}) than the cluster " @@ -15472,51 +14727,51 @@ msgstr "" "{device} pertenece a un sitio diferente ({device_site}) que el clúster " "({cluster_site})" -#: netbox/virtualization/forms/model_forms.py:192 +#: virtualization/forms/model_forms.py:192 msgid "Optionally pin this VM to a specific host device within the cluster" msgstr "" "Si lo desea, puede anclar esta máquina virtual a un dispositivo host " "específico dentro del clúster" -#: netbox/virtualization/forms/model_forms.py:221 +#: virtualization/forms/model_forms.py:221 msgid "Site/Cluster" msgstr "Sitio/Clúster" -#: netbox/virtualization/forms/model_forms.py:244 +#: virtualization/forms/model_forms.py:244 msgid "Disk size is managed via the attachment of virtual disks." msgstr "" "El tamaño del disco se administra mediante la conexión de discos virtuales." -#: netbox/virtualization/forms/model_forms.py:372 -#: netbox/virtualization/tables/virtualmachines.py:111 +#: virtualization/forms/model_forms.py:372 +#: virtualization/tables/virtualmachines.py:111 msgid "Disk" msgstr "Disco" -#: netbox/virtualization/models/clusters.py:25 +#: virtualization/models/clusters.py:25 msgid "cluster type" msgstr "tipo de clúster" -#: netbox/virtualization/models/clusters.py:26 +#: virtualization/models/clusters.py:26 msgid "cluster types" msgstr "tipos de clústeres" -#: netbox/virtualization/models/clusters.py:45 +#: virtualization/models/clusters.py:45 msgid "cluster group" msgstr "grupo de clústeres" -#: netbox/virtualization/models/clusters.py:46 +#: virtualization/models/clusters.py:46 msgid "cluster groups" msgstr "grupos de clústeres" -#: netbox/virtualization/models/clusters.py:121 +#: virtualization/models/clusters.py:121 msgid "cluster" msgstr "racimo" -#: netbox/virtualization/models/clusters.py:122 +#: virtualization/models/clusters.py:122 msgid "clusters" msgstr "racimos" -#: netbox/virtualization/models/clusters.py:141 +#: virtualization/models/clusters.py:141 #, python-brace-format msgid "" "{count} devices are assigned as hosts for this cluster but are not in site " @@ -15525,42 +14780,42 @@ msgstr "" "{count} los dispositivos se asignan como hosts para este clúster, pero no " "están en el sitio {site}" -#: netbox/virtualization/models/virtualmachines.py:123 +#: virtualization/models/virtualmachines.py:123 msgid "memory (MB)" msgstr "memoria (MB)" -#: netbox/virtualization/models/virtualmachines.py:128 +#: virtualization/models/virtualmachines.py:128 msgid "disk (MB)" msgstr "disco (MB)" -#: netbox/virtualization/models/virtualmachines.py:166 +#: virtualization/models/virtualmachines.py:166 msgid "Virtual machine name must be unique per cluster." msgstr "El nombre de la máquina virtual debe ser único por clúster." -#: netbox/virtualization/models/virtualmachines.py:169 +#: virtualization/models/virtualmachines.py:169 msgid "virtual machine" msgstr "máquina virtual" -#: netbox/virtualization/models/virtualmachines.py:170 +#: virtualization/models/virtualmachines.py:170 msgid "virtual machines" msgstr "máquinas virtuales" -#: netbox/virtualization/models/virtualmachines.py:184 +#: virtualization/models/virtualmachines.py:184 msgid "A virtual machine must be assigned to a site and/or cluster." msgstr "Se debe asignar una máquina virtual a un sitio o clúster." -#: netbox/virtualization/models/virtualmachines.py:191 +#: virtualization/models/virtualmachines.py:191 #, python-brace-format msgid "" "The selected cluster ({cluster}) is not assigned to this site ({site})." msgstr "" "El clúster seleccionado ({cluster}) no está asignado a este sitio ({site})." -#: netbox/virtualization/models/virtualmachines.py:198 +#: virtualization/models/virtualmachines.py:198 msgid "Must specify a cluster when assigning a host device." msgstr "Debe especificar un clúster al asignar un dispositivo host." -#: netbox/virtualization/models/virtualmachines.py:203 +#: virtualization/models/virtualmachines.py:203 #, python-brace-format msgid "" "The selected device ({device}) is not assigned to this cluster ({cluster})." @@ -15568,7 +14823,7 @@ msgstr "" "El dispositivo seleccionado ({device}) no está asignado a este clúster " "({cluster})." -#: netbox/virtualization/models/virtualmachines.py:215 +#: virtualization/models/virtualmachines.py:215 #, python-brace-format msgid "" "The specified disk size ({size}) must match the aggregate size of assigned " @@ -15577,19 +14832,19 @@ msgstr "" "El tamaño de disco especificado ({size}) debe coincidir con el tamaño " "agregado de los discos virtuales asignados ({total_size})." -#: netbox/virtualization/models/virtualmachines.py:229 +#: virtualization/models/virtualmachines.py:229 #, python-brace-format msgid "Must be an IPv{family} address. ({ip} is an IPv{version} address.)" msgstr "" "Debe ser un IPv{family} dirección. ({ip} es un IPv{version} dirección.)" -#: netbox/virtualization/models/virtualmachines.py:238 +#: virtualization/models/virtualmachines.py:238 #, python-brace-format msgid "The specified IP address ({ip}) is not assigned to this VM." msgstr "" "La dirección IP especificada ({ip}) no está asignado a esta máquina virtual." -#: netbox/virtualization/models/virtualmachines.py:396 +#: virtualization/models/virtualmachines.py:396 #, python-brace-format msgid "" "The selected parent interface ({parent}) belongs to a different virtual " @@ -15598,7 +14853,7 @@ msgstr "" "La interfaz principal seleccionada ({parent}) pertenece a una máquina " "virtual diferente ({virtual_machine})." -#: netbox/virtualization/models/virtualmachines.py:411 +#: virtualization/models/virtualmachines.py:411 #, python-brace-format msgid "" "The selected bridge interface ({bridge}) belongs to a different virtual " @@ -15607,7 +14862,7 @@ msgstr "" "La interfaz de puente seleccionada ({bridge}) pertenece a una máquina " "virtual diferente ({virtual_machine})." -#: netbox/virtualization/models/virtualmachines.py:422 +#: virtualization/models/virtualmachines.py:422 #, python-brace-format msgid "" "The untagged VLAN ({untagged_vlan}) must belong to the same site as the " @@ -15616,401 +14871,394 @@ msgstr "" "La VLAN sin etiquetar ({untagged_vlan}) debe pertenecer al mismo sitio que " "la máquina virtual principal de la interfaz o debe ser global." -#: netbox/virtualization/models/virtualmachines.py:434 +#: virtualization/models/virtualmachines.py:434 msgid "size (MB)" msgstr "tamaño (MB)" -#: netbox/virtualization/models/virtualmachines.py:438 +#: virtualization/models/virtualmachines.py:438 msgid "virtual disk" msgstr "disco virtual" -#: netbox/virtualization/models/virtualmachines.py:439 +#: virtualization/models/virtualmachines.py:439 msgid "virtual disks" msgstr "discos virtuales" -#: netbox/virtualization/views.py:275 +#: virtualization/views.py:275 #, python-brace-format msgid "Added {count} devices to cluster {cluster}" msgstr "Añadido {count} dispositivos para agrupar {cluster}" -#: netbox/virtualization/views.py:310 +#: virtualization/views.py:310 #, python-brace-format msgid "Removed {count} devices from cluster {cluster}" msgstr "Eliminado {count} dispositivos del clúster {cluster}" -#: netbox/vpn/choices.py:31 +#: vpn/choices.py:31 msgid "IPsec - Transport" msgstr "IPSec - Transporte" -#: netbox/vpn/choices.py:32 +#: vpn/choices.py:32 msgid "IPsec - Tunnel" msgstr "IPSec - Túnel" -#: netbox/vpn/choices.py:33 +#: vpn/choices.py:33 msgid "IP-in-IP" msgstr "IP en IP" -#: netbox/vpn/choices.py:34 +#: vpn/choices.py:34 msgid "GRE" msgstr "GRIS" -#: netbox/vpn/choices.py:56 +#: vpn/choices.py:56 msgid "Hub" msgstr "Hub" -#: netbox/vpn/choices.py:57 +#: vpn/choices.py:57 msgid "Spoke" msgstr "Habló" -#: netbox/vpn/choices.py:80 +#: vpn/choices.py:80 msgid "Aggressive" msgstr "Agresivo" -#: netbox/vpn/choices.py:81 +#: vpn/choices.py:81 msgid "Main" msgstr "Principal" -#: netbox/vpn/choices.py:92 +#: vpn/choices.py:92 msgid "Pre-shared keys" msgstr "Claves previamente compartidas" -#: netbox/vpn/choices.py:93 +#: vpn/choices.py:93 msgid "Certificates" msgstr "Certificados" -#: netbox/vpn/choices.py:94 +#: vpn/choices.py:94 msgid "RSA signatures" msgstr "Firmas RSA" -#: netbox/vpn/choices.py:95 +#: vpn/choices.py:95 msgid "DSA signatures" msgstr "Firmas de la DSA" -#: netbox/vpn/choices.py:178 netbox/vpn/choices.py:179 -#: netbox/vpn/choices.py:180 netbox/vpn/choices.py:181 -#: netbox/vpn/choices.py:182 netbox/vpn/choices.py:183 -#: netbox/vpn/choices.py:184 netbox/vpn/choices.py:185 -#: netbox/vpn/choices.py:186 netbox/vpn/choices.py:187 -#: netbox/vpn/choices.py:188 netbox/vpn/choices.py:189 -#: netbox/vpn/choices.py:190 netbox/vpn/choices.py:191 -#: netbox/vpn/choices.py:192 netbox/vpn/choices.py:193 -#: netbox/vpn/choices.py:194 netbox/vpn/choices.py:195 -#: netbox/vpn/choices.py:196 netbox/vpn/choices.py:197 -#: netbox/vpn/choices.py:198 netbox/vpn/choices.py:199 -#: netbox/vpn/choices.py:200 netbox/vpn/choices.py:201 +#: vpn/choices.py:178 vpn/choices.py:179 vpn/choices.py:180 vpn/choices.py:181 +#: vpn/choices.py:182 vpn/choices.py:183 vpn/choices.py:184 vpn/choices.py:185 +#: vpn/choices.py:186 vpn/choices.py:187 vpn/choices.py:188 vpn/choices.py:189 +#: vpn/choices.py:190 vpn/choices.py:191 vpn/choices.py:192 vpn/choices.py:193 +#: vpn/choices.py:194 vpn/choices.py:195 vpn/choices.py:196 vpn/choices.py:197 +#: vpn/choices.py:198 vpn/choices.py:199 vpn/choices.py:200 vpn/choices.py:201 #, python-brace-format msgid "Group {n}" msgstr "Grupo {n}" -#: netbox/vpn/choices.py:243 +#: vpn/choices.py:243 msgid "Ethernet Private LAN" msgstr "LAN privada Ethernet" -#: netbox/vpn/choices.py:244 +#: vpn/choices.py:244 msgid "Ethernet Virtual Private LAN" msgstr "LAN privada virtual Ethernet" -#: netbox/vpn/choices.py:247 +#: vpn/choices.py:247 msgid "Ethernet Private Tree" msgstr "Árbol privado de Ethernet" -#: netbox/vpn/choices.py:248 +#: vpn/choices.py:248 msgid "Ethernet Virtual Private Tree" msgstr "Árbol privado virtual de Ethernet" -#: netbox/vpn/filtersets.py:41 +#: vpn/filtersets.py:41 msgid "Tunnel group (ID)" msgstr "Grupo de túneles (ID)" -#: netbox/vpn/filtersets.py:47 +#: vpn/filtersets.py:47 msgid "Tunnel group (slug)" msgstr "Grupo de túneles (babosas)" -#: netbox/vpn/filtersets.py:54 +#: vpn/filtersets.py:54 msgid "IPSec profile (ID)" msgstr "Perfil IPSec (ID)" -#: netbox/vpn/filtersets.py:60 +#: vpn/filtersets.py:60 msgid "IPSec profile (name)" msgstr "Perfil IPSec (nombre)" -#: netbox/vpn/filtersets.py:81 +#: vpn/filtersets.py:81 msgid "Tunnel (ID)" msgstr "Túnel (ID)" -#: netbox/vpn/filtersets.py:87 +#: vpn/filtersets.py:87 msgid "Tunnel (name)" msgstr "Túnel (nombre)" -#: netbox/vpn/filtersets.py:118 +#: vpn/filtersets.py:118 msgid "Outside IP (ID)" msgstr "IP externa (ID)" -#: netbox/vpn/filtersets.py:130 netbox/vpn/filtersets.py:263 +#: vpn/filtersets.py:130 vpn/filtersets.py:263 msgid "IKE policy (ID)" msgstr "Política de IKE (ID)" -#: netbox/vpn/filtersets.py:136 netbox/vpn/filtersets.py:269 +#: vpn/filtersets.py:136 vpn/filtersets.py:269 msgid "IKE policy (name)" msgstr "Política IKE (nombre)" -#: netbox/vpn/filtersets.py:200 netbox/vpn/filtersets.py:273 +#: vpn/filtersets.py:200 vpn/filtersets.py:273 msgid "IPSec policy (ID)" msgstr "Política IPSec (ID)" -#: netbox/vpn/filtersets.py:206 netbox/vpn/filtersets.py:279 +#: vpn/filtersets.py:206 vpn/filtersets.py:279 msgid "IPSec policy (name)" msgstr "Política IPSec (nombre)" -#: netbox/vpn/filtersets.py:348 +#: vpn/filtersets.py:348 msgid "L2VPN (slug)" msgstr "VPN L2 (babosa)" -#: netbox/vpn/filtersets.py:412 +#: vpn/filtersets.py:412 msgid "VM Interface (ID)" msgstr "Interfaz VM (ID)" -#: netbox/vpn/filtersets.py:418 +#: vpn/filtersets.py:418 msgid "VLAN (name)" msgstr "VLAN (nombre)" -#: netbox/vpn/forms/bulk_edit.py:45 netbox/vpn/forms/bulk_import.py:42 -#: netbox/vpn/forms/filtersets.py:54 +#: vpn/forms/bulk_edit.py:45 vpn/forms/bulk_import.py:42 +#: vpn/forms/filtersets.py:54 msgid "Tunnel group" msgstr "Grupo de túneles" -#: netbox/vpn/forms/bulk_edit.py:117 netbox/vpn/models/crypto.py:47 +#: vpn/forms/bulk_edit.py:117 vpn/models/crypto.py:47 msgid "SA lifetime" msgstr "Toda una vida" -#: netbox/vpn/forms/bulk_edit.py:151 netbox/wireless/forms/bulk_edit.py:79 -#: netbox/wireless/forms/bulk_edit.py:126 -#: netbox/wireless/forms/filtersets.py:64 -#: netbox/wireless/forms/filtersets.py:98 +#: vpn/forms/bulk_edit.py:151 wireless/forms/bulk_edit.py:79 +#: wireless/forms/bulk_edit.py:126 wireless/forms/filtersets.py:64 +#: wireless/forms/filtersets.py:98 msgid "Pre-shared key" msgstr "Clave previamente compartida" -#: netbox/vpn/forms/bulk_edit.py:237 netbox/vpn/forms/bulk_import.py:239 -#: netbox/vpn/forms/filtersets.py:199 netbox/vpn/forms/model_forms.py:370 -#: netbox/vpn/models/crypto.py:104 +#: vpn/forms/bulk_edit.py:237 vpn/forms/bulk_import.py:239 +#: vpn/forms/filtersets.py:199 vpn/forms/model_forms.py:370 +#: vpn/models/crypto.py:104 msgid "IKE policy" msgstr "Política de IKE" -#: netbox/vpn/forms/bulk_edit.py:242 netbox/vpn/forms/bulk_import.py:244 -#: netbox/vpn/forms/filtersets.py:204 netbox/vpn/forms/model_forms.py:374 -#: netbox/vpn/models/crypto.py:209 +#: vpn/forms/bulk_edit.py:242 vpn/forms/bulk_import.py:244 +#: vpn/forms/filtersets.py:204 vpn/forms/model_forms.py:374 +#: vpn/models/crypto.py:209 msgid "IPSec policy" msgstr "Política IPSec" -#: netbox/vpn/forms/bulk_import.py:50 +#: vpn/forms/bulk_import.py:50 msgid "Tunnel encapsulation" msgstr "Encapsulación de túneles" -#: netbox/vpn/forms/bulk_import.py:83 +#: vpn/forms/bulk_import.py:83 msgid "Operational role" msgstr "Función operativa" -#: netbox/vpn/forms/bulk_import.py:90 +#: vpn/forms/bulk_import.py:90 msgid "Parent device of assigned interface" msgstr "Dispositivo principal de la interfaz asignada" -#: netbox/vpn/forms/bulk_import.py:97 +#: vpn/forms/bulk_import.py:97 msgid "Parent VM of assigned interface" msgstr "VM principal de la interfaz asignada" -#: netbox/vpn/forms/bulk_import.py:104 +#: vpn/forms/bulk_import.py:104 msgid "Device or virtual machine interface" msgstr "Interfaz de dispositivo o máquina virtual" -#: netbox/vpn/forms/bulk_import.py:183 +#: vpn/forms/bulk_import.py:183 msgid "IKE proposal(s)" msgstr "Propuesta (s) de IKE" -#: netbox/vpn/forms/bulk_import.py:215 netbox/vpn/models/crypto.py:197 +#: vpn/forms/bulk_import.py:215 vpn/models/crypto.py:197 msgid "Diffie-Hellman group for Perfect Forward Secrecy" msgstr "Grupo Diffie-Hellman para Perfect Forward Secrecy" -#: netbox/vpn/forms/bulk_import.py:222 +#: vpn/forms/bulk_import.py:222 msgid "IPSec proposal(s)" msgstr "Propuestas de IPSec" -#: netbox/vpn/forms/bulk_import.py:236 +#: vpn/forms/bulk_import.py:236 msgid "IPSec protocol" msgstr "Protocolo IPSec" -#: netbox/vpn/forms/bulk_import.py:266 +#: vpn/forms/bulk_import.py:266 msgid "L2VPN type" msgstr "Tipo L2VPN" -#: netbox/vpn/forms/bulk_import.py:287 +#: vpn/forms/bulk_import.py:287 msgid "Parent device (for interface)" msgstr "Dispositivo principal (para interfaz)" -#: netbox/vpn/forms/bulk_import.py:294 +#: vpn/forms/bulk_import.py:294 msgid "Parent virtual machine (for interface)" msgstr "Máquina virtual principal (para interfaz)" -#: netbox/vpn/forms/bulk_import.py:301 +#: vpn/forms/bulk_import.py:301 msgid "Assigned interface (device or VM)" msgstr "Interfaz asignada (dispositivo o máquina virtual)" -#: netbox/vpn/forms/bulk_import.py:334 +#: vpn/forms/bulk_import.py:334 msgid "Cannot import device and VM interface terminations simultaneously." msgstr "" "No se pueden importar las terminaciones de la interfaz de máquina virtual y " "del dispositivo de forma simultánea." -#: netbox/vpn/forms/bulk_import.py:336 +#: vpn/forms/bulk_import.py:336 msgid "Each termination must specify either an interface or a VLAN." msgstr "Cada terminación debe especificar una interfaz o una VLAN." -#: netbox/vpn/forms/bulk_import.py:338 +#: vpn/forms/bulk_import.py:338 msgid "Cannot assign both an interface and a VLAN." msgstr "No se puede asignar una interfaz y una VLAN a la vez." -#: netbox/vpn/forms/filtersets.py:130 +#: vpn/forms/filtersets.py:130 msgid "IKE version" msgstr "Versión IKE" -#: netbox/vpn/forms/filtersets.py:142 netbox/vpn/forms/filtersets.py:175 -#: netbox/vpn/forms/model_forms.py:298 netbox/vpn/forms/model_forms.py:334 +#: vpn/forms/filtersets.py:142 vpn/forms/filtersets.py:175 +#: vpn/forms/model_forms.py:298 vpn/forms/model_forms.py:334 msgid "Proposal" msgstr "Propuesta" -#: netbox/vpn/forms/filtersets.py:251 +#: vpn/forms/filtersets.py:251 msgid "Assigned Object Type" msgstr "Tipo de objeto asignado" -#: netbox/vpn/forms/model_forms.py:95 netbox/vpn/forms/model_forms.py:130 -#: netbox/vpn/forms/model_forms.py:240 netbox/vpn/tables/tunnels.py:91 +#: vpn/forms/model_forms.py:95 vpn/forms/model_forms.py:130 +#: vpn/forms/model_forms.py:240 vpn/tables/tunnels.py:91 msgid "Tunnel interface" msgstr "Interfaz de túnel" -#: netbox/vpn/forms/model_forms.py:150 +#: vpn/forms/model_forms.py:150 msgid "First Termination" msgstr "Primera rescisión" -#: netbox/vpn/forms/model_forms.py:153 +#: vpn/forms/model_forms.py:153 msgid "Second Termination" msgstr "Segunda terminación" -#: netbox/vpn/forms/model_forms.py:197 +#: vpn/forms/model_forms.py:197 msgid "This parameter is required when defining a termination." msgstr "Este parámetro es obligatorio para definir una terminación." -#: netbox/vpn/forms/model_forms.py:320 netbox/vpn/forms/model_forms.py:356 +#: vpn/forms/model_forms.py:320 vpn/forms/model_forms.py:356 msgid "Policy" msgstr "Política" -#: netbox/vpn/forms/model_forms.py:487 +#: vpn/forms/model_forms.py:487 msgid "A termination must specify an interface or VLAN." msgstr "Una terminación debe especificar una interfaz o VLAN." -#: netbox/vpn/forms/model_forms.py:489 +#: vpn/forms/model_forms.py:489 msgid "" "A termination can only have one terminating object (an interface or VLAN)." msgstr "" "Una terminación solo puede tener un objeto de terminación (una interfaz o " "VLAN)." -#: netbox/vpn/models/crypto.py:33 +#: vpn/models/crypto.py:33 msgid "encryption algorithm" msgstr "algoritmo de cifrado" -#: netbox/vpn/models/crypto.py:37 +#: vpn/models/crypto.py:37 msgid "authentication algorithm" msgstr "algoritmo de autenticación" -#: netbox/vpn/models/crypto.py:44 +#: vpn/models/crypto.py:44 msgid "Diffie-Hellman group ID" msgstr "ID de grupo Diffie-Hellman" -#: netbox/vpn/models/crypto.py:50 +#: vpn/models/crypto.py:50 msgid "Security association lifetime (in seconds)" msgstr "Duración de la asociación de seguridad (en segundos)" -#: netbox/vpn/models/crypto.py:59 +#: vpn/models/crypto.py:59 msgid "IKE proposal" msgstr "Propuesta IKE" -#: netbox/vpn/models/crypto.py:60 +#: vpn/models/crypto.py:60 msgid "IKE proposals" msgstr "Propuestas de IKE" -#: netbox/vpn/models/crypto.py:76 +#: vpn/models/crypto.py:76 msgid "version" msgstr "versión" -#: netbox/vpn/models/crypto.py:88 netbox/vpn/models/crypto.py:190 +#: vpn/models/crypto.py:88 vpn/models/crypto.py:190 msgid "proposals" msgstr "propuestas" -#: netbox/vpn/models/crypto.py:91 netbox/wireless/models.py:39 +#: vpn/models/crypto.py:91 wireless/models.py:39 msgid "pre-shared key" msgstr "clave previamente compartida" -#: netbox/vpn/models/crypto.py:105 +#: vpn/models/crypto.py:105 msgid "IKE policies" msgstr "Políticas de IKE" -#: netbox/vpn/models/crypto.py:118 +#: vpn/models/crypto.py:118 msgid "Mode is required for selected IKE version" msgstr "El modo es necesario para la versión IKE seleccionada" -#: netbox/vpn/models/crypto.py:122 +#: vpn/models/crypto.py:122 msgid "Mode cannot be used for selected IKE version" msgstr "El modo no se puede usar para la versión IKE seleccionada" -#: netbox/vpn/models/crypto.py:136 +#: vpn/models/crypto.py:136 msgid "encryption" msgstr "cifrado" -#: netbox/vpn/models/crypto.py:141 +#: vpn/models/crypto.py:141 msgid "authentication" msgstr "autenticación" -#: netbox/vpn/models/crypto.py:149 +#: vpn/models/crypto.py:149 msgid "Security association lifetime (seconds)" msgstr "Duración de la asociación de seguridad (segundos)" -#: netbox/vpn/models/crypto.py:155 +#: vpn/models/crypto.py:155 msgid "Security association lifetime (in kilobytes)" msgstr "Duración de la asociación de seguridad (en kilobytes)" -#: netbox/vpn/models/crypto.py:164 +#: vpn/models/crypto.py:164 msgid "IPSec proposal" msgstr "Propuesta de IPSec" -#: netbox/vpn/models/crypto.py:165 +#: vpn/models/crypto.py:165 msgid "IPSec proposals" msgstr "Propuestas de IPSec" -#: netbox/vpn/models/crypto.py:178 +#: vpn/models/crypto.py:178 msgid "Encryption and/or authentication algorithm must be defined" msgstr "Debe definirse un algoritmo de cifrado y/o autenticación" -#: netbox/vpn/models/crypto.py:210 +#: vpn/models/crypto.py:210 msgid "IPSec policies" msgstr "Políticas IPSec" -#: netbox/vpn/models/crypto.py:251 +#: vpn/models/crypto.py:251 msgid "IPSec profiles" msgstr "Perfiles IPSec" -#: netbox/vpn/models/l2vpn.py:116 +#: vpn/models/l2vpn.py:116 msgid "L2VPN termination" msgstr "Terminación de L2VPN" -#: netbox/vpn/models/l2vpn.py:117 +#: vpn/models/l2vpn.py:117 msgid "L2VPN terminations" msgstr "Terminaciones de L2VPN" -#: netbox/vpn/models/l2vpn.py:135 +#: vpn/models/l2vpn.py:135 #, python-brace-format msgid "L2VPN Termination already assigned ({assigned_object})" msgstr "La terminación de L2VPN ya está asignada ({assigned_object})" -#: netbox/vpn/models/l2vpn.py:147 +#: vpn/models/l2vpn.py:147 #, python-brace-format msgid "" "{l2vpn_type} L2VPNs cannot have more than two terminations; found " @@ -16019,194 +15267,186 @@ msgstr "" "{l2vpn_type} Las VPN de nivel 2 no pueden tener más de dos terminaciones; se" " encuentran {terminations_count} ya definido." -#: netbox/vpn/models/tunnels.py:26 +#: vpn/models/tunnels.py:26 msgid "tunnel group" msgstr "grupo de túneles" -#: netbox/vpn/models/tunnels.py:27 +#: vpn/models/tunnels.py:27 msgid "tunnel groups" msgstr "grupos de túneles" -#: netbox/vpn/models/tunnels.py:53 +#: vpn/models/tunnels.py:53 msgid "encapsulation" msgstr "encapsulamiento" -#: netbox/vpn/models/tunnels.py:72 +#: vpn/models/tunnels.py:72 msgid "tunnel ID" msgstr "ID de túnel" -#: netbox/vpn/models/tunnels.py:94 +#: vpn/models/tunnels.py:94 msgid "tunnel" msgstr "túnel" -#: netbox/vpn/models/tunnels.py:95 +#: vpn/models/tunnels.py:95 msgid "tunnels" msgstr "túneles" -#: netbox/vpn/models/tunnels.py:153 +#: vpn/models/tunnels.py:153 msgid "An object may be terminated to only one tunnel at a time." msgstr "Un objeto solo puede terminar en un túnel a la vez." -#: netbox/vpn/models/tunnels.py:156 +#: vpn/models/tunnels.py:156 msgid "tunnel termination" msgstr "terminación de túnel" -#: netbox/vpn/models/tunnels.py:157 +#: vpn/models/tunnels.py:157 msgid "tunnel terminations" msgstr "terminaciones de túneles" -#: netbox/vpn/models/tunnels.py:174 +#: vpn/models/tunnels.py:174 #, python-brace-format msgid "{name} is already attached to a tunnel ({tunnel})." msgstr "{name} ya está conectado a un túnel ({tunnel})." -#: netbox/vpn/tables/crypto.py:22 +#: vpn/tables/crypto.py:22 msgid "Authentication Method" msgstr "Método de autenticación" -#: netbox/vpn/tables/crypto.py:25 netbox/vpn/tables/crypto.py:97 +#: vpn/tables/crypto.py:25 vpn/tables/crypto.py:97 msgid "Encryption Algorithm" msgstr "Algoritmo de cifrado" -#: netbox/vpn/tables/crypto.py:28 netbox/vpn/tables/crypto.py:100 +#: vpn/tables/crypto.py:28 vpn/tables/crypto.py:100 msgid "Authentication Algorithm" msgstr "Algoritmo de autenticación" -#: netbox/vpn/tables/crypto.py:34 +#: vpn/tables/crypto.py:34 msgid "SA Lifetime" msgstr "Toda una vida" -#: netbox/vpn/tables/crypto.py:71 +#: vpn/tables/crypto.py:71 msgid "Pre-shared Key" msgstr "Clave previamente compartida" -#: netbox/vpn/tables/crypto.py:103 +#: vpn/tables/crypto.py:103 msgid "SA Lifetime (Seconds)" msgstr "Una vida útil (segundos)" -#: netbox/vpn/tables/crypto.py:106 +#: vpn/tables/crypto.py:106 msgid "SA Lifetime (KB)" msgstr "SA Lifetime (KB)" -#: netbox/vpn/tables/l2vpn.py:69 +#: vpn/tables/l2vpn.py:69 msgid "Object Parent" msgstr "Objeto principal" -#: netbox/vpn/tables/l2vpn.py:74 +#: vpn/tables/l2vpn.py:74 msgid "Object Site" msgstr "Sitio del objeto" -#: netbox/wireless/choices.py:11 +#: wireless/choices.py:11 msgid "Access point" msgstr "Punto de acceso" -#: netbox/wireless/choices.py:12 +#: wireless/choices.py:12 msgid "Station" msgstr "Estación" -#: netbox/wireless/choices.py:467 +#: wireless/choices.py:467 msgid "Open" msgstr "Abrir" -#: netbox/wireless/choices.py:469 +#: wireless/choices.py:469 msgid "WPA Personal (PSK)" msgstr "WPA Personal (PSK)" -#: netbox/wireless/choices.py:470 +#: wireless/choices.py:470 msgid "WPA Enterprise" msgstr "Empresa WPA" -#: netbox/wireless/forms/bulk_edit.py:73 -#: netbox/wireless/forms/bulk_edit.py:120 -#: netbox/wireless/forms/bulk_import.py:68 -#: netbox/wireless/forms/bulk_import.py:71 -#: netbox/wireless/forms/bulk_import.py:110 -#: netbox/wireless/forms/bulk_import.py:113 -#: netbox/wireless/forms/filtersets.py:59 -#: netbox/wireless/forms/filtersets.py:93 +#: wireless/forms/bulk_edit.py:73 wireless/forms/bulk_edit.py:120 +#: wireless/forms/bulk_import.py:68 wireless/forms/bulk_import.py:71 +#: wireless/forms/bulk_import.py:110 wireless/forms/bulk_import.py:113 +#: wireless/forms/filtersets.py:59 wireless/forms/filtersets.py:93 msgid "Authentication cipher" msgstr "Cifrado de autenticación" -#: netbox/wireless/forms/bulk_edit.py:134 -#: netbox/wireless/forms/bulk_import.py:116 -#: netbox/wireless/forms/bulk_import.py:119 -#: netbox/wireless/forms/filtersets.py:106 +#: wireless/forms/bulk_edit.py:134 wireless/forms/bulk_import.py:116 +#: wireless/forms/bulk_import.py:119 wireless/forms/filtersets.py:106 msgid "Distance unit" msgstr "Unidad de distancia" -#: netbox/wireless/forms/bulk_import.py:52 +#: wireless/forms/bulk_import.py:52 msgid "Bridged VLAN" msgstr "VLAN puenteada" -#: netbox/wireless/forms/bulk_import.py:89 -#: netbox/wireless/tables/wirelesslink.py:28 +#: wireless/forms/bulk_import.py:89 wireless/tables/wirelesslink.py:28 msgid "Interface A" msgstr "Interfaz A" -#: netbox/wireless/forms/bulk_import.py:93 -#: netbox/wireless/tables/wirelesslink.py:37 +#: wireless/forms/bulk_import.py:93 wireless/tables/wirelesslink.py:37 msgid "Interface B" msgstr "Interfaz B" -#: netbox/wireless/forms/model_forms.py:161 +#: wireless/forms/model_forms.py:161 msgid "Side B" msgstr "Lado B" -#: netbox/wireless/models.py:31 +#: wireless/models.py:31 msgid "authentication cipher" msgstr "cifrado de autenticación" -#: netbox/wireless/models.py:69 +#: wireless/models.py:69 msgid "wireless LAN group" msgstr "grupo LAN inalámbrico" -#: netbox/wireless/models.py:70 +#: wireless/models.py:70 msgid "wireless LAN groups" msgstr "grupos LAN inalámbricos" -#: netbox/wireless/models.py:116 +#: wireless/models.py:116 msgid "wireless LAN" msgstr "LAN inalámbrica" -#: netbox/wireless/models.py:144 +#: wireless/models.py:144 msgid "interface A" msgstr "interfaz A" -#: netbox/wireless/models.py:151 +#: wireless/models.py:151 msgid "interface B" msgstr "interfaz B" -#: netbox/wireless/models.py:165 +#: wireless/models.py:165 msgid "distance" msgstr "distancia" -#: netbox/wireless/models.py:172 +#: wireless/models.py:172 msgid "distance unit" msgstr "unidad de distancia" -#: netbox/wireless/models.py:219 +#: wireless/models.py:219 msgid "wireless link" msgstr "enlace inalámbrico" -#: netbox/wireless/models.py:220 +#: wireless/models.py:220 msgid "wireless links" msgstr "enlaces inalámbricos" -#: netbox/wireless/models.py:236 +#: wireless/models.py:236 msgid "Must specify a unit when setting a wireless distance" msgstr "Debe especificar una unidad al configurar una distancia inalámbrica" -#: netbox/wireless/models.py:242 netbox/wireless/models.py:248 +#: wireless/models.py:242 wireless/models.py:248 #, python-brace-format msgid "{type} is not a wireless interface." msgstr "{type} no es una interfaz inalámbrica." -#: netbox/wireless/utils.py:16 +#: wireless/utils.py:16 #, python-brace-format msgid "Invalid channel value: {channel}" msgstr "Valor de canal no válido: {channel}" -#: netbox/wireless/utils.py:26 +#: wireless/utils.py:26 #, python-brace-format msgid "Invalid channel attribute: {name}" msgstr "Atributo de canal no válido: {name}" diff --git a/netbox/translations/fr/LC_MESSAGES/django.po b/netbox/translations/fr/LC_MESSAGES/django.po index 25b02e3a4..a01027e68 100644 --- a/netbox/translations/fr/LC_MESSAGES/django.po +++ b/netbox/translations/fr/LC_MESSAGES/django.po @@ -18,7 +18,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-12 05:02+0000\n" +"POT-Creation-Date: 2024-10-28 19:20+0000\n" "PO-Revision-Date: 2023-10-30 17:48+0000\n" "Last-Translator: Jeremy Stretch, 2024\n" "Language-Team: French (https://app.transifex.com/netbox-community/teams/178115/fr/)\n" @@ -28,2149 +28,1880 @@ msgstr "" "Language: fr\n" "Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" -#: netbox/account/tables.py:27 netbox/templates/account/token.html:22 -#: netbox/templates/users/token.html:17 netbox/users/forms/bulk_import.py:39 -#: netbox/users/forms/model_forms.py:112 +#: account/tables.py:27 templates/account/token.html:22 +#: templates/users/token.html:17 users/forms/bulk_import.py:39 +#: users/forms/model_forms.py:112 msgid "Key" msgstr "Clé" -#: netbox/account/tables.py:31 netbox/users/forms/filtersets.py:132 +#: account/tables.py:31 users/forms/filtersets.py:132 msgid "Write Enabled" msgstr "Écriture activée" -#: netbox/account/tables.py:35 netbox/core/choices.py:86 -#: netbox/core/tables/jobs.py:29 netbox/core/tables/tasks.py:79 -#: netbox/extras/tables/tables.py:335 netbox/extras/tables/tables.py:566 -#: netbox/templates/account/token.html:43 -#: netbox/templates/core/configrevision.html:26 -#: netbox/templates/core/configrevision_restore.html:12 -#: netbox/templates/core/job.html:69 netbox/templates/core/rq_task.html:16 -#: netbox/templates/core/rq_task.html:73 -#: netbox/templates/core/rq_worker.html:14 -#: netbox/templates/extras/htmx/script_result.html:12 -#: netbox/templates/extras/journalentry.html:22 -#: netbox/templates/generic/object.html:58 -#: netbox/templates/users/token.html:35 +#: account/tables.py:35 core/choices.py:86 core/tables/jobs.py:29 +#: core/tables/tasks.py:79 extras/tables/tables.py:335 +#: extras/tables/tables.py:566 templates/account/token.html:43 +#: templates/core/configrevision.html:26 +#: templates/core/configrevision_restore.html:12 templates/core/job.html:69 +#: templates/core/rq_task.html:16 templates/core/rq_task.html:73 +#: templates/core/rq_worker.html:14 +#: templates/extras/htmx/script_result.html:12 +#: templates/extras/journalentry.html:22 templates/generic/object.html:58 +#: templates/users/token.html:35 msgid "Created" msgstr "Créé" -#: netbox/account/tables.py:39 netbox/templates/account/token.html:47 -#: netbox/templates/users/token.html:39 netbox/users/forms/bulk_edit.py:117 -#: netbox/users/forms/filtersets.py:136 +#: account/tables.py:39 templates/account/token.html:47 +#: templates/users/token.html:39 users/forms/bulk_edit.py:117 +#: users/forms/filtersets.py:136 msgid "Expires" msgstr "Expire" -#: netbox/account/tables.py:42 netbox/users/forms/filtersets.py:141 +#: account/tables.py:42 users/forms/filtersets.py:141 msgid "Last Used" msgstr "Dernière utilisation" -#: netbox/account/tables.py:45 netbox/templates/account/token.html:55 -#: netbox/templates/users/token.html:47 netbox/users/forms/bulk_edit.py:122 -#: netbox/users/forms/model_forms.py:124 +#: account/tables.py:45 templates/account/token.html:55 +#: templates/users/token.html:47 users/forms/bulk_edit.py:122 +#: users/forms/model_forms.py:124 msgid "Allowed IPs" msgstr "IP autorisées" -#: netbox/account/views.py:114 +#: account/views.py:114 #, python-brace-format msgid "Logged in as {user}." msgstr "Connecté en tant que {user}." -#: netbox/account/views.py:164 +#: account/views.py:164 msgid "You have logged out." msgstr "Vous êtes déconnecté." -#: netbox/account/views.py:216 +#: account/views.py:216 msgid "Your preferences have been updated." msgstr "Vos préférences ont été mises à jour." -#: netbox/account/views.py:239 +#: account/views.py:239 msgid "LDAP-authenticated user credentials cannot be changed within NetBox." msgstr "" "Les informations d'identification utilisateur authentifiées par LDAP ne " "peuvent pas être modifiées dans NetBox." -#: netbox/account/views.py:254 +#: account/views.py:254 msgid "Your password has been changed successfully." 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:185 -#: netbox/dcim/choices.py:237 netbox/dcim/choices.py:1530 -#: netbox/dcim/choices.py:1606 netbox/dcim/choices.py:1656 -#: netbox/virtualization/choices.py:20 netbox/virtualization/choices.py:45 -#: netbox/vpn/choices.py:18 +#: circuits/choices.py:21 dcim/choices.py:20 dcim/choices.py:102 +#: dcim/choices.py:185 dcim/choices.py:237 dcim/choices.py:1530 +#: dcim/choices.py:1606 dcim/choices.py:1656 virtualization/choices.py:20 +#: virtualization/choices.py:45 vpn/choices.py:18 msgid "Planned" msgstr "Planifié" -#: netbox/circuits/choices.py:22 netbox/netbox/navigation/menu.py:305 +#: circuits/choices.py:22 netbox/navigation/menu.py:305 msgid "Provisioning" msgstr "Approvisionnement" -#: netbox/circuits/choices.py:23 netbox/core/tables/tasks.py:22 -#: netbox/dcim/choices.py:22 netbox/dcim/choices.py:103 -#: netbox/dcim/choices.py:184 netbox/dcim/choices.py:236 -#: netbox/dcim/choices.py:1605 netbox/dcim/choices.py:1655 -#: netbox/extras/tables/tables.py:495 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:25 -#: netbox/templates/users/user.html:37 netbox/users/forms/bulk_edit.py:38 -#: netbox/virtualization/choices.py:22 netbox/virtualization/choices.py:44 -#: netbox/vpn/choices.py:19 netbox/wireless/choices.py:25 +#: circuits/choices.py:23 core/tables/tasks.py:22 dcim/choices.py:22 +#: dcim/choices.py:103 dcim/choices.py:184 dcim/choices.py:236 +#: dcim/choices.py:1605 dcim/choices.py:1655 extras/tables/tables.py:495 +#: ipam/choices.py:31 ipam/choices.py:49 ipam/choices.py:69 +#: ipam/choices.py:154 templates/extras/configcontext.html:25 +#: templates/users/user.html:37 users/forms/bulk_edit.py:38 +#: virtualization/choices.py:22 virtualization/choices.py:44 vpn/choices.py:19 +#: wireless/choices.py:25 msgid "Active" msgstr "Actif" -#: netbox/circuits/choices.py:24 netbox/dcim/choices.py:183 -#: netbox/dcim/choices.py:235 netbox/dcim/choices.py:1604 -#: netbox/dcim/choices.py:1657 netbox/virtualization/choices.py:24 -#: netbox/virtualization/choices.py:43 +#: circuits/choices.py:24 dcim/choices.py:183 dcim/choices.py:235 +#: dcim/choices.py:1604 dcim/choices.py:1657 virtualization/choices.py:24 +#: virtualization/choices.py:43 msgid "Offline" msgstr "Hors ligne" -#: netbox/circuits/choices.py:25 +#: circuits/choices.py:25 msgid "Deprovisioning" msgstr "Déprovisionnement" -#: netbox/circuits/choices.py:26 +#: circuits/choices.py:26 msgid "Decommissioned" msgstr "Mis hors service" -#: netbox/circuits/choices.py:90 netbox/dcim/choices.py:1617 -#: netbox/tenancy/choices.py:17 +#: circuits/choices.py:90 dcim/choices.py:1617 tenancy/choices.py:17 msgid "Primary" msgstr "Primaire" -#: netbox/circuits/choices.py:91 netbox/ipam/choices.py:90 -#: netbox/tenancy/choices.py:18 +#: circuits/choices.py:91 ipam/choices.py:90 tenancy/choices.py:18 msgid "Secondary" msgstr "Secondaire" -#: netbox/circuits/choices.py:92 netbox/tenancy/choices.py:19 +#: circuits/choices.py:92 tenancy/choices.py:19 msgid "Tertiary" msgstr "Tertiaire" -#: netbox/circuits/choices.py:93 netbox/tenancy/choices.py:20 +#: circuits/choices.py:93 tenancy/choices.py:20 msgid "Inactive" msgstr "Inactif" -#: netbox/circuits/filtersets.py:31 netbox/circuits/filtersets.py:198 -#: netbox/dcim/filtersets.py:98 netbox/dcim/filtersets.py:152 -#: netbox/dcim/filtersets.py:212 netbox/dcim/filtersets.py:333 -#: netbox/dcim/filtersets.py:464 netbox/dcim/filtersets.py:1021 -#: netbox/dcim/filtersets.py:1368 netbox/dcim/filtersets.py:1903 -#: netbox/dcim/filtersets.py:2146 netbox/dcim/filtersets.py:2204 -#: netbox/ipam/filtersets.py:339 netbox/ipam/filtersets.py:959 -#: netbox/virtualization/filtersets.py:45 -#: netbox/virtualization/filtersets.py:173 netbox/vpn/filtersets.py:358 +#: circuits/filtersets.py:31 circuits/filtersets.py:198 dcim/filtersets.py:98 +#: dcim/filtersets.py:152 dcim/filtersets.py:212 dcim/filtersets.py:333 +#: dcim/filtersets.py:464 dcim/filtersets.py:1021 dcim/filtersets.py:1368 +#: dcim/filtersets.py:1903 dcim/filtersets.py:2146 dcim/filtersets.py:2204 +#: ipam/filtersets.py:339 ipam/filtersets.py:959 +#: virtualization/filtersets.py:45 virtualization/filtersets.py:173 +#: vpn/filtersets.py:358 msgid "Region (ID)" msgstr "Région (ID)" -#: netbox/circuits/filtersets.py:38 netbox/circuits/filtersets.py:205 -#: netbox/dcim/filtersets.py:105 netbox/dcim/filtersets.py:158 -#: netbox/dcim/filtersets.py:219 netbox/dcim/filtersets.py:340 -#: netbox/dcim/filtersets.py:471 netbox/dcim/filtersets.py:1028 -#: netbox/dcim/filtersets.py:1375 netbox/dcim/filtersets.py:1910 -#: netbox/dcim/filtersets.py:2153 netbox/dcim/filtersets.py:2211 -#: netbox/extras/filtersets.py:509 netbox/ipam/filtersets.py:346 -#: netbox/ipam/filtersets.py:966 netbox/virtualization/filtersets.py:52 -#: netbox/virtualization/filtersets.py:180 netbox/vpn/filtersets.py:353 +#: circuits/filtersets.py:38 circuits/filtersets.py:205 dcim/filtersets.py:105 +#: dcim/filtersets.py:158 dcim/filtersets.py:219 dcim/filtersets.py:340 +#: dcim/filtersets.py:471 dcim/filtersets.py:1028 dcim/filtersets.py:1375 +#: dcim/filtersets.py:1910 dcim/filtersets.py:2153 dcim/filtersets.py:2211 +#: extras/filtersets.py:509 ipam/filtersets.py:346 ipam/filtersets.py:966 +#: virtualization/filtersets.py:52 virtualization/filtersets.py:180 +#: vpn/filtersets.py:353 msgid "Region (slug)" msgstr "Région (slug)" -#: netbox/circuits/filtersets.py:44 netbox/circuits/filtersets.py:211 -#: netbox/dcim/filtersets.py:128 netbox/dcim/filtersets.py:225 -#: netbox/dcim/filtersets.py:346 netbox/dcim/filtersets.py:477 -#: netbox/dcim/filtersets.py:1034 netbox/dcim/filtersets.py:1381 -#: netbox/dcim/filtersets.py:1916 netbox/dcim/filtersets.py:2159 -#: netbox/dcim/filtersets.py:2217 netbox/ipam/filtersets.py:352 -#: netbox/ipam/filtersets.py:972 netbox/virtualization/filtersets.py:58 -#: netbox/virtualization/filtersets.py:186 +#: circuits/filtersets.py:44 circuits/filtersets.py:211 dcim/filtersets.py:128 +#: dcim/filtersets.py:225 dcim/filtersets.py:346 dcim/filtersets.py:477 +#: dcim/filtersets.py:1034 dcim/filtersets.py:1381 dcim/filtersets.py:1916 +#: dcim/filtersets.py:2159 dcim/filtersets.py:2217 ipam/filtersets.py:352 +#: ipam/filtersets.py:972 virtualization/filtersets.py:58 +#: virtualization/filtersets.py:186 msgid "Site group (ID)" msgstr "Groupe de sites (ID)" -#: netbox/circuits/filtersets.py:51 netbox/circuits/filtersets.py:218 -#: netbox/dcim/filtersets.py:135 netbox/dcim/filtersets.py:232 -#: netbox/dcim/filtersets.py:353 netbox/dcim/filtersets.py:484 -#: netbox/dcim/filtersets.py:1041 netbox/dcim/filtersets.py:1388 -#: netbox/dcim/filtersets.py:1923 netbox/dcim/filtersets.py:2166 -#: netbox/dcim/filtersets.py:2224 netbox/extras/filtersets.py:515 -#: netbox/ipam/filtersets.py:359 netbox/ipam/filtersets.py:979 -#: netbox/virtualization/filtersets.py:65 -#: netbox/virtualization/filtersets.py:193 +#: circuits/filtersets.py:51 circuits/filtersets.py:218 dcim/filtersets.py:135 +#: dcim/filtersets.py:232 dcim/filtersets.py:353 dcim/filtersets.py:484 +#: dcim/filtersets.py:1041 dcim/filtersets.py:1388 dcim/filtersets.py:1923 +#: dcim/filtersets.py:2166 dcim/filtersets.py:2224 extras/filtersets.py:515 +#: ipam/filtersets.py:359 ipam/filtersets.py:979 +#: virtualization/filtersets.py:65 virtualization/filtersets.py:193 msgid "Site group (slug)" msgstr "Groupe de sites (slug)" -#: netbox/circuits/filtersets.py:56 netbox/circuits/forms/bulk_edit.py:188 -#: netbox/circuits/forms/bulk_edit.py:216 -#: netbox/circuits/forms/bulk_import.py:124 -#: netbox/circuits/forms/filtersets.py:51 -#: netbox/circuits/forms/filtersets.py:171 -#: netbox/circuits/forms/filtersets.py:209 -#: netbox/circuits/forms/model_forms.py:138 -#: netbox/circuits/forms/model_forms.py:154 -#: netbox/circuits/tables/circuits.py:113 netbox/dcim/forms/bulk_edit.py:168 -#: netbox/dcim/forms/bulk_edit.py:329 netbox/dcim/forms/bulk_edit.py:677 -#: netbox/dcim/forms/bulk_edit.py:873 netbox/dcim/forms/bulk_import.py:131 -#: netbox/dcim/forms/bulk_import.py:230 netbox/dcim/forms/bulk_import.py:309 -#: netbox/dcim/forms/bulk_import.py:540 netbox/dcim/forms/bulk_import.py:1311 -#: netbox/dcim/forms/bulk_import.py:1339 netbox/dcim/forms/filtersets.py:87 -#: netbox/dcim/forms/filtersets.py:225 netbox/dcim/forms/filtersets.py:342 -#: netbox/dcim/forms/filtersets.py:439 netbox/dcim/forms/filtersets.py:753 -#: netbox/dcim/forms/filtersets.py:997 netbox/dcim/forms/filtersets.py:1021 -#: netbox/dcim/forms/filtersets.py:1111 netbox/dcim/forms/filtersets.py:1149 -#: netbox/dcim/forms/filtersets.py:1584 netbox/dcim/forms/filtersets.py:1608 -#: netbox/dcim/forms/filtersets.py:1632 netbox/dcim/forms/model_forms.py:137 -#: netbox/dcim/forms/model_forms.py:165 netbox/dcim/forms/model_forms.py:238 -#: netbox/dcim/forms/model_forms.py:463 netbox/dcim/forms/model_forms.py:723 -#: netbox/dcim/forms/object_create.py:391 netbox/dcim/tables/devices.py:153 -#: netbox/dcim/tables/power.py:26 netbox/dcim/tables/power.py:93 -#: netbox/dcim/tables/racks.py:122 netbox/dcim/tables/racks.py:207 -#: netbox/dcim/tables/sites.py:134 netbox/extras/filtersets.py:525 -#: netbox/ipam/forms/bulk_edit.py:217 netbox/ipam/forms/bulk_edit.py:284 -#: netbox/ipam/forms/bulk_edit.py:451 netbox/ipam/forms/bulk_edit.py:529 -#: netbox/ipam/forms/bulk_import.py:171 netbox/ipam/forms/bulk_import.py:429 -#: netbox/ipam/forms/filtersets.py:153 netbox/ipam/forms/filtersets.py:231 -#: netbox/ipam/forms/filtersets.py:432 netbox/ipam/forms/filtersets.py:489 -#: netbox/ipam/forms/model_forms.py:205 netbox/ipam/forms/model_forms.py:636 -#: netbox/ipam/tables/ip.py:245 netbox/ipam/tables/vlans.py:118 -#: netbox/ipam/tables/vlans.py:221 -#: netbox/templates/circuits/inc/circuit_termination_fields.html:6 -#: netbox/templates/dcim/device.html:22 -#: netbox/templates/dcim/inc/cable_termination.html:8 -#: netbox/templates/dcim/inc/cable_termination.html:33 -#: netbox/templates/dcim/location.html:37 -#: netbox/templates/dcim/powerpanel.html:22 netbox/templates/dcim/rack.html:20 -#: netbox/templates/dcim/rackreservation.html:28 -#: netbox/templates/dcim/site.html:28 netbox/templates/ipam/prefix.html:56 -#: netbox/templates/ipam/vlan.html:23 netbox/templates/ipam/vlan_edit.html:40 -#: netbox/templates/virtualization/cluster.html:42 -#: netbox/templates/virtualization/virtualmachine.html:95 -#: netbox/virtualization/forms/bulk_edit.py:91 -#: netbox/virtualization/forms/bulk_edit.py:109 -#: netbox/virtualization/forms/bulk_edit.py:124 -#: netbox/virtualization/forms/bulk_import.py:59 -#: netbox/virtualization/forms/bulk_import.py:85 -#: netbox/virtualization/forms/filtersets.py:79 -#: netbox/virtualization/forms/filtersets.py:148 -#: netbox/virtualization/forms/model_forms.py:71 -#: netbox/virtualization/forms/model_forms.py:104 -#: netbox/virtualization/forms/model_forms.py:171 -#: netbox/virtualization/tables/clusters.py:77 -#: netbox/virtualization/tables/virtualmachines.py:63 -#: netbox/vpn/forms/filtersets.py:266 netbox/wireless/forms/model_forms.py:76 -#: netbox/wireless/forms/model_forms.py:118 +#: circuits/filtersets.py:56 circuits/forms/bulk_edit.py:188 +#: circuits/forms/bulk_edit.py:216 circuits/forms/bulk_import.py:124 +#: circuits/forms/filtersets.py:51 circuits/forms/filtersets.py:171 +#: circuits/forms/filtersets.py:209 circuits/forms/model_forms.py:138 +#: circuits/forms/model_forms.py:154 circuits/tables/circuits.py:113 +#: dcim/forms/bulk_edit.py:168 dcim/forms/bulk_edit.py:329 +#: dcim/forms/bulk_edit.py:677 dcim/forms/bulk_edit.py:873 +#: dcim/forms/bulk_import.py:131 dcim/forms/bulk_import.py:230 +#: dcim/forms/bulk_import.py:309 dcim/forms/bulk_import.py:540 +#: dcim/forms/bulk_import.py:1311 dcim/forms/bulk_import.py:1339 +#: dcim/forms/filtersets.py:87 dcim/forms/filtersets.py:225 +#: dcim/forms/filtersets.py:342 dcim/forms/filtersets.py:439 +#: dcim/forms/filtersets.py:753 dcim/forms/filtersets.py:997 +#: dcim/forms/filtersets.py:1021 dcim/forms/filtersets.py:1111 +#: dcim/forms/filtersets.py:1149 dcim/forms/filtersets.py:1584 +#: dcim/forms/filtersets.py:1608 dcim/forms/filtersets.py:1632 +#: dcim/forms/model_forms.py:137 dcim/forms/model_forms.py:165 +#: dcim/forms/model_forms.py:238 dcim/forms/model_forms.py:463 +#: dcim/forms/model_forms.py:723 dcim/forms/object_create.py:391 +#: dcim/tables/devices.py:153 dcim/tables/power.py:26 dcim/tables/power.py:93 +#: dcim/tables/racks.py:122 dcim/tables/racks.py:207 dcim/tables/sites.py:134 +#: extras/filtersets.py:525 ipam/forms/bulk_edit.py:218 +#: ipam/forms/bulk_edit.py:285 ipam/forms/bulk_edit.py:484 +#: ipam/forms/bulk_import.py:171 ipam/forms/bulk_import.py:429 +#: ipam/forms/filtersets.py:153 ipam/forms/filtersets.py:231 +#: ipam/forms/filtersets.py:432 ipam/forms/filtersets.py:489 +#: ipam/forms/model_forms.py:205 ipam/forms/model_forms.py:636 +#: ipam/tables/ip.py:245 ipam/tables/vlans.py:118 ipam/tables/vlans.py:221 +#: templates/circuits/inc/circuit_termination_fields.html:6 +#: templates/dcim/device.html:22 templates/dcim/inc/cable_termination.html:8 +#: templates/dcim/inc/cable_termination.html:33 +#: templates/dcim/location.html:37 templates/dcim/powerpanel.html:22 +#: templates/dcim/rack.html:20 templates/dcim/rackreservation.html:28 +#: templates/dcim/site.html:28 templates/ipam/prefix.html:56 +#: templates/ipam/vlan.html:23 templates/ipam/vlan_edit.html:40 +#: templates/virtualization/cluster.html:42 +#: templates/virtualization/virtualmachine.html:95 +#: virtualization/forms/bulk_edit.py:91 virtualization/forms/bulk_edit.py:109 +#: virtualization/forms/bulk_edit.py:124 +#: virtualization/forms/bulk_import.py:59 +#: virtualization/forms/bulk_import.py:85 +#: virtualization/forms/filtersets.py:79 +#: virtualization/forms/filtersets.py:148 +#: virtualization/forms/model_forms.py:71 +#: virtualization/forms/model_forms.py:104 +#: virtualization/forms/model_forms.py:171 +#: virtualization/tables/clusters.py:77 +#: virtualization/tables/virtualmachines.py:63 vpn/forms/filtersets.py:266 +#: wireless/forms/model_forms.py:76 wireless/forms/model_forms.py:118 msgid "Site" msgstr "Site" -#: netbox/circuits/filtersets.py:62 netbox/circuits/filtersets.py:229 -#: netbox/circuits/filtersets.py:274 netbox/dcim/filtersets.py:242 -#: netbox/dcim/filtersets.py:363 netbox/dcim/filtersets.py:458 -#: netbox/extras/filtersets.py:531 netbox/ipam/filtersets.py:238 -#: netbox/ipam/filtersets.py:369 netbox/ipam/filtersets.py:989 -#: netbox/virtualization/filtersets.py:75 -#: netbox/virtualization/filtersets.py:203 netbox/vpn/filtersets.py:363 +#: circuits/filtersets.py:62 circuits/filtersets.py:229 +#: circuits/filtersets.py:274 dcim/filtersets.py:242 dcim/filtersets.py:363 +#: dcim/filtersets.py:458 extras/filtersets.py:531 ipam/filtersets.py:238 +#: ipam/filtersets.py:369 ipam/filtersets.py:989 +#: virtualization/filtersets.py:75 virtualization/filtersets.py:203 +#: vpn/filtersets.py:363 msgid "Site (slug)" msgstr "Site (slug)" -#: netbox/circuits/filtersets.py:67 +#: circuits/filtersets.py:67 msgid "ASN (ID)" msgstr "ASN (ID)" -#: netbox/circuits/filtersets.py:73 netbox/circuits/forms/filtersets.py:31 -#: netbox/ipam/forms/model_forms.py:159 netbox/ipam/models/asns.py:108 -#: netbox/ipam/models/asns.py:125 netbox/ipam/tables/asn.py:41 -#: netbox/templates/ipam/asn.html:20 +#: circuits/filtersets.py:73 circuits/forms/filtersets.py:31 +#: ipam/forms/model_forms.py:159 ipam/models/asns.py:108 +#: ipam/models/asns.py:125 ipam/tables/asn.py:41 templates/ipam/asn.html:20 msgid "ASN" msgstr "Numéro d'AS" -#: netbox/circuits/filtersets.py:95 netbox/circuits/filtersets.py:122 -#: netbox/circuits/filtersets.py:156 netbox/circuits/filtersets.py:283 -#: netbox/circuits/filtersets.py:325 netbox/ipam/filtersets.py:243 +#: circuits/filtersets.py:95 circuits/filtersets.py:122 +#: circuits/filtersets.py:156 circuits/filtersets.py:283 +#: circuits/filtersets.py:325 ipam/filtersets.py:243 msgid "Provider (ID)" msgstr "Fournisseur (ID)" -#: netbox/circuits/filtersets.py:101 netbox/circuits/filtersets.py:128 -#: netbox/circuits/filtersets.py:162 netbox/circuits/filtersets.py:289 -#: netbox/circuits/filtersets.py:331 netbox/ipam/filtersets.py:249 +#: circuits/filtersets.py:101 circuits/filtersets.py:128 +#: circuits/filtersets.py:162 circuits/filtersets.py:289 +#: circuits/filtersets.py:331 ipam/filtersets.py:249 msgid "Provider (slug)" msgstr "Fournisseur (slug)" -#: netbox/circuits/filtersets.py:167 +#: circuits/filtersets.py:167 msgid "Provider account (ID)" msgstr "Compte fournisseur (ID)" -#: netbox/circuits/filtersets.py:173 +#: circuits/filtersets.py:173 msgid "Provider account (account)" msgstr "Compte du fournisseur (compte)" -#: netbox/circuits/filtersets.py:178 +#: circuits/filtersets.py:178 msgid "Provider network (ID)" msgstr "Réseau fournisseur (ID)" -#: netbox/circuits/filtersets.py:182 +#: circuits/filtersets.py:182 msgid "Circuit type (ID)" msgstr "Type de circuit (ID)" -#: netbox/circuits/filtersets.py:188 +#: circuits/filtersets.py:188 msgid "Circuit type (slug)" msgstr "Type de circuit (slug)" -#: netbox/circuits/filtersets.py:223 netbox/circuits/filtersets.py:268 -#: netbox/dcim/filtersets.py:236 netbox/dcim/filtersets.py:357 -#: netbox/dcim/filtersets.py:452 netbox/dcim/filtersets.py:1045 -#: netbox/dcim/filtersets.py:1393 netbox/dcim/filtersets.py:1928 -#: netbox/dcim/filtersets.py:2170 netbox/dcim/filtersets.py:2229 -#: netbox/ipam/filtersets.py:232 netbox/ipam/filtersets.py:363 -#: netbox/ipam/filtersets.py:983 netbox/virtualization/filtersets.py:69 -#: netbox/virtualization/filtersets.py:197 netbox/vpn/filtersets.py:368 +#: circuits/filtersets.py:223 circuits/filtersets.py:268 +#: dcim/filtersets.py:236 dcim/filtersets.py:357 dcim/filtersets.py:452 +#: dcim/filtersets.py:1045 dcim/filtersets.py:1393 dcim/filtersets.py:1928 +#: dcim/filtersets.py:2170 dcim/filtersets.py:2229 ipam/filtersets.py:232 +#: ipam/filtersets.py:363 ipam/filtersets.py:983 +#: virtualization/filtersets.py:69 virtualization/filtersets.py:197 +#: vpn/filtersets.py:368 msgid "Site (ID)" msgstr "Site (ID)" -#: netbox/circuits/filtersets.py:233 netbox/circuits/filtersets.py:237 +#: circuits/filtersets.py:233 circuits/filtersets.py:237 msgid "Termination A (ID)" msgstr "Terminaison A (ID)" -#: netbox/circuits/filtersets.py:260 netbox/circuits/filtersets.py:320 -#: netbox/core/filtersets.py:77 netbox/core/filtersets.py:136 -#: netbox/core/filtersets.py:173 netbox/dcim/filtersets.py:751 -#: netbox/dcim/filtersets.py:1362 netbox/dcim/filtersets.py:2277 -#: netbox/extras/filtersets.py:41 netbox/extras/filtersets.py:63 -#: netbox/extras/filtersets.py:92 netbox/extras/filtersets.py:132 -#: netbox/extras/filtersets.py:181 netbox/extras/filtersets.py:209 -#: netbox/extras/filtersets.py:239 netbox/extras/filtersets.py:276 -#: netbox/extras/filtersets.py:348 netbox/extras/filtersets.py:391 -#: netbox/extras/filtersets.py:438 netbox/extras/filtersets.py:498 -#: netbox/extras/filtersets.py:657 netbox/extras/filtersets.py:703 -#: netbox/ipam/forms/model_forms.py:449 netbox/netbox/filtersets.py:282 -#: netbox/netbox/forms/__init__.py:22 netbox/netbox/forms/base.py:167 -#: netbox/templates/htmx/object_selector.html:28 -#: netbox/templates/inc/filter_list.html:45 -#: netbox/templates/ipam/ipaddress_assign.html:29 -#: netbox/templates/search.html:7 netbox/templates/search.html:26 -#: netbox/tenancy/filtersets.py:99 netbox/users/filtersets.py:23 -#: netbox/users/filtersets.py:57 netbox/users/filtersets.py:102 -#: netbox/users/filtersets.py:150 netbox/utilities/forms/forms.py:104 -#: netbox/utilities/templates/navigation/menu.html:16 +#: circuits/filtersets.py:260 circuits/filtersets.py:320 core/filtersets.py:77 +#: core/filtersets.py:136 core/filtersets.py:173 dcim/filtersets.py:751 +#: dcim/filtersets.py:1362 dcim/filtersets.py:2277 extras/filtersets.py:41 +#: extras/filtersets.py:63 extras/filtersets.py:92 extras/filtersets.py:132 +#: extras/filtersets.py:181 extras/filtersets.py:209 extras/filtersets.py:239 +#: extras/filtersets.py:276 extras/filtersets.py:348 extras/filtersets.py:391 +#: extras/filtersets.py:438 extras/filtersets.py:498 extras/filtersets.py:657 +#: extras/filtersets.py:703 ipam/forms/model_forms.py:449 +#: netbox/filtersets.py:282 netbox/forms/__init__.py:22 +#: netbox/forms/base.py:167 templates/htmx/object_selector.html:28 +#: templates/inc/filter_list.html:46 templates/ipam/ipaddress_assign.html:29 +#: templates/search.html:7 templates/search.html:26 tenancy/filtersets.py:99 +#: users/filtersets.py:23 users/filtersets.py:57 users/filtersets.py:102 +#: users/filtersets.py:150 utilities/forms/forms.py:104 +#: utilities/templates/navigation/menu.html:16 msgid "Search" msgstr "Rechercher" -#: netbox/circuits/filtersets.py:264 netbox/circuits/forms/bulk_edit.py:172 -#: netbox/circuits/forms/bulk_edit.py:246 -#: netbox/circuits/forms/bulk_import.py:115 -#: netbox/circuits/forms/filtersets.py:198 -#: netbox/circuits/forms/filtersets.py:214 -#: netbox/circuits/forms/filtersets.py:260 -#: netbox/circuits/forms/model_forms.py:111 -#: netbox/circuits/forms/model_forms.py:133 -#: netbox/circuits/forms/model_forms.py:199 -#: netbox/circuits/tables/circuits.py:104 -#: netbox/circuits/tables/circuits.py:164 netbox/dcim/forms/connections.py:73 -#: netbox/templates/circuits/circuit.html:15 -#: netbox/templates/circuits/circuitgroupassignment.html:26 -#: netbox/templates/circuits/circuittermination.html:19 -#: netbox/templates/dcim/inc/cable_termination.html:55 -#: netbox/templates/dcim/trace/circuit.html:4 +#: circuits/filtersets.py:264 circuits/forms/bulk_edit.py:172 +#: circuits/forms/bulk_edit.py:246 circuits/forms/bulk_import.py:115 +#: circuits/forms/filtersets.py:198 circuits/forms/filtersets.py:214 +#: circuits/forms/filtersets.py:260 circuits/forms/model_forms.py:111 +#: circuits/forms/model_forms.py:133 circuits/forms/model_forms.py:199 +#: circuits/tables/circuits.py:104 circuits/tables/circuits.py:164 +#: dcim/forms/connections.py:73 templates/circuits/circuit.html:15 +#: templates/circuits/circuitgroupassignment.html:26 +#: templates/circuits/circuittermination.html:19 +#: templates/dcim/inc/cable_termination.html:55 +#: templates/dcim/trace/circuit.html:4 msgid "Circuit" msgstr "Circuit" -#: netbox/circuits/filtersets.py:278 +#: circuits/filtersets.py:278 msgid "ProviderNetwork (ID)" msgstr "Réseau fournisseur (ID)" -#: netbox/circuits/filtersets.py:335 +#: circuits/filtersets.py:335 msgid "Circuit (ID)" msgstr "Circuit (ID)" -#: netbox/circuits/filtersets.py:341 +#: circuits/filtersets.py:341 msgid "Circuit (CID)" msgstr "Circuit (CID)" -#: netbox/circuits/filtersets.py:345 +#: circuits/filtersets.py:345 msgid "Circuit group (ID)" msgstr "Groupe de circuits (ID)" -#: netbox/circuits/filtersets.py:351 +#: circuits/filtersets.py:351 msgid "Circuit group (slug)" msgstr "Groupe de circuits (slug)" -#: netbox/circuits/forms/bulk_edit.py:30 -#: netbox/circuits/forms/filtersets.py:56 -#: netbox/circuits/forms/model_forms.py:29 -#: netbox/circuits/tables/providers.py:33 netbox/dcim/forms/bulk_edit.py:128 -#: netbox/dcim/forms/filtersets.py:195 netbox/dcim/forms/model_forms.py:123 -#: netbox/dcim/tables/sites.py:94 netbox/ipam/models/asns.py:126 -#: netbox/ipam/tables/asn.py:27 netbox/ipam/views.py:213 -#: netbox/netbox/navigation/menu.py:172 netbox/netbox/navigation/menu.py:175 -#: netbox/templates/circuits/provider.html:23 +#: circuits/forms/bulk_edit.py:30 circuits/forms/filtersets.py:56 +#: circuits/forms/model_forms.py:29 circuits/tables/providers.py:33 +#: dcim/forms/bulk_edit.py:128 dcim/forms/filtersets.py:195 +#: dcim/forms/model_forms.py:123 dcim/tables/sites.py:94 +#: ipam/models/asns.py:126 ipam/tables/asn.py:27 ipam/views.py:213 +#: netbox/navigation/menu.py:172 netbox/navigation/menu.py:175 +#: templates/circuits/provider.html:23 msgid "ASNs" msgstr "Numéros d'AS" -#: netbox/circuits/forms/bulk_edit.py:34 netbox/circuits/forms/bulk_edit.py:56 -#: netbox/circuits/forms/bulk_edit.py:83 -#: netbox/circuits/forms/bulk_edit.py:104 -#: netbox/circuits/forms/bulk_edit.py:164 -#: netbox/circuits/forms/bulk_edit.py:183 -#: netbox/circuits/forms/bulk_edit.py:228 netbox/core/forms/bulk_edit.py:28 -#: netbox/dcim/forms/bulk_create.py:35 netbox/dcim/forms/bulk_edit.py:73 -#: netbox/dcim/forms/bulk_edit.py:92 netbox/dcim/forms/bulk_edit.py:151 -#: netbox/dcim/forms/bulk_edit.py:192 netbox/dcim/forms/bulk_edit.py:210 -#: netbox/dcim/forms/bulk_edit.py:288 netbox/dcim/forms/bulk_edit.py:432 -#: netbox/dcim/forms/bulk_edit.py:466 netbox/dcim/forms/bulk_edit.py:481 -#: netbox/dcim/forms/bulk_edit.py:540 netbox/dcim/forms/bulk_edit.py:584 -#: netbox/dcim/forms/bulk_edit.py:618 netbox/dcim/forms/bulk_edit.py:642 -#: netbox/dcim/forms/bulk_edit.py:715 netbox/dcim/forms/bulk_edit.py:767 -#: netbox/dcim/forms/bulk_edit.py:819 netbox/dcim/forms/bulk_edit.py:842 -#: netbox/dcim/forms/bulk_edit.py:890 netbox/dcim/forms/bulk_edit.py:960 -#: netbox/dcim/forms/bulk_edit.py:1013 netbox/dcim/forms/bulk_edit.py:1048 -#: netbox/dcim/forms/bulk_edit.py:1088 netbox/dcim/forms/bulk_edit.py:1132 -#: netbox/dcim/forms/bulk_edit.py:1177 netbox/dcim/forms/bulk_edit.py:1204 -#: netbox/dcim/forms/bulk_edit.py:1222 netbox/dcim/forms/bulk_edit.py:1240 -#: netbox/dcim/forms/bulk_edit.py:1258 netbox/dcim/forms/bulk_edit.py:1682 -#: netbox/extras/forms/bulk_edit.py:39 netbox/extras/forms/bulk_edit.py:149 -#: netbox/extras/forms/bulk_edit.py:178 netbox/extras/forms/bulk_edit.py:208 -#: netbox/extras/forms/bulk_edit.py:256 netbox/extras/forms/bulk_edit.py:274 -#: netbox/extras/forms/bulk_edit.py:298 netbox/extras/forms/bulk_edit.py:312 -#: netbox/extras/forms/bulk_edit.py:339 netbox/extras/tables/tables.py:79 -#: netbox/ipam/forms/bulk_edit.py:52 netbox/ipam/forms/bulk_edit.py:72 -#: netbox/ipam/forms/bulk_edit.py:92 netbox/ipam/forms/bulk_edit.py:116 -#: netbox/ipam/forms/bulk_edit.py:145 netbox/ipam/forms/bulk_edit.py:174 -#: netbox/ipam/forms/bulk_edit.py:193 netbox/ipam/forms/bulk_edit.py:275 -#: netbox/ipam/forms/bulk_edit.py:320 netbox/ipam/forms/bulk_edit.py:368 -#: netbox/ipam/forms/bulk_edit.py:411 netbox/ipam/forms/bulk_edit.py:427 -#: netbox/ipam/forms/bulk_edit.py:561 netbox/ipam/forms/bulk_edit.py:592 -#: netbox/templates/account/token.html:35 -#: netbox/templates/circuits/circuit.html:59 -#: netbox/templates/circuits/circuitgroup.html:32 -#: netbox/templates/circuits/circuittype.html:26 -#: netbox/templates/circuits/inc/circuit_termination_fields.html:88 -#: netbox/templates/circuits/provider.html:33 -#: netbox/templates/circuits/providernetwork.html:32 -#: netbox/templates/core/datasource.html:54 -#: netbox/templates/core/plugin.html:79 netbox/templates/dcim/cable.html:36 -#: netbox/templates/dcim/consoleport.html:44 -#: netbox/templates/dcim/consoleserverport.html:44 -#: netbox/templates/dcim/device.html:94 -#: netbox/templates/dcim/devicebay.html:32 -#: netbox/templates/dcim/devicerole.html:30 -#: netbox/templates/dcim/devicetype.html:33 -#: netbox/templates/dcim/frontport.html:58 -#: netbox/templates/dcim/interface.html:69 -#: netbox/templates/dcim/inventoryitem.html:60 -#: netbox/templates/dcim/inventoryitemrole.html:22 -#: netbox/templates/dcim/location.html:33 -#: netbox/templates/dcim/manufacturer.html:40 -#: netbox/templates/dcim/module.html:73 -#: netbox/templates/dcim/modulebay.html:42 -#: netbox/templates/dcim/moduletype.html:26 -#: netbox/templates/dcim/platform.html:33 -#: netbox/templates/dcim/powerfeed.html:40 -#: netbox/templates/dcim/poweroutlet.html:40 -#: netbox/templates/dcim/powerpanel.html:30 -#: netbox/templates/dcim/powerport.html:40 netbox/templates/dcim/rack.html:53 -#: netbox/templates/dcim/rackreservation.html:62 -#: netbox/templates/dcim/rackrole.html:26 -#: netbox/templates/dcim/racktype.html:24 -#: netbox/templates/dcim/rearport.html:54 netbox/templates/dcim/region.html:33 -#: netbox/templates/dcim/site.html:60 netbox/templates/dcim/sitegroup.html:33 -#: netbox/templates/dcim/virtualchassis.html:31 -#: netbox/templates/extras/configcontext.html:21 -#: netbox/templates/extras/configtemplate.html:17 -#: netbox/templates/extras/customfield.html:34 -#: netbox/templates/extras/dashboard/widget_add.html:14 -#: netbox/templates/extras/eventrule.html:21 -#: netbox/templates/extras/exporttemplate.html:19 -#: netbox/templates/extras/notificationgroup.html:20 -#: netbox/templates/extras/savedfilter.html:17 -#: netbox/templates/extras/script_list.html:45 -#: netbox/templates/extras/tag.html:20 netbox/templates/extras/webhook.html:17 -#: netbox/templates/generic/bulk_import.html:120 -#: netbox/templates/ipam/aggregate.html:43 netbox/templates/ipam/asn.html:42 -#: netbox/templates/ipam/asnrange.html:38 -#: netbox/templates/ipam/fhrpgroup.html:34 -#: netbox/templates/ipam/ipaddress.html:55 -#: netbox/templates/ipam/iprange.html:67 netbox/templates/ipam/prefix.html:81 -#: netbox/templates/ipam/rir.html:26 netbox/templates/ipam/role.html:26 -#: netbox/templates/ipam/routetarget.html:21 -#: netbox/templates/ipam/service.html:50 -#: netbox/templates/ipam/servicetemplate.html:27 -#: netbox/templates/ipam/vlan.html:62 netbox/templates/ipam/vlangroup.html:34 -#: netbox/templates/ipam/vrf.html:33 netbox/templates/tenancy/contact.html:67 -#: netbox/templates/tenancy/contactgroup.html:25 -#: netbox/templates/tenancy/contactrole.html:22 -#: netbox/templates/tenancy/tenant.html:24 -#: netbox/templates/tenancy/tenantgroup.html:33 -#: netbox/templates/users/group.html:21 -#: netbox/templates/users/objectpermission.html:21 -#: netbox/templates/users/token.html:27 -#: netbox/templates/virtualization/cluster.html:25 -#: netbox/templates/virtualization/clustergroup.html:26 -#: netbox/templates/virtualization/clustertype.html:26 -#: netbox/templates/virtualization/virtualdisk.html:39 -#: netbox/templates/virtualization/virtualmachine.html:31 -#: netbox/templates/virtualization/vminterface.html:51 -#: netbox/templates/vpn/ikepolicy.html:17 -#: netbox/templates/vpn/ikeproposal.html:17 -#: netbox/templates/vpn/ipsecpolicy.html:17 -#: netbox/templates/vpn/ipsecprofile.html:17 -#: netbox/templates/vpn/ipsecprofile.html:40 -#: netbox/templates/vpn/ipsecprofile.html:73 -#: netbox/templates/vpn/ipsecproposal.html:17 -#: netbox/templates/vpn/l2vpn.html:26 netbox/templates/vpn/tunnel.html:33 -#: netbox/templates/vpn/tunnelgroup.html:30 -#: netbox/templates/wireless/wirelesslan.html:26 -#: netbox/templates/wireless/wirelesslangroup.html:33 -#: netbox/templates/wireless/wirelesslink.html:34 -#: netbox/tenancy/forms/bulk_edit.py:32 netbox/tenancy/forms/bulk_edit.py:80 -#: netbox/tenancy/forms/bulk_edit.py:122 netbox/users/forms/bulk_edit.py:64 -#: netbox/users/forms/bulk_edit.py:82 netbox/users/forms/bulk_edit.py:112 -#: netbox/virtualization/forms/bulk_edit.py:32 -#: netbox/virtualization/forms/bulk_edit.py:46 -#: netbox/virtualization/forms/bulk_edit.py:100 -#: netbox/virtualization/forms/bulk_edit.py:177 -#: netbox/virtualization/forms/bulk_edit.py:228 -#: netbox/virtualization/forms/bulk_edit.py:337 -#: netbox/vpn/forms/bulk_edit.py:28 netbox/vpn/forms/bulk_edit.py:64 -#: netbox/vpn/forms/bulk_edit.py:121 netbox/vpn/forms/bulk_edit.py:155 -#: netbox/vpn/forms/bulk_edit.py:190 netbox/vpn/forms/bulk_edit.py:215 -#: netbox/vpn/forms/bulk_edit.py:247 netbox/vpn/forms/bulk_edit.py:274 -#: netbox/wireless/forms/bulk_edit.py:29 netbox/wireless/forms/bulk_edit.py:82 -#: netbox/wireless/forms/bulk_edit.py:140 +#: circuits/forms/bulk_edit.py:34 circuits/forms/bulk_edit.py:56 +#: circuits/forms/bulk_edit.py:83 circuits/forms/bulk_edit.py:104 +#: circuits/forms/bulk_edit.py:164 circuits/forms/bulk_edit.py:183 +#: circuits/forms/bulk_edit.py:228 core/forms/bulk_edit.py:28 +#: dcim/forms/bulk_create.py:35 dcim/forms/bulk_edit.py:73 +#: dcim/forms/bulk_edit.py:92 dcim/forms/bulk_edit.py:151 +#: dcim/forms/bulk_edit.py:192 dcim/forms/bulk_edit.py:210 +#: dcim/forms/bulk_edit.py:288 dcim/forms/bulk_edit.py:432 +#: dcim/forms/bulk_edit.py:466 dcim/forms/bulk_edit.py:481 +#: dcim/forms/bulk_edit.py:540 dcim/forms/bulk_edit.py:584 +#: dcim/forms/bulk_edit.py:618 dcim/forms/bulk_edit.py:642 +#: dcim/forms/bulk_edit.py:715 dcim/forms/bulk_edit.py:767 +#: dcim/forms/bulk_edit.py:819 dcim/forms/bulk_edit.py:842 +#: dcim/forms/bulk_edit.py:890 dcim/forms/bulk_edit.py:960 +#: dcim/forms/bulk_edit.py:1013 dcim/forms/bulk_edit.py:1048 +#: dcim/forms/bulk_edit.py:1088 dcim/forms/bulk_edit.py:1132 +#: dcim/forms/bulk_edit.py:1177 dcim/forms/bulk_edit.py:1204 +#: dcim/forms/bulk_edit.py:1222 dcim/forms/bulk_edit.py:1240 +#: dcim/forms/bulk_edit.py:1258 dcim/forms/bulk_edit.py:1682 +#: extras/forms/bulk_edit.py:39 extras/forms/bulk_edit.py:149 +#: extras/forms/bulk_edit.py:178 extras/forms/bulk_edit.py:208 +#: extras/forms/bulk_edit.py:256 extras/forms/bulk_edit.py:274 +#: extras/forms/bulk_edit.py:298 extras/forms/bulk_edit.py:312 +#: extras/forms/bulk_edit.py:339 extras/tables/tables.py:79 +#: ipam/forms/bulk_edit.py:53 ipam/forms/bulk_edit.py:73 +#: ipam/forms/bulk_edit.py:93 ipam/forms/bulk_edit.py:117 +#: ipam/forms/bulk_edit.py:146 ipam/forms/bulk_edit.py:175 +#: ipam/forms/bulk_edit.py:194 ipam/forms/bulk_edit.py:276 +#: ipam/forms/bulk_edit.py:321 ipam/forms/bulk_edit.py:369 +#: ipam/forms/bulk_edit.py:412 ipam/forms/bulk_edit.py:428 +#: ipam/forms/bulk_edit.py:516 ipam/forms/bulk_edit.py:547 +#: templates/account/token.html:35 templates/circuits/circuit.html:59 +#: templates/circuits/circuitgroup.html:32 +#: templates/circuits/circuittype.html:26 +#: templates/circuits/inc/circuit_termination_fields.html:88 +#: templates/circuits/provider.html:33 +#: templates/circuits/providernetwork.html:32 +#: templates/core/datasource.html:54 templates/core/plugin.html:80 +#: templates/dcim/cable.html:36 templates/dcim/consoleport.html:44 +#: templates/dcim/consoleserverport.html:44 templates/dcim/device.html:94 +#: templates/dcim/devicebay.html:32 templates/dcim/devicerole.html:30 +#: templates/dcim/devicetype.html:33 templates/dcim/frontport.html:58 +#: templates/dcim/interface.html:69 templates/dcim/inventoryitem.html:60 +#: templates/dcim/inventoryitemrole.html:22 templates/dcim/location.html:33 +#: templates/dcim/manufacturer.html:40 templates/dcim/module.html:73 +#: templates/dcim/modulebay.html:42 templates/dcim/moduletype.html:37 +#: templates/dcim/platform.html:33 templates/dcim/powerfeed.html:40 +#: templates/dcim/poweroutlet.html:40 templates/dcim/powerpanel.html:30 +#: templates/dcim/powerport.html:40 templates/dcim/rack.html:53 +#: templates/dcim/rackreservation.html:62 templates/dcim/rackrole.html:26 +#: templates/dcim/racktype.html:24 templates/dcim/rearport.html:54 +#: templates/dcim/region.html:33 templates/dcim/site.html:60 +#: templates/dcim/sitegroup.html:33 templates/dcim/virtualchassis.html:31 +#: templates/extras/configcontext.html:21 +#: templates/extras/configtemplate.html:17 +#: templates/extras/customfield.html:34 +#: templates/extras/dashboard/widget_add.html:14 +#: templates/extras/eventrule.html:21 templates/extras/exporttemplate.html:19 +#: templates/extras/notificationgroup.html:20 +#: templates/extras/savedfilter.html:17 templates/extras/script_list.html:45 +#: templates/extras/tag.html:20 templates/extras/webhook.html:17 +#: templates/generic/bulk_import.html:120 templates/ipam/aggregate.html:43 +#: templates/ipam/asn.html:42 templates/ipam/asnrange.html:38 +#: templates/ipam/fhrpgroup.html:34 templates/ipam/ipaddress.html:55 +#: templates/ipam/iprange.html:67 templates/ipam/prefix.html:81 +#: templates/ipam/rir.html:26 templates/ipam/role.html:26 +#: templates/ipam/routetarget.html:21 templates/ipam/service.html:50 +#: templates/ipam/servicetemplate.html:27 templates/ipam/vlan.html:62 +#: templates/ipam/vlangroup.html:34 templates/ipam/vrf.html:33 +#: templates/tenancy/contact.html:67 templates/tenancy/contactgroup.html:25 +#: templates/tenancy/contactrole.html:22 templates/tenancy/tenant.html:24 +#: templates/tenancy/tenantgroup.html:33 templates/users/group.html:21 +#: templates/users/objectpermission.html:21 templates/users/token.html:27 +#: templates/virtualization/cluster.html:25 +#: templates/virtualization/clustergroup.html:26 +#: templates/virtualization/clustertype.html:26 +#: templates/virtualization/virtualdisk.html:39 +#: templates/virtualization/virtualmachine.html:31 +#: templates/virtualization/vminterface.html:51 +#: templates/vpn/ikepolicy.html:17 templates/vpn/ikeproposal.html:17 +#: templates/vpn/ipsecpolicy.html:17 templates/vpn/ipsecprofile.html:17 +#: templates/vpn/ipsecprofile.html:40 templates/vpn/ipsecprofile.html:73 +#: templates/vpn/ipsecproposal.html:17 templates/vpn/l2vpn.html:26 +#: templates/vpn/tunnel.html:33 templates/vpn/tunnelgroup.html:30 +#: templates/wireless/wirelesslan.html:26 +#: templates/wireless/wirelesslangroup.html:33 +#: templates/wireless/wirelesslink.html:34 tenancy/forms/bulk_edit.py:32 +#: tenancy/forms/bulk_edit.py:80 tenancy/forms/bulk_edit.py:122 +#: users/forms/bulk_edit.py:64 users/forms/bulk_edit.py:82 +#: users/forms/bulk_edit.py:112 virtualization/forms/bulk_edit.py:32 +#: virtualization/forms/bulk_edit.py:46 virtualization/forms/bulk_edit.py:100 +#: virtualization/forms/bulk_edit.py:177 virtualization/forms/bulk_edit.py:228 +#: virtualization/forms/bulk_edit.py:337 vpn/forms/bulk_edit.py:28 +#: vpn/forms/bulk_edit.py:64 vpn/forms/bulk_edit.py:121 +#: vpn/forms/bulk_edit.py:155 vpn/forms/bulk_edit.py:190 +#: vpn/forms/bulk_edit.py:215 vpn/forms/bulk_edit.py:247 +#: vpn/forms/bulk_edit.py:274 wireless/forms/bulk_edit.py:29 +#: wireless/forms/bulk_edit.py:82 wireless/forms/bulk_edit.py:140 msgid "Description" msgstr "Description" -#: netbox/circuits/forms/bulk_edit.py:51 netbox/circuits/forms/bulk_edit.py:73 -#: netbox/circuits/forms/bulk_edit.py:123 -#: netbox/circuits/forms/bulk_import.py:36 -#: netbox/circuits/forms/bulk_import.py:51 -#: netbox/circuits/forms/bulk_import.py:74 -#: netbox/circuits/forms/filtersets.py:70 -#: netbox/circuits/forms/filtersets.py:88 -#: netbox/circuits/forms/filtersets.py:116 -#: netbox/circuits/forms/filtersets.py:131 -#: netbox/circuits/forms/filtersets.py:199 -#: netbox/circuits/forms/filtersets.py:232 -#: netbox/circuits/forms/filtersets.py:255 -#: netbox/circuits/forms/model_forms.py:47 -#: netbox/circuits/forms/model_forms.py:61 -#: netbox/circuits/forms/model_forms.py:93 -#: netbox/circuits/tables/circuits.py:58 -#: netbox/circuits/tables/circuits.py:108 -#: netbox/circuits/tables/circuits.py:160 -#: netbox/circuits/tables/providers.py:72 -#: netbox/circuits/tables/providers.py:103 -#: netbox/templates/circuits/circuit.html:18 -#: netbox/templates/circuits/circuittermination.html:25 -#: netbox/templates/circuits/provider.html:20 -#: netbox/templates/circuits/provideraccount.html:20 -#: netbox/templates/circuits/providernetwork.html:20 -#: netbox/templates/dcim/inc/cable_termination.html:51 +#: circuits/forms/bulk_edit.py:51 circuits/forms/bulk_edit.py:73 +#: circuits/forms/bulk_edit.py:123 circuits/forms/bulk_import.py:36 +#: circuits/forms/bulk_import.py:51 circuits/forms/bulk_import.py:74 +#: circuits/forms/filtersets.py:70 circuits/forms/filtersets.py:88 +#: circuits/forms/filtersets.py:116 circuits/forms/filtersets.py:131 +#: circuits/forms/filtersets.py:199 circuits/forms/filtersets.py:232 +#: circuits/forms/filtersets.py:255 circuits/forms/model_forms.py:47 +#: circuits/forms/model_forms.py:61 circuits/forms/model_forms.py:93 +#: circuits/tables/circuits.py:58 circuits/tables/circuits.py:108 +#: circuits/tables/circuits.py:160 circuits/tables/providers.py:72 +#: circuits/tables/providers.py:103 templates/circuits/circuit.html:18 +#: templates/circuits/circuittermination.html:25 +#: templates/circuits/provider.html:20 +#: templates/circuits/provideraccount.html:20 +#: templates/circuits/providernetwork.html:20 +#: templates/dcim/inc/cable_termination.html:51 msgid "Provider" msgstr "Prestataire" -#: netbox/circuits/forms/bulk_edit.py:80 -#: netbox/circuits/forms/filtersets.py:91 -#: netbox/templates/circuits/providernetwork.html:28 +#: circuits/forms/bulk_edit.py:80 circuits/forms/filtersets.py:91 +#: templates/circuits/providernetwork.html:28 msgid "Service ID" msgstr "Identifiant du service" -#: netbox/circuits/forms/bulk_edit.py:100 -#: netbox/circuits/forms/filtersets.py:107 netbox/dcim/forms/bulk_edit.py:206 -#: netbox/dcim/forms/bulk_edit.py:604 netbox/dcim/forms/bulk_edit.py:804 -#: netbox/dcim/forms/bulk_edit.py:1173 netbox/dcim/forms/bulk_edit.py:1200 -#: netbox/dcim/forms/bulk_edit.py:1678 netbox/dcim/forms/filtersets.py:1064 -#: netbox/dcim/forms/filtersets.py:1455 netbox/dcim/forms/filtersets.py:1479 -#: netbox/dcim/tables/devices.py:704 netbox/dcim/tables/devices.py:761 -#: netbox/dcim/tables/devices.py:1003 netbox/dcim/tables/devicetypes.py:249 -#: netbox/dcim/tables/devicetypes.py:264 netbox/dcim/tables/racks.py:33 -#: netbox/extras/forms/bulk_edit.py:270 netbox/extras/tables/tables.py:443 -#: netbox/templates/circuits/circuittype.html:30 -#: netbox/templates/dcim/cable.html:40 -#: netbox/templates/dcim/devicerole.html:34 -#: netbox/templates/dcim/frontport.html:40 -#: netbox/templates/dcim/inventoryitemrole.html:26 -#: netbox/templates/dcim/rackrole.html:30 -#: netbox/templates/dcim/rearport.html:40 netbox/templates/extras/tag.html:26 +#: circuits/forms/bulk_edit.py:100 circuits/forms/filtersets.py:107 +#: dcim/forms/bulk_edit.py:206 dcim/forms/bulk_edit.py:604 +#: dcim/forms/bulk_edit.py:804 dcim/forms/bulk_edit.py:1173 +#: dcim/forms/bulk_edit.py:1200 dcim/forms/bulk_edit.py:1678 +#: dcim/forms/filtersets.py:1064 dcim/forms/filtersets.py:1455 +#: dcim/forms/filtersets.py:1479 dcim/tables/devices.py:704 +#: dcim/tables/devices.py:761 dcim/tables/devices.py:1003 +#: dcim/tables/devicetypes.py:249 dcim/tables/devicetypes.py:264 +#: dcim/tables/racks.py:33 extras/forms/bulk_edit.py:270 +#: extras/tables/tables.py:443 templates/circuits/circuittype.html:30 +#: templates/dcim/cable.html:40 templates/dcim/devicerole.html:34 +#: templates/dcim/frontport.html:40 templates/dcim/inventoryitemrole.html:26 +#: templates/dcim/rackrole.html:30 templates/dcim/rearport.html:40 +#: templates/extras/tag.html:26 msgid "Color" msgstr "Couleur" -#: netbox/circuits/forms/bulk_edit.py:118 -#: netbox/circuits/forms/bulk_import.py:87 -#: netbox/circuits/forms/filtersets.py:126 netbox/core/forms/bulk_edit.py:18 -#: netbox/core/forms/filtersets.py:33 netbox/core/tables/change_logging.py:32 -#: netbox/core/tables/data.py:20 netbox/core/tables/jobs.py:18 -#: netbox/dcim/forms/bulk_edit.py:782 netbox/dcim/forms/bulk_edit.py:921 -#: netbox/dcim/forms/bulk_edit.py:989 netbox/dcim/forms/bulk_edit.py:1008 -#: netbox/dcim/forms/bulk_edit.py:1031 netbox/dcim/forms/bulk_edit.py:1073 -#: netbox/dcim/forms/bulk_edit.py:1117 netbox/dcim/forms/bulk_edit.py:1168 -#: netbox/dcim/forms/bulk_edit.py:1195 netbox/dcim/forms/bulk_import.py:188 -#: netbox/dcim/forms/bulk_import.py:260 netbox/dcim/forms/bulk_import.py:708 -#: netbox/dcim/forms/bulk_import.py:734 netbox/dcim/forms/bulk_import.py:760 -#: netbox/dcim/forms/bulk_import.py:780 netbox/dcim/forms/bulk_import.py:863 -#: netbox/dcim/forms/bulk_import.py:957 netbox/dcim/forms/bulk_import.py:999 -#: netbox/dcim/forms/bulk_import.py:1213 netbox/dcim/forms/bulk_import.py:1376 -#: netbox/dcim/forms/filtersets.py:955 netbox/dcim/forms/filtersets.py:1054 -#: netbox/dcim/forms/filtersets.py:1175 netbox/dcim/forms/filtersets.py:1247 -#: netbox/dcim/forms/filtersets.py:1272 netbox/dcim/forms/filtersets.py:1296 -#: netbox/dcim/forms/filtersets.py:1316 netbox/dcim/forms/filtersets.py:1353 -#: netbox/dcim/forms/filtersets.py:1450 netbox/dcim/forms/filtersets.py:1474 -#: netbox/dcim/forms/model_forms.py:703 netbox/dcim/forms/model_forms.py:709 -#: netbox/dcim/forms/object_import.py:84 -#: netbox/dcim/forms/object_import.py:113 -#: netbox/dcim/forms/object_import.py:145 netbox/dcim/tables/devices.py:178 -#: netbox/dcim/tables/devices.py:814 netbox/dcim/tables/power.py:77 -#: netbox/dcim/tables/racks.py:138 netbox/extras/forms/bulk_import.py:42 -#: netbox/extras/tables/tables.py:405 netbox/extras/tables/tables.py:465 -#: netbox/netbox/tables/tables.py:240 -#: netbox/templates/circuits/circuit.html:30 -#: netbox/templates/core/datasource.html:38 -#: netbox/templates/dcim/cable.html:15 -#: netbox/templates/dcim/consoleport.html:36 -#: netbox/templates/dcim/consoleserverport.html:36 -#: netbox/templates/dcim/frontport.html:36 -#: netbox/templates/dcim/interface.html:46 -#: netbox/templates/dcim/interface.html:169 -#: netbox/templates/dcim/interface.html:311 -#: netbox/templates/dcim/powerfeed.html:32 -#: netbox/templates/dcim/poweroutlet.html:36 -#: netbox/templates/dcim/powerport.html:36 -#: netbox/templates/dcim/rearport.html:36 -#: netbox/templates/extras/eventrule.html:74 -#: netbox/templates/virtualization/cluster.html:17 -#: netbox/templates/vpn/l2vpn.html:22 -#: netbox/templates/wireless/inc/authentication_attrs.html:8 -#: netbox/templates/wireless/inc/wirelesslink_interface.html:14 -#: netbox/virtualization/forms/bulk_edit.py:60 -#: netbox/virtualization/forms/bulk_import.py:41 -#: netbox/virtualization/forms/filtersets.py:54 -#: netbox/virtualization/forms/model_forms.py:62 -#: netbox/virtualization/tables/clusters.py:66 -#: netbox/vpn/forms/bulk_edit.py:264 netbox/vpn/forms/bulk_import.py:264 -#: netbox/vpn/forms/filtersets.py:217 netbox/vpn/forms/model_forms.py:84 -#: netbox/vpn/forms/model_forms.py:119 netbox/vpn/forms/model_forms.py:231 +#: circuits/forms/bulk_edit.py:118 circuits/forms/bulk_import.py:87 +#: circuits/forms/filtersets.py:126 core/forms/bulk_edit.py:18 +#: core/forms/filtersets.py:33 core/tables/change_logging.py:32 +#: core/tables/data.py:20 core/tables/jobs.py:18 dcim/forms/bulk_edit.py:782 +#: dcim/forms/bulk_edit.py:921 dcim/forms/bulk_edit.py:989 +#: dcim/forms/bulk_edit.py:1008 dcim/forms/bulk_edit.py:1031 +#: dcim/forms/bulk_edit.py:1073 dcim/forms/bulk_edit.py:1117 +#: dcim/forms/bulk_edit.py:1168 dcim/forms/bulk_edit.py:1195 +#: dcim/forms/bulk_import.py:188 dcim/forms/bulk_import.py:260 +#: dcim/forms/bulk_import.py:708 dcim/forms/bulk_import.py:734 +#: dcim/forms/bulk_import.py:760 dcim/forms/bulk_import.py:780 +#: dcim/forms/bulk_import.py:863 dcim/forms/bulk_import.py:957 +#: dcim/forms/bulk_import.py:999 dcim/forms/bulk_import.py:1213 +#: dcim/forms/bulk_import.py:1376 dcim/forms/filtersets.py:955 +#: dcim/forms/filtersets.py:1054 dcim/forms/filtersets.py:1175 +#: dcim/forms/filtersets.py:1247 dcim/forms/filtersets.py:1272 +#: dcim/forms/filtersets.py:1296 dcim/forms/filtersets.py:1316 +#: dcim/forms/filtersets.py:1353 dcim/forms/filtersets.py:1450 +#: dcim/forms/filtersets.py:1474 dcim/forms/model_forms.py:703 +#: dcim/forms/model_forms.py:709 dcim/forms/object_import.py:84 +#: dcim/forms/object_import.py:113 dcim/forms/object_import.py:145 +#: dcim/tables/devices.py:178 dcim/tables/devices.py:814 +#: dcim/tables/power.py:77 dcim/tables/racks.py:138 +#: extras/forms/bulk_import.py:42 extras/tables/tables.py:405 +#: extras/tables/tables.py:465 netbox/tables/tables.py:240 +#: templates/circuits/circuit.html:30 templates/core/datasource.html:38 +#: templates/dcim/cable.html:15 templates/dcim/consoleport.html:36 +#: templates/dcim/consoleserverport.html:36 templates/dcim/frontport.html:36 +#: templates/dcim/interface.html:46 templates/dcim/interface.html:169 +#: templates/dcim/interface.html:311 templates/dcim/powerfeed.html:32 +#: templates/dcim/poweroutlet.html:36 templates/dcim/powerport.html:36 +#: templates/dcim/rearport.html:36 templates/extras/eventrule.html:74 +#: templates/virtualization/cluster.html:17 templates/vpn/l2vpn.html:22 +#: templates/wireless/inc/authentication_attrs.html:8 +#: templates/wireless/inc/wirelesslink_interface.html:14 +#: virtualization/forms/bulk_edit.py:60 virtualization/forms/bulk_import.py:41 +#: virtualization/forms/filtersets.py:54 +#: virtualization/forms/model_forms.py:62 virtualization/tables/clusters.py:66 +#: vpn/forms/bulk_edit.py:264 vpn/forms/bulk_import.py:264 +#: vpn/forms/filtersets.py:217 vpn/forms/model_forms.py:84 +#: vpn/forms/model_forms.py:119 vpn/forms/model_forms.py:231 msgid "Type" msgstr "Type" -#: netbox/circuits/forms/bulk_edit.py:128 -#: netbox/circuits/forms/bulk_import.py:80 -#: netbox/circuits/forms/filtersets.py:139 -#: netbox/circuits/forms/model_forms.py:98 +#: circuits/forms/bulk_edit.py:128 circuits/forms/bulk_import.py:80 +#: circuits/forms/filtersets.py:139 circuits/forms/model_forms.py:98 msgid "Provider account" msgstr "Identifiant de compte du prestataire" -#: netbox/circuits/forms/bulk_edit.py:136 -#: netbox/circuits/forms/bulk_import.py:93 -#: netbox/circuits/forms/filtersets.py:150 netbox/core/forms/filtersets.py:38 -#: netbox/core/forms/filtersets.py:79 netbox/core/tables/data.py:23 -#: netbox/core/tables/jobs.py:26 netbox/core/tables/tasks.py:88 -#: netbox/dcim/forms/bulk_edit.py:106 netbox/dcim/forms/bulk_edit.py:181 -#: netbox/dcim/forms/bulk_edit.py:351 netbox/dcim/forms/bulk_edit.py:700 -#: netbox/dcim/forms/bulk_edit.py:756 netbox/dcim/forms/bulk_edit.py:788 -#: netbox/dcim/forms/bulk_edit.py:915 netbox/dcim/forms/bulk_edit.py:1701 -#: netbox/dcim/forms/bulk_import.py:88 netbox/dcim/forms/bulk_import.py:147 -#: netbox/dcim/forms/bulk_import.py:248 netbox/dcim/forms/bulk_import.py:505 -#: netbox/dcim/forms/bulk_import.py:659 netbox/dcim/forms/bulk_import.py:1207 -#: netbox/dcim/forms/bulk_import.py:1371 netbox/dcim/forms/bulk_import.py:1435 -#: netbox/dcim/forms/filtersets.py:178 netbox/dcim/forms/filtersets.py:237 -#: netbox/dcim/forms/filtersets.py:359 netbox/dcim/forms/filtersets.py:799 -#: netbox/dcim/forms/filtersets.py:924 netbox/dcim/forms/filtersets.py:958 -#: netbox/dcim/forms/filtersets.py:1059 netbox/dcim/forms/filtersets.py:1170 -#: netbox/dcim/tables/devices.py:140 netbox/dcim/tables/devices.py:817 -#: netbox/dcim/tables/devices.py:1063 netbox/dcim/tables/modules.py:69 -#: netbox/dcim/tables/power.py:74 netbox/dcim/tables/racks.py:126 -#: netbox/dcim/tables/sites.py:82 netbox/dcim/tables/sites.py:138 -#: netbox/ipam/forms/bulk_edit.py:255 netbox/ipam/forms/bulk_edit.py:305 -#: netbox/ipam/forms/bulk_edit.py:353 netbox/ipam/forms/bulk_edit.py:551 -#: netbox/ipam/forms/bulk_import.py:192 netbox/ipam/forms/bulk_import.py:257 -#: netbox/ipam/forms/bulk_import.py:293 netbox/ipam/forms/bulk_import.py:450 -#: netbox/ipam/forms/filtersets.py:210 netbox/ipam/forms/filtersets.py:281 -#: netbox/ipam/forms/filtersets.py:355 netbox/ipam/forms/filtersets.py:501 -#: netbox/ipam/forms/model_forms.py:468 netbox/ipam/tables/ip.py:237 -#: netbox/ipam/tables/ip.py:312 netbox/ipam/tables/ip.py:363 -#: netbox/ipam/tables/ip.py:426 netbox/ipam/tables/ip.py:453 -#: netbox/ipam/tables/vlans.py:126 netbox/ipam/tables/vlans.py:232 -#: netbox/templates/circuits/circuit.html:34 -#: netbox/templates/core/datasource.html:46 netbox/templates/core/job.html:48 -#: netbox/templates/core/rq_task.html:81 netbox/templates/core/system.html:18 -#: netbox/templates/dcim/cable.html:19 netbox/templates/dcim/device.html:178 -#: netbox/templates/dcim/location.html:45 netbox/templates/dcim/module.html:69 -#: netbox/templates/dcim/powerfeed.html:36 netbox/templates/dcim/rack.html:41 -#: netbox/templates/dcim/site.html:43 -#: netbox/templates/extras/script_list.html:47 -#: netbox/templates/ipam/ipaddress.html:37 -#: netbox/templates/ipam/iprange.html:54 netbox/templates/ipam/prefix.html:73 -#: netbox/templates/ipam/vlan.html:48 -#: netbox/templates/virtualization/cluster.html:21 -#: netbox/templates/virtualization/virtualmachine.html:19 -#: netbox/templates/vpn/tunnel.html:25 -#: netbox/templates/wireless/wirelesslan.html:22 -#: netbox/templates/wireless/wirelesslink.html:17 -#: netbox/users/forms/filtersets.py:32 netbox/users/forms/model_forms.py:194 -#: netbox/virtualization/forms/bulk_edit.py:70 -#: netbox/virtualization/forms/bulk_edit.py:118 -#: netbox/virtualization/forms/bulk_import.py:54 -#: netbox/virtualization/forms/bulk_import.py:80 -#: netbox/virtualization/forms/filtersets.py:62 -#: netbox/virtualization/forms/filtersets.py:160 -#: netbox/virtualization/tables/clusters.py:74 -#: netbox/virtualization/tables/virtualmachines.py:60 -#: netbox/vpn/forms/bulk_edit.py:39 netbox/vpn/forms/bulk_import.py:37 -#: netbox/vpn/forms/filtersets.py:47 netbox/vpn/tables/tunnels.py:48 -#: netbox/wireless/forms/bulk_edit.py:43 -#: netbox/wireless/forms/bulk_edit.py:105 -#: netbox/wireless/forms/bulk_import.py:43 -#: netbox/wireless/forms/bulk_import.py:84 -#: netbox/wireless/forms/filtersets.py:49 -#: netbox/wireless/forms/filtersets.py:83 -#: netbox/wireless/tables/wirelesslan.py:52 -#: netbox/wireless/tables/wirelesslink.py:20 +#: circuits/forms/bulk_edit.py:136 circuits/forms/bulk_import.py:93 +#: circuits/forms/filtersets.py:150 core/forms/filtersets.py:38 +#: core/forms/filtersets.py:79 core/tables/data.py:23 core/tables/jobs.py:26 +#: core/tables/tasks.py:88 dcim/forms/bulk_edit.py:106 +#: dcim/forms/bulk_edit.py:181 dcim/forms/bulk_edit.py:351 +#: dcim/forms/bulk_edit.py:700 dcim/forms/bulk_edit.py:756 +#: dcim/forms/bulk_edit.py:788 dcim/forms/bulk_edit.py:915 +#: dcim/forms/bulk_edit.py:1701 dcim/forms/bulk_import.py:88 +#: dcim/forms/bulk_import.py:147 dcim/forms/bulk_import.py:248 +#: dcim/forms/bulk_import.py:505 dcim/forms/bulk_import.py:659 +#: dcim/forms/bulk_import.py:1207 dcim/forms/bulk_import.py:1371 +#: dcim/forms/bulk_import.py:1435 dcim/forms/filtersets.py:178 +#: dcim/forms/filtersets.py:237 dcim/forms/filtersets.py:359 +#: dcim/forms/filtersets.py:799 dcim/forms/filtersets.py:924 +#: dcim/forms/filtersets.py:958 dcim/forms/filtersets.py:1059 +#: dcim/forms/filtersets.py:1170 dcim/tables/devices.py:140 +#: dcim/tables/devices.py:817 dcim/tables/devices.py:1063 +#: dcim/tables/modules.py:69 dcim/tables/power.py:74 dcim/tables/racks.py:126 +#: dcim/tables/sites.py:82 dcim/tables/sites.py:138 +#: ipam/forms/bulk_edit.py:256 ipam/forms/bulk_edit.py:306 +#: ipam/forms/bulk_edit.py:354 ipam/forms/bulk_edit.py:506 +#: ipam/forms/bulk_import.py:192 ipam/forms/bulk_import.py:257 +#: ipam/forms/bulk_import.py:293 ipam/forms/bulk_import.py:450 +#: ipam/forms/filtersets.py:210 ipam/forms/filtersets.py:281 +#: ipam/forms/filtersets.py:355 ipam/forms/filtersets.py:501 +#: ipam/forms/model_forms.py:468 ipam/tables/ip.py:237 ipam/tables/ip.py:312 +#: ipam/tables/ip.py:363 ipam/tables/ip.py:426 ipam/tables/ip.py:453 +#: ipam/tables/vlans.py:126 ipam/tables/vlans.py:232 +#: templates/circuits/circuit.html:34 templates/core/datasource.html:46 +#: templates/core/job.html:48 templates/core/rq_task.html:81 +#: templates/core/system.html:18 templates/dcim/cable.html:19 +#: templates/dcim/device.html:178 templates/dcim/location.html:45 +#: templates/dcim/module.html:69 templates/dcim/powerfeed.html:36 +#: templates/dcim/rack.html:41 templates/dcim/site.html:43 +#: templates/extras/script_list.html:47 templates/ipam/ipaddress.html:37 +#: templates/ipam/iprange.html:54 templates/ipam/prefix.html:73 +#: templates/ipam/vlan.html:48 templates/virtualization/cluster.html:21 +#: templates/virtualization/virtualmachine.html:19 +#: templates/vpn/tunnel.html:25 templates/wireless/wirelesslan.html:22 +#: templates/wireless/wirelesslink.html:17 users/forms/filtersets.py:32 +#: users/forms/model_forms.py:194 virtualization/forms/bulk_edit.py:70 +#: virtualization/forms/bulk_edit.py:118 +#: virtualization/forms/bulk_import.py:54 +#: virtualization/forms/bulk_import.py:80 +#: virtualization/forms/filtersets.py:62 +#: virtualization/forms/filtersets.py:160 virtualization/tables/clusters.py:74 +#: virtualization/tables/virtualmachines.py:60 vpn/forms/bulk_edit.py:39 +#: vpn/forms/bulk_import.py:37 vpn/forms/filtersets.py:47 +#: vpn/tables/tunnels.py:48 wireless/forms/bulk_edit.py:43 +#: wireless/forms/bulk_edit.py:105 wireless/forms/bulk_import.py:43 +#: wireless/forms/bulk_import.py:84 wireless/forms/filtersets.py:49 +#: wireless/forms/filtersets.py:83 wireless/tables/wirelesslan.py:52 +#: wireless/tables/wirelesslink.py:20 msgid "Status" msgstr "Statut" -#: netbox/circuits/forms/bulk_edit.py:142 -#: netbox/circuits/forms/bulk_edit.py:233 -#: netbox/circuits/forms/bulk_import.py:98 -#: netbox/circuits/forms/bulk_import.py:158 -#: netbox/circuits/forms/filtersets.py:119 -#: netbox/circuits/forms/filtersets.py:241 netbox/dcim/forms/bulk_edit.py:122 -#: netbox/dcim/forms/bulk_edit.py:187 netbox/dcim/forms/bulk_edit.py:346 -#: netbox/dcim/forms/bulk_edit.py:461 netbox/dcim/forms/bulk_edit.py:690 -#: netbox/dcim/forms/bulk_edit.py:794 netbox/dcim/forms/bulk_edit.py:1706 -#: netbox/dcim/forms/bulk_import.py:107 netbox/dcim/forms/bulk_import.py:152 -#: netbox/dcim/forms/bulk_import.py:241 netbox/dcim/forms/bulk_import.py:334 -#: netbox/dcim/forms/bulk_import.py:479 netbox/dcim/forms/bulk_import.py:1219 -#: netbox/dcim/forms/bulk_import.py:1428 netbox/dcim/forms/filtersets.py:173 -#: netbox/dcim/forms/filtersets.py:205 netbox/dcim/forms/filtersets.py:323 -#: netbox/dcim/forms/filtersets.py:399 netbox/dcim/forms/filtersets.py:420 -#: netbox/dcim/forms/filtersets.py:722 netbox/dcim/forms/filtersets.py:916 -#: netbox/dcim/forms/filtersets.py:978 netbox/dcim/forms/filtersets.py:1008 -#: netbox/dcim/forms/filtersets.py:1130 netbox/dcim/tables/power.py:88 -#: netbox/extras/filtersets.py:612 netbox/extras/forms/filtersets.py:323 -#: netbox/extras/forms/filtersets.py:396 netbox/ipam/forms/bulk_edit.py:42 -#: netbox/ipam/forms/bulk_edit.py:67 netbox/ipam/forms/bulk_edit.py:111 -#: netbox/ipam/forms/bulk_edit.py:140 netbox/ipam/forms/bulk_edit.py:165 -#: netbox/ipam/forms/bulk_edit.py:250 netbox/ipam/forms/bulk_edit.py:300 -#: netbox/ipam/forms/bulk_edit.py:348 netbox/ipam/forms/bulk_edit.py:546 -#: netbox/ipam/forms/bulk_import.py:38 netbox/ipam/forms/bulk_import.py:67 -#: netbox/ipam/forms/bulk_import.py:95 netbox/ipam/forms/bulk_import.py:115 -#: netbox/ipam/forms/bulk_import.py:135 netbox/ipam/forms/bulk_import.py:164 -#: netbox/ipam/forms/bulk_import.py:250 netbox/ipam/forms/bulk_import.py:286 -#: netbox/ipam/forms/bulk_import.py:443 netbox/ipam/forms/filtersets.py:48 -#: netbox/ipam/forms/filtersets.py:68 netbox/ipam/forms/filtersets.py:100 -#: netbox/ipam/forms/filtersets.py:120 netbox/ipam/forms/filtersets.py:143 -#: netbox/ipam/forms/filtersets.py:174 netbox/ipam/forms/filtersets.py:267 -#: netbox/ipam/forms/filtersets.py:310 netbox/ipam/forms/filtersets.py:469 -#: netbox/ipam/tables/ip.py:456 netbox/ipam/tables/vlans.py:229 -#: netbox/templates/circuits/circuit.html:38 -#: netbox/templates/circuits/circuitgroup.html:36 -#: netbox/templates/dcim/cable.html:23 netbox/templates/dcim/device.html:79 -#: netbox/templates/dcim/location.html:49 -#: netbox/templates/dcim/powerfeed.html:44 netbox/templates/dcim/rack.html:32 -#: netbox/templates/dcim/rackreservation.html:49 -#: netbox/templates/dcim/site.html:47 -#: netbox/templates/dcim/virtualdevicecontext.html:52 -#: netbox/templates/ipam/aggregate.html:30 netbox/templates/ipam/asn.html:33 -#: netbox/templates/ipam/asnrange.html:29 -#: netbox/templates/ipam/ipaddress.html:28 -#: netbox/templates/ipam/iprange.html:58 netbox/templates/ipam/prefix.html:29 -#: netbox/templates/ipam/routetarget.html:17 -#: netbox/templates/ipam/vlan.html:39 netbox/templates/ipam/vrf.html:20 -#: netbox/templates/tenancy/tenant.html:17 -#: netbox/templates/virtualization/cluster.html:33 -#: netbox/templates/virtualization/virtualmachine.html:39 -#: netbox/templates/vpn/l2vpn.html:30 netbox/templates/vpn/tunnel.html:49 -#: netbox/templates/wireless/wirelesslan.html:34 -#: netbox/templates/wireless/wirelesslink.html:25 -#: netbox/tenancy/forms/forms.py:25 netbox/tenancy/forms/forms.py:48 -#: netbox/tenancy/forms/model_forms.py:52 netbox/tenancy/tables/columns.py:64 -#: netbox/virtualization/forms/bulk_edit.py:76 -#: netbox/virtualization/forms/bulk_edit.py:155 -#: netbox/virtualization/forms/bulk_import.py:66 -#: netbox/virtualization/forms/bulk_import.py:115 -#: netbox/virtualization/forms/filtersets.py:47 -#: netbox/virtualization/forms/filtersets.py:105 -#: netbox/vpn/forms/bulk_edit.py:59 netbox/vpn/forms/bulk_edit.py:269 -#: netbox/vpn/forms/bulk_import.py:59 netbox/vpn/forms/bulk_import.py:258 -#: netbox/vpn/forms/filtersets.py:214 netbox/wireless/forms/bulk_edit.py:63 -#: netbox/wireless/forms/bulk_edit.py:110 -#: netbox/wireless/forms/bulk_import.py:55 -#: netbox/wireless/forms/bulk_import.py:97 -#: netbox/wireless/forms/filtersets.py:35 -#: netbox/wireless/forms/filtersets.py:75 +#: circuits/forms/bulk_edit.py:142 circuits/forms/bulk_edit.py:233 +#: circuits/forms/bulk_import.py:98 circuits/forms/bulk_import.py:158 +#: circuits/forms/filtersets.py:119 circuits/forms/filtersets.py:241 +#: dcim/forms/bulk_edit.py:122 dcim/forms/bulk_edit.py:187 +#: dcim/forms/bulk_edit.py:346 dcim/forms/bulk_edit.py:461 +#: dcim/forms/bulk_edit.py:690 dcim/forms/bulk_edit.py:794 +#: dcim/forms/bulk_edit.py:1706 dcim/forms/bulk_import.py:107 +#: dcim/forms/bulk_import.py:152 dcim/forms/bulk_import.py:241 +#: dcim/forms/bulk_import.py:334 dcim/forms/bulk_import.py:479 +#: dcim/forms/bulk_import.py:1219 dcim/forms/bulk_import.py:1428 +#: dcim/forms/filtersets.py:173 dcim/forms/filtersets.py:205 +#: dcim/forms/filtersets.py:323 dcim/forms/filtersets.py:399 +#: dcim/forms/filtersets.py:420 dcim/forms/filtersets.py:722 +#: dcim/forms/filtersets.py:916 dcim/forms/filtersets.py:978 +#: dcim/forms/filtersets.py:1008 dcim/forms/filtersets.py:1130 +#: dcim/tables/power.py:88 extras/filtersets.py:612 +#: extras/forms/filtersets.py:323 extras/forms/filtersets.py:396 +#: ipam/forms/bulk_edit.py:43 ipam/forms/bulk_edit.py:68 +#: ipam/forms/bulk_edit.py:112 ipam/forms/bulk_edit.py:141 +#: ipam/forms/bulk_edit.py:166 ipam/forms/bulk_edit.py:251 +#: ipam/forms/bulk_edit.py:301 ipam/forms/bulk_edit.py:349 +#: ipam/forms/bulk_edit.py:501 ipam/forms/bulk_import.py:38 +#: ipam/forms/bulk_import.py:67 ipam/forms/bulk_import.py:95 +#: ipam/forms/bulk_import.py:115 ipam/forms/bulk_import.py:135 +#: ipam/forms/bulk_import.py:164 ipam/forms/bulk_import.py:250 +#: ipam/forms/bulk_import.py:286 ipam/forms/bulk_import.py:443 +#: ipam/forms/filtersets.py:48 ipam/forms/filtersets.py:68 +#: ipam/forms/filtersets.py:100 ipam/forms/filtersets.py:120 +#: ipam/forms/filtersets.py:143 ipam/forms/filtersets.py:174 +#: ipam/forms/filtersets.py:267 ipam/forms/filtersets.py:310 +#: ipam/forms/filtersets.py:469 ipam/tables/ip.py:456 ipam/tables/vlans.py:229 +#: templates/circuits/circuit.html:38 templates/circuits/circuitgroup.html:36 +#: templates/dcim/cable.html:23 templates/dcim/device.html:79 +#: templates/dcim/location.html:49 templates/dcim/powerfeed.html:44 +#: templates/dcim/rack.html:32 templates/dcim/rackreservation.html:49 +#: templates/dcim/site.html:47 templates/dcim/virtualdevicecontext.html:52 +#: templates/ipam/aggregate.html:30 templates/ipam/asn.html:33 +#: templates/ipam/asnrange.html:29 templates/ipam/ipaddress.html:28 +#: templates/ipam/iprange.html:58 templates/ipam/prefix.html:29 +#: templates/ipam/routetarget.html:17 templates/ipam/vlan.html:39 +#: templates/ipam/vrf.html:20 templates/tenancy/tenant.html:17 +#: templates/virtualization/cluster.html:33 +#: templates/virtualization/virtualmachine.html:39 templates/vpn/l2vpn.html:30 +#: templates/vpn/tunnel.html:49 templates/wireless/wirelesslan.html:34 +#: templates/wireless/wirelesslink.html:25 tenancy/forms/forms.py:25 +#: tenancy/forms/forms.py:48 tenancy/forms/model_forms.py:52 +#: tenancy/tables/columns.py:64 virtualization/forms/bulk_edit.py:76 +#: virtualization/forms/bulk_edit.py:155 +#: virtualization/forms/bulk_import.py:66 +#: virtualization/forms/bulk_import.py:115 +#: virtualization/forms/filtersets.py:47 +#: virtualization/forms/filtersets.py:105 vpn/forms/bulk_edit.py:59 +#: vpn/forms/bulk_edit.py:269 vpn/forms/bulk_import.py:59 +#: vpn/forms/bulk_import.py:258 vpn/forms/filtersets.py:214 +#: wireless/forms/bulk_edit.py:63 wireless/forms/bulk_edit.py:110 +#: wireless/forms/bulk_import.py:55 wireless/forms/bulk_import.py:97 +#: wireless/forms/filtersets.py:35 wireless/forms/filtersets.py:75 msgid "Tenant" msgstr "Entité" -#: netbox/circuits/forms/bulk_edit.py:147 -#: netbox/circuits/forms/filtersets.py:174 +#: circuits/forms/bulk_edit.py:147 circuits/forms/filtersets.py:174 msgid "Install date" msgstr "Date d'installation" -#: netbox/circuits/forms/bulk_edit.py:152 -#: netbox/circuits/forms/filtersets.py:179 +#: circuits/forms/bulk_edit.py:152 circuits/forms/filtersets.py:179 msgid "Termination date" msgstr "Date de résiliation" -#: netbox/circuits/forms/bulk_edit.py:158 -#: netbox/circuits/forms/filtersets.py:186 +#: circuits/forms/bulk_edit.py:158 circuits/forms/filtersets.py:186 msgid "Commit rate (Kbps)" msgstr "Débit engagé (Kbits/s)" -#: netbox/circuits/forms/bulk_edit.py:173 -#: netbox/circuits/forms/model_forms.py:112 +#: circuits/forms/bulk_edit.py:173 circuits/forms/model_forms.py:112 msgid "Service Parameters" msgstr "Paramètres du service" -#: netbox/circuits/forms/bulk_edit.py:174 -#: netbox/circuits/forms/model_forms.py:113 -#: netbox/circuits/forms/model_forms.py:183 -#: netbox/dcim/forms/model_forms.py:139 netbox/dcim/forms/model_forms.py:181 -#: netbox/dcim/forms/model_forms.py:266 netbox/dcim/forms/model_forms.py:323 -#: netbox/dcim/forms/model_forms.py:768 netbox/dcim/forms/model_forms.py:1692 -#: netbox/ipam/forms/model_forms.py:64 netbox/ipam/forms/model_forms.py:81 -#: netbox/ipam/forms/model_forms.py:115 netbox/ipam/forms/model_forms.py:136 -#: netbox/ipam/forms/model_forms.py:160 netbox/ipam/forms/model_forms.py:232 -#: netbox/ipam/forms/model_forms.py:261 netbox/ipam/forms/model_forms.py:316 -#: netbox/netbox/navigation/menu.py:24 -#: netbox/templates/dcim/device_edit.html:85 -#: netbox/templates/dcim/htmx/cable_edit.html:72 -#: netbox/templates/ipam/ipaddress_bulk_add.html:27 -#: netbox/templates/ipam/vlan_edit.html:22 -#: netbox/virtualization/forms/model_forms.py:80 -#: netbox/virtualization/forms/model_forms.py:222 -#: netbox/vpn/forms/bulk_edit.py:78 netbox/vpn/forms/filtersets.py:44 -#: netbox/vpn/forms/model_forms.py:62 netbox/vpn/forms/model_forms.py:147 -#: netbox/vpn/forms/model_forms.py:411 netbox/wireless/forms/model_forms.py:54 -#: netbox/wireless/forms/model_forms.py:170 +#: circuits/forms/bulk_edit.py:174 circuits/forms/model_forms.py:113 +#: circuits/forms/model_forms.py:183 dcim/forms/model_forms.py:139 +#: dcim/forms/model_forms.py:181 dcim/forms/model_forms.py:266 +#: dcim/forms/model_forms.py:323 dcim/forms/model_forms.py:768 +#: dcim/forms/model_forms.py:1692 ipam/forms/model_forms.py:64 +#: ipam/forms/model_forms.py:81 ipam/forms/model_forms.py:115 +#: ipam/forms/model_forms.py:136 ipam/forms/model_forms.py:160 +#: ipam/forms/model_forms.py:232 ipam/forms/model_forms.py:261 +#: ipam/forms/model_forms.py:316 netbox/navigation/menu.py:24 +#: templates/dcim/device_edit.html:85 templates/dcim/htmx/cable_edit.html:72 +#: templates/ipam/ipaddress_bulk_add.html:27 templates/ipam/vlan_edit.html:22 +#: virtualization/forms/model_forms.py:80 +#: virtualization/forms/model_forms.py:222 vpn/forms/bulk_edit.py:78 +#: vpn/forms/filtersets.py:44 vpn/forms/model_forms.py:62 +#: vpn/forms/model_forms.py:147 vpn/forms/model_forms.py:411 +#: wireless/forms/model_forms.py:54 wireless/forms/model_forms.py:170 msgid "Tenancy" msgstr "Utilisateur" -#: netbox/circuits/forms/bulk_edit.py:193 -#: netbox/circuits/forms/bulk_edit.py:217 -#: netbox/circuits/forms/model_forms.py:155 -#: netbox/circuits/tables/circuits.py:117 -#: netbox/templates/circuits/inc/circuit_termination_fields.html:62 -#: netbox/templates/circuits/providernetwork.html:17 +#: circuits/forms/bulk_edit.py:193 circuits/forms/bulk_edit.py:217 +#: circuits/forms/model_forms.py:155 circuits/tables/circuits.py:117 +#: templates/circuits/inc/circuit_termination_fields.html:62 +#: templates/circuits/providernetwork.html:17 msgid "Provider Network" msgstr "Réseau de fournisseurs" -#: netbox/circuits/forms/bulk_edit.py:199 +#: circuits/forms/bulk_edit.py:199 msgid "Port speed (Kbps)" msgstr "Vitesse du port (Kbits/s)" -#: netbox/circuits/forms/bulk_edit.py:203 +#: circuits/forms/bulk_edit.py:203 msgid "Upstream speed (Kbps)" msgstr "Vitesse ascendante (Kbits/s)" -#: netbox/circuits/forms/bulk_edit.py:206 netbox/dcim/forms/bulk_edit.py:951 -#: netbox/dcim/forms/bulk_edit.py:1315 netbox/dcim/forms/bulk_edit.py:1332 -#: netbox/dcim/forms/bulk_edit.py:1349 netbox/dcim/forms/bulk_edit.py:1367 -#: netbox/dcim/forms/bulk_edit.py:1455 netbox/dcim/forms/bulk_edit.py:1594 -#: netbox/dcim/forms/bulk_edit.py:1611 +#: circuits/forms/bulk_edit.py:206 dcim/forms/bulk_edit.py:951 +#: dcim/forms/bulk_edit.py:1315 dcim/forms/bulk_edit.py:1332 +#: dcim/forms/bulk_edit.py:1349 dcim/forms/bulk_edit.py:1367 +#: dcim/forms/bulk_edit.py:1455 dcim/forms/bulk_edit.py:1594 +#: dcim/forms/bulk_edit.py:1611 msgid "Mark connected" msgstr "Marquer comme connecté" -#: netbox/circuits/forms/bulk_edit.py:219 -#: netbox/circuits/forms/model_forms.py:157 -#: netbox/templates/circuits/inc/circuit_termination_fields.html:54 -#: netbox/templates/dcim/frontport.html:121 -#: netbox/templates/dcim/interface.html:193 -#: netbox/templates/dcim/rearport.html:111 +#: circuits/forms/bulk_edit.py:219 circuits/forms/model_forms.py:157 +#: templates/circuits/inc/circuit_termination_fields.html:54 +#: templates/dcim/frontport.html:121 templates/dcim/interface.html:193 +#: templates/dcim/rearport.html:111 msgid "Circuit Termination" msgstr "Terminaison de circuit" -#: netbox/circuits/forms/bulk_edit.py:221 -#: netbox/circuits/forms/model_forms.py:159 +#: circuits/forms/bulk_edit.py:221 circuits/forms/model_forms.py:159 msgid "Termination Details" msgstr "Détails de terminaison" -#: netbox/circuits/forms/bulk_edit.py:251 -#: netbox/circuits/forms/filtersets.py:268 -#: netbox/circuits/tables/circuits.py:168 netbox/dcim/forms/model_forms.py:551 -#: netbox/templates/circuits/circuitgroupassignment.html:30 -#: netbox/templates/dcim/device.html:133 -#: netbox/templates/dcim/virtualchassis.html:68 -#: netbox/templates/dcim/virtualchassis_edit.html:56 -#: netbox/templates/ipam/inc/panels/fhrp_groups.html:26 -#: netbox/tenancy/forms/bulk_edit.py:147 -#: netbox/tenancy/forms/filtersets.py:110 +#: circuits/forms/bulk_edit.py:251 circuits/forms/filtersets.py:268 +#: circuits/tables/circuits.py:168 dcim/forms/model_forms.py:551 +#: templates/circuits/circuitgroupassignment.html:30 +#: templates/dcim/device.html:133 templates/dcim/virtualchassis.html:68 +#: templates/dcim/virtualchassis_edit.html:56 +#: templates/ipam/inc/panels/fhrp_groups.html:26 +#: tenancy/forms/bulk_edit.py:147 tenancy/forms/filtersets.py:110 msgid "Priority" msgstr "Priorité" -#: netbox/circuits/forms/bulk_import.py:39 -#: netbox/circuits/forms/bulk_import.py:54 -#: netbox/circuits/forms/bulk_import.py:77 +#: circuits/forms/bulk_import.py:39 circuits/forms/bulk_import.py:54 +#: circuits/forms/bulk_import.py:77 msgid "Assigned provider" msgstr "Prestataire assigné" -#: netbox/circuits/forms/bulk_import.py:83 +#: circuits/forms/bulk_import.py:83 msgid "Assigned provider account" msgstr "Compte opérateur associé" -#: netbox/circuits/forms/bulk_import.py:90 +#: circuits/forms/bulk_import.py:90 msgid "Type of circuit" msgstr "Type de circuit" -#: netbox/circuits/forms/bulk_import.py:95 netbox/dcim/forms/bulk_import.py:90 -#: netbox/dcim/forms/bulk_import.py:149 netbox/dcim/forms/bulk_import.py:250 -#: netbox/dcim/forms/bulk_import.py:507 netbox/dcim/forms/bulk_import.py:661 -#: netbox/dcim/forms/bulk_import.py:1373 netbox/ipam/forms/bulk_import.py:194 -#: netbox/ipam/forms/bulk_import.py:259 netbox/ipam/forms/bulk_import.py:295 -#: netbox/ipam/forms/bulk_import.py:452 -#: netbox/virtualization/forms/bulk_import.py:56 -#: netbox/virtualization/forms/bulk_import.py:82 -#: netbox/vpn/forms/bulk_import.py:39 netbox/wireless/forms/bulk_import.py:45 +#: circuits/forms/bulk_import.py:95 dcim/forms/bulk_import.py:90 +#: dcim/forms/bulk_import.py:149 dcim/forms/bulk_import.py:250 +#: dcim/forms/bulk_import.py:507 dcim/forms/bulk_import.py:661 +#: dcim/forms/bulk_import.py:1373 ipam/forms/bulk_import.py:194 +#: ipam/forms/bulk_import.py:259 ipam/forms/bulk_import.py:295 +#: ipam/forms/bulk_import.py:452 virtualization/forms/bulk_import.py:56 +#: virtualization/forms/bulk_import.py:82 vpn/forms/bulk_import.py:39 +#: wireless/forms/bulk_import.py:45 msgid "Operational status" msgstr "État opérationnel" -#: netbox/circuits/forms/bulk_import.py:102 -#: netbox/circuits/forms/bulk_import.py:162 -#: netbox/dcim/forms/bulk_import.py:111 netbox/dcim/forms/bulk_import.py:156 -#: netbox/dcim/forms/bulk_import.py:338 netbox/dcim/forms/bulk_import.py:483 -#: netbox/dcim/forms/bulk_import.py:1223 netbox/dcim/forms/bulk_import.py:1368 -#: netbox/dcim/forms/bulk_import.py:1432 netbox/ipam/forms/bulk_import.py:42 -#: netbox/ipam/forms/bulk_import.py:71 netbox/ipam/forms/bulk_import.py:99 -#: netbox/ipam/forms/bulk_import.py:119 netbox/ipam/forms/bulk_import.py:139 -#: netbox/ipam/forms/bulk_import.py:168 netbox/ipam/forms/bulk_import.py:254 -#: netbox/ipam/forms/bulk_import.py:290 netbox/ipam/forms/bulk_import.py:447 -#: netbox/virtualization/forms/bulk_import.py:70 -#: netbox/virtualization/forms/bulk_import.py:119 -#: netbox/vpn/forms/bulk_import.py:63 netbox/wireless/forms/bulk_import.py:59 -#: netbox/wireless/forms/bulk_import.py:101 +#: circuits/forms/bulk_import.py:102 circuits/forms/bulk_import.py:162 +#: dcim/forms/bulk_import.py:111 dcim/forms/bulk_import.py:156 +#: dcim/forms/bulk_import.py:338 dcim/forms/bulk_import.py:483 +#: dcim/forms/bulk_import.py:1223 dcim/forms/bulk_import.py:1368 +#: dcim/forms/bulk_import.py:1432 ipam/forms/bulk_import.py:42 +#: ipam/forms/bulk_import.py:71 ipam/forms/bulk_import.py:99 +#: ipam/forms/bulk_import.py:119 ipam/forms/bulk_import.py:139 +#: ipam/forms/bulk_import.py:168 ipam/forms/bulk_import.py:254 +#: ipam/forms/bulk_import.py:290 ipam/forms/bulk_import.py:447 +#: virtualization/forms/bulk_import.py:70 +#: virtualization/forms/bulk_import.py:119 vpn/forms/bulk_import.py:63 +#: wireless/forms/bulk_import.py:59 wireless/forms/bulk_import.py:101 msgid "Assigned tenant" msgstr "Locataire associé" -#: netbox/circuits/forms/bulk_import.py:120 -#: netbox/templates/circuits/inc/circuit_termination.html:6 -#: netbox/templates/circuits/inc/circuit_termination_fields.html:15 -#: netbox/templates/dcim/cable.html:68 netbox/templates/dcim/cable.html:72 -#: netbox/vpn/forms/bulk_import.py:100 netbox/vpn/forms/filtersets.py:77 +#: circuits/forms/bulk_import.py:120 +#: templates/circuits/inc/circuit_termination.html:6 +#: templates/circuits/inc/circuit_termination_fields.html:15 +#: templates/dcim/cable.html:68 templates/dcim/cable.html:72 +#: vpn/forms/bulk_import.py:100 vpn/forms/filtersets.py:77 msgid "Termination" msgstr "Terminaison" -#: netbox/circuits/forms/bulk_import.py:130 -#: netbox/circuits/forms/filtersets.py:147 -#: netbox/circuits/forms/filtersets.py:227 -#: netbox/circuits/forms/model_forms.py:144 +#: circuits/forms/bulk_import.py:130 circuits/forms/filtersets.py:147 +#: circuits/forms/filtersets.py:227 circuits/forms/model_forms.py:144 msgid "Provider network" msgstr "Réseau de fournisseurs" -#: netbox/circuits/forms/filtersets.py:30 -#: netbox/circuits/forms/filtersets.py:118 -#: netbox/circuits/forms/filtersets.py:200 netbox/dcim/forms/bulk_edit.py:338 -#: netbox/dcim/forms/bulk_edit.py:441 netbox/dcim/forms/bulk_edit.py:682 -#: netbox/dcim/forms/bulk_edit.py:729 netbox/dcim/forms/bulk_edit.py:882 -#: netbox/dcim/forms/bulk_import.py:235 netbox/dcim/forms/bulk_import.py:315 -#: netbox/dcim/forms/bulk_import.py:546 netbox/dcim/forms/bulk_import.py:1317 -#: netbox/dcim/forms/bulk_import.py:1351 netbox/dcim/forms/filtersets.py:95 -#: netbox/dcim/forms/filtersets.py:322 netbox/dcim/forms/filtersets.py:356 -#: netbox/dcim/forms/filtersets.py:396 netbox/dcim/forms/filtersets.py:447 -#: netbox/dcim/forms/filtersets.py:719 netbox/dcim/forms/filtersets.py:762 -#: netbox/dcim/forms/filtersets.py:977 netbox/dcim/forms/filtersets.py:1006 -#: netbox/dcim/forms/filtersets.py:1026 netbox/dcim/forms/filtersets.py:1090 -#: netbox/dcim/forms/filtersets.py:1120 netbox/dcim/forms/filtersets.py:1129 -#: netbox/dcim/forms/filtersets.py:1240 netbox/dcim/forms/filtersets.py:1264 -#: netbox/dcim/forms/filtersets.py:1289 netbox/dcim/forms/filtersets.py:1308 -#: netbox/dcim/forms/filtersets.py:1331 netbox/dcim/forms/filtersets.py:1442 -#: netbox/dcim/forms/filtersets.py:1466 netbox/dcim/forms/filtersets.py:1490 -#: netbox/dcim/forms/filtersets.py:1508 netbox/dcim/forms/filtersets.py:1525 -#: netbox/dcim/forms/model_forms.py:180 netbox/dcim/forms/model_forms.py:243 -#: netbox/dcim/forms/model_forms.py:468 netbox/dcim/forms/model_forms.py:728 -#: netbox/dcim/tables/devices.py:157 netbox/dcim/tables/power.py:30 -#: netbox/dcim/tables/racks.py:118 netbox/dcim/tables/racks.py:212 -#: netbox/extras/filtersets.py:536 netbox/extras/forms/filtersets.py:320 -#: netbox/ipam/forms/bulk_edit.py:460 netbox/ipam/forms/filtersets.py:173 -#: netbox/ipam/forms/filtersets.py:414 netbox/ipam/forms/filtersets.py:437 -#: netbox/ipam/forms/filtersets.py:467 netbox/templates/dcim/device.html:26 -#: netbox/templates/dcim/device_edit.html:30 -#: netbox/templates/dcim/inc/cable_termination.html:12 -#: netbox/templates/dcim/location.html:26 -#: netbox/templates/dcim/powerpanel.html:26 netbox/templates/dcim/rack.html:24 -#: netbox/templates/dcim/rackreservation.html:32 -#: netbox/virtualization/forms/filtersets.py:46 -#: netbox/virtualization/forms/filtersets.py:100 -#: netbox/wireless/forms/model_forms.py:87 -#: netbox/wireless/forms/model_forms.py:129 +#: circuits/forms/filtersets.py:30 circuits/forms/filtersets.py:118 +#: circuits/forms/filtersets.py:200 dcim/forms/bulk_edit.py:338 +#: dcim/forms/bulk_edit.py:441 dcim/forms/bulk_edit.py:682 +#: dcim/forms/bulk_edit.py:729 dcim/forms/bulk_edit.py:882 +#: dcim/forms/bulk_import.py:235 dcim/forms/bulk_import.py:315 +#: dcim/forms/bulk_import.py:546 dcim/forms/bulk_import.py:1317 +#: dcim/forms/bulk_import.py:1351 dcim/forms/filtersets.py:95 +#: dcim/forms/filtersets.py:322 dcim/forms/filtersets.py:356 +#: dcim/forms/filtersets.py:396 dcim/forms/filtersets.py:447 +#: dcim/forms/filtersets.py:719 dcim/forms/filtersets.py:762 +#: dcim/forms/filtersets.py:977 dcim/forms/filtersets.py:1006 +#: dcim/forms/filtersets.py:1026 dcim/forms/filtersets.py:1090 +#: dcim/forms/filtersets.py:1120 dcim/forms/filtersets.py:1129 +#: dcim/forms/filtersets.py:1240 dcim/forms/filtersets.py:1264 +#: dcim/forms/filtersets.py:1289 dcim/forms/filtersets.py:1308 +#: dcim/forms/filtersets.py:1331 dcim/forms/filtersets.py:1442 +#: dcim/forms/filtersets.py:1466 dcim/forms/filtersets.py:1490 +#: dcim/forms/filtersets.py:1508 dcim/forms/filtersets.py:1525 +#: dcim/forms/model_forms.py:180 dcim/forms/model_forms.py:243 +#: dcim/forms/model_forms.py:468 dcim/forms/model_forms.py:728 +#: dcim/tables/devices.py:157 dcim/tables/power.py:30 dcim/tables/racks.py:118 +#: dcim/tables/racks.py:212 extras/filtersets.py:536 +#: extras/forms/filtersets.py:320 ipam/forms/filtersets.py:173 +#: ipam/forms/filtersets.py:414 ipam/forms/filtersets.py:437 +#: ipam/forms/filtersets.py:467 templates/dcim/device.html:26 +#: templates/dcim/device_edit.html:30 +#: templates/dcim/inc/cable_termination.html:12 +#: templates/dcim/location.html:26 templates/dcim/powerpanel.html:26 +#: templates/dcim/rack.html:24 templates/dcim/rackreservation.html:32 +#: virtualization/forms/filtersets.py:46 +#: virtualization/forms/filtersets.py:100 wireless/forms/model_forms.py:87 +#: wireless/forms/model_forms.py:129 msgid "Location" msgstr "Emplacement" -#: netbox/circuits/forms/filtersets.py:32 -#: netbox/circuits/forms/filtersets.py:120 netbox/dcim/forms/filtersets.py:144 -#: netbox/dcim/forms/filtersets.py:158 netbox/dcim/forms/filtersets.py:174 -#: netbox/dcim/forms/filtersets.py:206 netbox/dcim/forms/filtersets.py:328 -#: netbox/dcim/forms/filtersets.py:400 netbox/dcim/forms/filtersets.py:471 -#: netbox/dcim/forms/filtersets.py:723 netbox/dcim/forms/filtersets.py:1091 -#: netbox/netbox/navigation/menu.py:31 netbox/netbox/navigation/menu.py:33 -#: netbox/tenancy/forms/filtersets.py:42 netbox/tenancy/tables/columns.py:70 -#: netbox/tenancy/tables/contacts.py:25 netbox/tenancy/views.py:19 -#: netbox/virtualization/forms/filtersets.py:37 -#: netbox/virtualization/forms/filtersets.py:48 -#: netbox/virtualization/forms/filtersets.py:106 +#: circuits/forms/filtersets.py:32 circuits/forms/filtersets.py:120 +#: dcim/forms/filtersets.py:144 dcim/forms/filtersets.py:158 +#: dcim/forms/filtersets.py:174 dcim/forms/filtersets.py:206 +#: dcim/forms/filtersets.py:328 dcim/forms/filtersets.py:400 +#: dcim/forms/filtersets.py:471 dcim/forms/filtersets.py:723 +#: dcim/forms/filtersets.py:1091 netbox/navigation/menu.py:31 +#: netbox/navigation/menu.py:33 tenancy/forms/filtersets.py:42 +#: tenancy/tables/columns.py:70 tenancy/tables/contacts.py:25 +#: tenancy/views.py:19 virtualization/forms/filtersets.py:37 +#: virtualization/forms/filtersets.py:48 +#: virtualization/forms/filtersets.py:106 msgid "Contacts" msgstr "Contacts" -#: netbox/circuits/forms/filtersets.py:37 -#: netbox/circuits/forms/filtersets.py:157 netbox/dcim/forms/bulk_edit.py:112 -#: netbox/dcim/forms/bulk_edit.py:313 netbox/dcim/forms/bulk_edit.py:857 -#: netbox/dcim/forms/bulk_import.py:93 netbox/dcim/forms/filtersets.py:73 -#: netbox/dcim/forms/filtersets.py:185 netbox/dcim/forms/filtersets.py:211 -#: netbox/dcim/forms/filtersets.py:334 netbox/dcim/forms/filtersets.py:425 -#: netbox/dcim/forms/filtersets.py:739 netbox/dcim/forms/filtersets.py:983 -#: netbox/dcim/forms/filtersets.py:1013 netbox/dcim/forms/filtersets.py:1097 -#: netbox/dcim/forms/filtersets.py:1136 netbox/dcim/forms/filtersets.py:1576 -#: netbox/dcim/forms/filtersets.py:1600 netbox/dcim/forms/filtersets.py:1624 -#: netbox/dcim/forms/model_forms.py:112 netbox/dcim/forms/object_create.py:375 -#: netbox/dcim/tables/devices.py:143 netbox/dcim/tables/sites.py:85 -#: netbox/extras/filtersets.py:503 netbox/ipam/forms/bulk_edit.py:207 -#: netbox/ipam/forms/bulk_edit.py:441 netbox/ipam/forms/bulk_edit.py:519 -#: netbox/ipam/forms/filtersets.py:217 netbox/ipam/forms/filtersets.py:422 -#: netbox/ipam/forms/filtersets.py:475 netbox/templates/dcim/device.html:18 -#: netbox/templates/dcim/rack.html:16 -#: netbox/templates/dcim/rackreservation.html:22 -#: netbox/templates/dcim/region.html:26 netbox/templates/dcim/site.html:31 -#: netbox/templates/ipam/prefix.html:49 netbox/templates/ipam/vlan.html:16 -#: netbox/virtualization/forms/bulk_edit.py:81 -#: netbox/virtualization/forms/filtersets.py:59 -#: netbox/virtualization/forms/filtersets.py:133 -#: netbox/virtualization/forms/model_forms.py:92 -#: netbox/vpn/forms/filtersets.py:257 +#: circuits/forms/filtersets.py:37 circuits/forms/filtersets.py:157 +#: dcim/forms/bulk_edit.py:112 dcim/forms/bulk_edit.py:313 +#: dcim/forms/bulk_edit.py:857 dcim/forms/bulk_import.py:93 +#: dcim/forms/filtersets.py:73 dcim/forms/filtersets.py:185 +#: dcim/forms/filtersets.py:211 dcim/forms/filtersets.py:334 +#: dcim/forms/filtersets.py:425 dcim/forms/filtersets.py:739 +#: dcim/forms/filtersets.py:983 dcim/forms/filtersets.py:1013 +#: dcim/forms/filtersets.py:1097 dcim/forms/filtersets.py:1136 +#: dcim/forms/filtersets.py:1576 dcim/forms/filtersets.py:1600 +#: dcim/forms/filtersets.py:1624 dcim/forms/model_forms.py:112 +#: dcim/forms/object_create.py:375 dcim/tables/devices.py:143 +#: dcim/tables/sites.py:85 extras/filtersets.py:503 +#: ipam/forms/bulk_edit.py:208 ipam/forms/bulk_edit.py:474 +#: ipam/forms/filtersets.py:217 ipam/forms/filtersets.py:422 +#: ipam/forms/filtersets.py:475 templates/dcim/device.html:18 +#: templates/dcim/rack.html:16 templates/dcim/rackreservation.html:22 +#: templates/dcim/region.html:26 templates/dcim/site.html:31 +#: templates/ipam/prefix.html:49 templates/ipam/vlan.html:16 +#: virtualization/forms/bulk_edit.py:81 virtualization/forms/filtersets.py:59 +#: virtualization/forms/filtersets.py:133 +#: virtualization/forms/model_forms.py:92 vpn/forms/filtersets.py:257 msgid "Region" msgstr "Région" -#: netbox/circuits/forms/filtersets.py:42 -#: netbox/circuits/forms/filtersets.py:162 netbox/dcim/forms/bulk_edit.py:321 -#: netbox/dcim/forms/bulk_edit.py:865 netbox/dcim/forms/filtersets.py:78 -#: netbox/dcim/forms/filtersets.py:190 netbox/dcim/forms/filtersets.py:216 -#: netbox/dcim/forms/filtersets.py:347 netbox/dcim/forms/filtersets.py:430 -#: netbox/dcim/forms/filtersets.py:744 netbox/dcim/forms/filtersets.py:988 -#: netbox/dcim/forms/filtersets.py:1102 netbox/dcim/forms/filtersets.py:1141 -#: netbox/dcim/forms/object_create.py:383 netbox/extras/filtersets.py:520 -#: netbox/ipam/forms/bulk_edit.py:212 netbox/ipam/forms/bulk_edit.py:448 -#: netbox/ipam/forms/bulk_edit.py:524 netbox/ipam/forms/filtersets.py:222 -#: netbox/ipam/forms/filtersets.py:427 netbox/ipam/forms/filtersets.py:480 -#: netbox/virtualization/forms/bulk_edit.py:86 -#: netbox/virtualization/forms/filtersets.py:69 -#: netbox/virtualization/forms/filtersets.py:138 -#: netbox/virtualization/forms/model_forms.py:98 +#: circuits/forms/filtersets.py:42 circuits/forms/filtersets.py:162 +#: dcim/forms/bulk_edit.py:321 dcim/forms/bulk_edit.py:865 +#: dcim/forms/filtersets.py:78 dcim/forms/filtersets.py:190 +#: dcim/forms/filtersets.py:216 dcim/forms/filtersets.py:347 +#: dcim/forms/filtersets.py:430 dcim/forms/filtersets.py:744 +#: dcim/forms/filtersets.py:988 dcim/forms/filtersets.py:1102 +#: dcim/forms/filtersets.py:1141 dcim/forms/object_create.py:383 +#: extras/filtersets.py:520 ipam/forms/bulk_edit.py:213 +#: ipam/forms/bulk_edit.py:479 ipam/forms/filtersets.py:222 +#: ipam/forms/filtersets.py:427 ipam/forms/filtersets.py:480 +#: virtualization/forms/bulk_edit.py:86 virtualization/forms/filtersets.py:69 +#: virtualization/forms/filtersets.py:138 +#: virtualization/forms/model_forms.py:98 msgid "Site group" msgstr "Groupe de sites" -#: netbox/circuits/forms/filtersets.py:65 -#: netbox/circuits/forms/filtersets.py:83 -#: netbox/circuits/forms/filtersets.py:102 -#: netbox/circuits/forms/filtersets.py:117 netbox/core/forms/filtersets.py:67 -#: netbox/core/forms/filtersets.py:135 netbox/dcim/forms/bulk_edit.py:828 -#: netbox/dcim/forms/filtersets.py:172 netbox/dcim/forms/filtersets.py:204 -#: netbox/dcim/forms/filtersets.py:915 netbox/dcim/forms/filtersets.py:1007 -#: netbox/dcim/forms/filtersets.py:1131 netbox/dcim/forms/filtersets.py:1239 -#: netbox/dcim/forms/filtersets.py:1263 netbox/dcim/forms/filtersets.py:1288 -#: netbox/dcim/forms/filtersets.py:1307 netbox/dcim/forms/filtersets.py:1327 -#: netbox/dcim/forms/filtersets.py:1441 netbox/dcim/forms/filtersets.py:1465 -#: netbox/dcim/forms/filtersets.py:1489 netbox/dcim/forms/filtersets.py:1507 -#: netbox/dcim/forms/filtersets.py:1523 netbox/extras/forms/bulk_edit.py:90 -#: netbox/extras/forms/filtersets.py:44 netbox/extras/forms/filtersets.py:134 -#: netbox/extras/forms/filtersets.py:165 netbox/extras/forms/filtersets.py:205 -#: netbox/extras/forms/filtersets.py:221 netbox/extras/forms/filtersets.py:252 -#: netbox/extras/forms/filtersets.py:276 netbox/extras/forms/filtersets.py:441 -#: netbox/ipam/forms/filtersets.py:99 netbox/ipam/forms/filtersets.py:266 -#: netbox/ipam/forms/filtersets.py:307 netbox/ipam/forms/filtersets.py:382 -#: netbox/ipam/forms/filtersets.py:468 netbox/ipam/forms/filtersets.py:527 -#: netbox/ipam/forms/filtersets.py:545 netbox/netbox/tables/tables.py:256 -#: netbox/virtualization/forms/filtersets.py:45 -#: netbox/virtualization/forms/filtersets.py:103 -#: netbox/virtualization/forms/filtersets.py:198 -#: netbox/virtualization/forms/filtersets.py:243 -#: netbox/vpn/forms/filtersets.py:213 netbox/wireless/forms/bulk_edit.py:150 -#: netbox/wireless/forms/filtersets.py:34 -#: netbox/wireless/forms/filtersets.py:74 +#: circuits/forms/filtersets.py:65 circuits/forms/filtersets.py:83 +#: circuits/forms/filtersets.py:102 circuits/forms/filtersets.py:117 +#: core/forms/filtersets.py:67 core/forms/filtersets.py:135 +#: dcim/forms/bulk_edit.py:828 dcim/forms/filtersets.py:172 +#: dcim/forms/filtersets.py:204 dcim/forms/filtersets.py:915 +#: dcim/forms/filtersets.py:1007 dcim/forms/filtersets.py:1131 +#: dcim/forms/filtersets.py:1239 dcim/forms/filtersets.py:1263 +#: dcim/forms/filtersets.py:1288 dcim/forms/filtersets.py:1307 +#: dcim/forms/filtersets.py:1327 dcim/forms/filtersets.py:1441 +#: dcim/forms/filtersets.py:1465 dcim/forms/filtersets.py:1489 +#: dcim/forms/filtersets.py:1507 dcim/forms/filtersets.py:1523 +#: extras/forms/bulk_edit.py:90 extras/forms/filtersets.py:44 +#: extras/forms/filtersets.py:134 extras/forms/filtersets.py:165 +#: extras/forms/filtersets.py:205 extras/forms/filtersets.py:221 +#: extras/forms/filtersets.py:252 extras/forms/filtersets.py:276 +#: extras/forms/filtersets.py:441 ipam/forms/filtersets.py:99 +#: ipam/forms/filtersets.py:266 ipam/forms/filtersets.py:307 +#: ipam/forms/filtersets.py:382 ipam/forms/filtersets.py:468 +#: ipam/forms/filtersets.py:527 ipam/forms/filtersets.py:545 +#: netbox/tables/tables.py:256 virtualization/forms/filtersets.py:45 +#: virtualization/forms/filtersets.py:103 +#: virtualization/forms/filtersets.py:198 +#: virtualization/forms/filtersets.py:243 vpn/forms/filtersets.py:213 +#: wireless/forms/bulk_edit.py:150 wireless/forms/filtersets.py:34 +#: wireless/forms/filtersets.py:74 msgid "Attributes" msgstr "Attributs" -#: netbox/circuits/forms/filtersets.py:73 -#: netbox/circuits/tables/circuits.py:63 -#: netbox/circuits/tables/providers.py:66 -#: netbox/templates/circuits/circuit.html:22 -#: netbox/templates/circuits/provideraccount.html:24 +#: circuits/forms/filtersets.py:73 circuits/tables/circuits.py:63 +#: circuits/tables/providers.py:66 templates/circuits/circuit.html:22 +#: templates/circuits/provideraccount.html:24 msgid "Account" msgstr "Compte" -#: netbox/circuits/forms/filtersets.py:217 +#: circuits/forms/filtersets.py:217 msgid "Term Side" msgstr "Côté terme" -#: netbox/circuits/forms/filtersets.py:250 -#: netbox/extras/forms/model_forms.py:582 netbox/ipam/forms/filtersets.py:142 -#: netbox/ipam/forms/filtersets.py:546 netbox/ipam/forms/model_forms.py:323 -#: netbox/templates/extras/configcontext.html:60 -#: netbox/templates/ipam/ipaddress.html:59 -#: netbox/templates/ipam/vlan_edit.html:30 -#: netbox/tenancy/forms/filtersets.py:87 netbox/users/forms/model_forms.py:314 +#: circuits/forms/filtersets.py:250 extras/forms/model_forms.py:582 +#: ipam/forms/filtersets.py:142 ipam/forms/filtersets.py:546 +#: ipam/forms/model_forms.py:323 templates/extras/configcontext.html:60 +#: templates/ipam/ipaddress.html:59 templates/ipam/vlan_edit.html:30 +#: tenancy/forms/filtersets.py:87 users/forms/model_forms.py:314 msgid "Assignment" msgstr "Affectation" -#: netbox/circuits/forms/filtersets.py:265 -#: netbox/circuits/forms/model_forms.py:195 -#: netbox/circuits/tables/circuits.py:155 netbox/dcim/forms/bulk_edit.py:117 -#: netbox/dcim/forms/bulk_import.py:100 netbox/dcim/forms/model_forms.py:117 -#: netbox/dcim/tables/sites.py:89 netbox/extras/forms/filtersets.py:480 -#: netbox/ipam/filtersets.py:999 netbox/ipam/forms/bulk_edit.py:538 -#: netbox/ipam/forms/bulk_import.py:436 netbox/ipam/forms/model_forms.py:528 -#: netbox/ipam/tables/fhrp.py:67 netbox/ipam/tables/vlans.py:122 -#: netbox/ipam/tables/vlans.py:226 -#: netbox/templates/circuits/circuitgroupassignment.html:22 -#: netbox/templates/dcim/interface.html:284 netbox/templates/dcim/site.html:37 -#: netbox/templates/ipam/inc/panels/fhrp_groups.html:23 -#: netbox/templates/ipam/vlan.html:27 netbox/templates/tenancy/contact.html:21 -#: netbox/templates/tenancy/tenant.html:20 netbox/templates/users/group.html:6 -#: netbox/templates/users/group.html:14 -#: netbox/templates/virtualization/cluster.html:29 -#: netbox/templates/vpn/tunnel.html:29 -#: netbox/templates/wireless/wirelesslan.html:18 -#: netbox/tenancy/forms/bulk_edit.py:43 netbox/tenancy/forms/bulk_edit.py:94 -#: netbox/tenancy/forms/bulk_import.py:40 -#: netbox/tenancy/forms/bulk_import.py:81 -#: netbox/tenancy/forms/filtersets.py:48 netbox/tenancy/forms/filtersets.py:78 -#: netbox/tenancy/forms/filtersets.py:97 -#: netbox/tenancy/forms/model_forms.py:45 -#: netbox/tenancy/forms/model_forms.py:97 -#: netbox/tenancy/forms/model_forms.py:122 -#: netbox/tenancy/tables/contacts.py:60 netbox/tenancy/tables/contacts.py:107 -#: netbox/tenancy/tables/tenants.py:42 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 -#: netbox/virtualization/forms/bulk_edit.py:65 -#: netbox/virtualization/forms/bulk_import.py:47 -#: netbox/virtualization/forms/filtersets.py:85 -#: netbox/virtualization/forms/model_forms.py:66 -#: netbox/virtualization/tables/clusters.py:70 -#: netbox/vpn/forms/bulk_edit.py:112 netbox/vpn/forms/bulk_import.py:158 -#: netbox/vpn/forms/filtersets.py:116 netbox/vpn/tables/crypto.py:31 -#: netbox/vpn/tables/tunnels.py:44 netbox/wireless/forms/bulk_edit.py:48 -#: netbox/wireless/forms/bulk_import.py:36 -#: netbox/wireless/forms/filtersets.py:46 -#: netbox/wireless/forms/model_forms.py:40 -#: netbox/wireless/tables/wirelesslan.py:48 +#: circuits/forms/filtersets.py:265 circuits/forms/model_forms.py:195 +#: circuits/tables/circuits.py:155 dcim/forms/bulk_edit.py:117 +#: dcim/forms/bulk_import.py:100 dcim/forms/model_forms.py:117 +#: dcim/tables/sites.py:89 extras/forms/filtersets.py:480 +#: ipam/filtersets.py:999 ipam/forms/bulk_edit.py:493 +#: ipam/forms/bulk_import.py:436 ipam/forms/model_forms.py:528 +#: ipam/tables/fhrp.py:67 ipam/tables/vlans.py:122 ipam/tables/vlans.py:226 +#: templates/circuits/circuitgroupassignment.html:22 +#: templates/dcim/interface.html:284 templates/dcim/site.html:37 +#: templates/ipam/inc/panels/fhrp_groups.html:23 templates/ipam/vlan.html:27 +#: templates/tenancy/contact.html:21 templates/tenancy/tenant.html:20 +#: templates/users/group.html:6 templates/users/group.html:14 +#: templates/virtualization/cluster.html:29 templates/vpn/tunnel.html:29 +#: templates/wireless/wirelesslan.html:18 tenancy/forms/bulk_edit.py:43 +#: tenancy/forms/bulk_edit.py:94 tenancy/forms/bulk_import.py:40 +#: tenancy/forms/bulk_import.py:81 tenancy/forms/filtersets.py:48 +#: tenancy/forms/filtersets.py:78 tenancy/forms/filtersets.py:97 +#: tenancy/forms/model_forms.py:45 tenancy/forms/model_forms.py:97 +#: tenancy/forms/model_forms.py:122 tenancy/tables/contacts.py:60 +#: tenancy/tables/contacts.py:107 tenancy/tables/tenants.py:42 +#: users/filtersets.py:62 users/filtersets.py:185 users/forms/filtersets.py:31 +#: users/forms/filtersets.py:37 users/forms/filtersets.py:79 +#: virtualization/forms/bulk_edit.py:65 virtualization/forms/bulk_import.py:47 +#: virtualization/forms/filtersets.py:85 +#: virtualization/forms/model_forms.py:66 virtualization/tables/clusters.py:70 +#: vpn/forms/bulk_edit.py:112 vpn/forms/bulk_import.py:158 +#: vpn/forms/filtersets.py:116 vpn/tables/crypto.py:31 +#: vpn/tables/tunnels.py:44 wireless/forms/bulk_edit.py:48 +#: wireless/forms/bulk_import.py:36 wireless/forms/filtersets.py:46 +#: wireless/forms/model_forms.py:40 wireless/tables/wirelesslan.py:48 msgid "Group" msgstr "Groupe" -#: netbox/circuits/forms/model_forms.py:182 -#: netbox/templates/circuits/circuitgroup.html:25 +#: circuits/forms/model_forms.py:182 templates/circuits/circuitgroup.html:25 msgid "Circuit Group" msgstr "Groupe de circuits" -#: netbox/circuits/models/circuits.py:27 netbox/dcim/models/cables.py:67 -#: netbox/dcim/models/device_component_templates.py:517 -#: netbox/dcim/models/device_component_templates.py:617 -#: netbox/dcim/models/device_components.py:975 -#: netbox/dcim/models/device_components.py:1049 -#: netbox/dcim/models/device_components.py:1204 -#: netbox/dcim/models/devices.py:479 netbox/dcim/models/racks.py:224 -#: netbox/extras/models/tags.py:28 +#: circuits/models/circuits.py:27 dcim/models/cables.py:67 +#: dcim/models/device_component_templates.py:517 +#: dcim/models/device_component_templates.py:617 +#: dcim/models/device_components.py:975 dcim/models/device_components.py:1049 +#: dcim/models/device_components.py:1204 dcim/models/devices.py:479 +#: dcim/models/racks.py:224 extras/models/tags.py:28 msgid "color" msgstr "couleur" -#: netbox/circuits/models/circuits.py:36 +#: circuits/models/circuits.py:36 msgid "circuit type" msgstr "type de circuit" -#: netbox/circuits/models/circuits.py:37 +#: circuits/models/circuits.py:37 msgid "circuit types" msgstr "types de circuits" -#: netbox/circuits/models/circuits.py:48 +#: circuits/models/circuits.py:48 msgid "circuit ID" msgstr "identifiant du circuit" -#: netbox/circuits/models/circuits.py:49 +#: circuits/models/circuits.py:49 msgid "Unique circuit ID" msgstr "ID de circuit unique" -#: netbox/circuits/models/circuits.py:69 netbox/core/models/data.py:52 -#: netbox/core/models/jobs.py:84 netbox/dcim/models/cables.py:49 -#: netbox/dcim/models/devices.py:653 netbox/dcim/models/devices.py:1173 -#: netbox/dcim/models/devices.py:1399 netbox/dcim/models/power.py:96 -#: netbox/dcim/models/racks.py:297 netbox/dcim/models/sites.py:154 -#: netbox/dcim/models/sites.py:266 netbox/ipam/models/ip.py:253 -#: netbox/ipam/models/ip.py:522 netbox/ipam/models/ip.py:730 -#: netbox/ipam/models/vlans.py:195 netbox/virtualization/models/clusters.py:74 -#: netbox/virtualization/models/virtualmachines.py:84 -#: netbox/vpn/models/tunnels.py:40 netbox/wireless/models.py:95 -#: netbox/wireless/models.py:159 +#: circuits/models/circuits.py:69 core/models/data.py:52 +#: core/models/jobs.py:84 dcim/models/cables.py:49 dcim/models/devices.py:653 +#: dcim/models/devices.py:1173 dcim/models/devices.py:1399 +#: dcim/models/power.py:96 dcim/models/racks.py:297 dcim/models/sites.py:154 +#: dcim/models/sites.py:266 ipam/models/ip.py:253 ipam/models/ip.py:522 +#: ipam/models/ip.py:730 ipam/models/vlans.py:195 +#: virtualization/models/clusters.py:74 +#: virtualization/models/virtualmachines.py:84 vpn/models/tunnels.py:40 +#: wireless/models.py:95 wireless/models.py:159 msgid "status" msgstr "statut" -#: netbox/circuits/models/circuits.py:84 netbox/templates/core/plugin.html:19 +#: circuits/models/circuits.py:84 templates/core/plugin.html:20 msgid "installed" msgstr "installé" -#: netbox/circuits/models/circuits.py:89 +#: circuits/models/circuits.py:89 msgid "terminates" msgstr "met fin à" -#: netbox/circuits/models/circuits.py:94 +#: circuits/models/circuits.py:94 msgid "commit rate (Kbps)" msgstr "taux de validation (Kbits/s)" -#: netbox/circuits/models/circuits.py:95 +#: circuits/models/circuits.py:95 msgid "Committed rate" msgstr "Taux engagé" -#: netbox/circuits/models/circuits.py:137 +#: circuits/models/circuits.py:137 msgid "circuit" msgstr "circuit" -#: netbox/circuits/models/circuits.py:138 +#: circuits/models/circuits.py:138 msgid "circuits" msgstr "circuits" -#: netbox/circuits/models/circuits.py:170 +#: circuits/models/circuits.py:170 msgid "circuit group" msgstr "groupe de circuits" -#: netbox/circuits/models/circuits.py:171 +#: circuits/models/circuits.py:171 msgid "circuit groups" msgstr "groupes de circuits" -#: netbox/circuits/models/circuits.py:195 netbox/ipam/models/fhrp.py:93 -#: netbox/tenancy/models/contacts.py:134 +#: circuits/models/circuits.py:195 ipam/models/fhrp.py:93 +#: tenancy/models/contacts.py:134 msgid "priority" msgstr "priorité" -#: netbox/circuits/models/circuits.py:213 +#: circuits/models/circuits.py:213 msgid "Circuit group assignment" msgstr "Affectation de groupes de circuits" -#: netbox/circuits/models/circuits.py:214 +#: circuits/models/circuits.py:214 msgid "Circuit group assignments" msgstr "Assignations de groupes de circuits" -#: netbox/circuits/models/circuits.py:240 +#: circuits/models/circuits.py:240 msgid "termination" msgstr "résiliation" -#: netbox/circuits/models/circuits.py:257 +#: circuits/models/circuits.py:257 msgid "port speed (Kbps)" msgstr "vitesse du port (Kbps)" -#: netbox/circuits/models/circuits.py:260 +#: circuits/models/circuits.py:260 msgid "Physical circuit speed" msgstr "Vitesse du circuit physique" -#: netbox/circuits/models/circuits.py:265 +#: circuits/models/circuits.py:265 msgid "upstream speed (Kbps)" msgstr "vitesse montante (Kbps)" -#: netbox/circuits/models/circuits.py:266 +#: circuits/models/circuits.py:266 msgid "Upstream speed, if different from port speed" msgstr "Vitesse ascendante, si elle est différente de la vitesse du port" -#: netbox/circuits/models/circuits.py:271 +#: circuits/models/circuits.py:271 msgid "cross-connect ID" msgstr "ID de connexion croisée" -#: netbox/circuits/models/circuits.py:272 +#: circuits/models/circuits.py:272 msgid "ID of the local cross-connect" msgstr "ID de l'interconnexion locale" -#: netbox/circuits/models/circuits.py:277 +#: circuits/models/circuits.py:277 msgid "patch panel/port(s)" msgstr "panneau de raccordement ou port (s)" -#: netbox/circuits/models/circuits.py:278 +#: circuits/models/circuits.py:278 msgid "Patch panel ID and port number(s)" msgstr "ID du panneau de raccordement et numéro (s) de port" -#: netbox/circuits/models/circuits.py:281 -#: netbox/dcim/models/device_component_templates.py:61 -#: netbox/dcim/models/device_components.py:68 netbox/dcim/models/racks.py:685 -#: netbox/extras/models/configs.py:45 netbox/extras/models/configs.py:219 -#: netbox/extras/models/customfields.py:125 netbox/extras/models/models.py:61 -#: netbox/extras/models/models.py:158 netbox/extras/models/models.py:396 -#: netbox/extras/models/models.py:511 -#: netbox/extras/models/notifications.py:131 -#: netbox/extras/models/staging.py:31 netbox/extras/models/tags.py:32 -#: netbox/netbox/models/__init__.py:110 netbox/netbox/models/__init__.py:145 -#: netbox/netbox/models/__init__.py:191 netbox/users/models/permissions.py:24 -#: netbox/users/models/tokens.py:57 netbox/users/models/users.py:33 -#: netbox/virtualization/models/virtualmachines.py:289 +#: circuits/models/circuits.py:281 +#: dcim/models/device_component_templates.py:61 +#: dcim/models/device_components.py:68 dcim/models/racks.py:685 +#: extras/models/configs.py:45 extras/models/configs.py:219 +#: extras/models/customfields.py:125 extras/models/models.py:61 +#: extras/models/models.py:158 extras/models/models.py:396 +#: extras/models/models.py:511 extras/models/notifications.py:131 +#: extras/models/staging.py:31 extras/models/tags.py:32 +#: netbox/models/__init__.py:110 netbox/models/__init__.py:145 +#: netbox/models/__init__.py:191 users/models/permissions.py:24 +#: users/models/tokens.py:57 users/models/users.py:33 +#: virtualization/models/virtualmachines.py:289 msgid "description" msgstr "description" -#: netbox/circuits/models/circuits.py:294 +#: circuits/models/circuits.py:294 msgid "circuit termination" msgstr "terminaison du circuit" -#: netbox/circuits/models/circuits.py:295 +#: circuits/models/circuits.py:295 msgid "circuit terminations" msgstr "terminaisons de circuits" -#: netbox/circuits/models/circuits.py:308 +#: circuits/models/circuits.py:308 msgid "" "A circuit termination must attach to either a site or a provider network." msgstr "" "Une terminaison de circuit doit être connectée à un site ou à un réseau " "fournisseur." -#: netbox/circuits/models/circuits.py:310 +#: circuits/models/circuits.py:310 msgid "" "A circuit termination cannot attach to both a site and a provider network." msgstr "" "Une terminaison de circuit ne peut pas être connectée à la fois à un site et" " à un réseau fournisseur." -#: netbox/circuits/models/providers.py:22 -#: netbox/circuits/models/providers.py:66 -#: netbox/circuits/models/providers.py:104 netbox/core/models/data.py:39 -#: netbox/core/models/jobs.py:45 -#: netbox/dcim/models/device_component_templates.py:43 -#: netbox/dcim/models/device_components.py:53 -#: netbox/dcim/models/devices.py:593 netbox/dcim/models/devices.py:1330 -#: netbox/dcim/models/devices.py:1395 netbox/dcim/models/power.py:39 -#: netbox/dcim/models/power.py:92 netbox/dcim/models/racks.py:262 -#: netbox/dcim/models/sites.py:138 netbox/extras/models/configs.py:36 -#: netbox/extras/models/configs.py:215 netbox/extras/models/customfields.py:92 -#: netbox/extras/models/models.py:56 netbox/extras/models/models.py:153 -#: netbox/extras/models/models.py:296 netbox/extras/models/models.py:392 -#: netbox/extras/models/models.py:501 netbox/extras/models/models.py:596 -#: netbox/extras/models/notifications.py:126 -#: netbox/extras/models/scripts.py:30 netbox/extras/models/staging.py:26 -#: netbox/ipam/models/asns.py:18 netbox/ipam/models/fhrp.py:25 -#: netbox/ipam/models/services.py:52 netbox/ipam/models/services.py:88 -#: netbox/ipam/models/vlans.py:36 netbox/ipam/models/vlans.py:184 -#: netbox/ipam/models/vrfs.py:22 netbox/ipam/models/vrfs.py:79 -#: netbox/netbox/models/__init__.py:137 netbox/netbox/models/__init__.py:181 -#: netbox/tenancy/models/contacts.py:64 netbox/tenancy/models/tenants.py:20 -#: netbox/tenancy/models/tenants.py:45 netbox/users/models/permissions.py:20 -#: netbox/users/models/users.py:28 netbox/virtualization/models/clusters.py:57 -#: netbox/virtualization/models/virtualmachines.py:72 -#: netbox/virtualization/models/virtualmachines.py:279 -#: netbox/vpn/models/crypto.py:24 netbox/vpn/models/crypto.py:71 -#: netbox/vpn/models/crypto.py:131 netbox/vpn/models/crypto.py:183 -#: netbox/vpn/models/crypto.py:221 netbox/vpn/models/l2vpn.py:22 -#: netbox/vpn/models/tunnels.py:35 netbox/wireless/models.py:51 +#: circuits/models/providers.py:22 circuits/models/providers.py:66 +#: circuits/models/providers.py:104 core/models/data.py:39 +#: core/models/jobs.py:45 dcim/models/device_component_templates.py:43 +#: dcim/models/device_components.py:53 dcim/models/devices.py:593 +#: dcim/models/devices.py:1330 dcim/models/devices.py:1395 +#: dcim/models/power.py:39 dcim/models/power.py:92 dcim/models/racks.py:262 +#: dcim/models/sites.py:138 extras/models/configs.py:36 +#: extras/models/configs.py:215 extras/models/customfields.py:92 +#: extras/models/models.py:56 extras/models/models.py:153 +#: extras/models/models.py:296 extras/models/models.py:392 +#: extras/models/models.py:501 extras/models/models.py:596 +#: extras/models/notifications.py:126 extras/models/scripts.py:30 +#: extras/models/staging.py:26 ipam/models/asns.py:18 ipam/models/fhrp.py:25 +#: ipam/models/services.py:52 ipam/models/services.py:88 +#: ipam/models/vlans.py:36 ipam/models/vlans.py:184 ipam/models/vrfs.py:22 +#: ipam/models/vrfs.py:79 netbox/models/__init__.py:137 +#: netbox/models/__init__.py:181 tenancy/models/contacts.py:64 +#: tenancy/models/tenants.py:20 tenancy/models/tenants.py:45 +#: users/models/permissions.py:20 users/models/users.py:28 +#: virtualization/models/clusters.py:57 +#: virtualization/models/virtualmachines.py:72 +#: virtualization/models/virtualmachines.py:279 vpn/models/crypto.py:24 +#: vpn/models/crypto.py:71 vpn/models/crypto.py:131 vpn/models/crypto.py:183 +#: vpn/models/crypto.py:221 vpn/models/l2vpn.py:22 vpn/models/tunnels.py:35 +#: wireless/models.py:51 msgid "name" msgstr "nom" -#: netbox/circuits/models/providers.py:25 +#: circuits/models/providers.py:25 msgid "Full name of the provider" msgstr "Nom complet du fournisseur" -#: netbox/circuits/models/providers.py:28 netbox/dcim/models/devices.py:86 -#: netbox/dcim/models/racks.py:137 netbox/dcim/models/sites.py:149 -#: netbox/extras/models/models.py:506 netbox/ipam/models/asns.py:23 -#: netbox/ipam/models/vlans.py:40 netbox/netbox/models/__init__.py:141 -#: netbox/netbox/models/__init__.py:186 netbox/tenancy/models/tenants.py:25 -#: netbox/tenancy/models/tenants.py:49 netbox/vpn/models/l2vpn.py:27 -#: netbox/wireless/models.py:56 +#: circuits/models/providers.py:28 dcim/models/devices.py:86 +#: dcim/models/racks.py:137 dcim/models/sites.py:149 +#: extras/models/models.py:506 ipam/models/asns.py:23 ipam/models/vlans.py:40 +#: netbox/models/__init__.py:141 netbox/models/__init__.py:186 +#: tenancy/models/tenants.py:25 tenancy/models/tenants.py:49 +#: vpn/models/l2vpn.py:27 wireless/models.py:56 msgid "slug" msgstr "slug" -#: netbox/circuits/models/providers.py:42 +#: circuits/models/providers.py:42 msgid "provider" msgstr "fournisseur" -#: netbox/circuits/models/providers.py:43 +#: circuits/models/providers.py:43 msgid "providers" msgstr "fournisseurs" -#: netbox/circuits/models/providers.py:63 +#: circuits/models/providers.py:63 msgid "account ID" msgstr "ID de compte" -#: netbox/circuits/models/providers.py:86 +#: circuits/models/providers.py:86 msgid "provider account" msgstr "compte fournisseur" -#: netbox/circuits/models/providers.py:87 +#: circuits/models/providers.py:87 msgid "provider accounts" msgstr "comptes fournisseurs" -#: netbox/circuits/models/providers.py:115 +#: circuits/models/providers.py:115 msgid "service ID" msgstr "ID de service" -#: netbox/circuits/models/providers.py:126 +#: circuits/models/providers.py:126 msgid "provider network" msgstr "réseau de fournisseurs" -#: netbox/circuits/models/providers.py:127 +#: circuits/models/providers.py:127 msgid "provider networks" msgstr "réseaux de fournisseurs" -#: netbox/circuits/tables/circuits.py:32 -#: netbox/circuits/tables/circuits.py:132 -#: netbox/circuits/tables/providers.py:18 -#: netbox/circuits/tables/providers.py:69 -#: netbox/circuits/tables/providers.py:99 netbox/core/tables/data.py:16 -#: netbox/core/tables/jobs.py:14 netbox/core/tables/plugins.py:44 -#: netbox/core/tables/tasks.py:11 netbox/core/tables/tasks.py:115 -#: netbox/dcim/forms/filtersets.py:63 netbox/dcim/forms/object_create.py:43 -#: netbox/dcim/tables/devices.py:52 netbox/dcim/tables/devices.py:92 -#: netbox/dcim/tables/devices.py:134 netbox/dcim/tables/devices.py:289 -#: netbox/dcim/tables/devices.py:392 netbox/dcim/tables/devices.py:433 -#: netbox/dcim/tables/devices.py:482 netbox/dcim/tables/devices.py:531 -#: netbox/dcim/tables/devices.py:648 netbox/dcim/tables/devices.py:731 -#: netbox/dcim/tables/devices.py:778 netbox/dcim/tables/devices.py:841 -#: netbox/dcim/tables/devices.py:911 netbox/dcim/tables/devices.py:974 -#: netbox/dcim/tables/devices.py:994 netbox/dcim/tables/devices.py:1023 -#: netbox/dcim/tables/devices.py:1053 netbox/dcim/tables/devicetypes.py:31 -#: netbox/dcim/tables/power.py:22 netbox/dcim/tables/power.py:62 -#: netbox/dcim/tables/racks.py:24 netbox/dcim/tables/racks.py:113 -#: netbox/dcim/tables/sites.py:24 netbox/dcim/tables/sites.py:51 -#: netbox/dcim/tables/sites.py:78 netbox/dcim/tables/sites.py:130 -#: netbox/extras/forms/filtersets.py:213 netbox/extras/tables/tables.py:58 -#: netbox/extras/tables/tables.py:122 netbox/extras/tables/tables.py:155 -#: netbox/extras/tables/tables.py:180 netbox/extras/tables/tables.py:246 -#: netbox/extras/tables/tables.py:361 netbox/extras/tables/tables.py:378 -#: netbox/extras/tables/tables.py:401 netbox/extras/tables/tables.py:439 -#: netbox/extras/tables/tables.py:491 netbox/extras/tables/tables.py:514 -#: netbox/ipam/forms/bulk_edit.py:406 netbox/ipam/forms/filtersets.py:386 -#: netbox/ipam/tables/asn.py:16 netbox/ipam/tables/ip.py:85 -#: netbox/ipam/tables/ip.py:160 netbox/ipam/tables/services.py:15 -#: netbox/ipam/tables/services.py:40 netbox/ipam/tables/vlans.py:64 -#: netbox/ipam/tables/vlans.py:114 netbox/ipam/tables/vrfs.py:26 -#: netbox/ipam/tables/vrfs.py:68 -#: netbox/templates/circuits/circuitgroup.html:28 -#: netbox/templates/circuits/circuittype.html:22 -#: netbox/templates/circuits/provideraccount.html:28 -#: netbox/templates/circuits/providernetwork.html:24 -#: netbox/templates/core/datasource.html:34 netbox/templates/core/job.html:44 -#: netbox/templates/core/plugin.html:53 -#: netbox/templates/core/rq_worker.html:43 -#: netbox/templates/dcim/consoleport.html:28 -#: netbox/templates/dcim/consoleserverport.html:28 -#: netbox/templates/dcim/devicebay.html:24 -#: netbox/templates/dcim/devicerole.html:26 -#: netbox/templates/dcim/frontport.html:28 -#: netbox/templates/dcim/inc/interface_vlans_table.html:5 -#: netbox/templates/dcim/inc/panels/inventory_items.html:18 -#: netbox/templates/dcim/interface.html:38 -#: netbox/templates/dcim/interface.html:165 -#: netbox/templates/dcim/inventoryitem.html:28 -#: netbox/templates/dcim/inventoryitemrole.html:18 -#: netbox/templates/dcim/location.html:29 -#: netbox/templates/dcim/manufacturer.html:36 -#: netbox/templates/dcim/modulebay.html:30 -#: netbox/templates/dcim/platform.html:29 -#: netbox/templates/dcim/poweroutlet.html:28 -#: netbox/templates/dcim/powerport.html:28 -#: netbox/templates/dcim/rackrole.html:22 -#: netbox/templates/dcim/rearport.html:28 netbox/templates/dcim/region.html:29 -#: netbox/templates/dcim/sitegroup.html:29 -#: netbox/templates/dcim/virtualdevicecontext.html:18 -#: netbox/templates/extras/configcontext.html:13 -#: netbox/templates/extras/configtemplate.html:13 -#: netbox/templates/extras/customfield.html:13 -#: netbox/templates/extras/customlink.html:13 -#: netbox/templates/extras/eventrule.html:13 -#: netbox/templates/extras/exporttemplate.html:15 -#: netbox/templates/extras/notificationgroup.html:14 -#: netbox/templates/extras/savedfilter.html:13 -#: netbox/templates/extras/script_list.html:44 -#: netbox/templates/extras/tag.html:14 netbox/templates/extras/webhook.html:13 -#: netbox/templates/ipam/asnrange.html:15 -#: netbox/templates/ipam/fhrpgroup.html:30 netbox/templates/ipam/rir.html:22 -#: netbox/templates/ipam/role.html:22 -#: netbox/templates/ipam/routetarget.html:13 -#: netbox/templates/ipam/service.html:24 -#: netbox/templates/ipam/servicetemplate.html:15 -#: netbox/templates/ipam/vlan.html:35 netbox/templates/ipam/vlangroup.html:30 -#: netbox/templates/tenancy/contact.html:25 -#: netbox/templates/tenancy/contactgroup.html:21 -#: netbox/templates/tenancy/contactrole.html:18 -#: netbox/templates/tenancy/tenantgroup.html:29 -#: netbox/templates/users/group.html:17 -#: netbox/templates/users/objectpermission.html:17 -#: netbox/templates/virtualization/cluster.html:13 -#: netbox/templates/virtualization/clustergroup.html:22 -#: netbox/templates/virtualization/clustertype.html:22 -#: netbox/templates/virtualization/virtualdisk.html:25 -#: netbox/templates/virtualization/virtualmachine.html:15 -#: netbox/templates/virtualization/vminterface.html:25 -#: netbox/templates/vpn/ikepolicy.html:13 -#: netbox/templates/vpn/ikeproposal.html:13 -#: netbox/templates/vpn/ipsecpolicy.html:13 -#: netbox/templates/vpn/ipsecprofile.html:13 -#: netbox/templates/vpn/ipsecprofile.html:36 -#: netbox/templates/vpn/ipsecprofile.html:69 -#: netbox/templates/vpn/ipsecproposal.html:13 -#: netbox/templates/vpn/l2vpn.html:14 netbox/templates/vpn/tunnel.html:21 -#: netbox/templates/vpn/tunnelgroup.html:26 -#: netbox/templates/wireless/wirelesslangroup.html:29 -#: netbox/tenancy/tables/contacts.py:19 netbox/tenancy/tables/contacts.py:41 -#: netbox/tenancy/tables/contacts.py:56 netbox/tenancy/tables/tenants.py:16 -#: netbox/tenancy/tables/tenants.py:38 netbox/users/tables.py:62 -#: netbox/users/tables.py:76 netbox/virtualization/forms/bulk_create.py:20 -#: netbox/virtualization/forms/object_create.py:13 -#: netbox/virtualization/forms/object_create.py:23 -#: netbox/virtualization/tables/clusters.py:17 -#: netbox/virtualization/tables/clusters.py:39 -#: netbox/virtualization/tables/clusters.py:62 -#: netbox/virtualization/tables/virtualmachines.py:55 -#: netbox/virtualization/tables/virtualmachines.py:139 -#: netbox/virtualization/tables/virtualmachines.py:194 -#: netbox/vpn/tables/crypto.py:18 netbox/vpn/tables/crypto.py:57 -#: netbox/vpn/tables/crypto.py:93 netbox/vpn/tables/crypto.py:129 -#: netbox/vpn/tables/crypto.py:158 netbox/vpn/tables/l2vpn.py:23 -#: netbox/vpn/tables/tunnels.py:18 netbox/vpn/tables/tunnels.py:40 -#: netbox/wireless/tables/wirelesslan.py:18 -#: netbox/wireless/tables/wirelesslan.py:79 +#: circuits/tables/circuits.py:32 circuits/tables/circuits.py:132 +#: circuits/tables/providers.py:18 circuits/tables/providers.py:69 +#: circuits/tables/providers.py:99 core/tables/data.py:16 +#: core/tables/jobs.py:14 core/tables/plugins.py:44 core/tables/tasks.py:11 +#: core/tables/tasks.py:115 dcim/forms/filtersets.py:63 +#: dcim/forms/object_create.py:43 dcim/tables/devices.py:52 +#: dcim/tables/devices.py:92 dcim/tables/devices.py:134 +#: dcim/tables/devices.py:289 dcim/tables/devices.py:392 +#: dcim/tables/devices.py:433 dcim/tables/devices.py:482 +#: dcim/tables/devices.py:531 dcim/tables/devices.py:648 +#: dcim/tables/devices.py:731 dcim/tables/devices.py:778 +#: dcim/tables/devices.py:841 dcim/tables/devices.py:911 +#: dcim/tables/devices.py:974 dcim/tables/devices.py:994 +#: dcim/tables/devices.py:1023 dcim/tables/devices.py:1053 +#: dcim/tables/devicetypes.py:31 dcim/tables/power.py:22 +#: dcim/tables/power.py:62 dcim/tables/racks.py:24 dcim/tables/racks.py:113 +#: dcim/tables/sites.py:24 dcim/tables/sites.py:51 dcim/tables/sites.py:78 +#: dcim/tables/sites.py:130 extras/forms/filtersets.py:213 +#: extras/tables/tables.py:58 extras/tables/tables.py:122 +#: extras/tables/tables.py:155 extras/tables/tables.py:180 +#: extras/tables/tables.py:246 extras/tables/tables.py:361 +#: extras/tables/tables.py:378 extras/tables/tables.py:401 +#: extras/tables/tables.py:439 extras/tables/tables.py:491 +#: extras/tables/tables.py:514 ipam/forms/bulk_edit.py:407 +#: ipam/forms/filtersets.py:386 ipam/tables/asn.py:16 ipam/tables/ip.py:85 +#: ipam/tables/ip.py:160 ipam/tables/services.py:15 ipam/tables/services.py:40 +#: ipam/tables/vlans.py:64 ipam/tables/vlans.py:114 ipam/tables/vrfs.py:26 +#: ipam/tables/vrfs.py:68 templates/circuits/circuitgroup.html:28 +#: templates/circuits/circuittype.html:22 +#: templates/circuits/provideraccount.html:28 +#: templates/circuits/providernetwork.html:24 +#: templates/core/datasource.html:34 templates/core/job.html:44 +#: templates/core/plugin.html:54 templates/core/rq_worker.html:43 +#: templates/dcim/consoleport.html:28 templates/dcim/consoleserverport.html:28 +#: templates/dcim/devicebay.html:24 templates/dcim/devicerole.html:26 +#: templates/dcim/frontport.html:28 +#: templates/dcim/inc/interface_vlans_table.html:5 +#: templates/dcim/inc/panels/inventory_items.html:18 +#: templates/dcim/interface.html:38 templates/dcim/interface.html:165 +#: templates/dcim/inventoryitem.html:28 +#: templates/dcim/inventoryitemrole.html:18 templates/dcim/location.html:29 +#: templates/dcim/manufacturer.html:36 templates/dcim/modulebay.html:30 +#: templates/dcim/platform.html:29 templates/dcim/poweroutlet.html:28 +#: templates/dcim/powerport.html:28 templates/dcim/rackrole.html:22 +#: templates/dcim/rearport.html:28 templates/dcim/region.html:29 +#: templates/dcim/sitegroup.html:29 +#: templates/dcim/virtualdevicecontext.html:18 +#: templates/extras/configcontext.html:13 +#: templates/extras/configtemplate.html:13 +#: templates/extras/customfield.html:13 templates/extras/customlink.html:13 +#: templates/extras/eventrule.html:13 templates/extras/exporttemplate.html:15 +#: templates/extras/notificationgroup.html:14 +#: templates/extras/savedfilter.html:13 templates/extras/script_list.html:44 +#: templates/extras/tag.html:14 templates/extras/webhook.html:13 +#: templates/ipam/asnrange.html:15 templates/ipam/fhrpgroup.html:30 +#: templates/ipam/rir.html:22 templates/ipam/role.html:22 +#: templates/ipam/routetarget.html:13 templates/ipam/service.html:24 +#: templates/ipam/servicetemplate.html:15 templates/ipam/vlan.html:35 +#: templates/ipam/vlangroup.html:30 templates/tenancy/contact.html:25 +#: templates/tenancy/contactgroup.html:21 +#: templates/tenancy/contactrole.html:18 templates/tenancy/tenantgroup.html:29 +#: templates/users/group.html:17 templates/users/objectpermission.html:17 +#: templates/virtualization/cluster.html:13 +#: templates/virtualization/clustergroup.html:22 +#: templates/virtualization/clustertype.html:22 +#: templates/virtualization/virtualdisk.html:25 +#: templates/virtualization/virtualmachine.html:15 +#: templates/virtualization/vminterface.html:25 +#: templates/vpn/ikepolicy.html:13 templates/vpn/ikeproposal.html:13 +#: templates/vpn/ipsecpolicy.html:13 templates/vpn/ipsecprofile.html:13 +#: templates/vpn/ipsecprofile.html:36 templates/vpn/ipsecprofile.html:69 +#: templates/vpn/ipsecproposal.html:13 templates/vpn/l2vpn.html:14 +#: templates/vpn/tunnel.html:21 templates/vpn/tunnelgroup.html:26 +#: templates/wireless/wirelesslangroup.html:29 tenancy/tables/contacts.py:19 +#: tenancy/tables/contacts.py:41 tenancy/tables/contacts.py:56 +#: tenancy/tables/tenants.py:16 tenancy/tables/tenants.py:38 +#: users/tables.py:62 users/tables.py:76 +#: virtualization/forms/bulk_create.py:20 +#: virtualization/forms/object_create.py:13 +#: virtualization/forms/object_create.py:23 +#: virtualization/tables/clusters.py:17 virtualization/tables/clusters.py:39 +#: virtualization/tables/clusters.py:62 +#: virtualization/tables/virtualmachines.py:55 +#: virtualization/tables/virtualmachines.py:139 +#: virtualization/tables/virtualmachines.py:194 vpn/tables/crypto.py:18 +#: vpn/tables/crypto.py:57 vpn/tables/crypto.py:93 vpn/tables/crypto.py:129 +#: vpn/tables/crypto.py:158 vpn/tables/l2vpn.py:23 vpn/tables/tunnels.py:18 +#: vpn/tables/tunnels.py:40 wireless/tables/wirelesslan.py:18 +#: wireless/tables/wirelesslan.py:79 msgid "Name" msgstr "Nom" -#: netbox/circuits/tables/circuits.py:41 -#: netbox/circuits/tables/circuits.py:138 -#: netbox/circuits/tables/providers.py:45 -#: netbox/circuits/tables/providers.py:79 netbox/netbox/navigation/menu.py:266 -#: netbox/netbox/navigation/menu.py:270 netbox/netbox/navigation/menu.py:272 -#: netbox/templates/circuits/provider.html:57 -#: netbox/templates/circuits/provideraccount.html:44 -#: netbox/templates/circuits/providernetwork.html:50 +#: circuits/tables/circuits.py:41 circuits/tables/circuits.py:138 +#: circuits/tables/providers.py:45 circuits/tables/providers.py:79 +#: netbox/navigation/menu.py:266 netbox/navigation/menu.py:270 +#: netbox/navigation/menu.py:272 templates/circuits/provider.html:57 +#: templates/circuits/provideraccount.html:44 +#: templates/circuits/providernetwork.html:50 msgid "Circuits" msgstr "Circuits" -#: netbox/circuits/tables/circuits.py:55 -#: netbox/templates/circuits/circuit.html:26 +#: circuits/tables/circuits.py:55 templates/circuits/circuit.html:26 msgid "Circuit ID" msgstr "Identifiant du circuit" -#: netbox/circuits/tables/circuits.py:69 -#: netbox/wireless/forms/model_forms.py:160 +#: circuits/tables/circuits.py:69 wireless/forms/model_forms.py:160 msgid "Side A" msgstr "Côté A" -#: netbox/circuits/tables/circuits.py:74 +#: circuits/tables/circuits.py:74 msgid "Side Z" msgstr "Côté Z" -#: netbox/circuits/tables/circuits.py:77 -#: netbox/templates/circuits/circuit.html:55 +#: circuits/tables/circuits.py:77 templates/circuits/circuit.html:55 msgid "Commit Rate" msgstr "Bande passante garantie" -#: netbox/circuits/tables/circuits.py:80 -#: netbox/circuits/tables/providers.py:48 -#: netbox/circuits/tables/providers.py:82 -#: netbox/circuits/tables/providers.py:107 netbox/dcim/tables/devices.py:1036 -#: netbox/dcim/tables/devicetypes.py:92 netbox/dcim/tables/modules.py:29 -#: netbox/dcim/tables/modules.py:72 netbox/dcim/tables/power.py:39 -#: netbox/dcim/tables/power.py:96 netbox/dcim/tables/racks.py:84 -#: netbox/dcim/tables/racks.py:145 netbox/dcim/tables/racks.py:225 -#: netbox/dcim/tables/sites.py:108 netbox/extras/tables/tables.py:582 -#: netbox/ipam/tables/asn.py:69 netbox/ipam/tables/fhrp.py:34 -#: netbox/ipam/tables/ip.py:136 netbox/ipam/tables/ip.py:275 -#: netbox/ipam/tables/ip.py:329 netbox/ipam/tables/ip.py:397 -#: netbox/ipam/tables/services.py:24 netbox/ipam/tables/services.py:54 -#: netbox/ipam/tables/vlans.py:145 netbox/ipam/tables/vrfs.py:47 -#: netbox/ipam/tables/vrfs.py:72 netbox/templates/dcim/htmx/cable_edit.html:89 -#: netbox/templates/generic/bulk_edit.html:86 -#: netbox/templates/inc/panels/comments.html:5 -#: netbox/tenancy/tables/contacts.py:68 netbox/tenancy/tables/tenants.py:46 -#: netbox/utilities/forms/fields/fields.py:29 -#: netbox/virtualization/tables/clusters.py:91 -#: netbox/virtualization/tables/virtualmachines.py:82 -#: netbox/vpn/tables/crypto.py:37 netbox/vpn/tables/crypto.py:74 -#: netbox/vpn/tables/crypto.py:109 netbox/vpn/tables/crypto.py:140 -#: netbox/vpn/tables/crypto.py:173 netbox/vpn/tables/l2vpn.py:37 -#: netbox/vpn/tables/tunnels.py:61 netbox/wireless/tables/wirelesslan.py:27 -#: netbox/wireless/tables/wirelesslan.py:58 +#: circuits/tables/circuits.py:80 circuits/tables/providers.py:48 +#: circuits/tables/providers.py:82 circuits/tables/providers.py:107 +#: dcim/tables/devices.py:1036 dcim/tables/devicetypes.py:92 +#: dcim/tables/modules.py:29 dcim/tables/modules.py:72 dcim/tables/power.py:39 +#: dcim/tables/power.py:96 dcim/tables/racks.py:84 dcim/tables/racks.py:145 +#: dcim/tables/racks.py:225 dcim/tables/sites.py:108 +#: extras/tables/tables.py:582 ipam/tables/asn.py:69 ipam/tables/fhrp.py:34 +#: ipam/tables/ip.py:136 ipam/tables/ip.py:275 ipam/tables/ip.py:329 +#: ipam/tables/ip.py:397 ipam/tables/services.py:24 ipam/tables/services.py:54 +#: ipam/tables/vlans.py:145 ipam/tables/vrfs.py:47 ipam/tables/vrfs.py:72 +#: templates/dcim/htmx/cable_edit.html:89 templates/generic/bulk_edit.html:86 +#: templates/inc/panels/comments.html:5 tenancy/tables/contacts.py:68 +#: tenancy/tables/tenants.py:46 utilities/forms/fields/fields.py:29 +#: virtualization/tables/clusters.py:91 +#: virtualization/tables/virtualmachines.py:82 vpn/tables/crypto.py:37 +#: vpn/tables/crypto.py:74 vpn/tables/crypto.py:109 vpn/tables/crypto.py:140 +#: vpn/tables/crypto.py:173 vpn/tables/l2vpn.py:37 vpn/tables/tunnels.py:61 +#: wireless/tables/wirelesslan.py:27 wireless/tables/wirelesslan.py:58 msgid "Comments" msgstr "Commentaires" -#: netbox/circuits/tables/circuits.py:86 -#: netbox/templates/tenancy/contact.html:84 -#: netbox/tenancy/tables/contacts.py:73 +#: circuits/tables/circuits.py:86 templates/tenancy/contact.html:84 +#: tenancy/tables/contacts.py:73 msgid "Assignments" msgstr "Allocations" -#: netbox/circuits/tables/providers.py:23 +#: circuits/tables/providers.py:23 msgid "Accounts" msgstr "Comptes" -#: netbox/circuits/tables/providers.py:29 +#: circuits/tables/providers.py:29 msgid "Account Count" msgstr "Nombre de comptes" -#: netbox/circuits/tables/providers.py:39 netbox/dcim/tables/sites.py:100 +#: circuits/tables/providers.py:39 dcim/tables/sites.py:100 msgid "ASN Count" msgstr "Nombre d'ASN" -#: netbox/circuits/views.py:331 +#: circuits/views.py:331 #, python-brace-format msgid "No terminations have been defined for circuit {circuit}." msgstr "Aucune terminaison n'a été définie pour le circuit {circuit}." -#: netbox/circuits/views.py:380 +#: circuits/views.py:380 #, python-brace-format msgid "Swapped terminations for circuit {circuit}." msgstr "Terminaisons échangées pour le circuit {circuit}." -#: netbox/core/api/views.py:39 +#: core/api/views.py:39 msgid "This user does not have permission to synchronize this data source." msgstr "" "Cet utilisateur n'est pas autorisé à synchroniser cette source de données." -#: netbox/core/choices.py:18 +#: core/choices.py:18 msgid "New" msgstr "Nouveau" -#: netbox/core/choices.py:19 netbox/core/constants.py:18 -#: netbox/core/tables/tasks.py:15 netbox/templates/core/rq_task.html:77 +#: core/choices.py:19 core/constants.py:18 core/tables/tasks.py:15 +#: templates/core/rq_task.html:77 msgid "Queued" msgstr "En file d'attente" -#: netbox/core/choices.py:20 +#: core/choices.py:20 msgid "Syncing" msgstr "Synchronisation" -#: netbox/core/choices.py:21 netbox/core/choices.py:57 -#: netbox/core/tables/jobs.py:41 netbox/templates/core/job.html:86 +#: core/choices.py:21 core/choices.py:57 core/tables/jobs.py:41 +#: templates/core/job.html:86 msgid "Completed" msgstr "Terminé" -#: netbox/core/choices.py:22 netbox/core/choices.py:59 -#: netbox/core/constants.py:20 netbox/core/tables/tasks.py:34 -#: netbox/dcim/choices.py:187 netbox/dcim/choices.py:239 -#: netbox/dcim/choices.py:1607 netbox/virtualization/choices.py:47 +#: core/choices.py:22 core/choices.py:59 core/constants.py:20 +#: core/tables/tasks.py:34 dcim/choices.py:187 dcim/choices.py:239 +#: dcim/choices.py:1607 virtualization/choices.py:47 msgid "Failed" msgstr "Échoué" -#: netbox/core/choices.py:35 netbox/netbox/navigation/menu.py:335 -#: netbox/netbox/navigation/menu.py:339 -#: netbox/templates/extras/script/base.html:14 -#: netbox/templates/extras/script_list.html:7 -#: netbox/templates/extras/script_list.html:12 -#: netbox/templates/extras/script_result.html:17 +#: core/choices.py:35 netbox/navigation/menu.py:335 +#: netbox/navigation/menu.py:339 templates/extras/script/base.html:14 +#: templates/extras/script_list.html:7 templates/extras/script_list.html:12 +#: templates/extras/script_result.html:17 msgid "Scripts" msgstr "Scripts" -#: netbox/core/choices.py:36 netbox/templates/extras/report/base.html:13 +#: core/choices.py:36 templates/extras/report/base.html:13 msgid "Reports" msgstr "Rapports" -#: netbox/core/choices.py:54 +#: core/choices.py:54 msgid "Pending" msgstr "En attente" -#: netbox/core/choices.py:55 netbox/core/constants.py:23 -#: netbox/core/tables/jobs.py:32 netbox/core/tables/tasks.py:38 -#: netbox/templates/core/job.html:73 +#: core/choices.py:55 core/constants.py:23 core/tables/jobs.py:32 +#: core/tables/tasks.py:38 templates/core/job.html:73 msgid "Scheduled" msgstr "Programmé" -#: netbox/core/choices.py:56 +#: core/choices.py:56 msgid "Running" msgstr "En exécution" -#: netbox/core/choices.py:58 +#: core/choices.py:58 msgid "Errored" msgstr "En erreur" -#: netbox/core/choices.py:87 netbox/core/tables/plugins.py:63 -#: netbox/templates/generic/object.html:61 +#: core/choices.py:87 core/tables/plugins.py:63 +#: templates/generic/object.html:61 msgid "Updated" msgstr "Mis à jour" -#: netbox/core/choices.py:88 +#: core/choices.py:88 msgid "Deleted" msgstr "Supprimé" -#: netbox/core/constants.py:19 netbox/core/tables/tasks.py:30 +#: core/constants.py:19 core/tables/tasks.py:30 msgid "Finished" msgstr "Terminé" -#: netbox/core/constants.py:21 netbox/core/tables/jobs.py:38 -#: netbox/templates/core/job.html:82 -#: netbox/templates/extras/htmx/script_result.html:8 +#: core/constants.py:21 core/tables/jobs.py:38 templates/core/job.html:82 +#: templates/extras/htmx/script_result.html:8 msgid "Started" msgstr "Commencé" -#: netbox/core/constants.py:22 netbox/core/tables/tasks.py:26 +#: core/constants.py:22 core/tables/tasks.py:26 msgid "Deferred" msgstr "Différé" -#: netbox/core/constants.py:24 +#: core/constants.py:24 msgid "Stopped" msgstr "Arrêté" -#: netbox/core/constants.py:25 +#: core/constants.py:25 msgid "Cancelled" msgstr "Annulé" -#: netbox/core/data_backends.py:32 netbox/core/tables/plugins.py:51 -#: netbox/templates/core/plugin.html:87 -#: netbox/templates/dcim/interface.html:216 +#: core/data_backends.py:32 core/tables/plugins.py:51 +#: templates/core/plugin.html:88 templates/dcim/interface.html:216 msgid "Local" msgstr "Local" -#: netbox/core/data_backends.py:50 netbox/core/tables/change_logging.py:20 -#: netbox/templates/account/profile.html:15 -#: netbox/templates/users/user.html:17 netbox/users/tables.py:31 +#: core/data_backends.py:50 core/tables/change_logging.py:20 +#: templates/account/profile.html:15 templates/users/user.html:17 +#: users/tables.py:31 msgid "Username" msgstr "Nom d'utilisateur" -#: netbox/core/data_backends.py:52 netbox/core/data_backends.py:58 +#: core/data_backends.py:52 core/data_backends.py:58 msgid "Only used for cloning with HTTP(S)" msgstr "Utilisé uniquement pour le clonage avec HTTP(S)" -#: netbox/core/data_backends.py:56 netbox/templates/account/base.html:23 -#: netbox/templates/account/password.html:12 -#: netbox/users/forms/model_forms.py:170 +#: core/data_backends.py:56 templates/account/base.html:23 +#: templates/account/password.html:12 users/forms/model_forms.py:170 msgid "Password" msgstr "Mot de passe" -#: netbox/core/data_backends.py:62 +#: core/data_backends.py:62 msgid "Branch" msgstr "Branche" -#: netbox/core/data_backends.py:120 +#: core/data_backends.py:120 #, python-brace-format msgid "Fetching remote data failed ({name}): {error}" msgstr "La récupération des données distantes a échoué ({name}) : {error}" -#: netbox/core/data_backends.py:133 +#: core/data_backends.py:133 msgid "AWS access key ID" msgstr "ID de clé d'accès AWS" -#: netbox/core/data_backends.py:137 +#: core/data_backends.py:137 msgid "AWS secret access key" msgstr "Clé d'accès secrète AWS" -#: netbox/core/events.py:27 +#: core/events.py:27 msgid "Object created" msgstr "Objet créé" -#: netbox/core/events.py:28 +#: core/events.py:28 msgid "Object updated" msgstr "Objet mis à jour" -#: netbox/core/events.py:29 +#: core/events.py:29 msgid "Object deleted" msgstr "Objet supprimé" -#: netbox/core/events.py:30 +#: core/events.py:30 msgid "Job started" msgstr "Le travail a commencé" -#: netbox/core/events.py:31 +#: core/events.py:31 msgid "Job completed" msgstr "Tâche terminée" -#: netbox/core/events.py:32 +#: core/events.py:32 msgid "Job failed" msgstr "La tâche a échoué" -#: netbox/core/events.py:33 +#: core/events.py:33 msgid "Job errored" msgstr "Job erroné" -#: netbox/core/filtersets.py:53 netbox/extras/filtersets.py:250 -#: netbox/extras/filtersets.py:633 netbox/extras/filtersets.py:661 +#: core/filtersets.py:53 extras/filtersets.py:250 extras/filtersets.py:633 +#: extras/filtersets.py:661 msgid "Data source (ID)" msgstr "Source de données (ID)" -#: netbox/core/filtersets.py:59 +#: core/filtersets.py:59 msgid "Data source (name)" msgstr "Source de données (nom)" -#: netbox/core/filtersets.py:145 netbox/dcim/filtersets.py:501 -#: netbox/extras/filtersets.py:287 netbox/extras/filtersets.py:331 -#: netbox/extras/filtersets.py:353 netbox/extras/filtersets.py:413 -#: netbox/users/filtersets.py:28 +#: core/filtersets.py:145 dcim/filtersets.py:501 extras/filtersets.py:287 +#: extras/filtersets.py:331 extras/filtersets.py:353 extras/filtersets.py:413 +#: users/filtersets.py:28 msgid "User (ID)" msgstr "Utilisateur (ID)" -#: netbox/core/filtersets.py:151 +#: core/filtersets.py:151 msgid "User name" msgstr "Nom d'utilisateur" -#: netbox/core/forms/bulk_edit.py:25 netbox/core/forms/filtersets.py:43 -#: netbox/core/tables/data.py:26 netbox/dcim/forms/bulk_edit.py:1122 -#: netbox/dcim/forms/bulk_edit.py:1400 netbox/dcim/forms/filtersets.py:1370 -#: netbox/dcim/tables/devices.py:553 netbox/dcim/tables/devicetypes.py:224 -#: netbox/extras/forms/bulk_edit.py:123 netbox/extras/forms/bulk_edit.py:187 -#: netbox/extras/forms/bulk_edit.py:246 netbox/extras/forms/filtersets.py:142 -#: netbox/extras/forms/filtersets.py:229 netbox/extras/forms/filtersets.py:294 -#: netbox/extras/tables/tables.py:162 netbox/extras/tables/tables.py:253 -#: netbox/extras/tables/tables.py:415 netbox/netbox/preferences.py:22 -#: netbox/templates/core/datasource.html:42 -#: netbox/templates/dcim/interface.html:61 -#: netbox/templates/extras/customlink.html:17 -#: netbox/templates/extras/eventrule.html:17 -#: netbox/templates/extras/savedfilter.html:25 -#: netbox/templates/users/objectpermission.html:25 -#: netbox/templates/virtualization/vminterface.html:29 -#: netbox/users/forms/bulk_edit.py:89 netbox/users/forms/filtersets.py:70 -#: netbox/users/tables.py:83 netbox/virtualization/forms/bulk_edit.py:217 -#: netbox/virtualization/forms/filtersets.py:215 +#: core/forms/bulk_edit.py:25 core/forms/filtersets.py:43 +#: core/tables/data.py:26 dcim/forms/bulk_edit.py:1122 +#: dcim/forms/bulk_edit.py:1400 dcim/forms/filtersets.py:1370 +#: dcim/tables/devices.py:553 dcim/tables/devicetypes.py:224 +#: extras/forms/bulk_edit.py:123 extras/forms/bulk_edit.py:187 +#: extras/forms/bulk_edit.py:246 extras/forms/filtersets.py:142 +#: extras/forms/filtersets.py:229 extras/forms/filtersets.py:294 +#: extras/tables/tables.py:162 extras/tables/tables.py:253 +#: extras/tables/tables.py:415 netbox/preferences.py:22 +#: templates/core/datasource.html:42 templates/dcim/interface.html:61 +#: templates/extras/customlink.html:17 templates/extras/eventrule.html:17 +#: templates/extras/savedfilter.html:25 +#: templates/users/objectpermission.html:25 +#: templates/virtualization/vminterface.html:29 users/forms/bulk_edit.py:89 +#: users/forms/filtersets.py:70 users/tables.py:83 +#: virtualization/forms/bulk_edit.py:217 +#: virtualization/forms/filtersets.py:215 msgid "Enabled" msgstr "Activé" -#: netbox/core/forms/bulk_edit.py:34 netbox/extras/forms/model_forms.py:285 -#: netbox/templates/extras/savedfilter.html:52 -#: netbox/vpn/forms/filtersets.py:97 netbox/vpn/forms/filtersets.py:127 -#: netbox/vpn/forms/filtersets.py:151 netbox/vpn/forms/filtersets.py:170 -#: netbox/vpn/forms/model_forms.py:301 netbox/vpn/forms/model_forms.py:321 -#: netbox/vpn/forms/model_forms.py:337 netbox/vpn/forms/model_forms.py:357 -#: netbox/vpn/forms/model_forms.py:380 +#: core/forms/bulk_edit.py:34 extras/forms/model_forms.py:285 +#: templates/extras/savedfilter.html:52 vpn/forms/filtersets.py:97 +#: vpn/forms/filtersets.py:127 vpn/forms/filtersets.py:151 +#: vpn/forms/filtersets.py:170 vpn/forms/model_forms.py:301 +#: vpn/forms/model_forms.py:321 vpn/forms/model_forms.py:337 +#: vpn/forms/model_forms.py:357 vpn/forms/model_forms.py:380 msgid "Parameters" msgstr "Paramètres" -#: netbox/core/forms/bulk_edit.py:38 netbox/templates/core/datasource.html:68 +#: core/forms/bulk_edit.py:38 templates/core/datasource.html:68 msgid "Ignore rules" msgstr "Ignorer les règles" -#: netbox/core/forms/filtersets.py:30 netbox/core/forms/model_forms.py:97 -#: netbox/extras/forms/model_forms.py:248 -#: netbox/extras/forms/model_forms.py:578 -#: netbox/extras/forms/model_forms.py:632 netbox/extras/tables/tables.py:191 -#: netbox/extras/tables/tables.py:483 netbox/extras/tables/tables.py:518 -#: netbox/templates/core/datasource.html:31 -#: netbox/templates/dcim/device/render_config.html:18 -#: netbox/templates/extras/configcontext.html:29 -#: netbox/templates/extras/configtemplate.html:21 -#: netbox/templates/extras/exporttemplate.html:35 -#: netbox/templates/virtualization/virtualmachine/render_config.html:18 +#: core/forms/filtersets.py:30 core/forms/model_forms.py:97 +#: extras/forms/model_forms.py:248 extras/forms/model_forms.py:578 +#: extras/forms/model_forms.py:632 extras/tables/tables.py:191 +#: extras/tables/tables.py:483 extras/tables/tables.py:518 +#: templates/core/datasource.html:31 +#: templates/dcim/device/render_config.html:18 +#: templates/extras/configcontext.html:29 +#: templates/extras/configtemplate.html:21 +#: templates/extras/exporttemplate.html:35 +#: templates/virtualization/virtualmachine/render_config.html:18 msgid "Data Source" msgstr "Source de données" -#: netbox/core/forms/filtersets.py:55 netbox/core/forms/mixins.py:21 +#: core/forms/filtersets.py:55 core/forms/mixins.py:21 msgid "File" msgstr "Fichier" -#: netbox/core/forms/filtersets.py:60 netbox/core/forms/mixins.py:16 -#: netbox/extras/forms/filtersets.py:170 netbox/extras/forms/filtersets.py:328 -#: netbox/extras/forms/filtersets.py:413 +#: core/forms/filtersets.py:60 core/forms/mixins.py:16 +#: extras/forms/filtersets.py:170 extras/forms/filtersets.py:328 +#: extras/forms/filtersets.py:413 msgid "Data source" msgstr "Source de données" -#: netbox/core/forms/filtersets.py:70 netbox/extras/forms/filtersets.py:440 +#: core/forms/filtersets.py:70 extras/forms/filtersets.py:440 msgid "Creation" msgstr "Création" -#: netbox/core/forms/filtersets.py:74 netbox/core/forms/filtersets.py:160 -#: netbox/extras/forms/filtersets.py:461 netbox/extras/tables/tables.py:220 -#: netbox/extras/tables/tables.py:294 netbox/extras/tables/tables.py:326 -#: netbox/extras/tables/tables.py:571 netbox/templates/core/job.html:38 -#: netbox/templates/core/objectchange.html:52 -#: netbox/tenancy/tables/contacts.py:90 netbox/vpn/tables/l2vpn.py:59 +#: core/forms/filtersets.py:74 core/forms/filtersets.py:160 +#: extras/forms/filtersets.py:461 extras/tables/tables.py:220 +#: extras/tables/tables.py:294 extras/tables/tables.py:326 +#: extras/tables/tables.py:571 templates/core/job.html:38 +#: templates/core/objectchange.html:52 tenancy/tables/contacts.py:90 +#: vpn/tables/l2vpn.py:59 msgid "Object Type" msgstr "Type d'objet" -#: netbox/core/forms/filtersets.py:84 +#: core/forms/filtersets.py:84 msgid "Created after" msgstr "Créé après" -#: netbox/core/forms/filtersets.py:89 +#: core/forms/filtersets.py:89 msgid "Created before" msgstr "Créé avant" -#: netbox/core/forms/filtersets.py:94 +#: core/forms/filtersets.py:94 msgid "Scheduled after" msgstr "Planifié après" -#: netbox/core/forms/filtersets.py:99 +#: core/forms/filtersets.py:99 msgid "Scheduled before" msgstr "Planifié avant" -#: netbox/core/forms/filtersets.py:104 +#: core/forms/filtersets.py:104 msgid "Started after" msgstr "Commencé après" -#: netbox/core/forms/filtersets.py:109 +#: core/forms/filtersets.py:109 msgid "Started before" msgstr "Commencé avant" -#: netbox/core/forms/filtersets.py:114 +#: core/forms/filtersets.py:114 msgid "Completed after" msgstr "Terminé après" -#: netbox/core/forms/filtersets.py:119 +#: core/forms/filtersets.py:119 msgid "Completed before" msgstr "Terminé avant" -#: netbox/core/forms/filtersets.py:126 netbox/core/forms/filtersets.py:155 -#: netbox/dcim/forms/bulk_edit.py:456 netbox/dcim/forms/filtersets.py:418 -#: netbox/dcim/forms/filtersets.py:462 netbox/dcim/forms/model_forms.py:316 -#: netbox/extras/forms/filtersets.py:456 netbox/extras/forms/filtersets.py:475 -#: netbox/extras/tables/tables.py:302 netbox/extras/tables/tables.py:342 -#: netbox/templates/core/objectchange.html:36 -#: netbox/templates/dcim/rackreservation.html:58 -#: netbox/templates/extras/savedfilter.html:21 -#: netbox/templates/inc/user_menu.html:33 netbox/templates/users/token.html:21 -#: netbox/templates/users/user.html:6 netbox/templates/users/user.html:14 -#: netbox/users/filtersets.py:107 netbox/users/filtersets.py:174 -#: netbox/users/forms/filtersets.py:84 netbox/users/forms/filtersets.py:125 -#: netbox/users/forms/model_forms.py:155 netbox/users/forms/model_forms.py:192 -#: netbox/users/tables.py:19 +#: core/forms/filtersets.py:126 core/forms/filtersets.py:155 +#: dcim/forms/bulk_edit.py:456 dcim/forms/filtersets.py:418 +#: dcim/forms/filtersets.py:462 dcim/forms/model_forms.py:316 +#: extras/forms/filtersets.py:456 extras/forms/filtersets.py:475 +#: extras/tables/tables.py:302 extras/tables/tables.py:342 +#: templates/core/objectchange.html:36 templates/dcim/rackreservation.html:58 +#: templates/extras/savedfilter.html:21 templates/inc/user_menu.html:33 +#: templates/users/token.html:21 templates/users/user.html:6 +#: templates/users/user.html:14 users/filtersets.py:107 +#: users/filtersets.py:174 users/forms/filtersets.py:84 +#: users/forms/filtersets.py:125 users/forms/model_forms.py:155 +#: users/forms/model_forms.py:192 users/tables.py:19 msgid "User" msgstr "Utilisateur" -#: netbox/core/forms/filtersets.py:134 netbox/core/tables/change_logging.py:15 -#: netbox/extras/tables/tables.py:609 netbox/extras/tables/tables.py:646 -#: netbox/templates/core/objectchange.html:32 +#: core/forms/filtersets.py:134 core/tables/change_logging.py:15 +#: extras/tables/tables.py:609 extras/tables/tables.py:646 +#: templates/core/objectchange.html:32 msgid "Time" msgstr "Heure" -#: netbox/core/forms/filtersets.py:139 netbox/extras/forms/filtersets.py:445 +#: core/forms/filtersets.py:139 extras/forms/filtersets.py:445 msgid "After" msgstr "Après" -#: netbox/core/forms/filtersets.py:144 netbox/extras/forms/filtersets.py:450 +#: core/forms/filtersets.py:144 extras/forms/filtersets.py:450 msgid "Before" msgstr "Avant" -#: netbox/core/forms/filtersets.py:148 netbox/core/tables/change_logging.py:29 -#: netbox/extras/forms/model_forms.py:396 -#: netbox/templates/core/objectchange.html:46 -#: netbox/templates/extras/eventrule.html:71 +#: core/forms/filtersets.py:148 core/tables/change_logging.py:29 +#: extras/forms/model_forms.py:396 templates/core/objectchange.html:46 +#: templates/extras/eventrule.html:71 msgid "Action" msgstr "Action" -#: netbox/core/forms/model_forms.py:54 netbox/core/tables/data.py:46 -#: netbox/templates/core/datafile.html:27 -#: netbox/templates/extras/report/base.html:33 -#: netbox/templates/extras/script/base.html:32 +#: core/forms/model_forms.py:54 core/tables/data.py:46 +#: templates/core/datafile.html:27 templates/extras/report/base.html:33 +#: templates/extras/script/base.html:32 msgid "Source" msgstr "Source" -#: netbox/core/forms/model_forms.py:58 +#: core/forms/model_forms.py:58 msgid "Backend Parameters" msgstr "Paramètres du backend" -#: netbox/core/forms/model_forms.py:96 +#: core/forms/model_forms.py:96 msgid "File Upload" msgstr "Téléversement de fichiers" -#: netbox/core/forms/model_forms.py:108 +#: core/forms/model_forms.py:108 msgid "Cannot upload a file and sync from an existing file" msgstr "" "Impossible de charger un fichier et de le synchroniser à partir d'un fichier" " existant" -#: netbox/core/forms/model_forms.py:110 +#: core/forms/model_forms.py:110 msgid "Must upload a file or select a data file to sync" msgstr "" "Vous devez télécharger un fichier ou sélectionner un fichier de données à " "synchroniser" -#: netbox/core/forms/model_forms.py:153 -#: netbox/templates/dcim/rack_elevation_list.html:6 +#: core/forms/model_forms.py:153 templates/dcim/rack_elevation_list.html:6 msgid "Rack Elevations" msgstr "Élévations des baies" -#: netbox/core/forms/model_forms.py:157 netbox/dcim/choices.py:1518 -#: netbox/dcim/forms/bulk_edit.py:969 netbox/dcim/forms/bulk_edit.py:1357 -#: netbox/dcim/forms/bulk_edit.py:1375 netbox/dcim/tables/racks.py:158 -#: netbox/netbox/navigation/menu.py:291 netbox/netbox/navigation/menu.py:295 +#: core/forms/model_forms.py:157 dcim/choices.py:1518 +#: dcim/forms/bulk_edit.py:969 dcim/forms/bulk_edit.py:1357 +#: dcim/forms/bulk_edit.py:1375 dcim/tables/racks.py:158 +#: netbox/navigation/menu.py:291 netbox/navigation/menu.py:295 msgid "Power" msgstr "Puissance" -#: netbox/core/forms/model_forms.py:159 netbox/netbox/navigation/menu.py:154 -#: netbox/templates/core/inc/config_data.html:37 +#: core/forms/model_forms.py:159 netbox/navigation/menu.py:154 +#: templates/core/inc/config_data.html:37 msgid "IPAM" msgstr "IPAM" -#: netbox/core/forms/model_forms.py:160 netbox/netbox/navigation/menu.py:230 -#: netbox/templates/core/inc/config_data.html:50 -#: netbox/vpn/forms/bulk_edit.py:77 netbox/vpn/forms/filtersets.py:43 -#: netbox/vpn/forms/model_forms.py:61 netbox/vpn/forms/model_forms.py:146 +#: core/forms/model_forms.py:160 netbox/navigation/menu.py:230 +#: templates/core/inc/config_data.html:50 vpn/forms/bulk_edit.py:77 +#: vpn/forms/filtersets.py:43 vpn/forms/model_forms.py:61 +#: vpn/forms/model_forms.py:146 msgid "Security" msgstr "Sécurité" -#: netbox/core/forms/model_forms.py:161 -#: netbox/templates/core/inc/config_data.html:59 +#: core/forms/model_forms.py:161 templates/core/inc/config_data.html:59 msgid "Banners" msgstr "Bannières" -#: netbox/core/forms/model_forms.py:162 -#: netbox/templates/core/inc/config_data.html:80 +#: core/forms/model_forms.py:162 templates/core/inc/config_data.html:80 msgid "Pagination" msgstr "Pagination" -#: netbox/core/forms/model_forms.py:163 netbox/extras/forms/bulk_edit.py:92 -#: netbox/extras/forms/filtersets.py:47 netbox/extras/forms/model_forms.py:116 -#: netbox/extras/forms/model_forms.py:129 -#: netbox/templates/core/inc/config_data.html:93 +#: core/forms/model_forms.py:163 extras/forms/bulk_edit.py:92 +#: extras/forms/filtersets.py:47 extras/forms/model_forms.py:116 +#: extras/forms/model_forms.py:129 templates/core/inc/config_data.html:93 msgid "Validation" msgstr "Validation" -#: netbox/core/forms/model_forms.py:164 -#: netbox/templates/account/preferences.html:6 +#: core/forms/model_forms.py:164 templates/account/preferences.html:6 msgid "User Preferences" msgstr "Préférences de l'utilisateur" -#: netbox/core/forms/model_forms.py:167 netbox/dcim/forms/filtersets.py:732 -#: netbox/templates/core/inc/config_data.html:127 -#: netbox/users/forms/model_forms.py:64 +#: core/forms/model_forms.py:167 dcim/forms/filtersets.py:732 +#: templates/core/inc/config_data.html:127 users/forms/model_forms.py:64 msgid "Miscellaneous" msgstr "Divers" -#: netbox/core/forms/model_forms.py:169 +#: core/forms/model_forms.py:169 msgid "Config Revision" msgstr "Révision de configuration" -#: netbox/core/forms/model_forms.py:208 +#: core/forms/model_forms.py:208 msgid "This parameter has been defined statically and cannot be modified." msgstr "" "Ce paramètre a été défini de manière statique et ne peut pas être modifié." -#: netbox/core/forms/model_forms.py:216 +#: core/forms/model_forms.py:216 #, python-brace-format msgid "Current value: {value}" msgstr "Valeur actuelle : {value}" -#: netbox/core/forms/model_forms.py:218 +#: core/forms/model_forms.py:218 msgid " (default)" msgstr " (par défaut)" -#: netbox/core/models/change_logging.py:29 +#: core/models/change_logging.py:29 msgid "time" msgstr "temps" -#: netbox/core/models/change_logging.py:42 +#: core/models/change_logging.py:42 msgid "user name" msgstr "nom d'utilisateur" -#: netbox/core/models/change_logging.py:47 +#: core/models/change_logging.py:47 msgid "request ID" msgstr "ID de demande" -#: netbox/core/models/change_logging.py:52 netbox/extras/models/staging.py:69 +#: core/models/change_logging.py:52 extras/models/staging.py:69 msgid "action" msgstr "action" -#: netbox/core/models/change_logging.py:86 +#: core/models/change_logging.py:86 msgid "pre-change data" msgstr "données de pré-modification" -#: netbox/core/models/change_logging.py:92 +#: core/models/change_logging.py:92 msgid "post-change data" msgstr "données après modification" -#: netbox/core/models/change_logging.py:106 +#: core/models/change_logging.py:106 msgid "object change" msgstr "changement d'objet" -#: netbox/core/models/change_logging.py:107 +#: core/models/change_logging.py:107 msgid "object changes" msgstr "modifications d'objets" -#: netbox/core/models/change_logging.py:123 +#: core/models/change_logging.py:123 #, python-brace-format msgid "Change logging is not supported for this object type ({type})." msgstr "" "La journalisation des modifications n'est pas prise en charge pour ce type " "d'objet ({type})." -#: netbox/core/models/config.py:18 netbox/core/models/data.py:266 -#: netbox/core/models/files.py:27 netbox/core/models/jobs.py:49 -#: netbox/extras/models/models.py:730 netbox/extras/models/notifications.py:39 -#: netbox/extras/models/notifications.py:186 -#: netbox/netbox/models/features.py:53 netbox/users/models/tokens.py:32 +#: core/models/config.py:18 core/models/data.py:266 core/models/files.py:27 +#: core/models/jobs.py:49 extras/models/models.py:730 +#: extras/models/notifications.py:39 extras/models/notifications.py:186 +#: netbox/models/features.py:53 users/models/tokens.py:32 msgid "created" msgstr "créé" -#: netbox/core/models/config.py:22 +#: core/models/config.py:22 msgid "comment" msgstr "commentaire" -#: netbox/core/models/config.py:29 +#: core/models/config.py:29 msgid "configuration data" msgstr "données de configuration" -#: netbox/core/models/config.py:36 +#: core/models/config.py:36 msgid "config revision" msgstr "révision de configuration" -#: netbox/core/models/config.py:37 +#: core/models/config.py:37 msgid "config revisions" msgstr "révisions de configuration" -#: netbox/core/models/config.py:41 +#: core/models/config.py:41 msgid "Default configuration" msgstr "Configuration par défaut" -#: netbox/core/models/config.py:43 +#: core/models/config.py:43 msgid "Current configuration" msgstr "Configuration actuelle" -#: netbox/core/models/config.py:44 +#: core/models/config.py:44 #, python-brace-format msgid "Config revision #{id}" msgstr "Révision de configuration #{id}" -#: netbox/core/models/data.py:44 netbox/dcim/models/cables.py:43 -#: netbox/dcim/models/device_component_templates.py:203 -#: netbox/dcim/models/device_component_templates.py:237 -#: netbox/dcim/models/device_component_templates.py:272 -#: netbox/dcim/models/device_component_templates.py:334 -#: netbox/dcim/models/device_component_templates.py:413 -#: netbox/dcim/models/device_component_templates.py:512 -#: netbox/dcim/models/device_component_templates.py:612 -#: netbox/dcim/models/device_components.py:283 -#: netbox/dcim/models/device_components.py:312 -#: netbox/dcim/models/device_components.py:345 -#: netbox/dcim/models/device_components.py:463 -#: netbox/dcim/models/device_components.py:605 -#: netbox/dcim/models/device_components.py:970 -#: netbox/dcim/models/device_components.py:1044 -#: netbox/dcim/models/power.py:102 netbox/extras/models/customfields.py:78 -#: netbox/extras/models/search.py:41 -#: netbox/virtualization/models/clusters.py:61 netbox/vpn/models/l2vpn.py:32 +#: core/models/data.py:44 dcim/models/cables.py:43 +#: dcim/models/device_component_templates.py:203 +#: dcim/models/device_component_templates.py:237 +#: dcim/models/device_component_templates.py:272 +#: dcim/models/device_component_templates.py:334 +#: dcim/models/device_component_templates.py:413 +#: dcim/models/device_component_templates.py:512 +#: dcim/models/device_component_templates.py:612 +#: dcim/models/device_components.py:283 dcim/models/device_components.py:312 +#: dcim/models/device_components.py:345 dcim/models/device_components.py:463 +#: dcim/models/device_components.py:605 dcim/models/device_components.py:970 +#: dcim/models/device_components.py:1044 dcim/models/power.py:102 +#: extras/models/customfields.py:78 extras/models/search.py:41 +#: virtualization/models/clusters.py:61 vpn/models/l2vpn.py:32 msgid "type" msgstr "type" -#: netbox/core/models/data.py:49 netbox/extras/choices.py:37 -#: netbox/extras/models/models.py:164 netbox/extras/tables/tables.py:656 -#: netbox/templates/core/datasource.html:58 -#: netbox/templates/core/plugin.html:65 +#: core/models/data.py:49 extras/choices.py:37 extras/models/models.py:164 +#: extras/tables/tables.py:656 templates/core/datasource.html:58 +#: templates/core/plugin.html:66 msgid "URL" msgstr "URL" -#: netbox/core/models/data.py:59 -#: netbox/dcim/models/device_component_templates.py:418 -#: netbox/dcim/models/device_components.py:512 -#: netbox/extras/models/models.py:70 netbox/extras/models/models.py:301 -#: netbox/extras/models/models.py:526 netbox/users/models/permissions.py:29 +#: core/models/data.py:59 dcim/models/device_component_templates.py:418 +#: dcim/models/device_components.py:512 extras/models/models.py:70 +#: extras/models/models.py:301 extras/models/models.py:526 +#: users/models/permissions.py:29 msgid "enabled" msgstr "activé" -#: netbox/core/models/data.py:63 +#: core/models/data.py:63 msgid "ignore rules" msgstr "ignorer les règles" -#: netbox/core/models/data.py:65 +#: core/models/data.py:65 msgid "Patterns (one per line) matching files to ignore when syncing" msgstr "" "Modèles (un par ligne) correspondant aux fichiers à ignorer lors de la " "synchronisation" -#: netbox/core/models/data.py:68 netbox/extras/models/models.py:534 +#: core/models/data.py:68 extras/models/models.py:534 msgid "parameters" msgstr "paramètres" -#: netbox/core/models/data.py:73 +#: core/models/data.py:73 msgid "last synced" msgstr "dernière synchronisation" -#: netbox/core/models/data.py:81 +#: core/models/data.py:81 msgid "data source" msgstr "source de données" -#: netbox/core/models/data.py:82 +#: core/models/data.py:82 msgid "data sources" msgstr "sources de données" -#: netbox/core/models/data.py:122 +#: core/models/data.py:122 #, python-brace-format msgid "Unknown backend type: {type}" msgstr "Type de backend inconnu : {type}" -#: netbox/core/models/data.py:164 +#: core/models/data.py:164 msgid "Cannot initiate sync; syncing already in progress." msgstr "" "Impossible de lancer la synchronisation ; la synchronisation est déjà en " "cours." -#: netbox/core/models/data.py:177 +#: core/models/data.py:177 msgid "" "There was an error initializing the backend. A dependency needs to be " "installed: " @@ -2178,1286 +1909,1224 @@ msgstr "" "Une erreur s'est produite lors de l'initialisation du backend. Une " "dépendance doit être installée : " -#: netbox/core/models/data.py:270 netbox/core/models/files.py:31 -#: netbox/netbox/models/features.py:59 +#: core/models/data.py:270 core/models/files.py:31 +#: netbox/models/features.py:59 msgid "last updated" msgstr "dernière mise à jour" -#: netbox/core/models/data.py:280 netbox/dcim/models/cables.py:444 +#: core/models/data.py:280 dcim/models/cables.py:444 msgid "path" msgstr "chemin" -#: netbox/core/models/data.py:283 +#: core/models/data.py:283 msgid "File path relative to the data source's root" msgstr "Chemin du fichier par rapport à la racine de la source de données" -#: netbox/core/models/data.py:287 netbox/ipam/models/ip.py:503 +#: core/models/data.py:287 ipam/models/ip.py:503 msgid "size" msgstr "taille" -#: netbox/core/models/data.py:290 +#: core/models/data.py:290 msgid "hash" msgstr "hachage" -#: netbox/core/models/data.py:294 +#: core/models/data.py:294 msgid "Length must be 64 hexadecimal characters." msgstr "La longueur doit être de 64 caractères hexadécimaux." -#: netbox/core/models/data.py:296 +#: core/models/data.py:296 msgid "SHA256 hash of the file data" msgstr "Hachage SHA256 des données du fichier" -#: netbox/core/models/data.py:313 +#: core/models/data.py:313 msgid "data file" msgstr "fichier de données" -#: netbox/core/models/data.py:314 +#: core/models/data.py:314 msgid "data files" msgstr "fichiers de données" -#: netbox/core/models/data.py:401 +#: core/models/data.py:401 msgid "auto sync record" msgstr "enregistrement de synchronisation automatique" -#: netbox/core/models/data.py:402 +#: core/models/data.py:402 msgid "auto sync records" msgstr "enregistrements de synchronisation automatique" -#: netbox/core/models/files.py:37 +#: core/models/files.py:37 msgid "file root" msgstr "racine du fichier" -#: netbox/core/models/files.py:42 +#: core/models/files.py:42 msgid "file path" msgstr "chemin du fichier" -#: netbox/core/models/files.py:44 +#: core/models/files.py:44 msgid "File path relative to the designated root path" msgstr "Chemin du fichier par rapport au chemin racine désigné" -#: netbox/core/models/files.py:61 +#: core/models/files.py:61 msgid "managed file" msgstr "fichier géré" -#: netbox/core/models/files.py:62 +#: core/models/files.py:62 msgid "managed files" msgstr "fichiers gérés" -#: netbox/core/models/jobs.py:53 +#: core/models/jobs.py:53 msgid "scheduled" msgstr "prévu" -#: netbox/core/models/jobs.py:58 +#: core/models/jobs.py:58 msgid "interval" msgstr "intervalle" -#: netbox/core/models/jobs.py:64 +#: core/models/jobs.py:64 msgid "Recurrence interval (in minutes)" msgstr "Intervalle de récurrence (en minutes)" -#: netbox/core/models/jobs.py:67 +#: core/models/jobs.py:67 msgid "started" msgstr "commencé" -#: netbox/core/models/jobs.py:72 +#: core/models/jobs.py:72 msgid "completed" msgstr "terminé" -#: netbox/core/models/jobs.py:90 netbox/extras/models/models.py:101 -#: netbox/extras/models/staging.py:87 +#: core/models/jobs.py:90 extras/models/models.py:101 +#: extras/models/staging.py:87 msgid "data" msgstr "données" -#: netbox/core/models/jobs.py:95 +#: core/models/jobs.py:95 msgid "error" msgstr "erreur" -#: netbox/core/models/jobs.py:100 +#: core/models/jobs.py:100 msgid "job ID" msgstr "ID de tâche" -#: netbox/core/models/jobs.py:111 +#: core/models/jobs.py:111 msgid "job" msgstr "emploi" -#: netbox/core/models/jobs.py:112 +#: core/models/jobs.py:112 msgid "jobs" msgstr "emplois" -#: netbox/core/models/jobs.py:135 +#: core/models/jobs.py:135 #, python-brace-format msgid "Jobs cannot be assigned to this object type ({type})." msgstr "Les tâches ne peuvent pas être attribuées à ce type d'objet ({type})." -#: netbox/core/models/jobs.py:185 +#: core/models/jobs.py:185 #, python-brace-format msgid "Invalid status for job termination. Choices are: {choices}" msgstr "" "Statut invalide pour l'arrêt de la tâche. Les choix sont les suivants : " "{choices}" -#: netbox/core/models/jobs.py:216 +#: core/models/jobs.py:216 msgid "" "enqueue() cannot be called with values for both schedule_at and immediate." msgstr "" "enqueue () ne peut pas être appelée avec des valeurs à la fois pour " "schedule_at et immediate." -#: netbox/core/signals.py:126 +#: core/signals.py:126 #, python-brace-format msgid "Deletion is prevented by a protection rule: {message}" msgstr "La suppression est empêchée par une règle de protection : {message}" -#: netbox/core/tables/change_logging.py:25 -#: netbox/templates/account/profile.html:19 -#: netbox/templates/users/user.html:21 +#: core/tables/change_logging.py:25 templates/account/profile.html:19 +#: templates/users/user.html:21 msgid "Full Name" msgstr "Nom complet" -#: netbox/core/tables/change_logging.py:37 netbox/core/tables/jobs.py:21 -#: netbox/extras/choices.py:41 netbox/extras/tables/tables.py:279 -#: netbox/extras/tables/tables.py:297 netbox/extras/tables/tables.py:329 -#: netbox/extras/tables/tables.py:409 netbox/extras/tables/tables.py:470 -#: netbox/extras/tables/tables.py:576 netbox/extras/tables/tables.py:616 -#: netbox/extras/tables/tables.py:653 netbox/netbox/tables/tables.py:244 -#: netbox/templates/core/objectchange.html:58 -#: netbox/templates/extras/eventrule.html:78 -#: netbox/templates/extras/journalentry.html:18 -#: netbox/tenancy/tables/contacts.py:93 netbox/vpn/tables/l2vpn.py:64 +#: core/tables/change_logging.py:37 core/tables/jobs.py:21 +#: extras/choices.py:41 extras/tables/tables.py:279 +#: extras/tables/tables.py:297 extras/tables/tables.py:329 +#: extras/tables/tables.py:409 extras/tables/tables.py:470 +#: extras/tables/tables.py:576 extras/tables/tables.py:616 +#: extras/tables/tables.py:653 netbox/tables/tables.py:244 +#: templates/core/objectchange.html:58 templates/extras/eventrule.html:78 +#: templates/extras/journalentry.html:18 tenancy/tables/contacts.py:93 +#: vpn/tables/l2vpn.py:64 msgid "Object" msgstr "Objet" -#: netbox/core/tables/change_logging.py:42 -#: netbox/templates/core/objectchange.html:68 +#: core/tables/change_logging.py:42 templates/core/objectchange.html:68 msgid "Request ID" msgstr "ID de demande" -#: netbox/core/tables/config.py:21 netbox/users/forms/filtersets.py:44 -#: netbox/users/tables.py:39 +#: core/tables/config.py:21 users/forms/filtersets.py:44 users/tables.py:39 msgid "Is Active" msgstr "Est actif" -#: netbox/core/tables/data.py:50 netbox/templates/core/datafile.html:31 +#: core/tables/data.py:50 templates/core/datafile.html:31 msgid "Path" msgstr "Sentier" -#: netbox/core/tables/data.py:54 -#: netbox/templates/extras/inc/result_pending.html:7 +#: core/tables/data.py:54 templates/extras/inc/result_pending.html:7 msgid "Last updated" msgstr "Dernière mise à jour" -#: netbox/core/tables/jobs.py:10 netbox/core/tables/tasks.py:76 -#: netbox/dcim/tables/devicetypes.py:164 netbox/extras/tables/tables.py:216 -#: netbox/extras/tables/tables.py:460 netbox/netbox/tables/tables.py:189 -#: netbox/templates/dcim/virtualchassis_edit.html:52 -#: netbox/utilities/forms/forms.py:73 -#: netbox/wireless/tables/wirelesslink.py:17 +#: core/tables/jobs.py:10 core/tables/tasks.py:76 +#: dcim/tables/devicetypes.py:164 extras/tables/tables.py:216 +#: extras/tables/tables.py:460 netbox/tables/tables.py:189 +#: templates/dcim/virtualchassis_edit.html:52 utilities/forms/forms.py:73 +#: wireless/tables/wirelesslink.py:17 msgid "ID" msgstr "IDENTIFIANT" -#: netbox/core/tables/jobs.py:35 +#: core/tables/jobs.py:35 msgid "Interval" msgstr "Intervalle" -#: netbox/core/tables/plugins.py:14 netbox/templates/vpn/ipsecprofile.html:44 -#: netbox/vpn/forms/bulk_edit.py:141 netbox/vpn/forms/bulk_import.py:172 -#: netbox/vpn/tables/crypto.py:61 +#: core/tables/plugins.py:14 templates/vpn/ipsecprofile.html:44 +#: vpn/forms/bulk_edit.py:141 vpn/forms/bulk_import.py:172 +#: vpn/tables/crypto.py:61 msgid "Version" msgstr "Version" -#: netbox/core/tables/plugins.py:19 netbox/templates/core/datafile.html:38 +#: core/tables/plugins.py:19 templates/core/datafile.html:38 msgid "Last Updated" msgstr "Dernière mise à jour" -#: netbox/core/tables/plugins.py:23 +#: core/tables/plugins.py:23 msgid "Minimum NetBox Version" msgstr "Version minimale de NetBox" -#: netbox/core/tables/plugins.py:27 +#: core/tables/plugins.py:27 msgid "Maximum NetBox Version" msgstr "Version maximale de NetBox" -#: netbox/core/tables/plugins.py:31 netbox/core/tables/plugins.py:74 +#: core/tables/plugins.py:31 core/tables/plugins.py:74 msgid "No plugin data found" msgstr "Aucune donnée de plug-in trouvée" -#: netbox/core/tables/plugins.py:48 netbox/templates/core/plugin.html:61 +#: core/tables/plugins.py:48 templates/core/plugin.html:62 msgid "Author" msgstr "Auteur" -#: netbox/core/tables/plugins.py:54 +#: core/tables/plugins.py:54 msgid "Installed" msgstr "Installé" -#: netbox/core/tables/plugins.py:57 netbox/templates/core/plugin.html:83 +#: core/tables/plugins.py:57 templates/core/plugin.html:84 msgid "Certified" msgstr "Certifié" -#: netbox/core/tables/plugins.py:60 +#: core/tables/plugins.py:60 msgid "Published" msgstr "Publié" -#: netbox/core/tables/plugins.py:66 +#: core/tables/plugins.py:66 msgid "Installed Version" msgstr "Version installée" -#: netbox/core/tables/plugins.py:70 +#: core/tables/plugins.py:70 msgid "Latest Version" msgstr "Dernière version" -#: netbox/core/tables/tasks.py:18 +#: core/tables/tasks.py:18 msgid "Oldest Task" msgstr "La tâche la plus ancienne" -#: netbox/core/tables/tasks.py:42 netbox/templates/core/rq_worker_list.html:39 +#: core/tables/tasks.py:42 templates/core/rq_worker_list.html:39 msgid "Workers" msgstr "Travailleurs" -#: netbox/core/tables/tasks.py:46 netbox/vpn/tables/tunnels.py:88 +#: core/tables/tasks.py:46 vpn/tables/tunnels.py:88 msgid "Host" msgstr "Hôte" -#: netbox/core/tables/tasks.py:50 netbox/ipam/forms/filtersets.py:535 +#: core/tables/tasks.py:50 ipam/forms/filtersets.py:535 msgid "Port" msgstr "Port" -#: netbox/core/tables/tasks.py:54 +#: core/tables/tasks.py:54 msgid "DB" msgstr "DB" -#: netbox/core/tables/tasks.py:58 +#: core/tables/tasks.py:58 msgid "Scheduler PID" msgstr "PID du planificateur" -#: netbox/core/tables/tasks.py:62 +#: core/tables/tasks.py:62 msgid "No queues found" msgstr "Aucune file d'attente trouvée" -#: netbox/core/tables/tasks.py:82 +#: core/tables/tasks.py:82 msgid "Enqueued" msgstr "En file d'attente" -#: netbox/core/tables/tasks.py:85 +#: core/tables/tasks.py:85 msgid "Ended" msgstr "Terminé" -#: netbox/core/tables/tasks.py:93 netbox/templates/core/rq_task.html:85 +#: core/tables/tasks.py:93 templates/core/rq_task.html:85 msgid "Callable" msgstr "Appelable" -#: netbox/core/tables/tasks.py:97 +#: core/tables/tasks.py:97 msgid "No tasks found" msgstr "Aucune tâche trouvée" -#: netbox/core/tables/tasks.py:118 netbox/templates/core/rq_worker.html:47 +#: core/tables/tasks.py:118 templates/core/rq_worker.html:47 msgid "State" msgstr "État" -#: netbox/core/tables/tasks.py:121 netbox/templates/core/rq_worker.html:51 +#: core/tables/tasks.py:121 templates/core/rq_worker.html:51 msgid "Birth" msgstr "Naissance" -#: netbox/core/tables/tasks.py:124 netbox/templates/core/rq_worker.html:59 +#: core/tables/tasks.py:124 templates/core/rq_worker.html:59 msgid "PID" msgstr "PID" -#: netbox/core/tables/tasks.py:128 +#: core/tables/tasks.py:128 msgid "No workers found" msgstr "Aucun travailleur n'a été trouvé" -#: netbox/core/views.py:90 +#: core/views.py:90 #, python-brace-format msgid "Queued job #{id} to sync {datasource}" msgstr "Tâche en file d'attente #{id} pour synchroniser {datasource}" -#: netbox/core/views.py:319 +#: core/views.py:319 #, python-brace-format msgid "Restored configuration revision #{id}" msgstr "Révision de configuration restaurée #{id}" -#: netbox/core/views.py:412 netbox/core/views.py:455 netbox/core/views.py:531 +#: core/views.py:412 core/views.py:455 core/views.py:531 #, python-brace-format msgid "Job {job_id} not found" msgstr "Poste {job_id} introuvable" -#: netbox/core/views.py:463 +#: core/views.py:463 #, python-brace-format msgid "Job {id} has been deleted." msgstr "Poste {id} a été supprimé." -#: netbox/core/views.py:465 +#: core/views.py:465 #, python-brace-format msgid "Error deleting job {id}: {error}" msgstr "Erreur lors de la suppression du job {id}: {error}" -#: netbox/core/views.py:478 netbox/core/views.py:496 +#: core/views.py:478 core/views.py:496 #, python-brace-format msgid "Job {id} not found." msgstr "Poste {id} introuvable." -#: netbox/core/views.py:484 +#: core/views.py:484 #, python-brace-format msgid "Job {id} has been re-enqueued." msgstr "Poste {id} a été replacé dans la file d'attente." -#: netbox/core/views.py:519 +#: core/views.py:519 #, python-brace-format msgid "Job {id} has been enqueued." msgstr "Poste {id} a été mis en file d'attente." -#: netbox/core/views.py:538 +#: core/views.py:538 #, python-brace-format msgid "Job {id} has been stopped." msgstr "Poste {id} a été arrêté." -#: netbox/core/views.py:540 +#: core/views.py:540 #, python-brace-format msgid "Failed to stop job {id}" msgstr "Impossible d'arrêter la tâche {id}" -#: netbox/core/views.py:678 +#: core/views.py:678 msgid "Plugins catalog could not be loaded" msgstr "Le catalogue des plugins n'a pas pu être chargé" -#: netbox/core/views.py:712 +#: core/views.py:712 #, python-brace-format msgid "Plugin {name} not found" msgstr "Plug-in {name} introuvable" -#: netbox/dcim/api/serializers_/devices.py:49 -#: netbox/dcim/api/serializers_/devicetypes.py:25 +#: dcim/api/serializers_/devices.py:49 dcim/api/serializers_/devicetypes.py:25 msgid "Position (U)" msgstr "Position (U)" -#: netbox/dcim/api/serializers_/racks.py:112 -#: netbox/templates/dcim/rack.html:28 +#: dcim/api/serializers_/racks.py:112 templates/dcim/rack.html:28 msgid "Facility ID" msgstr "ID de l'établissement" -#: netbox/dcim/choices.py:21 netbox/virtualization/choices.py:21 +#: dcim/choices.py:21 virtualization/choices.py:21 msgid "Staging" msgstr "Mise en scène" -#: netbox/dcim/choices.py:23 netbox/dcim/choices.py:189 -#: netbox/dcim/choices.py:240 netbox/dcim/choices.py:1531 -#: netbox/virtualization/choices.py:23 netbox/virtualization/choices.py:48 +#: dcim/choices.py:23 dcim/choices.py:189 dcim/choices.py:240 +#: dcim/choices.py:1531 virtualization/choices.py:23 +#: virtualization/choices.py:48 msgid "Decommissioning" msgstr "Démantèlement" -#: netbox/dcim/choices.py:24 +#: dcim/choices.py:24 msgid "Retired" msgstr "Supprimé" -#: netbox/dcim/choices.py:65 +#: dcim/choices.py:65 msgid "2-post frame" msgstr "Châssis à 2 montants" -#: netbox/dcim/choices.py:66 +#: dcim/choices.py:66 msgid "4-post frame" msgstr "Châssis à 4 montants" -#: netbox/dcim/choices.py:67 +#: dcim/choices.py:67 msgid "4-post cabinet" msgstr "Armoire à 4 montants" -#: netbox/dcim/choices.py:68 +#: dcim/choices.py:68 msgid "Wall-mounted frame" msgstr "Châssis mural" -#: netbox/dcim/choices.py:69 +#: dcim/choices.py:69 msgid "Wall-mounted frame (vertical)" msgstr "Châssis mural (vertical)" -#: netbox/dcim/choices.py:70 +#: dcim/choices.py:70 msgid "Wall-mounted cabinet" msgstr "Armoire murale" -#: netbox/dcim/choices.py:71 +#: dcim/choices.py:71 msgid "Wall-mounted cabinet (vertical)" msgstr "Armoire murale (verticale)" -#: netbox/dcim/choices.py:83 netbox/dcim/choices.py:84 -#: netbox/dcim/choices.py:85 netbox/dcim/choices.py:86 +#: dcim/choices.py:83 dcim/choices.py:84 dcim/choices.py:85 dcim/choices.py:86 #, python-brace-format msgid "{n} inches" msgstr "{n} pouces" -#: netbox/dcim/choices.py:100 netbox/ipam/choices.py:32 -#: netbox/ipam/choices.py:50 netbox/ipam/choices.py:70 -#: netbox/ipam/choices.py:155 netbox/wireless/choices.py:26 +#: dcim/choices.py:100 ipam/choices.py:32 ipam/choices.py:50 +#: ipam/choices.py:70 ipam/choices.py:155 wireless/choices.py:26 msgid "Reserved" msgstr "Réservé" -#: netbox/dcim/choices.py:101 netbox/templates/dcim/device.html:259 +#: dcim/choices.py:101 templates/dcim/device.html:259 msgid "Available" msgstr "Disponible" -#: netbox/dcim/choices.py:104 netbox/ipam/choices.py:33 -#: netbox/ipam/choices.py:51 netbox/ipam/choices.py:71 -#: netbox/ipam/choices.py:156 netbox/wireless/choices.py:28 +#: dcim/choices.py:104 ipam/choices.py:33 ipam/choices.py:51 +#: ipam/choices.py:71 ipam/choices.py:156 wireless/choices.py:28 msgid "Deprecated" msgstr "Obsolète" -#: netbox/dcim/choices.py:114 -#: netbox/templates/dcim/inc/panels/racktype_dimensions.html:41 +#: dcim/choices.py:114 templates/dcim/inc/panels/racktype_dimensions.html:41 msgid "Millimeters" msgstr "Millimètres" -#: netbox/dcim/choices.py:115 netbox/dcim/choices.py:1553 +#: dcim/choices.py:115 dcim/choices.py:1553 msgid "Inches" msgstr "Pouces" -#: netbox/dcim/choices.py:136 netbox/dcim/choices.py:207 -#: netbox/dcim/choices.py:254 +#: dcim/choices.py:136 dcim/choices.py:207 dcim/choices.py:254 msgid "Front to rear" msgstr "De l'avant vers l'arrière" -#: netbox/dcim/choices.py:137 netbox/dcim/choices.py:208 -#: netbox/dcim/choices.py:255 +#: dcim/choices.py:137 dcim/choices.py:208 dcim/choices.py:255 msgid "Rear to front" msgstr "De l'arrière vers l'avant" -#: netbox/dcim/choices.py:151 netbox/dcim/forms/bulk_edit.py:68 -#: netbox/dcim/forms/bulk_edit.py:87 netbox/dcim/forms/bulk_edit.py:173 -#: netbox/dcim/forms/bulk_edit.py:1405 netbox/dcim/forms/bulk_import.py:60 -#: netbox/dcim/forms/bulk_import.py:74 netbox/dcim/forms/bulk_import.py:137 -#: netbox/dcim/forms/bulk_import.py:566 netbox/dcim/forms/bulk_import.py:833 -#: netbox/dcim/forms/bulk_import.py:1088 netbox/dcim/forms/filtersets.py:234 -#: netbox/dcim/forms/model_forms.py:74 netbox/dcim/forms/model_forms.py:93 -#: netbox/dcim/forms/model_forms.py:170 netbox/dcim/forms/model_forms.py:1062 -#: netbox/dcim/forms/model_forms.py:1502 -#: netbox/dcim/forms/object_import.py:176 netbox/dcim/tables/devices.py:656 -#: netbox/dcim/tables/devices.py:869 netbox/dcim/tables/devices.py:954 -#: netbox/extras/tables/tables.py:223 netbox/ipam/tables/fhrp.py:59 -#: netbox/ipam/tables/ip.py:378 netbox/ipam/tables/services.py:44 -#: netbox/templates/dcim/interface.html:102 -#: netbox/templates/dcim/interface.html:309 -#: netbox/templates/dcim/location.html:41 netbox/templates/dcim/region.html:37 -#: netbox/templates/dcim/sitegroup.html:37 -#: netbox/templates/ipam/service.html:28 -#: netbox/templates/tenancy/contactgroup.html:29 -#: netbox/templates/tenancy/tenantgroup.html:37 -#: netbox/templates/virtualization/vminterface.html:39 -#: netbox/templates/wireless/wirelesslangroup.html:37 -#: netbox/tenancy/forms/bulk_edit.py:27 netbox/tenancy/forms/bulk_edit.py:61 -#: netbox/tenancy/forms/bulk_import.py:24 -#: netbox/tenancy/forms/bulk_import.py:58 -#: netbox/tenancy/forms/model_forms.py:25 -#: netbox/tenancy/forms/model_forms.py:68 -#: netbox/virtualization/forms/bulk_edit.py:207 -#: netbox/virtualization/forms/bulk_import.py:151 -#: netbox/virtualization/tables/virtualmachines.py:162 -#: netbox/wireless/forms/bulk_edit.py:24 -#: netbox/wireless/forms/bulk_import.py:21 -#: netbox/wireless/forms/model_forms.py:21 +#: dcim/choices.py:151 dcim/forms/bulk_edit.py:68 dcim/forms/bulk_edit.py:87 +#: dcim/forms/bulk_edit.py:173 dcim/forms/bulk_edit.py:1405 +#: dcim/forms/bulk_import.py:60 dcim/forms/bulk_import.py:74 +#: dcim/forms/bulk_import.py:137 dcim/forms/bulk_import.py:566 +#: dcim/forms/bulk_import.py:833 dcim/forms/bulk_import.py:1088 +#: dcim/forms/filtersets.py:234 dcim/forms/model_forms.py:74 +#: dcim/forms/model_forms.py:93 dcim/forms/model_forms.py:170 +#: dcim/forms/model_forms.py:1062 dcim/forms/model_forms.py:1502 +#: dcim/forms/object_import.py:176 dcim/tables/devices.py:656 +#: dcim/tables/devices.py:869 dcim/tables/devices.py:954 +#: extras/tables/tables.py:223 ipam/tables/fhrp.py:59 ipam/tables/ip.py:378 +#: ipam/tables/services.py:44 templates/dcim/interface.html:102 +#: templates/dcim/interface.html:309 templates/dcim/location.html:41 +#: templates/dcim/region.html:37 templates/dcim/sitegroup.html:37 +#: templates/ipam/service.html:28 templates/tenancy/contactgroup.html:29 +#: templates/tenancy/tenantgroup.html:37 +#: templates/virtualization/vminterface.html:39 +#: templates/wireless/wirelesslangroup.html:37 tenancy/forms/bulk_edit.py:27 +#: tenancy/forms/bulk_edit.py:61 tenancy/forms/bulk_import.py:24 +#: tenancy/forms/bulk_import.py:58 tenancy/forms/model_forms.py:25 +#: tenancy/forms/model_forms.py:68 virtualization/forms/bulk_edit.py:207 +#: virtualization/forms/bulk_import.py:151 +#: virtualization/tables/virtualmachines.py:162 wireless/forms/bulk_edit.py:24 +#: wireless/forms/bulk_import.py:21 wireless/forms/model_forms.py:21 msgid "Parent" msgstr "Parent" -#: netbox/dcim/choices.py:152 +#: dcim/choices.py:152 msgid "Child" msgstr "Enfant" -#: netbox/dcim/choices.py:166 netbox/templates/dcim/device.html:340 -#: netbox/templates/dcim/rack.html:133 -#: netbox/templates/dcim/rack_elevation_list.html:20 -#: netbox/templates/dcim/rackreservation.html:76 +#: dcim/choices.py:166 templates/dcim/device.html:340 +#: templates/dcim/rack.html:133 templates/dcim/rack_elevation_list.html:20 +#: templates/dcim/rackreservation.html:76 msgid "Front" msgstr "Avant" -#: netbox/dcim/choices.py:167 netbox/templates/dcim/device.html:346 -#: netbox/templates/dcim/rack.html:139 -#: netbox/templates/dcim/rack_elevation_list.html:21 -#: netbox/templates/dcim/rackreservation.html:82 +#: dcim/choices.py:167 templates/dcim/device.html:346 +#: templates/dcim/rack.html:139 templates/dcim/rack_elevation_list.html:21 +#: templates/dcim/rackreservation.html:82 msgid "Rear" msgstr "Arrière" -#: netbox/dcim/choices.py:186 netbox/dcim/choices.py:238 -#: netbox/virtualization/choices.py:46 +#: dcim/choices.py:186 dcim/choices.py:238 virtualization/choices.py:46 msgid "Staged" msgstr "Mis en scène" -#: netbox/dcim/choices.py:188 +#: dcim/choices.py:188 msgid "Inventory" msgstr "Inventaire" -#: netbox/dcim/choices.py:209 netbox/dcim/choices.py:256 +#: dcim/choices.py:209 dcim/choices.py:256 msgid "Left to right" msgstr "De gauche à droite" -#: netbox/dcim/choices.py:210 netbox/dcim/choices.py:257 +#: dcim/choices.py:210 dcim/choices.py:257 msgid "Right to left" msgstr "De droite à gauche" -#: netbox/dcim/choices.py:211 netbox/dcim/choices.py:258 +#: dcim/choices.py:211 dcim/choices.py:258 msgid "Side to rear" msgstr "D'un côté à l'arrière" -#: netbox/dcim/choices.py:212 +#: dcim/choices.py:212 msgid "Rear to side" msgstr "De l'arrière vers le côté" -#: netbox/dcim/choices.py:213 +#: dcim/choices.py:213 msgid "Bottom to top" msgstr "De bas en haut" -#: netbox/dcim/choices.py:214 +#: dcim/choices.py:214 msgid "Top to bottom" msgstr "De haut en bas" -#: netbox/dcim/choices.py:215 netbox/dcim/choices.py:259 -#: netbox/dcim/choices.py:1303 +#: dcim/choices.py:215 dcim/choices.py:259 dcim/choices.py:1303 msgid "Passive" msgstr "Passif" -#: netbox/dcim/choices.py:216 +#: dcim/choices.py:216 msgid "Mixed" msgstr "Mixte" -#: netbox/dcim/choices.py:484 netbox/dcim/choices.py:733 +#: dcim/choices.py:484 dcim/choices.py:733 msgid "NEMA (Non-locking)" msgstr "NEMA (non verrouillable)" -#: netbox/dcim/choices.py:506 netbox/dcim/choices.py:755 +#: dcim/choices.py:506 dcim/choices.py:755 msgid "NEMA (Locking)" msgstr "NEMA (verrouillage)" -#: netbox/dcim/choices.py:530 netbox/dcim/choices.py:779 +#: dcim/choices.py:530 dcim/choices.py:779 msgid "California Style" msgstr "Style californien" -#: netbox/dcim/choices.py:538 +#: dcim/choices.py:538 msgid "International/ITA" msgstr "International/ITA" -#: netbox/dcim/choices.py:573 netbox/dcim/choices.py:814 +#: dcim/choices.py:573 dcim/choices.py:814 msgid "Proprietary" msgstr "Propriétaire" -#: netbox/dcim/choices.py:581 netbox/dcim/choices.py:824 -#: netbox/dcim/choices.py:1219 netbox/dcim/choices.py:1221 -#: netbox/dcim/choices.py:1447 netbox/dcim/choices.py:1449 -#: netbox/netbox/navigation/menu.py:200 +#: dcim/choices.py:581 dcim/choices.py:824 dcim/choices.py:1219 +#: dcim/choices.py:1221 dcim/choices.py:1447 dcim/choices.py:1449 +#: netbox/navigation/menu.py:200 msgid "Other" msgstr "Autres" -#: netbox/dcim/choices.py:787 +#: dcim/choices.py:787 msgid "ITA/International" msgstr "ITA/International" -#: netbox/dcim/choices.py:854 +#: dcim/choices.py:854 msgid "Physical" msgstr "Physique" -#: netbox/dcim/choices.py:855 netbox/dcim/choices.py:1023 +#: dcim/choices.py:855 dcim/choices.py:1023 msgid "Virtual" msgstr "Virtuel" -#: netbox/dcim/choices.py:856 netbox/dcim/choices.py:1097 -#: netbox/dcim/forms/bulk_edit.py:1515 netbox/dcim/forms/filtersets.py:1330 -#: netbox/dcim/forms/model_forms.py:988 netbox/dcim/forms/model_forms.py:1397 -#: netbox/netbox/navigation/menu.py:140 netbox/netbox/navigation/menu.py:144 -#: netbox/templates/dcim/interface.html:210 +#: dcim/choices.py:856 dcim/choices.py:1097 dcim/forms/bulk_edit.py:1515 +#: dcim/forms/filtersets.py:1330 dcim/forms/model_forms.py:988 +#: dcim/forms/model_forms.py:1397 netbox/navigation/menu.py:140 +#: netbox/navigation/menu.py:144 templates/dcim/interface.html:210 msgid "Wireless" msgstr "Sans fil" -#: netbox/dcim/choices.py:1021 +#: dcim/choices.py:1021 msgid "Virtual interfaces" msgstr "Interfaces virtuelles" -#: netbox/dcim/choices.py:1024 netbox/dcim/forms/bulk_edit.py:1410 -#: netbox/dcim/forms/bulk_import.py:840 netbox/dcim/forms/model_forms.py:974 -#: netbox/dcim/tables/devices.py:660 netbox/templates/dcim/interface.html:106 -#: netbox/templates/virtualization/vminterface.html:43 -#: netbox/virtualization/forms/bulk_edit.py:212 -#: netbox/virtualization/forms/bulk_import.py:158 -#: netbox/virtualization/tables/virtualmachines.py:166 +#: dcim/choices.py:1024 dcim/forms/bulk_edit.py:1410 +#: dcim/forms/bulk_import.py:840 dcim/forms/model_forms.py:974 +#: dcim/tables/devices.py:660 templates/dcim/interface.html:106 +#: templates/virtualization/vminterface.html:43 +#: virtualization/forms/bulk_edit.py:212 +#: virtualization/forms/bulk_import.py:158 +#: virtualization/tables/virtualmachines.py:166 msgid "Bridge" msgstr "Passerelle" -#: netbox/dcim/choices.py:1025 +#: dcim/choices.py:1025 msgid "Link Aggregation Group (LAG)" msgstr "Groupe d'agrégation de liens (LAG)" -#: netbox/dcim/choices.py:1029 +#: dcim/choices.py:1029 msgid "Ethernet (fixed)" msgstr "Ethernet (fixe)" -#: netbox/dcim/choices.py:1044 +#: dcim/choices.py:1044 msgid "Ethernet (modular)" msgstr "Ethernet (modulaire)" -#: netbox/dcim/choices.py:1081 +#: dcim/choices.py:1081 msgid "Ethernet (backplane)" msgstr "Ethernet (panneau arrière)" -#: netbox/dcim/choices.py:1113 +#: dcim/choices.py:1113 msgid "Cellular" msgstr "Cellulaire" -#: netbox/dcim/choices.py:1165 netbox/dcim/forms/filtersets.py:383 -#: netbox/dcim/forms/filtersets.py:809 netbox/dcim/forms/filtersets.py:963 -#: netbox/dcim/forms/filtersets.py:1542 -#: netbox/templates/dcim/inventoryitem.html:52 -#: netbox/templates/dcim/virtualchassis_edit.html:54 +#: dcim/choices.py:1165 dcim/forms/filtersets.py:383 +#: dcim/forms/filtersets.py:809 dcim/forms/filtersets.py:963 +#: dcim/forms/filtersets.py:1542 templates/dcim/inventoryitem.html:52 +#: templates/dcim/virtualchassis_edit.html:54 msgid "Serial" msgstr "Série" -#: netbox/dcim/choices.py:1180 +#: dcim/choices.py:1180 msgid "Coaxial" msgstr "Coaxiale" -#: netbox/dcim/choices.py:1200 +#: dcim/choices.py:1200 msgid "Stacking" msgstr "Empilage" -#: netbox/dcim/choices.py:1250 +#: dcim/choices.py:1250 msgid "Half" msgstr "La moitié" -#: netbox/dcim/choices.py:1251 +#: dcim/choices.py:1251 msgid "Full" msgstr "Complet" -#: netbox/dcim/choices.py:1252 netbox/netbox/preferences.py:31 -#: netbox/wireless/choices.py:480 +#: dcim/choices.py:1252 netbox/preferences.py:31 wireless/choices.py:480 msgid "Auto" msgstr "Automatique" -#: netbox/dcim/choices.py:1263 +#: dcim/choices.py:1263 msgid "Access" msgstr "Accès" -#: netbox/dcim/choices.py:1264 netbox/ipam/tables/vlans.py:172 -#: netbox/ipam/tables/vlans.py:217 -#: netbox/templates/dcim/inc/interface_vlans_table.html:7 +#: dcim/choices.py:1264 ipam/tables/vlans.py:172 ipam/tables/vlans.py:217 +#: templates/dcim/inc/interface_vlans_table.html:7 msgid "Tagged" msgstr "Tagué" -#: netbox/dcim/choices.py:1265 +#: dcim/choices.py:1265 msgid "Tagged (All)" msgstr "Tagué (Tous)" -#: netbox/dcim/choices.py:1294 +#: dcim/choices.py:1294 msgid "IEEE Standard" msgstr "Norme IEEE" -#: netbox/dcim/choices.py:1305 +#: dcim/choices.py:1305 msgid "Passive 24V (2-pair)" msgstr "24 V passif (2 paires)" -#: netbox/dcim/choices.py:1306 +#: dcim/choices.py:1306 msgid "Passive 24V (4-pair)" msgstr "24 V passif (4 paires)" -#: netbox/dcim/choices.py:1307 +#: dcim/choices.py:1307 msgid "Passive 48V (2-pair)" msgstr "48 V passif (2 paires)" -#: netbox/dcim/choices.py:1308 +#: dcim/choices.py:1308 msgid "Passive 48V (4-pair)" msgstr "48 V passif (4 paires)" -#: netbox/dcim/choices.py:1378 netbox/dcim/choices.py:1488 +#: dcim/choices.py:1378 dcim/choices.py:1488 msgid "Copper" msgstr "Cuivre" -#: netbox/dcim/choices.py:1401 +#: dcim/choices.py:1401 msgid "Fiber Optic" msgstr "fibre optique" -#: netbox/dcim/choices.py:1434 netbox/dcim/choices.py:1517 +#: dcim/choices.py:1434 dcim/choices.py:1517 msgid "USB" msgstr "USB" -#: netbox/dcim/choices.py:1504 +#: dcim/choices.py:1504 msgid "Fiber" msgstr "Fibre" -#: netbox/dcim/choices.py:1529 netbox/dcim/forms/filtersets.py:1227 +#: dcim/choices.py:1529 dcim/forms/filtersets.py:1227 msgid "Connected" msgstr "Connecté" -#: netbox/dcim/choices.py:1548 netbox/wireless/choices.py:497 +#: dcim/choices.py:1548 wireless/choices.py:497 msgid "Kilometers" msgstr "Kilomètres" -#: netbox/dcim/choices.py:1549 netbox/templates/dcim/cable_trace.html:65 -#: netbox/wireless/choices.py:498 +#: dcim/choices.py:1549 templates/dcim/cable_trace.html:65 +#: wireless/choices.py:498 msgid "Meters" msgstr "Compteurs" -#: netbox/dcim/choices.py:1550 +#: dcim/choices.py:1550 msgid "Centimeters" msgstr "Centimètres" -#: netbox/dcim/choices.py:1551 netbox/wireless/choices.py:499 +#: dcim/choices.py:1551 wireless/choices.py:499 msgid "Miles" msgstr "Miles" -#: netbox/dcim/choices.py:1552 netbox/templates/dcim/cable_trace.html:66 -#: netbox/wireless/choices.py:500 +#: dcim/choices.py:1552 templates/dcim/cable_trace.html:66 +#: wireless/choices.py:500 msgid "Feet" msgstr "Pieds" -#: netbox/dcim/choices.py:1568 netbox/templates/dcim/device.html:327 -#: netbox/templates/dcim/rack.html:107 +#: dcim/choices.py:1568 templates/dcim/device.html:327 +#: templates/dcim/rack.html:107 msgid "Kilograms" msgstr "Kilogrammes" -#: netbox/dcim/choices.py:1569 +#: dcim/choices.py:1569 msgid "Grams" msgstr "Grammes" -#: netbox/dcim/choices.py:1570 netbox/templates/dcim/device.html:328 -#: netbox/templates/dcim/rack.html:108 +#: dcim/choices.py:1570 templates/dcim/device.html:328 +#: templates/dcim/rack.html:108 msgid "Pounds" msgstr "Livres" -#: netbox/dcim/choices.py:1571 +#: dcim/choices.py:1571 msgid "Ounces" msgstr "Onces" -#: netbox/dcim/choices.py:1618 +#: dcim/choices.py:1618 msgid "Redundant" msgstr "Redondant" -#: netbox/dcim/choices.py:1639 +#: dcim/choices.py:1639 msgid "Single phase" msgstr "Monophasé" -#: netbox/dcim/choices.py:1640 +#: dcim/choices.py:1640 msgid "Three-phase" msgstr "Triphasé" -#: netbox/dcim/fields.py:45 +#: dcim/fields.py:45 #, python-brace-format msgid "Invalid MAC address format: {value}" msgstr "Format d'adresse MAC non valide : {value}" -#: netbox/dcim/fields.py:71 +#: dcim/fields.py:71 #, python-brace-format msgid "Invalid WWN format: {value}" msgstr "Format WWN non valide : {value}" -#: netbox/dcim/filtersets.py:86 +#: dcim/filtersets.py:86 msgid "Parent region (ID)" msgstr "Région parente (ID)" -#: netbox/dcim/filtersets.py:92 +#: dcim/filtersets.py:92 msgid "Parent region (slug)" msgstr "Région parente (slug)" -#: netbox/dcim/filtersets.py:116 +#: dcim/filtersets.py:116 msgid "Parent site group (ID)" msgstr "Groupe de sites parent (ID)" -#: netbox/dcim/filtersets.py:122 +#: dcim/filtersets.py:122 msgid "Parent site group (slug)" msgstr "Groupe de sites parents (slug)" -#: netbox/dcim/filtersets.py:164 netbox/extras/filtersets.py:364 -#: netbox/ipam/filtersets.py:841 netbox/ipam/filtersets.py:993 +#: dcim/filtersets.py:164 extras/filtersets.py:364 ipam/filtersets.py:841 +#: ipam/filtersets.py:993 msgid "Group (ID)" msgstr "Groupe (ID)" -#: netbox/dcim/filtersets.py:170 +#: dcim/filtersets.py:170 msgid "Group (slug)" msgstr "Groupe (slug)" -#: netbox/dcim/filtersets.py:176 netbox/dcim/filtersets.py:181 +#: dcim/filtersets.py:176 dcim/filtersets.py:181 msgid "AS (ID)" msgstr "COMME (ID)" -#: netbox/dcim/filtersets.py:246 +#: dcim/filtersets.py:246 msgid "Parent location (ID)" msgstr "Lieu de résidence du parent (ID)" -#: netbox/dcim/filtersets.py:252 +#: dcim/filtersets.py:252 msgid "Parent location (slug)" msgstr "Localisation du parent (slug)" -#: netbox/dcim/filtersets.py:258 netbox/dcim/filtersets.py:369 -#: netbox/dcim/filtersets.py:490 netbox/dcim/filtersets.py:1057 -#: netbox/dcim/filtersets.py:1404 netbox/dcim/filtersets.py:2182 +#: dcim/filtersets.py:258 dcim/filtersets.py:369 dcim/filtersets.py:490 +#: dcim/filtersets.py:1057 dcim/filtersets.py:1404 dcim/filtersets.py:2182 msgid "Location (ID)" msgstr "Lieu (ID)" -#: netbox/dcim/filtersets.py:265 netbox/dcim/filtersets.py:376 -#: netbox/dcim/filtersets.py:497 netbox/dcim/filtersets.py:1410 -#: netbox/extras/filtersets.py:542 +#: dcim/filtersets.py:265 dcim/filtersets.py:376 dcim/filtersets.py:497 +#: dcim/filtersets.py:1410 extras/filtersets.py:542 msgid "Location (slug)" msgstr "Emplacement (slug)" -#: netbox/dcim/filtersets.py:296 netbox/dcim/filtersets.py:381 -#: netbox/dcim/filtersets.py:539 netbox/dcim/filtersets.py:678 -#: netbox/dcim/filtersets.py:882 netbox/dcim/filtersets.py:933 -#: netbox/dcim/filtersets.py:973 netbox/dcim/filtersets.py:1306 -#: netbox/dcim/filtersets.py:1840 +#: dcim/filtersets.py:296 dcim/filtersets.py:381 dcim/filtersets.py:539 +#: dcim/filtersets.py:678 dcim/filtersets.py:882 dcim/filtersets.py:933 +#: dcim/filtersets.py:973 dcim/filtersets.py:1306 dcim/filtersets.py:1840 msgid "Manufacturer (ID)" msgstr "Fabricant (ID)" -#: netbox/dcim/filtersets.py:302 netbox/dcim/filtersets.py:387 -#: netbox/dcim/filtersets.py:545 netbox/dcim/filtersets.py:684 -#: netbox/dcim/filtersets.py:888 netbox/dcim/filtersets.py:939 -#: netbox/dcim/filtersets.py:979 netbox/dcim/filtersets.py:1312 -#: netbox/dcim/filtersets.py:1846 +#: dcim/filtersets.py:302 dcim/filtersets.py:387 dcim/filtersets.py:545 +#: dcim/filtersets.py:684 dcim/filtersets.py:888 dcim/filtersets.py:939 +#: dcim/filtersets.py:979 dcim/filtersets.py:1312 dcim/filtersets.py:1846 msgid "Manufacturer (slug)" msgstr "Fabricant (slug)" -#: netbox/dcim/filtersets.py:393 +#: dcim/filtersets.py:393 msgid "Rack type (slug)" msgstr "Type de rack (limace)" -#: netbox/dcim/filtersets.py:397 +#: dcim/filtersets.py:397 msgid "Rack type (ID)" msgstr "Type de rack (ID)" -#: netbox/dcim/filtersets.py:411 netbox/dcim/filtersets.py:892 -#: netbox/dcim/filtersets.py:994 netbox/dcim/filtersets.py:1850 -#: netbox/ipam/filtersets.py:381 netbox/ipam/filtersets.py:493 -#: netbox/ipam/filtersets.py:1003 netbox/virtualization/filtersets.py:210 +#: dcim/filtersets.py:411 dcim/filtersets.py:892 dcim/filtersets.py:994 +#: dcim/filtersets.py:1850 ipam/filtersets.py:381 ipam/filtersets.py:493 +#: ipam/filtersets.py:1003 virtualization/filtersets.py:210 msgid "Role (ID)" msgstr "Rôle (ID)" -#: netbox/dcim/filtersets.py:417 netbox/dcim/filtersets.py:898 -#: netbox/dcim/filtersets.py:1000 netbox/dcim/filtersets.py:1856 -#: netbox/extras/filtersets.py:558 netbox/ipam/filtersets.py:387 -#: netbox/ipam/filtersets.py:499 netbox/ipam/filtersets.py:1009 -#: netbox/virtualization/filtersets.py:216 +#: dcim/filtersets.py:417 dcim/filtersets.py:898 dcim/filtersets.py:1000 +#: dcim/filtersets.py:1856 extras/filtersets.py:558 ipam/filtersets.py:387 +#: ipam/filtersets.py:499 ipam/filtersets.py:1009 +#: virtualization/filtersets.py:216 msgid "Role (slug)" msgstr "Rôle (slug)" -#: netbox/dcim/filtersets.py:447 netbox/dcim/filtersets.py:1062 -#: netbox/dcim/filtersets.py:1415 netbox/dcim/filtersets.py:2244 +#: dcim/filtersets.py:447 dcim/filtersets.py:1062 dcim/filtersets.py:1415 +#: dcim/filtersets.py:2244 msgid "Rack (ID)" msgstr "Baie (ID)" -#: netbox/dcim/filtersets.py:507 netbox/extras/filtersets.py:293 -#: netbox/extras/filtersets.py:337 netbox/extras/filtersets.py:359 -#: netbox/extras/filtersets.py:419 netbox/users/filtersets.py:113 -#: netbox/users/filtersets.py:180 +#: dcim/filtersets.py:507 extras/filtersets.py:293 extras/filtersets.py:337 +#: extras/filtersets.py:359 extras/filtersets.py:419 users/filtersets.py:113 +#: users/filtersets.py:180 msgid "User (name)" msgstr "Utilisateur (nom)" -#: netbox/dcim/filtersets.py:549 +#: dcim/filtersets.py:549 msgid "Default platform (ID)" msgstr "Plateforme par défaut (ID)" -#: netbox/dcim/filtersets.py:555 +#: dcim/filtersets.py:555 msgid "Default platform (slug)" msgstr "Plateforme par défaut (slug)" -#: netbox/dcim/filtersets.py:558 netbox/dcim/forms/filtersets.py:517 +#: dcim/filtersets.py:558 dcim/forms/filtersets.py:517 msgid "Has a front image" msgstr "Possède une image frontale" -#: netbox/dcim/filtersets.py:562 netbox/dcim/forms/filtersets.py:524 +#: dcim/filtersets.py:562 dcim/forms/filtersets.py:524 msgid "Has a rear image" msgstr "Possède une image arrière" -#: netbox/dcim/filtersets.py:567 netbox/dcim/filtersets.py:688 -#: netbox/dcim/filtersets.py:1131 netbox/dcim/forms/filtersets.py:531 -#: netbox/dcim/forms/filtersets.py:627 netbox/dcim/forms/filtersets.py:848 +#: dcim/filtersets.py:567 dcim/filtersets.py:688 dcim/filtersets.py:1131 +#: dcim/forms/filtersets.py:531 dcim/forms/filtersets.py:627 +#: dcim/forms/filtersets.py:848 msgid "Has console ports" msgstr "Possède des ports de console" -#: netbox/dcim/filtersets.py:571 netbox/dcim/filtersets.py:692 -#: netbox/dcim/filtersets.py:1135 netbox/dcim/forms/filtersets.py:538 -#: netbox/dcim/forms/filtersets.py:634 netbox/dcim/forms/filtersets.py:855 +#: dcim/filtersets.py:571 dcim/filtersets.py:692 dcim/filtersets.py:1135 +#: dcim/forms/filtersets.py:538 dcim/forms/filtersets.py:634 +#: dcim/forms/filtersets.py:855 msgid "Has console server ports" msgstr "Possède des ports de serveur de console" -#: netbox/dcim/filtersets.py:575 netbox/dcim/filtersets.py:696 -#: netbox/dcim/filtersets.py:1139 netbox/dcim/forms/filtersets.py:545 -#: netbox/dcim/forms/filtersets.py:641 netbox/dcim/forms/filtersets.py:862 +#: dcim/filtersets.py:575 dcim/filtersets.py:696 dcim/filtersets.py:1139 +#: dcim/forms/filtersets.py:545 dcim/forms/filtersets.py:641 +#: dcim/forms/filtersets.py:862 msgid "Has power ports" msgstr "Possède des ports d'alimentation" -#: netbox/dcim/filtersets.py:579 netbox/dcim/filtersets.py:700 -#: netbox/dcim/filtersets.py:1143 netbox/dcim/forms/filtersets.py:552 -#: netbox/dcim/forms/filtersets.py:648 netbox/dcim/forms/filtersets.py:869 +#: dcim/filtersets.py:579 dcim/filtersets.py:700 dcim/filtersets.py:1143 +#: dcim/forms/filtersets.py:552 dcim/forms/filtersets.py:648 +#: dcim/forms/filtersets.py:869 msgid "Has power outlets" msgstr "Dispose de prises de courant" -#: netbox/dcim/filtersets.py:583 netbox/dcim/filtersets.py:704 -#: netbox/dcim/filtersets.py:1147 netbox/dcim/forms/filtersets.py:559 -#: netbox/dcim/forms/filtersets.py:655 netbox/dcim/forms/filtersets.py:876 +#: dcim/filtersets.py:583 dcim/filtersets.py:704 dcim/filtersets.py:1147 +#: dcim/forms/filtersets.py:559 dcim/forms/filtersets.py:655 +#: dcim/forms/filtersets.py:876 msgid "Has interfaces" msgstr "Possède des interfaces" -#: netbox/dcim/filtersets.py:587 netbox/dcim/filtersets.py:708 -#: netbox/dcim/filtersets.py:1151 netbox/dcim/forms/filtersets.py:566 -#: netbox/dcim/forms/filtersets.py:662 netbox/dcim/forms/filtersets.py:883 +#: dcim/filtersets.py:587 dcim/filtersets.py:708 dcim/filtersets.py:1151 +#: dcim/forms/filtersets.py:566 dcim/forms/filtersets.py:662 +#: dcim/forms/filtersets.py:883 msgid "Has pass-through ports" msgstr "Possède des ports d'intercommunication" -#: netbox/dcim/filtersets.py:591 netbox/dcim/filtersets.py:1155 -#: netbox/dcim/forms/filtersets.py:580 +#: dcim/filtersets.py:591 dcim/filtersets.py:1155 dcim/forms/filtersets.py:580 msgid "Has module bays" msgstr "Dispose de baies pour modules" -#: netbox/dcim/filtersets.py:595 netbox/dcim/filtersets.py:1159 -#: netbox/dcim/forms/filtersets.py:573 +#: dcim/filtersets.py:595 dcim/filtersets.py:1159 dcim/forms/filtersets.py:573 msgid "Has device bays" msgstr "Dispose de baies pour appareils" -#: netbox/dcim/filtersets.py:599 netbox/dcim/forms/filtersets.py:587 +#: dcim/filtersets.py:599 dcim/forms/filtersets.py:587 msgid "Has inventory items" msgstr "Possède des articles en inventaire" -#: netbox/dcim/filtersets.py:756 netbox/dcim/filtersets.py:989 -#: netbox/dcim/filtersets.py:1436 +#: dcim/filtersets.py:756 dcim/filtersets.py:989 dcim/filtersets.py:1436 msgid "Device type (ID)" msgstr "Type d'appareil (ID)" -#: netbox/dcim/filtersets.py:772 netbox/dcim/filtersets.py:1317 +#: dcim/filtersets.py:772 dcim/filtersets.py:1317 msgid "Module type (ID)" msgstr "Type de module (ID)" -#: netbox/dcim/filtersets.py:804 netbox/dcim/filtersets.py:1591 +#: dcim/filtersets.py:804 dcim/filtersets.py:1591 msgid "Power port (ID)" msgstr "Port d'alimentation (ID)" -#: netbox/dcim/filtersets.py:878 netbox/dcim/filtersets.py:1836 +#: dcim/filtersets.py:878 dcim/filtersets.py:1836 msgid "Parent inventory item (ID)" msgstr "Article d'inventaire parent (ID)" -#: netbox/dcim/filtersets.py:921 netbox/dcim/filtersets.py:947 -#: netbox/dcim/filtersets.py:1127 netbox/virtualization/filtersets.py:238 +#: dcim/filtersets.py:921 dcim/filtersets.py:947 dcim/filtersets.py:1127 +#: virtualization/filtersets.py:238 msgid "Config template (ID)" msgstr "Modèle de configuration (ID)" -#: netbox/dcim/filtersets.py:985 +#: dcim/filtersets.py:985 msgid "Device type (slug)" msgstr "Type d'appareil (slug)" -#: netbox/dcim/filtersets.py:1005 +#: dcim/filtersets.py:1005 msgid "Parent Device (ID)" msgstr "Appareil parent (ID)" -#: netbox/dcim/filtersets.py:1009 netbox/virtualization/filtersets.py:220 +#: dcim/filtersets.py:1009 virtualization/filtersets.py:220 msgid "Platform (ID)" msgstr "Plateforme (ID)" -#: netbox/dcim/filtersets.py:1015 netbox/extras/filtersets.py:569 -#: netbox/virtualization/filtersets.py:226 +#: dcim/filtersets.py:1015 extras/filtersets.py:569 +#: virtualization/filtersets.py:226 msgid "Platform (slug)" msgstr "Plateforme (slug)" -#: netbox/dcim/filtersets.py:1051 netbox/dcim/filtersets.py:1399 -#: netbox/dcim/filtersets.py:1934 netbox/dcim/filtersets.py:2176 -#: netbox/dcim/filtersets.py:2235 +#: dcim/filtersets.py:1051 dcim/filtersets.py:1399 dcim/filtersets.py:1934 +#: dcim/filtersets.py:2176 dcim/filtersets.py:2235 msgid "Site name (slug)" msgstr "Nom du site (slug)" -#: netbox/dcim/filtersets.py:1067 +#: dcim/filtersets.py:1067 msgid "Parent bay (ID)" msgstr "Enfant parent (ID)" -#: netbox/dcim/filtersets.py:1071 +#: dcim/filtersets.py:1071 msgid "VM cluster (ID)" msgstr "Cluster de machines virtuelles (ID)" -#: netbox/dcim/filtersets.py:1077 netbox/extras/filtersets.py:591 -#: netbox/virtualization/filtersets.py:136 +#: dcim/filtersets.py:1077 extras/filtersets.py:591 +#: virtualization/filtersets.py:136 msgid "Cluster group (slug)" msgstr "Groupe de clusters (slug)" -#: netbox/dcim/filtersets.py:1082 netbox/virtualization/filtersets.py:130 +#: dcim/filtersets.py:1082 virtualization/filtersets.py:130 msgid "Cluster group (ID)" msgstr "Groupe de clusters (ID)" -#: netbox/dcim/filtersets.py:1088 +#: dcim/filtersets.py:1088 msgid "Device model (slug)" msgstr "Modèle d'appareil (slug)" -#: netbox/dcim/filtersets.py:1099 netbox/dcim/forms/bulk_edit.py:516 +#: dcim/filtersets.py:1099 dcim/forms/bulk_edit.py:516 msgid "Is full depth" msgstr "Est en pleine profondeur" -#: netbox/dcim/filtersets.py:1103 netbox/dcim/forms/common.py:18 -#: netbox/dcim/forms/filtersets.py:818 netbox/dcim/forms/filtersets.py:1385 -#: netbox/dcim/models/device_components.py:518 -#: netbox/virtualization/filtersets.py:230 -#: netbox/virtualization/filtersets.py:301 -#: netbox/virtualization/forms/filtersets.py:172 -#: netbox/virtualization/forms/filtersets.py:223 +#: dcim/filtersets.py:1103 dcim/forms/common.py:18 +#: dcim/forms/filtersets.py:818 dcim/forms/filtersets.py:1385 +#: dcim/models/device_components.py:518 virtualization/filtersets.py:230 +#: virtualization/filtersets.py:301 virtualization/forms/filtersets.py:172 +#: virtualization/forms/filtersets.py:223 msgid "MAC address" msgstr "Adresse MAC" -#: netbox/dcim/filtersets.py:1110 netbox/dcim/filtersets.py:1274 -#: netbox/dcim/forms/filtersets.py:827 netbox/dcim/forms/filtersets.py:930 -#: netbox/virtualization/filtersets.py:234 -#: netbox/virtualization/forms/filtersets.py:176 +#: dcim/filtersets.py:1110 dcim/filtersets.py:1274 +#: dcim/forms/filtersets.py:827 dcim/forms/filtersets.py:930 +#: virtualization/filtersets.py:234 virtualization/forms/filtersets.py:176 msgid "Has a primary IP" msgstr "Possède une adresse IP principale" -#: netbox/dcim/filtersets.py:1114 +#: dcim/filtersets.py:1114 msgid "Has an out-of-band IP" msgstr "Possède une adresse IP hors bande" -#: netbox/dcim/filtersets.py:1119 +#: dcim/filtersets.py:1119 msgid "Virtual chassis (ID)" msgstr "Châssis virtuel (ID)" -#: netbox/dcim/filtersets.py:1123 +#: dcim/filtersets.py:1123 msgid "Is a virtual chassis member" msgstr "Est un membre virtuel du châssis" -#: netbox/dcim/filtersets.py:1164 +#: dcim/filtersets.py:1164 msgid "OOB IP (ID)" msgstr "ASTUCE SUR L'EMPLOI (ID)" -#: netbox/dcim/filtersets.py:1168 +#: dcim/filtersets.py:1168 msgid "Has virtual device context" msgstr "Possède un contexte de périphérique virtuel" -#: netbox/dcim/filtersets.py:1257 +#: dcim/filtersets.py:1257 msgid "VDC (ID)" msgstr "VDC (IDENTIFIANT)" -#: netbox/dcim/filtersets.py:1262 +#: dcim/filtersets.py:1262 msgid "Device model" msgstr "Modèle d'appareil" -#: netbox/dcim/filtersets.py:1267 netbox/ipam/filtersets.py:632 -#: netbox/vpn/filtersets.py:102 netbox/vpn/filtersets.py:401 +#: dcim/filtersets.py:1267 ipam/filtersets.py:632 vpn/filtersets.py:102 +#: vpn/filtersets.py:401 msgid "Interface (ID)" msgstr "Interface (ID)" -#: netbox/dcim/filtersets.py:1323 +#: dcim/filtersets.py:1323 msgid "Module type (model)" msgstr "Type de module (modèle)" -#: netbox/dcim/filtersets.py:1329 +#: dcim/filtersets.py:1329 msgid "Module bay (ID)" msgstr "Baie modulaire (ID)" -#: netbox/dcim/filtersets.py:1333 netbox/dcim/filtersets.py:1425 -#: netbox/ipam/filtersets.py:611 netbox/ipam/filtersets.py:851 -#: netbox/ipam/filtersets.py:1115 netbox/virtualization/filtersets.py:161 -#: netbox/vpn/filtersets.py:379 +#: dcim/filtersets.py:1333 dcim/filtersets.py:1425 ipam/filtersets.py:611 +#: ipam/filtersets.py:851 ipam/filtersets.py:1115 +#: virtualization/filtersets.py:161 vpn/filtersets.py:379 msgid "Device (ID)" msgstr "Appareil (ID)" -#: netbox/dcim/filtersets.py:1421 +#: dcim/filtersets.py:1421 msgid "Rack (name)" msgstr "Baie (nom)" -#: netbox/dcim/filtersets.py:1431 netbox/ipam/filtersets.py:606 -#: netbox/ipam/filtersets.py:846 netbox/ipam/filtersets.py:1121 -#: netbox/vpn/filtersets.py:374 +#: dcim/filtersets.py:1431 ipam/filtersets.py:606 ipam/filtersets.py:846 +#: ipam/filtersets.py:1121 vpn/filtersets.py:374 msgid "Device (name)" msgstr "Appareil (nom)" -#: netbox/dcim/filtersets.py:1442 +#: dcim/filtersets.py:1442 msgid "Device type (model)" msgstr "Type d'appareil (modèle)" -#: netbox/dcim/filtersets.py:1447 +#: dcim/filtersets.py:1447 msgid "Device role (ID)" msgstr "Rôle de l'appareil (ID)" -#: netbox/dcim/filtersets.py:1453 +#: dcim/filtersets.py:1453 msgid "Device role (slug)" msgstr "Rôle de l'appareil (slug)" -#: netbox/dcim/filtersets.py:1458 +#: dcim/filtersets.py:1458 msgid "Virtual Chassis (ID)" msgstr "Châssis virtuel (ID)" -#: netbox/dcim/filtersets.py:1464 netbox/dcim/forms/filtersets.py:109 -#: netbox/dcim/tables/devices.py:206 netbox/netbox/navigation/menu.py:79 -#: netbox/templates/dcim/device.html:120 -#: netbox/templates/dcim/device_edit.html:93 -#: netbox/templates/dcim/virtualchassis.html:20 -#: netbox/templates/dcim/virtualchassis_add.html:8 -#: netbox/templates/dcim/virtualchassis_edit.html:24 +#: dcim/filtersets.py:1464 dcim/forms/filtersets.py:109 +#: dcim/tables/devices.py:206 netbox/navigation/menu.py:79 +#: templates/dcim/device.html:120 templates/dcim/device_edit.html:93 +#: templates/dcim/virtualchassis.html:20 +#: templates/dcim/virtualchassis_add.html:8 +#: templates/dcim/virtualchassis_edit.html:24 msgid "Virtual Chassis" msgstr "Châssis virtuel" -#: netbox/dcim/filtersets.py:1488 +#: dcim/filtersets.py:1488 msgid "Module (ID)" msgstr "Module (ID)" -#: netbox/dcim/filtersets.py:1495 +#: dcim/filtersets.py:1495 msgid "Cable (ID)" msgstr "Câble (ID)" -#: netbox/dcim/filtersets.py:1604 netbox/ipam/forms/bulk_import.py:189 -#: netbox/vpn/forms/bulk_import.py:308 +#: dcim/filtersets.py:1604 ipam/forms/bulk_import.py:189 +#: vpn/forms/bulk_import.py:308 msgid "Assigned VLAN" msgstr "VLAN attribué" -#: netbox/dcim/filtersets.py:1608 +#: dcim/filtersets.py:1608 msgid "Assigned VID" msgstr "VID attribué" -#: netbox/dcim/filtersets.py:1613 netbox/dcim/forms/bulk_edit.py:1489 -#: netbox/dcim/forms/bulk_import.py:891 netbox/dcim/forms/filtersets.py:1428 -#: netbox/dcim/forms/model_forms.py:1378 -#: netbox/dcim/models/device_components.py:711 -#: netbox/dcim/tables/devices.py:626 netbox/ipam/filtersets.py:316 -#: netbox/ipam/filtersets.py:327 netbox/ipam/filtersets.py:483 -#: netbox/ipam/filtersets.py:584 netbox/ipam/filtersets.py:595 -#: netbox/ipam/forms/bulk_edit.py:241 netbox/ipam/forms/bulk_edit.py:297 -#: netbox/ipam/forms/bulk_edit.py:339 netbox/ipam/forms/bulk_import.py:157 -#: netbox/ipam/forms/bulk_import.py:243 netbox/ipam/forms/bulk_import.py:279 -#: netbox/ipam/forms/filtersets.py:67 netbox/ipam/forms/filtersets.py:172 -#: netbox/ipam/forms/filtersets.py:309 netbox/ipam/forms/model_forms.py:62 -#: netbox/ipam/forms/model_forms.py:202 netbox/ipam/forms/model_forms.py:247 -#: netbox/ipam/forms/model_forms.py:300 netbox/ipam/forms/model_forms.py:431 -#: netbox/ipam/forms/model_forms.py:445 netbox/ipam/forms/model_forms.py:459 -#: netbox/ipam/models/ip.py:233 netbox/ipam/models/ip.py:512 -#: netbox/ipam/models/ip.py:720 netbox/ipam/models/vrfs.py:62 -#: netbox/ipam/tables/ip.py:242 netbox/ipam/tables/ip.py:309 -#: netbox/ipam/tables/ip.py:360 netbox/ipam/tables/ip.py:450 -#: netbox/templates/dcim/interface.html:133 -#: netbox/templates/ipam/ipaddress.html:18 -#: netbox/templates/ipam/iprange.html:40 netbox/templates/ipam/prefix.html:19 -#: netbox/templates/ipam/vrf.html:7 netbox/templates/ipam/vrf.html:13 -#: netbox/templates/virtualization/vminterface.html:47 -#: netbox/virtualization/forms/bulk_edit.py:261 -#: netbox/virtualization/forms/bulk_import.py:171 -#: netbox/virtualization/forms/filtersets.py:228 -#: netbox/virtualization/forms/model_forms.py:344 -#: netbox/virtualization/models/virtualmachines.py:355 -#: netbox/virtualization/tables/virtualmachines.py:143 +#: dcim/filtersets.py:1613 dcim/forms/bulk_edit.py:1489 +#: dcim/forms/bulk_import.py:891 dcim/forms/filtersets.py:1428 +#: dcim/forms/model_forms.py:1378 dcim/models/device_components.py:711 +#: dcim/tables/devices.py:626 ipam/filtersets.py:316 ipam/filtersets.py:327 +#: ipam/filtersets.py:483 ipam/filtersets.py:584 ipam/filtersets.py:595 +#: ipam/forms/bulk_edit.py:242 ipam/forms/bulk_edit.py:298 +#: ipam/forms/bulk_edit.py:340 ipam/forms/bulk_import.py:157 +#: ipam/forms/bulk_import.py:243 ipam/forms/bulk_import.py:279 +#: ipam/forms/filtersets.py:67 ipam/forms/filtersets.py:172 +#: ipam/forms/filtersets.py:309 ipam/forms/model_forms.py:62 +#: ipam/forms/model_forms.py:202 ipam/forms/model_forms.py:247 +#: ipam/forms/model_forms.py:300 ipam/forms/model_forms.py:431 +#: ipam/forms/model_forms.py:445 ipam/forms/model_forms.py:459 +#: ipam/models/ip.py:233 ipam/models/ip.py:512 ipam/models/ip.py:720 +#: ipam/models/vrfs.py:62 ipam/tables/ip.py:242 ipam/tables/ip.py:309 +#: ipam/tables/ip.py:360 ipam/tables/ip.py:450 +#: templates/dcim/interface.html:133 templates/ipam/ipaddress.html:18 +#: templates/ipam/iprange.html:40 templates/ipam/prefix.html:19 +#: templates/ipam/vrf.html:7 templates/ipam/vrf.html:13 +#: templates/virtualization/vminterface.html:47 +#: virtualization/forms/bulk_edit.py:261 +#: virtualization/forms/bulk_import.py:171 +#: virtualization/forms/filtersets.py:228 +#: virtualization/forms/model_forms.py:344 +#: virtualization/models/virtualmachines.py:355 +#: virtualization/tables/virtualmachines.py:143 msgid "VRF" msgstr "VRF" -#: netbox/dcim/filtersets.py:1619 netbox/ipam/filtersets.py:322 -#: netbox/ipam/filtersets.py:333 netbox/ipam/filtersets.py:489 -#: netbox/ipam/filtersets.py:590 netbox/ipam/filtersets.py:601 +#: dcim/filtersets.py:1619 ipam/filtersets.py:322 ipam/filtersets.py:333 +#: ipam/filtersets.py:489 ipam/filtersets.py:590 ipam/filtersets.py:601 msgid "VRF (RD)" msgstr "VRF (RD)" -#: netbox/dcim/filtersets.py:1624 netbox/ipam/filtersets.py:1030 -#: netbox/vpn/filtersets.py:342 +#: dcim/filtersets.py:1624 ipam/filtersets.py:1030 vpn/filtersets.py:342 msgid "L2VPN (ID)" msgstr "L2VPN (IDENTIFIANT)" -#: netbox/dcim/filtersets.py:1630 netbox/dcim/forms/filtersets.py:1433 -#: netbox/dcim/tables/devices.py:570 netbox/ipam/filtersets.py:1036 -#: netbox/ipam/forms/filtersets.py:518 netbox/ipam/tables/vlans.py:137 -#: netbox/templates/dcim/interface.html:93 netbox/templates/ipam/vlan.html:66 -#: netbox/templates/vpn/l2vpntermination.html:12 -#: netbox/virtualization/forms/filtersets.py:233 -#: netbox/vpn/forms/bulk_import.py:280 netbox/vpn/forms/filtersets.py:246 -#: netbox/vpn/forms/model_forms.py:409 netbox/vpn/forms/model_forms.py:427 -#: netbox/vpn/models/l2vpn.py:63 netbox/vpn/tables/l2vpn.py:55 +#: dcim/filtersets.py:1630 dcim/forms/filtersets.py:1433 +#: dcim/tables/devices.py:570 ipam/filtersets.py:1036 +#: ipam/forms/filtersets.py:518 ipam/tables/vlans.py:137 +#: templates/dcim/interface.html:93 templates/ipam/vlan.html:66 +#: templates/vpn/l2vpntermination.html:12 +#: virtualization/forms/filtersets.py:233 vpn/forms/bulk_import.py:280 +#: vpn/forms/filtersets.py:246 vpn/forms/model_forms.py:409 +#: vpn/forms/model_forms.py:427 vpn/models/l2vpn.py:63 vpn/tables/l2vpn.py:55 msgid "L2VPN" msgstr "L2VPN" -#: netbox/dcim/filtersets.py:1662 +#: dcim/filtersets.py:1662 msgid "Virtual Chassis Interfaces for Device" msgstr "Interfaces de châssis virtuelles pour appareils" -#: netbox/dcim/filtersets.py:1667 +#: dcim/filtersets.py:1667 msgid "Virtual Chassis Interfaces for Device (ID)" msgstr "Interfaces de châssis virtuel pour le périphérique (ID)" -#: netbox/dcim/filtersets.py:1671 +#: dcim/filtersets.py:1671 msgid "Kind of interface" msgstr "Type d'interface" -#: netbox/dcim/filtersets.py:1676 netbox/virtualization/filtersets.py:293 +#: dcim/filtersets.py:1676 virtualization/filtersets.py:293 msgid "Parent interface (ID)" msgstr "Interface parent (ID)" -#: netbox/dcim/filtersets.py:1681 netbox/virtualization/filtersets.py:298 +#: dcim/filtersets.py:1681 virtualization/filtersets.py:298 msgid "Bridged interface (ID)" msgstr "Interface pontée (ID)" -#: netbox/dcim/filtersets.py:1686 +#: dcim/filtersets.py:1686 msgid "LAG interface (ID)" msgstr "Interface LAG (ID)" -#: netbox/dcim/filtersets.py:1713 netbox/dcim/filtersets.py:1725 -#: netbox/dcim/forms/filtersets.py:1345 netbox/dcim/forms/model_forms.py:1690 -#: netbox/templates/dcim/virtualdevicecontext.html:15 +#: dcim/filtersets.py:1713 dcim/filtersets.py:1725 +#: dcim/forms/filtersets.py:1345 dcim/forms/model_forms.py:1690 +#: templates/dcim/virtualdevicecontext.html:15 msgid "Virtual Device Context" msgstr "Contexte du périphérique virtuel" -#: netbox/dcim/filtersets.py:1719 +#: dcim/filtersets.py:1719 msgid "Virtual Device Context (Identifier)" msgstr "Contexte du périphérique virtuel (identifiant)" -#: netbox/dcim/filtersets.py:1730 -#: netbox/templates/wireless/wirelesslan.html:11 -#: netbox/wireless/forms/model_forms.py:53 +#: dcim/filtersets.py:1730 templates/wireless/wirelesslan.html:11 +#: wireless/forms/model_forms.py:53 msgid "Wireless LAN" msgstr "LAN sans fil" -#: netbox/dcim/filtersets.py:1734 netbox/dcim/tables/devices.py:613 +#: dcim/filtersets.py:1734 dcim/tables/devices.py:613 msgid "Wireless link" msgstr "Liaison sans fil" -#: netbox/dcim/filtersets.py:1803 +#: dcim/filtersets.py:1803 msgid "Parent module bay (ID)" msgstr "Baie du module parent (ID)" -#: netbox/dcim/filtersets.py:1808 +#: dcim/filtersets.py:1808 msgid "Installed module (ID)" msgstr "Module installé (ID)" -#: netbox/dcim/filtersets.py:1819 +#: dcim/filtersets.py:1819 msgid "Installed device (ID)" msgstr "Appareil installé (ID)" -#: netbox/dcim/filtersets.py:1825 +#: dcim/filtersets.py:1825 msgid "Installed device (name)" msgstr "Appareil installé (nom)" -#: netbox/dcim/filtersets.py:1891 +#: dcim/filtersets.py:1891 msgid "Master (ID)" msgstr "Maître (ID)" -#: netbox/dcim/filtersets.py:1897 +#: dcim/filtersets.py:1897 msgid "Master (name)" msgstr "Master (nom)" -#: netbox/dcim/filtersets.py:1939 netbox/tenancy/filtersets.py:245 +#: dcim/filtersets.py:1939 tenancy/filtersets.py:245 msgid "Tenant (ID)" msgstr "Locataire (ID)" -#: netbox/dcim/filtersets.py:1945 netbox/extras/filtersets.py:618 -#: netbox/tenancy/filtersets.py:251 +#: dcim/filtersets.py:1945 extras/filtersets.py:618 tenancy/filtersets.py:251 msgid "Tenant (slug)" msgstr "Locataire (slug)" -#: netbox/dcim/filtersets.py:1981 netbox/dcim/forms/filtersets.py:1077 +#: dcim/filtersets.py:1981 dcim/forms/filtersets.py:1077 msgid "Unterminated" msgstr "Non terminé" -#: netbox/dcim/filtersets.py:2239 +#: dcim/filtersets.py:2239 msgid "Power panel (ID)" msgstr "Panneau d'alimentation (ID)" -#: netbox/dcim/forms/bulk_create.py:40 netbox/extras/forms/filtersets.py:401 -#: netbox/extras/forms/model_forms.py:567 -#: netbox/extras/forms/model_forms.py:619 netbox/netbox/forms/base.py:86 -#: netbox/netbox/forms/mixins.py:81 netbox/netbox/tables/columns.py:478 -#: netbox/templates/circuits/inc/circuit_termination.html:32 -#: netbox/templates/generic/bulk_edit.html:65 -#: netbox/templates/inc/panels/tags.html:5 -#: netbox/utilities/forms/fields/fields.py:81 +#: dcim/forms/bulk_create.py:40 extras/forms/filtersets.py:401 +#: extras/forms/model_forms.py:567 extras/forms/model_forms.py:619 +#: netbox/forms/base.py:86 netbox/forms/mixins.py:81 +#: netbox/tables/columns.py:478 +#: templates/circuits/inc/circuit_termination.html:32 +#: templates/generic/bulk_edit.html:65 templates/inc/panels/tags.html:5 +#: utilities/forms/fields/fields.py:81 msgid "Tags" msgstr "Balises" -#: netbox/dcim/forms/bulk_create.py:112 netbox/dcim/forms/filtersets.py:1498 -#: netbox/dcim/forms/model_forms.py:488 netbox/dcim/forms/model_forms.py:546 -#: netbox/dcim/forms/object_create.py:197 -#: netbox/dcim/forms/object_create.py:353 netbox/dcim/tables/devices.py:165 -#: netbox/dcim/tables/devices.py:707 netbox/dcim/tables/devicetypes.py:246 -#: netbox/templates/dcim/device.html:43 netbox/templates/dcim/device.html:131 -#: netbox/templates/dcim/modulebay.html:38 -#: netbox/templates/dcim/virtualchassis.html:66 -#: netbox/templates/dcim/virtualchassis_edit.html:55 +#: dcim/forms/bulk_create.py:112 dcim/forms/filtersets.py:1498 +#: dcim/forms/model_forms.py:488 dcim/forms/model_forms.py:546 +#: dcim/forms/object_create.py:197 dcim/forms/object_create.py:353 +#: dcim/tables/devices.py:165 dcim/tables/devices.py:707 +#: dcim/tables/devicetypes.py:246 templates/dcim/device.html:43 +#: templates/dcim/device.html:131 templates/dcim/modulebay.html:38 +#: templates/dcim/virtualchassis.html:66 +#: templates/dcim/virtualchassis_edit.html:55 msgid "Position" msgstr "Position" -#: netbox/dcim/forms/bulk_create.py:114 +#: dcim/forms/bulk_create.py:114 msgid "" "Alphanumeric ranges are supported. (Must match the number of names being " "created.)" @@ -3465,888 +3134,826 @@ msgstr "" "Les plages alphanumériques sont prises en charge. (Doit correspondre au " "nombre de noms en cours de création.)" -#: netbox/dcim/forms/bulk_edit.py:132 +#: dcim/forms/bulk_edit.py:132 msgid "Contact name" msgstr "Nom du contact" -#: netbox/dcim/forms/bulk_edit.py:137 +#: dcim/forms/bulk_edit.py:137 msgid "Contact phone" msgstr "Téléphone de contact" -#: netbox/dcim/forms/bulk_edit.py:143 +#: dcim/forms/bulk_edit.py:143 msgid "Contact E-mail" msgstr "Adresse électronique de contact" -#: netbox/dcim/forms/bulk_edit.py:146 netbox/dcim/forms/bulk_import.py:123 -#: netbox/dcim/forms/model_forms.py:128 +#: dcim/forms/bulk_edit.py:146 dcim/forms/bulk_import.py:123 +#: dcim/forms/model_forms.py:128 msgid "Time zone" msgstr "Fuseau horaire" -#: netbox/dcim/forms/bulk_edit.py:224 netbox/dcim/forms/bulk_edit.py:495 -#: netbox/dcim/forms/bulk_edit.py:559 netbox/dcim/forms/bulk_edit.py:632 -#: netbox/dcim/forms/bulk_edit.py:656 netbox/dcim/forms/bulk_edit.py:740 -#: netbox/dcim/forms/bulk_edit.py:1267 netbox/dcim/forms/bulk_edit.py:1660 -#: netbox/dcim/forms/bulk_import.py:182 netbox/dcim/forms/bulk_import.py:371 -#: netbox/dcim/forms/bulk_import.py:405 netbox/dcim/forms/bulk_import.py:450 -#: netbox/dcim/forms/bulk_import.py:486 netbox/dcim/forms/bulk_import.py:1082 -#: netbox/dcim/forms/filtersets.py:313 netbox/dcim/forms/filtersets.py:372 -#: netbox/dcim/forms/filtersets.py:494 netbox/dcim/forms/filtersets.py:619 -#: netbox/dcim/forms/filtersets.py:700 netbox/dcim/forms/filtersets.py:782 -#: netbox/dcim/forms/filtersets.py:947 netbox/dcim/forms/filtersets.py:1539 -#: netbox/dcim/forms/model_forms.py:207 netbox/dcim/forms/model_forms.py:337 -#: netbox/dcim/forms/model_forms.py:349 netbox/dcim/forms/model_forms.py:395 -#: netbox/dcim/forms/model_forms.py:436 netbox/dcim/forms/model_forms.py:1075 -#: netbox/dcim/forms/model_forms.py:1515 -#: netbox/dcim/forms/object_import.py:187 netbox/dcim/tables/devices.py:96 -#: netbox/dcim/tables/devices.py:172 netbox/dcim/tables/devices.py:940 -#: netbox/dcim/tables/devicetypes.py:80 netbox/dcim/tables/devicetypes.py:308 -#: netbox/dcim/tables/modules.py:20 netbox/dcim/tables/modules.py:60 -#: netbox/dcim/tables/racks.py:58 netbox/dcim/tables/racks.py:132 -#: netbox/templates/dcim/devicetype.html:14 -#: netbox/templates/dcim/inventoryitem.html:44 -#: netbox/templates/dcim/manufacturer.html:33 -#: netbox/templates/dcim/modulebay.html:62 -#: netbox/templates/dcim/moduletype.html:14 -#: netbox/templates/dcim/platform.html:37 -#: netbox/templates/dcim/racktype.html:16 +#: dcim/forms/bulk_edit.py:224 dcim/forms/bulk_edit.py:495 +#: dcim/forms/bulk_edit.py:559 dcim/forms/bulk_edit.py:632 +#: dcim/forms/bulk_edit.py:656 dcim/forms/bulk_edit.py:740 +#: dcim/forms/bulk_edit.py:1267 dcim/forms/bulk_edit.py:1660 +#: dcim/forms/bulk_import.py:182 dcim/forms/bulk_import.py:371 +#: dcim/forms/bulk_import.py:405 dcim/forms/bulk_import.py:450 +#: dcim/forms/bulk_import.py:486 dcim/forms/bulk_import.py:1082 +#: dcim/forms/filtersets.py:313 dcim/forms/filtersets.py:372 +#: dcim/forms/filtersets.py:494 dcim/forms/filtersets.py:619 +#: dcim/forms/filtersets.py:700 dcim/forms/filtersets.py:782 +#: dcim/forms/filtersets.py:947 dcim/forms/filtersets.py:1539 +#: dcim/forms/model_forms.py:207 dcim/forms/model_forms.py:337 +#: dcim/forms/model_forms.py:349 dcim/forms/model_forms.py:395 +#: dcim/forms/model_forms.py:436 dcim/forms/model_forms.py:1075 +#: dcim/forms/model_forms.py:1515 dcim/forms/object_import.py:187 +#: dcim/tables/devices.py:96 dcim/tables/devices.py:172 +#: dcim/tables/devices.py:940 dcim/tables/devicetypes.py:80 +#: dcim/tables/devicetypes.py:308 dcim/tables/modules.py:20 +#: dcim/tables/modules.py:60 dcim/tables/racks.py:58 dcim/tables/racks.py:132 +#: templates/dcim/devicetype.html:14 templates/dcim/inventoryitem.html:44 +#: templates/dcim/manufacturer.html:33 templates/dcim/modulebay.html:62 +#: templates/dcim/moduletype.html:25 templates/dcim/platform.html:37 +#: templates/dcim/racktype.html:16 msgid "Manufacturer" msgstr "Fabricant" -#: netbox/dcim/forms/bulk_edit.py:229 netbox/dcim/forms/bulk_edit.py:372 -#: netbox/dcim/forms/bulk_import.py:191 netbox/dcim/forms/bulk_import.py:263 -#: netbox/dcim/forms/filtersets.py:255 -#: netbox/templates/dcim/inc/panels/racktype_dimensions.html:6 +#: dcim/forms/bulk_edit.py:229 dcim/forms/bulk_edit.py:372 +#: dcim/forms/bulk_import.py:191 dcim/forms/bulk_import.py:263 +#: dcim/forms/filtersets.py:255 +#: templates/dcim/inc/panels/racktype_dimensions.html:6 msgid "Form factor" msgstr "Facteur de forme" -#: netbox/dcim/forms/bulk_edit.py:234 netbox/dcim/forms/bulk_edit.py:377 -#: netbox/dcim/forms/bulk_import.py:199 netbox/dcim/forms/bulk_import.py:266 -#: netbox/dcim/forms/filtersets.py:260 -#: netbox/templates/dcim/inc/panels/racktype_dimensions.html:10 +#: dcim/forms/bulk_edit.py:234 dcim/forms/bulk_edit.py:377 +#: dcim/forms/bulk_import.py:199 dcim/forms/bulk_import.py:266 +#: dcim/forms/filtersets.py:260 +#: templates/dcim/inc/panels/racktype_dimensions.html:10 msgid "Width" msgstr "Largeur" -#: netbox/dcim/forms/bulk_edit.py:240 netbox/dcim/forms/bulk_edit.py:383 -#: netbox/templates/dcim/devicetype.html:37 +#: dcim/forms/bulk_edit.py:240 dcim/forms/bulk_edit.py:383 +#: templates/dcim/devicetype.html:37 msgid "Height (U)" msgstr "Hauteur (U)" -#: netbox/dcim/forms/bulk_edit.py:249 netbox/dcim/forms/bulk_edit.py:388 -#: netbox/dcim/forms/filtersets.py:274 +#: dcim/forms/bulk_edit.py:249 dcim/forms/bulk_edit.py:388 +#: dcim/forms/filtersets.py:274 msgid "Descending units" msgstr "Unités décroissantes" -#: netbox/dcim/forms/bulk_edit.py:252 netbox/dcim/forms/bulk_edit.py:391 +#: dcim/forms/bulk_edit.py:252 dcim/forms/bulk_edit.py:391 msgid "Outer width" msgstr "Largeur extérieure" -#: netbox/dcim/forms/bulk_edit.py:257 netbox/dcim/forms/bulk_edit.py:396 +#: dcim/forms/bulk_edit.py:257 dcim/forms/bulk_edit.py:396 msgid "Outer depth" msgstr "Profondeur extérieure" -#: netbox/dcim/forms/bulk_edit.py:262 netbox/dcim/forms/bulk_edit.py:401 -#: netbox/dcim/forms/bulk_import.py:204 netbox/dcim/forms/bulk_import.py:271 +#: dcim/forms/bulk_edit.py:262 dcim/forms/bulk_edit.py:401 +#: dcim/forms/bulk_import.py:204 dcim/forms/bulk_import.py:271 msgid "Outer unit" msgstr "Unité extérieure" -#: netbox/dcim/forms/bulk_edit.py:267 netbox/dcim/forms/bulk_edit.py:406 +#: dcim/forms/bulk_edit.py:267 dcim/forms/bulk_edit.py:406 msgid "Mounting depth" msgstr "Profondeur de montage" -#: netbox/dcim/forms/bulk_edit.py:272 netbox/dcim/forms/bulk_edit.py:299 -#: netbox/dcim/forms/bulk_edit.py:416 netbox/dcim/forms/bulk_edit.py:446 -#: netbox/dcim/forms/bulk_edit.py:529 netbox/dcim/forms/bulk_edit.py:552 -#: netbox/dcim/forms/bulk_edit.py:573 netbox/dcim/forms/bulk_edit.py:595 -#: netbox/dcim/forms/bulk_import.py:384 netbox/dcim/forms/bulk_import.py:416 -#: netbox/dcim/forms/filtersets.py:285 netbox/dcim/forms/filtersets.py:307 -#: netbox/dcim/forms/filtersets.py:327 netbox/dcim/forms/filtersets.py:401 -#: netbox/dcim/forms/filtersets.py:488 netbox/dcim/forms/filtersets.py:594 -#: netbox/dcim/forms/filtersets.py:613 netbox/dcim/forms/filtersets.py:674 -#: netbox/dcim/forms/model_forms.py:221 netbox/dcim/forms/model_forms.py:298 -#: netbox/dcim/tables/devicetypes.py:106 netbox/dcim/tables/modules.py:35 -#: netbox/dcim/tables/racks.py:74 netbox/dcim/tables/racks.py:172 -#: netbox/extras/forms/bulk_edit.py:53 netbox/extras/forms/bulk_edit.py:133 -#: netbox/extras/forms/bulk_edit.py:183 netbox/extras/forms/bulk_edit.py:288 -#: netbox/extras/forms/filtersets.py:64 netbox/extras/forms/filtersets.py:156 -#: netbox/extras/forms/filtersets.py:243 netbox/ipam/forms/bulk_edit.py:189 -#: netbox/templates/dcim/device.html:324 -#: netbox/templates/dcim/devicetype.html:49 -#: netbox/templates/dcim/moduletype.html:34 netbox/templates/dcim/rack.html:81 -#: netbox/templates/dcim/racktype.html:41 -#: netbox/templates/extras/configcontext.html:17 -#: netbox/templates/extras/customlink.html:25 -#: netbox/templates/extras/savedfilter.html:33 -#: netbox/templates/ipam/role.html:30 +#: dcim/forms/bulk_edit.py:272 dcim/forms/bulk_edit.py:299 +#: dcim/forms/bulk_edit.py:416 dcim/forms/bulk_edit.py:446 +#: dcim/forms/bulk_edit.py:529 dcim/forms/bulk_edit.py:552 +#: dcim/forms/bulk_edit.py:573 dcim/forms/bulk_edit.py:595 +#: dcim/forms/bulk_import.py:384 dcim/forms/bulk_import.py:416 +#: dcim/forms/filtersets.py:285 dcim/forms/filtersets.py:307 +#: dcim/forms/filtersets.py:327 dcim/forms/filtersets.py:401 +#: dcim/forms/filtersets.py:488 dcim/forms/filtersets.py:594 +#: dcim/forms/filtersets.py:613 dcim/forms/filtersets.py:674 +#: dcim/forms/model_forms.py:221 dcim/forms/model_forms.py:298 +#: dcim/tables/devicetypes.py:106 dcim/tables/modules.py:35 +#: dcim/tables/racks.py:74 dcim/tables/racks.py:172 +#: extras/forms/bulk_edit.py:53 extras/forms/bulk_edit.py:133 +#: extras/forms/bulk_edit.py:183 extras/forms/bulk_edit.py:288 +#: extras/forms/filtersets.py:64 extras/forms/filtersets.py:156 +#: extras/forms/filtersets.py:243 ipam/forms/bulk_edit.py:190 +#: templates/dcim/device.html:324 templates/dcim/devicetype.html:49 +#: templates/dcim/moduletype.html:45 templates/dcim/rack.html:81 +#: templates/dcim/racktype.html:41 templates/extras/configcontext.html:17 +#: templates/extras/customlink.html:25 templates/extras/savedfilter.html:33 +#: templates/ipam/role.html:30 msgid "Weight" msgstr "Poids" -#: netbox/dcim/forms/bulk_edit.py:277 netbox/dcim/forms/bulk_edit.py:421 -#: netbox/dcim/forms/filtersets.py:290 +#: dcim/forms/bulk_edit.py:277 dcim/forms/bulk_edit.py:421 +#: dcim/forms/filtersets.py:290 msgid "Max weight" msgstr "Poids maximum" -#: netbox/dcim/forms/bulk_edit.py:282 netbox/dcim/forms/bulk_edit.py:426 -#: netbox/dcim/forms/bulk_edit.py:534 netbox/dcim/forms/bulk_edit.py:578 -#: netbox/dcim/forms/bulk_import.py:210 netbox/dcim/forms/bulk_import.py:283 -#: netbox/dcim/forms/bulk_import.py:389 netbox/dcim/forms/bulk_import.py:421 -#: netbox/dcim/forms/filtersets.py:295 netbox/dcim/forms/filtersets.py:598 -#: netbox/dcim/forms/filtersets.py:678 +#: dcim/forms/bulk_edit.py:282 dcim/forms/bulk_edit.py:426 +#: dcim/forms/bulk_edit.py:534 dcim/forms/bulk_edit.py:578 +#: dcim/forms/bulk_import.py:210 dcim/forms/bulk_import.py:283 +#: dcim/forms/bulk_import.py:389 dcim/forms/bulk_import.py:421 +#: dcim/forms/filtersets.py:295 dcim/forms/filtersets.py:598 +#: dcim/forms/filtersets.py:678 msgid "Weight unit" msgstr "Unité de poids" -#: netbox/dcim/forms/bulk_edit.py:296 netbox/dcim/forms/filtersets.py:305 -#: netbox/dcim/forms/model_forms.py:217 netbox/dcim/forms/model_forms.py:256 -#: netbox/templates/dcim/rack.html:45 netbox/templates/dcim/racktype.html:13 +#: dcim/forms/bulk_edit.py:296 dcim/forms/filtersets.py:305 +#: dcim/forms/model_forms.py:217 dcim/forms/model_forms.py:256 +#: templates/dcim/rack.html:45 templates/dcim/racktype.html:13 msgid "Rack Type" msgstr "Type de rack" -#: netbox/dcim/forms/bulk_edit.py:298 netbox/dcim/forms/model_forms.py:220 -#: netbox/dcim/forms/model_forms.py:297 +#: dcim/forms/bulk_edit.py:298 dcim/forms/model_forms.py:220 +#: dcim/forms/model_forms.py:297 msgid "Outer Dimensions" msgstr "Dimensions extérieures" -#: netbox/dcim/forms/bulk_edit.py:301 netbox/dcim/forms/model_forms.py:222 -#: netbox/dcim/forms/model_forms.py:299 netbox/templates/dcim/device.html:315 -#: netbox/templates/dcim/inc/panels/racktype_dimensions.html:3 +#: dcim/forms/bulk_edit.py:301 dcim/forms/model_forms.py:222 +#: dcim/forms/model_forms.py:299 templates/dcim/device.html:315 +#: templates/dcim/inc/panels/racktype_dimensions.html:3 msgid "Dimensions" msgstr "Dimensions" -#: netbox/dcim/forms/bulk_edit.py:303 netbox/dcim/forms/filtersets.py:306 -#: netbox/dcim/forms/filtersets.py:326 netbox/dcim/forms/model_forms.py:224 -#: netbox/templates/dcim/inc/panels/racktype_numbering.html:3 +#: dcim/forms/bulk_edit.py:303 dcim/forms/filtersets.py:306 +#: dcim/forms/filtersets.py:326 dcim/forms/model_forms.py:224 +#: templates/dcim/inc/panels/racktype_numbering.html:3 msgid "Numbering" msgstr "Numérotation" -#: netbox/dcim/forms/bulk_edit.py:357 netbox/dcim/forms/bulk_edit.py:1262 -#: netbox/dcim/forms/bulk_edit.py:1655 netbox/dcim/forms/bulk_import.py:253 -#: netbox/dcim/forms/bulk_import.py:1076 netbox/dcim/forms/filtersets.py:367 -#: netbox/dcim/forms/filtersets.py:777 netbox/dcim/forms/filtersets.py:1534 -#: netbox/dcim/forms/model_forms.py:251 netbox/dcim/forms/model_forms.py:1070 -#: netbox/dcim/forms/model_forms.py:1510 -#: netbox/dcim/forms/object_import.py:181 netbox/dcim/tables/devices.py:169 -#: netbox/dcim/tables/devices.py:809 netbox/dcim/tables/devices.py:937 -#: netbox/dcim/tables/devicetypes.py:304 netbox/dcim/tables/racks.py:129 -#: netbox/extras/filtersets.py:552 netbox/ipam/forms/bulk_edit.py:260 -#: netbox/ipam/forms/bulk_edit.py:310 netbox/ipam/forms/bulk_edit.py:358 -#: netbox/ipam/forms/bulk_edit.py:556 netbox/ipam/forms/bulk_import.py:197 -#: netbox/ipam/forms/bulk_import.py:262 netbox/ipam/forms/bulk_import.py:298 -#: netbox/ipam/forms/bulk_import.py:455 netbox/ipam/forms/filtersets.py:237 -#: netbox/ipam/forms/filtersets.py:289 netbox/ipam/forms/filtersets.py:360 -#: netbox/ipam/forms/filtersets.py:509 netbox/ipam/forms/model_forms.py:188 -#: netbox/ipam/forms/model_forms.py:221 netbox/ipam/forms/model_forms.py:250 -#: netbox/ipam/forms/model_forms.py:643 netbox/ipam/tables/ip.py:258 -#: netbox/ipam/tables/ip.py:316 netbox/ipam/tables/ip.py:367 -#: netbox/ipam/tables/vlans.py:130 netbox/ipam/tables/vlans.py:235 -#: netbox/templates/dcim/device.html:182 -#: netbox/templates/dcim/inc/panels/inventory_items.html:20 -#: netbox/templates/dcim/interface.html:223 -#: netbox/templates/dcim/inventoryitem.html:36 -#: netbox/templates/dcim/rack.html:49 netbox/templates/ipam/ipaddress.html:41 -#: netbox/templates/ipam/iprange.html:50 netbox/templates/ipam/prefix.html:77 -#: netbox/templates/ipam/role.html:19 netbox/templates/ipam/vlan.html:52 -#: netbox/templates/virtualization/virtualmachine.html:23 -#: netbox/templates/vpn/tunneltermination.html:17 -#: netbox/templates/wireless/inc/wirelesslink_interface.html:20 -#: netbox/tenancy/forms/bulk_edit.py:142 -#: netbox/tenancy/forms/filtersets.py:107 -#: netbox/tenancy/forms/model_forms.py:137 -#: netbox/tenancy/tables/contacts.py:102 -#: netbox/virtualization/forms/bulk_edit.py:145 -#: netbox/virtualization/forms/bulk_import.py:106 -#: netbox/virtualization/forms/filtersets.py:157 -#: netbox/virtualization/forms/model_forms.py:195 -#: netbox/virtualization/tables/virtualmachines.py:75 -#: netbox/vpn/forms/bulk_edit.py:87 netbox/vpn/forms/bulk_import.py:81 -#: netbox/vpn/forms/filtersets.py:85 netbox/vpn/forms/model_forms.py:78 -#: netbox/vpn/forms/model_forms.py:113 netbox/vpn/tables/tunnels.py:82 +#: dcim/forms/bulk_edit.py:357 dcim/forms/bulk_edit.py:1262 +#: dcim/forms/bulk_edit.py:1655 dcim/forms/bulk_import.py:253 +#: dcim/forms/bulk_import.py:1076 dcim/forms/filtersets.py:367 +#: dcim/forms/filtersets.py:777 dcim/forms/filtersets.py:1534 +#: dcim/forms/model_forms.py:251 dcim/forms/model_forms.py:1070 +#: dcim/forms/model_forms.py:1510 dcim/forms/object_import.py:181 +#: dcim/tables/devices.py:169 dcim/tables/devices.py:809 +#: dcim/tables/devices.py:937 dcim/tables/devicetypes.py:304 +#: dcim/tables/racks.py:129 extras/filtersets.py:552 +#: ipam/forms/bulk_edit.py:261 ipam/forms/bulk_edit.py:311 +#: ipam/forms/bulk_edit.py:359 ipam/forms/bulk_edit.py:511 +#: ipam/forms/bulk_import.py:197 ipam/forms/bulk_import.py:262 +#: ipam/forms/bulk_import.py:298 ipam/forms/bulk_import.py:455 +#: ipam/forms/filtersets.py:237 ipam/forms/filtersets.py:289 +#: ipam/forms/filtersets.py:360 ipam/forms/filtersets.py:509 +#: ipam/forms/model_forms.py:188 ipam/forms/model_forms.py:221 +#: ipam/forms/model_forms.py:250 ipam/forms/model_forms.py:643 +#: ipam/tables/ip.py:258 ipam/tables/ip.py:316 ipam/tables/ip.py:367 +#: ipam/tables/vlans.py:130 ipam/tables/vlans.py:235 +#: templates/dcim/device.html:182 +#: templates/dcim/inc/panels/inventory_items.html:20 +#: templates/dcim/interface.html:223 templates/dcim/inventoryitem.html:36 +#: templates/dcim/rack.html:49 templates/ipam/ipaddress.html:41 +#: templates/ipam/iprange.html:50 templates/ipam/prefix.html:77 +#: templates/ipam/role.html:19 templates/ipam/vlan.html:52 +#: templates/virtualization/virtualmachine.html:23 +#: templates/vpn/tunneltermination.html:17 +#: templates/wireless/inc/wirelesslink_interface.html:20 +#: tenancy/forms/bulk_edit.py:142 tenancy/forms/filtersets.py:107 +#: tenancy/forms/model_forms.py:137 tenancy/tables/contacts.py:102 +#: virtualization/forms/bulk_edit.py:145 +#: virtualization/forms/bulk_import.py:106 +#: virtualization/forms/filtersets.py:157 +#: virtualization/forms/model_forms.py:195 +#: virtualization/tables/virtualmachines.py:75 vpn/forms/bulk_edit.py:87 +#: vpn/forms/bulk_import.py:81 vpn/forms/filtersets.py:85 +#: vpn/forms/model_forms.py:78 vpn/forms/model_forms.py:113 +#: vpn/tables/tunnels.py:82 msgid "Role" msgstr "Rôle" -#: netbox/dcim/forms/bulk_edit.py:364 netbox/dcim/forms/bulk_edit.py:712 -#: netbox/dcim/forms/bulk_edit.py:764 netbox/templates/dcim/device.html:104 -#: netbox/templates/dcim/module.html:77 -#: netbox/templates/dcim/modulebay.html:70 netbox/templates/dcim/rack.html:57 -#: netbox/templates/virtualization/virtualmachine.html:35 +#: dcim/forms/bulk_edit.py:364 dcim/forms/bulk_edit.py:712 +#: dcim/forms/bulk_edit.py:764 templates/dcim/device.html:104 +#: templates/dcim/module.html:77 templates/dcim/modulebay.html:70 +#: templates/dcim/rack.html:57 templates/virtualization/virtualmachine.html:35 msgid "Serial Number" msgstr "Numéro de série" -#: netbox/dcim/forms/bulk_edit.py:367 netbox/dcim/forms/filtersets.py:387 -#: netbox/dcim/forms/filtersets.py:813 netbox/dcim/forms/filtersets.py:967 -#: netbox/dcim/forms/filtersets.py:1546 +#: dcim/forms/bulk_edit.py:367 dcim/forms/filtersets.py:387 +#: dcim/forms/filtersets.py:813 dcim/forms/filtersets.py:967 +#: dcim/forms/filtersets.py:1546 msgid "Asset tag" msgstr "Étiquette d'actif" -#: netbox/dcim/forms/bulk_edit.py:411 netbox/dcim/forms/bulk_edit.py:524 -#: netbox/dcim/forms/bulk_edit.py:568 netbox/dcim/forms/bulk_edit.py:705 -#: netbox/dcim/forms/bulk_import.py:277 netbox/dcim/forms/bulk_import.py:410 -#: netbox/dcim/forms/bulk_import.py:580 netbox/dcim/forms/filtersets.py:280 -#: netbox/dcim/forms/filtersets.py:511 netbox/dcim/forms/filtersets.py:669 -#: netbox/dcim/forms/filtersets.py:804 netbox/templates/dcim/device.html:98 -#: netbox/templates/dcim/devicetype.html:65 -#: netbox/templates/dcim/moduletype.html:30 netbox/templates/dcim/rack.html:65 -#: netbox/templates/dcim/racktype.html:28 +#: dcim/forms/bulk_edit.py:411 dcim/forms/bulk_edit.py:524 +#: dcim/forms/bulk_edit.py:568 dcim/forms/bulk_edit.py:705 +#: dcim/forms/bulk_import.py:277 dcim/forms/bulk_import.py:410 +#: dcim/forms/bulk_import.py:580 dcim/forms/filtersets.py:280 +#: dcim/forms/filtersets.py:511 dcim/forms/filtersets.py:669 +#: dcim/forms/filtersets.py:804 templates/dcim/device.html:98 +#: templates/dcim/devicetype.html:65 templates/dcim/moduletype.html:41 +#: templates/dcim/rack.html:65 templates/dcim/racktype.html:28 msgid "Airflow" msgstr "Débit d'air" -#: netbox/dcim/forms/bulk_edit.py:440 netbox/dcim/forms/bulk_edit.py:910 -#: netbox/dcim/forms/bulk_import.py:322 netbox/dcim/forms/bulk_import.py:325 -#: netbox/dcim/forms/bulk_import.py:553 netbox/dcim/forms/bulk_import.py:1358 -#: netbox/dcim/forms/bulk_import.py:1362 netbox/dcim/forms/filtersets.py:104 -#: netbox/dcim/forms/filtersets.py:324 netbox/dcim/forms/filtersets.py:405 -#: netbox/dcim/forms/filtersets.py:419 netbox/dcim/forms/filtersets.py:457 -#: netbox/dcim/forms/filtersets.py:772 netbox/dcim/forms/filtersets.py:1035 -#: netbox/dcim/forms/filtersets.py:1167 netbox/dcim/forms/model_forms.py:264 -#: netbox/dcim/forms/model_forms.py:306 netbox/dcim/forms/model_forms.py:479 -#: netbox/dcim/forms/model_forms.py:755 netbox/dcim/forms/object_create.py:400 -#: netbox/dcim/tables/devices.py:161 netbox/dcim/tables/power.py:70 -#: netbox/dcim/tables/racks.py:217 netbox/ipam/forms/bulk_edit.py:468 -#: netbox/ipam/forms/filtersets.py:442 netbox/templates/dcim/device.html:30 -#: netbox/templates/dcim/inc/cable_termination.html:16 -#: netbox/templates/dcim/powerfeed.html:28 netbox/templates/dcim/rack.html:13 -#: netbox/templates/dcim/rack/base.html:4 -#: netbox/templates/dcim/rackreservation.html:19 -#: netbox/templates/dcim/rackreservation.html:36 -#: netbox/virtualization/forms/model_forms.py:113 +#: dcim/forms/bulk_edit.py:440 dcim/forms/bulk_edit.py:910 +#: dcim/forms/bulk_import.py:322 dcim/forms/bulk_import.py:325 +#: dcim/forms/bulk_import.py:553 dcim/forms/bulk_import.py:1358 +#: dcim/forms/bulk_import.py:1362 dcim/forms/filtersets.py:104 +#: dcim/forms/filtersets.py:324 dcim/forms/filtersets.py:405 +#: dcim/forms/filtersets.py:419 dcim/forms/filtersets.py:457 +#: dcim/forms/filtersets.py:772 dcim/forms/filtersets.py:1035 +#: dcim/forms/filtersets.py:1167 dcim/forms/model_forms.py:264 +#: dcim/forms/model_forms.py:306 dcim/forms/model_forms.py:479 +#: dcim/forms/model_forms.py:755 dcim/forms/object_create.py:400 +#: dcim/tables/devices.py:161 dcim/tables/power.py:70 dcim/tables/racks.py:217 +#: ipam/forms/filtersets.py:442 templates/dcim/device.html:30 +#: templates/dcim/inc/cable_termination.html:16 +#: templates/dcim/powerfeed.html:28 templates/dcim/rack.html:13 +#: templates/dcim/rack/base.html:4 templates/dcim/rackreservation.html:19 +#: templates/dcim/rackreservation.html:36 +#: virtualization/forms/model_forms.py:113 msgid "Rack" msgstr "Baie" -#: netbox/dcim/forms/bulk_edit.py:444 netbox/dcim/forms/bulk_edit.py:730 -#: netbox/dcim/forms/filtersets.py:325 netbox/dcim/forms/filtersets.py:398 -#: netbox/dcim/forms/filtersets.py:481 netbox/dcim/forms/filtersets.py:608 -#: netbox/dcim/forms/filtersets.py:721 netbox/dcim/forms/filtersets.py:942 -#: netbox/dcim/forms/model_forms.py:670 netbox/dcim/forms/model_forms.py:1580 -#: netbox/templates/dcim/device_edit.html:20 +#: dcim/forms/bulk_edit.py:444 dcim/forms/bulk_edit.py:730 +#: dcim/forms/filtersets.py:325 dcim/forms/filtersets.py:398 +#: dcim/forms/filtersets.py:481 dcim/forms/filtersets.py:608 +#: dcim/forms/filtersets.py:721 dcim/forms/filtersets.py:942 +#: dcim/forms/model_forms.py:670 dcim/forms/model_forms.py:1580 +#: templates/dcim/device_edit.html:20 msgid "Hardware" msgstr "Matériel" -#: netbox/dcim/forms/bulk_edit.py:500 netbox/dcim/forms/bulk_import.py:377 -#: netbox/dcim/forms/filtersets.py:499 netbox/dcim/forms/model_forms.py:353 +#: dcim/forms/bulk_edit.py:500 dcim/forms/bulk_import.py:377 +#: dcim/forms/filtersets.py:499 dcim/forms/model_forms.py:353 msgid "Default platform" msgstr "Plateforme par défaut" -#: netbox/dcim/forms/bulk_edit.py:505 netbox/dcim/forms/bulk_edit.py:564 -#: netbox/dcim/forms/filtersets.py:502 netbox/dcim/forms/filtersets.py:622 +#: dcim/forms/bulk_edit.py:505 dcim/forms/bulk_edit.py:564 +#: dcim/forms/filtersets.py:502 dcim/forms/filtersets.py:622 msgid "Part number" msgstr "Numéro de pièce" -#: netbox/dcim/forms/bulk_edit.py:509 +#: dcim/forms/bulk_edit.py:509 msgid "U height" msgstr "Hauteur en U" -#: netbox/dcim/forms/bulk_edit.py:521 netbox/dcim/tables/devicetypes.py:102 +#: dcim/forms/bulk_edit.py:521 dcim/tables/devicetypes.py:102 msgid "Exclude from utilization" msgstr "Exclure de l'utilisation" -#: netbox/dcim/forms/bulk_edit.py:550 netbox/dcim/forms/model_forms.py:368 -#: netbox/dcim/tables/devicetypes.py:77 netbox/templates/dcim/device.html:88 -#: netbox/templates/dcim/devicebay.html:52 -#: netbox/templates/dcim/module.html:61 +#: dcim/forms/bulk_edit.py:550 dcim/forms/model_forms.py:368 +#: dcim/tables/devicetypes.py:77 templates/dcim/device.html:88 +#: templates/dcim/devicebay.html:52 templates/dcim/module.html:61 msgid "Device Type" msgstr "Type d'appareil" -#: netbox/dcim/forms/bulk_edit.py:592 netbox/dcim/forms/model_forms.py:401 -#: netbox/dcim/tables/modules.py:17 netbox/dcim/tables/modules.py:65 -#: netbox/templates/dcim/module.html:65 -#: netbox/templates/dcim/modulebay.html:66 -#: netbox/templates/dcim/moduletype.html:11 +#: dcim/forms/bulk_edit.py:592 dcim/forms/model_forms.py:401 +#: dcim/tables/modules.py:17 dcim/tables/modules.py:65 +#: templates/dcim/module.html:65 templates/dcim/modulebay.html:66 +#: templates/dcim/moduletype.html:22 msgid "Module Type" msgstr "Type de module" -#: netbox/dcim/forms/bulk_edit.py:596 netbox/dcim/forms/model_forms.py:371 -#: netbox/dcim/forms/model_forms.py:402 -#: netbox/templates/dcim/devicetype.html:11 +#: dcim/forms/bulk_edit.py:596 dcim/forms/model_forms.py:371 +#: dcim/forms/model_forms.py:402 templates/dcim/devicetype.html:11 msgid "Chassis" msgstr "Châssis" -#: netbox/dcim/forms/bulk_edit.py:610 netbox/dcim/models/devices.py:484 -#: netbox/dcim/tables/devices.py:67 +#: dcim/forms/bulk_edit.py:610 dcim/models/devices.py:484 +#: dcim/tables/devices.py:67 msgid "VM role" msgstr "rôle de machine virtuelle" -#: netbox/dcim/forms/bulk_edit.py:613 netbox/dcim/forms/bulk_edit.py:637 -#: netbox/dcim/forms/bulk_edit.py:720 netbox/dcim/forms/bulk_import.py:434 -#: netbox/dcim/forms/bulk_import.py:438 netbox/dcim/forms/bulk_import.py:457 -#: netbox/dcim/forms/bulk_import.py:461 netbox/dcim/forms/bulk_import.py:586 -#: netbox/dcim/forms/bulk_import.py:590 netbox/dcim/forms/filtersets.py:689 -#: netbox/dcim/forms/filtersets.py:705 netbox/dcim/forms/filtersets.py:823 -#: netbox/dcim/forms/model_forms.py:415 netbox/dcim/forms/model_forms.py:441 -#: netbox/dcim/forms/model_forms.py:555 -#: netbox/virtualization/forms/bulk_import.py:132 -#: netbox/virtualization/forms/bulk_import.py:133 -#: netbox/virtualization/forms/filtersets.py:188 -#: netbox/virtualization/forms/model_forms.py:215 +#: dcim/forms/bulk_edit.py:613 dcim/forms/bulk_edit.py:637 +#: dcim/forms/bulk_edit.py:720 dcim/forms/bulk_import.py:434 +#: dcim/forms/bulk_import.py:438 dcim/forms/bulk_import.py:457 +#: dcim/forms/bulk_import.py:461 dcim/forms/bulk_import.py:586 +#: dcim/forms/bulk_import.py:590 dcim/forms/filtersets.py:689 +#: dcim/forms/filtersets.py:705 dcim/forms/filtersets.py:823 +#: dcim/forms/model_forms.py:415 dcim/forms/model_forms.py:441 +#: dcim/forms/model_forms.py:555 virtualization/forms/bulk_import.py:132 +#: virtualization/forms/bulk_import.py:133 +#: virtualization/forms/filtersets.py:188 +#: virtualization/forms/model_forms.py:215 msgid "Config template" msgstr "Modèle de configuration" -#: netbox/dcim/forms/bulk_edit.py:661 netbox/dcim/forms/bulk_edit.py:1061 -#: netbox/dcim/forms/bulk_import.py:492 netbox/dcim/forms/filtersets.py:114 -#: netbox/dcim/forms/model_forms.py:501 netbox/dcim/forms/model_forms.py:872 -#: netbox/dcim/forms/model_forms.py:889 netbox/extras/filtersets.py:547 +#: dcim/forms/bulk_edit.py:661 dcim/forms/bulk_edit.py:1061 +#: dcim/forms/bulk_import.py:492 dcim/forms/filtersets.py:114 +#: dcim/forms/model_forms.py:501 dcim/forms/model_forms.py:872 +#: dcim/forms/model_forms.py:889 extras/filtersets.py:547 msgid "Device type" msgstr "Type d'appareil" -#: netbox/dcim/forms/bulk_edit.py:672 netbox/dcim/forms/bulk_import.py:473 -#: netbox/dcim/forms/filtersets.py:119 netbox/dcim/forms/model_forms.py:509 +#: dcim/forms/bulk_edit.py:672 dcim/forms/bulk_import.py:473 +#: dcim/forms/filtersets.py:119 dcim/forms/model_forms.py:509 msgid "Device role" msgstr "Rôle de l'appareil" -#: netbox/dcim/forms/bulk_edit.py:695 netbox/dcim/forms/bulk_import.py:498 -#: netbox/dcim/forms/filtersets.py:796 netbox/dcim/forms/model_forms.py:451 -#: netbox/dcim/forms/model_forms.py:513 netbox/dcim/tables/devices.py:182 -#: netbox/extras/filtersets.py:563 netbox/templates/dcim/device.html:186 -#: netbox/templates/dcim/platform.html:26 -#: netbox/templates/virtualization/virtualmachine.html:27 -#: netbox/virtualization/forms/bulk_edit.py:160 -#: netbox/virtualization/forms/bulk_import.py:122 -#: netbox/virtualization/forms/filtersets.py:168 -#: netbox/virtualization/forms/model_forms.py:203 -#: netbox/virtualization/tables/virtualmachines.py:79 +#: dcim/forms/bulk_edit.py:695 dcim/forms/bulk_import.py:498 +#: dcim/forms/filtersets.py:796 dcim/forms/model_forms.py:451 +#: dcim/forms/model_forms.py:513 dcim/tables/devices.py:182 +#: extras/filtersets.py:563 templates/dcim/device.html:186 +#: templates/dcim/platform.html:26 +#: templates/virtualization/virtualmachine.html:27 +#: virtualization/forms/bulk_edit.py:160 +#: virtualization/forms/bulk_import.py:122 +#: virtualization/forms/filtersets.py:168 +#: virtualization/forms/model_forms.py:203 +#: virtualization/tables/virtualmachines.py:79 msgid "Platform" msgstr "Plateforme" -#: netbox/dcim/forms/bulk_edit.py:728 netbox/dcim/forms/bulk_edit.py:1281 -#: netbox/dcim/forms/bulk_edit.py:1650 netbox/dcim/forms/bulk_edit.py:1696 -#: netbox/dcim/forms/bulk_import.py:641 netbox/dcim/forms/bulk_import.py:703 -#: netbox/dcim/forms/bulk_import.py:729 netbox/dcim/forms/bulk_import.py:755 -#: netbox/dcim/forms/bulk_import.py:775 netbox/dcim/forms/bulk_import.py:828 -#: netbox/dcim/forms/bulk_import.py:946 netbox/dcim/forms/bulk_import.py:994 -#: netbox/dcim/forms/bulk_import.py:1011 netbox/dcim/forms/bulk_import.py:1023 -#: netbox/dcim/forms/bulk_import.py:1071 netbox/dcim/forms/bulk_import.py:1422 -#: netbox/dcim/forms/connections.py:24 netbox/dcim/forms/filtersets.py:131 -#: netbox/dcim/forms/filtersets.py:921 netbox/dcim/forms/filtersets.py:1051 -#: netbox/dcim/forms/filtersets.py:1242 netbox/dcim/forms/filtersets.py:1267 -#: netbox/dcim/forms/filtersets.py:1291 netbox/dcim/forms/filtersets.py:1311 -#: netbox/dcim/forms/filtersets.py:1334 netbox/dcim/forms/filtersets.py:1444 -#: netbox/dcim/forms/filtersets.py:1469 netbox/dcim/forms/filtersets.py:1493 -#: netbox/dcim/forms/filtersets.py:1511 netbox/dcim/forms/filtersets.py:1528 -#: netbox/dcim/forms/filtersets.py:1592 netbox/dcim/forms/filtersets.py:1616 -#: netbox/dcim/forms/filtersets.py:1640 netbox/dcim/forms/model_forms.py:633 -#: netbox/dcim/forms/model_forms.py:849 netbox/dcim/forms/model_forms.py:1208 -#: netbox/dcim/forms/model_forms.py:1664 -#: netbox/dcim/forms/object_create.py:257 netbox/dcim/tables/connections.py:22 -#: netbox/dcim/tables/connections.py:41 netbox/dcim/tables/connections.py:60 -#: netbox/dcim/tables/devices.py:285 netbox/dcim/tables/devices.py:371 -#: netbox/dcim/tables/devices.py:412 netbox/dcim/tables/devices.py:454 -#: netbox/dcim/tables/devices.py:505 netbox/dcim/tables/devices.py:597 -#: netbox/dcim/tables/devices.py:697 netbox/dcim/tables/devices.py:754 -#: netbox/dcim/tables/devices.py:801 netbox/dcim/tables/devices.py:861 -#: netbox/dcim/tables/devices.py:930 netbox/dcim/tables/devices.py:1057 -#: netbox/dcim/tables/modules.py:52 netbox/extras/forms/filtersets.py:321 -#: netbox/ipam/forms/bulk_import.py:304 netbox/ipam/forms/bulk_import.py:481 -#: netbox/ipam/forms/filtersets.py:551 netbox/ipam/forms/model_forms.py:319 -#: netbox/ipam/forms/model_forms.py:679 netbox/ipam/forms/model_forms.py:712 -#: netbox/ipam/forms/model_forms.py:738 netbox/ipam/tables/vlans.py:180 -#: netbox/templates/dcim/consoleport.html:20 -#: netbox/templates/dcim/consoleserverport.html:20 -#: netbox/templates/dcim/device.html:15 netbox/templates/dcim/device.html:130 -#: netbox/templates/dcim/device_edit.html:10 -#: netbox/templates/dcim/devicebay.html:20 -#: netbox/templates/dcim/devicebay.html:48 -#: netbox/templates/dcim/frontport.html:20 -#: netbox/templates/dcim/interface.html:30 -#: netbox/templates/dcim/interface.html:161 -#: netbox/templates/dcim/inventoryitem.html:20 -#: netbox/templates/dcim/module.html:57 -#: netbox/templates/dcim/modulebay.html:20 -#: netbox/templates/dcim/poweroutlet.html:20 -#: netbox/templates/dcim/powerport.html:20 -#: netbox/templates/dcim/rearport.html:20 -#: netbox/templates/dcim/virtualchassis.html:65 -#: netbox/templates/dcim/virtualchassis_edit.html:51 -#: netbox/templates/dcim/virtualdevicecontext.html:22 -#: netbox/templates/virtualization/virtualmachine.html:114 -#: netbox/templates/vpn/tunneltermination.html:23 -#: netbox/templates/wireless/inc/wirelesslink_interface.html:6 -#: netbox/virtualization/filtersets.py:167 -#: netbox/virtualization/forms/bulk_edit.py:137 -#: netbox/virtualization/forms/bulk_import.py:99 -#: netbox/virtualization/forms/filtersets.py:128 -#: netbox/virtualization/forms/model_forms.py:185 -#: netbox/virtualization/tables/virtualmachines.py:71 netbox/vpn/choices.py:44 -#: netbox/vpn/forms/bulk_import.py:86 netbox/vpn/forms/bulk_import.py:283 -#: netbox/vpn/forms/filtersets.py:275 netbox/vpn/forms/model_forms.py:90 -#: netbox/vpn/forms/model_forms.py:125 netbox/vpn/forms/model_forms.py:236 -#: netbox/vpn/forms/model_forms.py:453 netbox/wireless/forms/model_forms.py:99 -#: netbox/wireless/forms/model_forms.py:141 -#: netbox/wireless/tables/wirelesslan.py:75 +#: dcim/forms/bulk_edit.py:728 dcim/forms/bulk_edit.py:1281 +#: dcim/forms/bulk_edit.py:1650 dcim/forms/bulk_edit.py:1696 +#: dcim/forms/bulk_import.py:641 dcim/forms/bulk_import.py:703 +#: dcim/forms/bulk_import.py:729 dcim/forms/bulk_import.py:755 +#: dcim/forms/bulk_import.py:775 dcim/forms/bulk_import.py:828 +#: dcim/forms/bulk_import.py:946 dcim/forms/bulk_import.py:994 +#: dcim/forms/bulk_import.py:1011 dcim/forms/bulk_import.py:1023 +#: dcim/forms/bulk_import.py:1071 dcim/forms/bulk_import.py:1422 +#: dcim/forms/connections.py:24 dcim/forms/filtersets.py:131 +#: dcim/forms/filtersets.py:921 dcim/forms/filtersets.py:1051 +#: dcim/forms/filtersets.py:1242 dcim/forms/filtersets.py:1267 +#: dcim/forms/filtersets.py:1291 dcim/forms/filtersets.py:1311 +#: dcim/forms/filtersets.py:1334 dcim/forms/filtersets.py:1444 +#: dcim/forms/filtersets.py:1469 dcim/forms/filtersets.py:1493 +#: dcim/forms/filtersets.py:1511 dcim/forms/filtersets.py:1528 +#: dcim/forms/filtersets.py:1592 dcim/forms/filtersets.py:1616 +#: dcim/forms/filtersets.py:1640 dcim/forms/model_forms.py:633 +#: dcim/forms/model_forms.py:849 dcim/forms/model_forms.py:1208 +#: dcim/forms/model_forms.py:1664 dcim/forms/object_create.py:257 +#: dcim/tables/connections.py:22 dcim/tables/connections.py:41 +#: dcim/tables/connections.py:60 dcim/tables/devices.py:285 +#: dcim/tables/devices.py:371 dcim/tables/devices.py:412 +#: dcim/tables/devices.py:454 dcim/tables/devices.py:505 +#: dcim/tables/devices.py:597 dcim/tables/devices.py:697 +#: dcim/tables/devices.py:754 dcim/tables/devices.py:801 +#: dcim/tables/devices.py:861 dcim/tables/devices.py:930 +#: dcim/tables/devices.py:1057 dcim/tables/modules.py:52 +#: extras/forms/filtersets.py:321 ipam/forms/bulk_import.py:304 +#: ipam/forms/bulk_import.py:481 ipam/forms/filtersets.py:551 +#: ipam/forms/model_forms.py:319 ipam/forms/model_forms.py:679 +#: ipam/forms/model_forms.py:712 ipam/forms/model_forms.py:738 +#: ipam/tables/vlans.py:180 templates/dcim/consoleport.html:20 +#: templates/dcim/consoleserverport.html:20 templates/dcim/device.html:15 +#: templates/dcim/device.html:130 templates/dcim/device_edit.html:10 +#: templates/dcim/devicebay.html:20 templates/dcim/devicebay.html:48 +#: templates/dcim/frontport.html:20 templates/dcim/interface.html:30 +#: templates/dcim/interface.html:161 templates/dcim/inventoryitem.html:20 +#: templates/dcim/module.html:57 templates/dcim/modulebay.html:20 +#: templates/dcim/poweroutlet.html:20 templates/dcim/powerport.html:20 +#: templates/dcim/rearport.html:20 templates/dcim/virtualchassis.html:65 +#: templates/dcim/virtualchassis_edit.html:51 +#: templates/dcim/virtualdevicecontext.html:22 +#: templates/virtualization/virtualmachine.html:114 +#: templates/vpn/tunneltermination.html:23 +#: templates/wireless/inc/wirelesslink_interface.html:6 +#: virtualization/filtersets.py:167 virtualization/forms/bulk_edit.py:137 +#: virtualization/forms/bulk_import.py:99 +#: virtualization/forms/filtersets.py:128 +#: virtualization/forms/model_forms.py:185 +#: virtualization/tables/virtualmachines.py:71 vpn/choices.py:44 +#: vpn/forms/bulk_import.py:86 vpn/forms/bulk_import.py:283 +#: vpn/forms/filtersets.py:275 vpn/forms/model_forms.py:90 +#: vpn/forms/model_forms.py:125 vpn/forms/model_forms.py:236 +#: vpn/forms/model_forms.py:453 wireless/forms/model_forms.py:99 +#: wireless/forms/model_forms.py:141 wireless/tables/wirelesslan.py:75 msgid "Device" msgstr "Appareil" -#: netbox/dcim/forms/bulk_edit.py:731 -#: netbox/templates/extras/dashboard/widget_config.html:7 -#: netbox/virtualization/forms/bulk_edit.py:191 +#: dcim/forms/bulk_edit.py:731 templates/extras/dashboard/widget_config.html:7 +#: virtualization/forms/bulk_edit.py:191 msgid "Configuration" msgstr "Configuration" -#: netbox/dcim/forms/bulk_edit.py:745 netbox/dcim/forms/bulk_import.py:653 -#: netbox/dcim/forms/model_forms.py:647 netbox/dcim/forms/model_forms.py:897 +#: dcim/forms/bulk_edit.py:745 dcim/forms/bulk_import.py:653 +#: dcim/forms/model_forms.py:647 dcim/forms/model_forms.py:897 msgid "Module type" msgstr "Type de module" -#: netbox/dcim/forms/bulk_edit.py:799 netbox/dcim/forms/bulk_edit.py:984 -#: netbox/dcim/forms/bulk_edit.py:1003 netbox/dcim/forms/bulk_edit.py:1026 -#: netbox/dcim/forms/bulk_edit.py:1068 netbox/dcim/forms/bulk_edit.py:1112 -#: netbox/dcim/forms/bulk_edit.py:1163 netbox/dcim/forms/bulk_edit.py:1190 -#: netbox/dcim/forms/bulk_edit.py:1217 netbox/dcim/forms/bulk_edit.py:1235 -#: netbox/dcim/forms/bulk_edit.py:1253 netbox/dcim/forms/filtersets.py:67 -#: netbox/dcim/forms/object_create.py:46 netbox/templates/dcim/cable.html:32 -#: netbox/templates/dcim/consoleport.html:32 -#: netbox/templates/dcim/consoleserverport.html:32 -#: netbox/templates/dcim/devicebay.html:28 -#: netbox/templates/dcim/frontport.html:32 -#: netbox/templates/dcim/inc/panels/inventory_items.html:19 -#: netbox/templates/dcim/interface.html:42 -#: netbox/templates/dcim/inventoryitem.html:32 -#: netbox/templates/dcim/modulebay.html:34 -#: netbox/templates/dcim/poweroutlet.html:32 -#: netbox/templates/dcim/powerport.html:32 -#: netbox/templates/dcim/rearport.html:32 -#: netbox/templates/extras/customfield.html:26 -#: netbox/templates/generic/bulk_import.html:162 +#: dcim/forms/bulk_edit.py:799 dcim/forms/bulk_edit.py:984 +#: dcim/forms/bulk_edit.py:1003 dcim/forms/bulk_edit.py:1026 +#: dcim/forms/bulk_edit.py:1068 dcim/forms/bulk_edit.py:1112 +#: dcim/forms/bulk_edit.py:1163 dcim/forms/bulk_edit.py:1190 +#: dcim/forms/bulk_edit.py:1217 dcim/forms/bulk_edit.py:1235 +#: dcim/forms/bulk_edit.py:1253 dcim/forms/filtersets.py:67 +#: dcim/forms/object_create.py:46 templates/dcim/cable.html:32 +#: templates/dcim/consoleport.html:32 templates/dcim/consoleserverport.html:32 +#: templates/dcim/devicebay.html:28 templates/dcim/frontport.html:32 +#: templates/dcim/inc/panels/inventory_items.html:19 +#: templates/dcim/interface.html:42 templates/dcim/inventoryitem.html:32 +#: templates/dcim/modulebay.html:34 templates/dcim/poweroutlet.html:32 +#: templates/dcim/powerport.html:32 templates/dcim/rearport.html:32 +#: templates/extras/customfield.html:26 templates/generic/bulk_import.html:162 msgid "Label" msgstr "Libellé" -#: netbox/dcim/forms/bulk_edit.py:808 netbox/dcim/forms/filtersets.py:1068 -#: netbox/templates/dcim/cable.html:50 +#: dcim/forms/bulk_edit.py:808 dcim/forms/filtersets.py:1068 +#: templates/dcim/cable.html:50 msgid "Length" msgstr "Longueur" -#: netbox/dcim/forms/bulk_edit.py:813 netbox/dcim/forms/bulk_import.py:1226 -#: netbox/dcim/forms/bulk_import.py:1229 netbox/dcim/forms/filtersets.py:1072 +#: dcim/forms/bulk_edit.py:813 dcim/forms/bulk_import.py:1226 +#: dcim/forms/bulk_import.py:1229 dcim/forms/filtersets.py:1072 msgid "Length unit" msgstr "Unité de longueur" -#: netbox/dcim/forms/bulk_edit.py:837 -#: netbox/templates/dcim/virtualchassis.html:23 +#: dcim/forms/bulk_edit.py:837 templates/dcim/virtualchassis.html:23 msgid "Domain" msgstr "Domaine" -#: netbox/dcim/forms/bulk_edit.py:905 netbox/dcim/forms/bulk_import.py:1345 -#: netbox/dcim/forms/filtersets.py:1158 netbox/dcim/forms/model_forms.py:750 +#: dcim/forms/bulk_edit.py:905 dcim/forms/bulk_import.py:1345 +#: dcim/forms/filtersets.py:1158 dcim/forms/model_forms.py:750 msgid "Power panel" msgstr "panneau d'alimentation" -#: netbox/dcim/forms/bulk_edit.py:927 netbox/dcim/forms/bulk_import.py:1381 -#: netbox/dcim/forms/filtersets.py:1180 -#: netbox/templates/dcim/powerfeed.html:83 +#: dcim/forms/bulk_edit.py:927 dcim/forms/bulk_import.py:1381 +#: dcim/forms/filtersets.py:1180 templates/dcim/powerfeed.html:83 msgid "Supply" msgstr "Approvisionnement" -#: netbox/dcim/forms/bulk_edit.py:933 netbox/dcim/forms/bulk_import.py:1386 -#: netbox/dcim/forms/filtersets.py:1185 -#: netbox/templates/dcim/powerfeed.html:95 +#: dcim/forms/bulk_edit.py:933 dcim/forms/bulk_import.py:1386 +#: dcim/forms/filtersets.py:1185 templates/dcim/powerfeed.html:95 msgid "Phase" msgstr "Phase" -#: netbox/dcim/forms/bulk_edit.py:939 netbox/dcim/forms/filtersets.py:1190 -#: netbox/templates/dcim/powerfeed.html:87 +#: dcim/forms/bulk_edit.py:939 dcim/forms/filtersets.py:1190 +#: templates/dcim/powerfeed.html:87 msgid "Voltage" msgstr "tension" -#: netbox/dcim/forms/bulk_edit.py:943 netbox/dcim/forms/filtersets.py:1194 -#: netbox/templates/dcim/powerfeed.html:91 +#: dcim/forms/bulk_edit.py:943 dcim/forms/filtersets.py:1194 +#: templates/dcim/powerfeed.html:91 msgid "Amperage" msgstr "Ampérage" -#: netbox/dcim/forms/bulk_edit.py:947 netbox/dcim/forms/filtersets.py:1198 +#: dcim/forms/bulk_edit.py:947 dcim/forms/filtersets.py:1198 msgid "Max utilization" msgstr "Utilisation maximale" -#: netbox/dcim/forms/bulk_edit.py:1036 +#: dcim/forms/bulk_edit.py:1036 msgid "Maximum draw" msgstr "Tirage maximum" -#: netbox/dcim/forms/bulk_edit.py:1039 -#: netbox/dcim/models/device_component_templates.py:282 -#: netbox/dcim/models/device_components.py:356 +#: dcim/forms/bulk_edit.py:1039 dcim/models/device_component_templates.py:282 +#: dcim/models/device_components.py:356 msgid "Maximum power draw (watts)" msgstr "Consommation électrique maximale (watts)" -#: netbox/dcim/forms/bulk_edit.py:1042 +#: dcim/forms/bulk_edit.py:1042 msgid "Allocated draw" msgstr "Tirage au sort attribué" -#: netbox/dcim/forms/bulk_edit.py:1045 -#: netbox/dcim/models/device_component_templates.py:289 -#: netbox/dcim/models/device_components.py:363 +#: dcim/forms/bulk_edit.py:1045 dcim/models/device_component_templates.py:289 +#: dcim/models/device_components.py:363 msgid "Allocated power draw (watts)" msgstr "Consommation électrique allouée (watts)" -#: netbox/dcim/forms/bulk_edit.py:1078 netbox/dcim/forms/bulk_import.py:786 -#: netbox/dcim/forms/model_forms.py:953 netbox/dcim/forms/model_forms.py:1278 -#: netbox/dcim/forms/model_forms.py:1567 netbox/dcim/forms/object_import.py:55 +#: dcim/forms/bulk_edit.py:1078 dcim/forms/bulk_import.py:786 +#: dcim/forms/model_forms.py:953 dcim/forms/model_forms.py:1278 +#: dcim/forms/model_forms.py:1567 dcim/forms/object_import.py:55 msgid "Power port" msgstr "port d'alimentation" -#: netbox/dcim/forms/bulk_edit.py:1083 netbox/dcim/forms/bulk_import.py:793 +#: dcim/forms/bulk_edit.py:1083 dcim/forms/bulk_import.py:793 msgid "Feed leg" msgstr "Patte d'alimentation" -#: netbox/dcim/forms/bulk_edit.py:1129 netbox/dcim/forms/bulk_edit.py:1440 +#: dcim/forms/bulk_edit.py:1129 dcim/forms/bulk_edit.py:1440 msgid "Management only" msgstr "Gestion uniquement" -#: netbox/dcim/forms/bulk_edit.py:1139 netbox/dcim/forms/bulk_edit.py:1446 -#: netbox/dcim/forms/bulk_import.py:876 netbox/dcim/forms/filtersets.py:1394 -#: netbox/dcim/forms/object_import.py:90 -#: netbox/dcim/models/device_component_templates.py:437 -#: netbox/dcim/models/device_components.py:670 +#: dcim/forms/bulk_edit.py:1139 dcim/forms/bulk_edit.py:1446 +#: dcim/forms/bulk_import.py:876 dcim/forms/filtersets.py:1394 +#: dcim/forms/object_import.py:90 +#: dcim/models/device_component_templates.py:437 +#: dcim/models/device_components.py:670 msgid "PoE mode" msgstr "Mode PoE" -#: netbox/dcim/forms/bulk_edit.py:1145 netbox/dcim/forms/bulk_edit.py:1452 -#: netbox/dcim/forms/bulk_import.py:882 netbox/dcim/forms/filtersets.py:1399 -#: netbox/dcim/forms/object_import.py:95 -#: netbox/dcim/models/device_component_templates.py:443 -#: netbox/dcim/models/device_components.py:676 +#: dcim/forms/bulk_edit.py:1145 dcim/forms/bulk_edit.py:1452 +#: dcim/forms/bulk_import.py:882 dcim/forms/filtersets.py:1399 +#: dcim/forms/object_import.py:95 +#: dcim/models/device_component_templates.py:443 +#: dcim/models/device_components.py:676 msgid "PoE type" msgstr "Type PoE" -#: netbox/dcim/forms/bulk_edit.py:1151 netbox/dcim/forms/filtersets.py:1404 -#: netbox/dcim/forms/object_import.py:100 +#: dcim/forms/bulk_edit.py:1151 dcim/forms/filtersets.py:1404 +#: dcim/forms/object_import.py:100 msgid "Wireless role" msgstr "Rôle sans fil" -#: netbox/dcim/forms/bulk_edit.py:1288 netbox/dcim/forms/model_forms.py:669 -#: netbox/dcim/forms/model_forms.py:1223 netbox/dcim/tables/devices.py:313 -#: netbox/templates/dcim/consoleport.html:24 -#: netbox/templates/dcim/consoleserverport.html:24 -#: netbox/templates/dcim/frontport.html:24 -#: netbox/templates/dcim/interface.html:34 -#: netbox/templates/dcim/module.html:54 -#: netbox/templates/dcim/modulebay.html:26 -#: netbox/templates/dcim/modulebay.html:58 -#: netbox/templates/dcim/poweroutlet.html:24 -#: netbox/templates/dcim/powerport.html:24 -#: netbox/templates/dcim/rearport.html:24 +#: dcim/forms/bulk_edit.py:1288 dcim/forms/model_forms.py:669 +#: dcim/forms/model_forms.py:1223 dcim/tables/devices.py:313 +#: templates/dcim/consoleport.html:24 templates/dcim/consoleserverport.html:24 +#: templates/dcim/frontport.html:24 templates/dcim/interface.html:34 +#: templates/dcim/module.html:54 templates/dcim/modulebay.html:26 +#: templates/dcim/modulebay.html:58 templates/dcim/poweroutlet.html:24 +#: templates/dcim/powerport.html:24 templates/dcim/rearport.html:24 msgid "Module" msgstr "Modules" -#: netbox/dcim/forms/bulk_edit.py:1420 netbox/dcim/tables/devices.py:665 -#: netbox/templates/dcim/interface.html:110 +#: dcim/forms/bulk_edit.py:1420 dcim/tables/devices.py:665 +#: templates/dcim/interface.html:110 msgid "LAG" msgstr "DÉCALAGE" -#: netbox/dcim/forms/bulk_edit.py:1425 netbox/dcim/forms/model_forms.py:1305 +#: dcim/forms/bulk_edit.py:1425 dcim/forms/model_forms.py:1305 msgid "Virtual device contexts" msgstr "Contextes des appareils virtuels" -#: netbox/dcim/forms/bulk_edit.py:1431 netbox/dcim/forms/bulk_import.py:714 -#: netbox/dcim/forms/bulk_import.py:740 netbox/dcim/forms/filtersets.py:1252 -#: netbox/dcim/forms/filtersets.py:1277 netbox/dcim/forms/filtersets.py:1358 -#: netbox/dcim/tables/devices.py:610 -#: netbox/templates/circuits/inc/circuit_termination_fields.html:67 -#: netbox/templates/dcim/consoleport.html:40 -#: netbox/templates/dcim/consoleserverport.html:40 +#: dcim/forms/bulk_edit.py:1431 dcim/forms/bulk_import.py:714 +#: dcim/forms/bulk_import.py:740 dcim/forms/filtersets.py:1252 +#: dcim/forms/filtersets.py:1277 dcim/forms/filtersets.py:1358 +#: dcim/tables/devices.py:610 +#: templates/circuits/inc/circuit_termination_fields.html:67 +#: templates/dcim/consoleport.html:40 templates/dcim/consoleserverport.html:40 msgid "Speed" msgstr "Vitesse" -#: netbox/dcim/forms/bulk_edit.py:1460 netbox/dcim/forms/bulk_import.py:885 -#: netbox/templates/vpn/ikepolicy.html:25 -#: netbox/templates/vpn/ipsecprofile.html:21 -#: netbox/templates/vpn/ipsecprofile.html:48 -#: netbox/virtualization/forms/bulk_edit.py:233 -#: netbox/virtualization/forms/bulk_import.py:165 -#: netbox/vpn/forms/bulk_edit.py:146 netbox/vpn/forms/bulk_edit.py:232 -#: netbox/vpn/forms/bulk_import.py:176 netbox/vpn/forms/bulk_import.py:234 -#: netbox/vpn/forms/filtersets.py:135 netbox/vpn/forms/filtersets.py:178 -#: netbox/vpn/forms/filtersets.py:192 netbox/vpn/tables/crypto.py:64 -#: netbox/vpn/tables/crypto.py:162 +#: dcim/forms/bulk_edit.py:1460 dcim/forms/bulk_import.py:885 +#: templates/vpn/ikepolicy.html:25 templates/vpn/ipsecprofile.html:21 +#: templates/vpn/ipsecprofile.html:48 virtualization/forms/bulk_edit.py:233 +#: virtualization/forms/bulk_import.py:165 vpn/forms/bulk_edit.py:146 +#: vpn/forms/bulk_edit.py:232 vpn/forms/bulk_import.py:176 +#: vpn/forms/bulk_import.py:234 vpn/forms/filtersets.py:135 +#: vpn/forms/filtersets.py:178 vpn/forms/filtersets.py:192 +#: vpn/tables/crypto.py:64 vpn/tables/crypto.py:162 msgid "Mode" msgstr "Mode" -#: netbox/dcim/forms/bulk_edit.py:1468 netbox/dcim/forms/model_forms.py:1354 -#: netbox/ipam/forms/bulk_import.py:178 netbox/ipam/forms/filtersets.py:498 -#: netbox/ipam/models/vlans.py:84 netbox/virtualization/forms/bulk_edit.py:240 -#: netbox/virtualization/forms/model_forms.py:321 +#: dcim/forms/bulk_edit.py:1468 dcim/forms/model_forms.py:1354 +#: ipam/forms/bulk_import.py:178 ipam/forms/filtersets.py:498 +#: ipam/models/vlans.py:84 virtualization/forms/bulk_edit.py:240 +#: virtualization/forms/model_forms.py:321 msgid "VLAN group" msgstr "groupe VLAN" -#: netbox/dcim/forms/bulk_edit.py:1476 netbox/dcim/forms/model_forms.py:1360 -#: netbox/dcim/tables/devices.py:579 -#: netbox/virtualization/forms/bulk_edit.py:248 -#: netbox/virtualization/forms/model_forms.py:326 +#: dcim/forms/bulk_edit.py:1476 dcim/forms/model_forms.py:1360 +#: dcim/tables/devices.py:579 virtualization/forms/bulk_edit.py:248 +#: virtualization/forms/model_forms.py:326 msgid "Untagged VLAN" msgstr "VLAN non balisé" -#: netbox/dcim/forms/bulk_edit.py:1484 netbox/dcim/forms/model_forms.py:1369 -#: netbox/dcim/tables/devices.py:585 -#: netbox/virtualization/forms/bulk_edit.py:256 -#: netbox/virtualization/forms/model_forms.py:335 +#: dcim/forms/bulk_edit.py:1484 dcim/forms/model_forms.py:1369 +#: dcim/tables/devices.py:585 virtualization/forms/bulk_edit.py:256 +#: virtualization/forms/model_forms.py:335 msgid "Tagged VLANs" msgstr "VLAN balisés" -#: netbox/dcim/forms/bulk_edit.py:1494 netbox/dcim/forms/model_forms.py:1341 +#: dcim/forms/bulk_edit.py:1494 dcim/forms/model_forms.py:1341 msgid "Wireless LAN group" msgstr "Groupe LAN sans fil" -#: netbox/dcim/forms/bulk_edit.py:1499 netbox/dcim/forms/model_forms.py:1346 -#: netbox/dcim/tables/devices.py:619 netbox/netbox/navigation/menu.py:146 -#: netbox/templates/dcim/interface.html:280 -#: netbox/wireless/tables/wirelesslan.py:24 +#: dcim/forms/bulk_edit.py:1499 dcim/forms/model_forms.py:1346 +#: dcim/tables/devices.py:619 netbox/navigation/menu.py:146 +#: templates/dcim/interface.html:280 wireless/tables/wirelesslan.py:24 msgid "Wireless LANs" msgstr "Réseaux locaux sans fil" -#: netbox/dcim/forms/bulk_edit.py:1508 netbox/dcim/forms/filtersets.py:1328 -#: netbox/dcim/forms/model_forms.py:1390 netbox/ipam/forms/bulk_edit.py:285 -#: netbox/ipam/forms/bulk_edit.py:377 netbox/ipam/forms/filtersets.py:169 -#: netbox/templates/dcim/interface.html:122 -#: netbox/templates/ipam/prefix.html:95 -#: netbox/virtualization/forms/model_forms.py:349 +#: dcim/forms/bulk_edit.py:1508 dcim/forms/filtersets.py:1328 +#: dcim/forms/model_forms.py:1390 ipam/forms/bulk_edit.py:286 +#: ipam/forms/bulk_edit.py:378 ipam/forms/filtersets.py:169 +#: templates/dcim/interface.html:122 templates/ipam/prefix.html:95 +#: virtualization/forms/model_forms.py:349 msgid "Addressing" msgstr "Adressage" -#: netbox/dcim/forms/bulk_edit.py:1509 netbox/dcim/forms/filtersets.py:720 -#: netbox/dcim/forms/model_forms.py:1391 -#: netbox/virtualization/forms/model_forms.py:350 +#: dcim/forms/bulk_edit.py:1509 dcim/forms/filtersets.py:720 +#: dcim/forms/model_forms.py:1391 virtualization/forms/model_forms.py:350 msgid "Operation" msgstr "Fonctionnement" -#: netbox/dcim/forms/bulk_edit.py:1510 netbox/dcim/forms/filtersets.py:1329 -#: netbox/dcim/forms/model_forms.py:987 netbox/dcim/forms/model_forms.py:1393 +#: dcim/forms/bulk_edit.py:1510 dcim/forms/filtersets.py:1329 +#: dcim/forms/model_forms.py:987 dcim/forms/model_forms.py:1393 msgid "PoE" msgstr "PoE" -#: netbox/dcim/forms/bulk_edit.py:1511 netbox/dcim/forms/model_forms.py:1392 -#: netbox/templates/dcim/interface.html:99 -#: netbox/virtualization/forms/bulk_edit.py:267 -#: netbox/virtualization/forms/model_forms.py:351 +#: dcim/forms/bulk_edit.py:1511 dcim/forms/model_forms.py:1392 +#: templates/dcim/interface.html:99 virtualization/forms/bulk_edit.py:267 +#: virtualization/forms/model_forms.py:351 msgid "Related Interfaces" msgstr "Interfaces associées" -#: netbox/dcim/forms/bulk_edit.py:1512 netbox/dcim/forms/model_forms.py:1394 -#: netbox/virtualization/forms/bulk_edit.py:268 -#: netbox/virtualization/forms/model_forms.py:352 +#: dcim/forms/bulk_edit.py:1512 dcim/forms/model_forms.py:1394 +#: virtualization/forms/bulk_edit.py:268 +#: virtualization/forms/model_forms.py:352 msgid "802.1Q Switching" msgstr "Commutation 802.1Q" -#: netbox/dcim/forms/bulk_edit.py:1574 netbox/dcim/forms/bulk_edit.py:1576 +#: dcim/forms/bulk_edit.py:1574 dcim/forms/bulk_edit.py:1576 msgid "Interface mode must be specified to assign VLANs" msgstr "Le mode d'interface doit être spécifié pour attribuer des VLAN" -#: netbox/dcim/forms/bulk_edit.py:1581 netbox/dcim/forms/common.py:50 +#: dcim/forms/bulk_edit.py:1581 dcim/forms/common.py:50 msgid "An access interface cannot have tagged VLANs assigned." msgstr "" "Des tags de VLAN ne peuvent pas être associés à une interface d'accès." -#: netbox/dcim/forms/bulk_import.py:64 +#: dcim/forms/bulk_import.py:64 msgid "Name of parent region" msgstr "Nom de la région mère" -#: netbox/dcim/forms/bulk_import.py:78 +#: dcim/forms/bulk_import.py:78 msgid "Name of parent site group" msgstr "Nom du groupe de sites parent" -#: netbox/dcim/forms/bulk_import.py:97 +#: dcim/forms/bulk_import.py:97 msgid "Assigned region" msgstr "Région associé" -#: netbox/dcim/forms/bulk_import.py:104 netbox/tenancy/forms/bulk_import.py:44 -#: netbox/tenancy/forms/bulk_import.py:85 -#: netbox/wireless/forms/bulk_import.py:40 +#: dcim/forms/bulk_import.py:104 tenancy/forms/bulk_import.py:44 +#: tenancy/forms/bulk_import.py:85 wireless/forms/bulk_import.py:40 msgid "Assigned group" msgstr "Groupe associé" -#: netbox/dcim/forms/bulk_import.py:123 +#: dcim/forms/bulk_import.py:123 msgid "available options" msgstr "options disponibles" -#: netbox/dcim/forms/bulk_import.py:134 netbox/dcim/forms/bulk_import.py:543 -#: netbox/dcim/forms/bulk_import.py:1342 netbox/ipam/forms/bulk_import.py:175 -#: netbox/ipam/forms/bulk_import.py:433 -#: netbox/virtualization/forms/bulk_import.py:63 -#: netbox/virtualization/forms/bulk_import.py:89 +#: dcim/forms/bulk_import.py:134 dcim/forms/bulk_import.py:543 +#: dcim/forms/bulk_import.py:1342 ipam/forms/bulk_import.py:175 +#: ipam/forms/bulk_import.py:433 virtualization/forms/bulk_import.py:63 +#: virtualization/forms/bulk_import.py:89 msgid "Assigned site" msgstr "Site associé" -#: netbox/dcim/forms/bulk_import.py:141 +#: dcim/forms/bulk_import.py:141 msgid "Parent location" msgstr "Emplacement du parent" -#: netbox/dcim/forms/bulk_import.py:143 +#: dcim/forms/bulk_import.py:143 msgid "Location not found." msgstr "Emplacement introuvable." -#: netbox/dcim/forms/bulk_import.py:185 +#: dcim/forms/bulk_import.py:185 msgid "The manufacturer of this rack type" msgstr "Le fabricant de ce type de rack" -#: netbox/dcim/forms/bulk_import.py:196 +#: dcim/forms/bulk_import.py:196 msgid "The lowest-numbered position in the rack" msgstr "La position la plus basse du rack" -#: netbox/dcim/forms/bulk_import.py:201 netbox/dcim/forms/bulk_import.py:268 +#: dcim/forms/bulk_import.py:201 dcim/forms/bulk_import.py:268 msgid "Rail-to-rail width (in inches)" msgstr "Largeur rail à rail (en pouces)" -#: netbox/dcim/forms/bulk_import.py:207 netbox/dcim/forms/bulk_import.py:274 +#: dcim/forms/bulk_import.py:207 dcim/forms/bulk_import.py:274 msgid "Unit for outer dimensions" msgstr "Unité pour les dimensions extérieures" -#: netbox/dcim/forms/bulk_import.py:213 netbox/dcim/forms/bulk_import.py:286 +#: dcim/forms/bulk_import.py:213 dcim/forms/bulk_import.py:286 msgid "Unit for rack weights" msgstr "Unité poids de la baie" -#: netbox/dcim/forms/bulk_import.py:245 +#: dcim/forms/bulk_import.py:245 msgid "Name of assigned tenant" msgstr "Nom du locataire associé" -#: netbox/dcim/forms/bulk_import.py:257 +#: dcim/forms/bulk_import.py:257 msgid "Name of assigned role" msgstr "Nom du rôle attribué" -#: netbox/dcim/forms/bulk_import.py:280 netbox/dcim/forms/bulk_import.py:413 -#: netbox/dcim/forms/bulk_import.py:583 +#: dcim/forms/bulk_import.py:280 dcim/forms/bulk_import.py:413 +#: dcim/forms/bulk_import.py:583 msgid "Airflow direction" msgstr "Direction du flux d'air" -#: netbox/dcim/forms/bulk_import.py:312 +#: dcim/forms/bulk_import.py:312 msgid "Parent site" msgstr "Site parent" -#: netbox/dcim/forms/bulk_import.py:319 netbox/dcim/forms/bulk_import.py:1355 +#: dcim/forms/bulk_import.py:319 dcim/forms/bulk_import.py:1355 msgid "Rack's location (if any)" msgstr "Emplacement de la baie (le cas échéant)" -#: netbox/dcim/forms/bulk_import.py:328 netbox/dcim/forms/model_forms.py:311 -#: netbox/dcim/tables/racks.py:222 -#: netbox/templates/dcim/rackreservation.html:12 -#: netbox/templates/dcim/rackreservation.html:45 +#: dcim/forms/bulk_import.py:328 dcim/forms/model_forms.py:311 +#: dcim/tables/racks.py:222 templates/dcim/rackreservation.html:12 +#: templates/dcim/rackreservation.html:45 msgid "Units" msgstr "Unités" -#: netbox/dcim/forms/bulk_import.py:331 +#: dcim/forms/bulk_import.py:331 msgid "Comma-separated list of individual unit numbers" msgstr "Liste de numéros d'unités individuels séparés par des virgules" -#: netbox/dcim/forms/bulk_import.py:374 +#: dcim/forms/bulk_import.py:374 msgid "The manufacturer which produces this device type" msgstr "Le fabricant qui produit ce type d'appareil" -#: netbox/dcim/forms/bulk_import.py:381 +#: dcim/forms/bulk_import.py:381 msgid "The default platform for devices of this type (optional)" msgstr "Plateforme par défaut pour les appareils de ce type (facultatif)" -#: netbox/dcim/forms/bulk_import.py:386 +#: dcim/forms/bulk_import.py:386 msgid "Device weight" msgstr "Poids de l'appareil" -#: netbox/dcim/forms/bulk_import.py:392 +#: dcim/forms/bulk_import.py:392 msgid "Unit for device weight" msgstr "Unité de poids de l'appareil" -#: netbox/dcim/forms/bulk_import.py:418 +#: dcim/forms/bulk_import.py:418 msgid "Module weight" msgstr "Poids du module" -#: netbox/dcim/forms/bulk_import.py:424 +#: dcim/forms/bulk_import.py:424 msgid "Unit for module weight" msgstr "Unité pour le poids du module" -#: netbox/dcim/forms/bulk_import.py:454 +#: dcim/forms/bulk_import.py:454 msgid "Limit platform assignments to this manufacturer" msgstr "Limiter les affectations de plateforme à ce fabricant" -#: netbox/dcim/forms/bulk_import.py:476 netbox/dcim/forms/bulk_import.py:1425 -#: netbox/tenancy/forms/bulk_import.py:106 +#: dcim/forms/bulk_import.py:476 dcim/forms/bulk_import.py:1425 +#: tenancy/forms/bulk_import.py:106 msgid "Assigned role" msgstr "Rôle attribué" -#: netbox/dcim/forms/bulk_import.py:489 +#: dcim/forms/bulk_import.py:489 msgid "Device type manufacturer" msgstr "Fabricant du type d'appareil" -#: netbox/dcim/forms/bulk_import.py:495 +#: dcim/forms/bulk_import.py:495 msgid "Device type model" msgstr "Type d'appareil et modèle" -#: netbox/dcim/forms/bulk_import.py:502 -#: netbox/virtualization/forms/bulk_import.py:126 +#: dcim/forms/bulk_import.py:502 virtualization/forms/bulk_import.py:126 msgid "Assigned platform" msgstr "Plateforme attribuée" -#: netbox/dcim/forms/bulk_import.py:510 netbox/dcim/forms/bulk_import.py:514 -#: netbox/dcim/forms/model_forms.py:536 +#: dcim/forms/bulk_import.py:510 dcim/forms/bulk_import.py:514 +#: dcim/forms/model_forms.py:536 msgid "Virtual chassis" msgstr "Châssis virtuel" -#: netbox/dcim/forms/bulk_import.py:517 netbox/dcim/forms/filtersets.py:728 -#: netbox/dcim/forms/filtersets.py:898 netbox/dcim/forms/model_forms.py:522 -#: netbox/dcim/tables/devices.py:202 netbox/extras/filtersets.py:596 -#: netbox/extras/forms/filtersets.py:322 netbox/ipam/forms/bulk_edit.py:482 -#: netbox/ipam/forms/filtersets.py:415 netbox/ipam/forms/filtersets.py:447 -#: netbox/templates/dcim/device.html:239 -#: netbox/templates/virtualization/cluster.html:10 -#: netbox/templates/virtualization/virtualmachine.html:92 -#: netbox/templates/virtualization/virtualmachine.html:101 -#: netbox/virtualization/filtersets.py:157 -#: netbox/virtualization/filtersets.py:277 -#: netbox/virtualization/forms/bulk_edit.py:129 -#: netbox/virtualization/forms/bulk_import.py:92 -#: netbox/virtualization/forms/filtersets.py:99 -#: netbox/virtualization/forms/filtersets.py:123 -#: netbox/virtualization/forms/filtersets.py:204 -#: netbox/virtualization/forms/model_forms.py:79 -#: netbox/virtualization/forms/model_forms.py:176 -#: netbox/virtualization/tables/virtualmachines.py:67 +#: dcim/forms/bulk_import.py:517 dcim/forms/filtersets.py:728 +#: dcim/forms/filtersets.py:898 dcim/forms/model_forms.py:522 +#: dcim/tables/devices.py:202 extras/filtersets.py:596 +#: extras/forms/filtersets.py:322 ipam/forms/filtersets.py:415 +#: ipam/forms/filtersets.py:447 templates/dcim/device.html:239 +#: templates/virtualization/cluster.html:10 +#: templates/virtualization/virtualmachine.html:92 +#: templates/virtualization/virtualmachine.html:101 +#: virtualization/filtersets.py:157 virtualization/filtersets.py:277 +#: virtualization/forms/bulk_edit.py:129 +#: virtualization/forms/bulk_import.py:92 +#: virtualization/forms/filtersets.py:99 +#: virtualization/forms/filtersets.py:123 +#: virtualization/forms/filtersets.py:204 +#: virtualization/forms/model_forms.py:79 +#: virtualization/forms/model_forms.py:176 +#: virtualization/tables/virtualmachines.py:67 msgid "Cluster" msgstr "Cluster" -#: netbox/dcim/forms/bulk_import.py:521 +#: dcim/forms/bulk_import.py:521 msgid "Virtualization cluster" msgstr "Cluster de virtualisation" -#: netbox/dcim/forms/bulk_import.py:550 +#: dcim/forms/bulk_import.py:550 msgid "Assigned location (if any)" msgstr "Emplacement attribué (le cas échéant)" -#: netbox/dcim/forms/bulk_import.py:557 +#: dcim/forms/bulk_import.py:557 msgid "Assigned rack (if any)" msgstr "Baie attribuée (le cas échéant)" -#: netbox/dcim/forms/bulk_import.py:560 +#: dcim/forms/bulk_import.py:560 msgid "Face" msgstr "Visage" -#: netbox/dcim/forms/bulk_import.py:563 +#: dcim/forms/bulk_import.py:563 msgid "Mounted rack face" msgstr "Face montée en baie" -#: netbox/dcim/forms/bulk_import.py:570 +#: dcim/forms/bulk_import.py:570 msgid "Parent device (for child devices)" msgstr "Appareil parent (pour les appareils pour enfants)" -#: netbox/dcim/forms/bulk_import.py:573 +#: dcim/forms/bulk_import.py:573 msgid "Device bay" msgstr "Baie pour appareils" -#: netbox/dcim/forms/bulk_import.py:577 +#: dcim/forms/bulk_import.py:577 msgid "Device bay in which this device is installed (for child devices)" msgstr "" "Baie d'appareils dans laquelle cet appareil est installé (pour les appareils" " pour enfants)" -#: netbox/dcim/forms/bulk_import.py:644 +#: dcim/forms/bulk_import.py:644 msgid "The device in which this module is installed" msgstr "L'appareil sur lequel ce module est installé" -#: netbox/dcim/forms/bulk_import.py:647 netbox/dcim/forms/model_forms.py:640 +#: dcim/forms/bulk_import.py:647 dcim/forms/model_forms.py:640 msgid "Module bay" msgstr "Baie modulaire" -#: netbox/dcim/forms/bulk_import.py:650 +#: dcim/forms/bulk_import.py:650 msgid "The module bay in which this module is installed" msgstr "La baie du module dans laquelle ce module est installé" -#: netbox/dcim/forms/bulk_import.py:656 +#: dcim/forms/bulk_import.py:656 msgid "The type of module" msgstr "Le type de module" -#: netbox/dcim/forms/bulk_import.py:664 netbox/dcim/forms/model_forms.py:656 +#: dcim/forms/bulk_import.py:664 dcim/forms/model_forms.py:656 msgid "Replicate components" msgstr "Répliquer les composants" -#: netbox/dcim/forms/bulk_import.py:666 +#: dcim/forms/bulk_import.py:666 msgid "" "Automatically populate components associated with this module type (enabled " "by default)" @@ -4354,270 +3961,263 @@ msgstr "" "Remplir automatiquement les composants associés à ce type de module (activé " "par défaut)" -#: netbox/dcim/forms/bulk_import.py:669 netbox/dcim/forms/model_forms.py:662 +#: dcim/forms/bulk_import.py:669 dcim/forms/model_forms.py:662 msgid "Adopt components" msgstr "Adoptez des composants" -#: netbox/dcim/forms/bulk_import.py:671 netbox/dcim/forms/model_forms.py:665 +#: dcim/forms/bulk_import.py:671 dcim/forms/model_forms.py:665 msgid "Adopt already existing components" msgstr "Adoptez des composants déjà existants" -#: netbox/dcim/forms/bulk_import.py:711 netbox/dcim/forms/bulk_import.py:737 -#: netbox/dcim/forms/bulk_import.py:763 +#: dcim/forms/bulk_import.py:711 dcim/forms/bulk_import.py:737 +#: dcim/forms/bulk_import.py:763 msgid "Port type" msgstr "Type de port" -#: netbox/dcim/forms/bulk_import.py:719 netbox/dcim/forms/bulk_import.py:745 +#: dcim/forms/bulk_import.py:719 dcim/forms/bulk_import.py:745 msgid "Port speed in bps" msgstr "Vitesse du port en bits/s" -#: netbox/dcim/forms/bulk_import.py:783 +#: dcim/forms/bulk_import.py:783 msgid "Outlet type" msgstr "Type de prise" -#: netbox/dcim/forms/bulk_import.py:790 +#: dcim/forms/bulk_import.py:790 msgid "Local power port which feeds this outlet" msgstr "Port d'alimentation local qui alimente cette prise" -#: netbox/dcim/forms/bulk_import.py:796 +#: dcim/forms/bulk_import.py:796 msgid "Electrical phase (for three-phase circuits)" msgstr "Phase électrique (pour circuits triphasés)" -#: netbox/dcim/forms/bulk_import.py:837 netbox/dcim/forms/model_forms.py:1316 -#: netbox/virtualization/forms/bulk_import.py:155 -#: netbox/virtualization/forms/model_forms.py:305 +#: dcim/forms/bulk_import.py:837 dcim/forms/model_forms.py:1316 +#: virtualization/forms/bulk_import.py:155 +#: virtualization/forms/model_forms.py:305 msgid "Parent interface" msgstr "Interface pour les parents" -#: netbox/dcim/forms/bulk_import.py:844 netbox/dcim/forms/model_forms.py:1324 -#: netbox/virtualization/forms/bulk_import.py:162 -#: netbox/virtualization/forms/model_forms.py:313 +#: dcim/forms/bulk_import.py:844 dcim/forms/model_forms.py:1324 +#: virtualization/forms/bulk_import.py:162 +#: virtualization/forms/model_forms.py:313 msgid "Bridged interface" msgstr "Interface pontée" -#: netbox/dcim/forms/bulk_import.py:847 +#: dcim/forms/bulk_import.py:847 msgid "Lag" msgstr "Retard" -#: netbox/dcim/forms/bulk_import.py:851 +#: dcim/forms/bulk_import.py:851 msgid "Parent LAG interface" msgstr "Interface LAG parent" -#: netbox/dcim/forms/bulk_import.py:854 +#: dcim/forms/bulk_import.py:854 msgid "Vdcs" msgstr "VDC" -#: netbox/dcim/forms/bulk_import.py:859 +#: dcim/forms/bulk_import.py:859 msgid "VDC names separated by commas, encased with double quotes. Example:" msgstr "" "Noms de VDC séparés par des virgules, entre guillemets doubles. Exemple :" -#: netbox/dcim/forms/bulk_import.py:865 +#: dcim/forms/bulk_import.py:865 msgid "Physical medium" msgstr "Support physique" -#: netbox/dcim/forms/bulk_import.py:868 netbox/dcim/forms/filtersets.py:1365 +#: dcim/forms/bulk_import.py:868 dcim/forms/filtersets.py:1365 msgid "Duplex" msgstr "Duplex" -#: netbox/dcim/forms/bulk_import.py:873 +#: dcim/forms/bulk_import.py:873 msgid "Poe mode" msgstr "Mode PoE" -#: netbox/dcim/forms/bulk_import.py:879 +#: dcim/forms/bulk_import.py:879 msgid "Poe type" msgstr "Type de poteau" -#: netbox/dcim/forms/bulk_import.py:888 -#: netbox/virtualization/forms/bulk_import.py:168 +#: dcim/forms/bulk_import.py:888 virtualization/forms/bulk_import.py:168 msgid "IEEE 802.1Q operational mode (for L2 interfaces)" msgstr "Mode de fonctionnement IEEE 802.1Q (pour interfaces L2)" -#: netbox/dcim/forms/bulk_import.py:895 netbox/ipam/forms/bulk_import.py:161 -#: netbox/ipam/forms/bulk_import.py:247 netbox/ipam/forms/bulk_import.py:283 -#: netbox/ipam/forms/filtersets.py:201 netbox/ipam/forms/filtersets.py:277 -#: netbox/ipam/forms/filtersets.py:336 -#: netbox/virtualization/forms/bulk_import.py:175 +#: dcim/forms/bulk_import.py:895 ipam/forms/bulk_import.py:161 +#: ipam/forms/bulk_import.py:247 ipam/forms/bulk_import.py:283 +#: ipam/forms/filtersets.py:201 ipam/forms/filtersets.py:277 +#: ipam/forms/filtersets.py:336 virtualization/forms/bulk_import.py:175 msgid "Assigned VRF" msgstr "VRF attribué" -#: netbox/dcim/forms/bulk_import.py:898 +#: dcim/forms/bulk_import.py:898 msgid "Rf role" msgstr "Rôle RF" -#: netbox/dcim/forms/bulk_import.py:901 +#: dcim/forms/bulk_import.py:901 msgid "Wireless role (AP/station)" msgstr "Rôle sans fil (AP/station)" -#: netbox/dcim/forms/bulk_import.py:937 +#: dcim/forms/bulk_import.py:937 #, python-brace-format msgid "VDC {vdc} is not assigned to device {device}" msgstr "VDC {vdc} n'est pas attribué à l'appareil {device}" -#: netbox/dcim/forms/bulk_import.py:951 netbox/dcim/forms/model_forms.py:1000 -#: netbox/dcim/forms/model_forms.py:1575 -#: netbox/dcim/forms/object_import.py:117 +#: dcim/forms/bulk_import.py:951 dcim/forms/model_forms.py:1000 +#: dcim/forms/model_forms.py:1575 dcim/forms/object_import.py:117 msgid "Rear port" msgstr "Port arrière" -#: netbox/dcim/forms/bulk_import.py:954 +#: dcim/forms/bulk_import.py:954 msgid "Corresponding rear port" msgstr "Port arrière correspondant" -#: netbox/dcim/forms/bulk_import.py:959 netbox/dcim/forms/bulk_import.py:1000 -#: netbox/dcim/forms/bulk_import.py:1216 +#: dcim/forms/bulk_import.py:959 dcim/forms/bulk_import.py:1000 +#: dcim/forms/bulk_import.py:1216 msgid "Physical medium classification" msgstr "Classification des supports physiques" -#: netbox/dcim/forms/bulk_import.py:1028 netbox/dcim/tables/devices.py:822 +#: dcim/forms/bulk_import.py:1028 dcim/tables/devices.py:822 msgid "Installed device" msgstr "Appareil installé" -#: netbox/dcim/forms/bulk_import.py:1032 +#: dcim/forms/bulk_import.py:1032 msgid "Child device installed within this bay" msgstr "Appareil pour enfant installé dans cette baie" -#: netbox/dcim/forms/bulk_import.py:1034 +#: dcim/forms/bulk_import.py:1034 msgid "Child device not found." msgstr "Appareil pour enfant introuvable." -#: netbox/dcim/forms/bulk_import.py:1092 +#: dcim/forms/bulk_import.py:1092 msgid "Parent inventory item" msgstr "Article d'inventaire parent" -#: netbox/dcim/forms/bulk_import.py:1095 +#: dcim/forms/bulk_import.py:1095 msgid "Component type" msgstr "Type de composant" -#: netbox/dcim/forms/bulk_import.py:1099 +#: dcim/forms/bulk_import.py:1099 msgid "Component Type" msgstr "Type de composant" -#: netbox/dcim/forms/bulk_import.py:1102 +#: dcim/forms/bulk_import.py:1102 msgid "Compnent name" msgstr "Nom du composant" -#: netbox/dcim/forms/bulk_import.py:1104 +#: dcim/forms/bulk_import.py:1104 msgid "Component Name" msgstr "Nom du composant" -#: netbox/dcim/forms/bulk_import.py:1146 +#: dcim/forms/bulk_import.py:1146 #, python-brace-format msgid "Component not found: {device} - {component_name}" msgstr "Composant introuvable : {device} - {component_name}" -#: netbox/dcim/forms/bulk_import.py:1171 +#: dcim/forms/bulk_import.py:1171 msgid "Side A device" msgstr "Appareil côté A" -#: netbox/dcim/forms/bulk_import.py:1174 netbox/dcim/forms/bulk_import.py:1192 +#: dcim/forms/bulk_import.py:1174 dcim/forms/bulk_import.py:1192 msgid "Device name" msgstr "Nom de l'appareil" -#: netbox/dcim/forms/bulk_import.py:1177 +#: dcim/forms/bulk_import.py:1177 msgid "Side A type" msgstr "Côté A type" -#: netbox/dcim/forms/bulk_import.py:1180 netbox/dcim/forms/bulk_import.py:1198 +#: dcim/forms/bulk_import.py:1180 dcim/forms/bulk_import.py:1198 msgid "Termination type" msgstr "Type de terminaison" -#: netbox/dcim/forms/bulk_import.py:1183 +#: dcim/forms/bulk_import.py:1183 msgid "Side A name" msgstr "Nom de la face A" -#: netbox/dcim/forms/bulk_import.py:1184 netbox/dcim/forms/bulk_import.py:1202 +#: dcim/forms/bulk_import.py:1184 dcim/forms/bulk_import.py:1202 msgid "Termination name" msgstr "Nom de terminaison" -#: netbox/dcim/forms/bulk_import.py:1189 +#: dcim/forms/bulk_import.py:1189 msgid "Side B device" msgstr "Appareil Side B" -#: netbox/dcim/forms/bulk_import.py:1195 +#: dcim/forms/bulk_import.py:1195 msgid "Side B type" msgstr "Type de face B" -#: netbox/dcim/forms/bulk_import.py:1201 +#: dcim/forms/bulk_import.py:1201 msgid "Side B name" msgstr "Nom de la face B" -#: netbox/dcim/forms/bulk_import.py:1210 -#: netbox/wireless/forms/bulk_import.py:86 +#: dcim/forms/bulk_import.py:1210 wireless/forms/bulk_import.py:86 msgid "Connection status" msgstr "État de la connexion" -#: netbox/dcim/forms/bulk_import.py:1262 +#: dcim/forms/bulk_import.py:1262 #, python-brace-format msgid "Side {side_upper}: {device} {termination_object} is already connected" msgstr "Côté {side_upper}: {device} {termination_object} est déjà connecté" -#: netbox/dcim/forms/bulk_import.py:1268 +#: dcim/forms/bulk_import.py:1268 #, python-brace-format msgid "{side_upper} side termination not found: {device} {name}" msgstr "{side_upper} terminaison latérale introuvable : {device} {name}" -#: netbox/dcim/forms/bulk_import.py:1293 netbox/dcim/forms/model_forms.py:785 -#: netbox/dcim/tables/devices.py:1027 netbox/templates/dcim/device.html:132 -#: netbox/templates/dcim/virtualchassis.html:27 -#: netbox/templates/dcim/virtualchassis.html:67 +#: dcim/forms/bulk_import.py:1293 dcim/forms/model_forms.py:785 +#: dcim/tables/devices.py:1027 templates/dcim/device.html:132 +#: templates/dcim/virtualchassis.html:27 templates/dcim/virtualchassis.html:67 msgid "Master" msgstr "Maître" -#: netbox/dcim/forms/bulk_import.py:1297 +#: dcim/forms/bulk_import.py:1297 msgid "Master device" msgstr "Appareil principal" -#: netbox/dcim/forms/bulk_import.py:1314 +#: dcim/forms/bulk_import.py:1314 msgid "Name of parent site" msgstr "Nom du site parent" -#: netbox/dcim/forms/bulk_import.py:1348 +#: dcim/forms/bulk_import.py:1348 msgid "Upstream power panel" msgstr "Panneau d'alimentation en amont" -#: netbox/dcim/forms/bulk_import.py:1378 +#: dcim/forms/bulk_import.py:1378 msgid "Primary or redundant" msgstr "Principal ou redondant" -#: netbox/dcim/forms/bulk_import.py:1383 +#: dcim/forms/bulk_import.py:1383 msgid "Supply type (AC/DC)" msgstr "Type d'alimentation (AC/DC)" -#: netbox/dcim/forms/bulk_import.py:1388 +#: dcim/forms/bulk_import.py:1388 msgid "Single or three-phase" msgstr "Monophasé ou triphasé" -#: netbox/dcim/forms/bulk_import.py:1439 netbox/dcim/forms/model_forms.py:1670 -#: netbox/templates/dcim/device.html:190 -#: netbox/templates/dcim/virtualdevicecontext.html:30 -#: netbox/templates/virtualization/virtualmachine.html:52 +#: dcim/forms/bulk_import.py:1439 dcim/forms/model_forms.py:1670 +#: templates/dcim/device.html:190 templates/dcim/virtualdevicecontext.html:30 +#: templates/virtualization/virtualmachine.html:52 msgid "Primary IPv4" msgstr "IPv4 principal" -#: netbox/dcim/forms/bulk_import.py:1443 +#: dcim/forms/bulk_import.py:1443 msgid "IPv4 address with mask, e.g. 1.2.3.4/24" msgstr "Adresse IPv4 avec masque, par exemple 1.2.3.4/24" -#: netbox/dcim/forms/bulk_import.py:1446 netbox/dcim/forms/model_forms.py:1679 -#: netbox/templates/dcim/device.html:206 -#: netbox/templates/dcim/virtualdevicecontext.html:41 -#: netbox/templates/virtualization/virtualmachine.html:68 +#: dcim/forms/bulk_import.py:1446 dcim/forms/model_forms.py:1679 +#: templates/dcim/device.html:206 templates/dcim/virtualdevicecontext.html:41 +#: templates/virtualization/virtualmachine.html:68 msgid "Primary IPv6" msgstr "IPv6 principal" -#: netbox/dcim/forms/bulk_import.py:1450 +#: dcim/forms/bulk_import.py:1450 msgid "IPv6 address with prefix length, e.g. 2001:db8::1/64" msgstr "Adresse IPv6 avec longueur de préfixe, par exemple 2001:db8 : :1/64" -#: netbox/dcim/forms/common.py:24 netbox/dcim/models/device_components.py:527 -#: netbox/templates/dcim/interface.html:57 -#: netbox/templates/virtualization/vminterface.html:55 -#: netbox/virtualization/forms/bulk_edit.py:225 +#: dcim/forms/common.py:24 dcim/models/device_components.py:527 +#: templates/dcim/interface.html:57 +#: templates/virtualization/vminterface.html:55 +#: virtualization/forms/bulk_edit.py:225 msgid "MTU" msgstr "MTU" -#: netbox/dcim/forms/common.py:65 +#: dcim/forms/common.py:65 #, python-brace-format msgid "" "The tagged VLANs ({vlans}) must belong to the same site as the interface's " @@ -4626,7 +4226,7 @@ msgstr "" "Les VLAN balisés ({vlans}) doivent appartenir au même site que l'appareil/la" " machine virtuelle parent de l'interface, ou ils doivent être globaux" -#: netbox/dcim/forms/common.py:126 +#: dcim/forms/common.py:126 msgid "" "Cannot install module with placeholder values in a module bay with no " "position defined." @@ -4634,7 +4234,7 @@ msgstr "" "Impossible d'installer le module avec des valeurs d'espace réservé dans une " "baie de modules dont aucune position n'est définie." -#: netbox/dcim/forms/common.py:131 +#: dcim/forms/common.py:131 #, python-brace-format msgid "" "Cannot install module with placeholder values in a module bay tree {level} " @@ -4644,204 +4244,189 @@ msgstr "" "arborescence de modules {level} dans un arbre mais {tokens} espaces réservés" " donnés." -#: netbox/dcim/forms/common.py:144 +#: dcim/forms/common.py:144 #, python-brace-format msgid "Cannot adopt {model} {name} as it already belongs to a module" msgstr "" "Impossible d'adopter {model} {name} car il appartient déjà à un module" -#: netbox/dcim/forms/common.py:153 +#: dcim/forms/common.py:153 #, python-brace-format msgid "A {model} named {name} already exists" msgstr "UN {model} nommé {name} existe déjà" -#: netbox/dcim/forms/connections.py:49 netbox/dcim/forms/model_forms.py:738 -#: netbox/dcim/tables/power.py:66 -#: netbox/templates/dcim/inc/cable_termination.html:37 -#: netbox/templates/dcim/powerfeed.html:24 -#: netbox/templates/dcim/powerpanel.html:19 -#: netbox/templates/dcim/trace/powerpanel.html:4 +#: dcim/forms/connections.py:49 dcim/forms/model_forms.py:738 +#: dcim/tables/power.py:66 templates/dcim/inc/cable_termination.html:37 +#: templates/dcim/powerfeed.html:24 templates/dcim/powerpanel.html:19 +#: templates/dcim/trace/powerpanel.html:4 msgid "Power Panel" msgstr "Panneau d'alimentation" -#: netbox/dcim/forms/connections.py:58 netbox/dcim/forms/model_forms.py:765 -#: netbox/templates/dcim/powerfeed.html:21 -#: netbox/templates/dcim/powerport.html:80 +#: dcim/forms/connections.py:58 dcim/forms/model_forms.py:765 +#: templates/dcim/powerfeed.html:21 templates/dcim/powerport.html:80 msgid "Power Feed" msgstr "Alimentation" -#: netbox/dcim/forms/connections.py:81 +#: dcim/forms/connections.py:81 msgid "Side" msgstr "Côté" -#: netbox/dcim/forms/filtersets.py:136 netbox/dcim/tables/devices.py:295 +#: dcim/forms/filtersets.py:136 dcim/tables/devices.py:295 msgid "Device Status" msgstr "État de l'appareil" -#: netbox/dcim/forms/filtersets.py:149 +#: dcim/forms/filtersets.py:149 msgid "Parent region" msgstr "Région parente" -#: netbox/dcim/forms/filtersets.py:163 netbox/tenancy/forms/bulk_import.py:28 -#: netbox/tenancy/forms/bulk_import.py:62 -#: netbox/tenancy/forms/filtersets.py:33 netbox/tenancy/forms/filtersets.py:62 -#: netbox/wireless/forms/bulk_import.py:25 -#: netbox/wireless/forms/filtersets.py:25 +#: dcim/forms/filtersets.py:163 tenancy/forms/bulk_import.py:28 +#: tenancy/forms/bulk_import.py:62 tenancy/forms/filtersets.py:33 +#: tenancy/forms/filtersets.py:62 wireless/forms/bulk_import.py:25 +#: wireless/forms/filtersets.py:25 msgid "Parent group" msgstr "Groupe de parents" -#: netbox/dcim/forms/filtersets.py:242 netbox/templates/dcim/location.html:58 -#: netbox/templates/dcim/site.html:56 +#: dcim/forms/filtersets.py:242 templates/dcim/location.html:58 +#: templates/dcim/site.html:56 msgid "Facility" msgstr "Datacentre" -#: netbox/dcim/forms/filtersets.py:380 +#: dcim/forms/filtersets.py:380 msgid "Rack type" msgstr "Type de baie" -#: netbox/dcim/forms/filtersets.py:397 +#: dcim/forms/filtersets.py:397 msgid "Function" msgstr "Fonction" -#: netbox/dcim/forms/filtersets.py:483 netbox/dcim/forms/model_forms.py:373 -#: netbox/templates/inc/panels/image_attachments.html:6 +#: dcim/forms/filtersets.py:483 dcim/forms/model_forms.py:373 +#: templates/inc/panels/image_attachments.html:6 msgid "Images" msgstr "Des images" -#: netbox/dcim/forms/filtersets.py:486 netbox/dcim/forms/filtersets.py:611 -#: netbox/dcim/forms/filtersets.py:726 +#: dcim/forms/filtersets.py:486 dcim/forms/filtersets.py:611 +#: dcim/forms/filtersets.py:726 msgid "Components" msgstr "Composantes" -#: netbox/dcim/forms/filtersets.py:506 +#: dcim/forms/filtersets.py:506 msgid "Subdevice role" msgstr "Rôle du sous-appareil" -#: netbox/dcim/forms/filtersets.py:790 netbox/dcim/tables/racks.py:54 -#: netbox/templates/dcim/racktype.html:20 +#: dcim/forms/filtersets.py:790 dcim/tables/racks.py:54 +#: templates/dcim/racktype.html:20 msgid "Model" msgstr "Modèle" -#: netbox/dcim/forms/filtersets.py:834 +#: dcim/forms/filtersets.py:834 msgid "Has an OOB IP" msgstr "Possède une adresse IP OOB" -#: netbox/dcim/forms/filtersets.py:841 +#: dcim/forms/filtersets.py:841 msgid "Virtual chassis member" msgstr "Membre virtuel du châssis" -#: netbox/dcim/forms/filtersets.py:890 +#: dcim/forms/filtersets.py:890 msgid "Has virtual device contexts" msgstr "Possède des contextes de périphériques virtuels" -#: netbox/dcim/forms/filtersets.py:903 netbox/extras/filtersets.py:585 -#: netbox/ipam/forms/bulk_edit.py:479 netbox/ipam/forms/filtersets.py:452 -#: netbox/virtualization/forms/filtersets.py:112 +#: dcim/forms/filtersets.py:903 extras/filtersets.py:585 +#: ipam/forms/filtersets.py:452 virtualization/forms/filtersets.py:112 msgid "Cluster group" msgstr "Groupe de clusters" -#: netbox/dcim/forms/filtersets.py:1210 +#: dcim/forms/filtersets.py:1210 msgid "Cabled" msgstr "câblé" -#: netbox/dcim/forms/filtersets.py:1217 +#: dcim/forms/filtersets.py:1217 msgid "Occupied" msgstr "Occupé" -#: netbox/dcim/forms/filtersets.py:1244 netbox/dcim/forms/filtersets.py:1269 -#: netbox/dcim/forms/filtersets.py:1293 netbox/dcim/forms/filtersets.py:1313 -#: netbox/dcim/forms/filtersets.py:1336 netbox/dcim/tables/devices.py:364 -#: netbox/templates/dcim/consoleport.html:55 -#: netbox/templates/dcim/consoleserverport.html:55 -#: netbox/templates/dcim/frontport.html:69 -#: netbox/templates/dcim/interface.html:140 -#: netbox/templates/dcim/powerfeed.html:110 -#: netbox/templates/dcim/poweroutlet.html:59 -#: netbox/templates/dcim/powerport.html:59 -#: netbox/templates/dcim/rearport.html:65 +#: dcim/forms/filtersets.py:1244 dcim/forms/filtersets.py:1269 +#: dcim/forms/filtersets.py:1293 dcim/forms/filtersets.py:1313 +#: dcim/forms/filtersets.py:1336 dcim/tables/devices.py:364 +#: templates/dcim/consoleport.html:55 templates/dcim/consoleserverport.html:55 +#: templates/dcim/frontport.html:69 templates/dcim/interface.html:140 +#: templates/dcim/powerfeed.html:110 templates/dcim/poweroutlet.html:59 +#: templates/dcim/powerport.html:59 templates/dcim/rearport.html:65 msgid "Connection" msgstr "Connexion" -#: netbox/dcim/forms/filtersets.py:1348 netbox/extras/forms/bulk_edit.py:326 -#: netbox/extras/forms/bulk_import.py:247 -#: netbox/extras/forms/filtersets.py:464 -#: netbox/extras/forms/model_forms.py:675 netbox/extras/tables/tables.py:579 -#: netbox/templates/extras/journalentry.html:30 +#: dcim/forms/filtersets.py:1348 extras/forms/bulk_edit.py:326 +#: extras/forms/bulk_import.py:247 extras/forms/filtersets.py:464 +#: extras/forms/model_forms.py:675 extras/tables/tables.py:579 +#: templates/extras/journalentry.html:30 msgid "Kind" msgstr "Type" -#: netbox/dcim/forms/filtersets.py:1377 +#: dcim/forms/filtersets.py:1377 msgid "Mgmt only" msgstr "Gestion uniquement" -#: netbox/dcim/forms/filtersets.py:1389 netbox/dcim/forms/model_forms.py:1383 -#: netbox/dcim/models/device_components.py:629 -#: netbox/templates/dcim/interface.html:129 +#: dcim/forms/filtersets.py:1389 dcim/forms/model_forms.py:1383 +#: dcim/models/device_components.py:629 templates/dcim/interface.html:129 msgid "WWN" msgstr "WWN" -#: netbox/dcim/forms/filtersets.py:1409 +#: dcim/forms/filtersets.py:1409 msgid "Wireless channel" msgstr "Canal sans fil" -#: netbox/dcim/forms/filtersets.py:1413 +#: dcim/forms/filtersets.py:1413 msgid "Channel frequency (MHz)" msgstr "Fréquence du canal (MHz)" -#: netbox/dcim/forms/filtersets.py:1417 +#: dcim/forms/filtersets.py:1417 msgid "Channel width (MHz)" msgstr "Largeur du canal (MHz)" -#: netbox/dcim/forms/filtersets.py:1421 -#: netbox/templates/dcim/interface.html:85 +#: dcim/forms/filtersets.py:1421 templates/dcim/interface.html:85 msgid "Transmit power (dBm)" msgstr "Puissance de transmission (dBm)" -#: netbox/dcim/forms/filtersets.py:1446 netbox/dcim/forms/filtersets.py:1471 -#: netbox/dcim/tables/devices.py:327 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:50 -#: netbox/templates/dcim/inc/connection_endpoints.html:4 -#: netbox/templates/dcim/rearport.html:73 -#: netbox/templates/dcim/trace/cable.html:7 +#: dcim/forms/filtersets.py:1446 dcim/forms/filtersets.py:1471 +#: dcim/tables/devices.py:327 templates/dcim/cable.html:12 +#: templates/dcim/cable_trace.html:46 templates/dcim/frontport.html:77 +#: templates/dcim/htmx/cable_edit.html:50 +#: templates/dcim/inc/connection_endpoints.html:4 +#: templates/dcim/rearport.html:73 templates/dcim/trace/cable.html:7 msgid "Cable" msgstr "câble" -#: netbox/dcim/forms/filtersets.py:1550 netbox/dcim/tables/devices.py:949 +#: dcim/forms/filtersets.py:1550 dcim/tables/devices.py:949 msgid "Discovered" msgstr "Découvert" -#: netbox/dcim/forms/formsets.py:20 +#: dcim/forms/formsets.py:20 #, python-brace-format msgid "A virtual chassis member already exists in position {vc_position}." msgstr "Un élément de châssis virtuel existe déjà en place {vc_position}." -#: netbox/dcim/forms/model_forms.py:140 +#: dcim/forms/model_forms.py:140 msgid "Contact Info" msgstr "Informations de contact" -#: netbox/dcim/forms/model_forms.py:195 netbox/templates/dcim/rackrole.html:19 +#: dcim/forms/model_forms.py:195 templates/dcim/rackrole.html:19 msgid "Rack Role" msgstr "Role de la baie" -#: netbox/dcim/forms/model_forms.py:212 netbox/dcim/forms/model_forms.py:362 -#: netbox/dcim/forms/model_forms.py:446 -#: netbox/utilities/forms/fields/fields.py:47 +#: dcim/forms/model_forms.py:212 dcim/forms/model_forms.py:362 +#: dcim/forms/model_forms.py:446 utilities/forms/fields/fields.py:47 msgid "Slug" msgstr "Identifiant" -#: netbox/dcim/forms/model_forms.py:259 +#: dcim/forms/model_forms.py:259 msgid "Select a pre-defined rack type, or set physical characteristics below." msgstr "" "Sélectionnez un type de rack prédéfini ou définissez les caractéristiques " "physiques ci-dessous." -#: netbox/dcim/forms/model_forms.py:265 +#: dcim/forms/model_forms.py:265 msgid "Inventory Control" msgstr "Contrôle des stocks" -#: netbox/dcim/forms/model_forms.py:313 +#: dcim/forms/model_forms.py:313 msgid "" "Comma-separated list of numeric unit IDs. A range may be specified using a " "hyphen." @@ -4849,162 +4434,145 @@ msgstr "" "Liste d'identifiants d'unités numériques séparés par des virgules. Une plage" " peut être spécifiée à l'aide d'un trait d'union." -#: netbox/dcim/forms/model_forms.py:322 netbox/dcim/tables/racks.py:202 +#: dcim/forms/model_forms.py:322 dcim/tables/racks.py:202 msgid "Reservation" msgstr "Réservation" -#: netbox/dcim/forms/model_forms.py:423 -#: netbox/templates/dcim/devicerole.html:23 +#: dcim/forms/model_forms.py:423 templates/dcim/devicerole.html:23 msgid "Device Role" msgstr "Rôle de l'appareil" -#: netbox/dcim/forms/model_forms.py:490 netbox/dcim/models/devices.py:644 +#: dcim/forms/model_forms.py:490 dcim/models/devices.py:644 msgid "The lowest-numbered unit occupied by the device" msgstr "L'unité la moins numérotée occupée par l'appareil" -#: netbox/dcim/forms/model_forms.py:547 +#: dcim/forms/model_forms.py:547 msgid "The position in the virtual chassis this device is identified by" msgstr "" "La position dans le châssis virtuel par laquelle cet appareil est identifié" -#: netbox/dcim/forms/model_forms.py:552 +#: dcim/forms/model_forms.py:552 msgid "The priority of the device in the virtual chassis" msgstr "La priorité de l'appareil dans le châssis virtuel" -#: netbox/dcim/forms/model_forms.py:659 +#: dcim/forms/model_forms.py:659 msgid "Automatically populate components associated with this module type" msgstr "Remplir automatiquement les composants associés à ce type de module" -#: netbox/dcim/forms/model_forms.py:767 +#: dcim/forms/model_forms.py:767 msgid "Characteristics" msgstr "Caractéristiques" -#: netbox/dcim/forms/model_forms.py:1087 +#: dcim/forms/model_forms.py:1087 msgid "Console port template" msgstr "Modèle de port de console" -#: netbox/dcim/forms/model_forms.py:1095 +#: dcim/forms/model_forms.py:1095 msgid "Console server port template" msgstr "Modèle de port de serveur de console" -#: netbox/dcim/forms/model_forms.py:1103 +#: dcim/forms/model_forms.py:1103 msgid "Front port template" msgstr "Modèle de port avant" -#: netbox/dcim/forms/model_forms.py:1111 +#: dcim/forms/model_forms.py:1111 msgid "Interface template" msgstr "Modèle d'interface" -#: netbox/dcim/forms/model_forms.py:1119 +#: dcim/forms/model_forms.py:1119 msgid "Power outlet template" msgstr "Modèle de prise de courant" -#: netbox/dcim/forms/model_forms.py:1127 +#: dcim/forms/model_forms.py:1127 msgid "Power port template" msgstr "Modèle de port d'alimentation" -#: netbox/dcim/forms/model_forms.py:1135 +#: dcim/forms/model_forms.py:1135 msgid "Rear port template" msgstr "Modèle de port arrière" -#: netbox/dcim/forms/model_forms.py:1144 netbox/dcim/forms/model_forms.py:1388 -#: netbox/dcim/forms/model_forms.py:1551 netbox/dcim/forms/model_forms.py:1583 -#: netbox/dcim/tables/connections.py:65 netbox/ipam/forms/bulk_import.py:318 -#: netbox/ipam/forms/model_forms.py:280 netbox/ipam/forms/model_forms.py:289 -#: netbox/ipam/tables/fhrp.py:64 netbox/ipam/tables/ip.py:372 -#: netbox/ipam/tables/vlans.py:169 -#: netbox/templates/circuits/inc/circuit_termination_fields.html:51 -#: netbox/templates/dcim/frontport.html:106 -#: netbox/templates/dcim/interface.html:27 -#: netbox/templates/dcim/interface.html:184 -#: netbox/templates/dcim/interface.html:310 -#: netbox/templates/dcim/rearport.html:102 -#: netbox/templates/virtualization/vminterface.html:18 -#: netbox/templates/vpn/tunneltermination.html:31 -#: netbox/templates/wireless/inc/wirelesslink_interface.html:10 -#: netbox/templates/wireless/wirelesslink.html:10 -#: netbox/templates/wireless/wirelesslink.html:55 -#: netbox/virtualization/forms/model_forms.py:348 -#: netbox/vpn/forms/bulk_import.py:297 netbox/vpn/forms/model_forms.py:436 -#: netbox/vpn/forms/model_forms.py:445 -#: netbox/wireless/forms/model_forms.py:113 -#: netbox/wireless/forms/model_forms.py:155 +#: dcim/forms/model_forms.py:1144 dcim/forms/model_forms.py:1388 +#: dcim/forms/model_forms.py:1551 dcim/forms/model_forms.py:1583 +#: dcim/tables/connections.py:65 ipam/forms/bulk_import.py:318 +#: ipam/forms/model_forms.py:280 ipam/forms/model_forms.py:289 +#: ipam/tables/fhrp.py:64 ipam/tables/ip.py:372 ipam/tables/vlans.py:169 +#: templates/circuits/inc/circuit_termination_fields.html:51 +#: templates/dcim/frontport.html:106 templates/dcim/interface.html:27 +#: templates/dcim/interface.html:184 templates/dcim/interface.html:310 +#: templates/dcim/rearport.html:102 +#: templates/virtualization/vminterface.html:18 +#: templates/vpn/tunneltermination.html:31 +#: templates/wireless/inc/wirelesslink_interface.html:10 +#: templates/wireless/wirelesslink.html:10 +#: templates/wireless/wirelesslink.html:55 +#: virtualization/forms/model_forms.py:348 vpn/forms/bulk_import.py:297 +#: vpn/forms/model_forms.py:436 vpn/forms/model_forms.py:445 +#: wireless/forms/model_forms.py:113 wireless/forms/model_forms.py:155 msgid "Interface" msgstr "Interface" -#: netbox/dcim/forms/model_forms.py:1145 netbox/dcim/forms/model_forms.py:1584 -#: netbox/dcim/tables/connections.py:27 -#: netbox/templates/dcim/consoleport.html:17 -#: netbox/templates/dcim/consoleserverport.html:74 -#: netbox/templates/dcim/frontport.html:112 +#: dcim/forms/model_forms.py:1145 dcim/forms/model_forms.py:1584 +#: dcim/tables/connections.py:27 templates/dcim/consoleport.html:17 +#: templates/dcim/consoleserverport.html:74 templates/dcim/frontport.html:112 msgid "Console Port" msgstr "Port de console" -#: netbox/dcim/forms/model_forms.py:1146 netbox/dcim/forms/model_forms.py:1585 -#: netbox/templates/dcim/consoleport.html:73 -#: netbox/templates/dcim/consoleserverport.html:17 -#: netbox/templates/dcim/frontport.html:109 +#: dcim/forms/model_forms.py:1146 dcim/forms/model_forms.py:1585 +#: templates/dcim/consoleport.html:73 templates/dcim/consoleserverport.html:17 +#: templates/dcim/frontport.html:109 msgid "Console Server Port" msgstr "Port du serveur de consoles" -#: netbox/dcim/forms/model_forms.py:1147 netbox/dcim/forms/model_forms.py:1586 -#: netbox/templates/circuits/inc/circuit_termination_fields.html:52 -#: netbox/templates/dcim/consoleport.html:76 -#: netbox/templates/dcim/consoleserverport.html:77 -#: netbox/templates/dcim/frontport.html:17 -#: netbox/templates/dcim/frontport.html:115 -#: netbox/templates/dcim/interface.html:187 -#: netbox/templates/dcim/rearport.html:105 +#: dcim/forms/model_forms.py:1147 dcim/forms/model_forms.py:1586 +#: templates/circuits/inc/circuit_termination_fields.html:52 +#: templates/dcim/consoleport.html:76 templates/dcim/consoleserverport.html:77 +#: templates/dcim/frontport.html:17 templates/dcim/frontport.html:115 +#: templates/dcim/interface.html:187 templates/dcim/rearport.html:105 msgid "Front Port" msgstr "Port avant" -#: netbox/dcim/forms/model_forms.py:1148 netbox/dcim/forms/model_forms.py:1587 -#: netbox/dcim/tables/devices.py:710 -#: netbox/templates/circuits/inc/circuit_termination_fields.html:53 -#: netbox/templates/dcim/consoleport.html:79 -#: netbox/templates/dcim/consoleserverport.html:80 -#: netbox/templates/dcim/frontport.html:50 -#: netbox/templates/dcim/frontport.html:118 -#: netbox/templates/dcim/interface.html:190 -#: netbox/templates/dcim/rearport.html:17 -#: netbox/templates/dcim/rearport.html:108 +#: dcim/forms/model_forms.py:1148 dcim/forms/model_forms.py:1587 +#: dcim/tables/devices.py:710 +#: templates/circuits/inc/circuit_termination_fields.html:53 +#: templates/dcim/consoleport.html:79 templates/dcim/consoleserverport.html:80 +#: templates/dcim/frontport.html:50 templates/dcim/frontport.html:118 +#: templates/dcim/interface.html:190 templates/dcim/rearport.html:17 +#: templates/dcim/rearport.html:108 msgid "Rear Port" msgstr "Port arrière" -#: netbox/dcim/forms/model_forms.py:1149 netbox/dcim/forms/model_forms.py:1588 -#: netbox/dcim/tables/connections.py:46 netbox/dcim/tables/devices.py:512 -#: netbox/templates/dcim/poweroutlet.html:44 -#: netbox/templates/dcim/powerport.html:17 +#: dcim/forms/model_forms.py:1149 dcim/forms/model_forms.py:1588 +#: dcim/tables/connections.py:46 dcim/tables/devices.py:512 +#: templates/dcim/poweroutlet.html:44 templates/dcim/powerport.html:17 msgid "Power Port" msgstr "Port d'alimentation" -#: netbox/dcim/forms/model_forms.py:1150 netbox/dcim/forms/model_forms.py:1589 -#: netbox/templates/dcim/poweroutlet.html:17 -#: netbox/templates/dcim/powerport.html:77 +#: dcim/forms/model_forms.py:1150 dcim/forms/model_forms.py:1589 +#: templates/dcim/poweroutlet.html:17 templates/dcim/powerport.html:77 msgid "Power Outlet" msgstr "Prise de courant" -#: netbox/dcim/forms/model_forms.py:1152 netbox/dcim/forms/model_forms.py:1591 +#: dcim/forms/model_forms.py:1152 dcim/forms/model_forms.py:1591 msgid "Component Assignment" msgstr "Affectation des composants" -#: netbox/dcim/forms/model_forms.py:1195 netbox/dcim/forms/model_forms.py:1638 +#: dcim/forms/model_forms.py:1195 dcim/forms/model_forms.py:1638 msgid "An InventoryItem can only be assigned to a single component." msgstr "Un item d'inventaire ne peut être attribué qu'à un seul composant." -#: netbox/dcim/forms/model_forms.py:1332 +#: dcim/forms/model_forms.py:1332 msgid "LAG interface" msgstr "Interface LAG" -#: netbox/dcim/forms/model_forms.py:1355 +#: dcim/forms/model_forms.py:1355 msgid "Filter VLANs available for assignment by group." msgstr "Filtrez les VLAN disponibles pour une attribution par groupe." -#: netbox/dcim/forms/model_forms.py:1484 +#: dcim/forms/model_forms.py:1484 msgid "Child Device" msgstr "Appareil pour enfants" -#: netbox/dcim/forms/model_forms.py:1485 +#: dcim/forms/model_forms.py:1485 msgid "" "Child devices must first be created and assigned to the site and rack of the" " parent device." @@ -5012,35 +4580,32 @@ msgstr "" "Les appareils enfants doivent d'abord être créés et affectés au site et à la" " baie de l'appareil parent." -#: netbox/dcim/forms/model_forms.py:1527 +#: dcim/forms/model_forms.py:1527 msgid "Console port" msgstr "Port de console" -#: netbox/dcim/forms/model_forms.py:1535 +#: dcim/forms/model_forms.py:1535 msgid "Console server port" msgstr "Port du serveur de console" -#: netbox/dcim/forms/model_forms.py:1543 +#: dcim/forms/model_forms.py:1543 msgid "Front port" msgstr "Port avant" -#: netbox/dcim/forms/model_forms.py:1559 +#: dcim/forms/model_forms.py:1559 msgid "Power outlet" msgstr "prise de courant" -#: netbox/dcim/forms/model_forms.py:1579 -#: netbox/templates/dcim/inventoryitem.html:17 +#: dcim/forms/model_forms.py:1579 templates/dcim/inventoryitem.html:17 msgid "Inventory Item" msgstr "Article d'inventaire" -#: netbox/dcim/forms/model_forms.py:1652 -#: netbox/templates/dcim/inventoryitemrole.html:15 +#: dcim/forms/model_forms.py:1652 templates/dcim/inventoryitemrole.html:15 msgid "Inventory Item Role" msgstr "Rôle de l'article d'inventaire" -#: netbox/dcim/forms/object_create.py:48 -#: netbox/dcim/forms/object_create.py:199 -#: netbox/dcim/forms/object_create.py:355 +#: dcim/forms/object_create.py:48 dcim/forms/object_create.py:199 +#: dcim/forms/object_create.py:355 msgid "" "Alphanumeric ranges are supported. (Must match the number of objects being " "created.)" @@ -5048,7 +4613,7 @@ msgstr "" "Les plages alphanumériques sont prises en charge. (Doit correspondre au " "nombre d'objets en cours de création.)" -#: netbox/dcim/forms/object_create.py:68 +#: dcim/forms/object_create.py:68 #, python-brace-format msgid "" "The provided pattern specifies {value_count} values, but {pattern_count} are" @@ -5057,17 +4622,16 @@ msgstr "" "Le modèle fourni spécifie {value_count} des valeurs, mais {pattern_count} " "sont attendus." -#: netbox/dcim/forms/object_create.py:110 -#: netbox/dcim/forms/object_create.py:271 netbox/dcim/tables/devices.py:252 +#: dcim/forms/object_create.py:110 dcim/forms/object_create.py:271 +#: dcim/tables/devices.py:252 msgid "Rear ports" msgstr "Ports arrière" -#: netbox/dcim/forms/object_create.py:111 -#: netbox/dcim/forms/object_create.py:272 +#: dcim/forms/object_create.py:111 dcim/forms/object_create.py:272 msgid "Select one rear port assignment for each front port being created." msgstr "Associer un port arrière à chaque port avant en cours de création." -#: netbox/dcim/forms/object_create.py:164 +#: dcim/forms/object_create.py:164 #, python-brace-format msgid "" "The number of front port templates to be created ({frontport_count}) must " @@ -5077,7 +4641,7 @@ msgstr "" "correspondre au nombre sélectionné de positions des ports arrière " "({rearport_count})." -#: netbox/dcim/forms/object_create.py:251 +#: dcim/forms/object_create.py:251 #, python-brace-format msgid "" "The string {module} will be replaced with the position of the " @@ -5086,7 +4650,7 @@ msgstr "" "La chaîne {module} sera remplacée par la position du module " "attribué si nécessaire." -#: netbox/dcim/forms/object_create.py:320 +#: dcim/forms/object_create.py:320 #, python-brace-format msgid "" "The number of front ports to be created ({frontport_count}) must match the " @@ -5095,18 +4659,17 @@ 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:409 netbox/dcim/tables/devices.py:1033 -#: netbox/ipam/tables/fhrp.py:31 netbox/templates/dcim/virtualchassis.html:53 -#: netbox/templates/dcim/virtualchassis_edit.html:47 -#: netbox/templates/ipam/fhrpgroup.html:38 +#: dcim/forms/object_create.py:409 dcim/tables/devices.py:1033 +#: ipam/tables/fhrp.py:31 templates/dcim/virtualchassis.html:53 +#: templates/dcim/virtualchassis_edit.html:47 templates/ipam/fhrpgroup.html:38 msgid "Members" msgstr "Membres" -#: netbox/dcim/forms/object_create.py:418 +#: dcim/forms/object_create.py:418 msgid "Initial position" msgstr "Position initiale" -#: netbox/dcim/forms/object_create.py:421 +#: dcim/forms/object_create.py:421 msgid "" "Position of the first member device. Increases by one for each additional " "member." @@ -5114,72 +4677,70 @@ msgstr "" "Position du premier dispositif membre. Augmente d'une unité pour chaque " "membre supplémentaire." -#: netbox/dcim/forms/object_create.py:435 +#: dcim/forms/object_create.py:435 msgid "A position must be specified for the first VC member." msgstr "Une position doit être spécifiée pour le premier membre du VC." -#: netbox/dcim/models/cables.py:62 -#: netbox/dcim/models/device_component_templates.py:55 -#: netbox/dcim/models/device_components.py:62 -#: netbox/extras/models/customfields.py:111 +#: dcim/models/cables.py:62 dcim/models/device_component_templates.py:55 +#: dcim/models/device_components.py:62 extras/models/customfields.py:111 msgid "label" msgstr "étiquette" -#: netbox/dcim/models/cables.py:71 +#: dcim/models/cables.py:71 msgid "length" msgstr "longueur" -#: netbox/dcim/models/cables.py:78 +#: dcim/models/cables.py:78 msgid "length unit" msgstr "unité de longueur" -#: netbox/dcim/models/cables.py:95 +#: dcim/models/cables.py:95 msgid "cable" msgstr "câble" -#: netbox/dcim/models/cables.py:96 +#: dcim/models/cables.py:96 msgid "cables" msgstr "câbles" -#: netbox/dcim/models/cables.py:165 +#: dcim/models/cables.py:165 msgid "Must specify a unit when setting a cable length" msgstr "" "Vous devez spécifier une unité lors du réglage de la longueur du câble" -#: netbox/dcim/models/cables.py:168 +#: dcim/models/cables.py:168 msgid "Must define A and B terminations when creating a new cable." msgstr "" "Vous devez définir les terminaisons A et B lors de la création d'un nouveau " "câble." -#: netbox/dcim/models/cables.py:175 +#: dcim/models/cables.py:175 msgid "Cannot connect different termination types to same end of cable." msgstr "" "Impossible de connecter différents types de terminaisons à la même extrémité" " du câble." -#: netbox/dcim/models/cables.py:183 +#: dcim/models/cables.py:183 #, python-brace-format msgid "Incompatible termination types: {type_a} and {type_b}" msgstr "Types de terminaison incompatibles : {type_a} et {type_b}" -#: netbox/dcim/models/cables.py:193 +#: dcim/models/cables.py:193 msgid "A and B terminations cannot connect to the same object." msgstr "Les terminaisons A et B ne peuvent pas se connecter au même objet." -#: netbox/dcim/models/cables.py:260 netbox/ipam/models/asns.py:37 +#: dcim/models/cables.py:260 ipam/models/asns.py:37 msgid "end" msgstr "fin" -#: netbox/dcim/models/cables.py:313 +#: dcim/models/cables.py:313 msgid "cable termination" msgstr "terminaison de câble" -#: netbox/dcim/models/cables.py:314 +#: dcim/models/cables.py:314 msgid "cable terminations" msgstr "terminaisons de câble" -#: netbox/dcim/models/cables.py:333 +#: dcim/models/cables.py:333 #, python-brace-format msgid "" "Duplicate termination found for {app_label}.{model} {termination_id}: cable " @@ -5188,38 +4749,38 @@ msgstr "" "Un doublon de terminaison a été trouvé pour {app_label}.{model} " "{termination_id}: câble {cable_pk}" -#: netbox/dcim/models/cables.py:343 +#: dcim/models/cables.py:343 #, python-brace-format msgid "Cables cannot be terminated to {type_display} interfaces" msgstr "Les câbles ne peuvent pas être raccordés à {type_display} interfaces" -#: netbox/dcim/models/cables.py:350 +#: dcim/models/cables.py:350 msgid "Circuit terminations attached to a provider network may not be cabled." msgstr "" "Les terminaisons de circuit connectées au réseau d'un fournisseur peuvent ne" " pas être câblées." -#: netbox/dcim/models/cables.py:448 netbox/extras/models/configs.py:50 +#: dcim/models/cables.py:448 extras/models/configs.py:50 msgid "is active" msgstr "est actif" -#: netbox/dcim/models/cables.py:452 +#: dcim/models/cables.py:452 msgid "is complete" msgstr "est terminé" -#: netbox/dcim/models/cables.py:456 +#: dcim/models/cables.py:456 msgid "is split" msgstr "est divisé" -#: netbox/dcim/models/cables.py:464 +#: dcim/models/cables.py:464 msgid "cable path" msgstr "chemin de câble" -#: netbox/dcim/models/cables.py:465 +#: dcim/models/cables.py:465 msgid "cable paths" msgstr "chemins de câbles" -#: netbox/dcim/models/device_component_templates.py:46 +#: dcim/models/device_component_templates.py:46 #, python-brace-format msgid "" "{module} is accepted as a substitution for the module bay position when " @@ -5228,18 +4789,18 @@ msgstr "" "{module} est accepté en remplacement de la position de la baie du module " "lorsqu'il est fixé à un type de module." -#: netbox/dcim/models/device_component_templates.py:58 -#: netbox/dcim/models/device_components.py:65 +#: dcim/models/device_component_templates.py:58 +#: dcim/models/device_components.py:65 msgid "Physical label" msgstr "Etiquette physique" -#: netbox/dcim/models/device_component_templates.py:103 +#: dcim/models/device_component_templates.py:103 msgid "Component templates cannot be moved to a different device type." msgstr "" "Les modèles de composants ne peuvent pas être déplacés vers un autre type " "d'appareil." -#: netbox/dcim/models/device_component_templates.py:154 +#: dcim/models/device_component_templates.py:154 msgid "" "A component template cannot be associated with both a device type and a " "module type." @@ -5247,7 +4808,7 @@ msgstr "" "Un modèle de composant ne peut pas être associé à la fois à un type " "d'appareil et à un type de module." -#: netbox/dcim/models/device_component_templates.py:158 +#: dcim/models/device_component_templates.py:158 msgid "" "A component template must be associated with either a device type or a " "module type." @@ -5255,137 +4816,137 @@ msgstr "" "Un modèle de composant doit être associé à un type d'appareil ou à un type " "de module." -#: netbox/dcim/models/device_component_templates.py:212 +#: dcim/models/device_component_templates.py:212 msgid "console port template" msgstr "modèle de port de console" -#: netbox/dcim/models/device_component_templates.py:213 +#: dcim/models/device_component_templates.py:213 msgid "console port templates" msgstr "modèles de ports de console" -#: netbox/dcim/models/device_component_templates.py:246 +#: dcim/models/device_component_templates.py:246 msgid "console server port template" msgstr "modèle de port de serveur de console" -#: netbox/dcim/models/device_component_templates.py:247 +#: dcim/models/device_component_templates.py:247 msgid "console server port templates" msgstr "modèles de ports de serveur de console" -#: netbox/dcim/models/device_component_templates.py:278 -#: netbox/dcim/models/device_components.py:352 +#: dcim/models/device_component_templates.py:278 +#: dcim/models/device_components.py:352 msgid "maximum draw" msgstr "tirage maximum" -#: netbox/dcim/models/device_component_templates.py:285 -#: netbox/dcim/models/device_components.py:359 +#: dcim/models/device_component_templates.py:285 +#: dcim/models/device_components.py:359 msgid "allocated draw" msgstr "tirage au sort alloué" -#: netbox/dcim/models/device_component_templates.py:295 +#: dcim/models/device_component_templates.py:295 msgid "power port template" msgstr "modèle de port d'alimentation" -#: netbox/dcim/models/device_component_templates.py:296 +#: dcim/models/device_component_templates.py:296 msgid "power port templates" msgstr "modèles de ports d'alimentation" -#: netbox/dcim/models/device_component_templates.py:315 -#: netbox/dcim/models/device_components.py:382 +#: dcim/models/device_component_templates.py:315 +#: dcim/models/device_components.py:382 #, python-brace-format msgid "Allocated draw cannot exceed the maximum draw ({maximum_draw}W)." msgstr "" "Le tirage alloué ne peut pas dépasser le tirage maximum ({maximum_draw}W)." -#: netbox/dcim/models/device_component_templates.py:347 -#: netbox/dcim/models/device_components.py:477 +#: dcim/models/device_component_templates.py:347 +#: dcim/models/device_components.py:477 msgid "feed leg" msgstr "patte d'alimentation" -#: netbox/dcim/models/device_component_templates.py:351 -#: netbox/dcim/models/device_components.py:481 +#: dcim/models/device_component_templates.py:351 +#: dcim/models/device_components.py:481 msgid "Phase (for three-phase feeds)" msgstr "Phase (pour les alimentations triphasées)" -#: netbox/dcim/models/device_component_templates.py:357 +#: dcim/models/device_component_templates.py:357 msgid "power outlet template" msgstr "modèle de prise de courant" -#: netbox/dcim/models/device_component_templates.py:358 +#: dcim/models/device_component_templates.py:358 msgid "power outlet templates" msgstr "modèles de prises de courant" -#: netbox/dcim/models/device_component_templates.py:367 +#: dcim/models/device_component_templates.py:367 #, python-brace-format msgid "Parent power port ({power_port}) must belong to the same device type" msgstr "" "Port d'alimentation parent ({power_port}) doit appartenir au même type " "d'appareil" -#: netbox/dcim/models/device_component_templates.py:371 +#: dcim/models/device_component_templates.py:371 #, python-brace-format msgid "Parent power port ({power_port}) must belong to the same module type" msgstr "" "Port d'alimentation parent ({power_port}) doit appartenir au même type de " "module" -#: netbox/dcim/models/device_component_templates.py:423 -#: netbox/dcim/models/device_components.py:611 +#: dcim/models/device_component_templates.py:423 +#: dcim/models/device_components.py:611 msgid "management only" msgstr "gestion uniquement" -#: netbox/dcim/models/device_component_templates.py:431 -#: netbox/dcim/models/device_components.py:550 +#: dcim/models/device_component_templates.py:431 +#: dcim/models/device_components.py:550 msgid "bridge interface" msgstr "interface de pont" -#: netbox/dcim/models/device_component_templates.py:449 -#: netbox/dcim/models/device_components.py:636 +#: dcim/models/device_component_templates.py:449 +#: dcim/models/device_components.py:636 msgid "wireless role" msgstr "rôle sans fil" -#: netbox/dcim/models/device_component_templates.py:455 +#: dcim/models/device_component_templates.py:455 msgid "interface template" msgstr "modèle d'interface" -#: netbox/dcim/models/device_component_templates.py:456 +#: dcim/models/device_component_templates.py:456 msgid "interface templates" msgstr "modèles d'interface" -#: netbox/dcim/models/device_component_templates.py:463 -#: netbox/dcim/models/device_components.py:804 -#: netbox/virtualization/models/virtualmachines.py:405 +#: dcim/models/device_component_templates.py:463 +#: dcim/models/device_components.py:804 +#: virtualization/models/virtualmachines.py:405 msgid "An interface cannot be bridged to itself." msgstr "Une interface ne peut pas être reliée à elle-même." -#: netbox/dcim/models/device_component_templates.py:466 +#: dcim/models/device_component_templates.py:466 #, python-brace-format msgid "Bridge interface ({bridge}) must belong to the same device type" msgstr "Interface de pont ({bridge}) doit appartenir au même type d'appareil" -#: netbox/dcim/models/device_component_templates.py:470 +#: dcim/models/device_component_templates.py:470 #, python-brace-format msgid "Bridge interface ({bridge}) must belong to the same module type" msgstr "Interface de pont ({bridge}) doit appartenir au même type de module" -#: netbox/dcim/models/device_component_templates.py:526 -#: netbox/dcim/models/device_components.py:984 +#: dcim/models/device_component_templates.py:526 +#: dcim/models/device_components.py:984 msgid "rear port position" msgstr "position du port arrière" -#: netbox/dcim/models/device_component_templates.py:551 +#: dcim/models/device_component_templates.py:551 msgid "front port template" msgstr "modèle de port avant" -#: netbox/dcim/models/device_component_templates.py:552 +#: dcim/models/device_component_templates.py:552 msgid "front port templates" msgstr "modèles de port avant" -#: netbox/dcim/models/device_component_templates.py:562 +#: dcim/models/device_component_templates.py:562 #, python-brace-format msgid "Rear port ({name}) must belong to the same device type" msgstr "Port arrière ({name}) doit appartenir au même type d'appareil" -#: netbox/dcim/models/device_component_templates.py:568 +#: dcim/models/device_component_templates.py:568 #, python-brace-format msgid "" "Invalid rear port position ({position}); rear port {name} has only {count} " @@ -5394,47 +4955,47 @@ msgstr "" "Position du port arrière non valide ({position}) ; port arrière {name} n'a " "que {count} positions" -#: netbox/dcim/models/device_component_templates.py:621 -#: netbox/dcim/models/device_components.py:1053 +#: dcim/models/device_component_templates.py:621 +#: dcim/models/device_components.py:1053 msgid "positions" msgstr "positions" -#: netbox/dcim/models/device_component_templates.py:632 +#: dcim/models/device_component_templates.py:632 msgid "rear port template" msgstr "modèle de port arrière" -#: netbox/dcim/models/device_component_templates.py:633 +#: dcim/models/device_component_templates.py:633 msgid "rear port templates" msgstr "modèles de port arrière" -#: netbox/dcim/models/device_component_templates.py:662 -#: netbox/dcim/models/device_components.py:1103 +#: dcim/models/device_component_templates.py:662 +#: dcim/models/device_components.py:1103 msgid "position" msgstr "position" -#: netbox/dcim/models/device_component_templates.py:665 -#: netbox/dcim/models/device_components.py:1106 +#: dcim/models/device_component_templates.py:665 +#: dcim/models/device_components.py:1106 msgid "Identifier to reference when renaming installed components" msgstr "" "Identifiant à référencer lors du changement de nom des composants installés" -#: netbox/dcim/models/device_component_templates.py:671 +#: dcim/models/device_component_templates.py:671 msgid "module bay template" msgstr "modèle de baie modulaire" -#: netbox/dcim/models/device_component_templates.py:672 +#: dcim/models/device_component_templates.py:672 msgid "module bay templates" msgstr "modèles de baies de modules" -#: netbox/dcim/models/device_component_templates.py:699 +#: dcim/models/device_component_templates.py:699 msgid "device bay template" msgstr "modèle de baie pour appareils" -#: netbox/dcim/models/device_component_templates.py:700 +#: dcim/models/device_component_templates.py:700 msgid "device bay templates" msgstr "modèles de baies d'appareils" -#: netbox/dcim/models/device_component_templates.py:713 +#: dcim/models/device_component_templates.py:713 #, python-brace-format msgid "" "Subdevice role of device type ({device_type}) must be set to \"parent\" to " @@ -5443,211 +5004,206 @@ msgstr "" "Rôle du sous-appareil du type d'appareil ({device_type}) doit être défini " "sur « parent » pour autoriser les baies de périphériques." -#: netbox/dcim/models/device_component_templates.py:768 -#: netbox/dcim/models/device_components.py:1262 +#: dcim/models/device_component_templates.py:768 +#: dcim/models/device_components.py:1262 msgid "part ID" msgstr "ID de pièce" -#: netbox/dcim/models/device_component_templates.py:770 -#: netbox/dcim/models/device_components.py:1264 +#: dcim/models/device_component_templates.py:770 +#: dcim/models/device_components.py:1264 msgid "Manufacturer-assigned part identifier" msgstr "Identifiant de pièce attribué par le fabricant" -#: netbox/dcim/models/device_component_templates.py:787 +#: dcim/models/device_component_templates.py:787 msgid "inventory item template" msgstr "modèle d'article d'inventaire" -#: netbox/dcim/models/device_component_templates.py:788 +#: dcim/models/device_component_templates.py:788 msgid "inventory item templates" msgstr "modèles d'articles d'inventaire" -#: netbox/dcim/models/device_components.py:105 +#: dcim/models/device_components.py:105 msgid "Components cannot be moved to a different device." msgstr "Les composants ne peuvent pas être déplacés vers un autre appareil." -#: netbox/dcim/models/device_components.py:144 +#: dcim/models/device_components.py:144 msgid "cable end" msgstr "extrémité du câble" -#: netbox/dcim/models/device_components.py:150 +#: dcim/models/device_components.py:150 msgid "mark connected" msgstr "marque connectée" -#: netbox/dcim/models/device_components.py:152 +#: dcim/models/device_components.py:152 msgid "Treat as if a cable is connected" msgstr "Traitez comme si un câble était connecté" -#: netbox/dcim/models/device_components.py:170 +#: dcim/models/device_components.py:170 msgid "Must specify cable end (A or B) when attaching a cable." msgstr "" "Doit spécifier l'extrémité du câble (A ou B) lors de la fixation d'un câble." -#: netbox/dcim/models/device_components.py:174 +#: dcim/models/device_components.py:174 msgid "Cable end must not be set without a cable." msgstr "L'extrémité du câble ne doit pas être réglée sans câble." -#: netbox/dcim/models/device_components.py:178 +#: dcim/models/device_components.py:178 msgid "Cannot mark as connected with a cable attached." msgstr "Impossible de marquer comme connecté avec un câble branché." -#: netbox/dcim/models/device_components.py:202 +#: dcim/models/device_components.py:202 #, python-brace-format msgid "{class_name} models must declare a parent_object property" msgstr "{class_name} les modèles doivent déclarer une propriété parent_object" -#: netbox/dcim/models/device_components.py:287 -#: netbox/dcim/models/device_components.py:316 -#: netbox/dcim/models/device_components.py:349 -#: netbox/dcim/models/device_components.py:467 +#: dcim/models/device_components.py:287 dcim/models/device_components.py:316 +#: dcim/models/device_components.py:349 dcim/models/device_components.py:467 msgid "Physical port type" msgstr "Type de port physique" -#: netbox/dcim/models/device_components.py:290 -#: netbox/dcim/models/device_components.py:319 +#: dcim/models/device_components.py:290 dcim/models/device_components.py:319 msgid "speed" msgstr "vitesse" -#: netbox/dcim/models/device_components.py:294 -#: netbox/dcim/models/device_components.py:323 +#: dcim/models/device_components.py:294 dcim/models/device_components.py:323 msgid "Port speed in bits per second" msgstr "Vitesse du port en bits par seconde" -#: netbox/dcim/models/device_components.py:300 +#: dcim/models/device_components.py:300 msgid "console port" msgstr "port de console" -#: netbox/dcim/models/device_components.py:301 +#: dcim/models/device_components.py:301 msgid "console ports" msgstr "ports de console" -#: netbox/dcim/models/device_components.py:329 +#: dcim/models/device_components.py:329 msgid "console server port" msgstr "port du serveur de console" -#: netbox/dcim/models/device_components.py:330 +#: dcim/models/device_components.py:330 msgid "console server ports" msgstr "ports du serveur de console" -#: netbox/dcim/models/device_components.py:369 +#: dcim/models/device_components.py:369 msgid "power port" msgstr "port d'alimentation" -#: netbox/dcim/models/device_components.py:370 +#: dcim/models/device_components.py:370 msgid "power ports" msgstr "ports d'alimentation" -#: netbox/dcim/models/device_components.py:487 +#: dcim/models/device_components.py:487 msgid "power outlet" msgstr "prise de courant" -#: netbox/dcim/models/device_components.py:488 +#: dcim/models/device_components.py:488 msgid "power outlets" msgstr "prises de courant" -#: netbox/dcim/models/device_components.py:499 +#: dcim/models/device_components.py:499 #, python-brace-format msgid "Parent power port ({power_port}) must belong to the same device" msgstr "" "Port d'alimentation parent ({power_port}) doit appartenir au même appareil" -#: netbox/dcim/models/device_components.py:530 netbox/vpn/models/crypto.py:81 -#: netbox/vpn/models/crypto.py:226 +#: dcim/models/device_components.py:530 vpn/models/crypto.py:81 +#: vpn/models/crypto.py:226 msgid "mode" msgstr "mode" -#: netbox/dcim/models/device_components.py:534 +#: dcim/models/device_components.py:534 msgid "IEEE 802.1Q tagging strategy" msgstr "Stratégie de marquage IEEE 802.1Q" -#: netbox/dcim/models/device_components.py:542 +#: dcim/models/device_components.py:542 msgid "parent interface" msgstr "interface parente" -#: netbox/dcim/models/device_components.py:602 +#: dcim/models/device_components.py:602 msgid "parent LAG" msgstr "GAL parent" -#: netbox/dcim/models/device_components.py:612 +#: dcim/models/device_components.py:612 msgid "This interface is used only for out-of-band management" msgstr "Cette interface est utilisée uniquement pour la gestion hors bande" -#: netbox/dcim/models/device_components.py:617 +#: dcim/models/device_components.py:617 msgid "speed (Kbps)" msgstr "vitesse (Kbps)" -#: netbox/dcim/models/device_components.py:620 +#: dcim/models/device_components.py:620 msgid "duplex" msgstr "duplex" -#: netbox/dcim/models/device_components.py:630 +#: dcim/models/device_components.py:630 msgid "64-bit World Wide Name" msgstr "Nom mondial 64 bits" -#: netbox/dcim/models/device_components.py:642 +#: dcim/models/device_components.py:642 msgid "wireless channel" msgstr "canal sans fil" -#: netbox/dcim/models/device_components.py:649 +#: dcim/models/device_components.py:649 msgid "channel frequency (MHz)" msgstr "fréquence du canal (MHz)" -#: netbox/dcim/models/device_components.py:650 -#: netbox/dcim/models/device_components.py:658 +#: dcim/models/device_components.py:650 dcim/models/device_components.py:658 msgid "Populated by selected channel (if set)" msgstr "Rempli par la chaîne sélectionnée (si définie)" -#: netbox/dcim/models/device_components.py:664 +#: dcim/models/device_components.py:664 msgid "transmit power (dBm)" msgstr "puissance de transmission (dBm)" -#: netbox/dcim/models/device_components.py:689 netbox/wireless/models.py:117 +#: dcim/models/device_components.py:689 wireless/models.py:117 msgid "wireless LANs" msgstr "réseaux locaux sans fil" -#: netbox/dcim/models/device_components.py:697 -#: netbox/virtualization/models/virtualmachines.py:335 +#: dcim/models/device_components.py:697 +#: virtualization/models/virtualmachines.py:335 msgid "untagged VLAN" msgstr "VLAN non balisé" -#: netbox/dcim/models/device_components.py:703 -#: netbox/virtualization/models/virtualmachines.py:341 +#: dcim/models/device_components.py:703 +#: virtualization/models/virtualmachines.py:341 msgid "tagged VLANs" msgstr "VLAN étiquetés" -#: netbox/dcim/models/device_components.py:745 -#: netbox/virtualization/models/virtualmachines.py:377 +#: dcim/models/device_components.py:745 +#: virtualization/models/virtualmachines.py:377 msgid "interface" msgstr "interface" -#: netbox/dcim/models/device_components.py:746 -#: netbox/virtualization/models/virtualmachines.py:378 +#: dcim/models/device_components.py:746 +#: virtualization/models/virtualmachines.py:378 msgid "interfaces" msgstr "interfaces" -#: netbox/dcim/models/device_components.py:757 +#: dcim/models/device_components.py:757 #, python-brace-format msgid "{display_type} interfaces cannot have a cable attached." msgstr "" "{display_type} les interfaces ne peuvent pas être connectées à un câble." -#: netbox/dcim/models/device_components.py:765 +#: dcim/models/device_components.py:765 #, python-brace-format msgid "{display_type} interfaces cannot be marked as connected." msgstr "" "{display_type} les interfaces ne peuvent pas être marquées comme connectées." -#: netbox/dcim/models/device_components.py:774 -#: netbox/virtualization/models/virtualmachines.py:390 +#: dcim/models/device_components.py:774 +#: virtualization/models/virtualmachines.py:390 msgid "An interface cannot be its own parent." msgstr "Une interface ne peut pas être son propre parent." -#: netbox/dcim/models/device_components.py:778 +#: dcim/models/device_components.py:778 msgid "Only virtual interfaces may be assigned to a parent interface." msgstr "" "Seules les interfaces virtuelles peuvent être attribuées à une interface " "parent." -#: netbox/dcim/models/device_components.py:785 +#: dcim/models/device_components.py:785 #, python-brace-format msgid "" "The selected parent interface ({interface}) belongs to a different device " @@ -5656,7 +5212,7 @@ msgstr "" "L'interface parent sélectionnée ({interface}) appartient à un autre appareil" " ({device})" -#: netbox/dcim/models/device_components.py:791 +#: dcim/models/device_components.py:791 #, python-brace-format msgid "" "The selected parent interface ({interface}) belongs to {device}, which is " @@ -5665,7 +5221,7 @@ msgstr "" "L'interface parent sélectionnée ({interface}) appartient à {device}, qui ne " "fait pas partie du châssis virtuel {virtual_chassis}." -#: netbox/dcim/models/device_components.py:811 +#: dcim/models/device_components.py:811 #, python-brace-format msgid "" "The selected bridge interface ({bridge}) belongs to a different device " @@ -5674,7 +5230,7 @@ msgstr "" "L'interface de pont sélectionnée ({bridge}) appartient à un autre appareil " "({device})." -#: netbox/dcim/models/device_components.py:817 +#: dcim/models/device_components.py:817 #, python-brace-format msgid "" "The selected bridge interface ({interface}) belongs to {device}, which is " @@ -5683,16 +5239,16 @@ msgstr "" "L'interface de pont sélectionnée ({interface}) appartient à {device}, qui ne" " fait pas partie du châssis virtuel {virtual_chassis}." -#: netbox/dcim/models/device_components.py:828 +#: dcim/models/device_components.py:828 msgid "Virtual interfaces cannot have a parent LAG interface." msgstr "" "Les interfaces virtuelles ne peuvent pas avoir d'interface LAG parente." -#: netbox/dcim/models/device_components.py:832 +#: dcim/models/device_components.py:832 msgid "A LAG interface cannot be its own parent." msgstr "Une interface LAG ne peut pas être son propre parent." -#: netbox/dcim/models/device_components.py:839 +#: dcim/models/device_components.py:839 #, python-brace-format msgid "" "The selected LAG interface ({lag}) belongs to a different device ({device})." @@ -5700,7 +5256,7 @@ msgstr "" "L'interface LAG sélectionnée ({lag}) appartient à un autre appareil " "({device})." -#: netbox/dcim/models/device_components.py:845 +#: dcim/models/device_components.py:845 #, python-brace-format msgid "" "The selected LAG interface ({lag}) belongs to {device}, which is not part of" @@ -5709,48 +5265,48 @@ msgstr "" "L'interface LAG sélectionnée ({lag}) appartient à {device}, qui ne fait pas " "partie du châssis virtuel {virtual_chassis}." -#: netbox/dcim/models/device_components.py:856 +#: dcim/models/device_components.py:856 msgid "Virtual interfaces cannot have a PoE mode." msgstr "Les interfaces virtuelles ne peuvent pas avoir de mode PoE." -#: netbox/dcim/models/device_components.py:860 +#: dcim/models/device_components.py:860 msgid "Virtual interfaces cannot have a PoE type." msgstr "Les interfaces virtuelles ne peuvent pas avoir de type PoE." -#: netbox/dcim/models/device_components.py:866 +#: dcim/models/device_components.py:866 msgid "Must specify PoE mode when designating a PoE type." msgstr "Doit spécifier le mode PoE lors de la désignation d'un type de PoE." -#: netbox/dcim/models/device_components.py:873 +#: dcim/models/device_components.py:873 msgid "Wireless role may be set only on wireless interfaces." msgstr "Le rôle sans fil ne peut être défini que sur les interfaces sans fil." -#: netbox/dcim/models/device_components.py:875 +#: dcim/models/device_components.py:875 msgid "Channel may be set only on wireless interfaces." msgstr "Le canal ne peut être défini que sur les interfaces sans fil." -#: netbox/dcim/models/device_components.py:881 +#: dcim/models/device_components.py:881 msgid "Channel frequency may be set only on wireless interfaces." msgstr "" "La fréquence des canaux ne peut être réglée que sur les interfaces sans fil." -#: netbox/dcim/models/device_components.py:885 +#: dcim/models/device_components.py:885 msgid "Cannot specify custom frequency with channel selected." msgstr "" "Impossible de spécifier une fréquence personnalisée avec le canal " "sélectionné." -#: netbox/dcim/models/device_components.py:891 +#: dcim/models/device_components.py:891 msgid "Channel width may be set only on wireless interfaces." msgstr "" "La largeur de canal ne peut être réglée que sur les interfaces sans fil." -#: netbox/dcim/models/device_components.py:893 +#: dcim/models/device_components.py:893 msgid "Cannot specify custom width with channel selected." msgstr "" "Impossible de spécifier une largeur personnalisée avec le canal sélectionné." -#: netbox/dcim/models/device_components.py:901 +#: dcim/models/device_components.py:901 #, python-brace-format msgid "" "The untagged VLAN ({untagged_vlan}) must belong to the same site as the " @@ -5759,24 +5315,24 @@ msgstr "" "Le VLAN non balisé ({untagged_vlan}) doit appartenir au même site que " "l'appareil parent de l'interface, ou il doit être global." -#: netbox/dcim/models/device_components.py:990 +#: dcim/models/device_components.py:990 msgid "Mapped position on corresponding rear port" msgstr "Position cartographiée sur le port arrière correspondant" -#: netbox/dcim/models/device_components.py:1006 +#: dcim/models/device_components.py:1006 msgid "front port" msgstr "port avant" -#: netbox/dcim/models/device_components.py:1007 +#: dcim/models/device_components.py:1007 msgid "front ports" msgstr "ports avant" -#: netbox/dcim/models/device_components.py:1021 +#: dcim/models/device_components.py:1021 #, python-brace-format msgid "Rear port ({rear_port}) must belong to the same device" msgstr "Port arrière ({rear_port}) doit appartenir au même appareil" -#: netbox/dcim/models/device_components.py:1029 +#: dcim/models/device_components.py:1029 #, python-brace-format msgid "" "Invalid rear port position ({rear_port_position}): Rear port {name} has only" @@ -5785,19 +5341,19 @@ msgstr "" "Position du port arrière non valide ({rear_port_position}) : Port arrière " "{name} n'a que {positions} positions." -#: netbox/dcim/models/device_components.py:1059 +#: dcim/models/device_components.py:1059 msgid "Number of front ports which may be mapped" msgstr "Nombre de ports frontaux pouvant être mappés" -#: netbox/dcim/models/device_components.py:1064 +#: dcim/models/device_components.py:1064 msgid "rear port" msgstr "port arrière" -#: netbox/dcim/models/device_components.py:1065 +#: dcim/models/device_components.py:1065 msgid "rear ports" msgstr "ports arrière" -#: netbox/dcim/models/device_components.py:1079 +#: dcim/models/device_components.py:1079 #, python-brace-format msgid "" "The number of positions cannot be less than the number of mapped front ports" @@ -5806,40 +5362,39 @@ msgstr "" "Le nombre de positions ne peut pas être inférieur au nombre de ports " "frontaux mappés ({frontport_count})" -#: netbox/dcim/models/device_components.py:1120 +#: dcim/models/device_components.py:1120 msgid "module bay" msgstr "baie modulaire" -#: netbox/dcim/models/device_components.py:1121 +#: dcim/models/device_components.py:1121 msgid "module bays" msgstr "baies de modules" -#: netbox/dcim/models/device_components.py:1138 -#: netbox/dcim/models/devices.py:1224 +#: dcim/models/device_components.py:1138 dcim/models/devices.py:1224 msgid "A module bay cannot belong to a module installed within it." msgstr "" "Une baie de modules ne peut pas appartenir à un module qui y est installé." -#: netbox/dcim/models/device_components.py:1164 +#: dcim/models/device_components.py:1164 msgid "device bay" msgstr "baie pour appareils" -#: netbox/dcim/models/device_components.py:1165 +#: dcim/models/device_components.py:1165 msgid "device bays" msgstr "baies pour appareils" -#: netbox/dcim/models/device_components.py:1175 +#: dcim/models/device_components.py:1175 #, python-brace-format msgid "This type of device ({device_type}) does not support device bays." msgstr "" "Ce type d'appareil ({device_type}) ne prend pas en charge les baies pour " "appareils." -#: netbox/dcim/models/device_components.py:1181 +#: dcim/models/device_components.py:1181 msgid "Cannot install a device into itself." msgstr "Impossible d'installer un appareil sur lui-même." -#: netbox/dcim/models/device_components.py:1189 +#: dcim/models/device_components.py:1189 #, python-brace-format msgid "" "Cannot install the specified device; device is already installed in {bay}." @@ -5847,116 +5402,114 @@ msgstr "" "Impossible d'installer le périphérique spécifié ; le périphérique est déjà " "installé dans {bay}." -#: netbox/dcim/models/device_components.py:1210 +#: dcim/models/device_components.py:1210 msgid "inventory item role" msgstr "rôle des articles d'inventaire" -#: netbox/dcim/models/device_components.py:1211 +#: dcim/models/device_components.py:1211 msgid "inventory item roles" msgstr "rôles des articles d'inventaire" -#: netbox/dcim/models/device_components.py:1268 -#: netbox/dcim/models/devices.py:607 netbox/dcim/models/devices.py:1181 -#: netbox/dcim/models/racks.py:313 -#: netbox/virtualization/models/virtualmachines.py:131 +#: dcim/models/device_components.py:1268 dcim/models/devices.py:607 +#: dcim/models/devices.py:1181 dcim/models/racks.py:313 +#: virtualization/models/virtualmachines.py:131 msgid "serial number" msgstr "numéro de série" -#: netbox/dcim/models/device_components.py:1276 -#: netbox/dcim/models/devices.py:615 netbox/dcim/models/devices.py:1188 -#: netbox/dcim/models/racks.py:320 +#: dcim/models/device_components.py:1276 dcim/models/devices.py:615 +#: dcim/models/devices.py:1188 dcim/models/racks.py:320 msgid "asset tag" msgstr "étiquette d'actif" -#: netbox/dcim/models/device_components.py:1277 +#: dcim/models/device_components.py:1277 msgid "A unique tag used to identify this item" msgstr "Une étiquette unique utilisée pour identifier cet article" -#: netbox/dcim/models/device_components.py:1280 +#: dcim/models/device_components.py:1280 msgid "discovered" msgstr "découvert" -#: netbox/dcim/models/device_components.py:1282 +#: dcim/models/device_components.py:1282 msgid "This item was automatically discovered" msgstr "Cet objet a été découvert automatiquement" -#: netbox/dcim/models/device_components.py:1300 +#: dcim/models/device_components.py:1300 msgid "inventory item" msgstr "article d'inventaire" -#: netbox/dcim/models/device_components.py:1301 +#: dcim/models/device_components.py:1301 msgid "inventory items" msgstr "articles d'inventaire" -#: netbox/dcim/models/device_components.py:1312 +#: dcim/models/device_components.py:1312 msgid "Cannot assign self as parent." msgstr "Impossible de s'attribuer le statut de parent." -#: netbox/dcim/models/device_components.py:1320 +#: dcim/models/device_components.py:1320 msgid "Parent inventory item does not belong to the same device." msgstr "L'article d'inventaire parent n'appartient pas au même appareil." -#: netbox/dcim/models/device_components.py:1326 +#: dcim/models/device_components.py:1326 msgid "Cannot move an inventory item with dependent children" msgstr "Impossible de déplacer un article en stock avec des enfants à charge" -#: netbox/dcim/models/device_components.py:1334 +#: dcim/models/device_components.py:1334 msgid "Cannot assign inventory item to component on another device" msgstr "" "Impossible d'attribuer un article d'inventaire à un composant sur un autre " "appareil" -#: netbox/dcim/models/devices.py:54 +#: dcim/models/devices.py:54 msgid "manufacturer" msgstr "fabricant" -#: netbox/dcim/models/devices.py:55 +#: dcim/models/devices.py:55 msgid "manufacturers" msgstr "fabricants" -#: netbox/dcim/models/devices.py:82 netbox/dcim/models/devices.py:382 -#: netbox/dcim/models/racks.py:133 +#: dcim/models/devices.py:82 dcim/models/devices.py:382 +#: dcim/models/racks.py:133 msgid "model" msgstr "modèle" -#: netbox/dcim/models/devices.py:95 +#: dcim/models/devices.py:95 msgid "default platform" msgstr "plateforme par défaut" -#: netbox/dcim/models/devices.py:98 netbox/dcim/models/devices.py:386 +#: dcim/models/devices.py:98 dcim/models/devices.py:386 msgid "part number" msgstr "numéro de pièce" -#: netbox/dcim/models/devices.py:101 netbox/dcim/models/devices.py:389 +#: dcim/models/devices.py:101 dcim/models/devices.py:389 msgid "Discrete part number (optional)" msgstr "Numéro de pièce discret (facultatif)" -#: netbox/dcim/models/devices.py:107 netbox/dcim/models/racks.py:54 +#: dcim/models/devices.py:107 dcim/models/racks.py:54 msgid "height (U)" msgstr "hauteur (U)" -#: netbox/dcim/models/devices.py:111 +#: dcim/models/devices.py:111 msgid "exclude from utilization" msgstr "exclure de l'utilisation" -#: netbox/dcim/models/devices.py:112 +#: dcim/models/devices.py:112 msgid "Devices of this type are excluded when calculating rack utilization." msgstr "" "Les appareils de ce type sont exclus du calcul de l'utilisation des baies." -#: netbox/dcim/models/devices.py:116 +#: dcim/models/devices.py:116 msgid "is full depth" msgstr "est en pleine profondeur" -#: netbox/dcim/models/devices.py:117 +#: dcim/models/devices.py:117 msgid "Device consumes both front and rear rack faces." msgstr "L'appareil consomme à la fois les faces avant et arrière de la baie." -#: netbox/dcim/models/devices.py:123 +#: dcim/models/devices.py:123 msgid "parent/child status" msgstr "statut parent/enfant" -#: netbox/dcim/models/devices.py:124 +#: dcim/models/devices.py:124 msgid "" "Parent devices house child devices in device bays. Leave blank if this " "device type is neither a parent nor a child." @@ -5965,24 +5518,24 @@ msgstr "" "pour appareils. Laissez ce champ vide si ce type d'appareil n'est ni un " "parent ni un enfant." -#: netbox/dcim/models/devices.py:128 netbox/dcim/models/devices.py:392 -#: netbox/dcim/models/devices.py:659 netbox/dcim/models/racks.py:324 +#: dcim/models/devices.py:128 dcim/models/devices.py:392 +#: dcim/models/devices.py:659 dcim/models/racks.py:324 msgid "airflow" msgstr "débit d'air" -#: netbox/dcim/models/devices.py:204 +#: dcim/models/devices.py:204 msgid "device type" msgstr "type d'appareil" -#: netbox/dcim/models/devices.py:205 +#: dcim/models/devices.py:205 msgid "device types" msgstr "types d'appareils" -#: netbox/dcim/models/devices.py:290 +#: dcim/models/devices.py:290 msgid "U height must be in increments of 0.5 rack units." msgstr "La hauteur en U doit être exprimée par incréments de 0,5 unité baie." -#: netbox/dcim/models/devices.py:307 +#: dcim/models/devices.py:307 #, python-brace-format msgid "" "Device {device} in rack {rack} does not have sufficient space to accommodate" @@ -5991,7 +5544,7 @@ msgstr "" "Appareil {device} en baie {rack} ne dispose pas de suffisamment d'espace " "pour accueillir une hauteur de {height}U" -#: netbox/dcim/models/devices.py:322 +#: dcim/models/devices.py:322 #, python-brace-format msgid "" "Unable to set 0U height: Found {racked_instance_count} " @@ -6001,7 +5554,7 @@ msgstr "" "href=\"{url}\">{racked_instance_count} les instances déjà monté dans des" " baies." -#: netbox/dcim/models/devices.py:331 +#: dcim/models/devices.py:331 msgid "" "Must delete all device bay templates associated with this device before " "declassifying it as a parent device." @@ -6009,156 +5562,156 @@ msgstr "" "Vous devez supprimer tous les modèles de baies d'appareils associés à cet " "appareil avant de le déclassifier en tant qu'appareil parent." -#: netbox/dcim/models/devices.py:337 +#: dcim/models/devices.py:337 msgid "Child device types must be 0U." msgstr "Les types d'appareils pour enfants doivent être 0U." -#: netbox/dcim/models/devices.py:411 +#: dcim/models/devices.py:411 msgid "module type" msgstr "type de module" -#: netbox/dcim/models/devices.py:412 +#: dcim/models/devices.py:412 msgid "module types" msgstr "types de modules" -#: netbox/dcim/models/devices.py:485 +#: dcim/models/devices.py:485 msgid "Virtual machines may be assigned to this role" msgstr "Des machines virtuelles peuvent être affectées à ce rôle" -#: netbox/dcim/models/devices.py:497 +#: dcim/models/devices.py:497 msgid "device role" msgstr "rôle de l'appareil" -#: netbox/dcim/models/devices.py:498 +#: dcim/models/devices.py:498 msgid "device roles" msgstr "rôles des appareils" -#: netbox/dcim/models/devices.py:515 +#: dcim/models/devices.py:515 msgid "Optionally limit this platform to devices of a certain manufacturer" msgstr "" "Limitez éventuellement cette plate-forme aux appareils d'un certain " "fabricant" -#: netbox/dcim/models/devices.py:527 +#: dcim/models/devices.py:527 msgid "platform" msgstr "plateforme" -#: netbox/dcim/models/devices.py:528 +#: dcim/models/devices.py:528 msgid "platforms" msgstr "plateformes" -#: netbox/dcim/models/devices.py:576 +#: dcim/models/devices.py:576 msgid "The function this device serves" msgstr "La fonction de cet appareil" -#: netbox/dcim/models/devices.py:608 +#: dcim/models/devices.py:608 msgid "Chassis serial number, assigned by the manufacturer" msgstr "Numéro de série du châssis attribué par le fabricant" -#: netbox/dcim/models/devices.py:616 netbox/dcim/models/devices.py:1189 +#: dcim/models/devices.py:616 dcim/models/devices.py:1189 msgid "A unique tag used to identify this device" msgstr "Un tag unique utilisé pour identifier cet appareil" -#: netbox/dcim/models/devices.py:643 +#: dcim/models/devices.py:643 msgid "position (U)" msgstr "position (U)" -#: netbox/dcim/models/devices.py:650 +#: dcim/models/devices.py:650 msgid "rack face" msgstr "face de la baie" -#: netbox/dcim/models/devices.py:670 netbox/dcim/models/devices.py:1415 -#: netbox/virtualization/models/virtualmachines.py:100 +#: dcim/models/devices.py:670 dcim/models/devices.py:1415 +#: virtualization/models/virtualmachines.py:100 msgid "primary IPv4" msgstr "IPv4 principal" -#: netbox/dcim/models/devices.py:678 netbox/dcim/models/devices.py:1423 -#: netbox/virtualization/models/virtualmachines.py:108 +#: dcim/models/devices.py:678 dcim/models/devices.py:1423 +#: virtualization/models/virtualmachines.py:108 msgid "primary IPv6" msgstr "IPv6 principal" -#: netbox/dcim/models/devices.py:686 +#: dcim/models/devices.py:686 msgid "out-of-band IP" msgstr "IP hors bande" -#: netbox/dcim/models/devices.py:703 +#: dcim/models/devices.py:703 msgid "VC position" msgstr "Position en VC" -#: netbox/dcim/models/devices.py:706 +#: dcim/models/devices.py:706 msgid "Virtual chassis position" msgstr "Position virtuelle du châssis" -#: netbox/dcim/models/devices.py:709 +#: dcim/models/devices.py:709 msgid "VC priority" msgstr "Priorité VC" -#: netbox/dcim/models/devices.py:713 +#: dcim/models/devices.py:713 msgid "Virtual chassis master election priority" msgstr "Priorité d'élection principale du châssis virtuel" -#: netbox/dcim/models/devices.py:716 netbox/dcim/models/sites.py:207 +#: dcim/models/devices.py:716 dcim/models/sites.py:207 msgid "latitude" msgstr "latitude" -#: netbox/dcim/models/devices.py:721 netbox/dcim/models/devices.py:729 -#: netbox/dcim/models/sites.py:212 netbox/dcim/models/sites.py:220 +#: dcim/models/devices.py:721 dcim/models/devices.py:729 +#: dcim/models/sites.py:212 dcim/models/sites.py:220 msgid "GPS coordinate in decimal format (xx.yyyyyy)" msgstr "Coordonnées GPS au format décimal (xx.yyyyyy)" -#: netbox/dcim/models/devices.py:724 netbox/dcim/models/sites.py:215 +#: dcim/models/devices.py:724 dcim/models/sites.py:215 msgid "longitude" msgstr "longitude" -#: netbox/dcim/models/devices.py:797 +#: dcim/models/devices.py:797 msgid "Device name must be unique per site." msgstr "Le nom de l'appareil doit être unique par site." -#: netbox/dcim/models/devices.py:808 netbox/ipam/models/services.py:75 +#: dcim/models/devices.py:808 ipam/models/services.py:75 msgid "device" msgstr "appareil" -#: netbox/dcim/models/devices.py:809 +#: dcim/models/devices.py:809 msgid "devices" msgstr "appareils" -#: netbox/dcim/models/devices.py:835 +#: dcim/models/devices.py:835 #, python-brace-format msgid "Rack {rack} does not belong to site {site}." msgstr "La baie {rack} n'appartient pas au site {site}." -#: netbox/dcim/models/devices.py:840 +#: dcim/models/devices.py:840 #, python-brace-format msgid "Location {location} does not belong to site {site}." msgstr "Emplacement {location} n'appartient pas au site {site}." -#: netbox/dcim/models/devices.py:846 +#: dcim/models/devices.py:846 #, python-brace-format msgid "Rack {rack} does not belong to location {location}." msgstr "La baie {rack} n'appartient pas au lieu {location}." -#: netbox/dcim/models/devices.py:853 +#: dcim/models/devices.py:853 msgid "Cannot select a rack face without assigning a rack." msgstr "" "Impossible de sélectionner la face de baie sans d'abord attribuer une baie." -#: netbox/dcim/models/devices.py:857 +#: dcim/models/devices.py:857 msgid "Cannot select a rack position without assigning a rack." msgstr "" "Impossible de sélectionner une position en baie sans l'attribuer en premier " "dans une baie." -#: netbox/dcim/models/devices.py:863 +#: dcim/models/devices.py:863 msgid "Position must be in increments of 0.5 rack units." msgstr "La position doit être exprimée par incréments de 0,5 unité de baie." -#: netbox/dcim/models/devices.py:867 +#: dcim/models/devices.py:867 msgid "Must specify rack face when defining rack position." msgstr "" "Doit spécifier la face de la baie lors de la définition de la position en " "baie." -#: netbox/dcim/models/devices.py:875 +#: dcim/models/devices.py:875 #, python-brace-format msgid "" "A 0U device type ({device_type}) cannot be assigned to a rack position." @@ -6166,7 +5719,7 @@ msgstr "" "Un appareil de type 0U ({device_type}) ne peut pas être attribué à une " "position en baie." -#: netbox/dcim/models/devices.py:886 +#: dcim/models/devices.py:886 msgid "" "Child device types cannot be assigned to a rack face. This is an attribute " "of the parent device." @@ -6174,7 +5727,7 @@ msgstr "" "Les appareils de type enfant ne peuvent pas être attribués à une face de " "baie. Il s'agit d'un attribut de l'appareil parent." -#: netbox/dcim/models/devices.py:893 +#: dcim/models/devices.py:893 msgid "" "Child device types cannot be assigned to a rack position. This is an " "attribute of the parent device." @@ -6182,7 +5735,7 @@ msgstr "" "Les appareils de type enfant ne peuvent pas être affectés à une position en " "baie. Il s'agit d'un attribut de l'appareil parent." -#: netbox/dcim/models/devices.py:907 +#: dcim/models/devices.py:907 #, python-brace-format msgid "" "U{position} is already occupied or does not have sufficient space to " @@ -6191,22 +5744,22 @@ msgstr "" "U{position} est déjà occupé ou ne dispose pas de suffisamment d'espace pour " "accueillir ce type d'appareil : {device_type} ({u_height}U)" -#: netbox/dcim/models/devices.py:922 +#: dcim/models/devices.py:922 #, python-brace-format msgid "{ip} is not an IPv4 address." msgstr "{ip} n'est pas une adresse IPv4." -#: netbox/dcim/models/devices.py:931 netbox/dcim/models/devices.py:946 +#: dcim/models/devices.py:931 dcim/models/devices.py:946 #, python-brace-format msgid "The specified IP address ({ip}) is not assigned to this device." msgstr "L'adresse IP spécifiée ({ip}) n'est pas attribué à cet appareil." -#: netbox/dcim/models/devices.py:937 +#: dcim/models/devices.py:937 #, python-brace-format msgid "{ip} is not an IPv6 address." msgstr "{ip} n'est pas une adresse IPv6." -#: netbox/dcim/models/devices.py:964 +#: dcim/models/devices.py:964 #, python-brace-format msgid "" "The assigned platform is limited to {platform_manufacturer} device types, " @@ -6216,17 +5769,17 @@ msgstr "" "d'appareils, mais le type de cet appareil appartient à " "{devicetype_manufacturer}." -#: netbox/dcim/models/devices.py:975 +#: dcim/models/devices.py:975 #, python-brace-format msgid "The assigned cluster belongs to a different site ({site})" msgstr "Le cluster attribué appartient à un autre site ({site})" -#: netbox/dcim/models/devices.py:983 +#: dcim/models/devices.py:983 msgid "A device assigned to a virtual chassis must have its position defined." msgstr "" "La position d'un appareil affecté à un châssis virtuel doit être définie." -#: netbox/dcim/models/devices.py:988 +#: dcim/models/devices.py:988 #, python-brace-format msgid "" "Device cannot be removed from virtual chassis {virtual_chassis} because it " @@ -6235,15 +5788,15 @@ msgstr "" "Le périphérique ne peut pas être retiré du châssis virtuel {virtual_chassis}" " car il est actuellement désigné comme son maître." -#: netbox/dcim/models/devices.py:1196 +#: dcim/models/devices.py:1196 msgid "module" msgstr "module" -#: netbox/dcim/models/devices.py:1197 +#: dcim/models/devices.py:1197 msgid "modules" msgstr "modules" -#: netbox/dcim/models/devices.py:1213 +#: dcim/models/devices.py:1213 #, python-brace-format msgid "" "Module must be installed within a module bay belonging to the assigned " @@ -6252,22 +5805,22 @@ msgstr "" "Le module doit être installé dans une baie de modules appartenant au " "périphérique attribué ({device})." -#: netbox/dcim/models/devices.py:1334 +#: dcim/models/devices.py:1334 msgid "domain" msgstr "domaine" -#: netbox/dcim/models/devices.py:1347 netbox/dcim/models/devices.py:1348 +#: dcim/models/devices.py:1347 dcim/models/devices.py:1348 msgid "virtual chassis" msgstr "châssis virtuel" -#: netbox/dcim/models/devices.py:1363 +#: dcim/models/devices.py:1363 #, python-brace-format msgid "" "The selected master ({master}) is not assigned to this virtual chassis." msgstr "" "Le master sélectionné ({master}) n'est pas attribué à ce châssis virtuel." -#: netbox/dcim/models/devices.py:1379 +#: dcim/models/devices.py:1379 #, python-brace-format msgid "" "Unable to delete virtual chassis {self}. There are member interfaces which " @@ -6276,62 +5829,62 @@ msgstr "" "Impossible de supprimer le châssis virtuel {self}. Il existe des interfaces " "membres qui forment des interfaces LAG inter-châssis." -#: netbox/dcim/models/devices.py:1404 netbox/vpn/models/l2vpn.py:37 +#: dcim/models/devices.py:1404 vpn/models/l2vpn.py:37 msgid "identifier" msgstr "identificateur" -#: netbox/dcim/models/devices.py:1405 +#: dcim/models/devices.py:1405 msgid "Numeric identifier unique to the parent device" msgstr "Identifiant numérique propre à l'appareil parent" -#: netbox/dcim/models/devices.py:1433 netbox/extras/models/customfields.py:225 -#: netbox/extras/models/models.py:107 netbox/extras/models/models.py:694 -#: netbox/netbox/models/__init__.py:115 +#: dcim/models/devices.py:1433 extras/models/customfields.py:225 +#: extras/models/models.py:107 extras/models/models.py:694 +#: netbox/models/__init__.py:115 msgid "comments" msgstr "commentaires" -#: netbox/dcim/models/devices.py:1449 +#: dcim/models/devices.py:1449 msgid "virtual device context" msgstr "contexte du périphérique virtuel" -#: netbox/dcim/models/devices.py:1450 +#: dcim/models/devices.py:1450 msgid "virtual device contexts" msgstr "contextes de périphériques virtuels" -#: netbox/dcim/models/devices.py:1482 +#: dcim/models/devices.py:1482 #, python-brace-format msgid "{ip} is not an IPv{family} address." msgstr "{ip} n'est pas un IPV{family} adresse." -#: netbox/dcim/models/devices.py:1488 +#: dcim/models/devices.py:1488 msgid "Primary IP address must belong to an interface on the assigned device." msgstr "" "L'adresse IP principale doit appartenir à une interface sur l'appareil " "attribué." -#: netbox/dcim/models/mixins.py:15 netbox/extras/models/configs.py:41 -#: netbox/extras/models/models.py:313 netbox/extras/models/models.py:522 -#: netbox/extras/models/search.py:48 netbox/ipam/models/ip.py:194 +#: dcim/models/mixins.py:15 extras/models/configs.py:41 +#: extras/models/models.py:313 extras/models/models.py:522 +#: extras/models/search.py:48 ipam/models/ip.py:194 msgid "weight" msgstr "poids" -#: netbox/dcim/models/mixins.py:22 +#: dcim/models/mixins.py:22 msgid "weight unit" msgstr "unité de poids" -#: netbox/dcim/models/mixins.py:51 +#: dcim/models/mixins.py:51 msgid "Must specify a unit when setting a weight" msgstr "Doit spécifier une unité lors de la définition d'un poids" -#: netbox/dcim/models/power.py:55 +#: dcim/models/power.py:55 msgid "power panel" msgstr "panneau d'alimentation" -#: netbox/dcim/models/power.py:56 +#: dcim/models/power.py:56 msgid "power panels" msgstr "panneaux d'alimentation" -#: netbox/dcim/models/power.py:70 +#: dcim/models/power.py:70 #, python-brace-format msgid "" "Location {location} ({location_site}) is in a different site than {site}" @@ -6339,43 +5892,43 @@ msgstr "" "Emplacement {location} ({location_site}) se trouve sur un site différent de " "{site}" -#: netbox/dcim/models/power.py:108 +#: dcim/models/power.py:108 msgid "supply" msgstr "fourniture" -#: netbox/dcim/models/power.py:114 +#: dcim/models/power.py:114 msgid "phase" msgstr "phase" -#: netbox/dcim/models/power.py:120 +#: dcim/models/power.py:120 msgid "voltage" msgstr "tension" -#: netbox/dcim/models/power.py:125 +#: dcim/models/power.py:125 msgid "amperage" msgstr "ampérage" -#: netbox/dcim/models/power.py:130 +#: dcim/models/power.py:130 msgid "max utilization" msgstr "utilisation maximale" -#: netbox/dcim/models/power.py:133 +#: dcim/models/power.py:133 msgid "Maximum permissible draw (percentage)" msgstr "Tirage maximum autorisé (pourcentage)" -#: netbox/dcim/models/power.py:136 +#: dcim/models/power.py:136 msgid "available power" msgstr "puissance disponible" -#: netbox/dcim/models/power.py:164 +#: dcim/models/power.py:164 msgid "power feed" msgstr "alimentation" -#: netbox/dcim/models/power.py:165 +#: dcim/models/power.py:165 msgid "power feeds" msgstr "alimentations" -#: netbox/dcim/models/power.py:179 +#: dcim/models/power.py:179 #, python-brace-format msgid "" "Rack {rack} ({rack_site}) and power panel {powerpanel} ({powerpanel_site}) " @@ -6384,65 +5937,65 @@ msgstr "" "Baie {rack} ({rack_site}) et panneau d'alimentation {powerpanel} " "({powerpanel_site}) se trouvent sur des sites différents." -#: netbox/dcim/models/power.py:190 +#: dcim/models/power.py:190 msgid "Voltage cannot be negative for AC supply" msgstr "" "La tension ne peut pas être négative pour l'alimentation en courant " "alternatif" -#: netbox/dcim/models/racks.py:47 +#: dcim/models/racks.py:47 msgid "width" msgstr "largeur" -#: netbox/dcim/models/racks.py:48 +#: dcim/models/racks.py:48 msgid "Rail-to-rail width" msgstr "Largeur rail à rail" -#: netbox/dcim/models/racks.py:56 +#: dcim/models/racks.py:56 msgid "Height in rack units" msgstr "Hauteur en U de la baie" -#: netbox/dcim/models/racks.py:60 +#: dcim/models/racks.py:60 msgid "starting unit" msgstr "unité de départ" -#: netbox/dcim/models/racks.py:62 +#: dcim/models/racks.py:62 msgid "Starting unit for rack" msgstr "Unité de départ pour baie" -#: netbox/dcim/models/racks.py:66 +#: dcim/models/racks.py:66 msgid "descending units" msgstr "unités décroissantes" -#: netbox/dcim/models/racks.py:67 +#: dcim/models/racks.py:67 msgid "Units are numbered top-to-bottom" msgstr "Les unités sont numérotées de haut en bas" -#: netbox/dcim/models/racks.py:72 +#: dcim/models/racks.py:72 msgid "outer width" msgstr "largeur extérieure" -#: netbox/dcim/models/racks.py:75 +#: dcim/models/racks.py:75 msgid "Outer dimension of rack (width)" msgstr "Dimension extérieure de la baie (largeur)" -#: netbox/dcim/models/racks.py:78 +#: dcim/models/racks.py:78 msgid "outer depth" msgstr "profondeur extérieure" -#: netbox/dcim/models/racks.py:81 +#: dcim/models/racks.py:81 msgid "Outer dimension of rack (depth)" msgstr "Dimension extérieure de la baie (profondeur)" -#: netbox/dcim/models/racks.py:84 +#: dcim/models/racks.py:84 msgid "outer unit" msgstr "unité extérieure" -#: netbox/dcim/models/racks.py:90 +#: dcim/models/racks.py:90 msgid "mounting depth" msgstr "profondeur de montage" -#: netbox/dcim/models/racks.py:94 +#: dcim/models/racks.py:94 msgid "" "Maximum depth of a mounted device, in millimeters. For four-post racks, this" " is the distance between the front and rear rails." @@ -6450,76 +6003,75 @@ msgstr "" "Profondeur maximale d'un appareil monté, en millimètres. Pour les supports à" " quatre montants, il s'agit de la distance entre les rails avant et arrière." -#: netbox/dcim/models/racks.py:102 +#: dcim/models/racks.py:102 msgid "max weight" msgstr "poids maximum" -#: netbox/dcim/models/racks.py:105 +#: dcim/models/racks.py:105 msgid "Maximum load capacity for the rack" msgstr "Capacité de charge maximale de la baie" -#: netbox/dcim/models/racks.py:125 netbox/dcim/models/racks.py:252 +#: dcim/models/racks.py:125 dcim/models/racks.py:252 msgid "form factor" msgstr "facteur de forme" -#: netbox/dcim/models/racks.py:162 +#: dcim/models/racks.py:162 msgid "rack type" msgstr "type de rack" -#: netbox/dcim/models/racks.py:163 +#: dcim/models/racks.py:163 msgid "rack types" msgstr "types de rayonnages" -#: netbox/dcim/models/racks.py:180 netbox/dcim/models/racks.py:379 +#: dcim/models/racks.py:180 dcim/models/racks.py:379 msgid "Must specify a unit when setting an outer width/depth" msgstr "" "Doit spécifier une unité lors du réglage d'une largeur/profondeur extérieure" -#: netbox/dcim/models/racks.py:184 netbox/dcim/models/racks.py:383 +#: dcim/models/racks.py:184 dcim/models/racks.py:383 msgid "Must specify a unit when setting a maximum weight" msgstr "Doit spécifier une unité lors de la définition d'un poids maximum" -#: netbox/dcim/models/racks.py:230 +#: dcim/models/racks.py:230 msgid "rack role" msgstr "rôle de la baie" -#: netbox/dcim/models/racks.py:231 +#: dcim/models/racks.py:231 msgid "rack roles" msgstr "rôles de la baie" -#: netbox/dcim/models/racks.py:274 +#: dcim/models/racks.py:274 msgid "facility ID" msgstr "ID de l'établissement" -#: netbox/dcim/models/racks.py:275 +#: dcim/models/racks.py:275 msgid "Locally-assigned identifier" msgstr "Identifiant attribué localement" -#: netbox/dcim/models/racks.py:308 netbox/ipam/forms/bulk_import.py:201 -#: netbox/ipam/forms/bulk_import.py:266 netbox/ipam/forms/bulk_import.py:301 -#: netbox/ipam/forms/bulk_import.py:459 -#: netbox/virtualization/forms/bulk_import.py:112 +#: dcim/models/racks.py:308 ipam/forms/bulk_import.py:201 +#: ipam/forms/bulk_import.py:266 ipam/forms/bulk_import.py:301 +#: ipam/forms/bulk_import.py:459 virtualization/forms/bulk_import.py:112 msgid "Functional role" msgstr "Rôle fonctionnel" -#: netbox/dcim/models/racks.py:321 +#: dcim/models/racks.py:321 msgid "A unique tag used to identify this rack" msgstr "Une étiquette unique utilisée pour identifier cette baie" -#: netbox/dcim/models/racks.py:359 +#: dcim/models/racks.py:359 msgid "rack" msgstr "baie" -#: netbox/dcim/models/racks.py:360 +#: dcim/models/racks.py:360 msgid "racks" msgstr "baies" -#: netbox/dcim/models/racks.py:375 +#: dcim/models/racks.py:375 #, python-brace-format msgid "Assigned location must belong to parent site ({site})." msgstr "L'emplacement attribué doit appartenir au site parent ({site})." -#: netbox/dcim/models/racks.py:393 +#: dcim/models/racks.py:393 #, python-brace-format msgid "" "Rack must be at least {min_height}U tall to house currently installed " @@ -6528,7 +6080,7 @@ msgstr "" "La baie doit être au moins {min_height} pour héberger les appareils " "actuellement installés." -#: netbox/dcim/models/racks.py:400 +#: dcim/models/racks.py:400 #, python-brace-format msgid "" "Rack unit numbering must begin at {position} or less to house currently " @@ -6537,958 +6089,895 @@ msgstr "" "La numérotation des unités de baie doit commencer à {position} ou moins pour" " héberger les appareils actuellement installés." -#: netbox/dcim/models/racks.py:408 +#: dcim/models/racks.py:408 #, python-brace-format msgid "Location must be from the same site, {site}." msgstr "L'emplacement doit provenir du même site, {site}." -#: netbox/dcim/models/racks.py:670 +#: dcim/models/racks.py:670 msgid "units" msgstr "des unités" -#: netbox/dcim/models/racks.py:696 +#: dcim/models/racks.py:696 msgid "rack reservation" msgstr "réservation de baie" -#: netbox/dcim/models/racks.py:697 +#: dcim/models/racks.py:697 msgid "rack reservations" msgstr "réservations de baies" -#: netbox/dcim/models/racks.py:714 +#: dcim/models/racks.py:714 #, python-brace-format msgid "Invalid unit(s) for {height}U rack: {unit_list}" msgstr "Unité(s) non valide(s) pour une baie à {height}U : {unit_list}" -#: netbox/dcim/models/racks.py:727 +#: dcim/models/racks.py:727 #, python-brace-format msgid "The following units have already been reserved: {unit_list}" msgstr "Les unités suivantes ont déjà été réservées : {unit_list}" -#: netbox/dcim/models/sites.py:49 +#: dcim/models/sites.py:49 msgid "A top-level region with this name already exists." msgstr "Une région de niveau supérieur portant ce nom existe déjà." -#: netbox/dcim/models/sites.py:59 +#: dcim/models/sites.py:59 msgid "A top-level region with this slug already exists." msgstr "Une région de niveau supérieur contenant ce slug existe déjà." -#: netbox/dcim/models/sites.py:62 +#: dcim/models/sites.py:62 msgid "region" msgstr "région" -#: netbox/dcim/models/sites.py:63 +#: dcim/models/sites.py:63 msgid "regions" msgstr "régions" -#: netbox/dcim/models/sites.py:102 +#: dcim/models/sites.py:102 msgid "A top-level site group with this name already exists." msgstr "Un groupe de sites de niveau supérieur portant ce nom existe déjà." -#: netbox/dcim/models/sites.py:112 +#: dcim/models/sites.py:112 msgid "A top-level site group with this slug already exists." msgstr "Un groupe de sites de niveau supérieur contenant ce slug existe déjà." -#: netbox/dcim/models/sites.py:115 +#: dcim/models/sites.py:115 msgid "site group" msgstr "groupe de sites" -#: netbox/dcim/models/sites.py:116 +#: dcim/models/sites.py:116 msgid "site groups" msgstr "groupes de sites" -#: netbox/dcim/models/sites.py:141 +#: dcim/models/sites.py:141 msgid "Full name of the site" msgstr "Nom complet du site" -#: netbox/dcim/models/sites.py:181 netbox/dcim/models/sites.py:279 +#: dcim/models/sites.py:181 dcim/models/sites.py:279 msgid "facility" msgstr "installation" -#: netbox/dcim/models/sites.py:184 netbox/dcim/models/sites.py:282 +#: dcim/models/sites.py:184 dcim/models/sites.py:282 msgid "Local facility ID or description" msgstr "Identifiant ou description de l'établissement local" -#: netbox/dcim/models/sites.py:195 +#: dcim/models/sites.py:195 msgid "physical address" msgstr "adresse physique" -#: netbox/dcim/models/sites.py:198 +#: dcim/models/sites.py:198 msgid "Physical location of the building" msgstr "Emplacement physique du bâtiment" -#: netbox/dcim/models/sites.py:201 +#: dcim/models/sites.py:201 msgid "shipping address" msgstr "adresse de livraison" -#: netbox/dcim/models/sites.py:204 +#: dcim/models/sites.py:204 msgid "If different from the physical address" msgstr "Si elle est différente de l'adresse physique" -#: netbox/dcim/models/sites.py:238 +#: dcim/models/sites.py:238 msgid "site" msgstr "site" -#: netbox/dcim/models/sites.py:239 +#: dcim/models/sites.py:239 msgid "sites" msgstr "sites" -#: netbox/dcim/models/sites.py:309 +#: dcim/models/sites.py:309 msgid "A location with this name already exists within the specified site." msgstr "Un emplacement portant ce nom existe déjà au sein du site spécifié." -#: netbox/dcim/models/sites.py:319 +#: dcim/models/sites.py:319 msgid "A location with this slug already exists within the specified site." msgstr "Un emplacement contenant ce slug existe déjà dans le site spécifié." -#: netbox/dcim/models/sites.py:322 +#: dcim/models/sites.py:322 msgid "location" msgstr "emplacement" -#: netbox/dcim/models/sites.py:323 +#: dcim/models/sites.py:323 msgid "locations" msgstr "les lieux" -#: netbox/dcim/models/sites.py:337 +#: dcim/models/sites.py:337 #, python-brace-format msgid "Parent location ({parent}) must belong to the same site ({site})." msgstr "" "Lieu de résidence du parent ({parent}) doit appartenir au même site " "({site})." -#: netbox/dcim/tables/cables.py:55 +#: dcim/tables/cables.py:55 msgid "Termination A" msgstr "Terminaison A" -#: netbox/dcim/tables/cables.py:60 +#: dcim/tables/cables.py:60 msgid "Termination B" msgstr "Terminaison B" -#: netbox/dcim/tables/cables.py:66 netbox/wireless/tables/wirelesslink.py:23 +#: dcim/tables/cables.py:66 wireless/tables/wirelesslink.py:23 msgid "Device A" msgstr "Appareil A" -#: netbox/dcim/tables/cables.py:72 netbox/wireless/tables/wirelesslink.py:32 +#: dcim/tables/cables.py:72 wireless/tables/wirelesslink.py:32 msgid "Device B" msgstr "Appareil B" -#: netbox/dcim/tables/cables.py:78 +#: dcim/tables/cables.py:78 msgid "Location A" msgstr "Lieu A" -#: netbox/dcim/tables/cables.py:84 +#: dcim/tables/cables.py:84 msgid "Location B" msgstr "Lieu B" -#: netbox/dcim/tables/cables.py:90 +#: dcim/tables/cables.py:90 msgid "Rack A" msgstr "Baie A" -#: netbox/dcim/tables/cables.py:96 +#: dcim/tables/cables.py:96 msgid "Rack B" msgstr "Baie B" -#: netbox/dcim/tables/cables.py:102 +#: dcim/tables/cables.py:102 msgid "Site A" msgstr "Site A" -#: netbox/dcim/tables/cables.py:108 +#: dcim/tables/cables.py:108 msgid "Site B" msgstr "Site B" -#: netbox/dcim/tables/connections.py:31 netbox/dcim/tables/connections.py:50 -#: netbox/dcim/tables/connections.py:71 -#: netbox/templates/dcim/inc/connection_endpoints.html:16 +#: dcim/tables/connections.py:31 dcim/tables/connections.py:50 +#: dcim/tables/connections.py:71 +#: templates/dcim/inc/connection_endpoints.html:16 msgid "Reachable" msgstr "Joignable" -#: netbox/dcim/tables/devices.py:58 netbox/dcim/tables/devices.py:106 -#: netbox/dcim/tables/racks.py:150 netbox/dcim/tables/sites.py:105 -#: netbox/dcim/tables/sites.py:148 netbox/extras/tables/tables.py:545 -#: netbox/netbox/navigation/menu.py:69 netbox/netbox/navigation/menu.py:73 -#: netbox/netbox/navigation/menu.py:75 -#: netbox/virtualization/forms/model_forms.py:122 -#: netbox/virtualization/tables/clusters.py:83 -#: netbox/virtualization/views.py:206 +#: dcim/tables/devices.py:58 dcim/tables/devices.py:106 +#: dcim/tables/racks.py:150 dcim/tables/sites.py:105 dcim/tables/sites.py:148 +#: extras/tables/tables.py:545 netbox/navigation/menu.py:69 +#: netbox/navigation/menu.py:73 netbox/navigation/menu.py:75 +#: virtualization/forms/model_forms.py:122 +#: virtualization/tables/clusters.py:83 virtualization/views.py:206 msgid "Devices" msgstr "Appareils" -#: netbox/dcim/tables/devices.py:63 netbox/dcim/tables/devices.py:111 -#: netbox/virtualization/tables/clusters.py:88 +#: dcim/tables/devices.py:63 dcim/tables/devices.py:111 +#: virtualization/tables/clusters.py:88 msgid "VMs" msgstr "machines virtuelles" -#: netbox/dcim/tables/devices.py:100 netbox/dcim/tables/devices.py:216 -#: netbox/extras/forms/model_forms.py:630 -#: netbox/templates/dcim/device.html:112 -#: netbox/templates/dcim/device/render_config.html:11 -#: netbox/templates/dcim/device/render_config.html:14 -#: netbox/templates/dcim/devicerole.html:44 -#: netbox/templates/dcim/platform.html:41 -#: netbox/templates/extras/configtemplate.html:10 -#: netbox/templates/virtualization/virtualmachine.html:48 -#: netbox/templates/virtualization/virtualmachine/render_config.html:11 -#: netbox/templates/virtualization/virtualmachine/render_config.html:14 -#: netbox/virtualization/tables/virtualmachines.py:107 +#: dcim/tables/devices.py:100 dcim/tables/devices.py:216 +#: extras/forms/model_forms.py:630 templates/dcim/device.html:112 +#: templates/dcim/device/render_config.html:11 +#: templates/dcim/device/render_config.html:14 +#: templates/dcim/devicerole.html:44 templates/dcim/platform.html:41 +#: templates/extras/configtemplate.html:10 +#: templates/virtualization/virtualmachine.html:48 +#: templates/virtualization/virtualmachine/render_config.html:11 +#: templates/virtualization/virtualmachine/render_config.html:14 +#: virtualization/tables/virtualmachines.py:107 msgid "Config Template" msgstr "Modèle de configuration" -#: netbox/dcim/tables/devices.py:150 netbox/templates/dcim/sitegroup.html:26 +#: dcim/tables/devices.py:150 templates/dcim/sitegroup.html:26 msgid "Site Group" msgstr "Groupe de sites" -#: netbox/dcim/tables/devices.py:187 netbox/dcim/tables/devices.py:1068 -#: netbox/ipam/forms/bulk_import.py:503 netbox/ipam/forms/model_forms.py:306 -#: netbox/ipam/forms/model_forms.py:315 netbox/ipam/tables/ip.py:356 -#: netbox/ipam/tables/ip.py:423 netbox/ipam/tables/ip.py:446 -#: netbox/templates/ipam/ipaddress.html:11 -#: netbox/virtualization/tables/virtualmachines.py:95 +#: dcim/tables/devices.py:187 dcim/tables/devices.py:1068 +#: ipam/forms/bulk_import.py:503 ipam/forms/model_forms.py:306 +#: ipam/forms/model_forms.py:315 ipam/tables/ip.py:356 ipam/tables/ip.py:423 +#: ipam/tables/ip.py:446 templates/ipam/ipaddress.html:11 +#: virtualization/tables/virtualmachines.py:95 msgid "IP Address" msgstr "Adresse IP" -#: netbox/dcim/tables/devices.py:191 netbox/dcim/tables/devices.py:1072 -#: netbox/virtualization/tables/virtualmachines.py:86 +#: dcim/tables/devices.py:191 dcim/tables/devices.py:1072 +#: virtualization/tables/virtualmachines.py:86 msgid "IPv4 Address" msgstr "Adresse IPv4" -#: netbox/dcim/tables/devices.py:195 netbox/dcim/tables/devices.py:1076 -#: netbox/virtualization/tables/virtualmachines.py:90 +#: dcim/tables/devices.py:195 dcim/tables/devices.py:1076 +#: virtualization/tables/virtualmachines.py:90 msgid "IPv6 Address" msgstr "Adresse IPv6" -#: netbox/dcim/tables/devices.py:210 +#: dcim/tables/devices.py:210 msgid "VC Position" msgstr "Position en VC" -#: netbox/dcim/tables/devices.py:213 +#: dcim/tables/devices.py:213 msgid "VC Priority" msgstr "Priorité VC" -#: netbox/dcim/tables/devices.py:220 netbox/templates/dcim/device_edit.html:38 -#: netbox/templates/dcim/devicebay_populate.html:16 +#: dcim/tables/devices.py:220 templates/dcim/device_edit.html:38 +#: templates/dcim/devicebay_populate.html:16 msgid "Parent Device" msgstr "Appareil parent" -#: netbox/dcim/tables/devices.py:225 +#: dcim/tables/devices.py:225 msgid "Position (Device Bay)" msgstr "Position (baie de l'appareil)" -#: netbox/dcim/tables/devices.py:234 +#: dcim/tables/devices.py:234 msgid "Console ports" msgstr "Ports de console" -#: netbox/dcim/tables/devices.py:237 +#: dcim/tables/devices.py:237 msgid "Console server ports" msgstr "Ports du serveur de consoles" -#: netbox/dcim/tables/devices.py:240 +#: dcim/tables/devices.py:240 msgid "Power ports" msgstr "Ports d'alimentation" -#: netbox/dcim/tables/devices.py:243 +#: dcim/tables/devices.py:243 msgid "Power outlets" msgstr "Prises de courant" -#: netbox/dcim/tables/devices.py:246 netbox/dcim/tables/devices.py:1081 -#: netbox/dcim/tables/devicetypes.py:128 netbox/dcim/views.py:1042 -#: netbox/dcim/views.py:1281 netbox/dcim/views.py:1977 -#: netbox/netbox/navigation/menu.py:94 netbox/netbox/navigation/menu.py:250 -#: netbox/templates/dcim/device/base.html:37 -#: netbox/templates/dcim/device_list.html:43 -#: netbox/templates/dcim/devicetype/base.html:34 -#: netbox/templates/dcim/module.html:34 -#: netbox/templates/dcim/moduletype/base.html:34 -#: netbox/templates/dcim/virtualdevicecontext.html:61 -#: netbox/templates/dcim/virtualdevicecontext.html:81 -#: netbox/templates/virtualization/virtualmachine/base.html:27 -#: netbox/templates/virtualization/virtualmachine_list.html:14 -#: netbox/virtualization/tables/virtualmachines.py:101 -#: netbox/virtualization/views.py:366 netbox/wireless/tables/wirelesslan.py:55 +#: dcim/tables/devices.py:246 dcim/tables/devices.py:1081 +#: dcim/tables/devicetypes.py:128 dcim/views.py:1042 dcim/views.py:1281 +#: dcim/views.py:1977 netbox/navigation/menu.py:94 +#: netbox/navigation/menu.py:250 templates/dcim/device/base.html:37 +#: templates/dcim/device_list.html:43 templates/dcim/devicetype/base.html:34 +#: templates/dcim/inc/moduletype_buttons.html:25 templates/dcim/module.html:34 +#: templates/dcim/virtualdevicecontext.html:61 +#: templates/dcim/virtualdevicecontext.html:81 +#: templates/virtualization/virtualmachine/base.html:27 +#: templates/virtualization/virtualmachine_list.html:14 +#: virtualization/tables/virtualmachines.py:101 virtualization/views.py:366 +#: wireless/tables/wirelesslan.py:55 msgid "Interfaces" msgstr "Interfaces" -#: netbox/dcim/tables/devices.py:249 +#: dcim/tables/devices.py:249 msgid "Front ports" msgstr "Ports avant" -#: netbox/dcim/tables/devices.py:255 +#: dcim/tables/devices.py:255 msgid "Device bays" msgstr "Baies pour appareils" -#: netbox/dcim/tables/devices.py:258 +#: dcim/tables/devices.py:258 msgid "Module bays" msgstr "Baies pour modules" -#: netbox/dcim/tables/devices.py:261 +#: dcim/tables/devices.py:261 msgid "Inventory items" msgstr "Articles d'inventaire" -#: netbox/dcim/tables/devices.py:305 netbox/dcim/tables/modules.py:56 -#: netbox/templates/dcim/modulebay.html:17 +#: dcim/tables/devices.py:305 dcim/tables/modules.py:56 +#: templates/dcim/modulebay.html:17 msgid "Module Bay" msgstr "Module Bay" -#: netbox/dcim/tables/devices.py:318 netbox/dcim/tables/devicetypes.py:47 -#: netbox/dcim/tables/devicetypes.py:143 netbox/dcim/views.py:1117 -#: netbox/dcim/views.py:2075 netbox/netbox/navigation/menu.py:103 -#: netbox/templates/dcim/device/base.html:52 -#: netbox/templates/dcim/device_list.html:71 -#: netbox/templates/dcim/devicetype/base.html:49 -#: netbox/templates/dcim/inc/panels/inventory_items.html:6 -#: netbox/templates/dcim/inventoryitemrole.html:32 +#: dcim/tables/devices.py:318 dcim/tables/devicetypes.py:47 +#: dcim/tables/devicetypes.py:143 dcim/views.py:1117 dcim/views.py:2075 +#: netbox/navigation/menu.py:103 templates/dcim/device/base.html:52 +#: templates/dcim/device_list.html:71 templates/dcim/devicetype/base.html:49 +#: templates/dcim/inc/panels/inventory_items.html:6 +#: templates/dcim/inventoryitemrole.html:32 msgid "Inventory Items" msgstr "Articles d'inventaire" -#: netbox/dcim/tables/devices.py:333 +#: dcim/tables/devices.py:333 msgid "Cable Color" msgstr "Couleur du câble" -#: netbox/dcim/tables/devices.py:339 +#: dcim/tables/devices.py:339 msgid "Link Peers" msgstr "Lier les pairs" -#: netbox/dcim/tables/devices.py:342 +#: dcim/tables/devices.py:342 msgid "Mark Connected" msgstr "Marquer comme connecté" -#: netbox/dcim/tables/devices.py:461 +#: dcim/tables/devices.py:461 msgid "Maximum draw (W)" msgstr "Tirage maximal (W)" -#: netbox/dcim/tables/devices.py:464 +#: dcim/tables/devices.py:464 msgid "Allocated draw (W)" msgstr "Tirage alloué (W)" -#: netbox/dcim/tables/devices.py:558 netbox/ipam/forms/model_forms.py:701 -#: netbox/ipam/tables/fhrp.py:28 netbox/ipam/views.py:596 -#: netbox/ipam/views.py:696 netbox/netbox/navigation/menu.py:158 -#: netbox/netbox/navigation/menu.py:160 -#: netbox/templates/dcim/interface.html:339 -#: netbox/templates/ipam/ipaddress_bulk_add.html:15 -#: netbox/templates/ipam/service.html:40 -#: netbox/templates/virtualization/vminterface.html:85 -#: netbox/vpn/tables/tunnels.py:98 +#: dcim/tables/devices.py:558 ipam/forms/model_forms.py:701 +#: ipam/tables/fhrp.py:28 ipam/views.py:596 ipam/views.py:696 +#: netbox/navigation/menu.py:158 netbox/navigation/menu.py:160 +#: templates/dcim/interface.html:339 templates/ipam/ipaddress_bulk_add.html:15 +#: templates/ipam/service.html:40 templates/virtualization/vminterface.html:85 +#: vpn/tables/tunnels.py:98 msgid "IP Addresses" msgstr "Adresses IP" -#: netbox/dcim/tables/devices.py:564 netbox/netbox/navigation/menu.py:202 -#: netbox/templates/ipam/inc/panels/fhrp_groups.html:6 +#: dcim/tables/devices.py:564 netbox/navigation/menu.py:202 +#: templates/ipam/inc/panels/fhrp_groups.html:6 msgid "FHRP Groups" msgstr "Groupes FHRP" -#: netbox/dcim/tables/devices.py:576 netbox/templates/dcim/interface.html:89 -#: netbox/templates/virtualization/vminterface.html:67 -#: netbox/templates/vpn/tunnel.html:18 -#: netbox/templates/vpn/tunneltermination.html:13 -#: netbox/vpn/forms/bulk_edit.py:76 netbox/vpn/forms/bulk_import.py:76 -#: netbox/vpn/forms/filtersets.py:42 netbox/vpn/forms/filtersets.py:82 -#: netbox/vpn/forms/model_forms.py:60 netbox/vpn/forms/model_forms.py:145 -#: netbox/vpn/tables/tunnels.py:78 +#: dcim/tables/devices.py:576 templates/dcim/interface.html:89 +#: templates/virtualization/vminterface.html:67 templates/vpn/tunnel.html:18 +#: templates/vpn/tunneltermination.html:13 vpn/forms/bulk_edit.py:76 +#: vpn/forms/bulk_import.py:76 vpn/forms/filtersets.py:42 +#: vpn/forms/filtersets.py:82 vpn/forms/model_forms.py:60 +#: vpn/forms/model_forms.py:145 vpn/tables/tunnels.py:78 msgid "Tunnel" msgstr "Tunnel" -#: netbox/dcim/tables/devices.py:604 netbox/dcim/tables/devicetypes.py:227 -#: netbox/templates/dcim/interface.html:65 +#: dcim/tables/devices.py:604 dcim/tables/devicetypes.py:227 +#: templates/dcim/interface.html:65 msgid "Management Only" msgstr "Gestion uniquement" -#: netbox/dcim/tables/devices.py:623 +#: dcim/tables/devices.py:623 msgid "VDCs" msgstr "VDC" -#: netbox/dcim/tables/devices.py:873 netbox/templates/dcim/modulebay.html:53 +#: dcim/tables/devices.py:873 templates/dcim/modulebay.html:53 msgid "Installed Module" msgstr "Module installé" -#: netbox/dcim/tables/devices.py:876 +#: dcim/tables/devices.py:876 msgid "Module Serial" msgstr "Série du module" -#: netbox/dcim/tables/devices.py:880 +#: dcim/tables/devices.py:880 msgid "Module Asset Tag" msgstr "Étiquette d'actif du module" -#: netbox/dcim/tables/devices.py:889 +#: dcim/tables/devices.py:889 msgid "Module Status" msgstr "État du module" -#: netbox/dcim/tables/devices.py:944 netbox/dcim/tables/devicetypes.py:312 -#: netbox/templates/dcim/inventoryitem.html:40 +#: dcim/tables/devices.py:944 dcim/tables/devicetypes.py:312 +#: templates/dcim/inventoryitem.html:40 msgid "Component" msgstr "Composant" -#: netbox/dcim/tables/devices.py:1000 +#: dcim/tables/devices.py:1000 msgid "Items" msgstr "Objets" -#: netbox/dcim/tables/devicetypes.py:37 netbox/netbox/navigation/menu.py:84 -#: netbox/netbox/navigation/menu.py:86 +#: dcim/tables/devicetypes.py:37 netbox/navigation/menu.py:84 +#: netbox/navigation/menu.py:86 msgid "Device Types" msgstr "Types d'appareils" -#: netbox/dcim/tables/devicetypes.py:42 netbox/netbox/navigation/menu.py:87 +#: dcim/tables/devicetypes.py:42 netbox/navigation/menu.py:87 msgid "Module Types" msgstr "Types de modules" -#: netbox/dcim/tables/devicetypes.py:52 netbox/extras/forms/filtersets.py:371 -#: netbox/extras/forms/model_forms.py:537 netbox/extras/tables/tables.py:540 -#: netbox/netbox/navigation/menu.py:78 +#: dcim/tables/devicetypes.py:52 extras/forms/filtersets.py:371 +#: extras/forms/model_forms.py:537 extras/tables/tables.py:540 +#: netbox/navigation/menu.py:78 msgid "Platforms" msgstr "Plateformes" -#: netbox/dcim/tables/devicetypes.py:84 -#: netbox/templates/dcim/devicetype.html:29 +#: dcim/tables/devicetypes.py:84 templates/dcim/devicetype.html:29 msgid "Default Platform" msgstr "Plateforme par défaut" -#: netbox/dcim/tables/devicetypes.py:88 -#: netbox/templates/dcim/devicetype.html:45 +#: dcim/tables/devicetypes.py:88 templates/dcim/devicetype.html:45 msgid "Full Depth" msgstr "Pleine profondeur" -#: netbox/dcim/tables/devicetypes.py:98 +#: dcim/tables/devicetypes.py:98 msgid "U Height" msgstr "Hauteur en U" -#: netbox/dcim/tables/devicetypes.py:113 netbox/dcim/tables/modules.py:26 -#: netbox/dcim/tables/racks.py:89 +#: dcim/tables/devicetypes.py:113 dcim/tables/modules.py:26 +#: dcim/tables/racks.py:89 msgid "Instances" msgstr "Instances" -#: netbox/dcim/tables/devicetypes.py:116 netbox/dcim/views.py:982 -#: netbox/dcim/views.py:1221 netbox/dcim/views.py:1913 -#: netbox/netbox/navigation/menu.py:97 -#: netbox/templates/dcim/device/base.html:25 -#: netbox/templates/dcim/device_list.html:15 -#: netbox/templates/dcim/devicetype/base.html:22 -#: netbox/templates/dcim/module.html:22 -#: netbox/templates/dcim/moduletype/base.html:22 +#: dcim/tables/devicetypes.py:116 dcim/views.py:982 dcim/views.py:1221 +#: dcim/views.py:1913 netbox/navigation/menu.py:97 +#: templates/dcim/device/base.html:25 templates/dcim/device_list.html:15 +#: templates/dcim/devicetype/base.html:22 +#: templates/dcim/inc/moduletype_buttons.html:13 templates/dcim/module.html:22 msgid "Console Ports" msgstr "Ports de console" -#: netbox/dcim/tables/devicetypes.py:119 netbox/dcim/views.py:997 -#: netbox/dcim/views.py:1236 netbox/dcim/views.py:1929 -#: netbox/netbox/navigation/menu.py:98 -#: netbox/templates/dcim/device/base.html:28 -#: netbox/templates/dcim/device_list.html:22 -#: netbox/templates/dcim/devicetype/base.html:25 -#: netbox/templates/dcim/module.html:25 -#: netbox/templates/dcim/moduletype/base.html:25 +#: dcim/tables/devicetypes.py:119 dcim/views.py:997 dcim/views.py:1236 +#: dcim/views.py:1929 netbox/navigation/menu.py:98 +#: templates/dcim/device/base.html:28 templates/dcim/device_list.html:22 +#: templates/dcim/devicetype/base.html:25 +#: templates/dcim/inc/moduletype_buttons.html:16 templates/dcim/module.html:25 msgid "Console Server Ports" msgstr "Ports du serveur de consoles" -#: netbox/dcim/tables/devicetypes.py:122 netbox/dcim/views.py:1012 -#: netbox/dcim/views.py:1251 netbox/dcim/views.py:1945 -#: netbox/netbox/navigation/menu.py:99 -#: netbox/templates/dcim/device/base.html:31 -#: netbox/templates/dcim/device_list.html:29 -#: netbox/templates/dcim/devicetype/base.html:28 -#: netbox/templates/dcim/module.html:28 -#: netbox/templates/dcim/moduletype/base.html:28 +#: dcim/tables/devicetypes.py:122 dcim/views.py:1012 dcim/views.py:1251 +#: dcim/views.py:1945 netbox/navigation/menu.py:99 +#: templates/dcim/device/base.html:31 templates/dcim/device_list.html:29 +#: templates/dcim/devicetype/base.html:28 +#: templates/dcim/inc/moduletype_buttons.html:19 templates/dcim/module.html:28 msgid "Power Ports" msgstr "Ports d'alimentation" -#: netbox/dcim/tables/devicetypes.py:125 netbox/dcim/views.py:1027 -#: netbox/dcim/views.py:1266 netbox/dcim/views.py:1961 -#: netbox/netbox/navigation/menu.py:100 -#: netbox/templates/dcim/device/base.html:34 -#: netbox/templates/dcim/device_list.html:36 -#: netbox/templates/dcim/devicetype/base.html:31 -#: netbox/templates/dcim/module.html:31 -#: netbox/templates/dcim/moduletype/base.html:31 +#: dcim/tables/devicetypes.py:125 dcim/views.py:1027 dcim/views.py:1266 +#: dcim/views.py:1961 netbox/navigation/menu.py:100 +#: templates/dcim/device/base.html:34 templates/dcim/device_list.html:36 +#: templates/dcim/devicetype/base.html:31 +#: templates/dcim/inc/moduletype_buttons.html:22 templates/dcim/module.html:31 msgid "Power Outlets" msgstr "Prises de courant" -#: netbox/dcim/tables/devicetypes.py:131 netbox/dcim/views.py:1057 -#: netbox/dcim/views.py:1296 netbox/dcim/views.py:1999 -#: netbox/netbox/navigation/menu.py:95 -#: netbox/templates/dcim/device/base.html:40 -#: netbox/templates/dcim/devicetype/base.html:37 -#: netbox/templates/dcim/module.html:37 -#: netbox/templates/dcim/moduletype/base.html:37 +#: dcim/tables/devicetypes.py:131 dcim/views.py:1057 dcim/views.py:1296 +#: dcim/views.py:1999 netbox/navigation/menu.py:95 +#: templates/dcim/device/base.html:40 templates/dcim/devicetype/base.html:37 +#: templates/dcim/inc/moduletype_buttons.html:28 templates/dcim/module.html:37 msgid "Front Ports" msgstr "Ports avant" -#: netbox/dcim/tables/devicetypes.py:134 netbox/dcim/views.py:1072 -#: netbox/dcim/views.py:1311 netbox/dcim/views.py:2015 -#: netbox/netbox/navigation/menu.py:96 -#: netbox/templates/dcim/device/base.html:43 -#: netbox/templates/dcim/device_list.html:50 -#: netbox/templates/dcim/devicetype/base.html:40 -#: netbox/templates/dcim/module.html:40 -#: netbox/templates/dcim/moduletype/base.html:40 +#: dcim/tables/devicetypes.py:134 dcim/views.py:1072 dcim/views.py:1311 +#: dcim/views.py:2015 netbox/navigation/menu.py:96 +#: templates/dcim/device/base.html:43 templates/dcim/device_list.html:50 +#: templates/dcim/devicetype/base.html:40 +#: templates/dcim/inc/moduletype_buttons.html:31 templates/dcim/module.html:40 msgid "Rear Ports" msgstr "Ports arrière" -#: netbox/dcim/tables/devicetypes.py:137 netbox/dcim/views.py:1102 -#: netbox/dcim/views.py:2055 netbox/netbox/navigation/menu.py:102 -#: netbox/templates/dcim/device/base.html:49 -#: netbox/templates/dcim/device_list.html:57 -#: netbox/templates/dcim/devicetype/base.html:46 +#: dcim/tables/devicetypes.py:137 dcim/views.py:1102 dcim/views.py:2055 +#: netbox/navigation/menu.py:102 templates/dcim/device/base.html:49 +#: templates/dcim/device_list.html:57 templates/dcim/devicetype/base.html:46 msgid "Device Bays" msgstr "Baies pour appareils" -#: netbox/dcim/tables/devicetypes.py:140 netbox/dcim/views.py:1087 -#: netbox/dcim/views.py:1326 netbox/dcim/views.py:2035 -#: netbox/netbox/navigation/menu.py:101 -#: netbox/templates/dcim/device/base.html:46 -#: netbox/templates/dcim/device_list.html:64 -#: netbox/templates/dcim/devicetype/base.html:43 -#: netbox/templates/dcim/module.html:43 -#: netbox/templates/dcim/moduletype/base.html:43 +#: dcim/tables/devicetypes.py:140 dcim/views.py:1087 dcim/views.py:1326 +#: dcim/views.py:2035 netbox/navigation/menu.py:101 +#: templates/dcim/device/base.html:46 templates/dcim/device_list.html:64 +#: templates/dcim/devicetype/base.html:43 +#: templates/dcim/inc/moduletype_buttons.html:34 templates/dcim/module.html:43 msgid "Module Bays" msgstr "Baies pour modules" -#: netbox/dcim/tables/power.py:36 netbox/netbox/navigation/menu.py:297 -#: netbox/templates/dcim/powerpanel.html:51 +#: dcim/tables/power.py:36 netbox/navigation/menu.py:297 +#: templates/dcim/powerpanel.html:51 msgid "Power Feeds" msgstr "Alimentations" -#: netbox/dcim/tables/power.py:80 netbox/templates/dcim/powerfeed.html:99 +#: dcim/tables/power.py:80 templates/dcim/powerfeed.html:99 msgid "Max Utilization" msgstr "Utilisation maximale" -#: netbox/dcim/tables/power.py:84 +#: dcim/tables/power.py:84 msgid "Available Power (VA)" msgstr "Puissance disponible (VA)" -#: netbox/dcim/tables/racks.py:30 netbox/dcim/tables/sites.py:143 -#: netbox/netbox/navigation/menu.py:43 netbox/netbox/navigation/menu.py:47 -#: netbox/netbox/navigation/menu.py:49 +#: dcim/tables/racks.py:30 dcim/tables/sites.py:143 +#: netbox/navigation/menu.py:43 netbox/navigation/menu.py:47 +#: netbox/navigation/menu.py:49 msgid "Racks" msgstr "Baies" -#: netbox/dcim/tables/racks.py:63 netbox/dcim/tables/racks.py:142 -#: netbox/templates/dcim/device.html:318 -#: netbox/templates/dcim/inc/panels/racktype_dimensions.html:14 +#: dcim/tables/racks.py:63 dcim/tables/racks.py:142 +#: templates/dcim/device.html:318 +#: templates/dcim/inc/panels/racktype_dimensions.html:14 msgid "Height" msgstr "Hauteur" -#: netbox/dcim/tables/racks.py:67 netbox/dcim/tables/racks.py:165 -#: netbox/templates/dcim/inc/panels/racktype_dimensions.html:18 +#: dcim/tables/racks.py:67 dcim/tables/racks.py:165 +#: templates/dcim/inc/panels/racktype_dimensions.html:18 msgid "Outer Width" msgstr "Largeur extérieure" -#: netbox/dcim/tables/racks.py:71 netbox/dcim/tables/racks.py:169 -#: netbox/templates/dcim/inc/panels/racktype_dimensions.html:28 +#: dcim/tables/racks.py:71 dcim/tables/racks.py:169 +#: templates/dcim/inc/panels/racktype_dimensions.html:28 msgid "Outer Depth" msgstr "Profondeur extérieure" -#: netbox/dcim/tables/racks.py:79 netbox/dcim/tables/racks.py:177 +#: dcim/tables/racks.py:79 dcim/tables/racks.py:177 msgid "Max Weight" msgstr "Poids maximum" -#: netbox/dcim/tables/racks.py:154 +#: dcim/tables/racks.py:154 msgid "Space" msgstr "Espace" -#: netbox/dcim/tables/sites.py:30 netbox/dcim/tables/sites.py:57 -#: netbox/extras/forms/filtersets.py:351 -#: netbox/extras/forms/model_forms.py:517 netbox/ipam/forms/bulk_edit.py:130 -#: netbox/ipam/forms/model_forms.py:153 netbox/ipam/tables/asn.py:66 -#: netbox/netbox/navigation/menu.py:15 netbox/netbox/navigation/menu.py:17 +#: dcim/tables/sites.py:30 dcim/tables/sites.py:57 +#: extras/forms/filtersets.py:351 extras/forms/model_forms.py:517 +#: ipam/forms/bulk_edit.py:131 ipam/forms/model_forms.py:153 +#: ipam/tables/asn.py:66 netbox/navigation/menu.py:15 +#: netbox/navigation/menu.py:17 msgid "Sites" msgstr "Sites" -#: netbox/dcim/tests/test_api.py:47 +#: dcim/tests/test_api.py:47 msgid "Test case must set peer_termination_type" msgstr "Le scénario de test doit définir peer_termination_type" -#: netbox/dcim/views.py:140 +#: dcim/views.py:140 #, python-brace-format msgid "Disconnected {count} {type}" msgstr "Déconnecté {count} {type}" -#: netbox/dcim/views.py:740 netbox/netbox/navigation/menu.py:51 +#: dcim/views.py:740 netbox/navigation/menu.py:51 msgid "Reservations" msgstr "Réservations" -#: netbox/dcim/views.py:759 netbox/templates/dcim/location.html:90 -#: netbox/templates/dcim/site.html:140 +#: dcim/views.py:759 templates/dcim/location.html:90 +#: templates/dcim/site.html:140 msgid "Non-Racked Devices" msgstr "Appareils non rackés" -#: netbox/dcim/views.py:2088 netbox/extras/forms/model_forms.py:577 -#: netbox/templates/extras/configcontext.html:10 -#: netbox/virtualization/forms/model_forms.py:225 -#: netbox/virtualization/views.py:407 +#: dcim/views.py:2088 extras/forms/model_forms.py:577 +#: templates/extras/configcontext.html:10 +#: virtualization/forms/model_forms.py:225 virtualization/views.py:407 msgid "Config Context" msgstr "Contexte de configuration" -#: netbox/dcim/views.py:2098 netbox/virtualization/views.py:417 +#: dcim/views.py:2098 virtualization/views.py:417 msgid "Render Config" msgstr "Configuration du rendu" -#: netbox/dcim/views.py:2131 netbox/virtualization/views.py:450 +#: dcim/views.py:2131 virtualization/views.py:450 #, python-brace-format msgid "An error occurred while rendering the template: {error}" msgstr "Une erreur s'est produite lors du rendu du modèle : {error}" -#: netbox/dcim/views.py:2149 netbox/extras/tables/tables.py:550 -#: netbox/netbox/navigation/menu.py:247 netbox/netbox/navigation/menu.py:249 -#: netbox/virtualization/views.py:180 +#: dcim/views.py:2149 extras/tables/tables.py:550 +#: netbox/navigation/menu.py:247 netbox/navigation/menu.py:249 +#: virtualization/views.py:180 msgid "Virtual Machines" msgstr "Machines virtuelles" -#: netbox/dcim/views.py:2897 +#: dcim/views.py:2897 #, python-brace-format msgid "Installed device {device} in bay {device_bay}." msgstr "Appareil installé {device} dans la baie {device_bay}." -#: netbox/dcim/views.py:2938 +#: dcim/views.py:2938 #, python-brace-format msgid "Removed device {device} from bay {device_bay}." msgstr "Appareil retiré {device} depuis la baie {device_bay}." -#: netbox/dcim/views.py:3044 netbox/ipam/tables/ip.py:234 +#: dcim/views.py:3044 ipam/tables/ip.py:234 msgid "Children" msgstr "Enfants" -#: netbox/dcim/views.py:3510 +#: dcim/views.py:3510 #, python-brace-format msgid "Added member {device}" msgstr "Membre ajouté {device}" -#: netbox/dcim/views.py:3557 +#: dcim/views.py:3557 #, python-brace-format msgid "Unable to remove master device {device} from the virtual chassis." msgstr "" "Impossible de supprimer le périphérique principal {device} depuis le châssis" " virtuel." -#: netbox/dcim/views.py:3570 +#: dcim/views.py:3570 #, python-brace-format msgid "Removed {device} from virtual chassis {chassis}" msgstr "Supprimé {device} depuis un châssis virtuel {chassis}" -#: netbox/extras/api/customfields.py:89 +#: extras/api/customfields.py:89 #, python-brace-format msgid "Unknown related object(s): {name}" msgstr "Objet associé inconnu: {name}" -#: netbox/extras/api/serializers_/customfields.py:73 +#: extras/api/serializers_/customfields.py:73 msgid "Changing the type of custom fields is not supported." msgstr "" "La modification du type de champs personnalisés n'est pas prise en charge." -#: netbox/extras/api/serializers_/scripts.py:70 -#: netbox/extras/api/serializers_/scripts.py:75 +#: extras/api/serializers_/scripts.py:70 extras/api/serializers_/scripts.py:75 msgid "Scheduling is not enabled for this script." msgstr "La planification n'est pas activée pour ce script." -#: netbox/extras/choices.py:30 netbox/extras/forms/misc.py:14 +#: extras/choices.py:30 extras/forms/misc.py:14 msgid "Text" msgstr "Texte" -#: netbox/extras/choices.py:31 +#: extras/choices.py:31 msgid "Text (long)" msgstr "Texte (long)" -#: netbox/extras/choices.py:32 +#: extras/choices.py:32 msgid "Integer" msgstr "Entier" -#: netbox/extras/choices.py:33 +#: extras/choices.py:33 msgid "Decimal" msgstr "Décimal" -#: netbox/extras/choices.py:34 +#: extras/choices.py:34 msgid "Boolean (true/false)" msgstr "Booléen (vrai/faux)" -#: netbox/extras/choices.py:35 +#: extras/choices.py:35 msgid "Date" msgstr "Date" -#: netbox/extras/choices.py:36 +#: extras/choices.py:36 msgid "Date & time" msgstr "Date et heure" -#: netbox/extras/choices.py:38 +#: extras/choices.py:38 msgid "JSON" msgstr "JSON" -#: netbox/extras/choices.py:39 +#: extras/choices.py:39 msgid "Selection" msgstr "Sélection" -#: netbox/extras/choices.py:40 +#: extras/choices.py:40 msgid "Multiple selection" msgstr "Sélection multiple" -#: netbox/extras/choices.py:42 +#: extras/choices.py:42 msgid "Multiple objects" msgstr "Objets multiples" -#: netbox/extras/choices.py:53 netbox/netbox/preferences.py:21 -#: netbox/templates/extras/customfield.html:78 netbox/vpn/choices.py:20 -#: netbox/wireless/choices.py:27 +#: extras/choices.py:53 netbox/preferences.py:21 +#: templates/extras/customfield.html:78 vpn/choices.py:20 +#: wireless/choices.py:27 msgid "Disabled" msgstr "Désactivé" -#: netbox/extras/choices.py:54 +#: extras/choices.py:54 msgid "Loose" msgstr "Relaxé" -#: netbox/extras/choices.py:55 +#: extras/choices.py:55 msgid "Exact" msgstr "Exact" -#: netbox/extras/choices.py:66 +#: extras/choices.py:66 msgid "Always" msgstr "Toujours" -#: netbox/extras/choices.py:67 +#: extras/choices.py:67 msgid "If set" msgstr "Si défini" -#: netbox/extras/choices.py:68 netbox/extras/choices.py:81 +#: extras/choices.py:68 extras/choices.py:81 msgid "Hidden" msgstr "Caché" -#: netbox/extras/choices.py:79 +#: extras/choices.py:79 msgid "Yes" msgstr "Oui" -#: netbox/extras/choices.py:80 +#: extras/choices.py:80 msgid "No" msgstr "Non" -#: netbox/extras/choices.py:108 netbox/templates/tenancy/contact.html:57 -#: netbox/tenancy/forms/bulk_edit.py:118 -#: netbox/wireless/forms/model_forms.py:168 +#: extras/choices.py:108 templates/tenancy/contact.html:57 +#: tenancy/forms/bulk_edit.py:118 wireless/forms/model_forms.py:168 msgid "Link" msgstr "Lien" -#: netbox/extras/choices.py:124 +#: extras/choices.py:124 msgid "Newest" msgstr "Le plus récent" -#: netbox/extras/choices.py:125 +#: extras/choices.py:125 msgid "Oldest" msgstr "Le plus ancien" -#: netbox/extras/choices.py:126 +#: extras/choices.py:126 msgid "Alphabetical (A-Z)" msgstr "Alphabétique (A-Z)" -#: netbox/extras/choices.py:127 +#: extras/choices.py:127 msgid "Alphabetical (Z-A)" msgstr "Alphabétique (Z-A)" -#: netbox/extras/choices.py:144 netbox/extras/choices.py:167 +#: extras/choices.py:144 extras/choices.py:167 msgid "Info" msgstr "Infos" -#: netbox/extras/choices.py:145 netbox/extras/choices.py:168 +#: extras/choices.py:145 extras/choices.py:168 msgid "Success" msgstr "Succès" -#: netbox/extras/choices.py:146 netbox/extras/choices.py:169 +#: extras/choices.py:146 extras/choices.py:169 msgid "Warning" msgstr "Avertissement" -#: netbox/extras/choices.py:147 +#: extras/choices.py:147 msgid "Danger" msgstr "Danger" -#: netbox/extras/choices.py:165 +#: extras/choices.py:165 msgid "Debug" msgstr "Déboguer" -#: netbox/extras/choices.py:166 netbox/netbox/choices.py:101 +#: extras/choices.py:166 netbox/choices.py:101 msgid "Default" msgstr "Par défaut" -#: netbox/extras/choices.py:170 +#: extras/choices.py:170 msgid "Failure" msgstr "Défaillance" -#: netbox/extras/choices.py:186 +#: extras/choices.py:186 msgid "Hourly" msgstr "Toutes les heures" -#: netbox/extras/choices.py:187 +#: extras/choices.py:187 msgid "12 hours" msgstr "12 heures" -#: netbox/extras/choices.py:188 +#: extras/choices.py:188 msgid "Daily" msgstr "Tous les jours" -#: netbox/extras/choices.py:189 +#: extras/choices.py:189 msgid "Weekly" msgstr "Hebdo" -#: netbox/extras/choices.py:190 +#: extras/choices.py:190 msgid "30 days" msgstr "30 jours" -#: netbox/extras/choices.py:226 -#: netbox/templates/dcim/virtualchassis_edit.html:107 -#: netbox/templates/generic/bulk_add_component.html:68 -#: netbox/templates/generic/object_edit.html:47 -#: netbox/templates/generic/object_edit.html:80 -#: netbox/templates/ipam/inc/ipaddress_edit_header.html:7 +#: extras/choices.py:226 templates/dcim/virtualchassis_edit.html:107 +#: templates/generic/bulk_add_component.html:68 +#: templates/generic/object_edit.html:47 templates/generic/object_edit.html:80 +#: templates/ipam/inc/ipaddress_edit_header.html:7 msgid "Create" msgstr "Créez" -#: netbox/extras/choices.py:227 +#: extras/choices.py:227 msgid "Update" msgstr "Mise à jour" -#: netbox/extras/choices.py:228 -#: netbox/templates/circuits/inc/circuit_termination.html:23 -#: netbox/templates/dcim/inc/panels/inventory_items.html:37 -#: netbox/templates/dcim/moduletype/component_templates.html:23 -#: netbox/templates/dcim/powerpanel.html:66 -#: netbox/templates/extras/script_list.html:35 -#: netbox/templates/generic/bulk_delete.html:20 -#: netbox/templates/generic/bulk_delete.html:66 -#: netbox/templates/generic/object_delete.html:19 -#: netbox/templates/htmx/delete_form.html:57 -#: netbox/templates/ipam/inc/panels/fhrp_groups.html:48 -#: netbox/templates/users/objectpermission.html:46 -#: netbox/utilities/templates/buttons/delete.html:11 +#: extras/choices.py:228 templates/circuits/inc/circuit_termination.html:23 +#: templates/dcim/inc/panels/inventory_items.html:37 +#: templates/dcim/powerpanel.html:66 templates/extras/script_list.html:35 +#: templates/generic/bulk_delete.html:20 templates/generic/bulk_delete.html:66 +#: templates/generic/object_delete.html:19 templates/htmx/delete_form.html:57 +#: templates/ipam/inc/panels/fhrp_groups.html:48 +#: templates/users/objectpermission.html:46 +#: utilities/templates/buttons/delete.html:11 msgid "Delete" msgstr "Supprimer" -#: netbox/extras/choices.py:252 netbox/netbox/choices.py:57 -#: netbox/netbox/choices.py:102 +#: extras/choices.py:252 netbox/choices.py:57 netbox/choices.py:102 msgid "Blue" msgstr "Bleu" -#: netbox/extras/choices.py:253 netbox/netbox/choices.py:56 -#: netbox/netbox/choices.py:103 +#: extras/choices.py:253 netbox/choices.py:56 netbox/choices.py:103 msgid "Indigo" msgstr "Indigo" -#: netbox/extras/choices.py:254 netbox/netbox/choices.py:54 -#: netbox/netbox/choices.py:104 +#: extras/choices.py:254 netbox/choices.py:54 netbox/choices.py:104 msgid "Purple" msgstr "Violet" -#: netbox/extras/choices.py:255 netbox/netbox/choices.py:51 -#: netbox/netbox/choices.py:105 +#: extras/choices.py:255 netbox/choices.py:51 netbox/choices.py:105 msgid "Pink" msgstr "Rose" -#: netbox/extras/choices.py:256 netbox/netbox/choices.py:50 -#: netbox/netbox/choices.py:106 +#: extras/choices.py:256 netbox/choices.py:50 netbox/choices.py:106 msgid "Red" msgstr "Rouge" -#: netbox/extras/choices.py:257 netbox/netbox/choices.py:68 -#: netbox/netbox/choices.py:107 +#: extras/choices.py:257 netbox/choices.py:68 netbox/choices.py:107 msgid "Orange" msgstr "Orange" -#: netbox/extras/choices.py:258 netbox/netbox/choices.py:66 -#: netbox/netbox/choices.py:108 +#: extras/choices.py:258 netbox/choices.py:66 netbox/choices.py:108 msgid "Yellow" msgstr "Jaune" -#: netbox/extras/choices.py:259 netbox/netbox/choices.py:63 -#: netbox/netbox/choices.py:109 +#: extras/choices.py:259 netbox/choices.py:63 netbox/choices.py:109 msgid "Green" msgstr "Vert" -#: netbox/extras/choices.py:260 netbox/netbox/choices.py:60 -#: netbox/netbox/choices.py:110 +#: extras/choices.py:260 netbox/choices.py:60 netbox/choices.py:110 msgid "Teal" msgstr "Sarcelle" -#: netbox/extras/choices.py:261 netbox/netbox/choices.py:59 -#: netbox/netbox/choices.py:111 +#: extras/choices.py:261 netbox/choices.py:59 netbox/choices.py:111 msgid "Cyan" msgstr "Cyan" -#: netbox/extras/choices.py:262 netbox/netbox/choices.py:112 +#: extras/choices.py:262 netbox/choices.py:112 msgid "Gray" msgstr "Gris" -#: netbox/extras/choices.py:263 netbox/netbox/choices.py:74 -#: netbox/netbox/choices.py:113 +#: extras/choices.py:263 netbox/choices.py:74 netbox/choices.py:113 msgid "Black" msgstr "Noir" -#: netbox/extras/choices.py:264 netbox/netbox/choices.py:75 -#: netbox/netbox/choices.py:114 +#: extras/choices.py:264 netbox/choices.py:75 netbox/choices.py:114 msgid "White" msgstr "Blanc" -#: netbox/extras/choices.py:279 netbox/extras/forms/model_forms.py:353 -#: netbox/extras/forms/model_forms.py:430 -#: netbox/templates/extras/webhook.html:10 +#: extras/choices.py:279 extras/forms/model_forms.py:353 +#: extras/forms/model_forms.py:430 templates/extras/webhook.html:10 msgid "Webhook" msgstr "Webhook" -#: netbox/extras/choices.py:280 netbox/extras/forms/model_forms.py:418 -#: netbox/templates/extras/script/base.html:29 +#: extras/choices.py:280 extras/forms/model_forms.py:418 +#: templates/extras/script/base.html:29 msgid "Script" msgstr "Scénario" -#: netbox/extras/choices.py:281 +#: extras/choices.py:281 msgid "Notification" msgstr "Notification" -#: netbox/extras/conditions.py:54 +#: extras/conditions.py:54 #, python-brace-format msgid "Unknown operator: {op}. Must be one of: {operators}" msgstr "Opérateur inconnu : {op}. Doit être l'un des suivants : {operators}" -#: netbox/extras/conditions.py:58 +#: extras/conditions.py:58 #, python-brace-format msgid "Unsupported value type: {value}" msgstr "Type de valeur non pris en charge : {value}" -#: netbox/extras/conditions.py:60 +#: extras/conditions.py:60 #, python-brace-format msgid "Invalid type for {op} operation: {value}" msgstr "Type non valide pour {op} opération : {value}" -#: netbox/extras/conditions.py:137 +#: extras/conditions.py:137 #, python-brace-format msgid "Ruleset must be a dictionary, not {ruleset}." msgstr "L'ensemble de règles doit être un dictionnaire, pas {ruleset}." -#: netbox/extras/conditions.py:142 +#: extras/conditions.py:142 msgid "Invalid logic type: must be 'AND' or 'OR'. Please check documentation." msgstr "" "Logique invalide : doit être \"AND\" ou \"OR\". Merci de consulter la " "documentation." -#: netbox/extras/conditions.py:154 +#: extras/conditions.py:154 msgid "Incorrect key(s) informed. Please check documentation." msgstr "Clé(s) incorrecte(s). Merci de consulter la documentation." -#: netbox/extras/dashboard/forms.py:38 +#: extras/dashboard/forms.py:38 msgid "Widget type" msgstr "Type de widget" -#: netbox/extras/dashboard/utils.py:36 +#: extras/dashboard/utils.py:36 #, python-brace-format msgid "Unregistered widget class: {name}" msgstr "Classe de widget non enregistrée : {name}" -#: netbox/extras/dashboard/widgets.py:125 +#: extras/dashboard/widgets.py:125 #, python-brace-format msgid "{class_name} must define a render() method." msgstr "{class_name} doit définir une méthode render ()." -#: netbox/extras/dashboard/widgets.py:144 +#: extras/dashboard/widgets.py:144 msgid "Note" msgstr "Remarque" -#: netbox/extras/dashboard/widgets.py:145 +#: extras/dashboard/widgets.py:145 msgid "Display some arbitrary custom content. Markdown is supported." msgstr "" "Affichez du contenu personnalisé arbitraire. Markdown est pris en charge." -#: netbox/extras/dashboard/widgets.py:158 +#: extras/dashboard/widgets.py:158 msgid "Object Counts" msgstr "Nombre d'objets" -#: netbox/extras/dashboard/widgets.py:159 +#: extras/dashboard/widgets.py:159 msgid "" "Display a set of NetBox models and the number of objects created for each " "type." @@ -7496,293 +6985,271 @@ msgstr "" "Affichez un ensemble de modèles NetBox et le nombre d'objets créés pour " "chaque type." -#: netbox/extras/dashboard/widgets.py:169 +#: extras/dashboard/widgets.py:169 msgid "Filters to apply when counting the number of objects" msgstr "Filtres à appliquer lors du comptage du nombre d'objets" -#: netbox/extras/dashboard/widgets.py:177 +#: extras/dashboard/widgets.py:177 msgid "Invalid format. Object filters must be passed as a dictionary." msgstr "" "Format non valide. Les filtres d'objets doivent être transmis sous forme de " "dictionnaire." -#: netbox/extras/dashboard/widgets.py:208 +#: extras/dashboard/widgets.py:208 msgid "Object List" msgstr "Liste d'objets" -#: netbox/extras/dashboard/widgets.py:209 +#: extras/dashboard/widgets.py:209 msgid "Display an arbitrary list of objects." msgstr "Afficher une liste arbitraire d'objets." -#: netbox/extras/dashboard/widgets.py:222 +#: extras/dashboard/widgets.py:222 msgid "The default number of objects to display" msgstr "Le nombre d'objets à afficher par défaut" -#: netbox/extras/dashboard/widgets.py:234 +#: extras/dashboard/widgets.py:234 msgid "Invalid format. URL parameters must be passed as a dictionary." msgstr "" "Format non valide. Les paramètres d'URL doivent être transmis sous forme de " "dictionnaire." -#: netbox/extras/dashboard/widgets.py:274 +#: extras/dashboard/widgets.py:274 msgid "RSS Feed" msgstr "Fil RSS" -#: netbox/extras/dashboard/widgets.py:279 +#: extras/dashboard/widgets.py:279 msgid "Embed an RSS feed from an external website." msgstr "Intégrez un flux RSS provenant d'un site Web externe." -#: netbox/extras/dashboard/widgets.py:286 +#: extras/dashboard/widgets.py:286 msgid "Feed URL" msgstr "URL du flux" -#: netbox/extras/dashboard/widgets.py:291 +#: extras/dashboard/widgets.py:291 msgid "The maximum number of objects to display" msgstr "Le nombre maximum d'objets à afficher" -#: netbox/extras/dashboard/widgets.py:296 +#: extras/dashboard/widgets.py:296 msgid "How long to stored the cached content (in seconds)" msgstr "Durée de conservation du contenu mis en cache (en secondes)" -#: netbox/extras/dashboard/widgets.py:348 -#: netbox/templates/account/base.html:10 -#: netbox/templates/account/bookmarks.html:7 -#: netbox/templates/inc/user_menu.html:48 +#: extras/dashboard/widgets.py:348 templates/account/base.html:10 +#: templates/account/bookmarks.html:7 templates/inc/user_menu.html:48 msgid "Bookmarks" msgstr "Signets" -#: netbox/extras/dashboard/widgets.py:352 +#: extras/dashboard/widgets.py:352 msgid "Show your personal bookmarks" msgstr "Afficher vos favoris personnels" -#: netbox/extras/events.py:147 +#: extras/events.py:147 #, python-brace-format msgid "Unknown action type for an event rule: {action_type}" msgstr "Type d'action inconnu pour une règle d'événement : {action_type}" -#: netbox/extras/events.py:192 +#: extras/events.py:192 #, python-brace-format msgid "Cannot import events pipeline {name} error: {error}" msgstr "" "Impossible d'importer le pipeline d'événements {name} erreur : {error}" -#: netbox/extras/filtersets.py:45 +#: extras/filtersets.py:45 msgid "Script module (ID)" msgstr "Module de script (ID)" -#: netbox/extras/filtersets.py:254 netbox/extras/filtersets.py:637 -#: netbox/extras/filtersets.py:665 +#: extras/filtersets.py:254 extras/filtersets.py:637 extras/filtersets.py:665 msgid "Data file (ID)" msgstr "Fichier de données (ID)" -#: netbox/extras/filtersets.py:370 netbox/users/filtersets.py:68 -#: netbox/users/filtersets.py:191 +#: extras/filtersets.py:370 users/filtersets.py:68 users/filtersets.py:191 msgid "Group (name)" msgstr "Groupe (nom)" -#: netbox/extras/filtersets.py:574 -#: netbox/virtualization/forms/filtersets.py:118 +#: extras/filtersets.py:574 virtualization/forms/filtersets.py:118 msgid "Cluster type" msgstr "Type de cluster" -#: netbox/extras/filtersets.py:580 netbox/virtualization/filtersets.py:95 -#: netbox/virtualization/filtersets.py:147 +#: extras/filtersets.py:580 virtualization/filtersets.py:95 +#: virtualization/filtersets.py:147 msgid "Cluster type (slug)" msgstr "Type de cluster (slug)" -#: netbox/extras/filtersets.py:601 netbox/tenancy/forms/forms.py:16 -#: netbox/tenancy/forms/forms.py:39 +#: extras/filtersets.py:601 tenancy/forms/forms.py:16 +#: tenancy/forms/forms.py:39 msgid "Tenant group" msgstr "Groupe de locataires" -#: netbox/extras/filtersets.py:607 netbox/tenancy/filtersets.py:188 -#: netbox/tenancy/filtersets.py:208 +#: extras/filtersets.py:607 tenancy/filtersets.py:188 +#: tenancy/filtersets.py:208 msgid "Tenant group (slug)" msgstr "Groupe de locataires (slug)" -#: netbox/extras/filtersets.py:623 netbox/extras/forms/model_forms.py:495 -#: netbox/templates/extras/tag.html:11 +#: extras/filtersets.py:623 extras/forms/model_forms.py:495 +#: templates/extras/tag.html:11 msgid "Tag" msgstr "Balise" -#: netbox/extras/filtersets.py:629 +#: extras/filtersets.py:629 msgid "Tag (slug)" msgstr "Tag (slug)" -#: netbox/extras/filtersets.py:689 netbox/extras/forms/filtersets.py:429 +#: extras/filtersets.py:689 extras/forms/filtersets.py:429 msgid "Has local config context data" msgstr "Possède des données contextuelles de configuration locales" -#: netbox/extras/forms/bulk_edit.py:35 netbox/extras/forms/filtersets.py:60 +#: extras/forms/bulk_edit.py:35 extras/forms/filtersets.py:60 msgid "Group name" msgstr "Nom du groupe" -#: netbox/extras/forms/bulk_edit.py:43 netbox/extras/forms/filtersets.py:68 -#: netbox/extras/tables/tables.py:65 -#: netbox/templates/extras/customfield.html:38 -#: netbox/templates/generic/bulk_import.html:118 +#: extras/forms/bulk_edit.py:43 extras/forms/filtersets.py:68 +#: extras/tables/tables.py:65 templates/extras/customfield.html:38 +#: templates/generic/bulk_import.html:118 msgid "Required" msgstr "Obligatoire" -#: netbox/extras/forms/bulk_edit.py:48 netbox/extras/forms/filtersets.py:75 +#: extras/forms/bulk_edit.py:48 extras/forms/filtersets.py:75 msgid "Must be unique" msgstr "Doit être unique" -#: netbox/extras/forms/bulk_edit.py:61 netbox/extras/forms/bulk_import.py:60 -#: netbox/extras/forms/filtersets.py:89 -#: netbox/extras/models/customfields.py:209 +#: extras/forms/bulk_edit.py:61 extras/forms/bulk_import.py:60 +#: extras/forms/filtersets.py:89 extras/models/customfields.py:209 msgid "UI visible" msgstr "Interface utilisateur visible" -#: netbox/extras/forms/bulk_edit.py:66 netbox/extras/forms/bulk_import.py:66 -#: netbox/extras/forms/filtersets.py:94 -#: netbox/extras/models/customfields.py:216 +#: extras/forms/bulk_edit.py:66 extras/forms/bulk_import.py:66 +#: extras/forms/filtersets.py:94 extras/models/customfields.py:216 msgid "UI editable" msgstr "Interface utilisateur modifiable" -#: netbox/extras/forms/bulk_edit.py:71 netbox/extras/forms/filtersets.py:97 +#: extras/forms/bulk_edit.py:71 extras/forms/filtersets.py:97 msgid "Is cloneable" msgstr "Est cloneable" -#: netbox/extras/forms/bulk_edit.py:76 netbox/extras/forms/filtersets.py:104 +#: extras/forms/bulk_edit.py:76 extras/forms/filtersets.py:104 msgid "Minimum value" msgstr "Valeur minimale" -#: netbox/extras/forms/bulk_edit.py:80 netbox/extras/forms/filtersets.py:108 +#: extras/forms/bulk_edit.py:80 extras/forms/filtersets.py:108 msgid "Maximum value" msgstr "Valeur maximale" -#: netbox/extras/forms/bulk_edit.py:84 netbox/extras/forms/filtersets.py:112 +#: extras/forms/bulk_edit.py:84 extras/forms/filtersets.py:112 msgid "Validation regex" msgstr "Regex de validation" -#: netbox/extras/forms/bulk_edit.py:91 netbox/extras/forms/filtersets.py:46 -#: netbox/extras/forms/model_forms.py:76 -#: netbox/templates/extras/customfield.html:70 +#: extras/forms/bulk_edit.py:91 extras/forms/filtersets.py:46 +#: extras/forms/model_forms.py:76 templates/extras/customfield.html:70 msgid "Behavior" msgstr "Comportement" -#: netbox/extras/forms/bulk_edit.py:128 netbox/extras/forms/filtersets.py:149 +#: extras/forms/bulk_edit.py:128 extras/forms/filtersets.py:149 msgid "New window" msgstr "Nouvelle fenêtre" -#: netbox/extras/forms/bulk_edit.py:137 +#: extras/forms/bulk_edit.py:137 msgid "Button class" msgstr "Classe de boutons" -#: netbox/extras/forms/bulk_edit.py:154 netbox/extras/forms/filtersets.py:187 -#: netbox/extras/models/models.py:409 +#: extras/forms/bulk_edit.py:154 extras/forms/filtersets.py:187 +#: extras/models/models.py:409 msgid "MIME type" msgstr "Type MIME" -#: netbox/extras/forms/bulk_edit.py:159 netbox/extras/forms/filtersets.py:190 +#: extras/forms/bulk_edit.py:159 extras/forms/filtersets.py:190 msgid "File extension" msgstr "Extension de fichier" -#: netbox/extras/forms/bulk_edit.py:164 netbox/extras/forms/filtersets.py:194 +#: extras/forms/bulk_edit.py:164 extras/forms/filtersets.py:194 msgid "As attachment" msgstr "En pièce jointe" -#: netbox/extras/forms/bulk_edit.py:192 netbox/extras/forms/filtersets.py:236 -#: netbox/extras/tables/tables.py:256 -#: netbox/templates/extras/savedfilter.html:29 +#: extras/forms/bulk_edit.py:192 extras/forms/filtersets.py:236 +#: extras/tables/tables.py:256 templates/extras/savedfilter.html:29 msgid "Shared" msgstr "Partagé" -#: netbox/extras/forms/bulk_edit.py:215 netbox/extras/forms/filtersets.py:265 -#: netbox/extras/models/models.py:174 +#: extras/forms/bulk_edit.py:215 extras/forms/filtersets.py:265 +#: extras/models/models.py:174 msgid "HTTP method" msgstr "Méthode HTTP" -#: netbox/extras/forms/bulk_edit.py:219 netbox/extras/forms/filtersets.py:259 -#: netbox/templates/extras/webhook.html:30 +#: extras/forms/bulk_edit.py:219 extras/forms/filtersets.py:259 +#: templates/extras/webhook.html:30 msgid "Payload URL" msgstr "URL de charge utile" -#: netbox/extras/forms/bulk_edit.py:224 netbox/extras/models/models.py:214 +#: extras/forms/bulk_edit.py:224 extras/models/models.py:214 msgid "SSL verification" msgstr "Vérification SSL" -#: netbox/extras/forms/bulk_edit.py:227 -#: netbox/templates/extras/webhook.html:38 +#: extras/forms/bulk_edit.py:227 templates/extras/webhook.html:38 msgid "Secret" msgstr "Secret" -#: netbox/extras/forms/bulk_edit.py:232 +#: extras/forms/bulk_edit.py:232 msgid "CA file path" msgstr "chemin du fichier CA" -#: netbox/extras/forms/bulk_edit.py:253 netbox/extras/forms/bulk_import.py:192 -#: netbox/extras/forms/model_forms.py:377 +#: extras/forms/bulk_edit.py:253 extras/forms/bulk_import.py:192 +#: extras/forms/model_forms.py:377 msgid "Event types" msgstr "Types d'événements" -#: netbox/extras/forms/bulk_edit.py:293 +#: extras/forms/bulk_edit.py:293 msgid "Is active" msgstr "Est actif" -#: netbox/extras/forms/bulk_import.py:37 -#: netbox/extras/forms/bulk_import.py:118 -#: netbox/extras/forms/bulk_import.py:139 -#: netbox/extras/forms/bulk_import.py:162 -#: netbox/extras/forms/bulk_import.py:186 -#: netbox/extras/forms/filtersets.py:137 netbox/extras/forms/filtersets.py:224 -#: netbox/extras/forms/model_forms.py:47 -#: netbox/extras/forms/model_forms.py:205 -#: netbox/extras/forms/model_forms.py:237 -#: netbox/extras/forms/model_forms.py:278 -#: netbox/extras/forms/model_forms.py:372 -#: netbox/extras/forms/model_forms.py:489 -#: netbox/users/forms/model_forms.py:276 +#: extras/forms/bulk_import.py:37 extras/forms/bulk_import.py:118 +#: extras/forms/bulk_import.py:139 extras/forms/bulk_import.py:162 +#: extras/forms/bulk_import.py:186 extras/forms/filtersets.py:137 +#: extras/forms/filtersets.py:224 extras/forms/model_forms.py:47 +#: extras/forms/model_forms.py:205 extras/forms/model_forms.py:237 +#: extras/forms/model_forms.py:278 extras/forms/model_forms.py:372 +#: extras/forms/model_forms.py:489 users/forms/model_forms.py:276 msgid "Object types" msgstr "Types d'objets" -#: netbox/extras/forms/bulk_import.py:39 -#: netbox/extras/forms/bulk_import.py:120 -#: netbox/extras/forms/bulk_import.py:141 -#: netbox/extras/forms/bulk_import.py:164 -#: netbox/extras/forms/bulk_import.py:188 -#: netbox/tenancy/forms/bulk_import.py:96 +#: extras/forms/bulk_import.py:39 extras/forms/bulk_import.py:120 +#: extras/forms/bulk_import.py:141 extras/forms/bulk_import.py:164 +#: extras/forms/bulk_import.py:188 tenancy/forms/bulk_import.py:96 msgid "One or more assigned object types" msgstr "Un ou plusieurs types d'objets attribués" -#: netbox/extras/forms/bulk_import.py:44 +#: extras/forms/bulk_import.py:44 msgid "Field data type (e.g. text, integer, etc.)" msgstr "Type de données de champ (par exemple texte, entier, etc.)" -#: netbox/extras/forms/bulk_import.py:47 netbox/extras/forms/filtersets.py:208 -#: netbox/extras/forms/filtersets.py:281 -#: netbox/extras/forms/model_forms.py:304 -#: netbox/extras/forms/model_forms.py:341 -#: netbox/tenancy/forms/filtersets.py:92 +#: extras/forms/bulk_import.py:47 extras/forms/filtersets.py:208 +#: extras/forms/filtersets.py:281 extras/forms/model_forms.py:304 +#: extras/forms/model_forms.py:341 tenancy/forms/filtersets.py:92 msgid "Object type" msgstr "Type d'objet" -#: netbox/extras/forms/bulk_import.py:50 +#: extras/forms/bulk_import.py:50 msgid "Object type (for object or multi-object fields)" msgstr "Type d'objet (pour les champs d'objets ou multi-objets)" -#: netbox/extras/forms/bulk_import.py:53 netbox/extras/forms/filtersets.py:84 +#: extras/forms/bulk_import.py:53 extras/forms/filtersets.py:84 msgid "Choice set" msgstr "Coffret Choice" -#: netbox/extras/forms/bulk_import.py:57 +#: extras/forms/bulk_import.py:57 msgid "Choice set (for selection fields)" msgstr "Set de choix (pour les champs de sélection)" -#: netbox/extras/forms/bulk_import.py:63 +#: extras/forms/bulk_import.py:63 msgid "Whether the custom field is displayed in the UI" msgstr "Si le champ personnalisé est affiché dans l'interface utilisateur" -#: netbox/extras/forms/bulk_import.py:69 +#: extras/forms/bulk_import.py:69 msgid "Whether the custom field is editable in the UI" msgstr "Si le champ personnalisé est modifiable dans l'interface utilisateur" -#: netbox/extras/forms/bulk_import.py:85 +#: extras/forms/bulk_import.py:85 msgid "The base set of predefined choices to use (if any)" msgstr "L'ensemble de base de choix prédéfinis à utiliser (le cas échéant)" -#: netbox/extras/forms/bulk_import.py:91 +#: extras/forms/bulk_import.py:91 msgid "" "Quoted string of comma-separated field choices with optional labels " "separated by colon: \"choice1:First Choice,choice2:Second Choice\"" @@ -7791,202 +7258,186 @@ msgstr "" "virgules avec des libellés facultatifs séparés par deux points : " "« Choice1:First Choice, Choice2:Second Choice »" -#: netbox/extras/forms/bulk_import.py:123 netbox/extras/models/models.py:323 +#: extras/forms/bulk_import.py:123 extras/models/models.py:323 msgid "button class" msgstr "classe de boutons" -#: netbox/extras/forms/bulk_import.py:126 netbox/extras/models/models.py:327 +#: extras/forms/bulk_import.py:126 extras/models/models.py:327 msgid "" "The class of the first link in a group will be used for the dropdown button" msgstr "" "La classe du premier lien d'un groupe sera utilisée pour le bouton déroulant" -#: netbox/extras/forms/bulk_import.py:193 +#: extras/forms/bulk_import.py:193 msgid "The event type(s) which will trigger this rule" msgstr "Le ou les types d'événements qui déclencheront cette règle" -#: netbox/extras/forms/bulk_import.py:196 +#: extras/forms/bulk_import.py:196 msgid "Action object" msgstr "Objet d'action" -#: netbox/extras/forms/bulk_import.py:198 +#: extras/forms/bulk_import.py:198 msgid "Webhook name or script as dotted path module.Class" msgstr "Nom du webhook ou script sous forme de chemin pointillé module.Class" -#: netbox/extras/forms/bulk_import.py:219 +#: extras/forms/bulk_import.py:219 #, python-brace-format msgid "Webhook {name} not found" msgstr "Webhook {name} introuvable" -#: netbox/extras/forms/bulk_import.py:228 +#: extras/forms/bulk_import.py:228 #, python-brace-format msgid "Script {name} not found" msgstr "Scénario {name} introuvable" -#: netbox/extras/forms/bulk_import.py:244 +#: extras/forms/bulk_import.py:244 msgid "Assigned object type" msgstr "Type d'objet attribué" -#: netbox/extras/forms/bulk_import.py:249 +#: extras/forms/bulk_import.py:249 msgid "The classification of entry" msgstr "La classification de l'entrée" -#: netbox/extras/forms/bulk_import.py:261 -#: netbox/extras/forms/model_forms.py:320 netbox/netbox/navigation/menu.py:390 -#: netbox/templates/extras/notificationgroup.html:41 -#: netbox/templates/users/group.html:29 netbox/users/forms/model_forms.py:236 -#: netbox/users/forms/model_forms.py:248 netbox/users/forms/model_forms.py:300 -#: netbox/users/tables.py:102 +#: extras/forms/bulk_import.py:261 extras/forms/model_forms.py:320 +#: netbox/navigation/menu.py:390 templates/extras/notificationgroup.html:41 +#: templates/users/group.html:29 users/forms/model_forms.py:236 +#: users/forms/model_forms.py:248 users/forms/model_forms.py:300 +#: users/tables.py:102 msgid "Users" msgstr "Utilisateurs" -#: netbox/extras/forms/bulk_import.py:265 +#: extras/forms/bulk_import.py:265 msgid "User names separated by commas, encased with double quotes" msgstr "" "Noms d'utilisateur séparés par des virgules, encadrés par des guillemets" -#: netbox/extras/forms/bulk_import.py:268 -#: netbox/extras/forms/model_forms.py:315 netbox/netbox/navigation/menu.py:410 -#: netbox/templates/extras/notificationgroup.html:31 -#: netbox/users/forms/model_forms.py:181 netbox/users/forms/model_forms.py:193 -#: netbox/users/forms/model_forms.py:305 netbox/users/tables.py:35 -#: netbox/users/tables.py:106 +#: extras/forms/bulk_import.py:268 extras/forms/model_forms.py:315 +#: netbox/navigation/menu.py:410 templates/extras/notificationgroup.html:31 +#: users/forms/model_forms.py:181 users/forms/model_forms.py:193 +#: users/forms/model_forms.py:305 users/tables.py:35 users/tables.py:106 msgid "Groups" msgstr "Groupes" -#: netbox/extras/forms/bulk_import.py:272 +#: extras/forms/bulk_import.py:272 msgid "Group names separated by commas, encased with double quotes" msgstr "Noms de groupes séparés par des virgules, entre guillemets doubles" -#: netbox/extras/forms/filtersets.py:52 netbox/extras/forms/model_forms.py:56 +#: extras/forms/filtersets.py:52 extras/forms/model_forms.py:56 msgid "Related object type" msgstr "Type d'objet associé" -#: netbox/extras/forms/filtersets.py:57 +#: extras/forms/filtersets.py:57 msgid "Field type" msgstr "Type de champ" -#: netbox/extras/forms/filtersets.py:120 -#: netbox/extras/forms/model_forms.py:157 netbox/extras/tables/tables.py:91 -#: netbox/templates/generic/bulk_import.html:154 +#: extras/forms/filtersets.py:120 extras/forms/model_forms.py:157 +#: extras/tables/tables.py:91 templates/generic/bulk_import.html:154 msgid "Choices" msgstr "Choix" -#: netbox/extras/forms/filtersets.py:164 netbox/extras/forms/filtersets.py:319 -#: netbox/extras/forms/filtersets.py:408 -#: netbox/extras/forms/model_forms.py:572 netbox/templates/core/job.html:96 -#: netbox/templates/extras/eventrule.html:84 +#: extras/forms/filtersets.py:164 extras/forms/filtersets.py:319 +#: extras/forms/filtersets.py:408 extras/forms/model_forms.py:572 +#: templates/core/job.html:96 templates/extras/eventrule.html:84 msgid "Data" msgstr "Données" -#: netbox/extras/forms/filtersets.py:175 netbox/extras/forms/filtersets.py:333 -#: netbox/extras/forms/filtersets.py:418 netbox/netbox/choices.py:130 -#: netbox/utilities/forms/bulk_import.py:26 +#: extras/forms/filtersets.py:175 extras/forms/filtersets.py:333 +#: extras/forms/filtersets.py:418 netbox/choices.py:130 +#: utilities/forms/bulk_import.py:26 msgid "Data file" msgstr "Fichier de données" -#: netbox/extras/forms/filtersets.py:183 +#: extras/forms/filtersets.py:183 msgid "Content types" msgstr "Types de contenu" -#: netbox/extras/forms/filtersets.py:255 netbox/extras/models/models.py:179 +#: extras/forms/filtersets.py:255 extras/models/models.py:179 msgid "HTTP content type" msgstr "Type de contenu HTTP" -#: netbox/extras/forms/filtersets.py:286 +#: extras/forms/filtersets.py:286 msgid "Event type" msgstr "Type d'événement" -#: netbox/extras/forms/filtersets.py:291 +#: extras/forms/filtersets.py:291 msgid "Action type" msgstr "Type d'action" -#: netbox/extras/forms/filtersets.py:307 +#: extras/forms/filtersets.py:307 msgid "Tagged object type" msgstr "Type d'objet balisé" -#: netbox/extras/forms/filtersets.py:312 +#: extras/forms/filtersets.py:312 msgid "Allowed object type" msgstr "Type d'objet autorisé" -#: netbox/extras/forms/filtersets.py:341 -#: netbox/extras/forms/model_forms.py:507 netbox/netbox/navigation/menu.py:18 +#: extras/forms/filtersets.py:341 extras/forms/model_forms.py:507 +#: netbox/navigation/menu.py:18 msgid "Regions" msgstr "Régions" -#: netbox/extras/forms/filtersets.py:346 -#: netbox/extras/forms/model_forms.py:512 +#: extras/forms/filtersets.py:346 extras/forms/model_forms.py:512 msgid "Site groups" msgstr "Groupes de sites" -#: netbox/extras/forms/filtersets.py:356 -#: netbox/extras/forms/model_forms.py:522 netbox/netbox/navigation/menu.py:20 -#: netbox/templates/dcim/site.html:127 +#: extras/forms/filtersets.py:356 extras/forms/model_forms.py:522 +#: netbox/navigation/menu.py:20 templates/dcim/site.html:127 msgid "Locations" msgstr "Localisations" -#: netbox/extras/forms/filtersets.py:361 -#: netbox/extras/forms/model_forms.py:527 +#: extras/forms/filtersets.py:361 extras/forms/model_forms.py:527 msgid "Device types" msgstr "Types d'appareils" -#: netbox/extras/forms/filtersets.py:366 -#: netbox/extras/forms/model_forms.py:532 +#: extras/forms/filtersets.py:366 extras/forms/model_forms.py:532 msgid "Roles" msgstr "Rôles" -#: netbox/extras/forms/filtersets.py:376 -#: netbox/extras/forms/model_forms.py:542 +#: extras/forms/filtersets.py:376 extras/forms/model_forms.py:542 msgid "Cluster types" msgstr "Types de clusters" -#: netbox/extras/forms/filtersets.py:381 -#: netbox/extras/forms/model_forms.py:547 +#: extras/forms/filtersets.py:381 extras/forms/model_forms.py:547 msgid "Cluster groups" msgstr "Groupes de clusters" -#: netbox/extras/forms/filtersets.py:386 -#: netbox/extras/forms/model_forms.py:552 netbox/netbox/navigation/menu.py:255 -#: netbox/netbox/navigation/menu.py:257 -#: netbox/templates/virtualization/clustertype.html:30 -#: netbox/virtualization/tables/clusters.py:23 -#: netbox/virtualization/tables/clusters.py:45 +#: extras/forms/filtersets.py:386 extras/forms/model_forms.py:552 +#: netbox/navigation/menu.py:255 netbox/navigation/menu.py:257 +#: templates/virtualization/clustertype.html:30 +#: virtualization/tables/clusters.py:23 virtualization/tables/clusters.py:45 msgid "Clusters" msgstr "Clusters" -#: netbox/extras/forms/filtersets.py:391 -#: netbox/extras/forms/model_forms.py:557 +#: extras/forms/filtersets.py:391 extras/forms/model_forms.py:557 msgid "Tenant groups" msgstr "Groupes de locataires" -#: netbox/extras/forms/model_forms.py:49 +#: extras/forms/model_forms.py:49 msgid "The type(s) of object that have this custom field" msgstr "Le ou les types d'objets dotés de ce champ personnalisé" -#: netbox/extras/forms/model_forms.py:52 +#: extras/forms/model_forms.py:52 msgid "Default value" msgstr "Valeur par défaut" -#: netbox/extras/forms/model_forms.py:58 +#: extras/forms/model_forms.py:58 msgid "Type of the related object (for object/multi-object fields only)" msgstr "" "Type de l'objet associé (pour les champs objet/multi-objets uniquement)" -#: netbox/extras/forms/model_forms.py:61 -#: netbox/templates/extras/customfield.html:60 +#: extras/forms/model_forms.py:61 templates/extras/customfield.html:60 msgid "Related object filter" msgstr "Filtre d'objets associés" -#: netbox/extras/forms/model_forms.py:63 +#: extras/forms/model_forms.py:63 msgid "Specify query parameters as a JSON object." msgstr "Spécifiez les paramètres de requête sous la forme d'un objet JSON." -#: netbox/extras/forms/model_forms.py:73 -#: netbox/templates/extras/customfield.html:10 +#: extras/forms/model_forms.py:73 templates/extras/customfield.html:10 msgid "Custom Field" msgstr "Champ personnalisé" -#: netbox/extras/forms/model_forms.py:85 +#: extras/forms/model_forms.py:85 msgid "" "The type of data stored in this field. For object/multi-object fields, " "select the related object type below." @@ -7994,7 +7445,7 @@ msgstr "" "Le type de données stockées dans ce champ. Pour les champs objet/multi-" "objets, sélectionnez le type d'objet associé ci-dessous." -#: netbox/extras/forms/model_forms.py:88 +#: extras/forms/model_forms.py:88 msgid "" "This will be displayed as help text for the form field. Markdown is " "supported." @@ -8002,11 +7453,11 @@ msgstr "" "Cela sera affiché sous forme de texte d'aide pour le champ du formulaire. " "Markdown est pris en charge." -#: netbox/extras/forms/model_forms.py:143 +#: extras/forms/model_forms.py:143 msgid "Related Object" msgstr "Objet associé" -#: netbox/extras/forms/model_forms.py:169 +#: extras/forms/model_forms.py:169 msgid "" "Enter one choice per line. An optional label may be specified for each " "choice by appending it with a colon. Example:" @@ -8014,16 +7465,15 @@ msgstr "" "Entrez un choix par ligne. Une étiquette facultative peut être spécifiée " "pour chaque choix en l'ajoutant par deux points. Exemple :" -#: netbox/extras/forms/model_forms.py:212 -#: netbox/templates/extras/customlink.html:10 +#: extras/forms/model_forms.py:212 templates/extras/customlink.html:10 msgid "Custom Link" msgstr "Lien personnalisé" -#: netbox/extras/forms/model_forms.py:214 +#: extras/forms/model_forms.py:214 msgid "Templates" msgstr "Modèles" -#: netbox/extras/forms/model_forms.py:226 +#: extras/forms/model_forms.py:226 #, python-brace-format msgid "" "Jinja2 template code for the link text. Reference the object as {example}. " @@ -8033,68 +7483,62 @@ msgstr "" "{example}. Les liens qui s'affichent sous forme de texte vide ne seront pas " "affichés." -#: netbox/extras/forms/model_forms.py:230 +#: extras/forms/model_forms.py:230 #, python-brace-format msgid "" "Jinja2 template code for the link URL. Reference the object as {example}." msgstr "" "Code modèle Jinja2 pour l'URL du lien. Référencez l'objet comme {example}." -#: netbox/extras/forms/model_forms.py:241 -#: netbox/extras/forms/model_forms.py:624 +#: extras/forms/model_forms.py:241 extras/forms/model_forms.py:624 msgid "Template code" msgstr "Code du modèle" -#: netbox/extras/forms/model_forms.py:247 -#: netbox/templates/extras/exporttemplate.html:12 +#: extras/forms/model_forms.py:247 templates/extras/exporttemplate.html:12 msgid "Export Template" msgstr "Modèle d'exportation" -#: netbox/extras/forms/model_forms.py:249 +#: extras/forms/model_forms.py:249 msgid "Rendering" msgstr "Rendu" -#: netbox/extras/forms/model_forms.py:263 -#: netbox/extras/forms/model_forms.py:649 +#: extras/forms/model_forms.py:263 extras/forms/model_forms.py:649 msgid "Template content is populated from the remote source selected below." msgstr "" "Le contenu du modèle est renseigné à partir de la source distante " "sélectionnée ci-dessous." -#: netbox/extras/forms/model_forms.py:270 -#: netbox/extras/forms/model_forms.py:656 +#: extras/forms/model_forms.py:270 extras/forms/model_forms.py:656 msgid "Must specify either local content or a data file" msgstr "Doit spécifier un contenu local ou un fichier de données" -#: netbox/extras/forms/model_forms.py:284 netbox/netbox/forms/mixins.py:70 -#: netbox/templates/extras/savedfilter.html:10 +#: extras/forms/model_forms.py:284 netbox/forms/mixins.py:70 +#: templates/extras/savedfilter.html:10 msgid "Saved Filter" msgstr "Filtre enregistré" -#: netbox/extras/forms/model_forms.py:334 +#: extras/forms/model_forms.py:334 msgid "A notification group specify at least one user or group." msgstr "" "Un groupe de notifications spécifie au moins un utilisateur ou un groupe." -#: netbox/extras/forms/model_forms.py:356 -#: netbox/templates/extras/webhook.html:23 +#: extras/forms/model_forms.py:356 templates/extras/webhook.html:23 msgid "HTTP Request" msgstr "Requête HTTP" -#: netbox/extras/forms/model_forms.py:358 -#: netbox/templates/extras/webhook.html:44 +#: extras/forms/model_forms.py:358 templates/extras/webhook.html:44 msgid "SSL" msgstr "SLL" -#: netbox/extras/forms/model_forms.py:380 +#: extras/forms/model_forms.py:380 msgid "Action choice" msgstr "Choix de l'action" -#: netbox/extras/forms/model_forms.py:385 +#: extras/forms/model_forms.py:385 msgid "Enter conditions in JSON format." msgstr "Entrez les conditions dans JSON format." -#: netbox/extras/forms/model_forms.py:389 +#: extras/forms/model_forms.py:389 msgid "" "Enter parameters to pass to the action in JSON format." @@ -8102,119 +7546,117 @@ msgstr "" "Entrez les paramètres à transmettre à l'action dans JSON format." -#: netbox/extras/forms/model_forms.py:394 -#: netbox/templates/extras/eventrule.html:10 +#: extras/forms/model_forms.py:394 templates/extras/eventrule.html:10 msgid "Event Rule" msgstr "Règle de l'événement" -#: netbox/extras/forms/model_forms.py:395 +#: extras/forms/model_forms.py:395 msgid "Triggers" msgstr "éléments déclencheurs" -#: netbox/extras/forms/model_forms.py:442 +#: extras/forms/model_forms.py:442 msgid "Notification group" msgstr "Groupe de notifications" -#: netbox/extras/forms/model_forms.py:562 netbox/netbox/navigation/menu.py:26 -#: netbox/tenancy/tables/tenants.py:22 +#: extras/forms/model_forms.py:562 netbox/navigation/menu.py:26 +#: tenancy/tables/tenants.py:22 msgid "Tenants" msgstr "Locataires" -#: netbox/extras/forms/model_forms.py:606 +#: extras/forms/model_forms.py:606 msgid "Data is populated from the remote source selected below." msgstr "" "Les données sont renseignées à partir de la source distante sélectionnée ci-" "dessous." -#: netbox/extras/forms/model_forms.py:612 +#: extras/forms/model_forms.py:612 msgid "Must specify either local data or a data file" msgstr "Doit spécifier des données locales ou un fichier de données" -#: netbox/extras/forms/model_forms.py:631 -#: netbox/templates/core/datafile.html:55 +#: extras/forms/model_forms.py:631 templates/core/datafile.html:55 msgid "Content" msgstr "Contenu" -#: netbox/extras/forms/reports.py:17 netbox/extras/forms/scripts.py:23 +#: extras/forms/reports.py:17 extras/forms/scripts.py:23 msgid "Schedule at" msgstr "Horaire à" -#: netbox/extras/forms/reports.py:18 +#: extras/forms/reports.py:18 msgid "Schedule execution of report to a set time" msgstr "Planifier l'exécution du rapport à une heure définie" -#: netbox/extras/forms/reports.py:23 netbox/extras/forms/scripts.py:29 +#: extras/forms/reports.py:23 extras/forms/scripts.py:29 msgid "Recurs every" msgstr "Récurrent chaque fois" -#: netbox/extras/forms/reports.py:27 +#: extras/forms/reports.py:27 msgid "Interval at which this report is re-run (in minutes)" msgstr "Intervalle auquel ce rapport est réexécuté (en minutes)" -#: netbox/extras/forms/reports.py:35 netbox/extras/forms/scripts.py:41 +#: extras/forms/reports.py:35 extras/forms/scripts.py:41 #, python-brace-format msgid " (current time: {now})" msgstr " (heure actuelle : {now})" -#: netbox/extras/forms/reports.py:45 netbox/extras/forms/scripts.py:51 +#: extras/forms/reports.py:45 extras/forms/scripts.py:51 msgid "Scheduled time must be in the future." msgstr "L'heure prévue doit se situer dans le futur." -#: netbox/extras/forms/scripts.py:17 +#: extras/forms/scripts.py:17 msgid "Commit changes" msgstr "Valider les modifications" -#: netbox/extras/forms/scripts.py:18 +#: extras/forms/scripts.py:18 msgid "Commit changes to the database (uncheck for a dry-run)" msgstr "" "Validez les modifications apportées à la base de données (décochez cette " "case pour une exécution à sec)" -#: netbox/extras/forms/scripts.py:24 +#: extras/forms/scripts.py:24 msgid "Schedule execution of script to a set time" msgstr "Planifier l'exécution du script à une heure définie" -#: netbox/extras/forms/scripts.py:33 +#: extras/forms/scripts.py:33 msgid "Interval at which this script is re-run (in minutes)" msgstr "Intervalle auquel ce script est réexécuté (en minutes)" -#: netbox/extras/jobs.py:49 +#: extras/jobs.py:49 msgid "Database changes have been reverted automatically." msgstr "" "Les modifications apportées à la base de données ont été annulées " "automatiquement." -#: netbox/extras/jobs.py:56 +#: extras/jobs.py:55 msgid "Script aborted with error: " msgstr "Le script a été abandonné avec une erreur : " -#: netbox/extras/jobs.py:66 +#: extras/jobs.py:65 msgid "An exception occurred: " msgstr "Une exception s'est produite : " -#: netbox/extras/jobs.py:71 +#: extras/jobs.py:70 msgid "Database changes have been reverted due to error." msgstr "" "Les modifications apportées à la base de données ont été annulées en raison " "d'une erreur." -#: netbox/extras/management/commands/reindex.py:66 +#: extras/management/commands/reindex.py:66 msgid "No indexers found!" msgstr "Aucun indexeur n'a été trouvé !" -#: netbox/extras/models/configs.py:130 +#: extras/models/configs.py:130 msgid "config context" msgstr "contexte de configuration" -#: netbox/extras/models/configs.py:131 +#: extras/models/configs.py:131 msgid "config contexts" msgstr "contextes de configuration" -#: netbox/extras/models/configs.py:149 netbox/extras/models/configs.py:205 +#: extras/models/configs.py:149 extras/models/configs.py:205 msgid "JSON data must be in object form. Example:" msgstr "Les données JSON doivent être sous forme d'objet. Exemple :" -#: netbox/extras/models/configs.py:169 +#: extras/models/configs.py:169 msgid "" "Local config context data takes precedence over source contexts in the final" " rendered config context" @@ -8222,19 +7664,19 @@ msgstr "" "Les données du contexte de configuration local ont priorité sur les " "contextes source dans le contexte de configuration final rendu" -#: netbox/extras/models/configs.py:224 +#: extras/models/configs.py:224 msgid "template code" msgstr "code du modèle" -#: netbox/extras/models/configs.py:225 +#: extras/models/configs.py:225 msgid "Jinja2 template code." msgstr "Code du modèle Jinja2." -#: netbox/extras/models/configs.py:228 +#: extras/models/configs.py:228 msgid "environment parameters" msgstr "paramètres d'environnement" -#: netbox/extras/models/configs.py:233 +#: extras/models/configs.py:233 msgid "" "Any additional" @@ -8245,44 +7687,44 @@ msgstr "" " supplémentaires à passer lors de la construction de l'environnement " "Jinja2." -#: netbox/extras/models/configs.py:240 +#: extras/models/configs.py:240 msgid "config template" msgstr "modèle de configuration" -#: netbox/extras/models/configs.py:241 +#: extras/models/configs.py:241 msgid "config templates" msgstr "modèles de configuration" -#: netbox/extras/models/customfields.py:75 +#: extras/models/customfields.py:75 msgid "The object(s) to which this field applies." msgstr "Le ou les objets auxquels ce champ s'applique." -#: netbox/extras/models/customfields.py:82 +#: extras/models/customfields.py:82 msgid "The type of data this custom field holds" msgstr "Le type de données que contient ce champ personnalisé" -#: netbox/extras/models/customfields.py:89 +#: extras/models/customfields.py:89 msgid "The type of NetBox object this field maps to (for object fields)" msgstr "" "Le type d'objet NetBox auquel ce champ correspond (pour les champs d'objets)" -#: netbox/extras/models/customfields.py:95 +#: extras/models/customfields.py:95 msgid "Internal field name" msgstr "Nom du champ interne" -#: netbox/extras/models/customfields.py:99 +#: extras/models/customfields.py:99 msgid "Only alphanumeric characters and underscores are allowed." msgstr "" "Seuls les caractères alphanumériques et les traits de soulignement sont " "autorisés." -#: netbox/extras/models/customfields.py:104 +#: extras/models/customfields.py:104 msgid "Double underscores are not permitted in custom field names." msgstr "" "Les doubles soulignements ne sont pas autorisés dans les noms de champs " "personnalisés." -#: netbox/extras/models/customfields.py:115 +#: extras/models/customfields.py:115 msgid "" "Name of the field as displayed to users (if not provided, 'the field's name " "will be used)" @@ -8290,19 +7732,19 @@ msgstr "" "Nom du champ tel qu'il est affiché aux utilisateurs (s'il n'est pas fourni, " "« le nom du champ sera utilisé) »" -#: netbox/extras/models/customfields.py:119 netbox/extras/models/models.py:317 +#: extras/models/customfields.py:119 extras/models/models.py:317 msgid "group name" msgstr "nom du groupe" -#: netbox/extras/models/customfields.py:122 +#: extras/models/customfields.py:122 msgid "Custom fields within the same group will be displayed together" msgstr "Les champs personnalisés d'un même groupe seront affichés ensemble" -#: netbox/extras/models/customfields.py:130 +#: extras/models/customfields.py:130 msgid "required" msgstr "requis" -#: netbox/extras/models/customfields.py:132 +#: extras/models/customfields.py:132 msgid "" "This field is required when creating new objects or editing an existing " "object." @@ -8310,19 +7752,19 @@ msgstr "" "Ce champ est obligatoire lors de la création de nouveaux objets ou de la " "modification d'un objet existant." -#: netbox/extras/models/customfields.py:135 +#: extras/models/customfields.py:135 msgid "must be unique" msgstr "doit être unique" -#: netbox/extras/models/customfields.py:137 +#: extras/models/customfields.py:137 msgid "The value of this field must be unique for the assigned object" msgstr "La valeur de ce champ doit être unique pour l'objet attribué" -#: netbox/extras/models/customfields.py:140 +#: extras/models/customfields.py:140 msgid "search weight" msgstr "poids de recherche" -#: netbox/extras/models/customfields.py:143 +#: extras/models/customfields.py:143 msgid "" "Weighting for search. Lower values are considered more important. Fields " "with a search weight of zero will be ignored." @@ -8331,11 +7773,11 @@ msgstr "" "comme plus importantes. Les champs dont le poids de recherche est nul seront" " ignorés." -#: netbox/extras/models/customfields.py:148 +#: extras/models/customfields.py:148 msgid "filter logic" msgstr "logique de filtrage" -#: netbox/extras/models/customfields.py:152 +#: extras/models/customfields.py:152 msgid "" "Loose matches any instance of a given string; exact matches the entire " "field." @@ -8343,11 +7785,11 @@ msgstr "" "Loose correspond à n'importe quelle instance d'une chaîne donnée ; " "correspond exactement à l'ensemble du champ." -#: netbox/extras/models/customfields.py:155 +#: extras/models/customfields.py:155 msgid "default" msgstr "défaut" -#: netbox/extras/models/customfields.py:159 +#: extras/models/customfields.py:159 msgid "" "Default value for the field (must be a JSON value). Encapsulate strings with" " double quotes (e.g. \"Foo\")." @@ -8355,7 +7797,7 @@ msgstr "" "Valeur par défaut pour le champ (doit être une valeur JSON). Encapsulez des " "chaînes avec des guillemets doubles (par exemple, « Foo »)." -#: netbox/extras/models/customfields.py:166 +#: extras/models/customfields.py:166 msgid "" "Filter the object selection choices using a query_params dict (must be a " "JSON value).Encapsulate strings with double quotes (e.g. \"Foo\")." @@ -8364,37 +7806,37 @@ msgstr "" "(doit être une valeur JSON). Encapsulez les chaînes avec des guillemets " "doubles (par exemple « Foo »)." -#: netbox/extras/models/customfields.py:172 +#: extras/models/customfields.py:172 msgid "display weight" msgstr "poids de l'écran" -#: netbox/extras/models/customfields.py:173 +#: extras/models/customfields.py:173 msgid "Fields with higher weights appear lower in a form." msgstr "" "Les champs dont le poids est plus élevé apparaissent plus bas dans un " "formulaire." -#: netbox/extras/models/customfields.py:178 +#: extras/models/customfields.py:178 msgid "minimum value" msgstr "valeur minimale" -#: netbox/extras/models/customfields.py:179 +#: extras/models/customfields.py:179 msgid "Minimum allowed value (for numeric fields)" msgstr "Valeur minimale autorisée (pour les champs numériques)" -#: netbox/extras/models/customfields.py:184 +#: extras/models/customfields.py:184 msgid "maximum value" msgstr "valeur maximale" -#: netbox/extras/models/customfields.py:185 +#: extras/models/customfields.py:185 msgid "Maximum allowed value (for numeric fields)" msgstr "Valeur maximale autorisée (pour les champs numériques)" -#: netbox/extras/models/customfields.py:191 +#: extras/models/customfields.py:191 msgid "validation regex" msgstr "regex de validation" -#: netbox/extras/models/customfields.py:193 +#: extras/models/customfields.py:193 #, python-brace-format msgid "" "Regular expression to enforce on text field values. Use ^ and $ to force " @@ -8406,199 +7848,197 @@ msgstr "" "exemple, ^ [DE A À Z]{3}$ limitera les valeurs à exactement " "trois lettres majuscules." -#: netbox/extras/models/customfields.py:201 +#: extras/models/customfields.py:201 msgid "choice set" msgstr "set de choix" -#: netbox/extras/models/customfields.py:210 +#: extras/models/customfields.py:210 msgid "Specifies whether the custom field is displayed in the UI" msgstr "" "Indique si le champ personnalisé est affiché dans l'interface utilisateur" -#: netbox/extras/models/customfields.py:217 +#: extras/models/customfields.py:217 msgid "Specifies whether the custom field value can be edited in the UI" msgstr "" "Indique si la valeur du champ personnalisé peut être modifiée dans " "l'interface utilisateur" -#: netbox/extras/models/customfields.py:221 +#: extras/models/customfields.py:221 msgid "is cloneable" msgstr "est clonable" -#: netbox/extras/models/customfields.py:222 +#: extras/models/customfields.py:222 msgid "Replicate this value when cloning objects" msgstr "Répliquez cette valeur lors du clonage d'objets" -#: netbox/extras/models/customfields.py:239 +#: extras/models/customfields.py:239 msgid "custom field" msgstr "champ personnalisé" -#: netbox/extras/models/customfields.py:240 +#: extras/models/customfields.py:240 msgid "custom fields" msgstr "champs personnalisés" -#: netbox/extras/models/customfields.py:329 +#: extras/models/customfields.py:329 #, python-brace-format msgid "Invalid default value \"{value}\": {error}" msgstr "Valeur par défaut non valide »{value}« : {error}" -#: netbox/extras/models/customfields.py:336 +#: extras/models/customfields.py:336 msgid "A minimum value may be set only for numeric fields" msgstr "" "Une valeur minimale ne peut être définie que pour les champs numériques" -#: netbox/extras/models/customfields.py:338 +#: extras/models/customfields.py:338 msgid "A maximum value may be set only for numeric fields" msgstr "" "Une valeur maximale ne peut être définie que pour les champs numériques" -#: netbox/extras/models/customfields.py:348 +#: extras/models/customfields.py:348 msgid "" "Regular expression validation is supported only for text and URL fields" msgstr "" "La validation des expressions régulières est prise en charge uniquement pour" " les champs de texte et d'URL" -#: netbox/extras/models/customfields.py:354 +#: extras/models/customfields.py:354 msgid "Uniqueness cannot be enforced for boolean fields" msgstr "L'unicité ne peut pas être appliquée aux champs booléens" -#: netbox/extras/models/customfields.py:364 +#: extras/models/customfields.py:364 msgid "Selection fields must specify a set of choices." msgstr "Les champs de sélection doivent spécifier un ensemble de choix." -#: netbox/extras/models/customfields.py:368 +#: extras/models/customfields.py:368 msgid "Choices may be set only on selection fields." msgstr "Les choix ne peuvent être définis que sur les champs de sélection." -#: netbox/extras/models/customfields.py:375 +#: extras/models/customfields.py:375 msgid "Object fields must define an object type." msgstr "Les champs d'objet doivent définir un type d'objet." -#: netbox/extras/models/customfields.py:379 +#: extras/models/customfields.py:379 #, python-brace-format msgid "{type} fields may not define an object type." msgstr "{type} les champs ne peuvent pas définir de type d'objet." -#: netbox/extras/models/customfields.py:386 +#: extras/models/customfields.py:386 msgid "A related object filter can be defined only for object fields." msgstr "" "Un filtre d'objet associé ne peut être défini que pour les champs d'objets." -#: netbox/extras/models/customfields.py:390 +#: extras/models/customfields.py:390 msgid "Filter must be defined as a dictionary mapping attributes to values." msgstr "" "Le filtre doit être défini comme un dictionnaire faisant correspondre les " "attributs aux valeurs." -#: netbox/extras/models/customfields.py:469 +#: extras/models/customfields.py:469 msgid "True" msgstr "Vrai" -#: netbox/extras/models/customfields.py:470 +#: extras/models/customfields.py:470 msgid "False" msgstr "Faux" -#: netbox/extras/models/customfields.py:560 +#: extras/models/customfields.py:560 #, python-brace-format msgid "Values must match this regex: {regex}" msgstr "" "Les valeurs doivent correspondre à cette expression régulière : " "{regex}" -#: netbox/extras/models/customfields.py:654 +#: extras/models/customfields.py:654 msgid "Value must be a string." msgstr "La valeur doit être une chaîne." -#: netbox/extras/models/customfields.py:656 +#: extras/models/customfields.py:656 #, python-brace-format msgid "Value must match regex '{regex}'" msgstr "La valeur doit correspondre à « regex »{regex}'" -#: netbox/extras/models/customfields.py:661 +#: extras/models/customfields.py:661 msgid "Value must be an integer." msgstr "La valeur doit être un entier." -#: netbox/extras/models/customfields.py:664 -#: netbox/extras/models/customfields.py:679 +#: extras/models/customfields.py:664 extras/models/customfields.py:679 #, python-brace-format msgid "Value must be at least {minimum}" msgstr "La valeur doit être d'au moins {minimum}" -#: netbox/extras/models/customfields.py:668 -#: netbox/extras/models/customfields.py:683 +#: extras/models/customfields.py:668 extras/models/customfields.py:683 #, python-brace-format msgid "Value must not exceed {maximum}" msgstr "La valeur ne doit pas dépasser {maximum}" -#: netbox/extras/models/customfields.py:676 +#: extras/models/customfields.py:676 msgid "Value must be a decimal." msgstr "La valeur doit être une décimale." -#: netbox/extras/models/customfields.py:688 +#: extras/models/customfields.py:688 msgid "Value must be true or false." msgstr "La valeur doit être vraie ou fausse." -#: netbox/extras/models/customfields.py:696 +#: extras/models/customfields.py:696 msgid "Date values must be in ISO 8601 format (YYYY-MM-DD)." msgstr "Les valeurs de date doivent être au format ISO 8601 (AAAA-MM-JJ)." -#: netbox/extras/models/customfields.py:705 +#: extras/models/customfields.py:705 msgid "Date and time values must be in ISO 8601 format (YYYY-MM-DD HH:MM:SS)." msgstr "" "Les valeurs de date et d'heure doivent être au format ISO 8601 (YYYY-MM-DD " "HH:MM:SS)." -#: netbox/extras/models/customfields.py:712 +#: extras/models/customfields.py:712 #, python-brace-format msgid "Invalid choice ({value}) for choice set {choiceset}." msgstr "Choix non valide ({value}) pour le set de choix {choiceset}." -#: netbox/extras/models/customfields.py:722 +#: extras/models/customfields.py:722 #, python-brace-format msgid "Invalid choice(s) ({value}) for choice set {choiceset}." msgstr "Choix (s) non valide ({value}) pour le set de choix {choiceset}." -#: netbox/extras/models/customfields.py:731 +#: extras/models/customfields.py:731 #, python-brace-format msgid "Value must be an object ID, not {type}" msgstr "La valeur doit être un identifiant d'objet, et non {type}" -#: netbox/extras/models/customfields.py:737 +#: extras/models/customfields.py:737 #, python-brace-format msgid "Value must be a list of object IDs, not {type}" msgstr "La valeur doit être une liste d'identifiants d'objets, et non {type}" -#: netbox/extras/models/customfields.py:741 +#: extras/models/customfields.py:741 #, python-brace-format msgid "Found invalid object ID: {id}" msgstr "ID d'objet non valide trouvé : {id}" -#: netbox/extras/models/customfields.py:744 +#: extras/models/customfields.py:744 msgid "Required field cannot be empty." msgstr "Le champ obligatoire ne peut pas être vide." -#: netbox/extras/models/customfields.py:763 +#: extras/models/customfields.py:763 msgid "Base set of predefined choices (optional)" msgstr "Ensemble de base de choix prédéfinis (facultatif)" -#: netbox/extras/models/customfields.py:775 +#: extras/models/customfields.py:775 msgid "Choices are automatically ordered alphabetically" msgstr "Les choix sont automatiquement classés par ordre alphabétique" -#: netbox/extras/models/customfields.py:782 +#: extras/models/customfields.py:782 msgid "custom field choice set" msgstr "ensemble de choix de champs personnalisés" -#: netbox/extras/models/customfields.py:783 +#: extras/models/customfields.py:783 msgid "custom field choice sets" msgstr "ensembles de choix de champs personnalisés" -#: netbox/extras/models/customfields.py:825 +#: extras/models/customfields.py:825 msgid "Must define base or extra choices." msgstr "Doit définir des choix de base ou supplémentaires." -#: netbox/extras/models/customfields.py:849 +#: extras/models/customfields.py:849 #, python-brace-format msgid "" "Cannot remove choice {choice} as there are {model} objects which reference " @@ -8607,60 +8047,60 @@ msgstr "" "Impossible de supprimer le choix {choice} comme il y en a {model} objets qui" " y font référence." -#: netbox/extras/models/dashboard.py:18 +#: extras/models/dashboard.py:18 msgid "layout" msgstr "disposition" -#: netbox/extras/models/dashboard.py:22 +#: extras/models/dashboard.py:22 msgid "config" msgstr "config" -#: netbox/extras/models/dashboard.py:27 +#: extras/models/dashboard.py:27 msgid "dashboard" msgstr "tableau de bord" -#: netbox/extras/models/dashboard.py:28 +#: extras/models/dashboard.py:28 msgid "dashboards" msgstr "tableaux de bord" -#: netbox/extras/models/models.py:52 +#: extras/models/models.py:52 msgid "object types" msgstr "types d'objets" -#: netbox/extras/models/models.py:53 +#: extras/models/models.py:53 msgid "The object(s) to which this rule applies." msgstr "Le ou les objets auxquels cette règle s'applique." -#: netbox/extras/models/models.py:67 +#: extras/models/models.py:67 msgid "The types of event which will trigger this rule." msgstr "Les types d'événements qui déclencheront cette règle." -#: netbox/extras/models/models.py:74 +#: extras/models/models.py:74 msgid "conditions" msgstr "conditions" -#: netbox/extras/models/models.py:77 +#: extras/models/models.py:77 msgid "" "A set of conditions which determine whether the event will be generated." msgstr "Un ensemble de conditions qui déterminent si l'événement sera généré." -#: netbox/extras/models/models.py:85 +#: extras/models/models.py:85 msgid "action type" msgstr "type d'action" -#: netbox/extras/models/models.py:104 +#: extras/models/models.py:104 msgid "Additional data to pass to the action object" msgstr "Données supplémentaires à transmettre à l'objet d'action" -#: netbox/extras/models/models.py:116 +#: extras/models/models.py:116 msgid "event rule" msgstr "règle de l'événement" -#: netbox/extras/models/models.py:117 +#: extras/models/models.py:117 msgid "event rules" msgstr "règles de l'événement" -#: netbox/extras/models/models.py:166 +#: extras/models/models.py:166 msgid "" "This URL will be called using the HTTP method defined when the webhook is " "called. Jinja2 template processing is supported with the same context as the" @@ -8670,7 +8110,7 @@ msgstr "" "du webhook. Le traitement du modèle Jinja2 est pris en charge dans le même " "contexte que le corps de la requête." -#: netbox/extras/models/models.py:181 +#: extras/models/models.py:181 msgid "" "The complete list of official content types is available ici." -#: netbox/extras/models/models.py:186 +#: extras/models/models.py:186 msgid "additional headers" msgstr "en-têtes supplémentaires" -#: netbox/extras/models/models.py:189 +#: extras/models/models.py:189 msgid "" "User-supplied HTTP headers to be sent with the request in addition to the " "HTTP content type. Headers should be defined in the format Name: " @@ -8696,11 +8136,11 @@ msgstr "" "Nom : Value. Le traitement du modèle Jinja2 est pris en charge " "dans le même contexte que le corps de la requête (ci-dessous)." -#: netbox/extras/models/models.py:195 +#: extras/models/models.py:195 msgid "body template" msgstr "modèle de carrosserie" -#: netbox/extras/models/models.py:198 +#: extras/models/models.py:198 msgid "" "Jinja2 template for a custom request body. If blank, a JSON object " "representing the change will be included. Available context data includes: " @@ -8714,11 +8154,11 @@ msgstr "" "d'utilisateur, identifiant_demande, et " "données." -#: netbox/extras/models/models.py:204 +#: extras/models/models.py:204 msgid "secret" msgstr "secret" -#: netbox/extras/models/models.py:208 +#: extras/models/models.py:208 msgid "" "When provided, the request will include a X-Hook-Signature " "header containing a HMAC hex digest of the payload body using the secret as " @@ -8729,16 +8169,16 @@ msgstr "" "charge utile en utilisant le secret comme clé. Le secret n'est pas transmis " "dans la demande." -#: netbox/extras/models/models.py:215 +#: extras/models/models.py:215 msgid "Enable SSL certificate verification. Disable with caution!" msgstr "" "Activez la vérification des certificats SSL. Désactivez avec précaution !" -#: netbox/extras/models/models.py:221 netbox/templates/extras/webhook.html:51 +#: extras/models/models.py:221 templates/extras/webhook.html:51 msgid "CA File Path" msgstr "Chemin du fichier CA" -#: netbox/extras/models/models.py:223 +#: extras/models/models.py:223 msgid "" "The specific CA certificate file to use for SSL verification. Leave blank to" " use the system defaults." @@ -8746,65 +8186,65 @@ msgstr "" "Le fichier de certificat CA spécifique à utiliser pour la vérification SSL. " "Laissez ce champ vide pour utiliser les paramètres par défaut du système." -#: netbox/extras/models/models.py:234 +#: extras/models/models.py:234 msgid "webhook" msgstr "webhook" -#: netbox/extras/models/models.py:235 +#: extras/models/models.py:235 msgid "webhooks" msgstr "webhooks" -#: netbox/extras/models/models.py:253 +#: extras/models/models.py:253 msgid "Do not specify a CA certificate file if SSL verification is disabled." msgstr "" "Ne spécifiez pas de fichier de certificat CA si la vérification SSL est " "désactivée." -#: netbox/extras/models/models.py:293 +#: extras/models/models.py:293 msgid "The object type(s) to which this link applies." msgstr "Le ou les types d'objets auxquels ce lien s'applique." -#: netbox/extras/models/models.py:305 +#: extras/models/models.py:305 msgid "link text" msgstr "texte du lien" -#: netbox/extras/models/models.py:306 +#: extras/models/models.py:306 msgid "Jinja2 template code for link text" msgstr "Code modèle Jinja2 pour le texte du lien" -#: netbox/extras/models/models.py:309 +#: extras/models/models.py:309 msgid "link URL" msgstr "URL du lien" -#: netbox/extras/models/models.py:310 +#: extras/models/models.py:310 msgid "Jinja2 template code for link URL" msgstr "Code modèle Jinja2 pour l'URL du lien" -#: netbox/extras/models/models.py:320 +#: extras/models/models.py:320 msgid "Links with the same group will appear as a dropdown menu" msgstr "Les liens avec le même groupe apparaîtront dans un menu déroulant" -#: netbox/extras/models/models.py:330 +#: extras/models/models.py:330 msgid "new window" msgstr "nouvelle fenêtre" -#: netbox/extras/models/models.py:332 +#: extras/models/models.py:332 msgid "Force link to open in a new window" msgstr "Forcer l'ouverture du lien dans une nouvelle fenêtre" -#: netbox/extras/models/models.py:341 +#: extras/models/models.py:341 msgid "custom link" msgstr "lien personnalisé" -#: netbox/extras/models/models.py:342 +#: extras/models/models.py:342 msgid "custom links" msgstr "liens personnalisés" -#: netbox/extras/models/models.py:389 +#: extras/models/models.py:389 msgid "The object type(s) to which this template applies." msgstr "Le ou les types d'objets auxquels ce modèle s'applique." -#: netbox/extras/models/models.py:402 +#: extras/models/models.py:402 msgid "" "Jinja2 template code. The list of objects being exported is passed as a " "context variable named queryset." @@ -8812,1099 +8252,1064 @@ msgstr "" "Code du modèle Jinja2. La liste des objets exportés est transmise sous forme" " de variable de contexte nommée ensemble de requêtes." -#: netbox/extras/models/models.py:410 +#: extras/models/models.py:410 msgid "Defaults to text/plain; charset=utf-8" msgstr "" "La valeur par défaut est texte/plain ; jeu de caractères = " "utf-8" -#: netbox/extras/models/models.py:413 +#: extras/models/models.py:413 msgid "file extension" msgstr "extension de fichier" -#: netbox/extras/models/models.py:416 +#: extras/models/models.py:416 msgid "Extension to append to the rendered filename" msgstr "Extension à ajouter au nom de fichier affiché" -#: netbox/extras/models/models.py:419 +#: extras/models/models.py:419 msgid "as attachment" msgstr "en pièce jointe" -#: netbox/extras/models/models.py:421 +#: extras/models/models.py:421 msgid "Download file as attachment" msgstr "Télécharger le fichier en pièce jointe" -#: netbox/extras/models/models.py:430 +#: extras/models/models.py:430 msgid "export template" msgstr "modèle d'exportation" -#: netbox/extras/models/models.py:431 +#: extras/models/models.py:431 msgid "export templates" msgstr "modèles d'exportation" -#: netbox/extras/models/models.py:448 +#: extras/models/models.py:448 #, python-brace-format msgid "\"{name}\" is a reserved name. Please choose a different name." msgstr "«{name}« est un nom réservé. Veuillez choisir un autre nom." -#: netbox/extras/models/models.py:498 +#: extras/models/models.py:498 msgid "The object type(s) to which this filter applies." msgstr "Le ou les types d'objets auxquels ce filtre s'applique." -#: netbox/extras/models/models.py:530 +#: extras/models/models.py:530 msgid "shared" msgstr "partagé" -#: netbox/extras/models/models.py:543 +#: extras/models/models.py:543 msgid "saved filter" msgstr "filtre enregistré" -#: netbox/extras/models/models.py:544 +#: extras/models/models.py:544 msgid "saved filters" msgstr "filtres enregistrés" -#: netbox/extras/models/models.py:562 +#: extras/models/models.py:562 msgid "Filter parameters must be stored as a dictionary of keyword arguments." msgstr "" "Les paramètres de filtre doivent être stockés sous la forme d'un " "dictionnaire d'arguments de mots-clés." -#: netbox/extras/models/models.py:590 +#: extras/models/models.py:590 msgid "image height" msgstr "hauteur de l'image" -#: netbox/extras/models/models.py:593 +#: extras/models/models.py:593 msgid "image width" msgstr "largeur de l'image" -#: netbox/extras/models/models.py:610 +#: extras/models/models.py:610 msgid "image attachment" msgstr "image en pièce jointe" -#: netbox/extras/models/models.py:611 +#: extras/models/models.py:611 msgid "image attachments" msgstr "images jointes" -#: netbox/extras/models/models.py:625 +#: extras/models/models.py:625 #, python-brace-format msgid "Image attachments cannot be assigned to this object type ({type})." msgstr "" "Les images jointes ne peuvent pas être attribuées à ce type d'objet " "({type})." -#: netbox/extras/models/models.py:688 +#: extras/models/models.py:688 msgid "kind" msgstr "sorte" -#: netbox/extras/models/models.py:702 +#: extras/models/models.py:702 msgid "journal entry" msgstr "entrée de journal" -#: netbox/extras/models/models.py:703 +#: extras/models/models.py:703 msgid "journal entries" msgstr "entrées de journal" -#: netbox/extras/models/models.py:718 +#: extras/models/models.py:718 #, python-brace-format msgid "Journaling is not supported for this object type ({type})." msgstr "" "La journalisation n'est pas prise en charge pour ce type d'objet ({type})." -#: netbox/extras/models/models.py:760 +#: extras/models/models.py:760 msgid "bookmark" msgstr "signet" -#: netbox/extras/models/models.py:761 +#: extras/models/models.py:761 msgid "bookmarks" msgstr "signets" -#: netbox/extras/models/models.py:774 +#: extras/models/models.py:774 #, python-brace-format msgid "Bookmarks cannot be assigned to this object type ({type})." msgstr "Les signets ne peuvent pas être affectés à ce type d'objet ({type})." -#: netbox/extras/models/notifications.py:43 +#: extras/models/notifications.py:43 msgid "read" msgstr "lire" -#: netbox/extras/models/notifications.py:66 +#: extras/models/notifications.py:66 msgid "event" msgstr "événement" -#: netbox/extras/models/notifications.py:84 +#: extras/models/notifications.py:84 msgid "notification" msgstr "notification" -#: netbox/extras/models/notifications.py:85 +#: extras/models/notifications.py:85 msgid "notifications" msgstr "notifications" -#: netbox/extras/models/notifications.py:99 -#: netbox/extras/models/notifications.py:234 +#: extras/models/notifications.py:99 extras/models/notifications.py:234 #, python-brace-format msgid "Objects of this type ({type}) do not support notifications." msgstr "" "Les objets de ce type ({type}) ne prennent pas en charge les notifications." -#: netbox/extras/models/notifications.py:137 netbox/users/models/users.py:58 -#: netbox/users/models/users.py:77 +#: extras/models/notifications.py:137 users/models/users.py:58 +#: users/models/users.py:77 msgid "groups" msgstr "groupes" -#: netbox/extras/models/notifications.py:143 netbox/users/models/users.py:93 +#: extras/models/notifications.py:143 users/models/users.py:93 msgid "users" msgstr "utilisateurs" -#: netbox/extras/models/notifications.py:152 +#: extras/models/notifications.py:152 msgid "notification group" msgstr "groupe de notifications" -#: netbox/extras/models/notifications.py:153 +#: extras/models/notifications.py:153 msgid "notification groups" msgstr "groupes de notifications" -#: netbox/extras/models/notifications.py:217 +#: extras/models/notifications.py:217 msgid "subscription" msgstr "abonnement" -#: netbox/extras/models/notifications.py:218 +#: extras/models/notifications.py:218 msgid "subscriptions" msgstr "abonnements" -#: netbox/extras/models/scripts.py:42 +#: extras/models/scripts.py:42 msgid "is executable" msgstr "est exécutable" -#: netbox/extras/models/scripts.py:64 +#: extras/models/scripts.py:64 msgid "script" msgstr "script" -#: netbox/extras/models/scripts.py:65 +#: extras/models/scripts.py:65 msgid "scripts" msgstr "scripts" -#: netbox/extras/models/scripts.py:111 +#: extras/models/scripts.py:111 msgid "script module" msgstr "module de script" -#: netbox/extras/models/scripts.py:112 +#: extras/models/scripts.py:112 msgid "script modules" msgstr "modules de script" -#: netbox/extras/models/search.py:22 +#: extras/models/search.py:22 msgid "timestamp" msgstr "horodatage" -#: netbox/extras/models/search.py:37 +#: extras/models/search.py:37 msgid "field" msgstr "champ" -#: netbox/extras/models/search.py:45 +#: extras/models/search.py:45 msgid "value" msgstr "valeur" -#: netbox/extras/models/search.py:56 +#: extras/models/search.py:56 msgid "cached value" msgstr "valeur mise en cache" -#: netbox/extras/models/search.py:57 +#: extras/models/search.py:57 msgid "cached values" msgstr "valeurs mises en cache" -#: netbox/extras/models/staging.py:44 +#: extras/models/staging.py:44 msgid "branch" msgstr "succursale" -#: netbox/extras/models/staging.py:45 +#: extras/models/staging.py:45 msgid "branches" msgstr "branches" -#: netbox/extras/models/staging.py:97 +#: extras/models/staging.py:97 msgid "staged change" msgstr "changement par étapes" -#: netbox/extras/models/staging.py:98 +#: extras/models/staging.py:98 msgid "staged changes" msgstr "modifications échelonnées" -#: netbox/extras/models/tags.py:40 +#: extras/models/tags.py:40 msgid "The object type(s) to which this tag can be applied." msgstr "Le ou les types d'objets auxquels cette balise peut être appliquée." -#: netbox/extras/models/tags.py:49 +#: extras/models/tags.py:49 msgid "tag" msgstr "étiquette" -#: netbox/extras/models/tags.py:50 +#: extras/models/tags.py:50 msgid "tags" msgstr "balises" -#: netbox/extras/models/tags.py:78 +#: extras/models/tags.py:78 msgid "tagged item" msgstr "article étiqueté" -#: netbox/extras/models/tags.py:79 +#: extras/models/tags.py:79 msgid "tagged items" msgstr "articles étiquetés" -#: netbox/extras/scripts.py:429 +#: extras/scripts.py:429 msgid "Script Data" msgstr "Données de script" -#: netbox/extras/scripts.py:433 +#: extras/scripts.py:433 msgid "Script Execution Parameters" msgstr "Paramètres d'exécution du script" -#: netbox/extras/tables/columns.py:12 -#: netbox/templates/htmx/notifications.html:18 +#: extras/tables/columns.py:12 templates/htmx/notifications.html:18 msgid "Dismiss" msgstr "Rejeter" -#: netbox/extras/tables/tables.py:62 netbox/extras/tables/tables.py:159 -#: netbox/extras/tables/tables.py:184 netbox/extras/tables/tables.py:250 -#: netbox/extras/tables/tables.py:276 netbox/extras/tables/tables.py:412 -#: netbox/extras/tables/tables.py:446 -#: netbox/templates/extras/customfield.html:105 -#: netbox/templates/extras/eventrule.html:27 -#: netbox/templates/users/objectpermission.html:64 netbox/users/tables.py:80 +#: extras/tables/tables.py:62 extras/tables/tables.py:159 +#: extras/tables/tables.py:184 extras/tables/tables.py:250 +#: extras/tables/tables.py:276 extras/tables/tables.py:412 +#: extras/tables/tables.py:446 templates/extras/customfield.html:105 +#: templates/extras/eventrule.html:27 templates/users/objectpermission.html:64 +#: users/tables.py:80 msgid "Object Types" msgstr "Types d'objets" -#: netbox/extras/tables/tables.py:69 +#: extras/tables/tables.py:69 msgid "Validate Uniqueness" msgstr "Valider le caractère" -#: netbox/extras/tables/tables.py:73 +#: extras/tables/tables.py:73 msgid "Visible" msgstr "Visible" -#: netbox/extras/tables/tables.py:76 +#: extras/tables/tables.py:76 msgid "Editable" msgstr "Modifiable" -#: netbox/extras/tables/tables.py:82 +#: extras/tables/tables.py:82 msgid "Related Object Type" msgstr "Type d'objet associé" -#: netbox/extras/tables/tables.py:86 -#: netbox/templates/extras/customfield.html:51 +#: extras/tables/tables.py:86 templates/extras/customfield.html:51 msgid "Choice Set" msgstr "Coffret Choice" -#: netbox/extras/tables/tables.py:94 +#: extras/tables/tables.py:94 msgid "Is Cloneable" msgstr "Est clonable" -#: netbox/extras/tables/tables.py:98 -#: netbox/templates/extras/customfield.html:118 +#: extras/tables/tables.py:98 templates/extras/customfield.html:118 msgid "Minimum Value" msgstr "Valeur minimale" -#: netbox/extras/tables/tables.py:101 -#: netbox/templates/extras/customfield.html:122 +#: extras/tables/tables.py:101 templates/extras/customfield.html:122 msgid "Maximum Value" msgstr "Valeur maximale" -#: netbox/extras/tables/tables.py:104 +#: extras/tables/tables.py:104 msgid "Validation Regex" msgstr "Regex de validation" -#: netbox/extras/tables/tables.py:137 +#: extras/tables/tables.py:137 msgid "Count" msgstr "Compter" -#: netbox/extras/tables/tables.py:140 +#: extras/tables/tables.py:140 msgid "Order Alphabetically" msgstr "Ordre alphabétique" -#: netbox/extras/tables/tables.py:165 -#: netbox/templates/extras/customlink.html:33 +#: extras/tables/tables.py:165 templates/extras/customlink.html:33 msgid "New Window" msgstr "Nouvelle fenêtre" -#: netbox/extras/tables/tables.py:187 +#: extras/tables/tables.py:187 msgid "As Attachment" msgstr "En tant que pièce jointe" -#: netbox/extras/tables/tables.py:195 netbox/extras/tables/tables.py:487 -#: netbox/extras/tables/tables.py:522 netbox/templates/core/datafile.html:24 -#: netbox/templates/dcim/device/render_config.html:22 -#: netbox/templates/extras/configcontext.html:39 -#: netbox/templates/extras/configtemplate.html:31 -#: netbox/templates/extras/exporttemplate.html:45 -#: netbox/templates/generic/bulk_import.html:35 -#: netbox/templates/virtualization/virtualmachine/render_config.html:22 +#: extras/tables/tables.py:195 extras/tables/tables.py:487 +#: extras/tables/tables.py:522 templates/core/datafile.html:24 +#: templates/dcim/device/render_config.html:22 +#: templates/extras/configcontext.html:39 +#: templates/extras/configtemplate.html:31 +#: templates/extras/exporttemplate.html:45 +#: templates/generic/bulk_import.html:35 +#: templates/virtualization/virtualmachine/render_config.html:22 msgid "Data File" msgstr "Fichier de données" -#: netbox/extras/tables/tables.py:200 netbox/extras/tables/tables.py:499 -#: netbox/extras/tables/tables.py:527 +#: extras/tables/tables.py:200 extras/tables/tables.py:499 +#: extras/tables/tables.py:527 msgid "Synced" msgstr "Synchronisé" -#: netbox/extras/tables/tables.py:227 +#: extras/tables/tables.py:227 msgid "Image" msgstr "Image" -#: netbox/extras/tables/tables.py:232 +#: extras/tables/tables.py:232 msgid "Size (Bytes)" msgstr "Taille (octets)" -#: netbox/extras/tables/tables.py:339 +#: extras/tables/tables.py:339 msgid "Read" msgstr "Lisez" -#: netbox/extras/tables/tables.py:382 +#: extras/tables/tables.py:382 msgid "SSL Validation" msgstr "Validation SSL" -#: netbox/extras/tables/tables.py:418 -#: netbox/templates/extras/eventrule.html:37 +#: extras/tables/tables.py:418 templates/extras/eventrule.html:37 msgid "Event Types" msgstr "Types d'événements" -#: netbox/extras/tables/tables.py:535 netbox/netbox/navigation/menu.py:77 -#: netbox/templates/dcim/devicerole.html:8 +#: extras/tables/tables.py:535 netbox/navigation/menu.py:77 +#: templates/dcim/devicerole.html:8 msgid "Device Roles" msgstr "Rôles des appareils" -#: netbox/extras/tables/tables.py:587 +#: extras/tables/tables.py:587 msgid "Comments (Short)" msgstr "Commentaires (courts)" -#: netbox/extras/tables/tables.py:606 netbox/extras/tables/tables.py:640 +#: extras/tables/tables.py:606 extras/tables/tables.py:640 msgid "Line" msgstr "Ligne" -#: netbox/extras/tables/tables.py:613 netbox/extras/tables/tables.py:650 +#: extras/tables/tables.py:613 extras/tables/tables.py:650 msgid "Level" msgstr "Niveau" -#: netbox/extras/tables/tables.py:619 netbox/extras/tables/tables.py:659 +#: extras/tables/tables.py:619 extras/tables/tables.py:659 msgid "Message" msgstr "Message" -#: netbox/extras/tables/tables.py:643 +#: extras/tables/tables.py:643 msgid "Method" msgstr "Méthode" -#: netbox/extras/validators.py:15 +#: extras/validators.py:15 #, python-format msgid "Ensure this value is equal to %(limit_value)s." msgstr "Assurez-vous que cette valeur est égale à %(limit_value)s." -#: netbox/extras/validators.py:26 +#: extras/validators.py:26 #, python-format msgid "Ensure this value does not equal %(limit_value)s." msgstr "Assurez-vous que cette valeur n'est pas égale %(limit_value)s." -#: netbox/extras/validators.py:37 +#: extras/validators.py:37 msgid "This field must be empty." msgstr "Ce champ doit être vide." -#: netbox/extras/validators.py:52 +#: extras/validators.py:52 msgid "This field must not be empty." msgstr "Ce champ ne doit pas être vide." -#: netbox/extras/validators.py:94 +#: extras/validators.py:94 msgid "Validation rules must be passed as a dictionary" msgstr "" "Les règles de validation doivent être transmises sous forme de dictionnaire" -#: netbox/extras/validators.py:119 +#: extras/validators.py:119 #, python-brace-format msgid "Custom validation failed for {attribute}: {exception}" msgstr "La validation personnalisée a échoué pour {attribute}: {exception}" -#: netbox/extras/validators.py:133 +#: extras/validators.py:133 #, python-brace-format msgid "Invalid attribute \"{name}\" for request" msgstr "Attribut non valide »{name}« pour demande" -#: netbox/extras/validators.py:150 +#: extras/validators.py:150 #, python-brace-format msgid "Invalid attribute \"{name}\" for {model}" msgstr "Attribut non valide »{name}« pour {model}" -#: netbox/extras/views.py:960 +#: extras/views.py:960 msgid "Your dashboard has been reset." msgstr "Votre tableau de bord a été réinitialisé." -#: netbox/extras/views.py:1006 +#: extras/views.py:1006 msgid "Added widget: " msgstr "Widget ajouté : " -#: netbox/extras/views.py:1047 +#: extras/views.py:1047 msgid "Updated widget: " msgstr "Widget mis à jour : " -#: netbox/extras/views.py:1083 +#: extras/views.py:1083 msgid "Deleted widget: " msgstr "Widget supprimé : " -#: netbox/extras/views.py:1085 +#: extras/views.py:1085 msgid "Error deleting widget: " msgstr "Erreur lors de la suppression du widget : " -#: netbox/extras/views.py:1172 +#: extras/views.py:1172 msgid "Unable to run script: RQ worker process not running." msgstr "" "Impossible d'exécuter le script : le processus de travail RQ n'est pas en " "cours d'exécution." -#: netbox/ipam/api/field_serializers.py:17 +#: ipam/api/field_serializers.py:17 msgid "Enter a valid IPv4 or IPv6 address with optional mask." msgstr "Entrez une adresse IPv4 ou IPv6 valide avec un masque facultatif." -#: netbox/ipam/api/field_serializers.py:24 +#: ipam/api/field_serializers.py:24 #, python-brace-format msgid "Invalid IP address format: {data}" msgstr "Format d'adresse IP non valide : {data}" -#: netbox/ipam/api/field_serializers.py:37 +#: ipam/api/field_serializers.py:37 msgid "Enter a valid IPv4 or IPv6 prefix and mask in CIDR notation." msgstr "Entrez un préfixe IPv4 ou IPv6 valide et un masque en notation CIDR." -#: netbox/ipam/api/field_serializers.py:44 +#: ipam/api/field_serializers.py:44 #, python-brace-format msgid "Invalid IP prefix format: {data}" msgstr "Format de préfixe IP non valide : {data}" -#: netbox/ipam/api/views.py:358 +#: ipam/api/views.py:358 msgid "" "Insufficient space is available to accommodate the requested prefix size(s)" msgstr "" "L'espace disponible est insuffisant pour prendre en charge la ou les tailles" " de préfixe demandées" -#: netbox/ipam/choices.py:30 +#: ipam/choices.py:30 msgid "Container" msgstr "Récipient" -#: netbox/ipam/choices.py:72 +#: ipam/choices.py:72 msgid "DHCP" msgstr "DHCP" -#: netbox/ipam/choices.py:73 +#: ipam/choices.py:73 msgid "SLAAC" msgstr "SLAAC" -#: netbox/ipam/choices.py:89 +#: ipam/choices.py:89 msgid "Loopback" msgstr "Bouclage" -#: netbox/ipam/choices.py:91 +#: ipam/choices.py:91 msgid "Anycast" msgstr "Anycast" -#: netbox/ipam/choices.py:115 +#: ipam/choices.py:115 msgid "Standard" msgstr "Norme" -#: netbox/ipam/choices.py:120 +#: ipam/choices.py:120 msgid "CheckPoint" msgstr "Point de contrôle" -#: netbox/ipam/choices.py:123 +#: ipam/choices.py:123 msgid "Cisco" msgstr "Cisco" -#: netbox/ipam/choices.py:137 +#: ipam/choices.py:137 msgid "Plaintext" msgstr "Texte brut" -#: netbox/ipam/fields.py:36 +#: ipam/fields.py:36 #, python-brace-format msgid "Invalid IP address format: {address}" msgstr "Format d'adresse IP non valide : {address}" -#: netbox/ipam/filtersets.py:48 netbox/vpn/filtersets.py:304 +#: ipam/filtersets.py:48 vpn/filtersets.py:304 msgid "Import target" msgstr "Objectif d'importation" -#: netbox/ipam/filtersets.py:54 netbox/vpn/filtersets.py:310 +#: ipam/filtersets.py:54 vpn/filtersets.py:310 msgid "Import target (name)" msgstr "Cible d'importation (nom)" -#: netbox/ipam/filtersets.py:59 netbox/vpn/filtersets.py:315 +#: ipam/filtersets.py:59 vpn/filtersets.py:315 msgid "Export target" msgstr "Objectif d'exportation" -#: netbox/ipam/filtersets.py:65 netbox/vpn/filtersets.py:321 +#: ipam/filtersets.py:65 vpn/filtersets.py:321 msgid "Export target (name)" msgstr "Cible d'exportation (nom)" -#: netbox/ipam/filtersets.py:86 +#: ipam/filtersets.py:86 msgid "Importing VRF" msgstr "Importation de VRF" -#: netbox/ipam/filtersets.py:92 +#: ipam/filtersets.py:92 msgid "Import VRF (RD)" msgstr "Importer VRF (RD)" -#: netbox/ipam/filtersets.py:97 +#: ipam/filtersets.py:97 msgid "Exporting VRF" msgstr "Exportation de fichiers VRF" -#: netbox/ipam/filtersets.py:103 +#: ipam/filtersets.py:103 msgid "Export VRF (RD)" msgstr "Exporter VRF (RD)" -#: netbox/ipam/filtersets.py:108 +#: ipam/filtersets.py:108 msgid "Importing L2VPN" msgstr "Importation de L2VPN" -#: netbox/ipam/filtersets.py:114 +#: ipam/filtersets.py:114 msgid "Importing L2VPN (identifier)" msgstr "Importation de L2VPN (identifiant)" -#: netbox/ipam/filtersets.py:119 +#: ipam/filtersets.py:119 msgid "Exporting L2VPN" msgstr "Exportation de L2VPN" -#: netbox/ipam/filtersets.py:125 +#: ipam/filtersets.py:125 msgid "Exporting L2VPN (identifier)" msgstr "Exportation de L2VPN (identifiant)" -#: netbox/ipam/filtersets.py:155 netbox/ipam/filtersets.py:281 -#: netbox/ipam/forms/model_forms.py:229 netbox/ipam/tables/ip.py:212 -#: netbox/templates/ipam/prefix.html:12 +#: ipam/filtersets.py:155 ipam/filtersets.py:281 ipam/forms/model_forms.py:229 +#: ipam/tables/ip.py:212 templates/ipam/prefix.html:12 msgid "Prefix" msgstr "Préfixe" -#: netbox/ipam/filtersets.py:159 netbox/ipam/filtersets.py:198 -#: netbox/ipam/filtersets.py:221 +#: ipam/filtersets.py:159 ipam/filtersets.py:198 ipam/filtersets.py:221 msgid "RIR (ID)" msgstr "RIRE (ID)" -#: netbox/ipam/filtersets.py:165 netbox/ipam/filtersets.py:204 -#: netbox/ipam/filtersets.py:227 +#: ipam/filtersets.py:165 ipam/filtersets.py:204 ipam/filtersets.py:227 msgid "RIR (slug)" msgstr "RIR (slug)" -#: netbox/ipam/filtersets.py:285 +#: ipam/filtersets.py:285 msgid "Within prefix" msgstr "Dans le préfixe" -#: netbox/ipam/filtersets.py:289 +#: ipam/filtersets.py:289 msgid "Within and including prefix" msgstr "Dans le préfixe et y compris" -#: netbox/ipam/filtersets.py:293 +#: ipam/filtersets.py:293 msgid "Prefixes which contain this prefix or IP" msgstr "Préfixes contenant ce préfixe ou cette adresse IP" -#: netbox/ipam/filtersets.py:304 netbox/ipam/filtersets.py:572 -#: netbox/ipam/forms/bulk_edit.py:342 netbox/ipam/forms/filtersets.py:196 -#: netbox/ipam/forms/filtersets.py:331 +#: ipam/filtersets.py:304 ipam/filtersets.py:572 ipam/forms/bulk_edit.py:343 +#: ipam/forms/filtersets.py:196 ipam/forms/filtersets.py:331 msgid "Mask length" msgstr "Longueur du masque" -#: netbox/ipam/filtersets.py:373 netbox/vpn/filtersets.py:427 +#: ipam/filtersets.py:373 vpn/filtersets.py:427 msgid "VLAN (ID)" msgstr "VLAN (IDENTIFIANT)" -#: netbox/ipam/filtersets.py:377 netbox/vpn/filtersets.py:422 +#: ipam/filtersets.py:377 vpn/filtersets.py:422 msgid "VLAN number (1-4094)" msgstr "Numéro de VLAN (1-4094)" -#: netbox/ipam/filtersets.py:471 netbox/ipam/filtersets.py:475 -#: netbox/ipam/filtersets.py:567 netbox/ipam/forms/model_forms.py:463 -#: netbox/templates/tenancy/contact.html:53 -#: netbox/tenancy/forms/bulk_edit.py:113 +#: ipam/filtersets.py:471 ipam/filtersets.py:475 ipam/filtersets.py:567 +#: ipam/forms/model_forms.py:463 templates/tenancy/contact.html:53 +#: tenancy/forms/bulk_edit.py:113 msgid "Address" msgstr "Adresse" -#: netbox/ipam/filtersets.py:479 +#: ipam/filtersets.py:479 msgid "Ranges which contain this prefix or IP" msgstr "Plages contenant ce préfixe ou cette adresse IP" -#: netbox/ipam/filtersets.py:507 netbox/ipam/filtersets.py:563 +#: ipam/filtersets.py:507 ipam/filtersets.py:563 msgid "Parent prefix" msgstr "Préfixe parent" -#: netbox/ipam/filtersets.py:616 netbox/ipam/filtersets.py:856 -#: netbox/ipam/filtersets.py:1131 netbox/vpn/filtersets.py:385 +#: ipam/filtersets.py:616 ipam/filtersets.py:856 ipam/filtersets.py:1131 +#: vpn/filtersets.py:385 msgid "Virtual machine (name)" msgstr "Machine virtuelle (nom)" -#: netbox/ipam/filtersets.py:621 netbox/ipam/filtersets.py:861 -#: netbox/ipam/filtersets.py:1125 netbox/virtualization/filtersets.py:282 -#: netbox/virtualization/filtersets.py:321 netbox/vpn/filtersets.py:390 +#: ipam/filtersets.py:621 ipam/filtersets.py:861 ipam/filtersets.py:1125 +#: virtualization/filtersets.py:282 virtualization/filtersets.py:321 +#: vpn/filtersets.py:390 msgid "Virtual machine (ID)" msgstr "Machine virtuelle (ID)" -#: netbox/ipam/filtersets.py:627 netbox/vpn/filtersets.py:97 -#: netbox/vpn/filtersets.py:396 +#: ipam/filtersets.py:627 vpn/filtersets.py:97 vpn/filtersets.py:396 msgid "Interface (name)" msgstr "Interface (nom)" -#: netbox/ipam/filtersets.py:638 netbox/vpn/filtersets.py:108 -#: netbox/vpn/filtersets.py:407 +#: ipam/filtersets.py:638 vpn/filtersets.py:108 vpn/filtersets.py:407 msgid "VM interface (name)" msgstr "Interface de machine virtuelle (nom)" -#: netbox/ipam/filtersets.py:643 netbox/vpn/filtersets.py:113 +#: ipam/filtersets.py:643 vpn/filtersets.py:113 msgid "VM interface (ID)" msgstr "Interface de machine virtuelle (ID)" -#: netbox/ipam/filtersets.py:648 +#: ipam/filtersets.py:648 msgid "FHRP group (ID)" msgstr "Groupe FHRP (ID)" -#: netbox/ipam/filtersets.py:652 +#: ipam/filtersets.py:652 msgid "Is assigned to an interface" msgstr "Est affecté à une interface" -#: netbox/ipam/filtersets.py:656 +#: ipam/filtersets.py:656 msgid "Is assigned" msgstr "Est attribué" -#: netbox/ipam/filtersets.py:668 +#: ipam/filtersets.py:668 msgid "Service (ID)" msgstr "Service (ID)" -#: netbox/ipam/filtersets.py:673 +#: ipam/filtersets.py:673 msgid "NAT inside IP address (ID)" msgstr "Adresse IP intérieure NAT (ID)" -#: netbox/ipam/filtersets.py:1041 netbox/ipam/forms/bulk_import.py:322 +#: ipam/filtersets.py:1041 ipam/forms/bulk_import.py:322 msgid "Assigned interface" msgstr "Interface attribuée" -#: netbox/ipam/filtersets.py:1046 +#: ipam/filtersets.py:1046 msgid "Assigned VM interface" msgstr "Interface de machine virtuelle attribuée" -#: netbox/ipam/filtersets.py:1136 +#: ipam/filtersets.py:1136 msgid "IP address (ID)" msgstr "Adresse IP (ID)" -#: netbox/ipam/filtersets.py:1142 netbox/ipam/models/ip.py:788 +#: ipam/filtersets.py:1142 ipam/models/ip.py:788 msgid "IP address" msgstr "Adresse IP" -#: netbox/ipam/filtersets.py:1167 +#: ipam/filtersets.py:1167 msgid "Primary IPv4 (ID)" msgstr "IPv4 principal (ID)" -#: netbox/ipam/filtersets.py:1172 +#: ipam/filtersets.py:1172 msgid "Primary IPv6 (ID)" msgstr "IPv6 principal (ID)" -#: netbox/ipam/formfields.py:14 +#: ipam/formfields.py:14 msgid "Enter a valid IPv4 or IPv6 address (without a mask)." msgstr "Entrez une adresse IPv4 ou IPv6 valide (sans masque)." -#: netbox/ipam/formfields.py:32 +#: ipam/formfields.py:32 #, python-brace-format msgid "Invalid IPv4/IPv6 address format: {address}" msgstr "Format d'adresse IPv4/IPv6 non valide : {address}" -#: netbox/ipam/formfields.py:37 +#: ipam/formfields.py:37 msgid "This field requires an IP address without a mask." msgstr "Ce champ nécessite une adresse IP sans masque." -#: netbox/ipam/formfields.py:39 netbox/ipam/formfields.py:61 +#: ipam/formfields.py:39 ipam/formfields.py:61 msgid "Please specify a valid IPv4 or IPv6 address." msgstr "Spécifiez une adresse IPv4 ou IPv6 valide." -#: netbox/ipam/formfields.py:44 +#: ipam/formfields.py:44 msgid "Enter a valid IPv4 or IPv6 address (with CIDR mask)." msgstr "Entrez une adresse IPv4 ou IPv6 valide (avec masque CIDR)." -#: netbox/ipam/formfields.py:56 +#: ipam/formfields.py:56 msgid "CIDR mask (e.g. /24) is required." msgstr "Un masque CIDR (par exemple /24) est requis." -#: netbox/ipam/forms/bulk_create.py:13 +#: ipam/forms/bulk_create.py:13 msgid "Address pattern" msgstr "Modèle d'adresse" -#: netbox/ipam/forms/bulk_edit.py:49 +#: ipam/forms/bulk_edit.py:50 msgid "Enforce unique space" msgstr "Forcer l'unicité des préfixes IP" -#: netbox/ipam/forms/bulk_edit.py:87 +#: ipam/forms/bulk_edit.py:88 msgid "Is private" msgstr "Est privé" -#: netbox/ipam/forms/bulk_edit.py:108 netbox/ipam/forms/bulk_edit.py:137 -#: netbox/ipam/forms/bulk_edit.py:162 netbox/ipam/forms/bulk_import.py:89 -#: netbox/ipam/forms/bulk_import.py:109 netbox/ipam/forms/bulk_import.py:129 -#: netbox/ipam/forms/filtersets.py:110 netbox/ipam/forms/filtersets.py:125 -#: netbox/ipam/forms/filtersets.py:148 netbox/ipam/forms/model_forms.py:96 -#: netbox/ipam/forms/model_forms.py:109 netbox/ipam/forms/model_forms.py:131 -#: netbox/ipam/forms/model_forms.py:149 netbox/ipam/models/asns.py:31 -#: netbox/ipam/models/asns.py:103 netbox/ipam/models/ip.py:71 -#: netbox/ipam/models/ip.py:90 netbox/ipam/tables/asn.py:20 -#: netbox/ipam/tables/asn.py:45 netbox/templates/ipam/aggregate.html:18 -#: netbox/templates/ipam/asn.html:27 netbox/templates/ipam/asnrange.html:19 -#: netbox/templates/ipam/rir.html:19 +#: ipam/forms/bulk_edit.py:109 ipam/forms/bulk_edit.py:138 +#: ipam/forms/bulk_edit.py:163 ipam/forms/bulk_import.py:89 +#: ipam/forms/bulk_import.py:109 ipam/forms/bulk_import.py:129 +#: ipam/forms/filtersets.py:110 ipam/forms/filtersets.py:125 +#: ipam/forms/filtersets.py:148 ipam/forms/model_forms.py:96 +#: ipam/forms/model_forms.py:109 ipam/forms/model_forms.py:131 +#: ipam/forms/model_forms.py:149 ipam/models/asns.py:31 +#: ipam/models/asns.py:103 ipam/models/ip.py:71 ipam/models/ip.py:90 +#: ipam/tables/asn.py:20 ipam/tables/asn.py:45 +#: templates/ipam/aggregate.html:18 templates/ipam/asn.html:27 +#: templates/ipam/asnrange.html:19 templates/ipam/rir.html:19 msgid "RIR" msgstr "RIR" -#: netbox/ipam/forms/bulk_edit.py:170 +#: ipam/forms/bulk_edit.py:171 msgid "Date added" msgstr "Date d'ajout" -#: netbox/ipam/forms/bulk_edit.py:228 netbox/ipam/forms/model_forms.py:586 -#: netbox/ipam/forms/model_forms.py:633 netbox/ipam/tables/ip.py:251 -#: netbox/templates/ipam/vlan_edit.html:37 -#: netbox/templates/ipam/vlangroup.html:27 +#: ipam/forms/bulk_edit.py:229 ipam/forms/model_forms.py:586 +#: ipam/forms/model_forms.py:633 ipam/tables/ip.py:251 +#: templates/ipam/vlan_edit.html:37 templates/ipam/vlangroup.html:27 msgid "VLAN Group" msgstr "Groupe VLAN" -#: netbox/ipam/forms/bulk_edit.py:233 netbox/ipam/forms/bulk_import.py:185 -#: netbox/ipam/forms/filtersets.py:256 netbox/ipam/forms/model_forms.py:218 -#: netbox/ipam/models/vlans.py:234 netbox/ipam/tables/ip.py:255 -#: netbox/templates/ipam/prefix.html:60 netbox/templates/ipam/vlan.html:12 -#: netbox/templates/ipam/vlan/base.html:6 -#: netbox/templates/ipam/vlan_edit.html:10 -#: netbox/templates/wireless/wirelesslan.html:30 -#: netbox/vpn/forms/bulk_import.py:304 netbox/vpn/forms/filtersets.py:284 -#: netbox/vpn/forms/model_forms.py:433 netbox/vpn/forms/model_forms.py:452 -#: netbox/wireless/forms/bulk_edit.py:55 -#: netbox/wireless/forms/bulk_import.py:48 -#: netbox/wireless/forms/model_forms.py:48 netbox/wireless/models.py:102 +#: ipam/forms/bulk_edit.py:234 ipam/forms/bulk_import.py:185 +#: ipam/forms/filtersets.py:256 ipam/forms/model_forms.py:218 +#: ipam/models/vlans.py:234 ipam/tables/ip.py:255 +#: templates/ipam/prefix.html:60 templates/ipam/vlan.html:12 +#: templates/ipam/vlan/base.html:6 templates/ipam/vlan_edit.html:10 +#: templates/wireless/wirelesslan.html:30 vpn/forms/bulk_import.py:304 +#: vpn/forms/filtersets.py:284 vpn/forms/model_forms.py:433 +#: vpn/forms/model_forms.py:452 wireless/forms/bulk_edit.py:55 +#: wireless/forms/bulk_import.py:48 wireless/forms/model_forms.py:48 +#: wireless/models.py:102 msgid "VLAN" msgstr "VLAN" -#: netbox/ipam/forms/bulk_edit.py:244 +#: ipam/forms/bulk_edit.py:245 msgid "Prefix length" msgstr "Longueur du préfixe" -#: netbox/ipam/forms/bulk_edit.py:267 netbox/ipam/forms/filtersets.py:241 -#: netbox/templates/ipam/prefix.html:85 +#: ipam/forms/bulk_edit.py:268 ipam/forms/filtersets.py:241 +#: templates/ipam/prefix.html:85 msgid "Is a pool" msgstr "C'est une piscine" -#: netbox/ipam/forms/bulk_edit.py:272 netbox/ipam/forms/bulk_edit.py:317 -#: netbox/ipam/forms/filtersets.py:248 netbox/ipam/forms/filtersets.py:293 -#: netbox/ipam/models/ip.py:272 netbox/ipam/models/ip.py:539 +#: ipam/forms/bulk_edit.py:273 ipam/forms/bulk_edit.py:318 +#: ipam/forms/filtersets.py:248 ipam/forms/filtersets.py:293 +#: ipam/models/ip.py:272 ipam/models/ip.py:539 msgid "Treat as fully utilized" msgstr "Traiter comme s'il avait été pleinement utilisé" -#: netbox/ipam/forms/bulk_edit.py:286 netbox/ipam/forms/filtersets.py:171 +#: ipam/forms/bulk_edit.py:287 ipam/forms/filtersets.py:171 msgid "VLAN Assignment" msgstr "Attribution de VLAN" -#: netbox/ipam/forms/bulk_edit.py:365 netbox/ipam/models/ip.py:772 +#: ipam/forms/bulk_edit.py:366 ipam/models/ip.py:772 msgid "DNS name" msgstr "Nom DNS" -#: netbox/ipam/forms/bulk_edit.py:386 netbox/ipam/forms/bulk_edit.py:579 -#: netbox/ipam/forms/bulk_import.py:394 netbox/ipam/forms/bulk_import.py:469 -#: netbox/ipam/forms/bulk_import.py:495 netbox/ipam/forms/filtersets.py:390 -#: netbox/ipam/forms/filtersets.py:530 netbox/templates/ipam/fhrpgroup.html:22 -#: netbox/templates/ipam/inc/panels/fhrp_groups.html:24 -#: netbox/templates/ipam/service.html:32 -#: netbox/templates/ipam/servicetemplate.html:19 +#: ipam/forms/bulk_edit.py:387 ipam/forms/bulk_edit.py:534 +#: ipam/forms/bulk_import.py:394 ipam/forms/bulk_import.py:469 +#: ipam/forms/bulk_import.py:495 ipam/forms/filtersets.py:390 +#: ipam/forms/filtersets.py:530 templates/ipam/fhrpgroup.html:22 +#: templates/ipam/inc/panels/fhrp_groups.html:24 +#: templates/ipam/service.html:32 templates/ipam/servicetemplate.html:19 msgid "Protocol" msgstr "Protocole" -#: netbox/ipam/forms/bulk_edit.py:393 netbox/ipam/forms/filtersets.py:397 -#: netbox/ipam/tables/fhrp.py:22 netbox/templates/ipam/fhrpgroup.html:26 +#: ipam/forms/bulk_edit.py:394 ipam/forms/filtersets.py:397 +#: ipam/tables/fhrp.py:22 templates/ipam/fhrpgroup.html:26 msgid "Group ID" msgstr "ID de groupe" -#: netbox/ipam/forms/bulk_edit.py:398 netbox/ipam/forms/filtersets.py:402 -#: netbox/wireless/forms/bulk_edit.py:68 -#: netbox/wireless/forms/bulk_edit.py:115 -#: netbox/wireless/forms/bulk_import.py:62 -#: netbox/wireless/forms/bulk_import.py:65 -#: netbox/wireless/forms/bulk_import.py:104 -#: netbox/wireless/forms/bulk_import.py:107 -#: netbox/wireless/forms/filtersets.py:54 -#: netbox/wireless/forms/filtersets.py:88 +#: ipam/forms/bulk_edit.py:399 ipam/forms/filtersets.py:402 +#: wireless/forms/bulk_edit.py:68 wireless/forms/bulk_edit.py:115 +#: wireless/forms/bulk_import.py:62 wireless/forms/bulk_import.py:65 +#: wireless/forms/bulk_import.py:104 wireless/forms/bulk_import.py:107 +#: wireless/forms/filtersets.py:54 wireless/forms/filtersets.py:88 msgid "Authentication type" msgstr "Type d'authentification" -#: netbox/ipam/forms/bulk_edit.py:403 netbox/ipam/forms/filtersets.py:406 +#: ipam/forms/bulk_edit.py:404 ipam/forms/filtersets.py:406 msgid "Authentication key" msgstr "Clé d'authentification" -#: netbox/ipam/forms/bulk_edit.py:420 netbox/ipam/forms/filtersets.py:383 -#: netbox/ipam/forms/model_forms.py:474 netbox/netbox/navigation/menu.py:386 -#: netbox/templates/ipam/fhrpgroup.html:49 -#: netbox/templates/wireless/inc/authentication_attrs.html:5 -#: netbox/wireless/forms/bulk_edit.py:91 -#: netbox/wireless/forms/bulk_edit.py:149 -#: netbox/wireless/forms/filtersets.py:36 -#: netbox/wireless/forms/filtersets.py:76 -#: netbox/wireless/forms/model_forms.py:55 -#: netbox/wireless/forms/model_forms.py:171 +#: ipam/forms/bulk_edit.py:421 ipam/forms/filtersets.py:383 +#: ipam/forms/model_forms.py:474 netbox/navigation/menu.py:386 +#: templates/ipam/fhrpgroup.html:49 +#: templates/wireless/inc/authentication_attrs.html:5 +#: wireless/forms/bulk_edit.py:91 wireless/forms/bulk_edit.py:149 +#: wireless/forms/filtersets.py:36 wireless/forms/filtersets.py:76 +#: wireless/forms/model_forms.py:55 wireless/forms/model_forms.py:171 msgid "Authentication" msgstr "Authentification" -#: netbox/ipam/forms/bulk_edit.py:432 netbox/ipam/forms/model_forms.py:575 +#: ipam/forms/bulk_edit.py:436 ipam/forms/model_forms.py:575 msgid "Scope type" msgstr "Type de portée" -#: netbox/ipam/forms/bulk_edit.py:490 netbox/ipam/models/vlans.py:60 -msgid "VLAN ID ranges" -msgstr "Plages d'ID VLAN" - -#: netbox/ipam/forms/bulk_edit.py:498 netbox/ipam/forms/model_forms.py:578 -#: netbox/ipam/forms/model_forms.py:588 netbox/ipam/tables/vlans.py:71 -#: netbox/templates/ipam/vlangroup.html:38 +#: ipam/forms/bulk_edit.py:439 ipam/forms/bulk_edit.py:453 +#: ipam/forms/model_forms.py:578 ipam/forms/model_forms.py:588 +#: ipam/tables/vlans.py:71 templates/ipam/vlangroup.html:38 msgid "Scope" msgstr "Champ" -#: netbox/ipam/forms/bulk_edit.py:570 +#: ipam/forms/bulk_edit.py:446 ipam/models/vlans.py:60 +msgid "VLAN ID ranges" +msgstr "Plages d'ID VLAN" + +#: ipam/forms/bulk_edit.py:525 msgid "Site & Group" msgstr "Site et groupe" -#: netbox/ipam/forms/bulk_edit.py:584 netbox/ipam/forms/model_forms.py:659 -#: netbox/ipam/forms/model_forms.py:691 netbox/ipam/tables/services.py:19 -#: netbox/ipam/tables/services.py:49 netbox/templates/ipam/service.html:36 -#: netbox/templates/ipam/servicetemplate.html:23 +#: ipam/forms/bulk_edit.py:539 ipam/forms/model_forms.py:659 +#: ipam/forms/model_forms.py:691 ipam/tables/services.py:19 +#: ipam/tables/services.py:49 templates/ipam/service.html:36 +#: templates/ipam/servicetemplate.html:23 msgid "Ports" msgstr "Ports" -#: netbox/ipam/forms/bulk_import.py:48 +#: ipam/forms/bulk_import.py:48 msgid "Import route targets" msgstr "Importer des cibles d'itinéraire" -#: netbox/ipam/forms/bulk_import.py:54 +#: ipam/forms/bulk_import.py:54 msgid "Export route targets" msgstr "Cibles d'itinéraire d'exportation" -#: netbox/ipam/forms/bulk_import.py:92 netbox/ipam/forms/bulk_import.py:112 -#: netbox/ipam/forms/bulk_import.py:132 +#: ipam/forms/bulk_import.py:92 ipam/forms/bulk_import.py:112 +#: ipam/forms/bulk_import.py:132 msgid "Assigned RIR" msgstr "RIR attribué" -#: netbox/ipam/forms/bulk_import.py:182 +#: ipam/forms/bulk_import.py:182 msgid "VLAN's group (if any)" msgstr "Le groupe du VLAN (le cas échéant)" -#: netbox/ipam/forms/bulk_import.py:308 +#: ipam/forms/bulk_import.py:308 msgid "Parent device of assigned interface (if any)" msgstr "Appareil parent auquel est attribuée l'interface (le cas échéant)" -#: netbox/ipam/forms/bulk_import.py:311 netbox/ipam/forms/bulk_import.py:488 -#: netbox/ipam/forms/model_forms.py:685 -#: netbox/virtualization/filtersets.py:288 -#: netbox/virtualization/filtersets.py:327 -#: netbox/virtualization/forms/bulk_edit.py:200 -#: netbox/virtualization/forms/bulk_edit.py:326 -#: netbox/virtualization/forms/bulk_import.py:146 -#: netbox/virtualization/forms/bulk_import.py:207 -#: netbox/virtualization/forms/filtersets.py:212 -#: netbox/virtualization/forms/filtersets.py:248 -#: netbox/virtualization/forms/model_forms.py:288 -#: netbox/vpn/forms/bulk_import.py:93 netbox/vpn/forms/bulk_import.py:290 +#: ipam/forms/bulk_import.py:311 ipam/forms/bulk_import.py:488 +#: ipam/forms/model_forms.py:685 virtualization/filtersets.py:288 +#: virtualization/filtersets.py:327 virtualization/forms/bulk_edit.py:200 +#: virtualization/forms/bulk_edit.py:326 +#: virtualization/forms/bulk_import.py:146 +#: virtualization/forms/bulk_import.py:207 +#: virtualization/forms/filtersets.py:212 +#: virtualization/forms/filtersets.py:248 +#: virtualization/forms/model_forms.py:288 vpn/forms/bulk_import.py:93 +#: vpn/forms/bulk_import.py:290 msgid "Virtual machine" msgstr "Machine virtuelle" -#: netbox/ipam/forms/bulk_import.py:315 +#: ipam/forms/bulk_import.py:315 msgid "Parent VM of assigned interface (if any)" msgstr "VM parent de l'interface attribuée (le cas échéant)" -#: netbox/ipam/forms/bulk_import.py:325 +#: ipam/forms/bulk_import.py:325 msgid "Is primary" msgstr "Est principal" -#: netbox/ipam/forms/bulk_import.py:326 +#: ipam/forms/bulk_import.py:326 msgid "Make this the primary IP for the assigned device" msgstr "Faites-en l'adresse IP principale de l'appareil attribué" -#: netbox/ipam/forms/bulk_import.py:365 +#: ipam/forms/bulk_import.py:365 msgid "No device or virtual machine specified; cannot set as primary IP" msgstr "" "Aucun périphérique ou machine virtuelle spécifié ; impossible de le définir " "comme adresse IP principale" -#: netbox/ipam/forms/bulk_import.py:369 +#: ipam/forms/bulk_import.py:369 msgid "No interface specified; cannot set as primary IP" msgstr "" "Aucune interface spécifiée ; impossible de définir comme adresse IP " "principale" -#: netbox/ipam/forms/bulk_import.py:398 +#: ipam/forms/bulk_import.py:398 msgid "Auth type" msgstr "Type d'authentification" -#: netbox/ipam/forms/bulk_import.py:413 +#: ipam/forms/bulk_import.py:413 msgid "Scope type (app & model)" msgstr "Type de scope (application et modèle)" -#: netbox/ipam/forms/bulk_import.py:440 +#: ipam/forms/bulk_import.py:440 msgid "Assigned VLAN group" msgstr "Groupe VLAN attribué" -#: netbox/ipam/forms/bulk_import.py:471 netbox/ipam/forms/bulk_import.py:497 +#: ipam/forms/bulk_import.py:471 ipam/forms/bulk_import.py:497 msgid "IP protocol" msgstr "Protocole IP" -#: netbox/ipam/forms/bulk_import.py:485 +#: ipam/forms/bulk_import.py:485 msgid "Required if not assigned to a VM" msgstr "Obligatoire s'il n'est pas attribué à une machine virtuelle" -#: netbox/ipam/forms/bulk_import.py:492 +#: ipam/forms/bulk_import.py:492 msgid "Required if not assigned to a device" msgstr "Obligatoire s'il n'est pas attribué à un appareil" -#: netbox/ipam/forms/bulk_import.py:517 +#: ipam/forms/bulk_import.py:517 #, python-brace-format msgid "{ip} is not assigned to this device/VM." msgstr "{ip} n'est pas attribué à cet appareil/à cette machine virtuelle." -#: netbox/ipam/forms/filtersets.py:47 netbox/ipam/forms/model_forms.py:63 -#: netbox/netbox/navigation/menu.py:189 netbox/vpn/forms/model_forms.py:410 +#: ipam/forms/filtersets.py:47 ipam/forms/model_forms.py:63 +#: netbox/navigation/menu.py:189 vpn/forms/model_forms.py:410 msgid "Route Targets" msgstr "Cibles de l'itinéraire" -#: netbox/ipam/forms/filtersets.py:53 netbox/ipam/forms/model_forms.py:50 -#: netbox/vpn/forms/filtersets.py:224 netbox/vpn/forms/model_forms.py:397 +#: ipam/forms/filtersets.py:53 ipam/forms/model_forms.py:50 +#: vpn/forms/filtersets.py:224 vpn/forms/model_forms.py:397 msgid "Import targets" msgstr "Cibles d'importation" -#: netbox/ipam/forms/filtersets.py:58 netbox/ipam/forms/model_forms.py:55 -#: netbox/vpn/forms/filtersets.py:229 netbox/vpn/forms/model_forms.py:402 +#: ipam/forms/filtersets.py:58 ipam/forms/model_forms.py:55 +#: vpn/forms/filtersets.py:229 vpn/forms/model_forms.py:402 msgid "Export targets" msgstr "Objectifs d'exportation" -#: netbox/ipam/forms/filtersets.py:73 +#: ipam/forms/filtersets.py:73 msgid "Imported by VRF" msgstr "Importé par VRF" -#: netbox/ipam/forms/filtersets.py:78 +#: ipam/forms/filtersets.py:78 msgid "Exported by VRF" msgstr "Exporté par VRF" -#: netbox/ipam/forms/filtersets.py:87 netbox/ipam/tables/ip.py:89 -#: netbox/templates/ipam/rir.html:30 +#: ipam/forms/filtersets.py:87 ipam/tables/ip.py:89 templates/ipam/rir.html:30 msgid "Private" msgstr "Privé" -#: netbox/ipam/forms/filtersets.py:105 netbox/ipam/forms/filtersets.py:191 -#: netbox/ipam/forms/filtersets.py:272 netbox/ipam/forms/filtersets.py:326 +#: ipam/forms/filtersets.py:105 ipam/forms/filtersets.py:191 +#: ipam/forms/filtersets.py:272 ipam/forms/filtersets.py:326 msgid "Address family" msgstr "Famille d'adresses" -#: netbox/ipam/forms/filtersets.py:119 netbox/templates/ipam/asnrange.html:25 +#: ipam/forms/filtersets.py:119 templates/ipam/asnrange.html:25 msgid "Range" msgstr "Plage" -#: netbox/ipam/forms/filtersets.py:128 +#: ipam/forms/filtersets.py:128 msgid "Start" msgstr "Démarrer" -#: netbox/ipam/forms/filtersets.py:132 +#: ipam/forms/filtersets.py:132 msgid "End" msgstr "Fin" -#: netbox/ipam/forms/filtersets.py:186 +#: ipam/forms/filtersets.py:186 msgid "Search within" msgstr "Rechercher dans" -#: netbox/ipam/forms/filtersets.py:207 netbox/ipam/forms/filtersets.py:342 +#: ipam/forms/filtersets.py:207 ipam/forms/filtersets.py:342 msgid "Present in VRF" msgstr "Présent en VRF" -#: netbox/ipam/forms/filtersets.py:311 +#: ipam/forms/filtersets.py:311 msgid "Device/VM" msgstr "Appareil/VM" -#: netbox/ipam/forms/filtersets.py:321 +#: ipam/forms/filtersets.py:321 msgid "Parent Prefix" msgstr "Préfixe parent" -#: netbox/ipam/forms/filtersets.py:347 +#: ipam/forms/filtersets.py:347 msgid "Assigned Device" msgstr "Appareil attribué" -#: netbox/ipam/forms/filtersets.py:352 +#: ipam/forms/filtersets.py:352 msgid "Assigned VM" msgstr "Machine virtuelle attribuée" -#: netbox/ipam/forms/filtersets.py:366 +#: ipam/forms/filtersets.py:366 msgid "Assigned to an interface" msgstr "Affecté à une interface" -#: netbox/ipam/forms/filtersets.py:373 netbox/templates/ipam/ipaddress.html:51 +#: ipam/forms/filtersets.py:373 templates/ipam/ipaddress.html:51 msgid "DNS Name" msgstr "Nom DNS" -#: netbox/ipam/forms/filtersets.py:416 netbox/ipam/models/vlans.py:235 -#: netbox/ipam/tables/ip.py:176 netbox/ipam/tables/vlans.py:82 -#: netbox/ipam/views.py:971 netbox/netbox/navigation/menu.py:193 -#: netbox/netbox/navigation/menu.py:195 +#: ipam/forms/filtersets.py:416 ipam/models/vlans.py:235 ipam/tables/ip.py:176 +#: ipam/tables/vlans.py:82 ipam/views.py:971 netbox/navigation/menu.py:193 +#: netbox/navigation/menu.py:195 msgid "VLANs" msgstr "VLAN" -#: netbox/ipam/forms/filtersets.py:457 +#: ipam/forms/filtersets.py:457 msgid "Contains VLAN ID" msgstr "Contient un ID de VLAN" -#: netbox/ipam/forms/filtersets.py:513 netbox/ipam/models/vlans.py:176 -#: netbox/templates/ipam/vlan.html:31 +#: ipam/forms/filtersets.py:513 ipam/models/vlans.py:176 +#: templates/ipam/vlan.html:31 msgid "VLAN ID" msgstr "IDENTIFIANT DE VLAN" -#: netbox/ipam/forms/filtersets.py:556 netbox/ipam/forms/model_forms.py:320 -#: netbox/ipam/forms/model_forms.py:713 netbox/ipam/forms/model_forms.py:739 -#: netbox/ipam/tables/vlans.py:195 -#: netbox/templates/virtualization/virtualdisk.html:21 -#: netbox/templates/virtualization/virtualmachine.html:12 -#: netbox/templates/virtualization/vminterface.html:21 -#: netbox/templates/vpn/tunneltermination.html:25 -#: netbox/virtualization/forms/filtersets.py:197 -#: netbox/virtualization/forms/filtersets.py:242 -#: netbox/virtualization/forms/model_forms.py:220 -#: netbox/virtualization/tables/virtualmachines.py:135 -#: netbox/virtualization/tables/virtualmachines.py:190 -#: netbox/vpn/choices.py:45 netbox/vpn/forms/filtersets.py:293 -#: netbox/vpn/forms/model_forms.py:160 netbox/vpn/forms/model_forms.py:171 -#: netbox/vpn/forms/model_forms.py:273 netbox/vpn/forms/model_forms.py:454 +#: ipam/forms/filtersets.py:556 ipam/forms/model_forms.py:320 +#: ipam/forms/model_forms.py:713 ipam/forms/model_forms.py:739 +#: ipam/tables/vlans.py:195 templates/virtualization/virtualdisk.html:21 +#: templates/virtualization/virtualmachine.html:12 +#: templates/virtualization/vminterface.html:21 +#: templates/vpn/tunneltermination.html:25 +#: virtualization/forms/filtersets.py:197 +#: virtualization/forms/filtersets.py:242 +#: virtualization/forms/model_forms.py:220 +#: virtualization/tables/virtualmachines.py:135 +#: virtualization/tables/virtualmachines.py:190 vpn/choices.py:45 +#: vpn/forms/filtersets.py:293 vpn/forms/model_forms.py:160 +#: vpn/forms/model_forms.py:171 vpn/forms/model_forms.py:273 +#: vpn/forms/model_forms.py:454 msgid "Virtual Machine" msgstr "Machine virtuelle" -#: netbox/ipam/forms/model_forms.py:80 -#: netbox/templates/ipam/routetarget.html:10 +#: ipam/forms/model_forms.py:80 templates/ipam/routetarget.html:10 msgid "Route Target" msgstr "Cible de l'itinéraire" -#: netbox/ipam/forms/model_forms.py:114 netbox/ipam/tables/ip.py:117 -#: netbox/templates/ipam/aggregate.html:11 -#: netbox/templates/ipam/prefix.html:38 +#: ipam/forms/model_forms.py:114 ipam/tables/ip.py:117 +#: templates/ipam/aggregate.html:11 templates/ipam/prefix.html:38 msgid "Aggregate" msgstr "Agrégat" -#: netbox/ipam/forms/model_forms.py:135 netbox/templates/ipam/asnrange.html:12 +#: ipam/forms/model_forms.py:135 templates/ipam/asnrange.html:12 msgid "ASN Range" msgstr "Plage ASN" -#: netbox/ipam/forms/model_forms.py:231 +#: ipam/forms/model_forms.py:231 msgid "Site/VLAN Assignment" msgstr "Affectation de site/VLAN" -#: netbox/ipam/forms/model_forms.py:259 netbox/templates/ipam/iprange.html:10 +#: ipam/forms/model_forms.py:259 templates/ipam/iprange.html:10 msgid "IP Range" msgstr "Plage IP" -#: netbox/ipam/forms/model_forms.py:295 netbox/ipam/forms/model_forms.py:321 -#: netbox/ipam/forms/model_forms.py:473 -#: netbox/templates/ipam/fhrpgroup.html:19 +#: ipam/forms/model_forms.py:295 ipam/forms/model_forms.py:321 +#: ipam/forms/model_forms.py:473 templates/ipam/fhrpgroup.html:19 msgid "FHRP Group" msgstr "Groupe FHRP" -#: netbox/ipam/forms/model_forms.py:310 +#: ipam/forms/model_forms.py:310 msgid "Make this the primary IP for the device/VM" msgstr "" "Faites-en l'adresse IP principale de l'appareil/de la machine virtuelle" -#: netbox/ipam/forms/model_forms.py:325 +#: ipam/forms/model_forms.py:325 msgid "NAT IP (Inside)" msgstr "IP NAT (interne)" -#: netbox/ipam/forms/model_forms.py:384 +#: ipam/forms/model_forms.py:384 msgid "An IP address can only be assigned to a single object." msgstr "Une adresse IP ne peut être attribuée qu'à un seul objet." -#: netbox/ipam/forms/model_forms.py:390 netbox/ipam/models/ip.py:897 +#: ipam/forms/model_forms.py:390 ipam/models/ip.py:897 msgid "" "Cannot reassign IP address while it is designated as the primary IP for the " "parent object" @@ -9912,31 +9317,30 @@ msgstr "" "Impossible de réattribuer l'adresse IP lorsqu'elle est désignée comme " "adresse IP principale pour l'objet parent" -#: netbox/ipam/forms/model_forms.py:400 +#: ipam/forms/model_forms.py:400 msgid "" "Only IP addresses assigned to an interface can be designated as primary IPs." msgstr "" "Seules les adresses IP attribuées à une interface peuvent être désignées " "comme adresses IP principales." -#: netbox/ipam/forms/model_forms.py:475 +#: ipam/forms/model_forms.py:475 msgid "Virtual IP Address" msgstr "Adresse IP virtuelle" -#: netbox/ipam/forms/model_forms.py:560 +#: ipam/forms/model_forms.py:560 msgid "Assignment already exists" msgstr "L'affectation existe déjà" -#: netbox/ipam/forms/model_forms.py:569 -#: netbox/templates/ipam/vlangroup.html:42 +#: ipam/forms/model_forms.py:569 templates/ipam/vlangroup.html:42 msgid "VLAN IDs" msgstr "ID de VLAN" -#: netbox/ipam/forms/model_forms.py:587 +#: ipam/forms/model_forms.py:587 msgid "Child VLANs" msgstr "VLAN pour enfants" -#: netbox/ipam/forms/model_forms.py:664 netbox/ipam/forms/model_forms.py:696 +#: ipam/forms/model_forms.py:664 ipam/forms/model_forms.py:696 msgid "" "Comma-separated list of one or more port numbers. A range may be specified " "using a hyphen." @@ -9944,134 +9348,133 @@ msgstr "" "Liste séparée par des virgules d'un ou de plusieurs numéros de port. Une " "plage peut être spécifiée à l'aide d'un trait d'union." -#: netbox/ipam/forms/model_forms.py:669 -#: netbox/templates/ipam/servicetemplate.html:12 +#: ipam/forms/model_forms.py:669 templates/ipam/servicetemplate.html:12 msgid "Service Template" msgstr "Modèle de service" -#: netbox/ipam/forms/model_forms.py:716 +#: ipam/forms/model_forms.py:716 msgid "Port(s)" msgstr "Port (x)" -#: netbox/ipam/forms/model_forms.py:717 netbox/ipam/forms/model_forms.py:745 -#: netbox/templates/ipam/service.html:21 +#: ipam/forms/model_forms.py:717 ipam/forms/model_forms.py:745 +#: templates/ipam/service.html:21 msgid "Service" msgstr "Service" -#: netbox/ipam/forms/model_forms.py:730 +#: ipam/forms/model_forms.py:730 msgid "Service template" msgstr "Modèle de service" -#: netbox/ipam/forms/model_forms.py:742 +#: ipam/forms/model_forms.py:742 msgid "From Template" msgstr "À partir du modèle" -#: netbox/ipam/forms/model_forms.py:743 +#: ipam/forms/model_forms.py:743 msgid "Custom" msgstr "Personnalisé" -#: netbox/ipam/forms/model_forms.py:773 +#: ipam/forms/model_forms.py:773 msgid "" "Must specify name, protocol, and port(s) if not using a service template." msgstr "" "Vous devez spécifier le nom, le protocole et le ou les ports si vous " "n'utilisez pas de modèle de service." -#: netbox/ipam/models/asns.py:34 +#: ipam/models/asns.py:34 msgid "start" msgstr "démarrer" -#: netbox/ipam/models/asns.py:51 +#: ipam/models/asns.py:51 msgid "ASN range" msgstr "Plage ASN" -#: netbox/ipam/models/asns.py:52 +#: ipam/models/asns.py:52 msgid "ASN ranges" msgstr "Plages ASN" -#: netbox/ipam/models/asns.py:72 +#: ipam/models/asns.py:72 #, python-brace-format msgid "Starting ASN ({start}) must be lower than ending ASN ({end})." msgstr "" "Démarrage de l'ASN ({start}) doit être inférieur à l'ASN final ({end})." -#: netbox/ipam/models/asns.py:104 +#: ipam/models/asns.py:104 msgid "Regional Internet Registry responsible for this AS number space" msgstr "Registre Internet régional responsable de cet espace numérique AS" -#: netbox/ipam/models/asns.py:109 +#: ipam/models/asns.py:109 msgid "16- or 32-bit autonomous system number" msgstr "Numéro de système autonome 16 ou 32 bits" -#: netbox/ipam/models/fhrp.py:22 +#: ipam/models/fhrp.py:22 msgid "group ID" msgstr "ID de groupe" -#: netbox/ipam/models/fhrp.py:30 netbox/ipam/models/services.py:22 +#: ipam/models/fhrp.py:30 ipam/models/services.py:22 msgid "protocol" msgstr "protocole" -#: netbox/ipam/models/fhrp.py:38 netbox/wireless/models.py:28 +#: ipam/models/fhrp.py:38 wireless/models.py:28 msgid "authentication type" msgstr "type d'authentification" -#: netbox/ipam/models/fhrp.py:43 +#: ipam/models/fhrp.py:43 msgid "authentication key" msgstr "clé d'authentification" -#: netbox/ipam/models/fhrp.py:56 +#: ipam/models/fhrp.py:56 msgid "FHRP group" msgstr "Groupe FHRP" -#: netbox/ipam/models/fhrp.py:57 +#: ipam/models/fhrp.py:57 msgid "FHRP groups" msgstr "Groupes FHRP" -#: netbox/ipam/models/fhrp.py:113 +#: ipam/models/fhrp.py:113 msgid "FHRP group assignment" msgstr "Affectation au groupe FHRP" -#: netbox/ipam/models/fhrp.py:114 +#: ipam/models/fhrp.py:114 msgid "FHRP group assignments" msgstr "Missions du groupe FHRP" -#: netbox/ipam/models/ip.py:65 +#: ipam/models/ip.py:65 msgid "private" msgstr "privé" -#: netbox/ipam/models/ip.py:66 +#: ipam/models/ip.py:66 msgid "IP space managed by this RIR is considered private" msgstr "L'espace IP géré par ce RIR est considéré comme privé" -#: netbox/ipam/models/ip.py:72 netbox/netbox/navigation/menu.py:182 +#: ipam/models/ip.py:72 netbox/navigation/menu.py:182 msgid "RIRs" msgstr "IR" -#: netbox/ipam/models/ip.py:84 +#: ipam/models/ip.py:84 msgid "IPv4 or IPv6 network" msgstr "Réseau IPv4 ou IPv6" -#: netbox/ipam/models/ip.py:91 +#: ipam/models/ip.py:91 msgid "Regional Internet Registry responsible for this IP space" msgstr "Registre Internet régional responsable de cet espace IP" -#: netbox/ipam/models/ip.py:101 +#: ipam/models/ip.py:101 msgid "date added" msgstr "date d'ajout" -#: netbox/ipam/models/ip.py:115 +#: ipam/models/ip.py:115 msgid "aggregate" msgstr "global" -#: netbox/ipam/models/ip.py:116 +#: ipam/models/ip.py:116 msgid "aggregates" msgstr "agrégats" -#: netbox/ipam/models/ip.py:132 +#: ipam/models/ip.py:132 msgid "Cannot create aggregate with /0 mask." msgstr "Impossible de créer un agrégat avec le masque /0." -#: netbox/ipam/models/ip.py:144 +#: ipam/models/ip.py:144 #, python-brace-format msgid "" "Aggregates cannot overlap. {prefix} is already covered by an existing " @@ -10080,7 +9483,7 @@ msgstr "" "Les agrégats ne peuvent pas se chevaucher. {prefix} est déjà couvert par un " "agrégat existant ({aggregate})." -#: netbox/ipam/models/ip.py:158 +#: ipam/models/ip.py:158 #, python-brace-format msgid "" "Prefixes cannot overlap aggregates. {prefix} covers an existing aggregate " @@ -10089,165 +9492,163 @@ msgstr "" "Les préfixes ne peuvent pas chevaucher des agrégats. {prefix} couvre un " "agrégat existant ({aggregate})." -#: netbox/ipam/models/ip.py:200 netbox/ipam/models/ip.py:737 -#: netbox/vpn/models/tunnels.py:114 +#: ipam/models/ip.py:200 ipam/models/ip.py:737 vpn/models/tunnels.py:114 msgid "role" msgstr "rôle" -#: netbox/ipam/models/ip.py:201 +#: ipam/models/ip.py:201 msgid "roles" msgstr "rôles" -#: netbox/ipam/models/ip.py:217 netbox/ipam/models/ip.py:293 +#: ipam/models/ip.py:217 ipam/models/ip.py:293 msgid "prefix" msgstr "préfixe" -#: netbox/ipam/models/ip.py:218 +#: ipam/models/ip.py:218 msgid "IPv4 or IPv6 network with mask" msgstr "Réseau IPv4 ou IPv6 avec masque" -#: netbox/ipam/models/ip.py:254 +#: ipam/models/ip.py:254 msgid "Operational status of this prefix" msgstr "État opérationnel de ce préfixe" -#: netbox/ipam/models/ip.py:262 +#: ipam/models/ip.py:262 msgid "The primary function of this prefix" msgstr "La fonction principale de ce préfixe" -#: netbox/ipam/models/ip.py:265 +#: ipam/models/ip.py:265 msgid "is a pool" msgstr "est une piscine" -#: netbox/ipam/models/ip.py:267 +#: ipam/models/ip.py:267 msgid "All IP addresses within this prefix are considered usable" msgstr "" "Toutes les adresses IP comprises dans ce préfixe sont considérées comme " "utilisables" -#: netbox/ipam/models/ip.py:270 netbox/ipam/models/ip.py:537 +#: ipam/models/ip.py:270 ipam/models/ip.py:537 msgid "mark utilized" msgstr "marque utilisée" -#: netbox/ipam/models/ip.py:294 +#: ipam/models/ip.py:294 msgid "prefixes" msgstr "préfixes" -#: netbox/ipam/models/ip.py:317 +#: ipam/models/ip.py:317 msgid "Cannot create prefix with /0 mask." msgstr "Impossible de créer un préfixe avec le masque /0." -#: netbox/ipam/models/ip.py:324 netbox/ipam/models/ip.py:874 +#: ipam/models/ip.py:324 ipam/models/ip.py:874 #, python-brace-format msgid "VRF {vrf}" msgstr "VRF {vrf}" -#: netbox/ipam/models/ip.py:324 netbox/ipam/models/ip.py:874 +#: ipam/models/ip.py:324 ipam/models/ip.py:874 msgid "global table" msgstr "tableau global" -#: netbox/ipam/models/ip.py:326 +#: ipam/models/ip.py:326 #, python-brace-format msgid "Duplicate prefix found in {table}: {prefix}" msgstr "Préfixe dupliqué trouvé dans {table}: {prefix}" -#: netbox/ipam/models/ip.py:495 +#: ipam/models/ip.py:495 msgid "start address" msgstr "adresse de départ" -#: netbox/ipam/models/ip.py:496 netbox/ipam/models/ip.py:500 -#: netbox/ipam/models/ip.py:712 +#: ipam/models/ip.py:496 ipam/models/ip.py:500 ipam/models/ip.py:712 msgid "IPv4 or IPv6 address (with mask)" msgstr "Adresse IPv4 ou IPv6 (avec masque)" -#: netbox/ipam/models/ip.py:499 +#: ipam/models/ip.py:499 msgid "end address" msgstr "adresse finale" -#: netbox/ipam/models/ip.py:526 +#: ipam/models/ip.py:526 msgid "Operational status of this range" msgstr "État opérationnel de cette gamme" -#: netbox/ipam/models/ip.py:534 +#: ipam/models/ip.py:534 msgid "The primary function of this range" msgstr "La principale fonction de cette gamme" -#: netbox/ipam/models/ip.py:548 +#: ipam/models/ip.py:548 msgid "IP range" msgstr "plage IP" -#: netbox/ipam/models/ip.py:549 +#: ipam/models/ip.py:549 msgid "IP ranges" msgstr "Plages IP" -#: netbox/ipam/models/ip.py:565 +#: ipam/models/ip.py:565 msgid "Starting and ending IP address versions must match" msgstr "Les versions des adresses IP de début et de fin doivent correspondre" -#: netbox/ipam/models/ip.py:571 +#: ipam/models/ip.py:571 msgid "Starting and ending IP address masks must match" msgstr "Les masques d'adresse IP de début et de fin doivent correspondre" -#: netbox/ipam/models/ip.py:578 +#: ipam/models/ip.py:578 #, python-brace-format msgid "" "Ending address must be greater than the starting address ({start_address})" msgstr "" "L'adresse de fin doit être supérieure à l'adresse de début ({start_address})" -#: netbox/ipam/models/ip.py:590 +#: ipam/models/ip.py:590 #, python-brace-format msgid "Defined addresses overlap with range {overlapping_range} in VRF {vrf}" msgstr "" "Les adresses définies se chevauchent avec la plage {overlapping_range} en " "VRF {vrf}" -#: netbox/ipam/models/ip.py:599 +#: ipam/models/ip.py:599 #, python-brace-format msgid "Defined range exceeds maximum supported size ({max_size})" msgstr "" "La plage définie dépasse la taille maximale prise en charge ({max_size})" -#: netbox/ipam/models/ip.py:711 netbox/tenancy/models/contacts.py:82 +#: ipam/models/ip.py:711 tenancy/models/contacts.py:82 msgid "address" msgstr "adresse" -#: netbox/ipam/models/ip.py:734 +#: ipam/models/ip.py:734 msgid "The operational status of this IP" msgstr "L'état opérationnel de cette adresse IP" -#: netbox/ipam/models/ip.py:741 +#: ipam/models/ip.py:741 msgid "The functional role of this IP" msgstr "Le rôle fonctionnel de cette propriété intellectuelle" -#: netbox/ipam/models/ip.py:765 netbox/templates/ipam/ipaddress.html:72 +#: ipam/models/ip.py:765 templates/ipam/ipaddress.html:72 msgid "NAT (inside)" msgstr "NAT (intérieur)" -#: netbox/ipam/models/ip.py:766 +#: ipam/models/ip.py:766 msgid "The IP for which this address is the \"outside\" IP" msgstr "" "L'adresse IP pour laquelle cette adresse est l'adresse IP « extérieure »" -#: netbox/ipam/models/ip.py:773 +#: ipam/models/ip.py:773 msgid "Hostname or FQDN (not case-sensitive)" msgstr "Nom d'hôte ou FQDN (pas de distinction majuscules/minuscules)" -#: netbox/ipam/models/ip.py:789 netbox/ipam/models/services.py:94 +#: ipam/models/ip.py:789 ipam/models/services.py:94 msgid "IP addresses" msgstr "Adresses IP" -#: netbox/ipam/models/ip.py:845 +#: ipam/models/ip.py:845 msgid "Cannot create IP address with /0 mask." msgstr "Impossible de créer une adresse IP avec le masque /0." -#: netbox/ipam/models/ip.py:851 +#: ipam/models/ip.py:851 #, python-brace-format msgid "{ip} is a network ID, which may not be assigned to an interface." msgstr "" "{ip} est un identifiant réseau, qui ne peut pas être attribué à une " "interface." -#: netbox/ipam/models/ip.py:862 +#: ipam/models/ip.py:862 #, python-brace-format msgid "" "{ip} is a broadcast address, which may not be assigned to an interface." @@ -10255,72 +9656,72 @@ msgstr "" "{ip} est une adresse de diffusion, qui ne peut pas être attribuée à une " "interface." -#: netbox/ipam/models/ip.py:876 +#: ipam/models/ip.py:876 #, python-brace-format msgid "Duplicate IP address found in {table}: {ipaddress}" msgstr "Adresse IP dupliquée trouvée dans {table}: {ipaddress}" -#: netbox/ipam/models/ip.py:903 +#: ipam/models/ip.py:903 msgid "Only IPv6 addresses can be assigned SLAAC status" msgstr "" "Seules les adresses IPv6 peuvent être de type SLAAC (Configuration " "automatique des adresses sans état)" -#: netbox/ipam/models/services.py:33 +#: ipam/models/services.py:33 msgid "port numbers" msgstr "numéros de port" -#: netbox/ipam/models/services.py:59 +#: ipam/models/services.py:59 msgid "service template" msgstr "modèle de service" -#: netbox/ipam/models/services.py:60 +#: ipam/models/services.py:60 msgid "service templates" msgstr "modèles de services" -#: netbox/ipam/models/services.py:95 +#: ipam/models/services.py:95 msgid "The specific IP addresses (if any) to which this service is bound" msgstr "" "Les adresses IP spécifiques (le cas échéant) auxquelles ce service est lié" -#: netbox/ipam/models/services.py:102 +#: ipam/models/services.py:102 msgid "service" msgstr "service" -#: netbox/ipam/models/services.py:103 +#: ipam/models/services.py:103 msgid "services" msgstr "services" -#: netbox/ipam/models/services.py:117 +#: ipam/models/services.py:117 msgid "" "A service cannot be associated with both a device and a virtual machine." msgstr "" "Un service ne peut pas être associé à la fois à un appareil et à une machine" " virtuelle." -#: netbox/ipam/models/services.py:119 +#: ipam/models/services.py:119 msgid "" "A service must be associated with either a device or a virtual machine." msgstr "" "Un service doit être associé à un appareil ou à une machine virtuelle." -#: netbox/ipam/models/vlans.py:85 +#: ipam/models/vlans.py:85 msgid "VLAN groups" msgstr "groupes VLAN" -#: netbox/ipam/models/vlans.py:95 +#: ipam/models/vlans.py:95 msgid "Cannot set scope_type without scope_id." msgstr "Impossible de définir scope_type sans scope_id." -#: netbox/ipam/models/vlans.py:97 +#: ipam/models/vlans.py:97 msgid "Cannot set scope_id without scope_type." msgstr "Impossible de définir scope_id sans scope_type." -#: netbox/ipam/models/vlans.py:101 +#: ipam/models/vlans.py:101 msgid "Ranges cannot overlap." msgstr "Les plages ne peuvent pas se chevaucher." -#: netbox/ipam/models/vlans.py:106 +#: ipam/models/vlans.py:106 #, python-brace-format msgid "" "Maximum child VID must be greater than or equal to minimum child VID " @@ -10329,27 +9730,27 @@ msgstr "" "La VID maximale pour les enfants doit être supérieure ou égale à la VID " "minimale pour les enfants ({value})" -#: netbox/ipam/models/vlans.py:165 +#: ipam/models/vlans.py:165 msgid "The specific site to which this VLAN is assigned (if any)" msgstr "Le site spécifique auquel ce VLAN est associé (le cas échéant)" -#: netbox/ipam/models/vlans.py:173 +#: ipam/models/vlans.py:173 msgid "VLAN group (optional)" msgstr "Groupe VLAN (facultatif)" -#: netbox/ipam/models/vlans.py:181 +#: ipam/models/vlans.py:181 msgid "Numeric VLAN ID (1-4094)" msgstr "ID VLAN numérique (1-4094)" -#: netbox/ipam/models/vlans.py:199 +#: ipam/models/vlans.py:199 msgid "Operational status of this VLAN" msgstr "État opérationnel de ce VLAN" -#: netbox/ipam/models/vlans.py:207 +#: ipam/models/vlans.py:207 msgid "The primary function of this VLAN" msgstr "La principale fonction de ce VLAN" -#: netbox/ipam/models/vlans.py:250 +#: ipam/models/vlans.py:250 #, python-brace-format msgid "" "VLAN is assigned to group {group} (scope: {scope}); cannot also assign to " @@ -10358,170 +9759,168 @@ msgstr "" "Le VLAN est associé au groupe {group} (champ d'application : {scope}) ; ne " "peut pas également être associé au site {site}." -#: netbox/ipam/models/vlans.py:259 +#: ipam/models/vlans.py:259 #, python-brace-format msgid "VID must be in ranges {ranges} for VLANs in group {group}" msgstr "" "Le VID doit être compris dans des plages {ranges} pour les VLAN en groupe " "{group}" -#: netbox/ipam/models/vrfs.py:30 +#: ipam/models/vrfs.py:30 msgid "route distinguisher" msgstr "Distincteur d'itinéraire" -#: netbox/ipam/models/vrfs.py:31 +#: ipam/models/vrfs.py:31 msgid "Unique route distinguisher (as defined in RFC 4364)" msgstr "Distincteur d'itinéraire unique (tel que défini dans la RFC 4364)" -#: netbox/ipam/models/vrfs.py:42 +#: ipam/models/vrfs.py:42 msgid "enforce unique space" msgstr "renforcer un espace unique" -#: netbox/ipam/models/vrfs.py:43 +#: ipam/models/vrfs.py:43 msgid "Prevent duplicate prefixes/IP addresses within this VRF" msgstr "Empêchez les préfixes/adresses IP dupliqués dans ce VRF" -#: netbox/ipam/models/vrfs.py:63 netbox/netbox/navigation/menu.py:186 -#: netbox/netbox/navigation/menu.py:188 +#: ipam/models/vrfs.py:63 netbox/navigation/menu.py:186 +#: netbox/navigation/menu.py:188 msgid "VRFs" msgstr "VRF" -#: netbox/ipam/models/vrfs.py:82 +#: ipam/models/vrfs.py:82 msgid "Route target value (formatted in accordance with RFC 4360)" msgstr "Valeur cible de l'itinéraire (formatée conformément à la RFC 4360)" -#: netbox/ipam/models/vrfs.py:94 +#: ipam/models/vrfs.py:94 msgid "route target" msgstr "cible de l'itinéraire" -#: netbox/ipam/models/vrfs.py:95 +#: ipam/models/vrfs.py:95 msgid "route targets" msgstr "cibles de l'itinéraire" -#: netbox/ipam/tables/asn.py:52 +#: ipam/tables/asn.py:52 msgid "ASDOT" msgstr "ASDOT" -#: netbox/ipam/tables/asn.py:57 +#: ipam/tables/asn.py:57 msgid "Site Count" msgstr "Nombre de sites" -#: netbox/ipam/tables/asn.py:62 +#: ipam/tables/asn.py:62 msgid "Provider Count" msgstr "Nombre de fournisseurs" -#: netbox/ipam/tables/ip.py:95 netbox/netbox/navigation/menu.py:179 -#: netbox/netbox/navigation/menu.py:181 +#: ipam/tables/ip.py:95 netbox/navigation/menu.py:179 +#: netbox/navigation/menu.py:181 msgid "Aggregates" msgstr "Agrégats" -#: netbox/ipam/tables/ip.py:125 +#: ipam/tables/ip.py:125 msgid "Added" msgstr "Ajouté" -#: netbox/ipam/tables/ip.py:128 netbox/ipam/tables/ip.py:166 -#: netbox/ipam/tables/vlans.py:142 netbox/ipam/views.py:346 -#: netbox/netbox/navigation/menu.py:165 netbox/netbox/navigation/menu.py:167 -#: netbox/templates/ipam/vlan.html:84 +#: ipam/tables/ip.py:128 ipam/tables/ip.py:166 ipam/tables/vlans.py:142 +#: ipam/views.py:346 netbox/navigation/menu.py:165 +#: netbox/navigation/menu.py:167 templates/ipam/vlan.html:84 msgid "Prefixes" msgstr "Préfixes" -#: netbox/ipam/tables/ip.py:131 netbox/ipam/tables/ip.py:270 -#: netbox/ipam/tables/ip.py:324 netbox/ipam/tables/vlans.py:86 -#: netbox/templates/dcim/device.html:260 -#: netbox/templates/ipam/aggregate.html:24 -#: netbox/templates/ipam/iprange.html:29 netbox/templates/ipam/prefix.html:106 +#: ipam/tables/ip.py:131 ipam/tables/ip.py:270 ipam/tables/ip.py:324 +#: ipam/tables/vlans.py:86 templates/dcim/device.html:260 +#: templates/ipam/aggregate.html:24 templates/ipam/iprange.html:29 +#: templates/ipam/prefix.html:106 msgid "Utilization" msgstr "Utilisation" -#: netbox/ipam/tables/ip.py:171 netbox/netbox/navigation/menu.py:161 +#: ipam/tables/ip.py:171 netbox/navigation/menu.py:161 msgid "IP Ranges" msgstr "Plages d'adresses IP" -#: netbox/ipam/tables/ip.py:221 +#: ipam/tables/ip.py:221 msgid "Prefix (Flat)" msgstr "Préfixe (plat)" -#: netbox/ipam/tables/ip.py:225 +#: ipam/tables/ip.py:225 msgid "Depth" msgstr "Profondeur" -#: netbox/ipam/tables/ip.py:262 +#: ipam/tables/ip.py:262 msgid "Pool" msgstr "Piscine" -#: netbox/ipam/tables/ip.py:266 netbox/ipam/tables/ip.py:320 +#: ipam/tables/ip.py:266 ipam/tables/ip.py:320 msgid "Marked Utilized" msgstr "Marqué comme utilisé" -#: netbox/ipam/tables/ip.py:304 +#: ipam/tables/ip.py:304 msgid "Start address" msgstr "Adresse de départ" -#: netbox/ipam/tables/ip.py:383 +#: ipam/tables/ip.py:383 msgid "NAT (Inside)" msgstr "NAT (intérieur)" -#: netbox/ipam/tables/ip.py:388 +#: ipam/tables/ip.py:388 msgid "NAT (Outside)" msgstr "NAT (extérieur)" -#: netbox/ipam/tables/ip.py:393 +#: ipam/tables/ip.py:393 msgid "Assigned" msgstr "Attribué" -#: netbox/ipam/tables/ip.py:429 netbox/templates/vpn/l2vpntermination.html:16 -#: netbox/vpn/forms/filtersets.py:240 +#: ipam/tables/ip.py:429 templates/vpn/l2vpntermination.html:16 +#: vpn/forms/filtersets.py:240 msgid "Assigned Object" msgstr "Objet attribué" -#: netbox/ipam/tables/vlans.py:68 +#: ipam/tables/vlans.py:68 msgid "Scope Type" msgstr "Type de portée" -#: netbox/ipam/tables/vlans.py:76 +#: ipam/tables/vlans.py:76 msgid "VID Ranges" msgstr "Gammes VID" -#: netbox/ipam/tables/vlans.py:111 netbox/ipam/tables/vlans.py:214 -#: netbox/templates/dcim/inc/interface_vlans_table.html:4 +#: ipam/tables/vlans.py:111 ipam/tables/vlans.py:214 +#: templates/dcim/inc/interface_vlans_table.html:4 msgid "VID" msgstr "VID" -#: netbox/ipam/tables/vrfs.py:30 +#: ipam/tables/vrfs.py:30 msgid "RD" msgstr "RD" -#: netbox/ipam/tables/vrfs.py:33 +#: ipam/tables/vrfs.py:33 msgid "Unique" msgstr "Unique" -#: netbox/ipam/tables/vrfs.py:37 netbox/vpn/tables/l2vpn.py:27 +#: ipam/tables/vrfs.py:37 vpn/tables/l2vpn.py:27 msgid "Import Targets" msgstr "Cibles d'importation" -#: netbox/ipam/tables/vrfs.py:42 netbox/vpn/tables/l2vpn.py:32 +#: ipam/tables/vrfs.py:42 vpn/tables/l2vpn.py:32 msgid "Export Targets" msgstr "Objectifs d'exportation" -#: netbox/ipam/validators.py:9 +#: ipam/validators.py:9 #, python-brace-format msgid "{prefix} is not a valid prefix. Did you mean {suggested}?" msgstr "{prefix} n'est pas un préfixe valide. Vouliez-vous dire {suggested}?" -#: netbox/ipam/validators.py:16 +#: ipam/validators.py:16 #, python-format msgid "The prefix length must be less than or equal to %(limit_value)s." msgstr "" "La longueur du préfixe doit être inférieure ou égale à %(limit_value)s." -#: netbox/ipam/validators.py:24 +#: ipam/validators.py:24 #, python-format msgid "The prefix length must be greater than or equal to %(limit_value)s." msgstr "" "La longueur du préfixe doit être supérieure ou égale à %(limit_value)s." -#: netbox/ipam/validators.py:33 +#: ipam/validators.py:33 msgid "" "Only alphanumeric characters, asterisks, hyphens, periods, and underscores " "are allowed in DNS names" @@ -10529,31 +9928,31 @@ msgstr "" "Seuls les caractères alphanumériques, les astérisques, les tirets, les " "points et les traits de soulignement sont autorisés dans les noms DNS" -#: netbox/ipam/views.py:533 +#: ipam/views.py:533 msgid "Child Prefixes" msgstr "Préfixes pour enfants" -#: netbox/ipam/views.py:569 +#: ipam/views.py:569 msgid "Child Ranges" msgstr "Plages pour enfants" -#: netbox/ipam/views.py:898 +#: ipam/views.py:898 msgid "Related IPs" msgstr "IP associées" -#: netbox/ipam/views.py:1127 +#: ipam/views.py:1127 msgid "Device Interfaces" msgstr "Interfaces des appareils" -#: netbox/ipam/views.py:1145 +#: ipam/views.py:1145 msgid "VM Interfaces" msgstr "Interfaces de machines virtuelles" -#: netbox/netbox/api/fields.py:65 +#: netbox/api/fields.py:65 msgid "This field may not be blank." msgstr "Ce champ n'est peut-être pas vide." -#: netbox/netbox/api/fields.py:70 +#: netbox/api/fields.py:70 msgid "" "Value must be passed directly (e.g. \"foo\": 123); do not use a dictionary " "or list." @@ -10561,350 +9960,337 @@ msgstr "" "La valeur doit être transmise directement (par exemple « foo » : 123) ; " "n'utilisez pas de dictionnaire ni de liste." -#: netbox/netbox/api/fields.py:91 +#: netbox/api/fields.py:91 #, python-brace-format msgid "{value} is not a valid choice." msgstr "{value} n'est pas un choix valable." -#: netbox/netbox/api/fields.py:104 +#: netbox/api/fields.py:104 #, python-brace-format msgid "Invalid content type: {content_type}" msgstr "Type de contenu non valide : {content_type}" -#: netbox/netbox/api/fields.py:105 +#: netbox/api/fields.py:105 msgid "Invalid value. Specify a content type as '.'." msgstr "" "Valeur non valide. Spécifiez un type de contenu comme " "«.'." -#: netbox/netbox/api/fields.py:167 +#: netbox/api/fields.py:167 msgid "Ranges must be specified in the form (lower, upper)." msgstr "" "Les plages doivent être spécifiées dans le formulaire (inférieur, " "supérieur)." -#: netbox/netbox/api/fields.py:169 +#: netbox/api/fields.py:169 msgid "Range boundaries must be defined as integers." msgstr "" "Les limites des plages doivent être définies sous forme de nombres entiers." -#: netbox/netbox/api/serializers/fields.py:40 +#: netbox/api/serializers/fields.py:40 #, python-brace-format msgid "{class_name} must implement get_view_name()" msgstr "{class_name} doit implémenter get_view_name ()" -#: netbox/netbox/authentication/__init__.py:138 +#: netbox/authentication/__init__.py:138 #, python-brace-format msgid "Invalid permission {permission} for model {model}" msgstr "Autorisation non valide {permission} pour modèle {model}" -#: netbox/netbox/choices.py:49 +#: netbox/choices.py:49 msgid "Dark Red" msgstr "Rouge foncé" -#: netbox/netbox/choices.py:52 +#: netbox/choices.py:52 msgid "Rose" msgstr "Rose" -#: netbox/netbox/choices.py:53 +#: netbox/choices.py:53 msgid "Fuchsia" msgstr "Fuchsia" -#: netbox/netbox/choices.py:55 +#: netbox/choices.py:55 msgid "Dark Purple" msgstr "Violet foncé" -#: netbox/netbox/choices.py:58 +#: netbox/choices.py:58 msgid "Light Blue" msgstr "Bleu clair" -#: netbox/netbox/choices.py:61 +#: netbox/choices.py:61 msgid "Aqua" msgstr "Aqua" -#: netbox/netbox/choices.py:62 +#: netbox/choices.py:62 msgid "Dark Green" msgstr "Vert foncé" -#: netbox/netbox/choices.py:64 +#: netbox/choices.py:64 msgid "Light Green" msgstr "Vert clair" -#: netbox/netbox/choices.py:65 +#: netbox/choices.py:65 msgid "Lime" msgstr "Citron" -#: netbox/netbox/choices.py:67 +#: netbox/choices.py:67 msgid "Amber" msgstr "Ambre" -#: netbox/netbox/choices.py:69 +#: netbox/choices.py:69 msgid "Dark Orange" msgstr "Orange foncé" -#: netbox/netbox/choices.py:70 +#: netbox/choices.py:70 msgid "Brown" msgstr "Marron" -#: netbox/netbox/choices.py:71 +#: netbox/choices.py:71 msgid "Light Grey" msgstr "gris clair" -#: netbox/netbox/choices.py:72 +#: netbox/choices.py:72 msgid "Grey" msgstr "gris" -#: netbox/netbox/choices.py:73 +#: netbox/choices.py:73 msgid "Dark Grey" msgstr "gris foncé" -#: netbox/netbox/choices.py:128 +#: netbox/choices.py:128 msgid "Direct" msgstr "Directement" -#: netbox/netbox/choices.py:129 +#: netbox/choices.py:129 msgid "Upload" msgstr "Téléverser" -#: netbox/netbox/choices.py:141 netbox/netbox/choices.py:155 +#: netbox/choices.py:141 netbox/choices.py:155 msgid "Auto-detect" msgstr "Détection automatique" -#: netbox/netbox/choices.py:156 +#: netbox/choices.py:156 msgid "Comma" msgstr "Virgule" -#: netbox/netbox/choices.py:157 +#: netbox/choices.py:157 msgid "Semicolon" msgstr "Point-virgule" -#: netbox/netbox/choices.py:158 +#: netbox/choices.py:158 msgid "Tab" msgstr "Onglet" -#: netbox/netbox/config/__init__.py:67 +#: netbox/config/__init__.py:67 #, python-brace-format msgid "Invalid configuration parameter: {item}" msgstr "Paramètre de configuration non valide : {item}" -#: netbox/netbox/config/parameters.py:22 -#: netbox/templates/core/inc/config_data.html:62 +#: netbox/config/parameters.py:22 templates/core/inc/config_data.html:62 msgid "Login banner" msgstr "Bannière de connexion" -#: netbox/netbox/config/parameters.py:24 +#: netbox/config/parameters.py:24 msgid "Additional content to display on the login page" msgstr "Contenu supplémentaire à afficher sur la page de connexion" -#: netbox/netbox/config/parameters.py:33 -#: netbox/templates/core/inc/config_data.html:66 +#: netbox/config/parameters.py:33 templates/core/inc/config_data.html:66 msgid "Maintenance banner" msgstr "Bannière de maintenance" -#: netbox/netbox/config/parameters.py:35 +#: netbox/config/parameters.py:35 msgid "Additional content to display when in maintenance mode" msgstr "Contenu supplémentaire à afficher en mode maintenance" -#: netbox/netbox/config/parameters.py:44 -#: netbox/templates/core/inc/config_data.html:70 +#: netbox/config/parameters.py:44 templates/core/inc/config_data.html:70 msgid "Top banner" msgstr "Bannière supérieure" -#: netbox/netbox/config/parameters.py:46 +#: netbox/config/parameters.py:46 msgid "Additional content to display at the top of every page" msgstr "Contenu supplémentaire à afficher en haut de chaque page" -#: netbox/netbox/config/parameters.py:55 -#: netbox/templates/core/inc/config_data.html:74 +#: netbox/config/parameters.py:55 templates/core/inc/config_data.html:74 msgid "Bottom banner" msgstr "Bannière inférieure" -#: netbox/netbox/config/parameters.py:57 +#: netbox/config/parameters.py:57 msgid "Additional content to display at the bottom of every page" msgstr "Contenu supplémentaire à afficher au bas de chaque page" -#: netbox/netbox/config/parameters.py:68 +#: netbox/config/parameters.py:68 msgid "Globally unique IP space" msgstr "Un espace IP unique au monde" -#: netbox/netbox/config/parameters.py:70 +#: netbox/config/parameters.py:70 msgid "Enforce unique IP addressing within the global table" msgstr "Appliquez un adressage IP unique dans le tableau global" -#: netbox/netbox/config/parameters.py:75 -#: netbox/templates/core/inc/config_data.html:44 +#: netbox/config/parameters.py:75 templates/core/inc/config_data.html:44 msgid "Prefer IPv4" msgstr "Préférez IPv4" -#: netbox/netbox/config/parameters.py:77 +#: netbox/config/parameters.py:77 msgid "Prefer IPv4 addresses over IPv6" msgstr "Préférez les adresses IPv4 à IPv6" -#: netbox/netbox/config/parameters.py:84 +#: netbox/config/parameters.py:84 msgid "Rack unit height" msgstr "Hauteur de la baie" -#: netbox/netbox/config/parameters.py:86 +#: netbox/config/parameters.py:86 msgid "Default unit height for rendered rack elevations" msgstr "" "Valeur par défaut du nombre d'unités pour les élévations des baies affichées" -#: netbox/netbox/config/parameters.py:91 +#: netbox/config/parameters.py:91 msgid "Rack unit width" msgstr "Largeur de l'unité de la baie" -#: netbox/netbox/config/parameters.py:93 +#: netbox/config/parameters.py:93 msgid "Default unit width for rendered rack elevations" msgstr "" "Valeur par défaut de la largeur des unités pour les élévations des baies " "affichées" -#: netbox/netbox/config/parameters.py:100 +#: netbox/config/parameters.py:100 msgid "Powerfeed voltage" msgstr "Tension d'alimentation" -#: netbox/netbox/config/parameters.py:102 +#: netbox/config/parameters.py:102 msgid "Default voltage for powerfeeds" msgstr "Tension par défaut pour les alimentations" -#: netbox/netbox/config/parameters.py:107 +#: netbox/config/parameters.py:107 msgid "Powerfeed amperage" msgstr "Ampérage d'alimentation" -#: netbox/netbox/config/parameters.py:109 +#: netbox/config/parameters.py:109 msgid "Default amperage for powerfeeds" msgstr "Ampérage par défaut pour les alimentations" -#: netbox/netbox/config/parameters.py:114 +#: netbox/config/parameters.py:114 msgid "Powerfeed max utilization" msgstr "Utilisation maximale de Powerfeed" -#: netbox/netbox/config/parameters.py:116 +#: netbox/config/parameters.py:116 msgid "Default max utilization for powerfeeds" msgstr "Utilisation maximale par défaut pour les alimentations" -#: netbox/netbox/config/parameters.py:123 -#: netbox/templates/core/inc/config_data.html:53 +#: netbox/config/parameters.py:123 templates/core/inc/config_data.html:53 msgid "Allowed URL schemes" msgstr "Schémas d'URL autorisés" -#: netbox/netbox/config/parameters.py:128 +#: netbox/config/parameters.py:128 msgid "Permitted schemes for URLs in user-provided content" msgstr "" "Schémas autorisés pour les URL dans le contenu fourni par l'utilisateur" -#: netbox/netbox/config/parameters.py:136 +#: netbox/config/parameters.py:136 msgid "Default page size" msgstr "Taille de page par défaut" -#: netbox/netbox/config/parameters.py:142 +#: netbox/config/parameters.py:142 msgid "Maximum page size" msgstr "Taille de page maximale" -#: netbox/netbox/config/parameters.py:150 -#: netbox/templates/core/inc/config_data.html:96 +#: netbox/config/parameters.py:150 templates/core/inc/config_data.html:96 msgid "Custom validators" msgstr "Validateurs personnalisés" -#: netbox/netbox/config/parameters.py:152 +#: netbox/config/parameters.py:152 msgid "Custom validation rules (JSON)" msgstr "Règles de validation personnalisées (JSON)" -#: netbox/netbox/config/parameters.py:160 -#: netbox/templates/core/inc/config_data.html:104 +#: netbox/config/parameters.py:160 templates/core/inc/config_data.html:104 msgid "Protection rules" msgstr "Règles de protection" -#: netbox/netbox/config/parameters.py:162 +#: netbox/config/parameters.py:162 msgid "Deletion protection rules (JSON)" msgstr "Règles de protection contre la suppression (JSON)" -#: netbox/netbox/config/parameters.py:172 -#: netbox/templates/core/inc/config_data.html:117 +#: netbox/config/parameters.py:172 templates/core/inc/config_data.html:117 msgid "Default preferences" msgstr "Préférences par défaut" -#: netbox/netbox/config/parameters.py:174 +#: netbox/config/parameters.py:174 msgid "Default preferences for new users" msgstr "Préférences par défaut pour les nouveaux utilisateurs" -#: netbox/netbox/config/parameters.py:181 -#: netbox/templates/core/inc/config_data.html:129 +#: netbox/config/parameters.py:181 templates/core/inc/config_data.html:129 msgid "Maintenance mode" msgstr "Mode de maintenance" -#: netbox/netbox/config/parameters.py:183 +#: netbox/config/parameters.py:183 msgid "Enable maintenance mode" msgstr "Activer le mode maintenance" -#: netbox/netbox/config/parameters.py:188 -#: netbox/templates/core/inc/config_data.html:133 +#: netbox/config/parameters.py:188 templates/core/inc/config_data.html:133 msgid "GraphQL enabled" msgstr "GraphQL activé" -#: netbox/netbox/config/parameters.py:190 +#: netbox/config/parameters.py:190 msgid "Enable the GraphQL API" msgstr "Activez l'API GraphQL" -#: netbox/netbox/config/parameters.py:195 -#: netbox/templates/core/inc/config_data.html:137 +#: netbox/config/parameters.py:195 templates/core/inc/config_data.html:137 msgid "Changelog retention" msgstr "Conservation du journal des modifications" -#: netbox/netbox/config/parameters.py:197 +#: netbox/config/parameters.py:197 msgid "Days to retain changelog history (set to zero for unlimited)" msgstr "" "Jours pendant lesquels l'historique des modifications est conservé (défini à" " zéro pour un nombre illimité)" -#: netbox/netbox/config/parameters.py:202 +#: netbox/config/parameters.py:202 msgid "Job result retention" msgstr "Maintien des résultats professionnels" -#: netbox/netbox/config/parameters.py:204 +#: netbox/config/parameters.py:204 msgid "Days to retain job result history (set to zero for unlimited)" msgstr "" "Jours pendant lesquels vous conservez l'historique des résultats du travail " "(défini sur zéro pour une durée illimitée)" -#: netbox/netbox/config/parameters.py:209 -#: netbox/templates/core/inc/config_data.html:145 +#: netbox/config/parameters.py:209 templates/core/inc/config_data.html:145 msgid "Maps URL" msgstr "URL des cartes" -#: netbox/netbox/config/parameters.py:211 +#: netbox/config/parameters.py:211 msgid "Base URL for mapping geographic locations" msgstr "URL de base pour cartographier les emplacements géographiques" -#: netbox/netbox/forms/__init__.py:12 +#: netbox/forms/__init__.py:12 msgid "Partial match" msgstr "Match partiel" -#: netbox/netbox/forms/__init__.py:13 +#: netbox/forms/__init__.py:13 msgid "Exact match" msgstr "Correspondance exacte" -#: netbox/netbox/forms/__init__.py:14 +#: netbox/forms/__init__.py:14 msgid "Starts with" msgstr "Commence par" -#: netbox/netbox/forms/__init__.py:15 +#: netbox/forms/__init__.py:15 msgid "Ends with" msgstr "Se termine par" -#: netbox/netbox/forms/__init__.py:16 +#: netbox/forms/__init__.py:16 msgid "Regex" msgstr "Regex" -#: netbox/netbox/forms/__init__.py:34 +#: netbox/forms/__init__.py:34 msgid "Object type(s)" msgstr "Type (s) d'objet" -#: netbox/netbox/forms/__init__.py:40 +#: netbox/forms/__init__.py:40 msgid "Lookup" msgstr "Chercher" -#: netbox/netbox/forms/base.py:90 +#: netbox/forms/base.py:90 msgid "" "Tag slugs separated by commas, encased with double quotes (e.g. " "\"tag1,tag2,tag3\")" @@ -10912,435 +10298,419 @@ msgstr "" "Slugs de balises séparés par des virgules, encadrés par des guillemets " "doubles (par exemple « tag1, tag2, tag3 »)" -#: netbox/netbox/forms/base.py:120 +#: netbox/forms/base.py:120 msgid "Add tags" msgstr "Ajouter des tags" -#: netbox/netbox/forms/base.py:125 +#: netbox/forms/base.py:125 msgid "Remove tags" msgstr "Supprimer les tags" -#: netbox/netbox/forms/mixins.py:38 +#: netbox/forms/mixins.py:38 #, python-brace-format msgid "{class_name} must specify a model class." msgstr "{class_name} doit spécifier une classe de modèle." -#: netbox/netbox/models/features.py:280 +#: netbox/models/features.py:280 #, python-brace-format msgid "Unknown field name '{name}' in custom field data." msgstr "" "Nom de champ inconnu '{name}'dans les données de champs personnalisés." -#: netbox/netbox/models/features.py:286 +#: netbox/models/features.py:286 #, python-brace-format msgid "Invalid value for custom field '{name}': {error}" msgstr "Valeur non valide pour le champ personnalisé '{name}« : {error}" -#: netbox/netbox/models/features.py:295 +#: netbox/models/features.py:295 #, python-brace-format msgid "Custom field '{name}' must have a unique value." msgstr "Champ personnalisé '{name}'doit avoir une valeur unique." -#: netbox/netbox/models/features.py:302 +#: netbox/models/features.py:302 #, python-brace-format msgid "Missing required custom field '{name}'." msgstr "Champ personnalisé obligatoire manquant '{name}'." -#: netbox/netbox/models/features.py:462 +#: netbox/models/features.py:462 msgid "Remote data source" msgstr "Source de données distante" -#: netbox/netbox/models/features.py:472 +#: netbox/models/features.py:472 msgid "data path" msgstr "chemin de données" -#: netbox/netbox/models/features.py:476 +#: netbox/models/features.py:476 msgid "Path to remote file (relative to data source root)" msgstr "" "Chemin vers le fichier distant (par rapport à la racine de la source de " "données)" -#: netbox/netbox/models/features.py:479 +#: netbox/models/features.py:479 msgid "auto sync enabled" msgstr "synchronisation automatique activée" -#: netbox/netbox/models/features.py:481 +#: netbox/models/features.py:481 msgid "Enable automatic synchronization of data when the data file is updated" msgstr "" "Activer la synchronisation automatique des données lors de la mise à jour du" " fichier de données" -#: netbox/netbox/models/features.py:484 +#: netbox/models/features.py:484 msgid "date synced" msgstr "date de synchronisation" -#: netbox/netbox/models/features.py:578 +#: netbox/models/features.py:578 #, python-brace-format msgid "{class_name} must implement a sync_data() method." msgstr "{class_name} doit implémenter une méthode sync_data ()." -#: netbox/netbox/navigation/menu.py:11 +#: netbox/navigation/menu.py:11 msgid "Organization" msgstr "Organisation" -#: netbox/netbox/navigation/menu.py:19 +#: netbox/navigation/menu.py:19 msgid "Site Groups" msgstr "Groupes de sites" -#: netbox/netbox/navigation/menu.py:27 +#: netbox/navigation/menu.py:27 msgid "Tenant Groups" msgstr "Groupes de locataires" -#: netbox/netbox/navigation/menu.py:34 +#: netbox/navigation/menu.py:34 msgid "Contact Groups" msgstr "Groupes de contacts" -#: netbox/netbox/navigation/menu.py:35 -#: netbox/templates/tenancy/contactrole.html:8 +#: netbox/navigation/menu.py:35 templates/tenancy/contactrole.html:8 msgid "Contact Roles" msgstr "Rôles de contact" -#: netbox/netbox/navigation/menu.py:36 +#: netbox/navigation/menu.py:36 msgid "Contact Assignments" msgstr "Associer des contacts" -#: netbox/netbox/navigation/menu.py:50 +#: netbox/navigation/menu.py:50 msgid "Rack Roles" msgstr "Rôles des baies" -#: netbox/netbox/navigation/menu.py:54 +#: netbox/navigation/menu.py:54 msgid "Elevations" msgstr "Élévations" -#: netbox/netbox/navigation/menu.py:60 netbox/netbox/navigation/menu.py:62 +#: netbox/navigation/menu.py:60 netbox/navigation/menu.py:62 msgid "Rack Types" msgstr "Types de rayonnages" -#: netbox/netbox/navigation/menu.py:76 +#: netbox/navigation/menu.py:76 msgid "Modules" msgstr "Modules" -#: netbox/netbox/navigation/menu.py:80 netbox/templates/dcim/device.html:160 -#: netbox/templates/dcim/virtualdevicecontext.html:8 +#: netbox/navigation/menu.py:80 templates/dcim/device.html:160 +#: templates/dcim/virtualdevicecontext.html:8 msgid "Virtual Device Contexts" msgstr "Contextes des appareils virtuels" -#: netbox/netbox/navigation/menu.py:88 +#: netbox/navigation/menu.py:88 msgid "Manufacturers" msgstr "Fabricants" -#: netbox/netbox/navigation/menu.py:92 +#: netbox/navigation/menu.py:92 msgid "Device Components" msgstr "Composants de l'appareil" -#: netbox/netbox/navigation/menu.py:104 -#: netbox/templates/dcim/inventoryitemrole.html:8 +#: netbox/navigation/menu.py:104 templates/dcim/inventoryitemrole.html:8 msgid "Inventory Item Roles" msgstr "Rôles des articles d'inventaire" -#: netbox/netbox/navigation/menu.py:111 netbox/netbox/navigation/menu.py:115 +#: netbox/navigation/menu.py:111 netbox/navigation/menu.py:115 msgid "Connections" msgstr "Connexions" -#: netbox/netbox/navigation/menu.py:117 +#: netbox/navigation/menu.py:117 msgid "Cables" msgstr "Câbles" -#: netbox/netbox/navigation/menu.py:118 +#: netbox/navigation/menu.py:118 msgid "Wireless Links" msgstr "Liaisons sans fil" -#: netbox/netbox/navigation/menu.py:121 +#: netbox/navigation/menu.py:121 msgid "Interface Connections" msgstr "Connexions d'interface" -#: netbox/netbox/navigation/menu.py:126 +#: netbox/navigation/menu.py:126 msgid "Console Connections" msgstr "Connexions à la console" -#: netbox/netbox/navigation/menu.py:131 +#: netbox/navigation/menu.py:131 msgid "Power Connections" msgstr "Connexions électriques" -#: netbox/netbox/navigation/menu.py:147 +#: netbox/navigation/menu.py:147 msgid "Wireless LAN Groups" msgstr "Groupes réseaux sans fil" -#: netbox/netbox/navigation/menu.py:168 +#: netbox/navigation/menu.py:168 msgid "Prefix & VLAN Roles" msgstr "Préfixes et rôles VLAN" -#: netbox/netbox/navigation/menu.py:174 +#: netbox/navigation/menu.py:174 msgid "ASN Ranges" msgstr "Plages ASN" -#: netbox/netbox/navigation/menu.py:196 +#: netbox/navigation/menu.py:196 msgid "VLAN Groups" msgstr "Groupes VLAN" -#: netbox/netbox/navigation/menu.py:203 +#: netbox/navigation/menu.py:203 msgid "Service Templates" msgstr "Modèles de services" -#: netbox/netbox/navigation/menu.py:204 netbox/templates/dcim/device.html:302 -#: netbox/templates/ipam/ipaddress.html:118 -#: netbox/templates/virtualization/virtualmachine.html:154 +#: netbox/navigation/menu.py:204 templates/dcim/device.html:302 +#: templates/ipam/ipaddress.html:118 +#: templates/virtualization/virtualmachine.html:154 msgid "Services" msgstr "Des services" -#: netbox/netbox/navigation/menu.py:211 +#: netbox/navigation/menu.py:211 msgid "VPN" msgstr "VPN" -#: netbox/netbox/navigation/menu.py:215 netbox/netbox/navigation/menu.py:217 -#: netbox/vpn/tables/tunnels.py:24 +#: netbox/navigation/menu.py:215 netbox/navigation/menu.py:217 +#: vpn/tables/tunnels.py:24 msgid "Tunnels" msgstr "Tunnels" -#: netbox/netbox/navigation/menu.py:218 -#: netbox/templates/vpn/tunnelgroup.html:8 +#: netbox/navigation/menu.py:218 templates/vpn/tunnelgroup.html:8 msgid "Tunnel Groups" msgstr "Groupes de tunnels" -#: netbox/netbox/navigation/menu.py:219 +#: netbox/navigation/menu.py:219 msgid "Tunnel Terminations" msgstr "Terminaisons de tunnels" -#: netbox/netbox/navigation/menu.py:223 netbox/netbox/navigation/menu.py:225 -#: netbox/vpn/models/l2vpn.py:64 +#: netbox/navigation/menu.py:223 netbox/navigation/menu.py:225 +#: vpn/models/l2vpn.py:64 msgid "L2VPNs" msgstr "VPN L2" -#: netbox/netbox/navigation/menu.py:226 netbox/templates/vpn/l2vpn.html:56 -#: netbox/templates/vpn/tunnel.html:72 netbox/vpn/tables/tunnels.py:58 +#: netbox/navigation/menu.py:226 templates/vpn/l2vpn.html:56 +#: templates/vpn/tunnel.html:72 vpn/tables/tunnels.py:58 msgid "Terminations" msgstr "Terminaisons" -#: netbox/netbox/navigation/menu.py:232 +#: netbox/navigation/menu.py:232 msgid "IKE Proposals" msgstr "Propositions IKE" -#: netbox/netbox/navigation/menu.py:233 -#: netbox/templates/vpn/ikeproposal.html:41 +#: netbox/navigation/menu.py:233 templates/vpn/ikeproposal.html:41 msgid "IKE Policies" msgstr "Politiques IKE" -#: netbox/netbox/navigation/menu.py:234 +#: netbox/navigation/menu.py:234 msgid "IPSec Proposals" msgstr "Propositions IPSec" -#: netbox/netbox/navigation/menu.py:235 -#: netbox/templates/vpn/ipsecproposal.html:37 +#: netbox/navigation/menu.py:235 templates/vpn/ipsecproposal.html:37 msgid "IPSec Policies" msgstr "Politiques IPSec" -#: netbox/netbox/navigation/menu.py:236 netbox/templates/vpn/ikepolicy.html:38 -#: netbox/templates/vpn/ipsecpolicy.html:25 +#: netbox/navigation/menu.py:236 templates/vpn/ikepolicy.html:38 +#: templates/vpn/ipsecpolicy.html:25 msgid "IPSec Profiles" msgstr "Profils IPSec" -#: netbox/netbox/navigation/menu.py:243 -#: netbox/templates/dcim/device_edit.html:78 +#: netbox/navigation/menu.py:243 templates/dcim/device_edit.html:78 msgid "Virtualization" msgstr "Virtualisation" -#: netbox/netbox/navigation/menu.py:251 -#: netbox/templates/virtualization/virtualmachine.html:174 -#: netbox/templates/virtualization/virtualmachine/base.html:32 -#: netbox/templates/virtualization/virtualmachine_list.html:21 -#: netbox/virtualization/tables/virtualmachines.py:104 -#: netbox/virtualization/views.py:388 +#: netbox/navigation/menu.py:251 +#: templates/virtualization/virtualmachine.html:174 +#: templates/virtualization/virtualmachine/base.html:32 +#: templates/virtualization/virtualmachine_list.html:21 +#: virtualization/tables/virtualmachines.py:104 virtualization/views.py:388 msgid "Virtual Disks" msgstr "Disques virtuels" -#: netbox/netbox/navigation/menu.py:258 +#: netbox/navigation/menu.py:258 msgid "Cluster Types" msgstr "Types de clusters" -#: netbox/netbox/navigation/menu.py:259 +#: netbox/navigation/menu.py:259 msgid "Cluster Groups" msgstr "Groupes de clusters" -#: netbox/netbox/navigation/menu.py:273 +#: netbox/navigation/menu.py:273 msgid "Circuit Types" msgstr "Types de circuits" -#: netbox/netbox/navigation/menu.py:274 +#: netbox/navigation/menu.py:274 msgid "Circuit Groups" msgstr "Groupes de circuits" -#: netbox/netbox/navigation/menu.py:275 -#: netbox/templates/circuits/circuit.html:66 +#: netbox/navigation/menu.py:275 templates/circuits/circuit.html:66 msgid "Group Assignments" msgstr "Devoirs de groupe" -#: netbox/netbox/navigation/menu.py:276 +#: netbox/navigation/menu.py:276 msgid "Circuit Terminations" msgstr "Terminaisons de circuits" -#: netbox/netbox/navigation/menu.py:280 netbox/netbox/navigation/menu.py:282 +#: netbox/navigation/menu.py:280 netbox/navigation/menu.py:282 msgid "Providers" msgstr "Prestataires" -#: netbox/netbox/navigation/menu.py:283 -#: netbox/templates/circuits/provider.html:51 +#: netbox/navigation/menu.py:283 templates/circuits/provider.html:51 msgid "Provider Accounts" msgstr "Comptes des fournisseurs" -#: netbox/netbox/navigation/menu.py:284 +#: netbox/navigation/menu.py:284 msgid "Provider Networks" msgstr "Réseaux de fournisseurs" -#: netbox/netbox/navigation/menu.py:298 +#: netbox/navigation/menu.py:298 msgid "Power Panels" msgstr "Panneaux d'alimentation" -#: netbox/netbox/navigation/menu.py:309 +#: netbox/navigation/menu.py:309 msgid "Configurations" msgstr "Configurations" -#: netbox/netbox/navigation/menu.py:311 +#: netbox/navigation/menu.py:311 msgid "Config Contexts" msgstr "Contextes de configuration" -#: netbox/netbox/navigation/menu.py:312 +#: netbox/navigation/menu.py:312 msgid "Config Templates" msgstr "Modèles de configuration" -#: netbox/netbox/navigation/menu.py:319 netbox/netbox/navigation/menu.py:323 +#: netbox/navigation/menu.py:319 netbox/navigation/menu.py:323 msgid "Customization" msgstr "Personnalisation" -#: netbox/netbox/navigation/menu.py:325 -#: netbox/templates/dcim/device_edit.html:103 -#: netbox/templates/dcim/htmx/cable_edit.html:81 -#: netbox/templates/dcim/virtualchassis_add.html:31 -#: netbox/templates/dcim/virtualchassis_edit.html:40 -#: netbox/templates/generic/bulk_edit.html:76 -#: netbox/templates/htmx/form.html:19 netbox/templates/inc/filter_list.html:30 -#: netbox/templates/inc/panels/custom_fields.html:7 -#: netbox/templates/ipam/ipaddress_bulk_add.html:35 -#: netbox/templates/ipam/vlan_edit.html:59 +#: netbox/navigation/menu.py:325 templates/dcim/device_edit.html:103 +#: templates/dcim/htmx/cable_edit.html:81 +#: templates/dcim/virtualchassis_add.html:31 +#: templates/dcim/virtualchassis_edit.html:40 +#: templates/generic/bulk_edit.html:76 templates/htmx/form.html:19 +#: templates/inc/filter_list.html:30 templates/inc/panels/custom_fields.html:7 +#: templates/ipam/ipaddress_bulk_add.html:35 templates/ipam/vlan_edit.html:59 msgid "Custom Fields" msgstr "Champs personnalisés" -#: netbox/netbox/navigation/menu.py:326 +#: netbox/navigation/menu.py:326 msgid "Custom Field Choices" msgstr "Choix de champs personnalisés" -#: netbox/netbox/navigation/menu.py:327 +#: netbox/navigation/menu.py:327 msgid "Custom Links" msgstr "Liens personnalisés" -#: netbox/netbox/navigation/menu.py:328 +#: netbox/navigation/menu.py:328 msgid "Export Templates" msgstr "Modèles d'exportation" -#: netbox/netbox/navigation/menu.py:329 +#: netbox/navigation/menu.py:329 msgid "Saved Filters" msgstr "Filtres enregistrés" -#: netbox/netbox/navigation/menu.py:331 +#: netbox/navigation/menu.py:331 msgid "Image Attachments" msgstr "Pièces jointes à des images" -#: netbox/netbox/navigation/menu.py:349 +#: netbox/navigation/menu.py:349 msgid "Operations" msgstr "Opérations" -#: netbox/netbox/navigation/menu.py:353 +#: netbox/navigation/menu.py:353 msgid "Integrations" msgstr "Intégrations" -#: netbox/netbox/navigation/menu.py:355 +#: netbox/navigation/menu.py:355 msgid "Data Sources" msgstr "Sources de données" -#: netbox/netbox/navigation/menu.py:356 +#: netbox/navigation/menu.py:356 msgid "Event Rules" msgstr "Règles de l'événement" -#: netbox/netbox/navigation/menu.py:357 +#: netbox/navigation/menu.py:357 msgid "Webhooks" msgstr "Webhooks" -#: netbox/netbox/navigation/menu.py:361 netbox/netbox/navigation/menu.py:365 -#: netbox/netbox/views/generic/feature_views.py:153 -#: netbox/templates/extras/report/base.html:37 -#: netbox/templates/extras/script/base.html:36 +#: netbox/navigation/menu.py:361 netbox/navigation/menu.py:365 +#: netbox/views/generic/feature_views.py:153 +#: templates/extras/report/base.html:37 templates/extras/script/base.html:36 msgid "Jobs" msgstr "Emplois" -#: netbox/netbox/navigation/menu.py:371 +#: netbox/navigation/menu.py:371 msgid "Logging" msgstr "Journalisation" -#: netbox/netbox/navigation/menu.py:373 +#: netbox/navigation/menu.py:373 msgid "Notification Groups" msgstr "Groupes de notifications" -#: netbox/netbox/navigation/menu.py:374 +#: netbox/navigation/menu.py:374 msgid "Journal Entries" msgstr "Entrées de journal" -#: netbox/netbox/navigation/menu.py:375 -#: netbox/templates/core/objectchange.html:9 -#: netbox/templates/core/objectchange_list.html:4 +#: netbox/navigation/menu.py:375 templates/core/objectchange.html:9 +#: templates/core/objectchange_list.html:4 msgid "Change Log" msgstr "Journal des modifications" -#: netbox/netbox/navigation/menu.py:382 netbox/templates/inc/user_menu.html:29 +#: netbox/navigation/menu.py:382 templates/inc/user_menu.html:29 msgid "Admin" msgstr "Administrateur" -#: netbox/netbox/navigation/menu.py:430 netbox/templates/account/base.html:27 -#: netbox/templates/inc/user_menu.html:57 +#: netbox/navigation/menu.py:430 templates/account/base.html:27 +#: templates/inc/user_menu.html:57 msgid "API Tokens" msgstr "Jetons d'API" -#: netbox/netbox/navigation/menu.py:437 netbox/users/forms/model_forms.py:187 -#: netbox/users/forms/model_forms.py:195 netbox/users/forms/model_forms.py:242 -#: netbox/users/forms/model_forms.py:249 +#: netbox/navigation/menu.py:437 users/forms/model_forms.py:187 +#: users/forms/model_forms.py:195 users/forms/model_forms.py:242 +#: users/forms/model_forms.py:249 msgid "Permissions" msgstr "Autorisations" -#: netbox/netbox/navigation/menu.py:445 netbox/netbox/navigation/menu.py:449 -#: netbox/templates/core/system.html:7 +#: netbox/navigation/menu.py:445 netbox/navigation/menu.py:449 +#: templates/core/system.html:7 msgid "System" msgstr "Système" -#: netbox/netbox/navigation/menu.py:454 netbox/netbox/navigation/menu.py:502 -#: netbox/templates/500.html:35 netbox/templates/account/preferences.html:22 -#: netbox/templates/core/plugin.html:12 -#: netbox/templates/core/plugin_list.html:7 -#: netbox/templates/core/plugin_list.html:12 +#: netbox/navigation/menu.py:454 netbox/navigation/menu.py:502 +#: templates/500.html:35 templates/account/preferences.html:22 +#: templates/core/plugin.html:13 templates/core/plugin_list.html:7 +#: templates/core/plugin_list.html:12 msgid "Plugins" msgstr "Plug-ins" -#: netbox/netbox/navigation/menu.py:459 +#: netbox/navigation/menu.py:459 msgid "Configuration History" msgstr "Historique de configuration" -#: netbox/netbox/navigation/menu.py:465 netbox/templates/core/rq_task.html:8 -#: netbox/templates/core/rq_task_list.html:22 +#: netbox/navigation/menu.py:465 templates/core/rq_task.html:8 +#: templates/core/rq_task_list.html:22 msgid "Background Tasks" msgstr "Tâches d'arrière-plan" -#: netbox/netbox/plugins/navigation.py:47 -#: netbox/netbox/plugins/navigation.py:69 +#: netbox/plugins/navigation.py:47 netbox/plugins/navigation.py:69 msgid "Permissions must be passed as a tuple or list." msgstr "" "Les autorisations doivent être transmises sous forme de tuple ou de liste." -#: netbox/netbox/plugins/navigation.py:51 +#: netbox/plugins/navigation.py:51 msgid "Buttons must be passed as a tuple or list." msgstr "Les boutons doivent être transmis sous forme de tuple ou de liste." -#: netbox/netbox/plugins/navigation.py:73 +#: netbox/plugins/navigation.py:73 msgid "Button color must be a choice within ButtonColorChoices." msgstr "La couleur du bouton doit être sélectionnée dans ButtonColorChoices." -#: netbox/netbox/plugins/registration.py:25 +#: netbox/plugins/registration.py:25 #, python-brace-format msgid "" "PluginTemplateExtension class {template_extension} was passed as an " @@ -11349,7 +10719,7 @@ msgstr "" "Classe PluginTemplateExtension {template_extension} a été transmis en tant " "qu'instance !" -#: netbox/netbox/plugins/registration.py:31 +#: netbox/plugins/registration.py:31 #, python-brace-format msgid "" "{template_extension} is not a subclass of " @@ -11358,197 +10728,196 @@ msgstr "" "{template_extension} n'est pas une sous-classe de " "Netbox.Plugins.PluginTemplateExtension !" -#: netbox/netbox/plugins/registration.py:51 +#: netbox/plugins/registration.py:51 #, python-brace-format msgid "{item} must be an instance of netbox.plugins.PluginMenuItem" msgstr "{item} doit être une instance de Netbox.Plugins.PluginMenuItem" -#: netbox/netbox/plugins/registration.py:62 +#: netbox/plugins/registration.py:62 #, python-brace-format msgid "{menu_link} must be an instance of netbox.plugins.PluginMenuItem" msgstr "{menu_link} doit être une instance de Netbox.Plugins.PluginMenuItem" -#: netbox/netbox/plugins/registration.py:67 +#: netbox/plugins/registration.py:67 #, python-brace-format msgid "{button} must be an instance of netbox.plugins.PluginMenuButton" msgstr "{button} doit être une instance de Netbox.Plugins.PluginMenuButton" -#: netbox/netbox/plugins/templates.py:37 +#: netbox/plugins/templates.py:37 msgid "extra_context must be a dictionary" msgstr "extra_context doit être un dictionnaire" -#: netbox/netbox/preferences.py:19 +#: netbox/preferences.py:19 msgid "HTMX Navigation" msgstr "Navigation HTML" -#: netbox/netbox/preferences.py:24 +#: netbox/preferences.py:24 msgid "Enable dynamic UI navigation" msgstr "Activer la navigation dynamique dans l'interface utilisateur" -#: netbox/netbox/preferences.py:26 +#: netbox/preferences.py:26 msgid "Experimental feature" msgstr "Fonctionnalité expérimentale" -#: netbox/netbox/preferences.py:29 +#: netbox/preferences.py:29 msgid "Language" msgstr "Langue" -#: netbox/netbox/preferences.py:34 +#: netbox/preferences.py:34 msgid "Forces UI translation to the specified language" msgstr "" "Force la traduction de l'interface utilisateur dans la langue spécifiée" -#: netbox/netbox/preferences.py:36 +#: netbox/preferences.py:36 msgid "Support for translation has been disabled locally" msgstr "La prise en charge de la traduction a été désactivée localement" -#: netbox/netbox/preferences.py:42 +#: netbox/preferences.py:42 msgid "Page length" msgstr "Longueur de page" -#: netbox/netbox/preferences.py:44 +#: netbox/preferences.py:44 msgid "The default number of objects to display per page" msgstr "Le nombre d'objets par défaut à afficher par page" -#: netbox/netbox/preferences.py:48 +#: netbox/preferences.py:48 msgid "Paginator placement" msgstr "Emplacement du paginateur" -#: netbox/netbox/preferences.py:50 +#: netbox/preferences.py:50 msgid "Bottom" msgstr "En bas" -#: netbox/netbox/preferences.py:51 +#: netbox/preferences.py:51 msgid "Top" msgstr "Haut" -#: netbox/netbox/preferences.py:52 +#: netbox/preferences.py:52 msgid "Both" msgstr "Les deux" -#: netbox/netbox/preferences.py:55 +#: netbox/preferences.py:55 msgid "Where the paginator controls will be displayed relative to a table" msgstr "" "Où les commandes du paginateur seront affichées par rapport à un tableau" -#: netbox/netbox/preferences.py:60 +#: netbox/preferences.py:60 msgid "Data format" msgstr "Format des données" -#: netbox/netbox/preferences.py:65 +#: netbox/preferences.py:65 msgid "The preferred syntax for displaying generic data within the UI" msgstr "" "Syntaxe préférée pour afficher des données génériques dans l'interface " "utilisateur" -#: netbox/netbox/registry.py:14 +#: netbox/registry.py:14 #, python-brace-format msgid "Invalid store: {key}" msgstr "Boutique non valide : {key}" -#: netbox/netbox/registry.py:17 +#: netbox/registry.py:17 msgid "Cannot add stores to registry after initialization" msgstr "Impossible d'ajouter des magasins au registre après l'initialisation" -#: netbox/netbox/registry.py:20 +#: netbox/registry.py:20 msgid "Cannot delete stores from registry" msgstr "Impossible de supprimer des magasins du registre" -#: netbox/netbox/settings.py:760 +#: netbox/settings.py:760 msgid "Czech" msgstr "tchèque" -#: netbox/netbox/settings.py:761 +#: netbox/settings.py:761 msgid "Danish" msgstr "danois" -#: netbox/netbox/settings.py:762 +#: netbox/settings.py:762 msgid "German" msgstr "allemand" -#: netbox/netbox/settings.py:763 +#: netbox/settings.py:763 msgid "English" msgstr "Anglais" -#: netbox/netbox/settings.py:764 +#: netbox/settings.py:764 msgid "Spanish" msgstr "espagnol" -#: netbox/netbox/settings.py:765 +#: netbox/settings.py:765 msgid "French" msgstr "français" -#: netbox/netbox/settings.py:766 +#: netbox/settings.py:766 msgid "Italian" msgstr "italien" -#: netbox/netbox/settings.py:767 +#: netbox/settings.py:767 msgid "Japanese" msgstr "japonais" -#: netbox/netbox/settings.py:768 +#: netbox/settings.py:768 msgid "Dutch" msgstr "néerlandais" -#: netbox/netbox/settings.py:769 +#: netbox/settings.py:769 msgid "Polish" msgstr "polonais" -#: netbox/netbox/settings.py:770 +#: netbox/settings.py:770 msgid "Portuguese" msgstr "portugais" -#: netbox/netbox/settings.py:771 +#: netbox/settings.py:771 msgid "Russian" msgstr "russe" -#: netbox/netbox/settings.py:772 +#: netbox/settings.py:772 msgid "Turkish" msgstr "Turc" -#: netbox/netbox/settings.py:773 +#: netbox/settings.py:773 msgid "Ukrainian" msgstr "Ukrainien" -#: netbox/netbox/settings.py:774 +#: netbox/settings.py:774 msgid "Chinese" msgstr "chinois" -#: netbox/netbox/tables/columns.py:176 +#: netbox/tables/columns.py:176 msgid "Select all" msgstr "Tout sélectionner" -#: netbox/netbox/tables/columns.py:189 +#: netbox/tables/columns.py:189 msgid "Toggle all" msgstr "Tout afficher" -#: netbox/netbox/tables/columns.py:300 +#: netbox/tables/columns.py:300 msgid "Toggle Dropdown" msgstr "Basculer vers le menu déroulant" -#: netbox/netbox/tables/columns.py:572 netbox/templates/core/job.html:53 +#: netbox/tables/columns.py:572 templates/core/job.html:53 msgid "Error" msgstr "Erreur" -#: netbox/netbox/tables/tables.py:58 +#: netbox/tables/tables.py:58 #, python-brace-format msgid "No {model_name} found" msgstr "{model_name} non trouvé" -#: netbox/netbox/tables/tables.py:249 -#: netbox/templates/generic/bulk_import.html:117 +#: netbox/tables/tables.py:249 templates/generic/bulk_import.html:117 msgid "Field" msgstr "Champ" -#: netbox/netbox/tables/tables.py:252 +#: netbox/tables/tables.py:252 msgid "Value" msgstr "Valeur" -#: netbox/netbox/tests/dummy_plugin/navigation.py:29 +#: netbox/tests/dummy_plugin/navigation.py:29 msgid "Dummy Plugin" msgstr "Plugin Dummy" -#: netbox/netbox/views/generic/bulk_views.py:114 +#: netbox/views/generic/bulk_views.py:114 #, python-brace-format msgid "" "There was an error rendering the selected export template ({template}): " @@ -11557,58 +10926,58 @@ msgstr "" "Une erreur s'est produite lors de l'affichage du modèle d'exportation " "sélectionné ({template}) : {error}" -#: netbox/netbox/views/generic/bulk_views.py:416 +#: netbox/views/generic/bulk_views.py:416 #, python-brace-format msgid "Row {i}: Object with ID {id} does not exist" msgstr "Rangée {i}: Objet avec identifiant {id} n'existe pas" -#: netbox/netbox/views/generic/bulk_views.py:699 -#: netbox/netbox/views/generic/bulk_views.py:897 -#: netbox/netbox/views/generic/bulk_views.py:945 +#: netbox/views/generic/bulk_views.py:702 +#: netbox/views/generic/bulk_views.py:900 +#: netbox/views/generic/bulk_views.py:948 #, python-brace-format msgid "No {object_type} were selected." msgstr "Non {object_type} ont été sélectionnés." -#: netbox/netbox/views/generic/bulk_views.py:779 +#: netbox/views/generic/bulk_views.py:782 #, python-brace-format msgid "Renamed {count} {object_type}" msgstr "Renommé {count} {object_type}" -#: netbox/netbox/views/generic/bulk_views.py:875 +#: netbox/views/generic/bulk_views.py:878 #, python-brace-format msgid "Deleted {count} {object_type}" msgstr "Supprimé {count} {object_type}" -#: netbox/netbox/views/generic/feature_views.py:40 +#: netbox/views/generic/feature_views.py:40 msgid "Changelog" msgstr "Journal des modifications" -#: netbox/netbox/views/generic/feature_views.py:93 +#: netbox/views/generic/feature_views.py:93 msgid "Journal" msgstr "Journal" -#: netbox/netbox/views/generic/feature_views.py:207 +#: netbox/views/generic/feature_views.py:207 msgid "Unable to synchronize data: No data file set." msgstr "" "Impossible de synchroniser les données : aucun fichier de données n'est " "défini." -#: netbox/netbox/views/generic/feature_views.py:211 +#: netbox/views/generic/feature_views.py:211 #, python-brace-format msgid "Synchronized data for {object_type} {object}." msgstr "Données synchronisées pour {object_type} {object}." -#: netbox/netbox/views/generic/feature_views.py:236 +#: netbox/views/generic/feature_views.py:236 #, python-brace-format msgid "Synced {count} {object_type}" msgstr "Synchronisé {count} {object_type}" -#: netbox/netbox/views/generic/object_views.py:108 +#: netbox/views/generic/object_views.py:108 #, python-brace-format msgid "{class_name} must implement get_children()" msgstr "{class_name} doit implémenter get_children ()" -#: netbox/netbox/views/misc.py:44 +#: netbox/views/misc.py:44 msgid "" "There was an error loading the dashboard configuration. A default dashboard " "is in use." @@ -11616,752 +10985,707 @@ msgstr "" "Une erreur s'est produite lors du chargement de la configuration du tableau " "de bord. Un tableau de bord par défaut est utilisé." -#: netbox/templates/403.html:4 +#: templates/403.html:4 msgid "Access Denied" msgstr "Accès refusé" -#: netbox/templates/403.html:9 +#: templates/403.html:9 msgid "You do not have permission to access this page" msgstr "Vous n'êtes pas autorisé à accéder à cette page" -#: netbox/templates/404.html:4 +#: templates/404.html:4 msgid "Page Not Found" msgstr "Page non trouvée" -#: netbox/templates/404.html:9 +#: templates/404.html:9 msgid "The requested page does not exist" msgstr "La page demandée n'existe pas" -#: netbox/templates/500.html:7 netbox/templates/500.html:18 +#: templates/500.html:7 templates/500.html:18 msgid "Server Error" msgstr "Erreur du serveur" -#: netbox/templates/500.html:23 +#: templates/500.html:23 msgid "There was a problem with your request. Please contact an administrator" msgstr "" "Il y a eu un problème avec votre demande. Veuillez contacter un " "administrateur" -#: netbox/templates/500.html:28 +#: templates/500.html:28 msgid "The complete exception is provided below" msgstr "L'exception complète est fournie ci-dessous" -#: netbox/templates/500.html:33 netbox/templates/core/system.html:40 +#: templates/500.html:33 templates/core/system.html:40 msgid "Python version" msgstr "Version Python" -#: netbox/templates/500.html:34 +#: templates/500.html:34 msgid "NetBox version" msgstr "Version NetBox" -#: netbox/templates/500.html:36 +#: templates/500.html:36 msgid "None installed" msgstr "Aucun n'est installé" -#: netbox/templates/500.html:39 +#: templates/500.html:39 msgid "If further assistance is required, please post to the" msgstr "" "Si une assistance supplémentaire est requise, veuillez envoyer un message au" -#: netbox/templates/500.html:39 +#: templates/500.html:39 msgid "NetBox discussion forum" msgstr "Forum de discussion NetBox" -#: netbox/templates/500.html:39 +#: templates/500.html:39 msgid "on GitHub" msgstr "sur GitHub" -#: netbox/templates/500.html:42 netbox/templates/base/40x.html:17 +#: templates/500.html:42 templates/base/40x.html:17 msgid "Home Page" msgstr "Page d'accueil" -#: netbox/templates/account/base.html:7 netbox/templates/inc/user_menu.html:45 -#: netbox/vpn/forms/bulk_edit.py:255 netbox/vpn/forms/filtersets.py:189 -#: netbox/vpn/forms/model_forms.py:379 +#: templates/account/base.html:7 templates/inc/user_menu.html:45 +#: vpn/forms/bulk_edit.py:255 vpn/forms/filtersets.py:189 +#: vpn/forms/model_forms.py:379 msgid "Profile" msgstr "Profil" -#: netbox/templates/account/base.html:13 -#: netbox/templates/account/notifications.html:7 -#: netbox/templates/inc/user_menu.html:15 +#: templates/account/base.html:13 templates/account/notifications.html:7 +#: templates/inc/user_menu.html:15 msgid "Notifications" msgstr "Notifications" -#: netbox/templates/account/base.html:16 -#: netbox/templates/account/subscriptions.html:7 -#: netbox/templates/inc/user_menu.html:51 +#: templates/account/base.html:16 templates/account/subscriptions.html:7 +#: templates/inc/user_menu.html:51 msgid "Subscriptions" msgstr "Abonnements" -#: netbox/templates/account/base.html:19 -#: netbox/templates/inc/user_menu.html:54 +#: templates/account/base.html:19 templates/inc/user_menu.html:54 msgid "Preferences" msgstr "Préférences" -#: netbox/templates/account/password.html:5 +#: templates/account/password.html:5 msgid "Change Password" msgstr "Modifier le mot de passe" -#: netbox/templates/account/password.html:19 -#: netbox/templates/account/preferences.html:77 -#: netbox/templates/core/configrevision_restore.html:63 -#: netbox/templates/dcim/devicebay_populate.html:34 -#: netbox/templates/dcim/virtualchassis_add_member.html:26 -#: netbox/templates/dcim/virtualchassis_edit.html:103 -#: netbox/templates/extras/object_journal.html:26 -#: netbox/templates/extras/script.html:38 -#: netbox/templates/generic/bulk_add_component.html:67 -#: netbox/templates/generic/bulk_delete.html:65 -#: netbox/templates/generic/bulk_edit.html:106 -#: netbox/templates/generic/bulk_import.html:56 -#: netbox/templates/generic/bulk_import.html:78 -#: netbox/templates/generic/bulk_import.html:100 -#: netbox/templates/generic/bulk_remove.html:62 -#: netbox/templates/generic/bulk_rename.html:63 -#: netbox/templates/generic/confirmation_form.html:19 -#: netbox/templates/generic/object_edit.html:72 -#: netbox/templates/htmx/delete_form.html:53 -#: netbox/templates/htmx/delete_form.html:55 -#: netbox/templates/ipam/ipaddress_assign.html:28 -#: netbox/templates/virtualization/cluster_add_devices.html:30 +#: templates/account/password.html:19 templates/account/preferences.html:77 +#: templates/core/configrevision_restore.html:63 +#: templates/dcim/devicebay_populate.html:34 +#: templates/dcim/virtualchassis_add_member.html:26 +#: templates/dcim/virtualchassis_edit.html:103 +#: templates/extras/object_journal.html:26 templates/extras/script.html:38 +#: templates/generic/bulk_add_component.html:67 +#: templates/generic/bulk_delete.html:65 templates/generic/bulk_edit.html:106 +#: templates/generic/bulk_import.html:56 templates/generic/bulk_import.html:78 +#: templates/generic/bulk_import.html:100 +#: templates/generic/bulk_remove.html:62 templates/generic/bulk_rename.html:63 +#: templates/generic/confirmation_form.html:19 +#: templates/generic/object_edit.html:72 templates/htmx/delete_form.html:53 +#: templates/htmx/delete_form.html:55 templates/ipam/ipaddress_assign.html:28 +#: templates/virtualization/cluster_add_devices.html:30 msgid "Cancel" msgstr "Annuler" -#: netbox/templates/account/password.html:20 -#: netbox/templates/account/preferences.html:78 -#: netbox/templates/dcim/devicebay_populate.html:35 -#: netbox/templates/dcim/virtualchassis_add_member.html:28 -#: netbox/templates/dcim/virtualchassis_edit.html:105 -#: netbox/templates/extras/dashboard/widget_add.html:26 -#: netbox/templates/extras/dashboard/widget_config.html:19 -#: netbox/templates/extras/object_journal.html:27 -#: netbox/templates/generic/object_edit.html:75 -#: netbox/utilities/templates/helpers/applied_filters.html:16 -#: netbox/utilities/templates/helpers/table_config_form.html:40 +#: templates/account/password.html:20 templates/account/preferences.html:78 +#: templates/dcim/devicebay_populate.html:35 +#: templates/dcim/virtualchassis_add_member.html:28 +#: templates/dcim/virtualchassis_edit.html:105 +#: templates/extras/dashboard/widget_add.html:26 +#: templates/extras/dashboard/widget_config.html:19 +#: templates/extras/object_journal.html:27 +#: templates/generic/object_edit.html:75 +#: utilities/templates/helpers/applied_filters.html:16 +#: utilities/templates/helpers/table_config_form.html:40 msgid "Save" msgstr "Sauvegarder" -#: netbox/templates/account/preferences.html:34 +#: templates/account/preferences.html:34 msgid "Table Configurations" msgstr "Configurations des tables" -#: netbox/templates/account/preferences.html:39 +#: templates/account/preferences.html:39 msgid "Clear table preferences" msgstr "Effacer les préférences du tableau" -#: netbox/templates/account/preferences.html:47 +#: templates/account/preferences.html:47 msgid "Toggle All" msgstr "Tout afficher" -#: netbox/templates/account/preferences.html:49 +#: templates/account/preferences.html:49 msgid "Table" msgstr "Tableau" -#: netbox/templates/account/preferences.html:50 +#: templates/account/preferences.html:50 msgid "Ordering" msgstr "Commander" -#: netbox/templates/account/preferences.html:51 +#: templates/account/preferences.html:51 msgid "Columns" msgstr "Colonnes" -#: netbox/templates/account/preferences.html:71 -#: netbox/templates/dcim/cable_trace.html:113 -#: netbox/templates/extras/object_configcontext.html:43 +#: templates/account/preferences.html:71 templates/dcim/cable_trace.html:113 +#: templates/extras/object_configcontext.html:43 msgid "None found" msgstr "Aucun n'a été trouvé" -#: netbox/templates/account/profile.html:6 +#: templates/account/profile.html:6 msgid "User Profile" msgstr "Profil utilisateur" -#: netbox/templates/account/profile.html:12 +#: templates/account/profile.html:12 msgid "Account Details" msgstr "Détails du compte" -#: netbox/templates/account/profile.html:29 -#: netbox/templates/tenancy/contact.html:43 -#: netbox/templates/users/user.html:25 netbox/tenancy/forms/bulk_edit.py:109 +#: templates/account/profile.html:29 templates/tenancy/contact.html:43 +#: templates/users/user.html:25 tenancy/forms/bulk_edit.py:109 msgid "Email" msgstr "Courrier électronique" -#: netbox/templates/account/profile.html:33 -#: netbox/templates/users/user.html:29 +#: templates/account/profile.html:33 templates/users/user.html:29 msgid "Account Created" msgstr "Compte créé" -#: netbox/templates/account/profile.html:37 -#: netbox/templates/users/user.html:33 +#: templates/account/profile.html:37 templates/users/user.html:33 msgid "Last Login" msgstr "Dernière connexion" -#: netbox/templates/account/profile.html:41 -#: netbox/templates/users/user.html:45 +#: templates/account/profile.html:41 templates/users/user.html:45 msgid "Superuser" msgstr "Superutilisateur" -#: netbox/templates/account/profile.html:45 -#: netbox/templates/inc/user_menu.html:31 netbox/templates/users/user.html:41 +#: templates/account/profile.html:45 templates/inc/user_menu.html:31 +#: templates/users/user.html:41 msgid "Staff" msgstr "Le personnel" -#: netbox/templates/account/profile.html:53 -#: netbox/templates/users/objectpermission.html:82 -#: netbox/templates/users/user.html:53 +#: templates/account/profile.html:53 templates/users/objectpermission.html:82 +#: templates/users/user.html:53 msgid "Assigned Groups" msgstr "Groupes associés" -#: netbox/templates/account/profile.html:58 -#: netbox/templates/circuits/circuit_terminations_swap.html:18 -#: netbox/templates/circuits/circuit_terminations_swap.html:26 -#: netbox/templates/circuits/circuittermination.html:34 -#: netbox/templates/circuits/inc/circuit_termination.html:68 -#: netbox/templates/core/objectchange.html:124 -#: netbox/templates/core/objectchange.html:142 -#: netbox/templates/dcim/devicebay.html:59 -#: netbox/templates/dcim/inc/panels/inventory_items.html:45 -#: netbox/templates/dcim/interface.html:296 -#: netbox/templates/dcim/modulebay.html:80 -#: netbox/templates/extras/configcontext.html:70 -#: netbox/templates/extras/eventrule.html:66 -#: netbox/templates/extras/htmx/script_result.html:60 -#: netbox/templates/extras/webhook.html:65 -#: netbox/templates/extras/webhook.html:75 -#: netbox/templates/inc/panel_table.html:13 -#: netbox/templates/inc/panels/comments.html:10 -#: netbox/templates/ipam/inc/panels/fhrp_groups.html:56 -#: netbox/templates/users/group.html:34 netbox/templates/users/group.html:44 -#: netbox/templates/users/objectpermission.html:77 -#: netbox/templates/users/objectpermission.html:87 -#: netbox/templates/users/user.html:58 netbox/templates/users/user.html:68 +#: templates/account/profile.html:58 +#: templates/circuits/circuit_terminations_swap.html:18 +#: templates/circuits/circuit_terminations_swap.html:26 +#: templates/circuits/circuittermination.html:34 +#: templates/circuits/inc/circuit_termination.html:68 +#: templates/core/objectchange.html:124 templates/core/objectchange.html:142 +#: templates/dcim/devicebay.html:59 +#: templates/dcim/inc/panels/inventory_items.html:45 +#: templates/dcim/interface.html:296 templates/dcim/modulebay.html:80 +#: templates/extras/configcontext.html:70 templates/extras/eventrule.html:66 +#: templates/extras/htmx/script_result.html:60 +#: templates/extras/webhook.html:65 templates/extras/webhook.html:75 +#: templates/inc/panel_table.html:13 templates/inc/panels/comments.html:10 +#: templates/ipam/inc/panels/fhrp_groups.html:56 templates/users/group.html:34 +#: templates/users/group.html:44 templates/users/objectpermission.html:77 +#: templates/users/objectpermission.html:87 templates/users/user.html:58 +#: templates/users/user.html:68 msgid "None" msgstr "Aucune" -#: netbox/templates/account/profile.html:68 -#: netbox/templates/users/user.html:78 +#: templates/account/profile.html:68 templates/users/user.html:78 msgid "Recent Activity" msgstr "Activité récente" -#: netbox/templates/account/token.html:8 -#: netbox/templates/account/token_list.html:6 +#: templates/account/token.html:8 templates/account/token_list.html:6 msgid "My API Tokens" msgstr "Mes jetons d'API" -#: netbox/templates/account/token.html:11 -#: netbox/templates/account/token.html:19 netbox/templates/users/token.html:6 -#: netbox/templates/users/token.html:14 netbox/users/forms/filtersets.py:120 +#: templates/account/token.html:11 templates/account/token.html:19 +#: templates/users/token.html:6 templates/users/token.html:14 +#: users/forms/filtersets.py:120 msgid "Token" msgstr "Jeton" -#: netbox/templates/account/token.html:39 netbox/templates/users/token.html:31 -#: netbox/users/forms/bulk_edit.py:107 +#: templates/account/token.html:39 templates/users/token.html:31 +#: users/forms/bulk_edit.py:107 msgid "Write enabled" msgstr "Écriture activée" -#: netbox/templates/account/token.html:51 netbox/templates/users/token.html:43 +#: templates/account/token.html:51 templates/users/token.html:43 msgid "Last used" msgstr "Dernière utilisation" -#: netbox/templates/account/token_list.html:12 +#: templates/account/token_list.html:12 msgid "Add a Token" msgstr "Ajouter un jeton" -#: netbox/templates/base/base.html:22 netbox/templates/home.html:27 +#: templates/base/base.html:22 templates/home.html:27 msgid "Home" msgstr "Accueil" -#: netbox/templates/base/layout.html:25 +#: templates/base/layout.html:25 msgid "NetBox Motif" msgstr "Motif NetBox" -#: netbox/templates/base/layout.html:38 netbox/templates/base/layout.html:39 -#: netbox/templates/login.html:14 netbox/templates/login.html:15 +#: templates/base/layout.html:38 templates/base/layout.html:39 +#: templates/login.html:14 templates/login.html:15 msgid "NetBox Logo" msgstr "Logo NetBox" -#: netbox/templates/base/layout.html:150 netbox/templates/base/layout.html:151 +#: templates/base/layout.html:150 templates/base/layout.html:151 msgid "Docs" msgstr "Docs" -#: netbox/templates/base/layout.html:156 netbox/templates/base/layout.html:157 -#: netbox/templates/rest_framework/api.html:10 +#: templates/base/layout.html:156 templates/base/layout.html:157 +#: templates/rest_framework/api.html:10 msgid "REST API" msgstr "API REST" -#: netbox/templates/base/layout.html:162 netbox/templates/base/layout.html:163 +#: templates/base/layout.html:162 templates/base/layout.html:163 msgid "REST API documentation" msgstr "Documentation de l'API REST" -#: netbox/templates/base/layout.html:169 netbox/templates/base/layout.html:170 +#: templates/base/layout.html:169 templates/base/layout.html:170 msgid "GraphQL API" msgstr "API GraphQL" -#: netbox/templates/base/layout.html:185 netbox/templates/base/layout.html:186 +#: templates/base/layout.html:185 templates/base/layout.html:186 msgid "NetBox Labs Support" msgstr "Assistance NetBox Labs" -#: netbox/templates/base/layout.html:194 netbox/templates/base/layout.html:195 +#: templates/base/layout.html:194 templates/base/layout.html:195 msgid "Source Code" msgstr "Code source" -#: netbox/templates/base/layout.html:200 netbox/templates/base/layout.html:201 +#: templates/base/layout.html:200 templates/base/layout.html:201 msgid "Community" msgstr "Communauté" -#: netbox/templates/circuits/circuit.html:47 +#: templates/circuits/circuit.html:47 msgid "Install Date" msgstr "Date d'installation" -#: netbox/templates/circuits/circuit.html:51 +#: templates/circuits/circuit.html:51 msgid "Termination Date" msgstr "Date de résiliation" -#: netbox/templates/circuits/circuit.html:70 -#: netbox/templates/ipam/inc/panels/fhrp_groups.html:15 +#: templates/circuits/circuit.html:70 +#: templates/ipam/inc/panels/fhrp_groups.html:15 msgid "Assign Group" msgstr "Associer un groupe" -#: netbox/templates/circuits/circuit_terminations_swap.html:4 +#: templates/circuits/circuit_terminations_swap.html:4 msgid "Swap Circuit Terminations" msgstr "Échanger les terminaisons du circuit" -#: netbox/templates/circuits/circuit_terminations_swap.html:8 +#: templates/circuits/circuit_terminations_swap.html:8 #, python-format msgid "Swap these terminations for circuit %(circuit)s?" msgstr "Échanger les terminaisons du circuit %(circuit)s?" -#: netbox/templates/circuits/circuit_terminations_swap.html:14 +#: templates/circuits/circuit_terminations_swap.html:14 msgid "A side" msgstr "Coté A" -#: netbox/templates/circuits/circuit_terminations_swap.html:22 +#: templates/circuits/circuit_terminations_swap.html:22 msgid "Z side" msgstr "Côté Z" -#: netbox/templates/circuits/circuitgroup.html:16 +#: templates/circuits/circuitgroup.html:16 msgid "Assign Circuit" msgstr "Attribuer un circuit" -#: netbox/templates/circuits/circuitgroupassignment.html:19 +#: templates/circuits/circuitgroupassignment.html:19 msgid "Circuit Group Assignment" msgstr "Affectation de groupes de circuits" -#: netbox/templates/circuits/circuittype.html:10 +#: templates/circuits/circuittype.html:10 msgid "Add Circuit" msgstr "Ajouter un circuit" -#: netbox/templates/circuits/circuittype.html:19 +#: templates/circuits/circuittype.html:19 msgid "Circuit Type" msgstr "Type de circuit" -#: netbox/templates/circuits/inc/circuit_termination.html:10 -#: netbox/templates/dcim/devicetype/component_templates.html:33 -#: netbox/templates/dcim/manufacturer.html:11 -#: netbox/templates/dcim/moduletype/component_templates.html:29 -#: netbox/templates/generic/bulk_add_component.html:22 -#: netbox/templates/users/objectpermission.html:38 -#: netbox/utilities/templates/buttons/add.html:4 -#: netbox/utilities/templates/helpers/table_config_form.html:20 +#: templates/circuits/inc/circuit_termination.html:10 +#: templates/dcim/manufacturer.html:11 +#: templates/generic/bulk_add_component.html:22 +#: templates/users/objectpermission.html:38 +#: utilities/templates/buttons/add.html:4 +#: utilities/templates/helpers/table_config_form.html:20 msgid "Add" msgstr "Ajouter" -#: netbox/templates/circuits/inc/circuit_termination.html:15 -#: netbox/templates/circuits/inc/circuit_termination_fields.html:36 -#: netbox/templates/dcim/inc/panels/inventory_items.html:32 -#: netbox/templates/dcim/moduletype/component_templates.html:20 -#: netbox/templates/dcim/powerpanel.html:56 -#: netbox/templates/extras/script_list.html:30 -#: netbox/templates/generic/object_edit.html:47 -#: netbox/templates/ipam/inc/ipaddress_edit_header.html:7 -#: netbox/templates/ipam/inc/panels/fhrp_groups.html:43 -#: netbox/utilities/templates/buttons/edit.html:3 +#: templates/circuits/inc/circuit_termination.html:15 +#: templates/circuits/inc/circuit_termination_fields.html:36 +#: templates/dcim/inc/panels/inventory_items.html:32 +#: templates/dcim/powerpanel.html:56 templates/extras/script_list.html:30 +#: templates/generic/object_edit.html:47 +#: templates/ipam/inc/ipaddress_edit_header.html:7 +#: templates/ipam/inc/panels/fhrp_groups.html:43 +#: utilities/templates/buttons/edit.html:3 msgid "Edit" msgstr "Modifier" -#: netbox/templates/circuits/inc/circuit_termination.html:18 +#: templates/circuits/inc/circuit_termination.html:18 msgid "Swap" msgstr "Échange" -#: netbox/templates/circuits/inc/circuit_termination_fields.html:19 -#: netbox/templates/dcim/consoleport.html:59 -#: netbox/templates/dcim/consoleserverport.html:60 -#: netbox/templates/dcim/powerfeed.html:114 +#: templates/circuits/inc/circuit_termination_fields.html:19 +#: templates/dcim/consoleport.html:59 templates/dcim/consoleserverport.html:60 +#: templates/dcim/powerfeed.html:114 msgid "Marked as connected" msgstr "Marqué comme connecté" -#: netbox/templates/circuits/inc/circuit_termination_fields.html:21 +#: templates/circuits/inc/circuit_termination_fields.html:21 msgid "to" msgstr "pour" -#: netbox/templates/circuits/inc/circuit_termination_fields.html:31 -#: netbox/templates/circuits/inc/circuit_termination_fields.html:32 -#: netbox/templates/dcim/frontport.html:80 -#: netbox/templates/dcim/inc/connection_endpoints.html:7 -#: netbox/templates/dcim/interface.html:154 -#: netbox/templates/dcim/rearport.html:76 +#: templates/circuits/inc/circuit_termination_fields.html:31 +#: templates/circuits/inc/circuit_termination_fields.html:32 +#: templates/dcim/frontport.html:80 +#: templates/dcim/inc/connection_endpoints.html:7 +#: templates/dcim/interface.html:154 templates/dcim/rearport.html:76 msgid "Trace" msgstr "Trace" -#: netbox/templates/circuits/inc/circuit_termination_fields.html:35 +#: templates/circuits/inc/circuit_termination_fields.html:35 msgid "Edit cable" msgstr "Modifier le câble" -#: netbox/templates/circuits/inc/circuit_termination_fields.html:40 +#: templates/circuits/inc/circuit_termination_fields.html:40 msgid "Remove cable" msgstr "Retirez le câble" -#: netbox/templates/circuits/inc/circuit_termination_fields.html:41 -#: netbox/templates/dcim/bulk_disconnect.html:5 -#: netbox/templates/dcim/device/consoleports.html:12 -#: netbox/templates/dcim/device/consoleserverports.html:12 -#: netbox/templates/dcim/device/frontports.html:12 -#: netbox/templates/dcim/device/interfaces.html:16 -#: netbox/templates/dcim/device/poweroutlets.html:12 -#: netbox/templates/dcim/device/powerports.html:12 -#: netbox/templates/dcim/device/rearports.html:12 -#: netbox/templates/dcim/powerpanel.html:61 +#: templates/circuits/inc/circuit_termination_fields.html:41 +#: templates/dcim/bulk_disconnect.html:5 +#: templates/dcim/device/consoleports.html:12 +#: templates/dcim/device/consoleserverports.html:12 +#: templates/dcim/device/frontports.html:12 +#: templates/dcim/device/interfaces.html:16 +#: templates/dcim/device/poweroutlets.html:12 +#: templates/dcim/device/powerports.html:12 +#: templates/dcim/device/rearports.html:12 templates/dcim/powerpanel.html:61 msgid "Disconnect" msgstr "Déconnectez" -#: netbox/templates/circuits/inc/circuit_termination_fields.html:48 -#: netbox/templates/dcim/consoleport.html:69 -#: netbox/templates/dcim/consoleserverport.html:70 -#: netbox/templates/dcim/frontport.html:102 -#: netbox/templates/dcim/interface.html:180 -#: netbox/templates/dcim/interface.html:200 -#: netbox/templates/dcim/powerfeed.html:127 -#: netbox/templates/dcim/poweroutlet.html:71 -#: netbox/templates/dcim/poweroutlet.html:72 -#: netbox/templates/dcim/powerport.html:73 -#: netbox/templates/dcim/rearport.html:98 +#: templates/circuits/inc/circuit_termination_fields.html:48 +#: templates/dcim/consoleport.html:69 templates/dcim/consoleserverport.html:70 +#: templates/dcim/frontport.html:102 templates/dcim/interface.html:180 +#: templates/dcim/interface.html:200 templates/dcim/powerfeed.html:127 +#: templates/dcim/poweroutlet.html:71 templates/dcim/poweroutlet.html:72 +#: templates/dcim/powerport.html:73 templates/dcim/rearport.html:98 msgid "Connect" msgstr "Connecter" -#: netbox/templates/circuits/inc/circuit_termination_fields.html:70 +#: templates/circuits/inc/circuit_termination_fields.html:70 msgid "Downstream" msgstr "En aval" -#: netbox/templates/circuits/inc/circuit_termination_fields.html:71 +#: templates/circuits/inc/circuit_termination_fields.html:71 msgid "Upstream" msgstr "En amont" -#: netbox/templates/circuits/inc/circuit_termination_fields.html:80 +#: templates/circuits/inc/circuit_termination_fields.html:80 msgid "Cross-Connect" msgstr "Connexion croisée" -#: netbox/templates/circuits/inc/circuit_termination_fields.html:84 +#: templates/circuits/inc/circuit_termination_fields.html:84 msgid "Patch Panel/Port" msgstr "Panneau de raccordement et port" -#: netbox/templates/circuits/provider.html:11 +#: templates/circuits/provider.html:11 msgid "Add circuit" msgstr "Ajouter un circuit" -#: netbox/templates/circuits/provideraccount.html:17 +#: templates/circuits/provideraccount.html:17 msgid "Provider Account" msgstr "Compte du fournisseur" -#: netbox/templates/core/configrevision.html:35 +#: templates/core/configrevision.html:35 msgid "Configuration Data" msgstr "Données de configuration" -#: netbox/templates/core/configrevision.html:40 +#: templates/core/configrevision.html:40 msgid "Comment" msgstr "Commentaire" -#: netbox/templates/core/configrevision_restore.html:8 -#: netbox/templates/core/configrevision_restore.html:25 -#: netbox/templates/core/configrevision_restore.html:64 +#: templates/core/configrevision_restore.html:8 +#: templates/core/configrevision_restore.html:25 +#: templates/core/configrevision_restore.html:64 msgid "Restore" msgstr "Restaurer" -#: netbox/templates/core/configrevision_restore.html:36 +#: templates/core/configrevision_restore.html:36 msgid "Parameter" msgstr "Paramètre" -#: netbox/templates/core/configrevision_restore.html:37 +#: templates/core/configrevision_restore.html:37 msgid "Current Value" msgstr "Valeur actuelle" -#: netbox/templates/core/configrevision_restore.html:38 +#: templates/core/configrevision_restore.html:38 msgid "New Value" msgstr "Nouvelle valeur" -#: netbox/templates/core/configrevision_restore.html:50 +#: templates/core/configrevision_restore.html:50 msgid "Changed" msgstr "Modifié" -#: netbox/templates/core/datafile.html:42 -#: netbox/templates/ipam/iprange.html:25 -#: netbox/templates/virtualization/virtualdisk.html:29 -#: netbox/virtualization/tables/virtualmachines.py:198 +#: templates/core/datafile.html:42 templates/ipam/iprange.html:25 +#: templates/virtualization/virtualdisk.html:29 +#: virtualization/tables/virtualmachines.py:198 msgid "Size" msgstr "Taille" -#: netbox/templates/core/datafile.html:43 +#: templates/core/datafile.html:43 msgid "bytes" msgstr "octets" -#: netbox/templates/core/datafile.html:46 +#: templates/core/datafile.html:46 msgid "SHA256 Hash" msgstr "Hachage SHA256" -#: netbox/templates/core/datasource.html:14 -#: netbox/templates/core/datasource.html:20 -#: netbox/utilities/templates/buttons/sync.html:5 +#: templates/core/datasource.html:14 templates/core/datasource.html:20 +#: utilities/templates/buttons/sync.html:5 msgid "Sync" msgstr "Synchroniser" -#: netbox/templates/core/datasource.html:50 +#: templates/core/datasource.html:50 msgid "Last synced" msgstr "Dernière synchronisation" -#: netbox/templates/core/datasource.html:84 +#: templates/core/datasource.html:84 msgid "Backend" msgstr "Backend" -#: netbox/templates/core/datasource.html:99 +#: templates/core/datasource.html:99 msgid "No parameters defined" msgstr "Aucun paramètre défini" -#: netbox/templates/core/datasource.html:114 +#: templates/core/datasource.html:114 msgid "Files" msgstr "Dossiers" -#: netbox/templates/core/inc/config_data.html:7 +#: templates/core/inc/config_data.html:7 msgid "Rack elevations" msgstr "Élévations des rayonnages" -#: netbox/templates/core/inc/config_data.html:10 +#: templates/core/inc/config_data.html:10 msgid "Default unit height" msgstr "Hauteur de l'unité par défaut" -#: netbox/templates/core/inc/config_data.html:14 +#: templates/core/inc/config_data.html:14 msgid "Default unit width" msgstr "Largeur de l'unité par défaut" -#: netbox/templates/core/inc/config_data.html:20 +#: templates/core/inc/config_data.html:20 msgid "Power feeds" msgstr "Alimentations" -#: netbox/templates/core/inc/config_data.html:23 +#: templates/core/inc/config_data.html:23 msgid "Default voltage" msgstr "Tension par défaut" -#: netbox/templates/core/inc/config_data.html:27 +#: templates/core/inc/config_data.html:27 msgid "Default amperage" msgstr "Ampérage par défaut" -#: netbox/templates/core/inc/config_data.html:31 +#: templates/core/inc/config_data.html:31 msgid "Default max utilization" msgstr "Utilisation maximale par défaut" -#: netbox/templates/core/inc/config_data.html:40 +#: templates/core/inc/config_data.html:40 msgid "Enforce global unique" msgstr "Appliquez une approche unique au monde" -#: netbox/templates/core/inc/config_data.html:83 +#: templates/core/inc/config_data.html:83 msgid "Paginate count" msgstr "Nombre de pages" -#: netbox/templates/core/inc/config_data.html:87 +#: templates/core/inc/config_data.html:87 msgid "Max page size" msgstr "Taille de page maximale" -#: netbox/templates/core/inc/config_data.html:114 +#: templates/core/inc/config_data.html:114 msgid "User preferences" msgstr "Préférences de l'utilisateur" -#: netbox/templates/core/inc/config_data.html:141 +#: templates/core/inc/config_data.html:141 msgid "Job retention" msgstr "Maintien de l'emploi" -#: netbox/templates/core/job.html:35 netbox/templates/core/rq_task.html:12 -#: netbox/templates/core/rq_task.html:49 netbox/templates/core/rq_task.html:58 +#: templates/core/job.html:35 templates/core/rq_task.html:12 +#: templates/core/rq_task.html:49 templates/core/rq_task.html:58 msgid "Job" msgstr "Emploi" -#: netbox/templates/core/job.html:58 -#: netbox/templates/extras/journalentry.html:26 +#: templates/core/job.html:58 templates/extras/journalentry.html:26 msgid "Created By" msgstr "Créé par" -#: netbox/templates/core/job.html:66 +#: templates/core/job.html:66 msgid "Scheduling" msgstr "Planification" -#: netbox/templates/core/job.html:77 +#: templates/core/job.html:77 #, python-format msgid "every %(interval)s minutes" msgstr "chaque %(interval)s minutes" -#: netbox/templates/core/objectchange.html:29 -#: netbox/templates/users/objectpermission.html:42 +#: templates/core/objectchange.html:29 +#: templates/users/objectpermission.html:42 msgid "Change" msgstr "Changer" -#: netbox/templates/core/objectchange.html:79 +#: templates/core/objectchange.html:79 msgid "Difference" msgstr "Différence" -#: netbox/templates/core/objectchange.html:82 +#: templates/core/objectchange.html:82 msgid "Previous" msgstr "Précédent" -#: netbox/templates/core/objectchange.html:85 +#: templates/core/objectchange.html:85 msgid "Next" msgstr "Suivant" -#: netbox/templates/core/objectchange.html:93 +#: templates/core/objectchange.html:93 msgid "Object Created" msgstr "Objet créé" -#: netbox/templates/core/objectchange.html:95 +#: templates/core/objectchange.html:95 msgid "Object Deleted" msgstr "Objet supprimé" -#: netbox/templates/core/objectchange.html:97 +#: templates/core/objectchange.html:97 msgid "No Changes" msgstr "Aucune modification" -#: netbox/templates/core/objectchange.html:111 +#: templates/core/objectchange.html:111 msgid "Pre-Change Data" msgstr "Données avant modification" -#: netbox/templates/core/objectchange.html:122 +#: templates/core/objectchange.html:122 msgid "Warning: Comparing non-atomic change to previous change record" msgstr "" "Attention : modification non-atomique vis à vis de la modification " "précédente" -#: netbox/templates/core/objectchange.html:131 +#: templates/core/objectchange.html:131 msgid "Post-Change Data" msgstr "Données après modification" -#: netbox/templates/core/objectchange.html:162 +#: templates/core/objectchange.html:162 #, python-format msgid "See All %(count)s Changes" msgstr "Voir toutes les %(count)s modifications" -#: netbox/templates/core/objectchange_list.html:9 -#: netbox/templates/extras/object_changelog.html:15 +#: templates/core/objectchange_list.html:9 +#: templates/extras/object_changelog.html:15 msgid "Change log retention" msgstr "Modifier la durée de conservation des logs" -#: netbox/templates/core/objectchange_list.html:9 -#: netbox/templates/extras/object_changelog.html:15 +#: templates/core/objectchange_list.html:9 +#: templates/extras/object_changelog.html:15 msgid "days" msgstr "jours" -#: netbox/templates/core/objectchange_list.html:9 -#: netbox/templates/extras/object_changelog.html:15 +#: templates/core/objectchange_list.html:9 +#: templates/extras/object_changelog.html:15 msgid "Indefinite" msgstr "Indéfini" -#: netbox/templates/core/plugin.html:21 +#: templates/core/plugin.html:22 msgid "Not installed" msgstr "Non installé" -#: netbox/templates/core/plugin.html:32 +#: templates/core/plugin.html:33 msgid "Overview" msgstr "Vue d'ensemble" -#: netbox/templates/core/plugin.html:38 +#: templates/core/plugin.html:39 msgid "Install" msgstr "Installer" -#: netbox/templates/core/plugin.html:50 +#: templates/core/plugin.html:51 msgid "Plugin Details" msgstr "Détails du plugin" -#: netbox/templates/core/plugin.html:57 +#: templates/core/plugin.html:58 msgid "Summary" msgstr "Résumé" -#: netbox/templates/core/plugin.html:75 +#: templates/core/plugin.html:76 msgid "License" msgstr "Licence" -#: netbox/templates/core/plugin.html:95 +#: templates/core/plugin.html:96 msgid "Version History" msgstr "Historique des versions" -#: netbox/templates/core/plugin.html:106 +#: templates/core/plugin.html:107 msgid "Local Installation Instructions" msgstr "Instructions d'installation locales" -#: netbox/templates/core/rq_queue_list.html:5 -#: netbox/templates/core/rq_queue_list.html:13 -#: netbox/templates/core/rq_task_list.html:14 -#: netbox/templates/core/rq_worker.html:7 +#: templates/core/rq_queue_list.html:5 templates/core/rq_queue_list.html:13 +#: templates/core/rq_task_list.html:14 templates/core/rq_worker.html:7 msgid "Background Queues" msgstr "Files d'attente en arrière-plan" -#: netbox/templates/core/rq_queue_list.html:24 -#: netbox/templates/core/rq_queue_list.html:25 -#: netbox/templates/core/rq_worker_list.html:49 -#: netbox/templates/core/rq_worker_list.html:50 -#: netbox/templates/extras/script_result.html:67 -#: netbox/templates/extras/script_result.html:69 -#: netbox/templates/inc/table_controls_htmx.html:30 -#: netbox/templates/inc/table_controls_htmx.html:33 +#: templates/core/rq_queue_list.html:24 templates/core/rq_queue_list.html:25 +#: templates/core/rq_worker_list.html:49 templates/core/rq_worker_list.html:50 +#: templates/extras/script_result.html:67 +#: templates/extras/script_result.html:69 +#: templates/inc/table_controls_htmx.html:30 +#: templates/inc/table_controls_htmx.html:33 msgid "Configure Table" msgstr "Configurer le tableau" -#: netbox/templates/core/rq_task.html:29 +#: templates/core/rq_task.html:29 msgid "Stop" msgstr "Arrête" -#: netbox/templates/core/rq_task.html:34 +#: templates/core/rq_task.html:34 msgid "Requeue" msgstr "File d'attente" -#: netbox/templates/core/rq_task.html:39 +#: templates/core/rq_task.html:39 msgid "Enqueue" msgstr "File d'attente" -#: netbox/templates/core/rq_task.html:61 +#: templates/core/rq_task.html:61 msgid "Queue" msgstr "File d'attente" -#: netbox/templates/core/rq_task.html:65 +#: templates/core/rq_task.html:65 msgid "Timeout" msgstr "Délai d'attente" -#: netbox/templates/core/rq_task.html:69 +#: templates/core/rq_task.html:69 msgid "Result TTL" msgstr "Résultat TTL" -#: netbox/templates/core/rq_task.html:89 +#: templates/core/rq_task.html:89 msgid "Meta" msgstr "Méta" -#: netbox/templates/core/rq_task.html:93 +#: templates/core/rq_task.html:93 msgid "Arguments" msgstr "Arguments" -#: netbox/templates/core/rq_task.html:97 +#: templates/core/rq_task.html:97 msgid "Keyword Arguments" msgstr "Arguments relatifs aux" -#: netbox/templates/core/rq_task.html:103 +#: templates/core/rq_task.html:103 msgid "Depends on" msgstr "Cela dépend de" -#: netbox/templates/core/rq_task.html:109 +#: templates/core/rq_task.html:109 msgid "Exception" msgstr "Exception" -#: netbox/templates/core/rq_task_list.html:28 +#: templates/core/rq_task_list.html:28 msgid "tasks in " msgstr "tâches dans " -#: netbox/templates/core/rq_task_list.html:33 +#: templates/core/rq_task_list.html:33 msgid "Queued Jobs" msgstr "Jobs en file d'attente" -#: netbox/templates/core/rq_task_list.html:64 -#: netbox/templates/extras/script_result.html:86 +#: templates/core/rq_task_list.html:64 templates/extras/script_result.html:86 #, python-format msgid "" "Select all %(count)s %(object_type_plural)s matching query" @@ -12369,398 +11693,383 @@ msgstr "" "Sélectionnez tous %(count)s %(object_type_plural)s requête " "correspondante" -#: netbox/templates/core/rq_worker.html:10 +#: templates/core/rq_worker.html:10 msgid "Worker Info" msgstr "Informations sur les travailleurs" -#: netbox/templates/core/rq_worker.html:31 -#: netbox/templates/core/rq_worker.html:40 +#: templates/core/rq_worker.html:31 templates/core/rq_worker.html:40 msgid "Worker" msgstr "Travailleur" -#: netbox/templates/core/rq_worker.html:55 +#: templates/core/rq_worker.html:55 msgid "Queues" msgstr "Files d'attente" -#: netbox/templates/core/rq_worker.html:63 +#: templates/core/rq_worker.html:63 msgid "Curent Job" msgstr "Emplois actuels" -#: netbox/templates/core/rq_worker.html:67 +#: templates/core/rq_worker.html:67 msgid "Successful job count" msgstr "Nombre d'emplois réussis" -#: netbox/templates/core/rq_worker.html:71 +#: templates/core/rq_worker.html:71 msgid "Failed job count" msgstr "Nombre de tâches échouées" -#: netbox/templates/core/rq_worker.html:75 +#: templates/core/rq_worker.html:75 msgid "Total working time" msgstr "Temps de travail total" -#: netbox/templates/core/rq_worker.html:76 +#: templates/core/rq_worker.html:76 msgid "seconds" msgstr "secondes" -#: netbox/templates/core/rq_worker_list.html:13 -#: netbox/templates/core/rq_worker_list.html:21 +#: templates/core/rq_worker_list.html:13 templates/core/rq_worker_list.html:21 msgid "Background Workers" msgstr "Travailleurs de fond" -#: netbox/templates/core/rq_worker_list.html:29 +#: templates/core/rq_worker_list.html:29 #, python-format msgid "Workers in %(queue_name)s" msgstr "Travailleurs en %(queue_name)s" -#: netbox/templates/core/system.html:11 -#: netbox/utilities/templates/buttons/export.html:4 +#: templates/core/system.html:11 utilities/templates/buttons/export.html:4 msgid "Export" msgstr "Exporter" -#: netbox/templates/core/system.html:28 +#: templates/core/system.html:28 msgid "System Status" msgstr "État du système" -#: netbox/templates/core/system.html:31 +#: templates/core/system.html:31 msgid "NetBox release" msgstr "Version de NetBox" -#: netbox/templates/core/system.html:44 +#: templates/core/system.html:44 msgid "Django version" msgstr "Version de Django" -#: netbox/templates/core/system.html:48 +#: templates/core/system.html:48 msgid "PostgreSQL version" msgstr "Version de PostgreSQL" -#: netbox/templates/core/system.html:52 +#: templates/core/system.html:52 msgid "Database name" msgstr "Nom de base de données" -#: netbox/templates/core/system.html:56 +#: templates/core/system.html:56 msgid "Database size" msgstr "Taille de base de données" -#: netbox/templates/core/system.html:61 +#: templates/core/system.html:61 msgid "Unavailable" msgstr "Non disponible" -#: netbox/templates/core/system.html:66 +#: templates/core/system.html:66 msgid "RQ workers" msgstr "Travailleurs de RQ" -#: netbox/templates/core/system.html:69 +#: templates/core/system.html:69 msgid "default queue" msgstr "file d'attente par défaut" -#: netbox/templates/core/system.html:73 +#: templates/core/system.html:73 msgid "System time" msgstr "Heure du système" -#: netbox/templates/core/system.html:85 +#: templates/core/system.html:85 msgid "Current Configuration" msgstr "Configuration actuelle" -#: netbox/templates/dcim/bulk_disconnect.html:9 +#: templates/dcim/bulk_disconnect.html:9 #, python-format msgid "" "Are you sure you want to disconnect these %(count)s %(obj_type_plural)s?" msgstr "" "Êtes-vous sûr de vouloir les déconnecter %(count)s %(obj_type_plural)s?" -#: netbox/templates/dcim/cable_trace.html:10 +#: templates/dcim/cable_trace.html:10 #, python-format msgid "Cable Trace for %(object_type)s %(object)s" msgstr "Cable Trace pour %(object_type)s %(object)s" -#: netbox/templates/dcim/cable_trace.html:24 -#: netbox/templates/dcim/inc/rack_elevation.html:7 +#: templates/dcim/cable_trace.html:24 templates/dcim/inc/rack_elevation.html:7 msgid "Download SVG" msgstr "Télécharger SVG" -#: netbox/templates/dcim/cable_trace.html:30 +#: templates/dcim/cable_trace.html:30 msgid "Asymmetric Path" msgstr "Trajectoire asymétrique" -#: netbox/templates/dcim/cable_trace.html:31 +#: templates/dcim/cable_trace.html:31 msgid "The nodes below have no links and result in an asymmetric path" msgstr "" "Les nœuds ci-dessous n'ont aucun lien et génèrent un chemin asymétrique" -#: netbox/templates/dcim/cable_trace.html:38 +#: templates/dcim/cable_trace.html:38 msgid "Path split" msgstr "Parcours divisé" -#: netbox/templates/dcim/cable_trace.html:39 +#: templates/dcim/cable_trace.html:39 msgid "Select a node below to continue" msgstr "Sélectionnez un nœud ci-dessous pour continuer" -#: netbox/templates/dcim/cable_trace.html:55 +#: templates/dcim/cable_trace.html:55 msgid "Trace Completed" msgstr "Trace terminée" -#: netbox/templates/dcim/cable_trace.html:58 +#: templates/dcim/cable_trace.html:58 msgid "Total segments" msgstr "Nombre total de segments" -#: netbox/templates/dcim/cable_trace.html:62 +#: templates/dcim/cable_trace.html:62 msgid "Total length" msgstr "Longueur totale" -#: netbox/templates/dcim/cable_trace.html:77 +#: templates/dcim/cable_trace.html:77 msgid "No paths found" msgstr "Aucun chemin trouvé" -#: netbox/templates/dcim/cable_trace.html:85 +#: templates/dcim/cable_trace.html:85 msgid "Related Paths" msgstr "Chemins associés" -#: netbox/templates/dcim/cable_trace.html:89 +#: templates/dcim/cable_trace.html:89 msgid "Origin" msgstr "Origine" -#: netbox/templates/dcim/cable_trace.html:90 +#: templates/dcim/cable_trace.html:90 msgid "Destination" msgstr "Destination" -#: netbox/templates/dcim/cable_trace.html:91 +#: templates/dcim/cable_trace.html:91 msgid "Segments" msgstr "Segments" -#: netbox/templates/dcim/cable_trace.html:104 +#: templates/dcim/cable_trace.html:104 msgid "Incomplete" msgstr "Incomplet" -#: netbox/templates/dcim/component_list.html:14 +#: templates/dcim/component_list.html:14 msgid "Rename Selected" msgstr "Renommer la sélection" -#: netbox/templates/dcim/consoleport.html:65 -#: netbox/templates/dcim/consoleserverport.html:66 -#: netbox/templates/dcim/frontport.html:98 -#: netbox/templates/dcim/interface.html:176 -#: netbox/templates/dcim/poweroutlet.html:69 -#: netbox/templates/dcim/powerport.html:69 +#: templates/dcim/consoleport.html:65 templates/dcim/consoleserverport.html:66 +#: templates/dcim/frontport.html:98 templates/dcim/interface.html:176 +#: templates/dcim/poweroutlet.html:69 templates/dcim/powerport.html:69 msgid "Not Connected" msgstr "Non connecté" -#: netbox/templates/dcim/device.html:34 +#: templates/dcim/device.html:34 msgid "Highlight device in rack" msgstr "Surligner l'appareil dans le rack" -#: netbox/templates/dcim/device.html:55 +#: templates/dcim/device.html:55 msgid "Not racked" msgstr "Pas mis en baie" -#: netbox/templates/dcim/device.html:62 netbox/templates/dcim/site.html:94 +#: templates/dcim/device.html:62 templates/dcim/site.html:94 msgid "GPS Coordinates" msgstr "Coordonnées GPS" -#: netbox/templates/dcim/device.html:68 netbox/templates/dcim/site.html:81 -#: netbox/templates/dcim/site.html:100 +#: templates/dcim/device.html:68 templates/dcim/site.html:81 +#: templates/dcim/site.html:100 msgid "Map" msgstr "Carte" -#: netbox/templates/dcim/device.html:108 -#: netbox/templates/dcim/inventoryitem.html:56 -#: netbox/templates/dcim/module.html:81 -#: netbox/templates/dcim/modulebay.html:74 netbox/templates/dcim/rack.html:61 +#: templates/dcim/device.html:108 templates/dcim/inventoryitem.html:56 +#: templates/dcim/module.html:81 templates/dcim/modulebay.html:74 +#: templates/dcim/rack.html:61 msgid "Asset Tag" msgstr "Étiquette d'actif" -#: netbox/templates/dcim/device.html:123 +#: templates/dcim/device.html:123 msgid "View Virtual Chassis" msgstr "Afficher le châssis virtuel" -#: netbox/templates/dcim/device.html:164 +#: templates/dcim/device.html:164 msgid "Create VDC" msgstr "Créer un VDC" -#: netbox/templates/dcim/device.html:175 -#: netbox/templates/dcim/device_edit.html:64 -#: netbox/virtualization/forms/model_forms.py:223 +#: templates/dcim/device.html:175 templates/dcim/device_edit.html:64 +#: virtualization/forms/model_forms.py:223 msgid "Management" msgstr "Gestion" -#: netbox/templates/dcim/device.html:195 netbox/templates/dcim/device.html:211 -#: netbox/templates/dcim/device.html:227 -#: netbox/templates/virtualization/virtualmachine.html:57 -#: netbox/templates/virtualization/virtualmachine.html:73 +#: templates/dcim/device.html:195 templates/dcim/device.html:211 +#: templates/dcim/device.html:227 +#: templates/virtualization/virtualmachine.html:57 +#: templates/virtualization/virtualmachine.html:73 msgid "NAT for" msgstr "NAT pour" -#: netbox/templates/dcim/device.html:197 netbox/templates/dcim/device.html:213 -#: netbox/templates/dcim/device.html:229 -#: netbox/templates/virtualization/virtualmachine.html:59 -#: netbox/templates/virtualization/virtualmachine.html:75 +#: templates/dcim/device.html:197 templates/dcim/device.html:213 +#: templates/dcim/device.html:229 +#: templates/virtualization/virtualmachine.html:59 +#: templates/virtualization/virtualmachine.html:75 msgid "NAT" msgstr "NAT" -#: netbox/templates/dcim/device.html:252 netbox/templates/dcim/rack.html:73 +#: templates/dcim/device.html:252 templates/dcim/rack.html:73 msgid "Power Utilization" msgstr "Utilisation de l'énergie" -#: netbox/templates/dcim/device.html:256 +#: templates/dcim/device.html:256 msgid "Input" msgstr "Entrée" -#: netbox/templates/dcim/device.html:257 +#: templates/dcim/device.html:257 msgid "Outlets" msgstr "Prises" -#: netbox/templates/dcim/device.html:258 +#: templates/dcim/device.html:258 msgid "Allocated" msgstr "Alloué" -#: netbox/templates/dcim/device.html:268 netbox/templates/dcim/device.html:270 -#: netbox/templates/dcim/device.html:286 -#: netbox/templates/dcim/powerfeed.html:67 +#: templates/dcim/device.html:268 templates/dcim/device.html:270 +#: templates/dcim/device.html:286 templates/dcim/powerfeed.html:67 msgid "VA" msgstr "VA" -#: netbox/templates/dcim/device.html:280 +#: templates/dcim/device.html:280 msgctxt "Leg of a power feed" msgid "Leg" msgstr "Jambe" -#: netbox/templates/dcim/device.html:306 -#: netbox/templates/virtualization/virtualmachine.html:158 +#: templates/dcim/device.html:306 +#: templates/virtualization/virtualmachine.html:158 msgid "Add a service" msgstr "Ajouter un service" -#: netbox/templates/dcim/device/base.html:21 -#: netbox/templates/dcim/device_list.html:9 -#: netbox/templates/dcim/devicetype/base.html:18 -#: netbox/templates/dcim/module.html:18 -#: netbox/templates/dcim/moduletype/base.html:18 -#: netbox/templates/virtualization/virtualmachine/base.html:22 -#: netbox/templates/virtualization/virtualmachine_list.html:8 +#: templates/dcim/device/base.html:21 templates/dcim/device_list.html:9 +#: templates/dcim/devicetype/base.html:18 +#: templates/dcim/inc/moduletype_buttons.html:9 templates/dcim/module.html:18 +#: templates/virtualization/virtualmachine/base.html:22 +#: templates/virtualization/virtualmachine_list.html:8 msgid "Add Components" msgstr "Ajouter des composants" -#: netbox/templates/dcim/device/consoleports.html:24 +#: templates/dcim/device/consoleports.html:24 msgid "Add Console Ports" msgstr "Ajouter des ports de console" -#: netbox/templates/dcim/device/consoleserverports.html:24 +#: templates/dcim/device/consoleserverports.html:24 msgid "Add Console Server Ports" msgstr "Ajouter des ports au serveur de consoles" -#: netbox/templates/dcim/device/devicebays.html:10 +#: templates/dcim/device/devicebays.html:10 msgid "Add Device Bays" msgstr "Ajouter des baies pour appareils" -#: netbox/templates/dcim/device/frontports.html:24 +#: templates/dcim/device/frontports.html:24 msgid "Add Front Ports" msgstr "Ajouter des ports frontaux" -#: netbox/templates/dcim/device/inc/interface_table_controls.html:9 +#: templates/dcim/device/inc/interface_table_controls.html:9 msgid "Hide Enabled" msgstr "Masquer activé" -#: netbox/templates/dcim/device/inc/interface_table_controls.html:10 +#: templates/dcim/device/inc/interface_table_controls.html:10 msgid "Hide Disabled" msgstr "Masquer les désactivés" -#: netbox/templates/dcim/device/inc/interface_table_controls.html:11 +#: templates/dcim/device/inc/interface_table_controls.html:11 msgid "Hide Virtual" msgstr "Masquer le virtuel" -#: netbox/templates/dcim/device/inc/interface_table_controls.html:12 +#: templates/dcim/device/inc/interface_table_controls.html:12 msgid "Hide Disconnected" msgstr "Masquer les déconnectés" -#: netbox/templates/dcim/device/interfaces.html:27 +#: templates/dcim/device/interfaces.html:27 msgid "Add Interfaces" msgstr "Ajouter des interfaces" -#: netbox/templates/dcim/device/inventory.html:10 -#: netbox/templates/dcim/inc/panels/inventory_items.html:10 +#: templates/dcim/device/inventory.html:10 +#: templates/dcim/inc/panels/inventory_items.html:10 msgid "Add Inventory Item" msgstr "Ajouter un article d'inventaire" -#: netbox/templates/dcim/device/modulebays.html:10 +#: templates/dcim/device/modulebays.html:10 msgid "Add Module Bays" msgstr "Ajouter des baies de modules" -#: netbox/templates/dcim/device/poweroutlets.html:24 +#: templates/dcim/device/poweroutlets.html:24 msgid "Add Power Outlets" msgstr "Ajouter des prises de courant" -#: netbox/templates/dcim/device/powerports.html:24 +#: templates/dcim/device/powerports.html:24 msgid "Add Power Port" msgstr "Ajouter un port d'alimentation" -#: netbox/templates/dcim/device/rearports.html:24 +#: templates/dcim/device/rearports.html:24 msgid "Add Rear Ports" msgstr "Ajouter des ports arrière" -#: netbox/templates/dcim/device/render_config.html:5 -#: netbox/templates/virtualization/virtualmachine/render_config.html:5 +#: templates/dcim/device/render_config.html:5 +#: templates/virtualization/virtualmachine/render_config.html:5 msgid "Config" msgstr "Configuration" -#: netbox/templates/dcim/device/render_config.html:35 -#: netbox/templates/virtualization/virtualmachine/render_config.html:35 +#: templates/dcim/device/render_config.html:35 +#: templates/virtualization/virtualmachine/render_config.html:35 msgid "Context Data" msgstr "Données de contexte" -#: netbox/templates/dcim/device/render_config.html:53 -#: netbox/templates/virtualization/virtualmachine/render_config.html:53 +#: templates/dcim/device/render_config.html:53 +#: templates/virtualization/virtualmachine/render_config.html:53 msgid "Rendered Config" msgstr "Configuration rendue" -#: netbox/templates/dcim/device/render_config.html:55 -#: netbox/templates/virtualization/virtualmachine/render_config.html:55 +#: templates/dcim/device/render_config.html:55 +#: templates/virtualization/virtualmachine/render_config.html:55 msgid "Download" msgstr "Télécharger" -#: netbox/templates/dcim/device/render_config.html:61 -#: netbox/templates/virtualization/virtualmachine/render_config.html:61 +#: templates/dcim/device/render_config.html:61 +#: templates/virtualization/virtualmachine/render_config.html:61 msgid "No configuration template found" msgstr "Aucun modèle de configuration trouvé" -#: netbox/templates/dcim/device_edit.html:44 +#: templates/dcim/device_edit.html:44 msgid "Parent Bay" msgstr "Baie Parent" -#: netbox/templates/dcim/device_edit.html:48 -#: netbox/utilities/templates/form_helpers/render_field.html:22 +#: templates/dcim/device_edit.html:48 +#: utilities/templates/form_helpers/render_field.html:22 msgid "Regenerate Slug" msgstr "Régénérez le slug" -#: netbox/templates/dcim/device_edit.html:49 -#: netbox/templates/generic/bulk_remove.html:21 -#: netbox/utilities/templates/helpers/table_config_form.html:23 +#: templates/dcim/device_edit.html:49 templates/generic/bulk_remove.html:21 +#: utilities/templates/helpers/table_config_form.html:23 msgid "Remove" msgstr "Supprimer" -#: netbox/templates/dcim/device_edit.html:110 +#: templates/dcim/device_edit.html:110 msgid "Local Config Context Data" msgstr "Données contextuelles de configuration locales" -#: netbox/templates/dcim/device_list.html:82 -#: netbox/templates/dcim/moduletype/component_templates.html:17 -#: netbox/templates/generic/bulk_rename.html:57 -#: netbox/templates/virtualization/virtualmachine/interfaces.html:11 -#: netbox/templates/virtualization/virtualmachine/virtual_disks.html:11 +#: templates/dcim/device_list.html:82 templates/generic/bulk_rename.html:57 +#: templates/virtualization/virtualmachine/interfaces.html:11 +#: templates/virtualization/virtualmachine/virtual_disks.html:11 msgid "Rename" msgstr "Renommer" -#: netbox/templates/dcim/devicebay.html:17 +#: templates/dcim/devicebay.html:17 msgid "Device Bay" msgstr "Baie pour appareils" -#: netbox/templates/dcim/devicebay.html:43 +#: templates/dcim/devicebay.html:43 msgid "Installed Device" msgstr "Appareil installé" -#: netbox/templates/dcim/devicebay_depopulate.html:6 +#: templates/dcim/devicebay_depopulate.html:6 #, python-format msgid "Remove %(device)s from %(device_bay)s?" msgstr "Supprimer %(device)s de %(device_bay)s?" -#: netbox/templates/dcim/devicebay_depopulate.html:13 +#: templates/dcim/devicebay_depopulate.html:13 #, python-format msgid "" "Are you sure you want to remove %(device)s from " @@ -12769,449 +12078,430 @@ msgstr "" "Êtes-vous sûr de vouloir supprimer %(device)s de " "%(device_bay)s?" -#: netbox/templates/dcim/devicebay_populate.html:13 +#: templates/dcim/devicebay_populate.html:13 msgid "Populate" msgstr "Peupler" -#: netbox/templates/dcim/devicebay_populate.html:22 +#: templates/dcim/devicebay_populate.html:22 msgid "Bay" msgstr "Baie" -#: netbox/templates/dcim/devicerole.html:14 -#: netbox/templates/dcim/platform.html:17 +#: templates/dcim/devicerole.html:14 templates/dcim/platform.html:17 msgid "Add Device" msgstr "Ajouter un appareil" -#: netbox/templates/dcim/devicerole.html:40 +#: templates/dcim/devicerole.html:40 msgid "VM Role" msgstr "Rôle de la machine virtuelle" -#: netbox/templates/dcim/devicetype.html:18 -#: netbox/templates/dcim/moduletype.html:18 +#: templates/dcim/devicetype.html:18 templates/dcim/moduletype.html:29 msgid "Model Name" msgstr "Nom du modèle" -#: netbox/templates/dcim/devicetype.html:25 -#: netbox/templates/dcim/moduletype.html:22 +#: templates/dcim/devicetype.html:25 templates/dcim/moduletype.html:33 msgid "Part Number" msgstr "Numéro de pièce" -#: netbox/templates/dcim/devicetype.html:41 +#: templates/dcim/devicetype.html:41 msgid "Exclude From Utilization" msgstr "Exclure de l'utilisation" -#: netbox/templates/dcim/devicetype.html:59 +#: templates/dcim/devicetype.html:59 msgid "Parent/Child" msgstr "Parent/Enfant" -#: netbox/templates/dcim/devicetype.html:71 +#: templates/dcim/devicetype.html:71 msgid "Front Image" msgstr "Image avant" -#: netbox/templates/dcim/devicetype.html:83 +#: templates/dcim/devicetype.html:83 msgid "Rear Image" msgstr "Image arrière" -#: netbox/templates/dcim/frontport.html:54 +#: templates/dcim/frontport.html:54 msgid "Rear Port Position" msgstr "Position du port arrière" -#: netbox/templates/dcim/frontport.html:72 -#: netbox/templates/dcim/interface.html:144 -#: netbox/templates/dcim/poweroutlet.html:63 -#: netbox/templates/dcim/powerport.html:63 -#: netbox/templates/dcim/rearport.html:68 +#: templates/dcim/frontport.html:72 templates/dcim/interface.html:144 +#: templates/dcim/poweroutlet.html:63 templates/dcim/powerport.html:63 +#: templates/dcim/rearport.html:68 msgid "Marked as Connected" msgstr "Marqué comme connecté" -#: netbox/templates/dcim/frontport.html:86 -#: netbox/templates/dcim/rearport.html:82 +#: templates/dcim/frontport.html:86 templates/dcim/rearport.html:82 msgid "Connection Status" msgstr "État de la connexion" -#: netbox/templates/dcim/htmx/cable_edit.html:10 +#: templates/dcim/htmx/cable_edit.html:10 msgid "A Side" msgstr "Côté A" -#: netbox/templates/dcim/htmx/cable_edit.html:30 +#: templates/dcim/htmx/cable_edit.html:30 msgid "B Side" msgstr "Côté B" -#: netbox/templates/dcim/inc/cable_termination.html:65 +#: templates/dcim/inc/cable_termination.html:65 msgid "No termination" msgstr "Pas de terminaison" -#: netbox/templates/dcim/inc/cable_toggle_buttons.html:3 +#: templates/dcim/inc/cable_toggle_buttons.html:3 msgid "Mark Planned" msgstr "Marquer comme prévu" -#: netbox/templates/dcim/inc/cable_toggle_buttons.html:6 +#: templates/dcim/inc/cable_toggle_buttons.html:6 msgid "Mark Installed" msgstr "Marquer comme installé" -#: netbox/templates/dcim/inc/connection_endpoints.html:13 +#: templates/dcim/inc/connection_endpoints.html:13 msgid "Path Status" msgstr "État du chemin" -#: netbox/templates/dcim/inc/connection_endpoints.html:18 +#: templates/dcim/inc/connection_endpoints.html:18 msgid "Not Reachable" msgstr "Non joignable" -#: netbox/templates/dcim/inc/connection_endpoints.html:23 +#: templates/dcim/inc/connection_endpoints.html:23 msgid "Path Endpoints" msgstr "Points de terminaison du chemin" -#: netbox/templates/dcim/inc/endpoint_connection.html:8 -#: netbox/templates/dcim/powerfeed.html:120 -#: netbox/templates/dcim/rearport.html:94 +#: templates/dcim/inc/endpoint_connection.html:8 +#: templates/dcim/powerfeed.html:120 templates/dcim/rearport.html:94 msgid "Not connected" msgstr "Non connecté" -#: netbox/templates/dcim/inc/interface_vlans_table.html:6 +#: templates/dcim/inc/interface_vlans_table.html:6 msgid "Untagged" msgstr "Non taggé" -#: netbox/templates/dcim/inc/interface_vlans_table.html:37 +#: templates/dcim/inc/interface_vlans_table.html:37 msgid "No VLANs Assigned" msgstr "Aucun VLAN associé" -#: netbox/templates/dcim/inc/interface_vlans_table.html:44 -#: netbox/templates/ipam/prefix_list.html:16 -#: netbox/templates/ipam/prefix_list.html:33 +#: templates/dcim/inc/interface_vlans_table.html:44 +#: templates/ipam/prefix_list.html:16 templates/ipam/prefix_list.html:33 msgid "Clear" msgstr "Effacer" -#: netbox/templates/dcim/inc/interface_vlans_table.html:47 +#: templates/dcim/inc/interface_vlans_table.html:47 msgid "Clear All" msgstr "Tout effacer" -#: netbox/templates/dcim/inc/panels/racktype_dimensions.html:38 +#: templates/dcim/inc/panels/racktype_dimensions.html:38 msgid "Mounting Depth" msgstr "Profondeur de montage" -#: netbox/templates/dcim/inc/panels/racktype_numbering.html:6 +#: templates/dcim/inc/panels/racktype_numbering.html:6 msgid "Starting Unit" msgstr "U initial" -#: netbox/templates/dcim/inc/panels/racktype_numbering.html:10 +#: templates/dcim/inc/panels/racktype_numbering.html:10 msgid "Descending Units" msgstr "Unités décroissantes" -#: netbox/templates/dcim/inc/rack_elevation.html:3 +#: templates/dcim/inc/rack_elevation.html:3 msgid "Rack elevation" msgstr "Élévation du rack" -#: netbox/templates/dcim/interface.html:17 +#: templates/dcim/interface.html:17 msgid "Add Child Interface" msgstr "Ajouter une interface enfant" -#: netbox/templates/dcim/interface.html:50 +#: templates/dcim/interface.html:50 msgid "Speed/Duplex" msgstr "Vitesse/Duplex" -#: netbox/templates/dcim/interface.html:73 +#: templates/dcim/interface.html:73 msgid "PoE Mode" msgstr "Mode PoE" -#: netbox/templates/dcim/interface.html:77 +#: templates/dcim/interface.html:77 msgid "PoE Type" msgstr "Type de PoE" -#: netbox/templates/dcim/interface.html:81 -#: netbox/templates/virtualization/vminterface.html:63 +#: templates/dcim/interface.html:81 +#: templates/virtualization/vminterface.html:63 msgid "802.1Q Mode" msgstr "Mode 802.1Q" -#: netbox/templates/dcim/interface.html:125 -#: netbox/templates/virtualization/vminterface.html:59 +#: templates/dcim/interface.html:125 +#: templates/virtualization/vminterface.html:59 msgid "MAC Address" msgstr "Adresse MAC" -#: netbox/templates/dcim/interface.html:151 +#: templates/dcim/interface.html:151 msgid "Wireless Link" msgstr "Liaison sans fil" -#: netbox/templates/dcim/interface.html:218 netbox/vpn/choices.py:55 +#: templates/dcim/interface.html:218 vpn/choices.py:55 msgid "Peer" msgstr "Peer" -#: netbox/templates/dcim/interface.html:230 -#: netbox/templates/wireless/inc/wirelesslink_interface.html:26 +#: templates/dcim/interface.html:230 +#: templates/wireless/inc/wirelesslink_interface.html:26 msgid "Channel" msgstr "Canal" -#: netbox/templates/dcim/interface.html:239 -#: netbox/templates/wireless/inc/wirelesslink_interface.html:32 +#: templates/dcim/interface.html:239 +#: templates/wireless/inc/wirelesslink_interface.html:32 msgid "Channel Frequency" msgstr "Fréquence du canal" -#: netbox/templates/dcim/interface.html:242 -#: netbox/templates/dcim/interface.html:250 -#: netbox/templates/dcim/interface.html:261 -#: netbox/templates/dcim/interface.html:269 +#: templates/dcim/interface.html:242 templates/dcim/interface.html:250 +#: templates/dcim/interface.html:261 templates/dcim/interface.html:269 msgid "MHz" msgstr "MHz" -#: netbox/templates/dcim/interface.html:258 -#: netbox/templates/wireless/inc/wirelesslink_interface.html:42 +#: templates/dcim/interface.html:258 +#: templates/wireless/inc/wirelesslink_interface.html:42 msgid "Channel Width" msgstr "Largeur du canal" -#: netbox/templates/dcim/interface.html:285 -#: netbox/templates/wireless/wirelesslan.html:14 -#: netbox/templates/wireless/wirelesslink.html:21 -#: netbox/wireless/forms/bulk_edit.py:60 -#: netbox/wireless/forms/bulk_edit.py:102 -#: netbox/wireless/forms/filtersets.py:40 -#: netbox/wireless/forms/filtersets.py:80 netbox/wireless/models.py:82 -#: netbox/wireless/models.py:156 netbox/wireless/tables/wirelesslan.py:44 +#: templates/dcim/interface.html:285 templates/wireless/wirelesslan.html:14 +#: templates/wireless/wirelesslink.html:21 wireless/forms/bulk_edit.py:60 +#: wireless/forms/bulk_edit.py:102 wireless/forms/filtersets.py:40 +#: wireless/forms/filtersets.py:80 wireless/models.py:82 +#: wireless/models.py:156 wireless/tables/wirelesslan.py:44 msgid "SSID" msgstr "SSID" -#: netbox/templates/dcim/interface.html:305 +#: templates/dcim/interface.html:305 msgid "LAG Members" msgstr "Membres de l'aggrégat (LAG)" -#: netbox/templates/dcim/interface.html:323 +#: templates/dcim/interface.html:323 msgid "No member interfaces" msgstr "Aucune interface membre" -#: netbox/templates/dcim/interface.html:343 -#: netbox/templates/ipam/fhrpgroup.html:73 -#: netbox/templates/ipam/iprange/ip_addresses.html:7 -#: netbox/templates/ipam/prefix/ip_addresses.html:7 -#: netbox/templates/virtualization/vminterface.html:89 +#: templates/dcim/interface.html:343 templates/ipam/fhrpgroup.html:73 +#: templates/ipam/iprange/ip_addresses.html:7 +#: templates/ipam/prefix/ip_addresses.html:7 +#: templates/virtualization/vminterface.html:89 msgid "Add IP Address" msgstr "Ajouter une adresse IP" -#: netbox/templates/dcim/inventoryitem.html:24 +#: templates/dcim/inventoryitem.html:24 msgid "Parent Item" msgstr "Objet parent" -#: netbox/templates/dcim/inventoryitem.html:48 +#: templates/dcim/inventoryitem.html:48 msgid "Part ID" msgstr "Identifiant de la pièce" -#: netbox/templates/dcim/location.html:17 +#: templates/dcim/location.html:17 msgid "Add Child Location" msgstr "Ajouter la localisation de l'enfant" -#: netbox/templates/dcim/location.html:77 +#: templates/dcim/location.html:77 msgid "Child Locations" msgstr "Localisations des enfants" -#: netbox/templates/dcim/location.html:81 netbox/templates/dcim/site.html:131 +#: templates/dcim/location.html:81 templates/dcim/site.html:131 msgid "Add a Location" msgstr "Ajouter un lieu" -#: netbox/templates/dcim/location.html:94 netbox/templates/dcim/site.html:144 +#: templates/dcim/location.html:94 templates/dcim/site.html:144 msgid "Add a Device" msgstr "Ajouter un appareil" -#: netbox/templates/dcim/manufacturer.html:16 +#: templates/dcim/manufacturer.html:16 msgid "Add Device Type" msgstr "Ajouter un type d'appareil" -#: netbox/templates/dcim/manufacturer.html:21 +#: templates/dcim/manufacturer.html:21 msgid "Add Module Type" msgstr "Ajouter un type de module" -#: netbox/templates/dcim/powerfeed.html:53 +#: templates/dcim/powerfeed.html:53 msgid "Connected Device" msgstr "Appareil connecté" -#: netbox/templates/dcim/powerfeed.html:63 +#: templates/dcim/powerfeed.html:63 msgid "Utilization (Allocated" msgstr "Utilisation (allouée)" -#: netbox/templates/dcim/powerfeed.html:80 +#: templates/dcim/powerfeed.html:80 msgid "Electrical Characteristics" msgstr "Caractéristiques électriques" -#: netbox/templates/dcim/powerfeed.html:88 +#: templates/dcim/powerfeed.html:88 msgctxt "Abbreviation for volts" msgid "V" msgstr "V" -#: netbox/templates/dcim/powerfeed.html:92 +#: templates/dcim/powerfeed.html:92 msgctxt "Abbreviation for amperes" msgid "A" msgstr "A" -#: netbox/templates/dcim/poweroutlet.html:48 +#: templates/dcim/poweroutlet.html:48 msgid "Feed Leg" msgstr "Circuit" -#: netbox/templates/dcim/powerpanel.html:72 +#: templates/dcim/powerpanel.html:72 msgid "Add Power Feeds" msgstr "Ajouter des sources d'alimentation" -#: netbox/templates/dcim/powerport.html:44 +#: templates/dcim/powerport.html:44 msgid "Maximum Draw" msgstr "Consommation maximale" -#: netbox/templates/dcim/powerport.html:48 +#: templates/dcim/powerport.html:48 msgid "Allocated Draw" msgstr "Puissance alloué" -#: netbox/templates/dcim/rack.html:69 +#: templates/dcim/rack.html:69 msgid "Space Utilization" msgstr "Espace utilisé" -#: netbox/templates/dcim/rack.html:84 netbox/templates/dcim/racktype.html:44 +#: templates/dcim/rack.html:84 templates/dcim/racktype.html:44 msgid "Rack Weight" msgstr "Poids de la baie" -#: netbox/templates/dcim/rack.html:94 netbox/templates/dcim/racktype.html:54 +#: templates/dcim/rack.html:94 templates/dcim/racktype.html:54 msgid "Maximum Weight" msgstr "Poids maximum" -#: netbox/templates/dcim/rack.html:104 +#: templates/dcim/rack.html:104 msgid "Total Weight" msgstr "Poids total" -#: netbox/templates/dcim/rack.html:125 -#: netbox/templates/dcim/rack_elevation_list.html:15 +#: templates/dcim/rack.html:125 templates/dcim/rack_elevation_list.html:15 msgid "Images and Labels" msgstr "Images et étiquettes" -#: netbox/templates/dcim/rack.html:126 -#: netbox/templates/dcim/rack_elevation_list.html:16 +#: templates/dcim/rack.html:126 templates/dcim/rack_elevation_list.html:16 msgid "Images only" msgstr "Images uniquement" -#: netbox/templates/dcim/rack.html:127 -#: netbox/templates/dcim/rack_elevation_list.html:17 +#: templates/dcim/rack.html:127 templates/dcim/rack_elevation_list.html:17 msgid "Labels only" msgstr "Étiquettes uniquement" -#: netbox/templates/dcim/rack/reservations.html:8 +#: templates/dcim/rack/reservations.html:8 msgid "Add reservation" msgstr "Ajouter une réservation" -#: netbox/templates/dcim/rack_elevation_list.html:12 +#: templates/dcim/rack_elevation_list.html:12 msgid "View List" msgstr "Afficher la liste" -#: netbox/templates/dcim/rack_elevation_list.html:14 +#: templates/dcim/rack_elevation_list.html:14 msgid "Select rack view" msgstr "Sélectionnez la vue du rack" -#: netbox/templates/dcim/rack_elevation_list.html:25 +#: templates/dcim/rack_elevation_list.html:25 msgid "Sort By" msgstr "Trier par" -#: netbox/templates/dcim/rack_elevation_list.html:74 +#: templates/dcim/rack_elevation_list.html:74 msgid "No Racks Found" msgstr "Aucune baie trouvée" -#: netbox/templates/dcim/rack_list.html:8 +#: templates/dcim/rack_list.html:8 msgid "View Elevations" msgstr "Afficher les élévations" -#: netbox/templates/dcim/rackreservation.html:42 +#: templates/dcim/rackreservation.html:42 msgid "Reservation Details" msgstr "Détails de la réservation" -#: netbox/templates/dcim/rackrole.html:10 +#: templates/dcim/rackrole.html:10 msgid "Add Rack" msgstr "Ajouter un baie" -#: netbox/templates/dcim/rearport.html:50 +#: templates/dcim/rearport.html:50 msgid "Positions" msgstr "Positions" -#: netbox/templates/dcim/region.html:17 -#: netbox/templates/dcim/sitegroup.html:17 +#: templates/dcim/region.html:17 templates/dcim/sitegroup.html:17 msgid "Add Site" msgstr "Ajouter un site" -#: netbox/templates/dcim/region.html:55 +#: templates/dcim/region.html:55 msgid "Child Regions" msgstr "Régions enfants" -#: netbox/templates/dcim/region.html:59 +#: templates/dcim/region.html:59 msgid "Add Region" msgstr "Ajouter une région" -#: netbox/templates/dcim/site.html:64 +#: templates/dcim/site.html:64 msgid "Time Zone" msgstr "Fuseau horaire" -#: netbox/templates/dcim/site.html:67 +#: templates/dcim/site.html:67 msgid "UTC" msgstr "UTC (Temps universel coordonné)" -#: netbox/templates/dcim/site.html:68 +#: templates/dcim/site.html:68 msgid "Site time" msgstr "Heure du site" -#: netbox/templates/dcim/site.html:75 +#: templates/dcim/site.html:75 msgid "Physical Address" msgstr "Adresse physique" -#: netbox/templates/dcim/site.html:90 +#: templates/dcim/site.html:90 msgid "Shipping Address" msgstr "Adresse de livraison" -#: netbox/templates/dcim/sitegroup.html:55 -#: netbox/templates/tenancy/contactgroup.html:46 -#: netbox/templates/tenancy/tenantgroup.html:55 -#: netbox/templates/wireless/wirelesslangroup.html:55 +#: templates/dcim/sitegroup.html:55 templates/tenancy/contactgroup.html:46 +#: templates/tenancy/tenantgroup.html:55 +#: templates/wireless/wirelesslangroup.html:55 msgid "Child Groups" msgstr "Groupes enfants" -#: netbox/templates/dcim/sitegroup.html:59 +#: templates/dcim/sitegroup.html:59 msgid "Add Site Group" msgstr "Ajouter un groupe de sites" -#: netbox/templates/dcim/trace/attachment.html:5 -#: netbox/templates/extras/exporttemplate.html:31 +#: templates/dcim/trace/attachment.html:5 +#: templates/extras/exporttemplate.html:31 msgid "Attachment" msgstr "Pièce jointe" -#: netbox/templates/dcim/virtualchassis.html:57 +#: templates/dcim/virtualchassis.html:57 msgid "Add Member" msgstr "Ajouter un membre" -#: netbox/templates/dcim/virtualchassis_add.html:18 +#: templates/dcim/virtualchassis_add.html:18 msgid "Member Devices" msgstr "Appareils membres" -#: netbox/templates/dcim/virtualchassis_add_member.html:10 +#: templates/dcim/virtualchassis_add_member.html:10 #, python-format msgid "Add New Member to Virtual Chassis %(virtual_chassis)s" msgstr "Ajouter un nouveau membre à Virtual Chassis %(virtual_chassis)s" -#: netbox/templates/dcim/virtualchassis_add_member.html:19 +#: templates/dcim/virtualchassis_add_member.html:19 msgid "Add New Member" msgstr "Ajouter un nouveau membre" -#: netbox/templates/dcim/virtualchassis_add_member.html:27 -#: netbox/templates/generic/object_edit.html:78 -#: netbox/templates/users/objectpermission.html:31 -#: netbox/users/forms/filtersets.py:67 netbox/users/forms/model_forms.py:312 +#: templates/dcim/virtualchassis_add_member.html:27 +#: templates/generic/object_edit.html:78 +#: templates/users/objectpermission.html:31 users/forms/filtersets.py:67 +#: users/forms/model_forms.py:312 msgid "Actions" msgstr "Actions" -#: netbox/templates/dcim/virtualchassis_add_member.html:29 +#: templates/dcim/virtualchassis_add_member.html:29 msgid "Save & Add Another" msgstr "Enregistrer et ajouter un autre" -#: netbox/templates/dcim/virtualchassis_edit.html:7 +#: templates/dcim/virtualchassis_edit.html:7 #, python-format msgid "Editing Virtual Chassis %(name)s" msgstr "Édition d'un châssis virtuel %(name)s" -#: netbox/templates/dcim/virtualchassis_edit.html:53 +#: templates/dcim/virtualchassis_edit.html:53 msgid "Rack/Unit" msgstr "Baie/U" -#: netbox/templates/dcim/virtualchassis_remove_member.html:5 +#: templates/dcim/virtualchassis_remove_member.html:5 msgid "Remove Virtual Chassis Member" msgstr "Supprimer un membre du châssis virtuel" -#: netbox/templates/dcim/virtualchassis_remove_member.html:9 +#: templates/dcim/virtualchassis_remove_member.html:9 #, python-format msgid "" "Are you sure you want to remove %(device)s from virtual " @@ -13220,12 +12510,11 @@ msgstr "" "Êtes-vous sûr de vouloir supprimer %(device)s du châssis " "virtuel %(name)s?" -#: netbox/templates/dcim/virtualdevicecontext.html:26 -#: netbox/templates/vpn/l2vpn.html:18 +#: templates/dcim/virtualdevicecontext.html:26 templates/vpn/l2vpn.html:18 msgid "Identifier" msgstr "Identifiant" -#: netbox/templates/exceptions/import_error.html:6 +#: templates/exceptions/import_error.html:6 msgid "" "A module import error occurred during this request. Common causes include " "the following:" @@ -13233,11 +12522,11 @@ msgstr "" "Une erreur d'importation de module s'est produite lors de cette requête. Les" " causes les plus courantes sont les suivantes :" -#: netbox/templates/exceptions/import_error.html:10 +#: templates/exceptions/import_error.html:10 msgid "Missing required packages" msgstr "Paquets requis manquants" -#: netbox/templates/exceptions/import_error.html:11 +#: templates/exceptions/import_error.html:11 msgid "" "This installation of NetBox might be missing one or more required Python " "packages. These packages are listed in requirements.txt and " @@ -13254,11 +12543,11 @@ msgstr "" "Freeze
depuis la console et comparez la sortie à la liste des paquets" " requis." -#: netbox/templates/exceptions/import_error.html:20 +#: templates/exceptions/import_error.html:20 msgid "WSGI service not restarted after upgrade" msgstr "Le service WSGI n'a pas redémarré après la mise à jour" -#: netbox/templates/exceptions/import_error.html:21 +#: templates/exceptions/import_error.html:21 msgid "" "If this installation has recently been upgraded, check that the WSGI service" " (e.g. gunicorn or uWSGI) has been restarted. This ensures that the new code" @@ -13268,7 +12557,7 @@ msgstr "" "WSGI (par exemple gunicorn ou uWSGI) a été redémarré. Cela permet de " "garantir que le nouveau code est en cours d'exécution." -#: netbox/templates/exceptions/permission_error.html:6 +#: templates/exceptions/permission_error.html:6 msgid "" "A file permission error was detected while processing this request. Common " "causes include the following:" @@ -13276,11 +12565,11 @@ msgstr "" "Une erreur d'autorisation de fichier a été détectée lors du traitement de " "cette requête. Les causes les plus courantes sont les suivantes :" -#: netbox/templates/exceptions/permission_error.html:10 +#: templates/exceptions/permission_error.html:10 msgid "Insufficient write permission to the media root" msgstr "Autorisation d'écriture insuffisante pour la racine du média" -#: netbox/templates/exceptions/permission_error.html:11 +#: templates/exceptions/permission_error.html:11 #, python-format msgid "" "The configured media root is %(media_root)s. Ensure that the " @@ -13291,7 +12580,7 @@ msgstr "" "Assurez-vous que l'utilisateur sous lequel NetBox s'exécute a accès en " "écriture à l'ensemble des répertoires de ce chemin." -#: netbox/templates/exceptions/programming_error.html:6 +#: templates/exceptions/programming_error.html:6 msgid "" "A database programming error was detected while processing this request. " "Common causes include the following:" @@ -13299,11 +12588,11 @@ msgstr "" "Une erreur de base de données a été détectée lors du traitement de cette " "requête. Les causes les plus courantes sont les suivantes :" -#: netbox/templates/exceptions/programming_error.html:10 +#: templates/exceptions/programming_error.html:10 msgid "Database migrations missing" msgstr "Migration de base de données manquante" -#: netbox/templates/exceptions/programming_error.html:11 +#: templates/exceptions/programming_error.html:11 msgid "" "When upgrading to a new NetBox release, the upgrade script must be run to " "apply any new database migrations. You can run migrations manually by " @@ -13315,11 +12604,11 @@ msgstr "" "exécutant python3 manage.py migrate à partir de la ligne de " "commande." -#: netbox/templates/exceptions/programming_error.html:18 +#: templates/exceptions/programming_error.html:18 msgid "Unsupported PostgreSQL version" msgstr "Version de PostgreSQL non prise en charge" -#: netbox/templates/exceptions/programming_error.html:19 +#: templates/exceptions/programming_error.html:19 msgid "" "Ensure that PostgreSQL version 12 or later is in use. You can check this by " "connecting to the database using NetBox's credentials and issuing a query " @@ -13330,102 +12619,99 @@ msgstr "" "des identifiants de base de données paramétrés dans NetBox et en exécutant " "la requête SELECT VERSION()." -#: netbox/templates/extras/configcontext.html:45 -#: netbox/templates/extras/configtemplate.html:37 -#: netbox/templates/extras/exporttemplate.html:51 +#: templates/extras/configcontext.html:45 +#: templates/extras/configtemplate.html:37 +#: templates/extras/exporttemplate.html:51 msgid "The data file associated with this object has been deleted" msgstr "Le fichier de données associé à cet objet a été supprimé" -#: netbox/templates/extras/configcontext.html:54 -#: netbox/templates/extras/configtemplate.html:46 -#: netbox/templates/extras/exporttemplate.html:60 +#: templates/extras/configcontext.html:54 +#: templates/extras/configtemplate.html:46 +#: templates/extras/exporttemplate.html:60 msgid "Data Synced" msgstr "Données synchronisées" -#: netbox/templates/extras/configcontext_list.html:7 -#: netbox/templates/extras/configtemplate_list.html:7 -#: netbox/templates/extras/exporttemplate_list.html:7 +#: templates/extras/configcontext_list.html:7 +#: templates/extras/configtemplate_list.html:7 +#: templates/extras/exporttemplate_list.html:7 msgid "Sync Data" msgstr "Synchroniser les données" -#: netbox/templates/extras/configtemplate.html:56 +#: templates/extras/configtemplate.html:56 msgid "Environment Parameters" msgstr "Paramètres de l'environnement" -#: netbox/templates/extras/configtemplate.html:67 -#: netbox/templates/extras/exporttemplate.html:79 +#: templates/extras/configtemplate.html:67 +#: templates/extras/exporttemplate.html:79 msgid "Template" msgstr "Modèle" -#: netbox/templates/extras/customfield.html:30 -#: netbox/templates/extras/customlink.html:21 +#: templates/extras/customfield.html:30 templates/extras/customlink.html:21 msgid "Group Name" msgstr "Nom du groupe" -#: netbox/templates/extras/customfield.html:42 +#: templates/extras/customfield.html:42 msgid "Must be Unique" msgstr "Doit être unique" -#: netbox/templates/extras/customfield.html:46 +#: templates/extras/customfield.html:46 msgid "Cloneable" msgstr "Clonable" -#: netbox/templates/extras/customfield.html:56 +#: templates/extras/customfield.html:56 msgid "Default Value" msgstr "Valeur par défaut" -#: netbox/templates/extras/customfield.html:73 +#: templates/extras/customfield.html:73 msgid "Search Weight" msgstr "Poids de recherche" -#: netbox/templates/extras/customfield.html:83 +#: templates/extras/customfield.html:83 msgid "Filter Logic" msgstr "Logique de recherche du filtre" -#: netbox/templates/extras/customfield.html:87 +#: templates/extras/customfield.html:87 msgid "Display Weight" msgstr "Poids de l'écran" -#: netbox/templates/extras/customfield.html:91 +#: templates/extras/customfield.html:91 msgid "UI Visible" msgstr "Interface utilisateur visible" -#: netbox/templates/extras/customfield.html:95 +#: templates/extras/customfield.html:95 msgid "UI Editable" msgstr "Interface utilisateur modifiable" -#: netbox/templates/extras/customfield.html:115 +#: templates/extras/customfield.html:115 msgid "Validation Rules" msgstr "Règles de validation" -#: netbox/templates/extras/customfield.html:126 +#: templates/extras/customfield.html:126 msgid "Regular Expression" msgstr "Expression rationnelle" -#: netbox/templates/extras/customlink.html:29 +#: templates/extras/customlink.html:29 msgid "Button Class" msgstr "Classe de boutons" -#: netbox/templates/extras/customlink.html:39 -#: netbox/templates/extras/exporttemplate.html:66 -#: netbox/templates/extras/savedfilter.html:39 +#: templates/extras/customlink.html:39 templates/extras/exporttemplate.html:66 +#: templates/extras/savedfilter.html:39 msgid "Assigned Models" msgstr "Modèles associés" -#: netbox/templates/extras/customlink.html:52 +#: templates/extras/customlink.html:52 msgid "Link Text" msgstr "Texte du lien" -#: netbox/templates/extras/customlink.html:58 +#: templates/extras/customlink.html:58 msgid "Link URL" msgstr "URL du lien" -#: netbox/templates/extras/dashboard/reset.html:4 -#: netbox/templates/home.html:66 +#: templates/extras/dashboard/reset.html:4 templates/home.html:66 msgid "Reset Dashboard" msgstr "Réinitialisation du tableau de bord" -#: netbox/templates/extras/dashboard/reset.html:8 +#: templates/extras/dashboard/reset.html:8 msgid "" "This will remove all configured widgets and restore the " "default dashboard configuration." @@ -13433,7 +12719,7 @@ msgstr "" "Cela supprimera tous les widgets configurés et rétablira la" " configuration par défaut du tableau de bord." -#: netbox/templates/extras/dashboard/reset.html:13 +#: templates/extras/dashboard/reset.html:13 msgid "" "This change affects only your dashboard, and will not impact other " "users." @@ -13441,156 +12727,154 @@ msgstr "" "Ce changement concerne uniquement votre tableau de bord, et n'aura " "aucun impact sur les autres utilisateurs." -#: netbox/templates/extras/dashboard/widget.html:21 +#: templates/extras/dashboard/widget.html:21 msgid "widget configuration" msgstr "configuration du widget" -#: netbox/templates/extras/dashboard/widget.html:36 +#: templates/extras/dashboard/widget.html:36 msgid "Close widget" msgstr "Fermer le widget" -#: netbox/templates/extras/dashboard/widget_add.html:7 +#: templates/extras/dashboard/widget_add.html:7 msgid "Add a Widget" msgstr "Ajouter un widget" -#: netbox/templates/extras/dashboard/widgets/bookmarks.html:14 +#: templates/extras/dashboard/widgets/bookmarks.html:14 msgid "No bookmarks have been added yet." msgstr "Aucun favori n'a encore été ajouté." -#: netbox/templates/extras/dashboard/widgets/objectcounts.html:10 +#: templates/extras/dashboard/widgets/objectcounts.html:10 msgid "No permission" msgstr "Aucun droit" -#: netbox/templates/extras/dashboard/widgets/objectlist.html:6 +#: templates/extras/dashboard/widgets/objectlist.html:6 msgid "No permission to view this content" msgstr "Aucun droit de voir ce contenu" -#: netbox/templates/extras/dashboard/widgets/objectlist.html:10 +#: templates/extras/dashboard/widgets/objectlist.html:10 msgid "Unable to load content. Invalid view name" msgstr "Impossible de charger le contenu. Nom de vue invalide" -#: netbox/templates/extras/dashboard/widgets/rssfeed.html:12 +#: templates/extras/dashboard/widgets/rssfeed.html:12 msgid "No content found" msgstr "Aucun contenu trouvé" -#: netbox/templates/extras/dashboard/widgets/rssfeed.html:18 +#: templates/extras/dashboard/widgets/rssfeed.html:18 msgid "There was a problem fetching the RSS feed" msgstr "Un problème s'est produit lors de la récupération du flux RSS" -#: netbox/templates/extras/dashboard/widgets/rssfeed.html:21 +#: templates/extras/dashboard/widgets/rssfeed.html:21 msgid "HTTP" msgstr "HTTP" -#: netbox/templates/extras/eventrule.html:61 +#: templates/extras/eventrule.html:61 msgid "Conditions" msgstr "Les conditions" -#: netbox/templates/extras/exporttemplate.html:23 +#: templates/extras/exporttemplate.html:23 msgid "MIME Type" msgstr "Type MIME" -#: netbox/templates/extras/exporttemplate.html:27 +#: templates/extras/exporttemplate.html:27 msgid "File Extension" msgstr "Extension de fichier" -#: netbox/templates/extras/htmx/script_result.html:10 +#: templates/extras/htmx/script_result.html:10 msgid "Scheduled for" msgstr "Planifié le" -#: netbox/templates/extras/htmx/script_result.html:15 +#: templates/extras/htmx/script_result.html:15 msgid "Duration" msgstr "Durée" -#: netbox/templates/extras/htmx/script_result.html:23 +#: templates/extras/htmx/script_result.html:23 msgid "Test Summary" msgstr "Résumé du test" -#: netbox/templates/extras/htmx/script_result.html:43 +#: templates/extras/htmx/script_result.html:43 msgid "Log" msgstr "Journal" -#: netbox/templates/extras/htmx/script_result.html:56 +#: templates/extras/htmx/script_result.html:56 msgid "Output" msgstr "sortie" -#: netbox/templates/extras/inc/result_pending.html:4 +#: templates/extras/inc/result_pending.html:4 msgid "Loading" msgstr "Chargement" -#: netbox/templates/extras/inc/result_pending.html:6 +#: templates/extras/inc/result_pending.html:6 msgid "Results pending" msgstr "Résultats en attente" -#: netbox/templates/extras/journalentry.html:15 +#: templates/extras/journalentry.html:15 msgid "Journal Entry" msgstr "Entrée de journal" -#: netbox/templates/extras/notificationgroup.html:11 +#: templates/extras/notificationgroup.html:11 msgid "Notification Group" msgstr "Groupe de notifications" -#: netbox/templates/extras/notificationgroup.html:36 -#: netbox/templates/extras/notificationgroup.html:46 -#: netbox/utilities/templates/widgets/clearable_file_input.html:12 +#: templates/extras/notificationgroup.html:36 +#: templates/extras/notificationgroup.html:46 +#: utilities/templates/widgets/clearable_file_input.html:12 msgid "None assigned" msgstr "Aucune assignée" -#: netbox/templates/extras/object_configcontext.html:19 +#: templates/extras/object_configcontext.html:19 msgid "The local config context overwrites all source contexts" msgstr "Le contexte de configuration local remplace tous les contextes source" -#: netbox/templates/extras/object_configcontext.html:25 +#: templates/extras/object_configcontext.html:25 msgid "Source Contexts" msgstr "Contextes sources" -#: netbox/templates/extras/object_journal.html:17 +#: templates/extras/object_journal.html:17 msgid "New Journal Entry" msgstr "Nouvelle entrée de journal" -#: netbox/templates/extras/report/base.html:30 +#: templates/extras/report/base.html:30 msgid "Report" msgstr "Rapport" -#: netbox/templates/extras/script.html:14 +#: templates/extras/script.html:14 msgid "You do not have permission to run scripts" msgstr "Vous n'avez pas le droit d'exécuter des scripts" -#: netbox/templates/extras/script.html:41 -#: netbox/templates/extras/script.html:45 -#: netbox/templates/extras/script_list.html:86 +#: templates/extras/script.html:41 templates/extras/script.html:45 +#: templates/extras/script_list.html:86 msgid "Run Script" msgstr "Exécuter le script" -#: netbox/templates/extras/script.html:51 -#: netbox/templates/extras/script/source.html:10 +#: templates/extras/script.html:51 templates/extras/script/source.html:10 msgid "Error loading script" msgstr "Erreur de chargement du script" -#: netbox/templates/extras/script/jobs.html:16 +#: templates/extras/script/jobs.html:16 msgid "Script no longer exists in the source file." msgstr "Le script n'existe plus dans le fichier source." -#: netbox/templates/extras/script_list.html:46 +#: templates/extras/script_list.html:46 msgid "Last Run" msgstr "Dernière exécution" -#: netbox/templates/extras/script_list.html:61 +#: templates/extras/script_list.html:61 msgid "Script is no longer present in the source file" msgstr "Le script n'est plus présent dans le fichier source" -#: netbox/templates/extras/script_list.html:74 +#: templates/extras/script_list.html:74 msgid "Never" msgstr "Jamais" -#: netbox/templates/extras/script_list.html:84 +#: templates/extras/script_list.html:84 msgid "Run Again" msgstr "Exécutez à nouveau" -#: netbox/templates/extras/script_list.html:138 +#: templates/extras/script_list.html:138 msgid "No Scripts Found" msgstr "Aucun script trouvé" -#: netbox/templates/extras/script_list.html:141 +#: templates/extras/script_list.html:141 #, python-format msgid "" "Get started by creating a script from " @@ -13599,83 +12883,81 @@ msgstr "" "Pour démarrer, créer un script à " "partir d'un fichier ou d'une source de données chargé." -#: netbox/templates/extras/script_result.html:35 -#: netbox/templates/generic/object_list.html:50 -#: netbox/templates/search.html:13 +#: templates/extras/script_result.html:35 +#: templates/generic/object_list.html:50 templates/search.html:13 msgid "Results" msgstr "Résultats" -#: netbox/templates/extras/script_result.html:46 +#: templates/extras/script_result.html:46 msgid "Log threshold" msgstr "Seuil de journalisation" -#: netbox/templates/extras/script_result.html:56 +#: templates/extras/script_result.html:56 msgid "All" msgstr "Tous" -#: netbox/templates/extras/tag.html:32 +#: templates/extras/tag.html:32 msgid "Tagged Items" msgstr "Articles taggés" -#: netbox/templates/extras/tag.html:43 +#: templates/extras/tag.html:43 msgid "Allowed Object Types" msgstr "Types d'objets autorisés" -#: netbox/templates/extras/tag.html:51 +#: templates/extras/tag.html:51 msgid "Any" msgstr "N'importe lequel" -#: netbox/templates/extras/tag.html:57 +#: templates/extras/tag.html:57 msgid "Tagged Item Types" msgstr "Types d'articles taggés" -#: netbox/templates/extras/tag.html:81 +#: templates/extras/tag.html:81 msgid "Tagged Objects" msgstr "Objets taggés" -#: netbox/templates/extras/webhook.html:26 +#: templates/extras/webhook.html:26 msgid "HTTP Method" msgstr "Méthode HTTP" -#: netbox/templates/extras/webhook.html:34 +#: templates/extras/webhook.html:34 msgid "HTTP Content Type" msgstr "Type de contenu HTTP" -#: netbox/templates/extras/webhook.html:47 +#: templates/extras/webhook.html:47 msgid "SSL Verification" msgstr "Vérification SSL" -#: netbox/templates/extras/webhook.html:60 +#: templates/extras/webhook.html:60 msgid "Additional Headers" msgstr "En-têtes supplémentaires" -#: netbox/templates/extras/webhook.html:70 +#: templates/extras/webhook.html:70 msgid "Body Template" msgstr "Modèle du corps du message" -#: netbox/templates/generic/bulk_add_component.html:29 +#: templates/generic/bulk_add_component.html:29 msgid "Bulk Creation" msgstr "Création en masse" -#: netbox/templates/generic/bulk_add_component.html:34 -#: netbox/templates/generic/bulk_delete.html:32 -#: netbox/templates/generic/bulk_edit.html:33 +#: templates/generic/bulk_add_component.html:34 +#: templates/generic/bulk_delete.html:32 templates/generic/bulk_edit.html:33 msgid "Selected Objects" msgstr "Objets sélectionnés" -#: netbox/templates/generic/bulk_add_component.html:58 +#: templates/generic/bulk_add_component.html:58 msgid "to Add" msgstr "à ajouter" -#: netbox/templates/generic/bulk_delete.html:27 +#: templates/generic/bulk_delete.html:27 msgid "Bulk Delete" msgstr "Suppression de masse" -#: netbox/templates/generic/bulk_delete.html:49 +#: templates/generic/bulk_delete.html:49 msgid "Confirm Bulk Deletion" msgstr "Confirmer la suppression de masse" -#: netbox/templates/generic/bulk_delete.html:50 +#: templates/generic/bulk_delete.html:50 #, python-format msgid "" "The following operation will delete %(count)s " @@ -13685,69 +12967,66 @@ msgstr "" "L'opération suivante supprimera %(count)s %(type_plural)s. " "Vérifiez attentivement les objets sélectionnés et confirmez cette action." -#: netbox/templates/generic/bulk_edit.html:21 -#: netbox/templates/generic/object_edit.html:22 +#: templates/generic/bulk_edit.html:21 templates/generic/object_edit.html:22 msgid "Editing" msgstr "Édition" -#: netbox/templates/generic/bulk_edit.html:28 +#: templates/generic/bulk_edit.html:28 msgid "Bulk Edit" msgstr "Modifier en masse" -#: netbox/templates/generic/bulk_edit.html:107 -#: netbox/templates/generic/bulk_rename.html:66 +#: templates/generic/bulk_edit.html:107 templates/generic/bulk_rename.html:66 msgid "Apply" msgstr "Appliquer" -#: netbox/templates/generic/bulk_import.html:19 +#: templates/generic/bulk_import.html:19 msgid "Bulk Import" msgstr "Importation en masse" -#: netbox/templates/generic/bulk_import.html:25 +#: templates/generic/bulk_import.html:25 msgid "Direct Import" msgstr "Importation directe" -#: netbox/templates/generic/bulk_import.html:30 +#: templates/generic/bulk_import.html:30 msgid "Upload File" msgstr "Charger un fichier" -#: netbox/templates/generic/bulk_import.html:58 -#: netbox/templates/generic/bulk_import.html:80 -#: netbox/templates/generic/bulk_import.html:102 +#: templates/generic/bulk_import.html:58 templates/generic/bulk_import.html:80 +#: templates/generic/bulk_import.html:102 msgid "Submit" msgstr "Soumettre" -#: netbox/templates/generic/bulk_import.html:113 +#: templates/generic/bulk_import.html:113 msgid "Field Options" msgstr "Options de champ" -#: netbox/templates/generic/bulk_import.html:119 +#: templates/generic/bulk_import.html:119 msgid "Accessor" msgstr "Accesseur" -#: netbox/templates/generic/bulk_import.html:148 +#: templates/generic/bulk_import.html:148 msgid "choices" msgstr "choix" -#: netbox/templates/generic/bulk_import.html:161 +#: templates/generic/bulk_import.html:161 msgid "Import Value" msgstr "Valeur d'importation" -#: netbox/templates/generic/bulk_import.html:181 +#: templates/generic/bulk_import.html:181 msgid "Format: YYYY-MM-DD" msgstr "Format : AAAA-MM-JJ" -#: netbox/templates/generic/bulk_import.html:183 +#: templates/generic/bulk_import.html:183 msgid "Specify true or false" msgstr "Spécifiez vrai ou faux" -#: netbox/templates/generic/bulk_import.html:195 +#: templates/generic/bulk_import.html:195 msgid "Required fields must be specified for all objects." msgstr "" "Les champs obligatoires doivent être saisis pour tous les " "objets." -#: netbox/templates/generic/bulk_import.html:201 +#: templates/generic/bulk_import.html:201 #, python-format msgid "" "Related objects may be referenced by any unique attribute. For example, " @@ -13757,15 +13036,15 @@ msgstr "" "unique. Par exemple, %(example)s identifie une VRF par son " "\"Route Distinguisher\"." -#: netbox/templates/generic/bulk_remove.html:28 +#: templates/generic/bulk_remove.html:28 msgid "Bulk Remove" msgstr "Supprimer en masse" -#: netbox/templates/generic/bulk_remove.html:42 +#: templates/generic/bulk_remove.html:42 msgid "Confirm Bulk Removal" msgstr "Confirmer la suppression de masse" -#: netbox/templates/generic/bulk_remove.html:43 +#: templates/generic/bulk_remove.html:43 #, python-format msgid "" "The following operation will remove %(count)s %(obj_type_plural)s from " @@ -13776,72 +13055,72 @@ msgstr "" "%(parent_obj)s. Veuillez vérifier attentivement les %(obj_type_plural)s à " "supprimer et à confirmer ci-dessous." -#: netbox/templates/generic/bulk_remove.html:64 +#: templates/generic/bulk_remove.html:64 #, python-format msgid "Remove these %(count)s %(obj_type_plural)s" msgstr "Supprimez-les %(count)s %(obj_type_plural)s" -#: netbox/templates/generic/bulk_rename.html:20 +#: templates/generic/bulk_rename.html:20 msgid "Renaming" msgstr "Renommer" -#: netbox/templates/generic/bulk_rename.html:27 +#: templates/generic/bulk_rename.html:27 msgid "Bulk Rename" msgstr "Renommer en masse" -#: netbox/templates/generic/bulk_rename.html:39 +#: templates/generic/bulk_rename.html:39 msgid "Current Name" msgstr "Nom actuel" -#: netbox/templates/generic/bulk_rename.html:40 +#: templates/generic/bulk_rename.html:40 msgid "New Name" msgstr "Nouveau nom" -#: netbox/templates/generic/bulk_rename.html:64 -#: netbox/utilities/templates/widgets/markdown_input.html:11 +#: templates/generic/bulk_rename.html:64 +#: utilities/templates/widgets/markdown_input.html:11 msgid "Preview" msgstr "Aperçu" -#: netbox/templates/generic/confirmation_form.html:16 +#: templates/generic/confirmation_form.html:16 msgid "Are you sure" msgstr "Êtes-vous sûr ?" -#: netbox/templates/generic/confirmation_form.html:20 +#: templates/generic/confirmation_form.html:20 msgid "Confirm" msgstr "Confirmer" -#: netbox/templates/generic/object_children.html:47 -#: netbox/utilities/templates/buttons/bulk_edit.html:4 +#: templates/generic/object_children.html:47 +#: utilities/templates/buttons/bulk_edit.html:4 msgid "Edit Selected" msgstr "Modifier la sélection" -#: netbox/templates/generic/object_children.html:61 -#: netbox/utilities/templates/buttons/bulk_delete.html:4 +#: templates/generic/object_children.html:61 +#: utilities/templates/buttons/bulk_delete.html:4 msgid "Delete Selected" msgstr "Supprimer la sélection" -#: netbox/templates/generic/object_edit.html:24 +#: templates/generic/object_edit.html:24 #, python-format msgid "Add a new %(object_type)s" msgstr "Ajouter un nouveau %(object_type)s" -#: netbox/templates/generic/object_edit.html:35 +#: templates/generic/object_edit.html:35 msgid "View model documentation" msgstr "Afficher la documentation du modèle" -#: netbox/templates/generic/object_edit.html:36 +#: templates/generic/object_edit.html:36 msgid "Help" msgstr "Aide" -#: netbox/templates/generic/object_edit.html:83 +#: templates/generic/object_edit.html:83 msgid "Create & Add Another" msgstr "Créer et en ajouter un autre" -#: netbox/templates/generic/object_list.html:57 +#: templates/generic/object_list.html:57 msgid "Filters" msgstr "Filtres" -#: netbox/templates/generic/object_list.html:88 +#: templates/generic/object_list.html:88 #, python-format msgid "" "Select all %(count)s " @@ -13851,40 +13130,40 @@ msgstr "" "count\">%(count)s %(object_type_plural)squi correspondent à" " la requête" -#: netbox/templates/home.html:15 +#: templates/home.html:15 msgid "New Release Available" msgstr "Nouvelle version disponible" -#: netbox/templates/home.html:16 +#: templates/home.html:16 msgid "is available" msgstr "est disponible" -#: netbox/templates/home.html:18 +#: templates/home.html:18 msgctxt "Document title" msgid "Upgrade Instructions" msgstr "Instructions de mise à jour" -#: netbox/templates/home.html:40 +#: templates/home.html:40 msgid "Unlock Dashboard" msgstr "Déverrouiller le tableau de bord" -#: netbox/templates/home.html:49 +#: templates/home.html:49 msgid "Lock Dashboard" msgstr "Tableau de bord verrouillé" -#: netbox/templates/home.html:60 +#: templates/home.html:60 msgid "Add Widget" msgstr "Ajouter un widget" -#: netbox/templates/home.html:63 +#: templates/home.html:63 msgid "Save Layout" msgstr "Enregistrer la mise en page" -#: netbox/templates/htmx/delete_form.html:7 +#: templates/htmx/delete_form.html:7 msgid "Confirm Deletion" msgstr "Confirmer la suppression" -#: netbox/templates/htmx/delete_form.html:11 +#: templates/htmx/delete_form.html:11 #, python-format msgid "" "Are you sure you want to delete " @@ -13893,40 +13172,40 @@ msgstr "" "Es-tu sûr de vouloir supprimer " "%(object_type)s %(object)s?" -#: netbox/templates/htmx/delete_form.html:17 +#: templates/htmx/delete_form.html:17 msgid "The following objects will be deleted as a result of this action." msgstr "Les objets suivants seront supprimés à la suite de cette action." -#: netbox/templates/htmx/notifications.html:15 +#: templates/htmx/notifications.html:15 msgid "ago" msgstr "depuis" -#: netbox/templates/htmx/notifications.html:26 +#: templates/htmx/notifications.html:26 msgid "No unread notifications" msgstr "Aucune notification non lue" -#: netbox/templates/htmx/notifications.html:31 +#: templates/htmx/notifications.html:31 msgid "All notifications" msgstr "Toutes les notifications" -#: netbox/templates/htmx/object_selector.html:5 +#: templates/htmx/object_selector.html:5 msgid "Select" msgstr "Sélectionner" -#: netbox/templates/inc/filter_list.html:42 -#: netbox/utilities/templates/helpers/table_config_form.html:39 +#: templates/inc/filter_list.html:43 +#: utilities/templates/helpers/table_config_form.html:39 msgid "Reset" msgstr "Réinitialiser" -#: netbox/templates/inc/light_toggle.html:4 +#: templates/inc/light_toggle.html:4 msgid "Enable dark mode" msgstr "Activer le mode sombre" -#: netbox/templates/inc/light_toggle.html:7 +#: templates/inc/light_toggle.html:7 msgid "Enable light mode" msgstr "Activer le mode éclairage" -#: netbox/templates/inc/missing_prerequisites.html:8 +#: templates/inc/missing_prerequisites.html:8 #, python-format msgid "" "Before you can add a %(model)s you must first create a " @@ -13935,283 +13214,281 @@ msgstr "" "Avant de pouvoir ajouter un %(model)s vous devez d'abord créer un " "%(prerequisite_model)s." -#: netbox/templates/inc/paginator.html:15 +#: templates/inc/paginator.html:15 msgid "Page selection" msgstr "Sélection de page" -#: netbox/templates/inc/paginator.html:75 +#: templates/inc/paginator.html:75 #, python-format msgid "Showing %(start)s-%(end)s of %(total)s" msgstr "Montrant %(start)s-%(end)s de %(total)s" -#: netbox/templates/inc/paginator.html:82 +#: templates/inc/paginator.html:82 msgid "Pagination options" msgstr "Options de pagination" -#: netbox/templates/inc/paginator.html:86 +#: templates/inc/paginator.html:86 msgid "Per Page" msgstr "Par page" -#: netbox/templates/inc/panels/image_attachments.html:10 +#: templates/inc/panels/image_attachments.html:10 msgid "Attach an image" msgstr "Joindre une image" -#: netbox/templates/inc/panels/related_objects.html:5 +#: templates/inc/panels/related_objects.html:5 msgid "Related Objects" msgstr "Objets associés" -#: netbox/templates/inc/panels/tags.html:11 +#: templates/inc/panels/tags.html:11 msgid "No tags assigned" msgstr "Aucune étiquette associée" -#: netbox/templates/inc/sync_warning.html:10 +#: templates/inc/sync_warning.html:10 msgid "Data is out of sync with upstream file" msgstr "Les données ne sont pas synchronisées avec le fichier en amont" -#: netbox/templates/inc/table_controls_htmx.html:7 +#: templates/inc/table_controls_htmx.html:7 msgid "Quick search" msgstr "Recherche rapide" -#: netbox/templates/inc/table_controls_htmx.html:20 +#: templates/inc/table_controls_htmx.html:20 msgid "Saved filter" msgstr "Filtre enregistré" -#: netbox/templates/inc/table_htmx.html:18 +#: templates/inc/table_htmx.html:18 msgid "Clear ordering" msgstr "Commande claire" -#: netbox/templates/inc/user_menu.html:6 +#: templates/inc/user_menu.html:6 msgid "Help center" msgstr "Centre d'aide" -#: netbox/templates/inc/user_menu.html:41 +#: templates/inc/user_menu.html:41 msgid "Django Admin" msgstr "Administrateur Django" -#: netbox/templates/inc/user_menu.html:61 +#: templates/inc/user_menu.html:61 msgid "Log Out" msgstr "Déconnexion" -#: netbox/templates/inc/user_menu.html:68 netbox/templates/login.html:38 +#: templates/inc/user_menu.html:68 templates/login.html:38 msgid "Log In" msgstr "Connexion" -#: netbox/templates/ipam/aggregate.html:14 -#: netbox/templates/ipam/ipaddress.html:14 -#: netbox/templates/ipam/iprange.html:13 netbox/templates/ipam/prefix.html:15 +#: templates/ipam/aggregate.html:14 templates/ipam/ipaddress.html:14 +#: templates/ipam/iprange.html:13 templates/ipam/prefix.html:15 msgid "Family" msgstr "Famille" -#: netbox/templates/ipam/aggregate.html:39 +#: templates/ipam/aggregate.html:39 msgid "Date Added" msgstr "Date d'ajout" -#: netbox/templates/ipam/aggregate/prefixes.html:8 -#: netbox/templates/ipam/prefix/prefixes.html:8 -#: netbox/templates/ipam/role.html:10 +#: templates/ipam/aggregate/prefixes.html:8 +#: templates/ipam/prefix/prefixes.html:8 templates/ipam/role.html:10 msgid "Add Prefix" msgstr "Ajouter un préfixe" -#: netbox/templates/ipam/asn.html:23 +#: templates/ipam/asn.html:23 msgid "AS Number" msgstr "Numéro d'AS" -#: netbox/templates/ipam/fhrpgroup.html:52 +#: templates/ipam/fhrpgroup.html:52 msgid "Authentication Type" msgstr "Type d'authentification" -#: netbox/templates/ipam/fhrpgroup.html:56 +#: templates/ipam/fhrpgroup.html:56 msgid "Authentication Key" msgstr "Clé d'authentification" -#: netbox/templates/ipam/fhrpgroup.html:69 +#: templates/ipam/fhrpgroup.html:69 msgid "Virtual IP Addresses" msgstr "Adresses IP virtuelles" -#: netbox/templates/ipam/inc/ipaddress_edit_header.html:13 +#: templates/ipam/inc/ipaddress_edit_header.html:13 msgid "Assign IP" msgstr "Associer une IP" -#: netbox/templates/ipam/inc/ipaddress_edit_header.html:19 +#: templates/ipam/inc/ipaddress_edit_header.html:19 msgid "Bulk Create" msgstr "Création en masse" -#: netbox/templates/ipam/inc/panels/fhrp_groups.html:10 +#: templates/ipam/inc/panels/fhrp_groups.html:10 msgid "Create Group" msgstr "Créer un groupe" -#: netbox/templates/ipam/inc/panels/fhrp_groups.html:25 +#: templates/ipam/inc/panels/fhrp_groups.html:25 msgid "Virtual IPs" msgstr "IP virtuelles" -#: netbox/templates/ipam/inc/toggle_available.html:7 +#: templates/ipam/inc/toggle_available.html:7 msgid "Show Assigned" msgstr "Afficher les affectations" -#: netbox/templates/ipam/inc/toggle_available.html:10 +#: templates/ipam/inc/toggle_available.html:10 msgid "Show Available" msgstr "Afficher disponible" -#: netbox/templates/ipam/inc/toggle_available.html:13 +#: templates/ipam/inc/toggle_available.html:13 msgid "Show All" msgstr "Afficher tout" -#: netbox/templates/ipam/ipaddress.html:23 -#: netbox/templates/ipam/iprange.html:45 netbox/templates/ipam/prefix.html:24 +#: templates/ipam/ipaddress.html:23 templates/ipam/iprange.html:45 +#: templates/ipam/prefix.html:24 msgid "Global" msgstr "Globale" -#: netbox/templates/ipam/ipaddress.html:85 +#: templates/ipam/ipaddress.html:85 msgid "NAT (outside)" msgstr "NAT (externe)" -#: netbox/templates/ipam/ipaddress_assign.html:8 +#: templates/ipam/ipaddress_assign.html:8 msgid "Assign an IP Address" msgstr "Attribuer une adresse IP" -#: netbox/templates/ipam/ipaddress_assign.html:22 +#: templates/ipam/ipaddress_assign.html:22 msgid "Select IP Address" msgstr "Sélectionnez l'adresse IP" -#: netbox/templates/ipam/ipaddress_assign.html:35 +#: templates/ipam/ipaddress_assign.html:35 msgid "Search Results" msgstr "Résultats de recherche" -#: netbox/templates/ipam/ipaddress_bulk_add.html:6 +#: templates/ipam/ipaddress_bulk_add.html:6 msgid "Bulk Add IP Addresses" msgstr "Ajouter des adresses IP en masse" -#: netbox/templates/ipam/iprange.html:17 +#: templates/ipam/iprange.html:17 msgid "Starting Address" msgstr "Adresse de début" -#: netbox/templates/ipam/iprange.html:21 +#: templates/ipam/iprange.html:21 msgid "Ending Address" msgstr "Adresse de fin" -#: netbox/templates/ipam/iprange.html:33 netbox/templates/ipam/prefix.html:110 +#: templates/ipam/iprange.html:33 templates/ipam/prefix.html:110 msgid "Marked fully utilized" msgstr "Marqué comme entièrement utilisé" -#: netbox/templates/ipam/prefix.html:99 +#: templates/ipam/prefix.html:99 msgid "Addressing Details" msgstr "Détails du préfixe" -#: netbox/templates/ipam/prefix.html:118 +#: templates/ipam/prefix.html:118 msgid "Child IPs" msgstr "IP enfants" -#: netbox/templates/ipam/prefix.html:126 +#: templates/ipam/prefix.html:126 msgid "Available IPs" msgstr "IP disponibles" -#: netbox/templates/ipam/prefix.html:138 +#: templates/ipam/prefix.html:138 msgid "First available IP" msgstr "Première adresse IP disponible" -#: netbox/templates/ipam/prefix.html:179 +#: templates/ipam/prefix.html:179 msgid "Prefix Details" msgstr "Détails du préfixe" -#: netbox/templates/ipam/prefix.html:185 +#: templates/ipam/prefix.html:185 msgid "Network Address" msgstr "Adresse réseau" -#: netbox/templates/ipam/prefix.html:189 +#: templates/ipam/prefix.html:189 msgid "Network Mask" msgstr "Masque de sous-réseau" -#: netbox/templates/ipam/prefix.html:193 +#: templates/ipam/prefix.html:193 msgid "Wildcard Mask" msgstr "Masque Wildcard" -#: netbox/templates/ipam/prefix.html:197 +#: templates/ipam/prefix.html:197 msgid "Broadcast Address" msgstr "Adresse de diffusion" -#: netbox/templates/ipam/prefix/ip_ranges.html:7 +#: templates/ipam/prefix/ip_ranges.html:7 msgid "Add IP Range" msgstr "Ajouter une plage d'adresses IP" -#: netbox/templates/ipam/prefix_list.html:7 +#: templates/ipam/prefix_list.html:7 msgid "Hide Depth Indicators" msgstr "Masquer les indicateurs de profondeur" -#: netbox/templates/ipam/prefix_list.html:11 +#: templates/ipam/prefix_list.html:11 msgid "Max Depth" msgstr "Profondeur maximale" -#: netbox/templates/ipam/prefix_list.html:28 +#: templates/ipam/prefix_list.html:28 msgid "Max Length" msgstr "Longueur maximale" -#: netbox/templates/ipam/rir.html:10 +#: templates/ipam/rir.html:10 msgid "Add Aggregate" msgstr "Ajouter un agrégat" -#: netbox/templates/ipam/routetarget.html:38 +#: templates/ipam/routetarget.html:38 msgid "Importing VRFs" msgstr "Importer des VRF" -#: netbox/templates/ipam/routetarget.html:44 +#: templates/ipam/routetarget.html:44 msgid "Exporting VRFs" msgstr "Exporter des VRF" -#: netbox/templates/ipam/routetarget.html:52 +#: templates/ipam/routetarget.html:52 msgid "Importing L2VPNs" msgstr "Importer des L2VPN" -#: netbox/templates/ipam/routetarget.html:58 +#: templates/ipam/routetarget.html:58 msgid "Exporting L2VPNs" msgstr "Exporter des L2VPN" -#: netbox/templates/ipam/vlan.html:88 +#: templates/ipam/vlan.html:88 msgid "Add a Prefix" msgstr "Ajouter un préfixe" -#: netbox/templates/ipam/vlangroup.html:18 +#: templates/ipam/vlangroup.html:18 msgid "Add VLAN" msgstr "Ajouter un VLAN" -#: netbox/templates/ipam/vrf.html:16 +#: templates/ipam/vrf.html:16 msgid "Route Distinguisher" msgstr "Route Distinguisher" -#: netbox/templates/ipam/vrf.html:29 +#: templates/ipam/vrf.html:29 msgid "Unique IP Space" msgstr "Espace IP unique" -#: netbox/templates/login.html:29 -#: netbox/utilities/templates/form_helpers/render_errors.html:7 +#: templates/login.html:29 +#: utilities/templates/form_helpers/render_errors.html:7 msgid "Errors" msgstr "Erreurs" -#: netbox/templates/login.html:69 +#: templates/login.html:69 msgid "Sign In" msgstr "Connexion" -#: netbox/templates/login.html:77 +#: templates/login.html:77 msgctxt "Denotes an alternative option" msgid "Or" msgstr "Ou" -#: netbox/templates/media_failure.html:7 +#: templates/media_failure.html:7 msgid "Static Media Failure - NetBox" msgstr "Erreur d'accès aux fichiers statiques - NetBox" -#: netbox/templates/media_failure.html:21 +#: templates/media_failure.html:21 msgid "Static Media Failure" msgstr "Erreur d'accès aux fichiers statiques" -#: netbox/templates/media_failure.html:23 +#: templates/media_failure.html:23 msgid "The following static media file failed to load" msgstr "Le fichier statique suivant n'a pas pu être chargé" -#: netbox/templates/media_failure.html:26 +#: templates/media_failure.html:26 msgid "Check the following" msgstr "Vérifiez les points suivants" -#: netbox/templates/media_failure.html:29 +#: templates/media_failure.html:29 msgid "" "manage.py collectstatic was run during the most recent upgrade." " This installs the most recent iteration of each static file into the static" @@ -14221,7 +13498,7 @@ msgstr "" "à jour. Cela installe la version la plus récente de chaque fichier statique " "dans le repertoire STATIC_ROOT." -#: netbox/templates/media_failure.html:35 +#: templates/media_failure.html:35 #, python-format msgid "" "The HTTP service (e.g. nginx or Apache) is configured to serve files from " @@ -14233,7 +13510,7 @@ msgstr "" "Reportez-vous à la documentation d'installation" " pour de plus amples informations." -#: netbox/templates/media_failure.html:47 +#: templates/media_failure.html:47 #, python-format msgid "" "The file %(filename)s exists in the static root directory and " @@ -14242,566 +13519,547 @@ msgstr "" "Le dossier %(filename)s existe dans le répertoire racine " "statique et est lisible par le serveur HTTP." -#: netbox/templates/media_failure.html:55 +#: templates/media_failure.html:55 #, python-format msgid "Click here to attempt loading NetBox again." msgstr "" "Cliquez ici pour essayer de recharger NetBox." -#: netbox/templates/tenancy/contact.html:18 netbox/tenancy/filtersets.py:147 -#: netbox/tenancy/forms/bulk_edit.py:137 -#: netbox/tenancy/forms/filtersets.py:102 netbox/tenancy/forms/forms.py:56 -#: netbox/tenancy/forms/model_forms.py:106 -#: netbox/tenancy/forms/model_forms.py:130 -#: netbox/tenancy/tables/contacts.py:98 +#: templates/tenancy/contact.html:18 tenancy/filtersets.py:147 +#: tenancy/forms/bulk_edit.py:137 tenancy/forms/filtersets.py:102 +#: tenancy/forms/forms.py:56 tenancy/forms/model_forms.py:106 +#: tenancy/forms/model_forms.py:130 tenancy/tables/contacts.py:98 msgid "Contact" msgstr "Contacter" -#: netbox/templates/tenancy/contact.html:29 -#: netbox/tenancy/forms/bulk_edit.py:99 +#: templates/tenancy/contact.html:29 tenancy/forms/bulk_edit.py:99 msgid "Title" msgstr "Titre" -#: netbox/templates/tenancy/contact.html:33 -#: netbox/tenancy/forms/bulk_edit.py:104 netbox/tenancy/tables/contacts.py:64 +#: templates/tenancy/contact.html:33 tenancy/forms/bulk_edit.py:104 +#: tenancy/tables/contacts.py:64 msgid "Phone" msgstr "Téléphone" -#: netbox/templates/tenancy/contactgroup.html:18 -#: netbox/tenancy/forms/forms.py:66 netbox/tenancy/forms/model_forms.py:75 +#: templates/tenancy/contactgroup.html:18 tenancy/forms/forms.py:66 +#: tenancy/forms/model_forms.py:75 msgid "Contact Group" msgstr "Groupe de contact" -#: netbox/templates/tenancy/contactgroup.html:50 +#: templates/tenancy/contactgroup.html:50 msgid "Add Contact Group" msgstr "Ajouter un groupe de contacts" -#: netbox/templates/tenancy/contactrole.html:15 -#: netbox/tenancy/filtersets.py:152 netbox/tenancy/forms/forms.py:61 -#: netbox/tenancy/forms/model_forms.py:87 +#: templates/tenancy/contactrole.html:15 tenancy/filtersets.py:152 +#: tenancy/forms/forms.py:61 tenancy/forms/model_forms.py:87 msgid "Contact Role" msgstr "Rôle du contact" -#: netbox/templates/tenancy/object_contacts.html:9 +#: templates/tenancy/object_contacts.html:9 msgid "Add a contact" msgstr "Ajouter un contact" -#: netbox/templates/tenancy/tenantgroup.html:17 +#: templates/tenancy/tenantgroup.html:17 msgid "Add Tenant" msgstr "Ajouter un locataire" -#: netbox/templates/tenancy/tenantgroup.html:26 -#: netbox/tenancy/forms/model_forms.py:32 netbox/tenancy/tables/columns.py:51 -#: netbox/tenancy/tables/columns.py:61 +#: templates/tenancy/tenantgroup.html:26 tenancy/forms/model_forms.py:32 +#: tenancy/tables/columns.py:51 tenancy/tables/columns.py:61 msgid "Tenant Group" msgstr "Groupe de locataires" -#: netbox/templates/tenancy/tenantgroup.html:59 +#: templates/tenancy/tenantgroup.html:59 msgid "Add Tenant Group" msgstr "Ajouter un groupe de locataires" -#: netbox/templates/users/group.html:39 netbox/templates/users/user.html:63 +#: templates/users/group.html:39 templates/users/user.html:63 msgid "Assigned Permissions" msgstr "Permissions attribuées" -#: netbox/templates/users/objectpermission.html:6 -#: netbox/templates/users/objectpermission.html:14 -#: netbox/users/forms/filtersets.py:66 +#: templates/users/objectpermission.html:6 +#: templates/users/objectpermission.html:14 users/forms/filtersets.py:66 msgid "Permission" msgstr "Autorisation" -#: netbox/templates/users/objectpermission.html:34 +#: templates/users/objectpermission.html:34 msgid "View" msgstr "Afficher" -#: netbox/templates/users/objectpermission.html:52 -#: netbox/users/forms/model_forms.py:315 +#: templates/users/objectpermission.html:52 users/forms/model_forms.py:315 msgid "Constraints" msgstr "Contraintes" -#: netbox/templates/users/objectpermission.html:72 +#: templates/users/objectpermission.html:72 msgid "Assigned Users" msgstr "Utilisateurs associés" -#: netbox/templates/virtualization/cluster.html:52 +#: templates/virtualization/cluster.html:52 msgid "Allocated Resources" msgstr "Ressources allouées" -#: netbox/templates/virtualization/cluster.html:55 -#: netbox/templates/virtualization/virtualmachine.html:125 +#: templates/virtualization/cluster.html:55 +#: templates/virtualization/virtualmachine.html:125 msgid "Virtual CPUs" msgstr "Processeurs virtuels" -#: netbox/templates/virtualization/cluster.html:59 -#: netbox/templates/virtualization/virtualmachine.html:129 +#: templates/virtualization/cluster.html:59 +#: templates/virtualization/virtualmachine.html:129 msgid "Memory" msgstr "Mémoire" -#: netbox/templates/virtualization/cluster.html:69 -#: netbox/templates/virtualization/virtualmachine.html:140 +#: templates/virtualization/cluster.html:69 +#: templates/virtualization/virtualmachine.html:140 msgid "Disk Space" msgstr "Espace disque" -#: netbox/templates/virtualization/cluster/base.html:18 +#: templates/virtualization/cluster/base.html:18 msgid "Add Virtual Machine" msgstr "Ajouter une machine virtuelle" -#: netbox/templates/virtualization/cluster/base.html:24 +#: templates/virtualization/cluster/base.html:24 msgid "Assign Device" msgstr "Attribuer un appareil" -#: netbox/templates/virtualization/cluster/devices.html:10 +#: templates/virtualization/cluster/devices.html:10 msgid "Remove Selected" msgstr "Supprimer la sélection" -#: netbox/templates/virtualization/cluster_add_devices.html:9 +#: templates/virtualization/cluster_add_devices.html:9 #, python-format msgid "Add Device to Cluster %(cluster)s" msgstr "Ajouter un appareil au cluster %(cluster)s" -#: netbox/templates/virtualization/cluster_add_devices.html:23 +#: templates/virtualization/cluster_add_devices.html:23 msgid "Device Selection" msgstr "Sélection de l'appareil" -#: netbox/templates/virtualization/cluster_add_devices.html:31 +#: templates/virtualization/cluster_add_devices.html:31 msgid "Add Devices" msgstr "Ajouter des appareils" -#: netbox/templates/virtualization/clustergroup.html:10 -#: netbox/templates/virtualization/clustertype.html:10 +#: templates/virtualization/clustergroup.html:10 +#: templates/virtualization/clustertype.html:10 msgid "Add Cluster" msgstr "Ajouter un cluster" -#: netbox/templates/virtualization/clustergroup.html:19 -#: netbox/virtualization/forms/model_forms.py:50 +#: templates/virtualization/clustergroup.html:19 +#: virtualization/forms/model_forms.py:50 msgid "Cluster Group" msgstr "Groupe Cluster" -#: netbox/templates/virtualization/clustertype.html:19 -#: netbox/templates/virtualization/virtualmachine.html:110 -#: netbox/virtualization/forms/model_forms.py:36 +#: templates/virtualization/clustertype.html:19 +#: templates/virtualization/virtualmachine.html:110 +#: virtualization/forms/model_forms.py:36 msgid "Cluster Type" msgstr "Type de cluster" -#: netbox/templates/virtualization/virtualdisk.html:18 +#: templates/virtualization/virtualdisk.html:18 msgid "Virtual Disk" msgstr "Disque virtuel" -#: netbox/templates/virtualization/virtualmachine.html:122 -#: netbox/virtualization/forms/bulk_edit.py:190 -#: netbox/virtualization/forms/model_forms.py:224 +#: templates/virtualization/virtualmachine.html:122 +#: virtualization/forms/bulk_edit.py:190 +#: virtualization/forms/model_forms.py:224 msgid "Resources" msgstr "Ressources" -#: netbox/templates/virtualization/virtualmachine.html:178 +#: templates/virtualization/virtualmachine.html:178 msgid "Add Virtual Disk" msgstr "Ajouter un disque virtuel" -#: netbox/templates/vpn/ikepolicy.html:10 -#: netbox/templates/vpn/ipsecprofile.html:33 netbox/vpn/tables/crypto.py:166 +#: templates/vpn/ikepolicy.html:10 templates/vpn/ipsecprofile.html:33 +#: vpn/tables/crypto.py:166 msgid "IKE Policy" msgstr "Politique IKE" -#: netbox/templates/vpn/ikepolicy.html:21 +#: templates/vpn/ikepolicy.html:21 msgid "IKE Version" msgstr "Version IKE" -#: netbox/templates/vpn/ikepolicy.html:29 +#: templates/vpn/ikepolicy.html:29 msgid "Pre-Shared Key" msgstr "Clé pré-partagée" -#: netbox/templates/vpn/ikepolicy.html:33 -#: netbox/templates/wireless/inc/authentication_attrs.html:20 +#: templates/vpn/ikepolicy.html:33 +#: templates/wireless/inc/authentication_attrs.html:20 msgid "Show Secret" msgstr "Afficher le secret" -#: netbox/templates/vpn/ikepolicy.html:57 -#: netbox/templates/vpn/ipsecpolicy.html:45 -#: netbox/templates/vpn/ipsecprofile.html:52 -#: netbox/templates/vpn/ipsecprofile.html:77 -#: netbox/vpn/forms/model_forms.py:316 netbox/vpn/forms/model_forms.py:352 -#: netbox/vpn/tables/crypto.py:68 netbox/vpn/tables/crypto.py:134 +#: templates/vpn/ikepolicy.html:57 templates/vpn/ipsecpolicy.html:45 +#: templates/vpn/ipsecprofile.html:52 templates/vpn/ipsecprofile.html:77 +#: vpn/forms/model_forms.py:316 vpn/forms/model_forms.py:352 +#: vpn/tables/crypto.py:68 vpn/tables/crypto.py:134 msgid "Proposals" msgstr "Propositions" -#: netbox/templates/vpn/ikeproposal.html:10 +#: templates/vpn/ikeproposal.html:10 msgid "IKE Proposal" msgstr "Proposition IKE" -#: netbox/templates/vpn/ikeproposal.html:21 netbox/vpn/forms/bulk_edit.py:97 -#: netbox/vpn/forms/bulk_import.py:145 netbox/vpn/forms/filtersets.py:101 +#: templates/vpn/ikeproposal.html:21 vpn/forms/bulk_edit.py:97 +#: vpn/forms/bulk_import.py:145 vpn/forms/filtersets.py:101 msgid "Authentication method" msgstr "Méthode d'authentification" -#: netbox/templates/vpn/ikeproposal.html:25 -#: netbox/templates/vpn/ipsecproposal.html:21 -#: netbox/vpn/forms/bulk_edit.py:102 netbox/vpn/forms/bulk_edit.py:172 -#: netbox/vpn/forms/bulk_import.py:149 netbox/vpn/forms/bulk_import.py:195 -#: netbox/vpn/forms/filtersets.py:106 netbox/vpn/forms/filtersets.py:154 +#: templates/vpn/ikeproposal.html:25 templates/vpn/ipsecproposal.html:21 +#: vpn/forms/bulk_edit.py:102 vpn/forms/bulk_edit.py:172 +#: vpn/forms/bulk_import.py:149 vpn/forms/bulk_import.py:195 +#: vpn/forms/filtersets.py:106 vpn/forms/filtersets.py:154 msgid "Encryption algorithm" msgstr "Algorithme de chiffrement" -#: netbox/templates/vpn/ikeproposal.html:29 -#: netbox/templates/vpn/ipsecproposal.html:25 -#: netbox/vpn/forms/bulk_edit.py:107 netbox/vpn/forms/bulk_edit.py:177 -#: netbox/vpn/forms/bulk_import.py:153 netbox/vpn/forms/bulk_import.py:200 -#: netbox/vpn/forms/filtersets.py:111 netbox/vpn/forms/filtersets.py:159 +#: templates/vpn/ikeproposal.html:29 templates/vpn/ipsecproposal.html:25 +#: vpn/forms/bulk_edit.py:107 vpn/forms/bulk_edit.py:177 +#: vpn/forms/bulk_import.py:153 vpn/forms/bulk_import.py:200 +#: vpn/forms/filtersets.py:111 vpn/forms/filtersets.py:159 msgid "Authentication algorithm" msgstr "Algorithme d'authentification" -#: netbox/templates/vpn/ikeproposal.html:33 +#: templates/vpn/ikeproposal.html:33 msgid "DH group" msgstr "groupe DH" -#: netbox/templates/vpn/ikeproposal.html:37 -#: netbox/templates/vpn/ipsecproposal.html:29 -#: netbox/vpn/forms/bulk_edit.py:182 netbox/vpn/models/crypto.py:146 +#: templates/vpn/ikeproposal.html:37 templates/vpn/ipsecproposal.html:29 +#: vpn/forms/bulk_edit.py:182 vpn/models/crypto.py:146 msgid "SA lifetime (seconds)" msgstr "Durée de vie de l'association de sécurité (secondes)" -#: netbox/templates/vpn/ipsecpolicy.html:10 -#: netbox/templates/vpn/ipsecprofile.html:66 netbox/vpn/tables/crypto.py:170 +#: templates/vpn/ipsecpolicy.html:10 templates/vpn/ipsecprofile.html:66 +#: vpn/tables/crypto.py:170 msgid "IPSec Policy" msgstr "Politique IPSec" -#: netbox/templates/vpn/ipsecpolicy.html:21 netbox/vpn/forms/bulk_edit.py:210 -#: netbox/vpn/models/crypto.py:193 +#: templates/vpn/ipsecpolicy.html:21 vpn/forms/bulk_edit.py:210 +#: vpn/models/crypto.py:193 msgid "PFS group" msgstr "groupe PFS" -#: netbox/templates/vpn/ipsecprofile.html:10 -#: netbox/vpn/forms/model_forms.py:54 +#: templates/vpn/ipsecprofile.html:10 vpn/forms/model_forms.py:54 msgid "IPSec Profile" msgstr "Profil IPSec" -#: netbox/templates/vpn/ipsecprofile.html:89 netbox/vpn/tables/crypto.py:137 +#: templates/vpn/ipsecprofile.html:89 vpn/tables/crypto.py:137 msgid "PFS Group" msgstr "Groupe PFS" -#: netbox/templates/vpn/ipsecproposal.html:10 +#: templates/vpn/ipsecproposal.html:10 msgid "IPSec Proposal" msgstr "Proposition IPSec" -#: netbox/templates/vpn/ipsecproposal.html:33 -#: netbox/vpn/forms/bulk_edit.py:186 netbox/vpn/models/crypto.py:152 +#: templates/vpn/ipsecproposal.html:33 vpn/forms/bulk_edit.py:186 +#: vpn/models/crypto.py:152 msgid "SA lifetime (KB)" msgstr "Durée de vie de l'association de sécurité (Ko)" -#: netbox/templates/vpn/l2vpn.html:11 -#: netbox/templates/vpn/l2vpntermination.html:9 +#: templates/vpn/l2vpn.html:11 templates/vpn/l2vpntermination.html:9 msgid "L2VPN Attributes" msgstr "Attributs L2VPN" -#: netbox/templates/vpn/l2vpn.html:60 netbox/templates/vpn/tunnel.html:76 +#: templates/vpn/l2vpn.html:60 templates/vpn/tunnel.html:76 msgid "Add a Termination" msgstr "Ajouter une terminaison" -#: netbox/templates/vpn/tunnel.html:9 +#: templates/vpn/tunnel.html:9 msgid "Add Termination" msgstr "Ajouter une terminaison" -#: netbox/templates/vpn/tunnel.html:37 netbox/vpn/forms/bulk_edit.py:49 -#: netbox/vpn/forms/bulk_import.py:48 netbox/vpn/forms/filtersets.py:57 +#: templates/vpn/tunnel.html:37 vpn/forms/bulk_edit.py:49 +#: vpn/forms/bulk_import.py:48 vpn/forms/filtersets.py:57 msgid "Encapsulation" msgstr "Encapsulation" -#: netbox/templates/vpn/tunnel.html:41 netbox/vpn/forms/bulk_edit.py:55 -#: netbox/vpn/forms/bulk_import.py:53 netbox/vpn/forms/filtersets.py:64 -#: netbox/vpn/models/crypto.py:250 netbox/vpn/tables/tunnels.py:51 +#: templates/vpn/tunnel.html:41 vpn/forms/bulk_edit.py:55 +#: vpn/forms/bulk_import.py:53 vpn/forms/filtersets.py:64 +#: vpn/models/crypto.py:250 vpn/tables/tunnels.py:51 msgid "IPSec profile" msgstr "profil IPSec" -#: netbox/templates/vpn/tunnel.html:45 netbox/vpn/forms/bulk_edit.py:69 -#: netbox/vpn/forms/filtersets.py:68 +#: templates/vpn/tunnel.html:45 vpn/forms/bulk_edit.py:69 +#: vpn/forms/filtersets.py:68 msgid "Tunnel ID" msgstr "Identifiant du tunnel" -#: netbox/templates/vpn/tunnelgroup.html:14 +#: templates/vpn/tunnelgroup.html:14 msgid "Add Tunnel" msgstr "Ajouter un tunnel" -#: netbox/templates/vpn/tunnelgroup.html:23 netbox/vpn/forms/model_forms.py:36 -#: netbox/vpn/forms/model_forms.py:49 +#: templates/vpn/tunnelgroup.html:23 vpn/forms/model_forms.py:36 +#: vpn/forms/model_forms.py:49 msgid "Tunnel Group" msgstr "Groupe de Tunnel" -#: netbox/templates/vpn/tunneltermination.html:10 +#: templates/vpn/tunneltermination.html:10 msgid "Tunnel Termination" msgstr "Terminaison du tunnel" -#: netbox/templates/vpn/tunneltermination.html:35 -#: netbox/vpn/forms/bulk_import.py:107 netbox/vpn/forms/model_forms.py:102 -#: netbox/vpn/forms/model_forms.py:138 netbox/vpn/forms/model_forms.py:247 -#: netbox/vpn/tables/tunnels.py:101 +#: templates/vpn/tunneltermination.html:35 vpn/forms/bulk_import.py:107 +#: vpn/forms/model_forms.py:102 vpn/forms/model_forms.py:138 +#: vpn/forms/model_forms.py:247 vpn/tables/tunnels.py:101 msgid "Outside IP" msgstr "IP externe" -#: netbox/templates/vpn/tunneltermination.html:51 +#: templates/vpn/tunneltermination.html:51 msgid "Peer Terminations" msgstr "Terminaisons des pairs" -#: netbox/templates/wireless/inc/authentication_attrs.html:12 +#: templates/wireless/inc/authentication_attrs.html:12 msgid "Cipher" msgstr "Chiffrer" -#: netbox/templates/wireless/inc/authentication_attrs.html:16 +#: templates/wireless/inc/authentication_attrs.html:16 msgid "PSK" msgstr "PSK" -#: netbox/templates/wireless/inc/wirelesslink_interface.html:35 -#: netbox/templates/wireless/inc/wirelesslink_interface.html:45 +#: templates/wireless/inc/wirelesslink_interface.html:35 +#: templates/wireless/inc/wirelesslink_interface.html:45 msgctxt "Abbreviation for megahertz" msgid "MHz" msgstr "MHz" -#: netbox/templates/wireless/wirelesslan.html:57 +#: templates/wireless/wirelesslan.html:57 msgid "Attached Interfaces" msgstr "Interfaces attachées" -#: netbox/templates/wireless/wirelesslangroup.html:17 +#: templates/wireless/wirelesslangroup.html:17 msgid "Add Wireless LAN" msgstr "Ajouter un réseau sans fil" -#: netbox/templates/wireless/wirelesslangroup.html:26 -#: netbox/wireless/forms/model_forms.py:28 +#: templates/wireless/wirelesslangroup.html:26 +#: wireless/forms/model_forms.py:28 msgid "Wireless LAN Group" msgstr "Groupe LAN sans fil" -#: netbox/templates/wireless/wirelesslangroup.html:59 +#: templates/wireless/wirelesslangroup.html:59 msgid "Add Wireless LAN Group" msgstr "Ajouter un groupe de réseau local sans fil" -#: netbox/templates/wireless/wirelesslink.html:14 +#: templates/wireless/wirelesslink.html:14 msgid "Link Properties" msgstr "Propriétés du lien" -#: netbox/templates/wireless/wirelesslink.html:38 -#: netbox/wireless/forms/bulk_edit.py:129 -#: netbox/wireless/forms/filtersets.py:102 -#: netbox/wireless/forms/model_forms.py:165 +#: templates/wireless/wirelesslink.html:38 wireless/forms/bulk_edit.py:129 +#: wireless/forms/filtersets.py:102 wireless/forms/model_forms.py:165 msgid "Distance" msgstr "Distance" -#: netbox/tenancy/filtersets.py:28 +#: tenancy/filtersets.py:28 msgid "Parent contact group (ID)" msgstr "Groupe de contact pour les parents (ID)" -#: netbox/tenancy/filtersets.py:34 +#: tenancy/filtersets.py:34 msgid "Parent contact group (slug)" msgstr "Groupe de contact avec les parents (slug)" -#: netbox/tenancy/filtersets.py:40 netbox/tenancy/filtersets.py:67 -#: netbox/tenancy/filtersets.py:110 +#: tenancy/filtersets.py:40 tenancy/filtersets.py:67 tenancy/filtersets.py:110 msgid "Contact group (ID)" msgstr "Groupe de contacts (ID)" -#: netbox/tenancy/filtersets.py:47 netbox/tenancy/filtersets.py:74 -#: netbox/tenancy/filtersets.py:117 +#: tenancy/filtersets.py:47 tenancy/filtersets.py:74 tenancy/filtersets.py:117 msgid "Contact group (slug)" msgstr "Groupe de contact (slug)" -#: netbox/tenancy/filtersets.py:104 +#: tenancy/filtersets.py:104 msgid "Contact (ID)" msgstr "Contact (ID)" -#: netbox/tenancy/filtersets.py:121 +#: tenancy/filtersets.py:121 msgid "Contact role (ID)" msgstr "Rôle du contact (ID)" -#: netbox/tenancy/filtersets.py:127 +#: tenancy/filtersets.py:127 msgid "Contact role (slug)" msgstr "Rôle de contact (slug)" -#: netbox/tenancy/filtersets.py:158 +#: tenancy/filtersets.py:158 msgid "Contact group" msgstr "Groupe de contact" -#: netbox/tenancy/filtersets.py:169 +#: tenancy/filtersets.py:169 msgid "Parent tenant group (ID)" msgstr "Groupe de parents locataires (ID)" -#: netbox/tenancy/filtersets.py:175 +#: tenancy/filtersets.py:175 msgid "Parent tenant group (slug)" msgstr "Groupe de parents locataires (slug)" -#: netbox/tenancy/filtersets.py:181 netbox/tenancy/filtersets.py:201 +#: tenancy/filtersets.py:181 tenancy/filtersets.py:201 msgid "Tenant group (ID)" msgstr "Groupe de locataires (ID)" -#: netbox/tenancy/filtersets.py:234 +#: tenancy/filtersets.py:234 msgid "Tenant Group (ID)" msgstr "Groupe de locataires (ID)" -#: netbox/tenancy/filtersets.py:241 +#: tenancy/filtersets.py:241 msgid "Tenant Group (slug)" msgstr "Groupe de locataires (slug)" -#: netbox/tenancy/forms/bulk_edit.py:66 +#: tenancy/forms/bulk_edit.py:66 msgid "Desciption" msgstr "Description" -#: netbox/tenancy/forms/bulk_import.py:101 +#: tenancy/forms/bulk_import.py:101 msgid "Assigned contact" msgstr "Contact associé" -#: netbox/tenancy/models/contacts.py:32 +#: tenancy/models/contacts.py:32 msgid "contact group" msgstr "groupe de contacts" -#: netbox/tenancy/models/contacts.py:33 +#: tenancy/models/contacts.py:33 msgid "contact groups" msgstr "groupes de contacts" -#: netbox/tenancy/models/contacts.py:48 +#: tenancy/models/contacts.py:48 msgid "contact role" msgstr "rôle du contact" -#: netbox/tenancy/models/contacts.py:49 +#: tenancy/models/contacts.py:49 msgid "contact roles" msgstr "rôles du contact" -#: netbox/tenancy/models/contacts.py:68 +#: tenancy/models/contacts.py:68 msgid "title" msgstr "titre" -#: netbox/tenancy/models/contacts.py:73 +#: tenancy/models/contacts.py:73 msgid "phone" msgstr "téléphone" -#: netbox/tenancy/models/contacts.py:78 +#: tenancy/models/contacts.py:78 msgid "email" msgstr "courriel" -#: netbox/tenancy/models/contacts.py:87 +#: tenancy/models/contacts.py:87 msgid "link" msgstr "lien" -#: netbox/tenancy/models/contacts.py:103 +#: tenancy/models/contacts.py:103 msgid "contact" msgstr "contacter" -#: netbox/tenancy/models/contacts.py:104 +#: tenancy/models/contacts.py:104 msgid "contacts" msgstr "contacts" -#: netbox/tenancy/models/contacts.py:153 +#: tenancy/models/contacts.py:153 msgid "contact assignment" msgstr "Associer un contact" -#: netbox/tenancy/models/contacts.py:154 +#: tenancy/models/contacts.py:154 msgid "contact assignments" msgstr "Contacts associés" -#: netbox/tenancy/models/contacts.py:170 +#: tenancy/models/contacts.py:170 #, python-brace-format msgid "Contacts cannot be assigned to this object type ({type})." msgstr "Les contacts ne peuvent pas être affectés à ce type d'objet ({type})." -#: netbox/tenancy/models/tenants.py:32 +#: tenancy/models/tenants.py:32 msgid "tenant group" msgstr "groupe de locataires" -#: netbox/tenancy/models/tenants.py:33 +#: tenancy/models/tenants.py:33 msgid "tenant groups" msgstr "groupes de locataires" -#: netbox/tenancy/models/tenants.py:70 +#: tenancy/models/tenants.py:70 msgid "Tenant name must be unique per group." msgstr "Le nom du locataire doit être unique par groupe." -#: netbox/tenancy/models/tenants.py:80 +#: tenancy/models/tenants.py:80 msgid "Tenant slug must be unique per group." msgstr "Le slug tenant doit être unique par groupe." -#: netbox/tenancy/models/tenants.py:88 +#: tenancy/models/tenants.py:88 msgid "tenant" msgstr "locataire" -#: netbox/tenancy/models/tenants.py:89 +#: tenancy/models/tenants.py:89 msgid "tenants" msgstr "locataires" -#: netbox/tenancy/tables/contacts.py:112 +#: tenancy/tables/contacts.py:112 msgid "Contact Title" msgstr "Titre du contact" -#: netbox/tenancy/tables/contacts.py:116 +#: tenancy/tables/contacts.py:116 msgid "Contact Phone" msgstr "Téléphone de contact" -#: netbox/tenancy/tables/contacts.py:121 +#: tenancy/tables/contacts.py:121 msgid "Contact Email" msgstr "Email de contact" -#: netbox/tenancy/tables/contacts.py:125 +#: tenancy/tables/contacts.py:125 msgid "Contact Address" msgstr "Adresse de contact" -#: netbox/tenancy/tables/contacts.py:129 +#: tenancy/tables/contacts.py:129 msgid "Contact Link" msgstr "Lien de contact" -#: netbox/tenancy/tables/contacts.py:133 +#: tenancy/tables/contacts.py:133 msgid "Contact Description" msgstr "Description du contact" -#: netbox/users/filtersets.py:33 netbox/users/filtersets.py:73 +#: users/filtersets.py:33 users/filtersets.py:73 msgid "Permission (ID)" msgstr "Permission (ID)" -#: netbox/users/filtersets.py:38 netbox/users/filtersets.py:78 +#: users/filtersets.py:38 users/filtersets.py:78 msgid "Notification group (ID)" msgstr "Groupe de notifications (ID)" -#: netbox/users/forms/bulk_edit.py:26 +#: users/forms/bulk_edit.py:26 msgid "First name" msgstr "Prénom" -#: netbox/users/forms/bulk_edit.py:31 +#: users/forms/bulk_edit.py:31 msgid "Last name" msgstr "Nom de famille" -#: netbox/users/forms/bulk_edit.py:43 +#: users/forms/bulk_edit.py:43 msgid "Staff status" msgstr "Statut équipe" -#: netbox/users/forms/bulk_edit.py:48 +#: users/forms/bulk_edit.py:48 msgid "Superuser status" msgstr "Statut de superutilisateur" -#: netbox/users/forms/bulk_import.py:41 +#: users/forms/bulk_import.py:41 msgid "If no key is provided, one will be generated automatically." msgstr "Si aucune clé n'est fournie, une clé sera générée automatiquement." -#: netbox/users/forms/filtersets.py:51 netbox/users/tables.py:42 +#: users/forms/filtersets.py:51 users/tables.py:42 msgid "Is Staff" msgstr "Est dans l'équipe" -#: netbox/users/forms/filtersets.py:58 netbox/users/tables.py:45 +#: users/forms/filtersets.py:58 users/tables.py:45 msgid "Is Superuser" msgstr "Est un superutilisateur" -#: netbox/users/forms/filtersets.py:91 netbox/users/tables.py:86 +#: users/forms/filtersets.py:91 users/tables.py:86 msgid "Can View" msgstr "Peut voir" -#: netbox/users/forms/filtersets.py:98 netbox/users/tables.py:89 +#: users/forms/filtersets.py:98 users/tables.py:89 msgid "Can Add" msgstr "Peut ajouter" -#: netbox/users/forms/filtersets.py:105 netbox/users/tables.py:92 +#: users/forms/filtersets.py:105 users/tables.py:92 msgid "Can Change" msgstr "Peut changer" -#: netbox/users/forms/filtersets.py:112 netbox/users/tables.py:95 +#: users/forms/filtersets.py:112 users/tables.py:95 msgid "Can Delete" msgstr "Peut supprimer" -#: netbox/users/forms/model_forms.py:62 +#: users/forms/model_forms.py:62 msgid "User Interface" msgstr "Interface utilisateur" -#: netbox/users/forms/model_forms.py:114 +#: users/forms/model_forms.py:114 msgid "" "Keys must be at least 40 characters in length. Be sure to record " "your key prior to submitting this form, as it may no longer be " @@ -14811,7 +14069,7 @@ msgstr "" "d'enregistrer votre clé avant de soumettre ce formulaire, car il se" " peut qu'il ne soit plus accessible une fois le jeton créé." -#: netbox/users/forms/model_forms.py:126 +#: users/forms/model_forms.py:126 msgid "" "Allowed IPv4/IPv6 networks from where the token can be used. Leave blank for" " no restrictions. Example: " @@ -14821,33 +14079,33 @@ msgstr "" "Laissez ce champ vide pour éviter toute restriction. Exemple : " "10.1.1.0/24 192.168.10,16/32 2001 : db 8:1 : /64" -#: netbox/users/forms/model_forms.py:175 +#: users/forms/model_forms.py:175 msgid "Confirm password" msgstr "Confirmer mot de passe" -#: netbox/users/forms/model_forms.py:178 +#: users/forms/model_forms.py:178 msgid "Enter the same password as before, for verification." msgstr "" "Entrez le même mot de passe que précédemment, à des fins de vérification." -#: netbox/users/forms/model_forms.py:227 +#: users/forms/model_forms.py:227 msgid "Passwords do not match! Please check your input and try again." msgstr "" "Les mots de passe ne correspondent pas ! Vérifiez votre saisie et réessayez." -#: netbox/users/forms/model_forms.py:294 +#: users/forms/model_forms.py:294 msgid "Additional actions" msgstr "Actions supplémentaires" -#: netbox/users/forms/model_forms.py:297 +#: users/forms/model_forms.py:297 msgid "Actions granted in addition to those listed above" msgstr "Actions accordées en plus de celles énumérées ci-dessus" -#: netbox/users/forms/model_forms.py:313 +#: users/forms/model_forms.py:313 msgid "Objects" msgstr "Objets" -#: netbox/users/forms/model_forms.py:325 +#: users/forms/model_forms.py:325 msgid "" "JSON expression of a queryset filter that will return only permitted " "objects. Leave null to match all objects of this type. A list of multiple " @@ -14857,82 +14115,82 @@ msgstr "" "autorisés. Laissez null pour chercher tous les objets de ce type. Une liste " "de plusieurs termes correspond à un OU logique." -#: netbox/users/forms/model_forms.py:364 +#: users/forms/model_forms.py:364 msgid "At least one action must be selected." msgstr "Au moins une action doit être sélectionnée." -#: netbox/users/forms/model_forms.py:382 +#: users/forms/model_forms.py:382 #, python-brace-format msgid "Invalid filter for {model}: {error}" msgstr "Filtre non valide pour {model}: {error}" -#: netbox/users/models/permissions.py:39 +#: users/models/permissions.py:39 msgid "The list of actions granted by this permission" msgstr "La liste des actions accordées par cette permission" -#: netbox/users/models/permissions.py:44 +#: users/models/permissions.py:44 msgid "constraints" msgstr "contraintes" -#: netbox/users/models/permissions.py:45 +#: users/models/permissions.py:45 msgid "" "Queryset filter matching the applicable objects of the selected type(s)" msgstr "" "Filtre Queryset correspondant aux objets applicables du ou des types " "sélectionnés" -#: netbox/users/models/permissions.py:52 +#: users/models/permissions.py:52 msgid "permission" msgstr "permission" -#: netbox/users/models/permissions.py:53 netbox/users/models/users.py:47 +#: users/models/permissions.py:53 users/models/users.py:47 msgid "permissions" msgstr "permissions" -#: netbox/users/models/preferences.py:29 netbox/users/models/preferences.py:30 +#: users/models/preferences.py:29 users/models/preferences.py:30 msgid "user preferences" msgstr "préférences de l'utilisateur" -#: netbox/users/models/preferences.py:97 +#: users/models/preferences.py:97 #, python-brace-format msgid "Key '{path}' is a leaf node; cannot assign new keys" msgstr "" "Clé '{path}'est un nœud feuille ; impossible d'attribuer de nouvelles clés" -#: netbox/users/models/preferences.py:109 +#: users/models/preferences.py:109 #, python-brace-format msgid "Key '{path}' is a dictionary; cannot assign a non-dictionary value" msgstr "" "La clé '{path}'est un dictionnaire ; impossible d'attribuer une valeur autre" " que dictionnaire" -#: netbox/users/models/tokens.py:36 +#: users/models/tokens.py:36 msgid "expires" msgstr "expire" -#: netbox/users/models/tokens.py:41 +#: users/models/tokens.py:41 msgid "last used" msgstr "utilisé pour la dernière fois" -#: netbox/users/models/tokens.py:46 +#: users/models/tokens.py:46 msgid "key" msgstr "clé" -#: netbox/users/models/tokens.py:52 +#: users/models/tokens.py:52 msgid "write enabled" msgstr "écriture activée" -#: netbox/users/models/tokens.py:54 +#: users/models/tokens.py:54 msgid "Permit create/update/delete operations using this key" msgstr "" "Autoriser les opérations de création/mise à jour/suppression à l'aide de " "cette clé" -#: netbox/users/models/tokens.py:65 +#: users/models/tokens.py:65 msgid "allowed IPs" msgstr "adresses IP autorisées" -#: netbox/users/models/tokens.py:67 +#: users/models/tokens.py:67 msgid "" "Allowed IPv4/IPv6 networks from where the token can be used. Leave blank for" " no restrictions. Ex: \"10.1.1.0/24, 192.168.10.16/32, 2001:DB8:1::/64\"" @@ -14941,41 +14199,41 @@ msgstr "" "Laissez ce champ vide pour éviter toute restriction. Par exemple : " "« 10.1.1.0/24, 192.168.10.16/32, 2001 : DB 8:1 : /64 »" -#: netbox/users/models/tokens.py:75 +#: users/models/tokens.py:75 msgid "token" msgstr "jeton" -#: netbox/users/models/tokens.py:76 +#: users/models/tokens.py:76 msgid "tokens" msgstr "jetons" -#: netbox/users/models/users.py:57 netbox/vpn/models/crypto.py:42 +#: users/models/users.py:57 vpn/models/crypto.py:42 msgid "group" msgstr "groupe" -#: netbox/users/models/users.py:92 +#: users/models/users.py:92 msgid "user" msgstr "utilisateur" -#: netbox/users/models/users.py:104 +#: users/models/users.py:104 msgid "A user with this username already exists." msgstr "Un utilisateur avec ce nom d'utilisateur existe déjà." -#: netbox/users/tables.py:98 +#: users/tables.py:98 msgid "Custom Actions" msgstr "Actions personnalisées" -#: netbox/utilities/api.py:153 +#: utilities/api.py:153 #, python-brace-format msgid "Related object not found using the provided attributes: {params}" msgstr "Objet associé introuvable à l'aide des attributs fournis : {params}" -#: netbox/utilities/api.py:156 +#: utilities/api.py:156 #, python-brace-format msgid "Multiple objects match the provided attributes: {params}" msgstr "Plusieurs objets correspondent aux attributs fournis : {params}" -#: netbox/utilities/api.py:168 +#: utilities/api.py:168 #, python-brace-format msgid "" "Related objects must be referenced by numeric ID or by dictionary of " @@ -14984,41 +14242,41 @@ msgstr "" "Les objets associés doivent être référencés par un identifiant numérique ou " "par un dictionnaire d'attributs. Valeur non reconnue : {value}" -#: netbox/utilities/api.py:177 +#: utilities/api.py:177 #, python-brace-format msgid "Related object not found using the provided numeric ID: {id}" msgstr "" "Objet associé introuvable à l'aide de l'identifiant numérique fourni : {id}" -#: netbox/utilities/choices.py:19 +#: utilities/choices.py:19 #, python-brace-format msgid "{name} has a key defined but CHOICES is not a list" msgstr "{name} a une clé définie mais CHOICES n'est pas une liste" -#: netbox/utilities/conversion.py:19 +#: utilities/conversion.py:19 msgid "Weight must be a positive number" msgstr "Le poids doit être un nombre positif" -#: netbox/utilities/conversion.py:21 +#: utilities/conversion.py:21 #, python-brace-format msgid "Invalid value '{weight}' for weight (must be a number)" msgstr "Valeur non valide '{weight}'pour le poids (doit être un chiffre)" -#: netbox/utilities/conversion.py:32 netbox/utilities/conversion.py:62 +#: utilities/conversion.py:32 utilities/conversion.py:62 #, python-brace-format msgid "Unknown unit {unit}. Must be one of the following: {valid_units}" msgstr "Unité inconnue {unit}. Doit être l'un des suivants : {valid_units}" -#: netbox/utilities/conversion.py:45 +#: utilities/conversion.py:45 msgid "Length must be a positive number" msgstr "La longueur doit être un nombre positif" -#: netbox/utilities/conversion.py:47 +#: utilities/conversion.py:47 #, python-brace-format msgid "Invalid value '{length}' for length (must be a number)" msgstr "Valeur non valide '{length}'pour la longueur (doit être un chiffre)" -#: netbox/utilities/error_handlers.py:31 +#: utilities/error_handlers.py:31 #, python-brace-format msgid "" "Unable to delete {objects}. {count} dependent objects were " @@ -15027,15 +14285,15 @@ msgstr "" "Impossible de supprimer {objects} car {count} objets en " "dépendent : " -#: netbox/utilities/error_handlers.py:33 +#: utilities/error_handlers.py:33 msgid "More than 50" msgstr "Plus de 50" -#: netbox/utilities/fields.py:30 +#: utilities/fields.py:30 msgid "RGB color in hexadecimal. Example: " msgstr "Couleur RVB en hexadécimal. Exemple :" -#: netbox/utilities/fields.py:159 +#: utilities/fields.py:159 #, python-format msgid "" "%s(%r) is invalid. to_model parameter to CounterCacheField must be a string " @@ -15044,7 +14302,7 @@ msgstr "" "%s(%r) n'est pas valide. Le paramètre to_model de CounterCacheField doit " "être une chaîne au format « app.model »" -#: netbox/utilities/fields.py:169 +#: utilities/fields.py:169 #, python-format msgid "" "%s(%r) is invalid. to_field parameter to CounterCacheField must be a string " @@ -15053,41 +14311,41 @@ msgstr "" "%s(%r) n'est pas valide. Le paramètre to_field de CounterCacheField doit " "être une chaîne au format « field »" -#: netbox/utilities/forms/bulk_import.py:23 +#: utilities/forms/bulk_import.py:23 msgid "Enter object data in CSV, JSON or YAML format." msgstr "Entrez les données de l'objet au format CSV, JSON ou YAML." -#: netbox/utilities/forms/bulk_import.py:36 +#: utilities/forms/bulk_import.py:36 msgid "CSV delimiter" msgstr "Délimiteur CSV" -#: netbox/utilities/forms/bulk_import.py:37 +#: utilities/forms/bulk_import.py:37 msgid "The character which delimits CSV fields. Applies only to CSV format." msgstr "" "Le caractère qui délimite les champs CSV. S'applique uniquement au format " "CSV." -#: netbox/utilities/forms/bulk_import.py:51 +#: utilities/forms/bulk_import.py:51 msgid "Form data must be empty when uploading/selecting a file." msgstr "" "Les données du formulaire doivent être vides lors du chargement/de la " "sélection d'un fichier." -#: netbox/utilities/forms/bulk_import.py:80 +#: utilities/forms/bulk_import.py:80 #, python-brace-format msgid "Unknown data format: {format}" msgstr "Format de données inconnu : {format}" -#: netbox/utilities/forms/bulk_import.py:100 +#: utilities/forms/bulk_import.py:100 msgid "Unable to detect data format. Please specify." msgstr "" "Impossible de détecter le format des données. Veuillez préciser le format." -#: netbox/utilities/forms/bulk_import.py:123 +#: utilities/forms/bulk_import.py:123 msgid "Invalid CSV delimiter" msgstr "Délimiteur CSV non valide" -#: netbox/utilities/forms/bulk_import.py:167 +#: utilities/forms/bulk_import.py:167 msgid "" "Invalid YAML data. Data must be in the form of multiple documents, or a " "single document comprising a list of dictionaries." @@ -15096,7 +14354,7 @@ msgstr "" "plusieurs documents ou d'un seul document comprenant une liste de " "dictionnaires." -#: netbox/utilities/forms/fields/array.py:20 +#: utilities/forms/fields/array.py:20 #, python-brace-format msgid "" "Invalid list ({value}). Must be numeric and ranges must be in ascending " @@ -15105,7 +14363,7 @@ msgstr "" "Liste non valide ({value}). Doit être numérique et les plages doivent être " "classées par ordre croissant." -#: netbox/utilities/forms/fields/array.py:40 +#: utilities/forms/fields/array.py:40 msgid "" "Specify one or more numeric ranges separated by commas. Example: " "1-5,20-30" @@ -15113,7 +14371,7 @@ msgstr "" "Spécifiez une ou plusieurs plages numériques séparées par des virgules. " "Exemple : 1 à 5, 20 à 30" -#: netbox/utilities/forms/fields/array.py:47 +#: utilities/forms/fields/array.py:47 #, python-brace-format msgid "" "Invalid ranges ({value}). Must be a range of integers in ascending order." @@ -15121,18 +14379,17 @@ msgstr "" "Plages non valides ({value}). Il doit s'agir d'une plage d'entiers classés " "par ordre croissant." -#: netbox/utilities/forms/fields/csv.py:44 +#: utilities/forms/fields/csv.py:44 #, python-brace-format msgid "Invalid value for a multiple choice field: {value}" msgstr "Valeur invalide pour un champ à choix multiples : {value}" -#: netbox/utilities/forms/fields/csv.py:57 -#: netbox/utilities/forms/fields/csv.py:78 +#: utilities/forms/fields/csv.py:57 utilities/forms/fields/csv.py:78 #, python-format msgid "Object not found: %(value)s" msgstr "Objet introuvable : %(value)s" -#: netbox/utilities/forms/fields/csv.py:65 +#: utilities/forms/fields/csv.py:65 #, python-brace-format msgid "" "\"{value}\" is not a unique value for this field; multiple objects were " @@ -15141,20 +14398,20 @@ msgstr "" "«{value}» n'est pas une valeur unique pour ce champ ; plusieurs objets ont " "été trouvés" -#: netbox/utilities/forms/fields/csv.py:69 +#: utilities/forms/fields/csv.py:69 #, python-brace-format msgid "\"{field_name}\" is an invalid accessor field name." msgstr "«{field_name}« est un nom de champ d'accès non valide." -#: netbox/utilities/forms/fields/csv.py:101 +#: utilities/forms/fields/csv.py:101 msgid "Object type must be specified as \".\"" msgstr "Le type d'objet doit être spécifié comme «.»" -#: netbox/utilities/forms/fields/csv.py:105 +#: utilities/forms/fields/csv.py:105 msgid "Invalid object type" msgstr "Type d'objet non valide" -#: netbox/utilities/forms/fields/expandable.py:25 +#: utilities/forms/fields/expandable.py:25 msgid "" "Alphanumeric ranges are supported for bulk creation. Mixed cases and types " "within a single range are not supported (example: " @@ -15164,7 +14421,7 @@ msgstr "" "Les cas et les types mixtes au sein d'une même plage ne sont pas pris en " "charge (exemple : [ge, xe] -0/0/ [0-9])." -#: netbox/utilities/forms/fields/expandable.py:46 +#: utilities/forms/fields/expandable.py:46 msgid "" "Specify a numeric range to create multiple IPs.
Example: " "192.0.2.[1,5,100-254]/24" @@ -15172,7 +14429,7 @@ msgstr "" "Spécifiez une plage numérique pour créer plusieurs adresses IP.
Exemple : 192,0,2. [1 500 -254] /24" -#: netbox/utilities/forms/fields/fields.py:31 +#: utilities/forms/fields/fields.py:31 #, python-brace-format msgid "" " Markdown est prise en charge" -#: netbox/utilities/forms/fields/fields.py:48 +#: utilities/forms/fields/fields.py:48 msgid "URL-friendly unique shorthand" msgstr "Identifiant unique utilisable dans les URL" -#: netbox/utilities/forms/fields/fields.py:101 +#: utilities/forms/fields/fields.py:101 msgid "Enter context data in JSON format." msgstr "Entrez les données de contexte en JSON." -#: netbox/utilities/forms/fields/fields.py:124 +#: utilities/forms/fields/fields.py:124 msgid "MAC address must be in EUI-48 format" msgstr "L'adresse MAC doit être au format EUI-48" -#: netbox/utilities/forms/forms.py:52 +#: utilities/forms/forms.py:52 msgid "Use regular expressions" msgstr "Utiliser des expressions rationnelles" -#: netbox/utilities/forms/forms.py:75 +#: utilities/forms/forms.py:75 msgid "" "Numeric ID of an existing object to update (if not creating a new object)" msgstr "" "Identifiant numérique d'un objet existant à mettre à jour (si aucun nouvel " "objet n'est créé)" -#: netbox/utilities/forms/forms.py:92 +#: utilities/forms/forms.py:92 #, python-brace-format msgid "Unrecognized header: {name}" msgstr "En-tête non reconnu : {name}" -#: netbox/utilities/forms/forms.py:118 +#: utilities/forms/forms.py:118 msgid "Available Columns" msgstr "Colonnes disponibles" -#: netbox/utilities/forms/forms.py:126 +#: utilities/forms/forms.py:126 msgid "Selected Columns" msgstr "Colonnes sélectionnées" -#: netbox/utilities/forms/mixins.py:44 +#: utilities/forms/mixins.py:44 msgid "" "This object has been modified since the form was rendered. Please consult " "the object's change log for details." @@ -15225,13 +14482,13 @@ msgstr "" "Cet objet a été modifié depuis le rendu du formulaire. Consultez le journal " "des modifications de l'objet pour plus de détails." -#: netbox/utilities/forms/utils.py:42 netbox/utilities/forms/utils.py:68 -#: netbox/utilities/forms/utils.py:85 netbox/utilities/forms/utils.py:87 +#: utilities/forms/utils.py:42 utilities/forms/utils.py:68 +#: utilities/forms/utils.py:85 utilities/forms/utils.py:87 #, python-brace-format msgid "Range \"{value}\" is invalid." msgstr "La plage «{value}» n'est pas valide." -#: netbox/utilities/forms/utils.py:74 +#: utilities/forms/utils.py:74 #, python-brace-format msgid "" "Invalid range: Ending value ({end}) must be greater than beginning value " @@ -15240,73 +14497,73 @@ msgstr "" "Plage non valide : la valeur de fin ({end}) doit être supérieur à la valeur " "de départ ({begin})." -#: netbox/utilities/forms/utils.py:232 +#: utilities/forms/utils.py:232 #, python-brace-format msgid "Duplicate or conflicting column header for \"{field}\"" msgstr "En-tête de colonne en double ou en conflit : «{field}»" -#: netbox/utilities/forms/utils.py:238 +#: utilities/forms/utils.py:238 #, python-brace-format msgid "Duplicate or conflicting column header for \"{header}\"" msgstr "En-tête de colonne en double ou en conflit : «{header}»" -#: netbox/utilities/forms/utils.py:247 +#: utilities/forms/utils.py:247 #, python-brace-format msgid "Row {row}: Expected {count_expected} columns but found {count_found}" msgstr "" "Rangée {row}: il devrait y avoir {count_expected} colonnes mais il y en a " "{count_found}" -#: netbox/utilities/forms/utils.py:270 +#: utilities/forms/utils.py:270 #, python-brace-format msgid "Unexpected column header \"{field}\" found." msgstr "En-tête de colonne non prévu : «{field}»." -#: netbox/utilities/forms/utils.py:272 +#: utilities/forms/utils.py:272 #, python-brace-format msgid "Column \"{field}\" is not a related object; cannot use dots" msgstr "" "Colonne »{field}« n'est pas un objet apparenté ; ne peut pas utiliser de " "points" -#: netbox/utilities/forms/utils.py:276 +#: utilities/forms/utils.py:276 #, python-brace-format msgid "Invalid related object attribute for column \"{field}\": {to_field}" msgstr "" "Attribut d'objet associé non valide pour la colonne »{field}« : {to_field}" -#: netbox/utilities/forms/utils.py:284 +#: utilities/forms/utils.py:284 #, python-brace-format msgid "Required column header \"{header}\" not found." msgstr "En-tête de colonne obligatoire «{header}» introuvable." -#: netbox/utilities/forms/widgets/apiselect.py:124 +#: utilities/forms/widgets/apiselect.py:124 #, python-brace-format msgid "Missing required value for dynamic query param: '{dynamic_params}'" msgstr "" "Valeur requise manquante pour le paramètre de requête dynamique : " "'{dynamic_params}'" -#: netbox/utilities/forms/widgets/apiselect.py:141 +#: utilities/forms/widgets/apiselect.py:141 #, python-brace-format msgid "Missing required value for static query param: '{static_params}'" msgstr "" "Valeur requise manquante pour le paramètre de requête statique : " "'{static_params}'" -#: netbox/utilities/password_validation.py:13 +#: utilities/password_validation.py:13 msgid "Password must have at least one numeral." msgstr "Le mot de passe doit comporter au moins un chiffre." -#: netbox/utilities/password_validation.py:18 +#: utilities/password_validation.py:18 msgid "Password must have at least one uppercase letter." msgstr "Le mot de passe doit comporter au moins une lettre majuscule." -#: netbox/utilities/password_validation.py:23 +#: utilities/password_validation.py:23 msgid "Password must have at least one lowercase letter." msgstr "Le mot de passe doit comporter au moins une lettre minuscule." -#: netbox/utilities/password_validation.py:27 +#: utilities/password_validation.py:27 msgid "" "Your password must contain at least one numeral, one uppercase letter and " "one lowercase letter." @@ -15314,7 +14571,7 @@ msgstr "" "Votre mot de passe doit contenir au moins un chiffre, une lettre majuscule " "et une lettre minuscule." -#: netbox/utilities/permissions.py:42 +#: utilities/permissions.py:42 #, python-brace-format msgid "" "Invalid permission name: {name}. Must be in the format " @@ -15323,125 +14580,125 @@ msgstr "" "Nom de permission invalide : {name}. Doit être dans le format " "._" -#: netbox/utilities/permissions.py:60 +#: utilities/permissions.py:60 #, python-brace-format msgid "Unknown app_label/model_name for {name}" msgstr "App_label/model_name inconnu pour {name}" -#: netbox/utilities/request.py:76 +#: utilities/request.py:76 #, python-brace-format msgid "Invalid IP address set for {header}: {ip}" msgstr "Adresse IP non valide définie pour {header}: {ip}" -#: netbox/utilities/tables.py:47 +#: utilities/tables.py:47 #, python-brace-format msgid "A column named {name} is already defined for table {table_name}" msgstr "Une colonne nommée {name} est déjà défini pour la table {table_name}" -#: netbox/utilities/templates/builtins/customfield_value.html:30 +#: utilities/templates/builtins/customfield_value.html:30 msgid "Not defined" msgstr "Non défini" -#: netbox/utilities/templates/buttons/bookmark.html:9 +#: utilities/templates/buttons/bookmark.html:9 msgid "Unbookmark" msgstr "Enlever des favoris" -#: netbox/utilities/templates/buttons/bookmark.html:13 +#: utilities/templates/buttons/bookmark.html:13 msgid "Bookmark" msgstr "Marque-page" -#: netbox/utilities/templates/buttons/clone.html:4 +#: utilities/templates/buttons/clone.html:4 msgid "Clone" msgstr "Cloner" -#: netbox/utilities/templates/buttons/export.html:7 +#: utilities/templates/buttons/export.html:7 msgid "Current View" msgstr "Vue actuelle" -#: netbox/utilities/templates/buttons/export.html:8 +#: utilities/templates/buttons/export.html:8 msgid "All Data" msgstr "Toutes les données" -#: netbox/utilities/templates/buttons/export.html:28 +#: utilities/templates/buttons/export.html:28 msgid "Add export template" msgstr "Ajouter un modèle d'exportation" -#: netbox/utilities/templates/buttons/import.html:4 +#: utilities/templates/buttons/import.html:4 msgid "Import" msgstr "Importer" -#: netbox/utilities/templates/buttons/subscribe.html:10 +#: utilities/templates/buttons/subscribe.html:10 msgid "Unsubscribe" msgstr "Désabonnement" -#: netbox/utilities/templates/buttons/subscribe.html:14 +#: utilities/templates/buttons/subscribe.html:14 msgid "Subscribe" msgstr "Souscrire" -#: netbox/utilities/templates/form_helpers/render_field.html:41 +#: utilities/templates/form_helpers/render_field.html:41 msgid "Copy to clipboard" msgstr "Copier dans le presse-papiers" -#: netbox/utilities/templates/form_helpers/render_field.html:57 +#: 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 +#: utilities/templates/form_helpers/render_field.html:70 msgid "Set Null" msgstr "Définir à Null" -#: netbox/utilities/templates/helpers/applied_filters.html:11 +#: utilities/templates/helpers/applied_filters.html:11 msgid "Clear all" msgstr "Tout effacer" -#: netbox/utilities/templates/helpers/table_config_form.html:8 +#: utilities/templates/helpers/table_config_form.html:8 msgid "Table Configuration" msgstr "Configuration de la table" -#: netbox/utilities/templates/helpers/table_config_form.html:31 +#: utilities/templates/helpers/table_config_form.html:31 msgid "Move Up" msgstr "Déplacer vers le haut" -#: netbox/utilities/templates/helpers/table_config_form.html:34 +#: utilities/templates/helpers/table_config_form.html:34 msgid "Move Down" msgstr "Déplacer vers le bas" -#: netbox/utilities/templates/navigation/menu.html:14 +#: utilities/templates/navigation/menu.html:14 msgid "Search…" msgstr "Rechercher..." -#: netbox/utilities/templates/navigation/menu.html:14 +#: utilities/templates/navigation/menu.html:14 msgid "Search NetBox" msgstr "Rechercher dans NetBox" -#: netbox/utilities/templates/widgets/apiselect.html:7 +#: utilities/templates/widgets/apiselect.html:7 msgid "Open selector" msgstr "Ouvrir le sélecteur" -#: netbox/utilities/templates/widgets/markdown_input.html:6 +#: utilities/templates/widgets/markdown_input.html:6 msgid "Write" msgstr "Écrire" -#: netbox/utilities/testing/views.py:632 +#: utilities/testing/views.py:632 msgid "The test must define csv_update_data." msgstr "Le test doit définir csv_update_data." -#: netbox/utilities/validators.py:65 +#: utilities/validators.py:65 #, python-brace-format msgid "{value} is not a valid regular expression." msgstr "{value} n'est pas une expression rationnelle valide." -#: netbox/utilities/views.py:57 +#: utilities/views.py:57 #, python-brace-format msgid "{self.__class__.__name__} must implement get_required_permission()" msgstr "{self.__class__.__name__} doit implémenter get_required_permission()" -#: netbox/utilities/views.py:93 +#: utilities/views.py:93 #, python-brace-format msgid "{class_name} must implement get_required_permission()" msgstr "{class_name} doit implémenter get_required_permission()" -#: netbox/utilities/views.py:117 +#: utilities/views.py:117 #, python-brace-format msgid "" "{class_name} has no queryset defined. ObjectPermissionRequiredMixin may only" @@ -15451,63 +14708,61 @@ msgstr "" "ne peut être utilisé que sur les vues qui définissent un objet QuerySet de " "base" -#: netbox/virtualization/filtersets.py:79 +#: virtualization/filtersets.py:79 msgid "Parent group (ID)" msgstr "Groupe de parents (ID)" -#: netbox/virtualization/filtersets.py:85 +#: virtualization/filtersets.py:85 msgid "Parent group (slug)" msgstr "Groupe de parents (slug)" -#: netbox/virtualization/filtersets.py:89 -#: netbox/virtualization/filtersets.py:141 +#: virtualization/filtersets.py:89 virtualization/filtersets.py:141 msgid "Cluster type (ID)" msgstr "Type de cluster (ID)" -#: netbox/virtualization/filtersets.py:151 -#: netbox/virtualization/filtersets.py:271 +#: virtualization/filtersets.py:151 virtualization/filtersets.py:271 msgid "Cluster (ID)" msgstr "Cluster (ID)" -#: netbox/virtualization/forms/bulk_edit.py:166 -#: netbox/virtualization/models/virtualmachines.py:115 +#: virtualization/forms/bulk_edit.py:166 +#: virtualization/models/virtualmachines.py:115 msgid "vCPUs" msgstr "processeurs virtuels" -#: netbox/virtualization/forms/bulk_edit.py:170 +#: virtualization/forms/bulk_edit.py:170 msgid "Memory (MB)" msgstr "Mémoire (Mo)" -#: netbox/virtualization/forms/bulk_edit.py:174 +#: virtualization/forms/bulk_edit.py:174 msgid "Disk (GB)" msgstr "Disque (Go)" -#: netbox/virtualization/forms/bulk_edit.py:334 -#: netbox/virtualization/forms/filtersets.py:251 +#: virtualization/forms/bulk_edit.py:334 +#: virtualization/forms/filtersets.py:251 msgid "Size (GB)" msgstr "Taille (Go)" -#: netbox/virtualization/forms/bulk_import.py:44 +#: virtualization/forms/bulk_import.py:44 msgid "Type of cluster" msgstr "Type de cluster" -#: netbox/virtualization/forms/bulk_import.py:51 +#: virtualization/forms/bulk_import.py:51 msgid "Assigned cluster group" msgstr "Groupe de clusters attribué" -#: netbox/virtualization/forms/bulk_import.py:96 +#: virtualization/forms/bulk_import.py:96 msgid "Assigned cluster" msgstr "Cluster attribué" -#: netbox/virtualization/forms/bulk_import.py:103 +#: virtualization/forms/bulk_import.py:103 msgid "Assigned device within cluster" msgstr "Appareil attribué au sein du cluster" -#: netbox/virtualization/forms/filtersets.py:183 +#: virtualization/forms/filtersets.py:183 msgid "Serial number" msgstr "Numéro de série" -#: netbox/virtualization/forms/model_forms.py:153 +#: virtualization/forms/model_forms.py:153 #, python-brace-format msgid "" "{device} belongs to a different site ({device_site}) than the cluster " @@ -15516,50 +14771,50 @@ msgstr "" "{device} appartient à un autre site ({device_site}) puis le cluster " "({cluster_site})" -#: netbox/virtualization/forms/model_forms.py:192 +#: virtualization/forms/model_forms.py:192 msgid "Optionally pin this VM to a specific host device within the cluster" msgstr "" "Épinglez éventuellement cette machine virtuelle à un périphérique hôte " "spécifique au sein du cluster" -#: netbox/virtualization/forms/model_forms.py:221 +#: virtualization/forms/model_forms.py:221 msgid "Site/Cluster" msgstr "Site/Cluster" -#: netbox/virtualization/forms/model_forms.py:244 +#: virtualization/forms/model_forms.py:244 msgid "Disk size is managed via the attachment of virtual disks." msgstr "La taille du disque est gérée via la connexion de disques virtuels." -#: netbox/virtualization/forms/model_forms.py:372 -#: netbox/virtualization/tables/virtualmachines.py:111 +#: virtualization/forms/model_forms.py:372 +#: virtualization/tables/virtualmachines.py:111 msgid "Disk" msgstr "Disque" -#: netbox/virtualization/models/clusters.py:25 +#: virtualization/models/clusters.py:25 msgid "cluster type" msgstr "type de cluster" -#: netbox/virtualization/models/clusters.py:26 +#: virtualization/models/clusters.py:26 msgid "cluster types" msgstr "types de clusters" -#: netbox/virtualization/models/clusters.py:45 +#: virtualization/models/clusters.py:45 msgid "cluster group" msgstr "groupe de clusters" -#: netbox/virtualization/models/clusters.py:46 +#: virtualization/models/clusters.py:46 msgid "cluster groups" msgstr "groupes de clusters" -#: netbox/virtualization/models/clusters.py:121 +#: virtualization/models/clusters.py:121 msgid "cluster" msgstr "cluster" -#: netbox/virtualization/models/clusters.py:122 +#: virtualization/models/clusters.py:122 msgid "clusters" msgstr "clusters" -#: netbox/virtualization/models/clusters.py:141 +#: virtualization/models/clusters.py:141 #, python-brace-format msgid "" "{count} devices are assigned as hosts for this cluster but are not in site " @@ -15568,44 +14823,44 @@ msgstr "" "{count} les appareils sont affectés en tant qu'hôtes à ce cluster mais ne " "sont pas sur le site {site}" -#: netbox/virtualization/models/virtualmachines.py:123 +#: virtualization/models/virtualmachines.py:123 msgid "memory (MB)" msgstr "mémoire (Mo)" -#: netbox/virtualization/models/virtualmachines.py:128 +#: virtualization/models/virtualmachines.py:128 msgid "disk (MB)" msgstr "disque (Mo)" -#: netbox/virtualization/models/virtualmachines.py:166 +#: virtualization/models/virtualmachines.py:166 msgid "Virtual machine name must be unique per cluster." msgstr "Le nom de la machine virtuelle doit être unique par cluster." -#: netbox/virtualization/models/virtualmachines.py:169 +#: virtualization/models/virtualmachines.py:169 msgid "virtual machine" msgstr "machine virtuelle" -#: netbox/virtualization/models/virtualmachines.py:170 +#: virtualization/models/virtualmachines.py:170 msgid "virtual machines" msgstr "machines virtuelles" -#: netbox/virtualization/models/virtualmachines.py:184 +#: virtualization/models/virtualmachines.py:184 msgid "A virtual machine must be assigned to a site and/or cluster." msgstr "" "Une machine virtuelle doit être attribuée à un site et/ou à un cluster." -#: netbox/virtualization/models/virtualmachines.py:191 +#: virtualization/models/virtualmachines.py:191 #, python-brace-format msgid "" "The selected cluster ({cluster}) is not assigned to this site ({site})." msgstr "" "Le cluster sélectionné ({cluster}) n'est pas attribué à ce site ({site})." -#: netbox/virtualization/models/virtualmachines.py:198 +#: virtualization/models/virtualmachines.py:198 msgid "Must specify a cluster when assigning a host device." msgstr "" "Il faut indiquer un cluster lors de l'attribution d'un périphérique hôte." -#: netbox/virtualization/models/virtualmachines.py:203 +#: virtualization/models/virtualmachines.py:203 #, python-brace-format msgid "" "The selected device ({device}) is not assigned to this cluster ({cluster})." @@ -15613,7 +14868,7 @@ msgstr "" "L'appareil sélectionné ({device}) n'est pas affecté à ce cluster " "({cluster})." -#: netbox/virtualization/models/virtualmachines.py:215 +#: virtualization/models/virtualmachines.py:215 #, python-brace-format msgid "" "The specified disk size ({size}) must match the aggregate size of assigned " @@ -15622,19 +14877,19 @@ msgstr "" "La taille de disque indiquée ({size}) doit correspondre à la taille agrégée " "des disques virtuels assignés ({total_size})." -#: netbox/virtualization/models/virtualmachines.py:229 +#: virtualization/models/virtualmachines.py:229 #, python-brace-format msgid "Must be an IPv{family} address. ({ip} is an IPv{version} address.)" msgstr "" "Doit être une address IPv{family}. ({ip} est une addresse IPv{version}.)" -#: netbox/virtualization/models/virtualmachines.py:238 +#: virtualization/models/virtualmachines.py:238 #, python-brace-format msgid "The specified IP address ({ip}) is not assigned to this VM." msgstr "" "L'adresse IP indiquée ({ip}) n'est pas attribué à cette machine virtuelle." -#: netbox/virtualization/models/virtualmachines.py:396 +#: virtualization/models/virtualmachines.py:396 #, python-brace-format msgid "" "The selected parent interface ({parent}) belongs to a different virtual " @@ -15643,7 +14898,7 @@ msgstr "" "L'interface parent sélectionnée ({parent}) appartient à une autre machine " "virtuelle ({virtual_machine})." -#: netbox/virtualization/models/virtualmachines.py:411 +#: virtualization/models/virtualmachines.py:411 #, python-brace-format msgid "" "The selected bridge interface ({bridge}) belongs to a different virtual " @@ -15652,7 +14907,7 @@ msgstr "" "L'interface de pont sélectionnée ({bridge}) appartient à une autre machine " "virtuelle ({virtual_machine})." -#: netbox/virtualization/models/virtualmachines.py:422 +#: virtualization/models/virtualmachines.py:422 #, python-brace-format msgid "" "The untagged VLAN ({untagged_vlan}) must belong to the same site as the " @@ -15661,402 +14916,395 @@ msgstr "" "Le VLAN non taggé ({untagged_vlan}) doit appartenir au même site que la " "machine virtuelle parente de l'interface, ou il doit être global." -#: netbox/virtualization/models/virtualmachines.py:434 +#: virtualization/models/virtualmachines.py:434 msgid "size (MB)" msgstr "taille (Mo)" -#: netbox/virtualization/models/virtualmachines.py:438 +#: virtualization/models/virtualmachines.py:438 msgid "virtual disk" msgstr "disque virtuel" -#: netbox/virtualization/models/virtualmachines.py:439 +#: virtualization/models/virtualmachines.py:439 msgid "virtual disks" msgstr "disques virtuels" -#: netbox/virtualization/views.py:275 +#: virtualization/views.py:275 #, python-brace-format msgid "Added {count} devices to cluster {cluster}" msgstr "Ajouté {count} appareils à mettre en cluster {cluster}" -#: netbox/virtualization/views.py:310 +#: virtualization/views.py:310 #, python-brace-format msgid "Removed {count} devices from cluster {cluster}" msgstr "Supprimé {count} appareils du cluster {cluster}" -#: netbox/vpn/choices.py:31 +#: vpn/choices.py:31 msgid "IPsec - Transport" msgstr "IPSec - Transport" -#: netbox/vpn/choices.py:32 +#: vpn/choices.py:32 msgid "IPsec - Tunnel" msgstr "IPsec - Tunnel" -#: netbox/vpn/choices.py:33 +#: vpn/choices.py:33 msgid "IP-in-IP" msgstr "IP dans IP" -#: netbox/vpn/choices.py:34 +#: vpn/choices.py:34 msgid "GRE" msgstr "GRE" -#: netbox/vpn/choices.py:56 +#: vpn/choices.py:56 msgid "Hub" msgstr "Hub" -#: netbox/vpn/choices.py:57 +#: vpn/choices.py:57 msgid "Spoke" msgstr "Spoke" -#: netbox/vpn/choices.py:80 +#: vpn/choices.py:80 msgid "Aggressive" msgstr "Agressif" -#: netbox/vpn/choices.py:81 +#: vpn/choices.py:81 msgid "Main" msgstr "Principal" -#: netbox/vpn/choices.py:92 +#: vpn/choices.py:92 msgid "Pre-shared keys" msgstr "Clés pré-partagées" -#: netbox/vpn/choices.py:93 +#: vpn/choices.py:93 msgid "Certificates" msgstr "Certificats" -#: netbox/vpn/choices.py:94 +#: vpn/choices.py:94 msgid "RSA signatures" msgstr "Signatures RSA" -#: netbox/vpn/choices.py:95 +#: vpn/choices.py:95 msgid "DSA signatures" msgstr "Signatures DSA" -#: netbox/vpn/choices.py:178 netbox/vpn/choices.py:179 -#: netbox/vpn/choices.py:180 netbox/vpn/choices.py:181 -#: netbox/vpn/choices.py:182 netbox/vpn/choices.py:183 -#: netbox/vpn/choices.py:184 netbox/vpn/choices.py:185 -#: netbox/vpn/choices.py:186 netbox/vpn/choices.py:187 -#: netbox/vpn/choices.py:188 netbox/vpn/choices.py:189 -#: netbox/vpn/choices.py:190 netbox/vpn/choices.py:191 -#: netbox/vpn/choices.py:192 netbox/vpn/choices.py:193 -#: netbox/vpn/choices.py:194 netbox/vpn/choices.py:195 -#: netbox/vpn/choices.py:196 netbox/vpn/choices.py:197 -#: netbox/vpn/choices.py:198 netbox/vpn/choices.py:199 -#: netbox/vpn/choices.py:200 netbox/vpn/choices.py:201 +#: vpn/choices.py:178 vpn/choices.py:179 vpn/choices.py:180 vpn/choices.py:181 +#: vpn/choices.py:182 vpn/choices.py:183 vpn/choices.py:184 vpn/choices.py:185 +#: vpn/choices.py:186 vpn/choices.py:187 vpn/choices.py:188 vpn/choices.py:189 +#: vpn/choices.py:190 vpn/choices.py:191 vpn/choices.py:192 vpn/choices.py:193 +#: vpn/choices.py:194 vpn/choices.py:195 vpn/choices.py:196 vpn/choices.py:197 +#: vpn/choices.py:198 vpn/choices.py:199 vpn/choices.py:200 vpn/choices.py:201 #, python-brace-format msgid "Group {n}" msgstr "Groupe {n}" -#: netbox/vpn/choices.py:243 +#: vpn/choices.py:243 msgid "Ethernet Private LAN" msgstr "Réseau local privé Ethernet" -#: netbox/vpn/choices.py:244 +#: vpn/choices.py:244 msgid "Ethernet Virtual Private LAN" msgstr "Réseau local privé virtuel Ethernet" -#: netbox/vpn/choices.py:247 +#: vpn/choices.py:247 msgid "Ethernet Private Tree" msgstr "Arbre privé Ethernet" -#: netbox/vpn/choices.py:248 +#: vpn/choices.py:248 msgid "Ethernet Virtual Private Tree" msgstr "Arbre privé virtuel Ethernet" -#: netbox/vpn/filtersets.py:41 +#: vpn/filtersets.py:41 msgid "Tunnel group (ID)" msgstr "Groupe de tunnels (ID)" -#: netbox/vpn/filtersets.py:47 +#: vpn/filtersets.py:47 msgid "Tunnel group (slug)" msgstr "Groupe de tunnels (slug)" -#: netbox/vpn/filtersets.py:54 +#: vpn/filtersets.py:54 msgid "IPSec profile (ID)" msgstr "profil IPSec (ID)" -#: netbox/vpn/filtersets.py:60 +#: vpn/filtersets.py:60 msgid "IPSec profile (name)" msgstr "Profil IPSec (nom)" -#: netbox/vpn/filtersets.py:81 +#: vpn/filtersets.py:81 msgid "Tunnel (ID)" msgstr "Tunnel (ID)" -#: netbox/vpn/filtersets.py:87 +#: vpn/filtersets.py:87 msgid "Tunnel (name)" msgstr "Tunnel (nom)" -#: netbox/vpn/filtersets.py:118 +#: vpn/filtersets.py:118 msgid "Outside IP (ID)" msgstr "IP externe (ID)" -#: netbox/vpn/filtersets.py:130 netbox/vpn/filtersets.py:263 +#: vpn/filtersets.py:130 vpn/filtersets.py:263 msgid "IKE policy (ID)" msgstr "Politique IKE (ID)" -#: netbox/vpn/filtersets.py:136 netbox/vpn/filtersets.py:269 +#: vpn/filtersets.py:136 vpn/filtersets.py:269 msgid "IKE policy (name)" msgstr "Politique IKE (nom)" -#: netbox/vpn/filtersets.py:200 netbox/vpn/filtersets.py:273 +#: vpn/filtersets.py:200 vpn/filtersets.py:273 msgid "IPSec policy (ID)" msgstr "Politique IPSec (ID)" -#: netbox/vpn/filtersets.py:206 netbox/vpn/filtersets.py:279 +#: vpn/filtersets.py:206 vpn/filtersets.py:279 msgid "IPSec policy (name)" msgstr "Politique IPSec (nom)" -#: netbox/vpn/filtersets.py:348 +#: vpn/filtersets.py:348 msgid "L2VPN (slug)" msgstr "L2VPN (slug)" -#: netbox/vpn/filtersets.py:412 +#: vpn/filtersets.py:412 msgid "VM Interface (ID)" msgstr "Interface de machine virtuelle (ID)" -#: netbox/vpn/filtersets.py:418 +#: vpn/filtersets.py:418 msgid "VLAN (name)" msgstr "VLAN (nom)" -#: netbox/vpn/forms/bulk_edit.py:45 netbox/vpn/forms/bulk_import.py:42 -#: netbox/vpn/forms/filtersets.py:54 +#: vpn/forms/bulk_edit.py:45 vpn/forms/bulk_import.py:42 +#: vpn/forms/filtersets.py:54 msgid "Tunnel group" msgstr "Groupe de tunnels" -#: netbox/vpn/forms/bulk_edit.py:117 netbox/vpn/models/crypto.py:47 +#: vpn/forms/bulk_edit.py:117 vpn/models/crypto.py:47 msgid "SA lifetime" msgstr "Durée de vie de l'association de sécurité (SA)" -#: netbox/vpn/forms/bulk_edit.py:151 netbox/wireless/forms/bulk_edit.py:79 -#: netbox/wireless/forms/bulk_edit.py:126 -#: netbox/wireless/forms/filtersets.py:64 -#: netbox/wireless/forms/filtersets.py:98 +#: vpn/forms/bulk_edit.py:151 wireless/forms/bulk_edit.py:79 +#: wireless/forms/bulk_edit.py:126 wireless/forms/filtersets.py:64 +#: wireless/forms/filtersets.py:98 msgid "Pre-shared key" msgstr "Clé pré-partagée" -#: netbox/vpn/forms/bulk_edit.py:237 netbox/vpn/forms/bulk_import.py:239 -#: netbox/vpn/forms/filtersets.py:199 netbox/vpn/forms/model_forms.py:370 -#: netbox/vpn/models/crypto.py:104 +#: vpn/forms/bulk_edit.py:237 vpn/forms/bulk_import.py:239 +#: vpn/forms/filtersets.py:199 vpn/forms/model_forms.py:370 +#: vpn/models/crypto.py:104 msgid "IKE policy" msgstr "Politique IKE" -#: netbox/vpn/forms/bulk_edit.py:242 netbox/vpn/forms/bulk_import.py:244 -#: netbox/vpn/forms/filtersets.py:204 netbox/vpn/forms/model_forms.py:374 -#: netbox/vpn/models/crypto.py:209 +#: vpn/forms/bulk_edit.py:242 vpn/forms/bulk_import.py:244 +#: vpn/forms/filtersets.py:204 vpn/forms/model_forms.py:374 +#: vpn/models/crypto.py:209 msgid "IPSec policy" msgstr "Politique IPSec" -#: netbox/vpn/forms/bulk_import.py:50 +#: vpn/forms/bulk_import.py:50 msgid "Tunnel encapsulation" msgstr "Encapsulation du tunnel" -#: netbox/vpn/forms/bulk_import.py:83 +#: vpn/forms/bulk_import.py:83 msgid "Operational role" msgstr "Rôle opérationnel" -#: netbox/vpn/forms/bulk_import.py:90 +#: vpn/forms/bulk_import.py:90 msgid "Parent device of assigned interface" msgstr "Appareil parent à l'interface attribuée" -#: netbox/vpn/forms/bulk_import.py:97 +#: vpn/forms/bulk_import.py:97 msgid "Parent VM of assigned interface" msgstr "Machine virtuelle parente de l'interface attribuée" -#: netbox/vpn/forms/bulk_import.py:104 +#: vpn/forms/bulk_import.py:104 msgid "Device or virtual machine interface" msgstr "Interface de périphérique ou de machine virtuelle" -#: netbox/vpn/forms/bulk_import.py:183 +#: vpn/forms/bulk_import.py:183 msgid "IKE proposal(s)" msgstr "Proposition(s) de l'IKE" -#: netbox/vpn/forms/bulk_import.py:215 netbox/vpn/models/crypto.py:197 +#: vpn/forms/bulk_import.py:215 vpn/models/crypto.py:197 msgid "Diffie-Hellman group for Perfect Forward Secrecy" msgstr "Groupe Diffie-Hellman PFS (Perfect Forward Secrecy)" -#: netbox/vpn/forms/bulk_import.py:222 +#: vpn/forms/bulk_import.py:222 msgid "IPSec proposal(s)" msgstr "Proposition(s) IPSec" -#: netbox/vpn/forms/bulk_import.py:236 +#: vpn/forms/bulk_import.py:236 msgid "IPSec protocol" msgstr "Protocole IPSec" -#: netbox/vpn/forms/bulk_import.py:266 +#: vpn/forms/bulk_import.py:266 msgid "L2VPN type" msgstr "Type de VPN L2" -#: netbox/vpn/forms/bulk_import.py:287 +#: vpn/forms/bulk_import.py:287 msgid "Parent device (for interface)" msgstr "Appareil parent (pour interface)" -#: netbox/vpn/forms/bulk_import.py:294 +#: vpn/forms/bulk_import.py:294 msgid "Parent virtual machine (for interface)" msgstr "Machine virtuelle parente (pour l'interface)" -#: netbox/vpn/forms/bulk_import.py:301 +#: vpn/forms/bulk_import.py:301 msgid "Assigned interface (device or VM)" msgstr "Interface attribuée (appareil ou machine virtuelle)" -#: netbox/vpn/forms/bulk_import.py:334 +#: vpn/forms/bulk_import.py:334 msgid "Cannot import device and VM interface terminations simultaneously." msgstr "" "Impossible d'importer simultanément les terminaisons de l'interface du " "périphérique et de la machine virtuelle." -#: netbox/vpn/forms/bulk_import.py:336 +#: vpn/forms/bulk_import.py:336 msgid "Each termination must specify either an interface or a VLAN." msgstr "Chaque terminaison doit spécifier une interface ou un VLAN." -#: netbox/vpn/forms/bulk_import.py:338 +#: vpn/forms/bulk_import.py:338 msgid "Cannot assign both an interface and a VLAN." msgstr "Impossible d'attribuer à la fois une interface et un VLAN." -#: netbox/vpn/forms/filtersets.py:130 +#: vpn/forms/filtersets.py:130 msgid "IKE version" msgstr "Version IKE" -#: netbox/vpn/forms/filtersets.py:142 netbox/vpn/forms/filtersets.py:175 -#: netbox/vpn/forms/model_forms.py:298 netbox/vpn/forms/model_forms.py:334 +#: vpn/forms/filtersets.py:142 vpn/forms/filtersets.py:175 +#: vpn/forms/model_forms.py:298 vpn/forms/model_forms.py:334 msgid "Proposal" msgstr "Proposition" -#: netbox/vpn/forms/filtersets.py:251 +#: vpn/forms/filtersets.py:251 msgid "Assigned Object Type" msgstr "Type d'objet attribué" -#: netbox/vpn/forms/model_forms.py:95 netbox/vpn/forms/model_forms.py:130 -#: netbox/vpn/forms/model_forms.py:240 netbox/vpn/tables/tunnels.py:91 +#: vpn/forms/model_forms.py:95 vpn/forms/model_forms.py:130 +#: vpn/forms/model_forms.py:240 vpn/tables/tunnels.py:91 msgid "Tunnel interface" msgstr "Interface de tunnel" -#: netbox/vpn/forms/model_forms.py:150 +#: vpn/forms/model_forms.py:150 msgid "First Termination" msgstr "Première extrémité" -#: netbox/vpn/forms/model_forms.py:153 +#: vpn/forms/model_forms.py:153 msgid "Second Termination" msgstr "Deuxième extrémité" -#: netbox/vpn/forms/model_forms.py:197 +#: vpn/forms/model_forms.py:197 msgid "This parameter is required when defining a termination." msgstr "Ce paramètre est obligatoire lors de la définition d'une terminaison." -#: netbox/vpn/forms/model_forms.py:320 netbox/vpn/forms/model_forms.py:356 +#: vpn/forms/model_forms.py:320 vpn/forms/model_forms.py:356 msgid "Policy" msgstr "Politique" -#: netbox/vpn/forms/model_forms.py:487 +#: vpn/forms/model_forms.py:487 msgid "A termination must specify an interface or VLAN." msgstr "Une terminaison doit spécifier une interface ou un VLAN." -#: netbox/vpn/forms/model_forms.py:489 +#: vpn/forms/model_forms.py:489 msgid "" "A termination can only have one terminating object (an interface or VLAN)." msgstr "" "Une terminaison ne peut avoir qu'un seul objet de terminaison (une interface" " ou un VLAN)." -#: netbox/vpn/models/crypto.py:33 +#: vpn/models/crypto.py:33 msgid "encryption algorithm" msgstr "algorithme de chiffrement" -#: netbox/vpn/models/crypto.py:37 +#: vpn/models/crypto.py:37 msgid "authentication algorithm" msgstr "algorithme d'authentification" -#: netbox/vpn/models/crypto.py:44 +#: vpn/models/crypto.py:44 msgid "Diffie-Hellman group ID" msgstr "ID de groupe Diffie-Hellman" -#: netbox/vpn/models/crypto.py:50 +#: vpn/models/crypto.py:50 msgid "Security association lifetime (in seconds)" msgstr "Durée de vie de l'association de sécurité (en secondes)" -#: netbox/vpn/models/crypto.py:59 +#: vpn/models/crypto.py:59 msgid "IKE proposal" msgstr "Proposal IKE" -#: netbox/vpn/models/crypto.py:60 +#: vpn/models/crypto.py:60 msgid "IKE proposals" msgstr "Proposals IKE" -#: netbox/vpn/models/crypto.py:76 +#: vpn/models/crypto.py:76 msgid "version" msgstr "version" -#: netbox/vpn/models/crypto.py:88 netbox/vpn/models/crypto.py:190 +#: vpn/models/crypto.py:88 vpn/models/crypto.py:190 msgid "proposals" msgstr "propositions" -#: netbox/vpn/models/crypto.py:91 netbox/wireless/models.py:39 +#: vpn/models/crypto.py:91 wireless/models.py:39 msgid "pre-shared key" msgstr "clé pré-partagée" -#: netbox/vpn/models/crypto.py:105 +#: vpn/models/crypto.py:105 msgid "IKE policies" msgstr "Politiques IKE" -#: netbox/vpn/models/crypto.py:118 +#: vpn/models/crypto.py:118 msgid "Mode is required for selected IKE version" msgstr "Le mode est requis pour la version IKE sélectionnée" -#: netbox/vpn/models/crypto.py:122 +#: vpn/models/crypto.py:122 msgid "Mode cannot be used for selected IKE version" msgstr "Le mode ne peut pas être utilisé pour la version IKE sélectionnée" -#: netbox/vpn/models/crypto.py:136 +#: vpn/models/crypto.py:136 msgid "encryption" msgstr "chiffrement" -#: netbox/vpn/models/crypto.py:141 +#: vpn/models/crypto.py:141 msgid "authentication" msgstr "authentification" -#: netbox/vpn/models/crypto.py:149 +#: vpn/models/crypto.py:149 msgid "Security association lifetime (seconds)" msgstr "Durée de vie de l'association de sécurité (secondes)" -#: netbox/vpn/models/crypto.py:155 +#: vpn/models/crypto.py:155 msgid "Security association lifetime (in kilobytes)" msgstr "Durée de vie de l'association de sécurité (en kilo-octets)" -#: netbox/vpn/models/crypto.py:164 +#: vpn/models/crypto.py:164 msgid "IPSec proposal" msgstr "Proposal IPSec" -#: netbox/vpn/models/crypto.py:165 +#: vpn/models/crypto.py:165 msgid "IPSec proposals" msgstr "Proposals IPSec" -#: netbox/vpn/models/crypto.py:178 +#: vpn/models/crypto.py:178 msgid "Encryption and/or authentication algorithm must be defined" msgstr "" "Un algorithme de chiffrement et/ou d'authentification doit être défini" -#: netbox/vpn/models/crypto.py:210 +#: vpn/models/crypto.py:210 msgid "IPSec policies" msgstr "Politiques IPSec" -#: netbox/vpn/models/crypto.py:251 +#: vpn/models/crypto.py:251 msgid "IPSec profiles" msgstr "Profils IPSec" -#: netbox/vpn/models/l2vpn.py:116 +#: vpn/models/l2vpn.py:116 msgid "L2VPN termination" msgstr "Terminaison L2VPN" -#: netbox/vpn/models/l2vpn.py:117 +#: vpn/models/l2vpn.py:117 msgid "L2VPN terminations" msgstr "Terminaisons L2VPN" -#: netbox/vpn/models/l2vpn.py:135 +#: vpn/models/l2vpn.py:135 #, python-brace-format msgid "L2VPN Termination already assigned ({assigned_object})" msgstr "Terminaison L2VPN déjà attribuée ({assigned_object})" -#: netbox/vpn/models/l2vpn.py:147 +#: vpn/models/l2vpn.py:147 #, python-brace-format msgid "" "{l2vpn_type} L2VPNs cannot have more than two terminations; found " @@ -16065,195 +15313,187 @@ msgstr "" "{l2vpn_type} Les L2VPN ne peuvent pas avoir plus de deux terminaisons ; " "trouvé {terminations_count} déjà défini." -#: netbox/vpn/models/tunnels.py:26 +#: vpn/models/tunnels.py:26 msgid "tunnel group" msgstr "groupe de tunnels" -#: netbox/vpn/models/tunnels.py:27 +#: vpn/models/tunnels.py:27 msgid "tunnel groups" msgstr "groupes de tunnels" -#: netbox/vpn/models/tunnels.py:53 +#: vpn/models/tunnels.py:53 msgid "encapsulation" msgstr "encapsulation" -#: netbox/vpn/models/tunnels.py:72 +#: vpn/models/tunnels.py:72 msgid "tunnel ID" msgstr "ID du tunnel" -#: netbox/vpn/models/tunnels.py:94 +#: vpn/models/tunnels.py:94 msgid "tunnel" msgstr "tunnel" -#: netbox/vpn/models/tunnels.py:95 +#: vpn/models/tunnels.py:95 msgid "tunnels" msgstr "tunnels" -#: netbox/vpn/models/tunnels.py:153 +#: vpn/models/tunnels.py:153 msgid "An object may be terminated to only one tunnel at a time." msgstr "Un objet ne peut être l'extrémité que d'un seul tunnel." -#: netbox/vpn/models/tunnels.py:156 +#: vpn/models/tunnels.py:156 msgid "tunnel termination" msgstr "terminaison du tunnel" -#: netbox/vpn/models/tunnels.py:157 +#: vpn/models/tunnels.py:157 msgid "tunnel terminations" msgstr "terminaisons de tunnels" -#: netbox/vpn/models/tunnels.py:174 +#: vpn/models/tunnels.py:174 #, python-brace-format msgid "{name} is already attached to a tunnel ({tunnel})." msgstr "{name} est déjà rattaché à un tunnel ({tunnel})." -#: netbox/vpn/tables/crypto.py:22 +#: vpn/tables/crypto.py:22 msgid "Authentication Method" msgstr "Méthode d'authentification" -#: netbox/vpn/tables/crypto.py:25 netbox/vpn/tables/crypto.py:97 +#: vpn/tables/crypto.py:25 vpn/tables/crypto.py:97 msgid "Encryption Algorithm" msgstr "Algorithme de chiffrement" -#: netbox/vpn/tables/crypto.py:28 netbox/vpn/tables/crypto.py:100 +#: vpn/tables/crypto.py:28 vpn/tables/crypto.py:100 msgid "Authentication Algorithm" msgstr "Algorithme d'authentification" -#: netbox/vpn/tables/crypto.py:34 +#: vpn/tables/crypto.py:34 msgid "SA Lifetime" msgstr "Durée de vie du SA" -#: netbox/vpn/tables/crypto.py:71 +#: vpn/tables/crypto.py:71 msgid "Pre-shared Key" msgstr "Clé pré-partagée" -#: netbox/vpn/tables/crypto.py:103 +#: vpn/tables/crypto.py:103 msgid "SA Lifetime (Seconds)" msgstr "Durée de vie de l'association de sécurité (secondes)" -#: netbox/vpn/tables/crypto.py:106 +#: vpn/tables/crypto.py:106 msgid "SA Lifetime (KB)" msgstr "Durée de vie de l'association de sécurité (Ko)" -#: netbox/vpn/tables/l2vpn.py:69 +#: vpn/tables/l2vpn.py:69 msgid "Object Parent" msgstr "Parent de l'objet" -#: netbox/vpn/tables/l2vpn.py:74 +#: vpn/tables/l2vpn.py:74 msgid "Object Site" msgstr "Site de l'objet" -#: netbox/wireless/choices.py:11 +#: wireless/choices.py:11 msgid "Access point" msgstr "Point d'accès" -#: netbox/wireless/choices.py:12 +#: wireless/choices.py:12 msgid "Station" msgstr "Appareil sans-fil" -#: netbox/wireless/choices.py:467 +#: wireless/choices.py:467 msgid "Open" msgstr "Ouvert" -#: netbox/wireless/choices.py:469 +#: wireless/choices.py:469 msgid "WPA Personal (PSK)" msgstr "WPA Personnel (PSK)" -#: netbox/wireless/choices.py:470 +#: wireless/choices.py:470 msgid "WPA Enterprise" msgstr "WPA Entreprise" -#: netbox/wireless/forms/bulk_edit.py:73 -#: netbox/wireless/forms/bulk_edit.py:120 -#: netbox/wireless/forms/bulk_import.py:68 -#: netbox/wireless/forms/bulk_import.py:71 -#: netbox/wireless/forms/bulk_import.py:110 -#: netbox/wireless/forms/bulk_import.py:113 -#: netbox/wireless/forms/filtersets.py:59 -#: netbox/wireless/forms/filtersets.py:93 +#: wireless/forms/bulk_edit.py:73 wireless/forms/bulk_edit.py:120 +#: wireless/forms/bulk_import.py:68 wireless/forms/bulk_import.py:71 +#: wireless/forms/bulk_import.py:110 wireless/forms/bulk_import.py:113 +#: wireless/forms/filtersets.py:59 wireless/forms/filtersets.py:93 msgid "Authentication cipher" msgstr "Algorithme de chiffrement pour l'authentification" -#: netbox/wireless/forms/bulk_edit.py:134 -#: netbox/wireless/forms/bulk_import.py:116 -#: netbox/wireless/forms/bulk_import.py:119 -#: netbox/wireless/forms/filtersets.py:106 +#: wireless/forms/bulk_edit.py:134 wireless/forms/bulk_import.py:116 +#: wireless/forms/bulk_import.py:119 wireless/forms/filtersets.py:106 msgid "Distance unit" msgstr "Unité de distance" -#: netbox/wireless/forms/bulk_import.py:52 +#: wireless/forms/bulk_import.py:52 msgid "Bridged VLAN" msgstr "VLAN bridgé" -#: netbox/wireless/forms/bulk_import.py:89 -#: netbox/wireless/tables/wirelesslink.py:28 +#: wireless/forms/bulk_import.py:89 wireless/tables/wirelesslink.py:28 msgid "Interface A" msgstr "Interface A" -#: netbox/wireless/forms/bulk_import.py:93 -#: netbox/wireless/tables/wirelesslink.py:37 +#: wireless/forms/bulk_import.py:93 wireless/tables/wirelesslink.py:37 msgid "Interface B" msgstr "Interface B" -#: netbox/wireless/forms/model_forms.py:161 +#: wireless/forms/model_forms.py:161 msgid "Side B" msgstr "Côté B" -#: netbox/wireless/models.py:31 +#: wireless/models.py:31 msgid "authentication cipher" msgstr "algorithme de chiffrement pour l'authentification" -#: netbox/wireless/models.py:69 +#: wireless/models.py:69 msgid "wireless LAN group" msgstr "groupe réseaux sans fil" -#: netbox/wireless/models.py:70 +#: wireless/models.py:70 msgid "wireless LAN groups" msgstr "groupes réseaux sans fil" -#: netbox/wireless/models.py:116 +#: wireless/models.py:116 msgid "wireless LAN" msgstr "Réseau sans fil" -#: netbox/wireless/models.py:144 +#: wireless/models.py:144 msgid "interface A" msgstr "interface A" -#: netbox/wireless/models.py:151 +#: wireless/models.py:151 msgid "interface B" msgstr "interface B" -#: netbox/wireless/models.py:165 +#: wireless/models.py:165 msgid "distance" msgstr "distance" -#: netbox/wireless/models.py:172 +#: wireless/models.py:172 msgid "distance unit" msgstr "unité de distance" -#: netbox/wireless/models.py:219 +#: wireless/models.py:219 msgid "wireless link" msgstr "liaison sans fil" -#: netbox/wireless/models.py:220 +#: wireless/models.py:220 msgid "wireless links" msgstr "liaisons sans fil" -#: netbox/wireless/models.py:236 +#: wireless/models.py:236 msgid "Must specify a unit when setting a wireless distance" msgstr "" "Vous devez spécifier une unité lors du réglage d'une distance sans fil" -#: netbox/wireless/models.py:242 netbox/wireless/models.py:248 +#: wireless/models.py:242 wireless/models.py:248 #, python-brace-format msgid "{type} is not a wireless interface." msgstr "{type} n'est pas une interface sans fil." -#: netbox/wireless/utils.py:16 +#: wireless/utils.py:16 #, python-brace-format msgid "Invalid channel value: {channel}" msgstr "Valeur de canal non valide : {channel}" -#: netbox/wireless/utils.py:26 +#: wireless/utils.py:26 #, python-brace-format msgid "Invalid channel attribute: {name}" msgstr "Attribut de canal non valide : {name}" diff --git a/netbox/translations/it/LC_MESSAGES/django.po b/netbox/translations/it/LC_MESSAGES/django.po index 2619db447..af1ed0224 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: 2024-10-12 05:02+0000\n" +"POT-Creation-Date: 2024-10-28 19:20+0000\n" "PO-Revision-Date: 2023-10-30 17:48+0000\n" "Last-Translator: Jeremy Stretch, 2024\n" "Language-Team: Italian (https://app.transifex.com/netbox-community/teams/178115/it/)\n" @@ -24,2146 +24,1877 @@ msgstr "" "Language: it\n" "Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" -#: netbox/account/tables.py:27 netbox/templates/account/token.html:22 -#: netbox/templates/users/token.html:17 netbox/users/forms/bulk_import.py:39 -#: netbox/users/forms/model_forms.py:112 +#: account/tables.py:27 templates/account/token.html:22 +#: templates/users/token.html:17 users/forms/bulk_import.py:39 +#: users/forms/model_forms.py:112 msgid "Key" msgstr "Chiave" -#: netbox/account/tables.py:31 netbox/users/forms/filtersets.py:132 +#: account/tables.py:31 users/forms/filtersets.py:132 msgid "Write Enabled" msgstr "Scrittura abilitata" -#: netbox/account/tables.py:35 netbox/core/choices.py:86 -#: netbox/core/tables/jobs.py:29 netbox/core/tables/tasks.py:79 -#: netbox/extras/tables/tables.py:335 netbox/extras/tables/tables.py:566 -#: netbox/templates/account/token.html:43 -#: netbox/templates/core/configrevision.html:26 -#: netbox/templates/core/configrevision_restore.html:12 -#: netbox/templates/core/job.html:69 netbox/templates/core/rq_task.html:16 -#: netbox/templates/core/rq_task.html:73 -#: netbox/templates/core/rq_worker.html:14 -#: netbox/templates/extras/htmx/script_result.html:12 -#: netbox/templates/extras/journalentry.html:22 -#: netbox/templates/generic/object.html:58 -#: netbox/templates/users/token.html:35 +#: account/tables.py:35 core/choices.py:86 core/tables/jobs.py:29 +#: core/tables/tasks.py:79 extras/tables/tables.py:335 +#: extras/tables/tables.py:566 templates/account/token.html:43 +#: templates/core/configrevision.html:26 +#: templates/core/configrevision_restore.html:12 templates/core/job.html:69 +#: templates/core/rq_task.html:16 templates/core/rq_task.html:73 +#: templates/core/rq_worker.html:14 +#: templates/extras/htmx/script_result.html:12 +#: templates/extras/journalentry.html:22 templates/generic/object.html:58 +#: templates/users/token.html:35 msgid "Created" msgstr "Creato" -#: netbox/account/tables.py:39 netbox/templates/account/token.html:47 -#: netbox/templates/users/token.html:39 netbox/users/forms/bulk_edit.py:117 -#: netbox/users/forms/filtersets.py:136 +#: account/tables.py:39 templates/account/token.html:47 +#: templates/users/token.html:39 users/forms/bulk_edit.py:117 +#: users/forms/filtersets.py:136 msgid "Expires" msgstr "Scade" -#: netbox/account/tables.py:42 netbox/users/forms/filtersets.py:141 +#: account/tables.py:42 users/forms/filtersets.py:141 msgid "Last Used" msgstr "Ultimo utilizzo" -#: netbox/account/tables.py:45 netbox/templates/account/token.html:55 -#: netbox/templates/users/token.html:47 netbox/users/forms/bulk_edit.py:122 -#: netbox/users/forms/model_forms.py:124 +#: account/tables.py:45 templates/account/token.html:55 +#: templates/users/token.html:47 users/forms/bulk_edit.py:122 +#: users/forms/model_forms.py:124 msgid "Allowed IPs" msgstr "IP consentiti" -#: netbox/account/views.py:114 +#: account/views.py:114 #, python-brace-format msgid "Logged in as {user}." msgstr "Effettuato l'accesso come {user}." -#: netbox/account/views.py:164 +#: account/views.py:164 msgid "You have logged out." msgstr "Ti sei disconnesso." -#: netbox/account/views.py:216 +#: account/views.py:216 msgid "Your preferences have been updated." msgstr "Le tue preferenze sono state aggiornate." -#: netbox/account/views.py:239 +#: account/views.py:239 msgid "LDAP-authenticated user credentials cannot be changed within NetBox." msgstr "" "Le credenziali utente autenticate con LDAP non possono essere modificate " "all'interno di NetBox." -#: netbox/account/views.py:254 +#: account/views.py:254 msgid "Your password has been changed successfully." 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:185 -#: netbox/dcim/choices.py:237 netbox/dcim/choices.py:1530 -#: netbox/dcim/choices.py:1606 netbox/dcim/choices.py:1656 -#: netbox/virtualization/choices.py:20 netbox/virtualization/choices.py:45 -#: netbox/vpn/choices.py:18 +#: circuits/choices.py:21 dcim/choices.py:20 dcim/choices.py:102 +#: dcim/choices.py:185 dcim/choices.py:237 dcim/choices.py:1530 +#: dcim/choices.py:1606 dcim/choices.py:1656 virtualization/choices.py:20 +#: virtualization/choices.py:45 vpn/choices.py:18 msgid "Planned" msgstr "Pianificato" -#: netbox/circuits/choices.py:22 netbox/netbox/navigation/menu.py:305 +#: circuits/choices.py:22 netbox/navigation/menu.py:305 msgid "Provisioning" msgstr "Approvvigionamento" -#: netbox/circuits/choices.py:23 netbox/core/tables/tasks.py:22 -#: netbox/dcim/choices.py:22 netbox/dcim/choices.py:103 -#: netbox/dcim/choices.py:184 netbox/dcim/choices.py:236 -#: netbox/dcim/choices.py:1605 netbox/dcim/choices.py:1655 -#: netbox/extras/tables/tables.py:495 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:25 -#: netbox/templates/users/user.html:37 netbox/users/forms/bulk_edit.py:38 -#: netbox/virtualization/choices.py:22 netbox/virtualization/choices.py:44 -#: netbox/vpn/choices.py:19 netbox/wireless/choices.py:25 +#: circuits/choices.py:23 core/tables/tasks.py:22 dcim/choices.py:22 +#: dcim/choices.py:103 dcim/choices.py:184 dcim/choices.py:236 +#: dcim/choices.py:1605 dcim/choices.py:1655 extras/tables/tables.py:495 +#: ipam/choices.py:31 ipam/choices.py:49 ipam/choices.py:69 +#: ipam/choices.py:154 templates/extras/configcontext.html:25 +#: templates/users/user.html:37 users/forms/bulk_edit.py:38 +#: virtualization/choices.py:22 virtualization/choices.py:44 vpn/choices.py:19 +#: wireless/choices.py:25 msgid "Active" msgstr "Attivo" -#: netbox/circuits/choices.py:24 netbox/dcim/choices.py:183 -#: netbox/dcim/choices.py:235 netbox/dcim/choices.py:1604 -#: netbox/dcim/choices.py:1657 netbox/virtualization/choices.py:24 -#: netbox/virtualization/choices.py:43 +#: circuits/choices.py:24 dcim/choices.py:183 dcim/choices.py:235 +#: dcim/choices.py:1604 dcim/choices.py:1657 virtualization/choices.py:24 +#: virtualization/choices.py:43 msgid "Offline" msgstr "Offline" -#: netbox/circuits/choices.py:25 +#: circuits/choices.py:25 msgid "Deprovisioning" msgstr "Deprovisioning" -#: netbox/circuits/choices.py:26 +#: circuits/choices.py:26 msgid "Decommissioned" msgstr "Dismesso" -#: netbox/circuits/choices.py:90 netbox/dcim/choices.py:1617 -#: netbox/tenancy/choices.py:17 +#: circuits/choices.py:90 dcim/choices.py:1617 tenancy/choices.py:17 msgid "Primary" msgstr "Primaria" -#: netbox/circuits/choices.py:91 netbox/ipam/choices.py:90 -#: netbox/tenancy/choices.py:18 +#: circuits/choices.py:91 ipam/choices.py:90 tenancy/choices.py:18 msgid "Secondary" msgstr "Secondario" -#: netbox/circuits/choices.py:92 netbox/tenancy/choices.py:19 +#: circuits/choices.py:92 tenancy/choices.py:19 msgid "Tertiary" msgstr "Terziario" -#: netbox/circuits/choices.py:93 netbox/tenancy/choices.py:20 +#: circuits/choices.py:93 tenancy/choices.py:20 msgid "Inactive" msgstr "Inattivo" -#: netbox/circuits/filtersets.py:31 netbox/circuits/filtersets.py:198 -#: netbox/dcim/filtersets.py:98 netbox/dcim/filtersets.py:152 -#: netbox/dcim/filtersets.py:212 netbox/dcim/filtersets.py:333 -#: netbox/dcim/filtersets.py:464 netbox/dcim/filtersets.py:1021 -#: netbox/dcim/filtersets.py:1368 netbox/dcim/filtersets.py:1903 -#: netbox/dcim/filtersets.py:2146 netbox/dcim/filtersets.py:2204 -#: netbox/ipam/filtersets.py:339 netbox/ipam/filtersets.py:959 -#: netbox/virtualization/filtersets.py:45 -#: netbox/virtualization/filtersets.py:173 netbox/vpn/filtersets.py:358 +#: circuits/filtersets.py:31 circuits/filtersets.py:198 dcim/filtersets.py:98 +#: dcim/filtersets.py:152 dcim/filtersets.py:212 dcim/filtersets.py:333 +#: dcim/filtersets.py:464 dcim/filtersets.py:1021 dcim/filtersets.py:1368 +#: dcim/filtersets.py:1903 dcim/filtersets.py:2146 dcim/filtersets.py:2204 +#: ipam/filtersets.py:339 ipam/filtersets.py:959 +#: virtualization/filtersets.py:45 virtualization/filtersets.py:173 +#: vpn/filtersets.py:358 msgid "Region (ID)" msgstr "Regione (ID)" -#: netbox/circuits/filtersets.py:38 netbox/circuits/filtersets.py:205 -#: netbox/dcim/filtersets.py:105 netbox/dcim/filtersets.py:158 -#: netbox/dcim/filtersets.py:219 netbox/dcim/filtersets.py:340 -#: netbox/dcim/filtersets.py:471 netbox/dcim/filtersets.py:1028 -#: netbox/dcim/filtersets.py:1375 netbox/dcim/filtersets.py:1910 -#: netbox/dcim/filtersets.py:2153 netbox/dcim/filtersets.py:2211 -#: netbox/extras/filtersets.py:509 netbox/ipam/filtersets.py:346 -#: netbox/ipam/filtersets.py:966 netbox/virtualization/filtersets.py:52 -#: netbox/virtualization/filtersets.py:180 netbox/vpn/filtersets.py:353 +#: circuits/filtersets.py:38 circuits/filtersets.py:205 dcim/filtersets.py:105 +#: dcim/filtersets.py:158 dcim/filtersets.py:219 dcim/filtersets.py:340 +#: dcim/filtersets.py:471 dcim/filtersets.py:1028 dcim/filtersets.py:1375 +#: dcim/filtersets.py:1910 dcim/filtersets.py:2153 dcim/filtersets.py:2211 +#: extras/filtersets.py:509 ipam/filtersets.py:346 ipam/filtersets.py:966 +#: virtualization/filtersets.py:52 virtualization/filtersets.py:180 +#: vpn/filtersets.py:353 msgid "Region (slug)" msgstr "Regione (slug)" -#: netbox/circuits/filtersets.py:44 netbox/circuits/filtersets.py:211 -#: netbox/dcim/filtersets.py:128 netbox/dcim/filtersets.py:225 -#: netbox/dcim/filtersets.py:346 netbox/dcim/filtersets.py:477 -#: netbox/dcim/filtersets.py:1034 netbox/dcim/filtersets.py:1381 -#: netbox/dcim/filtersets.py:1916 netbox/dcim/filtersets.py:2159 -#: netbox/dcim/filtersets.py:2217 netbox/ipam/filtersets.py:352 -#: netbox/ipam/filtersets.py:972 netbox/virtualization/filtersets.py:58 -#: netbox/virtualization/filtersets.py:186 +#: circuits/filtersets.py:44 circuits/filtersets.py:211 dcim/filtersets.py:128 +#: dcim/filtersets.py:225 dcim/filtersets.py:346 dcim/filtersets.py:477 +#: dcim/filtersets.py:1034 dcim/filtersets.py:1381 dcim/filtersets.py:1916 +#: dcim/filtersets.py:2159 dcim/filtersets.py:2217 ipam/filtersets.py:352 +#: ipam/filtersets.py:972 virtualization/filtersets.py:58 +#: virtualization/filtersets.py:186 msgid "Site group (ID)" msgstr "Gruppo del sito (ID)" -#: netbox/circuits/filtersets.py:51 netbox/circuits/filtersets.py:218 -#: netbox/dcim/filtersets.py:135 netbox/dcim/filtersets.py:232 -#: netbox/dcim/filtersets.py:353 netbox/dcim/filtersets.py:484 -#: netbox/dcim/filtersets.py:1041 netbox/dcim/filtersets.py:1388 -#: netbox/dcim/filtersets.py:1923 netbox/dcim/filtersets.py:2166 -#: netbox/dcim/filtersets.py:2224 netbox/extras/filtersets.py:515 -#: netbox/ipam/filtersets.py:359 netbox/ipam/filtersets.py:979 -#: netbox/virtualization/filtersets.py:65 -#: netbox/virtualization/filtersets.py:193 +#: circuits/filtersets.py:51 circuits/filtersets.py:218 dcim/filtersets.py:135 +#: dcim/filtersets.py:232 dcim/filtersets.py:353 dcim/filtersets.py:484 +#: dcim/filtersets.py:1041 dcim/filtersets.py:1388 dcim/filtersets.py:1923 +#: dcim/filtersets.py:2166 dcim/filtersets.py:2224 extras/filtersets.py:515 +#: ipam/filtersets.py:359 ipam/filtersets.py:979 +#: virtualization/filtersets.py:65 virtualization/filtersets.py:193 msgid "Site group (slug)" msgstr "Gruppo del sito (slug)" -#: netbox/circuits/filtersets.py:56 netbox/circuits/forms/bulk_edit.py:188 -#: netbox/circuits/forms/bulk_edit.py:216 -#: netbox/circuits/forms/bulk_import.py:124 -#: netbox/circuits/forms/filtersets.py:51 -#: netbox/circuits/forms/filtersets.py:171 -#: netbox/circuits/forms/filtersets.py:209 -#: netbox/circuits/forms/model_forms.py:138 -#: netbox/circuits/forms/model_forms.py:154 -#: netbox/circuits/tables/circuits.py:113 netbox/dcim/forms/bulk_edit.py:168 -#: netbox/dcim/forms/bulk_edit.py:329 netbox/dcim/forms/bulk_edit.py:677 -#: netbox/dcim/forms/bulk_edit.py:873 netbox/dcim/forms/bulk_import.py:131 -#: netbox/dcim/forms/bulk_import.py:230 netbox/dcim/forms/bulk_import.py:309 -#: netbox/dcim/forms/bulk_import.py:540 netbox/dcim/forms/bulk_import.py:1311 -#: netbox/dcim/forms/bulk_import.py:1339 netbox/dcim/forms/filtersets.py:87 -#: netbox/dcim/forms/filtersets.py:225 netbox/dcim/forms/filtersets.py:342 -#: netbox/dcim/forms/filtersets.py:439 netbox/dcim/forms/filtersets.py:753 -#: netbox/dcim/forms/filtersets.py:997 netbox/dcim/forms/filtersets.py:1021 -#: netbox/dcim/forms/filtersets.py:1111 netbox/dcim/forms/filtersets.py:1149 -#: netbox/dcim/forms/filtersets.py:1584 netbox/dcim/forms/filtersets.py:1608 -#: netbox/dcim/forms/filtersets.py:1632 netbox/dcim/forms/model_forms.py:137 -#: netbox/dcim/forms/model_forms.py:165 netbox/dcim/forms/model_forms.py:238 -#: netbox/dcim/forms/model_forms.py:463 netbox/dcim/forms/model_forms.py:723 -#: netbox/dcim/forms/object_create.py:391 netbox/dcim/tables/devices.py:153 -#: netbox/dcim/tables/power.py:26 netbox/dcim/tables/power.py:93 -#: netbox/dcim/tables/racks.py:122 netbox/dcim/tables/racks.py:207 -#: netbox/dcim/tables/sites.py:134 netbox/extras/filtersets.py:525 -#: netbox/ipam/forms/bulk_edit.py:217 netbox/ipam/forms/bulk_edit.py:284 -#: netbox/ipam/forms/bulk_edit.py:451 netbox/ipam/forms/bulk_edit.py:529 -#: netbox/ipam/forms/bulk_import.py:171 netbox/ipam/forms/bulk_import.py:429 -#: netbox/ipam/forms/filtersets.py:153 netbox/ipam/forms/filtersets.py:231 -#: netbox/ipam/forms/filtersets.py:432 netbox/ipam/forms/filtersets.py:489 -#: netbox/ipam/forms/model_forms.py:205 netbox/ipam/forms/model_forms.py:636 -#: netbox/ipam/tables/ip.py:245 netbox/ipam/tables/vlans.py:118 -#: netbox/ipam/tables/vlans.py:221 -#: netbox/templates/circuits/inc/circuit_termination_fields.html:6 -#: netbox/templates/dcim/device.html:22 -#: netbox/templates/dcim/inc/cable_termination.html:8 -#: netbox/templates/dcim/inc/cable_termination.html:33 -#: netbox/templates/dcim/location.html:37 -#: netbox/templates/dcim/powerpanel.html:22 netbox/templates/dcim/rack.html:20 -#: netbox/templates/dcim/rackreservation.html:28 -#: netbox/templates/dcim/site.html:28 netbox/templates/ipam/prefix.html:56 -#: netbox/templates/ipam/vlan.html:23 netbox/templates/ipam/vlan_edit.html:40 -#: netbox/templates/virtualization/cluster.html:42 -#: netbox/templates/virtualization/virtualmachine.html:95 -#: netbox/virtualization/forms/bulk_edit.py:91 -#: netbox/virtualization/forms/bulk_edit.py:109 -#: netbox/virtualization/forms/bulk_edit.py:124 -#: netbox/virtualization/forms/bulk_import.py:59 -#: netbox/virtualization/forms/bulk_import.py:85 -#: netbox/virtualization/forms/filtersets.py:79 -#: netbox/virtualization/forms/filtersets.py:148 -#: netbox/virtualization/forms/model_forms.py:71 -#: netbox/virtualization/forms/model_forms.py:104 -#: netbox/virtualization/forms/model_forms.py:171 -#: netbox/virtualization/tables/clusters.py:77 -#: netbox/virtualization/tables/virtualmachines.py:63 -#: netbox/vpn/forms/filtersets.py:266 netbox/wireless/forms/model_forms.py:76 -#: netbox/wireless/forms/model_forms.py:118 +#: circuits/filtersets.py:56 circuits/forms/bulk_edit.py:188 +#: circuits/forms/bulk_edit.py:216 circuits/forms/bulk_import.py:124 +#: circuits/forms/filtersets.py:51 circuits/forms/filtersets.py:171 +#: circuits/forms/filtersets.py:209 circuits/forms/model_forms.py:138 +#: circuits/forms/model_forms.py:154 circuits/tables/circuits.py:113 +#: dcim/forms/bulk_edit.py:168 dcim/forms/bulk_edit.py:329 +#: dcim/forms/bulk_edit.py:677 dcim/forms/bulk_edit.py:873 +#: dcim/forms/bulk_import.py:131 dcim/forms/bulk_import.py:230 +#: dcim/forms/bulk_import.py:309 dcim/forms/bulk_import.py:540 +#: dcim/forms/bulk_import.py:1311 dcim/forms/bulk_import.py:1339 +#: dcim/forms/filtersets.py:87 dcim/forms/filtersets.py:225 +#: dcim/forms/filtersets.py:342 dcim/forms/filtersets.py:439 +#: dcim/forms/filtersets.py:753 dcim/forms/filtersets.py:997 +#: dcim/forms/filtersets.py:1021 dcim/forms/filtersets.py:1111 +#: dcim/forms/filtersets.py:1149 dcim/forms/filtersets.py:1584 +#: dcim/forms/filtersets.py:1608 dcim/forms/filtersets.py:1632 +#: dcim/forms/model_forms.py:137 dcim/forms/model_forms.py:165 +#: dcim/forms/model_forms.py:238 dcim/forms/model_forms.py:463 +#: dcim/forms/model_forms.py:723 dcim/forms/object_create.py:391 +#: dcim/tables/devices.py:153 dcim/tables/power.py:26 dcim/tables/power.py:93 +#: dcim/tables/racks.py:122 dcim/tables/racks.py:207 dcim/tables/sites.py:134 +#: extras/filtersets.py:525 ipam/forms/bulk_edit.py:218 +#: ipam/forms/bulk_edit.py:285 ipam/forms/bulk_edit.py:484 +#: ipam/forms/bulk_import.py:171 ipam/forms/bulk_import.py:429 +#: ipam/forms/filtersets.py:153 ipam/forms/filtersets.py:231 +#: ipam/forms/filtersets.py:432 ipam/forms/filtersets.py:489 +#: ipam/forms/model_forms.py:205 ipam/forms/model_forms.py:636 +#: ipam/tables/ip.py:245 ipam/tables/vlans.py:118 ipam/tables/vlans.py:221 +#: templates/circuits/inc/circuit_termination_fields.html:6 +#: templates/dcim/device.html:22 templates/dcim/inc/cable_termination.html:8 +#: templates/dcim/inc/cable_termination.html:33 +#: templates/dcim/location.html:37 templates/dcim/powerpanel.html:22 +#: templates/dcim/rack.html:20 templates/dcim/rackreservation.html:28 +#: templates/dcim/site.html:28 templates/ipam/prefix.html:56 +#: templates/ipam/vlan.html:23 templates/ipam/vlan_edit.html:40 +#: templates/virtualization/cluster.html:42 +#: templates/virtualization/virtualmachine.html:95 +#: virtualization/forms/bulk_edit.py:91 virtualization/forms/bulk_edit.py:109 +#: virtualization/forms/bulk_edit.py:124 +#: virtualization/forms/bulk_import.py:59 +#: virtualization/forms/bulk_import.py:85 +#: virtualization/forms/filtersets.py:79 +#: virtualization/forms/filtersets.py:148 +#: virtualization/forms/model_forms.py:71 +#: virtualization/forms/model_forms.py:104 +#: virtualization/forms/model_forms.py:171 +#: virtualization/tables/clusters.py:77 +#: virtualization/tables/virtualmachines.py:63 vpn/forms/filtersets.py:266 +#: wireless/forms/model_forms.py:76 wireless/forms/model_forms.py:118 msgid "Site" msgstr "Sito" -#: netbox/circuits/filtersets.py:62 netbox/circuits/filtersets.py:229 -#: netbox/circuits/filtersets.py:274 netbox/dcim/filtersets.py:242 -#: netbox/dcim/filtersets.py:363 netbox/dcim/filtersets.py:458 -#: netbox/extras/filtersets.py:531 netbox/ipam/filtersets.py:238 -#: netbox/ipam/filtersets.py:369 netbox/ipam/filtersets.py:989 -#: netbox/virtualization/filtersets.py:75 -#: netbox/virtualization/filtersets.py:203 netbox/vpn/filtersets.py:363 +#: circuits/filtersets.py:62 circuits/filtersets.py:229 +#: circuits/filtersets.py:274 dcim/filtersets.py:242 dcim/filtersets.py:363 +#: dcim/filtersets.py:458 extras/filtersets.py:531 ipam/filtersets.py:238 +#: ipam/filtersets.py:369 ipam/filtersets.py:989 +#: virtualization/filtersets.py:75 virtualization/filtersets.py:203 +#: vpn/filtersets.py:363 msgid "Site (slug)" msgstr "Sito (slug)" -#: netbox/circuits/filtersets.py:67 +#: circuits/filtersets.py:67 msgid "ASN (ID)" msgstr "ASN (ID)" -#: netbox/circuits/filtersets.py:73 netbox/circuits/forms/filtersets.py:31 -#: netbox/ipam/forms/model_forms.py:159 netbox/ipam/models/asns.py:108 -#: netbox/ipam/models/asns.py:125 netbox/ipam/tables/asn.py:41 -#: netbox/templates/ipam/asn.html:20 +#: circuits/filtersets.py:73 circuits/forms/filtersets.py:31 +#: ipam/forms/model_forms.py:159 ipam/models/asns.py:108 +#: ipam/models/asns.py:125 ipam/tables/asn.py:41 templates/ipam/asn.html:20 msgid "ASN" msgstr "ASN" -#: netbox/circuits/filtersets.py:95 netbox/circuits/filtersets.py:122 -#: netbox/circuits/filtersets.py:156 netbox/circuits/filtersets.py:283 -#: netbox/circuits/filtersets.py:325 netbox/ipam/filtersets.py:243 +#: circuits/filtersets.py:95 circuits/filtersets.py:122 +#: circuits/filtersets.py:156 circuits/filtersets.py:283 +#: circuits/filtersets.py:325 ipam/filtersets.py:243 msgid "Provider (ID)" msgstr "Provider (ID)" -#: netbox/circuits/filtersets.py:101 netbox/circuits/filtersets.py:128 -#: netbox/circuits/filtersets.py:162 netbox/circuits/filtersets.py:289 -#: netbox/circuits/filtersets.py:331 netbox/ipam/filtersets.py:249 +#: circuits/filtersets.py:101 circuits/filtersets.py:128 +#: circuits/filtersets.py:162 circuits/filtersets.py:289 +#: circuits/filtersets.py:331 ipam/filtersets.py:249 msgid "Provider (slug)" msgstr "Provider (slug)" -#: netbox/circuits/filtersets.py:167 +#: circuits/filtersets.py:167 msgid "Provider account (ID)" msgstr "Provider account (ID)" -#: netbox/circuits/filtersets.py:173 +#: circuits/filtersets.py:173 msgid "Provider account (account)" msgstr "Provider account (account)" -#: netbox/circuits/filtersets.py:178 +#: circuits/filtersets.py:178 msgid "Provider network (ID)" msgstr "Provider network (ID)" -#: netbox/circuits/filtersets.py:182 +#: circuits/filtersets.py:182 msgid "Circuit type (ID)" msgstr "Tipo di circuito (ID)" -#: netbox/circuits/filtersets.py:188 +#: circuits/filtersets.py:188 msgid "Circuit type (slug)" msgstr "Tipo di circuito (slug)" -#: netbox/circuits/filtersets.py:223 netbox/circuits/filtersets.py:268 -#: netbox/dcim/filtersets.py:236 netbox/dcim/filtersets.py:357 -#: netbox/dcim/filtersets.py:452 netbox/dcim/filtersets.py:1045 -#: netbox/dcim/filtersets.py:1393 netbox/dcim/filtersets.py:1928 -#: netbox/dcim/filtersets.py:2170 netbox/dcim/filtersets.py:2229 -#: netbox/ipam/filtersets.py:232 netbox/ipam/filtersets.py:363 -#: netbox/ipam/filtersets.py:983 netbox/virtualization/filtersets.py:69 -#: netbox/virtualization/filtersets.py:197 netbox/vpn/filtersets.py:368 +#: circuits/filtersets.py:223 circuits/filtersets.py:268 +#: dcim/filtersets.py:236 dcim/filtersets.py:357 dcim/filtersets.py:452 +#: dcim/filtersets.py:1045 dcim/filtersets.py:1393 dcim/filtersets.py:1928 +#: dcim/filtersets.py:2170 dcim/filtersets.py:2229 ipam/filtersets.py:232 +#: ipam/filtersets.py:363 ipam/filtersets.py:983 +#: virtualization/filtersets.py:69 virtualization/filtersets.py:197 +#: vpn/filtersets.py:368 msgid "Site (ID)" msgstr "Sito (ID)" -#: netbox/circuits/filtersets.py:233 netbox/circuits/filtersets.py:237 +#: circuits/filtersets.py:233 circuits/filtersets.py:237 msgid "Termination A (ID)" msgstr "Terminazione A (ID)" -#: netbox/circuits/filtersets.py:260 netbox/circuits/filtersets.py:320 -#: netbox/core/filtersets.py:77 netbox/core/filtersets.py:136 -#: netbox/core/filtersets.py:173 netbox/dcim/filtersets.py:751 -#: netbox/dcim/filtersets.py:1362 netbox/dcim/filtersets.py:2277 -#: netbox/extras/filtersets.py:41 netbox/extras/filtersets.py:63 -#: netbox/extras/filtersets.py:92 netbox/extras/filtersets.py:132 -#: netbox/extras/filtersets.py:181 netbox/extras/filtersets.py:209 -#: netbox/extras/filtersets.py:239 netbox/extras/filtersets.py:276 -#: netbox/extras/filtersets.py:348 netbox/extras/filtersets.py:391 -#: netbox/extras/filtersets.py:438 netbox/extras/filtersets.py:498 -#: netbox/extras/filtersets.py:657 netbox/extras/filtersets.py:703 -#: netbox/ipam/forms/model_forms.py:449 netbox/netbox/filtersets.py:282 -#: netbox/netbox/forms/__init__.py:22 netbox/netbox/forms/base.py:167 -#: netbox/templates/htmx/object_selector.html:28 -#: netbox/templates/inc/filter_list.html:45 -#: netbox/templates/ipam/ipaddress_assign.html:29 -#: netbox/templates/search.html:7 netbox/templates/search.html:26 -#: netbox/tenancy/filtersets.py:99 netbox/users/filtersets.py:23 -#: netbox/users/filtersets.py:57 netbox/users/filtersets.py:102 -#: netbox/users/filtersets.py:150 netbox/utilities/forms/forms.py:104 -#: netbox/utilities/templates/navigation/menu.html:16 +#: circuits/filtersets.py:260 circuits/filtersets.py:320 core/filtersets.py:77 +#: core/filtersets.py:136 core/filtersets.py:173 dcim/filtersets.py:751 +#: dcim/filtersets.py:1362 dcim/filtersets.py:2277 extras/filtersets.py:41 +#: extras/filtersets.py:63 extras/filtersets.py:92 extras/filtersets.py:132 +#: extras/filtersets.py:181 extras/filtersets.py:209 extras/filtersets.py:239 +#: extras/filtersets.py:276 extras/filtersets.py:348 extras/filtersets.py:391 +#: extras/filtersets.py:438 extras/filtersets.py:498 extras/filtersets.py:657 +#: extras/filtersets.py:703 ipam/forms/model_forms.py:449 +#: netbox/filtersets.py:282 netbox/forms/__init__.py:22 +#: netbox/forms/base.py:167 templates/htmx/object_selector.html:28 +#: templates/inc/filter_list.html:46 templates/ipam/ipaddress_assign.html:29 +#: templates/search.html:7 templates/search.html:26 tenancy/filtersets.py:99 +#: users/filtersets.py:23 users/filtersets.py:57 users/filtersets.py:102 +#: users/filtersets.py:150 utilities/forms/forms.py:104 +#: utilities/templates/navigation/menu.html:16 msgid "Search" msgstr "Cerca" -#: netbox/circuits/filtersets.py:264 netbox/circuits/forms/bulk_edit.py:172 -#: netbox/circuits/forms/bulk_edit.py:246 -#: netbox/circuits/forms/bulk_import.py:115 -#: netbox/circuits/forms/filtersets.py:198 -#: netbox/circuits/forms/filtersets.py:214 -#: netbox/circuits/forms/filtersets.py:260 -#: netbox/circuits/forms/model_forms.py:111 -#: netbox/circuits/forms/model_forms.py:133 -#: netbox/circuits/forms/model_forms.py:199 -#: netbox/circuits/tables/circuits.py:104 -#: netbox/circuits/tables/circuits.py:164 netbox/dcim/forms/connections.py:73 -#: netbox/templates/circuits/circuit.html:15 -#: netbox/templates/circuits/circuitgroupassignment.html:26 -#: netbox/templates/circuits/circuittermination.html:19 -#: netbox/templates/dcim/inc/cable_termination.html:55 -#: netbox/templates/dcim/trace/circuit.html:4 +#: circuits/filtersets.py:264 circuits/forms/bulk_edit.py:172 +#: circuits/forms/bulk_edit.py:246 circuits/forms/bulk_import.py:115 +#: circuits/forms/filtersets.py:198 circuits/forms/filtersets.py:214 +#: circuits/forms/filtersets.py:260 circuits/forms/model_forms.py:111 +#: circuits/forms/model_forms.py:133 circuits/forms/model_forms.py:199 +#: circuits/tables/circuits.py:104 circuits/tables/circuits.py:164 +#: dcim/forms/connections.py:73 templates/circuits/circuit.html:15 +#: templates/circuits/circuitgroupassignment.html:26 +#: templates/circuits/circuittermination.html:19 +#: templates/dcim/inc/cable_termination.html:55 +#: templates/dcim/trace/circuit.html:4 msgid "Circuit" msgstr "Circuito" -#: netbox/circuits/filtersets.py:278 +#: circuits/filtersets.py:278 msgid "ProviderNetwork (ID)" msgstr "Provider network (ID)" -#: netbox/circuits/filtersets.py:335 +#: circuits/filtersets.py:335 msgid "Circuit (ID)" msgstr "Circuito (ID)" -#: netbox/circuits/filtersets.py:341 +#: circuits/filtersets.py:341 msgid "Circuit (CID)" msgstr "Circuito (CID)" -#: netbox/circuits/filtersets.py:345 +#: circuits/filtersets.py:345 msgid "Circuit group (ID)" msgstr "Gruppo di circuiti (ID)" -#: netbox/circuits/filtersets.py:351 +#: circuits/filtersets.py:351 msgid "Circuit group (slug)" msgstr "Gruppo di circuiti (slug)" -#: netbox/circuits/forms/bulk_edit.py:30 -#: netbox/circuits/forms/filtersets.py:56 -#: netbox/circuits/forms/model_forms.py:29 -#: netbox/circuits/tables/providers.py:33 netbox/dcim/forms/bulk_edit.py:128 -#: netbox/dcim/forms/filtersets.py:195 netbox/dcim/forms/model_forms.py:123 -#: netbox/dcim/tables/sites.py:94 netbox/ipam/models/asns.py:126 -#: netbox/ipam/tables/asn.py:27 netbox/ipam/views.py:213 -#: netbox/netbox/navigation/menu.py:172 netbox/netbox/navigation/menu.py:175 -#: netbox/templates/circuits/provider.html:23 +#: circuits/forms/bulk_edit.py:30 circuits/forms/filtersets.py:56 +#: circuits/forms/model_forms.py:29 circuits/tables/providers.py:33 +#: dcim/forms/bulk_edit.py:128 dcim/forms/filtersets.py:195 +#: dcim/forms/model_forms.py:123 dcim/tables/sites.py:94 +#: ipam/models/asns.py:126 ipam/tables/asn.py:27 ipam/views.py:213 +#: netbox/navigation/menu.py:172 netbox/navigation/menu.py:175 +#: templates/circuits/provider.html:23 msgid "ASNs" msgstr "ASN" -#: netbox/circuits/forms/bulk_edit.py:34 netbox/circuits/forms/bulk_edit.py:56 -#: netbox/circuits/forms/bulk_edit.py:83 -#: netbox/circuits/forms/bulk_edit.py:104 -#: netbox/circuits/forms/bulk_edit.py:164 -#: netbox/circuits/forms/bulk_edit.py:183 -#: netbox/circuits/forms/bulk_edit.py:228 netbox/core/forms/bulk_edit.py:28 -#: netbox/dcim/forms/bulk_create.py:35 netbox/dcim/forms/bulk_edit.py:73 -#: netbox/dcim/forms/bulk_edit.py:92 netbox/dcim/forms/bulk_edit.py:151 -#: netbox/dcim/forms/bulk_edit.py:192 netbox/dcim/forms/bulk_edit.py:210 -#: netbox/dcim/forms/bulk_edit.py:288 netbox/dcim/forms/bulk_edit.py:432 -#: netbox/dcim/forms/bulk_edit.py:466 netbox/dcim/forms/bulk_edit.py:481 -#: netbox/dcim/forms/bulk_edit.py:540 netbox/dcim/forms/bulk_edit.py:584 -#: netbox/dcim/forms/bulk_edit.py:618 netbox/dcim/forms/bulk_edit.py:642 -#: netbox/dcim/forms/bulk_edit.py:715 netbox/dcim/forms/bulk_edit.py:767 -#: netbox/dcim/forms/bulk_edit.py:819 netbox/dcim/forms/bulk_edit.py:842 -#: netbox/dcim/forms/bulk_edit.py:890 netbox/dcim/forms/bulk_edit.py:960 -#: netbox/dcim/forms/bulk_edit.py:1013 netbox/dcim/forms/bulk_edit.py:1048 -#: netbox/dcim/forms/bulk_edit.py:1088 netbox/dcim/forms/bulk_edit.py:1132 -#: netbox/dcim/forms/bulk_edit.py:1177 netbox/dcim/forms/bulk_edit.py:1204 -#: netbox/dcim/forms/bulk_edit.py:1222 netbox/dcim/forms/bulk_edit.py:1240 -#: netbox/dcim/forms/bulk_edit.py:1258 netbox/dcim/forms/bulk_edit.py:1682 -#: netbox/extras/forms/bulk_edit.py:39 netbox/extras/forms/bulk_edit.py:149 -#: netbox/extras/forms/bulk_edit.py:178 netbox/extras/forms/bulk_edit.py:208 -#: netbox/extras/forms/bulk_edit.py:256 netbox/extras/forms/bulk_edit.py:274 -#: netbox/extras/forms/bulk_edit.py:298 netbox/extras/forms/bulk_edit.py:312 -#: netbox/extras/forms/bulk_edit.py:339 netbox/extras/tables/tables.py:79 -#: netbox/ipam/forms/bulk_edit.py:52 netbox/ipam/forms/bulk_edit.py:72 -#: netbox/ipam/forms/bulk_edit.py:92 netbox/ipam/forms/bulk_edit.py:116 -#: netbox/ipam/forms/bulk_edit.py:145 netbox/ipam/forms/bulk_edit.py:174 -#: netbox/ipam/forms/bulk_edit.py:193 netbox/ipam/forms/bulk_edit.py:275 -#: netbox/ipam/forms/bulk_edit.py:320 netbox/ipam/forms/bulk_edit.py:368 -#: netbox/ipam/forms/bulk_edit.py:411 netbox/ipam/forms/bulk_edit.py:427 -#: netbox/ipam/forms/bulk_edit.py:561 netbox/ipam/forms/bulk_edit.py:592 -#: netbox/templates/account/token.html:35 -#: netbox/templates/circuits/circuit.html:59 -#: netbox/templates/circuits/circuitgroup.html:32 -#: netbox/templates/circuits/circuittype.html:26 -#: netbox/templates/circuits/inc/circuit_termination_fields.html:88 -#: netbox/templates/circuits/provider.html:33 -#: netbox/templates/circuits/providernetwork.html:32 -#: netbox/templates/core/datasource.html:54 -#: netbox/templates/core/plugin.html:79 netbox/templates/dcim/cable.html:36 -#: netbox/templates/dcim/consoleport.html:44 -#: netbox/templates/dcim/consoleserverport.html:44 -#: netbox/templates/dcim/device.html:94 -#: netbox/templates/dcim/devicebay.html:32 -#: netbox/templates/dcim/devicerole.html:30 -#: netbox/templates/dcim/devicetype.html:33 -#: netbox/templates/dcim/frontport.html:58 -#: netbox/templates/dcim/interface.html:69 -#: netbox/templates/dcim/inventoryitem.html:60 -#: netbox/templates/dcim/inventoryitemrole.html:22 -#: netbox/templates/dcim/location.html:33 -#: netbox/templates/dcim/manufacturer.html:40 -#: netbox/templates/dcim/module.html:73 -#: netbox/templates/dcim/modulebay.html:42 -#: netbox/templates/dcim/moduletype.html:26 -#: netbox/templates/dcim/platform.html:33 -#: netbox/templates/dcim/powerfeed.html:40 -#: netbox/templates/dcim/poweroutlet.html:40 -#: netbox/templates/dcim/powerpanel.html:30 -#: netbox/templates/dcim/powerport.html:40 netbox/templates/dcim/rack.html:53 -#: netbox/templates/dcim/rackreservation.html:62 -#: netbox/templates/dcim/rackrole.html:26 -#: netbox/templates/dcim/racktype.html:24 -#: netbox/templates/dcim/rearport.html:54 netbox/templates/dcim/region.html:33 -#: netbox/templates/dcim/site.html:60 netbox/templates/dcim/sitegroup.html:33 -#: netbox/templates/dcim/virtualchassis.html:31 -#: netbox/templates/extras/configcontext.html:21 -#: netbox/templates/extras/configtemplate.html:17 -#: netbox/templates/extras/customfield.html:34 -#: netbox/templates/extras/dashboard/widget_add.html:14 -#: netbox/templates/extras/eventrule.html:21 -#: netbox/templates/extras/exporttemplate.html:19 -#: netbox/templates/extras/notificationgroup.html:20 -#: netbox/templates/extras/savedfilter.html:17 -#: netbox/templates/extras/script_list.html:45 -#: netbox/templates/extras/tag.html:20 netbox/templates/extras/webhook.html:17 -#: netbox/templates/generic/bulk_import.html:120 -#: netbox/templates/ipam/aggregate.html:43 netbox/templates/ipam/asn.html:42 -#: netbox/templates/ipam/asnrange.html:38 -#: netbox/templates/ipam/fhrpgroup.html:34 -#: netbox/templates/ipam/ipaddress.html:55 -#: netbox/templates/ipam/iprange.html:67 netbox/templates/ipam/prefix.html:81 -#: netbox/templates/ipam/rir.html:26 netbox/templates/ipam/role.html:26 -#: netbox/templates/ipam/routetarget.html:21 -#: netbox/templates/ipam/service.html:50 -#: netbox/templates/ipam/servicetemplate.html:27 -#: netbox/templates/ipam/vlan.html:62 netbox/templates/ipam/vlangroup.html:34 -#: netbox/templates/ipam/vrf.html:33 netbox/templates/tenancy/contact.html:67 -#: netbox/templates/tenancy/contactgroup.html:25 -#: netbox/templates/tenancy/contactrole.html:22 -#: netbox/templates/tenancy/tenant.html:24 -#: netbox/templates/tenancy/tenantgroup.html:33 -#: netbox/templates/users/group.html:21 -#: netbox/templates/users/objectpermission.html:21 -#: netbox/templates/users/token.html:27 -#: netbox/templates/virtualization/cluster.html:25 -#: netbox/templates/virtualization/clustergroup.html:26 -#: netbox/templates/virtualization/clustertype.html:26 -#: netbox/templates/virtualization/virtualdisk.html:39 -#: netbox/templates/virtualization/virtualmachine.html:31 -#: netbox/templates/virtualization/vminterface.html:51 -#: netbox/templates/vpn/ikepolicy.html:17 -#: netbox/templates/vpn/ikeproposal.html:17 -#: netbox/templates/vpn/ipsecpolicy.html:17 -#: netbox/templates/vpn/ipsecprofile.html:17 -#: netbox/templates/vpn/ipsecprofile.html:40 -#: netbox/templates/vpn/ipsecprofile.html:73 -#: netbox/templates/vpn/ipsecproposal.html:17 -#: netbox/templates/vpn/l2vpn.html:26 netbox/templates/vpn/tunnel.html:33 -#: netbox/templates/vpn/tunnelgroup.html:30 -#: netbox/templates/wireless/wirelesslan.html:26 -#: netbox/templates/wireless/wirelesslangroup.html:33 -#: netbox/templates/wireless/wirelesslink.html:34 -#: netbox/tenancy/forms/bulk_edit.py:32 netbox/tenancy/forms/bulk_edit.py:80 -#: netbox/tenancy/forms/bulk_edit.py:122 netbox/users/forms/bulk_edit.py:64 -#: netbox/users/forms/bulk_edit.py:82 netbox/users/forms/bulk_edit.py:112 -#: netbox/virtualization/forms/bulk_edit.py:32 -#: netbox/virtualization/forms/bulk_edit.py:46 -#: netbox/virtualization/forms/bulk_edit.py:100 -#: netbox/virtualization/forms/bulk_edit.py:177 -#: netbox/virtualization/forms/bulk_edit.py:228 -#: netbox/virtualization/forms/bulk_edit.py:337 -#: netbox/vpn/forms/bulk_edit.py:28 netbox/vpn/forms/bulk_edit.py:64 -#: netbox/vpn/forms/bulk_edit.py:121 netbox/vpn/forms/bulk_edit.py:155 -#: netbox/vpn/forms/bulk_edit.py:190 netbox/vpn/forms/bulk_edit.py:215 -#: netbox/vpn/forms/bulk_edit.py:247 netbox/vpn/forms/bulk_edit.py:274 -#: netbox/wireless/forms/bulk_edit.py:29 netbox/wireless/forms/bulk_edit.py:82 -#: netbox/wireless/forms/bulk_edit.py:140 +#: circuits/forms/bulk_edit.py:34 circuits/forms/bulk_edit.py:56 +#: circuits/forms/bulk_edit.py:83 circuits/forms/bulk_edit.py:104 +#: circuits/forms/bulk_edit.py:164 circuits/forms/bulk_edit.py:183 +#: circuits/forms/bulk_edit.py:228 core/forms/bulk_edit.py:28 +#: dcim/forms/bulk_create.py:35 dcim/forms/bulk_edit.py:73 +#: dcim/forms/bulk_edit.py:92 dcim/forms/bulk_edit.py:151 +#: dcim/forms/bulk_edit.py:192 dcim/forms/bulk_edit.py:210 +#: dcim/forms/bulk_edit.py:288 dcim/forms/bulk_edit.py:432 +#: dcim/forms/bulk_edit.py:466 dcim/forms/bulk_edit.py:481 +#: dcim/forms/bulk_edit.py:540 dcim/forms/bulk_edit.py:584 +#: dcim/forms/bulk_edit.py:618 dcim/forms/bulk_edit.py:642 +#: dcim/forms/bulk_edit.py:715 dcim/forms/bulk_edit.py:767 +#: dcim/forms/bulk_edit.py:819 dcim/forms/bulk_edit.py:842 +#: dcim/forms/bulk_edit.py:890 dcim/forms/bulk_edit.py:960 +#: dcim/forms/bulk_edit.py:1013 dcim/forms/bulk_edit.py:1048 +#: dcim/forms/bulk_edit.py:1088 dcim/forms/bulk_edit.py:1132 +#: dcim/forms/bulk_edit.py:1177 dcim/forms/bulk_edit.py:1204 +#: dcim/forms/bulk_edit.py:1222 dcim/forms/bulk_edit.py:1240 +#: dcim/forms/bulk_edit.py:1258 dcim/forms/bulk_edit.py:1682 +#: extras/forms/bulk_edit.py:39 extras/forms/bulk_edit.py:149 +#: extras/forms/bulk_edit.py:178 extras/forms/bulk_edit.py:208 +#: extras/forms/bulk_edit.py:256 extras/forms/bulk_edit.py:274 +#: extras/forms/bulk_edit.py:298 extras/forms/bulk_edit.py:312 +#: extras/forms/bulk_edit.py:339 extras/tables/tables.py:79 +#: ipam/forms/bulk_edit.py:53 ipam/forms/bulk_edit.py:73 +#: ipam/forms/bulk_edit.py:93 ipam/forms/bulk_edit.py:117 +#: ipam/forms/bulk_edit.py:146 ipam/forms/bulk_edit.py:175 +#: ipam/forms/bulk_edit.py:194 ipam/forms/bulk_edit.py:276 +#: ipam/forms/bulk_edit.py:321 ipam/forms/bulk_edit.py:369 +#: ipam/forms/bulk_edit.py:412 ipam/forms/bulk_edit.py:428 +#: ipam/forms/bulk_edit.py:516 ipam/forms/bulk_edit.py:547 +#: templates/account/token.html:35 templates/circuits/circuit.html:59 +#: templates/circuits/circuitgroup.html:32 +#: templates/circuits/circuittype.html:26 +#: templates/circuits/inc/circuit_termination_fields.html:88 +#: templates/circuits/provider.html:33 +#: templates/circuits/providernetwork.html:32 +#: templates/core/datasource.html:54 templates/core/plugin.html:80 +#: templates/dcim/cable.html:36 templates/dcim/consoleport.html:44 +#: templates/dcim/consoleserverport.html:44 templates/dcim/device.html:94 +#: templates/dcim/devicebay.html:32 templates/dcim/devicerole.html:30 +#: templates/dcim/devicetype.html:33 templates/dcim/frontport.html:58 +#: templates/dcim/interface.html:69 templates/dcim/inventoryitem.html:60 +#: templates/dcim/inventoryitemrole.html:22 templates/dcim/location.html:33 +#: templates/dcim/manufacturer.html:40 templates/dcim/module.html:73 +#: templates/dcim/modulebay.html:42 templates/dcim/moduletype.html:37 +#: templates/dcim/platform.html:33 templates/dcim/powerfeed.html:40 +#: templates/dcim/poweroutlet.html:40 templates/dcim/powerpanel.html:30 +#: templates/dcim/powerport.html:40 templates/dcim/rack.html:53 +#: templates/dcim/rackreservation.html:62 templates/dcim/rackrole.html:26 +#: templates/dcim/racktype.html:24 templates/dcim/rearport.html:54 +#: templates/dcim/region.html:33 templates/dcim/site.html:60 +#: templates/dcim/sitegroup.html:33 templates/dcim/virtualchassis.html:31 +#: templates/extras/configcontext.html:21 +#: templates/extras/configtemplate.html:17 +#: templates/extras/customfield.html:34 +#: templates/extras/dashboard/widget_add.html:14 +#: templates/extras/eventrule.html:21 templates/extras/exporttemplate.html:19 +#: templates/extras/notificationgroup.html:20 +#: templates/extras/savedfilter.html:17 templates/extras/script_list.html:45 +#: templates/extras/tag.html:20 templates/extras/webhook.html:17 +#: templates/generic/bulk_import.html:120 templates/ipam/aggregate.html:43 +#: templates/ipam/asn.html:42 templates/ipam/asnrange.html:38 +#: templates/ipam/fhrpgroup.html:34 templates/ipam/ipaddress.html:55 +#: templates/ipam/iprange.html:67 templates/ipam/prefix.html:81 +#: templates/ipam/rir.html:26 templates/ipam/role.html:26 +#: templates/ipam/routetarget.html:21 templates/ipam/service.html:50 +#: templates/ipam/servicetemplate.html:27 templates/ipam/vlan.html:62 +#: templates/ipam/vlangroup.html:34 templates/ipam/vrf.html:33 +#: templates/tenancy/contact.html:67 templates/tenancy/contactgroup.html:25 +#: templates/tenancy/contactrole.html:22 templates/tenancy/tenant.html:24 +#: templates/tenancy/tenantgroup.html:33 templates/users/group.html:21 +#: templates/users/objectpermission.html:21 templates/users/token.html:27 +#: templates/virtualization/cluster.html:25 +#: templates/virtualization/clustergroup.html:26 +#: templates/virtualization/clustertype.html:26 +#: templates/virtualization/virtualdisk.html:39 +#: templates/virtualization/virtualmachine.html:31 +#: templates/virtualization/vminterface.html:51 +#: templates/vpn/ikepolicy.html:17 templates/vpn/ikeproposal.html:17 +#: templates/vpn/ipsecpolicy.html:17 templates/vpn/ipsecprofile.html:17 +#: templates/vpn/ipsecprofile.html:40 templates/vpn/ipsecprofile.html:73 +#: templates/vpn/ipsecproposal.html:17 templates/vpn/l2vpn.html:26 +#: templates/vpn/tunnel.html:33 templates/vpn/tunnelgroup.html:30 +#: templates/wireless/wirelesslan.html:26 +#: templates/wireless/wirelesslangroup.html:33 +#: templates/wireless/wirelesslink.html:34 tenancy/forms/bulk_edit.py:32 +#: tenancy/forms/bulk_edit.py:80 tenancy/forms/bulk_edit.py:122 +#: users/forms/bulk_edit.py:64 users/forms/bulk_edit.py:82 +#: users/forms/bulk_edit.py:112 virtualization/forms/bulk_edit.py:32 +#: virtualization/forms/bulk_edit.py:46 virtualization/forms/bulk_edit.py:100 +#: virtualization/forms/bulk_edit.py:177 virtualization/forms/bulk_edit.py:228 +#: virtualization/forms/bulk_edit.py:337 vpn/forms/bulk_edit.py:28 +#: vpn/forms/bulk_edit.py:64 vpn/forms/bulk_edit.py:121 +#: vpn/forms/bulk_edit.py:155 vpn/forms/bulk_edit.py:190 +#: vpn/forms/bulk_edit.py:215 vpn/forms/bulk_edit.py:247 +#: vpn/forms/bulk_edit.py:274 wireless/forms/bulk_edit.py:29 +#: wireless/forms/bulk_edit.py:82 wireless/forms/bulk_edit.py:140 msgid "Description" msgstr "Descrizione" -#: netbox/circuits/forms/bulk_edit.py:51 netbox/circuits/forms/bulk_edit.py:73 -#: netbox/circuits/forms/bulk_edit.py:123 -#: netbox/circuits/forms/bulk_import.py:36 -#: netbox/circuits/forms/bulk_import.py:51 -#: netbox/circuits/forms/bulk_import.py:74 -#: netbox/circuits/forms/filtersets.py:70 -#: netbox/circuits/forms/filtersets.py:88 -#: netbox/circuits/forms/filtersets.py:116 -#: netbox/circuits/forms/filtersets.py:131 -#: netbox/circuits/forms/filtersets.py:199 -#: netbox/circuits/forms/filtersets.py:232 -#: netbox/circuits/forms/filtersets.py:255 -#: netbox/circuits/forms/model_forms.py:47 -#: netbox/circuits/forms/model_forms.py:61 -#: netbox/circuits/forms/model_forms.py:93 -#: netbox/circuits/tables/circuits.py:58 -#: netbox/circuits/tables/circuits.py:108 -#: netbox/circuits/tables/circuits.py:160 -#: netbox/circuits/tables/providers.py:72 -#: netbox/circuits/tables/providers.py:103 -#: netbox/templates/circuits/circuit.html:18 -#: netbox/templates/circuits/circuittermination.html:25 -#: netbox/templates/circuits/provider.html:20 -#: netbox/templates/circuits/provideraccount.html:20 -#: netbox/templates/circuits/providernetwork.html:20 -#: netbox/templates/dcim/inc/cable_termination.html:51 +#: circuits/forms/bulk_edit.py:51 circuits/forms/bulk_edit.py:73 +#: circuits/forms/bulk_edit.py:123 circuits/forms/bulk_import.py:36 +#: circuits/forms/bulk_import.py:51 circuits/forms/bulk_import.py:74 +#: circuits/forms/filtersets.py:70 circuits/forms/filtersets.py:88 +#: circuits/forms/filtersets.py:116 circuits/forms/filtersets.py:131 +#: circuits/forms/filtersets.py:199 circuits/forms/filtersets.py:232 +#: circuits/forms/filtersets.py:255 circuits/forms/model_forms.py:47 +#: circuits/forms/model_forms.py:61 circuits/forms/model_forms.py:93 +#: circuits/tables/circuits.py:58 circuits/tables/circuits.py:108 +#: circuits/tables/circuits.py:160 circuits/tables/providers.py:72 +#: circuits/tables/providers.py:103 templates/circuits/circuit.html:18 +#: templates/circuits/circuittermination.html:25 +#: templates/circuits/provider.html:20 +#: templates/circuits/provideraccount.html:20 +#: templates/circuits/providernetwork.html:20 +#: templates/dcim/inc/cable_termination.html:51 msgid "Provider" msgstr "Provider " -#: netbox/circuits/forms/bulk_edit.py:80 -#: netbox/circuits/forms/filtersets.py:91 -#: netbox/templates/circuits/providernetwork.html:28 +#: circuits/forms/bulk_edit.py:80 circuits/forms/filtersets.py:91 +#: templates/circuits/providernetwork.html:28 msgid "Service ID" msgstr "ID del servizio" -#: netbox/circuits/forms/bulk_edit.py:100 -#: netbox/circuits/forms/filtersets.py:107 netbox/dcim/forms/bulk_edit.py:206 -#: netbox/dcim/forms/bulk_edit.py:604 netbox/dcim/forms/bulk_edit.py:804 -#: netbox/dcim/forms/bulk_edit.py:1173 netbox/dcim/forms/bulk_edit.py:1200 -#: netbox/dcim/forms/bulk_edit.py:1678 netbox/dcim/forms/filtersets.py:1064 -#: netbox/dcim/forms/filtersets.py:1455 netbox/dcim/forms/filtersets.py:1479 -#: netbox/dcim/tables/devices.py:704 netbox/dcim/tables/devices.py:761 -#: netbox/dcim/tables/devices.py:1003 netbox/dcim/tables/devicetypes.py:249 -#: netbox/dcim/tables/devicetypes.py:264 netbox/dcim/tables/racks.py:33 -#: netbox/extras/forms/bulk_edit.py:270 netbox/extras/tables/tables.py:443 -#: netbox/templates/circuits/circuittype.html:30 -#: netbox/templates/dcim/cable.html:40 -#: netbox/templates/dcim/devicerole.html:34 -#: netbox/templates/dcim/frontport.html:40 -#: netbox/templates/dcim/inventoryitemrole.html:26 -#: netbox/templates/dcim/rackrole.html:30 -#: netbox/templates/dcim/rearport.html:40 netbox/templates/extras/tag.html:26 +#: circuits/forms/bulk_edit.py:100 circuits/forms/filtersets.py:107 +#: dcim/forms/bulk_edit.py:206 dcim/forms/bulk_edit.py:604 +#: dcim/forms/bulk_edit.py:804 dcim/forms/bulk_edit.py:1173 +#: dcim/forms/bulk_edit.py:1200 dcim/forms/bulk_edit.py:1678 +#: dcim/forms/filtersets.py:1064 dcim/forms/filtersets.py:1455 +#: dcim/forms/filtersets.py:1479 dcim/tables/devices.py:704 +#: dcim/tables/devices.py:761 dcim/tables/devices.py:1003 +#: dcim/tables/devicetypes.py:249 dcim/tables/devicetypes.py:264 +#: dcim/tables/racks.py:33 extras/forms/bulk_edit.py:270 +#: extras/tables/tables.py:443 templates/circuits/circuittype.html:30 +#: templates/dcim/cable.html:40 templates/dcim/devicerole.html:34 +#: templates/dcim/frontport.html:40 templates/dcim/inventoryitemrole.html:26 +#: templates/dcim/rackrole.html:30 templates/dcim/rearport.html:40 +#: templates/extras/tag.html:26 msgid "Color" msgstr "Colore" -#: netbox/circuits/forms/bulk_edit.py:118 -#: netbox/circuits/forms/bulk_import.py:87 -#: netbox/circuits/forms/filtersets.py:126 netbox/core/forms/bulk_edit.py:18 -#: netbox/core/forms/filtersets.py:33 netbox/core/tables/change_logging.py:32 -#: netbox/core/tables/data.py:20 netbox/core/tables/jobs.py:18 -#: netbox/dcim/forms/bulk_edit.py:782 netbox/dcim/forms/bulk_edit.py:921 -#: netbox/dcim/forms/bulk_edit.py:989 netbox/dcim/forms/bulk_edit.py:1008 -#: netbox/dcim/forms/bulk_edit.py:1031 netbox/dcim/forms/bulk_edit.py:1073 -#: netbox/dcim/forms/bulk_edit.py:1117 netbox/dcim/forms/bulk_edit.py:1168 -#: netbox/dcim/forms/bulk_edit.py:1195 netbox/dcim/forms/bulk_import.py:188 -#: netbox/dcim/forms/bulk_import.py:260 netbox/dcim/forms/bulk_import.py:708 -#: netbox/dcim/forms/bulk_import.py:734 netbox/dcim/forms/bulk_import.py:760 -#: netbox/dcim/forms/bulk_import.py:780 netbox/dcim/forms/bulk_import.py:863 -#: netbox/dcim/forms/bulk_import.py:957 netbox/dcim/forms/bulk_import.py:999 -#: netbox/dcim/forms/bulk_import.py:1213 netbox/dcim/forms/bulk_import.py:1376 -#: netbox/dcim/forms/filtersets.py:955 netbox/dcim/forms/filtersets.py:1054 -#: netbox/dcim/forms/filtersets.py:1175 netbox/dcim/forms/filtersets.py:1247 -#: netbox/dcim/forms/filtersets.py:1272 netbox/dcim/forms/filtersets.py:1296 -#: netbox/dcim/forms/filtersets.py:1316 netbox/dcim/forms/filtersets.py:1353 -#: netbox/dcim/forms/filtersets.py:1450 netbox/dcim/forms/filtersets.py:1474 -#: netbox/dcim/forms/model_forms.py:703 netbox/dcim/forms/model_forms.py:709 -#: netbox/dcim/forms/object_import.py:84 -#: netbox/dcim/forms/object_import.py:113 -#: netbox/dcim/forms/object_import.py:145 netbox/dcim/tables/devices.py:178 -#: netbox/dcim/tables/devices.py:814 netbox/dcim/tables/power.py:77 -#: netbox/dcim/tables/racks.py:138 netbox/extras/forms/bulk_import.py:42 -#: netbox/extras/tables/tables.py:405 netbox/extras/tables/tables.py:465 -#: netbox/netbox/tables/tables.py:240 -#: netbox/templates/circuits/circuit.html:30 -#: netbox/templates/core/datasource.html:38 -#: netbox/templates/dcim/cable.html:15 -#: netbox/templates/dcim/consoleport.html:36 -#: netbox/templates/dcim/consoleserverport.html:36 -#: netbox/templates/dcim/frontport.html:36 -#: netbox/templates/dcim/interface.html:46 -#: netbox/templates/dcim/interface.html:169 -#: netbox/templates/dcim/interface.html:311 -#: netbox/templates/dcim/powerfeed.html:32 -#: netbox/templates/dcim/poweroutlet.html:36 -#: netbox/templates/dcim/powerport.html:36 -#: netbox/templates/dcim/rearport.html:36 -#: netbox/templates/extras/eventrule.html:74 -#: netbox/templates/virtualization/cluster.html:17 -#: netbox/templates/vpn/l2vpn.html:22 -#: netbox/templates/wireless/inc/authentication_attrs.html:8 -#: netbox/templates/wireless/inc/wirelesslink_interface.html:14 -#: netbox/virtualization/forms/bulk_edit.py:60 -#: netbox/virtualization/forms/bulk_import.py:41 -#: netbox/virtualization/forms/filtersets.py:54 -#: netbox/virtualization/forms/model_forms.py:62 -#: netbox/virtualization/tables/clusters.py:66 -#: netbox/vpn/forms/bulk_edit.py:264 netbox/vpn/forms/bulk_import.py:264 -#: netbox/vpn/forms/filtersets.py:217 netbox/vpn/forms/model_forms.py:84 -#: netbox/vpn/forms/model_forms.py:119 netbox/vpn/forms/model_forms.py:231 +#: circuits/forms/bulk_edit.py:118 circuits/forms/bulk_import.py:87 +#: circuits/forms/filtersets.py:126 core/forms/bulk_edit.py:18 +#: core/forms/filtersets.py:33 core/tables/change_logging.py:32 +#: core/tables/data.py:20 core/tables/jobs.py:18 dcim/forms/bulk_edit.py:782 +#: dcim/forms/bulk_edit.py:921 dcim/forms/bulk_edit.py:989 +#: dcim/forms/bulk_edit.py:1008 dcim/forms/bulk_edit.py:1031 +#: dcim/forms/bulk_edit.py:1073 dcim/forms/bulk_edit.py:1117 +#: dcim/forms/bulk_edit.py:1168 dcim/forms/bulk_edit.py:1195 +#: dcim/forms/bulk_import.py:188 dcim/forms/bulk_import.py:260 +#: dcim/forms/bulk_import.py:708 dcim/forms/bulk_import.py:734 +#: dcim/forms/bulk_import.py:760 dcim/forms/bulk_import.py:780 +#: dcim/forms/bulk_import.py:863 dcim/forms/bulk_import.py:957 +#: dcim/forms/bulk_import.py:999 dcim/forms/bulk_import.py:1213 +#: dcim/forms/bulk_import.py:1376 dcim/forms/filtersets.py:955 +#: dcim/forms/filtersets.py:1054 dcim/forms/filtersets.py:1175 +#: dcim/forms/filtersets.py:1247 dcim/forms/filtersets.py:1272 +#: dcim/forms/filtersets.py:1296 dcim/forms/filtersets.py:1316 +#: dcim/forms/filtersets.py:1353 dcim/forms/filtersets.py:1450 +#: dcim/forms/filtersets.py:1474 dcim/forms/model_forms.py:703 +#: dcim/forms/model_forms.py:709 dcim/forms/object_import.py:84 +#: dcim/forms/object_import.py:113 dcim/forms/object_import.py:145 +#: dcim/tables/devices.py:178 dcim/tables/devices.py:814 +#: dcim/tables/power.py:77 dcim/tables/racks.py:138 +#: extras/forms/bulk_import.py:42 extras/tables/tables.py:405 +#: extras/tables/tables.py:465 netbox/tables/tables.py:240 +#: templates/circuits/circuit.html:30 templates/core/datasource.html:38 +#: templates/dcim/cable.html:15 templates/dcim/consoleport.html:36 +#: templates/dcim/consoleserverport.html:36 templates/dcim/frontport.html:36 +#: templates/dcim/interface.html:46 templates/dcim/interface.html:169 +#: templates/dcim/interface.html:311 templates/dcim/powerfeed.html:32 +#: templates/dcim/poweroutlet.html:36 templates/dcim/powerport.html:36 +#: templates/dcim/rearport.html:36 templates/extras/eventrule.html:74 +#: templates/virtualization/cluster.html:17 templates/vpn/l2vpn.html:22 +#: templates/wireless/inc/authentication_attrs.html:8 +#: templates/wireless/inc/wirelesslink_interface.html:14 +#: virtualization/forms/bulk_edit.py:60 virtualization/forms/bulk_import.py:41 +#: virtualization/forms/filtersets.py:54 +#: virtualization/forms/model_forms.py:62 virtualization/tables/clusters.py:66 +#: vpn/forms/bulk_edit.py:264 vpn/forms/bulk_import.py:264 +#: vpn/forms/filtersets.py:217 vpn/forms/model_forms.py:84 +#: vpn/forms/model_forms.py:119 vpn/forms/model_forms.py:231 msgid "Type" msgstr "Tipo" -#: netbox/circuits/forms/bulk_edit.py:128 -#: netbox/circuits/forms/bulk_import.py:80 -#: netbox/circuits/forms/filtersets.py:139 -#: netbox/circuits/forms/model_forms.py:98 +#: circuits/forms/bulk_edit.py:128 circuits/forms/bulk_import.py:80 +#: circuits/forms/filtersets.py:139 circuits/forms/model_forms.py:98 msgid "Provider account" msgstr "Provider account " -#: netbox/circuits/forms/bulk_edit.py:136 -#: netbox/circuits/forms/bulk_import.py:93 -#: netbox/circuits/forms/filtersets.py:150 netbox/core/forms/filtersets.py:38 -#: netbox/core/forms/filtersets.py:79 netbox/core/tables/data.py:23 -#: netbox/core/tables/jobs.py:26 netbox/core/tables/tasks.py:88 -#: netbox/dcim/forms/bulk_edit.py:106 netbox/dcim/forms/bulk_edit.py:181 -#: netbox/dcim/forms/bulk_edit.py:351 netbox/dcim/forms/bulk_edit.py:700 -#: netbox/dcim/forms/bulk_edit.py:756 netbox/dcim/forms/bulk_edit.py:788 -#: netbox/dcim/forms/bulk_edit.py:915 netbox/dcim/forms/bulk_edit.py:1701 -#: netbox/dcim/forms/bulk_import.py:88 netbox/dcim/forms/bulk_import.py:147 -#: netbox/dcim/forms/bulk_import.py:248 netbox/dcim/forms/bulk_import.py:505 -#: netbox/dcim/forms/bulk_import.py:659 netbox/dcim/forms/bulk_import.py:1207 -#: netbox/dcim/forms/bulk_import.py:1371 netbox/dcim/forms/bulk_import.py:1435 -#: netbox/dcim/forms/filtersets.py:178 netbox/dcim/forms/filtersets.py:237 -#: netbox/dcim/forms/filtersets.py:359 netbox/dcim/forms/filtersets.py:799 -#: netbox/dcim/forms/filtersets.py:924 netbox/dcim/forms/filtersets.py:958 -#: netbox/dcim/forms/filtersets.py:1059 netbox/dcim/forms/filtersets.py:1170 -#: netbox/dcim/tables/devices.py:140 netbox/dcim/tables/devices.py:817 -#: netbox/dcim/tables/devices.py:1063 netbox/dcim/tables/modules.py:69 -#: netbox/dcim/tables/power.py:74 netbox/dcim/tables/racks.py:126 -#: netbox/dcim/tables/sites.py:82 netbox/dcim/tables/sites.py:138 -#: netbox/ipam/forms/bulk_edit.py:255 netbox/ipam/forms/bulk_edit.py:305 -#: netbox/ipam/forms/bulk_edit.py:353 netbox/ipam/forms/bulk_edit.py:551 -#: netbox/ipam/forms/bulk_import.py:192 netbox/ipam/forms/bulk_import.py:257 -#: netbox/ipam/forms/bulk_import.py:293 netbox/ipam/forms/bulk_import.py:450 -#: netbox/ipam/forms/filtersets.py:210 netbox/ipam/forms/filtersets.py:281 -#: netbox/ipam/forms/filtersets.py:355 netbox/ipam/forms/filtersets.py:501 -#: netbox/ipam/forms/model_forms.py:468 netbox/ipam/tables/ip.py:237 -#: netbox/ipam/tables/ip.py:312 netbox/ipam/tables/ip.py:363 -#: netbox/ipam/tables/ip.py:426 netbox/ipam/tables/ip.py:453 -#: netbox/ipam/tables/vlans.py:126 netbox/ipam/tables/vlans.py:232 -#: netbox/templates/circuits/circuit.html:34 -#: netbox/templates/core/datasource.html:46 netbox/templates/core/job.html:48 -#: netbox/templates/core/rq_task.html:81 netbox/templates/core/system.html:18 -#: netbox/templates/dcim/cable.html:19 netbox/templates/dcim/device.html:178 -#: netbox/templates/dcim/location.html:45 netbox/templates/dcim/module.html:69 -#: netbox/templates/dcim/powerfeed.html:36 netbox/templates/dcim/rack.html:41 -#: netbox/templates/dcim/site.html:43 -#: netbox/templates/extras/script_list.html:47 -#: netbox/templates/ipam/ipaddress.html:37 -#: netbox/templates/ipam/iprange.html:54 netbox/templates/ipam/prefix.html:73 -#: netbox/templates/ipam/vlan.html:48 -#: netbox/templates/virtualization/cluster.html:21 -#: netbox/templates/virtualization/virtualmachine.html:19 -#: netbox/templates/vpn/tunnel.html:25 -#: netbox/templates/wireless/wirelesslan.html:22 -#: netbox/templates/wireless/wirelesslink.html:17 -#: netbox/users/forms/filtersets.py:32 netbox/users/forms/model_forms.py:194 -#: netbox/virtualization/forms/bulk_edit.py:70 -#: netbox/virtualization/forms/bulk_edit.py:118 -#: netbox/virtualization/forms/bulk_import.py:54 -#: netbox/virtualization/forms/bulk_import.py:80 -#: netbox/virtualization/forms/filtersets.py:62 -#: netbox/virtualization/forms/filtersets.py:160 -#: netbox/virtualization/tables/clusters.py:74 -#: netbox/virtualization/tables/virtualmachines.py:60 -#: netbox/vpn/forms/bulk_edit.py:39 netbox/vpn/forms/bulk_import.py:37 -#: netbox/vpn/forms/filtersets.py:47 netbox/vpn/tables/tunnels.py:48 -#: netbox/wireless/forms/bulk_edit.py:43 -#: netbox/wireless/forms/bulk_edit.py:105 -#: netbox/wireless/forms/bulk_import.py:43 -#: netbox/wireless/forms/bulk_import.py:84 -#: netbox/wireless/forms/filtersets.py:49 -#: netbox/wireless/forms/filtersets.py:83 -#: netbox/wireless/tables/wirelesslan.py:52 -#: netbox/wireless/tables/wirelesslink.py:20 +#: circuits/forms/bulk_edit.py:136 circuits/forms/bulk_import.py:93 +#: circuits/forms/filtersets.py:150 core/forms/filtersets.py:38 +#: core/forms/filtersets.py:79 core/tables/data.py:23 core/tables/jobs.py:26 +#: core/tables/tasks.py:88 dcim/forms/bulk_edit.py:106 +#: dcim/forms/bulk_edit.py:181 dcim/forms/bulk_edit.py:351 +#: dcim/forms/bulk_edit.py:700 dcim/forms/bulk_edit.py:756 +#: dcim/forms/bulk_edit.py:788 dcim/forms/bulk_edit.py:915 +#: dcim/forms/bulk_edit.py:1701 dcim/forms/bulk_import.py:88 +#: dcim/forms/bulk_import.py:147 dcim/forms/bulk_import.py:248 +#: dcim/forms/bulk_import.py:505 dcim/forms/bulk_import.py:659 +#: dcim/forms/bulk_import.py:1207 dcim/forms/bulk_import.py:1371 +#: dcim/forms/bulk_import.py:1435 dcim/forms/filtersets.py:178 +#: dcim/forms/filtersets.py:237 dcim/forms/filtersets.py:359 +#: dcim/forms/filtersets.py:799 dcim/forms/filtersets.py:924 +#: dcim/forms/filtersets.py:958 dcim/forms/filtersets.py:1059 +#: dcim/forms/filtersets.py:1170 dcim/tables/devices.py:140 +#: dcim/tables/devices.py:817 dcim/tables/devices.py:1063 +#: dcim/tables/modules.py:69 dcim/tables/power.py:74 dcim/tables/racks.py:126 +#: dcim/tables/sites.py:82 dcim/tables/sites.py:138 +#: ipam/forms/bulk_edit.py:256 ipam/forms/bulk_edit.py:306 +#: ipam/forms/bulk_edit.py:354 ipam/forms/bulk_edit.py:506 +#: ipam/forms/bulk_import.py:192 ipam/forms/bulk_import.py:257 +#: ipam/forms/bulk_import.py:293 ipam/forms/bulk_import.py:450 +#: ipam/forms/filtersets.py:210 ipam/forms/filtersets.py:281 +#: ipam/forms/filtersets.py:355 ipam/forms/filtersets.py:501 +#: ipam/forms/model_forms.py:468 ipam/tables/ip.py:237 ipam/tables/ip.py:312 +#: ipam/tables/ip.py:363 ipam/tables/ip.py:426 ipam/tables/ip.py:453 +#: ipam/tables/vlans.py:126 ipam/tables/vlans.py:232 +#: templates/circuits/circuit.html:34 templates/core/datasource.html:46 +#: templates/core/job.html:48 templates/core/rq_task.html:81 +#: templates/core/system.html:18 templates/dcim/cable.html:19 +#: templates/dcim/device.html:178 templates/dcim/location.html:45 +#: templates/dcim/module.html:69 templates/dcim/powerfeed.html:36 +#: templates/dcim/rack.html:41 templates/dcim/site.html:43 +#: templates/extras/script_list.html:47 templates/ipam/ipaddress.html:37 +#: templates/ipam/iprange.html:54 templates/ipam/prefix.html:73 +#: templates/ipam/vlan.html:48 templates/virtualization/cluster.html:21 +#: templates/virtualization/virtualmachine.html:19 +#: templates/vpn/tunnel.html:25 templates/wireless/wirelesslan.html:22 +#: templates/wireless/wirelesslink.html:17 users/forms/filtersets.py:32 +#: users/forms/model_forms.py:194 virtualization/forms/bulk_edit.py:70 +#: virtualization/forms/bulk_edit.py:118 +#: virtualization/forms/bulk_import.py:54 +#: virtualization/forms/bulk_import.py:80 +#: virtualization/forms/filtersets.py:62 +#: virtualization/forms/filtersets.py:160 virtualization/tables/clusters.py:74 +#: virtualization/tables/virtualmachines.py:60 vpn/forms/bulk_edit.py:39 +#: vpn/forms/bulk_import.py:37 vpn/forms/filtersets.py:47 +#: vpn/tables/tunnels.py:48 wireless/forms/bulk_edit.py:43 +#: wireless/forms/bulk_edit.py:105 wireless/forms/bulk_import.py:43 +#: wireless/forms/bulk_import.py:84 wireless/forms/filtersets.py:49 +#: wireless/forms/filtersets.py:83 wireless/tables/wirelesslan.py:52 +#: wireless/tables/wirelesslink.py:20 msgid "Status" msgstr "Status" -#: netbox/circuits/forms/bulk_edit.py:142 -#: netbox/circuits/forms/bulk_edit.py:233 -#: netbox/circuits/forms/bulk_import.py:98 -#: netbox/circuits/forms/bulk_import.py:158 -#: netbox/circuits/forms/filtersets.py:119 -#: netbox/circuits/forms/filtersets.py:241 netbox/dcim/forms/bulk_edit.py:122 -#: netbox/dcim/forms/bulk_edit.py:187 netbox/dcim/forms/bulk_edit.py:346 -#: netbox/dcim/forms/bulk_edit.py:461 netbox/dcim/forms/bulk_edit.py:690 -#: netbox/dcim/forms/bulk_edit.py:794 netbox/dcim/forms/bulk_edit.py:1706 -#: netbox/dcim/forms/bulk_import.py:107 netbox/dcim/forms/bulk_import.py:152 -#: netbox/dcim/forms/bulk_import.py:241 netbox/dcim/forms/bulk_import.py:334 -#: netbox/dcim/forms/bulk_import.py:479 netbox/dcim/forms/bulk_import.py:1219 -#: netbox/dcim/forms/bulk_import.py:1428 netbox/dcim/forms/filtersets.py:173 -#: netbox/dcim/forms/filtersets.py:205 netbox/dcim/forms/filtersets.py:323 -#: netbox/dcim/forms/filtersets.py:399 netbox/dcim/forms/filtersets.py:420 -#: netbox/dcim/forms/filtersets.py:722 netbox/dcim/forms/filtersets.py:916 -#: netbox/dcim/forms/filtersets.py:978 netbox/dcim/forms/filtersets.py:1008 -#: netbox/dcim/forms/filtersets.py:1130 netbox/dcim/tables/power.py:88 -#: netbox/extras/filtersets.py:612 netbox/extras/forms/filtersets.py:323 -#: netbox/extras/forms/filtersets.py:396 netbox/ipam/forms/bulk_edit.py:42 -#: netbox/ipam/forms/bulk_edit.py:67 netbox/ipam/forms/bulk_edit.py:111 -#: netbox/ipam/forms/bulk_edit.py:140 netbox/ipam/forms/bulk_edit.py:165 -#: netbox/ipam/forms/bulk_edit.py:250 netbox/ipam/forms/bulk_edit.py:300 -#: netbox/ipam/forms/bulk_edit.py:348 netbox/ipam/forms/bulk_edit.py:546 -#: netbox/ipam/forms/bulk_import.py:38 netbox/ipam/forms/bulk_import.py:67 -#: netbox/ipam/forms/bulk_import.py:95 netbox/ipam/forms/bulk_import.py:115 -#: netbox/ipam/forms/bulk_import.py:135 netbox/ipam/forms/bulk_import.py:164 -#: netbox/ipam/forms/bulk_import.py:250 netbox/ipam/forms/bulk_import.py:286 -#: netbox/ipam/forms/bulk_import.py:443 netbox/ipam/forms/filtersets.py:48 -#: netbox/ipam/forms/filtersets.py:68 netbox/ipam/forms/filtersets.py:100 -#: netbox/ipam/forms/filtersets.py:120 netbox/ipam/forms/filtersets.py:143 -#: netbox/ipam/forms/filtersets.py:174 netbox/ipam/forms/filtersets.py:267 -#: netbox/ipam/forms/filtersets.py:310 netbox/ipam/forms/filtersets.py:469 -#: netbox/ipam/tables/ip.py:456 netbox/ipam/tables/vlans.py:229 -#: netbox/templates/circuits/circuit.html:38 -#: netbox/templates/circuits/circuitgroup.html:36 -#: netbox/templates/dcim/cable.html:23 netbox/templates/dcim/device.html:79 -#: netbox/templates/dcim/location.html:49 -#: netbox/templates/dcim/powerfeed.html:44 netbox/templates/dcim/rack.html:32 -#: netbox/templates/dcim/rackreservation.html:49 -#: netbox/templates/dcim/site.html:47 -#: netbox/templates/dcim/virtualdevicecontext.html:52 -#: netbox/templates/ipam/aggregate.html:30 netbox/templates/ipam/asn.html:33 -#: netbox/templates/ipam/asnrange.html:29 -#: netbox/templates/ipam/ipaddress.html:28 -#: netbox/templates/ipam/iprange.html:58 netbox/templates/ipam/prefix.html:29 -#: netbox/templates/ipam/routetarget.html:17 -#: netbox/templates/ipam/vlan.html:39 netbox/templates/ipam/vrf.html:20 -#: netbox/templates/tenancy/tenant.html:17 -#: netbox/templates/virtualization/cluster.html:33 -#: netbox/templates/virtualization/virtualmachine.html:39 -#: netbox/templates/vpn/l2vpn.html:30 netbox/templates/vpn/tunnel.html:49 -#: netbox/templates/wireless/wirelesslan.html:34 -#: netbox/templates/wireless/wirelesslink.html:25 -#: netbox/tenancy/forms/forms.py:25 netbox/tenancy/forms/forms.py:48 -#: netbox/tenancy/forms/model_forms.py:52 netbox/tenancy/tables/columns.py:64 -#: netbox/virtualization/forms/bulk_edit.py:76 -#: netbox/virtualization/forms/bulk_edit.py:155 -#: netbox/virtualization/forms/bulk_import.py:66 -#: netbox/virtualization/forms/bulk_import.py:115 -#: netbox/virtualization/forms/filtersets.py:47 -#: netbox/virtualization/forms/filtersets.py:105 -#: netbox/vpn/forms/bulk_edit.py:59 netbox/vpn/forms/bulk_edit.py:269 -#: netbox/vpn/forms/bulk_import.py:59 netbox/vpn/forms/bulk_import.py:258 -#: netbox/vpn/forms/filtersets.py:214 netbox/wireless/forms/bulk_edit.py:63 -#: netbox/wireless/forms/bulk_edit.py:110 -#: netbox/wireless/forms/bulk_import.py:55 -#: netbox/wireless/forms/bulk_import.py:97 -#: netbox/wireless/forms/filtersets.py:35 -#: netbox/wireless/forms/filtersets.py:75 +#: circuits/forms/bulk_edit.py:142 circuits/forms/bulk_edit.py:233 +#: circuits/forms/bulk_import.py:98 circuits/forms/bulk_import.py:158 +#: circuits/forms/filtersets.py:119 circuits/forms/filtersets.py:241 +#: dcim/forms/bulk_edit.py:122 dcim/forms/bulk_edit.py:187 +#: dcim/forms/bulk_edit.py:346 dcim/forms/bulk_edit.py:461 +#: dcim/forms/bulk_edit.py:690 dcim/forms/bulk_edit.py:794 +#: dcim/forms/bulk_edit.py:1706 dcim/forms/bulk_import.py:107 +#: dcim/forms/bulk_import.py:152 dcim/forms/bulk_import.py:241 +#: dcim/forms/bulk_import.py:334 dcim/forms/bulk_import.py:479 +#: dcim/forms/bulk_import.py:1219 dcim/forms/bulk_import.py:1428 +#: dcim/forms/filtersets.py:173 dcim/forms/filtersets.py:205 +#: dcim/forms/filtersets.py:323 dcim/forms/filtersets.py:399 +#: dcim/forms/filtersets.py:420 dcim/forms/filtersets.py:722 +#: dcim/forms/filtersets.py:916 dcim/forms/filtersets.py:978 +#: dcim/forms/filtersets.py:1008 dcim/forms/filtersets.py:1130 +#: dcim/tables/power.py:88 extras/filtersets.py:612 +#: extras/forms/filtersets.py:323 extras/forms/filtersets.py:396 +#: ipam/forms/bulk_edit.py:43 ipam/forms/bulk_edit.py:68 +#: ipam/forms/bulk_edit.py:112 ipam/forms/bulk_edit.py:141 +#: ipam/forms/bulk_edit.py:166 ipam/forms/bulk_edit.py:251 +#: ipam/forms/bulk_edit.py:301 ipam/forms/bulk_edit.py:349 +#: ipam/forms/bulk_edit.py:501 ipam/forms/bulk_import.py:38 +#: ipam/forms/bulk_import.py:67 ipam/forms/bulk_import.py:95 +#: ipam/forms/bulk_import.py:115 ipam/forms/bulk_import.py:135 +#: ipam/forms/bulk_import.py:164 ipam/forms/bulk_import.py:250 +#: ipam/forms/bulk_import.py:286 ipam/forms/bulk_import.py:443 +#: ipam/forms/filtersets.py:48 ipam/forms/filtersets.py:68 +#: ipam/forms/filtersets.py:100 ipam/forms/filtersets.py:120 +#: ipam/forms/filtersets.py:143 ipam/forms/filtersets.py:174 +#: ipam/forms/filtersets.py:267 ipam/forms/filtersets.py:310 +#: ipam/forms/filtersets.py:469 ipam/tables/ip.py:456 ipam/tables/vlans.py:229 +#: templates/circuits/circuit.html:38 templates/circuits/circuitgroup.html:36 +#: templates/dcim/cable.html:23 templates/dcim/device.html:79 +#: templates/dcim/location.html:49 templates/dcim/powerfeed.html:44 +#: templates/dcim/rack.html:32 templates/dcim/rackreservation.html:49 +#: templates/dcim/site.html:47 templates/dcim/virtualdevicecontext.html:52 +#: templates/ipam/aggregate.html:30 templates/ipam/asn.html:33 +#: templates/ipam/asnrange.html:29 templates/ipam/ipaddress.html:28 +#: templates/ipam/iprange.html:58 templates/ipam/prefix.html:29 +#: templates/ipam/routetarget.html:17 templates/ipam/vlan.html:39 +#: templates/ipam/vrf.html:20 templates/tenancy/tenant.html:17 +#: templates/virtualization/cluster.html:33 +#: templates/virtualization/virtualmachine.html:39 templates/vpn/l2vpn.html:30 +#: templates/vpn/tunnel.html:49 templates/wireless/wirelesslan.html:34 +#: templates/wireless/wirelesslink.html:25 tenancy/forms/forms.py:25 +#: tenancy/forms/forms.py:48 tenancy/forms/model_forms.py:52 +#: tenancy/tables/columns.py:64 virtualization/forms/bulk_edit.py:76 +#: virtualization/forms/bulk_edit.py:155 +#: virtualization/forms/bulk_import.py:66 +#: virtualization/forms/bulk_import.py:115 +#: virtualization/forms/filtersets.py:47 +#: virtualization/forms/filtersets.py:105 vpn/forms/bulk_edit.py:59 +#: vpn/forms/bulk_edit.py:269 vpn/forms/bulk_import.py:59 +#: vpn/forms/bulk_import.py:258 vpn/forms/filtersets.py:214 +#: wireless/forms/bulk_edit.py:63 wireless/forms/bulk_edit.py:110 +#: wireless/forms/bulk_import.py:55 wireless/forms/bulk_import.py:97 +#: wireless/forms/filtersets.py:35 wireless/forms/filtersets.py:75 msgid "Tenant" msgstr "Tenant" -#: netbox/circuits/forms/bulk_edit.py:147 -#: netbox/circuits/forms/filtersets.py:174 +#: circuits/forms/bulk_edit.py:147 circuits/forms/filtersets.py:174 msgid "Install date" msgstr "Data di installazione" -#: netbox/circuits/forms/bulk_edit.py:152 -#: netbox/circuits/forms/filtersets.py:179 +#: circuits/forms/bulk_edit.py:152 circuits/forms/filtersets.py:179 msgid "Termination date" msgstr "Data di dismissione" -#: netbox/circuits/forms/bulk_edit.py:158 -#: netbox/circuits/forms/filtersets.py:186 +#: circuits/forms/bulk_edit.py:158 circuits/forms/filtersets.py:186 msgid "Commit rate (Kbps)" msgstr "Commit ratet (Kbps)" -#: netbox/circuits/forms/bulk_edit.py:173 -#: netbox/circuits/forms/model_forms.py:112 +#: circuits/forms/bulk_edit.py:173 circuits/forms/model_forms.py:112 msgid "Service Parameters" msgstr "Parametri del servizio" -#: netbox/circuits/forms/bulk_edit.py:174 -#: netbox/circuits/forms/model_forms.py:113 -#: netbox/circuits/forms/model_forms.py:183 -#: netbox/dcim/forms/model_forms.py:139 netbox/dcim/forms/model_forms.py:181 -#: netbox/dcim/forms/model_forms.py:266 netbox/dcim/forms/model_forms.py:323 -#: netbox/dcim/forms/model_forms.py:768 netbox/dcim/forms/model_forms.py:1692 -#: netbox/ipam/forms/model_forms.py:64 netbox/ipam/forms/model_forms.py:81 -#: netbox/ipam/forms/model_forms.py:115 netbox/ipam/forms/model_forms.py:136 -#: netbox/ipam/forms/model_forms.py:160 netbox/ipam/forms/model_forms.py:232 -#: netbox/ipam/forms/model_forms.py:261 netbox/ipam/forms/model_forms.py:316 -#: netbox/netbox/navigation/menu.py:24 -#: netbox/templates/dcim/device_edit.html:85 -#: netbox/templates/dcim/htmx/cable_edit.html:72 -#: netbox/templates/ipam/ipaddress_bulk_add.html:27 -#: netbox/templates/ipam/vlan_edit.html:22 -#: netbox/virtualization/forms/model_forms.py:80 -#: netbox/virtualization/forms/model_forms.py:222 -#: netbox/vpn/forms/bulk_edit.py:78 netbox/vpn/forms/filtersets.py:44 -#: netbox/vpn/forms/model_forms.py:62 netbox/vpn/forms/model_forms.py:147 -#: netbox/vpn/forms/model_forms.py:411 netbox/wireless/forms/model_forms.py:54 -#: netbox/wireless/forms/model_forms.py:170 +#: circuits/forms/bulk_edit.py:174 circuits/forms/model_forms.py:113 +#: circuits/forms/model_forms.py:183 dcim/forms/model_forms.py:139 +#: dcim/forms/model_forms.py:181 dcim/forms/model_forms.py:266 +#: dcim/forms/model_forms.py:323 dcim/forms/model_forms.py:768 +#: dcim/forms/model_forms.py:1692 ipam/forms/model_forms.py:64 +#: ipam/forms/model_forms.py:81 ipam/forms/model_forms.py:115 +#: ipam/forms/model_forms.py:136 ipam/forms/model_forms.py:160 +#: ipam/forms/model_forms.py:232 ipam/forms/model_forms.py:261 +#: ipam/forms/model_forms.py:316 netbox/navigation/menu.py:24 +#: templates/dcim/device_edit.html:85 templates/dcim/htmx/cable_edit.html:72 +#: templates/ipam/ipaddress_bulk_add.html:27 templates/ipam/vlan_edit.html:22 +#: virtualization/forms/model_forms.py:80 +#: virtualization/forms/model_forms.py:222 vpn/forms/bulk_edit.py:78 +#: vpn/forms/filtersets.py:44 vpn/forms/model_forms.py:62 +#: vpn/forms/model_forms.py:147 vpn/forms/model_forms.py:411 +#: wireless/forms/model_forms.py:54 wireless/forms/model_forms.py:170 msgid "Tenancy" msgstr "Tenancy" -#: netbox/circuits/forms/bulk_edit.py:193 -#: netbox/circuits/forms/bulk_edit.py:217 -#: netbox/circuits/forms/model_forms.py:155 -#: netbox/circuits/tables/circuits.py:117 -#: netbox/templates/circuits/inc/circuit_termination_fields.html:62 -#: netbox/templates/circuits/providernetwork.html:17 +#: circuits/forms/bulk_edit.py:193 circuits/forms/bulk_edit.py:217 +#: circuits/forms/model_forms.py:155 circuits/tables/circuits.py:117 +#: templates/circuits/inc/circuit_termination_fields.html:62 +#: templates/circuits/providernetwork.html:17 msgid "Provider Network" msgstr "Provider Network" -#: netbox/circuits/forms/bulk_edit.py:199 +#: circuits/forms/bulk_edit.py:199 msgid "Port speed (Kbps)" msgstr "Port speed (Kbps)" -#: netbox/circuits/forms/bulk_edit.py:203 +#: circuits/forms/bulk_edit.py:203 msgid "Upstream speed (Kbps)" msgstr "Upstream speed (Kbps)" -#: netbox/circuits/forms/bulk_edit.py:206 netbox/dcim/forms/bulk_edit.py:951 -#: netbox/dcim/forms/bulk_edit.py:1315 netbox/dcim/forms/bulk_edit.py:1332 -#: netbox/dcim/forms/bulk_edit.py:1349 netbox/dcim/forms/bulk_edit.py:1367 -#: netbox/dcim/forms/bulk_edit.py:1455 netbox/dcim/forms/bulk_edit.py:1594 -#: netbox/dcim/forms/bulk_edit.py:1611 +#: circuits/forms/bulk_edit.py:206 dcim/forms/bulk_edit.py:951 +#: dcim/forms/bulk_edit.py:1315 dcim/forms/bulk_edit.py:1332 +#: dcim/forms/bulk_edit.py:1349 dcim/forms/bulk_edit.py:1367 +#: dcim/forms/bulk_edit.py:1455 dcim/forms/bulk_edit.py:1594 +#: dcim/forms/bulk_edit.py:1611 msgid "Mark connected" msgstr "Segna connesso" -#: netbox/circuits/forms/bulk_edit.py:219 -#: netbox/circuits/forms/model_forms.py:157 -#: netbox/templates/circuits/inc/circuit_termination_fields.html:54 -#: netbox/templates/dcim/frontport.html:121 -#: netbox/templates/dcim/interface.html:193 -#: netbox/templates/dcim/rearport.html:111 +#: circuits/forms/bulk_edit.py:219 circuits/forms/model_forms.py:157 +#: templates/circuits/inc/circuit_termination_fields.html:54 +#: templates/dcim/frontport.html:121 templates/dcim/interface.html:193 +#: templates/dcim/rearport.html:111 msgid "Circuit Termination" msgstr "Terminazione del circuito" -#: netbox/circuits/forms/bulk_edit.py:221 -#: netbox/circuits/forms/model_forms.py:159 +#: circuits/forms/bulk_edit.py:221 circuits/forms/model_forms.py:159 msgid "Termination Details" msgstr "Dettagli sulla cessazione" -#: netbox/circuits/forms/bulk_edit.py:251 -#: netbox/circuits/forms/filtersets.py:268 -#: netbox/circuits/tables/circuits.py:168 netbox/dcim/forms/model_forms.py:551 -#: netbox/templates/circuits/circuitgroupassignment.html:30 -#: netbox/templates/dcim/device.html:133 -#: netbox/templates/dcim/virtualchassis.html:68 -#: netbox/templates/dcim/virtualchassis_edit.html:56 -#: netbox/templates/ipam/inc/panels/fhrp_groups.html:26 -#: netbox/tenancy/forms/bulk_edit.py:147 -#: netbox/tenancy/forms/filtersets.py:110 +#: circuits/forms/bulk_edit.py:251 circuits/forms/filtersets.py:268 +#: circuits/tables/circuits.py:168 dcim/forms/model_forms.py:551 +#: templates/circuits/circuitgroupassignment.html:30 +#: templates/dcim/device.html:133 templates/dcim/virtualchassis.html:68 +#: templates/dcim/virtualchassis_edit.html:56 +#: templates/ipam/inc/panels/fhrp_groups.html:26 +#: tenancy/forms/bulk_edit.py:147 tenancy/forms/filtersets.py:110 msgid "Priority" msgstr "Priorità" -#: netbox/circuits/forms/bulk_import.py:39 -#: netbox/circuits/forms/bulk_import.py:54 -#: netbox/circuits/forms/bulk_import.py:77 +#: circuits/forms/bulk_import.py:39 circuits/forms/bulk_import.py:54 +#: circuits/forms/bulk_import.py:77 msgid "Assigned provider" msgstr "Provider assegnato" -#: netbox/circuits/forms/bulk_import.py:83 +#: circuits/forms/bulk_import.py:83 msgid "Assigned provider account" msgstr "Account provider assegnato" -#: netbox/circuits/forms/bulk_import.py:90 +#: circuits/forms/bulk_import.py:90 msgid "Type of circuit" msgstr "Tipo di circuito" -#: netbox/circuits/forms/bulk_import.py:95 netbox/dcim/forms/bulk_import.py:90 -#: netbox/dcim/forms/bulk_import.py:149 netbox/dcim/forms/bulk_import.py:250 -#: netbox/dcim/forms/bulk_import.py:507 netbox/dcim/forms/bulk_import.py:661 -#: netbox/dcim/forms/bulk_import.py:1373 netbox/ipam/forms/bulk_import.py:194 -#: netbox/ipam/forms/bulk_import.py:259 netbox/ipam/forms/bulk_import.py:295 -#: netbox/ipam/forms/bulk_import.py:452 -#: netbox/virtualization/forms/bulk_import.py:56 -#: netbox/virtualization/forms/bulk_import.py:82 -#: netbox/vpn/forms/bulk_import.py:39 netbox/wireless/forms/bulk_import.py:45 +#: circuits/forms/bulk_import.py:95 dcim/forms/bulk_import.py:90 +#: dcim/forms/bulk_import.py:149 dcim/forms/bulk_import.py:250 +#: dcim/forms/bulk_import.py:507 dcim/forms/bulk_import.py:661 +#: dcim/forms/bulk_import.py:1373 ipam/forms/bulk_import.py:194 +#: ipam/forms/bulk_import.py:259 ipam/forms/bulk_import.py:295 +#: ipam/forms/bulk_import.py:452 virtualization/forms/bulk_import.py:56 +#: virtualization/forms/bulk_import.py:82 vpn/forms/bulk_import.py:39 +#: wireless/forms/bulk_import.py:45 msgid "Operational status" msgstr "Stato operativo" -#: netbox/circuits/forms/bulk_import.py:102 -#: netbox/circuits/forms/bulk_import.py:162 -#: netbox/dcim/forms/bulk_import.py:111 netbox/dcim/forms/bulk_import.py:156 -#: netbox/dcim/forms/bulk_import.py:338 netbox/dcim/forms/bulk_import.py:483 -#: netbox/dcim/forms/bulk_import.py:1223 netbox/dcim/forms/bulk_import.py:1368 -#: netbox/dcim/forms/bulk_import.py:1432 netbox/ipam/forms/bulk_import.py:42 -#: netbox/ipam/forms/bulk_import.py:71 netbox/ipam/forms/bulk_import.py:99 -#: netbox/ipam/forms/bulk_import.py:119 netbox/ipam/forms/bulk_import.py:139 -#: netbox/ipam/forms/bulk_import.py:168 netbox/ipam/forms/bulk_import.py:254 -#: netbox/ipam/forms/bulk_import.py:290 netbox/ipam/forms/bulk_import.py:447 -#: netbox/virtualization/forms/bulk_import.py:70 -#: netbox/virtualization/forms/bulk_import.py:119 -#: netbox/vpn/forms/bulk_import.py:63 netbox/wireless/forms/bulk_import.py:59 -#: netbox/wireless/forms/bulk_import.py:101 +#: circuits/forms/bulk_import.py:102 circuits/forms/bulk_import.py:162 +#: dcim/forms/bulk_import.py:111 dcim/forms/bulk_import.py:156 +#: dcim/forms/bulk_import.py:338 dcim/forms/bulk_import.py:483 +#: dcim/forms/bulk_import.py:1223 dcim/forms/bulk_import.py:1368 +#: dcim/forms/bulk_import.py:1432 ipam/forms/bulk_import.py:42 +#: ipam/forms/bulk_import.py:71 ipam/forms/bulk_import.py:99 +#: ipam/forms/bulk_import.py:119 ipam/forms/bulk_import.py:139 +#: ipam/forms/bulk_import.py:168 ipam/forms/bulk_import.py:254 +#: ipam/forms/bulk_import.py:290 ipam/forms/bulk_import.py:447 +#: virtualization/forms/bulk_import.py:70 +#: virtualization/forms/bulk_import.py:119 vpn/forms/bulk_import.py:63 +#: wireless/forms/bulk_import.py:59 wireless/forms/bulk_import.py:101 msgid "Assigned tenant" msgstr "Tenant assegnato" -#: netbox/circuits/forms/bulk_import.py:120 -#: netbox/templates/circuits/inc/circuit_termination.html:6 -#: netbox/templates/circuits/inc/circuit_termination_fields.html:15 -#: netbox/templates/dcim/cable.html:68 netbox/templates/dcim/cable.html:72 -#: netbox/vpn/forms/bulk_import.py:100 netbox/vpn/forms/filtersets.py:77 +#: circuits/forms/bulk_import.py:120 +#: templates/circuits/inc/circuit_termination.html:6 +#: templates/circuits/inc/circuit_termination_fields.html:15 +#: templates/dcim/cable.html:68 templates/dcim/cable.html:72 +#: vpn/forms/bulk_import.py:100 vpn/forms/filtersets.py:77 msgid "Termination" msgstr "Cessazione" -#: netbox/circuits/forms/bulk_import.py:130 -#: netbox/circuits/forms/filtersets.py:147 -#: netbox/circuits/forms/filtersets.py:227 -#: netbox/circuits/forms/model_forms.py:144 +#: circuits/forms/bulk_import.py:130 circuits/forms/filtersets.py:147 +#: circuits/forms/filtersets.py:227 circuits/forms/model_forms.py:144 msgid "Provider network" msgstr "Provider network" -#: netbox/circuits/forms/filtersets.py:30 -#: netbox/circuits/forms/filtersets.py:118 -#: netbox/circuits/forms/filtersets.py:200 netbox/dcim/forms/bulk_edit.py:338 -#: netbox/dcim/forms/bulk_edit.py:441 netbox/dcim/forms/bulk_edit.py:682 -#: netbox/dcim/forms/bulk_edit.py:729 netbox/dcim/forms/bulk_edit.py:882 -#: netbox/dcim/forms/bulk_import.py:235 netbox/dcim/forms/bulk_import.py:315 -#: netbox/dcim/forms/bulk_import.py:546 netbox/dcim/forms/bulk_import.py:1317 -#: netbox/dcim/forms/bulk_import.py:1351 netbox/dcim/forms/filtersets.py:95 -#: netbox/dcim/forms/filtersets.py:322 netbox/dcim/forms/filtersets.py:356 -#: netbox/dcim/forms/filtersets.py:396 netbox/dcim/forms/filtersets.py:447 -#: netbox/dcim/forms/filtersets.py:719 netbox/dcim/forms/filtersets.py:762 -#: netbox/dcim/forms/filtersets.py:977 netbox/dcim/forms/filtersets.py:1006 -#: netbox/dcim/forms/filtersets.py:1026 netbox/dcim/forms/filtersets.py:1090 -#: netbox/dcim/forms/filtersets.py:1120 netbox/dcim/forms/filtersets.py:1129 -#: netbox/dcim/forms/filtersets.py:1240 netbox/dcim/forms/filtersets.py:1264 -#: netbox/dcim/forms/filtersets.py:1289 netbox/dcim/forms/filtersets.py:1308 -#: netbox/dcim/forms/filtersets.py:1331 netbox/dcim/forms/filtersets.py:1442 -#: netbox/dcim/forms/filtersets.py:1466 netbox/dcim/forms/filtersets.py:1490 -#: netbox/dcim/forms/filtersets.py:1508 netbox/dcim/forms/filtersets.py:1525 -#: netbox/dcim/forms/model_forms.py:180 netbox/dcim/forms/model_forms.py:243 -#: netbox/dcim/forms/model_forms.py:468 netbox/dcim/forms/model_forms.py:728 -#: netbox/dcim/tables/devices.py:157 netbox/dcim/tables/power.py:30 -#: netbox/dcim/tables/racks.py:118 netbox/dcim/tables/racks.py:212 -#: netbox/extras/filtersets.py:536 netbox/extras/forms/filtersets.py:320 -#: netbox/ipam/forms/bulk_edit.py:460 netbox/ipam/forms/filtersets.py:173 -#: netbox/ipam/forms/filtersets.py:414 netbox/ipam/forms/filtersets.py:437 -#: netbox/ipam/forms/filtersets.py:467 netbox/templates/dcim/device.html:26 -#: netbox/templates/dcim/device_edit.html:30 -#: netbox/templates/dcim/inc/cable_termination.html:12 -#: netbox/templates/dcim/location.html:26 -#: netbox/templates/dcim/powerpanel.html:26 netbox/templates/dcim/rack.html:24 -#: netbox/templates/dcim/rackreservation.html:32 -#: netbox/virtualization/forms/filtersets.py:46 -#: netbox/virtualization/forms/filtersets.py:100 -#: netbox/wireless/forms/model_forms.py:87 -#: netbox/wireless/forms/model_forms.py:129 +#: circuits/forms/filtersets.py:30 circuits/forms/filtersets.py:118 +#: circuits/forms/filtersets.py:200 dcim/forms/bulk_edit.py:338 +#: dcim/forms/bulk_edit.py:441 dcim/forms/bulk_edit.py:682 +#: dcim/forms/bulk_edit.py:729 dcim/forms/bulk_edit.py:882 +#: dcim/forms/bulk_import.py:235 dcim/forms/bulk_import.py:315 +#: dcim/forms/bulk_import.py:546 dcim/forms/bulk_import.py:1317 +#: dcim/forms/bulk_import.py:1351 dcim/forms/filtersets.py:95 +#: dcim/forms/filtersets.py:322 dcim/forms/filtersets.py:356 +#: dcim/forms/filtersets.py:396 dcim/forms/filtersets.py:447 +#: dcim/forms/filtersets.py:719 dcim/forms/filtersets.py:762 +#: dcim/forms/filtersets.py:977 dcim/forms/filtersets.py:1006 +#: dcim/forms/filtersets.py:1026 dcim/forms/filtersets.py:1090 +#: dcim/forms/filtersets.py:1120 dcim/forms/filtersets.py:1129 +#: dcim/forms/filtersets.py:1240 dcim/forms/filtersets.py:1264 +#: dcim/forms/filtersets.py:1289 dcim/forms/filtersets.py:1308 +#: dcim/forms/filtersets.py:1331 dcim/forms/filtersets.py:1442 +#: dcim/forms/filtersets.py:1466 dcim/forms/filtersets.py:1490 +#: dcim/forms/filtersets.py:1508 dcim/forms/filtersets.py:1525 +#: dcim/forms/model_forms.py:180 dcim/forms/model_forms.py:243 +#: dcim/forms/model_forms.py:468 dcim/forms/model_forms.py:728 +#: dcim/tables/devices.py:157 dcim/tables/power.py:30 dcim/tables/racks.py:118 +#: dcim/tables/racks.py:212 extras/filtersets.py:536 +#: extras/forms/filtersets.py:320 ipam/forms/filtersets.py:173 +#: ipam/forms/filtersets.py:414 ipam/forms/filtersets.py:437 +#: ipam/forms/filtersets.py:467 templates/dcim/device.html:26 +#: templates/dcim/device_edit.html:30 +#: templates/dcim/inc/cable_termination.html:12 +#: templates/dcim/location.html:26 templates/dcim/powerpanel.html:26 +#: templates/dcim/rack.html:24 templates/dcim/rackreservation.html:32 +#: virtualization/forms/filtersets.py:46 +#: virtualization/forms/filtersets.py:100 wireless/forms/model_forms.py:87 +#: wireless/forms/model_forms.py:129 msgid "Location" msgstr "Locazione" -#: netbox/circuits/forms/filtersets.py:32 -#: netbox/circuits/forms/filtersets.py:120 netbox/dcim/forms/filtersets.py:144 -#: netbox/dcim/forms/filtersets.py:158 netbox/dcim/forms/filtersets.py:174 -#: netbox/dcim/forms/filtersets.py:206 netbox/dcim/forms/filtersets.py:328 -#: netbox/dcim/forms/filtersets.py:400 netbox/dcim/forms/filtersets.py:471 -#: netbox/dcim/forms/filtersets.py:723 netbox/dcim/forms/filtersets.py:1091 -#: netbox/netbox/navigation/menu.py:31 netbox/netbox/navigation/menu.py:33 -#: netbox/tenancy/forms/filtersets.py:42 netbox/tenancy/tables/columns.py:70 -#: netbox/tenancy/tables/contacts.py:25 netbox/tenancy/views.py:19 -#: netbox/virtualization/forms/filtersets.py:37 -#: netbox/virtualization/forms/filtersets.py:48 -#: netbox/virtualization/forms/filtersets.py:106 +#: circuits/forms/filtersets.py:32 circuits/forms/filtersets.py:120 +#: dcim/forms/filtersets.py:144 dcim/forms/filtersets.py:158 +#: dcim/forms/filtersets.py:174 dcim/forms/filtersets.py:206 +#: dcim/forms/filtersets.py:328 dcim/forms/filtersets.py:400 +#: dcim/forms/filtersets.py:471 dcim/forms/filtersets.py:723 +#: dcim/forms/filtersets.py:1091 netbox/navigation/menu.py:31 +#: netbox/navigation/menu.py:33 tenancy/forms/filtersets.py:42 +#: tenancy/tables/columns.py:70 tenancy/tables/contacts.py:25 +#: tenancy/views.py:19 virtualization/forms/filtersets.py:37 +#: virtualization/forms/filtersets.py:48 +#: virtualization/forms/filtersets.py:106 msgid "Contacts" msgstr "Contatti" -#: netbox/circuits/forms/filtersets.py:37 -#: netbox/circuits/forms/filtersets.py:157 netbox/dcim/forms/bulk_edit.py:112 -#: netbox/dcim/forms/bulk_edit.py:313 netbox/dcim/forms/bulk_edit.py:857 -#: netbox/dcim/forms/bulk_import.py:93 netbox/dcim/forms/filtersets.py:73 -#: netbox/dcim/forms/filtersets.py:185 netbox/dcim/forms/filtersets.py:211 -#: netbox/dcim/forms/filtersets.py:334 netbox/dcim/forms/filtersets.py:425 -#: netbox/dcim/forms/filtersets.py:739 netbox/dcim/forms/filtersets.py:983 -#: netbox/dcim/forms/filtersets.py:1013 netbox/dcim/forms/filtersets.py:1097 -#: netbox/dcim/forms/filtersets.py:1136 netbox/dcim/forms/filtersets.py:1576 -#: netbox/dcim/forms/filtersets.py:1600 netbox/dcim/forms/filtersets.py:1624 -#: netbox/dcim/forms/model_forms.py:112 netbox/dcim/forms/object_create.py:375 -#: netbox/dcim/tables/devices.py:143 netbox/dcim/tables/sites.py:85 -#: netbox/extras/filtersets.py:503 netbox/ipam/forms/bulk_edit.py:207 -#: netbox/ipam/forms/bulk_edit.py:441 netbox/ipam/forms/bulk_edit.py:519 -#: netbox/ipam/forms/filtersets.py:217 netbox/ipam/forms/filtersets.py:422 -#: netbox/ipam/forms/filtersets.py:475 netbox/templates/dcim/device.html:18 -#: netbox/templates/dcim/rack.html:16 -#: netbox/templates/dcim/rackreservation.html:22 -#: netbox/templates/dcim/region.html:26 netbox/templates/dcim/site.html:31 -#: netbox/templates/ipam/prefix.html:49 netbox/templates/ipam/vlan.html:16 -#: netbox/virtualization/forms/bulk_edit.py:81 -#: netbox/virtualization/forms/filtersets.py:59 -#: netbox/virtualization/forms/filtersets.py:133 -#: netbox/virtualization/forms/model_forms.py:92 -#: netbox/vpn/forms/filtersets.py:257 +#: circuits/forms/filtersets.py:37 circuits/forms/filtersets.py:157 +#: dcim/forms/bulk_edit.py:112 dcim/forms/bulk_edit.py:313 +#: dcim/forms/bulk_edit.py:857 dcim/forms/bulk_import.py:93 +#: dcim/forms/filtersets.py:73 dcim/forms/filtersets.py:185 +#: dcim/forms/filtersets.py:211 dcim/forms/filtersets.py:334 +#: dcim/forms/filtersets.py:425 dcim/forms/filtersets.py:739 +#: dcim/forms/filtersets.py:983 dcim/forms/filtersets.py:1013 +#: dcim/forms/filtersets.py:1097 dcim/forms/filtersets.py:1136 +#: dcim/forms/filtersets.py:1576 dcim/forms/filtersets.py:1600 +#: dcim/forms/filtersets.py:1624 dcim/forms/model_forms.py:112 +#: dcim/forms/object_create.py:375 dcim/tables/devices.py:143 +#: dcim/tables/sites.py:85 extras/filtersets.py:503 +#: ipam/forms/bulk_edit.py:208 ipam/forms/bulk_edit.py:474 +#: ipam/forms/filtersets.py:217 ipam/forms/filtersets.py:422 +#: ipam/forms/filtersets.py:475 templates/dcim/device.html:18 +#: templates/dcim/rack.html:16 templates/dcim/rackreservation.html:22 +#: templates/dcim/region.html:26 templates/dcim/site.html:31 +#: templates/ipam/prefix.html:49 templates/ipam/vlan.html:16 +#: virtualization/forms/bulk_edit.py:81 virtualization/forms/filtersets.py:59 +#: virtualization/forms/filtersets.py:133 +#: virtualization/forms/model_forms.py:92 vpn/forms/filtersets.py:257 msgid "Region" msgstr "Regione" -#: netbox/circuits/forms/filtersets.py:42 -#: netbox/circuits/forms/filtersets.py:162 netbox/dcim/forms/bulk_edit.py:321 -#: netbox/dcim/forms/bulk_edit.py:865 netbox/dcim/forms/filtersets.py:78 -#: netbox/dcim/forms/filtersets.py:190 netbox/dcim/forms/filtersets.py:216 -#: netbox/dcim/forms/filtersets.py:347 netbox/dcim/forms/filtersets.py:430 -#: netbox/dcim/forms/filtersets.py:744 netbox/dcim/forms/filtersets.py:988 -#: netbox/dcim/forms/filtersets.py:1102 netbox/dcim/forms/filtersets.py:1141 -#: netbox/dcim/forms/object_create.py:383 netbox/extras/filtersets.py:520 -#: netbox/ipam/forms/bulk_edit.py:212 netbox/ipam/forms/bulk_edit.py:448 -#: netbox/ipam/forms/bulk_edit.py:524 netbox/ipam/forms/filtersets.py:222 -#: netbox/ipam/forms/filtersets.py:427 netbox/ipam/forms/filtersets.py:480 -#: netbox/virtualization/forms/bulk_edit.py:86 -#: netbox/virtualization/forms/filtersets.py:69 -#: netbox/virtualization/forms/filtersets.py:138 -#: netbox/virtualization/forms/model_forms.py:98 +#: circuits/forms/filtersets.py:42 circuits/forms/filtersets.py:162 +#: dcim/forms/bulk_edit.py:321 dcim/forms/bulk_edit.py:865 +#: dcim/forms/filtersets.py:78 dcim/forms/filtersets.py:190 +#: dcim/forms/filtersets.py:216 dcim/forms/filtersets.py:347 +#: dcim/forms/filtersets.py:430 dcim/forms/filtersets.py:744 +#: dcim/forms/filtersets.py:988 dcim/forms/filtersets.py:1102 +#: dcim/forms/filtersets.py:1141 dcim/forms/object_create.py:383 +#: extras/filtersets.py:520 ipam/forms/bulk_edit.py:213 +#: ipam/forms/bulk_edit.py:479 ipam/forms/filtersets.py:222 +#: ipam/forms/filtersets.py:427 ipam/forms/filtersets.py:480 +#: virtualization/forms/bulk_edit.py:86 virtualization/forms/filtersets.py:69 +#: virtualization/forms/filtersets.py:138 +#: virtualization/forms/model_forms.py:98 msgid "Site group" msgstr "Gruppo del sito" -#: netbox/circuits/forms/filtersets.py:65 -#: netbox/circuits/forms/filtersets.py:83 -#: netbox/circuits/forms/filtersets.py:102 -#: netbox/circuits/forms/filtersets.py:117 netbox/core/forms/filtersets.py:67 -#: netbox/core/forms/filtersets.py:135 netbox/dcim/forms/bulk_edit.py:828 -#: netbox/dcim/forms/filtersets.py:172 netbox/dcim/forms/filtersets.py:204 -#: netbox/dcim/forms/filtersets.py:915 netbox/dcim/forms/filtersets.py:1007 -#: netbox/dcim/forms/filtersets.py:1131 netbox/dcim/forms/filtersets.py:1239 -#: netbox/dcim/forms/filtersets.py:1263 netbox/dcim/forms/filtersets.py:1288 -#: netbox/dcim/forms/filtersets.py:1307 netbox/dcim/forms/filtersets.py:1327 -#: netbox/dcim/forms/filtersets.py:1441 netbox/dcim/forms/filtersets.py:1465 -#: netbox/dcim/forms/filtersets.py:1489 netbox/dcim/forms/filtersets.py:1507 -#: netbox/dcim/forms/filtersets.py:1523 netbox/extras/forms/bulk_edit.py:90 -#: netbox/extras/forms/filtersets.py:44 netbox/extras/forms/filtersets.py:134 -#: netbox/extras/forms/filtersets.py:165 netbox/extras/forms/filtersets.py:205 -#: netbox/extras/forms/filtersets.py:221 netbox/extras/forms/filtersets.py:252 -#: netbox/extras/forms/filtersets.py:276 netbox/extras/forms/filtersets.py:441 -#: netbox/ipam/forms/filtersets.py:99 netbox/ipam/forms/filtersets.py:266 -#: netbox/ipam/forms/filtersets.py:307 netbox/ipam/forms/filtersets.py:382 -#: netbox/ipam/forms/filtersets.py:468 netbox/ipam/forms/filtersets.py:527 -#: netbox/ipam/forms/filtersets.py:545 netbox/netbox/tables/tables.py:256 -#: netbox/virtualization/forms/filtersets.py:45 -#: netbox/virtualization/forms/filtersets.py:103 -#: netbox/virtualization/forms/filtersets.py:198 -#: netbox/virtualization/forms/filtersets.py:243 -#: netbox/vpn/forms/filtersets.py:213 netbox/wireless/forms/bulk_edit.py:150 -#: netbox/wireless/forms/filtersets.py:34 -#: netbox/wireless/forms/filtersets.py:74 +#: circuits/forms/filtersets.py:65 circuits/forms/filtersets.py:83 +#: circuits/forms/filtersets.py:102 circuits/forms/filtersets.py:117 +#: core/forms/filtersets.py:67 core/forms/filtersets.py:135 +#: dcim/forms/bulk_edit.py:828 dcim/forms/filtersets.py:172 +#: dcim/forms/filtersets.py:204 dcim/forms/filtersets.py:915 +#: dcim/forms/filtersets.py:1007 dcim/forms/filtersets.py:1131 +#: dcim/forms/filtersets.py:1239 dcim/forms/filtersets.py:1263 +#: dcim/forms/filtersets.py:1288 dcim/forms/filtersets.py:1307 +#: dcim/forms/filtersets.py:1327 dcim/forms/filtersets.py:1441 +#: dcim/forms/filtersets.py:1465 dcim/forms/filtersets.py:1489 +#: dcim/forms/filtersets.py:1507 dcim/forms/filtersets.py:1523 +#: extras/forms/bulk_edit.py:90 extras/forms/filtersets.py:44 +#: extras/forms/filtersets.py:134 extras/forms/filtersets.py:165 +#: extras/forms/filtersets.py:205 extras/forms/filtersets.py:221 +#: extras/forms/filtersets.py:252 extras/forms/filtersets.py:276 +#: extras/forms/filtersets.py:441 ipam/forms/filtersets.py:99 +#: ipam/forms/filtersets.py:266 ipam/forms/filtersets.py:307 +#: ipam/forms/filtersets.py:382 ipam/forms/filtersets.py:468 +#: ipam/forms/filtersets.py:527 ipam/forms/filtersets.py:545 +#: netbox/tables/tables.py:256 virtualization/forms/filtersets.py:45 +#: virtualization/forms/filtersets.py:103 +#: virtualization/forms/filtersets.py:198 +#: virtualization/forms/filtersets.py:243 vpn/forms/filtersets.py:213 +#: wireless/forms/bulk_edit.py:150 wireless/forms/filtersets.py:34 +#: wireless/forms/filtersets.py:74 msgid "Attributes" msgstr "Attributi" -#: netbox/circuits/forms/filtersets.py:73 -#: netbox/circuits/tables/circuits.py:63 -#: netbox/circuits/tables/providers.py:66 -#: netbox/templates/circuits/circuit.html:22 -#: netbox/templates/circuits/provideraccount.html:24 +#: circuits/forms/filtersets.py:73 circuits/tables/circuits.py:63 +#: circuits/tables/providers.py:66 templates/circuits/circuit.html:22 +#: templates/circuits/provideraccount.html:24 msgid "Account" msgstr "Account" -#: netbox/circuits/forms/filtersets.py:217 +#: circuits/forms/filtersets.py:217 msgid "Term Side" msgstr "Lato del termine" -#: netbox/circuits/forms/filtersets.py:250 -#: netbox/extras/forms/model_forms.py:582 netbox/ipam/forms/filtersets.py:142 -#: netbox/ipam/forms/filtersets.py:546 netbox/ipam/forms/model_forms.py:323 -#: netbox/templates/extras/configcontext.html:60 -#: netbox/templates/ipam/ipaddress.html:59 -#: netbox/templates/ipam/vlan_edit.html:30 -#: netbox/tenancy/forms/filtersets.py:87 netbox/users/forms/model_forms.py:314 +#: circuits/forms/filtersets.py:250 extras/forms/model_forms.py:582 +#: ipam/forms/filtersets.py:142 ipam/forms/filtersets.py:546 +#: ipam/forms/model_forms.py:323 templates/extras/configcontext.html:60 +#: templates/ipam/ipaddress.html:59 templates/ipam/vlan_edit.html:30 +#: tenancy/forms/filtersets.py:87 users/forms/model_forms.py:314 msgid "Assignment" msgstr "Assegnazione" -#: netbox/circuits/forms/filtersets.py:265 -#: netbox/circuits/forms/model_forms.py:195 -#: netbox/circuits/tables/circuits.py:155 netbox/dcim/forms/bulk_edit.py:117 -#: netbox/dcim/forms/bulk_import.py:100 netbox/dcim/forms/model_forms.py:117 -#: netbox/dcim/tables/sites.py:89 netbox/extras/forms/filtersets.py:480 -#: netbox/ipam/filtersets.py:999 netbox/ipam/forms/bulk_edit.py:538 -#: netbox/ipam/forms/bulk_import.py:436 netbox/ipam/forms/model_forms.py:528 -#: netbox/ipam/tables/fhrp.py:67 netbox/ipam/tables/vlans.py:122 -#: netbox/ipam/tables/vlans.py:226 -#: netbox/templates/circuits/circuitgroupassignment.html:22 -#: netbox/templates/dcim/interface.html:284 netbox/templates/dcim/site.html:37 -#: netbox/templates/ipam/inc/panels/fhrp_groups.html:23 -#: netbox/templates/ipam/vlan.html:27 netbox/templates/tenancy/contact.html:21 -#: netbox/templates/tenancy/tenant.html:20 netbox/templates/users/group.html:6 -#: netbox/templates/users/group.html:14 -#: netbox/templates/virtualization/cluster.html:29 -#: netbox/templates/vpn/tunnel.html:29 -#: netbox/templates/wireless/wirelesslan.html:18 -#: netbox/tenancy/forms/bulk_edit.py:43 netbox/tenancy/forms/bulk_edit.py:94 -#: netbox/tenancy/forms/bulk_import.py:40 -#: netbox/tenancy/forms/bulk_import.py:81 -#: netbox/tenancy/forms/filtersets.py:48 netbox/tenancy/forms/filtersets.py:78 -#: netbox/tenancy/forms/filtersets.py:97 -#: netbox/tenancy/forms/model_forms.py:45 -#: netbox/tenancy/forms/model_forms.py:97 -#: netbox/tenancy/forms/model_forms.py:122 -#: netbox/tenancy/tables/contacts.py:60 netbox/tenancy/tables/contacts.py:107 -#: netbox/tenancy/tables/tenants.py:42 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 -#: netbox/virtualization/forms/bulk_edit.py:65 -#: netbox/virtualization/forms/bulk_import.py:47 -#: netbox/virtualization/forms/filtersets.py:85 -#: netbox/virtualization/forms/model_forms.py:66 -#: netbox/virtualization/tables/clusters.py:70 -#: netbox/vpn/forms/bulk_edit.py:112 netbox/vpn/forms/bulk_import.py:158 -#: netbox/vpn/forms/filtersets.py:116 netbox/vpn/tables/crypto.py:31 -#: netbox/vpn/tables/tunnels.py:44 netbox/wireless/forms/bulk_edit.py:48 -#: netbox/wireless/forms/bulk_import.py:36 -#: netbox/wireless/forms/filtersets.py:46 -#: netbox/wireless/forms/model_forms.py:40 -#: netbox/wireless/tables/wirelesslan.py:48 +#: circuits/forms/filtersets.py:265 circuits/forms/model_forms.py:195 +#: circuits/tables/circuits.py:155 dcim/forms/bulk_edit.py:117 +#: dcim/forms/bulk_import.py:100 dcim/forms/model_forms.py:117 +#: dcim/tables/sites.py:89 extras/forms/filtersets.py:480 +#: ipam/filtersets.py:999 ipam/forms/bulk_edit.py:493 +#: ipam/forms/bulk_import.py:436 ipam/forms/model_forms.py:528 +#: ipam/tables/fhrp.py:67 ipam/tables/vlans.py:122 ipam/tables/vlans.py:226 +#: templates/circuits/circuitgroupassignment.html:22 +#: templates/dcim/interface.html:284 templates/dcim/site.html:37 +#: templates/ipam/inc/panels/fhrp_groups.html:23 templates/ipam/vlan.html:27 +#: templates/tenancy/contact.html:21 templates/tenancy/tenant.html:20 +#: templates/users/group.html:6 templates/users/group.html:14 +#: templates/virtualization/cluster.html:29 templates/vpn/tunnel.html:29 +#: templates/wireless/wirelesslan.html:18 tenancy/forms/bulk_edit.py:43 +#: tenancy/forms/bulk_edit.py:94 tenancy/forms/bulk_import.py:40 +#: tenancy/forms/bulk_import.py:81 tenancy/forms/filtersets.py:48 +#: tenancy/forms/filtersets.py:78 tenancy/forms/filtersets.py:97 +#: tenancy/forms/model_forms.py:45 tenancy/forms/model_forms.py:97 +#: tenancy/forms/model_forms.py:122 tenancy/tables/contacts.py:60 +#: tenancy/tables/contacts.py:107 tenancy/tables/tenants.py:42 +#: users/filtersets.py:62 users/filtersets.py:185 users/forms/filtersets.py:31 +#: users/forms/filtersets.py:37 users/forms/filtersets.py:79 +#: virtualization/forms/bulk_edit.py:65 virtualization/forms/bulk_import.py:47 +#: virtualization/forms/filtersets.py:85 +#: virtualization/forms/model_forms.py:66 virtualization/tables/clusters.py:70 +#: vpn/forms/bulk_edit.py:112 vpn/forms/bulk_import.py:158 +#: vpn/forms/filtersets.py:116 vpn/tables/crypto.py:31 +#: vpn/tables/tunnels.py:44 wireless/forms/bulk_edit.py:48 +#: wireless/forms/bulk_import.py:36 wireless/forms/filtersets.py:46 +#: wireless/forms/model_forms.py:40 wireless/tables/wirelesslan.py:48 msgid "Group" msgstr "Gruppo" -#: netbox/circuits/forms/model_forms.py:182 -#: netbox/templates/circuits/circuitgroup.html:25 +#: circuits/forms/model_forms.py:182 templates/circuits/circuitgroup.html:25 msgid "Circuit Group" msgstr "Gruppo Circuit" -#: netbox/circuits/models/circuits.py:27 netbox/dcim/models/cables.py:67 -#: netbox/dcim/models/device_component_templates.py:517 -#: netbox/dcim/models/device_component_templates.py:617 -#: netbox/dcim/models/device_components.py:975 -#: netbox/dcim/models/device_components.py:1049 -#: netbox/dcim/models/device_components.py:1204 -#: netbox/dcim/models/devices.py:479 netbox/dcim/models/racks.py:224 -#: netbox/extras/models/tags.py:28 +#: circuits/models/circuits.py:27 dcim/models/cables.py:67 +#: dcim/models/device_component_templates.py:517 +#: dcim/models/device_component_templates.py:617 +#: dcim/models/device_components.py:975 dcim/models/device_components.py:1049 +#: dcim/models/device_components.py:1204 dcim/models/devices.py:479 +#: dcim/models/racks.py:224 extras/models/tags.py:28 msgid "color" msgstr "colore" -#: netbox/circuits/models/circuits.py:36 +#: circuits/models/circuits.py:36 msgid "circuit type" msgstr "tipo di circuito" -#: netbox/circuits/models/circuits.py:37 +#: circuits/models/circuits.py:37 msgid "circuit types" msgstr "tipi di circuiti" -#: netbox/circuits/models/circuits.py:48 +#: circuits/models/circuits.py:48 msgid "circuit ID" msgstr "ID del circuito" -#: netbox/circuits/models/circuits.py:49 +#: circuits/models/circuits.py:49 msgid "Unique circuit ID" msgstr "ID univoco del circuito" -#: netbox/circuits/models/circuits.py:69 netbox/core/models/data.py:52 -#: netbox/core/models/jobs.py:84 netbox/dcim/models/cables.py:49 -#: netbox/dcim/models/devices.py:653 netbox/dcim/models/devices.py:1173 -#: netbox/dcim/models/devices.py:1399 netbox/dcim/models/power.py:96 -#: netbox/dcim/models/racks.py:297 netbox/dcim/models/sites.py:154 -#: netbox/dcim/models/sites.py:266 netbox/ipam/models/ip.py:253 -#: netbox/ipam/models/ip.py:522 netbox/ipam/models/ip.py:730 -#: netbox/ipam/models/vlans.py:195 netbox/virtualization/models/clusters.py:74 -#: netbox/virtualization/models/virtualmachines.py:84 -#: netbox/vpn/models/tunnels.py:40 netbox/wireless/models.py:95 -#: netbox/wireless/models.py:159 +#: circuits/models/circuits.py:69 core/models/data.py:52 +#: core/models/jobs.py:84 dcim/models/cables.py:49 dcim/models/devices.py:653 +#: dcim/models/devices.py:1173 dcim/models/devices.py:1399 +#: dcim/models/power.py:96 dcim/models/racks.py:297 dcim/models/sites.py:154 +#: dcim/models/sites.py:266 ipam/models/ip.py:253 ipam/models/ip.py:522 +#: ipam/models/ip.py:730 ipam/models/vlans.py:195 +#: virtualization/models/clusters.py:74 +#: virtualization/models/virtualmachines.py:84 vpn/models/tunnels.py:40 +#: wireless/models.py:95 wireless/models.py:159 msgid "status" msgstr "stato" -#: netbox/circuits/models/circuits.py:84 netbox/templates/core/plugin.html:19 +#: circuits/models/circuits.py:84 templates/core/plugin.html:20 msgid "installed" msgstr "installato" -#: netbox/circuits/models/circuits.py:89 +#: circuits/models/circuits.py:89 msgid "terminates" msgstr "termina" -#: netbox/circuits/models/circuits.py:94 +#: circuits/models/circuits.py:94 msgid "commit rate (Kbps)" msgstr "tasso di commit (Kbps)" -#: netbox/circuits/models/circuits.py:95 +#: circuits/models/circuits.py:95 msgid "Committed rate" msgstr "Tariffa impegnata" -#: netbox/circuits/models/circuits.py:137 +#: circuits/models/circuits.py:137 msgid "circuit" msgstr "circuito" -#: netbox/circuits/models/circuits.py:138 +#: circuits/models/circuits.py:138 msgid "circuits" msgstr "circuiti" -#: netbox/circuits/models/circuits.py:170 +#: circuits/models/circuits.py:170 msgid "circuit group" msgstr "gruppo di circuiti" -#: netbox/circuits/models/circuits.py:171 +#: circuits/models/circuits.py:171 msgid "circuit groups" msgstr "gruppi di circuiti" -#: netbox/circuits/models/circuits.py:195 netbox/ipam/models/fhrp.py:93 -#: netbox/tenancy/models/contacts.py:134 +#: circuits/models/circuits.py:195 ipam/models/fhrp.py:93 +#: tenancy/models/contacts.py:134 msgid "priority" msgstr "priorità" -#: netbox/circuits/models/circuits.py:213 +#: circuits/models/circuits.py:213 msgid "Circuit group assignment" msgstr "Assegnazione di gruppi di circuiti" -#: netbox/circuits/models/circuits.py:214 +#: circuits/models/circuits.py:214 msgid "Circuit group assignments" msgstr "Assegnazioni di gruppi di circuiti" -#: netbox/circuits/models/circuits.py:240 +#: circuits/models/circuits.py:240 msgid "termination" msgstr "fine" -#: netbox/circuits/models/circuits.py:257 +#: circuits/models/circuits.py:257 msgid "port speed (Kbps)" msgstr "velocità della porta (Kbps)" -#: netbox/circuits/models/circuits.py:260 +#: circuits/models/circuits.py:260 msgid "Physical circuit speed" msgstr "Velocità fisica del circuito" -#: netbox/circuits/models/circuits.py:265 +#: circuits/models/circuits.py:265 msgid "upstream speed (Kbps)" msgstr "velocità upstream (Kbps)" -#: netbox/circuits/models/circuits.py:266 +#: circuits/models/circuits.py:266 msgid "Upstream speed, if different from port speed" msgstr "Velocità upstream, se diversa dalla velocità della porta" -#: netbox/circuits/models/circuits.py:271 +#: circuits/models/circuits.py:271 msgid "cross-connect ID" msgstr "ID di connessione incrociata" -#: netbox/circuits/models/circuits.py:272 +#: circuits/models/circuits.py:272 msgid "ID of the local cross-connect" msgstr "ID della connessione incrociata locale" -#: netbox/circuits/models/circuits.py:277 +#: circuits/models/circuits.py:277 msgid "patch panel/port(s)" msgstr "pannello di permutazione/porte" -#: netbox/circuits/models/circuits.py:278 +#: circuits/models/circuits.py:278 msgid "Patch panel ID and port number(s)" msgstr "ID del patch panel e numero/i di porta" -#: netbox/circuits/models/circuits.py:281 -#: netbox/dcim/models/device_component_templates.py:61 -#: netbox/dcim/models/device_components.py:68 netbox/dcim/models/racks.py:685 -#: netbox/extras/models/configs.py:45 netbox/extras/models/configs.py:219 -#: netbox/extras/models/customfields.py:125 netbox/extras/models/models.py:61 -#: netbox/extras/models/models.py:158 netbox/extras/models/models.py:396 -#: netbox/extras/models/models.py:511 -#: netbox/extras/models/notifications.py:131 -#: netbox/extras/models/staging.py:31 netbox/extras/models/tags.py:32 -#: netbox/netbox/models/__init__.py:110 netbox/netbox/models/__init__.py:145 -#: netbox/netbox/models/__init__.py:191 netbox/users/models/permissions.py:24 -#: netbox/users/models/tokens.py:57 netbox/users/models/users.py:33 -#: netbox/virtualization/models/virtualmachines.py:289 +#: circuits/models/circuits.py:281 +#: dcim/models/device_component_templates.py:61 +#: dcim/models/device_components.py:68 dcim/models/racks.py:685 +#: extras/models/configs.py:45 extras/models/configs.py:219 +#: extras/models/customfields.py:125 extras/models/models.py:61 +#: extras/models/models.py:158 extras/models/models.py:396 +#: extras/models/models.py:511 extras/models/notifications.py:131 +#: extras/models/staging.py:31 extras/models/tags.py:32 +#: netbox/models/__init__.py:110 netbox/models/__init__.py:145 +#: netbox/models/__init__.py:191 users/models/permissions.py:24 +#: users/models/tokens.py:57 users/models/users.py:33 +#: virtualization/models/virtualmachines.py:289 msgid "description" msgstr "descrizione" -#: netbox/circuits/models/circuits.py:294 +#: circuits/models/circuits.py:294 msgid "circuit termination" msgstr "terminazione del circuito" -#: netbox/circuits/models/circuits.py:295 +#: circuits/models/circuits.py:295 msgid "circuit terminations" msgstr "terminazioni del circuito" -#: netbox/circuits/models/circuits.py:308 +#: circuits/models/circuits.py:308 msgid "" "A circuit termination must attach to either a site or a provider network." msgstr "" "Una terminazione di circuito deve essere collegata a un sito o alla rete di " "un provider." -#: netbox/circuits/models/circuits.py:310 +#: circuits/models/circuits.py:310 msgid "" "A circuit termination cannot attach to both a site and a provider network." msgstr "" "Una terminazione di circuito non può essere collegata sia a un sito che alla" " rete di un provider." -#: netbox/circuits/models/providers.py:22 -#: netbox/circuits/models/providers.py:66 -#: netbox/circuits/models/providers.py:104 netbox/core/models/data.py:39 -#: netbox/core/models/jobs.py:45 -#: netbox/dcim/models/device_component_templates.py:43 -#: netbox/dcim/models/device_components.py:53 -#: netbox/dcim/models/devices.py:593 netbox/dcim/models/devices.py:1330 -#: netbox/dcim/models/devices.py:1395 netbox/dcim/models/power.py:39 -#: netbox/dcim/models/power.py:92 netbox/dcim/models/racks.py:262 -#: netbox/dcim/models/sites.py:138 netbox/extras/models/configs.py:36 -#: netbox/extras/models/configs.py:215 netbox/extras/models/customfields.py:92 -#: netbox/extras/models/models.py:56 netbox/extras/models/models.py:153 -#: netbox/extras/models/models.py:296 netbox/extras/models/models.py:392 -#: netbox/extras/models/models.py:501 netbox/extras/models/models.py:596 -#: netbox/extras/models/notifications.py:126 -#: netbox/extras/models/scripts.py:30 netbox/extras/models/staging.py:26 -#: netbox/ipam/models/asns.py:18 netbox/ipam/models/fhrp.py:25 -#: netbox/ipam/models/services.py:52 netbox/ipam/models/services.py:88 -#: netbox/ipam/models/vlans.py:36 netbox/ipam/models/vlans.py:184 -#: netbox/ipam/models/vrfs.py:22 netbox/ipam/models/vrfs.py:79 -#: netbox/netbox/models/__init__.py:137 netbox/netbox/models/__init__.py:181 -#: netbox/tenancy/models/contacts.py:64 netbox/tenancy/models/tenants.py:20 -#: netbox/tenancy/models/tenants.py:45 netbox/users/models/permissions.py:20 -#: netbox/users/models/users.py:28 netbox/virtualization/models/clusters.py:57 -#: netbox/virtualization/models/virtualmachines.py:72 -#: netbox/virtualization/models/virtualmachines.py:279 -#: netbox/vpn/models/crypto.py:24 netbox/vpn/models/crypto.py:71 -#: netbox/vpn/models/crypto.py:131 netbox/vpn/models/crypto.py:183 -#: netbox/vpn/models/crypto.py:221 netbox/vpn/models/l2vpn.py:22 -#: netbox/vpn/models/tunnels.py:35 netbox/wireless/models.py:51 +#: circuits/models/providers.py:22 circuits/models/providers.py:66 +#: circuits/models/providers.py:104 core/models/data.py:39 +#: core/models/jobs.py:45 dcim/models/device_component_templates.py:43 +#: dcim/models/device_components.py:53 dcim/models/devices.py:593 +#: dcim/models/devices.py:1330 dcim/models/devices.py:1395 +#: dcim/models/power.py:39 dcim/models/power.py:92 dcim/models/racks.py:262 +#: dcim/models/sites.py:138 extras/models/configs.py:36 +#: extras/models/configs.py:215 extras/models/customfields.py:92 +#: extras/models/models.py:56 extras/models/models.py:153 +#: extras/models/models.py:296 extras/models/models.py:392 +#: extras/models/models.py:501 extras/models/models.py:596 +#: extras/models/notifications.py:126 extras/models/scripts.py:30 +#: extras/models/staging.py:26 ipam/models/asns.py:18 ipam/models/fhrp.py:25 +#: ipam/models/services.py:52 ipam/models/services.py:88 +#: ipam/models/vlans.py:36 ipam/models/vlans.py:184 ipam/models/vrfs.py:22 +#: ipam/models/vrfs.py:79 netbox/models/__init__.py:137 +#: netbox/models/__init__.py:181 tenancy/models/contacts.py:64 +#: tenancy/models/tenants.py:20 tenancy/models/tenants.py:45 +#: users/models/permissions.py:20 users/models/users.py:28 +#: virtualization/models/clusters.py:57 +#: virtualization/models/virtualmachines.py:72 +#: virtualization/models/virtualmachines.py:279 vpn/models/crypto.py:24 +#: vpn/models/crypto.py:71 vpn/models/crypto.py:131 vpn/models/crypto.py:183 +#: vpn/models/crypto.py:221 vpn/models/l2vpn.py:22 vpn/models/tunnels.py:35 +#: wireless/models.py:51 msgid "name" msgstr "nome" -#: netbox/circuits/models/providers.py:25 +#: circuits/models/providers.py:25 msgid "Full name of the provider" msgstr "Nome completo del fornitore" -#: netbox/circuits/models/providers.py:28 netbox/dcim/models/devices.py:86 -#: netbox/dcim/models/racks.py:137 netbox/dcim/models/sites.py:149 -#: netbox/extras/models/models.py:506 netbox/ipam/models/asns.py:23 -#: netbox/ipam/models/vlans.py:40 netbox/netbox/models/__init__.py:141 -#: netbox/netbox/models/__init__.py:186 netbox/tenancy/models/tenants.py:25 -#: netbox/tenancy/models/tenants.py:49 netbox/vpn/models/l2vpn.py:27 -#: netbox/wireless/models.py:56 +#: circuits/models/providers.py:28 dcim/models/devices.py:86 +#: dcim/models/racks.py:137 dcim/models/sites.py:149 +#: extras/models/models.py:506 ipam/models/asns.py:23 ipam/models/vlans.py:40 +#: netbox/models/__init__.py:141 netbox/models/__init__.py:186 +#: tenancy/models/tenants.py:25 tenancy/models/tenants.py:49 +#: vpn/models/l2vpn.py:27 wireless/models.py:56 msgid "slug" msgstr "pallottola" -#: netbox/circuits/models/providers.py:42 +#: circuits/models/providers.py:42 msgid "provider" msgstr "fornitore" -#: netbox/circuits/models/providers.py:43 +#: circuits/models/providers.py:43 msgid "providers" msgstr "fornitori" -#: netbox/circuits/models/providers.py:63 +#: circuits/models/providers.py:63 msgid "account ID" msgstr "ID dell'account" -#: netbox/circuits/models/providers.py:86 +#: circuits/models/providers.py:86 msgid "provider account" msgstr "account del fornitore" -#: netbox/circuits/models/providers.py:87 +#: circuits/models/providers.py:87 msgid "provider accounts" msgstr "account del fornitore" -#: netbox/circuits/models/providers.py:115 +#: circuits/models/providers.py:115 msgid "service ID" msgstr "ID di servizio" -#: netbox/circuits/models/providers.py:126 +#: circuits/models/providers.py:126 msgid "provider network" msgstr "rete di fornitori" -#: netbox/circuits/models/providers.py:127 +#: circuits/models/providers.py:127 msgid "provider networks" msgstr "reti di fornitori" -#: netbox/circuits/tables/circuits.py:32 -#: netbox/circuits/tables/circuits.py:132 -#: netbox/circuits/tables/providers.py:18 -#: netbox/circuits/tables/providers.py:69 -#: netbox/circuits/tables/providers.py:99 netbox/core/tables/data.py:16 -#: netbox/core/tables/jobs.py:14 netbox/core/tables/plugins.py:44 -#: netbox/core/tables/tasks.py:11 netbox/core/tables/tasks.py:115 -#: netbox/dcim/forms/filtersets.py:63 netbox/dcim/forms/object_create.py:43 -#: netbox/dcim/tables/devices.py:52 netbox/dcim/tables/devices.py:92 -#: netbox/dcim/tables/devices.py:134 netbox/dcim/tables/devices.py:289 -#: netbox/dcim/tables/devices.py:392 netbox/dcim/tables/devices.py:433 -#: netbox/dcim/tables/devices.py:482 netbox/dcim/tables/devices.py:531 -#: netbox/dcim/tables/devices.py:648 netbox/dcim/tables/devices.py:731 -#: netbox/dcim/tables/devices.py:778 netbox/dcim/tables/devices.py:841 -#: netbox/dcim/tables/devices.py:911 netbox/dcim/tables/devices.py:974 -#: netbox/dcim/tables/devices.py:994 netbox/dcim/tables/devices.py:1023 -#: netbox/dcim/tables/devices.py:1053 netbox/dcim/tables/devicetypes.py:31 -#: netbox/dcim/tables/power.py:22 netbox/dcim/tables/power.py:62 -#: netbox/dcim/tables/racks.py:24 netbox/dcim/tables/racks.py:113 -#: netbox/dcim/tables/sites.py:24 netbox/dcim/tables/sites.py:51 -#: netbox/dcim/tables/sites.py:78 netbox/dcim/tables/sites.py:130 -#: netbox/extras/forms/filtersets.py:213 netbox/extras/tables/tables.py:58 -#: netbox/extras/tables/tables.py:122 netbox/extras/tables/tables.py:155 -#: netbox/extras/tables/tables.py:180 netbox/extras/tables/tables.py:246 -#: netbox/extras/tables/tables.py:361 netbox/extras/tables/tables.py:378 -#: netbox/extras/tables/tables.py:401 netbox/extras/tables/tables.py:439 -#: netbox/extras/tables/tables.py:491 netbox/extras/tables/tables.py:514 -#: netbox/ipam/forms/bulk_edit.py:406 netbox/ipam/forms/filtersets.py:386 -#: netbox/ipam/tables/asn.py:16 netbox/ipam/tables/ip.py:85 -#: netbox/ipam/tables/ip.py:160 netbox/ipam/tables/services.py:15 -#: netbox/ipam/tables/services.py:40 netbox/ipam/tables/vlans.py:64 -#: netbox/ipam/tables/vlans.py:114 netbox/ipam/tables/vrfs.py:26 -#: netbox/ipam/tables/vrfs.py:68 -#: netbox/templates/circuits/circuitgroup.html:28 -#: netbox/templates/circuits/circuittype.html:22 -#: netbox/templates/circuits/provideraccount.html:28 -#: netbox/templates/circuits/providernetwork.html:24 -#: netbox/templates/core/datasource.html:34 netbox/templates/core/job.html:44 -#: netbox/templates/core/plugin.html:53 -#: netbox/templates/core/rq_worker.html:43 -#: netbox/templates/dcim/consoleport.html:28 -#: netbox/templates/dcim/consoleserverport.html:28 -#: netbox/templates/dcim/devicebay.html:24 -#: netbox/templates/dcim/devicerole.html:26 -#: netbox/templates/dcim/frontport.html:28 -#: netbox/templates/dcim/inc/interface_vlans_table.html:5 -#: netbox/templates/dcim/inc/panels/inventory_items.html:18 -#: netbox/templates/dcim/interface.html:38 -#: netbox/templates/dcim/interface.html:165 -#: netbox/templates/dcim/inventoryitem.html:28 -#: netbox/templates/dcim/inventoryitemrole.html:18 -#: netbox/templates/dcim/location.html:29 -#: netbox/templates/dcim/manufacturer.html:36 -#: netbox/templates/dcim/modulebay.html:30 -#: netbox/templates/dcim/platform.html:29 -#: netbox/templates/dcim/poweroutlet.html:28 -#: netbox/templates/dcim/powerport.html:28 -#: netbox/templates/dcim/rackrole.html:22 -#: netbox/templates/dcim/rearport.html:28 netbox/templates/dcim/region.html:29 -#: netbox/templates/dcim/sitegroup.html:29 -#: netbox/templates/dcim/virtualdevicecontext.html:18 -#: netbox/templates/extras/configcontext.html:13 -#: netbox/templates/extras/configtemplate.html:13 -#: netbox/templates/extras/customfield.html:13 -#: netbox/templates/extras/customlink.html:13 -#: netbox/templates/extras/eventrule.html:13 -#: netbox/templates/extras/exporttemplate.html:15 -#: netbox/templates/extras/notificationgroup.html:14 -#: netbox/templates/extras/savedfilter.html:13 -#: netbox/templates/extras/script_list.html:44 -#: netbox/templates/extras/tag.html:14 netbox/templates/extras/webhook.html:13 -#: netbox/templates/ipam/asnrange.html:15 -#: netbox/templates/ipam/fhrpgroup.html:30 netbox/templates/ipam/rir.html:22 -#: netbox/templates/ipam/role.html:22 -#: netbox/templates/ipam/routetarget.html:13 -#: netbox/templates/ipam/service.html:24 -#: netbox/templates/ipam/servicetemplate.html:15 -#: netbox/templates/ipam/vlan.html:35 netbox/templates/ipam/vlangroup.html:30 -#: netbox/templates/tenancy/contact.html:25 -#: netbox/templates/tenancy/contactgroup.html:21 -#: netbox/templates/tenancy/contactrole.html:18 -#: netbox/templates/tenancy/tenantgroup.html:29 -#: netbox/templates/users/group.html:17 -#: netbox/templates/users/objectpermission.html:17 -#: netbox/templates/virtualization/cluster.html:13 -#: netbox/templates/virtualization/clustergroup.html:22 -#: netbox/templates/virtualization/clustertype.html:22 -#: netbox/templates/virtualization/virtualdisk.html:25 -#: netbox/templates/virtualization/virtualmachine.html:15 -#: netbox/templates/virtualization/vminterface.html:25 -#: netbox/templates/vpn/ikepolicy.html:13 -#: netbox/templates/vpn/ikeproposal.html:13 -#: netbox/templates/vpn/ipsecpolicy.html:13 -#: netbox/templates/vpn/ipsecprofile.html:13 -#: netbox/templates/vpn/ipsecprofile.html:36 -#: netbox/templates/vpn/ipsecprofile.html:69 -#: netbox/templates/vpn/ipsecproposal.html:13 -#: netbox/templates/vpn/l2vpn.html:14 netbox/templates/vpn/tunnel.html:21 -#: netbox/templates/vpn/tunnelgroup.html:26 -#: netbox/templates/wireless/wirelesslangroup.html:29 -#: netbox/tenancy/tables/contacts.py:19 netbox/tenancy/tables/contacts.py:41 -#: netbox/tenancy/tables/contacts.py:56 netbox/tenancy/tables/tenants.py:16 -#: netbox/tenancy/tables/tenants.py:38 netbox/users/tables.py:62 -#: netbox/users/tables.py:76 netbox/virtualization/forms/bulk_create.py:20 -#: netbox/virtualization/forms/object_create.py:13 -#: netbox/virtualization/forms/object_create.py:23 -#: netbox/virtualization/tables/clusters.py:17 -#: netbox/virtualization/tables/clusters.py:39 -#: netbox/virtualization/tables/clusters.py:62 -#: netbox/virtualization/tables/virtualmachines.py:55 -#: netbox/virtualization/tables/virtualmachines.py:139 -#: netbox/virtualization/tables/virtualmachines.py:194 -#: netbox/vpn/tables/crypto.py:18 netbox/vpn/tables/crypto.py:57 -#: netbox/vpn/tables/crypto.py:93 netbox/vpn/tables/crypto.py:129 -#: netbox/vpn/tables/crypto.py:158 netbox/vpn/tables/l2vpn.py:23 -#: netbox/vpn/tables/tunnels.py:18 netbox/vpn/tables/tunnels.py:40 -#: netbox/wireless/tables/wirelesslan.py:18 -#: netbox/wireless/tables/wirelesslan.py:79 +#: circuits/tables/circuits.py:32 circuits/tables/circuits.py:132 +#: circuits/tables/providers.py:18 circuits/tables/providers.py:69 +#: circuits/tables/providers.py:99 core/tables/data.py:16 +#: core/tables/jobs.py:14 core/tables/plugins.py:44 core/tables/tasks.py:11 +#: core/tables/tasks.py:115 dcim/forms/filtersets.py:63 +#: dcim/forms/object_create.py:43 dcim/tables/devices.py:52 +#: dcim/tables/devices.py:92 dcim/tables/devices.py:134 +#: dcim/tables/devices.py:289 dcim/tables/devices.py:392 +#: dcim/tables/devices.py:433 dcim/tables/devices.py:482 +#: dcim/tables/devices.py:531 dcim/tables/devices.py:648 +#: dcim/tables/devices.py:731 dcim/tables/devices.py:778 +#: dcim/tables/devices.py:841 dcim/tables/devices.py:911 +#: dcim/tables/devices.py:974 dcim/tables/devices.py:994 +#: dcim/tables/devices.py:1023 dcim/tables/devices.py:1053 +#: dcim/tables/devicetypes.py:31 dcim/tables/power.py:22 +#: dcim/tables/power.py:62 dcim/tables/racks.py:24 dcim/tables/racks.py:113 +#: dcim/tables/sites.py:24 dcim/tables/sites.py:51 dcim/tables/sites.py:78 +#: dcim/tables/sites.py:130 extras/forms/filtersets.py:213 +#: extras/tables/tables.py:58 extras/tables/tables.py:122 +#: extras/tables/tables.py:155 extras/tables/tables.py:180 +#: extras/tables/tables.py:246 extras/tables/tables.py:361 +#: extras/tables/tables.py:378 extras/tables/tables.py:401 +#: extras/tables/tables.py:439 extras/tables/tables.py:491 +#: extras/tables/tables.py:514 ipam/forms/bulk_edit.py:407 +#: ipam/forms/filtersets.py:386 ipam/tables/asn.py:16 ipam/tables/ip.py:85 +#: ipam/tables/ip.py:160 ipam/tables/services.py:15 ipam/tables/services.py:40 +#: ipam/tables/vlans.py:64 ipam/tables/vlans.py:114 ipam/tables/vrfs.py:26 +#: ipam/tables/vrfs.py:68 templates/circuits/circuitgroup.html:28 +#: templates/circuits/circuittype.html:22 +#: templates/circuits/provideraccount.html:28 +#: templates/circuits/providernetwork.html:24 +#: templates/core/datasource.html:34 templates/core/job.html:44 +#: templates/core/plugin.html:54 templates/core/rq_worker.html:43 +#: templates/dcim/consoleport.html:28 templates/dcim/consoleserverport.html:28 +#: templates/dcim/devicebay.html:24 templates/dcim/devicerole.html:26 +#: templates/dcim/frontport.html:28 +#: templates/dcim/inc/interface_vlans_table.html:5 +#: templates/dcim/inc/panels/inventory_items.html:18 +#: templates/dcim/interface.html:38 templates/dcim/interface.html:165 +#: templates/dcim/inventoryitem.html:28 +#: templates/dcim/inventoryitemrole.html:18 templates/dcim/location.html:29 +#: templates/dcim/manufacturer.html:36 templates/dcim/modulebay.html:30 +#: templates/dcim/platform.html:29 templates/dcim/poweroutlet.html:28 +#: templates/dcim/powerport.html:28 templates/dcim/rackrole.html:22 +#: templates/dcim/rearport.html:28 templates/dcim/region.html:29 +#: templates/dcim/sitegroup.html:29 +#: templates/dcim/virtualdevicecontext.html:18 +#: templates/extras/configcontext.html:13 +#: templates/extras/configtemplate.html:13 +#: templates/extras/customfield.html:13 templates/extras/customlink.html:13 +#: templates/extras/eventrule.html:13 templates/extras/exporttemplate.html:15 +#: templates/extras/notificationgroup.html:14 +#: templates/extras/savedfilter.html:13 templates/extras/script_list.html:44 +#: templates/extras/tag.html:14 templates/extras/webhook.html:13 +#: templates/ipam/asnrange.html:15 templates/ipam/fhrpgroup.html:30 +#: templates/ipam/rir.html:22 templates/ipam/role.html:22 +#: templates/ipam/routetarget.html:13 templates/ipam/service.html:24 +#: templates/ipam/servicetemplate.html:15 templates/ipam/vlan.html:35 +#: templates/ipam/vlangroup.html:30 templates/tenancy/contact.html:25 +#: templates/tenancy/contactgroup.html:21 +#: templates/tenancy/contactrole.html:18 templates/tenancy/tenantgroup.html:29 +#: templates/users/group.html:17 templates/users/objectpermission.html:17 +#: templates/virtualization/cluster.html:13 +#: templates/virtualization/clustergroup.html:22 +#: templates/virtualization/clustertype.html:22 +#: templates/virtualization/virtualdisk.html:25 +#: templates/virtualization/virtualmachine.html:15 +#: templates/virtualization/vminterface.html:25 +#: templates/vpn/ikepolicy.html:13 templates/vpn/ikeproposal.html:13 +#: templates/vpn/ipsecpolicy.html:13 templates/vpn/ipsecprofile.html:13 +#: templates/vpn/ipsecprofile.html:36 templates/vpn/ipsecprofile.html:69 +#: templates/vpn/ipsecproposal.html:13 templates/vpn/l2vpn.html:14 +#: templates/vpn/tunnel.html:21 templates/vpn/tunnelgroup.html:26 +#: templates/wireless/wirelesslangroup.html:29 tenancy/tables/contacts.py:19 +#: tenancy/tables/contacts.py:41 tenancy/tables/contacts.py:56 +#: tenancy/tables/tenants.py:16 tenancy/tables/tenants.py:38 +#: users/tables.py:62 users/tables.py:76 +#: virtualization/forms/bulk_create.py:20 +#: virtualization/forms/object_create.py:13 +#: virtualization/forms/object_create.py:23 +#: virtualization/tables/clusters.py:17 virtualization/tables/clusters.py:39 +#: virtualization/tables/clusters.py:62 +#: virtualization/tables/virtualmachines.py:55 +#: virtualization/tables/virtualmachines.py:139 +#: virtualization/tables/virtualmachines.py:194 vpn/tables/crypto.py:18 +#: vpn/tables/crypto.py:57 vpn/tables/crypto.py:93 vpn/tables/crypto.py:129 +#: vpn/tables/crypto.py:158 vpn/tables/l2vpn.py:23 vpn/tables/tunnels.py:18 +#: vpn/tables/tunnels.py:40 wireless/tables/wirelesslan.py:18 +#: wireless/tables/wirelesslan.py:79 msgid "Name" msgstr "Nome" -#: netbox/circuits/tables/circuits.py:41 -#: netbox/circuits/tables/circuits.py:138 -#: netbox/circuits/tables/providers.py:45 -#: netbox/circuits/tables/providers.py:79 netbox/netbox/navigation/menu.py:266 -#: netbox/netbox/navigation/menu.py:270 netbox/netbox/navigation/menu.py:272 -#: netbox/templates/circuits/provider.html:57 -#: netbox/templates/circuits/provideraccount.html:44 -#: netbox/templates/circuits/providernetwork.html:50 +#: circuits/tables/circuits.py:41 circuits/tables/circuits.py:138 +#: circuits/tables/providers.py:45 circuits/tables/providers.py:79 +#: netbox/navigation/menu.py:266 netbox/navigation/menu.py:270 +#: netbox/navigation/menu.py:272 templates/circuits/provider.html:57 +#: templates/circuits/provideraccount.html:44 +#: templates/circuits/providernetwork.html:50 msgid "Circuits" msgstr "Circuiti" -#: netbox/circuits/tables/circuits.py:55 -#: netbox/templates/circuits/circuit.html:26 +#: circuits/tables/circuits.py:55 templates/circuits/circuit.html:26 msgid "Circuit ID" msgstr "ID circuito" -#: netbox/circuits/tables/circuits.py:69 -#: netbox/wireless/forms/model_forms.py:160 +#: circuits/tables/circuits.py:69 wireless/forms/model_forms.py:160 msgid "Side A" msgstr "Lato A" -#: netbox/circuits/tables/circuits.py:74 +#: circuits/tables/circuits.py:74 msgid "Side Z" msgstr "Lato Z" -#: netbox/circuits/tables/circuits.py:77 -#: netbox/templates/circuits/circuit.html:55 +#: circuits/tables/circuits.py:77 templates/circuits/circuit.html:55 msgid "Commit Rate" msgstr "Tasso di impegno" -#: netbox/circuits/tables/circuits.py:80 -#: netbox/circuits/tables/providers.py:48 -#: netbox/circuits/tables/providers.py:82 -#: netbox/circuits/tables/providers.py:107 netbox/dcim/tables/devices.py:1036 -#: netbox/dcim/tables/devicetypes.py:92 netbox/dcim/tables/modules.py:29 -#: netbox/dcim/tables/modules.py:72 netbox/dcim/tables/power.py:39 -#: netbox/dcim/tables/power.py:96 netbox/dcim/tables/racks.py:84 -#: netbox/dcim/tables/racks.py:145 netbox/dcim/tables/racks.py:225 -#: netbox/dcim/tables/sites.py:108 netbox/extras/tables/tables.py:582 -#: netbox/ipam/tables/asn.py:69 netbox/ipam/tables/fhrp.py:34 -#: netbox/ipam/tables/ip.py:136 netbox/ipam/tables/ip.py:275 -#: netbox/ipam/tables/ip.py:329 netbox/ipam/tables/ip.py:397 -#: netbox/ipam/tables/services.py:24 netbox/ipam/tables/services.py:54 -#: netbox/ipam/tables/vlans.py:145 netbox/ipam/tables/vrfs.py:47 -#: netbox/ipam/tables/vrfs.py:72 netbox/templates/dcim/htmx/cable_edit.html:89 -#: netbox/templates/generic/bulk_edit.html:86 -#: netbox/templates/inc/panels/comments.html:5 -#: netbox/tenancy/tables/contacts.py:68 netbox/tenancy/tables/tenants.py:46 -#: netbox/utilities/forms/fields/fields.py:29 -#: netbox/virtualization/tables/clusters.py:91 -#: netbox/virtualization/tables/virtualmachines.py:82 -#: netbox/vpn/tables/crypto.py:37 netbox/vpn/tables/crypto.py:74 -#: netbox/vpn/tables/crypto.py:109 netbox/vpn/tables/crypto.py:140 -#: netbox/vpn/tables/crypto.py:173 netbox/vpn/tables/l2vpn.py:37 -#: netbox/vpn/tables/tunnels.py:61 netbox/wireless/tables/wirelesslan.py:27 -#: netbox/wireless/tables/wirelesslan.py:58 +#: circuits/tables/circuits.py:80 circuits/tables/providers.py:48 +#: circuits/tables/providers.py:82 circuits/tables/providers.py:107 +#: dcim/tables/devices.py:1036 dcim/tables/devicetypes.py:92 +#: dcim/tables/modules.py:29 dcim/tables/modules.py:72 dcim/tables/power.py:39 +#: dcim/tables/power.py:96 dcim/tables/racks.py:84 dcim/tables/racks.py:145 +#: dcim/tables/racks.py:225 dcim/tables/sites.py:108 +#: extras/tables/tables.py:582 ipam/tables/asn.py:69 ipam/tables/fhrp.py:34 +#: ipam/tables/ip.py:136 ipam/tables/ip.py:275 ipam/tables/ip.py:329 +#: ipam/tables/ip.py:397 ipam/tables/services.py:24 ipam/tables/services.py:54 +#: ipam/tables/vlans.py:145 ipam/tables/vrfs.py:47 ipam/tables/vrfs.py:72 +#: templates/dcim/htmx/cable_edit.html:89 templates/generic/bulk_edit.html:86 +#: templates/inc/panels/comments.html:5 tenancy/tables/contacts.py:68 +#: tenancy/tables/tenants.py:46 utilities/forms/fields/fields.py:29 +#: virtualization/tables/clusters.py:91 +#: virtualization/tables/virtualmachines.py:82 vpn/tables/crypto.py:37 +#: vpn/tables/crypto.py:74 vpn/tables/crypto.py:109 vpn/tables/crypto.py:140 +#: vpn/tables/crypto.py:173 vpn/tables/l2vpn.py:37 vpn/tables/tunnels.py:61 +#: wireless/tables/wirelesslan.py:27 wireless/tables/wirelesslan.py:58 msgid "Comments" msgstr "Commenti" -#: netbox/circuits/tables/circuits.py:86 -#: netbox/templates/tenancy/contact.html:84 -#: netbox/tenancy/tables/contacts.py:73 +#: circuits/tables/circuits.py:86 templates/tenancy/contact.html:84 +#: tenancy/tables/contacts.py:73 msgid "Assignments" msgstr "Incarichi" -#: netbox/circuits/tables/providers.py:23 +#: circuits/tables/providers.py:23 msgid "Accounts" msgstr "Account" -#: netbox/circuits/tables/providers.py:29 +#: circuits/tables/providers.py:29 msgid "Account Count" msgstr "Numero di account" -#: netbox/circuits/tables/providers.py:39 netbox/dcim/tables/sites.py:100 +#: circuits/tables/providers.py:39 dcim/tables/sites.py:100 msgid "ASN Count" msgstr "Numero ASN" -#: netbox/circuits/views.py:331 +#: circuits/views.py:331 #, python-brace-format msgid "No terminations have been defined for circuit {circuit}." msgstr "Non sono state definite terminazioni per il circuito {circuit}." -#: netbox/circuits/views.py:380 +#: circuits/views.py:380 #, python-brace-format msgid "Swapped terminations for circuit {circuit}." msgstr "Terminazioni sostituite per circuito {circuit}." -#: netbox/core/api/views.py:39 +#: core/api/views.py:39 msgid "This user does not have permission to synchronize this data source." msgstr "" "Questo utente non dispone dell'autorizzazione per sincronizzare questa " "origine dati." -#: netbox/core/choices.py:18 +#: core/choices.py:18 msgid "New" msgstr "Nuovo" -#: netbox/core/choices.py:19 netbox/core/constants.py:18 -#: netbox/core/tables/tasks.py:15 netbox/templates/core/rq_task.html:77 +#: core/choices.py:19 core/constants.py:18 core/tables/tasks.py:15 +#: templates/core/rq_task.html:77 msgid "Queued" msgstr "In coda" -#: netbox/core/choices.py:20 +#: core/choices.py:20 msgid "Syncing" msgstr "Sincronizzazione" -#: netbox/core/choices.py:21 netbox/core/choices.py:57 -#: netbox/core/tables/jobs.py:41 netbox/templates/core/job.html:86 +#: core/choices.py:21 core/choices.py:57 core/tables/jobs.py:41 +#: templates/core/job.html:86 msgid "Completed" msgstr "Completato" -#: netbox/core/choices.py:22 netbox/core/choices.py:59 -#: netbox/core/constants.py:20 netbox/core/tables/tasks.py:34 -#: netbox/dcim/choices.py:187 netbox/dcim/choices.py:239 -#: netbox/dcim/choices.py:1607 netbox/virtualization/choices.py:47 +#: core/choices.py:22 core/choices.py:59 core/constants.py:20 +#: core/tables/tasks.py:34 dcim/choices.py:187 dcim/choices.py:239 +#: dcim/choices.py:1607 virtualization/choices.py:47 msgid "Failed" msgstr "Fallito" -#: netbox/core/choices.py:35 netbox/netbox/navigation/menu.py:335 -#: netbox/netbox/navigation/menu.py:339 -#: netbox/templates/extras/script/base.html:14 -#: netbox/templates/extras/script_list.html:7 -#: netbox/templates/extras/script_list.html:12 -#: netbox/templates/extras/script_result.html:17 +#: core/choices.py:35 netbox/navigation/menu.py:335 +#: netbox/navigation/menu.py:339 templates/extras/script/base.html:14 +#: templates/extras/script_list.html:7 templates/extras/script_list.html:12 +#: templates/extras/script_result.html:17 msgid "Scripts" msgstr "Script" -#: netbox/core/choices.py:36 netbox/templates/extras/report/base.html:13 +#: core/choices.py:36 templates/extras/report/base.html:13 msgid "Reports" msgstr "Rapporti" -#: netbox/core/choices.py:54 +#: core/choices.py:54 msgid "Pending" msgstr "In sospeso" -#: netbox/core/choices.py:55 netbox/core/constants.py:23 -#: netbox/core/tables/jobs.py:32 netbox/core/tables/tasks.py:38 -#: netbox/templates/core/job.html:73 +#: core/choices.py:55 core/constants.py:23 core/tables/jobs.py:32 +#: core/tables/tasks.py:38 templates/core/job.html:73 msgid "Scheduled" msgstr "Pianificato" -#: netbox/core/choices.py:56 +#: core/choices.py:56 msgid "Running" msgstr "Correre" -#: netbox/core/choices.py:58 +#: core/choices.py:58 msgid "Errored" msgstr "Errore" -#: netbox/core/choices.py:87 netbox/core/tables/plugins.py:63 -#: netbox/templates/generic/object.html:61 +#: core/choices.py:87 core/tables/plugins.py:63 +#: templates/generic/object.html:61 msgid "Updated" msgstr "Aggiornato" -#: netbox/core/choices.py:88 +#: core/choices.py:88 msgid "Deleted" msgstr "Eliminato" -#: netbox/core/constants.py:19 netbox/core/tables/tasks.py:30 +#: core/constants.py:19 core/tables/tasks.py:30 msgid "Finished" msgstr "Finito" -#: netbox/core/constants.py:21 netbox/core/tables/jobs.py:38 -#: netbox/templates/core/job.html:82 -#: netbox/templates/extras/htmx/script_result.html:8 +#: core/constants.py:21 core/tables/jobs.py:38 templates/core/job.html:82 +#: templates/extras/htmx/script_result.html:8 msgid "Started" msgstr "Iniziato" -#: netbox/core/constants.py:22 netbox/core/tables/tasks.py:26 +#: core/constants.py:22 core/tables/tasks.py:26 msgid "Deferred" msgstr "Differito" -#: netbox/core/constants.py:24 +#: core/constants.py:24 msgid "Stopped" msgstr "Fermato" -#: netbox/core/constants.py:25 +#: core/constants.py:25 msgid "Cancelled" msgstr "Annullato" -#: netbox/core/data_backends.py:32 netbox/core/tables/plugins.py:51 -#: netbox/templates/core/plugin.html:87 -#: netbox/templates/dcim/interface.html:216 +#: core/data_backends.py:32 core/tables/plugins.py:51 +#: templates/core/plugin.html:88 templates/dcim/interface.html:216 msgid "Local" msgstr "Locale" -#: netbox/core/data_backends.py:50 netbox/core/tables/change_logging.py:20 -#: netbox/templates/account/profile.html:15 -#: netbox/templates/users/user.html:17 netbox/users/tables.py:31 +#: core/data_backends.py:50 core/tables/change_logging.py:20 +#: templates/account/profile.html:15 templates/users/user.html:17 +#: users/tables.py:31 msgid "Username" msgstr "Nome utente" -#: netbox/core/data_backends.py:52 netbox/core/data_backends.py:58 +#: core/data_backends.py:52 core/data_backends.py:58 msgid "Only used for cloning with HTTP(S)" msgstr "Utilizzato solo per la clonazione con HTTP (S)" -#: netbox/core/data_backends.py:56 netbox/templates/account/base.html:23 -#: netbox/templates/account/password.html:12 -#: netbox/users/forms/model_forms.py:170 +#: core/data_backends.py:56 templates/account/base.html:23 +#: templates/account/password.html:12 users/forms/model_forms.py:170 msgid "Password" msgstr "Password" -#: netbox/core/data_backends.py:62 +#: core/data_backends.py:62 msgid "Branch" msgstr "Ramo" -#: netbox/core/data_backends.py:120 +#: core/data_backends.py:120 #, python-brace-format msgid "Fetching remote data failed ({name}): {error}" msgstr "Recupero dati remoti non riuscito ({name}): {error}" -#: netbox/core/data_backends.py:133 +#: core/data_backends.py:133 msgid "AWS access key ID" msgstr "ID chiave di accesso AWS" -#: netbox/core/data_backends.py:137 +#: core/data_backends.py:137 msgid "AWS secret access key" msgstr "Chiave di accesso segreta AWS" -#: netbox/core/events.py:27 +#: core/events.py:27 msgid "Object created" msgstr "Oggetto creato" -#: netbox/core/events.py:28 +#: core/events.py:28 msgid "Object updated" msgstr "Oggetto aggiornato" -#: netbox/core/events.py:29 +#: core/events.py:29 msgid "Object deleted" msgstr "Oggetto eliminato" -#: netbox/core/events.py:30 +#: core/events.py:30 msgid "Job started" msgstr "Lavoro iniziato" -#: netbox/core/events.py:31 +#: core/events.py:31 msgid "Job completed" msgstr "Lavoro completato" -#: netbox/core/events.py:32 +#: core/events.py:32 msgid "Job failed" msgstr "Lavoro fallito" -#: netbox/core/events.py:33 +#: core/events.py:33 msgid "Job errored" msgstr "Lavoro errato" -#: netbox/core/filtersets.py:53 netbox/extras/filtersets.py:250 -#: netbox/extras/filtersets.py:633 netbox/extras/filtersets.py:661 +#: core/filtersets.py:53 extras/filtersets.py:250 extras/filtersets.py:633 +#: extras/filtersets.py:661 msgid "Data source (ID)" msgstr "Fonte dati (ID)" -#: netbox/core/filtersets.py:59 +#: core/filtersets.py:59 msgid "Data source (name)" msgstr "Fonte dati (nome)" -#: netbox/core/filtersets.py:145 netbox/dcim/filtersets.py:501 -#: netbox/extras/filtersets.py:287 netbox/extras/filtersets.py:331 -#: netbox/extras/filtersets.py:353 netbox/extras/filtersets.py:413 -#: netbox/users/filtersets.py:28 +#: core/filtersets.py:145 dcim/filtersets.py:501 extras/filtersets.py:287 +#: extras/filtersets.py:331 extras/filtersets.py:353 extras/filtersets.py:413 +#: users/filtersets.py:28 msgid "User (ID)" msgstr "Utente (ID)" -#: netbox/core/filtersets.py:151 +#: core/filtersets.py:151 msgid "User name" msgstr "Nome utente" -#: netbox/core/forms/bulk_edit.py:25 netbox/core/forms/filtersets.py:43 -#: netbox/core/tables/data.py:26 netbox/dcim/forms/bulk_edit.py:1122 -#: netbox/dcim/forms/bulk_edit.py:1400 netbox/dcim/forms/filtersets.py:1370 -#: netbox/dcim/tables/devices.py:553 netbox/dcim/tables/devicetypes.py:224 -#: netbox/extras/forms/bulk_edit.py:123 netbox/extras/forms/bulk_edit.py:187 -#: netbox/extras/forms/bulk_edit.py:246 netbox/extras/forms/filtersets.py:142 -#: netbox/extras/forms/filtersets.py:229 netbox/extras/forms/filtersets.py:294 -#: netbox/extras/tables/tables.py:162 netbox/extras/tables/tables.py:253 -#: netbox/extras/tables/tables.py:415 netbox/netbox/preferences.py:22 -#: netbox/templates/core/datasource.html:42 -#: netbox/templates/dcim/interface.html:61 -#: netbox/templates/extras/customlink.html:17 -#: netbox/templates/extras/eventrule.html:17 -#: netbox/templates/extras/savedfilter.html:25 -#: netbox/templates/users/objectpermission.html:25 -#: netbox/templates/virtualization/vminterface.html:29 -#: netbox/users/forms/bulk_edit.py:89 netbox/users/forms/filtersets.py:70 -#: netbox/users/tables.py:83 netbox/virtualization/forms/bulk_edit.py:217 -#: netbox/virtualization/forms/filtersets.py:215 +#: core/forms/bulk_edit.py:25 core/forms/filtersets.py:43 +#: core/tables/data.py:26 dcim/forms/bulk_edit.py:1122 +#: dcim/forms/bulk_edit.py:1400 dcim/forms/filtersets.py:1370 +#: dcim/tables/devices.py:553 dcim/tables/devicetypes.py:224 +#: extras/forms/bulk_edit.py:123 extras/forms/bulk_edit.py:187 +#: extras/forms/bulk_edit.py:246 extras/forms/filtersets.py:142 +#: extras/forms/filtersets.py:229 extras/forms/filtersets.py:294 +#: extras/tables/tables.py:162 extras/tables/tables.py:253 +#: extras/tables/tables.py:415 netbox/preferences.py:22 +#: templates/core/datasource.html:42 templates/dcim/interface.html:61 +#: templates/extras/customlink.html:17 templates/extras/eventrule.html:17 +#: templates/extras/savedfilter.html:25 +#: templates/users/objectpermission.html:25 +#: templates/virtualization/vminterface.html:29 users/forms/bulk_edit.py:89 +#: users/forms/filtersets.py:70 users/tables.py:83 +#: virtualization/forms/bulk_edit.py:217 +#: virtualization/forms/filtersets.py:215 msgid "Enabled" msgstr "Abilitato" -#: netbox/core/forms/bulk_edit.py:34 netbox/extras/forms/model_forms.py:285 -#: netbox/templates/extras/savedfilter.html:52 -#: netbox/vpn/forms/filtersets.py:97 netbox/vpn/forms/filtersets.py:127 -#: netbox/vpn/forms/filtersets.py:151 netbox/vpn/forms/filtersets.py:170 -#: netbox/vpn/forms/model_forms.py:301 netbox/vpn/forms/model_forms.py:321 -#: netbox/vpn/forms/model_forms.py:337 netbox/vpn/forms/model_forms.py:357 -#: netbox/vpn/forms/model_forms.py:380 +#: core/forms/bulk_edit.py:34 extras/forms/model_forms.py:285 +#: templates/extras/savedfilter.html:52 vpn/forms/filtersets.py:97 +#: vpn/forms/filtersets.py:127 vpn/forms/filtersets.py:151 +#: vpn/forms/filtersets.py:170 vpn/forms/model_forms.py:301 +#: vpn/forms/model_forms.py:321 vpn/forms/model_forms.py:337 +#: vpn/forms/model_forms.py:357 vpn/forms/model_forms.py:380 msgid "Parameters" msgstr "Parametri" -#: netbox/core/forms/bulk_edit.py:38 netbox/templates/core/datasource.html:68 +#: core/forms/bulk_edit.py:38 templates/core/datasource.html:68 msgid "Ignore rules" msgstr "Ignora le regole" -#: netbox/core/forms/filtersets.py:30 netbox/core/forms/model_forms.py:97 -#: netbox/extras/forms/model_forms.py:248 -#: netbox/extras/forms/model_forms.py:578 -#: netbox/extras/forms/model_forms.py:632 netbox/extras/tables/tables.py:191 -#: netbox/extras/tables/tables.py:483 netbox/extras/tables/tables.py:518 -#: netbox/templates/core/datasource.html:31 -#: netbox/templates/dcim/device/render_config.html:18 -#: netbox/templates/extras/configcontext.html:29 -#: netbox/templates/extras/configtemplate.html:21 -#: netbox/templates/extras/exporttemplate.html:35 -#: netbox/templates/virtualization/virtualmachine/render_config.html:18 +#: core/forms/filtersets.py:30 core/forms/model_forms.py:97 +#: extras/forms/model_forms.py:248 extras/forms/model_forms.py:578 +#: extras/forms/model_forms.py:632 extras/tables/tables.py:191 +#: extras/tables/tables.py:483 extras/tables/tables.py:518 +#: templates/core/datasource.html:31 +#: templates/dcim/device/render_config.html:18 +#: templates/extras/configcontext.html:29 +#: templates/extras/configtemplate.html:21 +#: templates/extras/exporttemplate.html:35 +#: templates/virtualization/virtualmachine/render_config.html:18 msgid "Data Source" msgstr "Fonte dati" -#: netbox/core/forms/filtersets.py:55 netbox/core/forms/mixins.py:21 +#: core/forms/filtersets.py:55 core/forms/mixins.py:21 msgid "File" msgstr "File" -#: netbox/core/forms/filtersets.py:60 netbox/core/forms/mixins.py:16 -#: netbox/extras/forms/filtersets.py:170 netbox/extras/forms/filtersets.py:328 -#: netbox/extras/forms/filtersets.py:413 +#: core/forms/filtersets.py:60 core/forms/mixins.py:16 +#: extras/forms/filtersets.py:170 extras/forms/filtersets.py:328 +#: extras/forms/filtersets.py:413 msgid "Data source" msgstr "Fonte dati" -#: netbox/core/forms/filtersets.py:70 netbox/extras/forms/filtersets.py:440 +#: core/forms/filtersets.py:70 extras/forms/filtersets.py:440 msgid "Creation" msgstr "Creazione" -#: netbox/core/forms/filtersets.py:74 netbox/core/forms/filtersets.py:160 -#: netbox/extras/forms/filtersets.py:461 netbox/extras/tables/tables.py:220 -#: netbox/extras/tables/tables.py:294 netbox/extras/tables/tables.py:326 -#: netbox/extras/tables/tables.py:571 netbox/templates/core/job.html:38 -#: netbox/templates/core/objectchange.html:52 -#: netbox/tenancy/tables/contacts.py:90 netbox/vpn/tables/l2vpn.py:59 +#: core/forms/filtersets.py:74 core/forms/filtersets.py:160 +#: extras/forms/filtersets.py:461 extras/tables/tables.py:220 +#: extras/tables/tables.py:294 extras/tables/tables.py:326 +#: extras/tables/tables.py:571 templates/core/job.html:38 +#: templates/core/objectchange.html:52 tenancy/tables/contacts.py:90 +#: vpn/tables/l2vpn.py:59 msgid "Object Type" msgstr "Tipo di oggetto" -#: netbox/core/forms/filtersets.py:84 +#: core/forms/filtersets.py:84 msgid "Created after" msgstr "Creato dopo" -#: netbox/core/forms/filtersets.py:89 +#: core/forms/filtersets.py:89 msgid "Created before" msgstr "Creato prima" -#: netbox/core/forms/filtersets.py:94 +#: core/forms/filtersets.py:94 msgid "Scheduled after" msgstr "Pianificato dopo" -#: netbox/core/forms/filtersets.py:99 +#: core/forms/filtersets.py:99 msgid "Scheduled before" msgstr "Pianificato prima" -#: netbox/core/forms/filtersets.py:104 +#: core/forms/filtersets.py:104 msgid "Started after" msgstr "Iniziato dopo" -#: netbox/core/forms/filtersets.py:109 +#: core/forms/filtersets.py:109 msgid "Started before" msgstr "Iniziato prima" -#: netbox/core/forms/filtersets.py:114 +#: core/forms/filtersets.py:114 msgid "Completed after" msgstr "Completato dopo" -#: netbox/core/forms/filtersets.py:119 +#: core/forms/filtersets.py:119 msgid "Completed before" msgstr "Completato prima" -#: netbox/core/forms/filtersets.py:126 netbox/core/forms/filtersets.py:155 -#: netbox/dcim/forms/bulk_edit.py:456 netbox/dcim/forms/filtersets.py:418 -#: netbox/dcim/forms/filtersets.py:462 netbox/dcim/forms/model_forms.py:316 -#: netbox/extras/forms/filtersets.py:456 netbox/extras/forms/filtersets.py:475 -#: netbox/extras/tables/tables.py:302 netbox/extras/tables/tables.py:342 -#: netbox/templates/core/objectchange.html:36 -#: netbox/templates/dcim/rackreservation.html:58 -#: netbox/templates/extras/savedfilter.html:21 -#: netbox/templates/inc/user_menu.html:33 netbox/templates/users/token.html:21 -#: netbox/templates/users/user.html:6 netbox/templates/users/user.html:14 -#: netbox/users/filtersets.py:107 netbox/users/filtersets.py:174 -#: netbox/users/forms/filtersets.py:84 netbox/users/forms/filtersets.py:125 -#: netbox/users/forms/model_forms.py:155 netbox/users/forms/model_forms.py:192 -#: netbox/users/tables.py:19 +#: core/forms/filtersets.py:126 core/forms/filtersets.py:155 +#: dcim/forms/bulk_edit.py:456 dcim/forms/filtersets.py:418 +#: dcim/forms/filtersets.py:462 dcim/forms/model_forms.py:316 +#: extras/forms/filtersets.py:456 extras/forms/filtersets.py:475 +#: extras/tables/tables.py:302 extras/tables/tables.py:342 +#: templates/core/objectchange.html:36 templates/dcim/rackreservation.html:58 +#: templates/extras/savedfilter.html:21 templates/inc/user_menu.html:33 +#: templates/users/token.html:21 templates/users/user.html:6 +#: templates/users/user.html:14 users/filtersets.py:107 +#: users/filtersets.py:174 users/forms/filtersets.py:84 +#: users/forms/filtersets.py:125 users/forms/model_forms.py:155 +#: users/forms/model_forms.py:192 users/tables.py:19 msgid "User" msgstr "Utente" -#: netbox/core/forms/filtersets.py:134 netbox/core/tables/change_logging.py:15 -#: netbox/extras/tables/tables.py:609 netbox/extras/tables/tables.py:646 -#: netbox/templates/core/objectchange.html:32 +#: core/forms/filtersets.py:134 core/tables/change_logging.py:15 +#: extras/tables/tables.py:609 extras/tables/tables.py:646 +#: templates/core/objectchange.html:32 msgid "Time" msgstr "Ora" -#: netbox/core/forms/filtersets.py:139 netbox/extras/forms/filtersets.py:445 +#: core/forms/filtersets.py:139 extras/forms/filtersets.py:445 msgid "After" msgstr "Dopo" -#: netbox/core/forms/filtersets.py:144 netbox/extras/forms/filtersets.py:450 +#: core/forms/filtersets.py:144 extras/forms/filtersets.py:450 msgid "Before" msgstr "Prima" -#: netbox/core/forms/filtersets.py:148 netbox/core/tables/change_logging.py:29 -#: netbox/extras/forms/model_forms.py:396 -#: netbox/templates/core/objectchange.html:46 -#: netbox/templates/extras/eventrule.html:71 +#: core/forms/filtersets.py:148 core/tables/change_logging.py:29 +#: extras/forms/model_forms.py:396 templates/core/objectchange.html:46 +#: templates/extras/eventrule.html:71 msgid "Action" msgstr "Azione" -#: netbox/core/forms/model_forms.py:54 netbox/core/tables/data.py:46 -#: netbox/templates/core/datafile.html:27 -#: netbox/templates/extras/report/base.html:33 -#: netbox/templates/extras/script/base.html:32 +#: core/forms/model_forms.py:54 core/tables/data.py:46 +#: templates/core/datafile.html:27 templates/extras/report/base.html:33 +#: templates/extras/script/base.html:32 msgid "Source" msgstr "Fonte" -#: netbox/core/forms/model_forms.py:58 +#: core/forms/model_forms.py:58 msgid "Backend Parameters" msgstr "Parametri del backend" -#: netbox/core/forms/model_forms.py:96 +#: core/forms/model_forms.py:96 msgid "File Upload" msgstr "Caricamento di file" -#: netbox/core/forms/model_forms.py:108 +#: core/forms/model_forms.py:108 msgid "Cannot upload a file and sync from an existing file" msgstr "Impossibile caricare un file e sincronizzarlo da un file esistente" -#: netbox/core/forms/model_forms.py:110 +#: core/forms/model_forms.py:110 msgid "Must upload a file or select a data file to sync" msgstr "" "È necessario caricare un file o selezionare un file di dati da sincronizzare" -#: netbox/core/forms/model_forms.py:153 -#: netbox/templates/dcim/rack_elevation_list.html:6 +#: core/forms/model_forms.py:153 templates/dcim/rack_elevation_list.html:6 msgid "Rack Elevations" msgstr "Elevazioni dei rack" -#: netbox/core/forms/model_forms.py:157 netbox/dcim/choices.py:1518 -#: netbox/dcim/forms/bulk_edit.py:969 netbox/dcim/forms/bulk_edit.py:1357 -#: netbox/dcim/forms/bulk_edit.py:1375 netbox/dcim/tables/racks.py:158 -#: netbox/netbox/navigation/menu.py:291 netbox/netbox/navigation/menu.py:295 +#: core/forms/model_forms.py:157 dcim/choices.py:1518 +#: dcim/forms/bulk_edit.py:969 dcim/forms/bulk_edit.py:1357 +#: dcim/forms/bulk_edit.py:1375 dcim/tables/racks.py:158 +#: netbox/navigation/menu.py:291 netbox/navigation/menu.py:295 msgid "Power" msgstr "Energia" -#: netbox/core/forms/model_forms.py:159 netbox/netbox/navigation/menu.py:154 -#: netbox/templates/core/inc/config_data.html:37 +#: core/forms/model_forms.py:159 netbox/navigation/menu.py:154 +#: templates/core/inc/config_data.html:37 msgid "IPAM" msgstr "IPAM" -#: netbox/core/forms/model_forms.py:160 netbox/netbox/navigation/menu.py:230 -#: netbox/templates/core/inc/config_data.html:50 -#: netbox/vpn/forms/bulk_edit.py:77 netbox/vpn/forms/filtersets.py:43 -#: netbox/vpn/forms/model_forms.py:61 netbox/vpn/forms/model_forms.py:146 +#: core/forms/model_forms.py:160 netbox/navigation/menu.py:230 +#: templates/core/inc/config_data.html:50 vpn/forms/bulk_edit.py:77 +#: vpn/forms/filtersets.py:43 vpn/forms/model_forms.py:61 +#: vpn/forms/model_forms.py:146 msgid "Security" msgstr "Sicurezza" -#: netbox/core/forms/model_forms.py:161 -#: netbox/templates/core/inc/config_data.html:59 +#: core/forms/model_forms.py:161 templates/core/inc/config_data.html:59 msgid "Banners" msgstr "Banner" -#: netbox/core/forms/model_forms.py:162 -#: netbox/templates/core/inc/config_data.html:80 +#: core/forms/model_forms.py:162 templates/core/inc/config_data.html:80 msgid "Pagination" msgstr "Impaginazione" -#: netbox/core/forms/model_forms.py:163 netbox/extras/forms/bulk_edit.py:92 -#: netbox/extras/forms/filtersets.py:47 netbox/extras/forms/model_forms.py:116 -#: netbox/extras/forms/model_forms.py:129 -#: netbox/templates/core/inc/config_data.html:93 +#: core/forms/model_forms.py:163 extras/forms/bulk_edit.py:92 +#: extras/forms/filtersets.py:47 extras/forms/model_forms.py:116 +#: extras/forms/model_forms.py:129 templates/core/inc/config_data.html:93 msgid "Validation" msgstr "Validazione" -#: netbox/core/forms/model_forms.py:164 -#: netbox/templates/account/preferences.html:6 +#: core/forms/model_forms.py:164 templates/account/preferences.html:6 msgid "User Preferences" msgstr "Preferenze utente" -#: netbox/core/forms/model_forms.py:167 netbox/dcim/forms/filtersets.py:732 -#: netbox/templates/core/inc/config_data.html:127 -#: netbox/users/forms/model_forms.py:64 +#: core/forms/model_forms.py:167 dcim/forms/filtersets.py:732 +#: templates/core/inc/config_data.html:127 users/forms/model_forms.py:64 msgid "Miscellaneous" msgstr "Varie" -#: netbox/core/forms/model_forms.py:169 +#: core/forms/model_forms.py:169 msgid "Config Revision" msgstr "Revisione della configurazione" -#: netbox/core/forms/model_forms.py:208 +#: core/forms/model_forms.py:208 msgid "This parameter has been defined statically and cannot be modified." msgstr "" "Questo parametro è stato definito staticamente e non può essere modificato." -#: netbox/core/forms/model_forms.py:216 +#: core/forms/model_forms.py:216 #, python-brace-format msgid "Current value: {value}" msgstr "Valore attuale: {value}" -#: netbox/core/forms/model_forms.py:218 +#: core/forms/model_forms.py:218 msgid " (default)" msgstr " (impostazione predefinita)" -#: netbox/core/models/change_logging.py:29 +#: core/models/change_logging.py:29 msgid "time" msgstr "tempo" -#: netbox/core/models/change_logging.py:42 +#: core/models/change_logging.py:42 msgid "user name" msgstr "nome utente" -#: netbox/core/models/change_logging.py:47 +#: core/models/change_logging.py:47 msgid "request ID" msgstr "ID della richiesta" -#: netbox/core/models/change_logging.py:52 netbox/extras/models/staging.py:69 +#: core/models/change_logging.py:52 extras/models/staging.py:69 msgid "action" msgstr "azione" -#: netbox/core/models/change_logging.py:86 +#: core/models/change_logging.py:86 msgid "pre-change data" msgstr "dati precedenti alla modifica" -#: netbox/core/models/change_logging.py:92 +#: core/models/change_logging.py:92 msgid "post-change data" msgstr "dati post-modifica" -#: netbox/core/models/change_logging.py:106 +#: core/models/change_logging.py:106 msgid "object change" msgstr "cambio di oggetto" -#: netbox/core/models/change_logging.py:107 +#: core/models/change_logging.py:107 msgid "object changes" msgstr "modifiche agli oggetti" -#: netbox/core/models/change_logging.py:123 +#: core/models/change_logging.py:123 #, python-brace-format msgid "Change logging is not supported for this object type ({type})." msgstr "" "La registrazione delle modifiche non è supportata per questo tipo di oggetto" " ({type})." -#: netbox/core/models/config.py:18 netbox/core/models/data.py:266 -#: netbox/core/models/files.py:27 netbox/core/models/jobs.py:49 -#: netbox/extras/models/models.py:730 netbox/extras/models/notifications.py:39 -#: netbox/extras/models/notifications.py:186 -#: netbox/netbox/models/features.py:53 netbox/users/models/tokens.py:32 +#: core/models/config.py:18 core/models/data.py:266 core/models/files.py:27 +#: core/models/jobs.py:49 extras/models/models.py:730 +#: extras/models/notifications.py:39 extras/models/notifications.py:186 +#: netbox/models/features.py:53 users/models/tokens.py:32 msgid "created" msgstr "creato" -#: netbox/core/models/config.py:22 +#: core/models/config.py:22 msgid "comment" msgstr "commento" -#: netbox/core/models/config.py:29 +#: core/models/config.py:29 msgid "configuration data" msgstr "dati di configurazione" -#: netbox/core/models/config.py:36 +#: core/models/config.py:36 msgid "config revision" msgstr "revisione della configurazione" -#: netbox/core/models/config.py:37 +#: core/models/config.py:37 msgid "config revisions" msgstr "revisioni della configurazione" -#: netbox/core/models/config.py:41 +#: core/models/config.py:41 msgid "Default configuration" msgstr "Configurazione predefinita" -#: netbox/core/models/config.py:43 +#: core/models/config.py:43 msgid "Current configuration" msgstr "Configurazione attuale" -#: netbox/core/models/config.py:44 +#: core/models/config.py:44 #, python-brace-format msgid "Config revision #{id}" msgstr "Revisione della configurazione #{id}" -#: netbox/core/models/data.py:44 netbox/dcim/models/cables.py:43 -#: netbox/dcim/models/device_component_templates.py:203 -#: netbox/dcim/models/device_component_templates.py:237 -#: netbox/dcim/models/device_component_templates.py:272 -#: netbox/dcim/models/device_component_templates.py:334 -#: netbox/dcim/models/device_component_templates.py:413 -#: netbox/dcim/models/device_component_templates.py:512 -#: netbox/dcim/models/device_component_templates.py:612 -#: netbox/dcim/models/device_components.py:283 -#: netbox/dcim/models/device_components.py:312 -#: netbox/dcim/models/device_components.py:345 -#: netbox/dcim/models/device_components.py:463 -#: netbox/dcim/models/device_components.py:605 -#: netbox/dcim/models/device_components.py:970 -#: netbox/dcim/models/device_components.py:1044 -#: netbox/dcim/models/power.py:102 netbox/extras/models/customfields.py:78 -#: netbox/extras/models/search.py:41 -#: netbox/virtualization/models/clusters.py:61 netbox/vpn/models/l2vpn.py:32 +#: core/models/data.py:44 dcim/models/cables.py:43 +#: dcim/models/device_component_templates.py:203 +#: dcim/models/device_component_templates.py:237 +#: dcim/models/device_component_templates.py:272 +#: dcim/models/device_component_templates.py:334 +#: dcim/models/device_component_templates.py:413 +#: dcim/models/device_component_templates.py:512 +#: dcim/models/device_component_templates.py:612 +#: dcim/models/device_components.py:283 dcim/models/device_components.py:312 +#: dcim/models/device_components.py:345 dcim/models/device_components.py:463 +#: dcim/models/device_components.py:605 dcim/models/device_components.py:970 +#: dcim/models/device_components.py:1044 dcim/models/power.py:102 +#: extras/models/customfields.py:78 extras/models/search.py:41 +#: virtualization/models/clusters.py:61 vpn/models/l2vpn.py:32 msgid "type" msgstr "tipo" -#: netbox/core/models/data.py:49 netbox/extras/choices.py:37 -#: netbox/extras/models/models.py:164 netbox/extras/tables/tables.py:656 -#: netbox/templates/core/datasource.html:58 -#: netbox/templates/core/plugin.html:65 +#: core/models/data.py:49 extras/choices.py:37 extras/models/models.py:164 +#: extras/tables/tables.py:656 templates/core/datasource.html:58 +#: templates/core/plugin.html:66 msgid "URL" msgstr "URL" -#: netbox/core/models/data.py:59 -#: netbox/dcim/models/device_component_templates.py:418 -#: netbox/dcim/models/device_components.py:512 -#: netbox/extras/models/models.py:70 netbox/extras/models/models.py:301 -#: netbox/extras/models/models.py:526 netbox/users/models/permissions.py:29 +#: core/models/data.py:59 dcim/models/device_component_templates.py:418 +#: dcim/models/device_components.py:512 extras/models/models.py:70 +#: extras/models/models.py:301 extras/models/models.py:526 +#: users/models/permissions.py:29 msgid "enabled" msgstr "abilitato" -#: netbox/core/models/data.py:63 +#: core/models/data.py:63 msgid "ignore rules" msgstr "ignora le regole" -#: netbox/core/models/data.py:65 +#: core/models/data.py:65 msgid "Patterns (one per line) matching files to ignore when syncing" msgstr "" "Schemi (uno per riga) corrispondenti ai file da ignorare durante la " "sincronizzazione" -#: netbox/core/models/data.py:68 netbox/extras/models/models.py:534 +#: core/models/data.py:68 extras/models/models.py:534 msgid "parameters" msgstr "parametri" -#: netbox/core/models/data.py:73 +#: core/models/data.py:73 msgid "last synced" msgstr "ultima sincronizzazione" -#: netbox/core/models/data.py:81 +#: core/models/data.py:81 msgid "data source" msgstr "origine dati" -#: netbox/core/models/data.py:82 +#: core/models/data.py:82 msgid "data sources" msgstr "fonti di dati" -#: netbox/core/models/data.py:122 +#: core/models/data.py:122 #, python-brace-format msgid "Unknown backend type: {type}" msgstr "Tipo di backend sconosciuto: {type}" -#: netbox/core/models/data.py:164 +#: core/models/data.py:164 msgid "Cannot initiate sync; syncing already in progress." msgstr "" "Impossibile avviare la sincronizzazione. La sincronizzazione è già in corso." -#: netbox/core/models/data.py:177 +#: core/models/data.py:177 msgid "" "There was an error initializing the backend. A dependency needs to be " "installed: " @@ -2171,1286 +1902,1224 @@ msgstr "" "Si è verificato un errore durante l'inizializzazione del backend. È " "necessario installare una dipendenza: " -#: netbox/core/models/data.py:270 netbox/core/models/files.py:31 -#: netbox/netbox/models/features.py:59 +#: core/models/data.py:270 core/models/files.py:31 +#: netbox/models/features.py:59 msgid "last updated" msgstr "ultimo aggiornamento" -#: netbox/core/models/data.py:280 netbox/dcim/models/cables.py:444 +#: core/models/data.py:280 dcim/models/cables.py:444 msgid "path" msgstr "sentiero" -#: netbox/core/models/data.py:283 +#: core/models/data.py:283 msgid "File path relative to the data source's root" msgstr "Percorso del file relativo alla radice dell'origine dati" -#: netbox/core/models/data.py:287 netbox/ipam/models/ip.py:503 +#: core/models/data.py:287 ipam/models/ip.py:503 msgid "size" msgstr "taglia" -#: netbox/core/models/data.py:290 +#: core/models/data.py:290 msgid "hash" msgstr "cancelletto" -#: netbox/core/models/data.py:294 +#: core/models/data.py:294 msgid "Length must be 64 hexadecimal characters." msgstr "La lunghezza deve essere di 64 caratteri esadecimali." -#: netbox/core/models/data.py:296 +#: core/models/data.py:296 msgid "SHA256 hash of the file data" msgstr "Hash SHA256 dei dati del file" -#: netbox/core/models/data.py:313 +#: core/models/data.py:313 msgid "data file" msgstr "file di dati" -#: netbox/core/models/data.py:314 +#: core/models/data.py:314 msgid "data files" msgstr "file di dati" -#: netbox/core/models/data.py:401 +#: core/models/data.py:401 msgid "auto sync record" msgstr "registrazione di sincronizzazione automatica" -#: netbox/core/models/data.py:402 +#: core/models/data.py:402 msgid "auto sync records" msgstr "sincronizzazione automatica dei record" -#: netbox/core/models/files.py:37 +#: core/models/files.py:37 msgid "file root" msgstr "radice del file" -#: netbox/core/models/files.py:42 +#: core/models/files.py:42 msgid "file path" msgstr "percorso del file" -#: netbox/core/models/files.py:44 +#: core/models/files.py:44 msgid "File path relative to the designated root path" msgstr "Percorso del file relativo al percorso principale designato" -#: netbox/core/models/files.py:61 +#: core/models/files.py:61 msgid "managed file" msgstr "file gestito" -#: netbox/core/models/files.py:62 +#: core/models/files.py:62 msgid "managed files" msgstr "file gestiti" -#: netbox/core/models/jobs.py:53 +#: core/models/jobs.py:53 msgid "scheduled" msgstr "pianificata" -#: netbox/core/models/jobs.py:58 +#: core/models/jobs.py:58 msgid "interval" msgstr "intervallo" -#: netbox/core/models/jobs.py:64 +#: core/models/jobs.py:64 msgid "Recurrence interval (in minutes)" msgstr "Intervallo di ricorrenza (in minuti)" -#: netbox/core/models/jobs.py:67 +#: core/models/jobs.py:67 msgid "started" msgstr "iniziato" -#: netbox/core/models/jobs.py:72 +#: core/models/jobs.py:72 msgid "completed" msgstr "completato" -#: netbox/core/models/jobs.py:90 netbox/extras/models/models.py:101 -#: netbox/extras/models/staging.py:87 +#: core/models/jobs.py:90 extras/models/models.py:101 +#: extras/models/staging.py:87 msgid "data" msgstr "dato" -#: netbox/core/models/jobs.py:95 +#: core/models/jobs.py:95 msgid "error" msgstr "errore" -#: netbox/core/models/jobs.py:100 +#: core/models/jobs.py:100 msgid "job ID" msgstr "ID lavoro" -#: netbox/core/models/jobs.py:111 +#: core/models/jobs.py:111 msgid "job" msgstr "occupazione" -#: netbox/core/models/jobs.py:112 +#: core/models/jobs.py:112 msgid "jobs" msgstr "lavori" -#: netbox/core/models/jobs.py:135 +#: core/models/jobs.py:135 #, python-brace-format msgid "Jobs cannot be assigned to this object type ({type})." msgstr "" "I lavori non possono essere assegnati a questo tipo di oggetto ({type})." -#: netbox/core/models/jobs.py:185 +#: core/models/jobs.py:185 #, python-brace-format msgid "Invalid status for job termination. Choices are: {choices}" msgstr "" "Stato non valido per la cessazione del lavoro. Le scelte sono: {choices}" -#: netbox/core/models/jobs.py:216 +#: core/models/jobs.py:216 msgid "" "enqueue() cannot be called with values for both schedule_at and immediate." msgstr "" "enqueue () non può essere chiamato con valori sia per schedule_at che per " "immediate." -#: netbox/core/signals.py:126 +#: core/signals.py:126 #, python-brace-format msgid "Deletion is prevented by a protection rule: {message}" msgstr "L'eliminazione è impedita da una regola di protezione: {message}" -#: netbox/core/tables/change_logging.py:25 -#: netbox/templates/account/profile.html:19 -#: netbox/templates/users/user.html:21 +#: core/tables/change_logging.py:25 templates/account/profile.html:19 +#: templates/users/user.html:21 msgid "Full Name" msgstr "Nome completo" -#: netbox/core/tables/change_logging.py:37 netbox/core/tables/jobs.py:21 -#: netbox/extras/choices.py:41 netbox/extras/tables/tables.py:279 -#: netbox/extras/tables/tables.py:297 netbox/extras/tables/tables.py:329 -#: netbox/extras/tables/tables.py:409 netbox/extras/tables/tables.py:470 -#: netbox/extras/tables/tables.py:576 netbox/extras/tables/tables.py:616 -#: netbox/extras/tables/tables.py:653 netbox/netbox/tables/tables.py:244 -#: netbox/templates/core/objectchange.html:58 -#: netbox/templates/extras/eventrule.html:78 -#: netbox/templates/extras/journalentry.html:18 -#: netbox/tenancy/tables/contacts.py:93 netbox/vpn/tables/l2vpn.py:64 +#: core/tables/change_logging.py:37 core/tables/jobs.py:21 +#: extras/choices.py:41 extras/tables/tables.py:279 +#: extras/tables/tables.py:297 extras/tables/tables.py:329 +#: extras/tables/tables.py:409 extras/tables/tables.py:470 +#: extras/tables/tables.py:576 extras/tables/tables.py:616 +#: extras/tables/tables.py:653 netbox/tables/tables.py:244 +#: templates/core/objectchange.html:58 templates/extras/eventrule.html:78 +#: templates/extras/journalentry.html:18 tenancy/tables/contacts.py:93 +#: vpn/tables/l2vpn.py:64 msgid "Object" msgstr "Oggetto" -#: netbox/core/tables/change_logging.py:42 -#: netbox/templates/core/objectchange.html:68 +#: core/tables/change_logging.py:42 templates/core/objectchange.html:68 msgid "Request ID" msgstr "ID della richiesta" -#: netbox/core/tables/config.py:21 netbox/users/forms/filtersets.py:44 -#: netbox/users/tables.py:39 +#: core/tables/config.py:21 users/forms/filtersets.py:44 users/tables.py:39 msgid "Is Active" msgstr "È attivo" -#: netbox/core/tables/data.py:50 netbox/templates/core/datafile.html:31 +#: core/tables/data.py:50 templates/core/datafile.html:31 msgid "Path" msgstr "Sentiero" -#: netbox/core/tables/data.py:54 -#: netbox/templates/extras/inc/result_pending.html:7 +#: core/tables/data.py:54 templates/extras/inc/result_pending.html:7 msgid "Last updated" msgstr "Ultimo aggiornamento" -#: netbox/core/tables/jobs.py:10 netbox/core/tables/tasks.py:76 -#: netbox/dcim/tables/devicetypes.py:164 netbox/extras/tables/tables.py:216 -#: netbox/extras/tables/tables.py:460 netbox/netbox/tables/tables.py:189 -#: netbox/templates/dcim/virtualchassis_edit.html:52 -#: netbox/utilities/forms/forms.py:73 -#: netbox/wireless/tables/wirelesslink.py:17 +#: core/tables/jobs.py:10 core/tables/tasks.py:76 +#: dcim/tables/devicetypes.py:164 extras/tables/tables.py:216 +#: extras/tables/tables.py:460 netbox/tables/tables.py:189 +#: templates/dcim/virtualchassis_edit.html:52 utilities/forms/forms.py:73 +#: wireless/tables/wirelesslink.py:17 msgid "ID" msgstr "ID" -#: netbox/core/tables/jobs.py:35 +#: core/tables/jobs.py:35 msgid "Interval" msgstr "Intervallo" -#: netbox/core/tables/plugins.py:14 netbox/templates/vpn/ipsecprofile.html:44 -#: netbox/vpn/forms/bulk_edit.py:141 netbox/vpn/forms/bulk_import.py:172 -#: netbox/vpn/tables/crypto.py:61 +#: core/tables/plugins.py:14 templates/vpn/ipsecprofile.html:44 +#: vpn/forms/bulk_edit.py:141 vpn/forms/bulk_import.py:172 +#: vpn/tables/crypto.py:61 msgid "Version" msgstr "Versione" -#: netbox/core/tables/plugins.py:19 netbox/templates/core/datafile.html:38 +#: core/tables/plugins.py:19 templates/core/datafile.html:38 msgid "Last Updated" msgstr "Ultimo aggiornamento" -#: netbox/core/tables/plugins.py:23 +#: core/tables/plugins.py:23 msgid "Minimum NetBox Version" msgstr "Versione minima di NetBox" -#: netbox/core/tables/plugins.py:27 +#: core/tables/plugins.py:27 msgid "Maximum NetBox Version" msgstr "Versione massima di NetBox" -#: netbox/core/tables/plugins.py:31 netbox/core/tables/plugins.py:74 +#: core/tables/plugins.py:31 core/tables/plugins.py:74 msgid "No plugin data found" msgstr "Nessun dato del plugin trovato" -#: netbox/core/tables/plugins.py:48 netbox/templates/core/plugin.html:61 +#: core/tables/plugins.py:48 templates/core/plugin.html:62 msgid "Author" msgstr "Autore" -#: netbox/core/tables/plugins.py:54 +#: core/tables/plugins.py:54 msgid "Installed" msgstr "Installato" -#: netbox/core/tables/plugins.py:57 netbox/templates/core/plugin.html:83 +#: core/tables/plugins.py:57 templates/core/plugin.html:84 msgid "Certified" msgstr "Certificato" -#: netbox/core/tables/plugins.py:60 +#: core/tables/plugins.py:60 msgid "Published" msgstr "Pubblicato" -#: netbox/core/tables/plugins.py:66 +#: core/tables/plugins.py:66 msgid "Installed Version" msgstr "Versione installata" -#: netbox/core/tables/plugins.py:70 +#: core/tables/plugins.py:70 msgid "Latest Version" msgstr "Ultima versione" -#: netbox/core/tables/tasks.py:18 +#: core/tables/tasks.py:18 msgid "Oldest Task" msgstr "Attività più vecchia" -#: netbox/core/tables/tasks.py:42 netbox/templates/core/rq_worker_list.html:39 +#: core/tables/tasks.py:42 templates/core/rq_worker_list.html:39 msgid "Workers" msgstr "Lavoratori" -#: netbox/core/tables/tasks.py:46 netbox/vpn/tables/tunnels.py:88 +#: core/tables/tasks.py:46 vpn/tables/tunnels.py:88 msgid "Host" msgstr "Ospite" -#: netbox/core/tables/tasks.py:50 netbox/ipam/forms/filtersets.py:535 +#: core/tables/tasks.py:50 ipam/forms/filtersets.py:535 msgid "Port" msgstr "Porto" -#: netbox/core/tables/tasks.py:54 +#: core/tables/tasks.py:54 msgid "DB" msgstr "DB" -#: netbox/core/tables/tasks.py:58 +#: core/tables/tasks.py:58 msgid "Scheduler PID" msgstr "PID dello scheduler" -#: netbox/core/tables/tasks.py:62 +#: core/tables/tasks.py:62 msgid "No queues found" msgstr "Nessuna coda trovata" -#: netbox/core/tables/tasks.py:82 +#: core/tables/tasks.py:82 msgid "Enqueued" msgstr "In coda" -#: netbox/core/tables/tasks.py:85 +#: core/tables/tasks.py:85 msgid "Ended" msgstr "Conclusa" -#: netbox/core/tables/tasks.py:93 netbox/templates/core/rq_task.html:85 +#: core/tables/tasks.py:93 templates/core/rq_task.html:85 msgid "Callable" msgstr "Richiamabile" -#: netbox/core/tables/tasks.py:97 +#: core/tables/tasks.py:97 msgid "No tasks found" msgstr "Nessuna attività trovata" -#: netbox/core/tables/tasks.py:118 netbox/templates/core/rq_worker.html:47 +#: core/tables/tasks.py:118 templates/core/rq_worker.html:47 msgid "State" msgstr "Stato" -#: netbox/core/tables/tasks.py:121 netbox/templates/core/rq_worker.html:51 +#: core/tables/tasks.py:121 templates/core/rq_worker.html:51 msgid "Birth" msgstr "Nascita" -#: netbox/core/tables/tasks.py:124 netbox/templates/core/rq_worker.html:59 +#: core/tables/tasks.py:124 templates/core/rq_worker.html:59 msgid "PID" msgstr "PID" -#: netbox/core/tables/tasks.py:128 +#: core/tables/tasks.py:128 msgid "No workers found" msgstr "Nessun lavoratore trovato" -#: netbox/core/views.py:90 +#: core/views.py:90 #, python-brace-format msgid "Queued job #{id} to sync {datasource}" msgstr "Lavoro in coda #{id} da sincronizzare {datasource}" -#: netbox/core/views.py:319 +#: core/views.py:319 #, python-brace-format msgid "Restored configuration revision #{id}" msgstr "Revisione della configurazione ripristinata #{id}" -#: netbox/core/views.py:412 netbox/core/views.py:455 netbox/core/views.py:531 +#: core/views.py:412 core/views.py:455 core/views.py:531 #, python-brace-format msgid "Job {job_id} not found" msgstr "Lavoro {job_id} non trovato" -#: netbox/core/views.py:463 +#: core/views.py:463 #, python-brace-format msgid "Job {id} has been deleted." msgstr "Lavoro {id} è stato eliminato." -#: netbox/core/views.py:465 +#: core/views.py:465 #, python-brace-format msgid "Error deleting job {id}: {error}" msgstr "Errore durante l'eliminazione del lavoro {id}: {error}" -#: netbox/core/views.py:478 netbox/core/views.py:496 +#: core/views.py:478 core/views.py:496 #, python-brace-format msgid "Job {id} not found." msgstr "Lavoro {id} non trovato." -#: netbox/core/views.py:484 +#: core/views.py:484 #, python-brace-format msgid "Job {id} has been re-enqueued." msgstr "Lavoro {id} è stato nuovamente accodato." -#: netbox/core/views.py:519 +#: core/views.py:519 #, python-brace-format msgid "Job {id} has been enqueued." msgstr "Lavoro {id} è stato messo in coda." -#: netbox/core/views.py:538 +#: core/views.py:538 #, python-brace-format msgid "Job {id} has been stopped." msgstr "Lavoro {id} è stato fermato." -#: netbox/core/views.py:540 +#: core/views.py:540 #, python-brace-format msgid "Failed to stop job {id}" msgstr "Interruzione del lavoro non riuscita {id}" -#: netbox/core/views.py:678 +#: core/views.py:678 msgid "Plugins catalog could not be loaded" msgstr "Impossibile caricare il catalogo dei plugin" -#: netbox/core/views.py:712 +#: core/views.py:712 #, python-brace-format msgid "Plugin {name} not found" msgstr "Plugin {name} non trovato" -#: netbox/dcim/api/serializers_/devices.py:49 -#: netbox/dcim/api/serializers_/devicetypes.py:25 +#: dcim/api/serializers_/devices.py:49 dcim/api/serializers_/devicetypes.py:25 msgid "Position (U)" msgstr "Posizione (U)" -#: netbox/dcim/api/serializers_/racks.py:112 -#: netbox/templates/dcim/rack.html:28 +#: dcim/api/serializers_/racks.py:112 templates/dcim/rack.html:28 msgid "Facility ID" msgstr "ID struttura" -#: netbox/dcim/choices.py:21 netbox/virtualization/choices.py:21 +#: dcim/choices.py:21 virtualization/choices.py:21 msgid "Staging" msgstr "Messa in scena" -#: netbox/dcim/choices.py:23 netbox/dcim/choices.py:189 -#: netbox/dcim/choices.py:240 netbox/dcim/choices.py:1531 -#: netbox/virtualization/choices.py:23 netbox/virtualization/choices.py:48 +#: dcim/choices.py:23 dcim/choices.py:189 dcim/choices.py:240 +#: dcim/choices.py:1531 virtualization/choices.py:23 +#: virtualization/choices.py:48 msgid "Decommissioning" msgstr "Smantellamento" -#: netbox/dcim/choices.py:24 +#: dcim/choices.py:24 msgid "Retired" msgstr "Ritirato" -#: netbox/dcim/choices.py:65 +#: dcim/choices.py:65 msgid "2-post frame" msgstr "Telaio a 2 montanti" -#: netbox/dcim/choices.py:66 +#: dcim/choices.py:66 msgid "4-post frame" msgstr "Telaio a 4 montanti" -#: netbox/dcim/choices.py:67 +#: dcim/choices.py:67 msgid "4-post cabinet" msgstr "Armadio a 4 montanti" -#: netbox/dcim/choices.py:68 +#: dcim/choices.py:68 msgid "Wall-mounted frame" msgstr "Telaio a parete" -#: netbox/dcim/choices.py:69 +#: dcim/choices.py:69 msgid "Wall-mounted frame (vertical)" msgstr "Telaio a parete (verticale)" -#: netbox/dcim/choices.py:70 +#: dcim/choices.py:70 msgid "Wall-mounted cabinet" msgstr "Armadio a parete" -#: netbox/dcim/choices.py:71 +#: dcim/choices.py:71 msgid "Wall-mounted cabinet (vertical)" msgstr "Armadio a parete (verticale)" -#: netbox/dcim/choices.py:83 netbox/dcim/choices.py:84 -#: netbox/dcim/choices.py:85 netbox/dcim/choices.py:86 +#: dcim/choices.py:83 dcim/choices.py:84 dcim/choices.py:85 dcim/choices.py:86 #, python-brace-format msgid "{n} inches" msgstr "{n} pollici" -#: netbox/dcim/choices.py:100 netbox/ipam/choices.py:32 -#: netbox/ipam/choices.py:50 netbox/ipam/choices.py:70 -#: netbox/ipam/choices.py:155 netbox/wireless/choices.py:26 +#: dcim/choices.py:100 ipam/choices.py:32 ipam/choices.py:50 +#: ipam/choices.py:70 ipam/choices.py:155 wireless/choices.py:26 msgid "Reserved" msgstr "Riservato" -#: netbox/dcim/choices.py:101 netbox/templates/dcim/device.html:259 +#: dcim/choices.py:101 templates/dcim/device.html:259 msgid "Available" msgstr "Disponibile" -#: netbox/dcim/choices.py:104 netbox/ipam/choices.py:33 -#: netbox/ipam/choices.py:51 netbox/ipam/choices.py:71 -#: netbox/ipam/choices.py:156 netbox/wireless/choices.py:28 +#: dcim/choices.py:104 ipam/choices.py:33 ipam/choices.py:51 +#: ipam/choices.py:71 ipam/choices.py:156 wireless/choices.py:28 msgid "Deprecated" msgstr "Obsoleto" -#: netbox/dcim/choices.py:114 -#: netbox/templates/dcim/inc/panels/racktype_dimensions.html:41 +#: dcim/choices.py:114 templates/dcim/inc/panels/racktype_dimensions.html:41 msgid "Millimeters" msgstr "Millimetri" -#: netbox/dcim/choices.py:115 netbox/dcim/choices.py:1553 +#: dcim/choices.py:115 dcim/choices.py:1553 msgid "Inches" msgstr "Pollici" -#: netbox/dcim/choices.py:136 netbox/dcim/choices.py:207 -#: netbox/dcim/choices.py:254 +#: dcim/choices.py:136 dcim/choices.py:207 dcim/choices.py:254 msgid "Front to rear" msgstr "Da anteriore a posteriore" -#: netbox/dcim/choices.py:137 netbox/dcim/choices.py:208 -#: netbox/dcim/choices.py:255 +#: dcim/choices.py:137 dcim/choices.py:208 dcim/choices.py:255 msgid "Rear to front" msgstr "Posteriore/anteriore" -#: netbox/dcim/choices.py:151 netbox/dcim/forms/bulk_edit.py:68 -#: netbox/dcim/forms/bulk_edit.py:87 netbox/dcim/forms/bulk_edit.py:173 -#: netbox/dcim/forms/bulk_edit.py:1405 netbox/dcim/forms/bulk_import.py:60 -#: netbox/dcim/forms/bulk_import.py:74 netbox/dcim/forms/bulk_import.py:137 -#: netbox/dcim/forms/bulk_import.py:566 netbox/dcim/forms/bulk_import.py:833 -#: netbox/dcim/forms/bulk_import.py:1088 netbox/dcim/forms/filtersets.py:234 -#: netbox/dcim/forms/model_forms.py:74 netbox/dcim/forms/model_forms.py:93 -#: netbox/dcim/forms/model_forms.py:170 netbox/dcim/forms/model_forms.py:1062 -#: netbox/dcim/forms/model_forms.py:1502 -#: netbox/dcim/forms/object_import.py:176 netbox/dcim/tables/devices.py:656 -#: netbox/dcim/tables/devices.py:869 netbox/dcim/tables/devices.py:954 -#: netbox/extras/tables/tables.py:223 netbox/ipam/tables/fhrp.py:59 -#: netbox/ipam/tables/ip.py:378 netbox/ipam/tables/services.py:44 -#: netbox/templates/dcim/interface.html:102 -#: netbox/templates/dcim/interface.html:309 -#: netbox/templates/dcim/location.html:41 netbox/templates/dcim/region.html:37 -#: netbox/templates/dcim/sitegroup.html:37 -#: netbox/templates/ipam/service.html:28 -#: netbox/templates/tenancy/contactgroup.html:29 -#: netbox/templates/tenancy/tenantgroup.html:37 -#: netbox/templates/virtualization/vminterface.html:39 -#: netbox/templates/wireless/wirelesslangroup.html:37 -#: netbox/tenancy/forms/bulk_edit.py:27 netbox/tenancy/forms/bulk_edit.py:61 -#: netbox/tenancy/forms/bulk_import.py:24 -#: netbox/tenancy/forms/bulk_import.py:58 -#: netbox/tenancy/forms/model_forms.py:25 -#: netbox/tenancy/forms/model_forms.py:68 -#: netbox/virtualization/forms/bulk_edit.py:207 -#: netbox/virtualization/forms/bulk_import.py:151 -#: netbox/virtualization/tables/virtualmachines.py:162 -#: netbox/wireless/forms/bulk_edit.py:24 -#: netbox/wireless/forms/bulk_import.py:21 -#: netbox/wireless/forms/model_forms.py:21 +#: dcim/choices.py:151 dcim/forms/bulk_edit.py:68 dcim/forms/bulk_edit.py:87 +#: dcim/forms/bulk_edit.py:173 dcim/forms/bulk_edit.py:1405 +#: dcim/forms/bulk_import.py:60 dcim/forms/bulk_import.py:74 +#: dcim/forms/bulk_import.py:137 dcim/forms/bulk_import.py:566 +#: dcim/forms/bulk_import.py:833 dcim/forms/bulk_import.py:1088 +#: dcim/forms/filtersets.py:234 dcim/forms/model_forms.py:74 +#: dcim/forms/model_forms.py:93 dcim/forms/model_forms.py:170 +#: dcim/forms/model_forms.py:1062 dcim/forms/model_forms.py:1502 +#: dcim/forms/object_import.py:176 dcim/tables/devices.py:656 +#: dcim/tables/devices.py:869 dcim/tables/devices.py:954 +#: extras/tables/tables.py:223 ipam/tables/fhrp.py:59 ipam/tables/ip.py:378 +#: ipam/tables/services.py:44 templates/dcim/interface.html:102 +#: templates/dcim/interface.html:309 templates/dcim/location.html:41 +#: templates/dcim/region.html:37 templates/dcim/sitegroup.html:37 +#: templates/ipam/service.html:28 templates/tenancy/contactgroup.html:29 +#: templates/tenancy/tenantgroup.html:37 +#: templates/virtualization/vminterface.html:39 +#: templates/wireless/wirelesslangroup.html:37 tenancy/forms/bulk_edit.py:27 +#: tenancy/forms/bulk_edit.py:61 tenancy/forms/bulk_import.py:24 +#: tenancy/forms/bulk_import.py:58 tenancy/forms/model_forms.py:25 +#: tenancy/forms/model_forms.py:68 virtualization/forms/bulk_edit.py:207 +#: virtualization/forms/bulk_import.py:151 +#: virtualization/tables/virtualmachines.py:162 wireless/forms/bulk_edit.py:24 +#: wireless/forms/bulk_import.py:21 wireless/forms/model_forms.py:21 msgid "Parent" msgstr "Genitore" -#: netbox/dcim/choices.py:152 +#: dcim/choices.py:152 msgid "Child" msgstr "Bambino" -#: netbox/dcim/choices.py:166 netbox/templates/dcim/device.html:340 -#: netbox/templates/dcim/rack.html:133 -#: netbox/templates/dcim/rack_elevation_list.html:20 -#: netbox/templates/dcim/rackreservation.html:76 +#: dcim/choices.py:166 templates/dcim/device.html:340 +#: templates/dcim/rack.html:133 templates/dcim/rack_elevation_list.html:20 +#: templates/dcim/rackreservation.html:76 msgid "Front" msgstr "Anteriore" -#: netbox/dcim/choices.py:167 netbox/templates/dcim/device.html:346 -#: netbox/templates/dcim/rack.html:139 -#: netbox/templates/dcim/rack_elevation_list.html:21 -#: netbox/templates/dcim/rackreservation.html:82 +#: dcim/choices.py:167 templates/dcim/device.html:346 +#: templates/dcim/rack.html:139 templates/dcim/rack_elevation_list.html:21 +#: templates/dcim/rackreservation.html:82 msgid "Rear" msgstr "Posteriore" -#: netbox/dcim/choices.py:186 netbox/dcim/choices.py:238 -#: netbox/virtualization/choices.py:46 +#: dcim/choices.py:186 dcim/choices.py:238 virtualization/choices.py:46 msgid "Staged" msgstr "Messo in scena" -#: netbox/dcim/choices.py:188 +#: dcim/choices.py:188 msgid "Inventory" msgstr "Inventario" -#: netbox/dcim/choices.py:209 netbox/dcim/choices.py:256 +#: dcim/choices.py:209 dcim/choices.py:256 msgid "Left to right" msgstr "Da sinistra a destra" -#: netbox/dcim/choices.py:210 netbox/dcim/choices.py:257 +#: dcim/choices.py:210 dcim/choices.py:257 msgid "Right to left" msgstr "Da destra a sinistra" -#: netbox/dcim/choices.py:211 netbox/dcim/choices.py:258 +#: dcim/choices.py:211 dcim/choices.py:258 msgid "Side to rear" msgstr "Da lato a retro" -#: netbox/dcim/choices.py:212 +#: dcim/choices.py:212 msgid "Rear to side" msgstr "Da dietro a lato" -#: netbox/dcim/choices.py:213 +#: dcim/choices.py:213 msgid "Bottom to top" msgstr "Dal basso verso l'alto" -#: netbox/dcim/choices.py:214 +#: dcim/choices.py:214 msgid "Top to bottom" msgstr "Dall'alto verso il basso" -#: netbox/dcim/choices.py:215 netbox/dcim/choices.py:259 -#: netbox/dcim/choices.py:1303 +#: dcim/choices.py:215 dcim/choices.py:259 dcim/choices.py:1303 msgid "Passive" msgstr "Passivo" -#: netbox/dcim/choices.py:216 +#: dcim/choices.py:216 msgid "Mixed" msgstr "Misto" -#: netbox/dcim/choices.py:484 netbox/dcim/choices.py:733 +#: dcim/choices.py:484 dcim/choices.py:733 msgid "NEMA (Non-locking)" msgstr "NEMA (non bloccante)" -#: netbox/dcim/choices.py:506 netbox/dcim/choices.py:755 +#: dcim/choices.py:506 dcim/choices.py:755 msgid "NEMA (Locking)" msgstr "NEMA (bloccaggio)" -#: netbox/dcim/choices.py:530 netbox/dcim/choices.py:779 +#: dcim/choices.py:530 dcim/choices.py:779 msgid "California Style" msgstr "Stile californiano" -#: netbox/dcim/choices.py:538 +#: dcim/choices.py:538 msgid "International/ITA" msgstr "Internazionale/ITA" -#: netbox/dcim/choices.py:573 netbox/dcim/choices.py:814 +#: dcim/choices.py:573 dcim/choices.py:814 msgid "Proprietary" msgstr "Proprietario" -#: netbox/dcim/choices.py:581 netbox/dcim/choices.py:824 -#: netbox/dcim/choices.py:1219 netbox/dcim/choices.py:1221 -#: netbox/dcim/choices.py:1447 netbox/dcim/choices.py:1449 -#: netbox/netbox/navigation/menu.py:200 +#: dcim/choices.py:581 dcim/choices.py:824 dcim/choices.py:1219 +#: dcim/choices.py:1221 dcim/choices.py:1447 dcim/choices.py:1449 +#: netbox/navigation/menu.py:200 msgid "Other" msgstr "Altro" -#: netbox/dcim/choices.py:787 +#: dcim/choices.py:787 msgid "ITA/International" msgstr "ITA/Internazionale" -#: netbox/dcim/choices.py:854 +#: dcim/choices.py:854 msgid "Physical" msgstr "Fisico" -#: netbox/dcim/choices.py:855 netbox/dcim/choices.py:1023 +#: dcim/choices.py:855 dcim/choices.py:1023 msgid "Virtual" msgstr "Virtuale" -#: netbox/dcim/choices.py:856 netbox/dcim/choices.py:1097 -#: netbox/dcim/forms/bulk_edit.py:1515 netbox/dcim/forms/filtersets.py:1330 -#: netbox/dcim/forms/model_forms.py:988 netbox/dcim/forms/model_forms.py:1397 -#: netbox/netbox/navigation/menu.py:140 netbox/netbox/navigation/menu.py:144 -#: netbox/templates/dcim/interface.html:210 +#: dcim/choices.py:856 dcim/choices.py:1097 dcim/forms/bulk_edit.py:1515 +#: dcim/forms/filtersets.py:1330 dcim/forms/model_forms.py:988 +#: dcim/forms/model_forms.py:1397 netbox/navigation/menu.py:140 +#: netbox/navigation/menu.py:144 templates/dcim/interface.html:210 msgid "Wireless" msgstr "Wireless" -#: netbox/dcim/choices.py:1021 +#: dcim/choices.py:1021 msgid "Virtual interfaces" msgstr "Interfacce virtuali" -#: netbox/dcim/choices.py:1024 netbox/dcim/forms/bulk_edit.py:1410 -#: netbox/dcim/forms/bulk_import.py:840 netbox/dcim/forms/model_forms.py:974 -#: netbox/dcim/tables/devices.py:660 netbox/templates/dcim/interface.html:106 -#: netbox/templates/virtualization/vminterface.html:43 -#: netbox/virtualization/forms/bulk_edit.py:212 -#: netbox/virtualization/forms/bulk_import.py:158 -#: netbox/virtualization/tables/virtualmachines.py:166 +#: dcim/choices.py:1024 dcim/forms/bulk_edit.py:1410 +#: dcim/forms/bulk_import.py:840 dcim/forms/model_forms.py:974 +#: dcim/tables/devices.py:660 templates/dcim/interface.html:106 +#: templates/virtualization/vminterface.html:43 +#: virtualization/forms/bulk_edit.py:212 +#: virtualization/forms/bulk_import.py:158 +#: virtualization/tables/virtualmachines.py:166 msgid "Bridge" msgstr "ponte" -#: netbox/dcim/choices.py:1025 +#: dcim/choices.py:1025 msgid "Link Aggregation Group (LAG)" msgstr "Link Aggregation Group (GAL)" -#: netbox/dcim/choices.py:1029 +#: dcim/choices.py:1029 msgid "Ethernet (fixed)" msgstr "Ethernet (fisso)" -#: netbox/dcim/choices.py:1044 +#: dcim/choices.py:1044 msgid "Ethernet (modular)" msgstr "Ethernet (modulare)" -#: netbox/dcim/choices.py:1081 +#: dcim/choices.py:1081 msgid "Ethernet (backplane)" msgstr "Ethernet (backplane)" -#: netbox/dcim/choices.py:1113 +#: dcim/choices.py:1113 msgid "Cellular" msgstr "Cellulare" -#: netbox/dcim/choices.py:1165 netbox/dcim/forms/filtersets.py:383 -#: netbox/dcim/forms/filtersets.py:809 netbox/dcim/forms/filtersets.py:963 -#: netbox/dcim/forms/filtersets.py:1542 -#: netbox/templates/dcim/inventoryitem.html:52 -#: netbox/templates/dcim/virtualchassis_edit.html:54 +#: dcim/choices.py:1165 dcim/forms/filtersets.py:383 +#: dcim/forms/filtersets.py:809 dcim/forms/filtersets.py:963 +#: dcim/forms/filtersets.py:1542 templates/dcim/inventoryitem.html:52 +#: templates/dcim/virtualchassis_edit.html:54 msgid "Serial" msgstr "Seriale" -#: netbox/dcim/choices.py:1180 +#: dcim/choices.py:1180 msgid "Coaxial" msgstr "Coassiale" -#: netbox/dcim/choices.py:1200 +#: dcim/choices.py:1200 msgid "Stacking" msgstr "impilamento" -#: netbox/dcim/choices.py:1250 +#: dcim/choices.py:1250 msgid "Half" msgstr "Metà" -#: netbox/dcim/choices.py:1251 +#: dcim/choices.py:1251 msgid "Full" msgstr "Completo" -#: netbox/dcim/choices.py:1252 netbox/netbox/preferences.py:31 -#: netbox/wireless/choices.py:480 +#: dcim/choices.py:1252 netbox/preferences.py:31 wireless/choices.py:480 msgid "Auto" msgstr "Auto" -#: netbox/dcim/choices.py:1263 +#: dcim/choices.py:1263 msgid "Access" msgstr "Accesso" -#: netbox/dcim/choices.py:1264 netbox/ipam/tables/vlans.py:172 -#: netbox/ipam/tables/vlans.py:217 -#: netbox/templates/dcim/inc/interface_vlans_table.html:7 +#: dcim/choices.py:1264 ipam/tables/vlans.py:172 ipam/tables/vlans.py:217 +#: templates/dcim/inc/interface_vlans_table.html:7 msgid "Tagged" msgstr "Taggato" -#: netbox/dcim/choices.py:1265 +#: dcim/choices.py:1265 msgid "Tagged (All)" msgstr "Contrassegnati (tutti)" -#: netbox/dcim/choices.py:1294 +#: dcim/choices.py:1294 msgid "IEEE Standard" msgstr "Norma IEEE" -#: netbox/dcim/choices.py:1305 +#: dcim/choices.py:1305 msgid "Passive 24V (2-pair)" msgstr "24V passivo (2 coppie)" -#: netbox/dcim/choices.py:1306 +#: dcim/choices.py:1306 msgid "Passive 24V (4-pair)" msgstr "24V passivo (4 coppie)" -#: netbox/dcim/choices.py:1307 +#: dcim/choices.py:1307 msgid "Passive 48V (2-pair)" msgstr "48V passivo (2 coppie)" -#: netbox/dcim/choices.py:1308 +#: dcim/choices.py:1308 msgid "Passive 48V (4-pair)" msgstr "48V passivo (4 coppie)" -#: netbox/dcim/choices.py:1378 netbox/dcim/choices.py:1488 +#: dcim/choices.py:1378 dcim/choices.py:1488 msgid "Copper" msgstr "Rame" -#: netbox/dcim/choices.py:1401 +#: dcim/choices.py:1401 msgid "Fiber Optic" msgstr "Fibra ottica" -#: netbox/dcim/choices.py:1434 netbox/dcim/choices.py:1517 +#: dcim/choices.py:1434 dcim/choices.py:1517 msgid "USB" msgstr "USB" -#: netbox/dcim/choices.py:1504 +#: dcim/choices.py:1504 msgid "Fiber" msgstr "Fibra" -#: netbox/dcim/choices.py:1529 netbox/dcim/forms/filtersets.py:1227 +#: dcim/choices.py:1529 dcim/forms/filtersets.py:1227 msgid "Connected" msgstr "Connesso" -#: netbox/dcim/choices.py:1548 netbox/wireless/choices.py:497 +#: dcim/choices.py:1548 wireless/choices.py:497 msgid "Kilometers" msgstr "Chilometri" -#: netbox/dcim/choices.py:1549 netbox/templates/dcim/cable_trace.html:65 -#: netbox/wireless/choices.py:498 +#: dcim/choices.py:1549 templates/dcim/cable_trace.html:65 +#: wireless/choices.py:498 msgid "Meters" msgstr "Metri" -#: netbox/dcim/choices.py:1550 +#: dcim/choices.py:1550 msgid "Centimeters" msgstr "Centimetri" -#: netbox/dcim/choices.py:1551 netbox/wireless/choices.py:499 +#: dcim/choices.py:1551 wireless/choices.py:499 msgid "Miles" msgstr "Miglia" -#: netbox/dcim/choices.py:1552 netbox/templates/dcim/cable_trace.html:66 -#: netbox/wireless/choices.py:500 +#: dcim/choices.py:1552 templates/dcim/cable_trace.html:66 +#: wireless/choices.py:500 msgid "Feet" msgstr "Piedi" -#: netbox/dcim/choices.py:1568 netbox/templates/dcim/device.html:327 -#: netbox/templates/dcim/rack.html:107 +#: dcim/choices.py:1568 templates/dcim/device.html:327 +#: templates/dcim/rack.html:107 msgid "Kilograms" msgstr "Chilogrammi" -#: netbox/dcim/choices.py:1569 +#: dcim/choices.py:1569 msgid "Grams" msgstr "Grammi" -#: netbox/dcim/choices.py:1570 netbox/templates/dcim/device.html:328 -#: netbox/templates/dcim/rack.html:108 +#: dcim/choices.py:1570 templates/dcim/device.html:328 +#: templates/dcim/rack.html:108 msgid "Pounds" msgstr "Sterline" -#: netbox/dcim/choices.py:1571 +#: dcim/choices.py:1571 msgid "Ounces" msgstr "Once" -#: netbox/dcim/choices.py:1618 +#: dcim/choices.py:1618 msgid "Redundant" msgstr "Ridondante" -#: netbox/dcim/choices.py:1639 +#: dcim/choices.py:1639 msgid "Single phase" msgstr "Monofase" -#: netbox/dcim/choices.py:1640 +#: dcim/choices.py:1640 msgid "Three-phase" msgstr "Trifase" -#: netbox/dcim/fields.py:45 +#: dcim/fields.py:45 #, python-brace-format msgid "Invalid MAC address format: {value}" msgstr "Formato dell'indirizzo MAC non valido: {value}" -#: netbox/dcim/fields.py:71 +#: dcim/fields.py:71 #, python-brace-format msgid "Invalid WWN format: {value}" msgstr "Formato WWN non valido: {value}" -#: netbox/dcim/filtersets.py:86 +#: dcim/filtersets.py:86 msgid "Parent region (ID)" msgstr "Regione principale (ID)" -#: netbox/dcim/filtersets.py:92 +#: dcim/filtersets.py:92 msgid "Parent region (slug)" msgstr "Regione madre (slug)" -#: netbox/dcim/filtersets.py:116 +#: dcim/filtersets.py:116 msgid "Parent site group (ID)" msgstr "Gruppo del sito principale (ID)" -#: netbox/dcim/filtersets.py:122 +#: dcim/filtersets.py:122 msgid "Parent site group (slug)" msgstr "Gruppo del sito principale (slug)" -#: netbox/dcim/filtersets.py:164 netbox/extras/filtersets.py:364 -#: netbox/ipam/filtersets.py:841 netbox/ipam/filtersets.py:993 +#: dcim/filtersets.py:164 extras/filtersets.py:364 ipam/filtersets.py:841 +#: ipam/filtersets.py:993 msgid "Group (ID)" msgstr "Gruppo (ID)" -#: netbox/dcim/filtersets.py:170 +#: dcim/filtersets.py:170 msgid "Group (slug)" msgstr "Gruppo (slug)" -#: netbox/dcim/filtersets.py:176 netbox/dcim/filtersets.py:181 +#: dcim/filtersets.py:176 dcim/filtersets.py:181 msgid "AS (ID)" msgstr "COME (ID)" -#: netbox/dcim/filtersets.py:246 +#: dcim/filtersets.py:246 msgid "Parent location (ID)" msgstr "Sede principale (ID)" -#: netbox/dcim/filtersets.py:252 +#: dcim/filtersets.py:252 msgid "Parent location (slug)" msgstr "Sede principale (slug)" -#: netbox/dcim/filtersets.py:258 netbox/dcim/filtersets.py:369 -#: netbox/dcim/filtersets.py:490 netbox/dcim/filtersets.py:1057 -#: netbox/dcim/filtersets.py:1404 netbox/dcim/filtersets.py:2182 +#: dcim/filtersets.py:258 dcim/filtersets.py:369 dcim/filtersets.py:490 +#: dcim/filtersets.py:1057 dcim/filtersets.py:1404 dcim/filtersets.py:2182 msgid "Location (ID)" msgstr "Ubicazione (ID)" -#: netbox/dcim/filtersets.py:265 netbox/dcim/filtersets.py:376 -#: netbox/dcim/filtersets.py:497 netbox/dcim/filtersets.py:1410 -#: netbox/extras/filtersets.py:542 +#: dcim/filtersets.py:265 dcim/filtersets.py:376 dcim/filtersets.py:497 +#: dcim/filtersets.py:1410 extras/filtersets.py:542 msgid "Location (slug)" msgstr "Posizione (slug)" -#: netbox/dcim/filtersets.py:296 netbox/dcim/filtersets.py:381 -#: netbox/dcim/filtersets.py:539 netbox/dcim/filtersets.py:678 -#: netbox/dcim/filtersets.py:882 netbox/dcim/filtersets.py:933 -#: netbox/dcim/filtersets.py:973 netbox/dcim/filtersets.py:1306 -#: netbox/dcim/filtersets.py:1840 +#: dcim/filtersets.py:296 dcim/filtersets.py:381 dcim/filtersets.py:539 +#: dcim/filtersets.py:678 dcim/filtersets.py:882 dcim/filtersets.py:933 +#: dcim/filtersets.py:973 dcim/filtersets.py:1306 dcim/filtersets.py:1840 msgid "Manufacturer (ID)" msgstr "Produttore (ID)" -#: netbox/dcim/filtersets.py:302 netbox/dcim/filtersets.py:387 -#: netbox/dcim/filtersets.py:545 netbox/dcim/filtersets.py:684 -#: netbox/dcim/filtersets.py:888 netbox/dcim/filtersets.py:939 -#: netbox/dcim/filtersets.py:979 netbox/dcim/filtersets.py:1312 -#: netbox/dcim/filtersets.py:1846 +#: dcim/filtersets.py:302 dcim/filtersets.py:387 dcim/filtersets.py:545 +#: dcim/filtersets.py:684 dcim/filtersets.py:888 dcim/filtersets.py:939 +#: dcim/filtersets.py:979 dcim/filtersets.py:1312 dcim/filtersets.py:1846 msgid "Manufacturer (slug)" msgstr "Produttore (lumaca)" -#: netbox/dcim/filtersets.py:393 +#: dcim/filtersets.py:393 msgid "Rack type (slug)" msgstr "Tipo di rack (slug)" -#: netbox/dcim/filtersets.py:397 +#: dcim/filtersets.py:397 msgid "Rack type (ID)" msgstr "Tipo di rack (ID)" -#: netbox/dcim/filtersets.py:411 netbox/dcim/filtersets.py:892 -#: netbox/dcim/filtersets.py:994 netbox/dcim/filtersets.py:1850 -#: netbox/ipam/filtersets.py:381 netbox/ipam/filtersets.py:493 -#: netbox/ipam/filtersets.py:1003 netbox/virtualization/filtersets.py:210 +#: dcim/filtersets.py:411 dcim/filtersets.py:892 dcim/filtersets.py:994 +#: dcim/filtersets.py:1850 ipam/filtersets.py:381 ipam/filtersets.py:493 +#: ipam/filtersets.py:1003 virtualization/filtersets.py:210 msgid "Role (ID)" msgstr "Ruolo (ID)" -#: netbox/dcim/filtersets.py:417 netbox/dcim/filtersets.py:898 -#: netbox/dcim/filtersets.py:1000 netbox/dcim/filtersets.py:1856 -#: netbox/extras/filtersets.py:558 netbox/ipam/filtersets.py:387 -#: netbox/ipam/filtersets.py:499 netbox/ipam/filtersets.py:1009 -#: netbox/virtualization/filtersets.py:216 +#: dcim/filtersets.py:417 dcim/filtersets.py:898 dcim/filtersets.py:1000 +#: dcim/filtersets.py:1856 extras/filtersets.py:558 ipam/filtersets.py:387 +#: ipam/filtersets.py:499 ipam/filtersets.py:1009 +#: virtualization/filtersets.py:216 msgid "Role (slug)" msgstr "Ruolo (slug)" -#: netbox/dcim/filtersets.py:447 netbox/dcim/filtersets.py:1062 -#: netbox/dcim/filtersets.py:1415 netbox/dcim/filtersets.py:2244 +#: dcim/filtersets.py:447 dcim/filtersets.py:1062 dcim/filtersets.py:1415 +#: dcim/filtersets.py:2244 msgid "Rack (ID)" msgstr "Cremagliera (ID)" -#: netbox/dcim/filtersets.py:507 netbox/extras/filtersets.py:293 -#: netbox/extras/filtersets.py:337 netbox/extras/filtersets.py:359 -#: netbox/extras/filtersets.py:419 netbox/users/filtersets.py:113 -#: netbox/users/filtersets.py:180 +#: dcim/filtersets.py:507 extras/filtersets.py:293 extras/filtersets.py:337 +#: extras/filtersets.py:359 extras/filtersets.py:419 users/filtersets.py:113 +#: users/filtersets.py:180 msgid "User (name)" msgstr "Utente (nome)" -#: netbox/dcim/filtersets.py:549 +#: dcim/filtersets.py:549 msgid "Default platform (ID)" msgstr "Piattaforma predefinita (ID)" -#: netbox/dcim/filtersets.py:555 +#: dcim/filtersets.py:555 msgid "Default platform (slug)" msgstr "Piattaforma predefinita (slug)" -#: netbox/dcim/filtersets.py:558 netbox/dcim/forms/filtersets.py:517 +#: dcim/filtersets.py:558 dcim/forms/filtersets.py:517 msgid "Has a front image" msgstr "Ha un'immagine frontale" -#: netbox/dcim/filtersets.py:562 netbox/dcim/forms/filtersets.py:524 +#: dcim/filtersets.py:562 dcim/forms/filtersets.py:524 msgid "Has a rear image" msgstr "Ha un'immagine posteriore" -#: netbox/dcim/filtersets.py:567 netbox/dcim/filtersets.py:688 -#: netbox/dcim/filtersets.py:1131 netbox/dcim/forms/filtersets.py:531 -#: netbox/dcim/forms/filtersets.py:627 netbox/dcim/forms/filtersets.py:848 +#: dcim/filtersets.py:567 dcim/filtersets.py:688 dcim/filtersets.py:1131 +#: dcim/forms/filtersets.py:531 dcim/forms/filtersets.py:627 +#: dcim/forms/filtersets.py:848 msgid "Has console ports" msgstr "Dispone di porte per console" -#: netbox/dcim/filtersets.py:571 netbox/dcim/filtersets.py:692 -#: netbox/dcim/filtersets.py:1135 netbox/dcim/forms/filtersets.py:538 -#: netbox/dcim/forms/filtersets.py:634 netbox/dcim/forms/filtersets.py:855 +#: dcim/filtersets.py:571 dcim/filtersets.py:692 dcim/filtersets.py:1135 +#: dcim/forms/filtersets.py:538 dcim/forms/filtersets.py:634 +#: dcim/forms/filtersets.py:855 msgid "Has console server ports" msgstr "Dispone di porte console server" -#: netbox/dcim/filtersets.py:575 netbox/dcim/filtersets.py:696 -#: netbox/dcim/filtersets.py:1139 netbox/dcim/forms/filtersets.py:545 -#: netbox/dcim/forms/filtersets.py:641 netbox/dcim/forms/filtersets.py:862 +#: dcim/filtersets.py:575 dcim/filtersets.py:696 dcim/filtersets.py:1139 +#: dcim/forms/filtersets.py:545 dcim/forms/filtersets.py:641 +#: dcim/forms/filtersets.py:862 msgid "Has power ports" msgstr "Dispone di porte di alimentazione" -#: netbox/dcim/filtersets.py:579 netbox/dcim/filtersets.py:700 -#: netbox/dcim/filtersets.py:1143 netbox/dcim/forms/filtersets.py:552 -#: netbox/dcim/forms/filtersets.py:648 netbox/dcim/forms/filtersets.py:869 +#: dcim/filtersets.py:579 dcim/filtersets.py:700 dcim/filtersets.py:1143 +#: dcim/forms/filtersets.py:552 dcim/forms/filtersets.py:648 +#: dcim/forms/filtersets.py:869 msgid "Has power outlets" msgstr "Dispone di prese di corrente" -#: netbox/dcim/filtersets.py:583 netbox/dcim/filtersets.py:704 -#: netbox/dcim/filtersets.py:1147 netbox/dcim/forms/filtersets.py:559 -#: netbox/dcim/forms/filtersets.py:655 netbox/dcim/forms/filtersets.py:876 +#: dcim/filtersets.py:583 dcim/filtersets.py:704 dcim/filtersets.py:1147 +#: dcim/forms/filtersets.py:559 dcim/forms/filtersets.py:655 +#: dcim/forms/filtersets.py:876 msgid "Has interfaces" msgstr "Dispone di interfacce" -#: netbox/dcim/filtersets.py:587 netbox/dcim/filtersets.py:708 -#: netbox/dcim/filtersets.py:1151 netbox/dcim/forms/filtersets.py:566 -#: netbox/dcim/forms/filtersets.py:662 netbox/dcim/forms/filtersets.py:883 +#: dcim/filtersets.py:587 dcim/filtersets.py:708 dcim/filtersets.py:1151 +#: dcim/forms/filtersets.py:566 dcim/forms/filtersets.py:662 +#: dcim/forms/filtersets.py:883 msgid "Has pass-through ports" msgstr "Dispone di porte pass-through" -#: netbox/dcim/filtersets.py:591 netbox/dcim/filtersets.py:1155 -#: netbox/dcim/forms/filtersets.py:580 +#: dcim/filtersets.py:591 dcim/filtersets.py:1155 dcim/forms/filtersets.py:580 msgid "Has module bays" msgstr "Dispone di alloggiamenti per moduli" -#: netbox/dcim/filtersets.py:595 netbox/dcim/filtersets.py:1159 -#: netbox/dcim/forms/filtersets.py:573 +#: dcim/filtersets.py:595 dcim/filtersets.py:1159 dcim/forms/filtersets.py:573 msgid "Has device bays" msgstr "Dispone di alloggiamenti per dispositivi" -#: netbox/dcim/filtersets.py:599 netbox/dcim/forms/filtersets.py:587 +#: dcim/filtersets.py:599 dcim/forms/filtersets.py:587 msgid "Has inventory items" msgstr "Ha articoli di inventario" -#: netbox/dcim/filtersets.py:756 netbox/dcim/filtersets.py:989 -#: netbox/dcim/filtersets.py:1436 +#: dcim/filtersets.py:756 dcim/filtersets.py:989 dcim/filtersets.py:1436 msgid "Device type (ID)" msgstr "Tipo di dispositivo (ID)" -#: netbox/dcim/filtersets.py:772 netbox/dcim/filtersets.py:1317 +#: dcim/filtersets.py:772 dcim/filtersets.py:1317 msgid "Module type (ID)" msgstr "Tipo di modulo (ID)" -#: netbox/dcim/filtersets.py:804 netbox/dcim/filtersets.py:1591 +#: dcim/filtersets.py:804 dcim/filtersets.py:1591 msgid "Power port (ID)" msgstr "Porta di alimentazione (ID)" -#: netbox/dcim/filtersets.py:878 netbox/dcim/filtersets.py:1836 +#: dcim/filtersets.py:878 dcim/filtersets.py:1836 msgid "Parent inventory item (ID)" msgstr "Articolo di inventario principale (ID)" -#: netbox/dcim/filtersets.py:921 netbox/dcim/filtersets.py:947 -#: netbox/dcim/filtersets.py:1127 netbox/virtualization/filtersets.py:238 +#: dcim/filtersets.py:921 dcim/filtersets.py:947 dcim/filtersets.py:1127 +#: virtualization/filtersets.py:238 msgid "Config template (ID)" msgstr "Modello di configurazione (ID)" -#: netbox/dcim/filtersets.py:985 +#: dcim/filtersets.py:985 msgid "Device type (slug)" msgstr "Tipo di dispositivo (slug)" -#: netbox/dcim/filtersets.py:1005 +#: dcim/filtersets.py:1005 msgid "Parent Device (ID)" msgstr "Dispositivo principale (ID)" -#: netbox/dcim/filtersets.py:1009 netbox/virtualization/filtersets.py:220 +#: dcim/filtersets.py:1009 virtualization/filtersets.py:220 msgid "Platform (ID)" msgstr "Piattaforma (ID)" -#: netbox/dcim/filtersets.py:1015 netbox/extras/filtersets.py:569 -#: netbox/virtualization/filtersets.py:226 +#: dcim/filtersets.py:1015 extras/filtersets.py:569 +#: virtualization/filtersets.py:226 msgid "Platform (slug)" msgstr "Piattaforma (slug)" -#: netbox/dcim/filtersets.py:1051 netbox/dcim/filtersets.py:1399 -#: netbox/dcim/filtersets.py:1934 netbox/dcim/filtersets.py:2176 -#: netbox/dcim/filtersets.py:2235 +#: dcim/filtersets.py:1051 dcim/filtersets.py:1399 dcim/filtersets.py:1934 +#: dcim/filtersets.py:2176 dcim/filtersets.py:2235 msgid "Site name (slug)" msgstr "Nome del sito (slug)" -#: netbox/dcim/filtersets.py:1067 +#: dcim/filtersets.py:1067 msgid "Parent bay (ID)" msgstr "Bambino per genitori (ID)" -#: netbox/dcim/filtersets.py:1071 +#: dcim/filtersets.py:1071 msgid "VM cluster (ID)" msgstr "Cluster VM (ID)" -#: netbox/dcim/filtersets.py:1077 netbox/extras/filtersets.py:591 -#: netbox/virtualization/filtersets.py:136 +#: dcim/filtersets.py:1077 extras/filtersets.py:591 +#: virtualization/filtersets.py:136 msgid "Cluster group (slug)" msgstr "Gruppo Cluster (slug)" -#: netbox/dcim/filtersets.py:1082 netbox/virtualization/filtersets.py:130 +#: dcim/filtersets.py:1082 virtualization/filtersets.py:130 msgid "Cluster group (ID)" msgstr "Gruppo cluster (ID)" -#: netbox/dcim/filtersets.py:1088 +#: dcim/filtersets.py:1088 msgid "Device model (slug)" msgstr "Modello del dispositivo (slug)" -#: netbox/dcim/filtersets.py:1099 netbox/dcim/forms/bulk_edit.py:516 +#: dcim/filtersets.py:1099 dcim/forms/bulk_edit.py:516 msgid "Is full depth" msgstr "È a piena profondità" -#: netbox/dcim/filtersets.py:1103 netbox/dcim/forms/common.py:18 -#: netbox/dcim/forms/filtersets.py:818 netbox/dcim/forms/filtersets.py:1385 -#: netbox/dcim/models/device_components.py:518 -#: netbox/virtualization/filtersets.py:230 -#: netbox/virtualization/filtersets.py:301 -#: netbox/virtualization/forms/filtersets.py:172 -#: netbox/virtualization/forms/filtersets.py:223 +#: dcim/filtersets.py:1103 dcim/forms/common.py:18 +#: dcim/forms/filtersets.py:818 dcim/forms/filtersets.py:1385 +#: dcim/models/device_components.py:518 virtualization/filtersets.py:230 +#: virtualization/filtersets.py:301 virtualization/forms/filtersets.py:172 +#: virtualization/forms/filtersets.py:223 msgid "MAC address" msgstr "Indirizzo MAC" -#: netbox/dcim/filtersets.py:1110 netbox/dcim/filtersets.py:1274 -#: netbox/dcim/forms/filtersets.py:827 netbox/dcim/forms/filtersets.py:930 -#: netbox/virtualization/filtersets.py:234 -#: netbox/virtualization/forms/filtersets.py:176 +#: dcim/filtersets.py:1110 dcim/filtersets.py:1274 +#: dcim/forms/filtersets.py:827 dcim/forms/filtersets.py:930 +#: virtualization/filtersets.py:234 virtualization/forms/filtersets.py:176 msgid "Has a primary IP" msgstr "Ha un IP primario" -#: netbox/dcim/filtersets.py:1114 +#: dcim/filtersets.py:1114 msgid "Has an out-of-band IP" msgstr "Ha un IP fuori banda" -#: netbox/dcim/filtersets.py:1119 +#: dcim/filtersets.py:1119 msgid "Virtual chassis (ID)" msgstr "Chassis virtuale (ID)" -#: netbox/dcim/filtersets.py:1123 +#: dcim/filtersets.py:1123 msgid "Is a virtual chassis member" msgstr "È un membro virtuale dello chassis" -#: netbox/dcim/filtersets.py:1164 +#: dcim/filtersets.py:1164 msgid "OOB IP (ID)" msgstr "OOB IP (ID)" -#: netbox/dcim/filtersets.py:1168 +#: dcim/filtersets.py:1168 msgid "Has virtual device context" msgstr "Ha un contesto di dispositivo virtuale" -#: netbox/dcim/filtersets.py:1257 +#: dcim/filtersets.py:1257 msgid "VDC (ID)" msgstr "VDC (ID)" -#: netbox/dcim/filtersets.py:1262 +#: dcim/filtersets.py:1262 msgid "Device model" msgstr "Modello del dispositivo" -#: netbox/dcim/filtersets.py:1267 netbox/ipam/filtersets.py:632 -#: netbox/vpn/filtersets.py:102 netbox/vpn/filtersets.py:401 +#: dcim/filtersets.py:1267 ipam/filtersets.py:632 vpn/filtersets.py:102 +#: vpn/filtersets.py:401 msgid "Interface (ID)" msgstr "Interfaccia (ID)" -#: netbox/dcim/filtersets.py:1323 +#: dcim/filtersets.py:1323 msgid "Module type (model)" msgstr "Tipo di modulo (modello)" -#: netbox/dcim/filtersets.py:1329 +#: dcim/filtersets.py:1329 msgid "Module bay (ID)" msgstr "Alloggiamento per moduli (ID)" -#: netbox/dcim/filtersets.py:1333 netbox/dcim/filtersets.py:1425 -#: netbox/ipam/filtersets.py:611 netbox/ipam/filtersets.py:851 -#: netbox/ipam/filtersets.py:1115 netbox/virtualization/filtersets.py:161 -#: netbox/vpn/filtersets.py:379 +#: dcim/filtersets.py:1333 dcim/filtersets.py:1425 ipam/filtersets.py:611 +#: ipam/filtersets.py:851 ipam/filtersets.py:1115 +#: virtualization/filtersets.py:161 vpn/filtersets.py:379 msgid "Device (ID)" msgstr "Dispositivo (ID)" -#: netbox/dcim/filtersets.py:1421 +#: dcim/filtersets.py:1421 msgid "Rack (name)" msgstr "Rack (nome)" -#: netbox/dcim/filtersets.py:1431 netbox/ipam/filtersets.py:606 -#: netbox/ipam/filtersets.py:846 netbox/ipam/filtersets.py:1121 -#: netbox/vpn/filtersets.py:374 +#: dcim/filtersets.py:1431 ipam/filtersets.py:606 ipam/filtersets.py:846 +#: ipam/filtersets.py:1121 vpn/filtersets.py:374 msgid "Device (name)" msgstr "Dispositivo (nome)" -#: netbox/dcim/filtersets.py:1442 +#: dcim/filtersets.py:1442 msgid "Device type (model)" msgstr "Tipo di dispositivo (modello)" -#: netbox/dcim/filtersets.py:1447 +#: dcim/filtersets.py:1447 msgid "Device role (ID)" msgstr "Ruolo del dispositivo (ID)" -#: netbox/dcim/filtersets.py:1453 +#: dcim/filtersets.py:1453 msgid "Device role (slug)" msgstr "Ruolo del dispositivo (slug)" -#: netbox/dcim/filtersets.py:1458 +#: dcim/filtersets.py:1458 msgid "Virtual Chassis (ID)" msgstr "Chassis virtuale (ID)" -#: netbox/dcim/filtersets.py:1464 netbox/dcim/forms/filtersets.py:109 -#: netbox/dcim/tables/devices.py:206 netbox/netbox/navigation/menu.py:79 -#: netbox/templates/dcim/device.html:120 -#: netbox/templates/dcim/device_edit.html:93 -#: netbox/templates/dcim/virtualchassis.html:20 -#: netbox/templates/dcim/virtualchassis_add.html:8 -#: netbox/templates/dcim/virtualchassis_edit.html:24 +#: dcim/filtersets.py:1464 dcim/forms/filtersets.py:109 +#: dcim/tables/devices.py:206 netbox/navigation/menu.py:79 +#: templates/dcim/device.html:120 templates/dcim/device_edit.html:93 +#: templates/dcim/virtualchassis.html:20 +#: templates/dcim/virtualchassis_add.html:8 +#: templates/dcim/virtualchassis_edit.html:24 msgid "Virtual Chassis" msgstr "Chassis virtuale" -#: netbox/dcim/filtersets.py:1488 +#: dcim/filtersets.py:1488 msgid "Module (ID)" msgstr "Modulo (ID)" -#: netbox/dcim/filtersets.py:1495 +#: dcim/filtersets.py:1495 msgid "Cable (ID)" msgstr "Cavo (ID)" -#: netbox/dcim/filtersets.py:1604 netbox/ipam/forms/bulk_import.py:189 -#: netbox/vpn/forms/bulk_import.py:308 +#: dcim/filtersets.py:1604 ipam/forms/bulk_import.py:189 +#: vpn/forms/bulk_import.py:308 msgid "Assigned VLAN" msgstr "VLAN assegnata" -#: netbox/dcim/filtersets.py:1608 +#: dcim/filtersets.py:1608 msgid "Assigned VID" msgstr "VID assegnato" -#: netbox/dcim/filtersets.py:1613 netbox/dcim/forms/bulk_edit.py:1489 -#: netbox/dcim/forms/bulk_import.py:891 netbox/dcim/forms/filtersets.py:1428 -#: netbox/dcim/forms/model_forms.py:1378 -#: netbox/dcim/models/device_components.py:711 -#: netbox/dcim/tables/devices.py:626 netbox/ipam/filtersets.py:316 -#: netbox/ipam/filtersets.py:327 netbox/ipam/filtersets.py:483 -#: netbox/ipam/filtersets.py:584 netbox/ipam/filtersets.py:595 -#: netbox/ipam/forms/bulk_edit.py:241 netbox/ipam/forms/bulk_edit.py:297 -#: netbox/ipam/forms/bulk_edit.py:339 netbox/ipam/forms/bulk_import.py:157 -#: netbox/ipam/forms/bulk_import.py:243 netbox/ipam/forms/bulk_import.py:279 -#: netbox/ipam/forms/filtersets.py:67 netbox/ipam/forms/filtersets.py:172 -#: netbox/ipam/forms/filtersets.py:309 netbox/ipam/forms/model_forms.py:62 -#: netbox/ipam/forms/model_forms.py:202 netbox/ipam/forms/model_forms.py:247 -#: netbox/ipam/forms/model_forms.py:300 netbox/ipam/forms/model_forms.py:431 -#: netbox/ipam/forms/model_forms.py:445 netbox/ipam/forms/model_forms.py:459 -#: netbox/ipam/models/ip.py:233 netbox/ipam/models/ip.py:512 -#: netbox/ipam/models/ip.py:720 netbox/ipam/models/vrfs.py:62 -#: netbox/ipam/tables/ip.py:242 netbox/ipam/tables/ip.py:309 -#: netbox/ipam/tables/ip.py:360 netbox/ipam/tables/ip.py:450 -#: netbox/templates/dcim/interface.html:133 -#: netbox/templates/ipam/ipaddress.html:18 -#: netbox/templates/ipam/iprange.html:40 netbox/templates/ipam/prefix.html:19 -#: netbox/templates/ipam/vrf.html:7 netbox/templates/ipam/vrf.html:13 -#: netbox/templates/virtualization/vminterface.html:47 -#: netbox/virtualization/forms/bulk_edit.py:261 -#: netbox/virtualization/forms/bulk_import.py:171 -#: netbox/virtualization/forms/filtersets.py:228 -#: netbox/virtualization/forms/model_forms.py:344 -#: netbox/virtualization/models/virtualmachines.py:355 -#: netbox/virtualization/tables/virtualmachines.py:143 +#: dcim/filtersets.py:1613 dcim/forms/bulk_edit.py:1489 +#: dcim/forms/bulk_import.py:891 dcim/forms/filtersets.py:1428 +#: dcim/forms/model_forms.py:1378 dcim/models/device_components.py:711 +#: dcim/tables/devices.py:626 ipam/filtersets.py:316 ipam/filtersets.py:327 +#: ipam/filtersets.py:483 ipam/filtersets.py:584 ipam/filtersets.py:595 +#: ipam/forms/bulk_edit.py:242 ipam/forms/bulk_edit.py:298 +#: ipam/forms/bulk_edit.py:340 ipam/forms/bulk_import.py:157 +#: ipam/forms/bulk_import.py:243 ipam/forms/bulk_import.py:279 +#: ipam/forms/filtersets.py:67 ipam/forms/filtersets.py:172 +#: ipam/forms/filtersets.py:309 ipam/forms/model_forms.py:62 +#: ipam/forms/model_forms.py:202 ipam/forms/model_forms.py:247 +#: ipam/forms/model_forms.py:300 ipam/forms/model_forms.py:431 +#: ipam/forms/model_forms.py:445 ipam/forms/model_forms.py:459 +#: ipam/models/ip.py:233 ipam/models/ip.py:512 ipam/models/ip.py:720 +#: ipam/models/vrfs.py:62 ipam/tables/ip.py:242 ipam/tables/ip.py:309 +#: ipam/tables/ip.py:360 ipam/tables/ip.py:450 +#: templates/dcim/interface.html:133 templates/ipam/ipaddress.html:18 +#: templates/ipam/iprange.html:40 templates/ipam/prefix.html:19 +#: templates/ipam/vrf.html:7 templates/ipam/vrf.html:13 +#: templates/virtualization/vminterface.html:47 +#: virtualization/forms/bulk_edit.py:261 +#: virtualization/forms/bulk_import.py:171 +#: virtualization/forms/filtersets.py:228 +#: virtualization/forms/model_forms.py:344 +#: virtualization/models/virtualmachines.py:355 +#: virtualization/tables/virtualmachines.py:143 msgid "VRF" msgstr "VRF" -#: netbox/dcim/filtersets.py:1619 netbox/ipam/filtersets.py:322 -#: netbox/ipam/filtersets.py:333 netbox/ipam/filtersets.py:489 -#: netbox/ipam/filtersets.py:590 netbox/ipam/filtersets.py:601 +#: dcim/filtersets.py:1619 ipam/filtersets.py:322 ipam/filtersets.py:333 +#: ipam/filtersets.py:489 ipam/filtersets.py:590 ipam/filtersets.py:601 msgid "VRF (RD)" msgstr "VRF (ROSSO)" -#: netbox/dcim/filtersets.py:1624 netbox/ipam/filtersets.py:1030 -#: netbox/vpn/filtersets.py:342 +#: dcim/filtersets.py:1624 ipam/filtersets.py:1030 vpn/filtersets.py:342 msgid "L2VPN (ID)" msgstr "L2VPN (ID)" -#: netbox/dcim/filtersets.py:1630 netbox/dcim/forms/filtersets.py:1433 -#: netbox/dcim/tables/devices.py:570 netbox/ipam/filtersets.py:1036 -#: netbox/ipam/forms/filtersets.py:518 netbox/ipam/tables/vlans.py:137 -#: netbox/templates/dcim/interface.html:93 netbox/templates/ipam/vlan.html:66 -#: netbox/templates/vpn/l2vpntermination.html:12 -#: netbox/virtualization/forms/filtersets.py:233 -#: netbox/vpn/forms/bulk_import.py:280 netbox/vpn/forms/filtersets.py:246 -#: netbox/vpn/forms/model_forms.py:409 netbox/vpn/forms/model_forms.py:427 -#: netbox/vpn/models/l2vpn.py:63 netbox/vpn/tables/l2vpn.py:55 +#: dcim/filtersets.py:1630 dcim/forms/filtersets.py:1433 +#: dcim/tables/devices.py:570 ipam/filtersets.py:1036 +#: ipam/forms/filtersets.py:518 ipam/tables/vlans.py:137 +#: templates/dcim/interface.html:93 templates/ipam/vlan.html:66 +#: templates/vpn/l2vpntermination.html:12 +#: virtualization/forms/filtersets.py:233 vpn/forms/bulk_import.py:280 +#: vpn/forms/filtersets.py:246 vpn/forms/model_forms.py:409 +#: vpn/forms/model_forms.py:427 vpn/models/l2vpn.py:63 vpn/tables/l2vpn.py:55 msgid "L2VPN" msgstr "L2VPN" -#: netbox/dcim/filtersets.py:1662 +#: dcim/filtersets.py:1662 msgid "Virtual Chassis Interfaces for Device" msgstr "Interfacce virtuali dello chassis per dispositivi" -#: netbox/dcim/filtersets.py:1667 +#: dcim/filtersets.py:1667 msgid "Virtual Chassis Interfaces for Device (ID)" msgstr "Interfacce virtuali dello chassis per dispositivi (ID)" -#: netbox/dcim/filtersets.py:1671 +#: dcim/filtersets.py:1671 msgid "Kind of interface" msgstr "Tipo di interfaccia" -#: netbox/dcim/filtersets.py:1676 netbox/virtualization/filtersets.py:293 +#: dcim/filtersets.py:1676 virtualization/filtersets.py:293 msgid "Parent interface (ID)" msgstr "Interfaccia principale (ID)" -#: netbox/dcim/filtersets.py:1681 netbox/virtualization/filtersets.py:298 +#: dcim/filtersets.py:1681 virtualization/filtersets.py:298 msgid "Bridged interface (ID)" msgstr "Interfaccia con ponte (ID)" -#: netbox/dcim/filtersets.py:1686 +#: dcim/filtersets.py:1686 msgid "LAG interface (ID)" msgstr "Interfaccia LAG (ID)" -#: netbox/dcim/filtersets.py:1713 netbox/dcim/filtersets.py:1725 -#: netbox/dcim/forms/filtersets.py:1345 netbox/dcim/forms/model_forms.py:1690 -#: netbox/templates/dcim/virtualdevicecontext.html:15 +#: dcim/filtersets.py:1713 dcim/filtersets.py:1725 +#: dcim/forms/filtersets.py:1345 dcim/forms/model_forms.py:1690 +#: templates/dcim/virtualdevicecontext.html:15 msgid "Virtual Device Context" msgstr "Contesto del dispositivo virtuale" -#: netbox/dcim/filtersets.py:1719 +#: dcim/filtersets.py:1719 msgid "Virtual Device Context (Identifier)" msgstr "Contesto del dispositivo virtuale (identificatore)" -#: netbox/dcim/filtersets.py:1730 -#: netbox/templates/wireless/wirelesslan.html:11 -#: netbox/wireless/forms/model_forms.py:53 +#: dcim/filtersets.py:1730 templates/wireless/wirelesslan.html:11 +#: wireless/forms/model_forms.py:53 msgid "Wireless LAN" msgstr "LAN senza fili" -#: netbox/dcim/filtersets.py:1734 netbox/dcim/tables/devices.py:613 +#: dcim/filtersets.py:1734 dcim/tables/devices.py:613 msgid "Wireless link" msgstr "Collegamento wireless" -#: netbox/dcim/filtersets.py:1803 +#: dcim/filtersets.py:1803 msgid "Parent module bay (ID)" msgstr "Alloggiamento del modulo principale (ID)" -#: netbox/dcim/filtersets.py:1808 +#: dcim/filtersets.py:1808 msgid "Installed module (ID)" msgstr "Modulo installato (ID)" -#: netbox/dcim/filtersets.py:1819 +#: dcim/filtersets.py:1819 msgid "Installed device (ID)" msgstr "Dispositivo installato (ID)" -#: netbox/dcim/filtersets.py:1825 +#: dcim/filtersets.py:1825 msgid "Installed device (name)" msgstr "Dispositivo installato (nome)" -#: netbox/dcim/filtersets.py:1891 +#: dcim/filtersets.py:1891 msgid "Master (ID)" msgstr "Maestro (ID)" -#: netbox/dcim/filtersets.py:1897 +#: dcim/filtersets.py:1897 msgid "Master (name)" msgstr "Master (nome)" -#: netbox/dcim/filtersets.py:1939 netbox/tenancy/filtersets.py:245 +#: dcim/filtersets.py:1939 tenancy/filtersets.py:245 msgid "Tenant (ID)" msgstr "Inquilino (ID)" -#: netbox/dcim/filtersets.py:1945 netbox/extras/filtersets.py:618 -#: netbox/tenancy/filtersets.py:251 +#: dcim/filtersets.py:1945 extras/filtersets.py:618 tenancy/filtersets.py:251 msgid "Tenant (slug)" msgstr "Inquilino (slug)" -#: netbox/dcim/filtersets.py:1981 netbox/dcim/forms/filtersets.py:1077 +#: dcim/filtersets.py:1981 dcim/forms/filtersets.py:1077 msgid "Unterminated" msgstr "Interminato" -#: netbox/dcim/filtersets.py:2239 +#: dcim/filtersets.py:2239 msgid "Power panel (ID)" msgstr "Pannello di alimentazione (ID)" -#: netbox/dcim/forms/bulk_create.py:40 netbox/extras/forms/filtersets.py:401 -#: netbox/extras/forms/model_forms.py:567 -#: netbox/extras/forms/model_forms.py:619 netbox/netbox/forms/base.py:86 -#: netbox/netbox/forms/mixins.py:81 netbox/netbox/tables/columns.py:478 -#: netbox/templates/circuits/inc/circuit_termination.html:32 -#: netbox/templates/generic/bulk_edit.html:65 -#: netbox/templates/inc/panels/tags.html:5 -#: netbox/utilities/forms/fields/fields.py:81 +#: dcim/forms/bulk_create.py:40 extras/forms/filtersets.py:401 +#: extras/forms/model_forms.py:567 extras/forms/model_forms.py:619 +#: netbox/forms/base.py:86 netbox/forms/mixins.py:81 +#: netbox/tables/columns.py:478 +#: templates/circuits/inc/circuit_termination.html:32 +#: templates/generic/bulk_edit.html:65 templates/inc/panels/tags.html:5 +#: utilities/forms/fields/fields.py:81 msgid "Tags" msgstr "Etichette" -#: netbox/dcim/forms/bulk_create.py:112 netbox/dcim/forms/filtersets.py:1498 -#: netbox/dcim/forms/model_forms.py:488 netbox/dcim/forms/model_forms.py:546 -#: netbox/dcim/forms/object_create.py:197 -#: netbox/dcim/forms/object_create.py:353 netbox/dcim/tables/devices.py:165 -#: netbox/dcim/tables/devices.py:707 netbox/dcim/tables/devicetypes.py:246 -#: netbox/templates/dcim/device.html:43 netbox/templates/dcim/device.html:131 -#: netbox/templates/dcim/modulebay.html:38 -#: netbox/templates/dcim/virtualchassis.html:66 -#: netbox/templates/dcim/virtualchassis_edit.html:55 +#: dcim/forms/bulk_create.py:112 dcim/forms/filtersets.py:1498 +#: dcim/forms/model_forms.py:488 dcim/forms/model_forms.py:546 +#: dcim/forms/object_create.py:197 dcim/forms/object_create.py:353 +#: dcim/tables/devices.py:165 dcim/tables/devices.py:707 +#: dcim/tables/devicetypes.py:246 templates/dcim/device.html:43 +#: templates/dcim/device.html:131 templates/dcim/modulebay.html:38 +#: templates/dcim/virtualchassis.html:66 +#: templates/dcim/virtualchassis_edit.html:55 msgid "Position" msgstr "Posizione" -#: netbox/dcim/forms/bulk_create.py:114 +#: dcim/forms/bulk_create.py:114 msgid "" "Alphanumeric ranges are supported. (Must match the number of names being " "created.)" @@ -3458,889 +3127,827 @@ msgstr "" "Sono supportati gli intervalli alfanumerici. (Deve corrispondere al numero " "di nomi da creare.)" -#: netbox/dcim/forms/bulk_edit.py:132 +#: dcim/forms/bulk_edit.py:132 msgid "Contact name" msgstr "Nome del contatto" -#: netbox/dcim/forms/bulk_edit.py:137 +#: dcim/forms/bulk_edit.py:137 msgid "Contact phone" msgstr "Telefono di contatto" -#: netbox/dcim/forms/bulk_edit.py:143 +#: dcim/forms/bulk_edit.py:143 msgid "Contact E-mail" msgstr "E-mail di contatto" -#: netbox/dcim/forms/bulk_edit.py:146 netbox/dcim/forms/bulk_import.py:123 -#: netbox/dcim/forms/model_forms.py:128 +#: dcim/forms/bulk_edit.py:146 dcim/forms/bulk_import.py:123 +#: dcim/forms/model_forms.py:128 msgid "Time zone" msgstr "Fuso orario" -#: netbox/dcim/forms/bulk_edit.py:224 netbox/dcim/forms/bulk_edit.py:495 -#: netbox/dcim/forms/bulk_edit.py:559 netbox/dcim/forms/bulk_edit.py:632 -#: netbox/dcim/forms/bulk_edit.py:656 netbox/dcim/forms/bulk_edit.py:740 -#: netbox/dcim/forms/bulk_edit.py:1267 netbox/dcim/forms/bulk_edit.py:1660 -#: netbox/dcim/forms/bulk_import.py:182 netbox/dcim/forms/bulk_import.py:371 -#: netbox/dcim/forms/bulk_import.py:405 netbox/dcim/forms/bulk_import.py:450 -#: netbox/dcim/forms/bulk_import.py:486 netbox/dcim/forms/bulk_import.py:1082 -#: netbox/dcim/forms/filtersets.py:313 netbox/dcim/forms/filtersets.py:372 -#: netbox/dcim/forms/filtersets.py:494 netbox/dcim/forms/filtersets.py:619 -#: netbox/dcim/forms/filtersets.py:700 netbox/dcim/forms/filtersets.py:782 -#: netbox/dcim/forms/filtersets.py:947 netbox/dcim/forms/filtersets.py:1539 -#: netbox/dcim/forms/model_forms.py:207 netbox/dcim/forms/model_forms.py:337 -#: netbox/dcim/forms/model_forms.py:349 netbox/dcim/forms/model_forms.py:395 -#: netbox/dcim/forms/model_forms.py:436 netbox/dcim/forms/model_forms.py:1075 -#: netbox/dcim/forms/model_forms.py:1515 -#: netbox/dcim/forms/object_import.py:187 netbox/dcim/tables/devices.py:96 -#: netbox/dcim/tables/devices.py:172 netbox/dcim/tables/devices.py:940 -#: netbox/dcim/tables/devicetypes.py:80 netbox/dcim/tables/devicetypes.py:308 -#: netbox/dcim/tables/modules.py:20 netbox/dcim/tables/modules.py:60 -#: netbox/dcim/tables/racks.py:58 netbox/dcim/tables/racks.py:132 -#: netbox/templates/dcim/devicetype.html:14 -#: netbox/templates/dcim/inventoryitem.html:44 -#: netbox/templates/dcim/manufacturer.html:33 -#: netbox/templates/dcim/modulebay.html:62 -#: netbox/templates/dcim/moduletype.html:14 -#: netbox/templates/dcim/platform.html:37 -#: netbox/templates/dcim/racktype.html:16 +#: dcim/forms/bulk_edit.py:224 dcim/forms/bulk_edit.py:495 +#: dcim/forms/bulk_edit.py:559 dcim/forms/bulk_edit.py:632 +#: dcim/forms/bulk_edit.py:656 dcim/forms/bulk_edit.py:740 +#: dcim/forms/bulk_edit.py:1267 dcim/forms/bulk_edit.py:1660 +#: dcim/forms/bulk_import.py:182 dcim/forms/bulk_import.py:371 +#: dcim/forms/bulk_import.py:405 dcim/forms/bulk_import.py:450 +#: dcim/forms/bulk_import.py:486 dcim/forms/bulk_import.py:1082 +#: dcim/forms/filtersets.py:313 dcim/forms/filtersets.py:372 +#: dcim/forms/filtersets.py:494 dcim/forms/filtersets.py:619 +#: dcim/forms/filtersets.py:700 dcim/forms/filtersets.py:782 +#: dcim/forms/filtersets.py:947 dcim/forms/filtersets.py:1539 +#: dcim/forms/model_forms.py:207 dcim/forms/model_forms.py:337 +#: dcim/forms/model_forms.py:349 dcim/forms/model_forms.py:395 +#: dcim/forms/model_forms.py:436 dcim/forms/model_forms.py:1075 +#: dcim/forms/model_forms.py:1515 dcim/forms/object_import.py:187 +#: dcim/tables/devices.py:96 dcim/tables/devices.py:172 +#: dcim/tables/devices.py:940 dcim/tables/devicetypes.py:80 +#: dcim/tables/devicetypes.py:308 dcim/tables/modules.py:20 +#: dcim/tables/modules.py:60 dcim/tables/racks.py:58 dcim/tables/racks.py:132 +#: templates/dcim/devicetype.html:14 templates/dcim/inventoryitem.html:44 +#: templates/dcim/manufacturer.html:33 templates/dcim/modulebay.html:62 +#: templates/dcim/moduletype.html:25 templates/dcim/platform.html:37 +#: templates/dcim/racktype.html:16 msgid "Manufacturer" msgstr "Produttore" -#: netbox/dcim/forms/bulk_edit.py:229 netbox/dcim/forms/bulk_edit.py:372 -#: netbox/dcim/forms/bulk_import.py:191 netbox/dcim/forms/bulk_import.py:263 -#: netbox/dcim/forms/filtersets.py:255 -#: netbox/templates/dcim/inc/panels/racktype_dimensions.html:6 +#: dcim/forms/bulk_edit.py:229 dcim/forms/bulk_edit.py:372 +#: dcim/forms/bulk_import.py:191 dcim/forms/bulk_import.py:263 +#: dcim/forms/filtersets.py:255 +#: templates/dcim/inc/panels/racktype_dimensions.html:6 msgid "Form factor" msgstr "Fattore di forma" -#: netbox/dcim/forms/bulk_edit.py:234 netbox/dcim/forms/bulk_edit.py:377 -#: netbox/dcim/forms/bulk_import.py:199 netbox/dcim/forms/bulk_import.py:266 -#: netbox/dcim/forms/filtersets.py:260 -#: netbox/templates/dcim/inc/panels/racktype_dimensions.html:10 +#: dcim/forms/bulk_edit.py:234 dcim/forms/bulk_edit.py:377 +#: dcim/forms/bulk_import.py:199 dcim/forms/bulk_import.py:266 +#: dcim/forms/filtersets.py:260 +#: templates/dcim/inc/panels/racktype_dimensions.html:10 msgid "Width" msgstr "Larghezza" -#: netbox/dcim/forms/bulk_edit.py:240 netbox/dcim/forms/bulk_edit.py:383 -#: netbox/templates/dcim/devicetype.html:37 +#: dcim/forms/bulk_edit.py:240 dcim/forms/bulk_edit.py:383 +#: templates/dcim/devicetype.html:37 msgid "Height (U)" msgstr "Altezza (U)" -#: netbox/dcim/forms/bulk_edit.py:249 netbox/dcim/forms/bulk_edit.py:388 -#: netbox/dcim/forms/filtersets.py:274 +#: dcim/forms/bulk_edit.py:249 dcim/forms/bulk_edit.py:388 +#: dcim/forms/filtersets.py:274 msgid "Descending units" msgstr "Unità discendenti" -#: netbox/dcim/forms/bulk_edit.py:252 netbox/dcim/forms/bulk_edit.py:391 +#: dcim/forms/bulk_edit.py:252 dcim/forms/bulk_edit.py:391 msgid "Outer width" msgstr "Larghezza esterna" -#: netbox/dcim/forms/bulk_edit.py:257 netbox/dcim/forms/bulk_edit.py:396 +#: dcim/forms/bulk_edit.py:257 dcim/forms/bulk_edit.py:396 msgid "Outer depth" msgstr "Profondità esterna" -#: netbox/dcim/forms/bulk_edit.py:262 netbox/dcim/forms/bulk_edit.py:401 -#: netbox/dcim/forms/bulk_import.py:204 netbox/dcim/forms/bulk_import.py:271 +#: dcim/forms/bulk_edit.py:262 dcim/forms/bulk_edit.py:401 +#: dcim/forms/bulk_import.py:204 dcim/forms/bulk_import.py:271 msgid "Outer unit" msgstr "Unità esterna" -#: netbox/dcim/forms/bulk_edit.py:267 netbox/dcim/forms/bulk_edit.py:406 +#: dcim/forms/bulk_edit.py:267 dcim/forms/bulk_edit.py:406 msgid "Mounting depth" msgstr "Profondità di montaggio" -#: netbox/dcim/forms/bulk_edit.py:272 netbox/dcim/forms/bulk_edit.py:299 -#: netbox/dcim/forms/bulk_edit.py:416 netbox/dcim/forms/bulk_edit.py:446 -#: netbox/dcim/forms/bulk_edit.py:529 netbox/dcim/forms/bulk_edit.py:552 -#: netbox/dcim/forms/bulk_edit.py:573 netbox/dcim/forms/bulk_edit.py:595 -#: netbox/dcim/forms/bulk_import.py:384 netbox/dcim/forms/bulk_import.py:416 -#: netbox/dcim/forms/filtersets.py:285 netbox/dcim/forms/filtersets.py:307 -#: netbox/dcim/forms/filtersets.py:327 netbox/dcim/forms/filtersets.py:401 -#: netbox/dcim/forms/filtersets.py:488 netbox/dcim/forms/filtersets.py:594 -#: netbox/dcim/forms/filtersets.py:613 netbox/dcim/forms/filtersets.py:674 -#: netbox/dcim/forms/model_forms.py:221 netbox/dcim/forms/model_forms.py:298 -#: netbox/dcim/tables/devicetypes.py:106 netbox/dcim/tables/modules.py:35 -#: netbox/dcim/tables/racks.py:74 netbox/dcim/tables/racks.py:172 -#: netbox/extras/forms/bulk_edit.py:53 netbox/extras/forms/bulk_edit.py:133 -#: netbox/extras/forms/bulk_edit.py:183 netbox/extras/forms/bulk_edit.py:288 -#: netbox/extras/forms/filtersets.py:64 netbox/extras/forms/filtersets.py:156 -#: netbox/extras/forms/filtersets.py:243 netbox/ipam/forms/bulk_edit.py:189 -#: netbox/templates/dcim/device.html:324 -#: netbox/templates/dcim/devicetype.html:49 -#: netbox/templates/dcim/moduletype.html:34 netbox/templates/dcim/rack.html:81 -#: netbox/templates/dcim/racktype.html:41 -#: netbox/templates/extras/configcontext.html:17 -#: netbox/templates/extras/customlink.html:25 -#: netbox/templates/extras/savedfilter.html:33 -#: netbox/templates/ipam/role.html:30 +#: dcim/forms/bulk_edit.py:272 dcim/forms/bulk_edit.py:299 +#: dcim/forms/bulk_edit.py:416 dcim/forms/bulk_edit.py:446 +#: dcim/forms/bulk_edit.py:529 dcim/forms/bulk_edit.py:552 +#: dcim/forms/bulk_edit.py:573 dcim/forms/bulk_edit.py:595 +#: dcim/forms/bulk_import.py:384 dcim/forms/bulk_import.py:416 +#: dcim/forms/filtersets.py:285 dcim/forms/filtersets.py:307 +#: dcim/forms/filtersets.py:327 dcim/forms/filtersets.py:401 +#: dcim/forms/filtersets.py:488 dcim/forms/filtersets.py:594 +#: dcim/forms/filtersets.py:613 dcim/forms/filtersets.py:674 +#: dcim/forms/model_forms.py:221 dcim/forms/model_forms.py:298 +#: dcim/tables/devicetypes.py:106 dcim/tables/modules.py:35 +#: dcim/tables/racks.py:74 dcim/tables/racks.py:172 +#: extras/forms/bulk_edit.py:53 extras/forms/bulk_edit.py:133 +#: extras/forms/bulk_edit.py:183 extras/forms/bulk_edit.py:288 +#: extras/forms/filtersets.py:64 extras/forms/filtersets.py:156 +#: extras/forms/filtersets.py:243 ipam/forms/bulk_edit.py:190 +#: templates/dcim/device.html:324 templates/dcim/devicetype.html:49 +#: templates/dcim/moduletype.html:45 templates/dcim/rack.html:81 +#: templates/dcim/racktype.html:41 templates/extras/configcontext.html:17 +#: templates/extras/customlink.html:25 templates/extras/savedfilter.html:33 +#: templates/ipam/role.html:30 msgid "Weight" msgstr "Peso" -#: netbox/dcim/forms/bulk_edit.py:277 netbox/dcim/forms/bulk_edit.py:421 -#: netbox/dcim/forms/filtersets.py:290 +#: dcim/forms/bulk_edit.py:277 dcim/forms/bulk_edit.py:421 +#: dcim/forms/filtersets.py:290 msgid "Max weight" msgstr "Peso massimo" -#: netbox/dcim/forms/bulk_edit.py:282 netbox/dcim/forms/bulk_edit.py:426 -#: netbox/dcim/forms/bulk_edit.py:534 netbox/dcim/forms/bulk_edit.py:578 -#: netbox/dcim/forms/bulk_import.py:210 netbox/dcim/forms/bulk_import.py:283 -#: netbox/dcim/forms/bulk_import.py:389 netbox/dcim/forms/bulk_import.py:421 -#: netbox/dcim/forms/filtersets.py:295 netbox/dcim/forms/filtersets.py:598 -#: netbox/dcim/forms/filtersets.py:678 +#: dcim/forms/bulk_edit.py:282 dcim/forms/bulk_edit.py:426 +#: dcim/forms/bulk_edit.py:534 dcim/forms/bulk_edit.py:578 +#: dcim/forms/bulk_import.py:210 dcim/forms/bulk_import.py:283 +#: dcim/forms/bulk_import.py:389 dcim/forms/bulk_import.py:421 +#: dcim/forms/filtersets.py:295 dcim/forms/filtersets.py:598 +#: dcim/forms/filtersets.py:678 msgid "Weight unit" msgstr "Unità di peso" -#: netbox/dcim/forms/bulk_edit.py:296 netbox/dcim/forms/filtersets.py:305 -#: netbox/dcim/forms/model_forms.py:217 netbox/dcim/forms/model_forms.py:256 -#: netbox/templates/dcim/rack.html:45 netbox/templates/dcim/racktype.html:13 +#: dcim/forms/bulk_edit.py:296 dcim/forms/filtersets.py:305 +#: dcim/forms/model_forms.py:217 dcim/forms/model_forms.py:256 +#: templates/dcim/rack.html:45 templates/dcim/racktype.html:13 msgid "Rack Type" msgstr "Tipo di rack" -#: netbox/dcim/forms/bulk_edit.py:298 netbox/dcim/forms/model_forms.py:220 -#: netbox/dcim/forms/model_forms.py:297 +#: dcim/forms/bulk_edit.py:298 dcim/forms/model_forms.py:220 +#: dcim/forms/model_forms.py:297 msgid "Outer Dimensions" msgstr "Dimensioni esterne" -#: netbox/dcim/forms/bulk_edit.py:301 netbox/dcim/forms/model_forms.py:222 -#: netbox/dcim/forms/model_forms.py:299 netbox/templates/dcim/device.html:315 -#: netbox/templates/dcim/inc/panels/racktype_dimensions.html:3 +#: dcim/forms/bulk_edit.py:301 dcim/forms/model_forms.py:222 +#: dcim/forms/model_forms.py:299 templates/dcim/device.html:315 +#: templates/dcim/inc/panels/racktype_dimensions.html:3 msgid "Dimensions" msgstr "Dimensioni" -#: netbox/dcim/forms/bulk_edit.py:303 netbox/dcim/forms/filtersets.py:306 -#: netbox/dcim/forms/filtersets.py:326 netbox/dcim/forms/model_forms.py:224 -#: netbox/templates/dcim/inc/panels/racktype_numbering.html:3 +#: dcim/forms/bulk_edit.py:303 dcim/forms/filtersets.py:306 +#: dcim/forms/filtersets.py:326 dcim/forms/model_forms.py:224 +#: templates/dcim/inc/panels/racktype_numbering.html:3 msgid "Numbering" msgstr "Numerazione" -#: netbox/dcim/forms/bulk_edit.py:357 netbox/dcim/forms/bulk_edit.py:1262 -#: netbox/dcim/forms/bulk_edit.py:1655 netbox/dcim/forms/bulk_import.py:253 -#: netbox/dcim/forms/bulk_import.py:1076 netbox/dcim/forms/filtersets.py:367 -#: netbox/dcim/forms/filtersets.py:777 netbox/dcim/forms/filtersets.py:1534 -#: netbox/dcim/forms/model_forms.py:251 netbox/dcim/forms/model_forms.py:1070 -#: netbox/dcim/forms/model_forms.py:1510 -#: netbox/dcim/forms/object_import.py:181 netbox/dcim/tables/devices.py:169 -#: netbox/dcim/tables/devices.py:809 netbox/dcim/tables/devices.py:937 -#: netbox/dcim/tables/devicetypes.py:304 netbox/dcim/tables/racks.py:129 -#: netbox/extras/filtersets.py:552 netbox/ipam/forms/bulk_edit.py:260 -#: netbox/ipam/forms/bulk_edit.py:310 netbox/ipam/forms/bulk_edit.py:358 -#: netbox/ipam/forms/bulk_edit.py:556 netbox/ipam/forms/bulk_import.py:197 -#: netbox/ipam/forms/bulk_import.py:262 netbox/ipam/forms/bulk_import.py:298 -#: netbox/ipam/forms/bulk_import.py:455 netbox/ipam/forms/filtersets.py:237 -#: netbox/ipam/forms/filtersets.py:289 netbox/ipam/forms/filtersets.py:360 -#: netbox/ipam/forms/filtersets.py:509 netbox/ipam/forms/model_forms.py:188 -#: netbox/ipam/forms/model_forms.py:221 netbox/ipam/forms/model_forms.py:250 -#: netbox/ipam/forms/model_forms.py:643 netbox/ipam/tables/ip.py:258 -#: netbox/ipam/tables/ip.py:316 netbox/ipam/tables/ip.py:367 -#: netbox/ipam/tables/vlans.py:130 netbox/ipam/tables/vlans.py:235 -#: netbox/templates/dcim/device.html:182 -#: netbox/templates/dcim/inc/panels/inventory_items.html:20 -#: netbox/templates/dcim/interface.html:223 -#: netbox/templates/dcim/inventoryitem.html:36 -#: netbox/templates/dcim/rack.html:49 netbox/templates/ipam/ipaddress.html:41 -#: netbox/templates/ipam/iprange.html:50 netbox/templates/ipam/prefix.html:77 -#: netbox/templates/ipam/role.html:19 netbox/templates/ipam/vlan.html:52 -#: netbox/templates/virtualization/virtualmachine.html:23 -#: netbox/templates/vpn/tunneltermination.html:17 -#: netbox/templates/wireless/inc/wirelesslink_interface.html:20 -#: netbox/tenancy/forms/bulk_edit.py:142 -#: netbox/tenancy/forms/filtersets.py:107 -#: netbox/tenancy/forms/model_forms.py:137 -#: netbox/tenancy/tables/contacts.py:102 -#: netbox/virtualization/forms/bulk_edit.py:145 -#: netbox/virtualization/forms/bulk_import.py:106 -#: netbox/virtualization/forms/filtersets.py:157 -#: netbox/virtualization/forms/model_forms.py:195 -#: netbox/virtualization/tables/virtualmachines.py:75 -#: netbox/vpn/forms/bulk_edit.py:87 netbox/vpn/forms/bulk_import.py:81 -#: netbox/vpn/forms/filtersets.py:85 netbox/vpn/forms/model_forms.py:78 -#: netbox/vpn/forms/model_forms.py:113 netbox/vpn/tables/tunnels.py:82 +#: dcim/forms/bulk_edit.py:357 dcim/forms/bulk_edit.py:1262 +#: dcim/forms/bulk_edit.py:1655 dcim/forms/bulk_import.py:253 +#: dcim/forms/bulk_import.py:1076 dcim/forms/filtersets.py:367 +#: dcim/forms/filtersets.py:777 dcim/forms/filtersets.py:1534 +#: dcim/forms/model_forms.py:251 dcim/forms/model_forms.py:1070 +#: dcim/forms/model_forms.py:1510 dcim/forms/object_import.py:181 +#: dcim/tables/devices.py:169 dcim/tables/devices.py:809 +#: dcim/tables/devices.py:937 dcim/tables/devicetypes.py:304 +#: dcim/tables/racks.py:129 extras/filtersets.py:552 +#: ipam/forms/bulk_edit.py:261 ipam/forms/bulk_edit.py:311 +#: ipam/forms/bulk_edit.py:359 ipam/forms/bulk_edit.py:511 +#: ipam/forms/bulk_import.py:197 ipam/forms/bulk_import.py:262 +#: ipam/forms/bulk_import.py:298 ipam/forms/bulk_import.py:455 +#: ipam/forms/filtersets.py:237 ipam/forms/filtersets.py:289 +#: ipam/forms/filtersets.py:360 ipam/forms/filtersets.py:509 +#: ipam/forms/model_forms.py:188 ipam/forms/model_forms.py:221 +#: ipam/forms/model_forms.py:250 ipam/forms/model_forms.py:643 +#: ipam/tables/ip.py:258 ipam/tables/ip.py:316 ipam/tables/ip.py:367 +#: ipam/tables/vlans.py:130 ipam/tables/vlans.py:235 +#: templates/dcim/device.html:182 +#: templates/dcim/inc/panels/inventory_items.html:20 +#: templates/dcim/interface.html:223 templates/dcim/inventoryitem.html:36 +#: templates/dcim/rack.html:49 templates/ipam/ipaddress.html:41 +#: templates/ipam/iprange.html:50 templates/ipam/prefix.html:77 +#: templates/ipam/role.html:19 templates/ipam/vlan.html:52 +#: templates/virtualization/virtualmachine.html:23 +#: templates/vpn/tunneltermination.html:17 +#: templates/wireless/inc/wirelesslink_interface.html:20 +#: tenancy/forms/bulk_edit.py:142 tenancy/forms/filtersets.py:107 +#: tenancy/forms/model_forms.py:137 tenancy/tables/contacts.py:102 +#: virtualization/forms/bulk_edit.py:145 +#: virtualization/forms/bulk_import.py:106 +#: virtualization/forms/filtersets.py:157 +#: virtualization/forms/model_forms.py:195 +#: virtualization/tables/virtualmachines.py:75 vpn/forms/bulk_edit.py:87 +#: vpn/forms/bulk_import.py:81 vpn/forms/filtersets.py:85 +#: vpn/forms/model_forms.py:78 vpn/forms/model_forms.py:113 +#: vpn/tables/tunnels.py:82 msgid "Role" msgstr "Ruolo" -#: netbox/dcim/forms/bulk_edit.py:364 netbox/dcim/forms/bulk_edit.py:712 -#: netbox/dcim/forms/bulk_edit.py:764 netbox/templates/dcim/device.html:104 -#: netbox/templates/dcim/module.html:77 -#: netbox/templates/dcim/modulebay.html:70 netbox/templates/dcim/rack.html:57 -#: netbox/templates/virtualization/virtualmachine.html:35 +#: dcim/forms/bulk_edit.py:364 dcim/forms/bulk_edit.py:712 +#: dcim/forms/bulk_edit.py:764 templates/dcim/device.html:104 +#: templates/dcim/module.html:77 templates/dcim/modulebay.html:70 +#: templates/dcim/rack.html:57 templates/virtualization/virtualmachine.html:35 msgid "Serial Number" msgstr "Numero di serie" -#: netbox/dcim/forms/bulk_edit.py:367 netbox/dcim/forms/filtersets.py:387 -#: netbox/dcim/forms/filtersets.py:813 netbox/dcim/forms/filtersets.py:967 -#: netbox/dcim/forms/filtersets.py:1546 +#: dcim/forms/bulk_edit.py:367 dcim/forms/filtersets.py:387 +#: dcim/forms/filtersets.py:813 dcim/forms/filtersets.py:967 +#: dcim/forms/filtersets.py:1546 msgid "Asset tag" msgstr "Etichetta dell'asset" -#: netbox/dcim/forms/bulk_edit.py:411 netbox/dcim/forms/bulk_edit.py:524 -#: netbox/dcim/forms/bulk_edit.py:568 netbox/dcim/forms/bulk_edit.py:705 -#: netbox/dcim/forms/bulk_import.py:277 netbox/dcim/forms/bulk_import.py:410 -#: netbox/dcim/forms/bulk_import.py:580 netbox/dcim/forms/filtersets.py:280 -#: netbox/dcim/forms/filtersets.py:511 netbox/dcim/forms/filtersets.py:669 -#: netbox/dcim/forms/filtersets.py:804 netbox/templates/dcim/device.html:98 -#: netbox/templates/dcim/devicetype.html:65 -#: netbox/templates/dcim/moduletype.html:30 netbox/templates/dcim/rack.html:65 -#: netbox/templates/dcim/racktype.html:28 +#: dcim/forms/bulk_edit.py:411 dcim/forms/bulk_edit.py:524 +#: dcim/forms/bulk_edit.py:568 dcim/forms/bulk_edit.py:705 +#: dcim/forms/bulk_import.py:277 dcim/forms/bulk_import.py:410 +#: dcim/forms/bulk_import.py:580 dcim/forms/filtersets.py:280 +#: dcim/forms/filtersets.py:511 dcim/forms/filtersets.py:669 +#: dcim/forms/filtersets.py:804 templates/dcim/device.html:98 +#: templates/dcim/devicetype.html:65 templates/dcim/moduletype.html:41 +#: templates/dcim/rack.html:65 templates/dcim/racktype.html:28 msgid "Airflow" msgstr "Flusso d'aria" -#: netbox/dcim/forms/bulk_edit.py:440 netbox/dcim/forms/bulk_edit.py:910 -#: netbox/dcim/forms/bulk_import.py:322 netbox/dcim/forms/bulk_import.py:325 -#: netbox/dcim/forms/bulk_import.py:553 netbox/dcim/forms/bulk_import.py:1358 -#: netbox/dcim/forms/bulk_import.py:1362 netbox/dcim/forms/filtersets.py:104 -#: netbox/dcim/forms/filtersets.py:324 netbox/dcim/forms/filtersets.py:405 -#: netbox/dcim/forms/filtersets.py:419 netbox/dcim/forms/filtersets.py:457 -#: netbox/dcim/forms/filtersets.py:772 netbox/dcim/forms/filtersets.py:1035 -#: netbox/dcim/forms/filtersets.py:1167 netbox/dcim/forms/model_forms.py:264 -#: netbox/dcim/forms/model_forms.py:306 netbox/dcim/forms/model_forms.py:479 -#: netbox/dcim/forms/model_forms.py:755 netbox/dcim/forms/object_create.py:400 -#: netbox/dcim/tables/devices.py:161 netbox/dcim/tables/power.py:70 -#: netbox/dcim/tables/racks.py:217 netbox/ipam/forms/bulk_edit.py:468 -#: netbox/ipam/forms/filtersets.py:442 netbox/templates/dcim/device.html:30 -#: netbox/templates/dcim/inc/cable_termination.html:16 -#: netbox/templates/dcim/powerfeed.html:28 netbox/templates/dcim/rack.html:13 -#: netbox/templates/dcim/rack/base.html:4 -#: netbox/templates/dcim/rackreservation.html:19 -#: netbox/templates/dcim/rackreservation.html:36 -#: netbox/virtualization/forms/model_forms.py:113 +#: dcim/forms/bulk_edit.py:440 dcim/forms/bulk_edit.py:910 +#: dcim/forms/bulk_import.py:322 dcim/forms/bulk_import.py:325 +#: dcim/forms/bulk_import.py:553 dcim/forms/bulk_import.py:1358 +#: dcim/forms/bulk_import.py:1362 dcim/forms/filtersets.py:104 +#: dcim/forms/filtersets.py:324 dcim/forms/filtersets.py:405 +#: dcim/forms/filtersets.py:419 dcim/forms/filtersets.py:457 +#: dcim/forms/filtersets.py:772 dcim/forms/filtersets.py:1035 +#: dcim/forms/filtersets.py:1167 dcim/forms/model_forms.py:264 +#: dcim/forms/model_forms.py:306 dcim/forms/model_forms.py:479 +#: dcim/forms/model_forms.py:755 dcim/forms/object_create.py:400 +#: dcim/tables/devices.py:161 dcim/tables/power.py:70 dcim/tables/racks.py:217 +#: ipam/forms/filtersets.py:442 templates/dcim/device.html:30 +#: templates/dcim/inc/cable_termination.html:16 +#: templates/dcim/powerfeed.html:28 templates/dcim/rack.html:13 +#: templates/dcim/rack/base.html:4 templates/dcim/rackreservation.html:19 +#: templates/dcim/rackreservation.html:36 +#: virtualization/forms/model_forms.py:113 msgid "Rack" msgstr "cremagliera" -#: netbox/dcim/forms/bulk_edit.py:444 netbox/dcim/forms/bulk_edit.py:730 -#: netbox/dcim/forms/filtersets.py:325 netbox/dcim/forms/filtersets.py:398 -#: netbox/dcim/forms/filtersets.py:481 netbox/dcim/forms/filtersets.py:608 -#: netbox/dcim/forms/filtersets.py:721 netbox/dcim/forms/filtersets.py:942 -#: netbox/dcim/forms/model_forms.py:670 netbox/dcim/forms/model_forms.py:1580 -#: netbox/templates/dcim/device_edit.html:20 +#: dcim/forms/bulk_edit.py:444 dcim/forms/bulk_edit.py:730 +#: dcim/forms/filtersets.py:325 dcim/forms/filtersets.py:398 +#: dcim/forms/filtersets.py:481 dcim/forms/filtersets.py:608 +#: dcim/forms/filtersets.py:721 dcim/forms/filtersets.py:942 +#: dcim/forms/model_forms.py:670 dcim/forms/model_forms.py:1580 +#: templates/dcim/device_edit.html:20 msgid "Hardware" msgstr "Hardware" -#: netbox/dcim/forms/bulk_edit.py:500 netbox/dcim/forms/bulk_import.py:377 -#: netbox/dcim/forms/filtersets.py:499 netbox/dcim/forms/model_forms.py:353 +#: dcim/forms/bulk_edit.py:500 dcim/forms/bulk_import.py:377 +#: dcim/forms/filtersets.py:499 dcim/forms/model_forms.py:353 msgid "Default platform" msgstr "Piattaforma predefinita" -#: netbox/dcim/forms/bulk_edit.py:505 netbox/dcim/forms/bulk_edit.py:564 -#: netbox/dcim/forms/filtersets.py:502 netbox/dcim/forms/filtersets.py:622 +#: dcim/forms/bulk_edit.py:505 dcim/forms/bulk_edit.py:564 +#: dcim/forms/filtersets.py:502 dcim/forms/filtersets.py:622 msgid "Part number" msgstr "Numero del pezzo" -#: netbox/dcim/forms/bulk_edit.py:509 +#: dcim/forms/bulk_edit.py:509 msgid "U height" msgstr "Altezza U" -#: netbox/dcim/forms/bulk_edit.py:521 netbox/dcim/tables/devicetypes.py:102 +#: dcim/forms/bulk_edit.py:521 dcim/tables/devicetypes.py:102 msgid "Exclude from utilization" msgstr "Escludi dall'utilizzo" -#: netbox/dcim/forms/bulk_edit.py:550 netbox/dcim/forms/model_forms.py:368 -#: netbox/dcim/tables/devicetypes.py:77 netbox/templates/dcim/device.html:88 -#: netbox/templates/dcim/devicebay.html:52 -#: netbox/templates/dcim/module.html:61 +#: dcim/forms/bulk_edit.py:550 dcim/forms/model_forms.py:368 +#: dcim/tables/devicetypes.py:77 templates/dcim/device.html:88 +#: templates/dcim/devicebay.html:52 templates/dcim/module.html:61 msgid "Device Type" msgstr "Tipo di dispositivo" -#: netbox/dcim/forms/bulk_edit.py:592 netbox/dcim/forms/model_forms.py:401 -#: netbox/dcim/tables/modules.py:17 netbox/dcim/tables/modules.py:65 -#: netbox/templates/dcim/module.html:65 -#: netbox/templates/dcim/modulebay.html:66 -#: netbox/templates/dcim/moduletype.html:11 +#: dcim/forms/bulk_edit.py:592 dcim/forms/model_forms.py:401 +#: dcim/tables/modules.py:17 dcim/tables/modules.py:65 +#: templates/dcim/module.html:65 templates/dcim/modulebay.html:66 +#: templates/dcim/moduletype.html:22 msgid "Module Type" msgstr "Tipo di modulo" -#: netbox/dcim/forms/bulk_edit.py:596 netbox/dcim/forms/model_forms.py:371 -#: netbox/dcim/forms/model_forms.py:402 -#: netbox/templates/dcim/devicetype.html:11 +#: dcim/forms/bulk_edit.py:596 dcim/forms/model_forms.py:371 +#: dcim/forms/model_forms.py:402 templates/dcim/devicetype.html:11 msgid "Chassis" msgstr "Telaio" -#: netbox/dcim/forms/bulk_edit.py:610 netbox/dcim/models/devices.py:484 -#: netbox/dcim/tables/devices.py:67 +#: dcim/forms/bulk_edit.py:610 dcim/models/devices.py:484 +#: dcim/tables/devices.py:67 msgid "VM role" msgstr "Ruolo VM" -#: netbox/dcim/forms/bulk_edit.py:613 netbox/dcim/forms/bulk_edit.py:637 -#: netbox/dcim/forms/bulk_edit.py:720 netbox/dcim/forms/bulk_import.py:434 -#: netbox/dcim/forms/bulk_import.py:438 netbox/dcim/forms/bulk_import.py:457 -#: netbox/dcim/forms/bulk_import.py:461 netbox/dcim/forms/bulk_import.py:586 -#: netbox/dcim/forms/bulk_import.py:590 netbox/dcim/forms/filtersets.py:689 -#: netbox/dcim/forms/filtersets.py:705 netbox/dcim/forms/filtersets.py:823 -#: netbox/dcim/forms/model_forms.py:415 netbox/dcim/forms/model_forms.py:441 -#: netbox/dcim/forms/model_forms.py:555 -#: netbox/virtualization/forms/bulk_import.py:132 -#: netbox/virtualization/forms/bulk_import.py:133 -#: netbox/virtualization/forms/filtersets.py:188 -#: netbox/virtualization/forms/model_forms.py:215 +#: dcim/forms/bulk_edit.py:613 dcim/forms/bulk_edit.py:637 +#: dcim/forms/bulk_edit.py:720 dcim/forms/bulk_import.py:434 +#: dcim/forms/bulk_import.py:438 dcim/forms/bulk_import.py:457 +#: dcim/forms/bulk_import.py:461 dcim/forms/bulk_import.py:586 +#: dcim/forms/bulk_import.py:590 dcim/forms/filtersets.py:689 +#: dcim/forms/filtersets.py:705 dcim/forms/filtersets.py:823 +#: dcim/forms/model_forms.py:415 dcim/forms/model_forms.py:441 +#: dcim/forms/model_forms.py:555 virtualization/forms/bulk_import.py:132 +#: virtualization/forms/bulk_import.py:133 +#: virtualization/forms/filtersets.py:188 +#: virtualization/forms/model_forms.py:215 msgid "Config template" msgstr "Modello di configurazione" -#: netbox/dcim/forms/bulk_edit.py:661 netbox/dcim/forms/bulk_edit.py:1061 -#: netbox/dcim/forms/bulk_import.py:492 netbox/dcim/forms/filtersets.py:114 -#: netbox/dcim/forms/model_forms.py:501 netbox/dcim/forms/model_forms.py:872 -#: netbox/dcim/forms/model_forms.py:889 netbox/extras/filtersets.py:547 +#: dcim/forms/bulk_edit.py:661 dcim/forms/bulk_edit.py:1061 +#: dcim/forms/bulk_import.py:492 dcim/forms/filtersets.py:114 +#: dcim/forms/model_forms.py:501 dcim/forms/model_forms.py:872 +#: dcim/forms/model_forms.py:889 extras/filtersets.py:547 msgid "Device type" msgstr "Tipo di dispositivo" -#: netbox/dcim/forms/bulk_edit.py:672 netbox/dcim/forms/bulk_import.py:473 -#: netbox/dcim/forms/filtersets.py:119 netbox/dcim/forms/model_forms.py:509 +#: dcim/forms/bulk_edit.py:672 dcim/forms/bulk_import.py:473 +#: dcim/forms/filtersets.py:119 dcim/forms/model_forms.py:509 msgid "Device role" msgstr "Ruolo del dispositivo" -#: netbox/dcim/forms/bulk_edit.py:695 netbox/dcim/forms/bulk_import.py:498 -#: netbox/dcim/forms/filtersets.py:796 netbox/dcim/forms/model_forms.py:451 -#: netbox/dcim/forms/model_forms.py:513 netbox/dcim/tables/devices.py:182 -#: netbox/extras/filtersets.py:563 netbox/templates/dcim/device.html:186 -#: netbox/templates/dcim/platform.html:26 -#: netbox/templates/virtualization/virtualmachine.html:27 -#: netbox/virtualization/forms/bulk_edit.py:160 -#: netbox/virtualization/forms/bulk_import.py:122 -#: netbox/virtualization/forms/filtersets.py:168 -#: netbox/virtualization/forms/model_forms.py:203 -#: netbox/virtualization/tables/virtualmachines.py:79 +#: dcim/forms/bulk_edit.py:695 dcim/forms/bulk_import.py:498 +#: dcim/forms/filtersets.py:796 dcim/forms/model_forms.py:451 +#: dcim/forms/model_forms.py:513 dcim/tables/devices.py:182 +#: extras/filtersets.py:563 templates/dcim/device.html:186 +#: templates/dcim/platform.html:26 +#: templates/virtualization/virtualmachine.html:27 +#: virtualization/forms/bulk_edit.py:160 +#: virtualization/forms/bulk_import.py:122 +#: virtualization/forms/filtersets.py:168 +#: virtualization/forms/model_forms.py:203 +#: virtualization/tables/virtualmachines.py:79 msgid "Platform" msgstr "piattaforma" -#: netbox/dcim/forms/bulk_edit.py:728 netbox/dcim/forms/bulk_edit.py:1281 -#: netbox/dcim/forms/bulk_edit.py:1650 netbox/dcim/forms/bulk_edit.py:1696 -#: netbox/dcim/forms/bulk_import.py:641 netbox/dcim/forms/bulk_import.py:703 -#: netbox/dcim/forms/bulk_import.py:729 netbox/dcim/forms/bulk_import.py:755 -#: netbox/dcim/forms/bulk_import.py:775 netbox/dcim/forms/bulk_import.py:828 -#: netbox/dcim/forms/bulk_import.py:946 netbox/dcim/forms/bulk_import.py:994 -#: netbox/dcim/forms/bulk_import.py:1011 netbox/dcim/forms/bulk_import.py:1023 -#: netbox/dcim/forms/bulk_import.py:1071 netbox/dcim/forms/bulk_import.py:1422 -#: netbox/dcim/forms/connections.py:24 netbox/dcim/forms/filtersets.py:131 -#: netbox/dcim/forms/filtersets.py:921 netbox/dcim/forms/filtersets.py:1051 -#: netbox/dcim/forms/filtersets.py:1242 netbox/dcim/forms/filtersets.py:1267 -#: netbox/dcim/forms/filtersets.py:1291 netbox/dcim/forms/filtersets.py:1311 -#: netbox/dcim/forms/filtersets.py:1334 netbox/dcim/forms/filtersets.py:1444 -#: netbox/dcim/forms/filtersets.py:1469 netbox/dcim/forms/filtersets.py:1493 -#: netbox/dcim/forms/filtersets.py:1511 netbox/dcim/forms/filtersets.py:1528 -#: netbox/dcim/forms/filtersets.py:1592 netbox/dcim/forms/filtersets.py:1616 -#: netbox/dcim/forms/filtersets.py:1640 netbox/dcim/forms/model_forms.py:633 -#: netbox/dcim/forms/model_forms.py:849 netbox/dcim/forms/model_forms.py:1208 -#: netbox/dcim/forms/model_forms.py:1664 -#: netbox/dcim/forms/object_create.py:257 netbox/dcim/tables/connections.py:22 -#: netbox/dcim/tables/connections.py:41 netbox/dcim/tables/connections.py:60 -#: netbox/dcim/tables/devices.py:285 netbox/dcim/tables/devices.py:371 -#: netbox/dcim/tables/devices.py:412 netbox/dcim/tables/devices.py:454 -#: netbox/dcim/tables/devices.py:505 netbox/dcim/tables/devices.py:597 -#: netbox/dcim/tables/devices.py:697 netbox/dcim/tables/devices.py:754 -#: netbox/dcim/tables/devices.py:801 netbox/dcim/tables/devices.py:861 -#: netbox/dcim/tables/devices.py:930 netbox/dcim/tables/devices.py:1057 -#: netbox/dcim/tables/modules.py:52 netbox/extras/forms/filtersets.py:321 -#: netbox/ipam/forms/bulk_import.py:304 netbox/ipam/forms/bulk_import.py:481 -#: netbox/ipam/forms/filtersets.py:551 netbox/ipam/forms/model_forms.py:319 -#: netbox/ipam/forms/model_forms.py:679 netbox/ipam/forms/model_forms.py:712 -#: netbox/ipam/forms/model_forms.py:738 netbox/ipam/tables/vlans.py:180 -#: netbox/templates/dcim/consoleport.html:20 -#: netbox/templates/dcim/consoleserverport.html:20 -#: netbox/templates/dcim/device.html:15 netbox/templates/dcim/device.html:130 -#: netbox/templates/dcim/device_edit.html:10 -#: netbox/templates/dcim/devicebay.html:20 -#: netbox/templates/dcim/devicebay.html:48 -#: netbox/templates/dcim/frontport.html:20 -#: netbox/templates/dcim/interface.html:30 -#: netbox/templates/dcim/interface.html:161 -#: netbox/templates/dcim/inventoryitem.html:20 -#: netbox/templates/dcim/module.html:57 -#: netbox/templates/dcim/modulebay.html:20 -#: netbox/templates/dcim/poweroutlet.html:20 -#: netbox/templates/dcim/powerport.html:20 -#: netbox/templates/dcim/rearport.html:20 -#: netbox/templates/dcim/virtualchassis.html:65 -#: netbox/templates/dcim/virtualchassis_edit.html:51 -#: netbox/templates/dcim/virtualdevicecontext.html:22 -#: netbox/templates/virtualization/virtualmachine.html:114 -#: netbox/templates/vpn/tunneltermination.html:23 -#: netbox/templates/wireless/inc/wirelesslink_interface.html:6 -#: netbox/virtualization/filtersets.py:167 -#: netbox/virtualization/forms/bulk_edit.py:137 -#: netbox/virtualization/forms/bulk_import.py:99 -#: netbox/virtualization/forms/filtersets.py:128 -#: netbox/virtualization/forms/model_forms.py:185 -#: netbox/virtualization/tables/virtualmachines.py:71 netbox/vpn/choices.py:44 -#: netbox/vpn/forms/bulk_import.py:86 netbox/vpn/forms/bulk_import.py:283 -#: netbox/vpn/forms/filtersets.py:275 netbox/vpn/forms/model_forms.py:90 -#: netbox/vpn/forms/model_forms.py:125 netbox/vpn/forms/model_forms.py:236 -#: netbox/vpn/forms/model_forms.py:453 netbox/wireless/forms/model_forms.py:99 -#: netbox/wireless/forms/model_forms.py:141 -#: netbox/wireless/tables/wirelesslan.py:75 +#: dcim/forms/bulk_edit.py:728 dcim/forms/bulk_edit.py:1281 +#: dcim/forms/bulk_edit.py:1650 dcim/forms/bulk_edit.py:1696 +#: dcim/forms/bulk_import.py:641 dcim/forms/bulk_import.py:703 +#: dcim/forms/bulk_import.py:729 dcim/forms/bulk_import.py:755 +#: dcim/forms/bulk_import.py:775 dcim/forms/bulk_import.py:828 +#: dcim/forms/bulk_import.py:946 dcim/forms/bulk_import.py:994 +#: dcim/forms/bulk_import.py:1011 dcim/forms/bulk_import.py:1023 +#: dcim/forms/bulk_import.py:1071 dcim/forms/bulk_import.py:1422 +#: dcim/forms/connections.py:24 dcim/forms/filtersets.py:131 +#: dcim/forms/filtersets.py:921 dcim/forms/filtersets.py:1051 +#: dcim/forms/filtersets.py:1242 dcim/forms/filtersets.py:1267 +#: dcim/forms/filtersets.py:1291 dcim/forms/filtersets.py:1311 +#: dcim/forms/filtersets.py:1334 dcim/forms/filtersets.py:1444 +#: dcim/forms/filtersets.py:1469 dcim/forms/filtersets.py:1493 +#: dcim/forms/filtersets.py:1511 dcim/forms/filtersets.py:1528 +#: dcim/forms/filtersets.py:1592 dcim/forms/filtersets.py:1616 +#: dcim/forms/filtersets.py:1640 dcim/forms/model_forms.py:633 +#: dcim/forms/model_forms.py:849 dcim/forms/model_forms.py:1208 +#: dcim/forms/model_forms.py:1664 dcim/forms/object_create.py:257 +#: dcim/tables/connections.py:22 dcim/tables/connections.py:41 +#: dcim/tables/connections.py:60 dcim/tables/devices.py:285 +#: dcim/tables/devices.py:371 dcim/tables/devices.py:412 +#: dcim/tables/devices.py:454 dcim/tables/devices.py:505 +#: dcim/tables/devices.py:597 dcim/tables/devices.py:697 +#: dcim/tables/devices.py:754 dcim/tables/devices.py:801 +#: dcim/tables/devices.py:861 dcim/tables/devices.py:930 +#: dcim/tables/devices.py:1057 dcim/tables/modules.py:52 +#: extras/forms/filtersets.py:321 ipam/forms/bulk_import.py:304 +#: ipam/forms/bulk_import.py:481 ipam/forms/filtersets.py:551 +#: ipam/forms/model_forms.py:319 ipam/forms/model_forms.py:679 +#: ipam/forms/model_forms.py:712 ipam/forms/model_forms.py:738 +#: ipam/tables/vlans.py:180 templates/dcim/consoleport.html:20 +#: templates/dcim/consoleserverport.html:20 templates/dcim/device.html:15 +#: templates/dcim/device.html:130 templates/dcim/device_edit.html:10 +#: templates/dcim/devicebay.html:20 templates/dcim/devicebay.html:48 +#: templates/dcim/frontport.html:20 templates/dcim/interface.html:30 +#: templates/dcim/interface.html:161 templates/dcim/inventoryitem.html:20 +#: templates/dcim/module.html:57 templates/dcim/modulebay.html:20 +#: templates/dcim/poweroutlet.html:20 templates/dcim/powerport.html:20 +#: templates/dcim/rearport.html:20 templates/dcim/virtualchassis.html:65 +#: templates/dcim/virtualchassis_edit.html:51 +#: templates/dcim/virtualdevicecontext.html:22 +#: templates/virtualization/virtualmachine.html:114 +#: templates/vpn/tunneltermination.html:23 +#: templates/wireless/inc/wirelesslink_interface.html:6 +#: virtualization/filtersets.py:167 virtualization/forms/bulk_edit.py:137 +#: virtualization/forms/bulk_import.py:99 +#: virtualization/forms/filtersets.py:128 +#: virtualization/forms/model_forms.py:185 +#: virtualization/tables/virtualmachines.py:71 vpn/choices.py:44 +#: vpn/forms/bulk_import.py:86 vpn/forms/bulk_import.py:283 +#: vpn/forms/filtersets.py:275 vpn/forms/model_forms.py:90 +#: vpn/forms/model_forms.py:125 vpn/forms/model_forms.py:236 +#: vpn/forms/model_forms.py:453 wireless/forms/model_forms.py:99 +#: wireless/forms/model_forms.py:141 wireless/tables/wirelesslan.py:75 msgid "Device" msgstr "Dispositivo" -#: netbox/dcim/forms/bulk_edit.py:731 -#: netbox/templates/extras/dashboard/widget_config.html:7 -#: netbox/virtualization/forms/bulk_edit.py:191 +#: dcim/forms/bulk_edit.py:731 templates/extras/dashboard/widget_config.html:7 +#: virtualization/forms/bulk_edit.py:191 msgid "Configuration" msgstr "Configurazione" -#: netbox/dcim/forms/bulk_edit.py:745 netbox/dcim/forms/bulk_import.py:653 -#: netbox/dcim/forms/model_forms.py:647 netbox/dcim/forms/model_forms.py:897 +#: dcim/forms/bulk_edit.py:745 dcim/forms/bulk_import.py:653 +#: dcim/forms/model_forms.py:647 dcim/forms/model_forms.py:897 msgid "Module type" msgstr "Tipo di modulo" -#: netbox/dcim/forms/bulk_edit.py:799 netbox/dcim/forms/bulk_edit.py:984 -#: netbox/dcim/forms/bulk_edit.py:1003 netbox/dcim/forms/bulk_edit.py:1026 -#: netbox/dcim/forms/bulk_edit.py:1068 netbox/dcim/forms/bulk_edit.py:1112 -#: netbox/dcim/forms/bulk_edit.py:1163 netbox/dcim/forms/bulk_edit.py:1190 -#: netbox/dcim/forms/bulk_edit.py:1217 netbox/dcim/forms/bulk_edit.py:1235 -#: netbox/dcim/forms/bulk_edit.py:1253 netbox/dcim/forms/filtersets.py:67 -#: netbox/dcim/forms/object_create.py:46 netbox/templates/dcim/cable.html:32 -#: netbox/templates/dcim/consoleport.html:32 -#: netbox/templates/dcim/consoleserverport.html:32 -#: netbox/templates/dcim/devicebay.html:28 -#: netbox/templates/dcim/frontport.html:32 -#: netbox/templates/dcim/inc/panels/inventory_items.html:19 -#: netbox/templates/dcim/interface.html:42 -#: netbox/templates/dcim/inventoryitem.html:32 -#: netbox/templates/dcim/modulebay.html:34 -#: netbox/templates/dcim/poweroutlet.html:32 -#: netbox/templates/dcim/powerport.html:32 -#: netbox/templates/dcim/rearport.html:32 -#: netbox/templates/extras/customfield.html:26 -#: netbox/templates/generic/bulk_import.html:162 +#: dcim/forms/bulk_edit.py:799 dcim/forms/bulk_edit.py:984 +#: dcim/forms/bulk_edit.py:1003 dcim/forms/bulk_edit.py:1026 +#: dcim/forms/bulk_edit.py:1068 dcim/forms/bulk_edit.py:1112 +#: dcim/forms/bulk_edit.py:1163 dcim/forms/bulk_edit.py:1190 +#: dcim/forms/bulk_edit.py:1217 dcim/forms/bulk_edit.py:1235 +#: dcim/forms/bulk_edit.py:1253 dcim/forms/filtersets.py:67 +#: dcim/forms/object_create.py:46 templates/dcim/cable.html:32 +#: templates/dcim/consoleport.html:32 templates/dcim/consoleserverport.html:32 +#: templates/dcim/devicebay.html:28 templates/dcim/frontport.html:32 +#: templates/dcim/inc/panels/inventory_items.html:19 +#: templates/dcim/interface.html:42 templates/dcim/inventoryitem.html:32 +#: templates/dcim/modulebay.html:34 templates/dcim/poweroutlet.html:32 +#: templates/dcim/powerport.html:32 templates/dcim/rearport.html:32 +#: templates/extras/customfield.html:26 templates/generic/bulk_import.html:162 msgid "Label" msgstr "Etichetta" -#: netbox/dcim/forms/bulk_edit.py:808 netbox/dcim/forms/filtersets.py:1068 -#: netbox/templates/dcim/cable.html:50 +#: dcim/forms/bulk_edit.py:808 dcim/forms/filtersets.py:1068 +#: templates/dcim/cable.html:50 msgid "Length" msgstr "Lunghezza" -#: netbox/dcim/forms/bulk_edit.py:813 netbox/dcim/forms/bulk_import.py:1226 -#: netbox/dcim/forms/bulk_import.py:1229 netbox/dcim/forms/filtersets.py:1072 +#: dcim/forms/bulk_edit.py:813 dcim/forms/bulk_import.py:1226 +#: dcim/forms/bulk_import.py:1229 dcim/forms/filtersets.py:1072 msgid "Length unit" msgstr "Unità di lunghezza" -#: netbox/dcim/forms/bulk_edit.py:837 -#: netbox/templates/dcim/virtualchassis.html:23 +#: dcim/forms/bulk_edit.py:837 templates/dcim/virtualchassis.html:23 msgid "Domain" msgstr "Dominio" -#: netbox/dcim/forms/bulk_edit.py:905 netbox/dcim/forms/bulk_import.py:1345 -#: netbox/dcim/forms/filtersets.py:1158 netbox/dcim/forms/model_forms.py:750 +#: dcim/forms/bulk_edit.py:905 dcim/forms/bulk_import.py:1345 +#: dcim/forms/filtersets.py:1158 dcim/forms/model_forms.py:750 msgid "Power panel" msgstr "Pannello di alimentazione" -#: netbox/dcim/forms/bulk_edit.py:927 netbox/dcim/forms/bulk_import.py:1381 -#: netbox/dcim/forms/filtersets.py:1180 -#: netbox/templates/dcim/powerfeed.html:83 +#: dcim/forms/bulk_edit.py:927 dcim/forms/bulk_import.py:1381 +#: dcim/forms/filtersets.py:1180 templates/dcim/powerfeed.html:83 msgid "Supply" msgstr "Fornitura" -#: netbox/dcim/forms/bulk_edit.py:933 netbox/dcim/forms/bulk_import.py:1386 -#: netbox/dcim/forms/filtersets.py:1185 -#: netbox/templates/dcim/powerfeed.html:95 +#: dcim/forms/bulk_edit.py:933 dcim/forms/bulk_import.py:1386 +#: dcim/forms/filtersets.py:1185 templates/dcim/powerfeed.html:95 msgid "Phase" msgstr "Fase" -#: netbox/dcim/forms/bulk_edit.py:939 netbox/dcim/forms/filtersets.py:1190 -#: netbox/templates/dcim/powerfeed.html:87 +#: dcim/forms/bulk_edit.py:939 dcim/forms/filtersets.py:1190 +#: templates/dcim/powerfeed.html:87 msgid "Voltage" msgstr "Voltaggio" -#: netbox/dcim/forms/bulk_edit.py:943 netbox/dcim/forms/filtersets.py:1194 -#: netbox/templates/dcim/powerfeed.html:91 +#: dcim/forms/bulk_edit.py:943 dcim/forms/filtersets.py:1194 +#: templates/dcim/powerfeed.html:91 msgid "Amperage" msgstr "Amperaggio" -#: netbox/dcim/forms/bulk_edit.py:947 netbox/dcim/forms/filtersets.py:1198 +#: dcim/forms/bulk_edit.py:947 dcim/forms/filtersets.py:1198 msgid "Max utilization" msgstr "Utilizzo massimo" -#: netbox/dcim/forms/bulk_edit.py:1036 +#: dcim/forms/bulk_edit.py:1036 msgid "Maximum draw" msgstr "Pareggio massimo" -#: netbox/dcim/forms/bulk_edit.py:1039 -#: netbox/dcim/models/device_component_templates.py:282 -#: netbox/dcim/models/device_components.py:356 +#: dcim/forms/bulk_edit.py:1039 dcim/models/device_component_templates.py:282 +#: dcim/models/device_components.py:356 msgid "Maximum power draw (watts)" msgstr "Potenza massima assorbita (watt)" -#: netbox/dcim/forms/bulk_edit.py:1042 +#: dcim/forms/bulk_edit.py:1042 msgid "Allocated draw" msgstr "Pareggio assegnato" -#: netbox/dcim/forms/bulk_edit.py:1045 -#: netbox/dcim/models/device_component_templates.py:289 -#: netbox/dcim/models/device_components.py:363 +#: dcim/forms/bulk_edit.py:1045 dcim/models/device_component_templates.py:289 +#: dcim/models/device_components.py:363 msgid "Allocated power draw (watts)" msgstr "Potenza assorbita allocata (watt)" -#: netbox/dcim/forms/bulk_edit.py:1078 netbox/dcim/forms/bulk_import.py:786 -#: netbox/dcim/forms/model_forms.py:953 netbox/dcim/forms/model_forms.py:1278 -#: netbox/dcim/forms/model_forms.py:1567 netbox/dcim/forms/object_import.py:55 +#: dcim/forms/bulk_edit.py:1078 dcim/forms/bulk_import.py:786 +#: dcim/forms/model_forms.py:953 dcim/forms/model_forms.py:1278 +#: dcim/forms/model_forms.py:1567 dcim/forms/object_import.py:55 msgid "Power port" msgstr "Porta di alimentazione" -#: netbox/dcim/forms/bulk_edit.py:1083 netbox/dcim/forms/bulk_import.py:793 +#: dcim/forms/bulk_edit.py:1083 dcim/forms/bulk_import.py:793 msgid "Feed leg" msgstr "Gamba di alimentazione" -#: netbox/dcim/forms/bulk_edit.py:1129 netbox/dcim/forms/bulk_edit.py:1440 +#: dcim/forms/bulk_edit.py:1129 dcim/forms/bulk_edit.py:1440 msgid "Management only" msgstr "Solo gestione" -#: netbox/dcim/forms/bulk_edit.py:1139 netbox/dcim/forms/bulk_edit.py:1446 -#: netbox/dcim/forms/bulk_import.py:876 netbox/dcim/forms/filtersets.py:1394 -#: netbox/dcim/forms/object_import.py:90 -#: netbox/dcim/models/device_component_templates.py:437 -#: netbox/dcim/models/device_components.py:670 +#: dcim/forms/bulk_edit.py:1139 dcim/forms/bulk_edit.py:1446 +#: dcim/forms/bulk_import.py:876 dcim/forms/filtersets.py:1394 +#: dcim/forms/object_import.py:90 +#: dcim/models/device_component_templates.py:437 +#: dcim/models/device_components.py:670 msgid "PoE mode" msgstr "modalità PoE" -#: netbox/dcim/forms/bulk_edit.py:1145 netbox/dcim/forms/bulk_edit.py:1452 -#: netbox/dcim/forms/bulk_import.py:882 netbox/dcim/forms/filtersets.py:1399 -#: netbox/dcim/forms/object_import.py:95 -#: netbox/dcim/models/device_component_templates.py:443 -#: netbox/dcim/models/device_components.py:676 +#: dcim/forms/bulk_edit.py:1145 dcim/forms/bulk_edit.py:1452 +#: dcim/forms/bulk_import.py:882 dcim/forms/filtersets.py:1399 +#: dcim/forms/object_import.py:95 +#: dcim/models/device_component_templates.py:443 +#: dcim/models/device_components.py:676 msgid "PoE type" msgstr "Tipo PoE" -#: netbox/dcim/forms/bulk_edit.py:1151 netbox/dcim/forms/filtersets.py:1404 -#: netbox/dcim/forms/object_import.py:100 +#: dcim/forms/bulk_edit.py:1151 dcim/forms/filtersets.py:1404 +#: dcim/forms/object_import.py:100 msgid "Wireless role" msgstr "Ruolo wireless" -#: netbox/dcim/forms/bulk_edit.py:1288 netbox/dcim/forms/model_forms.py:669 -#: netbox/dcim/forms/model_forms.py:1223 netbox/dcim/tables/devices.py:313 -#: netbox/templates/dcim/consoleport.html:24 -#: netbox/templates/dcim/consoleserverport.html:24 -#: netbox/templates/dcim/frontport.html:24 -#: netbox/templates/dcim/interface.html:34 -#: netbox/templates/dcim/module.html:54 -#: netbox/templates/dcim/modulebay.html:26 -#: netbox/templates/dcim/modulebay.html:58 -#: netbox/templates/dcim/poweroutlet.html:24 -#: netbox/templates/dcim/powerport.html:24 -#: netbox/templates/dcim/rearport.html:24 +#: dcim/forms/bulk_edit.py:1288 dcim/forms/model_forms.py:669 +#: dcim/forms/model_forms.py:1223 dcim/tables/devices.py:313 +#: templates/dcim/consoleport.html:24 templates/dcim/consoleserverport.html:24 +#: templates/dcim/frontport.html:24 templates/dcim/interface.html:34 +#: templates/dcim/module.html:54 templates/dcim/modulebay.html:26 +#: templates/dcim/modulebay.html:58 templates/dcim/poweroutlet.html:24 +#: templates/dcim/powerport.html:24 templates/dcim/rearport.html:24 msgid "Module" msgstr "Modulo" -#: netbox/dcim/forms/bulk_edit.py:1420 netbox/dcim/tables/devices.py:665 -#: netbox/templates/dcim/interface.html:110 +#: dcim/forms/bulk_edit.py:1420 dcim/tables/devices.py:665 +#: templates/dcim/interface.html:110 msgid "LAG" msgstr "RITARDO" -#: netbox/dcim/forms/bulk_edit.py:1425 netbox/dcim/forms/model_forms.py:1305 +#: dcim/forms/bulk_edit.py:1425 dcim/forms/model_forms.py:1305 msgid "Virtual device contexts" msgstr "Contesti dei dispositivi virtuali" -#: netbox/dcim/forms/bulk_edit.py:1431 netbox/dcim/forms/bulk_import.py:714 -#: netbox/dcim/forms/bulk_import.py:740 netbox/dcim/forms/filtersets.py:1252 -#: netbox/dcim/forms/filtersets.py:1277 netbox/dcim/forms/filtersets.py:1358 -#: netbox/dcim/tables/devices.py:610 -#: netbox/templates/circuits/inc/circuit_termination_fields.html:67 -#: netbox/templates/dcim/consoleport.html:40 -#: netbox/templates/dcim/consoleserverport.html:40 +#: dcim/forms/bulk_edit.py:1431 dcim/forms/bulk_import.py:714 +#: dcim/forms/bulk_import.py:740 dcim/forms/filtersets.py:1252 +#: dcim/forms/filtersets.py:1277 dcim/forms/filtersets.py:1358 +#: dcim/tables/devices.py:610 +#: templates/circuits/inc/circuit_termination_fields.html:67 +#: templates/dcim/consoleport.html:40 templates/dcim/consoleserverport.html:40 msgid "Speed" msgstr "Velocità" -#: netbox/dcim/forms/bulk_edit.py:1460 netbox/dcim/forms/bulk_import.py:885 -#: netbox/templates/vpn/ikepolicy.html:25 -#: netbox/templates/vpn/ipsecprofile.html:21 -#: netbox/templates/vpn/ipsecprofile.html:48 -#: netbox/virtualization/forms/bulk_edit.py:233 -#: netbox/virtualization/forms/bulk_import.py:165 -#: netbox/vpn/forms/bulk_edit.py:146 netbox/vpn/forms/bulk_edit.py:232 -#: netbox/vpn/forms/bulk_import.py:176 netbox/vpn/forms/bulk_import.py:234 -#: netbox/vpn/forms/filtersets.py:135 netbox/vpn/forms/filtersets.py:178 -#: netbox/vpn/forms/filtersets.py:192 netbox/vpn/tables/crypto.py:64 -#: netbox/vpn/tables/crypto.py:162 +#: dcim/forms/bulk_edit.py:1460 dcim/forms/bulk_import.py:885 +#: templates/vpn/ikepolicy.html:25 templates/vpn/ipsecprofile.html:21 +#: templates/vpn/ipsecprofile.html:48 virtualization/forms/bulk_edit.py:233 +#: virtualization/forms/bulk_import.py:165 vpn/forms/bulk_edit.py:146 +#: vpn/forms/bulk_edit.py:232 vpn/forms/bulk_import.py:176 +#: vpn/forms/bulk_import.py:234 vpn/forms/filtersets.py:135 +#: vpn/forms/filtersets.py:178 vpn/forms/filtersets.py:192 +#: vpn/tables/crypto.py:64 vpn/tables/crypto.py:162 msgid "Mode" msgstr "modalità" -#: netbox/dcim/forms/bulk_edit.py:1468 netbox/dcim/forms/model_forms.py:1354 -#: netbox/ipam/forms/bulk_import.py:178 netbox/ipam/forms/filtersets.py:498 -#: netbox/ipam/models/vlans.py:84 netbox/virtualization/forms/bulk_edit.py:240 -#: netbox/virtualization/forms/model_forms.py:321 +#: dcim/forms/bulk_edit.py:1468 dcim/forms/model_forms.py:1354 +#: ipam/forms/bulk_import.py:178 ipam/forms/filtersets.py:498 +#: ipam/models/vlans.py:84 virtualization/forms/bulk_edit.py:240 +#: virtualization/forms/model_forms.py:321 msgid "VLAN group" msgstr "Gruppo VLAN" -#: netbox/dcim/forms/bulk_edit.py:1476 netbox/dcim/forms/model_forms.py:1360 -#: netbox/dcim/tables/devices.py:579 -#: netbox/virtualization/forms/bulk_edit.py:248 -#: netbox/virtualization/forms/model_forms.py:326 +#: dcim/forms/bulk_edit.py:1476 dcim/forms/model_forms.py:1360 +#: dcim/tables/devices.py:579 virtualization/forms/bulk_edit.py:248 +#: virtualization/forms/model_forms.py:326 msgid "Untagged VLAN" msgstr "VLAN senza tag" -#: netbox/dcim/forms/bulk_edit.py:1484 netbox/dcim/forms/model_forms.py:1369 -#: netbox/dcim/tables/devices.py:585 -#: netbox/virtualization/forms/bulk_edit.py:256 -#: netbox/virtualization/forms/model_forms.py:335 +#: dcim/forms/bulk_edit.py:1484 dcim/forms/model_forms.py:1369 +#: dcim/tables/devices.py:585 virtualization/forms/bulk_edit.py:256 +#: virtualization/forms/model_forms.py:335 msgid "Tagged VLANs" msgstr "Taggato VLAN" -#: netbox/dcim/forms/bulk_edit.py:1494 netbox/dcim/forms/model_forms.py:1341 +#: dcim/forms/bulk_edit.py:1494 dcim/forms/model_forms.py:1341 msgid "Wireless LAN group" msgstr "Gruppo LAN wireless" -#: netbox/dcim/forms/bulk_edit.py:1499 netbox/dcim/forms/model_forms.py:1346 -#: netbox/dcim/tables/devices.py:619 netbox/netbox/navigation/menu.py:146 -#: netbox/templates/dcim/interface.html:280 -#: netbox/wireless/tables/wirelesslan.py:24 +#: dcim/forms/bulk_edit.py:1499 dcim/forms/model_forms.py:1346 +#: dcim/tables/devices.py:619 netbox/navigation/menu.py:146 +#: templates/dcim/interface.html:280 wireless/tables/wirelesslan.py:24 msgid "Wireless LANs" msgstr "LAN wireless" -#: netbox/dcim/forms/bulk_edit.py:1508 netbox/dcim/forms/filtersets.py:1328 -#: netbox/dcim/forms/model_forms.py:1390 netbox/ipam/forms/bulk_edit.py:285 -#: netbox/ipam/forms/bulk_edit.py:377 netbox/ipam/forms/filtersets.py:169 -#: netbox/templates/dcim/interface.html:122 -#: netbox/templates/ipam/prefix.html:95 -#: netbox/virtualization/forms/model_forms.py:349 +#: dcim/forms/bulk_edit.py:1508 dcim/forms/filtersets.py:1328 +#: dcim/forms/model_forms.py:1390 ipam/forms/bulk_edit.py:286 +#: ipam/forms/bulk_edit.py:378 ipam/forms/filtersets.py:169 +#: templates/dcim/interface.html:122 templates/ipam/prefix.html:95 +#: virtualization/forms/model_forms.py:349 msgid "Addressing" msgstr "Indirizzamento" -#: netbox/dcim/forms/bulk_edit.py:1509 netbox/dcim/forms/filtersets.py:720 -#: netbox/dcim/forms/model_forms.py:1391 -#: netbox/virtualization/forms/model_forms.py:350 +#: dcim/forms/bulk_edit.py:1509 dcim/forms/filtersets.py:720 +#: dcim/forms/model_forms.py:1391 virtualization/forms/model_forms.py:350 msgid "Operation" msgstr "Operazione" -#: netbox/dcim/forms/bulk_edit.py:1510 netbox/dcim/forms/filtersets.py:1329 -#: netbox/dcim/forms/model_forms.py:987 netbox/dcim/forms/model_forms.py:1393 +#: dcim/forms/bulk_edit.py:1510 dcim/forms/filtersets.py:1329 +#: dcim/forms/model_forms.py:987 dcim/forms/model_forms.py:1393 msgid "PoE" msgstr "PoE" -#: netbox/dcim/forms/bulk_edit.py:1511 netbox/dcim/forms/model_forms.py:1392 -#: netbox/templates/dcim/interface.html:99 -#: netbox/virtualization/forms/bulk_edit.py:267 -#: netbox/virtualization/forms/model_forms.py:351 +#: dcim/forms/bulk_edit.py:1511 dcim/forms/model_forms.py:1392 +#: templates/dcim/interface.html:99 virtualization/forms/bulk_edit.py:267 +#: virtualization/forms/model_forms.py:351 msgid "Related Interfaces" msgstr "Interfacce correlate" -#: netbox/dcim/forms/bulk_edit.py:1512 netbox/dcim/forms/model_forms.py:1394 -#: netbox/virtualization/forms/bulk_edit.py:268 -#: netbox/virtualization/forms/model_forms.py:352 +#: dcim/forms/bulk_edit.py:1512 dcim/forms/model_forms.py:1394 +#: virtualization/forms/bulk_edit.py:268 +#: virtualization/forms/model_forms.py:352 msgid "802.1Q Switching" msgstr "Commutazione 802.1Q" -#: netbox/dcim/forms/bulk_edit.py:1574 netbox/dcim/forms/bulk_edit.py:1576 +#: dcim/forms/bulk_edit.py:1574 dcim/forms/bulk_edit.py:1576 msgid "Interface mode must be specified to assign VLANs" msgstr "" "La modalità di interfaccia deve essere specificata per assegnare le VLAN" -#: netbox/dcim/forms/bulk_edit.py:1581 netbox/dcim/forms/common.py:50 +#: dcim/forms/bulk_edit.py:1581 dcim/forms/common.py:50 msgid "An access interface cannot have tagged VLANs assigned." msgstr "" "A un'interfaccia di accesso non possono essere assegnate VLAN con tag." -#: netbox/dcim/forms/bulk_import.py:64 +#: dcim/forms/bulk_import.py:64 msgid "Name of parent region" msgstr "Nome della regione madre" -#: netbox/dcim/forms/bulk_import.py:78 +#: dcim/forms/bulk_import.py:78 msgid "Name of parent site group" msgstr "Nome del gruppo del sito principale" -#: netbox/dcim/forms/bulk_import.py:97 +#: dcim/forms/bulk_import.py:97 msgid "Assigned region" msgstr "Regione assegnata" -#: netbox/dcim/forms/bulk_import.py:104 netbox/tenancy/forms/bulk_import.py:44 -#: netbox/tenancy/forms/bulk_import.py:85 -#: netbox/wireless/forms/bulk_import.py:40 +#: dcim/forms/bulk_import.py:104 tenancy/forms/bulk_import.py:44 +#: tenancy/forms/bulk_import.py:85 wireless/forms/bulk_import.py:40 msgid "Assigned group" msgstr "Gruppo assegnato" -#: netbox/dcim/forms/bulk_import.py:123 +#: dcim/forms/bulk_import.py:123 msgid "available options" msgstr "opzioni disponibili" -#: netbox/dcim/forms/bulk_import.py:134 netbox/dcim/forms/bulk_import.py:543 -#: netbox/dcim/forms/bulk_import.py:1342 netbox/ipam/forms/bulk_import.py:175 -#: netbox/ipam/forms/bulk_import.py:433 -#: netbox/virtualization/forms/bulk_import.py:63 -#: netbox/virtualization/forms/bulk_import.py:89 +#: dcim/forms/bulk_import.py:134 dcim/forms/bulk_import.py:543 +#: dcim/forms/bulk_import.py:1342 ipam/forms/bulk_import.py:175 +#: ipam/forms/bulk_import.py:433 virtualization/forms/bulk_import.py:63 +#: virtualization/forms/bulk_import.py:89 msgid "Assigned site" msgstr "Sito assegnato" -#: netbox/dcim/forms/bulk_import.py:141 +#: dcim/forms/bulk_import.py:141 msgid "Parent location" msgstr "Sede del genitore" -#: netbox/dcim/forms/bulk_import.py:143 +#: dcim/forms/bulk_import.py:143 msgid "Location not found." msgstr "Posizione non trovata." -#: netbox/dcim/forms/bulk_import.py:185 +#: dcim/forms/bulk_import.py:185 msgid "The manufacturer of this rack type" msgstr "Il produttore di questo tipo di rack" -#: netbox/dcim/forms/bulk_import.py:196 +#: dcim/forms/bulk_import.py:196 msgid "The lowest-numbered position in the rack" msgstr "La posizione con il numero più basso nel rack" -#: netbox/dcim/forms/bulk_import.py:201 netbox/dcim/forms/bulk_import.py:268 +#: dcim/forms/bulk_import.py:201 dcim/forms/bulk_import.py:268 msgid "Rail-to-rail width (in inches)" msgstr "Larghezza da rotaia a rotaia (in pollici)" -#: netbox/dcim/forms/bulk_import.py:207 netbox/dcim/forms/bulk_import.py:274 +#: dcim/forms/bulk_import.py:207 dcim/forms/bulk_import.py:274 msgid "Unit for outer dimensions" msgstr "Unità per dimensioni esterne" -#: netbox/dcim/forms/bulk_import.py:213 netbox/dcim/forms/bulk_import.py:286 +#: dcim/forms/bulk_import.py:213 dcim/forms/bulk_import.py:286 msgid "Unit for rack weights" msgstr "Unità per pesi a scaffale" -#: netbox/dcim/forms/bulk_import.py:245 +#: dcim/forms/bulk_import.py:245 msgid "Name of assigned tenant" msgstr "Nome dell'inquilino assegnato" -#: netbox/dcim/forms/bulk_import.py:257 +#: dcim/forms/bulk_import.py:257 msgid "Name of assigned role" msgstr "Nome del ruolo assegnato" -#: netbox/dcim/forms/bulk_import.py:280 netbox/dcim/forms/bulk_import.py:413 -#: netbox/dcim/forms/bulk_import.py:583 +#: dcim/forms/bulk_import.py:280 dcim/forms/bulk_import.py:413 +#: dcim/forms/bulk_import.py:583 msgid "Airflow direction" msgstr "Direzione del flusso d'aria" -#: netbox/dcim/forms/bulk_import.py:312 +#: dcim/forms/bulk_import.py:312 msgid "Parent site" msgstr "Sito principale" -#: netbox/dcim/forms/bulk_import.py:319 netbox/dcim/forms/bulk_import.py:1355 +#: dcim/forms/bulk_import.py:319 dcim/forms/bulk_import.py:1355 msgid "Rack's location (if any)" msgstr "Posizione del rack (se presente)" -#: netbox/dcim/forms/bulk_import.py:328 netbox/dcim/forms/model_forms.py:311 -#: netbox/dcim/tables/racks.py:222 -#: netbox/templates/dcim/rackreservation.html:12 -#: netbox/templates/dcim/rackreservation.html:45 +#: dcim/forms/bulk_import.py:328 dcim/forms/model_forms.py:311 +#: dcim/tables/racks.py:222 templates/dcim/rackreservation.html:12 +#: templates/dcim/rackreservation.html:45 msgid "Units" msgstr "Unità" -#: netbox/dcim/forms/bulk_import.py:331 +#: dcim/forms/bulk_import.py:331 msgid "Comma-separated list of individual unit numbers" msgstr "Elenco separato da virgole di numeri di unità individuali" -#: netbox/dcim/forms/bulk_import.py:374 +#: dcim/forms/bulk_import.py:374 msgid "The manufacturer which produces this device type" msgstr "Il produttore che produce questo tipo di dispositivo" -#: netbox/dcim/forms/bulk_import.py:381 +#: dcim/forms/bulk_import.py:381 msgid "The default platform for devices of this type (optional)" msgstr "La piattaforma predefinita per dispositivi di questo tipo (opzionale)" -#: netbox/dcim/forms/bulk_import.py:386 +#: dcim/forms/bulk_import.py:386 msgid "Device weight" msgstr "Peso del dispositivo" -#: netbox/dcim/forms/bulk_import.py:392 +#: dcim/forms/bulk_import.py:392 msgid "Unit for device weight" msgstr "Unità per il peso del dispositivo" -#: netbox/dcim/forms/bulk_import.py:418 +#: dcim/forms/bulk_import.py:418 msgid "Module weight" msgstr "Peso del modulo" -#: netbox/dcim/forms/bulk_import.py:424 +#: dcim/forms/bulk_import.py:424 msgid "Unit for module weight" msgstr "Unità per il peso del modulo" -#: netbox/dcim/forms/bulk_import.py:454 +#: dcim/forms/bulk_import.py:454 msgid "Limit platform assignments to this manufacturer" msgstr "Limita le assegnazioni delle piattaforme a questo produttore" -#: netbox/dcim/forms/bulk_import.py:476 netbox/dcim/forms/bulk_import.py:1425 -#: netbox/tenancy/forms/bulk_import.py:106 +#: dcim/forms/bulk_import.py:476 dcim/forms/bulk_import.py:1425 +#: tenancy/forms/bulk_import.py:106 msgid "Assigned role" msgstr "Ruolo assegnato" -#: netbox/dcim/forms/bulk_import.py:489 +#: dcim/forms/bulk_import.py:489 msgid "Device type manufacturer" msgstr "Produttore del tipo di dispositivo" -#: netbox/dcim/forms/bulk_import.py:495 +#: dcim/forms/bulk_import.py:495 msgid "Device type model" msgstr "Tipo di dispositivo modello" -#: netbox/dcim/forms/bulk_import.py:502 -#: netbox/virtualization/forms/bulk_import.py:126 +#: dcim/forms/bulk_import.py:502 virtualization/forms/bulk_import.py:126 msgid "Assigned platform" msgstr "Piattaforma assegnata" -#: netbox/dcim/forms/bulk_import.py:510 netbox/dcim/forms/bulk_import.py:514 -#: netbox/dcim/forms/model_forms.py:536 +#: dcim/forms/bulk_import.py:510 dcim/forms/bulk_import.py:514 +#: dcim/forms/model_forms.py:536 msgid "Virtual chassis" msgstr "Chassis virtuale" -#: netbox/dcim/forms/bulk_import.py:517 netbox/dcim/forms/filtersets.py:728 -#: netbox/dcim/forms/filtersets.py:898 netbox/dcim/forms/model_forms.py:522 -#: netbox/dcim/tables/devices.py:202 netbox/extras/filtersets.py:596 -#: netbox/extras/forms/filtersets.py:322 netbox/ipam/forms/bulk_edit.py:482 -#: netbox/ipam/forms/filtersets.py:415 netbox/ipam/forms/filtersets.py:447 -#: netbox/templates/dcim/device.html:239 -#: netbox/templates/virtualization/cluster.html:10 -#: netbox/templates/virtualization/virtualmachine.html:92 -#: netbox/templates/virtualization/virtualmachine.html:101 -#: netbox/virtualization/filtersets.py:157 -#: netbox/virtualization/filtersets.py:277 -#: netbox/virtualization/forms/bulk_edit.py:129 -#: netbox/virtualization/forms/bulk_import.py:92 -#: netbox/virtualization/forms/filtersets.py:99 -#: netbox/virtualization/forms/filtersets.py:123 -#: netbox/virtualization/forms/filtersets.py:204 -#: netbox/virtualization/forms/model_forms.py:79 -#: netbox/virtualization/forms/model_forms.py:176 -#: netbox/virtualization/tables/virtualmachines.py:67 +#: dcim/forms/bulk_import.py:517 dcim/forms/filtersets.py:728 +#: dcim/forms/filtersets.py:898 dcim/forms/model_forms.py:522 +#: dcim/tables/devices.py:202 extras/filtersets.py:596 +#: extras/forms/filtersets.py:322 ipam/forms/filtersets.py:415 +#: ipam/forms/filtersets.py:447 templates/dcim/device.html:239 +#: templates/virtualization/cluster.html:10 +#: templates/virtualization/virtualmachine.html:92 +#: templates/virtualization/virtualmachine.html:101 +#: virtualization/filtersets.py:157 virtualization/filtersets.py:277 +#: virtualization/forms/bulk_edit.py:129 +#: virtualization/forms/bulk_import.py:92 +#: virtualization/forms/filtersets.py:99 +#: virtualization/forms/filtersets.py:123 +#: virtualization/forms/filtersets.py:204 +#: virtualization/forms/model_forms.py:79 +#: virtualization/forms/model_forms.py:176 +#: virtualization/tables/virtualmachines.py:67 msgid "Cluster" msgstr "Grappolo" -#: netbox/dcim/forms/bulk_import.py:521 +#: dcim/forms/bulk_import.py:521 msgid "Virtualization cluster" msgstr "Cluster di virtualizzazione" -#: netbox/dcim/forms/bulk_import.py:550 +#: dcim/forms/bulk_import.py:550 msgid "Assigned location (if any)" msgstr "Posizione assegnata (se presente)" -#: netbox/dcim/forms/bulk_import.py:557 +#: dcim/forms/bulk_import.py:557 msgid "Assigned rack (if any)" msgstr "Rack assegnato (se presente)" -#: netbox/dcim/forms/bulk_import.py:560 +#: dcim/forms/bulk_import.py:560 msgid "Face" msgstr "Viso" -#: netbox/dcim/forms/bulk_import.py:563 +#: dcim/forms/bulk_import.py:563 msgid "Mounted rack face" msgstr "Faccia del rack montata" -#: netbox/dcim/forms/bulk_import.py:570 +#: dcim/forms/bulk_import.py:570 msgid "Parent device (for child devices)" msgstr "Dispositivo principale (per dispositivi per bambini)" -#: netbox/dcim/forms/bulk_import.py:573 +#: dcim/forms/bulk_import.py:573 msgid "Device bay" msgstr "Alloggiamento per dispositivi" -#: netbox/dcim/forms/bulk_import.py:577 +#: dcim/forms/bulk_import.py:577 msgid "Device bay in which this device is installed (for child devices)" msgstr "" "Alloggiamento del dispositivo in cui è installato questo dispositivo (per " "dispositivi per bambini)" -#: netbox/dcim/forms/bulk_import.py:644 +#: dcim/forms/bulk_import.py:644 msgid "The device in which this module is installed" msgstr "Il dispositivo in cui è installato questo modulo" -#: netbox/dcim/forms/bulk_import.py:647 netbox/dcim/forms/model_forms.py:640 +#: dcim/forms/bulk_import.py:647 dcim/forms/model_forms.py:640 msgid "Module bay" msgstr "alloggiamento per moduli" -#: netbox/dcim/forms/bulk_import.py:650 +#: dcim/forms/bulk_import.py:650 msgid "The module bay in which this module is installed" msgstr "L'alloggiamento del modulo in cui è installato questo modulo" -#: netbox/dcim/forms/bulk_import.py:656 +#: dcim/forms/bulk_import.py:656 msgid "The type of module" msgstr "Il tipo di modulo" -#: netbox/dcim/forms/bulk_import.py:664 netbox/dcim/forms/model_forms.py:656 +#: dcim/forms/bulk_import.py:664 dcim/forms/model_forms.py:656 msgid "Replicate components" msgstr "Componenti replicati" -#: netbox/dcim/forms/bulk_import.py:666 +#: dcim/forms/bulk_import.py:666 msgid "" "Automatically populate components associated with this module type (enabled " "by default)" @@ -4348,271 +3955,264 @@ msgstr "" "Compila automaticamente i componenti associati a questo tipo di modulo " "(abilitato per impostazione predefinita)" -#: netbox/dcim/forms/bulk_import.py:669 netbox/dcim/forms/model_forms.py:662 +#: dcim/forms/bulk_import.py:669 dcim/forms/model_forms.py:662 msgid "Adopt components" msgstr "Adotta i componenti" -#: netbox/dcim/forms/bulk_import.py:671 netbox/dcim/forms/model_forms.py:665 +#: dcim/forms/bulk_import.py:671 dcim/forms/model_forms.py:665 msgid "Adopt already existing components" msgstr "Adotta componenti già esistenti" -#: netbox/dcim/forms/bulk_import.py:711 netbox/dcim/forms/bulk_import.py:737 -#: netbox/dcim/forms/bulk_import.py:763 +#: dcim/forms/bulk_import.py:711 dcim/forms/bulk_import.py:737 +#: dcim/forms/bulk_import.py:763 msgid "Port type" msgstr "Tipo di porta" -#: netbox/dcim/forms/bulk_import.py:719 netbox/dcim/forms/bulk_import.py:745 +#: dcim/forms/bulk_import.py:719 dcim/forms/bulk_import.py:745 msgid "Port speed in bps" msgstr "Velocità della porta in bps" -#: netbox/dcim/forms/bulk_import.py:783 +#: dcim/forms/bulk_import.py:783 msgid "Outlet type" msgstr "Tipo di presa" -#: netbox/dcim/forms/bulk_import.py:790 +#: dcim/forms/bulk_import.py:790 msgid "Local power port which feeds this outlet" msgstr "Porta di alimentazione locale che alimenta questa presa" -#: netbox/dcim/forms/bulk_import.py:796 +#: dcim/forms/bulk_import.py:796 msgid "Electrical phase (for three-phase circuits)" msgstr "Fase elettrica (per circuiti trifase)" -#: netbox/dcim/forms/bulk_import.py:837 netbox/dcim/forms/model_forms.py:1316 -#: netbox/virtualization/forms/bulk_import.py:155 -#: netbox/virtualization/forms/model_forms.py:305 +#: dcim/forms/bulk_import.py:837 dcim/forms/model_forms.py:1316 +#: virtualization/forms/bulk_import.py:155 +#: virtualization/forms/model_forms.py:305 msgid "Parent interface" msgstr "Interfaccia principale" -#: netbox/dcim/forms/bulk_import.py:844 netbox/dcim/forms/model_forms.py:1324 -#: netbox/virtualization/forms/bulk_import.py:162 -#: netbox/virtualization/forms/model_forms.py:313 +#: dcim/forms/bulk_import.py:844 dcim/forms/model_forms.py:1324 +#: virtualization/forms/bulk_import.py:162 +#: virtualization/forms/model_forms.py:313 msgid "Bridged interface" msgstr "Interfaccia con ponte" -#: netbox/dcim/forms/bulk_import.py:847 +#: dcim/forms/bulk_import.py:847 msgid "Lag" msgstr "Ritardo" -#: netbox/dcim/forms/bulk_import.py:851 +#: dcim/forms/bulk_import.py:851 msgid "Parent LAG interface" msgstr "Interfaccia LAG principale" -#: netbox/dcim/forms/bulk_import.py:854 +#: dcim/forms/bulk_import.py:854 msgid "Vdcs" msgstr "Vdc" -#: netbox/dcim/forms/bulk_import.py:859 +#: dcim/forms/bulk_import.py:859 msgid "VDC names separated by commas, encased with double quotes. Example:" msgstr "" "Nomi VDC separati da virgole, racchiusi tra virgolette doppie. Esempio:" -#: netbox/dcim/forms/bulk_import.py:865 +#: dcim/forms/bulk_import.py:865 msgid "Physical medium" msgstr "Supporto fisico" -#: netbox/dcim/forms/bulk_import.py:868 netbox/dcim/forms/filtersets.py:1365 +#: dcim/forms/bulk_import.py:868 dcim/forms/filtersets.py:1365 msgid "Duplex" msgstr "Duplex" -#: netbox/dcim/forms/bulk_import.py:873 +#: dcim/forms/bulk_import.py:873 msgid "Poe mode" msgstr "modalità Poe" -#: netbox/dcim/forms/bulk_import.py:879 +#: dcim/forms/bulk_import.py:879 msgid "Poe type" msgstr "Tipo Poe" -#: netbox/dcim/forms/bulk_import.py:888 -#: netbox/virtualization/forms/bulk_import.py:168 +#: dcim/forms/bulk_import.py:888 virtualization/forms/bulk_import.py:168 msgid "IEEE 802.1Q operational mode (for L2 interfaces)" msgstr "Modalità operativa IEEE 802.1Q (per interfacce L2)" -#: netbox/dcim/forms/bulk_import.py:895 netbox/ipam/forms/bulk_import.py:161 -#: netbox/ipam/forms/bulk_import.py:247 netbox/ipam/forms/bulk_import.py:283 -#: netbox/ipam/forms/filtersets.py:201 netbox/ipam/forms/filtersets.py:277 -#: netbox/ipam/forms/filtersets.py:336 -#: netbox/virtualization/forms/bulk_import.py:175 +#: dcim/forms/bulk_import.py:895 ipam/forms/bulk_import.py:161 +#: ipam/forms/bulk_import.py:247 ipam/forms/bulk_import.py:283 +#: ipam/forms/filtersets.py:201 ipam/forms/filtersets.py:277 +#: ipam/forms/filtersets.py:336 virtualization/forms/bulk_import.py:175 msgid "Assigned VRF" msgstr "VRF assegnato" -#: netbox/dcim/forms/bulk_import.py:898 +#: dcim/forms/bulk_import.py:898 msgid "Rf role" msgstr "Ruolo Rf" -#: netbox/dcim/forms/bulk_import.py:901 +#: dcim/forms/bulk_import.py:901 msgid "Wireless role (AP/station)" msgstr "Ruolo wireless (AP/stazione)" -#: netbox/dcim/forms/bulk_import.py:937 +#: dcim/forms/bulk_import.py:937 #, python-brace-format msgid "VDC {vdc} is not assigned to device {device}" msgstr "VDC {vdc} non è assegnato al dispositivo {device}" -#: netbox/dcim/forms/bulk_import.py:951 netbox/dcim/forms/model_forms.py:1000 -#: netbox/dcim/forms/model_forms.py:1575 -#: netbox/dcim/forms/object_import.py:117 +#: dcim/forms/bulk_import.py:951 dcim/forms/model_forms.py:1000 +#: dcim/forms/model_forms.py:1575 dcim/forms/object_import.py:117 msgid "Rear port" msgstr "Porta posteriore" -#: netbox/dcim/forms/bulk_import.py:954 +#: dcim/forms/bulk_import.py:954 msgid "Corresponding rear port" msgstr "Porta posteriore corrispondente" -#: netbox/dcim/forms/bulk_import.py:959 netbox/dcim/forms/bulk_import.py:1000 -#: netbox/dcim/forms/bulk_import.py:1216 +#: dcim/forms/bulk_import.py:959 dcim/forms/bulk_import.py:1000 +#: dcim/forms/bulk_import.py:1216 msgid "Physical medium classification" msgstr "Classificazione del mezzo fisico" -#: netbox/dcim/forms/bulk_import.py:1028 netbox/dcim/tables/devices.py:822 +#: dcim/forms/bulk_import.py:1028 dcim/tables/devices.py:822 msgid "Installed device" msgstr "Dispositivo installato" -#: netbox/dcim/forms/bulk_import.py:1032 +#: dcim/forms/bulk_import.py:1032 msgid "Child device installed within this bay" msgstr "" "Dispositivo per bambini installato all'interno di questo alloggiamento" -#: netbox/dcim/forms/bulk_import.py:1034 +#: dcim/forms/bulk_import.py:1034 msgid "Child device not found." msgstr "Dispositivo secondario non trovato." -#: netbox/dcim/forms/bulk_import.py:1092 +#: dcim/forms/bulk_import.py:1092 msgid "Parent inventory item" msgstr "Articolo di inventario principale" -#: netbox/dcim/forms/bulk_import.py:1095 +#: dcim/forms/bulk_import.py:1095 msgid "Component type" msgstr "Tipo di componente" -#: netbox/dcim/forms/bulk_import.py:1099 +#: dcim/forms/bulk_import.py:1099 msgid "Component Type" msgstr "Tipo di componente" -#: netbox/dcim/forms/bulk_import.py:1102 +#: dcim/forms/bulk_import.py:1102 msgid "Compnent name" msgstr "Nome del componente" -#: netbox/dcim/forms/bulk_import.py:1104 +#: dcim/forms/bulk_import.py:1104 msgid "Component Name" msgstr "Nome del componente" -#: netbox/dcim/forms/bulk_import.py:1146 +#: dcim/forms/bulk_import.py:1146 #, python-brace-format msgid "Component not found: {device} - {component_name}" msgstr "Componente non trovato: {device} - {component_name}" -#: netbox/dcim/forms/bulk_import.py:1171 +#: dcim/forms/bulk_import.py:1171 msgid "Side A device" msgstr "Dispositivo lato A" -#: netbox/dcim/forms/bulk_import.py:1174 netbox/dcim/forms/bulk_import.py:1192 +#: dcim/forms/bulk_import.py:1174 dcim/forms/bulk_import.py:1192 msgid "Device name" msgstr "Nome del dispositivo" -#: netbox/dcim/forms/bulk_import.py:1177 +#: dcim/forms/bulk_import.py:1177 msgid "Side A type" msgstr "Tipo Lato A" -#: netbox/dcim/forms/bulk_import.py:1180 netbox/dcim/forms/bulk_import.py:1198 +#: dcim/forms/bulk_import.py:1180 dcim/forms/bulk_import.py:1198 msgid "Termination type" msgstr "Tipo di terminazione" -#: netbox/dcim/forms/bulk_import.py:1183 +#: dcim/forms/bulk_import.py:1183 msgid "Side A name" msgstr "Nome del lato A" -#: netbox/dcim/forms/bulk_import.py:1184 netbox/dcim/forms/bulk_import.py:1202 +#: dcim/forms/bulk_import.py:1184 dcim/forms/bulk_import.py:1202 msgid "Termination name" msgstr "Nome della cessazione" -#: netbox/dcim/forms/bulk_import.py:1189 +#: dcim/forms/bulk_import.py:1189 msgid "Side B device" msgstr "Dispositivo lato B" -#: netbox/dcim/forms/bulk_import.py:1195 +#: dcim/forms/bulk_import.py:1195 msgid "Side B type" msgstr "Tipo B laterale" -#: netbox/dcim/forms/bulk_import.py:1201 +#: dcim/forms/bulk_import.py:1201 msgid "Side B name" msgstr "Nome lato B" -#: netbox/dcim/forms/bulk_import.py:1210 -#: netbox/wireless/forms/bulk_import.py:86 +#: dcim/forms/bulk_import.py:1210 wireless/forms/bulk_import.py:86 msgid "Connection status" msgstr "Stato della connessione" -#: netbox/dcim/forms/bulk_import.py:1262 +#: dcim/forms/bulk_import.py:1262 #, python-brace-format msgid "Side {side_upper}: {device} {termination_object} is already connected" msgstr "Lato {side_upper}: {device} {termination_object} è già connesso" -#: netbox/dcim/forms/bulk_import.py:1268 +#: dcim/forms/bulk_import.py:1268 #, python-brace-format msgid "{side_upper} side termination not found: {device} {name}" msgstr "{side_upper} terminazione laterale non trovata: {device} {name}" -#: netbox/dcim/forms/bulk_import.py:1293 netbox/dcim/forms/model_forms.py:785 -#: netbox/dcim/tables/devices.py:1027 netbox/templates/dcim/device.html:132 -#: netbox/templates/dcim/virtualchassis.html:27 -#: netbox/templates/dcim/virtualchassis.html:67 +#: dcim/forms/bulk_import.py:1293 dcim/forms/model_forms.py:785 +#: dcim/tables/devices.py:1027 templates/dcim/device.html:132 +#: templates/dcim/virtualchassis.html:27 templates/dcim/virtualchassis.html:67 msgid "Master" msgstr "Maestro" -#: netbox/dcim/forms/bulk_import.py:1297 +#: dcim/forms/bulk_import.py:1297 msgid "Master device" msgstr "Dispositivo master" -#: netbox/dcim/forms/bulk_import.py:1314 +#: dcim/forms/bulk_import.py:1314 msgid "Name of parent site" msgstr "Nome del sito principale" -#: netbox/dcim/forms/bulk_import.py:1348 +#: dcim/forms/bulk_import.py:1348 msgid "Upstream power panel" msgstr "Pannello di alimentazione upstream" -#: netbox/dcim/forms/bulk_import.py:1378 +#: dcim/forms/bulk_import.py:1378 msgid "Primary or redundant" msgstr "Primario o ridondante" -#: netbox/dcim/forms/bulk_import.py:1383 +#: dcim/forms/bulk_import.py:1383 msgid "Supply type (AC/DC)" msgstr "Tipo di alimentazione (AC/DC)" -#: netbox/dcim/forms/bulk_import.py:1388 +#: dcim/forms/bulk_import.py:1388 msgid "Single or three-phase" msgstr "Monofase o trifase" -#: netbox/dcim/forms/bulk_import.py:1439 netbox/dcim/forms/model_forms.py:1670 -#: netbox/templates/dcim/device.html:190 -#: netbox/templates/dcim/virtualdevicecontext.html:30 -#: netbox/templates/virtualization/virtualmachine.html:52 +#: dcim/forms/bulk_import.py:1439 dcim/forms/model_forms.py:1670 +#: templates/dcim/device.html:190 templates/dcim/virtualdevicecontext.html:30 +#: templates/virtualization/virtualmachine.html:52 msgid "Primary IPv4" msgstr "IPv4 primario" -#: netbox/dcim/forms/bulk_import.py:1443 +#: dcim/forms/bulk_import.py:1443 msgid "IPv4 address with mask, e.g. 1.2.3.4/24" msgstr "Indirizzo IPv4 con maschera, ad esempio 1.2.3.4/24" -#: netbox/dcim/forms/bulk_import.py:1446 netbox/dcim/forms/model_forms.py:1679 -#: netbox/templates/dcim/device.html:206 -#: netbox/templates/dcim/virtualdevicecontext.html:41 -#: netbox/templates/virtualization/virtualmachine.html:68 +#: dcim/forms/bulk_import.py:1446 dcim/forms/model_forms.py:1679 +#: templates/dcim/device.html:206 templates/dcim/virtualdevicecontext.html:41 +#: templates/virtualization/virtualmachine.html:68 msgid "Primary IPv6" msgstr "IPv6 primario" -#: netbox/dcim/forms/bulk_import.py:1450 +#: dcim/forms/bulk_import.py:1450 msgid "IPv6 address with prefix length, e.g. 2001:db8::1/64" msgstr "Indirizzo IPv6 con lunghezza del prefisso, ad esempio 2001:db8: :1/64" -#: netbox/dcim/forms/common.py:24 netbox/dcim/models/device_components.py:527 -#: netbox/templates/dcim/interface.html:57 -#: netbox/templates/virtualization/vminterface.html:55 -#: netbox/virtualization/forms/bulk_edit.py:225 +#: dcim/forms/common.py:24 dcim/models/device_components.py:527 +#: templates/dcim/interface.html:57 +#: templates/virtualization/vminterface.html:55 +#: virtualization/forms/bulk_edit.py:225 msgid "MTU" msgstr "MTU" -#: netbox/dcim/forms/common.py:65 +#: dcim/forms/common.py:65 #, python-brace-format msgid "" "The tagged VLANs ({vlans}) must belong to the same site as the interface's " @@ -4622,7 +4222,7 @@ msgstr "" "dispositivo/macchina virtuale principale dell'interfaccia oppure devono " "essere globali" -#: netbox/dcim/forms/common.py:126 +#: dcim/forms/common.py:126 msgid "" "Cannot install module with placeholder values in a module bay with no " "position defined." @@ -4630,7 +4230,7 @@ msgstr "" "Impossibile installare un modulo con valori segnaposto in un alloggiamento " "per moduli senza una posizione definita." -#: netbox/dcim/forms/common.py:131 +#: dcim/forms/common.py:131 #, python-brace-format msgid "" "Cannot install module with placeholder values in a module bay tree {level} " @@ -4639,204 +4239,189 @@ msgstr "" "Impossibile installare un modulo con valori segnaposto in un albero di " "alloggiamento del modulo {level} in un albero ma {tokens} segnaposto dati." -#: netbox/dcim/forms/common.py:144 +#: dcim/forms/common.py:144 #, python-brace-format msgid "Cannot adopt {model} {name} as it already belongs to a module" msgstr "Non può adottare {model} {name} in quanto appartiene già a un modulo" -#: netbox/dcim/forms/common.py:153 +#: dcim/forms/common.py:153 #, python-brace-format msgid "A {model} named {name} already exists" msgstr "UN {model} denominato {name} esiste già" -#: netbox/dcim/forms/connections.py:49 netbox/dcim/forms/model_forms.py:738 -#: netbox/dcim/tables/power.py:66 -#: netbox/templates/dcim/inc/cable_termination.html:37 -#: netbox/templates/dcim/powerfeed.html:24 -#: netbox/templates/dcim/powerpanel.html:19 -#: netbox/templates/dcim/trace/powerpanel.html:4 +#: dcim/forms/connections.py:49 dcim/forms/model_forms.py:738 +#: dcim/tables/power.py:66 templates/dcim/inc/cable_termination.html:37 +#: templates/dcim/powerfeed.html:24 templates/dcim/powerpanel.html:19 +#: templates/dcim/trace/powerpanel.html:4 msgid "Power Panel" msgstr "Pannello di alimentazione" -#: netbox/dcim/forms/connections.py:58 netbox/dcim/forms/model_forms.py:765 -#: netbox/templates/dcim/powerfeed.html:21 -#: netbox/templates/dcim/powerport.html:80 +#: dcim/forms/connections.py:58 dcim/forms/model_forms.py:765 +#: templates/dcim/powerfeed.html:21 templates/dcim/powerport.html:80 msgid "Power Feed" msgstr "Alimentazione" -#: netbox/dcim/forms/connections.py:81 +#: dcim/forms/connections.py:81 msgid "Side" msgstr "Lato" -#: netbox/dcim/forms/filtersets.py:136 netbox/dcim/tables/devices.py:295 +#: dcim/forms/filtersets.py:136 dcim/tables/devices.py:295 msgid "Device Status" msgstr "Stato del dispositivo" -#: netbox/dcim/forms/filtersets.py:149 +#: dcim/forms/filtersets.py:149 msgid "Parent region" msgstr "Regione principale" -#: netbox/dcim/forms/filtersets.py:163 netbox/tenancy/forms/bulk_import.py:28 -#: netbox/tenancy/forms/bulk_import.py:62 -#: netbox/tenancy/forms/filtersets.py:33 netbox/tenancy/forms/filtersets.py:62 -#: netbox/wireless/forms/bulk_import.py:25 -#: netbox/wireless/forms/filtersets.py:25 +#: dcim/forms/filtersets.py:163 tenancy/forms/bulk_import.py:28 +#: tenancy/forms/bulk_import.py:62 tenancy/forms/filtersets.py:33 +#: tenancy/forms/filtersets.py:62 wireless/forms/bulk_import.py:25 +#: wireless/forms/filtersets.py:25 msgid "Parent group" msgstr "Gruppo di genitori" -#: netbox/dcim/forms/filtersets.py:242 netbox/templates/dcim/location.html:58 -#: netbox/templates/dcim/site.html:56 +#: dcim/forms/filtersets.py:242 templates/dcim/location.html:58 +#: templates/dcim/site.html:56 msgid "Facility" msgstr "Struttura" -#: netbox/dcim/forms/filtersets.py:380 +#: dcim/forms/filtersets.py:380 msgid "Rack type" msgstr "Tipo di rack" -#: netbox/dcim/forms/filtersets.py:397 +#: dcim/forms/filtersets.py:397 msgid "Function" msgstr "Funzione" -#: netbox/dcim/forms/filtersets.py:483 netbox/dcim/forms/model_forms.py:373 -#: netbox/templates/inc/panels/image_attachments.html:6 +#: dcim/forms/filtersets.py:483 dcim/forms/model_forms.py:373 +#: templates/inc/panels/image_attachments.html:6 msgid "Images" msgstr "Immagini" -#: netbox/dcim/forms/filtersets.py:486 netbox/dcim/forms/filtersets.py:611 -#: netbox/dcim/forms/filtersets.py:726 +#: dcim/forms/filtersets.py:486 dcim/forms/filtersets.py:611 +#: dcim/forms/filtersets.py:726 msgid "Components" msgstr "Componenti" -#: netbox/dcim/forms/filtersets.py:506 +#: dcim/forms/filtersets.py:506 msgid "Subdevice role" msgstr "Ruolo del dispositivo secondario" -#: netbox/dcim/forms/filtersets.py:790 netbox/dcim/tables/racks.py:54 -#: netbox/templates/dcim/racktype.html:20 +#: dcim/forms/filtersets.py:790 dcim/tables/racks.py:54 +#: templates/dcim/racktype.html:20 msgid "Model" msgstr "Modello" -#: netbox/dcim/forms/filtersets.py:834 +#: dcim/forms/filtersets.py:834 msgid "Has an OOB IP" msgstr "Ha un IP OOB" -#: netbox/dcim/forms/filtersets.py:841 +#: dcim/forms/filtersets.py:841 msgid "Virtual chassis member" msgstr "Membro virtuale dello chassis" -#: netbox/dcim/forms/filtersets.py:890 +#: dcim/forms/filtersets.py:890 msgid "Has virtual device contexts" msgstr "Dispone di contesti di dispositivi virtuali" -#: netbox/dcim/forms/filtersets.py:903 netbox/extras/filtersets.py:585 -#: netbox/ipam/forms/bulk_edit.py:479 netbox/ipam/forms/filtersets.py:452 -#: netbox/virtualization/forms/filtersets.py:112 +#: dcim/forms/filtersets.py:903 extras/filtersets.py:585 +#: ipam/forms/filtersets.py:452 virtualization/forms/filtersets.py:112 msgid "Cluster group" msgstr "Gruppo Cluster" -#: netbox/dcim/forms/filtersets.py:1210 +#: dcim/forms/filtersets.py:1210 msgid "Cabled" msgstr "cablato" -#: netbox/dcim/forms/filtersets.py:1217 +#: dcim/forms/filtersets.py:1217 msgid "Occupied" msgstr "Occupato" -#: netbox/dcim/forms/filtersets.py:1244 netbox/dcim/forms/filtersets.py:1269 -#: netbox/dcim/forms/filtersets.py:1293 netbox/dcim/forms/filtersets.py:1313 -#: netbox/dcim/forms/filtersets.py:1336 netbox/dcim/tables/devices.py:364 -#: netbox/templates/dcim/consoleport.html:55 -#: netbox/templates/dcim/consoleserverport.html:55 -#: netbox/templates/dcim/frontport.html:69 -#: netbox/templates/dcim/interface.html:140 -#: netbox/templates/dcim/powerfeed.html:110 -#: netbox/templates/dcim/poweroutlet.html:59 -#: netbox/templates/dcim/powerport.html:59 -#: netbox/templates/dcim/rearport.html:65 +#: dcim/forms/filtersets.py:1244 dcim/forms/filtersets.py:1269 +#: dcim/forms/filtersets.py:1293 dcim/forms/filtersets.py:1313 +#: dcim/forms/filtersets.py:1336 dcim/tables/devices.py:364 +#: templates/dcim/consoleport.html:55 templates/dcim/consoleserverport.html:55 +#: templates/dcim/frontport.html:69 templates/dcim/interface.html:140 +#: templates/dcim/powerfeed.html:110 templates/dcim/poweroutlet.html:59 +#: templates/dcim/powerport.html:59 templates/dcim/rearport.html:65 msgid "Connection" msgstr "Connessione" -#: netbox/dcim/forms/filtersets.py:1348 netbox/extras/forms/bulk_edit.py:326 -#: netbox/extras/forms/bulk_import.py:247 -#: netbox/extras/forms/filtersets.py:464 -#: netbox/extras/forms/model_forms.py:675 netbox/extras/tables/tables.py:579 -#: netbox/templates/extras/journalentry.html:30 +#: dcim/forms/filtersets.py:1348 extras/forms/bulk_edit.py:326 +#: extras/forms/bulk_import.py:247 extras/forms/filtersets.py:464 +#: extras/forms/model_forms.py:675 extras/tables/tables.py:579 +#: templates/extras/journalentry.html:30 msgid "Kind" msgstr "Gentile" -#: netbox/dcim/forms/filtersets.py:1377 +#: dcim/forms/filtersets.py:1377 msgid "Mgmt only" msgstr "Solo gestione" -#: netbox/dcim/forms/filtersets.py:1389 netbox/dcim/forms/model_forms.py:1383 -#: netbox/dcim/models/device_components.py:629 -#: netbox/templates/dcim/interface.html:129 +#: dcim/forms/filtersets.py:1389 dcim/forms/model_forms.py:1383 +#: dcim/models/device_components.py:629 templates/dcim/interface.html:129 msgid "WWN" msgstr "WWN" -#: netbox/dcim/forms/filtersets.py:1409 +#: dcim/forms/filtersets.py:1409 msgid "Wireless channel" msgstr "Canale wireless" -#: netbox/dcim/forms/filtersets.py:1413 +#: dcim/forms/filtersets.py:1413 msgid "Channel frequency (MHz)" msgstr "Frequenza del canale (MHz)" -#: netbox/dcim/forms/filtersets.py:1417 +#: dcim/forms/filtersets.py:1417 msgid "Channel width (MHz)" msgstr "Larghezza del canale (MHz)" -#: netbox/dcim/forms/filtersets.py:1421 -#: netbox/templates/dcim/interface.html:85 +#: dcim/forms/filtersets.py:1421 templates/dcim/interface.html:85 msgid "Transmit power (dBm)" msgstr "Potenza di trasmissione (dBm)" -#: netbox/dcim/forms/filtersets.py:1446 netbox/dcim/forms/filtersets.py:1471 -#: netbox/dcim/tables/devices.py:327 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:50 -#: netbox/templates/dcim/inc/connection_endpoints.html:4 -#: netbox/templates/dcim/rearport.html:73 -#: netbox/templates/dcim/trace/cable.html:7 +#: dcim/forms/filtersets.py:1446 dcim/forms/filtersets.py:1471 +#: dcim/tables/devices.py:327 templates/dcim/cable.html:12 +#: templates/dcim/cable_trace.html:46 templates/dcim/frontport.html:77 +#: templates/dcim/htmx/cable_edit.html:50 +#: templates/dcim/inc/connection_endpoints.html:4 +#: templates/dcim/rearport.html:73 templates/dcim/trace/cable.html:7 msgid "Cable" msgstr "Cavo" -#: netbox/dcim/forms/filtersets.py:1550 netbox/dcim/tables/devices.py:949 +#: dcim/forms/filtersets.py:1550 dcim/tables/devices.py:949 msgid "Discovered" msgstr "Scoperto" -#: netbox/dcim/forms/formsets.py:20 +#: dcim/forms/formsets.py:20 #, python-brace-format msgid "A virtual chassis member already exists in position {vc_position}." msgstr "" "Un membro virtuale dello chassis esiste già in posizione {vc_position}." -#: netbox/dcim/forms/model_forms.py:140 +#: dcim/forms/model_forms.py:140 msgid "Contact Info" msgstr "Informazioni di contatto" -#: netbox/dcim/forms/model_forms.py:195 netbox/templates/dcim/rackrole.html:19 +#: dcim/forms/model_forms.py:195 templates/dcim/rackrole.html:19 msgid "Rack Role" msgstr "Ruolo del rack" -#: netbox/dcim/forms/model_forms.py:212 netbox/dcim/forms/model_forms.py:362 -#: netbox/dcim/forms/model_forms.py:446 -#: netbox/utilities/forms/fields/fields.py:47 +#: dcim/forms/model_forms.py:212 dcim/forms/model_forms.py:362 +#: dcim/forms/model_forms.py:446 utilities/forms/fields/fields.py:47 msgid "Slug" msgstr "lumaca" -#: netbox/dcim/forms/model_forms.py:259 +#: dcim/forms/model_forms.py:259 msgid "Select a pre-defined rack type, or set physical characteristics below." msgstr "" "Seleziona un tipo di rack predefinito o imposta le caratteristiche fisiche " "di seguito." -#: netbox/dcim/forms/model_forms.py:265 +#: dcim/forms/model_forms.py:265 msgid "Inventory Control" msgstr "Controllo dell'inventario" -#: netbox/dcim/forms/model_forms.py:313 +#: dcim/forms/model_forms.py:313 msgid "" "Comma-separated list of numeric unit IDs. A range may be specified using a " "hyphen." @@ -4844,164 +4429,147 @@ msgstr "" "Elenco separato da virgole di ID di unità numeriche. È possibile specificare" " un intervallo utilizzando un trattino." -#: netbox/dcim/forms/model_forms.py:322 netbox/dcim/tables/racks.py:202 +#: dcim/forms/model_forms.py:322 dcim/tables/racks.py:202 msgid "Reservation" msgstr "Prenotazione" -#: netbox/dcim/forms/model_forms.py:423 -#: netbox/templates/dcim/devicerole.html:23 +#: dcim/forms/model_forms.py:423 templates/dcim/devicerole.html:23 msgid "Device Role" msgstr "Ruolo del dispositivo" -#: netbox/dcim/forms/model_forms.py:490 netbox/dcim/models/devices.py:644 +#: dcim/forms/model_forms.py:490 dcim/models/devices.py:644 msgid "The lowest-numbered unit occupied by the device" msgstr "L'unità con il numero più basso occupata dal dispositivo" -#: netbox/dcim/forms/model_forms.py:547 +#: dcim/forms/model_forms.py:547 msgid "The position in the virtual chassis this device is identified by" msgstr "" "La posizione nello chassis virtuale da cui viene identificato questo " "dispositivo" -#: netbox/dcim/forms/model_forms.py:552 +#: dcim/forms/model_forms.py:552 msgid "The priority of the device in the virtual chassis" msgstr "La priorità del dispositivo nello chassis virtuale" -#: netbox/dcim/forms/model_forms.py:659 +#: dcim/forms/model_forms.py:659 msgid "Automatically populate components associated with this module type" msgstr "" "Compila automaticamente i componenti associati a questo tipo di modulo" -#: netbox/dcim/forms/model_forms.py:767 +#: dcim/forms/model_forms.py:767 msgid "Characteristics" msgstr "Caratteristiche" -#: netbox/dcim/forms/model_forms.py:1087 +#: dcim/forms/model_forms.py:1087 msgid "Console port template" msgstr "Modello di porta console" -#: netbox/dcim/forms/model_forms.py:1095 +#: dcim/forms/model_forms.py:1095 msgid "Console server port template" msgstr "Modello di porta del server console" -#: netbox/dcim/forms/model_forms.py:1103 +#: dcim/forms/model_forms.py:1103 msgid "Front port template" msgstr "Modello di porta anteriore" -#: netbox/dcim/forms/model_forms.py:1111 +#: dcim/forms/model_forms.py:1111 msgid "Interface template" msgstr "Modello di interfaccia" -#: netbox/dcim/forms/model_forms.py:1119 +#: dcim/forms/model_forms.py:1119 msgid "Power outlet template" msgstr "Modello di presa di corrente" -#: netbox/dcim/forms/model_forms.py:1127 +#: dcim/forms/model_forms.py:1127 msgid "Power port template" msgstr "Modello di porta di alimentazione" -#: netbox/dcim/forms/model_forms.py:1135 +#: dcim/forms/model_forms.py:1135 msgid "Rear port template" msgstr "Modello di porta posteriore" -#: netbox/dcim/forms/model_forms.py:1144 netbox/dcim/forms/model_forms.py:1388 -#: netbox/dcim/forms/model_forms.py:1551 netbox/dcim/forms/model_forms.py:1583 -#: netbox/dcim/tables/connections.py:65 netbox/ipam/forms/bulk_import.py:318 -#: netbox/ipam/forms/model_forms.py:280 netbox/ipam/forms/model_forms.py:289 -#: netbox/ipam/tables/fhrp.py:64 netbox/ipam/tables/ip.py:372 -#: netbox/ipam/tables/vlans.py:169 -#: netbox/templates/circuits/inc/circuit_termination_fields.html:51 -#: netbox/templates/dcim/frontport.html:106 -#: netbox/templates/dcim/interface.html:27 -#: netbox/templates/dcim/interface.html:184 -#: netbox/templates/dcim/interface.html:310 -#: netbox/templates/dcim/rearport.html:102 -#: netbox/templates/virtualization/vminterface.html:18 -#: netbox/templates/vpn/tunneltermination.html:31 -#: netbox/templates/wireless/inc/wirelesslink_interface.html:10 -#: netbox/templates/wireless/wirelesslink.html:10 -#: netbox/templates/wireless/wirelesslink.html:55 -#: netbox/virtualization/forms/model_forms.py:348 -#: netbox/vpn/forms/bulk_import.py:297 netbox/vpn/forms/model_forms.py:436 -#: netbox/vpn/forms/model_forms.py:445 -#: netbox/wireless/forms/model_forms.py:113 -#: netbox/wireless/forms/model_forms.py:155 +#: dcim/forms/model_forms.py:1144 dcim/forms/model_forms.py:1388 +#: dcim/forms/model_forms.py:1551 dcim/forms/model_forms.py:1583 +#: dcim/tables/connections.py:65 ipam/forms/bulk_import.py:318 +#: ipam/forms/model_forms.py:280 ipam/forms/model_forms.py:289 +#: ipam/tables/fhrp.py:64 ipam/tables/ip.py:372 ipam/tables/vlans.py:169 +#: templates/circuits/inc/circuit_termination_fields.html:51 +#: templates/dcim/frontport.html:106 templates/dcim/interface.html:27 +#: templates/dcim/interface.html:184 templates/dcim/interface.html:310 +#: templates/dcim/rearport.html:102 +#: templates/virtualization/vminterface.html:18 +#: templates/vpn/tunneltermination.html:31 +#: templates/wireless/inc/wirelesslink_interface.html:10 +#: templates/wireless/wirelesslink.html:10 +#: templates/wireless/wirelesslink.html:55 +#: virtualization/forms/model_forms.py:348 vpn/forms/bulk_import.py:297 +#: vpn/forms/model_forms.py:436 vpn/forms/model_forms.py:445 +#: wireless/forms/model_forms.py:113 wireless/forms/model_forms.py:155 msgid "Interface" msgstr "Interfaccia" -#: netbox/dcim/forms/model_forms.py:1145 netbox/dcim/forms/model_forms.py:1584 -#: netbox/dcim/tables/connections.py:27 -#: netbox/templates/dcim/consoleport.html:17 -#: netbox/templates/dcim/consoleserverport.html:74 -#: netbox/templates/dcim/frontport.html:112 +#: dcim/forms/model_forms.py:1145 dcim/forms/model_forms.py:1584 +#: dcim/tables/connections.py:27 templates/dcim/consoleport.html:17 +#: templates/dcim/consoleserverport.html:74 templates/dcim/frontport.html:112 msgid "Console Port" msgstr "Porta console" -#: netbox/dcim/forms/model_forms.py:1146 netbox/dcim/forms/model_forms.py:1585 -#: netbox/templates/dcim/consoleport.html:73 -#: netbox/templates/dcim/consoleserverport.html:17 -#: netbox/templates/dcim/frontport.html:109 +#: dcim/forms/model_forms.py:1146 dcim/forms/model_forms.py:1585 +#: templates/dcim/consoleport.html:73 templates/dcim/consoleserverport.html:17 +#: templates/dcim/frontport.html:109 msgid "Console Server Port" msgstr "Porta Console Server" -#: netbox/dcim/forms/model_forms.py:1147 netbox/dcim/forms/model_forms.py:1586 -#: netbox/templates/circuits/inc/circuit_termination_fields.html:52 -#: netbox/templates/dcim/consoleport.html:76 -#: netbox/templates/dcim/consoleserverport.html:77 -#: netbox/templates/dcim/frontport.html:17 -#: netbox/templates/dcim/frontport.html:115 -#: netbox/templates/dcim/interface.html:187 -#: netbox/templates/dcim/rearport.html:105 +#: dcim/forms/model_forms.py:1147 dcim/forms/model_forms.py:1586 +#: templates/circuits/inc/circuit_termination_fields.html:52 +#: templates/dcim/consoleport.html:76 templates/dcim/consoleserverport.html:77 +#: templates/dcim/frontport.html:17 templates/dcim/frontport.html:115 +#: templates/dcim/interface.html:187 templates/dcim/rearport.html:105 msgid "Front Port" msgstr "Porta anteriore" -#: netbox/dcim/forms/model_forms.py:1148 netbox/dcim/forms/model_forms.py:1587 -#: netbox/dcim/tables/devices.py:710 -#: netbox/templates/circuits/inc/circuit_termination_fields.html:53 -#: netbox/templates/dcim/consoleport.html:79 -#: netbox/templates/dcim/consoleserverport.html:80 -#: netbox/templates/dcim/frontport.html:50 -#: netbox/templates/dcim/frontport.html:118 -#: netbox/templates/dcim/interface.html:190 -#: netbox/templates/dcim/rearport.html:17 -#: netbox/templates/dcim/rearport.html:108 +#: dcim/forms/model_forms.py:1148 dcim/forms/model_forms.py:1587 +#: dcim/tables/devices.py:710 +#: templates/circuits/inc/circuit_termination_fields.html:53 +#: templates/dcim/consoleport.html:79 templates/dcim/consoleserverport.html:80 +#: templates/dcim/frontport.html:50 templates/dcim/frontport.html:118 +#: templates/dcim/interface.html:190 templates/dcim/rearport.html:17 +#: templates/dcim/rearport.html:108 msgid "Rear Port" msgstr "Porta posteriore" -#: netbox/dcim/forms/model_forms.py:1149 netbox/dcim/forms/model_forms.py:1588 -#: netbox/dcim/tables/connections.py:46 netbox/dcim/tables/devices.py:512 -#: netbox/templates/dcim/poweroutlet.html:44 -#: netbox/templates/dcim/powerport.html:17 +#: dcim/forms/model_forms.py:1149 dcim/forms/model_forms.py:1588 +#: dcim/tables/connections.py:46 dcim/tables/devices.py:512 +#: templates/dcim/poweroutlet.html:44 templates/dcim/powerport.html:17 msgid "Power Port" msgstr "Porta di alimentazione" -#: netbox/dcim/forms/model_forms.py:1150 netbox/dcim/forms/model_forms.py:1589 -#: netbox/templates/dcim/poweroutlet.html:17 -#: netbox/templates/dcim/powerport.html:77 +#: dcim/forms/model_forms.py:1150 dcim/forms/model_forms.py:1589 +#: templates/dcim/poweroutlet.html:17 templates/dcim/powerport.html:77 msgid "Power Outlet" msgstr "Presa di corrente" -#: netbox/dcim/forms/model_forms.py:1152 netbox/dcim/forms/model_forms.py:1591 +#: dcim/forms/model_forms.py:1152 dcim/forms/model_forms.py:1591 msgid "Component Assignment" msgstr "Assegnazione dei componenti" -#: netbox/dcim/forms/model_forms.py:1195 netbox/dcim/forms/model_forms.py:1638 +#: dcim/forms/model_forms.py:1195 dcim/forms/model_forms.py:1638 msgid "An InventoryItem can only be assigned to a single component." msgstr "Un InventoryItem può essere assegnato solo a un singolo componente." -#: netbox/dcim/forms/model_forms.py:1332 +#: dcim/forms/model_forms.py:1332 msgid "LAG interface" msgstr "Interfaccia LAG" -#: netbox/dcim/forms/model_forms.py:1355 +#: dcim/forms/model_forms.py:1355 msgid "Filter VLANs available for assignment by group." msgstr "Filtra le VLAN disponibili per l'assegnazione per gruppo." -#: netbox/dcim/forms/model_forms.py:1484 +#: dcim/forms/model_forms.py:1484 msgid "Child Device" msgstr "Dispositivo per bambini" -#: netbox/dcim/forms/model_forms.py:1485 +#: dcim/forms/model_forms.py:1485 msgid "" "Child devices must first be created and assigned to the site and rack of the" " parent device." @@ -5009,35 +4577,32 @@ msgstr "" "I dispositivi secondari devono prima essere creati e assegnati al sito e al " "rack del dispositivo principale." -#: netbox/dcim/forms/model_forms.py:1527 +#: dcim/forms/model_forms.py:1527 msgid "Console port" msgstr "Porta console" -#: netbox/dcim/forms/model_forms.py:1535 +#: dcim/forms/model_forms.py:1535 msgid "Console server port" msgstr "Porta console server" -#: netbox/dcim/forms/model_forms.py:1543 +#: dcim/forms/model_forms.py:1543 msgid "Front port" msgstr "Porta anteriore" -#: netbox/dcim/forms/model_forms.py:1559 +#: dcim/forms/model_forms.py:1559 msgid "Power outlet" msgstr "Presa di corrente" -#: netbox/dcim/forms/model_forms.py:1579 -#: netbox/templates/dcim/inventoryitem.html:17 +#: dcim/forms/model_forms.py:1579 templates/dcim/inventoryitem.html:17 msgid "Inventory Item" msgstr "Articolo di inventario" -#: netbox/dcim/forms/model_forms.py:1652 -#: netbox/templates/dcim/inventoryitemrole.html:15 +#: dcim/forms/model_forms.py:1652 templates/dcim/inventoryitemrole.html:15 msgid "Inventory Item Role" msgstr "Ruolo dell'articolo di inventario" -#: netbox/dcim/forms/object_create.py:48 -#: netbox/dcim/forms/object_create.py:199 -#: netbox/dcim/forms/object_create.py:355 +#: dcim/forms/object_create.py:48 dcim/forms/object_create.py:199 +#: dcim/forms/object_create.py:355 msgid "" "Alphanumeric ranges are supported. (Must match the number of objects being " "created.)" @@ -5045,7 +4610,7 @@ msgstr "" "Sono supportati gli intervalli alfanumerici. (Deve corrispondere al numero " "di oggetti da creare.)" -#: netbox/dcim/forms/object_create.py:68 +#: dcim/forms/object_create.py:68 #, python-brace-format msgid "" "The provided pattern specifies {value_count} values, but {pattern_count} are" @@ -5054,19 +4619,18 @@ msgstr "" "Il modello fornito specifica {value_count} valori, ma {pattern_count} sono " "attesi." -#: netbox/dcim/forms/object_create.py:110 -#: netbox/dcim/forms/object_create.py:271 netbox/dcim/tables/devices.py:252 +#: dcim/forms/object_create.py:110 dcim/forms/object_create.py:271 +#: dcim/tables/devices.py:252 msgid "Rear ports" msgstr "Porte posteriori" -#: netbox/dcim/forms/object_create.py:111 -#: netbox/dcim/forms/object_create.py:272 +#: dcim/forms/object_create.py:111 dcim/forms/object_create.py:272 msgid "Select one rear port assignment for each front port being created." msgstr "" "Seleziona un'assegnazione della porta posteriore per ogni porta anteriore da" " creare." -#: netbox/dcim/forms/object_create.py:164 +#: dcim/forms/object_create.py:164 #, python-brace-format msgid "" "The number of front port templates to be created ({frontport_count}) must " @@ -5076,7 +4640,7 @@ msgstr "" "corrispondere al numero selezionato di posizioni delle porte posteriori " "({rearport_count})." -#: netbox/dcim/forms/object_create.py:251 +#: dcim/forms/object_create.py:251 #, python-brace-format msgid "" "The string {module} will be replaced with the position of the " @@ -5085,7 +4649,7 @@ msgstr "" "La corda {module} verrà sostituita dalla posizione del modulo " "assegnato, se presente." -#: netbox/dcim/forms/object_create.py:320 +#: dcim/forms/object_create.py:320 #, python-brace-format msgid "" "The number of front ports to be created ({frontport_count}) must match the " @@ -5095,18 +4659,17 @@ msgstr "" " al numero selezionato di posizioni delle porte posteriori " "({rearport_count})." -#: netbox/dcim/forms/object_create.py:409 netbox/dcim/tables/devices.py:1033 -#: netbox/ipam/tables/fhrp.py:31 netbox/templates/dcim/virtualchassis.html:53 -#: netbox/templates/dcim/virtualchassis_edit.html:47 -#: netbox/templates/ipam/fhrpgroup.html:38 +#: dcim/forms/object_create.py:409 dcim/tables/devices.py:1033 +#: ipam/tables/fhrp.py:31 templates/dcim/virtualchassis.html:53 +#: templates/dcim/virtualchassis_edit.html:47 templates/ipam/fhrpgroup.html:38 msgid "Members" msgstr "Membri" -#: netbox/dcim/forms/object_create.py:418 +#: dcim/forms/object_create.py:418 msgid "Initial position" msgstr "Posizione iniziale" -#: netbox/dcim/forms/object_create.py:421 +#: dcim/forms/object_create.py:421 msgid "" "Position of the first member device. Increases by one for each additional " "member." @@ -5114,71 +4677,69 @@ msgstr "" "Posizione del primo dispositivo membro. Aumenta di uno per ogni membro " "aggiuntivo." -#: netbox/dcim/forms/object_create.py:435 +#: dcim/forms/object_create.py:435 msgid "A position must be specified for the first VC member." msgstr "È necessario specificare una posizione per il primo membro VC." -#: netbox/dcim/models/cables.py:62 -#: netbox/dcim/models/device_component_templates.py:55 -#: netbox/dcim/models/device_components.py:62 -#: netbox/extras/models/customfields.py:111 +#: dcim/models/cables.py:62 dcim/models/device_component_templates.py:55 +#: dcim/models/device_components.py:62 extras/models/customfields.py:111 msgid "label" msgstr "etichetta" -#: netbox/dcim/models/cables.py:71 +#: dcim/models/cables.py:71 msgid "length" msgstr "lunghezza" -#: netbox/dcim/models/cables.py:78 +#: dcim/models/cables.py:78 msgid "length unit" msgstr "unità di lunghezza" -#: netbox/dcim/models/cables.py:95 +#: dcim/models/cables.py:95 msgid "cable" msgstr "cavo" -#: netbox/dcim/models/cables.py:96 +#: dcim/models/cables.py:96 msgid "cables" msgstr "cavi" -#: netbox/dcim/models/cables.py:165 +#: dcim/models/cables.py:165 msgid "Must specify a unit when setting a cable length" msgstr "" "È necessario specificare un'unità quando si imposta la lunghezza del cavo" -#: netbox/dcim/models/cables.py:168 +#: dcim/models/cables.py:168 msgid "Must define A and B terminations when creating a new cable." msgstr "" "È necessario definire le terminazioni A e B quando si crea un nuovo cavo." -#: netbox/dcim/models/cables.py:175 +#: dcim/models/cables.py:175 msgid "Cannot connect different termination types to same end of cable." msgstr "" "Non è possibile collegare tipi di terminazione diversi alla stessa estremità" " del cavo." -#: netbox/dcim/models/cables.py:183 +#: dcim/models/cables.py:183 #, python-brace-format msgid "Incompatible termination types: {type_a} and {type_b}" msgstr "Tipi di terminazione incompatibili: {type_a} e {type_b}" -#: netbox/dcim/models/cables.py:193 +#: dcim/models/cables.py:193 msgid "A and B terminations cannot connect to the same object." msgstr "Le terminazioni A e B non possono connettersi allo stesso oggetto." -#: netbox/dcim/models/cables.py:260 netbox/ipam/models/asns.py:37 +#: dcim/models/cables.py:260 ipam/models/asns.py:37 msgid "end" msgstr "fine" -#: netbox/dcim/models/cables.py:313 +#: dcim/models/cables.py:313 msgid "cable termination" msgstr "terminazione del cavo" -#: netbox/dcim/models/cables.py:314 +#: dcim/models/cables.py:314 msgid "cable terminations" msgstr "terminazioni dei cavi" -#: netbox/dcim/models/cables.py:333 +#: dcim/models/cables.py:333 #, python-brace-format msgid "" "Duplicate termination found for {app_label}.{model} {termination_id}: cable " @@ -5187,38 +4748,38 @@ msgstr "" "È stata rilevata una terminazione duplicata per {app_label}.{model} " "{termination_id}: cavo {cable_pk}" -#: netbox/dcim/models/cables.py:343 +#: dcim/models/cables.py:343 #, python-brace-format msgid "Cables cannot be terminated to {type_display} interfaces" msgstr "I cavi non possono essere terminati {type_display} interfacce" -#: netbox/dcim/models/cables.py:350 +#: dcim/models/cables.py:350 msgid "Circuit terminations attached to a provider network may not be cabled." msgstr "" "Le terminazioni dei circuiti collegate alla rete di un provider potrebbero " "non essere cablate." -#: netbox/dcim/models/cables.py:448 netbox/extras/models/configs.py:50 +#: dcim/models/cables.py:448 extras/models/configs.py:50 msgid "is active" msgstr "è attivo" -#: netbox/dcim/models/cables.py:452 +#: dcim/models/cables.py:452 msgid "is complete" msgstr "è completo" -#: netbox/dcim/models/cables.py:456 +#: dcim/models/cables.py:456 msgid "is split" msgstr "è diviso" -#: netbox/dcim/models/cables.py:464 +#: dcim/models/cables.py:464 msgid "cable path" msgstr "percorso via cavo" -#: netbox/dcim/models/cables.py:465 +#: dcim/models/cables.py:465 msgid "cable paths" msgstr "percorsi via cavo" -#: netbox/dcim/models/device_component_templates.py:46 +#: dcim/models/device_component_templates.py:46 #, python-brace-format msgid "" "{module} is accepted as a substitution for the module bay position when " @@ -5227,18 +4788,18 @@ msgstr "" "{module} è accettato come sostituto della posizione dell'alloggiamento del " "modulo quando è collegato a un tipo di modulo." -#: netbox/dcim/models/device_component_templates.py:58 -#: netbox/dcim/models/device_components.py:65 +#: dcim/models/device_component_templates.py:58 +#: dcim/models/device_components.py:65 msgid "Physical label" msgstr "Etichetta fisica" -#: netbox/dcim/models/device_component_templates.py:103 +#: dcim/models/device_component_templates.py:103 msgid "Component templates cannot be moved to a different device type." msgstr "" "I modelli di componente non possono essere spostati su un tipo di " "dispositivo diverso." -#: netbox/dcim/models/device_component_templates.py:154 +#: dcim/models/device_component_templates.py:154 msgid "" "A component template cannot be associated with both a device type and a " "module type." @@ -5246,7 +4807,7 @@ msgstr "" "Un modello di componente non può essere associato sia a un tipo di " "dispositivo che a un tipo di modulo." -#: netbox/dcim/models/device_component_templates.py:158 +#: dcim/models/device_component_templates.py:158 msgid "" "A component template must be associated with either a device type or a " "module type." @@ -5254,142 +4815,142 @@ msgstr "" "Un modello di componente deve essere associato a un tipo di dispositivo o a " "un tipo di modulo." -#: netbox/dcim/models/device_component_templates.py:212 +#: dcim/models/device_component_templates.py:212 msgid "console port template" msgstr "modello di porta console" -#: netbox/dcim/models/device_component_templates.py:213 +#: dcim/models/device_component_templates.py:213 msgid "console port templates" msgstr "modelli di porte per console" -#: netbox/dcim/models/device_component_templates.py:246 +#: dcim/models/device_component_templates.py:246 msgid "console server port template" msgstr "modello di porta console server" -#: netbox/dcim/models/device_component_templates.py:247 +#: dcim/models/device_component_templates.py:247 msgid "console server port templates" msgstr "modelli di porte per console server" -#: netbox/dcim/models/device_component_templates.py:278 -#: netbox/dcim/models/device_components.py:352 +#: dcim/models/device_component_templates.py:278 +#: dcim/models/device_components.py:352 msgid "maximum draw" msgstr "pareggio massimo" -#: netbox/dcim/models/device_component_templates.py:285 -#: netbox/dcim/models/device_components.py:359 +#: dcim/models/device_component_templates.py:285 +#: dcim/models/device_components.py:359 msgid "allocated draw" msgstr "pareggio assegnato" -#: netbox/dcim/models/device_component_templates.py:295 +#: dcim/models/device_component_templates.py:295 msgid "power port template" msgstr "modello di porta di alimentazione" -#: netbox/dcim/models/device_component_templates.py:296 +#: dcim/models/device_component_templates.py:296 msgid "power port templates" msgstr "modelli di porte di alimentazione" -#: netbox/dcim/models/device_component_templates.py:315 -#: netbox/dcim/models/device_components.py:382 +#: dcim/models/device_component_templates.py:315 +#: dcim/models/device_components.py:382 #, python-brace-format msgid "Allocated draw cannot exceed the maximum draw ({maximum_draw}W)." msgstr "" "Il pareggio assegnato non può superare il pareggio massimo " "({maximum_draw}W)." -#: netbox/dcim/models/device_component_templates.py:347 -#: netbox/dcim/models/device_components.py:477 +#: dcim/models/device_component_templates.py:347 +#: dcim/models/device_components.py:477 msgid "feed leg" msgstr "gamba di alimentazione" -#: netbox/dcim/models/device_component_templates.py:351 -#: netbox/dcim/models/device_components.py:481 +#: dcim/models/device_component_templates.py:351 +#: dcim/models/device_components.py:481 msgid "Phase (for three-phase feeds)" msgstr "Fase (per alimentazioni trifase)" -#: netbox/dcim/models/device_component_templates.py:357 +#: dcim/models/device_component_templates.py:357 msgid "power outlet template" msgstr "modello di presa di corrente" -#: netbox/dcim/models/device_component_templates.py:358 +#: dcim/models/device_component_templates.py:358 msgid "power outlet templates" msgstr "modelli di prese di corrente" -#: netbox/dcim/models/device_component_templates.py:367 +#: dcim/models/device_component_templates.py:367 #, python-brace-format msgid "Parent power port ({power_port}) must belong to the same device type" msgstr "" "Porta di alimentazione principale ({power_port}) deve appartenere allo " "stesso tipo di dispositivo" -#: netbox/dcim/models/device_component_templates.py:371 +#: dcim/models/device_component_templates.py:371 #, python-brace-format msgid "Parent power port ({power_port}) must belong to the same module type" msgstr "" "Porta di alimentazione principale ({power_port}) deve appartenere allo " "stesso tipo di modulo" -#: netbox/dcim/models/device_component_templates.py:423 -#: netbox/dcim/models/device_components.py:611 +#: dcim/models/device_component_templates.py:423 +#: dcim/models/device_components.py:611 msgid "management only" msgstr "solo gestione" -#: netbox/dcim/models/device_component_templates.py:431 -#: netbox/dcim/models/device_components.py:550 +#: dcim/models/device_component_templates.py:431 +#: dcim/models/device_components.py:550 msgid "bridge interface" msgstr "interfaccia bridge" -#: netbox/dcim/models/device_component_templates.py:449 -#: netbox/dcim/models/device_components.py:636 +#: dcim/models/device_component_templates.py:449 +#: dcim/models/device_components.py:636 msgid "wireless role" msgstr "ruolo wireless" -#: netbox/dcim/models/device_component_templates.py:455 +#: dcim/models/device_component_templates.py:455 msgid "interface template" msgstr "modello di interfaccia" -#: netbox/dcim/models/device_component_templates.py:456 +#: dcim/models/device_component_templates.py:456 msgid "interface templates" msgstr "modelli di interfaccia" -#: netbox/dcim/models/device_component_templates.py:463 -#: netbox/dcim/models/device_components.py:804 -#: netbox/virtualization/models/virtualmachines.py:405 +#: dcim/models/device_component_templates.py:463 +#: dcim/models/device_components.py:804 +#: virtualization/models/virtualmachines.py:405 msgid "An interface cannot be bridged to itself." msgstr "Un'interfaccia non può essere collegata a se stessa." -#: netbox/dcim/models/device_component_templates.py:466 +#: dcim/models/device_component_templates.py:466 #, python-brace-format msgid "Bridge interface ({bridge}) must belong to the same device type" msgstr "" "Interfaccia bridge ({bridge}) deve appartenere allo stesso tipo di " "dispositivo" -#: netbox/dcim/models/device_component_templates.py:470 +#: dcim/models/device_component_templates.py:470 #, python-brace-format msgid "Bridge interface ({bridge}) must belong to the same module type" msgstr "" "Interfaccia bridge ({bridge}) deve appartenere allo stesso tipo di modulo" -#: netbox/dcim/models/device_component_templates.py:526 -#: netbox/dcim/models/device_components.py:984 +#: dcim/models/device_component_templates.py:526 +#: dcim/models/device_components.py:984 msgid "rear port position" msgstr "posizione della porta posteriore" -#: netbox/dcim/models/device_component_templates.py:551 +#: dcim/models/device_component_templates.py:551 msgid "front port template" msgstr "modello di porta anteriore" -#: netbox/dcim/models/device_component_templates.py:552 +#: dcim/models/device_component_templates.py:552 msgid "front port templates" msgstr "modelli di porte anteriori" -#: netbox/dcim/models/device_component_templates.py:562 +#: dcim/models/device_component_templates.py:562 #, python-brace-format msgid "Rear port ({name}) must belong to the same device type" msgstr "" "Porta posteriore ({name}) deve appartenere allo stesso tipo di dispositivo" -#: netbox/dcim/models/device_component_templates.py:568 +#: dcim/models/device_component_templates.py:568 #, python-brace-format msgid "" "Invalid rear port position ({position}); rear port {name} has only {count} " @@ -5398,48 +4959,48 @@ msgstr "" "Posizione della porta posteriore non valida ({position}); porta posteriore " "{name} ha solo {count} posizioni" -#: netbox/dcim/models/device_component_templates.py:621 -#: netbox/dcim/models/device_components.py:1053 +#: dcim/models/device_component_templates.py:621 +#: dcim/models/device_components.py:1053 msgid "positions" msgstr "posizioni" -#: netbox/dcim/models/device_component_templates.py:632 +#: dcim/models/device_component_templates.py:632 msgid "rear port template" msgstr "modello di porta posteriore" -#: netbox/dcim/models/device_component_templates.py:633 +#: dcim/models/device_component_templates.py:633 msgid "rear port templates" msgstr "modelli di porte posteriori" -#: netbox/dcim/models/device_component_templates.py:662 -#: netbox/dcim/models/device_components.py:1103 +#: dcim/models/device_component_templates.py:662 +#: dcim/models/device_components.py:1103 msgid "position" msgstr "posizione" -#: netbox/dcim/models/device_component_templates.py:665 -#: netbox/dcim/models/device_components.py:1106 +#: dcim/models/device_component_templates.py:665 +#: dcim/models/device_components.py:1106 msgid "Identifier to reference when renaming installed components" msgstr "" "Identificatore a cui fare riferimento quando si rinominano i componenti " "installati" -#: netbox/dcim/models/device_component_templates.py:671 +#: dcim/models/device_component_templates.py:671 msgid "module bay template" msgstr "modello di alloggiamento del modulo" -#: netbox/dcim/models/device_component_templates.py:672 +#: dcim/models/device_component_templates.py:672 msgid "module bay templates" msgstr "modelli module bay" -#: netbox/dcim/models/device_component_templates.py:699 +#: dcim/models/device_component_templates.py:699 msgid "device bay template" msgstr "modello di alloggiamento per dispositivi" -#: netbox/dcim/models/device_component_templates.py:700 +#: dcim/models/device_component_templates.py:700 msgid "device bay templates" msgstr "modelli di alloggiamento per dispositivi" -#: netbox/dcim/models/device_component_templates.py:713 +#: dcim/models/device_component_templates.py:713 #, python-brace-format msgid "" "Subdevice role of device type ({device_type}) must be set to \"parent\" to " @@ -5448,213 +5009,208 @@ msgstr "" "Ruolo del tipo di dispositivo secondario ({device_type}) deve essere " "impostato su «principale» per consentire gli alloggiamenti dei dispositivi." -#: netbox/dcim/models/device_component_templates.py:768 -#: netbox/dcim/models/device_components.py:1262 +#: dcim/models/device_component_templates.py:768 +#: dcim/models/device_components.py:1262 msgid "part ID" msgstr "ID della parte" -#: netbox/dcim/models/device_component_templates.py:770 -#: netbox/dcim/models/device_components.py:1264 +#: dcim/models/device_component_templates.py:770 +#: dcim/models/device_components.py:1264 msgid "Manufacturer-assigned part identifier" msgstr "Identificativo del pezzo assegnato dal produttore" -#: netbox/dcim/models/device_component_templates.py:787 +#: dcim/models/device_component_templates.py:787 msgid "inventory item template" msgstr "modello di articolo di inventario" -#: netbox/dcim/models/device_component_templates.py:788 +#: dcim/models/device_component_templates.py:788 msgid "inventory item templates" msgstr "modelli di articoli di inventario" -#: netbox/dcim/models/device_components.py:105 +#: dcim/models/device_components.py:105 msgid "Components cannot be moved to a different device." msgstr "I componenti non possono essere spostati su un dispositivo diverso." -#: netbox/dcim/models/device_components.py:144 +#: dcim/models/device_components.py:144 msgid "cable end" msgstr "estremità del cavo" -#: netbox/dcim/models/device_components.py:150 +#: dcim/models/device_components.py:150 msgid "mark connected" msgstr "contrassegnare connesso" -#: netbox/dcim/models/device_components.py:152 +#: dcim/models/device_components.py:152 msgid "Treat as if a cable is connected" msgstr "Tratta come se fosse collegato un cavo" -#: netbox/dcim/models/device_components.py:170 +#: dcim/models/device_components.py:170 msgid "Must specify cable end (A or B) when attaching a cable." msgstr "" "È necessario specificare l'estremità del cavo (A o B) quando si collega un " "cavo." -#: netbox/dcim/models/device_components.py:174 +#: dcim/models/device_components.py:174 msgid "Cable end must not be set without a cable." msgstr "L'estremità del cavo non deve essere impostata senza un cavo." -#: netbox/dcim/models/device_components.py:178 +#: dcim/models/device_components.py:178 msgid "Cannot mark as connected with a cable attached." msgstr "Non è possibile contrassegnare come connesso con un cavo collegato." -#: netbox/dcim/models/device_components.py:202 +#: dcim/models/device_components.py:202 #, python-brace-format msgid "{class_name} models must declare a parent_object property" msgstr "{class_name} i modelli devono dichiarare una proprietà parent_object" -#: netbox/dcim/models/device_components.py:287 -#: netbox/dcim/models/device_components.py:316 -#: netbox/dcim/models/device_components.py:349 -#: netbox/dcim/models/device_components.py:467 +#: dcim/models/device_components.py:287 dcim/models/device_components.py:316 +#: dcim/models/device_components.py:349 dcim/models/device_components.py:467 msgid "Physical port type" msgstr "Tipo di porta fisica" -#: netbox/dcim/models/device_components.py:290 -#: netbox/dcim/models/device_components.py:319 +#: dcim/models/device_components.py:290 dcim/models/device_components.py:319 msgid "speed" msgstr "velocità" -#: netbox/dcim/models/device_components.py:294 -#: netbox/dcim/models/device_components.py:323 +#: dcim/models/device_components.py:294 dcim/models/device_components.py:323 msgid "Port speed in bits per second" msgstr "Velocità della porta in bit al secondo" -#: netbox/dcim/models/device_components.py:300 +#: dcim/models/device_components.py:300 msgid "console port" msgstr "porta console" -#: netbox/dcim/models/device_components.py:301 +#: dcim/models/device_components.py:301 msgid "console ports" msgstr "porte console" -#: netbox/dcim/models/device_components.py:329 +#: dcim/models/device_components.py:329 msgid "console server port" msgstr "porta console server" -#: netbox/dcim/models/device_components.py:330 +#: dcim/models/device_components.py:330 msgid "console server ports" msgstr "porte console server" -#: netbox/dcim/models/device_components.py:369 +#: dcim/models/device_components.py:369 msgid "power port" msgstr "porta di alimentazione" -#: netbox/dcim/models/device_components.py:370 +#: dcim/models/device_components.py:370 msgid "power ports" msgstr "porte di alimentazione" -#: netbox/dcim/models/device_components.py:487 +#: dcim/models/device_components.py:487 msgid "power outlet" msgstr "presa di corrente" -#: netbox/dcim/models/device_components.py:488 +#: dcim/models/device_components.py:488 msgid "power outlets" msgstr "prese di corrente" -#: netbox/dcim/models/device_components.py:499 +#: dcim/models/device_components.py:499 #, python-brace-format msgid "Parent power port ({power_port}) must belong to the same device" msgstr "" "Porta di alimentazione principale ({power_port}) deve appartenere allo " "stesso dispositivo" -#: netbox/dcim/models/device_components.py:530 netbox/vpn/models/crypto.py:81 -#: netbox/vpn/models/crypto.py:226 +#: dcim/models/device_components.py:530 vpn/models/crypto.py:81 +#: vpn/models/crypto.py:226 msgid "mode" msgstr "modalità" -#: netbox/dcim/models/device_components.py:534 +#: dcim/models/device_components.py:534 msgid "IEEE 802.1Q tagging strategy" msgstr "Strategia di etichettatura IEEE 802.1Q" -#: netbox/dcim/models/device_components.py:542 +#: dcim/models/device_components.py:542 msgid "parent interface" msgstr "interfaccia principale" -#: netbox/dcim/models/device_components.py:602 +#: dcim/models/device_components.py:602 msgid "parent LAG" msgstr "GAL capogruppo" -#: netbox/dcim/models/device_components.py:612 +#: dcim/models/device_components.py:612 msgid "This interface is used only for out-of-band management" msgstr "Questa interfaccia viene utilizzata solo per la gestione fuori banda" -#: netbox/dcim/models/device_components.py:617 +#: dcim/models/device_components.py:617 msgid "speed (Kbps)" msgstr "velocità (Kbps)" -#: netbox/dcim/models/device_components.py:620 +#: dcim/models/device_components.py:620 msgid "duplex" msgstr "bifamiliare" -#: netbox/dcim/models/device_components.py:630 +#: dcim/models/device_components.py:630 msgid "64-bit World Wide Name" msgstr "Nome mondiale a 64 bit" -#: netbox/dcim/models/device_components.py:642 +#: dcim/models/device_components.py:642 msgid "wireless channel" msgstr "canale wireless" -#: netbox/dcim/models/device_components.py:649 +#: dcim/models/device_components.py:649 msgid "channel frequency (MHz)" msgstr "frequenza del canale (MHz)" -#: netbox/dcim/models/device_components.py:650 -#: netbox/dcim/models/device_components.py:658 +#: dcim/models/device_components.py:650 dcim/models/device_components.py:658 msgid "Populated by selected channel (if set)" msgstr "Popolato dal canale selezionato (se impostato)" -#: netbox/dcim/models/device_components.py:664 +#: dcim/models/device_components.py:664 msgid "transmit power (dBm)" msgstr "potenza di trasmissione (dBm)" -#: netbox/dcim/models/device_components.py:689 netbox/wireless/models.py:117 +#: dcim/models/device_components.py:689 wireless/models.py:117 msgid "wireless LANs" msgstr "LAN wireless" -#: netbox/dcim/models/device_components.py:697 -#: netbox/virtualization/models/virtualmachines.py:335 +#: dcim/models/device_components.py:697 +#: virtualization/models/virtualmachines.py:335 msgid "untagged VLAN" msgstr "VLAN senza tag" -#: netbox/dcim/models/device_components.py:703 -#: netbox/virtualization/models/virtualmachines.py:341 +#: dcim/models/device_components.py:703 +#: virtualization/models/virtualmachines.py:341 msgid "tagged VLANs" msgstr "VLAN contrassegnate" -#: netbox/dcim/models/device_components.py:745 -#: netbox/virtualization/models/virtualmachines.py:377 +#: dcim/models/device_components.py:745 +#: virtualization/models/virtualmachines.py:377 msgid "interface" msgstr "interfaccia" -#: netbox/dcim/models/device_components.py:746 -#: netbox/virtualization/models/virtualmachines.py:378 +#: dcim/models/device_components.py:746 +#: virtualization/models/virtualmachines.py:378 msgid "interfaces" msgstr "interfacce" -#: netbox/dcim/models/device_components.py:757 +#: dcim/models/device_components.py:757 #, python-brace-format msgid "{display_type} interfaces cannot have a cable attached." msgstr "{display_type} alle interfacce non è possibile collegare un cavo." -#: netbox/dcim/models/device_components.py:765 +#: dcim/models/device_components.py:765 #, python-brace-format msgid "{display_type} interfaces cannot be marked as connected." msgstr "" "{display_type} le interfacce non possono essere contrassegnate come " "connesse." -#: netbox/dcim/models/device_components.py:774 -#: netbox/virtualization/models/virtualmachines.py:390 +#: dcim/models/device_components.py:774 +#: virtualization/models/virtualmachines.py:390 msgid "An interface cannot be its own parent." msgstr "Un'interfaccia non può essere la propria madre." -#: netbox/dcim/models/device_components.py:778 +#: dcim/models/device_components.py:778 msgid "Only virtual interfaces may be assigned to a parent interface." msgstr "" "Solo le interfacce virtuali possono essere assegnate a un'interfaccia " "principale." -#: netbox/dcim/models/device_components.py:785 +#: dcim/models/device_components.py:785 #, python-brace-format msgid "" "The selected parent interface ({interface}) belongs to a different device " @@ -5663,7 +5219,7 @@ msgstr "" "L'interfaccia principale selezionata ({interface}) appartiene a un " "dispositivo diverso ({device})" -#: netbox/dcim/models/device_components.py:791 +#: dcim/models/device_components.py:791 #, python-brace-format msgid "" "The selected parent interface ({interface}) belongs to {device}, which is " @@ -5672,7 +5228,7 @@ msgstr "" "L'interfaccia principale selezionata ({interface}) appartiene a {device}, " "che non fa parte dello chassis virtuale {virtual_chassis}." -#: netbox/dcim/models/device_components.py:811 +#: dcim/models/device_components.py:811 #, python-brace-format msgid "" "The selected bridge interface ({bridge}) belongs to a different device " @@ -5681,7 +5237,7 @@ msgstr "" "L'interfaccia bridge selezionata ({bridge}) appartiene a un dispositivo " "diverso ({device})." -#: netbox/dcim/models/device_components.py:817 +#: dcim/models/device_components.py:817 #, python-brace-format msgid "" "The selected bridge interface ({interface}) belongs to {device}, which is " @@ -5690,16 +5246,16 @@ msgstr "" "L'interfaccia bridge selezionata ({interface}) appartiene a {device}, che " "non fa parte dello chassis virtuale {virtual_chassis}." -#: netbox/dcim/models/device_components.py:828 +#: dcim/models/device_components.py:828 msgid "Virtual interfaces cannot have a parent LAG interface." msgstr "" "Le interfacce virtuali non possono avere un'interfaccia LAG principale." -#: netbox/dcim/models/device_components.py:832 +#: dcim/models/device_components.py:832 msgid "A LAG interface cannot be its own parent." msgstr "Un'interfaccia LAG non può essere la propria interfaccia principale." -#: netbox/dcim/models/device_components.py:839 +#: dcim/models/device_components.py:839 #, python-brace-format msgid "" "The selected LAG interface ({lag}) belongs to a different device ({device})." @@ -5707,7 +5263,7 @@ msgstr "" "L'interfaccia LAG selezionata ({lag}) appartiene a un dispositivo diverso " "({device})." -#: netbox/dcim/models/device_components.py:845 +#: dcim/models/device_components.py:845 #, python-brace-format msgid "" "The selected LAG interface ({lag}) belongs to {device}, which is not part of" @@ -5716,51 +5272,51 @@ msgstr "" "L'interfaccia LAG selezionata ({lag}) appartiene a {device}, che non fa " "parte dello chassis virtuale {virtual_chassis}." -#: netbox/dcim/models/device_components.py:856 +#: dcim/models/device_components.py:856 msgid "Virtual interfaces cannot have a PoE mode." msgstr "Le interfacce virtuali non possono avere una modalità PoE." -#: netbox/dcim/models/device_components.py:860 +#: dcim/models/device_components.py:860 msgid "Virtual interfaces cannot have a PoE type." msgstr "Le interfacce virtuali non possono avere un tipo PoE." -#: netbox/dcim/models/device_components.py:866 +#: dcim/models/device_components.py:866 msgid "Must specify PoE mode when designating a PoE type." msgstr "" "È necessario specificare la modalità PoE quando si designa un tipo PoE." -#: netbox/dcim/models/device_components.py:873 +#: dcim/models/device_components.py:873 msgid "Wireless role may be set only on wireless interfaces." msgstr "" "Il ruolo wireless può essere impostato solo sulle interfacce wireless." -#: netbox/dcim/models/device_components.py:875 +#: dcim/models/device_components.py:875 msgid "Channel may be set only on wireless interfaces." msgstr "Il canale può essere impostato solo su interfacce wireless." -#: netbox/dcim/models/device_components.py:881 +#: dcim/models/device_components.py:881 msgid "Channel frequency may be set only on wireless interfaces." msgstr "" "La frequenza del canale può essere impostata solo sulle interfacce wireless." -#: netbox/dcim/models/device_components.py:885 +#: dcim/models/device_components.py:885 msgid "Cannot specify custom frequency with channel selected." msgstr "" "Impossibile specificare una frequenza personalizzata con il canale " "selezionato." -#: netbox/dcim/models/device_components.py:891 +#: dcim/models/device_components.py:891 msgid "Channel width may be set only on wireless interfaces." msgstr "" "La larghezza del canale può essere impostata solo sulle interfacce wireless." -#: netbox/dcim/models/device_components.py:893 +#: dcim/models/device_components.py:893 msgid "Cannot specify custom width with channel selected." msgstr "" "Impossibile specificare una larghezza personalizzata con il canale " "selezionato." -#: netbox/dcim/models/device_components.py:901 +#: dcim/models/device_components.py:901 #, python-brace-format msgid "" "The untagged VLAN ({untagged_vlan}) must belong to the same site as the " @@ -5769,25 +5325,25 @@ msgstr "" "La VLAN senza tag ({untagged_vlan}) deve appartenere allo stesso sito del " "dispositivo principale dell'interfaccia o deve essere globale." -#: netbox/dcim/models/device_components.py:990 +#: dcim/models/device_components.py:990 msgid "Mapped position on corresponding rear port" msgstr "Posizione mappata sulla porta posteriore corrispondente" -#: netbox/dcim/models/device_components.py:1006 +#: dcim/models/device_components.py:1006 msgid "front port" msgstr "porta anteriore" -#: netbox/dcim/models/device_components.py:1007 +#: dcim/models/device_components.py:1007 msgid "front ports" msgstr "porte anteriori" -#: netbox/dcim/models/device_components.py:1021 +#: dcim/models/device_components.py:1021 #, python-brace-format msgid "Rear port ({rear_port}) must belong to the same device" msgstr "" "Porta posteriore ({rear_port}) deve appartenere allo stesso dispositivo" -#: netbox/dcim/models/device_components.py:1029 +#: dcim/models/device_components.py:1029 #, python-brace-format msgid "" "Invalid rear port position ({rear_port_position}): Rear port {name} has only" @@ -5796,19 +5352,19 @@ msgstr "" "Posizione della porta posteriore non valida ({rear_port_position}): Porta " "posteriore {name} ha solo {positions} posizioni." -#: netbox/dcim/models/device_components.py:1059 +#: dcim/models/device_components.py:1059 msgid "Number of front ports which may be mapped" msgstr "Numero di porte anteriori che possono essere mappate" -#: netbox/dcim/models/device_components.py:1064 +#: dcim/models/device_components.py:1064 msgid "rear port" msgstr "porta posteriore" -#: netbox/dcim/models/device_components.py:1065 +#: dcim/models/device_components.py:1065 msgid "rear ports" msgstr "porte posteriori" -#: netbox/dcim/models/device_components.py:1079 +#: dcim/models/device_components.py:1079 #, python-brace-format msgid "" "The number of positions cannot be less than the number of mapped front ports" @@ -5817,41 +5373,40 @@ msgstr "" "Il numero di posizioni non può essere inferiore al numero di porte frontali " "mappate ({frontport_count})" -#: netbox/dcim/models/device_components.py:1120 +#: dcim/models/device_components.py:1120 msgid "module bay" msgstr "alloggiamento per moduli" -#: netbox/dcim/models/device_components.py:1121 +#: dcim/models/device_components.py:1121 msgid "module bays" msgstr "alloggiamenti per moduli" -#: netbox/dcim/models/device_components.py:1138 -#: netbox/dcim/models/devices.py:1224 +#: dcim/models/device_components.py:1138 dcim/models/devices.py:1224 msgid "A module bay cannot belong to a module installed within it." msgstr "" "Un alloggiamento per moduli non può appartenere a un modulo installato al " "suo interno." -#: netbox/dcim/models/device_components.py:1164 +#: dcim/models/device_components.py:1164 msgid "device bay" msgstr "alloggiamento per dispositivi" -#: netbox/dcim/models/device_components.py:1165 +#: dcim/models/device_components.py:1165 msgid "device bays" msgstr "alloggiamenti per dispositivi" -#: netbox/dcim/models/device_components.py:1175 +#: dcim/models/device_components.py:1175 #, python-brace-format msgid "This type of device ({device_type}) does not support device bays." msgstr "" "Questo tipo di dispositivo ({device_type}) non supporta gli alloggiamenti " "per dispositivi." -#: netbox/dcim/models/device_components.py:1181 +#: dcim/models/device_components.py:1181 msgid "Cannot install a device into itself." msgstr "Impossibile installare un dispositivo su se stesso." -#: netbox/dcim/models/device_components.py:1189 +#: dcim/models/device_components.py:1189 #, python-brace-format msgid "" "Cannot install the specified device; device is already installed in {bay}." @@ -5859,120 +5414,118 @@ msgstr "" "Impossibile installare il dispositivo specificato; il dispositivo è già " "installato in {bay}." -#: netbox/dcim/models/device_components.py:1210 +#: dcim/models/device_components.py:1210 msgid "inventory item role" msgstr "ruolo dell'articolo di inventario" -#: netbox/dcim/models/device_components.py:1211 +#: dcim/models/device_components.py:1211 msgid "inventory item roles" msgstr "ruoli degli articoli di inventario" -#: netbox/dcim/models/device_components.py:1268 -#: netbox/dcim/models/devices.py:607 netbox/dcim/models/devices.py:1181 -#: netbox/dcim/models/racks.py:313 -#: netbox/virtualization/models/virtualmachines.py:131 +#: dcim/models/device_components.py:1268 dcim/models/devices.py:607 +#: dcim/models/devices.py:1181 dcim/models/racks.py:313 +#: virtualization/models/virtualmachines.py:131 msgid "serial number" msgstr "numero di serie" -#: netbox/dcim/models/device_components.py:1276 -#: netbox/dcim/models/devices.py:615 netbox/dcim/models/devices.py:1188 -#: netbox/dcim/models/racks.py:320 +#: dcim/models/device_components.py:1276 dcim/models/devices.py:615 +#: dcim/models/devices.py:1188 dcim/models/racks.py:320 msgid "asset tag" msgstr "etichetta dell'asset" -#: netbox/dcim/models/device_components.py:1277 +#: dcim/models/device_components.py:1277 msgid "A unique tag used to identify this item" msgstr "Un tag univoco utilizzato per identificare questo articolo" -#: netbox/dcim/models/device_components.py:1280 +#: dcim/models/device_components.py:1280 msgid "discovered" msgstr "scoperto" -#: netbox/dcim/models/device_components.py:1282 +#: dcim/models/device_components.py:1282 msgid "This item was automatically discovered" msgstr "Questo articolo è stato scoperto automaticamente" -#: netbox/dcim/models/device_components.py:1300 +#: dcim/models/device_components.py:1300 msgid "inventory item" msgstr "articolo di inventario" -#: netbox/dcim/models/device_components.py:1301 +#: dcim/models/device_components.py:1301 msgid "inventory items" msgstr "articoli di inventario" -#: netbox/dcim/models/device_components.py:1312 +#: dcim/models/device_components.py:1312 msgid "Cannot assign self as parent." msgstr "Non può assegnarsi come genitore." -#: netbox/dcim/models/device_components.py:1320 +#: dcim/models/device_components.py:1320 msgid "Parent inventory item does not belong to the same device." msgstr "" "L'articolo dell'inventario principale non appartiene allo stesso " "dispositivo." -#: netbox/dcim/models/device_components.py:1326 +#: dcim/models/device_components.py:1326 msgid "Cannot move an inventory item with dependent children" msgstr "Impossibile spostare un articolo dell'inventario con figli a carico" -#: netbox/dcim/models/device_components.py:1334 +#: dcim/models/device_components.py:1334 msgid "Cannot assign inventory item to component on another device" msgstr "" "Impossibile assegnare un articolo di inventario a un componente su un altro " "dispositivo" -#: netbox/dcim/models/devices.py:54 +#: dcim/models/devices.py:54 msgid "manufacturer" msgstr "produttore" -#: netbox/dcim/models/devices.py:55 +#: dcim/models/devices.py:55 msgid "manufacturers" msgstr "produttori" -#: netbox/dcim/models/devices.py:82 netbox/dcim/models/devices.py:382 -#: netbox/dcim/models/racks.py:133 +#: dcim/models/devices.py:82 dcim/models/devices.py:382 +#: dcim/models/racks.py:133 msgid "model" msgstr "modello" -#: netbox/dcim/models/devices.py:95 +#: dcim/models/devices.py:95 msgid "default platform" msgstr "piattaforma predefinita" -#: netbox/dcim/models/devices.py:98 netbox/dcim/models/devices.py:386 +#: dcim/models/devices.py:98 dcim/models/devices.py:386 msgid "part number" msgstr "numero del pezzo" -#: netbox/dcim/models/devices.py:101 netbox/dcim/models/devices.py:389 +#: dcim/models/devices.py:101 dcim/models/devices.py:389 msgid "Discrete part number (optional)" msgstr "Numero di parte discreto (opzionale)" -#: netbox/dcim/models/devices.py:107 netbox/dcim/models/racks.py:54 +#: dcim/models/devices.py:107 dcim/models/racks.py:54 msgid "height (U)" msgstr "altezza (U)" -#: netbox/dcim/models/devices.py:111 +#: dcim/models/devices.py:111 msgid "exclude from utilization" msgstr "escludere dall'utilizzo" -#: netbox/dcim/models/devices.py:112 +#: dcim/models/devices.py:112 msgid "Devices of this type are excluded when calculating rack utilization." msgstr "" "I dispositivi di questo tipo sono esclusi dal calcolo dell'utilizzo del " "rack." -#: netbox/dcim/models/devices.py:116 +#: dcim/models/devices.py:116 msgid "is full depth" msgstr "è a piena profondità" -#: netbox/dcim/models/devices.py:117 +#: dcim/models/devices.py:117 msgid "Device consumes both front and rear rack faces." msgstr "" "Il dispositivo consuma entrambe le facce del rack anteriore e posteriore." -#: netbox/dcim/models/devices.py:123 +#: dcim/models/devices.py:123 msgid "parent/child status" msgstr "stato genitore/figlio" -#: netbox/dcim/models/devices.py:124 +#: dcim/models/devices.py:124 msgid "" "Parent devices house child devices in device bays. Leave blank if this " "device type is neither a parent nor a child." @@ -5981,24 +5534,24 @@ msgstr "" "alloggiamenti dei dispositivi. Lascia vuoto se questo tipo di dispositivo " "non è né un genitore né un bambino." -#: netbox/dcim/models/devices.py:128 netbox/dcim/models/devices.py:392 -#: netbox/dcim/models/devices.py:659 netbox/dcim/models/racks.py:324 +#: dcim/models/devices.py:128 dcim/models/devices.py:392 +#: dcim/models/devices.py:659 dcim/models/racks.py:324 msgid "airflow" msgstr "flusso d'aria" -#: netbox/dcim/models/devices.py:204 +#: dcim/models/devices.py:204 msgid "device type" msgstr "tipo di dispositivo" -#: netbox/dcim/models/devices.py:205 +#: dcim/models/devices.py:205 msgid "device types" msgstr "tipi di dispositivi" -#: netbox/dcim/models/devices.py:290 +#: dcim/models/devices.py:290 msgid "U height must be in increments of 0.5 rack units." msgstr "L'altezza U deve essere espressa in incrementi di 0,5 unità rack." -#: netbox/dcim/models/devices.py:307 +#: dcim/models/devices.py:307 #, python-brace-format msgid "" "Device {device} in rack {rack} does not have sufficient space to accommodate" @@ -6007,7 +5560,7 @@ msgstr "" "Dispositivo {device} nella cremagliera {rack} non dispone di spazio " "sufficiente per ospitare un'altezza di {height}U" -#: netbox/dcim/models/devices.py:322 +#: dcim/models/devices.py:322 #, python-brace-format msgid "" "Unable to set 0U height: Found {racked_instance_count} " @@ -6017,7 +5570,7 @@ msgstr "" "href=\"{url}\">{racked_instance_count} casi già montato all'interno di " "rack." -#: netbox/dcim/models/devices.py:331 +#: dcim/models/devices.py:331 msgid "" "Must delete all device bay templates associated with this device before " "declassifying it as a parent device." @@ -6026,155 +5579,155 @@ msgstr "" "associati a questo dispositivo prima di declassificarlo come dispositivo " "principale." -#: netbox/dcim/models/devices.py:337 +#: dcim/models/devices.py:337 msgid "Child device types must be 0U." msgstr "I tipi di dispositivi per bambini devono essere 0U." -#: netbox/dcim/models/devices.py:411 +#: dcim/models/devices.py:411 msgid "module type" msgstr "tipo di modulo" -#: netbox/dcim/models/devices.py:412 +#: dcim/models/devices.py:412 msgid "module types" msgstr "tipi di moduli" -#: netbox/dcim/models/devices.py:485 +#: dcim/models/devices.py:485 msgid "Virtual machines may be assigned to this role" msgstr "Le macchine virtuali possono essere assegnate a questo ruolo" -#: netbox/dcim/models/devices.py:497 +#: dcim/models/devices.py:497 msgid "device role" msgstr "ruolo del dispositivo" -#: netbox/dcim/models/devices.py:498 +#: dcim/models/devices.py:498 msgid "device roles" msgstr "ruoli dei dispositivi" -#: netbox/dcim/models/devices.py:515 +#: dcim/models/devices.py:515 msgid "Optionally limit this platform to devices of a certain manufacturer" msgstr "" "Facoltativamente, limita questa piattaforma ai dispositivi di un determinato" " produttore" -#: netbox/dcim/models/devices.py:527 +#: dcim/models/devices.py:527 msgid "platform" msgstr "piattaforma" -#: netbox/dcim/models/devices.py:528 +#: dcim/models/devices.py:528 msgid "platforms" msgstr "piattaforme" -#: netbox/dcim/models/devices.py:576 +#: dcim/models/devices.py:576 msgid "The function this device serves" msgstr "La funzione utilizzata da questo dispositivo" -#: netbox/dcim/models/devices.py:608 +#: dcim/models/devices.py:608 msgid "Chassis serial number, assigned by the manufacturer" msgstr "Numero di serie del telaio, assegnato dal produttore" -#: netbox/dcim/models/devices.py:616 netbox/dcim/models/devices.py:1189 +#: dcim/models/devices.py:616 dcim/models/devices.py:1189 msgid "A unique tag used to identify this device" msgstr "Un tag univoco utilizzato per identificare questo dispositivo" -#: netbox/dcim/models/devices.py:643 +#: dcim/models/devices.py:643 msgid "position (U)" msgstr "posizione (U)" -#: netbox/dcim/models/devices.py:650 +#: dcim/models/devices.py:650 msgid "rack face" msgstr "faccia cremagliera" -#: netbox/dcim/models/devices.py:670 netbox/dcim/models/devices.py:1415 -#: netbox/virtualization/models/virtualmachines.py:100 +#: dcim/models/devices.py:670 dcim/models/devices.py:1415 +#: virtualization/models/virtualmachines.py:100 msgid "primary IPv4" msgstr "IPv4 primario" -#: netbox/dcim/models/devices.py:678 netbox/dcim/models/devices.py:1423 -#: netbox/virtualization/models/virtualmachines.py:108 +#: dcim/models/devices.py:678 dcim/models/devices.py:1423 +#: virtualization/models/virtualmachines.py:108 msgid "primary IPv6" msgstr "IPv6 primario" -#: netbox/dcim/models/devices.py:686 +#: dcim/models/devices.py:686 msgid "out-of-band IP" msgstr "IP fuori banda" -#: netbox/dcim/models/devices.py:703 +#: dcim/models/devices.py:703 msgid "VC position" msgstr "Posizione VC" -#: netbox/dcim/models/devices.py:706 +#: dcim/models/devices.py:706 msgid "Virtual chassis position" msgstr "Posizione virtuale dello chassis" -#: netbox/dcim/models/devices.py:709 +#: dcim/models/devices.py:709 msgid "VC priority" msgstr "Priorità VC" -#: netbox/dcim/models/devices.py:713 +#: dcim/models/devices.py:713 msgid "Virtual chassis master election priority" msgstr "Priorità di elezione del master dello chassis virtuale" -#: netbox/dcim/models/devices.py:716 netbox/dcim/models/sites.py:207 +#: dcim/models/devices.py:716 dcim/models/sites.py:207 msgid "latitude" msgstr "latitudine" -#: netbox/dcim/models/devices.py:721 netbox/dcim/models/devices.py:729 -#: netbox/dcim/models/sites.py:212 netbox/dcim/models/sites.py:220 +#: dcim/models/devices.py:721 dcim/models/devices.py:729 +#: dcim/models/sites.py:212 dcim/models/sites.py:220 msgid "GPS coordinate in decimal format (xx.yyyyyy)" msgstr "Coordinate GPS in formato decimale (xx.yyyyyy)" -#: netbox/dcim/models/devices.py:724 netbox/dcim/models/sites.py:215 +#: dcim/models/devices.py:724 dcim/models/sites.py:215 msgid "longitude" msgstr "longitudine" -#: netbox/dcim/models/devices.py:797 +#: dcim/models/devices.py:797 msgid "Device name must be unique per site." msgstr "Il nome del dispositivo deve essere univoco per sito." -#: netbox/dcim/models/devices.py:808 netbox/ipam/models/services.py:75 +#: dcim/models/devices.py:808 ipam/models/services.py:75 msgid "device" msgstr "dispositivo" -#: netbox/dcim/models/devices.py:809 +#: dcim/models/devices.py:809 msgid "devices" msgstr "dispositivi" -#: netbox/dcim/models/devices.py:835 +#: dcim/models/devices.py:835 #, python-brace-format msgid "Rack {rack} does not belong to site {site}." msgstr "cremagliera {rack} non appartiene al sito {site}." -#: netbox/dcim/models/devices.py:840 +#: dcim/models/devices.py:840 #, python-brace-format msgid "Location {location} does not belong to site {site}." msgstr "Posizione {location} non appartiene al sito {site}." -#: netbox/dcim/models/devices.py:846 +#: dcim/models/devices.py:846 #, python-brace-format msgid "Rack {rack} does not belong to location {location}." msgstr "cremagliera {rack} non appartiene alla località {location}." -#: netbox/dcim/models/devices.py:853 +#: dcim/models/devices.py:853 msgid "Cannot select a rack face without assigning a rack." msgstr "" "Non è possibile selezionare una faccia del rack senza assegnare un rack." -#: netbox/dcim/models/devices.py:857 +#: dcim/models/devices.py:857 msgid "Cannot select a rack position without assigning a rack." msgstr "" "Non è possibile selezionare una posizione del rack senza assegnare un rack." -#: netbox/dcim/models/devices.py:863 +#: dcim/models/devices.py:863 msgid "Position must be in increments of 0.5 rack units." msgstr "La posizione deve essere in incrementi di 0,5 unità rack." -#: netbox/dcim/models/devices.py:867 +#: dcim/models/devices.py:867 msgid "Must specify rack face when defining rack position." msgstr "" "È necessario specificare la faccia del rack quando si definisce la posizione" " del rack." -#: netbox/dcim/models/devices.py:875 +#: dcim/models/devices.py:875 #, python-brace-format msgid "" "A 0U device type ({device_type}) cannot be assigned to a rack position." @@ -6182,7 +5735,7 @@ msgstr "" "Un tipo di dispositivo 0U ({device_type}) non può essere assegnato a una " "posizione nel rack." -#: netbox/dcim/models/devices.py:886 +#: dcim/models/devices.py:886 msgid "" "Child device types cannot be assigned to a rack face. This is an attribute " "of the parent device." @@ -6190,7 +5743,7 @@ msgstr "" "I tipi di dispositivi per bambini non possono essere assegnati a un rack. " "Questo è un attributo del dispositivo principale." -#: netbox/dcim/models/devices.py:893 +#: dcim/models/devices.py:893 msgid "" "Child device types cannot be assigned to a rack position. This is an " "attribute of the parent device." @@ -6198,7 +5751,7 @@ msgstr "" "I tipi di dispositivi per bambini non possono essere assegnati a una " "posizione rack. Questo è un attributo del dispositivo principale." -#: netbox/dcim/models/devices.py:907 +#: dcim/models/devices.py:907 #, python-brace-format msgid "" "U{position} is already occupied or does not have sufficient space to " @@ -6207,23 +5760,23 @@ msgstr "" "U{position} è già occupato o non dispone di spazio sufficiente per ospitare " "questo tipo di dispositivo: {device_type} ({u_height}U)" -#: netbox/dcim/models/devices.py:922 +#: dcim/models/devices.py:922 #, python-brace-format msgid "{ip} is not an IPv4 address." msgstr "{ip} non è un indirizzo IPv4." -#: netbox/dcim/models/devices.py:931 netbox/dcim/models/devices.py:946 +#: dcim/models/devices.py:931 dcim/models/devices.py:946 #, python-brace-format msgid "The specified IP address ({ip}) is not assigned to this device." msgstr "" "L'indirizzo IP specificato ({ip}) non è assegnato a questo dispositivo." -#: netbox/dcim/models/devices.py:937 +#: dcim/models/devices.py:937 #, python-brace-format msgid "{ip} is not an IPv6 address." msgstr "{ip} non è un indirizzo IPv6." -#: netbox/dcim/models/devices.py:964 +#: dcim/models/devices.py:964 #, python-brace-format msgid "" "The assigned platform is limited to {platform_manufacturer} device types, " @@ -6233,18 +5786,18 @@ msgstr "" "dispositivo, ma il tipo di questo dispositivo appartiene a " "{devicetype_manufacturer}." -#: netbox/dcim/models/devices.py:975 +#: dcim/models/devices.py:975 #, python-brace-format msgid "The assigned cluster belongs to a different site ({site})" msgstr "Il cluster assegnato appartiene a un sito diverso ({site})" -#: netbox/dcim/models/devices.py:983 +#: dcim/models/devices.py:983 msgid "A device assigned to a virtual chassis must have its position defined." msgstr "" "La posizione di un dispositivo assegnato a uno chassis virtuale deve essere " "definita." -#: netbox/dcim/models/devices.py:988 +#: dcim/models/devices.py:988 #, python-brace-format msgid "" "Device cannot be removed from virtual chassis {virtual_chassis} because it " @@ -6253,15 +5806,15 @@ msgstr "" "Il dispositivo non può essere rimosso dallo chassis virtuale " "{virtual_chassis} perché attualmente è designato come suo padrone." -#: netbox/dcim/models/devices.py:1196 +#: dcim/models/devices.py:1196 msgid "module" msgstr "modulo" -#: netbox/dcim/models/devices.py:1197 +#: dcim/models/devices.py:1197 msgid "modules" msgstr "moduli" -#: netbox/dcim/models/devices.py:1213 +#: dcim/models/devices.py:1213 #, python-brace-format msgid "" "Module must be installed within a module bay belonging to the assigned " @@ -6270,22 +5823,22 @@ msgstr "" "Il modulo deve essere installato all'interno di un vano del modulo " "appartenente al dispositivo assegnato ({device})." -#: netbox/dcim/models/devices.py:1334 +#: dcim/models/devices.py:1334 msgid "domain" msgstr "dominio" -#: netbox/dcim/models/devices.py:1347 netbox/dcim/models/devices.py:1348 +#: dcim/models/devices.py:1347 dcim/models/devices.py:1348 msgid "virtual chassis" msgstr "chassis virtuale" -#: netbox/dcim/models/devices.py:1363 +#: dcim/models/devices.py:1363 #, python-brace-format msgid "" "The selected master ({master}) is not assigned to this virtual chassis." msgstr "" "Il master selezionato ({master}) non è assegnato a questo chassis virtuale." -#: netbox/dcim/models/devices.py:1379 +#: dcim/models/devices.py:1379 #, python-brace-format msgid "" "Unable to delete virtual chassis {self}. There are member interfaces which " @@ -6294,105 +5847,105 @@ msgstr "" "Impossibile eliminare lo chassis virtuale {self}. Esistono interfacce tra i " "membri che formano interfacce GAL trasversali." -#: netbox/dcim/models/devices.py:1404 netbox/vpn/models/l2vpn.py:37 +#: dcim/models/devices.py:1404 vpn/models/l2vpn.py:37 msgid "identifier" msgstr "identificatore" -#: netbox/dcim/models/devices.py:1405 +#: dcim/models/devices.py:1405 msgid "Numeric identifier unique to the parent device" msgstr "Identificatore numerico univoco per il dispositivo principale" -#: netbox/dcim/models/devices.py:1433 netbox/extras/models/customfields.py:225 -#: netbox/extras/models/models.py:107 netbox/extras/models/models.py:694 -#: netbox/netbox/models/__init__.py:115 +#: dcim/models/devices.py:1433 extras/models/customfields.py:225 +#: extras/models/models.py:107 extras/models/models.py:694 +#: netbox/models/__init__.py:115 msgid "comments" msgstr "commenti" -#: netbox/dcim/models/devices.py:1449 +#: dcim/models/devices.py:1449 msgid "virtual device context" msgstr "contesto del dispositivo virtuale" -#: netbox/dcim/models/devices.py:1450 +#: dcim/models/devices.py:1450 msgid "virtual device contexts" msgstr "contesti dei dispositivi virtuali" -#: netbox/dcim/models/devices.py:1482 +#: dcim/models/devices.py:1482 #, python-brace-format msgid "{ip} is not an IPv{family} address." msgstr "{ip} non è un IPv{family} indirizzo." -#: netbox/dcim/models/devices.py:1488 +#: dcim/models/devices.py:1488 msgid "Primary IP address must belong to an interface on the assigned device." msgstr "" "L'indirizzo IP primario deve appartenere a un'interfaccia sul dispositivo " "assegnato." -#: netbox/dcim/models/mixins.py:15 netbox/extras/models/configs.py:41 -#: netbox/extras/models/models.py:313 netbox/extras/models/models.py:522 -#: netbox/extras/models/search.py:48 netbox/ipam/models/ip.py:194 +#: dcim/models/mixins.py:15 extras/models/configs.py:41 +#: extras/models/models.py:313 extras/models/models.py:522 +#: extras/models/search.py:48 ipam/models/ip.py:194 msgid "weight" msgstr "peso" -#: netbox/dcim/models/mixins.py:22 +#: dcim/models/mixins.py:22 msgid "weight unit" msgstr "unità di peso" -#: netbox/dcim/models/mixins.py:51 +#: dcim/models/mixins.py:51 msgid "Must specify a unit when setting a weight" msgstr "È necessario specificare un'unità quando si imposta un peso" -#: netbox/dcim/models/power.py:55 +#: dcim/models/power.py:55 msgid "power panel" msgstr "pannello di alimentazione" -#: netbox/dcim/models/power.py:56 +#: dcim/models/power.py:56 msgid "power panels" msgstr "pannelli di alimentazione" -#: netbox/dcim/models/power.py:70 +#: dcim/models/power.py:70 #, python-brace-format msgid "" "Location {location} ({location_site}) is in a different site than {site}" msgstr "" "Posizione {location} ({location_site}) si trova in un sito diverso da {site}" -#: netbox/dcim/models/power.py:108 +#: dcim/models/power.py:108 msgid "supply" msgstr "approvvigionamento" -#: netbox/dcim/models/power.py:114 +#: dcim/models/power.py:114 msgid "phase" msgstr "fase" -#: netbox/dcim/models/power.py:120 +#: dcim/models/power.py:120 msgid "voltage" msgstr "voltaggio" -#: netbox/dcim/models/power.py:125 +#: dcim/models/power.py:125 msgid "amperage" msgstr "amperaggio" -#: netbox/dcim/models/power.py:130 +#: dcim/models/power.py:130 msgid "max utilization" msgstr "utilizzo massimo" -#: netbox/dcim/models/power.py:133 +#: dcim/models/power.py:133 msgid "Maximum permissible draw (percentage)" msgstr "Estrazione massima consentita (percentuale)" -#: netbox/dcim/models/power.py:136 +#: dcim/models/power.py:136 msgid "available power" msgstr "potenza disponibile" -#: netbox/dcim/models/power.py:164 +#: dcim/models/power.py:164 msgid "power feed" msgstr "alimentazione" -#: netbox/dcim/models/power.py:165 +#: dcim/models/power.py:165 msgid "power feeds" msgstr "alimentazioni" -#: netbox/dcim/models/power.py:179 +#: dcim/models/power.py:179 #, python-brace-format msgid "" "Rack {rack} ({rack_site}) and power panel {powerpanel} ({powerpanel_site}) " @@ -6401,63 +5954,63 @@ msgstr "" "cremagliera {rack} ({rack_site}) e pannello di alimentazione {powerpanel} " "({powerpanel_site}) si trovano in siti diversi." -#: netbox/dcim/models/power.py:190 +#: dcim/models/power.py:190 msgid "Voltage cannot be negative for AC supply" msgstr "La tensione non può essere negativa per l'alimentazione AC" -#: netbox/dcim/models/racks.py:47 +#: dcim/models/racks.py:47 msgid "width" msgstr "larghezza" -#: netbox/dcim/models/racks.py:48 +#: dcim/models/racks.py:48 msgid "Rail-to-rail width" msgstr "Larghezza da rotaia a rotaia" -#: netbox/dcim/models/racks.py:56 +#: dcim/models/racks.py:56 msgid "Height in rack units" msgstr "Altezza nelle unità rack" -#: netbox/dcim/models/racks.py:60 +#: dcim/models/racks.py:60 msgid "starting unit" msgstr "unità di partenza" -#: netbox/dcim/models/racks.py:62 +#: dcim/models/racks.py:62 msgid "Starting unit for rack" msgstr "Unità di partenza per cremagliera" -#: netbox/dcim/models/racks.py:66 +#: dcim/models/racks.py:66 msgid "descending units" msgstr "unità discendenti" -#: netbox/dcim/models/racks.py:67 +#: dcim/models/racks.py:67 msgid "Units are numbered top-to-bottom" msgstr "Le unità sono numerate dall'alto verso il basso" -#: netbox/dcim/models/racks.py:72 +#: dcim/models/racks.py:72 msgid "outer width" msgstr "larghezza esterna" -#: netbox/dcim/models/racks.py:75 +#: dcim/models/racks.py:75 msgid "Outer dimension of rack (width)" msgstr "Dimensione esterna del rack (larghezza)" -#: netbox/dcim/models/racks.py:78 +#: dcim/models/racks.py:78 msgid "outer depth" msgstr "profondità esterna" -#: netbox/dcim/models/racks.py:81 +#: dcim/models/racks.py:81 msgid "Outer dimension of rack (depth)" msgstr "Dimensione esterna del rack (profondità)" -#: netbox/dcim/models/racks.py:84 +#: dcim/models/racks.py:84 msgid "outer unit" msgstr "unità esterna" -#: netbox/dcim/models/racks.py:90 +#: dcim/models/racks.py:90 msgid "mounting depth" msgstr "profondità di montaggio" -#: netbox/dcim/models/racks.py:94 +#: dcim/models/racks.py:94 msgid "" "Maximum depth of a mounted device, in millimeters. For four-post racks, this" " is the distance between the front and rear rails." @@ -6465,77 +6018,76 @@ msgstr "" "Profondità massima di un dispositivo montato, in millimetri. Per i rack a " "quattro montanti, questa è la distanza tra le guide anteriore e posteriore." -#: netbox/dcim/models/racks.py:102 +#: dcim/models/racks.py:102 msgid "max weight" msgstr "peso massimo" -#: netbox/dcim/models/racks.py:105 +#: dcim/models/racks.py:105 msgid "Maximum load capacity for the rack" msgstr "Capacità di carico massima per il rack" -#: netbox/dcim/models/racks.py:125 netbox/dcim/models/racks.py:252 +#: dcim/models/racks.py:125 dcim/models/racks.py:252 msgid "form factor" msgstr "fattore di forma" -#: netbox/dcim/models/racks.py:162 +#: dcim/models/racks.py:162 msgid "rack type" msgstr "tipo di rack" -#: netbox/dcim/models/racks.py:163 +#: dcim/models/racks.py:163 msgid "rack types" msgstr "tipi di rack" -#: netbox/dcim/models/racks.py:180 netbox/dcim/models/racks.py:379 +#: dcim/models/racks.py:180 dcim/models/racks.py:379 msgid "Must specify a unit when setting an outer width/depth" msgstr "" "È necessario specificare un'unità quando si imposta una larghezza/profondità" " esterna" -#: netbox/dcim/models/racks.py:184 netbox/dcim/models/racks.py:383 +#: dcim/models/racks.py:184 dcim/models/racks.py:383 msgid "Must specify a unit when setting a maximum weight" msgstr "È necessario specificare un'unità quando si imposta un peso massimo" -#: netbox/dcim/models/racks.py:230 +#: dcim/models/racks.py:230 msgid "rack role" msgstr "ruolo rack" -#: netbox/dcim/models/racks.py:231 +#: dcim/models/racks.py:231 msgid "rack roles" msgstr "ruoli rack" -#: netbox/dcim/models/racks.py:274 +#: dcim/models/racks.py:274 msgid "facility ID" msgstr "ID struttura" -#: netbox/dcim/models/racks.py:275 +#: dcim/models/racks.py:275 msgid "Locally-assigned identifier" msgstr "Identificatore assegnato localmente" -#: netbox/dcim/models/racks.py:308 netbox/ipam/forms/bulk_import.py:201 -#: netbox/ipam/forms/bulk_import.py:266 netbox/ipam/forms/bulk_import.py:301 -#: netbox/ipam/forms/bulk_import.py:459 -#: netbox/virtualization/forms/bulk_import.py:112 +#: dcim/models/racks.py:308 ipam/forms/bulk_import.py:201 +#: ipam/forms/bulk_import.py:266 ipam/forms/bulk_import.py:301 +#: ipam/forms/bulk_import.py:459 virtualization/forms/bulk_import.py:112 msgid "Functional role" msgstr "Ruolo funzionale" -#: netbox/dcim/models/racks.py:321 +#: dcim/models/racks.py:321 msgid "A unique tag used to identify this rack" msgstr "Un tag univoco utilizzato per identificare questo rack" -#: netbox/dcim/models/racks.py:359 +#: dcim/models/racks.py:359 msgid "rack" msgstr "scaffale" -#: netbox/dcim/models/racks.py:360 +#: dcim/models/racks.py:360 msgid "racks" msgstr "griglie" -#: netbox/dcim/models/racks.py:375 +#: dcim/models/racks.py:375 #, python-brace-format msgid "Assigned location must belong to parent site ({site})." msgstr "La posizione assegnata deve appartenere al sito principale ({site})." -#: netbox/dcim/models/racks.py:393 +#: dcim/models/racks.py:393 #, python-brace-format msgid "" "Rack must be at least {min_height}U tall to house currently installed " @@ -6544,7 +6096,7 @@ msgstr "" "Il rack deve essere almeno {min_height}Parlo per ospitare i dispositivi " "attualmente installati." -#: netbox/dcim/models/racks.py:400 +#: dcim/models/racks.py:400 #, python-brace-format msgid "" "Rack unit numbering must begin at {position} or less to house currently " @@ -6553,958 +6105,895 @@ msgstr "" "La numerazione delle unità rack deve iniziare da {position} o meno per " "ospitare i dispositivi attualmente installati." -#: netbox/dcim/models/racks.py:408 +#: dcim/models/racks.py:408 #, python-brace-format msgid "Location must be from the same site, {site}." msgstr "La posizione deve provenire dallo stesso sito, {site}." -#: netbox/dcim/models/racks.py:670 +#: dcim/models/racks.py:670 msgid "units" msgstr "unità" -#: netbox/dcim/models/racks.py:696 +#: dcim/models/racks.py:696 msgid "rack reservation" msgstr "prenotazione del rack" -#: netbox/dcim/models/racks.py:697 +#: dcim/models/racks.py:697 msgid "rack reservations" msgstr "Tieni traccia delle prenotazioni" -#: netbox/dcim/models/racks.py:714 +#: dcim/models/racks.py:714 #, python-brace-format msgid "Invalid unit(s) for {height}U rack: {unit_list}" msgstr "Unità non valide per {height}Rack U: {unit_list}" -#: netbox/dcim/models/racks.py:727 +#: dcim/models/racks.py:727 #, python-brace-format msgid "The following units have already been reserved: {unit_list}" msgstr "Le seguenti unità sono già state prenotate: {unit_list}" -#: netbox/dcim/models/sites.py:49 +#: dcim/models/sites.py:49 msgid "A top-level region with this name already exists." msgstr "Esiste già una regione di primo livello con questo nome." -#: netbox/dcim/models/sites.py:59 +#: dcim/models/sites.py:59 msgid "A top-level region with this slug already exists." msgstr "Esiste già una regione di primo livello con questo slug." -#: netbox/dcim/models/sites.py:62 +#: dcim/models/sites.py:62 msgid "region" msgstr "regione" -#: netbox/dcim/models/sites.py:63 +#: dcim/models/sites.py:63 msgid "regions" msgstr "regioni" -#: netbox/dcim/models/sites.py:102 +#: dcim/models/sites.py:102 msgid "A top-level site group with this name already exists." msgstr "Esiste già un gruppo del sito principale con questo nome." -#: netbox/dcim/models/sites.py:112 +#: dcim/models/sites.py:112 msgid "A top-level site group with this slug already exists." msgstr "Esiste già un gruppo del sito di primo livello con questo slug." -#: netbox/dcim/models/sites.py:115 +#: dcim/models/sites.py:115 msgid "site group" msgstr "gruppo del sito" -#: netbox/dcim/models/sites.py:116 +#: dcim/models/sites.py:116 msgid "site groups" msgstr "gruppi del sito" -#: netbox/dcim/models/sites.py:141 +#: dcim/models/sites.py:141 msgid "Full name of the site" msgstr "Nome completo del sito" -#: netbox/dcim/models/sites.py:181 netbox/dcim/models/sites.py:279 +#: dcim/models/sites.py:181 dcim/models/sites.py:279 msgid "facility" msgstr "servizio, struttura" -#: netbox/dcim/models/sites.py:184 netbox/dcim/models/sites.py:282 +#: dcim/models/sites.py:184 dcim/models/sites.py:282 msgid "Local facility ID or description" msgstr "ID o descrizione della struttura locale" -#: netbox/dcim/models/sites.py:195 +#: dcim/models/sites.py:195 msgid "physical address" msgstr "indirizzo fisico" -#: netbox/dcim/models/sites.py:198 +#: dcim/models/sites.py:198 msgid "Physical location of the building" msgstr "Ubicazione fisica dell'edificio" -#: netbox/dcim/models/sites.py:201 +#: dcim/models/sites.py:201 msgid "shipping address" msgstr "indirizzo di spedizione" -#: netbox/dcim/models/sites.py:204 +#: dcim/models/sites.py:204 msgid "If different from the physical address" msgstr "Se diverso dall'indirizzo fisico" -#: netbox/dcim/models/sites.py:238 +#: dcim/models/sites.py:238 msgid "site" msgstr "sito" -#: netbox/dcim/models/sites.py:239 +#: dcim/models/sites.py:239 msgid "sites" msgstr "siti" -#: netbox/dcim/models/sites.py:309 +#: dcim/models/sites.py:309 msgid "A location with this name already exists within the specified site." msgstr "" "Una posizione con questo nome esiste già all'interno del sito specificato." -#: netbox/dcim/models/sites.py:319 +#: dcim/models/sites.py:319 msgid "A location with this slug already exists within the specified site." msgstr "" "Una posizione con questo slug esiste già all'interno del sito specificato." -#: netbox/dcim/models/sites.py:322 +#: dcim/models/sites.py:322 msgid "location" msgstr "posizione" -#: netbox/dcim/models/sites.py:323 +#: dcim/models/sites.py:323 msgid "locations" msgstr "posizioni" -#: netbox/dcim/models/sites.py:337 +#: dcim/models/sites.py:337 #, python-brace-format msgid "Parent location ({parent}) must belong to the same site ({site})." msgstr "" "Sede principale ({parent}) deve appartenere allo stesso sito ({site})." -#: netbox/dcim/tables/cables.py:55 +#: dcim/tables/cables.py:55 msgid "Termination A" msgstr "Terminazione A" -#: netbox/dcim/tables/cables.py:60 +#: dcim/tables/cables.py:60 msgid "Termination B" msgstr "Terminazione B" -#: netbox/dcim/tables/cables.py:66 netbox/wireless/tables/wirelesslink.py:23 +#: dcim/tables/cables.py:66 wireless/tables/wirelesslink.py:23 msgid "Device A" msgstr "Dispositivo A" -#: netbox/dcim/tables/cables.py:72 netbox/wireless/tables/wirelesslink.py:32 +#: dcim/tables/cables.py:72 wireless/tables/wirelesslink.py:32 msgid "Device B" msgstr "Dispositivo B" -#: netbox/dcim/tables/cables.py:78 +#: dcim/tables/cables.py:78 msgid "Location A" msgstr "Ubicazione A" -#: netbox/dcim/tables/cables.py:84 +#: dcim/tables/cables.py:84 msgid "Location B" msgstr "Luogo B" -#: netbox/dcim/tables/cables.py:90 +#: dcim/tables/cables.py:90 msgid "Rack A" msgstr "Cremagliera A" -#: netbox/dcim/tables/cables.py:96 +#: dcim/tables/cables.py:96 msgid "Rack B" msgstr "Cremagliera B" -#: netbox/dcim/tables/cables.py:102 +#: dcim/tables/cables.py:102 msgid "Site A" msgstr "Sito A" -#: netbox/dcim/tables/cables.py:108 +#: dcim/tables/cables.py:108 msgid "Site B" msgstr "Sito B" -#: netbox/dcim/tables/connections.py:31 netbox/dcim/tables/connections.py:50 -#: netbox/dcim/tables/connections.py:71 -#: netbox/templates/dcim/inc/connection_endpoints.html:16 +#: dcim/tables/connections.py:31 dcim/tables/connections.py:50 +#: dcim/tables/connections.py:71 +#: templates/dcim/inc/connection_endpoints.html:16 msgid "Reachable" msgstr "Raggiungibile" -#: netbox/dcim/tables/devices.py:58 netbox/dcim/tables/devices.py:106 -#: netbox/dcim/tables/racks.py:150 netbox/dcim/tables/sites.py:105 -#: netbox/dcim/tables/sites.py:148 netbox/extras/tables/tables.py:545 -#: netbox/netbox/navigation/menu.py:69 netbox/netbox/navigation/menu.py:73 -#: netbox/netbox/navigation/menu.py:75 -#: netbox/virtualization/forms/model_forms.py:122 -#: netbox/virtualization/tables/clusters.py:83 -#: netbox/virtualization/views.py:206 +#: dcim/tables/devices.py:58 dcim/tables/devices.py:106 +#: dcim/tables/racks.py:150 dcim/tables/sites.py:105 dcim/tables/sites.py:148 +#: extras/tables/tables.py:545 netbox/navigation/menu.py:69 +#: netbox/navigation/menu.py:73 netbox/navigation/menu.py:75 +#: virtualization/forms/model_forms.py:122 +#: virtualization/tables/clusters.py:83 virtualization/views.py:206 msgid "Devices" msgstr "Dispositivi" -#: netbox/dcim/tables/devices.py:63 netbox/dcim/tables/devices.py:111 -#: netbox/virtualization/tables/clusters.py:88 +#: dcim/tables/devices.py:63 dcim/tables/devices.py:111 +#: virtualization/tables/clusters.py:88 msgid "VMs" msgstr "VM" -#: netbox/dcim/tables/devices.py:100 netbox/dcim/tables/devices.py:216 -#: netbox/extras/forms/model_forms.py:630 -#: netbox/templates/dcim/device.html:112 -#: netbox/templates/dcim/device/render_config.html:11 -#: netbox/templates/dcim/device/render_config.html:14 -#: netbox/templates/dcim/devicerole.html:44 -#: netbox/templates/dcim/platform.html:41 -#: netbox/templates/extras/configtemplate.html:10 -#: netbox/templates/virtualization/virtualmachine.html:48 -#: netbox/templates/virtualization/virtualmachine/render_config.html:11 -#: netbox/templates/virtualization/virtualmachine/render_config.html:14 -#: netbox/virtualization/tables/virtualmachines.py:107 +#: dcim/tables/devices.py:100 dcim/tables/devices.py:216 +#: extras/forms/model_forms.py:630 templates/dcim/device.html:112 +#: templates/dcim/device/render_config.html:11 +#: templates/dcim/device/render_config.html:14 +#: templates/dcim/devicerole.html:44 templates/dcim/platform.html:41 +#: templates/extras/configtemplate.html:10 +#: templates/virtualization/virtualmachine.html:48 +#: templates/virtualization/virtualmachine/render_config.html:11 +#: templates/virtualization/virtualmachine/render_config.html:14 +#: virtualization/tables/virtualmachines.py:107 msgid "Config Template" msgstr "Modello di configurazione" -#: netbox/dcim/tables/devices.py:150 netbox/templates/dcim/sitegroup.html:26 +#: dcim/tables/devices.py:150 templates/dcim/sitegroup.html:26 msgid "Site Group" msgstr "Gruppo del sito" -#: netbox/dcim/tables/devices.py:187 netbox/dcim/tables/devices.py:1068 -#: netbox/ipam/forms/bulk_import.py:503 netbox/ipam/forms/model_forms.py:306 -#: netbox/ipam/forms/model_forms.py:315 netbox/ipam/tables/ip.py:356 -#: netbox/ipam/tables/ip.py:423 netbox/ipam/tables/ip.py:446 -#: netbox/templates/ipam/ipaddress.html:11 -#: netbox/virtualization/tables/virtualmachines.py:95 +#: dcim/tables/devices.py:187 dcim/tables/devices.py:1068 +#: ipam/forms/bulk_import.py:503 ipam/forms/model_forms.py:306 +#: ipam/forms/model_forms.py:315 ipam/tables/ip.py:356 ipam/tables/ip.py:423 +#: ipam/tables/ip.py:446 templates/ipam/ipaddress.html:11 +#: virtualization/tables/virtualmachines.py:95 msgid "IP Address" msgstr "Indirizzo IP" -#: netbox/dcim/tables/devices.py:191 netbox/dcim/tables/devices.py:1072 -#: netbox/virtualization/tables/virtualmachines.py:86 +#: dcim/tables/devices.py:191 dcim/tables/devices.py:1072 +#: virtualization/tables/virtualmachines.py:86 msgid "IPv4 Address" msgstr "Indirizzo IPv4" -#: netbox/dcim/tables/devices.py:195 netbox/dcim/tables/devices.py:1076 -#: netbox/virtualization/tables/virtualmachines.py:90 +#: dcim/tables/devices.py:195 dcim/tables/devices.py:1076 +#: virtualization/tables/virtualmachines.py:90 msgid "IPv6 Address" msgstr "Indirizzo IPv6" -#: netbox/dcim/tables/devices.py:210 +#: dcim/tables/devices.py:210 msgid "VC Position" msgstr "Posizione VC" -#: netbox/dcim/tables/devices.py:213 +#: dcim/tables/devices.py:213 msgid "VC Priority" msgstr "Priorità VC" -#: netbox/dcim/tables/devices.py:220 netbox/templates/dcim/device_edit.html:38 -#: netbox/templates/dcim/devicebay_populate.html:16 +#: dcim/tables/devices.py:220 templates/dcim/device_edit.html:38 +#: templates/dcim/devicebay_populate.html:16 msgid "Parent Device" msgstr "Dispositivo principale" -#: netbox/dcim/tables/devices.py:225 +#: dcim/tables/devices.py:225 msgid "Position (Device Bay)" msgstr "Posizione (vano dispositivo)" -#: netbox/dcim/tables/devices.py:234 +#: dcim/tables/devices.py:234 msgid "Console ports" msgstr "Porte console" -#: netbox/dcim/tables/devices.py:237 +#: dcim/tables/devices.py:237 msgid "Console server ports" msgstr "Porte console server" -#: netbox/dcim/tables/devices.py:240 +#: dcim/tables/devices.py:240 msgid "Power ports" msgstr "Porte di alimentazione" -#: netbox/dcim/tables/devices.py:243 +#: dcim/tables/devices.py:243 msgid "Power outlets" msgstr "Prese di corrente" -#: netbox/dcim/tables/devices.py:246 netbox/dcim/tables/devices.py:1081 -#: netbox/dcim/tables/devicetypes.py:128 netbox/dcim/views.py:1042 -#: netbox/dcim/views.py:1281 netbox/dcim/views.py:1977 -#: netbox/netbox/navigation/menu.py:94 netbox/netbox/navigation/menu.py:250 -#: netbox/templates/dcim/device/base.html:37 -#: netbox/templates/dcim/device_list.html:43 -#: netbox/templates/dcim/devicetype/base.html:34 -#: netbox/templates/dcim/module.html:34 -#: netbox/templates/dcim/moduletype/base.html:34 -#: netbox/templates/dcim/virtualdevicecontext.html:61 -#: netbox/templates/dcim/virtualdevicecontext.html:81 -#: netbox/templates/virtualization/virtualmachine/base.html:27 -#: netbox/templates/virtualization/virtualmachine_list.html:14 -#: netbox/virtualization/tables/virtualmachines.py:101 -#: netbox/virtualization/views.py:366 netbox/wireless/tables/wirelesslan.py:55 +#: dcim/tables/devices.py:246 dcim/tables/devices.py:1081 +#: dcim/tables/devicetypes.py:128 dcim/views.py:1042 dcim/views.py:1281 +#: dcim/views.py:1977 netbox/navigation/menu.py:94 +#: netbox/navigation/menu.py:250 templates/dcim/device/base.html:37 +#: templates/dcim/device_list.html:43 templates/dcim/devicetype/base.html:34 +#: templates/dcim/inc/moduletype_buttons.html:25 templates/dcim/module.html:34 +#: templates/dcim/virtualdevicecontext.html:61 +#: templates/dcim/virtualdevicecontext.html:81 +#: templates/virtualization/virtualmachine/base.html:27 +#: templates/virtualization/virtualmachine_list.html:14 +#: virtualization/tables/virtualmachines.py:101 virtualization/views.py:366 +#: wireless/tables/wirelesslan.py:55 msgid "Interfaces" msgstr "Interfacce" -#: netbox/dcim/tables/devices.py:249 +#: dcim/tables/devices.py:249 msgid "Front ports" msgstr "Porte anteriori" -#: netbox/dcim/tables/devices.py:255 +#: dcim/tables/devices.py:255 msgid "Device bays" msgstr "Alloggiamenti per dispositivi" -#: netbox/dcim/tables/devices.py:258 +#: dcim/tables/devices.py:258 msgid "Module bays" msgstr "Alloggiamenti per moduli" -#: netbox/dcim/tables/devices.py:261 +#: dcim/tables/devices.py:261 msgid "Inventory items" msgstr "Articoli di inventario" -#: netbox/dcim/tables/devices.py:305 netbox/dcim/tables/modules.py:56 -#: netbox/templates/dcim/modulebay.html:17 +#: dcim/tables/devices.py:305 dcim/tables/modules.py:56 +#: templates/dcim/modulebay.html:17 msgid "Module Bay" msgstr "Modulo Bay" -#: netbox/dcim/tables/devices.py:318 netbox/dcim/tables/devicetypes.py:47 -#: netbox/dcim/tables/devicetypes.py:143 netbox/dcim/views.py:1117 -#: netbox/dcim/views.py:2075 netbox/netbox/navigation/menu.py:103 -#: netbox/templates/dcim/device/base.html:52 -#: netbox/templates/dcim/device_list.html:71 -#: netbox/templates/dcim/devicetype/base.html:49 -#: netbox/templates/dcim/inc/panels/inventory_items.html:6 -#: netbox/templates/dcim/inventoryitemrole.html:32 +#: dcim/tables/devices.py:318 dcim/tables/devicetypes.py:47 +#: dcim/tables/devicetypes.py:143 dcim/views.py:1117 dcim/views.py:2075 +#: netbox/navigation/menu.py:103 templates/dcim/device/base.html:52 +#: templates/dcim/device_list.html:71 templates/dcim/devicetype/base.html:49 +#: templates/dcim/inc/panels/inventory_items.html:6 +#: templates/dcim/inventoryitemrole.html:32 msgid "Inventory Items" msgstr "Articoli di inventario" -#: netbox/dcim/tables/devices.py:333 +#: dcim/tables/devices.py:333 msgid "Cable Color" msgstr "Colore del cavo" -#: netbox/dcim/tables/devices.py:339 +#: dcim/tables/devices.py:339 msgid "Link Peers" msgstr "Collegamento tra colleghi" -#: netbox/dcim/tables/devices.py:342 +#: dcim/tables/devices.py:342 msgid "Mark Connected" msgstr "Contrassegna connesso" -#: netbox/dcim/tables/devices.py:461 +#: dcim/tables/devices.py:461 msgid "Maximum draw (W)" msgstr "Assorbimento massimo (W)" -#: netbox/dcim/tables/devices.py:464 +#: dcim/tables/devices.py:464 msgid "Allocated draw (W)" msgstr "Pareggio assegnato (W)" -#: netbox/dcim/tables/devices.py:558 netbox/ipam/forms/model_forms.py:701 -#: netbox/ipam/tables/fhrp.py:28 netbox/ipam/views.py:596 -#: netbox/ipam/views.py:696 netbox/netbox/navigation/menu.py:158 -#: netbox/netbox/navigation/menu.py:160 -#: netbox/templates/dcim/interface.html:339 -#: netbox/templates/ipam/ipaddress_bulk_add.html:15 -#: netbox/templates/ipam/service.html:40 -#: netbox/templates/virtualization/vminterface.html:85 -#: netbox/vpn/tables/tunnels.py:98 +#: dcim/tables/devices.py:558 ipam/forms/model_forms.py:701 +#: ipam/tables/fhrp.py:28 ipam/views.py:596 ipam/views.py:696 +#: netbox/navigation/menu.py:158 netbox/navigation/menu.py:160 +#: templates/dcim/interface.html:339 templates/ipam/ipaddress_bulk_add.html:15 +#: templates/ipam/service.html:40 templates/virtualization/vminterface.html:85 +#: vpn/tables/tunnels.py:98 msgid "IP Addresses" msgstr "Indirizzi IP" -#: netbox/dcim/tables/devices.py:564 netbox/netbox/navigation/menu.py:202 -#: netbox/templates/ipam/inc/panels/fhrp_groups.html:6 +#: dcim/tables/devices.py:564 netbox/navigation/menu.py:202 +#: templates/ipam/inc/panels/fhrp_groups.html:6 msgid "FHRP Groups" msgstr "Gruppi FHRP" -#: netbox/dcim/tables/devices.py:576 netbox/templates/dcim/interface.html:89 -#: netbox/templates/virtualization/vminterface.html:67 -#: netbox/templates/vpn/tunnel.html:18 -#: netbox/templates/vpn/tunneltermination.html:13 -#: netbox/vpn/forms/bulk_edit.py:76 netbox/vpn/forms/bulk_import.py:76 -#: netbox/vpn/forms/filtersets.py:42 netbox/vpn/forms/filtersets.py:82 -#: netbox/vpn/forms/model_forms.py:60 netbox/vpn/forms/model_forms.py:145 -#: netbox/vpn/tables/tunnels.py:78 +#: dcim/tables/devices.py:576 templates/dcim/interface.html:89 +#: templates/virtualization/vminterface.html:67 templates/vpn/tunnel.html:18 +#: templates/vpn/tunneltermination.html:13 vpn/forms/bulk_edit.py:76 +#: vpn/forms/bulk_import.py:76 vpn/forms/filtersets.py:42 +#: vpn/forms/filtersets.py:82 vpn/forms/model_forms.py:60 +#: vpn/forms/model_forms.py:145 vpn/tables/tunnels.py:78 msgid "Tunnel" msgstr "Tunnel" -#: netbox/dcim/tables/devices.py:604 netbox/dcim/tables/devicetypes.py:227 -#: netbox/templates/dcim/interface.html:65 +#: dcim/tables/devices.py:604 dcim/tables/devicetypes.py:227 +#: templates/dcim/interface.html:65 msgid "Management Only" msgstr "Solo gestione" -#: netbox/dcim/tables/devices.py:623 +#: dcim/tables/devices.py:623 msgid "VDCs" msgstr "VDC" -#: netbox/dcim/tables/devices.py:873 netbox/templates/dcim/modulebay.html:53 +#: dcim/tables/devices.py:873 templates/dcim/modulebay.html:53 msgid "Installed Module" msgstr "Modulo installato" -#: netbox/dcim/tables/devices.py:876 +#: dcim/tables/devices.py:876 msgid "Module Serial" msgstr "Modulo seriale" -#: netbox/dcim/tables/devices.py:880 +#: dcim/tables/devices.py:880 msgid "Module Asset Tag" msgstr "Tag delle risorse del modulo" -#: netbox/dcim/tables/devices.py:889 +#: dcim/tables/devices.py:889 msgid "Module Status" msgstr "Stato del modulo" -#: netbox/dcim/tables/devices.py:944 netbox/dcim/tables/devicetypes.py:312 -#: netbox/templates/dcim/inventoryitem.html:40 +#: dcim/tables/devices.py:944 dcim/tables/devicetypes.py:312 +#: templates/dcim/inventoryitem.html:40 msgid "Component" msgstr "Componente" -#: netbox/dcim/tables/devices.py:1000 +#: dcim/tables/devices.py:1000 msgid "Items" msgstr "Oggetti" -#: netbox/dcim/tables/devicetypes.py:37 netbox/netbox/navigation/menu.py:84 -#: netbox/netbox/navigation/menu.py:86 +#: dcim/tables/devicetypes.py:37 netbox/navigation/menu.py:84 +#: netbox/navigation/menu.py:86 msgid "Device Types" msgstr "Tipi di dispositivi" -#: netbox/dcim/tables/devicetypes.py:42 netbox/netbox/navigation/menu.py:87 +#: dcim/tables/devicetypes.py:42 netbox/navigation/menu.py:87 msgid "Module Types" msgstr "Tipi di moduli" -#: netbox/dcim/tables/devicetypes.py:52 netbox/extras/forms/filtersets.py:371 -#: netbox/extras/forms/model_forms.py:537 netbox/extras/tables/tables.py:540 -#: netbox/netbox/navigation/menu.py:78 +#: dcim/tables/devicetypes.py:52 extras/forms/filtersets.py:371 +#: extras/forms/model_forms.py:537 extras/tables/tables.py:540 +#: netbox/navigation/menu.py:78 msgid "Platforms" msgstr "piattaforme" -#: netbox/dcim/tables/devicetypes.py:84 -#: netbox/templates/dcim/devicetype.html:29 +#: dcim/tables/devicetypes.py:84 templates/dcim/devicetype.html:29 msgid "Default Platform" msgstr "Piattaforma predefinita" -#: netbox/dcim/tables/devicetypes.py:88 -#: netbox/templates/dcim/devicetype.html:45 +#: dcim/tables/devicetypes.py:88 templates/dcim/devicetype.html:45 msgid "Full Depth" msgstr "Profondità completa" -#: netbox/dcim/tables/devicetypes.py:98 +#: dcim/tables/devicetypes.py:98 msgid "U Height" msgstr "Altezza U" -#: netbox/dcim/tables/devicetypes.py:113 netbox/dcim/tables/modules.py:26 -#: netbox/dcim/tables/racks.py:89 +#: dcim/tables/devicetypes.py:113 dcim/tables/modules.py:26 +#: dcim/tables/racks.py:89 msgid "Instances" msgstr "Istanze" -#: netbox/dcim/tables/devicetypes.py:116 netbox/dcim/views.py:982 -#: netbox/dcim/views.py:1221 netbox/dcim/views.py:1913 -#: netbox/netbox/navigation/menu.py:97 -#: netbox/templates/dcim/device/base.html:25 -#: netbox/templates/dcim/device_list.html:15 -#: netbox/templates/dcim/devicetype/base.html:22 -#: netbox/templates/dcim/module.html:22 -#: netbox/templates/dcim/moduletype/base.html:22 +#: dcim/tables/devicetypes.py:116 dcim/views.py:982 dcim/views.py:1221 +#: dcim/views.py:1913 netbox/navigation/menu.py:97 +#: templates/dcim/device/base.html:25 templates/dcim/device_list.html:15 +#: templates/dcim/devicetype/base.html:22 +#: templates/dcim/inc/moduletype_buttons.html:13 templates/dcim/module.html:22 msgid "Console Ports" msgstr "Porte console" -#: netbox/dcim/tables/devicetypes.py:119 netbox/dcim/views.py:997 -#: netbox/dcim/views.py:1236 netbox/dcim/views.py:1929 -#: netbox/netbox/navigation/menu.py:98 -#: netbox/templates/dcim/device/base.html:28 -#: netbox/templates/dcim/device_list.html:22 -#: netbox/templates/dcim/devicetype/base.html:25 -#: netbox/templates/dcim/module.html:25 -#: netbox/templates/dcim/moduletype/base.html:25 +#: dcim/tables/devicetypes.py:119 dcim/views.py:997 dcim/views.py:1236 +#: dcim/views.py:1929 netbox/navigation/menu.py:98 +#: templates/dcim/device/base.html:28 templates/dcim/device_list.html:22 +#: templates/dcim/devicetype/base.html:25 +#: templates/dcim/inc/moduletype_buttons.html:16 templates/dcim/module.html:25 msgid "Console Server Ports" msgstr "Porte Console Server" -#: netbox/dcim/tables/devicetypes.py:122 netbox/dcim/views.py:1012 -#: netbox/dcim/views.py:1251 netbox/dcim/views.py:1945 -#: netbox/netbox/navigation/menu.py:99 -#: netbox/templates/dcim/device/base.html:31 -#: netbox/templates/dcim/device_list.html:29 -#: netbox/templates/dcim/devicetype/base.html:28 -#: netbox/templates/dcim/module.html:28 -#: netbox/templates/dcim/moduletype/base.html:28 +#: dcim/tables/devicetypes.py:122 dcim/views.py:1012 dcim/views.py:1251 +#: dcim/views.py:1945 netbox/navigation/menu.py:99 +#: templates/dcim/device/base.html:31 templates/dcim/device_list.html:29 +#: templates/dcim/devicetype/base.html:28 +#: templates/dcim/inc/moduletype_buttons.html:19 templates/dcim/module.html:28 msgid "Power Ports" msgstr "Porte di alimentazione" -#: netbox/dcim/tables/devicetypes.py:125 netbox/dcim/views.py:1027 -#: netbox/dcim/views.py:1266 netbox/dcim/views.py:1961 -#: netbox/netbox/navigation/menu.py:100 -#: netbox/templates/dcim/device/base.html:34 -#: netbox/templates/dcim/device_list.html:36 -#: netbox/templates/dcim/devicetype/base.html:31 -#: netbox/templates/dcim/module.html:31 -#: netbox/templates/dcim/moduletype/base.html:31 +#: dcim/tables/devicetypes.py:125 dcim/views.py:1027 dcim/views.py:1266 +#: dcim/views.py:1961 netbox/navigation/menu.py:100 +#: templates/dcim/device/base.html:34 templates/dcim/device_list.html:36 +#: templates/dcim/devicetype/base.html:31 +#: templates/dcim/inc/moduletype_buttons.html:22 templates/dcim/module.html:31 msgid "Power Outlets" msgstr "Prese di corrente" -#: netbox/dcim/tables/devicetypes.py:131 netbox/dcim/views.py:1057 -#: netbox/dcim/views.py:1296 netbox/dcim/views.py:1999 -#: netbox/netbox/navigation/menu.py:95 -#: netbox/templates/dcim/device/base.html:40 -#: netbox/templates/dcim/devicetype/base.html:37 -#: netbox/templates/dcim/module.html:37 -#: netbox/templates/dcim/moduletype/base.html:37 +#: dcim/tables/devicetypes.py:131 dcim/views.py:1057 dcim/views.py:1296 +#: dcim/views.py:1999 netbox/navigation/menu.py:95 +#: templates/dcim/device/base.html:40 templates/dcim/devicetype/base.html:37 +#: templates/dcim/inc/moduletype_buttons.html:28 templates/dcim/module.html:37 msgid "Front Ports" msgstr "Porte anteriori" -#: netbox/dcim/tables/devicetypes.py:134 netbox/dcim/views.py:1072 -#: netbox/dcim/views.py:1311 netbox/dcim/views.py:2015 -#: netbox/netbox/navigation/menu.py:96 -#: netbox/templates/dcim/device/base.html:43 -#: netbox/templates/dcim/device_list.html:50 -#: netbox/templates/dcim/devicetype/base.html:40 -#: netbox/templates/dcim/module.html:40 -#: netbox/templates/dcim/moduletype/base.html:40 +#: dcim/tables/devicetypes.py:134 dcim/views.py:1072 dcim/views.py:1311 +#: dcim/views.py:2015 netbox/navigation/menu.py:96 +#: templates/dcim/device/base.html:43 templates/dcim/device_list.html:50 +#: templates/dcim/devicetype/base.html:40 +#: templates/dcim/inc/moduletype_buttons.html:31 templates/dcim/module.html:40 msgid "Rear Ports" msgstr "Porte posteriori" -#: netbox/dcim/tables/devicetypes.py:137 netbox/dcim/views.py:1102 -#: netbox/dcim/views.py:2055 netbox/netbox/navigation/menu.py:102 -#: netbox/templates/dcim/device/base.html:49 -#: netbox/templates/dcim/device_list.html:57 -#: netbox/templates/dcim/devicetype/base.html:46 +#: dcim/tables/devicetypes.py:137 dcim/views.py:1102 dcim/views.py:2055 +#: netbox/navigation/menu.py:102 templates/dcim/device/base.html:49 +#: templates/dcim/device_list.html:57 templates/dcim/devicetype/base.html:46 msgid "Device Bays" msgstr "Alloggiamenti per dispositivi" -#: netbox/dcim/tables/devicetypes.py:140 netbox/dcim/views.py:1087 -#: netbox/dcim/views.py:1326 netbox/dcim/views.py:2035 -#: netbox/netbox/navigation/menu.py:101 -#: netbox/templates/dcim/device/base.html:46 -#: netbox/templates/dcim/device_list.html:64 -#: netbox/templates/dcim/devicetype/base.html:43 -#: netbox/templates/dcim/module.html:43 -#: netbox/templates/dcim/moduletype/base.html:43 +#: dcim/tables/devicetypes.py:140 dcim/views.py:1087 dcim/views.py:1326 +#: dcim/views.py:2035 netbox/navigation/menu.py:101 +#: templates/dcim/device/base.html:46 templates/dcim/device_list.html:64 +#: templates/dcim/devicetype/base.html:43 +#: templates/dcim/inc/moduletype_buttons.html:34 templates/dcim/module.html:43 msgid "Module Bays" msgstr "Baie per moduli" -#: netbox/dcim/tables/power.py:36 netbox/netbox/navigation/menu.py:297 -#: netbox/templates/dcim/powerpanel.html:51 +#: dcim/tables/power.py:36 netbox/navigation/menu.py:297 +#: templates/dcim/powerpanel.html:51 msgid "Power Feeds" msgstr "Alimenti di alimentazione" -#: netbox/dcim/tables/power.py:80 netbox/templates/dcim/powerfeed.html:99 +#: dcim/tables/power.py:80 templates/dcim/powerfeed.html:99 msgid "Max Utilization" msgstr "Utilizzo massimo" -#: netbox/dcim/tables/power.py:84 +#: dcim/tables/power.py:84 msgid "Available Power (VA)" msgstr "Potenza disponibile (VA)" -#: netbox/dcim/tables/racks.py:30 netbox/dcim/tables/sites.py:143 -#: netbox/netbox/navigation/menu.py:43 netbox/netbox/navigation/menu.py:47 -#: netbox/netbox/navigation/menu.py:49 +#: dcim/tables/racks.py:30 dcim/tables/sites.py:143 +#: netbox/navigation/menu.py:43 netbox/navigation/menu.py:47 +#: netbox/navigation/menu.py:49 msgid "Racks" msgstr "Scaffali" -#: netbox/dcim/tables/racks.py:63 netbox/dcim/tables/racks.py:142 -#: netbox/templates/dcim/device.html:318 -#: netbox/templates/dcim/inc/panels/racktype_dimensions.html:14 +#: dcim/tables/racks.py:63 dcim/tables/racks.py:142 +#: templates/dcim/device.html:318 +#: templates/dcim/inc/panels/racktype_dimensions.html:14 msgid "Height" msgstr "Altezza" -#: netbox/dcim/tables/racks.py:67 netbox/dcim/tables/racks.py:165 -#: netbox/templates/dcim/inc/panels/racktype_dimensions.html:18 +#: dcim/tables/racks.py:67 dcim/tables/racks.py:165 +#: templates/dcim/inc/panels/racktype_dimensions.html:18 msgid "Outer Width" msgstr "Larghezza esterna" -#: netbox/dcim/tables/racks.py:71 netbox/dcim/tables/racks.py:169 -#: netbox/templates/dcim/inc/panels/racktype_dimensions.html:28 +#: dcim/tables/racks.py:71 dcim/tables/racks.py:169 +#: templates/dcim/inc/panels/racktype_dimensions.html:28 msgid "Outer Depth" msgstr "Profondità esterna" -#: netbox/dcim/tables/racks.py:79 netbox/dcim/tables/racks.py:177 +#: dcim/tables/racks.py:79 dcim/tables/racks.py:177 msgid "Max Weight" msgstr "Peso massimo" -#: netbox/dcim/tables/racks.py:154 +#: dcim/tables/racks.py:154 msgid "Space" msgstr "Spazio" -#: netbox/dcim/tables/sites.py:30 netbox/dcim/tables/sites.py:57 -#: netbox/extras/forms/filtersets.py:351 -#: netbox/extras/forms/model_forms.py:517 netbox/ipam/forms/bulk_edit.py:130 -#: netbox/ipam/forms/model_forms.py:153 netbox/ipam/tables/asn.py:66 -#: netbox/netbox/navigation/menu.py:15 netbox/netbox/navigation/menu.py:17 +#: dcim/tables/sites.py:30 dcim/tables/sites.py:57 +#: extras/forms/filtersets.py:351 extras/forms/model_forms.py:517 +#: ipam/forms/bulk_edit.py:131 ipam/forms/model_forms.py:153 +#: ipam/tables/asn.py:66 netbox/navigation/menu.py:15 +#: netbox/navigation/menu.py:17 msgid "Sites" msgstr "Siti" -#: netbox/dcim/tests/test_api.py:47 +#: dcim/tests/test_api.py:47 msgid "Test case must set peer_termination_type" msgstr "Il test case deve impostare peer_termination_type" -#: netbox/dcim/views.py:140 +#: dcim/views.py:140 #, python-brace-format msgid "Disconnected {count} {type}" msgstr "Disconnesso {count} {type}" -#: netbox/dcim/views.py:740 netbox/netbox/navigation/menu.py:51 +#: dcim/views.py:740 netbox/navigation/menu.py:51 msgid "Reservations" msgstr "Prenotazioni" -#: netbox/dcim/views.py:759 netbox/templates/dcim/location.html:90 -#: netbox/templates/dcim/site.html:140 +#: dcim/views.py:759 templates/dcim/location.html:90 +#: templates/dcim/site.html:140 msgid "Non-Racked Devices" msgstr "Dispositivi non montati su rack" -#: netbox/dcim/views.py:2088 netbox/extras/forms/model_forms.py:577 -#: netbox/templates/extras/configcontext.html:10 -#: netbox/virtualization/forms/model_forms.py:225 -#: netbox/virtualization/views.py:407 +#: dcim/views.py:2088 extras/forms/model_forms.py:577 +#: templates/extras/configcontext.html:10 +#: virtualization/forms/model_forms.py:225 virtualization/views.py:407 msgid "Config Context" msgstr "Contesto di configurazione" -#: netbox/dcim/views.py:2098 netbox/virtualization/views.py:417 +#: dcim/views.py:2098 virtualization/views.py:417 msgid "Render Config" msgstr "Configurazione del rendering" -#: netbox/dcim/views.py:2131 netbox/virtualization/views.py:450 +#: dcim/views.py:2131 virtualization/views.py:450 #, python-brace-format msgid "An error occurred while rendering the template: {error}" msgstr "Si è verificato un errore durante il rendering del modello: {error}" -#: netbox/dcim/views.py:2149 netbox/extras/tables/tables.py:550 -#: netbox/netbox/navigation/menu.py:247 netbox/netbox/navigation/menu.py:249 -#: netbox/virtualization/views.py:180 +#: dcim/views.py:2149 extras/tables/tables.py:550 +#: netbox/navigation/menu.py:247 netbox/navigation/menu.py:249 +#: virtualization/views.py:180 msgid "Virtual Machines" msgstr "Macchine virtuali" -#: netbox/dcim/views.py:2897 +#: dcim/views.py:2897 #, python-brace-format msgid "Installed device {device} in bay {device_bay}." msgstr "Dispositivo installato {device} nella baia {device_bay}." -#: netbox/dcim/views.py:2938 +#: dcim/views.py:2938 #, python-brace-format msgid "Removed device {device} from bay {device_bay}." msgstr "Dispositivo rimosso {device} dalla baia {device_bay}." -#: netbox/dcim/views.py:3044 netbox/ipam/tables/ip.py:234 +#: dcim/views.py:3044 ipam/tables/ip.py:234 msgid "Children" msgstr "Bambini" -#: netbox/dcim/views.py:3510 +#: dcim/views.py:3510 #, python-brace-format msgid "Added member {device}" msgstr "Membro aggiunto {device}" -#: netbox/dcim/views.py:3557 +#: dcim/views.py:3557 #, python-brace-format msgid "Unable to remove master device {device} from the virtual chassis." msgstr "" "Impossibile rimuovere il dispositivo master {device} dallo chassis virtuale." -#: netbox/dcim/views.py:3570 +#: dcim/views.py:3570 #, python-brace-format msgid "Removed {device} from virtual chassis {chassis}" msgstr "Rimosso {device} da chassis virtuale {chassis}" -#: netbox/extras/api/customfields.py:89 +#: extras/api/customfields.py:89 #, python-brace-format msgid "Unknown related object(s): {name}" msgstr "Oggetti correlati sconosciuti: {name}" -#: netbox/extras/api/serializers_/customfields.py:73 +#: extras/api/serializers_/customfields.py:73 msgid "Changing the type of custom fields is not supported." msgstr "La modifica del tipo di campi personalizzati non è supportata." -#: netbox/extras/api/serializers_/scripts.py:70 -#: netbox/extras/api/serializers_/scripts.py:75 +#: extras/api/serializers_/scripts.py:70 extras/api/serializers_/scripts.py:75 msgid "Scheduling is not enabled for this script." msgstr "La pianificazione non è abilitata per questo script." -#: netbox/extras/choices.py:30 netbox/extras/forms/misc.py:14 +#: extras/choices.py:30 extras/forms/misc.py:14 msgid "Text" msgstr "Testo" -#: netbox/extras/choices.py:31 +#: extras/choices.py:31 msgid "Text (long)" msgstr "Testo (lungo)" -#: netbox/extras/choices.py:32 +#: extras/choices.py:32 msgid "Integer" msgstr "Numero intero" -#: netbox/extras/choices.py:33 +#: extras/choices.py:33 msgid "Decimal" msgstr "Decimale" -#: netbox/extras/choices.py:34 +#: extras/choices.py:34 msgid "Boolean (true/false)" msgstr "Booleano (vero/falso)" -#: netbox/extras/choices.py:35 +#: extras/choices.py:35 msgid "Date" msgstr "Data" -#: netbox/extras/choices.py:36 +#: extras/choices.py:36 msgid "Date & time" msgstr "Data e ora" -#: netbox/extras/choices.py:38 +#: extras/choices.py:38 msgid "JSON" msgstr "JSON" -#: netbox/extras/choices.py:39 +#: extras/choices.py:39 msgid "Selection" msgstr "Selezione" -#: netbox/extras/choices.py:40 +#: extras/choices.py:40 msgid "Multiple selection" msgstr "Selezione multipla" -#: netbox/extras/choices.py:42 +#: extras/choices.py:42 msgid "Multiple objects" msgstr "Oggetti multipli" -#: netbox/extras/choices.py:53 netbox/netbox/preferences.py:21 -#: netbox/templates/extras/customfield.html:78 netbox/vpn/choices.py:20 -#: netbox/wireless/choices.py:27 +#: extras/choices.py:53 netbox/preferences.py:21 +#: templates/extras/customfield.html:78 vpn/choices.py:20 +#: wireless/choices.py:27 msgid "Disabled" msgstr "Disabili" -#: netbox/extras/choices.py:54 +#: extras/choices.py:54 msgid "Loose" msgstr "Sciolto" -#: netbox/extras/choices.py:55 +#: extras/choices.py:55 msgid "Exact" msgstr "Esatto" -#: netbox/extras/choices.py:66 +#: extras/choices.py:66 msgid "Always" msgstr "Sempre" -#: netbox/extras/choices.py:67 +#: extras/choices.py:67 msgid "If set" msgstr "Se impostato" -#: netbox/extras/choices.py:68 netbox/extras/choices.py:81 +#: extras/choices.py:68 extras/choices.py:81 msgid "Hidden" msgstr "Nascosto" -#: netbox/extras/choices.py:79 +#: extras/choices.py:79 msgid "Yes" msgstr "sì" -#: netbox/extras/choices.py:80 +#: extras/choices.py:80 msgid "No" msgstr "No" -#: netbox/extras/choices.py:108 netbox/templates/tenancy/contact.html:57 -#: netbox/tenancy/forms/bulk_edit.py:118 -#: netbox/wireless/forms/model_forms.py:168 +#: extras/choices.py:108 templates/tenancy/contact.html:57 +#: tenancy/forms/bulk_edit.py:118 wireless/forms/model_forms.py:168 msgid "Link" msgstr "Link" -#: netbox/extras/choices.py:124 +#: extras/choices.py:124 msgid "Newest" msgstr "Più recente" -#: netbox/extras/choices.py:125 +#: extras/choices.py:125 msgid "Oldest" msgstr "Il più vecchio" -#: netbox/extras/choices.py:126 +#: extras/choices.py:126 msgid "Alphabetical (A-Z)" msgstr "Alfabetico (A-Z)" -#: netbox/extras/choices.py:127 +#: extras/choices.py:127 msgid "Alphabetical (Z-A)" msgstr "Alfabetico (Z-A)" -#: netbox/extras/choices.py:144 netbox/extras/choices.py:167 +#: extras/choices.py:144 extras/choices.py:167 msgid "Info" msgstr "Informazioni" -#: netbox/extras/choices.py:145 netbox/extras/choices.py:168 +#: extras/choices.py:145 extras/choices.py:168 msgid "Success" msgstr "Successo" -#: netbox/extras/choices.py:146 netbox/extras/choices.py:169 +#: extras/choices.py:146 extras/choices.py:169 msgid "Warning" msgstr "Avvertenza" -#: netbox/extras/choices.py:147 +#: extras/choices.py:147 msgid "Danger" msgstr "Pericolo" -#: netbox/extras/choices.py:165 +#: extras/choices.py:165 msgid "Debug" msgstr "Eseguire il debug" -#: netbox/extras/choices.py:166 netbox/netbox/choices.py:101 +#: extras/choices.py:166 netbox/choices.py:101 msgid "Default" msgstr "Predefinito" -#: netbox/extras/choices.py:170 +#: extras/choices.py:170 msgid "Failure" msgstr "Fallimento" -#: netbox/extras/choices.py:186 +#: extras/choices.py:186 msgid "Hourly" msgstr "Ogni ora" -#: netbox/extras/choices.py:187 +#: extras/choices.py:187 msgid "12 hours" msgstr "12 ore" -#: netbox/extras/choices.py:188 +#: extras/choices.py:188 msgid "Daily" msgstr "Quotidiano" -#: netbox/extras/choices.py:189 +#: extras/choices.py:189 msgid "Weekly" msgstr "Settimanale" -#: netbox/extras/choices.py:190 +#: extras/choices.py:190 msgid "30 days" msgstr "30 giorni" -#: netbox/extras/choices.py:226 -#: netbox/templates/dcim/virtualchassis_edit.html:107 -#: netbox/templates/generic/bulk_add_component.html:68 -#: netbox/templates/generic/object_edit.html:47 -#: netbox/templates/generic/object_edit.html:80 -#: netbox/templates/ipam/inc/ipaddress_edit_header.html:7 +#: extras/choices.py:226 templates/dcim/virtualchassis_edit.html:107 +#: templates/generic/bulk_add_component.html:68 +#: templates/generic/object_edit.html:47 templates/generic/object_edit.html:80 +#: templates/ipam/inc/ipaddress_edit_header.html:7 msgid "Create" msgstr "Crea" -#: netbox/extras/choices.py:227 +#: extras/choices.py:227 msgid "Update" msgstr "Aggiornamento" -#: netbox/extras/choices.py:228 -#: netbox/templates/circuits/inc/circuit_termination.html:23 -#: netbox/templates/dcim/inc/panels/inventory_items.html:37 -#: netbox/templates/dcim/moduletype/component_templates.html:23 -#: netbox/templates/dcim/powerpanel.html:66 -#: netbox/templates/extras/script_list.html:35 -#: netbox/templates/generic/bulk_delete.html:20 -#: netbox/templates/generic/bulk_delete.html:66 -#: netbox/templates/generic/object_delete.html:19 -#: netbox/templates/htmx/delete_form.html:57 -#: netbox/templates/ipam/inc/panels/fhrp_groups.html:48 -#: netbox/templates/users/objectpermission.html:46 -#: netbox/utilities/templates/buttons/delete.html:11 +#: extras/choices.py:228 templates/circuits/inc/circuit_termination.html:23 +#: templates/dcim/inc/panels/inventory_items.html:37 +#: templates/dcim/powerpanel.html:66 templates/extras/script_list.html:35 +#: templates/generic/bulk_delete.html:20 templates/generic/bulk_delete.html:66 +#: templates/generic/object_delete.html:19 templates/htmx/delete_form.html:57 +#: templates/ipam/inc/panels/fhrp_groups.html:48 +#: templates/users/objectpermission.html:46 +#: utilities/templates/buttons/delete.html:11 msgid "Delete" msgstr "Elimina" -#: netbox/extras/choices.py:252 netbox/netbox/choices.py:57 -#: netbox/netbox/choices.py:102 +#: extras/choices.py:252 netbox/choices.py:57 netbox/choices.py:102 msgid "Blue" msgstr "Blu" -#: netbox/extras/choices.py:253 netbox/netbox/choices.py:56 -#: netbox/netbox/choices.py:103 +#: extras/choices.py:253 netbox/choices.py:56 netbox/choices.py:103 msgid "Indigo" msgstr "Indaco" -#: netbox/extras/choices.py:254 netbox/netbox/choices.py:54 -#: netbox/netbox/choices.py:104 +#: extras/choices.py:254 netbox/choices.py:54 netbox/choices.py:104 msgid "Purple" msgstr "Viola" -#: netbox/extras/choices.py:255 netbox/netbox/choices.py:51 -#: netbox/netbox/choices.py:105 +#: extras/choices.py:255 netbox/choices.py:51 netbox/choices.py:105 msgid "Pink" msgstr "Rosa" -#: netbox/extras/choices.py:256 netbox/netbox/choices.py:50 -#: netbox/netbox/choices.py:106 +#: extras/choices.py:256 netbox/choices.py:50 netbox/choices.py:106 msgid "Red" msgstr "Rosso" -#: netbox/extras/choices.py:257 netbox/netbox/choices.py:68 -#: netbox/netbox/choices.py:107 +#: extras/choices.py:257 netbox/choices.py:68 netbox/choices.py:107 msgid "Orange" msgstr "arancia" -#: netbox/extras/choices.py:258 netbox/netbox/choices.py:66 -#: netbox/netbox/choices.py:108 +#: extras/choices.py:258 netbox/choices.py:66 netbox/choices.py:108 msgid "Yellow" msgstr "Giallo" -#: netbox/extras/choices.py:259 netbox/netbox/choices.py:63 -#: netbox/netbox/choices.py:109 +#: extras/choices.py:259 netbox/choices.py:63 netbox/choices.py:109 msgid "Green" msgstr "Verde" -#: netbox/extras/choices.py:260 netbox/netbox/choices.py:60 -#: netbox/netbox/choices.py:110 +#: extras/choices.py:260 netbox/choices.py:60 netbox/choices.py:110 msgid "Teal" msgstr "color tè blu" -#: netbox/extras/choices.py:261 netbox/netbox/choices.py:59 -#: netbox/netbox/choices.py:111 +#: extras/choices.py:261 netbox/choices.py:59 netbox/choices.py:111 msgid "Cyan" msgstr "Ciano" -#: netbox/extras/choices.py:262 netbox/netbox/choices.py:112 +#: extras/choices.py:262 netbox/choices.py:112 msgid "Gray" msgstr "Grigio" -#: netbox/extras/choices.py:263 netbox/netbox/choices.py:74 -#: netbox/netbox/choices.py:113 +#: extras/choices.py:263 netbox/choices.py:74 netbox/choices.py:113 msgid "Black" msgstr "Nero" -#: netbox/extras/choices.py:264 netbox/netbox/choices.py:75 -#: netbox/netbox/choices.py:114 +#: extras/choices.py:264 netbox/choices.py:75 netbox/choices.py:114 msgid "White" msgstr "bianco" -#: netbox/extras/choices.py:279 netbox/extras/forms/model_forms.py:353 -#: netbox/extras/forms/model_forms.py:430 -#: netbox/templates/extras/webhook.html:10 +#: extras/choices.py:279 extras/forms/model_forms.py:353 +#: extras/forms/model_forms.py:430 templates/extras/webhook.html:10 msgid "Webhook" msgstr "Webhook" -#: netbox/extras/choices.py:280 netbox/extras/forms/model_forms.py:418 -#: netbox/templates/extras/script/base.html:29 +#: extras/choices.py:280 extras/forms/model_forms.py:418 +#: templates/extras/script/base.html:29 msgid "Script" msgstr "Sceneggiatura" -#: netbox/extras/choices.py:281 +#: extras/choices.py:281 msgid "Notification" msgstr "Notifica" -#: netbox/extras/conditions.py:54 +#: extras/conditions.py:54 #, python-brace-format msgid "Unknown operator: {op}. Must be one of: {operators}" msgstr "" "Operatore sconosciuto: {op}. Deve essere uno dei seguenti: {operators}" -#: netbox/extras/conditions.py:58 +#: extras/conditions.py:58 #, python-brace-format msgid "Unsupported value type: {value}" msgstr "Tipo di valore non supportato: {value}" -#: netbox/extras/conditions.py:60 +#: extras/conditions.py:60 #, python-brace-format msgid "Invalid type for {op} operation: {value}" msgstr "Tipo non valido per {op} operazione: {value}" -#: netbox/extras/conditions.py:137 +#: extras/conditions.py:137 #, python-brace-format msgid "Ruleset must be a dictionary, not {ruleset}." msgstr "Il set di regole deve essere un dizionario, non {ruleset}." -#: netbox/extras/conditions.py:142 +#: extras/conditions.py:142 msgid "Invalid logic type: must be 'AND' or 'OR'. Please check documentation." msgstr "" "Tipo di logica non valido: deve essere 'AND' o 'OR'. Controlla la " "documentazione." -#: netbox/extras/conditions.py:154 +#: extras/conditions.py:154 msgid "Incorrect key(s) informed. Please check documentation." msgstr "Chiavi errate comunicate. Si prega di controllare la documentazione." -#: netbox/extras/dashboard/forms.py:38 +#: extras/dashboard/forms.py:38 msgid "Widget type" msgstr "Tipo di widget" -#: netbox/extras/dashboard/utils.py:36 +#: extras/dashboard/utils.py:36 #, python-brace-format msgid "Unregistered widget class: {name}" msgstr "Classe widget non registrata: {name}" -#: netbox/extras/dashboard/widgets.py:125 +#: extras/dashboard/widgets.py:125 #, python-brace-format msgid "{class_name} must define a render() method." msgstr "{class_name} deve definire un metodo render ()." -#: netbox/extras/dashboard/widgets.py:144 +#: extras/dashboard/widgets.py:144 msgid "Note" msgstr "Nota" -#: netbox/extras/dashboard/widgets.py:145 +#: extras/dashboard/widgets.py:145 msgid "Display some arbitrary custom content. Markdown is supported." msgstr "" "Visualizza alcuni contenuti personalizzati arbitrari. Markdown è supportato." -#: netbox/extras/dashboard/widgets.py:158 +#: extras/dashboard/widgets.py:158 msgid "Object Counts" msgstr "Conteggi oggetti" -#: netbox/extras/dashboard/widgets.py:159 +#: extras/dashboard/widgets.py:159 msgid "" "Display a set of NetBox models and the number of objects created for each " "type." @@ -7512,293 +7001,271 @@ msgstr "" "Visualizza un set di modelli NetBox e il numero di oggetti creati per ogni " "tipo." -#: netbox/extras/dashboard/widgets.py:169 +#: extras/dashboard/widgets.py:169 msgid "Filters to apply when counting the number of objects" msgstr "Filtri da applicare durante il conteggio del numero di oggetti" -#: netbox/extras/dashboard/widgets.py:177 +#: extras/dashboard/widgets.py:177 msgid "Invalid format. Object filters must be passed as a dictionary." msgstr "" "Formato non valido. I filtri degli oggetti devono essere passati come " "dizionario." -#: netbox/extras/dashboard/widgets.py:208 +#: extras/dashboard/widgets.py:208 msgid "Object List" msgstr "Elenco oggetti" -#: netbox/extras/dashboard/widgets.py:209 +#: extras/dashboard/widgets.py:209 msgid "Display an arbitrary list of objects." msgstr "Visualizza un elenco arbitrario di oggetti." -#: netbox/extras/dashboard/widgets.py:222 +#: extras/dashboard/widgets.py:222 msgid "The default number of objects to display" msgstr "Il numero predefinito di oggetti da visualizzare" -#: netbox/extras/dashboard/widgets.py:234 +#: extras/dashboard/widgets.py:234 msgid "Invalid format. URL parameters must be passed as a dictionary." msgstr "" "Formato non valido. I parametri URL devono essere passati come dizionario." -#: netbox/extras/dashboard/widgets.py:274 +#: extras/dashboard/widgets.py:274 msgid "RSS Feed" msgstr "Feed RSS" -#: netbox/extras/dashboard/widgets.py:279 +#: extras/dashboard/widgets.py:279 msgid "Embed an RSS feed from an external website." msgstr "Incorpora un feed RSS da un sito Web esterno." -#: netbox/extras/dashboard/widgets.py:286 +#: extras/dashboard/widgets.py:286 msgid "Feed URL" msgstr "URL del feed" -#: netbox/extras/dashboard/widgets.py:291 +#: extras/dashboard/widgets.py:291 msgid "The maximum number of objects to display" msgstr "Il numero massimo di oggetti da visualizzare" -#: netbox/extras/dashboard/widgets.py:296 +#: extras/dashboard/widgets.py:296 msgid "How long to stored the cached content (in seconds)" msgstr "" "Per quanto tempo conservare il contenuto memorizzato nella cache (in " "secondi)" -#: netbox/extras/dashboard/widgets.py:348 -#: netbox/templates/account/base.html:10 -#: netbox/templates/account/bookmarks.html:7 -#: netbox/templates/inc/user_menu.html:48 +#: extras/dashboard/widgets.py:348 templates/account/base.html:10 +#: templates/account/bookmarks.html:7 templates/inc/user_menu.html:48 msgid "Bookmarks" msgstr "Segnalibri" -#: netbox/extras/dashboard/widgets.py:352 +#: extras/dashboard/widgets.py:352 msgid "Show your personal bookmarks" msgstr "Mostra i tuoi segnalibri personali" -#: netbox/extras/events.py:147 +#: extras/events.py:147 #, python-brace-format msgid "Unknown action type for an event rule: {action_type}" msgstr "Tipo di azione sconosciuto per una regola di evento: {action_type}" -#: netbox/extras/events.py:192 +#: extras/events.py:192 #, python-brace-format msgid "Cannot import events pipeline {name} error: {error}" msgstr "Impossibile importare la pipeline di eventi {name} errore: {error}" -#: netbox/extras/filtersets.py:45 +#: extras/filtersets.py:45 msgid "Script module (ID)" msgstr "Modulo script (ID)" -#: netbox/extras/filtersets.py:254 netbox/extras/filtersets.py:637 -#: netbox/extras/filtersets.py:665 +#: extras/filtersets.py:254 extras/filtersets.py:637 extras/filtersets.py:665 msgid "Data file (ID)" msgstr "File di dati (ID)" -#: netbox/extras/filtersets.py:370 netbox/users/filtersets.py:68 -#: netbox/users/filtersets.py:191 +#: extras/filtersets.py:370 users/filtersets.py:68 users/filtersets.py:191 msgid "Group (name)" msgstr "Gruppo (nome)" -#: netbox/extras/filtersets.py:574 -#: netbox/virtualization/forms/filtersets.py:118 +#: extras/filtersets.py:574 virtualization/forms/filtersets.py:118 msgid "Cluster type" msgstr "Tipo di cluster" -#: netbox/extras/filtersets.py:580 netbox/virtualization/filtersets.py:95 -#: netbox/virtualization/filtersets.py:147 +#: extras/filtersets.py:580 virtualization/filtersets.py:95 +#: virtualization/filtersets.py:147 msgid "Cluster type (slug)" msgstr "Tipo di cluster (slug)" -#: netbox/extras/filtersets.py:601 netbox/tenancy/forms/forms.py:16 -#: netbox/tenancy/forms/forms.py:39 +#: extras/filtersets.py:601 tenancy/forms/forms.py:16 +#: tenancy/forms/forms.py:39 msgid "Tenant group" msgstr "Gruppo di inquilini" -#: netbox/extras/filtersets.py:607 netbox/tenancy/filtersets.py:188 -#: netbox/tenancy/filtersets.py:208 +#: extras/filtersets.py:607 tenancy/filtersets.py:188 +#: tenancy/filtersets.py:208 msgid "Tenant group (slug)" msgstr "Gruppo di inquilini (slug)" -#: netbox/extras/filtersets.py:623 netbox/extras/forms/model_forms.py:495 -#: netbox/templates/extras/tag.html:11 +#: extras/filtersets.py:623 extras/forms/model_forms.py:495 +#: templates/extras/tag.html:11 msgid "Tag" msgstr "Etichetta" -#: netbox/extras/filtersets.py:629 +#: extras/filtersets.py:629 msgid "Tag (slug)" msgstr "Etichetta (lumaca)" -#: netbox/extras/filtersets.py:689 netbox/extras/forms/filtersets.py:429 +#: extras/filtersets.py:689 extras/forms/filtersets.py:429 msgid "Has local config context data" msgstr "Dispone di dati di contesto di configurazione locali" -#: netbox/extras/forms/bulk_edit.py:35 netbox/extras/forms/filtersets.py:60 +#: extras/forms/bulk_edit.py:35 extras/forms/filtersets.py:60 msgid "Group name" msgstr "Nome del gruppo" -#: netbox/extras/forms/bulk_edit.py:43 netbox/extras/forms/filtersets.py:68 -#: netbox/extras/tables/tables.py:65 -#: netbox/templates/extras/customfield.html:38 -#: netbox/templates/generic/bulk_import.html:118 +#: extras/forms/bulk_edit.py:43 extras/forms/filtersets.py:68 +#: extras/tables/tables.py:65 templates/extras/customfield.html:38 +#: templates/generic/bulk_import.html:118 msgid "Required" msgstr "Richiesto" -#: netbox/extras/forms/bulk_edit.py:48 netbox/extras/forms/filtersets.py:75 +#: extras/forms/bulk_edit.py:48 extras/forms/filtersets.py:75 msgid "Must be unique" msgstr "Deve essere unico" -#: netbox/extras/forms/bulk_edit.py:61 netbox/extras/forms/bulk_import.py:60 -#: netbox/extras/forms/filtersets.py:89 -#: netbox/extras/models/customfields.py:209 +#: extras/forms/bulk_edit.py:61 extras/forms/bulk_import.py:60 +#: extras/forms/filtersets.py:89 extras/models/customfields.py:209 msgid "UI visible" msgstr "Interfaccia utente visibile" -#: netbox/extras/forms/bulk_edit.py:66 netbox/extras/forms/bulk_import.py:66 -#: netbox/extras/forms/filtersets.py:94 -#: netbox/extras/models/customfields.py:216 +#: extras/forms/bulk_edit.py:66 extras/forms/bulk_import.py:66 +#: extras/forms/filtersets.py:94 extras/models/customfields.py:216 msgid "UI editable" msgstr "Interfaccia utente modificabile" -#: netbox/extras/forms/bulk_edit.py:71 netbox/extras/forms/filtersets.py:97 +#: extras/forms/bulk_edit.py:71 extras/forms/filtersets.py:97 msgid "Is cloneable" msgstr "È clonabile" -#: netbox/extras/forms/bulk_edit.py:76 netbox/extras/forms/filtersets.py:104 +#: extras/forms/bulk_edit.py:76 extras/forms/filtersets.py:104 msgid "Minimum value" msgstr "Valore minimo" -#: netbox/extras/forms/bulk_edit.py:80 netbox/extras/forms/filtersets.py:108 +#: extras/forms/bulk_edit.py:80 extras/forms/filtersets.py:108 msgid "Maximum value" msgstr "Valore massimo" -#: netbox/extras/forms/bulk_edit.py:84 netbox/extras/forms/filtersets.py:112 +#: extras/forms/bulk_edit.py:84 extras/forms/filtersets.py:112 msgid "Validation regex" msgstr "Regex di convalida" -#: netbox/extras/forms/bulk_edit.py:91 netbox/extras/forms/filtersets.py:46 -#: netbox/extras/forms/model_forms.py:76 -#: netbox/templates/extras/customfield.html:70 +#: extras/forms/bulk_edit.py:91 extras/forms/filtersets.py:46 +#: extras/forms/model_forms.py:76 templates/extras/customfield.html:70 msgid "Behavior" msgstr "Comportamento" -#: netbox/extras/forms/bulk_edit.py:128 netbox/extras/forms/filtersets.py:149 +#: extras/forms/bulk_edit.py:128 extras/forms/filtersets.py:149 msgid "New window" msgstr "Nuova finestra" -#: netbox/extras/forms/bulk_edit.py:137 +#: extras/forms/bulk_edit.py:137 msgid "Button class" msgstr "Classe Button" -#: netbox/extras/forms/bulk_edit.py:154 netbox/extras/forms/filtersets.py:187 -#: netbox/extras/models/models.py:409 +#: extras/forms/bulk_edit.py:154 extras/forms/filtersets.py:187 +#: extras/models/models.py:409 msgid "MIME type" msgstr "Tipo MIME" -#: netbox/extras/forms/bulk_edit.py:159 netbox/extras/forms/filtersets.py:190 +#: extras/forms/bulk_edit.py:159 extras/forms/filtersets.py:190 msgid "File extension" msgstr "Estensione del file" -#: netbox/extras/forms/bulk_edit.py:164 netbox/extras/forms/filtersets.py:194 +#: extras/forms/bulk_edit.py:164 extras/forms/filtersets.py:194 msgid "As attachment" msgstr "Come allegato" -#: netbox/extras/forms/bulk_edit.py:192 netbox/extras/forms/filtersets.py:236 -#: netbox/extras/tables/tables.py:256 -#: netbox/templates/extras/savedfilter.html:29 +#: extras/forms/bulk_edit.py:192 extras/forms/filtersets.py:236 +#: extras/tables/tables.py:256 templates/extras/savedfilter.html:29 msgid "Shared" msgstr "Condiviso" -#: netbox/extras/forms/bulk_edit.py:215 netbox/extras/forms/filtersets.py:265 -#: netbox/extras/models/models.py:174 +#: extras/forms/bulk_edit.py:215 extras/forms/filtersets.py:265 +#: extras/models/models.py:174 msgid "HTTP method" msgstr "Metodo HTTP" -#: netbox/extras/forms/bulk_edit.py:219 netbox/extras/forms/filtersets.py:259 -#: netbox/templates/extras/webhook.html:30 +#: extras/forms/bulk_edit.py:219 extras/forms/filtersets.py:259 +#: templates/extras/webhook.html:30 msgid "Payload URL" msgstr "URL del payload" -#: netbox/extras/forms/bulk_edit.py:224 netbox/extras/models/models.py:214 +#: extras/forms/bulk_edit.py:224 extras/models/models.py:214 msgid "SSL verification" msgstr "Verifica SSL" -#: netbox/extras/forms/bulk_edit.py:227 -#: netbox/templates/extras/webhook.html:38 +#: extras/forms/bulk_edit.py:227 templates/extras/webhook.html:38 msgid "Secret" msgstr "Segreto" -#: netbox/extras/forms/bulk_edit.py:232 +#: extras/forms/bulk_edit.py:232 msgid "CA file path" msgstr "Percorso del file CA" -#: netbox/extras/forms/bulk_edit.py:253 netbox/extras/forms/bulk_import.py:192 -#: netbox/extras/forms/model_forms.py:377 +#: extras/forms/bulk_edit.py:253 extras/forms/bulk_import.py:192 +#: extras/forms/model_forms.py:377 msgid "Event types" msgstr "Tipi di eventi" -#: netbox/extras/forms/bulk_edit.py:293 +#: extras/forms/bulk_edit.py:293 msgid "Is active" msgstr "È attivo" -#: netbox/extras/forms/bulk_import.py:37 -#: netbox/extras/forms/bulk_import.py:118 -#: netbox/extras/forms/bulk_import.py:139 -#: netbox/extras/forms/bulk_import.py:162 -#: netbox/extras/forms/bulk_import.py:186 -#: netbox/extras/forms/filtersets.py:137 netbox/extras/forms/filtersets.py:224 -#: netbox/extras/forms/model_forms.py:47 -#: netbox/extras/forms/model_forms.py:205 -#: netbox/extras/forms/model_forms.py:237 -#: netbox/extras/forms/model_forms.py:278 -#: netbox/extras/forms/model_forms.py:372 -#: netbox/extras/forms/model_forms.py:489 -#: netbox/users/forms/model_forms.py:276 +#: extras/forms/bulk_import.py:37 extras/forms/bulk_import.py:118 +#: extras/forms/bulk_import.py:139 extras/forms/bulk_import.py:162 +#: extras/forms/bulk_import.py:186 extras/forms/filtersets.py:137 +#: extras/forms/filtersets.py:224 extras/forms/model_forms.py:47 +#: extras/forms/model_forms.py:205 extras/forms/model_forms.py:237 +#: extras/forms/model_forms.py:278 extras/forms/model_forms.py:372 +#: extras/forms/model_forms.py:489 users/forms/model_forms.py:276 msgid "Object types" msgstr "Tipi di oggetti" -#: netbox/extras/forms/bulk_import.py:39 -#: netbox/extras/forms/bulk_import.py:120 -#: netbox/extras/forms/bulk_import.py:141 -#: netbox/extras/forms/bulk_import.py:164 -#: netbox/extras/forms/bulk_import.py:188 -#: netbox/tenancy/forms/bulk_import.py:96 +#: extras/forms/bulk_import.py:39 extras/forms/bulk_import.py:120 +#: extras/forms/bulk_import.py:141 extras/forms/bulk_import.py:164 +#: extras/forms/bulk_import.py:188 tenancy/forms/bulk_import.py:96 msgid "One or more assigned object types" msgstr "Uno o più tipi di oggetti assegnati" -#: netbox/extras/forms/bulk_import.py:44 +#: extras/forms/bulk_import.py:44 msgid "Field data type (e.g. text, integer, etc.)" msgstr "Tipo di dati del campo (ad esempio testo, numero intero, ecc.)" -#: netbox/extras/forms/bulk_import.py:47 netbox/extras/forms/filtersets.py:208 -#: netbox/extras/forms/filtersets.py:281 -#: netbox/extras/forms/model_forms.py:304 -#: netbox/extras/forms/model_forms.py:341 -#: netbox/tenancy/forms/filtersets.py:92 +#: extras/forms/bulk_import.py:47 extras/forms/filtersets.py:208 +#: extras/forms/filtersets.py:281 extras/forms/model_forms.py:304 +#: extras/forms/model_forms.py:341 tenancy/forms/filtersets.py:92 msgid "Object type" msgstr "Tipo di oggetto" -#: netbox/extras/forms/bulk_import.py:50 +#: extras/forms/bulk_import.py:50 msgid "Object type (for object or multi-object fields)" msgstr "Tipo di oggetto (per campi oggetto o multioggetto)" -#: netbox/extras/forms/bulk_import.py:53 netbox/extras/forms/filtersets.py:84 +#: extras/forms/bulk_import.py:53 extras/forms/filtersets.py:84 msgid "Choice set" msgstr "Set a scelta" -#: netbox/extras/forms/bulk_import.py:57 +#: extras/forms/bulk_import.py:57 msgid "Choice set (for selection fields)" msgstr "Set di scelte (per i campi di selezione)" -#: netbox/extras/forms/bulk_import.py:63 +#: extras/forms/bulk_import.py:63 msgid "Whether the custom field is displayed in the UI" msgstr "Se il campo personalizzato viene visualizzato nell'interfaccia utente" -#: netbox/extras/forms/bulk_import.py:69 +#: extras/forms/bulk_import.py:69 msgid "Whether the custom field is editable in the UI" msgstr "Se il campo personalizzato è modificabile nell'interfaccia utente" -#: netbox/extras/forms/bulk_import.py:85 +#: extras/forms/bulk_import.py:85 msgid "The base set of predefined choices to use (if any)" msgstr "L'insieme base di scelte predefinite da utilizzare (se presenti)" -#: netbox/extras/forms/bulk_import.py:91 +#: extras/forms/bulk_import.py:91 msgid "" "Quoted string of comma-separated field choices with optional labels " "separated by colon: \"choice1:First Choice,choice2:Second Choice\"" @@ -7807,201 +7274,185 @@ msgstr "" "opzionali separate da due punti: «Scelta 1:prima scelta, scelta 2: seconda " "scelta»" -#: netbox/extras/forms/bulk_import.py:123 netbox/extras/models/models.py:323 +#: extras/forms/bulk_import.py:123 extras/models/models.py:323 msgid "button class" msgstr "classe di pulsanti" -#: netbox/extras/forms/bulk_import.py:126 netbox/extras/models/models.py:327 +#: extras/forms/bulk_import.py:126 extras/models/models.py:327 msgid "" "The class of the first link in a group will be used for the dropdown button" msgstr "" "La classe del primo link di un gruppo verrà utilizzata per il pulsante a " "discesa" -#: netbox/extras/forms/bulk_import.py:193 +#: extras/forms/bulk_import.py:193 msgid "The event type(s) which will trigger this rule" msgstr "I tipi di evento che attiveranno questa regola" -#: netbox/extras/forms/bulk_import.py:196 +#: extras/forms/bulk_import.py:196 msgid "Action object" msgstr "Oggetto d'azione" -#: netbox/extras/forms/bulk_import.py:198 +#: extras/forms/bulk_import.py:198 msgid "Webhook name or script as dotted path module.Class" msgstr "Nome o script del webhook come percorso punteggiato module.Class" -#: netbox/extras/forms/bulk_import.py:219 +#: extras/forms/bulk_import.py:219 #, python-brace-format msgid "Webhook {name} not found" msgstr "Webhook {name} non trovato" -#: netbox/extras/forms/bulk_import.py:228 +#: extras/forms/bulk_import.py:228 #, python-brace-format msgid "Script {name} not found" msgstr "Sceneggiatura {name} non trovato" -#: netbox/extras/forms/bulk_import.py:244 +#: extras/forms/bulk_import.py:244 msgid "Assigned object type" msgstr "Tipo di oggetto assegnato" -#: netbox/extras/forms/bulk_import.py:249 +#: extras/forms/bulk_import.py:249 msgid "The classification of entry" msgstr "La classificazione degli ingressi" -#: netbox/extras/forms/bulk_import.py:261 -#: netbox/extras/forms/model_forms.py:320 netbox/netbox/navigation/menu.py:390 -#: netbox/templates/extras/notificationgroup.html:41 -#: netbox/templates/users/group.html:29 netbox/users/forms/model_forms.py:236 -#: netbox/users/forms/model_forms.py:248 netbox/users/forms/model_forms.py:300 -#: netbox/users/tables.py:102 +#: extras/forms/bulk_import.py:261 extras/forms/model_forms.py:320 +#: netbox/navigation/menu.py:390 templates/extras/notificationgroup.html:41 +#: templates/users/group.html:29 users/forms/model_forms.py:236 +#: users/forms/model_forms.py:248 users/forms/model_forms.py:300 +#: users/tables.py:102 msgid "Users" msgstr "Utenti" -#: netbox/extras/forms/bulk_import.py:265 +#: extras/forms/bulk_import.py:265 msgid "User names separated by commas, encased with double quotes" msgstr "Nomi utente separati da virgole, racchiusi tra virgolette" -#: netbox/extras/forms/bulk_import.py:268 -#: netbox/extras/forms/model_forms.py:315 netbox/netbox/navigation/menu.py:410 -#: netbox/templates/extras/notificationgroup.html:31 -#: netbox/users/forms/model_forms.py:181 netbox/users/forms/model_forms.py:193 -#: netbox/users/forms/model_forms.py:305 netbox/users/tables.py:35 -#: netbox/users/tables.py:106 +#: extras/forms/bulk_import.py:268 extras/forms/model_forms.py:315 +#: netbox/navigation/menu.py:410 templates/extras/notificationgroup.html:31 +#: users/forms/model_forms.py:181 users/forms/model_forms.py:193 +#: users/forms/model_forms.py:305 users/tables.py:35 users/tables.py:106 msgid "Groups" msgstr "Gruppi" -#: netbox/extras/forms/bulk_import.py:272 +#: extras/forms/bulk_import.py:272 msgid "Group names separated by commas, encased with double quotes" msgstr "Nomi di gruppo separati da virgole, racchiusi tra virgolette doppie" -#: netbox/extras/forms/filtersets.py:52 netbox/extras/forms/model_forms.py:56 +#: extras/forms/filtersets.py:52 extras/forms/model_forms.py:56 msgid "Related object type" msgstr "Tipo di oggetto correlato" -#: netbox/extras/forms/filtersets.py:57 +#: extras/forms/filtersets.py:57 msgid "Field type" msgstr "Tipo di campo" -#: netbox/extras/forms/filtersets.py:120 -#: netbox/extras/forms/model_forms.py:157 netbox/extras/tables/tables.py:91 -#: netbox/templates/generic/bulk_import.html:154 +#: extras/forms/filtersets.py:120 extras/forms/model_forms.py:157 +#: extras/tables/tables.py:91 templates/generic/bulk_import.html:154 msgid "Choices" msgstr "Scelte" -#: netbox/extras/forms/filtersets.py:164 netbox/extras/forms/filtersets.py:319 -#: netbox/extras/forms/filtersets.py:408 -#: netbox/extras/forms/model_forms.py:572 netbox/templates/core/job.html:96 -#: netbox/templates/extras/eventrule.html:84 +#: extras/forms/filtersets.py:164 extras/forms/filtersets.py:319 +#: extras/forms/filtersets.py:408 extras/forms/model_forms.py:572 +#: templates/core/job.html:96 templates/extras/eventrule.html:84 msgid "Data" msgstr "Dati" -#: netbox/extras/forms/filtersets.py:175 netbox/extras/forms/filtersets.py:333 -#: netbox/extras/forms/filtersets.py:418 netbox/netbox/choices.py:130 -#: netbox/utilities/forms/bulk_import.py:26 +#: extras/forms/filtersets.py:175 extras/forms/filtersets.py:333 +#: extras/forms/filtersets.py:418 netbox/choices.py:130 +#: utilities/forms/bulk_import.py:26 msgid "Data file" msgstr "File di dati" -#: netbox/extras/forms/filtersets.py:183 +#: extras/forms/filtersets.py:183 msgid "Content types" msgstr "Tipi di contenuto" -#: netbox/extras/forms/filtersets.py:255 netbox/extras/models/models.py:179 +#: extras/forms/filtersets.py:255 extras/models/models.py:179 msgid "HTTP content type" msgstr "Tipo di contenuto HTTP" -#: netbox/extras/forms/filtersets.py:286 +#: extras/forms/filtersets.py:286 msgid "Event type" msgstr "Tipo di evento" -#: netbox/extras/forms/filtersets.py:291 +#: extras/forms/filtersets.py:291 msgid "Action type" msgstr "Tipo di azione" -#: netbox/extras/forms/filtersets.py:307 +#: extras/forms/filtersets.py:307 msgid "Tagged object type" msgstr "Tipo di oggetto con tag" -#: netbox/extras/forms/filtersets.py:312 +#: extras/forms/filtersets.py:312 msgid "Allowed object type" msgstr "Tipo di oggetto consentito" -#: netbox/extras/forms/filtersets.py:341 -#: netbox/extras/forms/model_forms.py:507 netbox/netbox/navigation/menu.py:18 +#: extras/forms/filtersets.py:341 extras/forms/model_forms.py:507 +#: netbox/navigation/menu.py:18 msgid "Regions" msgstr "Regioni" -#: netbox/extras/forms/filtersets.py:346 -#: netbox/extras/forms/model_forms.py:512 +#: extras/forms/filtersets.py:346 extras/forms/model_forms.py:512 msgid "Site groups" msgstr "Gruppi del sito" -#: netbox/extras/forms/filtersets.py:356 -#: netbox/extras/forms/model_forms.py:522 netbox/netbox/navigation/menu.py:20 -#: netbox/templates/dcim/site.html:127 +#: extras/forms/filtersets.py:356 extras/forms/model_forms.py:522 +#: netbox/navigation/menu.py:20 templates/dcim/site.html:127 msgid "Locations" msgstr "Sedi" -#: netbox/extras/forms/filtersets.py:361 -#: netbox/extras/forms/model_forms.py:527 +#: extras/forms/filtersets.py:361 extras/forms/model_forms.py:527 msgid "Device types" msgstr "Tipi di dispositivi" -#: netbox/extras/forms/filtersets.py:366 -#: netbox/extras/forms/model_forms.py:532 +#: extras/forms/filtersets.py:366 extras/forms/model_forms.py:532 msgid "Roles" msgstr "Ruoli" -#: netbox/extras/forms/filtersets.py:376 -#: netbox/extras/forms/model_forms.py:542 +#: extras/forms/filtersets.py:376 extras/forms/model_forms.py:542 msgid "Cluster types" msgstr "Tipi di cluster" -#: netbox/extras/forms/filtersets.py:381 -#: netbox/extras/forms/model_forms.py:547 +#: extras/forms/filtersets.py:381 extras/forms/model_forms.py:547 msgid "Cluster groups" msgstr "Gruppi di cluster" -#: netbox/extras/forms/filtersets.py:386 -#: netbox/extras/forms/model_forms.py:552 netbox/netbox/navigation/menu.py:255 -#: netbox/netbox/navigation/menu.py:257 -#: netbox/templates/virtualization/clustertype.html:30 -#: netbox/virtualization/tables/clusters.py:23 -#: netbox/virtualization/tables/clusters.py:45 +#: extras/forms/filtersets.py:386 extras/forms/model_forms.py:552 +#: netbox/navigation/menu.py:255 netbox/navigation/menu.py:257 +#: templates/virtualization/clustertype.html:30 +#: virtualization/tables/clusters.py:23 virtualization/tables/clusters.py:45 msgid "Clusters" msgstr "Cluster" -#: netbox/extras/forms/filtersets.py:391 -#: netbox/extras/forms/model_forms.py:557 +#: extras/forms/filtersets.py:391 extras/forms/model_forms.py:557 msgid "Tenant groups" msgstr "Gruppi di inquilini" -#: netbox/extras/forms/model_forms.py:49 +#: extras/forms/model_forms.py:49 msgid "The type(s) of object that have this custom field" msgstr "I tipi di oggetto che hanno questo campo personalizzato" -#: netbox/extras/forms/model_forms.py:52 +#: extras/forms/model_forms.py:52 msgid "Default value" msgstr "Valore predefinito" -#: netbox/extras/forms/model_forms.py:58 +#: extras/forms/model_forms.py:58 msgid "Type of the related object (for object/multi-object fields only)" msgstr "Tipo di oggetto correlato (solo per i campi oggetto/multioggetto)" -#: netbox/extras/forms/model_forms.py:61 -#: netbox/templates/extras/customfield.html:60 +#: extras/forms/model_forms.py:61 templates/extras/customfield.html:60 msgid "Related object filter" msgstr "Filtro oggetto correlato" -#: netbox/extras/forms/model_forms.py:63 +#: extras/forms/model_forms.py:63 msgid "Specify query parameters as a JSON object." msgstr "Specifica i parametri della query come oggetto JSON." -#: netbox/extras/forms/model_forms.py:73 -#: netbox/templates/extras/customfield.html:10 +#: extras/forms/model_forms.py:73 templates/extras/customfield.html:10 msgid "Custom Field" msgstr "Campo personalizzato" -#: netbox/extras/forms/model_forms.py:85 +#: extras/forms/model_forms.py:85 msgid "" "The type of data stored in this field. For object/multi-object fields, " "select the related object type below." @@ -8009,7 +7460,7 @@ msgstr "" "Il tipo di dati memorizzati in questo campo. Per i campi " "oggetti/multioggetto, seleziona il tipo di oggetto correlato di seguito." -#: netbox/extras/forms/model_forms.py:88 +#: extras/forms/model_forms.py:88 msgid "" "This will be displayed as help text for the form field. Markdown is " "supported." @@ -8017,11 +7468,11 @@ msgstr "" "Questo verrà visualizzato come testo di aiuto per il campo del modulo. " "Markdown è supportato." -#: netbox/extras/forms/model_forms.py:143 +#: extras/forms/model_forms.py:143 msgid "Related Object" msgstr "Oggetto correlato" -#: netbox/extras/forms/model_forms.py:169 +#: extras/forms/model_forms.py:169 msgid "" "Enter one choice per line. An optional label may be specified for each " "choice by appending it with a colon. Example:" @@ -8029,16 +7480,15 @@ msgstr "" "Inserisci una scelta per riga. È possibile specificare un'etichetta " "opzionale per ciascuna scelta aggiungendola con i due punti. Esempio:" -#: netbox/extras/forms/model_forms.py:212 -#: netbox/templates/extras/customlink.html:10 +#: extras/forms/model_forms.py:212 templates/extras/customlink.html:10 msgid "Custom Link" msgstr "Link personalizzato" -#: netbox/extras/forms/model_forms.py:214 +#: extras/forms/model_forms.py:214 msgid "Templates" msgstr "Modelli" -#: netbox/extras/forms/model_forms.py:226 +#: extras/forms/model_forms.py:226 #, python-brace-format msgid "" "Jinja2 template code for the link text. Reference the object as {example}. " @@ -8048,7 +7498,7 @@ msgstr "" "come {example}. I link che vengono visualizzati come testo vuoto non " "verranno visualizzati." -#: netbox/extras/forms/model_forms.py:230 +#: extras/forms/model_forms.py:230 #, python-brace-format msgid "" "Jinja2 template code for the link URL. Reference the object as {example}." @@ -8056,61 +7506,55 @@ msgstr "" "Codice modello Jinja2 per l'URL del link. Fai riferimento all'oggetto come " "{example}." -#: netbox/extras/forms/model_forms.py:241 -#: netbox/extras/forms/model_forms.py:624 +#: extras/forms/model_forms.py:241 extras/forms/model_forms.py:624 msgid "Template code" msgstr "Codice modello" -#: netbox/extras/forms/model_forms.py:247 -#: netbox/templates/extras/exporttemplate.html:12 +#: extras/forms/model_forms.py:247 templates/extras/exporttemplate.html:12 msgid "Export Template" msgstr "Modello di esportazione" -#: netbox/extras/forms/model_forms.py:249 +#: extras/forms/model_forms.py:249 msgid "Rendering" msgstr "Rendering" -#: netbox/extras/forms/model_forms.py:263 -#: netbox/extras/forms/model_forms.py:649 +#: extras/forms/model_forms.py:263 extras/forms/model_forms.py:649 msgid "Template content is populated from the remote source selected below." msgstr "" "Il contenuto del modello viene compilato dalla fonte remota selezionata di " "seguito." -#: netbox/extras/forms/model_forms.py:270 -#: netbox/extras/forms/model_forms.py:656 +#: extras/forms/model_forms.py:270 extras/forms/model_forms.py:656 msgid "Must specify either local content or a data file" msgstr "È necessario specificare il contenuto locale o un file di dati" -#: netbox/extras/forms/model_forms.py:284 netbox/netbox/forms/mixins.py:70 -#: netbox/templates/extras/savedfilter.html:10 +#: extras/forms/model_forms.py:284 netbox/forms/mixins.py:70 +#: templates/extras/savedfilter.html:10 msgid "Saved Filter" msgstr "Filtro salvato" -#: netbox/extras/forms/model_forms.py:334 +#: extras/forms/model_forms.py:334 msgid "A notification group specify at least one user or group." msgstr "Un gruppo di notifiche specifica almeno un utente o un gruppo." -#: netbox/extras/forms/model_forms.py:356 -#: netbox/templates/extras/webhook.html:23 +#: extras/forms/model_forms.py:356 templates/extras/webhook.html:23 msgid "HTTP Request" msgstr "Richiesta HTTP" -#: netbox/extras/forms/model_forms.py:358 -#: netbox/templates/extras/webhook.html:44 +#: extras/forms/model_forms.py:358 templates/extras/webhook.html:44 msgid "SSL" msgstr "SSL" -#: netbox/extras/forms/model_forms.py:380 +#: extras/forms/model_forms.py:380 msgid "Action choice" msgstr "Scelta dell'azione" -#: netbox/extras/forms/model_forms.py:385 +#: extras/forms/model_forms.py:385 msgid "Enter conditions in JSON format." msgstr "" "Inserisci le condizioni in JSON formato." -#: netbox/extras/forms/model_forms.py:389 +#: extras/forms/model_forms.py:389 msgid "" "Enter parameters to pass to the action in JSON format." @@ -8118,113 +7562,111 @@ msgstr "" "Inserisci i parametri da passare all'azione in JSON formato." -#: netbox/extras/forms/model_forms.py:394 -#: netbox/templates/extras/eventrule.html:10 +#: extras/forms/model_forms.py:394 templates/extras/eventrule.html:10 msgid "Event Rule" msgstr "Regola dell'evento" -#: netbox/extras/forms/model_forms.py:395 +#: extras/forms/model_forms.py:395 msgid "Triggers" msgstr "Trigger" -#: netbox/extras/forms/model_forms.py:442 +#: extras/forms/model_forms.py:442 msgid "Notification group" msgstr "Gruppo di notifiche" -#: netbox/extras/forms/model_forms.py:562 netbox/netbox/navigation/menu.py:26 -#: netbox/tenancy/tables/tenants.py:22 +#: extras/forms/model_forms.py:562 netbox/navigation/menu.py:26 +#: tenancy/tables/tenants.py:22 msgid "Tenants" msgstr "Inquilini" -#: netbox/extras/forms/model_forms.py:606 +#: extras/forms/model_forms.py:606 msgid "Data is populated from the remote source selected below." msgstr "I dati vengono compilati dalla fonte remota selezionata di seguito." -#: netbox/extras/forms/model_forms.py:612 +#: extras/forms/model_forms.py:612 msgid "Must specify either local data or a data file" msgstr "È necessario specificare dati locali o un file di dati" -#: netbox/extras/forms/model_forms.py:631 -#: netbox/templates/core/datafile.html:55 +#: extras/forms/model_forms.py:631 templates/core/datafile.html:55 msgid "Content" msgstr "Contenuto" -#: netbox/extras/forms/reports.py:17 netbox/extras/forms/scripts.py:23 +#: extras/forms/reports.py:17 extras/forms/scripts.py:23 msgid "Schedule at" msgstr "Programma a" -#: netbox/extras/forms/reports.py:18 +#: extras/forms/reports.py:18 msgid "Schedule execution of report to a set time" msgstr "Pianifica l'esecuzione del rapporto a un orario prestabilito" -#: netbox/extras/forms/reports.py:23 netbox/extras/forms/scripts.py:29 +#: extras/forms/reports.py:23 extras/forms/scripts.py:29 msgid "Recurs every" msgstr "Ricorre ogni" -#: netbox/extras/forms/reports.py:27 +#: extras/forms/reports.py:27 msgid "Interval at which this report is re-run (in minutes)" msgstr "Intervallo di ripetizione del rapporto (in minuti)" -#: netbox/extras/forms/reports.py:35 netbox/extras/forms/scripts.py:41 +#: extras/forms/reports.py:35 extras/forms/scripts.py:41 #, python-brace-format msgid " (current time: {now})" msgstr " (ora corrente: {now})" -#: netbox/extras/forms/reports.py:45 netbox/extras/forms/scripts.py:51 +#: extras/forms/reports.py:45 extras/forms/scripts.py:51 msgid "Scheduled time must be in the future." msgstr "L'orario programmato deve essere futuro." -#: netbox/extras/forms/scripts.py:17 +#: extras/forms/scripts.py:17 msgid "Commit changes" msgstr "Effettua modifiche" -#: netbox/extras/forms/scripts.py:18 +#: extras/forms/scripts.py:18 msgid "Commit changes to the database (uncheck for a dry-run)" msgstr "" "Effettua il commit delle modifiche al database (deseleziona l'opzione «dry " "run»)" -#: netbox/extras/forms/scripts.py:24 +#: extras/forms/scripts.py:24 msgid "Schedule execution of script to a set time" msgstr "Pianifica l'esecuzione dello script a un orario prestabilito" -#: netbox/extras/forms/scripts.py:33 +#: extras/forms/scripts.py:33 msgid "Interval at which this script is re-run (in minutes)" msgstr "Intervallo di riesecuzione dello script (in minuti)" -#: netbox/extras/jobs.py:49 +#: extras/jobs.py:49 msgid "Database changes have been reverted automatically." msgstr "Le modifiche al database sono state annullate automaticamente." -#: netbox/extras/jobs.py:56 +#: extras/jobs.py:55 msgid "Script aborted with error: " msgstr "Script interrotto con errore: " -#: netbox/extras/jobs.py:66 +#: extras/jobs.py:65 msgid "An exception occurred: " msgstr "Si è verificata un'eccezione: " -#: netbox/extras/jobs.py:71 +#: extras/jobs.py:70 msgid "Database changes have been reverted due to error." msgstr "Le modifiche al database sono state annullate a causa di un errore." -#: netbox/extras/management/commands/reindex.py:66 +#: extras/management/commands/reindex.py:66 msgid "No indexers found!" msgstr "Nessun indicizzatore trovato!" -#: netbox/extras/models/configs.py:130 +#: extras/models/configs.py:130 msgid "config context" msgstr "contesto di configurazione" -#: netbox/extras/models/configs.py:131 +#: extras/models/configs.py:131 msgid "config contexts" msgstr "contesti di configurazione" -#: netbox/extras/models/configs.py:149 netbox/extras/models/configs.py:205 +#: extras/models/configs.py:149 extras/models/configs.py:205 msgid "JSON data must be in object form. Example:" msgstr "I dati JSON devono essere in forma oggetto. Esempio:" -#: netbox/extras/models/configs.py:169 +#: extras/models/configs.py:169 msgid "" "Local config context data takes precedence over source contexts in the final" " rendered config context" @@ -8232,19 +7674,19 @@ msgstr "" "I dati del contesto di configurazione locale hanno la precedenza sui " "contesti di origine nel contesto di configurazione finale renderizzato" -#: netbox/extras/models/configs.py:224 +#: extras/models/configs.py:224 msgid "template code" msgstr "codice modello" -#: netbox/extras/models/configs.py:225 +#: extras/models/configs.py:225 msgid "Jinja2 template code." msgstr "Codice modello Jinja2." -#: netbox/extras/models/configs.py:228 +#: extras/models/configs.py:228 msgid "environment parameters" msgstr "parametri ambientali" -#: netbox/extras/models/configs.py:233 +#: extras/models/configs.py:233 msgid "" "Any additional" @@ -8254,43 +7696,43 @@ msgstr "" "href=\"https://jinja.palletsprojects.com/en/3.1.x/api/#jinja2.Environment\">parametri" " aggiuntivi da superare durante la costruzione dell'ambiente Jinja2." -#: netbox/extras/models/configs.py:240 +#: extras/models/configs.py:240 msgid "config template" msgstr "modello di configurazione" -#: netbox/extras/models/configs.py:241 +#: extras/models/configs.py:241 msgid "config templates" msgstr "modelli di configurazione" -#: netbox/extras/models/customfields.py:75 +#: extras/models/customfields.py:75 msgid "The object(s) to which this field applies." msgstr "Gli oggetti a cui si applica questo campo." -#: netbox/extras/models/customfields.py:82 +#: extras/models/customfields.py:82 msgid "The type of data this custom field holds" msgstr "Il tipo di dati che contiene questo campo personalizzato" -#: netbox/extras/models/customfields.py:89 +#: extras/models/customfields.py:89 msgid "The type of NetBox object this field maps to (for object fields)" msgstr "" "Il tipo di oggetto NetBox a cui questo campo è associato (per i campi " "oggetto)" -#: netbox/extras/models/customfields.py:95 +#: extras/models/customfields.py:95 msgid "Internal field name" msgstr "Nome del campo interno" -#: netbox/extras/models/customfields.py:99 +#: extras/models/customfields.py:99 msgid "Only alphanumeric characters and underscores are allowed." msgstr "Sono consentiti solo caratteri alfanumerici e trattini bassi." -#: netbox/extras/models/customfields.py:104 +#: extras/models/customfields.py:104 msgid "Double underscores are not permitted in custom field names." msgstr "" "I doppi caratteri di sottolineatura non sono consentiti nei nomi dei campi " "personalizzati." -#: netbox/extras/models/customfields.py:115 +#: extras/models/customfields.py:115 msgid "" "Name of the field as displayed to users (if not provided, 'the field's name " "will be used)" @@ -8298,21 +7740,21 @@ msgstr "" "Nome del campo visualizzato agli utenti (se non fornito, «verrà utilizzato " "il nome del campo)" -#: netbox/extras/models/customfields.py:119 netbox/extras/models/models.py:317 +#: extras/models/customfields.py:119 extras/models/models.py:317 msgid "group name" msgstr "nome del gruppo" -#: netbox/extras/models/customfields.py:122 +#: extras/models/customfields.py:122 msgid "Custom fields within the same group will be displayed together" msgstr "" "I campi personalizzati all'interno dello stesso gruppo verranno visualizzati" " insieme" -#: netbox/extras/models/customfields.py:130 +#: extras/models/customfields.py:130 msgid "required" msgstr "necessario" -#: netbox/extras/models/customfields.py:132 +#: extras/models/customfields.py:132 msgid "" "This field is required when creating new objects or editing an existing " "object." @@ -8320,19 +7762,19 @@ msgstr "" "Questo campo è obbligatorio quando si creano nuovi oggetti o si modifica un " "oggetto esistente." -#: netbox/extras/models/customfields.py:135 +#: extras/models/customfields.py:135 msgid "must be unique" msgstr "deve essere unico" -#: netbox/extras/models/customfields.py:137 +#: extras/models/customfields.py:137 msgid "The value of this field must be unique for the assigned object" msgstr "Il valore di questo campo deve essere univoco per l'oggetto assegnato" -#: netbox/extras/models/customfields.py:140 +#: extras/models/customfields.py:140 msgid "search weight" msgstr "peso di ricerca" -#: netbox/extras/models/customfields.py:143 +#: extras/models/customfields.py:143 msgid "" "Weighting for search. Lower values are considered more important. Fields " "with a search weight of zero will be ignored." @@ -8340,11 +7782,11 @@ msgstr "" "Ponderazione per la ricerca. I valori più bassi sono considerati più " "importanti. I campi con un peso di ricerca pari a zero verranno ignorati." -#: netbox/extras/models/customfields.py:148 +#: extras/models/customfields.py:148 msgid "filter logic" msgstr "logica di filtro" -#: netbox/extras/models/customfields.py:152 +#: extras/models/customfields.py:152 msgid "" "Loose matches any instance of a given string; exact matches the entire " "field." @@ -8352,11 +7794,11 @@ msgstr "" "Loose corrisponde a qualsiasi istanza di una determinata stringa; exact " "corrisponde all'intero campo." -#: netbox/extras/models/customfields.py:155 +#: extras/models/customfields.py:155 msgid "default" msgstr "predefinito" -#: netbox/extras/models/customfields.py:159 +#: extras/models/customfields.py:159 msgid "" "Default value for the field (must be a JSON value). Encapsulate strings with" " double quotes (e.g. \"Foo\")." @@ -8364,7 +7806,7 @@ msgstr "" "Valore predefinito per il campo (deve essere un valore JSON). Incapsula le " "stringhe con virgolette doppie (ad esempio «Foo»)." -#: netbox/extras/models/customfields.py:166 +#: extras/models/customfields.py:166 msgid "" "Filter the object selection choices using a query_params dict (must be a " "JSON value).Encapsulate strings with double quotes (e.g. \"Foo\")." @@ -8373,35 +7815,35 @@ msgstr "" "(deve essere un valore JSON). Incapsula le stringhe con virgolette doppie " "(ad esempio «Foo»)." -#: netbox/extras/models/customfields.py:172 +#: extras/models/customfields.py:172 msgid "display weight" msgstr "peso dello schermo" -#: netbox/extras/models/customfields.py:173 +#: extras/models/customfields.py:173 msgid "Fields with higher weights appear lower in a form." msgstr "I campi con pesi più alti appaiono più bassi in un modulo." -#: netbox/extras/models/customfields.py:178 +#: extras/models/customfields.py:178 msgid "minimum value" msgstr "valore minimo" -#: netbox/extras/models/customfields.py:179 +#: extras/models/customfields.py:179 msgid "Minimum allowed value (for numeric fields)" msgstr "Valore minimo consentito (per campi numerici)" -#: netbox/extras/models/customfields.py:184 +#: extras/models/customfields.py:184 msgid "maximum value" msgstr "valore massimo" -#: netbox/extras/models/customfields.py:185 +#: extras/models/customfields.py:185 msgid "Maximum allowed value (for numeric fields)" msgstr "Valore massimo consentito (per campi numerici)" -#: netbox/extras/models/customfields.py:191 +#: extras/models/customfields.py:191 msgid "validation regex" msgstr "regex di convalida" -#: netbox/extras/models/customfields.py:193 +#: extras/models/customfields.py:193 #, python-brace-format msgid "" "Regular expression to enforce on text field values. Use ^ and $ to force " @@ -8412,196 +7854,194 @@ msgstr "" "per forzare la corrispondenza dell'intera stringa. Ad esempio ^ " "[A-Z]{3}$ limiterà i valori a esattamente tre lettere maiuscole." -#: netbox/extras/models/customfields.py:201 +#: extras/models/customfields.py:201 msgid "choice set" msgstr "set di scelta" -#: netbox/extras/models/customfields.py:210 +#: extras/models/customfields.py:210 msgid "Specifies whether the custom field is displayed in the UI" msgstr "" "Specifica se il campo personalizzato viene visualizzato nell'interfaccia " "utente" -#: netbox/extras/models/customfields.py:217 +#: extras/models/customfields.py:217 msgid "Specifies whether the custom field value can be edited in the UI" msgstr "" "Specifica se il valore del campo personalizzato può essere modificato " "nell'interfaccia utente" -#: netbox/extras/models/customfields.py:221 +#: extras/models/customfields.py:221 msgid "is cloneable" msgstr "è clonabile" -#: netbox/extras/models/customfields.py:222 +#: extras/models/customfields.py:222 msgid "Replicate this value when cloning objects" msgstr "Replica questo valore durante la clonazione di oggetti" -#: netbox/extras/models/customfields.py:239 +#: extras/models/customfields.py:239 msgid "custom field" msgstr "campo personalizzato" -#: netbox/extras/models/customfields.py:240 +#: extras/models/customfields.py:240 msgid "custom fields" msgstr "campi personalizzati" -#: netbox/extras/models/customfields.py:329 +#: extras/models/customfields.py:329 #, python-brace-format msgid "Invalid default value \"{value}\": {error}" msgstr "Valore predefinito non valido»{value}«: {error}" -#: netbox/extras/models/customfields.py:336 +#: extras/models/customfields.py:336 msgid "A minimum value may be set only for numeric fields" msgstr "È possibile impostare un valore minimo solo per i campi numerici" -#: netbox/extras/models/customfields.py:338 +#: extras/models/customfields.py:338 msgid "A maximum value may be set only for numeric fields" msgstr "È possibile impostare un valore massimo solo per i campi numerici" -#: netbox/extras/models/customfields.py:348 +#: extras/models/customfields.py:348 msgid "" "Regular expression validation is supported only for text and URL fields" msgstr "" "La convalida delle espressioni regolari è supportata solo per i campi di " "testo e URL" -#: netbox/extras/models/customfields.py:354 +#: extras/models/customfields.py:354 msgid "Uniqueness cannot be enforced for boolean fields" msgstr "L'unicità non può essere applicata per i campi booleani" -#: netbox/extras/models/customfields.py:364 +#: extras/models/customfields.py:364 msgid "Selection fields must specify a set of choices." msgstr "I campi di selezione devono specificare una serie di scelte." -#: netbox/extras/models/customfields.py:368 +#: extras/models/customfields.py:368 msgid "Choices may be set only on selection fields." msgstr "Le scelte possono essere impostate solo nei campi di selezione." -#: netbox/extras/models/customfields.py:375 +#: extras/models/customfields.py:375 msgid "Object fields must define an object type." msgstr "I campi oggetto devono definire un tipo di oggetto." -#: netbox/extras/models/customfields.py:379 +#: extras/models/customfields.py:379 #, python-brace-format msgid "{type} fields may not define an object type." msgstr "{type} i campi non possono definire un tipo di oggetto." -#: netbox/extras/models/customfields.py:386 +#: extras/models/customfields.py:386 msgid "A related object filter can be defined only for object fields." msgstr "" "Un filtro oggetto correlato può essere definito solo per i campi oggetto." -#: netbox/extras/models/customfields.py:390 +#: extras/models/customfields.py:390 msgid "Filter must be defined as a dictionary mapping attributes to values." msgstr "" "Il filtro deve essere definito come un dizionario che associa gli attributi " "ai valori." -#: netbox/extras/models/customfields.py:469 +#: extras/models/customfields.py:469 msgid "True" msgstr "Vero" -#: netbox/extras/models/customfields.py:470 +#: extras/models/customfields.py:470 msgid "False" msgstr "Falso" -#: netbox/extras/models/customfields.py:560 +#: extras/models/customfields.py:560 #, python-brace-format msgid "Values must match this regex: {regex}" msgstr "I valori devono corrispondere a questa regex: {regex}" -#: netbox/extras/models/customfields.py:654 +#: extras/models/customfields.py:654 msgid "Value must be a string." msgstr "Il valore deve essere una stringa." -#: netbox/extras/models/customfields.py:656 +#: extras/models/customfields.py:656 #, python-brace-format msgid "Value must match regex '{regex}'" msgstr "Il valore deve corrispondere a regex '{regex}»" -#: netbox/extras/models/customfields.py:661 +#: extras/models/customfields.py:661 msgid "Value must be an integer." msgstr "Il valore deve essere un numero intero." -#: netbox/extras/models/customfields.py:664 -#: netbox/extras/models/customfields.py:679 +#: extras/models/customfields.py:664 extras/models/customfields.py:679 #, python-brace-format msgid "Value must be at least {minimum}" msgstr "Il valore deve essere almeno {minimum}" -#: netbox/extras/models/customfields.py:668 -#: netbox/extras/models/customfields.py:683 +#: extras/models/customfields.py:668 extras/models/customfields.py:683 #, python-brace-format msgid "Value must not exceed {maximum}" msgstr "Il valore non deve superare {maximum}" -#: netbox/extras/models/customfields.py:676 +#: extras/models/customfields.py:676 msgid "Value must be a decimal." msgstr "Il valore deve essere decimale." -#: netbox/extras/models/customfields.py:688 +#: extras/models/customfields.py:688 msgid "Value must be true or false." msgstr "Il valore deve essere vero o falso." -#: netbox/extras/models/customfields.py:696 +#: extras/models/customfields.py:696 msgid "Date values must be in ISO 8601 format (YYYY-MM-DD)." msgstr "I valori della data devono essere in formato ISO 8601 (AAAA-MM-GG)." -#: netbox/extras/models/customfields.py:705 +#: extras/models/customfields.py:705 msgid "Date and time values must be in ISO 8601 format (YYYY-MM-DD HH:MM:SS)." msgstr "" "I valori di data e ora devono essere in formato ISO 8601 (AAAA-MM-GG " "HH:MM:SS)." -#: netbox/extras/models/customfields.py:712 +#: extras/models/customfields.py:712 #, python-brace-format msgid "Invalid choice ({value}) for choice set {choiceset}." msgstr "Scelta non valida ({value}) per il set a scelta {choiceset}." -#: netbox/extras/models/customfields.py:722 +#: extras/models/customfields.py:722 #, python-brace-format msgid "Invalid choice(s) ({value}) for choice set {choiceset}." msgstr "Scelte non valide ({value}) per il set a scelta {choiceset}." -#: netbox/extras/models/customfields.py:731 +#: extras/models/customfields.py:731 #, python-brace-format msgid "Value must be an object ID, not {type}" msgstr "Il valore deve essere un ID oggetto, non {type}" -#: netbox/extras/models/customfields.py:737 +#: extras/models/customfields.py:737 #, python-brace-format msgid "Value must be a list of object IDs, not {type}" msgstr "Il valore deve essere un elenco di ID oggetto, non {type}" -#: netbox/extras/models/customfields.py:741 +#: extras/models/customfields.py:741 #, python-brace-format msgid "Found invalid object ID: {id}" msgstr "È stato trovato un ID oggetto non valido: {id}" -#: netbox/extras/models/customfields.py:744 +#: extras/models/customfields.py:744 msgid "Required field cannot be empty." msgstr "Il campo obbligatorio non può essere vuoto." -#: netbox/extras/models/customfields.py:763 +#: extras/models/customfields.py:763 msgid "Base set of predefined choices (optional)" msgstr "Set base di scelte predefinite (opzionale)" -#: netbox/extras/models/customfields.py:775 +#: extras/models/customfields.py:775 msgid "Choices are automatically ordered alphabetically" msgstr "Le scelte vengono ordinate automaticamente alfabeticamente" -#: netbox/extras/models/customfields.py:782 +#: extras/models/customfields.py:782 msgid "custom field choice set" msgstr "set di scelta dei campi personalizzati" -#: netbox/extras/models/customfields.py:783 +#: extras/models/customfields.py:783 msgid "custom field choice sets" msgstr "set di scelte di campi personalizzati" -#: netbox/extras/models/customfields.py:825 +#: extras/models/customfields.py:825 msgid "Must define base or extra choices." msgstr "È necessario definire scelte di base o extra." -#: netbox/extras/models/customfields.py:849 +#: extras/models/customfields.py:849 #, python-brace-format msgid "" "Cannot remove choice {choice} as there are {model} objects which reference " @@ -8610,60 +8050,60 @@ msgstr "" "Impossibile rimuovere la scelta {choice} come ce ne sono {model} oggetti che" " vi fanno riferimento." -#: netbox/extras/models/dashboard.py:18 +#: extras/models/dashboard.py:18 msgid "layout" msgstr "disposizione" -#: netbox/extras/models/dashboard.py:22 +#: extras/models/dashboard.py:22 msgid "config" msgstr "config" -#: netbox/extras/models/dashboard.py:27 +#: extras/models/dashboard.py:27 msgid "dashboard" msgstr "cruscotto" -#: netbox/extras/models/dashboard.py:28 +#: extras/models/dashboard.py:28 msgid "dashboards" msgstr "cruscotti" -#: netbox/extras/models/models.py:52 +#: extras/models/models.py:52 msgid "object types" msgstr "tipi di oggetti" -#: netbox/extras/models/models.py:53 +#: extras/models/models.py:53 msgid "The object(s) to which this rule applies." msgstr "L'oggetto o gli oggetti a cui si applica questa regola." -#: netbox/extras/models/models.py:67 +#: extras/models/models.py:67 msgid "The types of event which will trigger this rule." msgstr "I tipi di evento che attiveranno questa regola." -#: netbox/extras/models/models.py:74 +#: extras/models/models.py:74 msgid "conditions" msgstr "condizioni" -#: netbox/extras/models/models.py:77 +#: extras/models/models.py:77 msgid "" "A set of conditions which determine whether the event will be generated." msgstr "Una serie di condizioni che determinano se l'evento verrà generato." -#: netbox/extras/models/models.py:85 +#: extras/models/models.py:85 msgid "action type" msgstr "tipo di azione" -#: netbox/extras/models/models.py:104 +#: extras/models/models.py:104 msgid "Additional data to pass to the action object" msgstr "Dati aggiuntivi da passare all'oggetto azione" -#: netbox/extras/models/models.py:116 +#: extras/models/models.py:116 msgid "event rule" msgstr "regola dell'evento" -#: netbox/extras/models/models.py:117 +#: extras/models/models.py:117 msgid "event rules" msgstr "regole dell'evento" -#: netbox/extras/models/models.py:166 +#: extras/models/models.py:166 msgid "" "This URL will be called using the HTTP method defined when the webhook is " "called. Jinja2 template processing is supported with the same context as the" @@ -8673,7 +8113,7 @@ msgstr "" "chiamato il webhook. L'elaborazione dei modelli Jinja2 è supportata nello " "stesso contesto del corpo della richiesta." -#: netbox/extras/models/models.py:181 +#: extras/models/models.py:181 msgid "" "The complete list of official content types is available qui." -#: netbox/extras/models/models.py:186 +#: extras/models/models.py:186 msgid "additional headers" msgstr "intestazioni aggiuntive" -#: netbox/extras/models/models.py:189 +#: extras/models/models.py:189 msgid "" "User-supplied HTTP headers to be sent with the request in addition to the " "HTTP content type. Headers should be defined in the format Name: " @@ -8699,11 +8139,11 @@ msgstr "" "Nome: Value. L'elaborazione dei modelli Jinja2 è supportata " "nello stesso contesto del corpo della richiesta (sotto)." -#: netbox/extras/models/models.py:195 +#: extras/models/models.py:195 msgid "body template" msgstr "modello di corpo" -#: netbox/extras/models/models.py:198 +#: extras/models/models.py:198 msgid "" "Jinja2 template for a custom request body. If blank, a JSON object " "representing the change will be included. Available context data includes: " @@ -8716,11 +8156,11 @@ msgstr "" "timestamp, nome utente, id_richiesta," " e dato." -#: netbox/extras/models/models.py:204 +#: extras/models/models.py:204 msgid "secret" msgstr "segreto" -#: netbox/extras/models/models.py:208 +#: extras/models/models.py:208 msgid "" "When provided, the request will include a X-Hook-Signature " "header containing a HMAC hex digest of the payload body using the secret as " @@ -8731,15 +8171,15 @@ msgstr "" "che utilizza il segreto come chiave. Il segreto non viene trasmesso nella " "richiesta." -#: netbox/extras/models/models.py:215 +#: extras/models/models.py:215 msgid "Enable SSL certificate verification. Disable with caution!" msgstr "Abilita la verifica del certificato SSL. Disabilita con cautela!" -#: netbox/extras/models/models.py:221 netbox/templates/extras/webhook.html:51 +#: extras/models/models.py:221 templates/extras/webhook.html:51 msgid "CA File Path" msgstr "Percorso del file CA" -#: netbox/extras/models/models.py:223 +#: extras/models/models.py:223 msgid "" "The specific CA certificate file to use for SSL verification. Leave blank to" " use the system defaults." @@ -8747,66 +8187,66 @@ msgstr "" "Il file di certificato CA specifico da utilizzare per la verifica SSL. " "Lascia vuoto per utilizzare le impostazioni predefinite del sistema." -#: netbox/extras/models/models.py:234 +#: extras/models/models.py:234 msgid "webhook" msgstr "webhook" -#: netbox/extras/models/models.py:235 +#: extras/models/models.py:235 msgid "webhooks" msgstr "webhook" -#: netbox/extras/models/models.py:253 +#: extras/models/models.py:253 msgid "Do not specify a CA certificate file if SSL verification is disabled." msgstr "" "Non specificare un file di certificato CA se la verifica SSL è disabilitata." -#: netbox/extras/models/models.py:293 +#: extras/models/models.py:293 msgid "The object type(s) to which this link applies." msgstr "I tipi di oggetto a cui si applica questo link." -#: netbox/extras/models/models.py:305 +#: extras/models/models.py:305 msgid "link text" msgstr "testo del link" -#: netbox/extras/models/models.py:306 +#: extras/models/models.py:306 msgid "Jinja2 template code for link text" msgstr "Codice modello Jinja2 per il testo del link" -#: netbox/extras/models/models.py:309 +#: extras/models/models.py:309 msgid "link URL" msgstr "URL del collegamento" -#: netbox/extras/models/models.py:310 +#: extras/models/models.py:310 msgid "Jinja2 template code for link URL" msgstr "Codice modello Jinja2 per l'URL del collegamento" -#: netbox/extras/models/models.py:320 +#: extras/models/models.py:320 msgid "Links with the same group will appear as a dropdown menu" msgstr "" "I collegamenti con lo stesso gruppo verranno visualizzati come menu a " "discesa" -#: netbox/extras/models/models.py:330 +#: extras/models/models.py:330 msgid "new window" msgstr "nuova finestra" -#: netbox/extras/models/models.py:332 +#: extras/models/models.py:332 msgid "Force link to open in a new window" msgstr "Forza l'apertura del link in una nuova finestra" -#: netbox/extras/models/models.py:341 +#: extras/models/models.py:341 msgid "custom link" msgstr "link personalizzato" -#: netbox/extras/models/models.py:342 +#: extras/models/models.py:342 msgid "custom links" msgstr "link personalizzati" -#: netbox/extras/models/models.py:389 +#: extras/models/models.py:389 msgid "The object type(s) to which this template applies." msgstr "I tipi di oggetto a cui si applica questo modello." -#: netbox/extras/models/models.py:402 +#: extras/models/models.py:402 msgid "" "Jinja2 template code. The list of objects being exported is passed as a " "context variable named queryset." @@ -8814,1095 +8254,1060 @@ msgstr "" "Codice modello Jinja2. L'elenco degli oggetti da esportare viene passato " "come variabile di contesto denominata set di interrogazioni." -#: netbox/extras/models/models.py:410 +#: extras/models/models.py:410 msgid "Defaults to text/plain; charset=utf-8" msgstr "Il valore predefinito è testo/semplice; charset=utf-8" -#: netbox/extras/models/models.py:413 +#: extras/models/models.py:413 msgid "file extension" msgstr "estensione del file" -#: netbox/extras/models/models.py:416 +#: extras/models/models.py:416 msgid "Extension to append to the rendered filename" msgstr "Estensione da aggiungere al nome del file renderizzato" -#: netbox/extras/models/models.py:419 +#: extras/models/models.py:419 msgid "as attachment" msgstr "come allegato" -#: netbox/extras/models/models.py:421 +#: extras/models/models.py:421 msgid "Download file as attachment" msgstr "Scarica il file come allegato" -#: netbox/extras/models/models.py:430 +#: extras/models/models.py:430 msgid "export template" msgstr "modello di esportazione" -#: netbox/extras/models/models.py:431 +#: extras/models/models.py:431 msgid "export templates" msgstr "modelli di esportazione" -#: netbox/extras/models/models.py:448 +#: extras/models/models.py:448 #, python-brace-format msgid "\"{name}\" is a reserved name. Please choose a different name." msgstr "«{name}\"è un nome riservato. Scegli un nome diverso." -#: netbox/extras/models/models.py:498 +#: extras/models/models.py:498 msgid "The object type(s) to which this filter applies." msgstr "I tipi di oggetto a cui si applica questo filtro." -#: netbox/extras/models/models.py:530 +#: extras/models/models.py:530 msgid "shared" msgstr "condiviso" -#: netbox/extras/models/models.py:543 +#: extras/models/models.py:543 msgid "saved filter" msgstr "filtro salvato" -#: netbox/extras/models/models.py:544 +#: extras/models/models.py:544 msgid "saved filters" msgstr "filtri salvati" -#: netbox/extras/models/models.py:562 +#: extras/models/models.py:562 msgid "Filter parameters must be stored as a dictionary of keyword arguments." msgstr "" "I parametri del filtro devono essere memorizzati come dizionario degli " "argomenti delle parole chiave." -#: netbox/extras/models/models.py:590 +#: extras/models/models.py:590 msgid "image height" msgstr "altezza dell'immagine" -#: netbox/extras/models/models.py:593 +#: extras/models/models.py:593 msgid "image width" msgstr "larghezza dell'immagine" -#: netbox/extras/models/models.py:610 +#: extras/models/models.py:610 msgid "image attachment" msgstr "allegato immagine" -#: netbox/extras/models/models.py:611 +#: extras/models/models.py:611 msgid "image attachments" msgstr "allegati di immagini" -#: netbox/extras/models/models.py:625 +#: extras/models/models.py:625 #, python-brace-format msgid "Image attachments cannot be assigned to this object type ({type})." msgstr "" "Gli allegati di immagini non possono essere assegnati a questo tipo di " "oggetto ({type})." -#: netbox/extras/models/models.py:688 +#: extras/models/models.py:688 msgid "kind" msgstr "gentile" -#: netbox/extras/models/models.py:702 +#: extras/models/models.py:702 msgid "journal entry" msgstr "voce nel diario" -#: netbox/extras/models/models.py:703 +#: extras/models/models.py:703 msgid "journal entries" msgstr "voci di diario" -#: netbox/extras/models/models.py:718 +#: extras/models/models.py:718 #, python-brace-format msgid "Journaling is not supported for this object type ({type})." msgstr "Il journaling non è supportato per questo tipo di oggetto ({type})." -#: netbox/extras/models/models.py:760 +#: extras/models/models.py:760 msgid "bookmark" msgstr "segnalibro" -#: netbox/extras/models/models.py:761 +#: extras/models/models.py:761 msgid "bookmarks" msgstr "segnalibri" -#: netbox/extras/models/models.py:774 +#: extras/models/models.py:774 #, python-brace-format msgid "Bookmarks cannot be assigned to this object type ({type})." msgstr "" "I segnalibri non possono essere assegnati a questo tipo di oggetto ({type})." -#: netbox/extras/models/notifications.py:43 +#: extras/models/notifications.py:43 msgid "read" msgstr "leggere" -#: netbox/extras/models/notifications.py:66 +#: extras/models/notifications.py:66 msgid "event" msgstr "evento" -#: netbox/extras/models/notifications.py:84 +#: extras/models/notifications.py:84 msgid "notification" msgstr "notifica" -#: netbox/extras/models/notifications.py:85 +#: extras/models/notifications.py:85 msgid "notifications" msgstr "notifiche" -#: netbox/extras/models/notifications.py:99 -#: netbox/extras/models/notifications.py:234 +#: extras/models/notifications.py:99 extras/models/notifications.py:234 #, python-brace-format msgid "Objects of this type ({type}) do not support notifications." msgstr "Oggetti di questo tipo ({type}) non supportano le notifiche." -#: netbox/extras/models/notifications.py:137 netbox/users/models/users.py:58 -#: netbox/users/models/users.py:77 +#: extras/models/notifications.py:137 users/models/users.py:58 +#: users/models/users.py:77 msgid "groups" msgstr "gruppi" -#: netbox/extras/models/notifications.py:143 netbox/users/models/users.py:93 +#: extras/models/notifications.py:143 users/models/users.py:93 msgid "users" msgstr "utenti" -#: netbox/extras/models/notifications.py:152 +#: extras/models/notifications.py:152 msgid "notification group" msgstr "gruppo di notifiche" -#: netbox/extras/models/notifications.py:153 +#: extras/models/notifications.py:153 msgid "notification groups" msgstr "gruppi di notifica" -#: netbox/extras/models/notifications.py:217 +#: extras/models/notifications.py:217 msgid "subscription" msgstr "sottoscrizione" -#: netbox/extras/models/notifications.py:218 +#: extras/models/notifications.py:218 msgid "subscriptions" msgstr "sottoscrizioni" -#: netbox/extras/models/scripts.py:42 +#: extras/models/scripts.py:42 msgid "is executable" msgstr "è eseguibile" -#: netbox/extras/models/scripts.py:64 +#: extras/models/scripts.py:64 msgid "script" msgstr "sceneggiatura" -#: netbox/extras/models/scripts.py:65 +#: extras/models/scripts.py:65 msgid "scripts" msgstr "copioni" -#: netbox/extras/models/scripts.py:111 +#: extras/models/scripts.py:111 msgid "script module" msgstr "modulo script" -#: netbox/extras/models/scripts.py:112 +#: extras/models/scripts.py:112 msgid "script modules" msgstr "moduli di script" -#: netbox/extras/models/search.py:22 +#: extras/models/search.py:22 msgid "timestamp" msgstr "timestamp" -#: netbox/extras/models/search.py:37 +#: extras/models/search.py:37 msgid "field" msgstr "campo" -#: netbox/extras/models/search.py:45 +#: extras/models/search.py:45 msgid "value" msgstr "valore" -#: netbox/extras/models/search.py:56 +#: extras/models/search.py:56 msgid "cached value" msgstr "valore memorizzato nella cache" -#: netbox/extras/models/search.py:57 +#: extras/models/search.py:57 msgid "cached values" msgstr "valori memorizzati nella cache" -#: netbox/extras/models/staging.py:44 +#: extras/models/staging.py:44 msgid "branch" msgstr "filiale" -#: netbox/extras/models/staging.py:45 +#: extras/models/staging.py:45 msgid "branches" msgstr "rami" -#: netbox/extras/models/staging.py:97 +#: extras/models/staging.py:97 msgid "staged change" msgstr "cambiamento graduale" -#: netbox/extras/models/staging.py:98 +#: extras/models/staging.py:98 msgid "staged changes" msgstr "modifiche graduali" -#: netbox/extras/models/tags.py:40 +#: extras/models/tags.py:40 msgid "The object type(s) to which this tag can be applied." msgstr "I tipi di oggetto a cui è possibile applicare questo tag." -#: netbox/extras/models/tags.py:49 +#: extras/models/tags.py:49 msgid "tag" msgstr "tag" -#: netbox/extras/models/tags.py:50 +#: extras/models/tags.py:50 msgid "tags" msgstr "tag" -#: netbox/extras/models/tags.py:78 +#: extras/models/tags.py:78 msgid "tagged item" msgstr "articolo etichettato" -#: netbox/extras/models/tags.py:79 +#: extras/models/tags.py:79 msgid "tagged items" msgstr "articoli etichettati" -#: netbox/extras/scripts.py:429 +#: extras/scripts.py:429 msgid "Script Data" msgstr "Dati dello script" -#: netbox/extras/scripts.py:433 +#: extras/scripts.py:433 msgid "Script Execution Parameters" msgstr "Parametri di esecuzione dello script" -#: netbox/extras/tables/columns.py:12 -#: netbox/templates/htmx/notifications.html:18 +#: extras/tables/columns.py:12 templates/htmx/notifications.html:18 msgid "Dismiss" msgstr "Ignora" -#: netbox/extras/tables/tables.py:62 netbox/extras/tables/tables.py:159 -#: netbox/extras/tables/tables.py:184 netbox/extras/tables/tables.py:250 -#: netbox/extras/tables/tables.py:276 netbox/extras/tables/tables.py:412 -#: netbox/extras/tables/tables.py:446 -#: netbox/templates/extras/customfield.html:105 -#: netbox/templates/extras/eventrule.html:27 -#: netbox/templates/users/objectpermission.html:64 netbox/users/tables.py:80 +#: extras/tables/tables.py:62 extras/tables/tables.py:159 +#: extras/tables/tables.py:184 extras/tables/tables.py:250 +#: extras/tables/tables.py:276 extras/tables/tables.py:412 +#: extras/tables/tables.py:446 templates/extras/customfield.html:105 +#: templates/extras/eventrule.html:27 templates/users/objectpermission.html:64 +#: users/tables.py:80 msgid "Object Types" msgstr "Tipi di oggetti" -#: netbox/extras/tables/tables.py:69 +#: extras/tables/tables.py:69 msgid "Validate Uniqueness" msgstr "Convalida l'unicità" -#: netbox/extras/tables/tables.py:73 +#: extras/tables/tables.py:73 msgid "Visible" msgstr "Visibile" -#: netbox/extras/tables/tables.py:76 +#: extras/tables/tables.py:76 msgid "Editable" msgstr "Modificabile" -#: netbox/extras/tables/tables.py:82 +#: extras/tables/tables.py:82 msgid "Related Object Type" msgstr "Tipo di oggetto correlato" -#: netbox/extras/tables/tables.py:86 -#: netbox/templates/extras/customfield.html:51 +#: extras/tables/tables.py:86 templates/extras/customfield.html:51 msgid "Choice Set" msgstr "Set di scelta" -#: netbox/extras/tables/tables.py:94 +#: extras/tables/tables.py:94 msgid "Is Cloneable" msgstr "È clonabile" -#: netbox/extras/tables/tables.py:98 -#: netbox/templates/extras/customfield.html:118 +#: extras/tables/tables.py:98 templates/extras/customfield.html:118 msgid "Minimum Value" msgstr "Valore minimo" -#: netbox/extras/tables/tables.py:101 -#: netbox/templates/extras/customfield.html:122 +#: extras/tables/tables.py:101 templates/extras/customfield.html:122 msgid "Maximum Value" msgstr "Valore massimo" -#: netbox/extras/tables/tables.py:104 +#: extras/tables/tables.py:104 msgid "Validation Regex" msgstr "Validazione Regex" -#: netbox/extras/tables/tables.py:137 +#: extras/tables/tables.py:137 msgid "Count" msgstr "Conta" -#: netbox/extras/tables/tables.py:140 +#: extras/tables/tables.py:140 msgid "Order Alphabetically" msgstr "Ordina alfabeticamente" -#: netbox/extras/tables/tables.py:165 -#: netbox/templates/extras/customlink.html:33 +#: extras/tables/tables.py:165 templates/extras/customlink.html:33 msgid "New Window" msgstr "Nuova finestra" -#: netbox/extras/tables/tables.py:187 +#: extras/tables/tables.py:187 msgid "As Attachment" msgstr "Come allegato" -#: netbox/extras/tables/tables.py:195 netbox/extras/tables/tables.py:487 -#: netbox/extras/tables/tables.py:522 netbox/templates/core/datafile.html:24 -#: netbox/templates/dcim/device/render_config.html:22 -#: netbox/templates/extras/configcontext.html:39 -#: netbox/templates/extras/configtemplate.html:31 -#: netbox/templates/extras/exporttemplate.html:45 -#: netbox/templates/generic/bulk_import.html:35 -#: netbox/templates/virtualization/virtualmachine/render_config.html:22 +#: extras/tables/tables.py:195 extras/tables/tables.py:487 +#: extras/tables/tables.py:522 templates/core/datafile.html:24 +#: templates/dcim/device/render_config.html:22 +#: templates/extras/configcontext.html:39 +#: templates/extras/configtemplate.html:31 +#: templates/extras/exporttemplate.html:45 +#: templates/generic/bulk_import.html:35 +#: templates/virtualization/virtualmachine/render_config.html:22 msgid "Data File" msgstr "File di dati" -#: netbox/extras/tables/tables.py:200 netbox/extras/tables/tables.py:499 -#: netbox/extras/tables/tables.py:527 +#: extras/tables/tables.py:200 extras/tables/tables.py:499 +#: extras/tables/tables.py:527 msgid "Synced" msgstr "Sincronizzato" -#: netbox/extras/tables/tables.py:227 +#: extras/tables/tables.py:227 msgid "Image" msgstr "Immagine" -#: netbox/extras/tables/tables.py:232 +#: extras/tables/tables.py:232 msgid "Size (Bytes)" msgstr "Dimensione (byte)" -#: netbox/extras/tables/tables.py:339 +#: extras/tables/tables.py:339 msgid "Read" msgstr "Leggi" -#: netbox/extras/tables/tables.py:382 +#: extras/tables/tables.py:382 msgid "SSL Validation" msgstr "Validazione SSL" -#: netbox/extras/tables/tables.py:418 -#: netbox/templates/extras/eventrule.html:37 +#: extras/tables/tables.py:418 templates/extras/eventrule.html:37 msgid "Event Types" msgstr "Tipi di eventi" -#: netbox/extras/tables/tables.py:535 netbox/netbox/navigation/menu.py:77 -#: netbox/templates/dcim/devicerole.html:8 +#: extras/tables/tables.py:535 netbox/navigation/menu.py:77 +#: templates/dcim/devicerole.html:8 msgid "Device Roles" msgstr "Ruoli dei dispositivi" -#: netbox/extras/tables/tables.py:587 +#: extras/tables/tables.py:587 msgid "Comments (Short)" msgstr "Commenti (brevi)" -#: netbox/extras/tables/tables.py:606 netbox/extras/tables/tables.py:640 +#: extras/tables/tables.py:606 extras/tables/tables.py:640 msgid "Line" msgstr "Linea" -#: netbox/extras/tables/tables.py:613 netbox/extras/tables/tables.py:650 +#: extras/tables/tables.py:613 extras/tables/tables.py:650 msgid "Level" msgstr "Livello" -#: netbox/extras/tables/tables.py:619 netbox/extras/tables/tables.py:659 +#: extras/tables/tables.py:619 extras/tables/tables.py:659 msgid "Message" msgstr "Messaggio" -#: netbox/extras/tables/tables.py:643 +#: extras/tables/tables.py:643 msgid "Method" msgstr "Metodo" -#: netbox/extras/validators.py:15 +#: extras/validators.py:15 #, python-format msgid "Ensure this value is equal to %(limit_value)s." msgstr "Assicurati che questo valore sia uguale a %(limit_value)s." -#: netbox/extras/validators.py:26 +#: extras/validators.py:26 #, python-format msgid "Ensure this value does not equal %(limit_value)s." msgstr "Assicurati che questo valore non sia uguale %(limit_value)s." -#: netbox/extras/validators.py:37 +#: extras/validators.py:37 msgid "This field must be empty." msgstr "Questo campo deve essere vuoto." -#: netbox/extras/validators.py:52 +#: extras/validators.py:52 msgid "This field must not be empty." msgstr "Questo campo non deve essere vuoto." -#: netbox/extras/validators.py:94 +#: extras/validators.py:94 msgid "Validation rules must be passed as a dictionary" msgstr "Le regole di convalida devono essere passate come dizionario" -#: netbox/extras/validators.py:119 +#: extras/validators.py:119 #, python-brace-format msgid "Custom validation failed for {attribute}: {exception}" msgstr "Convalida personalizzata non riuscita per {attribute}: {exception}" -#: netbox/extras/validators.py:133 +#: extras/validators.py:133 #, python-brace-format msgid "Invalid attribute \"{name}\" for request" msgstr "Attributo non valido»{name}\"per richiesta" -#: netbox/extras/validators.py:150 +#: extras/validators.py:150 #, python-brace-format msgid "Invalid attribute \"{name}\" for {model}" msgstr "Attributo non valido»{name}\"per {model}" -#: netbox/extras/views.py:960 +#: extras/views.py:960 msgid "Your dashboard has been reset." msgstr "La tua dashboard è stata reimpostata." -#: netbox/extras/views.py:1006 +#: extras/views.py:1006 msgid "Added widget: " msgstr "Widget aggiunto: " -#: netbox/extras/views.py:1047 +#: extras/views.py:1047 msgid "Updated widget: " msgstr "Widget aggiornato: " -#: netbox/extras/views.py:1083 +#: extras/views.py:1083 msgid "Deleted widget: " msgstr "Widget eliminato: " -#: netbox/extras/views.py:1085 +#: extras/views.py:1085 msgid "Error deleting widget: " msgstr "Errore durante l'eliminazione del widget: " -#: netbox/extras/views.py:1172 +#: extras/views.py:1172 msgid "Unable to run script: RQ worker process not running." msgstr "" "Impossibile eseguire lo script: processo di lavoro RQ non in esecuzione." -#: netbox/ipam/api/field_serializers.py:17 +#: ipam/api/field_serializers.py:17 msgid "Enter a valid IPv4 or IPv6 address with optional mask." msgstr "Inserisci un indirizzo IPv4 o IPv6 valido con maschera opzionale." -#: netbox/ipam/api/field_serializers.py:24 +#: ipam/api/field_serializers.py:24 #, python-brace-format msgid "Invalid IP address format: {data}" msgstr "Formato dell'indirizzo IP non valido: {data}" -#: netbox/ipam/api/field_serializers.py:37 +#: ipam/api/field_serializers.py:37 msgid "Enter a valid IPv4 or IPv6 prefix and mask in CIDR notation." msgstr "" "Inserisci un prefisso e una maschera IPv4 o IPv6 validi nella notazione " "CIDR." -#: netbox/ipam/api/field_serializers.py:44 +#: ipam/api/field_serializers.py:44 #, python-brace-format msgid "Invalid IP prefix format: {data}" msgstr "Formato del prefisso IP non valido: {data}" -#: netbox/ipam/api/views.py:358 +#: ipam/api/views.py:358 msgid "" "Insufficient space is available to accommodate the requested prefix size(s)" msgstr "" "Lo spazio disponibile è insufficiente per contenere le dimensioni del " "prefisso richieste" -#: netbox/ipam/choices.py:30 +#: ipam/choices.py:30 msgid "Container" msgstr "Contenitore" -#: netbox/ipam/choices.py:72 +#: ipam/choices.py:72 msgid "DHCP" msgstr "DHCP" -#: netbox/ipam/choices.py:73 +#: ipam/choices.py:73 msgid "SLAAC" msgstr "SLAAC" -#: netbox/ipam/choices.py:89 +#: ipam/choices.py:89 msgid "Loopback" msgstr "Loopback" -#: netbox/ipam/choices.py:91 +#: ipam/choices.py:91 msgid "Anycast" msgstr "Anycast" -#: netbox/ipam/choices.py:115 +#: ipam/choices.py:115 msgid "Standard" msgstr "Standard" -#: netbox/ipam/choices.py:120 +#: ipam/choices.py:120 msgid "CheckPoint" msgstr "CheckPoint" -#: netbox/ipam/choices.py:123 +#: ipam/choices.py:123 msgid "Cisco" msgstr "Cisco" -#: netbox/ipam/choices.py:137 +#: ipam/choices.py:137 msgid "Plaintext" msgstr "Testo in chiaro" -#: netbox/ipam/fields.py:36 +#: ipam/fields.py:36 #, python-brace-format msgid "Invalid IP address format: {address}" msgstr "Formato dell'indirizzo IP non valido: {address}" -#: netbox/ipam/filtersets.py:48 netbox/vpn/filtersets.py:304 +#: ipam/filtersets.py:48 vpn/filtersets.py:304 msgid "Import target" msgstr "Obiettivo di importazione" -#: netbox/ipam/filtersets.py:54 netbox/vpn/filtersets.py:310 +#: ipam/filtersets.py:54 vpn/filtersets.py:310 msgid "Import target (name)" msgstr "Obiettivo di importazione (nome)" -#: netbox/ipam/filtersets.py:59 netbox/vpn/filtersets.py:315 +#: ipam/filtersets.py:59 vpn/filtersets.py:315 msgid "Export target" msgstr "Obiettivo di esportazione" -#: netbox/ipam/filtersets.py:65 netbox/vpn/filtersets.py:321 +#: ipam/filtersets.py:65 vpn/filtersets.py:321 msgid "Export target (name)" msgstr "Destinazione di esportazione (nome)" -#: netbox/ipam/filtersets.py:86 +#: ipam/filtersets.py:86 msgid "Importing VRF" msgstr "Importazione di VRF" -#: netbox/ipam/filtersets.py:92 +#: ipam/filtersets.py:92 msgid "Import VRF (RD)" msgstr "Importa VRF (RD)" -#: netbox/ipam/filtersets.py:97 +#: ipam/filtersets.py:97 msgid "Exporting VRF" msgstr "Esportazione di VRF" -#: netbox/ipam/filtersets.py:103 +#: ipam/filtersets.py:103 msgid "Export VRF (RD)" msgstr "Esporta VRF (RD)" -#: netbox/ipam/filtersets.py:108 +#: ipam/filtersets.py:108 msgid "Importing L2VPN" msgstr "Importazione di L2VPN" -#: netbox/ipam/filtersets.py:114 +#: ipam/filtersets.py:114 msgid "Importing L2VPN (identifier)" msgstr "Importazione di L2VPN (identificatore)" -#: netbox/ipam/filtersets.py:119 +#: ipam/filtersets.py:119 msgid "Exporting L2VPN" msgstr "Esportazione di L2VPN" -#: netbox/ipam/filtersets.py:125 +#: ipam/filtersets.py:125 msgid "Exporting L2VPN (identifier)" msgstr "Esportazione di L2VPN (identificatore)" -#: netbox/ipam/filtersets.py:155 netbox/ipam/filtersets.py:281 -#: netbox/ipam/forms/model_forms.py:229 netbox/ipam/tables/ip.py:212 -#: netbox/templates/ipam/prefix.html:12 +#: ipam/filtersets.py:155 ipam/filtersets.py:281 ipam/forms/model_forms.py:229 +#: ipam/tables/ip.py:212 templates/ipam/prefix.html:12 msgid "Prefix" msgstr "Prefisso" -#: netbox/ipam/filtersets.py:159 netbox/ipam/filtersets.py:198 -#: netbox/ipam/filtersets.py:221 +#: ipam/filtersets.py:159 ipam/filtersets.py:198 ipam/filtersets.py:221 msgid "RIR (ID)" msgstr "RIR (ID)" -#: netbox/ipam/filtersets.py:165 netbox/ipam/filtersets.py:204 -#: netbox/ipam/filtersets.py:227 +#: ipam/filtersets.py:165 ipam/filtersets.py:204 ipam/filtersets.py:227 msgid "RIR (slug)" msgstr "RIR (lumaca)" -#: netbox/ipam/filtersets.py:285 +#: ipam/filtersets.py:285 msgid "Within prefix" msgstr "All'interno del prefisso" -#: netbox/ipam/filtersets.py:289 +#: ipam/filtersets.py:289 msgid "Within and including prefix" msgstr "All'interno e incluso il prefisso" -#: netbox/ipam/filtersets.py:293 +#: ipam/filtersets.py:293 msgid "Prefixes which contain this prefix or IP" msgstr "Prefissi che contengono questo prefisso o IP" -#: netbox/ipam/filtersets.py:304 netbox/ipam/filtersets.py:572 -#: netbox/ipam/forms/bulk_edit.py:342 netbox/ipam/forms/filtersets.py:196 -#: netbox/ipam/forms/filtersets.py:331 +#: ipam/filtersets.py:304 ipam/filtersets.py:572 ipam/forms/bulk_edit.py:343 +#: ipam/forms/filtersets.py:196 ipam/forms/filtersets.py:331 msgid "Mask length" msgstr "Lunghezza della maschera" -#: netbox/ipam/filtersets.py:373 netbox/vpn/filtersets.py:427 +#: ipam/filtersets.py:373 vpn/filtersets.py:427 msgid "VLAN (ID)" msgstr "VLAN (ID)" -#: netbox/ipam/filtersets.py:377 netbox/vpn/filtersets.py:422 +#: ipam/filtersets.py:377 vpn/filtersets.py:422 msgid "VLAN number (1-4094)" msgstr "Numero VLAN (1-4094)" -#: netbox/ipam/filtersets.py:471 netbox/ipam/filtersets.py:475 -#: netbox/ipam/filtersets.py:567 netbox/ipam/forms/model_forms.py:463 -#: netbox/templates/tenancy/contact.html:53 -#: netbox/tenancy/forms/bulk_edit.py:113 +#: ipam/filtersets.py:471 ipam/filtersets.py:475 ipam/filtersets.py:567 +#: ipam/forms/model_forms.py:463 templates/tenancy/contact.html:53 +#: tenancy/forms/bulk_edit.py:113 msgid "Address" msgstr "Indirizzo" -#: netbox/ipam/filtersets.py:479 +#: ipam/filtersets.py:479 msgid "Ranges which contain this prefix or IP" msgstr "Intervalli che contengono questo prefisso o IP" -#: netbox/ipam/filtersets.py:507 netbox/ipam/filtersets.py:563 +#: ipam/filtersets.py:507 ipam/filtersets.py:563 msgid "Parent prefix" msgstr "Prefisso principale" -#: netbox/ipam/filtersets.py:616 netbox/ipam/filtersets.py:856 -#: netbox/ipam/filtersets.py:1131 netbox/vpn/filtersets.py:385 +#: ipam/filtersets.py:616 ipam/filtersets.py:856 ipam/filtersets.py:1131 +#: vpn/filtersets.py:385 msgid "Virtual machine (name)" msgstr "Macchina virtuale (nome)" -#: netbox/ipam/filtersets.py:621 netbox/ipam/filtersets.py:861 -#: netbox/ipam/filtersets.py:1125 netbox/virtualization/filtersets.py:282 -#: netbox/virtualization/filtersets.py:321 netbox/vpn/filtersets.py:390 +#: ipam/filtersets.py:621 ipam/filtersets.py:861 ipam/filtersets.py:1125 +#: virtualization/filtersets.py:282 virtualization/filtersets.py:321 +#: vpn/filtersets.py:390 msgid "Virtual machine (ID)" msgstr "Macchina virtuale (ID)" -#: netbox/ipam/filtersets.py:627 netbox/vpn/filtersets.py:97 -#: netbox/vpn/filtersets.py:396 +#: ipam/filtersets.py:627 vpn/filtersets.py:97 vpn/filtersets.py:396 msgid "Interface (name)" msgstr "Interfaccia (nome)" -#: netbox/ipam/filtersets.py:638 netbox/vpn/filtersets.py:108 -#: netbox/vpn/filtersets.py:407 +#: ipam/filtersets.py:638 vpn/filtersets.py:108 vpn/filtersets.py:407 msgid "VM interface (name)" msgstr "Interfaccia VM (nome)" -#: netbox/ipam/filtersets.py:643 netbox/vpn/filtersets.py:113 +#: ipam/filtersets.py:643 vpn/filtersets.py:113 msgid "VM interface (ID)" msgstr "Interfaccia VM (ID)" -#: netbox/ipam/filtersets.py:648 +#: ipam/filtersets.py:648 msgid "FHRP group (ID)" msgstr "Gruppo FHRP (ID)" -#: netbox/ipam/filtersets.py:652 +#: ipam/filtersets.py:652 msgid "Is assigned to an interface" msgstr "È assegnato a un'interfaccia" -#: netbox/ipam/filtersets.py:656 +#: ipam/filtersets.py:656 msgid "Is assigned" msgstr "È assegnato" -#: netbox/ipam/filtersets.py:668 +#: ipam/filtersets.py:668 msgid "Service (ID)" msgstr "Servizio (ID)" -#: netbox/ipam/filtersets.py:673 +#: ipam/filtersets.py:673 msgid "NAT inside IP address (ID)" msgstr "Indirizzo IP interno (ID) NAT" -#: netbox/ipam/filtersets.py:1041 netbox/ipam/forms/bulk_import.py:322 +#: ipam/filtersets.py:1041 ipam/forms/bulk_import.py:322 msgid "Assigned interface" msgstr "Interfaccia assegnata" -#: netbox/ipam/filtersets.py:1046 +#: ipam/filtersets.py:1046 msgid "Assigned VM interface" msgstr "Interfaccia VM assegnata" -#: netbox/ipam/filtersets.py:1136 +#: ipam/filtersets.py:1136 msgid "IP address (ID)" msgstr "Indirizzo IP (ID)" -#: netbox/ipam/filtersets.py:1142 netbox/ipam/models/ip.py:788 +#: ipam/filtersets.py:1142 ipam/models/ip.py:788 msgid "IP address" msgstr "indirizzo IP" -#: netbox/ipam/filtersets.py:1167 +#: ipam/filtersets.py:1167 msgid "Primary IPv4 (ID)" msgstr "IPv4 (ID) primario" -#: netbox/ipam/filtersets.py:1172 +#: ipam/filtersets.py:1172 msgid "Primary IPv6 (ID)" msgstr "IPv6 primario (ID)" -#: netbox/ipam/formfields.py:14 +#: ipam/formfields.py:14 msgid "Enter a valid IPv4 or IPv6 address (without a mask)." msgstr "Inserisci un indirizzo IPv4 o IPv6 valido (senza maschera)." -#: netbox/ipam/formfields.py:32 +#: ipam/formfields.py:32 #, python-brace-format msgid "Invalid IPv4/IPv6 address format: {address}" msgstr "Formato indirizzo IPv4/IPv6 non valido: {address}" -#: netbox/ipam/formfields.py:37 +#: ipam/formfields.py:37 msgid "This field requires an IP address without a mask." msgstr "Questo campo richiede un indirizzo IP senza maschera." -#: netbox/ipam/formfields.py:39 netbox/ipam/formfields.py:61 +#: ipam/formfields.py:39 ipam/formfields.py:61 msgid "Please specify a valid IPv4 or IPv6 address." msgstr "Specifica un indirizzo IPv4 o IPv6 valido." -#: netbox/ipam/formfields.py:44 +#: ipam/formfields.py:44 msgid "Enter a valid IPv4 or IPv6 address (with CIDR mask)." msgstr "Inserisci un indirizzo IPv4 o IPv6 valido (con maschera CIDR)." -#: netbox/ipam/formfields.py:56 +#: ipam/formfields.py:56 msgid "CIDR mask (e.g. /24) is required." msgstr "È richiesta la mascherina CIDR (ad es. /24)." -#: netbox/ipam/forms/bulk_create.py:13 +#: ipam/forms/bulk_create.py:13 msgid "Address pattern" msgstr "Schema di indirizzo" -#: netbox/ipam/forms/bulk_edit.py:49 +#: ipam/forms/bulk_edit.py:50 msgid "Enforce unique space" msgstr "Applica uno spazio unico" -#: netbox/ipam/forms/bulk_edit.py:87 +#: ipam/forms/bulk_edit.py:88 msgid "Is private" msgstr "È privato" -#: netbox/ipam/forms/bulk_edit.py:108 netbox/ipam/forms/bulk_edit.py:137 -#: netbox/ipam/forms/bulk_edit.py:162 netbox/ipam/forms/bulk_import.py:89 -#: netbox/ipam/forms/bulk_import.py:109 netbox/ipam/forms/bulk_import.py:129 -#: netbox/ipam/forms/filtersets.py:110 netbox/ipam/forms/filtersets.py:125 -#: netbox/ipam/forms/filtersets.py:148 netbox/ipam/forms/model_forms.py:96 -#: netbox/ipam/forms/model_forms.py:109 netbox/ipam/forms/model_forms.py:131 -#: netbox/ipam/forms/model_forms.py:149 netbox/ipam/models/asns.py:31 -#: netbox/ipam/models/asns.py:103 netbox/ipam/models/ip.py:71 -#: netbox/ipam/models/ip.py:90 netbox/ipam/tables/asn.py:20 -#: netbox/ipam/tables/asn.py:45 netbox/templates/ipam/aggregate.html:18 -#: netbox/templates/ipam/asn.html:27 netbox/templates/ipam/asnrange.html:19 -#: netbox/templates/ipam/rir.html:19 +#: ipam/forms/bulk_edit.py:109 ipam/forms/bulk_edit.py:138 +#: ipam/forms/bulk_edit.py:163 ipam/forms/bulk_import.py:89 +#: ipam/forms/bulk_import.py:109 ipam/forms/bulk_import.py:129 +#: ipam/forms/filtersets.py:110 ipam/forms/filtersets.py:125 +#: ipam/forms/filtersets.py:148 ipam/forms/model_forms.py:96 +#: ipam/forms/model_forms.py:109 ipam/forms/model_forms.py:131 +#: ipam/forms/model_forms.py:149 ipam/models/asns.py:31 +#: ipam/models/asns.py:103 ipam/models/ip.py:71 ipam/models/ip.py:90 +#: ipam/tables/asn.py:20 ipam/tables/asn.py:45 +#: templates/ipam/aggregate.html:18 templates/ipam/asn.html:27 +#: templates/ipam/asnrange.html:19 templates/ipam/rir.html:19 msgid "RIR" msgstr "RIR" -#: netbox/ipam/forms/bulk_edit.py:170 +#: ipam/forms/bulk_edit.py:171 msgid "Date added" msgstr "Data aggiunta" -#: netbox/ipam/forms/bulk_edit.py:228 netbox/ipam/forms/model_forms.py:586 -#: netbox/ipam/forms/model_forms.py:633 netbox/ipam/tables/ip.py:251 -#: netbox/templates/ipam/vlan_edit.html:37 -#: netbox/templates/ipam/vlangroup.html:27 +#: ipam/forms/bulk_edit.py:229 ipam/forms/model_forms.py:586 +#: ipam/forms/model_forms.py:633 ipam/tables/ip.py:251 +#: templates/ipam/vlan_edit.html:37 templates/ipam/vlangroup.html:27 msgid "VLAN Group" msgstr "Gruppo VLAN" -#: netbox/ipam/forms/bulk_edit.py:233 netbox/ipam/forms/bulk_import.py:185 -#: netbox/ipam/forms/filtersets.py:256 netbox/ipam/forms/model_forms.py:218 -#: netbox/ipam/models/vlans.py:234 netbox/ipam/tables/ip.py:255 -#: netbox/templates/ipam/prefix.html:60 netbox/templates/ipam/vlan.html:12 -#: netbox/templates/ipam/vlan/base.html:6 -#: netbox/templates/ipam/vlan_edit.html:10 -#: netbox/templates/wireless/wirelesslan.html:30 -#: netbox/vpn/forms/bulk_import.py:304 netbox/vpn/forms/filtersets.py:284 -#: netbox/vpn/forms/model_forms.py:433 netbox/vpn/forms/model_forms.py:452 -#: netbox/wireless/forms/bulk_edit.py:55 -#: netbox/wireless/forms/bulk_import.py:48 -#: netbox/wireless/forms/model_forms.py:48 netbox/wireless/models.py:102 +#: ipam/forms/bulk_edit.py:234 ipam/forms/bulk_import.py:185 +#: ipam/forms/filtersets.py:256 ipam/forms/model_forms.py:218 +#: ipam/models/vlans.py:234 ipam/tables/ip.py:255 +#: templates/ipam/prefix.html:60 templates/ipam/vlan.html:12 +#: templates/ipam/vlan/base.html:6 templates/ipam/vlan_edit.html:10 +#: templates/wireless/wirelesslan.html:30 vpn/forms/bulk_import.py:304 +#: vpn/forms/filtersets.py:284 vpn/forms/model_forms.py:433 +#: vpn/forms/model_forms.py:452 wireless/forms/bulk_edit.py:55 +#: wireless/forms/bulk_import.py:48 wireless/forms/model_forms.py:48 +#: wireless/models.py:102 msgid "VLAN" msgstr "VLAN" -#: netbox/ipam/forms/bulk_edit.py:244 +#: ipam/forms/bulk_edit.py:245 msgid "Prefix length" msgstr "Lunghezza del prefisso" -#: netbox/ipam/forms/bulk_edit.py:267 netbox/ipam/forms/filtersets.py:241 -#: netbox/templates/ipam/prefix.html:85 +#: ipam/forms/bulk_edit.py:268 ipam/forms/filtersets.py:241 +#: templates/ipam/prefix.html:85 msgid "Is a pool" msgstr "È una piscina" -#: netbox/ipam/forms/bulk_edit.py:272 netbox/ipam/forms/bulk_edit.py:317 -#: netbox/ipam/forms/filtersets.py:248 netbox/ipam/forms/filtersets.py:293 -#: netbox/ipam/models/ip.py:272 netbox/ipam/models/ip.py:539 +#: ipam/forms/bulk_edit.py:273 ipam/forms/bulk_edit.py:318 +#: ipam/forms/filtersets.py:248 ipam/forms/filtersets.py:293 +#: ipam/models/ip.py:272 ipam/models/ip.py:539 msgid "Treat as fully utilized" msgstr "Trattare come completamente utilizzato" -#: netbox/ipam/forms/bulk_edit.py:286 netbox/ipam/forms/filtersets.py:171 +#: ipam/forms/bulk_edit.py:287 ipam/forms/filtersets.py:171 msgid "VLAN Assignment" msgstr "Assegnazione VLAN" -#: netbox/ipam/forms/bulk_edit.py:365 netbox/ipam/models/ip.py:772 +#: ipam/forms/bulk_edit.py:366 ipam/models/ip.py:772 msgid "DNS name" msgstr "Nome DNS" -#: netbox/ipam/forms/bulk_edit.py:386 netbox/ipam/forms/bulk_edit.py:579 -#: netbox/ipam/forms/bulk_import.py:394 netbox/ipam/forms/bulk_import.py:469 -#: netbox/ipam/forms/bulk_import.py:495 netbox/ipam/forms/filtersets.py:390 -#: netbox/ipam/forms/filtersets.py:530 netbox/templates/ipam/fhrpgroup.html:22 -#: netbox/templates/ipam/inc/panels/fhrp_groups.html:24 -#: netbox/templates/ipam/service.html:32 -#: netbox/templates/ipam/servicetemplate.html:19 +#: ipam/forms/bulk_edit.py:387 ipam/forms/bulk_edit.py:534 +#: ipam/forms/bulk_import.py:394 ipam/forms/bulk_import.py:469 +#: ipam/forms/bulk_import.py:495 ipam/forms/filtersets.py:390 +#: ipam/forms/filtersets.py:530 templates/ipam/fhrpgroup.html:22 +#: templates/ipam/inc/panels/fhrp_groups.html:24 +#: templates/ipam/service.html:32 templates/ipam/servicetemplate.html:19 msgid "Protocol" msgstr "Protocollo" -#: netbox/ipam/forms/bulk_edit.py:393 netbox/ipam/forms/filtersets.py:397 -#: netbox/ipam/tables/fhrp.py:22 netbox/templates/ipam/fhrpgroup.html:26 +#: ipam/forms/bulk_edit.py:394 ipam/forms/filtersets.py:397 +#: ipam/tables/fhrp.py:22 templates/ipam/fhrpgroup.html:26 msgid "Group ID" msgstr "ID gruppo" -#: netbox/ipam/forms/bulk_edit.py:398 netbox/ipam/forms/filtersets.py:402 -#: netbox/wireless/forms/bulk_edit.py:68 -#: netbox/wireless/forms/bulk_edit.py:115 -#: netbox/wireless/forms/bulk_import.py:62 -#: netbox/wireless/forms/bulk_import.py:65 -#: netbox/wireless/forms/bulk_import.py:104 -#: netbox/wireless/forms/bulk_import.py:107 -#: netbox/wireless/forms/filtersets.py:54 -#: netbox/wireless/forms/filtersets.py:88 +#: ipam/forms/bulk_edit.py:399 ipam/forms/filtersets.py:402 +#: wireless/forms/bulk_edit.py:68 wireless/forms/bulk_edit.py:115 +#: wireless/forms/bulk_import.py:62 wireless/forms/bulk_import.py:65 +#: wireless/forms/bulk_import.py:104 wireless/forms/bulk_import.py:107 +#: wireless/forms/filtersets.py:54 wireless/forms/filtersets.py:88 msgid "Authentication type" msgstr "Tipo di autenticazione" -#: netbox/ipam/forms/bulk_edit.py:403 netbox/ipam/forms/filtersets.py:406 +#: ipam/forms/bulk_edit.py:404 ipam/forms/filtersets.py:406 msgid "Authentication key" msgstr "Chiave di autenticazione" -#: netbox/ipam/forms/bulk_edit.py:420 netbox/ipam/forms/filtersets.py:383 -#: netbox/ipam/forms/model_forms.py:474 netbox/netbox/navigation/menu.py:386 -#: netbox/templates/ipam/fhrpgroup.html:49 -#: netbox/templates/wireless/inc/authentication_attrs.html:5 -#: netbox/wireless/forms/bulk_edit.py:91 -#: netbox/wireless/forms/bulk_edit.py:149 -#: netbox/wireless/forms/filtersets.py:36 -#: netbox/wireless/forms/filtersets.py:76 -#: netbox/wireless/forms/model_forms.py:55 -#: netbox/wireless/forms/model_forms.py:171 +#: ipam/forms/bulk_edit.py:421 ipam/forms/filtersets.py:383 +#: ipam/forms/model_forms.py:474 netbox/navigation/menu.py:386 +#: templates/ipam/fhrpgroup.html:49 +#: templates/wireless/inc/authentication_attrs.html:5 +#: wireless/forms/bulk_edit.py:91 wireless/forms/bulk_edit.py:149 +#: wireless/forms/filtersets.py:36 wireless/forms/filtersets.py:76 +#: wireless/forms/model_forms.py:55 wireless/forms/model_forms.py:171 msgid "Authentication" msgstr "Autenticazione" -#: netbox/ipam/forms/bulk_edit.py:432 netbox/ipam/forms/model_forms.py:575 +#: ipam/forms/bulk_edit.py:436 ipam/forms/model_forms.py:575 msgid "Scope type" msgstr "Tipo di ambito" -#: netbox/ipam/forms/bulk_edit.py:490 netbox/ipam/models/vlans.py:60 -msgid "VLAN ID ranges" -msgstr "Intervalli di ID VLAN" - -#: netbox/ipam/forms/bulk_edit.py:498 netbox/ipam/forms/model_forms.py:578 -#: netbox/ipam/forms/model_forms.py:588 netbox/ipam/tables/vlans.py:71 -#: netbox/templates/ipam/vlangroup.html:38 +#: ipam/forms/bulk_edit.py:439 ipam/forms/bulk_edit.py:453 +#: ipam/forms/model_forms.py:578 ipam/forms/model_forms.py:588 +#: ipam/tables/vlans.py:71 templates/ipam/vlangroup.html:38 msgid "Scope" msgstr "Ambito" -#: netbox/ipam/forms/bulk_edit.py:570 +#: ipam/forms/bulk_edit.py:446 ipam/models/vlans.py:60 +msgid "VLAN ID ranges" +msgstr "Intervalli di ID VLAN" + +#: ipam/forms/bulk_edit.py:525 msgid "Site & Group" msgstr "Sito e gruppo" -#: netbox/ipam/forms/bulk_edit.py:584 netbox/ipam/forms/model_forms.py:659 -#: netbox/ipam/forms/model_forms.py:691 netbox/ipam/tables/services.py:19 -#: netbox/ipam/tables/services.py:49 netbox/templates/ipam/service.html:36 -#: netbox/templates/ipam/servicetemplate.html:23 +#: ipam/forms/bulk_edit.py:539 ipam/forms/model_forms.py:659 +#: ipam/forms/model_forms.py:691 ipam/tables/services.py:19 +#: ipam/tables/services.py:49 templates/ipam/service.html:36 +#: templates/ipam/servicetemplate.html:23 msgid "Ports" msgstr "Porte" -#: netbox/ipam/forms/bulk_import.py:48 +#: ipam/forms/bulk_import.py:48 msgid "Import route targets" msgstr "Importa gli obiettivi del percorso" -#: netbox/ipam/forms/bulk_import.py:54 +#: ipam/forms/bulk_import.py:54 msgid "Export route targets" msgstr "Obiettivi del percorso di esportazione" -#: netbox/ipam/forms/bulk_import.py:92 netbox/ipam/forms/bulk_import.py:112 -#: netbox/ipam/forms/bulk_import.py:132 +#: ipam/forms/bulk_import.py:92 ipam/forms/bulk_import.py:112 +#: ipam/forms/bulk_import.py:132 msgid "Assigned RIR" msgstr "RIR assegnato" -#: netbox/ipam/forms/bulk_import.py:182 +#: ipam/forms/bulk_import.py:182 msgid "VLAN's group (if any)" msgstr "Gruppo VLAN (se presente)" -#: netbox/ipam/forms/bulk_import.py:308 +#: ipam/forms/bulk_import.py:308 msgid "Parent device of assigned interface (if any)" msgstr "Dispositivo principale dell'interfaccia assegnata (se presente)" -#: netbox/ipam/forms/bulk_import.py:311 netbox/ipam/forms/bulk_import.py:488 -#: netbox/ipam/forms/model_forms.py:685 -#: netbox/virtualization/filtersets.py:288 -#: netbox/virtualization/filtersets.py:327 -#: netbox/virtualization/forms/bulk_edit.py:200 -#: netbox/virtualization/forms/bulk_edit.py:326 -#: netbox/virtualization/forms/bulk_import.py:146 -#: netbox/virtualization/forms/bulk_import.py:207 -#: netbox/virtualization/forms/filtersets.py:212 -#: netbox/virtualization/forms/filtersets.py:248 -#: netbox/virtualization/forms/model_forms.py:288 -#: netbox/vpn/forms/bulk_import.py:93 netbox/vpn/forms/bulk_import.py:290 +#: ipam/forms/bulk_import.py:311 ipam/forms/bulk_import.py:488 +#: ipam/forms/model_forms.py:685 virtualization/filtersets.py:288 +#: virtualization/filtersets.py:327 virtualization/forms/bulk_edit.py:200 +#: virtualization/forms/bulk_edit.py:326 +#: virtualization/forms/bulk_import.py:146 +#: virtualization/forms/bulk_import.py:207 +#: virtualization/forms/filtersets.py:212 +#: virtualization/forms/filtersets.py:248 +#: virtualization/forms/model_forms.py:288 vpn/forms/bulk_import.py:93 +#: vpn/forms/bulk_import.py:290 msgid "Virtual machine" msgstr "Macchina virtuale" -#: netbox/ipam/forms/bulk_import.py:315 +#: ipam/forms/bulk_import.py:315 msgid "Parent VM of assigned interface (if any)" msgstr "VM principale dell'interfaccia assegnata (se presente)" -#: netbox/ipam/forms/bulk_import.py:325 +#: ipam/forms/bulk_import.py:325 msgid "Is primary" msgstr "È primario" -#: netbox/ipam/forms/bulk_import.py:326 +#: ipam/forms/bulk_import.py:326 msgid "Make this the primary IP for the assigned device" msgstr "Imposta questo indirizzo IP primario per il dispositivo assegnato" -#: netbox/ipam/forms/bulk_import.py:365 +#: ipam/forms/bulk_import.py:365 msgid "No device or virtual machine specified; cannot set as primary IP" msgstr "" "Nessun dispositivo o macchina virtuale specificato; non può essere impostato" " come IP primario" -#: netbox/ipam/forms/bulk_import.py:369 +#: ipam/forms/bulk_import.py:369 msgid "No interface specified; cannot set as primary IP" msgstr "" "Nessuna interfaccia specificata; non può essere impostato come IP primario" -#: netbox/ipam/forms/bulk_import.py:398 +#: ipam/forms/bulk_import.py:398 msgid "Auth type" msgstr "Tipo di autenticazione" -#: netbox/ipam/forms/bulk_import.py:413 +#: ipam/forms/bulk_import.py:413 msgid "Scope type (app & model)" msgstr "Tipo di ambito (app e modello)" -#: netbox/ipam/forms/bulk_import.py:440 +#: ipam/forms/bulk_import.py:440 msgid "Assigned VLAN group" msgstr "Gruppo VLAN assegnato" -#: netbox/ipam/forms/bulk_import.py:471 netbox/ipam/forms/bulk_import.py:497 +#: ipam/forms/bulk_import.py:471 ipam/forms/bulk_import.py:497 msgid "IP protocol" msgstr "Protocollo IP" -#: netbox/ipam/forms/bulk_import.py:485 +#: ipam/forms/bulk_import.py:485 msgid "Required if not assigned to a VM" msgstr "Obbligatorio se non assegnato a una VM" -#: netbox/ipam/forms/bulk_import.py:492 +#: ipam/forms/bulk_import.py:492 msgid "Required if not assigned to a device" msgstr "Obbligatorio se non assegnato a un dispositivo" -#: netbox/ipam/forms/bulk_import.py:517 +#: ipam/forms/bulk_import.py:517 #, python-brace-format msgid "{ip} is not assigned to this device/VM." msgstr "{ip} non è assegnato a questo dispositivo/macchina virtuale." -#: netbox/ipam/forms/filtersets.py:47 netbox/ipam/forms/model_forms.py:63 -#: netbox/netbox/navigation/menu.py:189 netbox/vpn/forms/model_forms.py:410 +#: ipam/forms/filtersets.py:47 ipam/forms/model_forms.py:63 +#: netbox/navigation/menu.py:189 vpn/forms/model_forms.py:410 msgid "Route Targets" msgstr "Obiettivi del percorso" -#: netbox/ipam/forms/filtersets.py:53 netbox/ipam/forms/model_forms.py:50 -#: netbox/vpn/forms/filtersets.py:224 netbox/vpn/forms/model_forms.py:397 +#: ipam/forms/filtersets.py:53 ipam/forms/model_forms.py:50 +#: vpn/forms/filtersets.py:224 vpn/forms/model_forms.py:397 msgid "Import targets" msgstr "Obiettivi di importazione" -#: netbox/ipam/forms/filtersets.py:58 netbox/ipam/forms/model_forms.py:55 -#: netbox/vpn/forms/filtersets.py:229 netbox/vpn/forms/model_forms.py:402 +#: ipam/forms/filtersets.py:58 ipam/forms/model_forms.py:55 +#: vpn/forms/filtersets.py:229 vpn/forms/model_forms.py:402 msgid "Export targets" msgstr "Obiettivi di esportazione" -#: netbox/ipam/forms/filtersets.py:73 +#: ipam/forms/filtersets.py:73 msgid "Imported by VRF" msgstr "Importato da VRF" -#: netbox/ipam/forms/filtersets.py:78 +#: ipam/forms/filtersets.py:78 msgid "Exported by VRF" msgstr "Esportato da VRF" -#: netbox/ipam/forms/filtersets.py:87 netbox/ipam/tables/ip.py:89 -#: netbox/templates/ipam/rir.html:30 +#: ipam/forms/filtersets.py:87 ipam/tables/ip.py:89 templates/ipam/rir.html:30 msgid "Private" msgstr "Privato" -#: netbox/ipam/forms/filtersets.py:105 netbox/ipam/forms/filtersets.py:191 -#: netbox/ipam/forms/filtersets.py:272 netbox/ipam/forms/filtersets.py:326 +#: ipam/forms/filtersets.py:105 ipam/forms/filtersets.py:191 +#: ipam/forms/filtersets.py:272 ipam/forms/filtersets.py:326 msgid "Address family" msgstr "Famiglia di indirizzi" -#: netbox/ipam/forms/filtersets.py:119 netbox/templates/ipam/asnrange.html:25 +#: ipam/forms/filtersets.py:119 templates/ipam/asnrange.html:25 msgid "Range" msgstr "Intervallo" -#: netbox/ipam/forms/filtersets.py:128 +#: ipam/forms/filtersets.py:128 msgid "Start" msgstr "Inizio" -#: netbox/ipam/forms/filtersets.py:132 +#: ipam/forms/filtersets.py:132 msgid "End" msgstr "Fine" -#: netbox/ipam/forms/filtersets.py:186 +#: ipam/forms/filtersets.py:186 msgid "Search within" msgstr "Cerca all'interno" -#: netbox/ipam/forms/filtersets.py:207 netbox/ipam/forms/filtersets.py:342 +#: ipam/forms/filtersets.py:207 ipam/forms/filtersets.py:342 msgid "Present in VRF" msgstr "Presente in VRF" -#: netbox/ipam/forms/filtersets.py:311 +#: ipam/forms/filtersets.py:311 msgid "Device/VM" msgstr "Dispositivo/VM" -#: netbox/ipam/forms/filtersets.py:321 +#: ipam/forms/filtersets.py:321 msgid "Parent Prefix" msgstr "Prefisso principale" -#: netbox/ipam/forms/filtersets.py:347 +#: ipam/forms/filtersets.py:347 msgid "Assigned Device" msgstr "Dispositivo assegnato" -#: netbox/ipam/forms/filtersets.py:352 +#: ipam/forms/filtersets.py:352 msgid "Assigned VM" msgstr "VM assegnata" -#: netbox/ipam/forms/filtersets.py:366 +#: ipam/forms/filtersets.py:366 msgid "Assigned to an interface" msgstr "Assegnata a un'interfaccia" -#: netbox/ipam/forms/filtersets.py:373 netbox/templates/ipam/ipaddress.html:51 +#: ipam/forms/filtersets.py:373 templates/ipam/ipaddress.html:51 msgid "DNS Name" msgstr "Nome DNS" -#: netbox/ipam/forms/filtersets.py:416 netbox/ipam/models/vlans.py:235 -#: netbox/ipam/tables/ip.py:176 netbox/ipam/tables/vlans.py:82 -#: netbox/ipam/views.py:971 netbox/netbox/navigation/menu.py:193 -#: netbox/netbox/navigation/menu.py:195 +#: ipam/forms/filtersets.py:416 ipam/models/vlans.py:235 ipam/tables/ip.py:176 +#: ipam/tables/vlans.py:82 ipam/views.py:971 netbox/navigation/menu.py:193 +#: netbox/navigation/menu.py:195 msgid "VLANs" msgstr "VLAN" -#: netbox/ipam/forms/filtersets.py:457 +#: ipam/forms/filtersets.py:457 msgid "Contains VLAN ID" msgstr "Contiene l'ID VLAN" -#: netbox/ipam/forms/filtersets.py:513 netbox/ipam/models/vlans.py:176 -#: netbox/templates/ipam/vlan.html:31 +#: ipam/forms/filtersets.py:513 ipam/models/vlans.py:176 +#: templates/ipam/vlan.html:31 msgid "VLAN ID" msgstr "ID VLAN" -#: netbox/ipam/forms/filtersets.py:556 netbox/ipam/forms/model_forms.py:320 -#: netbox/ipam/forms/model_forms.py:713 netbox/ipam/forms/model_forms.py:739 -#: netbox/ipam/tables/vlans.py:195 -#: netbox/templates/virtualization/virtualdisk.html:21 -#: netbox/templates/virtualization/virtualmachine.html:12 -#: netbox/templates/virtualization/vminterface.html:21 -#: netbox/templates/vpn/tunneltermination.html:25 -#: netbox/virtualization/forms/filtersets.py:197 -#: netbox/virtualization/forms/filtersets.py:242 -#: netbox/virtualization/forms/model_forms.py:220 -#: netbox/virtualization/tables/virtualmachines.py:135 -#: netbox/virtualization/tables/virtualmachines.py:190 -#: netbox/vpn/choices.py:45 netbox/vpn/forms/filtersets.py:293 -#: netbox/vpn/forms/model_forms.py:160 netbox/vpn/forms/model_forms.py:171 -#: netbox/vpn/forms/model_forms.py:273 netbox/vpn/forms/model_forms.py:454 +#: ipam/forms/filtersets.py:556 ipam/forms/model_forms.py:320 +#: ipam/forms/model_forms.py:713 ipam/forms/model_forms.py:739 +#: ipam/tables/vlans.py:195 templates/virtualization/virtualdisk.html:21 +#: templates/virtualization/virtualmachine.html:12 +#: templates/virtualization/vminterface.html:21 +#: templates/vpn/tunneltermination.html:25 +#: virtualization/forms/filtersets.py:197 +#: virtualization/forms/filtersets.py:242 +#: virtualization/forms/model_forms.py:220 +#: virtualization/tables/virtualmachines.py:135 +#: virtualization/tables/virtualmachines.py:190 vpn/choices.py:45 +#: vpn/forms/filtersets.py:293 vpn/forms/model_forms.py:160 +#: vpn/forms/model_forms.py:171 vpn/forms/model_forms.py:273 +#: vpn/forms/model_forms.py:454 msgid "Virtual Machine" msgstr "Macchina virtuale" -#: netbox/ipam/forms/model_forms.py:80 -#: netbox/templates/ipam/routetarget.html:10 +#: ipam/forms/model_forms.py:80 templates/ipam/routetarget.html:10 msgid "Route Target" msgstr "Obiettivo del percorso" -#: netbox/ipam/forms/model_forms.py:114 netbox/ipam/tables/ip.py:117 -#: netbox/templates/ipam/aggregate.html:11 -#: netbox/templates/ipam/prefix.html:38 +#: ipam/forms/model_forms.py:114 ipam/tables/ip.py:117 +#: templates/ipam/aggregate.html:11 templates/ipam/prefix.html:38 msgid "Aggregate" msgstr "Aggregato" -#: netbox/ipam/forms/model_forms.py:135 netbox/templates/ipam/asnrange.html:12 +#: ipam/forms/model_forms.py:135 templates/ipam/asnrange.html:12 msgid "ASN Range" msgstr "Gamma ASN" -#: netbox/ipam/forms/model_forms.py:231 +#: ipam/forms/model_forms.py:231 msgid "Site/VLAN Assignment" msgstr "Assegnazione sito/VLAN" -#: netbox/ipam/forms/model_forms.py:259 netbox/templates/ipam/iprange.html:10 +#: ipam/forms/model_forms.py:259 templates/ipam/iprange.html:10 msgid "IP Range" msgstr "Intervallo IP" -#: netbox/ipam/forms/model_forms.py:295 netbox/ipam/forms/model_forms.py:321 -#: netbox/ipam/forms/model_forms.py:473 -#: netbox/templates/ipam/fhrpgroup.html:19 +#: ipam/forms/model_forms.py:295 ipam/forms/model_forms.py:321 +#: ipam/forms/model_forms.py:473 templates/ipam/fhrpgroup.html:19 msgid "FHRP Group" msgstr "Gruppo FHRP" -#: netbox/ipam/forms/model_forms.py:310 +#: ipam/forms/model_forms.py:310 msgid "Make this the primary IP for the device/VM" msgstr "" "Imposta questo indirizzo IP primario per il dispositivo/macchina virtuale" -#: netbox/ipam/forms/model_forms.py:325 +#: ipam/forms/model_forms.py:325 msgid "NAT IP (Inside)" msgstr "NAT IP (interno)" -#: netbox/ipam/forms/model_forms.py:384 +#: ipam/forms/model_forms.py:384 msgid "An IP address can only be assigned to a single object." msgstr "Un indirizzo IP può essere assegnato a un solo oggetto." -#: netbox/ipam/forms/model_forms.py:390 netbox/ipam/models/ip.py:897 +#: ipam/forms/model_forms.py:390 ipam/models/ip.py:897 msgid "" "Cannot reassign IP address while it is designated as the primary IP for the " "parent object" @@ -9910,31 +9315,30 @@ msgstr "" "Impossibile riassegnare l'indirizzo IP mentre è designato come IP primario " "per l'oggetto padre" -#: netbox/ipam/forms/model_forms.py:400 +#: ipam/forms/model_forms.py:400 msgid "" "Only IP addresses assigned to an interface can be designated as primary IPs." msgstr "" "Solo gli indirizzi IP assegnati a un'interfaccia possono essere designati " "come IP primari." -#: netbox/ipam/forms/model_forms.py:475 +#: ipam/forms/model_forms.py:475 msgid "Virtual IP Address" msgstr "Indirizzo IP virtuale" -#: netbox/ipam/forms/model_forms.py:560 +#: ipam/forms/model_forms.py:560 msgid "Assignment already exists" msgstr "L'assegnazione esiste già" -#: netbox/ipam/forms/model_forms.py:569 -#: netbox/templates/ipam/vlangroup.html:42 +#: ipam/forms/model_forms.py:569 templates/ipam/vlangroup.html:42 msgid "VLAN IDs" msgstr "ID VLAN" -#: netbox/ipam/forms/model_forms.py:587 +#: ipam/forms/model_forms.py:587 msgid "Child VLANs" msgstr "VLAN per bambini" -#: netbox/ipam/forms/model_forms.py:664 netbox/ipam/forms/model_forms.py:696 +#: ipam/forms/model_forms.py:664 ipam/forms/model_forms.py:696 msgid "" "Comma-separated list of one or more port numbers. A range may be specified " "using a hyphen." @@ -9942,134 +9346,133 @@ msgstr "" "Elenco separato da virgole di uno o più numeri di porta. È possibile " "specificare un intervallo utilizzando un trattino." -#: netbox/ipam/forms/model_forms.py:669 -#: netbox/templates/ipam/servicetemplate.html:12 +#: ipam/forms/model_forms.py:669 templates/ipam/servicetemplate.html:12 msgid "Service Template" msgstr "Modello di servizio" -#: netbox/ipam/forms/model_forms.py:716 +#: ipam/forms/model_forms.py:716 msgid "Port(s)" msgstr "Porta/e" -#: netbox/ipam/forms/model_forms.py:717 netbox/ipam/forms/model_forms.py:745 -#: netbox/templates/ipam/service.html:21 +#: ipam/forms/model_forms.py:717 ipam/forms/model_forms.py:745 +#: templates/ipam/service.html:21 msgid "Service" msgstr "Servizio" -#: netbox/ipam/forms/model_forms.py:730 +#: ipam/forms/model_forms.py:730 msgid "Service template" msgstr "Modello di servizio" -#: netbox/ipam/forms/model_forms.py:742 +#: ipam/forms/model_forms.py:742 msgid "From Template" msgstr "Da modello" -#: netbox/ipam/forms/model_forms.py:743 +#: ipam/forms/model_forms.py:743 msgid "Custom" msgstr "Personalizzato" -#: netbox/ipam/forms/model_forms.py:773 +#: ipam/forms/model_forms.py:773 msgid "" "Must specify name, protocol, and port(s) if not using a service template." msgstr "" "È necessario specificare nome, protocollo e porte se non si utilizza un " "modello di servizio." -#: netbox/ipam/models/asns.py:34 +#: ipam/models/asns.py:34 msgid "start" msgstr "inizio" -#: netbox/ipam/models/asns.py:51 +#: ipam/models/asns.py:51 msgid "ASN range" msgstr "Serie ASN" -#: netbox/ipam/models/asns.py:52 +#: ipam/models/asns.py:52 msgid "ASN ranges" msgstr "Intervalli ASN" -#: netbox/ipam/models/asns.py:72 +#: ipam/models/asns.py:72 #, python-brace-format msgid "Starting ASN ({start}) must be lower than ending ASN ({end})." msgstr "" "Avvio dell'ASN ({start}) deve essere inferiore all'ASN finale ({end})." -#: netbox/ipam/models/asns.py:104 +#: ipam/models/asns.py:104 msgid "Regional Internet Registry responsible for this AS number space" msgstr "Registro Internet regionale responsabile di questo spazio numerico AS" -#: netbox/ipam/models/asns.py:109 +#: ipam/models/asns.py:109 msgid "16- or 32-bit autonomous system number" msgstr "Numero di sistema autonomo a 16 o 32 bit" -#: netbox/ipam/models/fhrp.py:22 +#: ipam/models/fhrp.py:22 msgid "group ID" msgstr "ID gruppo" -#: netbox/ipam/models/fhrp.py:30 netbox/ipam/models/services.py:22 +#: ipam/models/fhrp.py:30 ipam/models/services.py:22 msgid "protocol" msgstr "protocollo" -#: netbox/ipam/models/fhrp.py:38 netbox/wireless/models.py:28 +#: ipam/models/fhrp.py:38 wireless/models.py:28 msgid "authentication type" msgstr "tipo di autenticazione" -#: netbox/ipam/models/fhrp.py:43 +#: ipam/models/fhrp.py:43 msgid "authentication key" msgstr "chiave di autenticazione" -#: netbox/ipam/models/fhrp.py:56 +#: ipam/models/fhrp.py:56 msgid "FHRP group" msgstr "Gruppo FHRP" -#: netbox/ipam/models/fhrp.py:57 +#: ipam/models/fhrp.py:57 msgid "FHRP groups" msgstr "Gruppi FHRP" -#: netbox/ipam/models/fhrp.py:113 +#: ipam/models/fhrp.py:113 msgid "FHRP group assignment" msgstr "Assegnazione del gruppo FHRP" -#: netbox/ipam/models/fhrp.py:114 +#: ipam/models/fhrp.py:114 msgid "FHRP group assignments" msgstr "Incarichi del gruppo FHRP" -#: netbox/ipam/models/ip.py:65 +#: ipam/models/ip.py:65 msgid "private" msgstr "privato" -#: netbox/ipam/models/ip.py:66 +#: ipam/models/ip.py:66 msgid "IP space managed by this RIR is considered private" msgstr "Lo spazio IP gestito da questo RIR è considerato privato" -#: netbox/ipam/models/ip.py:72 netbox/netbox/navigation/menu.py:182 +#: ipam/models/ip.py:72 netbox/navigation/menu.py:182 msgid "RIRs" msgstr "RIR" -#: netbox/ipam/models/ip.py:84 +#: ipam/models/ip.py:84 msgid "IPv4 or IPv6 network" msgstr "Rete IPv4 o IPv6" -#: netbox/ipam/models/ip.py:91 +#: ipam/models/ip.py:91 msgid "Regional Internet Registry responsible for this IP space" msgstr "Registro Internet regionale responsabile di questo spazio IP" -#: netbox/ipam/models/ip.py:101 +#: ipam/models/ip.py:101 msgid "date added" msgstr "data aggiunta" -#: netbox/ipam/models/ip.py:115 +#: ipam/models/ip.py:115 msgid "aggregate" msgstr "aggregare" -#: netbox/ipam/models/ip.py:116 +#: ipam/models/ip.py:116 msgid "aggregates" msgstr "aggregati" -#: netbox/ipam/models/ip.py:132 +#: ipam/models/ip.py:132 msgid "Cannot create aggregate with /0 mask." msgstr "Impossibile creare un aggregato con la maschera /0." -#: netbox/ipam/models/ip.py:144 +#: ipam/models/ip.py:144 #, python-brace-format msgid "" "Aggregates cannot overlap. {prefix} is already covered by an existing " @@ -10078,7 +9481,7 @@ msgstr "" "Gli aggregati non possono sovrapporsi. {prefix} è già coperto da un " "aggregato esistente ({aggregate})." -#: netbox/ipam/models/ip.py:158 +#: ipam/models/ip.py:158 #, python-brace-format msgid "" "Prefixes cannot overlap aggregates. {prefix} covers an existing aggregate " @@ -10087,105 +9490,103 @@ msgstr "" "I prefissi non possono sovrapporsi agli aggregati. {prefix} copre un " "aggregato esistente ({aggregate})." -#: netbox/ipam/models/ip.py:200 netbox/ipam/models/ip.py:737 -#: netbox/vpn/models/tunnels.py:114 +#: ipam/models/ip.py:200 ipam/models/ip.py:737 vpn/models/tunnels.py:114 msgid "role" msgstr "ruolo" -#: netbox/ipam/models/ip.py:201 +#: ipam/models/ip.py:201 msgid "roles" msgstr "ruoli" -#: netbox/ipam/models/ip.py:217 netbox/ipam/models/ip.py:293 +#: ipam/models/ip.py:217 ipam/models/ip.py:293 msgid "prefix" msgstr "prefisso" -#: netbox/ipam/models/ip.py:218 +#: ipam/models/ip.py:218 msgid "IPv4 or IPv6 network with mask" msgstr "Rete IPv4 o IPv6 con maschera" -#: netbox/ipam/models/ip.py:254 +#: ipam/models/ip.py:254 msgid "Operational status of this prefix" msgstr "Stato operativo di questo prefisso" -#: netbox/ipam/models/ip.py:262 +#: ipam/models/ip.py:262 msgid "The primary function of this prefix" msgstr "La funzione principale di questo prefisso" -#: netbox/ipam/models/ip.py:265 +#: ipam/models/ip.py:265 msgid "is a pool" msgstr "è una piscina" -#: netbox/ipam/models/ip.py:267 +#: ipam/models/ip.py:267 msgid "All IP addresses within this prefix are considered usable" msgstr "" "Tutti gli indirizzi IP all'interno di questo prefisso sono considerati " "utilizzabili" -#: netbox/ipam/models/ip.py:270 netbox/ipam/models/ip.py:537 +#: ipam/models/ip.py:270 ipam/models/ip.py:537 msgid "mark utilized" msgstr "marchio utilizzato" -#: netbox/ipam/models/ip.py:294 +#: ipam/models/ip.py:294 msgid "prefixes" msgstr "prefissi" -#: netbox/ipam/models/ip.py:317 +#: ipam/models/ip.py:317 msgid "Cannot create prefix with /0 mask." msgstr "Impossibile creare un prefisso con la maschera /0." -#: netbox/ipam/models/ip.py:324 netbox/ipam/models/ip.py:874 +#: ipam/models/ip.py:324 ipam/models/ip.py:874 #, python-brace-format msgid "VRF {vrf}" msgstr "VRF {vrf}" -#: netbox/ipam/models/ip.py:324 netbox/ipam/models/ip.py:874 +#: ipam/models/ip.py:324 ipam/models/ip.py:874 msgid "global table" msgstr "tabella globale" -#: netbox/ipam/models/ip.py:326 +#: ipam/models/ip.py:326 #, python-brace-format msgid "Duplicate prefix found in {table}: {prefix}" msgstr "Prefisso duplicato trovato in {table}: {prefix}" -#: netbox/ipam/models/ip.py:495 +#: ipam/models/ip.py:495 msgid "start address" msgstr "indirizzo iniziale" -#: netbox/ipam/models/ip.py:496 netbox/ipam/models/ip.py:500 -#: netbox/ipam/models/ip.py:712 +#: ipam/models/ip.py:496 ipam/models/ip.py:500 ipam/models/ip.py:712 msgid "IPv4 or IPv6 address (with mask)" msgstr "Indirizzo IPv4 o IPv6 (con maschera)" -#: netbox/ipam/models/ip.py:499 +#: ipam/models/ip.py:499 msgid "end address" msgstr "indirizzo finale" -#: netbox/ipam/models/ip.py:526 +#: ipam/models/ip.py:526 msgid "Operational status of this range" msgstr "Stato operativo di questa gamma" -#: netbox/ipam/models/ip.py:534 +#: ipam/models/ip.py:534 msgid "The primary function of this range" msgstr "La funzione principale di questa gamma" -#: netbox/ipam/models/ip.py:548 +#: ipam/models/ip.py:548 msgid "IP range" msgstr "Intervallo IP" -#: netbox/ipam/models/ip.py:549 +#: ipam/models/ip.py:549 msgid "IP ranges" msgstr "Intervalli IP" -#: netbox/ipam/models/ip.py:565 +#: ipam/models/ip.py:565 msgid "Starting and ending IP address versions must match" msgstr "Le versioni iniziali e finali degli indirizzi IP devono corrispondere" -#: netbox/ipam/models/ip.py:571 +#: ipam/models/ip.py:571 msgid "Starting and ending IP address masks must match" msgstr "Le maschere di indirizzo IP iniziale e finale devono corrispondere" -#: netbox/ipam/models/ip.py:578 +#: ipam/models/ip.py:578 #, python-brace-format msgid "" "Ending address must be greater than the starting address ({start_address})" @@ -10193,57 +9594,57 @@ msgstr "" "L'indirizzo finale deve essere maggiore dell'indirizzo iniziale " "({start_address})" -#: netbox/ipam/models/ip.py:590 +#: ipam/models/ip.py:590 #, python-brace-format msgid "Defined addresses overlap with range {overlapping_range} in VRF {vrf}" msgstr "" "Gli indirizzi definiti si sovrappongono all'intervallo {overlapping_range} " "in VRF {vrf}" -#: netbox/ipam/models/ip.py:599 +#: ipam/models/ip.py:599 #, python-brace-format msgid "Defined range exceeds maximum supported size ({max_size})" msgstr "" "L'intervallo definito supera la dimensione massima supportata ({max_size})" -#: netbox/ipam/models/ip.py:711 netbox/tenancy/models/contacts.py:82 +#: ipam/models/ip.py:711 tenancy/models/contacts.py:82 msgid "address" msgstr "indirizzo" -#: netbox/ipam/models/ip.py:734 +#: ipam/models/ip.py:734 msgid "The operational status of this IP" msgstr "Lo stato operativo di questo IP" -#: netbox/ipam/models/ip.py:741 +#: ipam/models/ip.py:741 msgid "The functional role of this IP" msgstr "Il ruolo funzionale di questo IP" -#: netbox/ipam/models/ip.py:765 netbox/templates/ipam/ipaddress.html:72 +#: ipam/models/ip.py:765 templates/ipam/ipaddress.html:72 msgid "NAT (inside)" msgstr "NAT (interno)" -#: netbox/ipam/models/ip.py:766 +#: ipam/models/ip.py:766 msgid "The IP for which this address is the \"outside\" IP" msgstr "L'IP per il quale questo indirizzo è l'IP «esterno»" -#: netbox/ipam/models/ip.py:773 +#: ipam/models/ip.py:773 msgid "Hostname or FQDN (not case-sensitive)" msgstr "Nome host o FQDN (senza distinzione tra maiuscole e minuscole)" -#: netbox/ipam/models/ip.py:789 netbox/ipam/models/services.py:94 +#: ipam/models/ip.py:789 ipam/models/services.py:94 msgid "IP addresses" msgstr "Indirizzi IP" -#: netbox/ipam/models/ip.py:845 +#: ipam/models/ip.py:845 msgid "Cannot create IP address with /0 mask." msgstr "Impossibile creare un indirizzo IP con la maschera /0." -#: netbox/ipam/models/ip.py:851 +#: ipam/models/ip.py:851 #, python-brace-format msgid "{ip} is a network ID, which may not be assigned to an interface." msgstr "{ip} è un ID di rete, che non può essere assegnato a un'interfaccia." -#: netbox/ipam/models/ip.py:862 +#: ipam/models/ip.py:862 #, python-brace-format msgid "" "{ip} is a broadcast address, which may not be assigned to an interface." @@ -10251,71 +9652,71 @@ msgstr "" "{ip} è un indirizzo di trasmissione, che non può essere assegnato a " "un'interfaccia." -#: netbox/ipam/models/ip.py:876 +#: ipam/models/ip.py:876 #, python-brace-format msgid "Duplicate IP address found in {table}: {ipaddress}" msgstr "Indirizzo IP duplicato trovato in {table}: {ipaddress}" -#: netbox/ipam/models/ip.py:903 +#: ipam/models/ip.py:903 msgid "Only IPv6 addresses can be assigned SLAAC status" msgstr "Solo agli indirizzi IPv6 può essere assegnato lo stato SLAAC" -#: netbox/ipam/models/services.py:33 +#: ipam/models/services.py:33 msgid "port numbers" msgstr "numeri di porta" -#: netbox/ipam/models/services.py:59 +#: ipam/models/services.py:59 msgid "service template" msgstr "modello di servizio" -#: netbox/ipam/models/services.py:60 +#: ipam/models/services.py:60 msgid "service templates" msgstr "modelli di servizio" -#: netbox/ipam/models/services.py:95 +#: ipam/models/services.py:95 msgid "The specific IP addresses (if any) to which this service is bound" msgstr "" "Gli indirizzi IP specifici (se presenti) a cui è associato questo servizio" -#: netbox/ipam/models/services.py:102 +#: ipam/models/services.py:102 msgid "service" msgstr "servizio" -#: netbox/ipam/models/services.py:103 +#: ipam/models/services.py:103 msgid "services" msgstr "servizi" -#: netbox/ipam/models/services.py:117 +#: ipam/models/services.py:117 msgid "" "A service cannot be associated with both a device and a virtual machine." msgstr "" "Un servizio non può essere associato sia a un dispositivo che a una macchina" " virtuale." -#: netbox/ipam/models/services.py:119 +#: ipam/models/services.py:119 msgid "" "A service must be associated with either a device or a virtual machine." msgstr "" "Un servizio deve essere associato a un dispositivo o a una macchina " "virtuale." -#: netbox/ipam/models/vlans.py:85 +#: ipam/models/vlans.py:85 msgid "VLAN groups" msgstr "Gruppi VLAN" -#: netbox/ipam/models/vlans.py:95 +#: ipam/models/vlans.py:95 msgid "Cannot set scope_type without scope_id." msgstr "Impossibile impostare scope_type senza scope_id." -#: netbox/ipam/models/vlans.py:97 +#: ipam/models/vlans.py:97 msgid "Cannot set scope_id without scope_type." msgstr "Impossibile impostare scope_id senza scope_type." -#: netbox/ipam/models/vlans.py:101 +#: ipam/models/vlans.py:101 msgid "Ranges cannot overlap." msgstr "Gli intervalli non possono sovrapporsi." -#: netbox/ipam/models/vlans.py:106 +#: ipam/models/vlans.py:106 #, python-brace-format msgid "" "Maximum child VID must be greater than or equal to minimum child VID " @@ -10324,27 +9725,27 @@ msgstr "" "Il VID massimo per bambini deve essere maggiore o uguale al VID minimo per " "bambini ({value})" -#: netbox/ipam/models/vlans.py:165 +#: ipam/models/vlans.py:165 msgid "The specific site to which this VLAN is assigned (if any)" msgstr "Il sito specifico a cui è assegnata questa VLAN (se presente)" -#: netbox/ipam/models/vlans.py:173 +#: ipam/models/vlans.py:173 msgid "VLAN group (optional)" msgstr "Gruppo VLAN (opzionale)" -#: netbox/ipam/models/vlans.py:181 +#: ipam/models/vlans.py:181 msgid "Numeric VLAN ID (1-4094)" msgstr "ID VLAN numerico (1-4094)" -#: netbox/ipam/models/vlans.py:199 +#: ipam/models/vlans.py:199 msgid "Operational status of this VLAN" msgstr "Stato operativo di questa VLAN" -#: netbox/ipam/models/vlans.py:207 +#: ipam/models/vlans.py:207 msgid "The primary function of this VLAN" msgstr "La funzione principale di questa VLAN" -#: netbox/ipam/models/vlans.py:250 +#: ipam/models/vlans.py:250 #, python-brace-format msgid "" "VLAN is assigned to group {group} (scope: {scope}); cannot also assign to " @@ -10353,170 +9754,168 @@ msgstr "" "La VLAN è assegnata al gruppo {group} (scopo: {scope}); non può essere " "assegnato anche al sito {site}." -#: netbox/ipam/models/vlans.py:259 +#: ipam/models/vlans.py:259 #, python-brace-format msgid "VID must be in ranges {ranges} for VLANs in group {group}" msgstr "" "Il VID deve essere compreso negli intervalli {ranges} per le VLAN in gruppo " "{group}" -#: netbox/ipam/models/vrfs.py:30 +#: ipam/models/vrfs.py:30 msgid "route distinguisher" msgstr "identificatore di percorso" -#: netbox/ipam/models/vrfs.py:31 +#: ipam/models/vrfs.py:31 msgid "Unique route distinguisher (as defined in RFC 4364)" msgstr "Distinguitore di percorso univoco (come definito in RFC 4364)" -#: netbox/ipam/models/vrfs.py:42 +#: ipam/models/vrfs.py:42 msgid "enforce unique space" msgstr "imporre uno spazio unico" -#: netbox/ipam/models/vrfs.py:43 +#: ipam/models/vrfs.py:43 msgid "Prevent duplicate prefixes/IP addresses within this VRF" msgstr "Impedire prefissi/indirizzi IP duplicati all'interno di questo VRF" -#: netbox/ipam/models/vrfs.py:63 netbox/netbox/navigation/menu.py:186 -#: netbox/netbox/navigation/menu.py:188 +#: ipam/models/vrfs.py:63 netbox/navigation/menu.py:186 +#: netbox/navigation/menu.py:188 msgid "VRFs" msgstr "VRF" -#: netbox/ipam/models/vrfs.py:82 +#: ipam/models/vrfs.py:82 msgid "Route target value (formatted in accordance with RFC 4360)" msgstr "Valore target del percorso (formattato secondo RFC 4360)" -#: netbox/ipam/models/vrfs.py:94 +#: ipam/models/vrfs.py:94 msgid "route target" msgstr "destinazione del percorso" -#: netbox/ipam/models/vrfs.py:95 +#: ipam/models/vrfs.py:95 msgid "route targets" msgstr "obiettivi del percorso" -#: netbox/ipam/tables/asn.py:52 +#: ipam/tables/asn.py:52 msgid "ASDOT" msgstr "ASDOT" -#: netbox/ipam/tables/asn.py:57 +#: ipam/tables/asn.py:57 msgid "Site Count" msgstr "Numero siti" -#: netbox/ipam/tables/asn.py:62 +#: ipam/tables/asn.py:62 msgid "Provider Count" msgstr "Numero di fornitori" -#: netbox/ipam/tables/ip.py:95 netbox/netbox/navigation/menu.py:179 -#: netbox/netbox/navigation/menu.py:181 +#: ipam/tables/ip.py:95 netbox/navigation/menu.py:179 +#: netbox/navigation/menu.py:181 msgid "Aggregates" msgstr "Aggregati" -#: netbox/ipam/tables/ip.py:125 +#: ipam/tables/ip.py:125 msgid "Added" msgstr "Aggiunto" -#: netbox/ipam/tables/ip.py:128 netbox/ipam/tables/ip.py:166 -#: netbox/ipam/tables/vlans.py:142 netbox/ipam/views.py:346 -#: netbox/netbox/navigation/menu.py:165 netbox/netbox/navigation/menu.py:167 -#: netbox/templates/ipam/vlan.html:84 +#: ipam/tables/ip.py:128 ipam/tables/ip.py:166 ipam/tables/vlans.py:142 +#: ipam/views.py:346 netbox/navigation/menu.py:165 +#: netbox/navigation/menu.py:167 templates/ipam/vlan.html:84 msgid "Prefixes" msgstr "Prefissi" -#: netbox/ipam/tables/ip.py:131 netbox/ipam/tables/ip.py:270 -#: netbox/ipam/tables/ip.py:324 netbox/ipam/tables/vlans.py:86 -#: netbox/templates/dcim/device.html:260 -#: netbox/templates/ipam/aggregate.html:24 -#: netbox/templates/ipam/iprange.html:29 netbox/templates/ipam/prefix.html:106 +#: ipam/tables/ip.py:131 ipam/tables/ip.py:270 ipam/tables/ip.py:324 +#: ipam/tables/vlans.py:86 templates/dcim/device.html:260 +#: templates/ipam/aggregate.html:24 templates/ipam/iprange.html:29 +#: templates/ipam/prefix.html:106 msgid "Utilization" msgstr "Utilizzo" -#: netbox/ipam/tables/ip.py:171 netbox/netbox/navigation/menu.py:161 +#: ipam/tables/ip.py:171 netbox/navigation/menu.py:161 msgid "IP Ranges" msgstr "Intervalli IP" -#: netbox/ipam/tables/ip.py:221 +#: ipam/tables/ip.py:221 msgid "Prefix (Flat)" msgstr "Prefisso (piatto)" -#: netbox/ipam/tables/ip.py:225 +#: ipam/tables/ip.py:225 msgid "Depth" msgstr "Profondità" -#: netbox/ipam/tables/ip.py:262 +#: ipam/tables/ip.py:262 msgid "Pool" msgstr "Piscina" -#: netbox/ipam/tables/ip.py:266 netbox/ipam/tables/ip.py:320 +#: ipam/tables/ip.py:266 ipam/tables/ip.py:320 msgid "Marked Utilized" msgstr "Contrassegnato Utilizzato" -#: netbox/ipam/tables/ip.py:304 +#: ipam/tables/ip.py:304 msgid "Start address" msgstr "Indirizzo iniziale" -#: netbox/ipam/tables/ip.py:383 +#: ipam/tables/ip.py:383 msgid "NAT (Inside)" msgstr "NAT (interno)" -#: netbox/ipam/tables/ip.py:388 +#: ipam/tables/ip.py:388 msgid "NAT (Outside)" msgstr "NAT (esterno)" -#: netbox/ipam/tables/ip.py:393 +#: ipam/tables/ip.py:393 msgid "Assigned" msgstr "Assegnata" -#: netbox/ipam/tables/ip.py:429 netbox/templates/vpn/l2vpntermination.html:16 -#: netbox/vpn/forms/filtersets.py:240 +#: ipam/tables/ip.py:429 templates/vpn/l2vpntermination.html:16 +#: vpn/forms/filtersets.py:240 msgid "Assigned Object" msgstr "Oggetto assegnato" -#: netbox/ipam/tables/vlans.py:68 +#: ipam/tables/vlans.py:68 msgid "Scope Type" msgstr "Tipo di ambito" -#: netbox/ipam/tables/vlans.py:76 +#: ipam/tables/vlans.py:76 msgid "VID Ranges" msgstr "Gamme VID" -#: netbox/ipam/tables/vlans.py:111 netbox/ipam/tables/vlans.py:214 -#: netbox/templates/dcim/inc/interface_vlans_table.html:4 +#: ipam/tables/vlans.py:111 ipam/tables/vlans.py:214 +#: templates/dcim/inc/interface_vlans_table.html:4 msgid "VID" msgstr "VID" -#: netbox/ipam/tables/vrfs.py:30 +#: ipam/tables/vrfs.py:30 msgid "RD" msgstr "ROSSO" -#: netbox/ipam/tables/vrfs.py:33 +#: ipam/tables/vrfs.py:33 msgid "Unique" msgstr "Unico" -#: netbox/ipam/tables/vrfs.py:37 netbox/vpn/tables/l2vpn.py:27 +#: ipam/tables/vrfs.py:37 vpn/tables/l2vpn.py:27 msgid "Import Targets" msgstr "Obiettivi di importazione" -#: netbox/ipam/tables/vrfs.py:42 netbox/vpn/tables/l2vpn.py:32 +#: ipam/tables/vrfs.py:42 vpn/tables/l2vpn.py:32 msgid "Export Targets" msgstr "Obiettivi di esportazione" -#: netbox/ipam/validators.py:9 +#: ipam/validators.py:9 #, python-brace-format msgid "{prefix} is not a valid prefix. Did you mean {suggested}?" msgstr "{prefix} non è un prefisso valido. Volevi dire {suggested}?" -#: netbox/ipam/validators.py:16 +#: ipam/validators.py:16 #, python-format msgid "The prefix length must be less than or equal to %(limit_value)s." msgstr "" "La lunghezza del prefisso deve essere inferiore o uguale a %(limit_value)s." -#: netbox/ipam/validators.py:24 +#: ipam/validators.py:24 #, python-format msgid "The prefix length must be greater than or equal to %(limit_value)s." msgstr "" "La lunghezza del prefisso deve essere maggiore o uguale a %(limit_value)s." -#: netbox/ipam/validators.py:33 +#: ipam/validators.py:33 msgid "" "Only alphanumeric characters, asterisks, hyphens, periods, and underscores " "are allowed in DNS names" @@ -10524,31 +9923,31 @@ msgstr "" "Nei nomi DNS sono consentiti solo caratteri alfanumerici, asterischi, " "trattini, punti e trattini bassi" -#: netbox/ipam/views.py:533 +#: ipam/views.py:533 msgid "Child Prefixes" msgstr "Prefissi per bambini" -#: netbox/ipam/views.py:569 +#: ipam/views.py:569 msgid "Child Ranges" msgstr "Gamme per bambini" -#: netbox/ipam/views.py:898 +#: ipam/views.py:898 msgid "Related IPs" msgstr "IP correlati" -#: netbox/ipam/views.py:1127 +#: ipam/views.py:1127 msgid "Device Interfaces" msgstr "Interfacce dei dispositivi" -#: netbox/ipam/views.py:1145 +#: ipam/views.py:1145 msgid "VM Interfaces" msgstr "Interfacce VM" -#: netbox/netbox/api/fields.py:65 +#: netbox/api/fields.py:65 msgid "This field may not be blank." msgstr "Questo campo non può essere vuoto." -#: netbox/netbox/api/fields.py:70 +#: netbox/api/fields.py:70 msgid "" "Value must be passed directly (e.g. \"foo\": 123); do not use a dictionary " "or list." @@ -10556,348 +9955,335 @@ msgstr "" "Il valore deve essere passato direttamente (ad esempio «foo»: 123); non " "utilizzare un dizionario o un elenco." -#: netbox/netbox/api/fields.py:91 +#: netbox/api/fields.py:91 #, python-brace-format msgid "{value} is not a valid choice." msgstr "{value} non è una scelta valida." -#: netbox/netbox/api/fields.py:104 +#: netbox/api/fields.py:104 #, python-brace-format msgid "Invalid content type: {content_type}" msgstr "Tipo di contenuto non valido: {content_type}" -#: netbox/netbox/api/fields.py:105 +#: netbox/api/fields.py:105 msgid "Invalid value. Specify a content type as '.'." msgstr "" "Valore non valido Specifica un tipo di contenuto come " "'.»." -#: netbox/netbox/api/fields.py:167 +#: netbox/api/fields.py:167 msgid "Ranges must be specified in the form (lower, upper)." msgstr "" "Gli intervalli devono essere specificati nel modulo (inferiore, superiore)." -#: netbox/netbox/api/fields.py:169 +#: netbox/api/fields.py:169 msgid "Range boundaries must be defined as integers." msgstr "I limiti dell'intervallo devono essere definiti come numeri interi." -#: netbox/netbox/api/serializers/fields.py:40 +#: netbox/api/serializers/fields.py:40 #, python-brace-format msgid "{class_name} must implement get_view_name()" msgstr "{class_name} deve implementare get_view_name ()" -#: netbox/netbox/authentication/__init__.py:138 +#: netbox/authentication/__init__.py:138 #, python-brace-format msgid "Invalid permission {permission} for model {model}" msgstr "Autorizzazione non valida {permission} per modello {model}" -#: netbox/netbox/choices.py:49 +#: netbox/choices.py:49 msgid "Dark Red" msgstr "Rosso scuro" -#: netbox/netbox/choices.py:52 +#: netbox/choices.py:52 msgid "Rose" msgstr "Rosa" -#: netbox/netbox/choices.py:53 +#: netbox/choices.py:53 msgid "Fuchsia" msgstr "Fucsia" -#: netbox/netbox/choices.py:55 +#: netbox/choices.py:55 msgid "Dark Purple" msgstr "Viola scuro" -#: netbox/netbox/choices.py:58 +#: netbox/choices.py:58 msgid "Light Blue" msgstr "Azzurro chiaro" -#: netbox/netbox/choices.py:61 +#: netbox/choices.py:61 msgid "Aqua" msgstr "acqua" -#: netbox/netbox/choices.py:62 +#: netbox/choices.py:62 msgid "Dark Green" msgstr "Verde scuro" -#: netbox/netbox/choices.py:64 +#: netbox/choices.py:64 msgid "Light Green" msgstr "Verde chiaro" -#: netbox/netbox/choices.py:65 +#: netbox/choices.py:65 msgid "Lime" msgstr "Calce" -#: netbox/netbox/choices.py:67 +#: netbox/choices.py:67 msgid "Amber" msgstr "Ambra" -#: netbox/netbox/choices.py:69 +#: netbox/choices.py:69 msgid "Dark Orange" msgstr "Arancio scuro" -#: netbox/netbox/choices.py:70 +#: netbox/choices.py:70 msgid "Brown" msgstr "Marrone" -#: netbox/netbox/choices.py:71 +#: netbox/choices.py:71 msgid "Light Grey" msgstr "Grigio chiaro" -#: netbox/netbox/choices.py:72 +#: netbox/choices.py:72 msgid "Grey" msgstr "Grigio" -#: netbox/netbox/choices.py:73 +#: netbox/choices.py:73 msgid "Dark Grey" msgstr "Grigio scuro" -#: netbox/netbox/choices.py:128 +#: netbox/choices.py:128 msgid "Direct" msgstr "Diretto" -#: netbox/netbox/choices.py:129 +#: netbox/choices.py:129 msgid "Upload" msgstr "Carica" -#: netbox/netbox/choices.py:141 netbox/netbox/choices.py:155 +#: netbox/choices.py:141 netbox/choices.py:155 msgid "Auto-detect" msgstr "Rilevamento automatico" -#: netbox/netbox/choices.py:156 +#: netbox/choices.py:156 msgid "Comma" msgstr "Virgola" -#: netbox/netbox/choices.py:157 +#: netbox/choices.py:157 msgid "Semicolon" msgstr "Punto e virgola" -#: netbox/netbox/choices.py:158 +#: netbox/choices.py:158 msgid "Tab" msgstr "Tab" -#: netbox/netbox/config/__init__.py:67 +#: netbox/config/__init__.py:67 #, python-brace-format msgid "Invalid configuration parameter: {item}" msgstr "Parametro di configurazione non valido: {item}" -#: netbox/netbox/config/parameters.py:22 -#: netbox/templates/core/inc/config_data.html:62 +#: netbox/config/parameters.py:22 templates/core/inc/config_data.html:62 msgid "Login banner" msgstr "Banner di accesso" -#: netbox/netbox/config/parameters.py:24 +#: netbox/config/parameters.py:24 msgid "Additional content to display on the login page" msgstr "Contenuti aggiuntivi da visualizzare nella pagina di accesso" -#: netbox/netbox/config/parameters.py:33 -#: netbox/templates/core/inc/config_data.html:66 +#: netbox/config/parameters.py:33 templates/core/inc/config_data.html:66 msgid "Maintenance banner" msgstr "Banner di manutenzione" -#: netbox/netbox/config/parameters.py:35 +#: netbox/config/parameters.py:35 msgid "Additional content to display when in maintenance mode" msgstr "Contenuti aggiuntivi da visualizzare in modalità manutenzione" -#: netbox/netbox/config/parameters.py:44 -#: netbox/templates/core/inc/config_data.html:70 +#: netbox/config/parameters.py:44 templates/core/inc/config_data.html:70 msgid "Top banner" msgstr "Banner superiore" -#: netbox/netbox/config/parameters.py:46 +#: netbox/config/parameters.py:46 msgid "Additional content to display at the top of every page" msgstr "" "Contenuti aggiuntivi da visualizzare nella parte superiore di ogni pagina" -#: netbox/netbox/config/parameters.py:55 -#: netbox/templates/core/inc/config_data.html:74 +#: netbox/config/parameters.py:55 templates/core/inc/config_data.html:74 msgid "Bottom banner" msgstr "Banner inferiore" -#: netbox/netbox/config/parameters.py:57 +#: netbox/config/parameters.py:57 msgid "Additional content to display at the bottom of every page" msgstr "" "Contenuti aggiuntivi da visualizzare nella parte inferiore di ogni pagina" -#: netbox/netbox/config/parameters.py:68 +#: netbox/config/parameters.py:68 msgid "Globally unique IP space" msgstr "Spazio IP unico a livello globale" -#: netbox/netbox/config/parameters.py:70 +#: netbox/config/parameters.py:70 msgid "Enforce unique IP addressing within the global table" msgstr "Applica un indirizzo IP univoco all'interno della tabella globale" -#: netbox/netbox/config/parameters.py:75 -#: netbox/templates/core/inc/config_data.html:44 +#: netbox/config/parameters.py:75 templates/core/inc/config_data.html:44 msgid "Prefer IPv4" msgstr "Preferisci IPv4" -#: netbox/netbox/config/parameters.py:77 +#: netbox/config/parameters.py:77 msgid "Prefer IPv4 addresses over IPv6" msgstr "Preferisci gli indirizzi IPv4 rispetto a IPv6" -#: netbox/netbox/config/parameters.py:84 +#: netbox/config/parameters.py:84 msgid "Rack unit height" msgstr "Altezza dell'unità rack" -#: netbox/netbox/config/parameters.py:86 +#: netbox/config/parameters.py:86 msgid "Default unit height for rendered rack elevations" msgstr "" "Altezza dell'unità predefinita per le elevazioni dei rack renderizzate" -#: netbox/netbox/config/parameters.py:91 +#: netbox/config/parameters.py:91 msgid "Rack unit width" msgstr "Larghezza dell'unità rack" -#: netbox/netbox/config/parameters.py:93 +#: netbox/config/parameters.py:93 msgid "Default unit width for rendered rack elevations" msgstr "" "Larghezza dell'unità predefinita per le elevazioni dei rack renderizzate" -#: netbox/netbox/config/parameters.py:100 +#: netbox/config/parameters.py:100 msgid "Powerfeed voltage" msgstr "Tensione di alimentazione" -#: netbox/netbox/config/parameters.py:102 +#: netbox/config/parameters.py:102 msgid "Default voltage for powerfeeds" msgstr "Tensione predefinita per gli alimentatori" -#: netbox/netbox/config/parameters.py:107 +#: netbox/config/parameters.py:107 msgid "Powerfeed amperage" msgstr "Amperaggio di alimentazione" -#: netbox/netbox/config/parameters.py:109 +#: netbox/config/parameters.py:109 msgid "Default amperage for powerfeeds" msgstr "Amperaggio predefinito per i powerfeed" -#: netbox/netbox/config/parameters.py:114 +#: netbox/config/parameters.py:114 msgid "Powerfeed max utilization" msgstr "Utilizzo massimo di Powerfeed" -#: netbox/netbox/config/parameters.py:116 +#: netbox/config/parameters.py:116 msgid "Default max utilization for powerfeeds" msgstr "Utilizzo massimo predefinito per i powerfeed" -#: netbox/netbox/config/parameters.py:123 -#: netbox/templates/core/inc/config_data.html:53 +#: netbox/config/parameters.py:123 templates/core/inc/config_data.html:53 msgid "Allowed URL schemes" msgstr "Schemi URL consentiti" -#: netbox/netbox/config/parameters.py:128 +#: netbox/config/parameters.py:128 msgid "Permitted schemes for URLs in user-provided content" msgstr "Schemi consentiti per gli URL nei contenuti forniti dagli utenti" -#: netbox/netbox/config/parameters.py:136 +#: netbox/config/parameters.py:136 msgid "Default page size" msgstr "Dimensioni di pagina predefinite" -#: netbox/netbox/config/parameters.py:142 +#: netbox/config/parameters.py:142 msgid "Maximum page size" msgstr "Dimensione massima della pagina" -#: netbox/netbox/config/parameters.py:150 -#: netbox/templates/core/inc/config_data.html:96 +#: netbox/config/parameters.py:150 templates/core/inc/config_data.html:96 msgid "Custom validators" msgstr "Validatori personalizzati" -#: netbox/netbox/config/parameters.py:152 +#: netbox/config/parameters.py:152 msgid "Custom validation rules (JSON)" msgstr "Regole di convalida personalizzate (JSON)" -#: netbox/netbox/config/parameters.py:160 -#: netbox/templates/core/inc/config_data.html:104 +#: netbox/config/parameters.py:160 templates/core/inc/config_data.html:104 msgid "Protection rules" msgstr "Regole di protezione" -#: netbox/netbox/config/parameters.py:162 +#: netbox/config/parameters.py:162 msgid "Deletion protection rules (JSON)" msgstr "Regole di protezione dalla cancellazione (JSON)" -#: netbox/netbox/config/parameters.py:172 -#: netbox/templates/core/inc/config_data.html:117 +#: netbox/config/parameters.py:172 templates/core/inc/config_data.html:117 msgid "Default preferences" msgstr "Preferenze predefinite" -#: netbox/netbox/config/parameters.py:174 +#: netbox/config/parameters.py:174 msgid "Default preferences for new users" msgstr "Preferenze predefinite per i nuovi utenti" -#: netbox/netbox/config/parameters.py:181 -#: netbox/templates/core/inc/config_data.html:129 +#: netbox/config/parameters.py:181 templates/core/inc/config_data.html:129 msgid "Maintenance mode" msgstr "Modalità di manutenzione" -#: netbox/netbox/config/parameters.py:183 +#: netbox/config/parameters.py:183 msgid "Enable maintenance mode" msgstr "Abilita la modalità di manutenzione" -#: netbox/netbox/config/parameters.py:188 -#: netbox/templates/core/inc/config_data.html:133 +#: netbox/config/parameters.py:188 templates/core/inc/config_data.html:133 msgid "GraphQL enabled" msgstr "GraphQL abilitato" -#: netbox/netbox/config/parameters.py:190 +#: netbox/config/parameters.py:190 msgid "Enable the GraphQL API" msgstr "Abilita l'API GraphQL" -#: netbox/netbox/config/parameters.py:195 -#: netbox/templates/core/inc/config_data.html:137 +#: netbox/config/parameters.py:195 templates/core/inc/config_data.html:137 msgid "Changelog retention" msgstr "Conservazione del changelog" -#: netbox/netbox/config/parameters.py:197 +#: netbox/config/parameters.py:197 msgid "Days to retain changelog history (set to zero for unlimited)" msgstr "" "Giorni per conservare la cronologia delle modifiche (impostati a zero per un" " numero illimitato)" -#: netbox/netbox/config/parameters.py:202 +#: netbox/config/parameters.py:202 msgid "Job result retention" msgstr "Conservazione dei risultati lavorativi" -#: netbox/netbox/config/parameters.py:204 +#: netbox/config/parameters.py:204 msgid "Days to retain job result history (set to zero for unlimited)" msgstr "" "Giorni per conservare la cronologia dei risultati del lavoro (impostati a " "zero per un numero illimitato)" -#: netbox/netbox/config/parameters.py:209 -#: netbox/templates/core/inc/config_data.html:145 +#: netbox/config/parameters.py:209 templates/core/inc/config_data.html:145 msgid "Maps URL" msgstr "URL delle mappe" -#: netbox/netbox/config/parameters.py:211 +#: netbox/config/parameters.py:211 msgid "Base URL for mapping geographic locations" msgstr "URL di base per la mappatura delle posizioni geografiche" -#: netbox/netbox/forms/__init__.py:12 +#: netbox/forms/__init__.py:12 msgid "Partial match" msgstr "Partita parziale" -#: netbox/netbox/forms/__init__.py:13 +#: netbox/forms/__init__.py:13 msgid "Exact match" msgstr "Corrispondenza esatta" -#: netbox/netbox/forms/__init__.py:14 +#: netbox/forms/__init__.py:14 msgid "Starts with" msgstr "Inizia con" -#: netbox/netbox/forms/__init__.py:15 +#: netbox/forms/__init__.py:15 msgid "Ends with" msgstr "Termina con" -#: netbox/netbox/forms/__init__.py:16 +#: netbox/forms/__init__.py:16 msgid "Regex" msgstr "Regex" -#: netbox/netbox/forms/__init__.py:34 +#: netbox/forms/__init__.py:34 msgid "Object type(s)" msgstr "Tipo/i di oggetto" -#: netbox/netbox/forms/__init__.py:40 +#: netbox/forms/__init__.py:40 msgid "Lookup" msgstr "Cercare" -#: netbox/netbox/forms/base.py:90 +#: netbox/forms/base.py:90 msgid "" "Tag slugs separated by commas, encased with double quotes (e.g. " "\"tag1,tag2,tag3\")" @@ -10905,433 +10291,417 @@ msgstr "" "Slug di tag separati da virgole, racchiusi tra virgolette doppie (ad esempio" " «tag1, tag2, tag3\")" -#: netbox/netbox/forms/base.py:120 +#: netbox/forms/base.py:120 msgid "Add tags" msgstr "Aggiungi tag" -#: netbox/netbox/forms/base.py:125 +#: netbox/forms/base.py:125 msgid "Remove tags" msgstr "Rimuovi tag" -#: netbox/netbox/forms/mixins.py:38 +#: netbox/forms/mixins.py:38 #, python-brace-format msgid "{class_name} must specify a model class." msgstr "{class_name} deve specificare una classe del modello." -#: netbox/netbox/models/features.py:280 +#: netbox/models/features.py:280 #, python-brace-format msgid "Unknown field name '{name}' in custom field data." msgstr "Nome di campo sconosciuto '{name}'nei dati dei campi personalizzati." -#: netbox/netbox/models/features.py:286 +#: netbox/models/features.py:286 #, python-brace-format msgid "Invalid value for custom field '{name}': {error}" msgstr "Valore non valido per il campo personalizzato '{name}»: {error}" -#: netbox/netbox/models/features.py:295 +#: netbox/models/features.py:295 #, python-brace-format msgid "Custom field '{name}' must have a unique value." msgstr "Campo personalizzato '{name}'deve avere un valore univoco." -#: netbox/netbox/models/features.py:302 +#: netbox/models/features.py:302 #, python-brace-format msgid "Missing required custom field '{name}'." msgstr "Campo personalizzato obbligatorio mancante '{name}»." -#: netbox/netbox/models/features.py:462 +#: netbox/models/features.py:462 msgid "Remote data source" msgstr "Fonte dati remota" -#: netbox/netbox/models/features.py:472 +#: netbox/models/features.py:472 msgid "data path" msgstr "percorso dati" -#: netbox/netbox/models/features.py:476 +#: netbox/models/features.py:476 msgid "Path to remote file (relative to data source root)" msgstr "Percorso del file remoto (relativo alla radice dell'origine dati)" -#: netbox/netbox/models/features.py:479 +#: netbox/models/features.py:479 msgid "auto sync enabled" msgstr "sincronizzazione automatica abilitata" -#: netbox/netbox/models/features.py:481 +#: netbox/models/features.py:481 msgid "Enable automatic synchronization of data when the data file is updated" msgstr "" "Abilita la sincronizzazione automatica dei dati quando il file di dati viene" " aggiornato" -#: netbox/netbox/models/features.py:484 +#: netbox/models/features.py:484 msgid "date synced" msgstr "data sincronizzata" -#: netbox/netbox/models/features.py:578 +#: netbox/models/features.py:578 #, python-brace-format msgid "{class_name} must implement a sync_data() method." msgstr "{class_name} deve implementare un metodo sync_data ()." -#: netbox/netbox/navigation/menu.py:11 +#: netbox/navigation/menu.py:11 msgid "Organization" msgstr "Organizzazione" -#: netbox/netbox/navigation/menu.py:19 +#: netbox/navigation/menu.py:19 msgid "Site Groups" msgstr "Gruppi del sito" -#: netbox/netbox/navigation/menu.py:27 +#: netbox/navigation/menu.py:27 msgid "Tenant Groups" msgstr "Gruppi di inquilini" -#: netbox/netbox/navigation/menu.py:34 +#: netbox/navigation/menu.py:34 msgid "Contact Groups" msgstr "Gruppi di contatti" -#: netbox/netbox/navigation/menu.py:35 -#: netbox/templates/tenancy/contactrole.html:8 +#: netbox/navigation/menu.py:35 templates/tenancy/contactrole.html:8 msgid "Contact Roles" msgstr "Ruoli di contatto" -#: netbox/netbox/navigation/menu.py:36 +#: netbox/navigation/menu.py:36 msgid "Contact Assignments" msgstr "Assegnazioni di contatto" -#: netbox/netbox/navigation/menu.py:50 +#: netbox/navigation/menu.py:50 msgid "Rack Roles" msgstr "Ruoli Rack" -#: netbox/netbox/navigation/menu.py:54 +#: netbox/navigation/menu.py:54 msgid "Elevations" msgstr "Elevazioni" -#: netbox/netbox/navigation/menu.py:60 netbox/netbox/navigation/menu.py:62 +#: netbox/navigation/menu.py:60 netbox/navigation/menu.py:62 msgid "Rack Types" msgstr "Tipi di rack" -#: netbox/netbox/navigation/menu.py:76 +#: netbox/navigation/menu.py:76 msgid "Modules" msgstr "Moduli" -#: netbox/netbox/navigation/menu.py:80 netbox/templates/dcim/device.html:160 -#: netbox/templates/dcim/virtualdevicecontext.html:8 +#: netbox/navigation/menu.py:80 templates/dcim/device.html:160 +#: templates/dcim/virtualdevicecontext.html:8 msgid "Virtual Device Contexts" msgstr "Contesti dei dispositivi virtuali" -#: netbox/netbox/navigation/menu.py:88 +#: netbox/navigation/menu.py:88 msgid "Manufacturers" msgstr "Produttori" -#: netbox/netbox/navigation/menu.py:92 +#: netbox/navigation/menu.py:92 msgid "Device Components" msgstr "Componenti del dispositivo" -#: netbox/netbox/navigation/menu.py:104 -#: netbox/templates/dcim/inventoryitemrole.html:8 +#: netbox/navigation/menu.py:104 templates/dcim/inventoryitemrole.html:8 msgid "Inventory Item Roles" msgstr "Ruoli degli articoli di inventario" -#: netbox/netbox/navigation/menu.py:111 netbox/netbox/navigation/menu.py:115 +#: netbox/navigation/menu.py:111 netbox/navigation/menu.py:115 msgid "Connections" msgstr "Connessioni" -#: netbox/netbox/navigation/menu.py:117 +#: netbox/navigation/menu.py:117 msgid "Cables" msgstr "Cavi" -#: netbox/netbox/navigation/menu.py:118 +#: netbox/navigation/menu.py:118 msgid "Wireless Links" msgstr "Collegamenti wireless" -#: netbox/netbox/navigation/menu.py:121 +#: netbox/navigation/menu.py:121 msgid "Interface Connections" msgstr "Connessioni di interfaccia" -#: netbox/netbox/navigation/menu.py:126 +#: netbox/navigation/menu.py:126 msgid "Console Connections" msgstr "Connessioni alla console" -#: netbox/netbox/navigation/menu.py:131 +#: netbox/navigation/menu.py:131 msgid "Power Connections" msgstr "Connessioni di alimentazione" -#: netbox/netbox/navigation/menu.py:147 +#: netbox/navigation/menu.py:147 msgid "Wireless LAN Groups" msgstr "Gruppi LAN wireless" -#: netbox/netbox/navigation/menu.py:168 +#: netbox/navigation/menu.py:168 msgid "Prefix & VLAN Roles" msgstr "Prefisso e ruoli VLAN" -#: netbox/netbox/navigation/menu.py:174 +#: netbox/navigation/menu.py:174 msgid "ASN Ranges" msgstr "Intervalli ASN" -#: netbox/netbox/navigation/menu.py:196 +#: netbox/navigation/menu.py:196 msgid "VLAN Groups" msgstr "Gruppi VLAN" -#: netbox/netbox/navigation/menu.py:203 +#: netbox/navigation/menu.py:203 msgid "Service Templates" msgstr "Modelli di servizio" -#: netbox/netbox/navigation/menu.py:204 netbox/templates/dcim/device.html:302 -#: netbox/templates/ipam/ipaddress.html:118 -#: netbox/templates/virtualization/virtualmachine.html:154 +#: netbox/navigation/menu.py:204 templates/dcim/device.html:302 +#: templates/ipam/ipaddress.html:118 +#: templates/virtualization/virtualmachine.html:154 msgid "Services" msgstr "Servizi" -#: netbox/netbox/navigation/menu.py:211 +#: netbox/navigation/menu.py:211 msgid "VPN" msgstr "VPN" -#: netbox/netbox/navigation/menu.py:215 netbox/netbox/navigation/menu.py:217 -#: netbox/vpn/tables/tunnels.py:24 +#: netbox/navigation/menu.py:215 netbox/navigation/menu.py:217 +#: vpn/tables/tunnels.py:24 msgid "Tunnels" msgstr "Tunnel" -#: netbox/netbox/navigation/menu.py:218 -#: netbox/templates/vpn/tunnelgroup.html:8 +#: netbox/navigation/menu.py:218 templates/vpn/tunnelgroup.html:8 msgid "Tunnel Groups" msgstr "Gruppi di tunnel" -#: netbox/netbox/navigation/menu.py:219 +#: netbox/navigation/menu.py:219 msgid "Tunnel Terminations" msgstr "Terminazioni dei tunnel" -#: netbox/netbox/navigation/menu.py:223 netbox/netbox/navigation/menu.py:225 -#: netbox/vpn/models/l2vpn.py:64 +#: netbox/navigation/menu.py:223 netbox/navigation/menu.py:225 +#: vpn/models/l2vpn.py:64 msgid "L2VPNs" msgstr "VPN L2" -#: netbox/netbox/navigation/menu.py:226 netbox/templates/vpn/l2vpn.html:56 -#: netbox/templates/vpn/tunnel.html:72 netbox/vpn/tables/tunnels.py:58 +#: netbox/navigation/menu.py:226 templates/vpn/l2vpn.html:56 +#: templates/vpn/tunnel.html:72 vpn/tables/tunnels.py:58 msgid "Terminations" msgstr "Terminazioni" -#: netbox/netbox/navigation/menu.py:232 +#: netbox/navigation/menu.py:232 msgid "IKE Proposals" msgstr "Proposte IKE" -#: netbox/netbox/navigation/menu.py:233 -#: netbox/templates/vpn/ikeproposal.html:41 +#: netbox/navigation/menu.py:233 templates/vpn/ikeproposal.html:41 msgid "IKE Policies" msgstr "Politiche IKE" -#: netbox/netbox/navigation/menu.py:234 +#: netbox/navigation/menu.py:234 msgid "IPSec Proposals" msgstr "Proposte IPSec" -#: netbox/netbox/navigation/menu.py:235 -#: netbox/templates/vpn/ipsecproposal.html:37 +#: netbox/navigation/menu.py:235 templates/vpn/ipsecproposal.html:37 msgid "IPSec Policies" msgstr "Criteri IPSec" -#: netbox/netbox/navigation/menu.py:236 netbox/templates/vpn/ikepolicy.html:38 -#: netbox/templates/vpn/ipsecpolicy.html:25 +#: netbox/navigation/menu.py:236 templates/vpn/ikepolicy.html:38 +#: templates/vpn/ipsecpolicy.html:25 msgid "IPSec Profiles" msgstr "Profili IPSec" -#: netbox/netbox/navigation/menu.py:243 -#: netbox/templates/dcim/device_edit.html:78 +#: netbox/navigation/menu.py:243 templates/dcim/device_edit.html:78 msgid "Virtualization" msgstr "Virtualizzazione" -#: netbox/netbox/navigation/menu.py:251 -#: netbox/templates/virtualization/virtualmachine.html:174 -#: netbox/templates/virtualization/virtualmachine/base.html:32 -#: netbox/templates/virtualization/virtualmachine_list.html:21 -#: netbox/virtualization/tables/virtualmachines.py:104 -#: netbox/virtualization/views.py:388 +#: netbox/navigation/menu.py:251 +#: templates/virtualization/virtualmachine.html:174 +#: templates/virtualization/virtualmachine/base.html:32 +#: templates/virtualization/virtualmachine_list.html:21 +#: virtualization/tables/virtualmachines.py:104 virtualization/views.py:388 msgid "Virtual Disks" msgstr "Dischi virtuali" -#: netbox/netbox/navigation/menu.py:258 +#: netbox/navigation/menu.py:258 msgid "Cluster Types" msgstr "Tipi di cluster" -#: netbox/netbox/navigation/menu.py:259 +#: netbox/navigation/menu.py:259 msgid "Cluster Groups" msgstr "Gruppi di cluster" -#: netbox/netbox/navigation/menu.py:273 +#: netbox/navigation/menu.py:273 msgid "Circuit Types" msgstr "Tipi di circuiti" -#: netbox/netbox/navigation/menu.py:274 +#: netbox/navigation/menu.py:274 msgid "Circuit Groups" msgstr "Gruppi di circuiti" -#: netbox/netbox/navigation/menu.py:275 -#: netbox/templates/circuits/circuit.html:66 +#: netbox/navigation/menu.py:275 templates/circuits/circuit.html:66 msgid "Group Assignments" msgstr "Assegnazioni di gruppo" -#: netbox/netbox/navigation/menu.py:276 +#: netbox/navigation/menu.py:276 msgid "Circuit Terminations" msgstr "Terminazioni del circuito" -#: netbox/netbox/navigation/menu.py:280 netbox/netbox/navigation/menu.py:282 +#: netbox/navigation/menu.py:280 netbox/navigation/menu.py:282 msgid "Providers" msgstr "Fornitori" -#: netbox/netbox/navigation/menu.py:283 -#: netbox/templates/circuits/provider.html:51 +#: netbox/navigation/menu.py:283 templates/circuits/provider.html:51 msgid "Provider Accounts" msgstr "Account dei fornitori" -#: netbox/netbox/navigation/menu.py:284 +#: netbox/navigation/menu.py:284 msgid "Provider Networks" msgstr "Reti di fornitori" -#: netbox/netbox/navigation/menu.py:298 +#: netbox/navigation/menu.py:298 msgid "Power Panels" msgstr "Pannelli di alimentazione" -#: netbox/netbox/navigation/menu.py:309 +#: netbox/navigation/menu.py:309 msgid "Configurations" msgstr "Configurazioni" -#: netbox/netbox/navigation/menu.py:311 +#: netbox/navigation/menu.py:311 msgid "Config Contexts" msgstr "Contesti di configurazione" -#: netbox/netbox/navigation/menu.py:312 +#: netbox/navigation/menu.py:312 msgid "Config Templates" msgstr "Modelli di configurazione" -#: netbox/netbox/navigation/menu.py:319 netbox/netbox/navigation/menu.py:323 +#: netbox/navigation/menu.py:319 netbox/navigation/menu.py:323 msgid "Customization" msgstr "Personalizzazione" -#: netbox/netbox/navigation/menu.py:325 -#: netbox/templates/dcim/device_edit.html:103 -#: netbox/templates/dcim/htmx/cable_edit.html:81 -#: netbox/templates/dcim/virtualchassis_add.html:31 -#: netbox/templates/dcim/virtualchassis_edit.html:40 -#: netbox/templates/generic/bulk_edit.html:76 -#: netbox/templates/htmx/form.html:19 netbox/templates/inc/filter_list.html:30 -#: netbox/templates/inc/panels/custom_fields.html:7 -#: netbox/templates/ipam/ipaddress_bulk_add.html:35 -#: netbox/templates/ipam/vlan_edit.html:59 +#: netbox/navigation/menu.py:325 templates/dcim/device_edit.html:103 +#: templates/dcim/htmx/cable_edit.html:81 +#: templates/dcim/virtualchassis_add.html:31 +#: templates/dcim/virtualchassis_edit.html:40 +#: templates/generic/bulk_edit.html:76 templates/htmx/form.html:19 +#: templates/inc/filter_list.html:30 templates/inc/panels/custom_fields.html:7 +#: templates/ipam/ipaddress_bulk_add.html:35 templates/ipam/vlan_edit.html:59 msgid "Custom Fields" msgstr "Campi personalizzati" -#: netbox/netbox/navigation/menu.py:326 +#: netbox/navigation/menu.py:326 msgid "Custom Field Choices" msgstr "Scelte di campo personalizzate" -#: netbox/netbox/navigation/menu.py:327 +#: netbox/navigation/menu.py:327 msgid "Custom Links" msgstr "Link personalizzati" -#: netbox/netbox/navigation/menu.py:328 +#: netbox/navigation/menu.py:328 msgid "Export Templates" msgstr "Modelli di esportazione" -#: netbox/netbox/navigation/menu.py:329 +#: netbox/navigation/menu.py:329 msgid "Saved Filters" msgstr "Filtri salvati" -#: netbox/netbox/navigation/menu.py:331 +#: netbox/navigation/menu.py:331 msgid "Image Attachments" msgstr "Allegati di immagini" -#: netbox/netbox/navigation/menu.py:349 +#: netbox/navigation/menu.py:349 msgid "Operations" msgstr "Operazioni" -#: netbox/netbox/navigation/menu.py:353 +#: netbox/navigation/menu.py:353 msgid "Integrations" msgstr "Integrazioni" -#: netbox/netbox/navigation/menu.py:355 +#: netbox/navigation/menu.py:355 msgid "Data Sources" msgstr "Fonti di dati" -#: netbox/netbox/navigation/menu.py:356 +#: netbox/navigation/menu.py:356 msgid "Event Rules" msgstr "Regole dell'evento" -#: netbox/netbox/navigation/menu.py:357 +#: netbox/navigation/menu.py:357 msgid "Webhooks" msgstr "Webhook" -#: netbox/netbox/navigation/menu.py:361 netbox/netbox/navigation/menu.py:365 -#: netbox/netbox/views/generic/feature_views.py:153 -#: netbox/templates/extras/report/base.html:37 -#: netbox/templates/extras/script/base.html:36 +#: netbox/navigation/menu.py:361 netbox/navigation/menu.py:365 +#: netbox/views/generic/feature_views.py:153 +#: templates/extras/report/base.html:37 templates/extras/script/base.html:36 msgid "Jobs" msgstr "Offerte di lavoro" -#: netbox/netbox/navigation/menu.py:371 +#: netbox/navigation/menu.py:371 msgid "Logging" msgstr "Registrazione" -#: netbox/netbox/navigation/menu.py:373 +#: netbox/navigation/menu.py:373 msgid "Notification Groups" msgstr "Gruppi di notifiche" -#: netbox/netbox/navigation/menu.py:374 +#: netbox/navigation/menu.py:374 msgid "Journal Entries" msgstr "Voci di diario" -#: netbox/netbox/navigation/menu.py:375 -#: netbox/templates/core/objectchange.html:9 -#: netbox/templates/core/objectchange_list.html:4 +#: netbox/navigation/menu.py:375 templates/core/objectchange.html:9 +#: templates/core/objectchange_list.html:4 msgid "Change Log" msgstr "Registro delle modifiche" -#: netbox/netbox/navigation/menu.py:382 netbox/templates/inc/user_menu.html:29 +#: netbox/navigation/menu.py:382 templates/inc/user_menu.html:29 msgid "Admin" msgstr "Amministratore" -#: netbox/netbox/navigation/menu.py:430 netbox/templates/account/base.html:27 -#: netbox/templates/inc/user_menu.html:57 +#: netbox/navigation/menu.py:430 templates/account/base.html:27 +#: templates/inc/user_menu.html:57 msgid "API Tokens" msgstr "Token API" -#: netbox/netbox/navigation/menu.py:437 netbox/users/forms/model_forms.py:187 -#: netbox/users/forms/model_forms.py:195 netbox/users/forms/model_forms.py:242 -#: netbox/users/forms/model_forms.py:249 +#: netbox/navigation/menu.py:437 users/forms/model_forms.py:187 +#: users/forms/model_forms.py:195 users/forms/model_forms.py:242 +#: users/forms/model_forms.py:249 msgid "Permissions" msgstr "Autorizzazioni" -#: netbox/netbox/navigation/menu.py:445 netbox/netbox/navigation/menu.py:449 -#: netbox/templates/core/system.html:7 +#: netbox/navigation/menu.py:445 netbox/navigation/menu.py:449 +#: templates/core/system.html:7 msgid "System" msgstr "Sistema" -#: netbox/netbox/navigation/menu.py:454 netbox/netbox/navigation/menu.py:502 -#: netbox/templates/500.html:35 netbox/templates/account/preferences.html:22 -#: netbox/templates/core/plugin.html:12 -#: netbox/templates/core/plugin_list.html:7 -#: netbox/templates/core/plugin_list.html:12 +#: netbox/navigation/menu.py:454 netbox/navigation/menu.py:502 +#: templates/500.html:35 templates/account/preferences.html:22 +#: templates/core/plugin.html:13 templates/core/plugin_list.html:7 +#: templates/core/plugin_list.html:12 msgid "Plugins" msgstr "Plugin" -#: netbox/netbox/navigation/menu.py:459 +#: netbox/navigation/menu.py:459 msgid "Configuration History" msgstr "Cronologia della configurazione" -#: netbox/netbox/navigation/menu.py:465 netbox/templates/core/rq_task.html:8 -#: netbox/templates/core/rq_task_list.html:22 +#: netbox/navigation/menu.py:465 templates/core/rq_task.html:8 +#: templates/core/rq_task_list.html:22 msgid "Background Tasks" msgstr "Attività in background" -#: netbox/netbox/plugins/navigation.py:47 -#: netbox/netbox/plugins/navigation.py:69 +#: netbox/plugins/navigation.py:47 netbox/plugins/navigation.py:69 msgid "Permissions must be passed as a tuple or list." msgstr "Le autorizzazioni devono essere passate come tupla o elenco." -#: netbox/netbox/plugins/navigation.py:51 +#: netbox/plugins/navigation.py:51 msgid "Buttons must be passed as a tuple or list." msgstr "I pulsanti devono essere passati come tupla o lista." -#: netbox/netbox/plugins/navigation.py:73 +#: netbox/plugins/navigation.py:73 msgid "Button color must be a choice within ButtonColorChoices." msgstr "" "Il colore del pulsante deve essere una scelta all'interno di " "ButtonColorChoices." -#: netbox/netbox/plugins/registration.py:25 +#: netbox/plugins/registration.py:25 #, python-brace-format msgid "" "PluginTemplateExtension class {template_extension} was passed as an " @@ -11340,7 +10710,7 @@ msgstr "" "classe PluginTemplateExtension {template_extension} è stato approvato come " "istanza!" -#: netbox/netbox/plugins/registration.py:31 +#: netbox/plugins/registration.py:31 #, python-brace-format msgid "" "{template_extension} is not a subclass of " @@ -11349,197 +10719,196 @@ msgstr "" "{template_extension} non è una sottoclasse di " "Netbox.plugins.PluginTemplateExtension!" -#: netbox/netbox/plugins/registration.py:51 +#: netbox/plugins/registration.py:51 #, python-brace-format msgid "{item} must be an instance of netbox.plugins.PluginMenuItem" msgstr "{item} deve essere un'istanza di Netbox.Plugins.PluginMenuItem" -#: netbox/netbox/plugins/registration.py:62 +#: netbox/plugins/registration.py:62 #, python-brace-format msgid "{menu_link} must be an instance of netbox.plugins.PluginMenuItem" msgstr "{menu_link} deve essere un'istanza di Netbox.Plugins.PluginMenuItem" -#: netbox/netbox/plugins/registration.py:67 +#: netbox/plugins/registration.py:67 #, python-brace-format msgid "{button} must be an instance of netbox.plugins.PluginMenuButton" msgstr "{button} deve essere un'istanza di Netbox.plugins.PluginMenuButton" -#: netbox/netbox/plugins/templates.py:37 +#: netbox/plugins/templates.py:37 msgid "extra_context must be a dictionary" msgstr "extra_context deve essere un dizionario" -#: netbox/netbox/preferences.py:19 +#: netbox/preferences.py:19 msgid "HTMX Navigation" msgstr "Navigazione HTMX" -#: netbox/netbox/preferences.py:24 +#: netbox/preferences.py:24 msgid "Enable dynamic UI navigation" msgstr "Abilita la navigazione dinamica dell'interfaccia utente" -#: netbox/netbox/preferences.py:26 +#: netbox/preferences.py:26 msgid "Experimental feature" msgstr "Funzione sperimentale" -#: netbox/netbox/preferences.py:29 +#: netbox/preferences.py:29 msgid "Language" msgstr "Lingua" -#: netbox/netbox/preferences.py:34 +#: netbox/preferences.py:34 msgid "Forces UI translation to the specified language" msgstr "Forza la traduzione dell'interfaccia utente nella lingua specificata" -#: netbox/netbox/preferences.py:36 +#: netbox/preferences.py:36 msgid "Support for translation has been disabled locally" msgstr "Il supporto per la traduzione è stato disabilitato localmente" -#: netbox/netbox/preferences.py:42 +#: netbox/preferences.py:42 msgid "Page length" msgstr "Lunghezza della pagina" -#: netbox/netbox/preferences.py:44 +#: netbox/preferences.py:44 msgid "The default number of objects to display per page" msgstr "Il numero predefinito di oggetti da visualizzare per pagina" -#: netbox/netbox/preferences.py:48 +#: netbox/preferences.py:48 msgid "Paginator placement" msgstr "Posizionamento dell'impaginatore" -#: netbox/netbox/preferences.py:50 +#: netbox/preferences.py:50 msgid "Bottom" msgstr "Parte inferiore" -#: netbox/netbox/preferences.py:51 +#: netbox/preferences.py:51 msgid "Top" msgstr "Top" -#: netbox/netbox/preferences.py:52 +#: netbox/preferences.py:52 msgid "Both" msgstr "Entrambi" -#: netbox/netbox/preferences.py:55 +#: netbox/preferences.py:55 msgid "Where the paginator controls will be displayed relative to a table" msgstr "" "Dove verranno visualizzati i controlli dell'impaginatore rispetto a una " "tabella" -#: netbox/netbox/preferences.py:60 +#: netbox/preferences.py:60 msgid "Data format" msgstr "Formato dati" -#: netbox/netbox/preferences.py:65 +#: netbox/preferences.py:65 msgid "The preferred syntax for displaying generic data within the UI" msgstr "" "La sintassi preferita per la visualizzazione di dati generici all'interno " "dell'interfaccia utente" -#: netbox/netbox/registry.py:14 +#: netbox/registry.py:14 #, python-brace-format msgid "Invalid store: {key}" msgstr "Negozio non valido: {key}" -#: netbox/netbox/registry.py:17 +#: netbox/registry.py:17 msgid "Cannot add stores to registry after initialization" msgstr "Impossibile aggiungere negozi al registro dopo l'inizializzazione" -#: netbox/netbox/registry.py:20 +#: netbox/registry.py:20 msgid "Cannot delete stores from registry" msgstr "Impossibile eliminare i negozi dal registro" -#: netbox/netbox/settings.py:760 +#: netbox/settings.py:760 msgid "Czech" msgstr "cechi" -#: netbox/netbox/settings.py:761 +#: netbox/settings.py:761 msgid "Danish" msgstr "danese" -#: netbox/netbox/settings.py:762 +#: netbox/settings.py:762 msgid "German" msgstr "Tedesco" -#: netbox/netbox/settings.py:763 +#: netbox/settings.py:763 msgid "English" msgstr "Inglese" -#: netbox/netbox/settings.py:764 +#: netbox/settings.py:764 msgid "Spanish" msgstr "spagnolo" -#: netbox/netbox/settings.py:765 +#: netbox/settings.py:765 msgid "French" msgstr "Francese" -#: netbox/netbox/settings.py:766 +#: netbox/settings.py:766 msgid "Italian" msgstr "Italiano" -#: netbox/netbox/settings.py:767 +#: netbox/settings.py:767 msgid "Japanese" msgstr "Giapponese" -#: netbox/netbox/settings.py:768 +#: netbox/settings.py:768 msgid "Dutch" msgstr "Olandese" -#: netbox/netbox/settings.py:769 +#: netbox/settings.py:769 msgid "Polish" msgstr "Polacco" -#: netbox/netbox/settings.py:770 +#: netbox/settings.py:770 msgid "Portuguese" msgstr "portoghese" -#: netbox/netbox/settings.py:771 +#: netbox/settings.py:771 msgid "Russian" msgstr "Russo" -#: netbox/netbox/settings.py:772 +#: netbox/settings.py:772 msgid "Turkish" msgstr "turco" -#: netbox/netbox/settings.py:773 +#: netbox/settings.py:773 msgid "Ukrainian" msgstr "ucraino" -#: netbox/netbox/settings.py:774 +#: netbox/settings.py:774 msgid "Chinese" msgstr "Cinese" -#: netbox/netbox/tables/columns.py:176 +#: netbox/tables/columns.py:176 msgid "Select all" msgstr "Seleziona tutto" -#: netbox/netbox/tables/columns.py:189 +#: netbox/tables/columns.py:189 msgid "Toggle all" msgstr "Attiva tutto" -#: netbox/netbox/tables/columns.py:300 +#: netbox/tables/columns.py:300 msgid "Toggle Dropdown" msgstr "Attiva il menu a discesa" -#: netbox/netbox/tables/columns.py:572 netbox/templates/core/job.html:53 +#: netbox/tables/columns.py:572 templates/core/job.html:53 msgid "Error" msgstr "Errore" -#: netbox/netbox/tables/tables.py:58 +#: netbox/tables/tables.py:58 #, python-brace-format msgid "No {model_name} found" msgstr "No {model_name} trovato" -#: netbox/netbox/tables/tables.py:249 -#: netbox/templates/generic/bulk_import.html:117 +#: netbox/tables/tables.py:249 templates/generic/bulk_import.html:117 msgid "Field" msgstr "Campo" -#: netbox/netbox/tables/tables.py:252 +#: netbox/tables/tables.py:252 msgid "Value" msgstr "Valore" -#: netbox/netbox/tests/dummy_plugin/navigation.py:29 +#: netbox/tests/dummy_plugin/navigation.py:29 msgid "Dummy Plugin" msgstr "Plugin fittizio" -#: netbox/netbox/views/generic/bulk_views.py:114 +#: netbox/views/generic/bulk_views.py:114 #, python-brace-format msgid "" "There was an error rendering the selected export template ({template}): " @@ -11548,56 +10917,56 @@ msgstr "" "Si è verificato un errore durante il rendering del modello di esportazione " "selezionato ({template}): {error}" -#: netbox/netbox/views/generic/bulk_views.py:416 +#: netbox/views/generic/bulk_views.py:416 #, python-brace-format msgid "Row {i}: Object with ID {id} does not exist" msgstr "Fila {i}: Oggetto con ID {id} non esiste" -#: netbox/netbox/views/generic/bulk_views.py:699 -#: netbox/netbox/views/generic/bulk_views.py:897 -#: netbox/netbox/views/generic/bulk_views.py:945 +#: netbox/views/generic/bulk_views.py:702 +#: netbox/views/generic/bulk_views.py:900 +#: netbox/views/generic/bulk_views.py:948 #, python-brace-format msgid "No {object_type} were selected." msgstr "No {object_type} sono stati selezionati." -#: netbox/netbox/views/generic/bulk_views.py:779 +#: netbox/views/generic/bulk_views.py:782 #, python-brace-format msgid "Renamed {count} {object_type}" msgstr "Rinominato {count} {object_type}" -#: netbox/netbox/views/generic/bulk_views.py:875 +#: netbox/views/generic/bulk_views.py:878 #, python-brace-format msgid "Deleted {count} {object_type}" msgstr "Eliminato {count} {object_type}" -#: netbox/netbox/views/generic/feature_views.py:40 +#: netbox/views/generic/feature_views.py:40 msgid "Changelog" msgstr "Registro delle modifiche" -#: netbox/netbox/views/generic/feature_views.py:93 +#: netbox/views/generic/feature_views.py:93 msgid "Journal" msgstr "rivista" -#: netbox/netbox/views/generic/feature_views.py:207 +#: netbox/views/generic/feature_views.py:207 msgid "Unable to synchronize data: No data file set." msgstr "Impossibile sincronizzare i dati: nessun file di dati impostato." -#: netbox/netbox/views/generic/feature_views.py:211 +#: netbox/views/generic/feature_views.py:211 #, python-brace-format msgid "Synchronized data for {object_type} {object}." msgstr "Dati sincronizzati per {object_type} {object}." -#: netbox/netbox/views/generic/feature_views.py:236 +#: netbox/views/generic/feature_views.py:236 #, python-brace-format msgid "Synced {count} {object_type}" msgstr "Sincronizzato {count} {object_type}" -#: netbox/netbox/views/generic/object_views.py:108 +#: netbox/views/generic/object_views.py:108 #, python-brace-format msgid "{class_name} must implement get_children()" msgstr "{class_name} deve implementare get_children ()" -#: netbox/netbox/views/misc.py:44 +#: netbox/views/misc.py:44 msgid "" "There was an error loading the dashboard configuration. A default dashboard " "is in use." @@ -11605,750 +10974,705 @@ msgstr "" "Si è verificato un errore durante il caricamento della configurazione del " "dashboard. È in uso un pannello di controllo predefinito." -#: netbox/templates/403.html:4 +#: templates/403.html:4 msgid "Access Denied" msgstr "Accesso negato" -#: netbox/templates/403.html:9 +#: templates/403.html:9 msgid "You do not have permission to access this page" msgstr "Non sei autorizzato ad accedere a questa pagina" -#: netbox/templates/404.html:4 +#: templates/404.html:4 msgid "Page Not Found" msgstr "Pagina non trovata" -#: netbox/templates/404.html:9 +#: templates/404.html:9 msgid "The requested page does not exist" msgstr "La pagina richiesta non esiste" -#: netbox/templates/500.html:7 netbox/templates/500.html:18 +#: templates/500.html:7 templates/500.html:18 msgid "Server Error" msgstr "Errore del server" -#: netbox/templates/500.html:23 +#: templates/500.html:23 msgid "There was a problem with your request. Please contact an administrator" msgstr "" "C'è stato un problema con la tua richiesta. Contatta un amministratore" -#: netbox/templates/500.html:28 +#: templates/500.html:28 msgid "The complete exception is provided below" msgstr "L'eccezione completa è riportata di seguito" -#: netbox/templates/500.html:33 netbox/templates/core/system.html:40 +#: templates/500.html:33 templates/core/system.html:40 msgid "Python version" msgstr "Versione Python" -#: netbox/templates/500.html:34 +#: templates/500.html:34 msgid "NetBox version" msgstr "Versione NetBox" -#: netbox/templates/500.html:36 +#: templates/500.html:36 msgid "None installed" msgstr "Nessuno installato" -#: netbox/templates/500.html:39 +#: templates/500.html:39 msgid "If further assistance is required, please post to the" msgstr "Se è necessaria ulteriore assistenza, invia un messaggio al" -#: netbox/templates/500.html:39 +#: templates/500.html:39 msgid "NetBox discussion forum" msgstr "Forum di discussione NetBox" -#: netbox/templates/500.html:39 +#: templates/500.html:39 msgid "on GitHub" msgstr "su GitHub" -#: netbox/templates/500.html:42 netbox/templates/base/40x.html:17 +#: templates/500.html:42 templates/base/40x.html:17 msgid "Home Page" msgstr "Pagina iniziale" -#: netbox/templates/account/base.html:7 netbox/templates/inc/user_menu.html:45 -#: netbox/vpn/forms/bulk_edit.py:255 netbox/vpn/forms/filtersets.py:189 -#: netbox/vpn/forms/model_forms.py:379 +#: templates/account/base.html:7 templates/inc/user_menu.html:45 +#: vpn/forms/bulk_edit.py:255 vpn/forms/filtersets.py:189 +#: vpn/forms/model_forms.py:379 msgid "Profile" msgstr "Profilo" -#: netbox/templates/account/base.html:13 -#: netbox/templates/account/notifications.html:7 -#: netbox/templates/inc/user_menu.html:15 +#: templates/account/base.html:13 templates/account/notifications.html:7 +#: templates/inc/user_menu.html:15 msgid "Notifications" msgstr "Notifiche" -#: netbox/templates/account/base.html:16 -#: netbox/templates/account/subscriptions.html:7 -#: netbox/templates/inc/user_menu.html:51 +#: templates/account/base.html:16 templates/account/subscriptions.html:7 +#: templates/inc/user_menu.html:51 msgid "Subscriptions" msgstr "Abbonamenti" -#: netbox/templates/account/base.html:19 -#: netbox/templates/inc/user_menu.html:54 +#: templates/account/base.html:19 templates/inc/user_menu.html:54 msgid "Preferences" msgstr "Preferenze" -#: netbox/templates/account/password.html:5 +#: templates/account/password.html:5 msgid "Change Password" msgstr "Cambia password" -#: netbox/templates/account/password.html:19 -#: netbox/templates/account/preferences.html:77 -#: netbox/templates/core/configrevision_restore.html:63 -#: netbox/templates/dcim/devicebay_populate.html:34 -#: netbox/templates/dcim/virtualchassis_add_member.html:26 -#: netbox/templates/dcim/virtualchassis_edit.html:103 -#: netbox/templates/extras/object_journal.html:26 -#: netbox/templates/extras/script.html:38 -#: netbox/templates/generic/bulk_add_component.html:67 -#: netbox/templates/generic/bulk_delete.html:65 -#: netbox/templates/generic/bulk_edit.html:106 -#: netbox/templates/generic/bulk_import.html:56 -#: netbox/templates/generic/bulk_import.html:78 -#: netbox/templates/generic/bulk_import.html:100 -#: netbox/templates/generic/bulk_remove.html:62 -#: netbox/templates/generic/bulk_rename.html:63 -#: netbox/templates/generic/confirmation_form.html:19 -#: netbox/templates/generic/object_edit.html:72 -#: netbox/templates/htmx/delete_form.html:53 -#: netbox/templates/htmx/delete_form.html:55 -#: netbox/templates/ipam/ipaddress_assign.html:28 -#: netbox/templates/virtualization/cluster_add_devices.html:30 +#: templates/account/password.html:19 templates/account/preferences.html:77 +#: templates/core/configrevision_restore.html:63 +#: templates/dcim/devicebay_populate.html:34 +#: templates/dcim/virtualchassis_add_member.html:26 +#: templates/dcim/virtualchassis_edit.html:103 +#: templates/extras/object_journal.html:26 templates/extras/script.html:38 +#: templates/generic/bulk_add_component.html:67 +#: templates/generic/bulk_delete.html:65 templates/generic/bulk_edit.html:106 +#: templates/generic/bulk_import.html:56 templates/generic/bulk_import.html:78 +#: templates/generic/bulk_import.html:100 +#: templates/generic/bulk_remove.html:62 templates/generic/bulk_rename.html:63 +#: templates/generic/confirmation_form.html:19 +#: templates/generic/object_edit.html:72 templates/htmx/delete_form.html:53 +#: templates/htmx/delete_form.html:55 templates/ipam/ipaddress_assign.html:28 +#: templates/virtualization/cluster_add_devices.html:30 msgid "Cancel" msgstr "Annulla" -#: netbox/templates/account/password.html:20 -#: netbox/templates/account/preferences.html:78 -#: netbox/templates/dcim/devicebay_populate.html:35 -#: netbox/templates/dcim/virtualchassis_add_member.html:28 -#: netbox/templates/dcim/virtualchassis_edit.html:105 -#: netbox/templates/extras/dashboard/widget_add.html:26 -#: netbox/templates/extras/dashboard/widget_config.html:19 -#: netbox/templates/extras/object_journal.html:27 -#: netbox/templates/generic/object_edit.html:75 -#: netbox/utilities/templates/helpers/applied_filters.html:16 -#: netbox/utilities/templates/helpers/table_config_form.html:40 +#: templates/account/password.html:20 templates/account/preferences.html:78 +#: templates/dcim/devicebay_populate.html:35 +#: templates/dcim/virtualchassis_add_member.html:28 +#: templates/dcim/virtualchassis_edit.html:105 +#: templates/extras/dashboard/widget_add.html:26 +#: templates/extras/dashboard/widget_config.html:19 +#: templates/extras/object_journal.html:27 +#: templates/generic/object_edit.html:75 +#: utilities/templates/helpers/applied_filters.html:16 +#: utilities/templates/helpers/table_config_form.html:40 msgid "Save" msgstr "Salva" -#: netbox/templates/account/preferences.html:34 +#: templates/account/preferences.html:34 msgid "Table Configurations" msgstr "Configurazioni della tabella" -#: netbox/templates/account/preferences.html:39 +#: templates/account/preferences.html:39 msgid "Clear table preferences" msgstr "Cancella le preferenze della tabella" -#: netbox/templates/account/preferences.html:47 +#: templates/account/preferences.html:47 msgid "Toggle All" msgstr "Attiva tutto" -#: netbox/templates/account/preferences.html:49 +#: templates/account/preferences.html:49 msgid "Table" msgstr "Tavolo" -#: netbox/templates/account/preferences.html:50 +#: templates/account/preferences.html:50 msgid "Ordering" msgstr "Ordinazione" -#: netbox/templates/account/preferences.html:51 +#: templates/account/preferences.html:51 msgid "Columns" msgstr "Colonne" -#: netbox/templates/account/preferences.html:71 -#: netbox/templates/dcim/cable_trace.html:113 -#: netbox/templates/extras/object_configcontext.html:43 +#: templates/account/preferences.html:71 templates/dcim/cable_trace.html:113 +#: templates/extras/object_configcontext.html:43 msgid "None found" msgstr "Nessuno trovato" -#: netbox/templates/account/profile.html:6 +#: templates/account/profile.html:6 msgid "User Profile" msgstr "Profilo utente" -#: netbox/templates/account/profile.html:12 +#: templates/account/profile.html:12 msgid "Account Details" msgstr "Dettagli dell'account" -#: netbox/templates/account/profile.html:29 -#: netbox/templates/tenancy/contact.html:43 -#: netbox/templates/users/user.html:25 netbox/tenancy/forms/bulk_edit.py:109 +#: templates/account/profile.html:29 templates/tenancy/contact.html:43 +#: templates/users/user.html:25 tenancy/forms/bulk_edit.py:109 msgid "Email" msgstr "E-mail" -#: netbox/templates/account/profile.html:33 -#: netbox/templates/users/user.html:29 +#: templates/account/profile.html:33 templates/users/user.html:29 msgid "Account Created" msgstr "Account creato" -#: netbox/templates/account/profile.html:37 -#: netbox/templates/users/user.html:33 +#: templates/account/profile.html:37 templates/users/user.html:33 msgid "Last Login" msgstr "Ultimo accesso" -#: netbox/templates/account/profile.html:41 -#: netbox/templates/users/user.html:45 +#: templates/account/profile.html:41 templates/users/user.html:45 msgid "Superuser" msgstr "Superutente" -#: netbox/templates/account/profile.html:45 -#: netbox/templates/inc/user_menu.html:31 netbox/templates/users/user.html:41 +#: templates/account/profile.html:45 templates/inc/user_menu.html:31 +#: templates/users/user.html:41 msgid "Staff" msgstr "Personale" -#: netbox/templates/account/profile.html:53 -#: netbox/templates/users/objectpermission.html:82 -#: netbox/templates/users/user.html:53 +#: templates/account/profile.html:53 templates/users/objectpermission.html:82 +#: templates/users/user.html:53 msgid "Assigned Groups" msgstr "Gruppi assegnati" -#: netbox/templates/account/profile.html:58 -#: netbox/templates/circuits/circuit_terminations_swap.html:18 -#: netbox/templates/circuits/circuit_terminations_swap.html:26 -#: netbox/templates/circuits/circuittermination.html:34 -#: netbox/templates/circuits/inc/circuit_termination.html:68 -#: netbox/templates/core/objectchange.html:124 -#: netbox/templates/core/objectchange.html:142 -#: netbox/templates/dcim/devicebay.html:59 -#: netbox/templates/dcim/inc/panels/inventory_items.html:45 -#: netbox/templates/dcim/interface.html:296 -#: netbox/templates/dcim/modulebay.html:80 -#: netbox/templates/extras/configcontext.html:70 -#: netbox/templates/extras/eventrule.html:66 -#: netbox/templates/extras/htmx/script_result.html:60 -#: netbox/templates/extras/webhook.html:65 -#: netbox/templates/extras/webhook.html:75 -#: netbox/templates/inc/panel_table.html:13 -#: netbox/templates/inc/panels/comments.html:10 -#: netbox/templates/ipam/inc/panels/fhrp_groups.html:56 -#: netbox/templates/users/group.html:34 netbox/templates/users/group.html:44 -#: netbox/templates/users/objectpermission.html:77 -#: netbox/templates/users/objectpermission.html:87 -#: netbox/templates/users/user.html:58 netbox/templates/users/user.html:68 +#: templates/account/profile.html:58 +#: templates/circuits/circuit_terminations_swap.html:18 +#: templates/circuits/circuit_terminations_swap.html:26 +#: templates/circuits/circuittermination.html:34 +#: templates/circuits/inc/circuit_termination.html:68 +#: templates/core/objectchange.html:124 templates/core/objectchange.html:142 +#: templates/dcim/devicebay.html:59 +#: templates/dcim/inc/panels/inventory_items.html:45 +#: templates/dcim/interface.html:296 templates/dcim/modulebay.html:80 +#: templates/extras/configcontext.html:70 templates/extras/eventrule.html:66 +#: templates/extras/htmx/script_result.html:60 +#: templates/extras/webhook.html:65 templates/extras/webhook.html:75 +#: templates/inc/panel_table.html:13 templates/inc/panels/comments.html:10 +#: templates/ipam/inc/panels/fhrp_groups.html:56 templates/users/group.html:34 +#: templates/users/group.html:44 templates/users/objectpermission.html:77 +#: templates/users/objectpermission.html:87 templates/users/user.html:58 +#: templates/users/user.html:68 msgid "None" msgstr "Nessuna" -#: netbox/templates/account/profile.html:68 -#: netbox/templates/users/user.html:78 +#: templates/account/profile.html:68 templates/users/user.html:78 msgid "Recent Activity" msgstr "Attività recente" -#: netbox/templates/account/token.html:8 -#: netbox/templates/account/token_list.html:6 +#: templates/account/token.html:8 templates/account/token_list.html:6 msgid "My API Tokens" msgstr "I miei token API" -#: netbox/templates/account/token.html:11 -#: netbox/templates/account/token.html:19 netbox/templates/users/token.html:6 -#: netbox/templates/users/token.html:14 netbox/users/forms/filtersets.py:120 +#: templates/account/token.html:11 templates/account/token.html:19 +#: templates/users/token.html:6 templates/users/token.html:14 +#: users/forms/filtersets.py:120 msgid "Token" msgstr "Token" -#: netbox/templates/account/token.html:39 netbox/templates/users/token.html:31 -#: netbox/users/forms/bulk_edit.py:107 +#: templates/account/token.html:39 templates/users/token.html:31 +#: users/forms/bulk_edit.py:107 msgid "Write enabled" msgstr "Scrittura abilitata" -#: netbox/templates/account/token.html:51 netbox/templates/users/token.html:43 +#: templates/account/token.html:51 templates/users/token.html:43 msgid "Last used" msgstr "Usato per ultimo" -#: netbox/templates/account/token_list.html:12 +#: templates/account/token_list.html:12 msgid "Add a Token" msgstr "Aggiungi un token" -#: netbox/templates/base/base.html:22 netbox/templates/home.html:27 +#: templates/base/base.html:22 templates/home.html:27 msgid "Home" msgstr "Home" -#: netbox/templates/base/layout.html:25 +#: templates/base/layout.html:25 msgid "NetBox Motif" msgstr "Motivo NetBox" -#: netbox/templates/base/layout.html:38 netbox/templates/base/layout.html:39 -#: netbox/templates/login.html:14 netbox/templates/login.html:15 +#: templates/base/layout.html:38 templates/base/layout.html:39 +#: templates/login.html:14 templates/login.html:15 msgid "NetBox Logo" msgstr "Logo NetBox" -#: netbox/templates/base/layout.html:150 netbox/templates/base/layout.html:151 +#: templates/base/layout.html:150 templates/base/layout.html:151 msgid "Docs" msgstr "Documenti" -#: netbox/templates/base/layout.html:156 netbox/templates/base/layout.html:157 -#: netbox/templates/rest_framework/api.html:10 +#: templates/base/layout.html:156 templates/base/layout.html:157 +#: templates/rest_framework/api.html:10 msgid "REST API" msgstr "API REST" -#: netbox/templates/base/layout.html:162 netbox/templates/base/layout.html:163 +#: templates/base/layout.html:162 templates/base/layout.html:163 msgid "REST API documentation" msgstr "Documentazione API REST" -#: netbox/templates/base/layout.html:169 netbox/templates/base/layout.html:170 +#: templates/base/layout.html:169 templates/base/layout.html:170 msgid "GraphQL API" msgstr "API GraphQL" -#: netbox/templates/base/layout.html:185 netbox/templates/base/layout.html:186 +#: templates/base/layout.html:185 templates/base/layout.html:186 msgid "NetBox Labs Support" msgstr "Supporto NetBox Labs" -#: netbox/templates/base/layout.html:194 netbox/templates/base/layout.html:195 +#: templates/base/layout.html:194 templates/base/layout.html:195 msgid "Source Code" msgstr "Codice sorgente" -#: netbox/templates/base/layout.html:200 netbox/templates/base/layout.html:201 +#: templates/base/layout.html:200 templates/base/layout.html:201 msgid "Community" msgstr "Comunità" -#: netbox/templates/circuits/circuit.html:47 +#: templates/circuits/circuit.html:47 msgid "Install Date" msgstr "Data di installazione" -#: netbox/templates/circuits/circuit.html:51 +#: templates/circuits/circuit.html:51 msgid "Termination Date" msgstr "Data di cessazione" -#: netbox/templates/circuits/circuit.html:70 -#: netbox/templates/ipam/inc/panels/fhrp_groups.html:15 +#: templates/circuits/circuit.html:70 +#: templates/ipam/inc/panels/fhrp_groups.html:15 msgid "Assign Group" msgstr "Assegna gruppo" -#: netbox/templates/circuits/circuit_terminations_swap.html:4 +#: templates/circuits/circuit_terminations_swap.html:4 msgid "Swap Circuit Terminations" msgstr "Terminazioni del circuito di scambio" -#: netbox/templates/circuits/circuit_terminations_swap.html:8 +#: templates/circuits/circuit_terminations_swap.html:8 #, python-format msgid "Swap these terminations for circuit %(circuit)s?" msgstr "Sostituisci queste terminazioni con un circuito %(circuit)s?" -#: netbox/templates/circuits/circuit_terminations_swap.html:14 +#: templates/circuits/circuit_terminations_swap.html:14 msgid "A side" msgstr "Un lato" -#: netbox/templates/circuits/circuit_terminations_swap.html:22 +#: templates/circuits/circuit_terminations_swap.html:22 msgid "Z side" msgstr "Lato Z" -#: netbox/templates/circuits/circuitgroup.html:16 +#: templates/circuits/circuitgroup.html:16 msgid "Assign Circuit" msgstr "Assegna circuito" -#: netbox/templates/circuits/circuitgroupassignment.html:19 +#: templates/circuits/circuitgroupassignment.html:19 msgid "Circuit Group Assignment" msgstr "Assegnazione del gruppo di circuiti" -#: netbox/templates/circuits/circuittype.html:10 +#: templates/circuits/circuittype.html:10 msgid "Add Circuit" msgstr "Aggiungi circuito" -#: netbox/templates/circuits/circuittype.html:19 +#: templates/circuits/circuittype.html:19 msgid "Circuit Type" msgstr "Tipo di circuito" -#: netbox/templates/circuits/inc/circuit_termination.html:10 -#: netbox/templates/dcim/devicetype/component_templates.html:33 -#: netbox/templates/dcim/manufacturer.html:11 -#: netbox/templates/dcim/moduletype/component_templates.html:29 -#: netbox/templates/generic/bulk_add_component.html:22 -#: netbox/templates/users/objectpermission.html:38 -#: netbox/utilities/templates/buttons/add.html:4 -#: netbox/utilities/templates/helpers/table_config_form.html:20 +#: templates/circuits/inc/circuit_termination.html:10 +#: templates/dcim/manufacturer.html:11 +#: templates/generic/bulk_add_component.html:22 +#: templates/users/objectpermission.html:38 +#: utilities/templates/buttons/add.html:4 +#: utilities/templates/helpers/table_config_form.html:20 msgid "Add" msgstr "Inserisci" -#: netbox/templates/circuits/inc/circuit_termination.html:15 -#: netbox/templates/circuits/inc/circuit_termination_fields.html:36 -#: netbox/templates/dcim/inc/panels/inventory_items.html:32 -#: netbox/templates/dcim/moduletype/component_templates.html:20 -#: netbox/templates/dcim/powerpanel.html:56 -#: netbox/templates/extras/script_list.html:30 -#: netbox/templates/generic/object_edit.html:47 -#: netbox/templates/ipam/inc/ipaddress_edit_header.html:7 -#: netbox/templates/ipam/inc/panels/fhrp_groups.html:43 -#: netbox/utilities/templates/buttons/edit.html:3 +#: templates/circuits/inc/circuit_termination.html:15 +#: templates/circuits/inc/circuit_termination_fields.html:36 +#: templates/dcim/inc/panels/inventory_items.html:32 +#: templates/dcim/powerpanel.html:56 templates/extras/script_list.html:30 +#: templates/generic/object_edit.html:47 +#: templates/ipam/inc/ipaddress_edit_header.html:7 +#: templates/ipam/inc/panels/fhrp_groups.html:43 +#: utilities/templates/buttons/edit.html:3 msgid "Edit" msgstr "Modifica" -#: netbox/templates/circuits/inc/circuit_termination.html:18 +#: templates/circuits/inc/circuit_termination.html:18 msgid "Swap" msgstr "Scambia" -#: netbox/templates/circuits/inc/circuit_termination_fields.html:19 -#: netbox/templates/dcim/consoleport.html:59 -#: netbox/templates/dcim/consoleserverport.html:60 -#: netbox/templates/dcim/powerfeed.html:114 +#: templates/circuits/inc/circuit_termination_fields.html:19 +#: templates/dcim/consoleport.html:59 templates/dcim/consoleserverport.html:60 +#: templates/dcim/powerfeed.html:114 msgid "Marked as connected" msgstr "Contrassegnata come connessa" -#: netbox/templates/circuits/inc/circuit_termination_fields.html:21 +#: templates/circuits/inc/circuit_termination_fields.html:21 msgid "to" msgstr "a" -#: netbox/templates/circuits/inc/circuit_termination_fields.html:31 -#: netbox/templates/circuits/inc/circuit_termination_fields.html:32 -#: netbox/templates/dcim/frontport.html:80 -#: netbox/templates/dcim/inc/connection_endpoints.html:7 -#: netbox/templates/dcim/interface.html:154 -#: netbox/templates/dcim/rearport.html:76 +#: templates/circuits/inc/circuit_termination_fields.html:31 +#: templates/circuits/inc/circuit_termination_fields.html:32 +#: templates/dcim/frontport.html:80 +#: templates/dcim/inc/connection_endpoints.html:7 +#: templates/dcim/interface.html:154 templates/dcim/rearport.html:76 msgid "Trace" msgstr "Traccia" -#: netbox/templates/circuits/inc/circuit_termination_fields.html:35 +#: templates/circuits/inc/circuit_termination_fields.html:35 msgid "Edit cable" msgstr "Modifica cavo" -#: netbox/templates/circuits/inc/circuit_termination_fields.html:40 +#: templates/circuits/inc/circuit_termination_fields.html:40 msgid "Remove cable" msgstr "Rimuovere il cavo" -#: netbox/templates/circuits/inc/circuit_termination_fields.html:41 -#: netbox/templates/dcim/bulk_disconnect.html:5 -#: netbox/templates/dcim/device/consoleports.html:12 -#: netbox/templates/dcim/device/consoleserverports.html:12 -#: netbox/templates/dcim/device/frontports.html:12 -#: netbox/templates/dcim/device/interfaces.html:16 -#: netbox/templates/dcim/device/poweroutlets.html:12 -#: netbox/templates/dcim/device/powerports.html:12 -#: netbox/templates/dcim/device/rearports.html:12 -#: netbox/templates/dcim/powerpanel.html:61 +#: templates/circuits/inc/circuit_termination_fields.html:41 +#: templates/dcim/bulk_disconnect.html:5 +#: templates/dcim/device/consoleports.html:12 +#: templates/dcim/device/consoleserverports.html:12 +#: templates/dcim/device/frontports.html:12 +#: templates/dcim/device/interfaces.html:16 +#: templates/dcim/device/poweroutlets.html:12 +#: templates/dcim/device/powerports.html:12 +#: templates/dcim/device/rearports.html:12 templates/dcim/powerpanel.html:61 msgid "Disconnect" msgstr "Disconnetti" -#: netbox/templates/circuits/inc/circuit_termination_fields.html:48 -#: netbox/templates/dcim/consoleport.html:69 -#: netbox/templates/dcim/consoleserverport.html:70 -#: netbox/templates/dcim/frontport.html:102 -#: netbox/templates/dcim/interface.html:180 -#: netbox/templates/dcim/interface.html:200 -#: netbox/templates/dcim/powerfeed.html:127 -#: netbox/templates/dcim/poweroutlet.html:71 -#: netbox/templates/dcim/poweroutlet.html:72 -#: netbox/templates/dcim/powerport.html:73 -#: netbox/templates/dcim/rearport.html:98 +#: templates/circuits/inc/circuit_termination_fields.html:48 +#: templates/dcim/consoleport.html:69 templates/dcim/consoleserverport.html:70 +#: templates/dcim/frontport.html:102 templates/dcim/interface.html:180 +#: templates/dcim/interface.html:200 templates/dcim/powerfeed.html:127 +#: templates/dcim/poweroutlet.html:71 templates/dcim/poweroutlet.html:72 +#: templates/dcim/powerport.html:73 templates/dcim/rearport.html:98 msgid "Connect" msgstr "Connetti" -#: netbox/templates/circuits/inc/circuit_termination_fields.html:70 +#: templates/circuits/inc/circuit_termination_fields.html:70 msgid "Downstream" msgstr "A valle" -#: netbox/templates/circuits/inc/circuit_termination_fields.html:71 +#: templates/circuits/inc/circuit_termination_fields.html:71 msgid "Upstream" msgstr "A monte" -#: netbox/templates/circuits/inc/circuit_termination_fields.html:80 +#: templates/circuits/inc/circuit_termination_fields.html:80 msgid "Cross-Connect" msgstr "Connessione incrociata" -#: netbox/templates/circuits/inc/circuit_termination_fields.html:84 +#: templates/circuits/inc/circuit_termination_fields.html:84 msgid "Patch Panel/Port" msgstr "Pannello di permutazione/porta" -#: netbox/templates/circuits/provider.html:11 +#: templates/circuits/provider.html:11 msgid "Add circuit" msgstr "Aggiungi circuito" -#: netbox/templates/circuits/provideraccount.html:17 +#: templates/circuits/provideraccount.html:17 msgid "Provider Account" msgstr "Account fornitore" -#: netbox/templates/core/configrevision.html:35 +#: templates/core/configrevision.html:35 msgid "Configuration Data" msgstr "Dati di configurazione" -#: netbox/templates/core/configrevision.html:40 +#: templates/core/configrevision.html:40 msgid "Comment" msgstr "Commento" -#: netbox/templates/core/configrevision_restore.html:8 -#: netbox/templates/core/configrevision_restore.html:25 -#: netbox/templates/core/configrevision_restore.html:64 +#: templates/core/configrevision_restore.html:8 +#: templates/core/configrevision_restore.html:25 +#: templates/core/configrevision_restore.html:64 msgid "Restore" msgstr "Ripristina" -#: netbox/templates/core/configrevision_restore.html:36 +#: templates/core/configrevision_restore.html:36 msgid "Parameter" msgstr "Parametro" -#: netbox/templates/core/configrevision_restore.html:37 +#: templates/core/configrevision_restore.html:37 msgid "Current Value" msgstr "Valore attuale" -#: netbox/templates/core/configrevision_restore.html:38 +#: templates/core/configrevision_restore.html:38 msgid "New Value" msgstr "Nuovo valore" -#: netbox/templates/core/configrevision_restore.html:50 +#: templates/core/configrevision_restore.html:50 msgid "Changed" msgstr "Modificato" -#: netbox/templates/core/datafile.html:42 -#: netbox/templates/ipam/iprange.html:25 -#: netbox/templates/virtualization/virtualdisk.html:29 -#: netbox/virtualization/tables/virtualmachines.py:198 +#: templates/core/datafile.html:42 templates/ipam/iprange.html:25 +#: templates/virtualization/virtualdisk.html:29 +#: virtualization/tables/virtualmachines.py:198 msgid "Size" msgstr "Taglia" -#: netbox/templates/core/datafile.html:43 +#: templates/core/datafile.html:43 msgid "bytes" msgstr "byte" -#: netbox/templates/core/datafile.html:46 +#: templates/core/datafile.html:46 msgid "SHA256 Hash" msgstr "Hash SHA256" -#: netbox/templates/core/datasource.html:14 -#: netbox/templates/core/datasource.html:20 -#: netbox/utilities/templates/buttons/sync.html:5 +#: templates/core/datasource.html:14 templates/core/datasource.html:20 +#: utilities/templates/buttons/sync.html:5 msgid "Sync" msgstr "sincronizzazione" -#: netbox/templates/core/datasource.html:50 +#: templates/core/datasource.html:50 msgid "Last synced" msgstr "Ultima sincronizzazione" -#: netbox/templates/core/datasource.html:84 +#: templates/core/datasource.html:84 msgid "Backend" msgstr "Backend" -#: netbox/templates/core/datasource.html:99 +#: templates/core/datasource.html:99 msgid "No parameters defined" msgstr "Nessun parametro definito" -#: netbox/templates/core/datasource.html:114 +#: templates/core/datasource.html:114 msgid "Files" msgstr "File" -#: netbox/templates/core/inc/config_data.html:7 +#: templates/core/inc/config_data.html:7 msgid "Rack elevations" msgstr "Elevazioni dei rack" -#: netbox/templates/core/inc/config_data.html:10 +#: templates/core/inc/config_data.html:10 msgid "Default unit height" msgstr "Altezza predefinita dell'unità" -#: netbox/templates/core/inc/config_data.html:14 +#: templates/core/inc/config_data.html:14 msgid "Default unit width" msgstr "Larghezza dell'unità predefinita" -#: netbox/templates/core/inc/config_data.html:20 +#: templates/core/inc/config_data.html:20 msgid "Power feeds" msgstr "Alimentatori" -#: netbox/templates/core/inc/config_data.html:23 +#: templates/core/inc/config_data.html:23 msgid "Default voltage" msgstr "Tensione predefinita" -#: netbox/templates/core/inc/config_data.html:27 +#: templates/core/inc/config_data.html:27 msgid "Default amperage" msgstr "Amperaggio predefinito" -#: netbox/templates/core/inc/config_data.html:31 +#: templates/core/inc/config_data.html:31 msgid "Default max utilization" msgstr "Utilizzo massimo predefinito" -#: netbox/templates/core/inc/config_data.html:40 +#: templates/core/inc/config_data.html:40 msgid "Enforce global unique" msgstr "Applica l'unicità globale" -#: netbox/templates/core/inc/config_data.html:83 +#: templates/core/inc/config_data.html:83 msgid "Paginate count" msgstr "Conteggio delle pagine" -#: netbox/templates/core/inc/config_data.html:87 +#: templates/core/inc/config_data.html:87 msgid "Max page size" msgstr "Dimensione massima della pagina" -#: netbox/templates/core/inc/config_data.html:114 +#: templates/core/inc/config_data.html:114 msgid "User preferences" msgstr "Preferenze utente" -#: netbox/templates/core/inc/config_data.html:141 +#: templates/core/inc/config_data.html:141 msgid "Job retention" msgstr "Conservazione del lavoro" -#: netbox/templates/core/job.html:35 netbox/templates/core/rq_task.html:12 -#: netbox/templates/core/rq_task.html:49 netbox/templates/core/rq_task.html:58 +#: templates/core/job.html:35 templates/core/rq_task.html:12 +#: templates/core/rq_task.html:49 templates/core/rq_task.html:58 msgid "Job" msgstr "Lavoro" -#: netbox/templates/core/job.html:58 -#: netbox/templates/extras/journalentry.html:26 +#: templates/core/job.html:58 templates/extras/journalentry.html:26 msgid "Created By" msgstr "Creato da" -#: netbox/templates/core/job.html:66 +#: templates/core/job.html:66 msgid "Scheduling" msgstr "Pianificazione" -#: netbox/templates/core/job.html:77 +#: templates/core/job.html:77 #, python-format msgid "every %(interval)s minutes" msgstr "ogni %(interval)s verbale" -#: netbox/templates/core/objectchange.html:29 -#: netbox/templates/users/objectpermission.html:42 +#: templates/core/objectchange.html:29 +#: templates/users/objectpermission.html:42 msgid "Change" msgstr "Cambia" -#: netbox/templates/core/objectchange.html:79 +#: templates/core/objectchange.html:79 msgid "Difference" msgstr "Differenza" -#: netbox/templates/core/objectchange.html:82 +#: templates/core/objectchange.html:82 msgid "Previous" msgstr "Precedente" -#: netbox/templates/core/objectchange.html:85 +#: templates/core/objectchange.html:85 msgid "Next" msgstr "Prossimo" -#: netbox/templates/core/objectchange.html:93 +#: templates/core/objectchange.html:93 msgid "Object Created" msgstr "Oggetto creato" -#: netbox/templates/core/objectchange.html:95 +#: templates/core/objectchange.html:95 msgid "Object Deleted" msgstr "Oggetto eliminato" -#: netbox/templates/core/objectchange.html:97 +#: templates/core/objectchange.html:97 msgid "No Changes" msgstr "Nessuna modifica" -#: netbox/templates/core/objectchange.html:111 +#: templates/core/objectchange.html:111 msgid "Pre-Change Data" msgstr "Dati precedenti alla modifica" -#: netbox/templates/core/objectchange.html:122 +#: templates/core/objectchange.html:122 msgid "Warning: Comparing non-atomic change to previous change record" msgstr "" "Avvertenza: confronto delle modifiche non atomiche con il record di " "modifiche precedente" -#: netbox/templates/core/objectchange.html:131 +#: templates/core/objectchange.html:131 msgid "Post-Change Data" msgstr "Dati successivi alla modifica" -#: netbox/templates/core/objectchange.html:162 +#: templates/core/objectchange.html:162 #, python-format msgid "See All %(count)s Changes" msgstr "Vedi tutto %(count)s Modifiche" -#: netbox/templates/core/objectchange_list.html:9 -#: netbox/templates/extras/object_changelog.html:15 +#: templates/core/objectchange_list.html:9 +#: templates/extras/object_changelog.html:15 msgid "Change log retention" msgstr "Conservazione del registro delle modifiche" -#: netbox/templates/core/objectchange_list.html:9 -#: netbox/templates/extras/object_changelog.html:15 +#: templates/core/objectchange_list.html:9 +#: templates/extras/object_changelog.html:15 msgid "days" msgstr "giorni" -#: netbox/templates/core/objectchange_list.html:9 -#: netbox/templates/extras/object_changelog.html:15 +#: templates/core/objectchange_list.html:9 +#: templates/extras/object_changelog.html:15 msgid "Indefinite" msgstr "Indefinito" -#: netbox/templates/core/plugin.html:21 +#: templates/core/plugin.html:22 msgid "Not installed" msgstr "Non installato" -#: netbox/templates/core/plugin.html:32 +#: templates/core/plugin.html:33 msgid "Overview" msgstr "Panoramica" -#: netbox/templates/core/plugin.html:38 +#: templates/core/plugin.html:39 msgid "Install" msgstr "Installare" -#: netbox/templates/core/plugin.html:50 +#: templates/core/plugin.html:51 msgid "Plugin Details" msgstr "Dettagli del plugin" -#: netbox/templates/core/plugin.html:57 +#: templates/core/plugin.html:58 msgid "Summary" msgstr "Riepilogo" -#: netbox/templates/core/plugin.html:75 +#: templates/core/plugin.html:76 msgid "License" msgstr "Licenza" -#: netbox/templates/core/plugin.html:95 +#: templates/core/plugin.html:96 msgid "Version History" msgstr "Cronologia delle versioni" -#: netbox/templates/core/plugin.html:106 +#: templates/core/plugin.html:107 msgid "Local Installation Instructions" msgstr "Istruzioni per l'installazione locale" -#: netbox/templates/core/rq_queue_list.html:5 -#: netbox/templates/core/rq_queue_list.html:13 -#: netbox/templates/core/rq_task_list.html:14 -#: netbox/templates/core/rq_worker.html:7 +#: templates/core/rq_queue_list.html:5 templates/core/rq_queue_list.html:13 +#: templates/core/rq_task_list.html:14 templates/core/rq_worker.html:7 msgid "Background Queues" msgstr "Code in background" -#: netbox/templates/core/rq_queue_list.html:24 -#: netbox/templates/core/rq_queue_list.html:25 -#: netbox/templates/core/rq_worker_list.html:49 -#: netbox/templates/core/rq_worker_list.html:50 -#: netbox/templates/extras/script_result.html:67 -#: netbox/templates/extras/script_result.html:69 -#: netbox/templates/inc/table_controls_htmx.html:30 -#: netbox/templates/inc/table_controls_htmx.html:33 +#: templates/core/rq_queue_list.html:24 templates/core/rq_queue_list.html:25 +#: templates/core/rq_worker_list.html:49 templates/core/rq_worker_list.html:50 +#: templates/extras/script_result.html:67 +#: templates/extras/script_result.html:69 +#: templates/inc/table_controls_htmx.html:30 +#: templates/inc/table_controls_htmx.html:33 msgid "Configure Table" msgstr "Configura tabella" -#: netbox/templates/core/rq_task.html:29 +#: templates/core/rq_task.html:29 msgid "Stop" msgstr "Fermare" -#: netbox/templates/core/rq_task.html:34 +#: templates/core/rq_task.html:34 msgid "Requeue" msgstr "Coda" -#: netbox/templates/core/rq_task.html:39 +#: templates/core/rq_task.html:39 msgid "Enqueue" msgstr "Accodare" -#: netbox/templates/core/rq_task.html:61 +#: templates/core/rq_task.html:61 msgid "Queue" msgstr "Coda" -#: netbox/templates/core/rq_task.html:65 +#: templates/core/rq_task.html:65 msgid "Timeout" msgstr "Timeout" -#: netbox/templates/core/rq_task.html:69 +#: templates/core/rq_task.html:69 msgid "Result TTL" msgstr "Risultato TTL" -#: netbox/templates/core/rq_task.html:89 +#: templates/core/rq_task.html:89 msgid "Meta" msgstr "Meta" -#: netbox/templates/core/rq_task.html:93 +#: templates/core/rq_task.html:93 msgid "Arguments" msgstr "Argomenti" -#: netbox/templates/core/rq_task.html:97 +#: templates/core/rq_task.html:97 msgid "Keyword Arguments" msgstr "Argomenti delle parole" -#: netbox/templates/core/rq_task.html:103 +#: templates/core/rq_task.html:103 msgid "Depends on" msgstr "Dipende da" -#: netbox/templates/core/rq_task.html:109 +#: templates/core/rq_task.html:109 msgid "Exception" msgstr "Eccezione" -#: netbox/templates/core/rq_task_list.html:28 +#: templates/core/rq_task_list.html:28 msgid "tasks in " msgstr "attività in " -#: netbox/templates/core/rq_task_list.html:33 +#: templates/core/rq_task_list.html:33 msgid "Queued Jobs" msgstr "Lavori in coda" -#: netbox/templates/core/rq_task_list.html:64 -#: netbox/templates/extras/script_result.html:86 +#: templates/core/rq_task_list.html:64 templates/extras/script_result.html:86 #, python-format msgid "" "Select all %(count)s %(object_type_plural)s matching query" @@ -12356,397 +11680,382 @@ msgstr "" "Seleziona tutti %(count)s %(object_type_plural)s domanda " "corrispondente" -#: netbox/templates/core/rq_worker.html:10 +#: templates/core/rq_worker.html:10 msgid "Worker Info" msgstr "Informazioni sul lavoratore" -#: netbox/templates/core/rq_worker.html:31 -#: netbox/templates/core/rq_worker.html:40 +#: templates/core/rq_worker.html:31 templates/core/rq_worker.html:40 msgid "Worker" msgstr "Lavoratore" -#: netbox/templates/core/rq_worker.html:55 +#: templates/core/rq_worker.html:55 msgid "Queues" msgstr "Code" -#: netbox/templates/core/rq_worker.html:63 +#: templates/core/rq_worker.html:63 msgid "Curent Job" msgstr "Lavori attuali" -#: netbox/templates/core/rq_worker.html:67 +#: templates/core/rq_worker.html:67 msgid "Successful job count" msgstr "Numero di lavori riusciti" -#: netbox/templates/core/rq_worker.html:71 +#: templates/core/rq_worker.html:71 msgid "Failed job count" msgstr "Numero di lavori non riusciti" -#: netbox/templates/core/rq_worker.html:75 +#: templates/core/rq_worker.html:75 msgid "Total working time" msgstr "Orario di lavoro totale" -#: netbox/templates/core/rq_worker.html:76 +#: templates/core/rq_worker.html:76 msgid "seconds" msgstr "secondi" -#: netbox/templates/core/rq_worker_list.html:13 -#: netbox/templates/core/rq_worker_list.html:21 +#: templates/core/rq_worker_list.html:13 templates/core/rq_worker_list.html:21 msgid "Background Workers" msgstr "Lavoratori di background" -#: netbox/templates/core/rq_worker_list.html:29 +#: templates/core/rq_worker_list.html:29 #, python-format msgid "Workers in %(queue_name)s" msgstr "Lavoratori in %(queue_name)s" -#: netbox/templates/core/system.html:11 -#: netbox/utilities/templates/buttons/export.html:4 +#: templates/core/system.html:11 utilities/templates/buttons/export.html:4 msgid "Export" msgstr "Esporta" -#: netbox/templates/core/system.html:28 +#: templates/core/system.html:28 msgid "System Status" msgstr "Stato del sistema" -#: netbox/templates/core/system.html:31 +#: templates/core/system.html:31 msgid "NetBox release" msgstr "Versione NetBox" -#: netbox/templates/core/system.html:44 +#: templates/core/system.html:44 msgid "Django version" msgstr "Versione Django" -#: netbox/templates/core/system.html:48 +#: templates/core/system.html:48 msgid "PostgreSQL version" msgstr "Versione PostgreSQL" -#: netbox/templates/core/system.html:52 +#: templates/core/system.html:52 msgid "Database name" msgstr "Nome del database" -#: netbox/templates/core/system.html:56 +#: templates/core/system.html:56 msgid "Database size" msgstr "Dimensioni del database" -#: netbox/templates/core/system.html:61 +#: templates/core/system.html:61 msgid "Unavailable" msgstr "Non disponibile" -#: netbox/templates/core/system.html:66 +#: templates/core/system.html:66 msgid "RQ workers" msgstr "Lavoratori RQ" -#: netbox/templates/core/system.html:69 +#: templates/core/system.html:69 msgid "default queue" msgstr "coda predefinita" -#: netbox/templates/core/system.html:73 +#: templates/core/system.html:73 msgid "System time" msgstr "Ora del sistema" -#: netbox/templates/core/system.html:85 +#: templates/core/system.html:85 msgid "Current Configuration" msgstr "Configurazione attuale" -#: netbox/templates/dcim/bulk_disconnect.html:9 +#: templates/dcim/bulk_disconnect.html:9 #, python-format msgid "" "Are you sure you want to disconnect these %(count)s %(obj_type_plural)s?" msgstr "Sei sicuro di volerli disconnettere? %(count)s %(obj_type_plural)s?" -#: netbox/templates/dcim/cable_trace.html:10 +#: templates/dcim/cable_trace.html:10 #, python-format msgid "Cable Trace for %(object_type)s %(object)s" msgstr "Cable Trace per %(object_type)s %(object)s" -#: netbox/templates/dcim/cable_trace.html:24 -#: netbox/templates/dcim/inc/rack_elevation.html:7 +#: templates/dcim/cable_trace.html:24 templates/dcim/inc/rack_elevation.html:7 msgid "Download SVG" msgstr "Scarica SVG" -#: netbox/templates/dcim/cable_trace.html:30 +#: templates/dcim/cable_trace.html:30 msgid "Asymmetric Path" msgstr "Percorso asimmetrico" -#: netbox/templates/dcim/cable_trace.html:31 +#: templates/dcim/cable_trace.html:31 msgid "The nodes below have no links and result in an asymmetric path" msgstr "" "I nodi sottostanti non hanno collegamenti e generano un percorso asimmetrico" -#: netbox/templates/dcim/cable_trace.html:38 +#: templates/dcim/cable_trace.html:38 msgid "Path split" msgstr "Divisione del percorso" -#: netbox/templates/dcim/cable_trace.html:39 +#: templates/dcim/cable_trace.html:39 msgid "Select a node below to continue" msgstr "Seleziona un nodo qui sotto per continuare" -#: netbox/templates/dcim/cable_trace.html:55 +#: templates/dcim/cable_trace.html:55 msgid "Trace Completed" msgstr "Traccia completata" -#: netbox/templates/dcim/cable_trace.html:58 +#: templates/dcim/cable_trace.html:58 msgid "Total segments" msgstr "Segmenti totali" -#: netbox/templates/dcim/cable_trace.html:62 +#: templates/dcim/cable_trace.html:62 msgid "Total length" msgstr "Lunghezza totale" -#: netbox/templates/dcim/cable_trace.html:77 +#: templates/dcim/cable_trace.html:77 msgid "No paths found" msgstr "Nessun percorso trovato" -#: netbox/templates/dcim/cable_trace.html:85 +#: templates/dcim/cable_trace.html:85 msgid "Related Paths" msgstr "Percorsi correlati" -#: netbox/templates/dcim/cable_trace.html:89 +#: templates/dcim/cable_trace.html:89 msgid "Origin" msgstr "Origine" -#: netbox/templates/dcim/cable_trace.html:90 +#: templates/dcim/cable_trace.html:90 msgid "Destination" msgstr "Destinazione" -#: netbox/templates/dcim/cable_trace.html:91 +#: templates/dcim/cable_trace.html:91 msgid "Segments" msgstr "Segmenti" -#: netbox/templates/dcim/cable_trace.html:104 +#: templates/dcim/cable_trace.html:104 msgid "Incomplete" msgstr "Incompleto" -#: netbox/templates/dcim/component_list.html:14 +#: templates/dcim/component_list.html:14 msgid "Rename Selected" msgstr "Rinomina selezionato" -#: netbox/templates/dcim/consoleport.html:65 -#: netbox/templates/dcim/consoleserverport.html:66 -#: netbox/templates/dcim/frontport.html:98 -#: netbox/templates/dcim/interface.html:176 -#: netbox/templates/dcim/poweroutlet.html:69 -#: netbox/templates/dcim/powerport.html:69 +#: templates/dcim/consoleport.html:65 templates/dcim/consoleserverport.html:66 +#: templates/dcim/frontport.html:98 templates/dcim/interface.html:176 +#: templates/dcim/poweroutlet.html:69 templates/dcim/powerport.html:69 msgid "Not Connected" msgstr "Non connesso" -#: netbox/templates/dcim/device.html:34 +#: templates/dcim/device.html:34 msgid "Highlight device in rack" msgstr "Evidenzia il dispositivo nel rack" -#: netbox/templates/dcim/device.html:55 +#: templates/dcim/device.html:55 msgid "Not racked" msgstr "Non rastrellato" -#: netbox/templates/dcim/device.html:62 netbox/templates/dcim/site.html:94 +#: templates/dcim/device.html:62 templates/dcim/site.html:94 msgid "GPS Coordinates" msgstr "Coordinate GPS" -#: netbox/templates/dcim/device.html:68 netbox/templates/dcim/site.html:81 -#: netbox/templates/dcim/site.html:100 +#: templates/dcim/device.html:68 templates/dcim/site.html:81 +#: templates/dcim/site.html:100 msgid "Map" msgstr "Mappa" -#: netbox/templates/dcim/device.html:108 -#: netbox/templates/dcim/inventoryitem.html:56 -#: netbox/templates/dcim/module.html:81 -#: netbox/templates/dcim/modulebay.html:74 netbox/templates/dcim/rack.html:61 +#: templates/dcim/device.html:108 templates/dcim/inventoryitem.html:56 +#: templates/dcim/module.html:81 templates/dcim/modulebay.html:74 +#: templates/dcim/rack.html:61 msgid "Asset Tag" msgstr "Etichetta dell'asset" -#: netbox/templates/dcim/device.html:123 +#: templates/dcim/device.html:123 msgid "View Virtual Chassis" msgstr "Visualizza lo chassis virtuale" -#: netbox/templates/dcim/device.html:164 +#: templates/dcim/device.html:164 msgid "Create VDC" msgstr "Crea VDC" -#: netbox/templates/dcim/device.html:175 -#: netbox/templates/dcim/device_edit.html:64 -#: netbox/virtualization/forms/model_forms.py:223 +#: templates/dcim/device.html:175 templates/dcim/device_edit.html:64 +#: virtualization/forms/model_forms.py:223 msgid "Management" msgstr "Direzione" -#: netbox/templates/dcim/device.html:195 netbox/templates/dcim/device.html:211 -#: netbox/templates/dcim/device.html:227 -#: netbox/templates/virtualization/virtualmachine.html:57 -#: netbox/templates/virtualization/virtualmachine.html:73 +#: templates/dcim/device.html:195 templates/dcim/device.html:211 +#: templates/dcim/device.html:227 +#: templates/virtualization/virtualmachine.html:57 +#: templates/virtualization/virtualmachine.html:73 msgid "NAT for" msgstr "NAT per" -#: netbox/templates/dcim/device.html:197 netbox/templates/dcim/device.html:213 -#: netbox/templates/dcim/device.html:229 -#: netbox/templates/virtualization/virtualmachine.html:59 -#: netbox/templates/virtualization/virtualmachine.html:75 +#: templates/dcim/device.html:197 templates/dcim/device.html:213 +#: templates/dcim/device.html:229 +#: templates/virtualization/virtualmachine.html:59 +#: templates/virtualization/virtualmachine.html:75 msgid "NAT" msgstr "NAT" -#: netbox/templates/dcim/device.html:252 netbox/templates/dcim/rack.html:73 +#: templates/dcim/device.html:252 templates/dcim/rack.html:73 msgid "Power Utilization" msgstr "Utilizzo dell'energia" -#: netbox/templates/dcim/device.html:256 +#: templates/dcim/device.html:256 msgid "Input" msgstr "Ingresso" -#: netbox/templates/dcim/device.html:257 +#: templates/dcim/device.html:257 msgid "Outlets" msgstr "Punti vendita" -#: netbox/templates/dcim/device.html:258 +#: templates/dcim/device.html:258 msgid "Allocated" msgstr "Assegnata" -#: netbox/templates/dcim/device.html:268 netbox/templates/dcim/device.html:270 -#: netbox/templates/dcim/device.html:286 -#: netbox/templates/dcim/powerfeed.html:67 +#: templates/dcim/device.html:268 templates/dcim/device.html:270 +#: templates/dcim/device.html:286 templates/dcim/powerfeed.html:67 msgid "VA" msgstr "VA" -#: netbox/templates/dcim/device.html:280 +#: templates/dcim/device.html:280 msgctxt "Leg of a power feed" msgid "Leg" msgstr "Gamba" -#: netbox/templates/dcim/device.html:306 -#: netbox/templates/virtualization/virtualmachine.html:158 +#: templates/dcim/device.html:306 +#: templates/virtualization/virtualmachine.html:158 msgid "Add a service" msgstr "Aggiungi un servizio" -#: netbox/templates/dcim/device/base.html:21 -#: netbox/templates/dcim/device_list.html:9 -#: netbox/templates/dcim/devicetype/base.html:18 -#: netbox/templates/dcim/module.html:18 -#: netbox/templates/dcim/moduletype/base.html:18 -#: netbox/templates/virtualization/virtualmachine/base.html:22 -#: netbox/templates/virtualization/virtualmachine_list.html:8 +#: templates/dcim/device/base.html:21 templates/dcim/device_list.html:9 +#: templates/dcim/devicetype/base.html:18 +#: templates/dcim/inc/moduletype_buttons.html:9 templates/dcim/module.html:18 +#: templates/virtualization/virtualmachine/base.html:22 +#: templates/virtualization/virtualmachine_list.html:8 msgid "Add Components" msgstr "Aggiungi componenti" -#: netbox/templates/dcim/device/consoleports.html:24 +#: templates/dcim/device/consoleports.html:24 msgid "Add Console Ports" msgstr "Aggiungi porte console" -#: netbox/templates/dcim/device/consoleserverports.html:24 +#: templates/dcim/device/consoleserverports.html:24 msgid "Add Console Server Ports" msgstr "Aggiungi porte Console Server" -#: netbox/templates/dcim/device/devicebays.html:10 +#: templates/dcim/device/devicebays.html:10 msgid "Add Device Bays" msgstr "Aggiungi alloggiamenti per dispositivi" -#: netbox/templates/dcim/device/frontports.html:24 +#: templates/dcim/device/frontports.html:24 msgid "Add Front Ports" msgstr "Aggiungi porte frontali" -#: netbox/templates/dcim/device/inc/interface_table_controls.html:9 +#: templates/dcim/device/inc/interface_table_controls.html:9 msgid "Hide Enabled" msgstr "Nascondi abilitato" -#: netbox/templates/dcim/device/inc/interface_table_controls.html:10 +#: templates/dcim/device/inc/interface_table_controls.html:10 msgid "Hide Disabled" msgstr "Nascondi disattivato" -#: netbox/templates/dcim/device/inc/interface_table_controls.html:11 +#: templates/dcim/device/inc/interface_table_controls.html:11 msgid "Hide Virtual" msgstr "Nascondi virtuale" -#: netbox/templates/dcim/device/inc/interface_table_controls.html:12 +#: templates/dcim/device/inc/interface_table_controls.html:12 msgid "Hide Disconnected" msgstr "Nascondi disconnesso" -#: netbox/templates/dcim/device/interfaces.html:27 +#: templates/dcim/device/interfaces.html:27 msgid "Add Interfaces" msgstr "Aggiungi interfacce" -#: netbox/templates/dcim/device/inventory.html:10 -#: netbox/templates/dcim/inc/panels/inventory_items.html:10 +#: templates/dcim/device/inventory.html:10 +#: templates/dcim/inc/panels/inventory_items.html:10 msgid "Add Inventory Item" msgstr "Aggiungi articolo di inventario" -#: netbox/templates/dcim/device/modulebays.html:10 +#: templates/dcim/device/modulebays.html:10 msgid "Add Module Bays" msgstr "Aggiungi alloggiamenti per moduli" -#: netbox/templates/dcim/device/poweroutlets.html:24 +#: templates/dcim/device/poweroutlets.html:24 msgid "Add Power Outlets" msgstr "Aggiungi prese di corrente" -#: netbox/templates/dcim/device/powerports.html:24 +#: templates/dcim/device/powerports.html:24 msgid "Add Power Port" msgstr "Aggiungi porta di alimentazione" -#: netbox/templates/dcim/device/rearports.html:24 +#: templates/dcim/device/rearports.html:24 msgid "Add Rear Ports" msgstr "Aggiungi porte posteriori" -#: netbox/templates/dcim/device/render_config.html:5 -#: netbox/templates/virtualization/virtualmachine/render_config.html:5 +#: templates/dcim/device/render_config.html:5 +#: templates/virtualization/virtualmachine/render_config.html:5 msgid "Config" msgstr "Configurazione" -#: netbox/templates/dcim/device/render_config.html:35 -#: netbox/templates/virtualization/virtualmachine/render_config.html:35 +#: templates/dcim/device/render_config.html:35 +#: templates/virtualization/virtualmachine/render_config.html:35 msgid "Context Data" msgstr "Dati contestuali" -#: netbox/templates/dcim/device/render_config.html:53 -#: netbox/templates/virtualization/virtualmachine/render_config.html:53 +#: templates/dcim/device/render_config.html:53 +#: templates/virtualization/virtualmachine/render_config.html:53 msgid "Rendered Config" msgstr "Configurazione renderizzata" -#: netbox/templates/dcim/device/render_config.html:55 -#: netbox/templates/virtualization/virtualmachine/render_config.html:55 +#: templates/dcim/device/render_config.html:55 +#: templates/virtualization/virtualmachine/render_config.html:55 msgid "Download" msgstr "Scarica" -#: netbox/templates/dcim/device/render_config.html:61 -#: netbox/templates/virtualization/virtualmachine/render_config.html:61 +#: templates/dcim/device/render_config.html:61 +#: templates/virtualization/virtualmachine/render_config.html:61 msgid "No configuration template found" msgstr "Nessun modello di configurazione trovato" -#: netbox/templates/dcim/device_edit.html:44 +#: templates/dcim/device_edit.html:44 msgid "Parent Bay" msgstr "Baia dei genitori" -#: netbox/templates/dcim/device_edit.html:48 -#: netbox/utilities/templates/form_helpers/render_field.html:22 +#: templates/dcim/device_edit.html:48 +#: utilities/templates/form_helpers/render_field.html:22 msgid "Regenerate Slug" msgstr "Rigenera la lumaca" -#: netbox/templates/dcim/device_edit.html:49 -#: netbox/templates/generic/bulk_remove.html:21 -#: netbox/utilities/templates/helpers/table_config_form.html:23 +#: templates/dcim/device_edit.html:49 templates/generic/bulk_remove.html:21 +#: utilities/templates/helpers/table_config_form.html:23 msgid "Remove" msgstr "Rimuovi" -#: netbox/templates/dcim/device_edit.html:110 +#: templates/dcim/device_edit.html:110 msgid "Local Config Context Data" msgstr "Dati di contesto di configurazione locale" -#: netbox/templates/dcim/device_list.html:82 -#: netbox/templates/dcim/moduletype/component_templates.html:17 -#: netbox/templates/generic/bulk_rename.html:57 -#: netbox/templates/virtualization/virtualmachine/interfaces.html:11 -#: netbox/templates/virtualization/virtualmachine/virtual_disks.html:11 +#: templates/dcim/device_list.html:82 templates/generic/bulk_rename.html:57 +#: templates/virtualization/virtualmachine/interfaces.html:11 +#: templates/virtualization/virtualmachine/virtual_disks.html:11 msgid "Rename" msgstr "Rinomina" -#: netbox/templates/dcim/devicebay.html:17 +#: templates/dcim/devicebay.html:17 msgid "Device Bay" msgstr "Vano per dispositivi" -#: netbox/templates/dcim/devicebay.html:43 +#: templates/dcim/devicebay.html:43 msgid "Installed Device" msgstr "Dispositivo installato" -#: netbox/templates/dcim/devicebay_depopulate.html:6 +#: templates/dcim/devicebay_depopulate.html:6 #, python-format msgid "Remove %(device)s from %(device_bay)s?" msgstr "Rimuovi %(device)s da %(device_bay)s?" -#: netbox/templates/dcim/devicebay_depopulate.html:13 +#: templates/dcim/devicebay_depopulate.html:13 #, python-format msgid "" "Are you sure you want to remove %(device)s from " @@ -12755,449 +12064,430 @@ msgstr "" "Sei sicuro di voler rimuovere %(device)s da " "%(device_bay)s?" -#: netbox/templates/dcim/devicebay_populate.html:13 +#: templates/dcim/devicebay_populate.html:13 msgid "Populate" msgstr "Popola" -#: netbox/templates/dcim/devicebay_populate.html:22 +#: templates/dcim/devicebay_populate.html:22 msgid "Bay" msgstr "Baia" -#: netbox/templates/dcim/devicerole.html:14 -#: netbox/templates/dcim/platform.html:17 +#: templates/dcim/devicerole.html:14 templates/dcim/platform.html:17 msgid "Add Device" msgstr "Aggiungi dispositivo" -#: netbox/templates/dcim/devicerole.html:40 +#: templates/dcim/devicerole.html:40 msgid "VM Role" msgstr "Ruolo VM" -#: netbox/templates/dcim/devicetype.html:18 -#: netbox/templates/dcim/moduletype.html:18 +#: templates/dcim/devicetype.html:18 templates/dcim/moduletype.html:29 msgid "Model Name" msgstr "Nome del modello" -#: netbox/templates/dcim/devicetype.html:25 -#: netbox/templates/dcim/moduletype.html:22 +#: templates/dcim/devicetype.html:25 templates/dcim/moduletype.html:33 msgid "Part Number" msgstr "Numero del pezzo" -#: netbox/templates/dcim/devicetype.html:41 +#: templates/dcim/devicetype.html:41 msgid "Exclude From Utilization" msgstr "Escludi dall'utilizzo" -#: netbox/templates/dcim/devicetype.html:59 +#: templates/dcim/devicetype.html:59 msgid "Parent/Child" msgstr "Genitore/figlio" -#: netbox/templates/dcim/devicetype.html:71 +#: templates/dcim/devicetype.html:71 msgid "Front Image" msgstr "Immagine frontale" -#: netbox/templates/dcim/devicetype.html:83 +#: templates/dcim/devicetype.html:83 msgid "Rear Image" msgstr "Immagine posteriore" -#: netbox/templates/dcim/frontport.html:54 +#: templates/dcim/frontport.html:54 msgid "Rear Port Position" msgstr "Posizione porta posteriore" -#: netbox/templates/dcim/frontport.html:72 -#: netbox/templates/dcim/interface.html:144 -#: netbox/templates/dcim/poweroutlet.html:63 -#: netbox/templates/dcim/powerport.html:63 -#: netbox/templates/dcim/rearport.html:68 +#: templates/dcim/frontport.html:72 templates/dcim/interface.html:144 +#: templates/dcim/poweroutlet.html:63 templates/dcim/powerport.html:63 +#: templates/dcim/rearport.html:68 msgid "Marked as Connected" msgstr "Contrassegnato come connesso" -#: netbox/templates/dcim/frontport.html:86 -#: netbox/templates/dcim/rearport.html:82 +#: templates/dcim/frontport.html:86 templates/dcim/rearport.html:82 msgid "Connection Status" msgstr "Stato della connessione" -#: netbox/templates/dcim/htmx/cable_edit.html:10 +#: templates/dcim/htmx/cable_edit.html:10 msgid "A Side" msgstr "Un lato" -#: netbox/templates/dcim/htmx/cable_edit.html:30 +#: templates/dcim/htmx/cable_edit.html:30 msgid "B Side" msgstr "Lato B" -#: netbox/templates/dcim/inc/cable_termination.html:65 +#: templates/dcim/inc/cable_termination.html:65 msgid "No termination" msgstr "Nessuna risoluzione" -#: netbox/templates/dcim/inc/cable_toggle_buttons.html:3 +#: templates/dcim/inc/cable_toggle_buttons.html:3 msgid "Mark Planned" msgstr "Segna pianificato" -#: netbox/templates/dcim/inc/cable_toggle_buttons.html:6 +#: templates/dcim/inc/cable_toggle_buttons.html:6 msgid "Mark Installed" msgstr "Contrassegna installato" -#: netbox/templates/dcim/inc/connection_endpoints.html:13 +#: templates/dcim/inc/connection_endpoints.html:13 msgid "Path Status" msgstr "Stato del percorso" -#: netbox/templates/dcim/inc/connection_endpoints.html:18 +#: templates/dcim/inc/connection_endpoints.html:18 msgid "Not Reachable" msgstr "Non raggiungibile" -#: netbox/templates/dcim/inc/connection_endpoints.html:23 +#: templates/dcim/inc/connection_endpoints.html:23 msgid "Path Endpoints" msgstr "Punti finali del percorso" -#: netbox/templates/dcim/inc/endpoint_connection.html:8 -#: netbox/templates/dcim/powerfeed.html:120 -#: netbox/templates/dcim/rearport.html:94 +#: templates/dcim/inc/endpoint_connection.html:8 +#: templates/dcim/powerfeed.html:120 templates/dcim/rearport.html:94 msgid "Not connected" msgstr "Non connesso" -#: netbox/templates/dcim/inc/interface_vlans_table.html:6 +#: templates/dcim/inc/interface_vlans_table.html:6 msgid "Untagged" msgstr "Senza tag" -#: netbox/templates/dcim/inc/interface_vlans_table.html:37 +#: templates/dcim/inc/interface_vlans_table.html:37 msgid "No VLANs Assigned" msgstr "Nessuna VLAN assegnata" -#: netbox/templates/dcim/inc/interface_vlans_table.html:44 -#: netbox/templates/ipam/prefix_list.html:16 -#: netbox/templates/ipam/prefix_list.html:33 +#: templates/dcim/inc/interface_vlans_table.html:44 +#: templates/ipam/prefix_list.html:16 templates/ipam/prefix_list.html:33 msgid "Clear" msgstr "Trasparente" -#: netbox/templates/dcim/inc/interface_vlans_table.html:47 +#: templates/dcim/inc/interface_vlans_table.html:47 msgid "Clear All" msgstr "Cancella tutto" -#: netbox/templates/dcim/inc/panels/racktype_dimensions.html:38 +#: templates/dcim/inc/panels/racktype_dimensions.html:38 msgid "Mounting Depth" msgstr "Profondità di montaggio" -#: netbox/templates/dcim/inc/panels/racktype_numbering.html:6 +#: templates/dcim/inc/panels/racktype_numbering.html:6 msgid "Starting Unit" msgstr "Unità di partenza" -#: netbox/templates/dcim/inc/panels/racktype_numbering.html:10 +#: templates/dcim/inc/panels/racktype_numbering.html:10 msgid "Descending Units" msgstr "Unità discendenti" -#: netbox/templates/dcim/inc/rack_elevation.html:3 +#: templates/dcim/inc/rack_elevation.html:3 msgid "Rack elevation" msgstr "Elevazione del rack" -#: netbox/templates/dcim/interface.html:17 +#: templates/dcim/interface.html:17 msgid "Add Child Interface" msgstr "Aggiungi interfaccia figlio" -#: netbox/templates/dcim/interface.html:50 +#: templates/dcim/interface.html:50 msgid "Speed/Duplex" msgstr "Velocità/Duplex" -#: netbox/templates/dcim/interface.html:73 +#: templates/dcim/interface.html:73 msgid "PoE Mode" msgstr "Modalità PoE" -#: netbox/templates/dcim/interface.html:77 +#: templates/dcim/interface.html:77 msgid "PoE Type" msgstr "Tipo PoE" -#: netbox/templates/dcim/interface.html:81 -#: netbox/templates/virtualization/vminterface.html:63 +#: templates/dcim/interface.html:81 +#: templates/virtualization/vminterface.html:63 msgid "802.1Q Mode" msgstr "Modalità 802.1Q" -#: netbox/templates/dcim/interface.html:125 -#: netbox/templates/virtualization/vminterface.html:59 +#: templates/dcim/interface.html:125 +#: templates/virtualization/vminterface.html:59 msgid "MAC Address" msgstr "Indirizzo MAC" -#: netbox/templates/dcim/interface.html:151 +#: templates/dcim/interface.html:151 msgid "Wireless Link" msgstr "Collegamento wireless" -#: netbox/templates/dcim/interface.html:218 netbox/vpn/choices.py:55 +#: templates/dcim/interface.html:218 vpn/choices.py:55 msgid "Peer" msgstr "Pari" -#: netbox/templates/dcim/interface.html:230 -#: netbox/templates/wireless/inc/wirelesslink_interface.html:26 +#: templates/dcim/interface.html:230 +#: templates/wireless/inc/wirelesslink_interface.html:26 msgid "Channel" msgstr "Canale" -#: netbox/templates/dcim/interface.html:239 -#: netbox/templates/wireless/inc/wirelesslink_interface.html:32 +#: templates/dcim/interface.html:239 +#: templates/wireless/inc/wirelesslink_interface.html:32 msgid "Channel Frequency" msgstr "Frequenza del canale" -#: netbox/templates/dcim/interface.html:242 -#: netbox/templates/dcim/interface.html:250 -#: netbox/templates/dcim/interface.html:261 -#: netbox/templates/dcim/interface.html:269 +#: templates/dcim/interface.html:242 templates/dcim/interface.html:250 +#: templates/dcim/interface.html:261 templates/dcim/interface.html:269 msgid "MHz" msgstr "MHz" -#: netbox/templates/dcim/interface.html:258 -#: netbox/templates/wireless/inc/wirelesslink_interface.html:42 +#: templates/dcim/interface.html:258 +#: templates/wireless/inc/wirelesslink_interface.html:42 msgid "Channel Width" msgstr "Larghezza del canale" -#: netbox/templates/dcim/interface.html:285 -#: netbox/templates/wireless/wirelesslan.html:14 -#: netbox/templates/wireless/wirelesslink.html:21 -#: netbox/wireless/forms/bulk_edit.py:60 -#: netbox/wireless/forms/bulk_edit.py:102 -#: netbox/wireless/forms/filtersets.py:40 -#: netbox/wireless/forms/filtersets.py:80 netbox/wireless/models.py:82 -#: netbox/wireless/models.py:156 netbox/wireless/tables/wirelesslan.py:44 +#: templates/dcim/interface.html:285 templates/wireless/wirelesslan.html:14 +#: templates/wireless/wirelesslink.html:21 wireless/forms/bulk_edit.py:60 +#: wireless/forms/bulk_edit.py:102 wireless/forms/filtersets.py:40 +#: wireless/forms/filtersets.py:80 wireless/models.py:82 +#: wireless/models.py:156 wireless/tables/wirelesslan.py:44 msgid "SSID" msgstr "SSID" -#: netbox/templates/dcim/interface.html:305 +#: templates/dcim/interface.html:305 msgid "LAG Members" msgstr "Membri del GAL" -#: netbox/templates/dcim/interface.html:323 +#: templates/dcim/interface.html:323 msgid "No member interfaces" msgstr "Nessuna interfaccia membro" -#: netbox/templates/dcim/interface.html:343 -#: netbox/templates/ipam/fhrpgroup.html:73 -#: netbox/templates/ipam/iprange/ip_addresses.html:7 -#: netbox/templates/ipam/prefix/ip_addresses.html:7 -#: netbox/templates/virtualization/vminterface.html:89 +#: templates/dcim/interface.html:343 templates/ipam/fhrpgroup.html:73 +#: templates/ipam/iprange/ip_addresses.html:7 +#: templates/ipam/prefix/ip_addresses.html:7 +#: templates/virtualization/vminterface.html:89 msgid "Add IP Address" msgstr "Aggiungi indirizzo IP" -#: netbox/templates/dcim/inventoryitem.html:24 +#: templates/dcim/inventoryitem.html:24 msgid "Parent Item" msgstr "Elemento principale" -#: netbox/templates/dcim/inventoryitem.html:48 +#: templates/dcim/inventoryitem.html:48 msgid "Part ID" msgstr "ID della parte" -#: netbox/templates/dcim/location.html:17 +#: templates/dcim/location.html:17 msgid "Add Child Location" msgstr "Aggiungi la posizione del bambino" -#: netbox/templates/dcim/location.html:77 +#: templates/dcim/location.html:77 msgid "Child Locations" msgstr "Sedi per bambini" -#: netbox/templates/dcim/location.html:81 netbox/templates/dcim/site.html:131 +#: templates/dcim/location.html:81 templates/dcim/site.html:131 msgid "Add a Location" msgstr "Aggiungi una posizione" -#: netbox/templates/dcim/location.html:94 netbox/templates/dcim/site.html:144 +#: templates/dcim/location.html:94 templates/dcim/site.html:144 msgid "Add a Device" msgstr "Aggiungi un dispositivo" -#: netbox/templates/dcim/manufacturer.html:16 +#: templates/dcim/manufacturer.html:16 msgid "Add Device Type" msgstr "Aggiungi tipo di dispositivo" -#: netbox/templates/dcim/manufacturer.html:21 +#: templates/dcim/manufacturer.html:21 msgid "Add Module Type" msgstr "Aggiungi tipo di modulo" -#: netbox/templates/dcim/powerfeed.html:53 +#: templates/dcim/powerfeed.html:53 msgid "Connected Device" msgstr "Dispositivo connesso" -#: netbox/templates/dcim/powerfeed.html:63 +#: templates/dcim/powerfeed.html:63 msgid "Utilization (Allocated" msgstr "Utilizzo (allocato)" -#: netbox/templates/dcim/powerfeed.html:80 +#: templates/dcim/powerfeed.html:80 msgid "Electrical Characteristics" msgstr "Caratteristiche elettriche" -#: netbox/templates/dcim/powerfeed.html:88 +#: templates/dcim/powerfeed.html:88 msgctxt "Abbreviation for volts" msgid "V" msgstr "V" -#: netbox/templates/dcim/powerfeed.html:92 +#: templates/dcim/powerfeed.html:92 msgctxt "Abbreviation for amperes" msgid "A" msgstr "UN" -#: netbox/templates/dcim/poweroutlet.html:48 +#: templates/dcim/poweroutlet.html:48 msgid "Feed Leg" msgstr "Feed Leg" -#: netbox/templates/dcim/powerpanel.html:72 +#: templates/dcim/powerpanel.html:72 msgid "Add Power Feeds" msgstr "Aggiungi alimentatori" -#: netbox/templates/dcim/powerport.html:44 +#: templates/dcim/powerport.html:44 msgid "Maximum Draw" msgstr "Estrazione massima" -#: netbox/templates/dcim/powerport.html:48 +#: templates/dcim/powerport.html:48 msgid "Allocated Draw" msgstr "Pareggio assegnato" -#: netbox/templates/dcim/rack.html:69 +#: templates/dcim/rack.html:69 msgid "Space Utilization" msgstr "Utilizzo dello spazio" -#: netbox/templates/dcim/rack.html:84 netbox/templates/dcim/racktype.html:44 +#: templates/dcim/rack.html:84 templates/dcim/racktype.html:44 msgid "Rack Weight" msgstr "Peso dello scaffale" -#: netbox/templates/dcim/rack.html:94 netbox/templates/dcim/racktype.html:54 +#: templates/dcim/rack.html:94 templates/dcim/racktype.html:54 msgid "Maximum Weight" msgstr "Peso massimo" -#: netbox/templates/dcim/rack.html:104 +#: templates/dcim/rack.html:104 msgid "Total Weight" msgstr "Peso totale" -#: netbox/templates/dcim/rack.html:125 -#: netbox/templates/dcim/rack_elevation_list.html:15 +#: templates/dcim/rack.html:125 templates/dcim/rack_elevation_list.html:15 msgid "Images and Labels" msgstr "Immagini ed etichette" -#: netbox/templates/dcim/rack.html:126 -#: netbox/templates/dcim/rack_elevation_list.html:16 +#: templates/dcim/rack.html:126 templates/dcim/rack_elevation_list.html:16 msgid "Images only" msgstr "Solo immagini" -#: netbox/templates/dcim/rack.html:127 -#: netbox/templates/dcim/rack_elevation_list.html:17 +#: templates/dcim/rack.html:127 templates/dcim/rack_elevation_list.html:17 msgid "Labels only" msgstr "Solo etichette" -#: netbox/templates/dcim/rack/reservations.html:8 +#: templates/dcim/rack/reservations.html:8 msgid "Add reservation" msgstr "Aggiungi prenotazione" -#: netbox/templates/dcim/rack_elevation_list.html:12 +#: templates/dcim/rack_elevation_list.html:12 msgid "View List" msgstr "Visualizza elenco" -#: netbox/templates/dcim/rack_elevation_list.html:14 +#: templates/dcim/rack_elevation_list.html:14 msgid "Select rack view" msgstr "Seleziona la vista del rack" -#: netbox/templates/dcim/rack_elevation_list.html:25 +#: templates/dcim/rack_elevation_list.html:25 msgid "Sort By" msgstr "Ordina per" -#: netbox/templates/dcim/rack_elevation_list.html:74 +#: templates/dcim/rack_elevation_list.html:74 msgid "No Racks Found" msgstr "Nessun rack trovato" -#: netbox/templates/dcim/rack_list.html:8 +#: templates/dcim/rack_list.html:8 msgid "View Elevations" msgstr "Visualizza elevazioni" -#: netbox/templates/dcim/rackreservation.html:42 +#: templates/dcim/rackreservation.html:42 msgid "Reservation Details" msgstr "Dettagli della prenotazione" -#: netbox/templates/dcim/rackrole.html:10 +#: templates/dcim/rackrole.html:10 msgid "Add Rack" msgstr "Aggiungi rack" -#: netbox/templates/dcim/rearport.html:50 +#: templates/dcim/rearport.html:50 msgid "Positions" msgstr "Posizioni" -#: netbox/templates/dcim/region.html:17 -#: netbox/templates/dcim/sitegroup.html:17 +#: templates/dcim/region.html:17 templates/dcim/sitegroup.html:17 msgid "Add Site" msgstr "Aggiungi sito" -#: netbox/templates/dcim/region.html:55 +#: templates/dcim/region.html:55 msgid "Child Regions" msgstr "Regioni per bambini" -#: netbox/templates/dcim/region.html:59 +#: templates/dcim/region.html:59 msgid "Add Region" msgstr "Aggiungi regione" -#: netbox/templates/dcim/site.html:64 +#: templates/dcim/site.html:64 msgid "Time Zone" msgstr "Fuso orario" -#: netbox/templates/dcim/site.html:67 +#: templates/dcim/site.html:67 msgid "UTC" msgstr "UTC" -#: netbox/templates/dcim/site.html:68 +#: templates/dcim/site.html:68 msgid "Site time" msgstr "Ora del sito" -#: netbox/templates/dcim/site.html:75 +#: templates/dcim/site.html:75 msgid "Physical Address" msgstr "Indirizzo fisico" -#: netbox/templates/dcim/site.html:90 +#: templates/dcim/site.html:90 msgid "Shipping Address" msgstr "Indirizzo di spedizione" -#: netbox/templates/dcim/sitegroup.html:55 -#: netbox/templates/tenancy/contactgroup.html:46 -#: netbox/templates/tenancy/tenantgroup.html:55 -#: netbox/templates/wireless/wirelesslangroup.html:55 +#: templates/dcim/sitegroup.html:55 templates/tenancy/contactgroup.html:46 +#: templates/tenancy/tenantgroup.html:55 +#: templates/wireless/wirelesslangroup.html:55 msgid "Child Groups" msgstr "Gruppi di bambini" -#: netbox/templates/dcim/sitegroup.html:59 +#: templates/dcim/sitegroup.html:59 msgid "Add Site Group" msgstr "Aggiungi gruppo di siti" -#: netbox/templates/dcim/trace/attachment.html:5 -#: netbox/templates/extras/exporttemplate.html:31 +#: templates/dcim/trace/attachment.html:5 +#: templates/extras/exporttemplate.html:31 msgid "Attachment" msgstr "Allegato" -#: netbox/templates/dcim/virtualchassis.html:57 +#: templates/dcim/virtualchassis.html:57 msgid "Add Member" msgstr "Aggiungi membro" -#: netbox/templates/dcim/virtualchassis_add.html:18 +#: templates/dcim/virtualchassis_add.html:18 msgid "Member Devices" msgstr "Dispositivi per i membri" -#: netbox/templates/dcim/virtualchassis_add_member.html:10 +#: templates/dcim/virtualchassis_add_member.html:10 #, python-format msgid "Add New Member to Virtual Chassis %(virtual_chassis)s" msgstr "Aggiungi nuovo membro allo chassis virtuale %(virtual_chassis)s" -#: netbox/templates/dcim/virtualchassis_add_member.html:19 +#: templates/dcim/virtualchassis_add_member.html:19 msgid "Add New Member" msgstr "Aggiungi nuovo membro" -#: netbox/templates/dcim/virtualchassis_add_member.html:27 -#: netbox/templates/generic/object_edit.html:78 -#: netbox/templates/users/objectpermission.html:31 -#: netbox/users/forms/filtersets.py:67 netbox/users/forms/model_forms.py:312 +#: templates/dcim/virtualchassis_add_member.html:27 +#: templates/generic/object_edit.html:78 +#: templates/users/objectpermission.html:31 users/forms/filtersets.py:67 +#: users/forms/model_forms.py:312 msgid "Actions" msgstr "Azioni" -#: netbox/templates/dcim/virtualchassis_add_member.html:29 +#: templates/dcim/virtualchassis_add_member.html:29 msgid "Save & Add Another" msgstr "Salva e aggiungine un altro" -#: netbox/templates/dcim/virtualchassis_edit.html:7 +#: templates/dcim/virtualchassis_edit.html:7 #, python-format msgid "Editing Virtual Chassis %(name)s" msgstr "Modifica dello chassis virtuale %(name)s" -#: netbox/templates/dcim/virtualchassis_edit.html:53 +#: templates/dcim/virtualchassis_edit.html:53 msgid "Rack/Unit" msgstr "Rack/unità" -#: netbox/templates/dcim/virtualchassis_remove_member.html:5 +#: templates/dcim/virtualchassis_remove_member.html:5 msgid "Remove Virtual Chassis Member" msgstr "Rimuovi membro dello chassis virtuale" -#: netbox/templates/dcim/virtualchassis_remove_member.html:9 +#: templates/dcim/virtualchassis_remove_member.html:9 #, python-format msgid "" "Are you sure you want to remove %(device)s from virtual " @@ -13206,12 +12496,11 @@ msgstr "" "Sei sicuro di voler rimuovere %(device)s da chassis " "virtuale %(name)s?" -#: netbox/templates/dcim/virtualdevicecontext.html:26 -#: netbox/templates/vpn/l2vpn.html:18 +#: templates/dcim/virtualdevicecontext.html:26 templates/vpn/l2vpn.html:18 msgid "Identifier" msgstr "Identificatore" -#: netbox/templates/exceptions/import_error.html:6 +#: templates/exceptions/import_error.html:6 msgid "" "A module import error occurred during this request. Common causes include " "the following:" @@ -13219,11 +12508,11 @@ msgstr "" "Durante questa richiesta si è verificato un errore di importazione del " "modulo. Le cause più comuni sono le seguenti:" -#: netbox/templates/exceptions/import_error.html:10 +#: templates/exceptions/import_error.html:10 msgid "Missing required packages" msgstr "Pacchetti obbligatori mancanti" -#: netbox/templates/exceptions/import_error.html:11 +#: templates/exceptions/import_error.html:11 msgid "" "This installation of NetBox might be missing one or more required Python " "packages. These packages are listed in requirements.txt and " @@ -13240,11 +12529,11 @@ msgstr "" "congelamento dei tubi dalla console e confronta l'output con " "l'elenco dei pacchetti richiesti." -#: netbox/templates/exceptions/import_error.html:20 +#: templates/exceptions/import_error.html:20 msgid "WSGI service not restarted after upgrade" msgstr "Il servizio WSGI non è stato riavviato dopo l'aggiornamento" -#: netbox/templates/exceptions/import_error.html:21 +#: templates/exceptions/import_error.html:21 msgid "" "If this installation has recently been upgraded, check that the WSGI service" " (e.g. gunicorn or uWSGI) has been restarted. This ensures that the new code" @@ -13254,7 +12543,7 @@ msgstr "" "servizio WSGI (ad esempio gunicorn o uWSGI) sia stato riavviato. Questo " "assicura che il nuovo codice sia in esecuzione." -#: netbox/templates/exceptions/permission_error.html:6 +#: templates/exceptions/permission_error.html:6 msgid "" "A file permission error was detected while processing this request. Common " "causes include the following:" @@ -13262,12 +12551,12 @@ msgstr "" "È stato rilevato un errore di autorizzazione del file durante l'elaborazione" " di questa richiesta. Le cause più comuni sono le seguenti:" -#: netbox/templates/exceptions/permission_error.html:10 +#: templates/exceptions/permission_error.html:10 msgid "Insufficient write permission to the media root" msgstr "" "Autorizzazione di scrittura insufficiente per il file multimediale root" -#: netbox/templates/exceptions/permission_error.html:11 +#: templates/exceptions/permission_error.html:11 #, python-format msgid "" "The configured media root is %(media_root)s. Ensure that the " @@ -13278,7 +12567,7 @@ msgstr "" " che l'utente che esegue NetBox abbia accesso per scrivere file in tutte le " "posizioni all'interno di questo percorso." -#: netbox/templates/exceptions/programming_error.html:6 +#: templates/exceptions/programming_error.html:6 msgid "" "A database programming error was detected while processing this request. " "Common causes include the following:" @@ -13286,11 +12575,11 @@ msgstr "" "È stato rilevato un errore di programmazione del database durante " "l'elaborazione di questa richiesta. Le cause più comuni sono le seguenti:" -#: netbox/templates/exceptions/programming_error.html:10 +#: templates/exceptions/programming_error.html:10 msgid "Database migrations missing" msgstr "Migrazioni del database mancanti" -#: netbox/templates/exceptions/programming_error.html:11 +#: templates/exceptions/programming_error.html:11 msgid "" "When upgrading to a new NetBox release, the upgrade script must be run to " "apply any new database migrations. You can run migrations manually by " @@ -13301,11 +12590,11 @@ msgstr "" " migrazioni del database. È possibile eseguire le migrazioni manualmente " "eseguendo python3 manage.py migrare dalla riga di comando." -#: netbox/templates/exceptions/programming_error.html:18 +#: templates/exceptions/programming_error.html:18 msgid "Unsupported PostgreSQL version" msgstr "Versione PostgreSQL non supportata" -#: netbox/templates/exceptions/programming_error.html:19 +#: templates/exceptions/programming_error.html:19 msgid "" "Ensure that PostgreSQL version 12 or later is in use. You can check this by " "connecting to the database using NetBox's credentials and issuing a query " @@ -13315,102 +12604,99 @@ msgstr "" "verificarlo connettendoti al database utilizzando le credenziali di NetBox " "ed eseguendo una richiesta per SELEZIONA LA VERSIONE ()." -#: netbox/templates/extras/configcontext.html:45 -#: netbox/templates/extras/configtemplate.html:37 -#: netbox/templates/extras/exporttemplate.html:51 +#: templates/extras/configcontext.html:45 +#: templates/extras/configtemplate.html:37 +#: templates/extras/exporttemplate.html:51 msgid "The data file associated with this object has been deleted" msgstr "Il file di dati associato a questo oggetto è stato eliminato" -#: netbox/templates/extras/configcontext.html:54 -#: netbox/templates/extras/configtemplate.html:46 -#: netbox/templates/extras/exporttemplate.html:60 +#: templates/extras/configcontext.html:54 +#: templates/extras/configtemplate.html:46 +#: templates/extras/exporttemplate.html:60 msgid "Data Synced" msgstr "Dati sincronizzati" -#: netbox/templates/extras/configcontext_list.html:7 -#: netbox/templates/extras/configtemplate_list.html:7 -#: netbox/templates/extras/exporttemplate_list.html:7 +#: templates/extras/configcontext_list.html:7 +#: templates/extras/configtemplate_list.html:7 +#: templates/extras/exporttemplate_list.html:7 msgid "Sync Data" msgstr "Sincronizzazione dati" -#: netbox/templates/extras/configtemplate.html:56 +#: templates/extras/configtemplate.html:56 msgid "Environment Parameters" msgstr "Parametri ambientali" -#: netbox/templates/extras/configtemplate.html:67 -#: netbox/templates/extras/exporttemplate.html:79 +#: templates/extras/configtemplate.html:67 +#: templates/extras/exporttemplate.html:79 msgid "Template" msgstr "Modello" -#: netbox/templates/extras/customfield.html:30 -#: netbox/templates/extras/customlink.html:21 +#: templates/extras/customfield.html:30 templates/extras/customlink.html:21 msgid "Group Name" msgstr "Nome del gruppo" -#: netbox/templates/extras/customfield.html:42 +#: templates/extras/customfield.html:42 msgid "Must be Unique" msgstr "Deve essere unico" -#: netbox/templates/extras/customfield.html:46 +#: templates/extras/customfield.html:46 msgid "Cloneable" msgstr "Clonabile" -#: netbox/templates/extras/customfield.html:56 +#: templates/extras/customfield.html:56 msgid "Default Value" msgstr "Valore predefinito" -#: netbox/templates/extras/customfield.html:73 +#: templates/extras/customfield.html:73 msgid "Search Weight" msgstr "Cerca peso" -#: netbox/templates/extras/customfield.html:83 +#: templates/extras/customfield.html:83 msgid "Filter Logic" msgstr "Logica del filtro" -#: netbox/templates/extras/customfield.html:87 +#: templates/extras/customfield.html:87 msgid "Display Weight" msgstr "Peso dello schermo" -#: netbox/templates/extras/customfield.html:91 +#: templates/extras/customfield.html:91 msgid "UI Visible" msgstr "Interfaccia utente visibile" -#: netbox/templates/extras/customfield.html:95 +#: templates/extras/customfield.html:95 msgid "UI Editable" msgstr "Interfaccia utente modificabile" -#: netbox/templates/extras/customfield.html:115 +#: templates/extras/customfield.html:115 msgid "Validation Rules" msgstr "Regole di convalida" -#: netbox/templates/extras/customfield.html:126 +#: templates/extras/customfield.html:126 msgid "Regular Expression" msgstr "Espressione regolare" -#: netbox/templates/extras/customlink.html:29 +#: templates/extras/customlink.html:29 msgid "Button Class" msgstr "Classe Button" -#: netbox/templates/extras/customlink.html:39 -#: netbox/templates/extras/exporttemplate.html:66 -#: netbox/templates/extras/savedfilter.html:39 +#: templates/extras/customlink.html:39 templates/extras/exporttemplate.html:66 +#: templates/extras/savedfilter.html:39 msgid "Assigned Models" msgstr "Modelli assegnati" -#: netbox/templates/extras/customlink.html:52 +#: templates/extras/customlink.html:52 msgid "Link Text" msgstr "Testo del link" -#: netbox/templates/extras/customlink.html:58 +#: templates/extras/customlink.html:58 msgid "Link URL" msgstr "URL del collegamento" -#: netbox/templates/extras/dashboard/reset.html:4 -#: netbox/templates/home.html:66 +#: templates/extras/dashboard/reset.html:4 templates/home.html:66 msgid "Reset Dashboard" msgstr "Reimposta dashboard" -#: netbox/templates/extras/dashboard/reset.html:8 +#: templates/extras/dashboard/reset.html:8 msgid "" "This will remove all configured widgets and restore the " "default dashboard configuration." @@ -13418,7 +12704,7 @@ msgstr "" "Questo rimuoverà tutti widget configurati e ripristina la " "configurazione predefinita del dashboard." -#: netbox/templates/extras/dashboard/reset.html:13 +#: templates/extras/dashboard/reset.html:13 msgid "" "This change affects only your dashboard, and will not impact other " "users." @@ -13426,157 +12712,155 @@ msgstr "" "Questa modifica riguarda solo tuo dashboard e non avrà alcun impatto " "sugli altri utenti." -#: netbox/templates/extras/dashboard/widget.html:21 +#: templates/extras/dashboard/widget.html:21 msgid "widget configuration" msgstr "configurazione del widget" -#: netbox/templates/extras/dashboard/widget.html:36 +#: templates/extras/dashboard/widget.html:36 msgid "Close widget" msgstr "Chiudi widget" -#: netbox/templates/extras/dashboard/widget_add.html:7 +#: templates/extras/dashboard/widget_add.html:7 msgid "Add a Widget" msgstr "Aggiungi un widget" -#: netbox/templates/extras/dashboard/widgets/bookmarks.html:14 +#: templates/extras/dashboard/widgets/bookmarks.html:14 msgid "No bookmarks have been added yet." msgstr "Nessun segnalibro è stato ancora aggiunto." -#: netbox/templates/extras/dashboard/widgets/objectcounts.html:10 +#: templates/extras/dashboard/widgets/objectcounts.html:10 msgid "No permission" msgstr "Nessuna autorizzazione" -#: netbox/templates/extras/dashboard/widgets/objectlist.html:6 +#: templates/extras/dashboard/widgets/objectlist.html:6 msgid "No permission to view this content" msgstr "Nessuna autorizzazione per visualizzare questo contenuto" -#: netbox/templates/extras/dashboard/widgets/objectlist.html:10 +#: templates/extras/dashboard/widgets/objectlist.html:10 msgid "Unable to load content. Invalid view name" msgstr "Impossibile caricare il contenuto. Nome di visualizzazione non valido" -#: netbox/templates/extras/dashboard/widgets/rssfeed.html:12 +#: templates/extras/dashboard/widgets/rssfeed.html:12 msgid "No content found" msgstr "Nessun contenuto trovato" -#: netbox/templates/extras/dashboard/widgets/rssfeed.html:18 +#: templates/extras/dashboard/widgets/rssfeed.html:18 msgid "There was a problem fetching the RSS feed" msgstr "Si è verificato un problema durante il recupero del feed RSS" -#: netbox/templates/extras/dashboard/widgets/rssfeed.html:21 +#: templates/extras/dashboard/widgets/rssfeed.html:21 msgid "HTTP" msgstr "HTTP" -#: netbox/templates/extras/eventrule.html:61 +#: templates/extras/eventrule.html:61 msgid "Conditions" msgstr "Condizioni" -#: netbox/templates/extras/exporttemplate.html:23 +#: templates/extras/exporttemplate.html:23 msgid "MIME Type" msgstr "Tipo MIME" -#: netbox/templates/extras/exporttemplate.html:27 +#: templates/extras/exporttemplate.html:27 msgid "File Extension" msgstr "Estensione del file" -#: netbox/templates/extras/htmx/script_result.html:10 +#: templates/extras/htmx/script_result.html:10 msgid "Scheduled for" msgstr "Previsto per" -#: netbox/templates/extras/htmx/script_result.html:15 +#: templates/extras/htmx/script_result.html:15 msgid "Duration" msgstr "Durata" -#: netbox/templates/extras/htmx/script_result.html:23 +#: templates/extras/htmx/script_result.html:23 msgid "Test Summary" msgstr "Riepilogo del test" -#: netbox/templates/extras/htmx/script_result.html:43 +#: templates/extras/htmx/script_result.html:43 msgid "Log" msgstr "Registro" -#: netbox/templates/extras/htmx/script_result.html:56 +#: templates/extras/htmx/script_result.html:56 msgid "Output" msgstr "Uscita" -#: netbox/templates/extras/inc/result_pending.html:4 +#: templates/extras/inc/result_pending.html:4 msgid "Loading" msgstr "Caricamento" -#: netbox/templates/extras/inc/result_pending.html:6 +#: templates/extras/inc/result_pending.html:6 msgid "Results pending" msgstr "Risultati in sospeso" -#: netbox/templates/extras/journalentry.html:15 +#: templates/extras/journalentry.html:15 msgid "Journal Entry" msgstr "Inserimento nel diario" -#: netbox/templates/extras/notificationgroup.html:11 +#: templates/extras/notificationgroup.html:11 msgid "Notification Group" msgstr "Gruppo di notifiche" -#: netbox/templates/extras/notificationgroup.html:36 -#: netbox/templates/extras/notificationgroup.html:46 -#: netbox/utilities/templates/widgets/clearable_file_input.html:12 +#: templates/extras/notificationgroup.html:36 +#: templates/extras/notificationgroup.html:46 +#: utilities/templates/widgets/clearable_file_input.html:12 msgid "None assigned" msgstr "Nessuno assegnato" -#: netbox/templates/extras/object_configcontext.html:19 +#: templates/extras/object_configcontext.html:19 msgid "The local config context overwrites all source contexts" msgstr "" "Il contesto di configurazione locale sovrascrive tutti i contesti di origine" -#: netbox/templates/extras/object_configcontext.html:25 +#: templates/extras/object_configcontext.html:25 msgid "Source Contexts" msgstr "Contesti di origine" -#: netbox/templates/extras/object_journal.html:17 +#: templates/extras/object_journal.html:17 msgid "New Journal Entry" msgstr "Nuova voce nel diario" -#: netbox/templates/extras/report/base.html:30 +#: templates/extras/report/base.html:30 msgid "Report" msgstr "Rapporto" -#: netbox/templates/extras/script.html:14 +#: templates/extras/script.html:14 msgid "You do not have permission to run scripts" msgstr "Non si dispone dell'autorizzazione per eseguire gli script" -#: netbox/templates/extras/script.html:41 -#: netbox/templates/extras/script.html:45 -#: netbox/templates/extras/script_list.html:86 +#: templates/extras/script.html:41 templates/extras/script.html:45 +#: templates/extras/script_list.html:86 msgid "Run Script" msgstr "Esegui script" -#: netbox/templates/extras/script.html:51 -#: netbox/templates/extras/script/source.html:10 +#: templates/extras/script.html:51 templates/extras/script/source.html:10 msgid "Error loading script" msgstr "Errore durante il caricamento dello script" -#: netbox/templates/extras/script/jobs.html:16 +#: templates/extras/script/jobs.html:16 msgid "Script no longer exists in the source file." msgstr "Lo script non esiste più nel file sorgente." -#: netbox/templates/extras/script_list.html:46 +#: templates/extras/script_list.html:46 msgid "Last Run" msgstr "Ultima corsa" -#: netbox/templates/extras/script_list.html:61 +#: templates/extras/script_list.html:61 msgid "Script is no longer present in the source file" msgstr "Lo script non è più presente nel file sorgente" -#: netbox/templates/extras/script_list.html:74 +#: templates/extras/script_list.html:74 msgid "Never" msgstr "Mai" -#: netbox/templates/extras/script_list.html:84 +#: templates/extras/script_list.html:84 msgid "Run Again" msgstr "Corri ancora" -#: netbox/templates/extras/script_list.html:138 +#: templates/extras/script_list.html:138 msgid "No Scripts Found" msgstr "Nessuno script trovato" -#: netbox/templates/extras/script_list.html:141 +#: templates/extras/script_list.html:141 #, python-format msgid "" "Get started by creating a script from " @@ -13585,83 +12869,81 @@ msgstr "" "Inizia da creazione di uno script da " "un file o da una fonte di dati caricati." -#: netbox/templates/extras/script_result.html:35 -#: netbox/templates/generic/object_list.html:50 -#: netbox/templates/search.html:13 +#: templates/extras/script_result.html:35 +#: templates/generic/object_list.html:50 templates/search.html:13 msgid "Results" msgstr "Risultati" -#: netbox/templates/extras/script_result.html:46 +#: templates/extras/script_result.html:46 msgid "Log threshold" msgstr "Soglia di log" -#: netbox/templates/extras/script_result.html:56 +#: templates/extras/script_result.html:56 msgid "All" msgstr "Tutti" -#: netbox/templates/extras/tag.html:32 +#: templates/extras/tag.html:32 msgid "Tagged Items" msgstr "Oggetti con tag" -#: netbox/templates/extras/tag.html:43 +#: templates/extras/tag.html:43 msgid "Allowed Object Types" msgstr "Tipi di oggetti consentiti" -#: netbox/templates/extras/tag.html:51 +#: templates/extras/tag.html:51 msgid "Any" msgstr "Qualsiasi" -#: netbox/templates/extras/tag.html:57 +#: templates/extras/tag.html:57 msgid "Tagged Item Types" msgstr "Tipi di articoli con tag" -#: netbox/templates/extras/tag.html:81 +#: templates/extras/tag.html:81 msgid "Tagged Objects" msgstr "Oggetti taggati" -#: netbox/templates/extras/webhook.html:26 +#: templates/extras/webhook.html:26 msgid "HTTP Method" msgstr "Metodo HTTP" -#: netbox/templates/extras/webhook.html:34 +#: templates/extras/webhook.html:34 msgid "HTTP Content Type" msgstr "Tipo di contenuto HTTP" -#: netbox/templates/extras/webhook.html:47 +#: templates/extras/webhook.html:47 msgid "SSL Verification" msgstr "Verifica SSL" -#: netbox/templates/extras/webhook.html:60 +#: templates/extras/webhook.html:60 msgid "Additional Headers" msgstr "Intestazioni aggiuntive" -#: netbox/templates/extras/webhook.html:70 +#: templates/extras/webhook.html:70 msgid "Body Template" msgstr "Modello di corpo" -#: netbox/templates/generic/bulk_add_component.html:29 +#: templates/generic/bulk_add_component.html:29 msgid "Bulk Creation" msgstr "Creazione in blocco" -#: netbox/templates/generic/bulk_add_component.html:34 -#: netbox/templates/generic/bulk_delete.html:32 -#: netbox/templates/generic/bulk_edit.html:33 +#: templates/generic/bulk_add_component.html:34 +#: templates/generic/bulk_delete.html:32 templates/generic/bulk_edit.html:33 msgid "Selected Objects" msgstr "Oggetti selezionati" -#: netbox/templates/generic/bulk_add_component.html:58 +#: templates/generic/bulk_add_component.html:58 msgid "to Add" msgstr "da aggiungere" -#: netbox/templates/generic/bulk_delete.html:27 +#: templates/generic/bulk_delete.html:27 msgid "Bulk Delete" msgstr "Eliminazione in blocco" -#: netbox/templates/generic/bulk_delete.html:49 +#: templates/generic/bulk_delete.html:49 msgid "Confirm Bulk Deletion" msgstr "Conferma l'eliminazione in blocco" -#: netbox/templates/generic/bulk_delete.html:50 +#: templates/generic/bulk_delete.html:50 #, python-format msgid "" "The following operation will delete %(count)s " @@ -13671,69 +12953,66 @@ msgstr "" "La seguente operazione eliminerà %(count)s %(type_plural)s." " Esamina attentamente gli oggetti selezionati e conferma questa azione." -#: netbox/templates/generic/bulk_edit.html:21 -#: netbox/templates/generic/object_edit.html:22 +#: templates/generic/bulk_edit.html:21 templates/generic/object_edit.html:22 msgid "Editing" msgstr "Redazione" -#: netbox/templates/generic/bulk_edit.html:28 +#: templates/generic/bulk_edit.html:28 msgid "Bulk Edit" msgstr "Modifica in blocco" -#: netbox/templates/generic/bulk_edit.html:107 -#: netbox/templates/generic/bulk_rename.html:66 +#: templates/generic/bulk_edit.html:107 templates/generic/bulk_rename.html:66 msgid "Apply" msgstr "Applica" -#: netbox/templates/generic/bulk_import.html:19 +#: templates/generic/bulk_import.html:19 msgid "Bulk Import" msgstr "Importazione in blocco" -#: netbox/templates/generic/bulk_import.html:25 +#: templates/generic/bulk_import.html:25 msgid "Direct Import" msgstr "Importazione diretta" -#: netbox/templates/generic/bulk_import.html:30 +#: templates/generic/bulk_import.html:30 msgid "Upload File" msgstr "Carica file" -#: netbox/templates/generic/bulk_import.html:58 -#: netbox/templates/generic/bulk_import.html:80 -#: netbox/templates/generic/bulk_import.html:102 +#: templates/generic/bulk_import.html:58 templates/generic/bulk_import.html:80 +#: templates/generic/bulk_import.html:102 msgid "Submit" msgstr "Invia" -#: netbox/templates/generic/bulk_import.html:113 +#: templates/generic/bulk_import.html:113 msgid "Field Options" msgstr "Opzioni di campo" -#: netbox/templates/generic/bulk_import.html:119 +#: templates/generic/bulk_import.html:119 msgid "Accessor" msgstr "Accessor" -#: netbox/templates/generic/bulk_import.html:148 +#: templates/generic/bulk_import.html:148 msgid "choices" msgstr "scelte" -#: netbox/templates/generic/bulk_import.html:161 +#: templates/generic/bulk_import.html:161 msgid "Import Value" msgstr "Valore di importazione" -#: netbox/templates/generic/bulk_import.html:181 +#: templates/generic/bulk_import.html:181 msgid "Format: YYYY-MM-DD" msgstr "Formato: AAAA-MM-GG" -#: netbox/templates/generic/bulk_import.html:183 +#: templates/generic/bulk_import.html:183 msgid "Specify true or false" msgstr "Specifica vero o falso" -#: netbox/templates/generic/bulk_import.html:195 +#: templates/generic/bulk_import.html:195 msgid "Required fields must be specified for all objects." msgstr "" "Campi obbligatori dovere essere specificato per tutti gli " "oggetti." -#: netbox/templates/generic/bulk_import.html:201 +#: templates/generic/bulk_import.html:201 #, python-format msgid "" "Related objects may be referenced by any unique attribute. For example, " @@ -13743,15 +13022,15 @@ msgstr "" "univoco. Ad esempio %(example)s identificherebbe un VRF tramite" " il suo identificatore di percorso." -#: netbox/templates/generic/bulk_remove.html:28 +#: templates/generic/bulk_remove.html:28 msgid "Bulk Remove" msgstr "Rimuovi in blocco" -#: netbox/templates/generic/bulk_remove.html:42 +#: templates/generic/bulk_remove.html:42 msgid "Confirm Bulk Removal" msgstr "Conferma la rimozione in blocco" -#: netbox/templates/generic/bulk_remove.html:43 +#: templates/generic/bulk_remove.html:43 #, python-format msgid "" "The following operation will remove %(count)s %(obj_type_plural)s from " @@ -13762,72 +13041,72 @@ msgstr "" "%(parent_obj)s. Si prega di rivedere attentamente il %(obj_type_plural)s da " "rimuovere e confermare qui sotto." -#: netbox/templates/generic/bulk_remove.html:64 +#: templates/generic/bulk_remove.html:64 #, python-format msgid "Remove these %(count)s %(obj_type_plural)s" msgstr "Rimuovi questi %(count)s %(obj_type_plural)s" -#: netbox/templates/generic/bulk_rename.html:20 +#: templates/generic/bulk_rename.html:20 msgid "Renaming" msgstr "Ridenominazione" -#: netbox/templates/generic/bulk_rename.html:27 +#: templates/generic/bulk_rename.html:27 msgid "Bulk Rename" msgstr "Rinomina in blocco" -#: netbox/templates/generic/bulk_rename.html:39 +#: templates/generic/bulk_rename.html:39 msgid "Current Name" msgstr "Nome attuale" -#: netbox/templates/generic/bulk_rename.html:40 +#: templates/generic/bulk_rename.html:40 msgid "New Name" msgstr "Nuovo nome" -#: netbox/templates/generic/bulk_rename.html:64 -#: netbox/utilities/templates/widgets/markdown_input.html:11 +#: templates/generic/bulk_rename.html:64 +#: utilities/templates/widgets/markdown_input.html:11 msgid "Preview" msgstr "Anteprima" -#: netbox/templates/generic/confirmation_form.html:16 +#: templates/generic/confirmation_form.html:16 msgid "Are you sure" msgstr "Sei sicuro?" -#: netbox/templates/generic/confirmation_form.html:20 +#: templates/generic/confirmation_form.html:20 msgid "Confirm" msgstr "Confermare" -#: netbox/templates/generic/object_children.html:47 -#: netbox/utilities/templates/buttons/bulk_edit.html:4 +#: templates/generic/object_children.html:47 +#: utilities/templates/buttons/bulk_edit.html:4 msgid "Edit Selected" msgstr "Modifica selezionato" -#: netbox/templates/generic/object_children.html:61 -#: netbox/utilities/templates/buttons/bulk_delete.html:4 +#: templates/generic/object_children.html:61 +#: utilities/templates/buttons/bulk_delete.html:4 msgid "Delete Selected" msgstr "Elimina selezionati" -#: netbox/templates/generic/object_edit.html:24 +#: templates/generic/object_edit.html:24 #, python-format msgid "Add a new %(object_type)s" msgstr "Aggiungi un nuovo %(object_type)s" -#: netbox/templates/generic/object_edit.html:35 +#: templates/generic/object_edit.html:35 msgid "View model documentation" msgstr "Visualizza la documentazione del modello" -#: netbox/templates/generic/object_edit.html:36 +#: templates/generic/object_edit.html:36 msgid "Help" msgstr "Aiuto" -#: netbox/templates/generic/object_edit.html:83 +#: templates/generic/object_edit.html:83 msgid "Create & Add Another" msgstr "Crea e aggiungi un altro" -#: netbox/templates/generic/object_list.html:57 +#: templates/generic/object_list.html:57 msgid "Filters" msgstr "Filtri" -#: netbox/templates/generic/object_list.html:88 +#: templates/generic/object_list.html:88 #, python-format msgid "" "Select all %(count)s " @@ -13836,40 +13115,40 @@ msgstr "" "Seleziona tutti %(count)s " "%(object_type_plural)s domanda corrispondente" -#: netbox/templates/home.html:15 +#: templates/home.html:15 msgid "New Release Available" msgstr "Nuova versione disponibile" -#: netbox/templates/home.html:16 +#: templates/home.html:16 msgid "is available" msgstr "è disponibile" -#: netbox/templates/home.html:18 +#: templates/home.html:18 msgctxt "Document title" msgid "Upgrade Instructions" msgstr "Istruzioni per l'aggiornamento" -#: netbox/templates/home.html:40 +#: templates/home.html:40 msgid "Unlock Dashboard" msgstr "Sblocca dashboard" -#: netbox/templates/home.html:49 +#: templates/home.html:49 msgid "Lock Dashboard" msgstr "Blocca dashboard" -#: netbox/templates/home.html:60 +#: templates/home.html:60 msgid "Add Widget" msgstr "Aggiungi widget" -#: netbox/templates/home.html:63 +#: templates/home.html:63 msgid "Save Layout" msgstr "Salva layout" -#: netbox/templates/htmx/delete_form.html:7 +#: templates/htmx/delete_form.html:7 msgid "Confirm Deletion" msgstr "Conferma l'eliminazione" -#: netbox/templates/htmx/delete_form.html:11 +#: templates/htmx/delete_form.html:11 #, python-format msgid "" "Are you sure you want to delete " @@ -13878,41 +13157,41 @@ msgstr "" "Sei sicuro di volerlo eliminare " "%(object_type)s %(object)s?" -#: netbox/templates/htmx/delete_form.html:17 +#: templates/htmx/delete_form.html:17 msgid "The following objects will be deleted as a result of this action." msgstr "" "I seguenti oggetti verranno eliminati come risultato di questa azione." -#: netbox/templates/htmx/notifications.html:15 +#: templates/htmx/notifications.html:15 msgid "ago" msgstr "fa" -#: netbox/templates/htmx/notifications.html:26 +#: templates/htmx/notifications.html:26 msgid "No unread notifications" msgstr "Nessuna notifica non letta" -#: netbox/templates/htmx/notifications.html:31 +#: templates/htmx/notifications.html:31 msgid "All notifications" msgstr "Tutte le notifiche" -#: netbox/templates/htmx/object_selector.html:5 +#: templates/htmx/object_selector.html:5 msgid "Select" msgstr "Seleziona" -#: netbox/templates/inc/filter_list.html:42 -#: netbox/utilities/templates/helpers/table_config_form.html:39 +#: templates/inc/filter_list.html:43 +#: utilities/templates/helpers/table_config_form.html:39 msgid "Reset" msgstr "Reimposta" -#: netbox/templates/inc/light_toggle.html:4 +#: templates/inc/light_toggle.html:4 msgid "Enable dark mode" msgstr "Abilita la modalità oscura" -#: netbox/templates/inc/light_toggle.html:7 +#: templates/inc/light_toggle.html:7 msgid "Enable light mode" msgstr "Abilita la modalità luce" -#: netbox/templates/inc/missing_prerequisites.html:8 +#: templates/inc/missing_prerequisites.html:8 #, python-format msgid "" "Before you can add a %(model)s you must first create a " @@ -13921,283 +13200,281 @@ msgstr "" "Prima di poter aggiungere un %(model)s devi prima creare un " "%(prerequisite_model)s." -#: netbox/templates/inc/paginator.html:15 +#: templates/inc/paginator.html:15 msgid "Page selection" msgstr "Selezione della pagina" -#: netbox/templates/inc/paginator.html:75 +#: templates/inc/paginator.html:75 #, python-format msgid "Showing %(start)s-%(end)s of %(total)s" msgstr "Mostrando %(start)s-%(end)s di %(total)s" -#: netbox/templates/inc/paginator.html:82 +#: templates/inc/paginator.html:82 msgid "Pagination options" msgstr "Opzioni di impaginazione" -#: netbox/templates/inc/paginator.html:86 +#: templates/inc/paginator.html:86 msgid "Per Page" msgstr "Per pagina" -#: netbox/templates/inc/panels/image_attachments.html:10 +#: templates/inc/panels/image_attachments.html:10 msgid "Attach an image" msgstr "Allega un'immagine" -#: netbox/templates/inc/panels/related_objects.html:5 +#: templates/inc/panels/related_objects.html:5 msgid "Related Objects" msgstr "Oggetti correlati" -#: netbox/templates/inc/panels/tags.html:11 +#: templates/inc/panels/tags.html:11 msgid "No tags assigned" msgstr "Nessun tag assegnato" -#: netbox/templates/inc/sync_warning.html:10 +#: templates/inc/sync_warning.html:10 msgid "Data is out of sync with upstream file" msgstr "I dati non sono sincronizzati con il file upstream" -#: netbox/templates/inc/table_controls_htmx.html:7 +#: templates/inc/table_controls_htmx.html:7 msgid "Quick search" msgstr "Ricerca rapida" -#: netbox/templates/inc/table_controls_htmx.html:20 +#: templates/inc/table_controls_htmx.html:20 msgid "Saved filter" msgstr "Filtro salvato" -#: netbox/templates/inc/table_htmx.html:18 +#: templates/inc/table_htmx.html:18 msgid "Clear ordering" msgstr "Ordinazione chiara" -#: netbox/templates/inc/user_menu.html:6 +#: templates/inc/user_menu.html:6 msgid "Help center" msgstr "Centro assistenza" -#: netbox/templates/inc/user_menu.html:41 +#: templates/inc/user_menu.html:41 msgid "Django Admin" msgstr "Amministratore Django" -#: netbox/templates/inc/user_menu.html:61 +#: templates/inc/user_menu.html:61 msgid "Log Out" msgstr "Esci" -#: netbox/templates/inc/user_menu.html:68 netbox/templates/login.html:38 +#: templates/inc/user_menu.html:68 templates/login.html:38 msgid "Log In" msgstr "Effettua il login" -#: netbox/templates/ipam/aggregate.html:14 -#: netbox/templates/ipam/ipaddress.html:14 -#: netbox/templates/ipam/iprange.html:13 netbox/templates/ipam/prefix.html:15 +#: templates/ipam/aggregate.html:14 templates/ipam/ipaddress.html:14 +#: templates/ipam/iprange.html:13 templates/ipam/prefix.html:15 msgid "Family" msgstr "Famiglia" -#: netbox/templates/ipam/aggregate.html:39 +#: templates/ipam/aggregate.html:39 msgid "Date Added" msgstr "Data aggiunta" -#: netbox/templates/ipam/aggregate/prefixes.html:8 -#: netbox/templates/ipam/prefix/prefixes.html:8 -#: netbox/templates/ipam/role.html:10 +#: templates/ipam/aggregate/prefixes.html:8 +#: templates/ipam/prefix/prefixes.html:8 templates/ipam/role.html:10 msgid "Add Prefix" msgstr "Aggiungi prefisso" -#: netbox/templates/ipam/asn.html:23 +#: templates/ipam/asn.html:23 msgid "AS Number" msgstr "Numero AS" -#: netbox/templates/ipam/fhrpgroup.html:52 +#: templates/ipam/fhrpgroup.html:52 msgid "Authentication Type" msgstr "Tipo di autenticazione" -#: netbox/templates/ipam/fhrpgroup.html:56 +#: templates/ipam/fhrpgroup.html:56 msgid "Authentication Key" msgstr "Chiave di autenticazione" -#: netbox/templates/ipam/fhrpgroup.html:69 +#: templates/ipam/fhrpgroup.html:69 msgid "Virtual IP Addresses" msgstr "Indirizzi IP virtuali" -#: netbox/templates/ipam/inc/ipaddress_edit_header.html:13 +#: templates/ipam/inc/ipaddress_edit_header.html:13 msgid "Assign IP" msgstr "Assegna IP" -#: netbox/templates/ipam/inc/ipaddress_edit_header.html:19 +#: templates/ipam/inc/ipaddress_edit_header.html:19 msgid "Bulk Create" msgstr "Creazione in blocco" -#: netbox/templates/ipam/inc/panels/fhrp_groups.html:10 +#: templates/ipam/inc/panels/fhrp_groups.html:10 msgid "Create Group" msgstr "Crea gruppo" -#: netbox/templates/ipam/inc/panels/fhrp_groups.html:25 +#: templates/ipam/inc/panels/fhrp_groups.html:25 msgid "Virtual IPs" msgstr "IP virtuali" -#: netbox/templates/ipam/inc/toggle_available.html:7 +#: templates/ipam/inc/toggle_available.html:7 msgid "Show Assigned" msgstr "Mostra assegnato" -#: netbox/templates/ipam/inc/toggle_available.html:10 +#: templates/ipam/inc/toggle_available.html:10 msgid "Show Available" msgstr "Mostra disponibile" -#: netbox/templates/ipam/inc/toggle_available.html:13 +#: templates/ipam/inc/toggle_available.html:13 msgid "Show All" msgstr "Mostra tutto" -#: netbox/templates/ipam/ipaddress.html:23 -#: netbox/templates/ipam/iprange.html:45 netbox/templates/ipam/prefix.html:24 +#: templates/ipam/ipaddress.html:23 templates/ipam/iprange.html:45 +#: templates/ipam/prefix.html:24 msgid "Global" msgstr "Globale" -#: netbox/templates/ipam/ipaddress.html:85 +#: templates/ipam/ipaddress.html:85 msgid "NAT (outside)" msgstr "NAT (esterno)" -#: netbox/templates/ipam/ipaddress_assign.html:8 +#: templates/ipam/ipaddress_assign.html:8 msgid "Assign an IP Address" msgstr "Assegna un indirizzo IP" -#: netbox/templates/ipam/ipaddress_assign.html:22 +#: templates/ipam/ipaddress_assign.html:22 msgid "Select IP Address" msgstr "Seleziona indirizzo IP" -#: netbox/templates/ipam/ipaddress_assign.html:35 +#: templates/ipam/ipaddress_assign.html:35 msgid "Search Results" msgstr "Risultati della ricerca" -#: netbox/templates/ipam/ipaddress_bulk_add.html:6 +#: templates/ipam/ipaddress_bulk_add.html:6 msgid "Bulk Add IP Addresses" msgstr "Aggiungi indirizzi IP in blocco" -#: netbox/templates/ipam/iprange.html:17 +#: templates/ipam/iprange.html:17 msgid "Starting Address" msgstr "Indirizzo di partenza" -#: netbox/templates/ipam/iprange.html:21 +#: templates/ipam/iprange.html:21 msgid "Ending Address" msgstr "Indirizzo finale" -#: netbox/templates/ipam/iprange.html:33 netbox/templates/ipam/prefix.html:110 +#: templates/ipam/iprange.html:33 templates/ipam/prefix.html:110 msgid "Marked fully utilized" msgstr "Contrassegnato come completamente utilizzato" -#: netbox/templates/ipam/prefix.html:99 +#: templates/ipam/prefix.html:99 msgid "Addressing Details" msgstr "Dettagli di indirizzamento" -#: netbox/templates/ipam/prefix.html:118 +#: templates/ipam/prefix.html:118 msgid "Child IPs" msgstr "IP per bambini" -#: netbox/templates/ipam/prefix.html:126 +#: templates/ipam/prefix.html:126 msgid "Available IPs" msgstr "IP disponibili" -#: netbox/templates/ipam/prefix.html:138 +#: templates/ipam/prefix.html:138 msgid "First available IP" msgstr "Primo IP disponibile" -#: netbox/templates/ipam/prefix.html:179 +#: templates/ipam/prefix.html:179 msgid "Prefix Details" msgstr "Dettagli del prefisso" -#: netbox/templates/ipam/prefix.html:185 +#: templates/ipam/prefix.html:185 msgid "Network Address" msgstr "Indirizzo di rete" -#: netbox/templates/ipam/prefix.html:189 +#: templates/ipam/prefix.html:189 msgid "Network Mask" msgstr "Maschera di rete" -#: netbox/templates/ipam/prefix.html:193 +#: templates/ipam/prefix.html:193 msgid "Wildcard Mask" msgstr "Maschera Wildcard" -#: netbox/templates/ipam/prefix.html:197 +#: templates/ipam/prefix.html:197 msgid "Broadcast Address" msgstr "Indirizzo di trasmissione" -#: netbox/templates/ipam/prefix/ip_ranges.html:7 +#: templates/ipam/prefix/ip_ranges.html:7 msgid "Add IP Range" msgstr "Aggiungi intervallo IP" -#: netbox/templates/ipam/prefix_list.html:7 +#: templates/ipam/prefix_list.html:7 msgid "Hide Depth Indicators" msgstr "Nascondi indicatori di profondità" -#: netbox/templates/ipam/prefix_list.html:11 +#: templates/ipam/prefix_list.html:11 msgid "Max Depth" msgstr "Profondità massima" -#: netbox/templates/ipam/prefix_list.html:28 +#: templates/ipam/prefix_list.html:28 msgid "Max Length" msgstr "Lunghezza massima" -#: netbox/templates/ipam/rir.html:10 +#: templates/ipam/rir.html:10 msgid "Add Aggregate" msgstr "Aggiungi aggregato" -#: netbox/templates/ipam/routetarget.html:38 +#: templates/ipam/routetarget.html:38 msgid "Importing VRFs" msgstr "Importazione di VRF" -#: netbox/templates/ipam/routetarget.html:44 +#: templates/ipam/routetarget.html:44 msgid "Exporting VRFs" msgstr "Esportazione di VRF" -#: netbox/templates/ipam/routetarget.html:52 +#: templates/ipam/routetarget.html:52 msgid "Importing L2VPNs" msgstr "Importazione di VPN L2" -#: netbox/templates/ipam/routetarget.html:58 +#: templates/ipam/routetarget.html:58 msgid "Exporting L2VPNs" msgstr "Esportazione di VPN L2" -#: netbox/templates/ipam/vlan.html:88 +#: templates/ipam/vlan.html:88 msgid "Add a Prefix" msgstr "Aggiungere un prefisso" -#: netbox/templates/ipam/vlangroup.html:18 +#: templates/ipam/vlangroup.html:18 msgid "Add VLAN" msgstr "Aggiungi VLAN" -#: netbox/templates/ipam/vrf.html:16 +#: templates/ipam/vrf.html:16 msgid "Route Distinguisher" msgstr "Distinguitore del percorso" -#: netbox/templates/ipam/vrf.html:29 +#: templates/ipam/vrf.html:29 msgid "Unique IP Space" msgstr "Spazio IP unico" -#: netbox/templates/login.html:29 -#: netbox/utilities/templates/form_helpers/render_errors.html:7 +#: templates/login.html:29 +#: utilities/templates/form_helpers/render_errors.html:7 msgid "Errors" msgstr "Errori" -#: netbox/templates/login.html:69 +#: templates/login.html:69 msgid "Sign In" msgstr "Accedi" -#: netbox/templates/login.html:77 +#: templates/login.html:77 msgctxt "Denotes an alternative option" msgid "Or" msgstr "Oppure" -#: netbox/templates/media_failure.html:7 +#: templates/media_failure.html:7 msgid "Static Media Failure - NetBox" msgstr "Errore multimediale statico - NetBox" -#: netbox/templates/media_failure.html:21 +#: templates/media_failure.html:21 msgid "Static Media Failure" msgstr "Errore multimediale statico" -#: netbox/templates/media_failure.html:23 +#: templates/media_failure.html:23 msgid "The following static media file failed to load" msgstr "Il seguente file multimediale statico non è stato caricato" -#: netbox/templates/media_failure.html:26 +#: templates/media_failure.html:26 msgid "Check the following" msgstr "Controlla quanto segue" -#: netbox/templates/media_failure.html:29 +#: templates/media_failure.html:29 msgid "" "manage.py collectstatic was run during the most recent upgrade." " This installs the most recent iteration of each static file into the static" @@ -14207,7 +13484,7 @@ msgstr "" "l'aggiornamento più recente. Questo installa l'iterazione più recente di " "ogni file statico nel percorso radice statico." -#: netbox/templates/media_failure.html:35 +#: templates/media_failure.html:35 #, python-format msgid "" "The HTTP service (e.g. nginx or Apache) is configured to serve files from " @@ -14219,7 +13496,7 @@ msgstr "" "href=\"%(docs_url)s\">la documentazione di installazione per ulteriori " "indicazioni." -#: netbox/templates/media_failure.html:47 +#: templates/media_failure.html:47 #, python-format msgid "" "The file %(filename)s exists in the static root directory and " @@ -14228,569 +13505,550 @@ msgstr "" "Il fascicolo %(filename)s esiste nella directory principale " "statica ed è leggibile dal server HTTP." -#: netbox/templates/media_failure.html:55 +#: templates/media_failure.html:55 #, python-format msgid "Click here to attempt loading NetBox again." msgstr "" "Fare clic qui per provare a caricare nuovamente" " NetBox." -#: netbox/templates/tenancy/contact.html:18 netbox/tenancy/filtersets.py:147 -#: netbox/tenancy/forms/bulk_edit.py:137 -#: netbox/tenancy/forms/filtersets.py:102 netbox/tenancy/forms/forms.py:56 -#: netbox/tenancy/forms/model_forms.py:106 -#: netbox/tenancy/forms/model_forms.py:130 -#: netbox/tenancy/tables/contacts.py:98 +#: templates/tenancy/contact.html:18 tenancy/filtersets.py:147 +#: tenancy/forms/bulk_edit.py:137 tenancy/forms/filtersets.py:102 +#: tenancy/forms/forms.py:56 tenancy/forms/model_forms.py:106 +#: tenancy/forms/model_forms.py:130 tenancy/tables/contacts.py:98 msgid "Contact" msgstr "Contatto" -#: netbox/templates/tenancy/contact.html:29 -#: netbox/tenancy/forms/bulk_edit.py:99 +#: templates/tenancy/contact.html:29 tenancy/forms/bulk_edit.py:99 msgid "Title" msgstr "Titolo" -#: netbox/templates/tenancy/contact.html:33 -#: netbox/tenancy/forms/bulk_edit.py:104 netbox/tenancy/tables/contacts.py:64 +#: templates/tenancy/contact.html:33 tenancy/forms/bulk_edit.py:104 +#: tenancy/tables/contacts.py:64 msgid "Phone" msgstr "Telefono" -#: netbox/templates/tenancy/contactgroup.html:18 -#: netbox/tenancy/forms/forms.py:66 netbox/tenancy/forms/model_forms.py:75 +#: templates/tenancy/contactgroup.html:18 tenancy/forms/forms.py:66 +#: tenancy/forms/model_forms.py:75 msgid "Contact Group" msgstr "Gruppo di contatto" -#: netbox/templates/tenancy/contactgroup.html:50 +#: templates/tenancy/contactgroup.html:50 msgid "Add Contact Group" msgstr "Aggiungi gruppo di contatti" -#: netbox/templates/tenancy/contactrole.html:15 -#: netbox/tenancy/filtersets.py:152 netbox/tenancy/forms/forms.py:61 -#: netbox/tenancy/forms/model_forms.py:87 +#: templates/tenancy/contactrole.html:15 tenancy/filtersets.py:152 +#: tenancy/forms/forms.py:61 tenancy/forms/model_forms.py:87 msgid "Contact Role" msgstr "Ruolo di contatto" -#: netbox/templates/tenancy/object_contacts.html:9 +#: templates/tenancy/object_contacts.html:9 msgid "Add a contact" msgstr "Aggiungere un contatto" -#: netbox/templates/tenancy/tenantgroup.html:17 +#: templates/tenancy/tenantgroup.html:17 msgid "Add Tenant" msgstr "Aggiungi inquilino" -#: netbox/templates/tenancy/tenantgroup.html:26 -#: netbox/tenancy/forms/model_forms.py:32 netbox/tenancy/tables/columns.py:51 -#: netbox/tenancy/tables/columns.py:61 +#: templates/tenancy/tenantgroup.html:26 tenancy/forms/model_forms.py:32 +#: tenancy/tables/columns.py:51 tenancy/tables/columns.py:61 msgid "Tenant Group" msgstr "Gruppo di inquilini" -#: netbox/templates/tenancy/tenantgroup.html:59 +#: templates/tenancy/tenantgroup.html:59 msgid "Add Tenant Group" msgstr "Aggiungi gruppo di inquilini" -#: netbox/templates/users/group.html:39 netbox/templates/users/user.html:63 +#: templates/users/group.html:39 templates/users/user.html:63 msgid "Assigned Permissions" msgstr "Autorizzazioni assegnate" -#: netbox/templates/users/objectpermission.html:6 -#: netbox/templates/users/objectpermission.html:14 -#: netbox/users/forms/filtersets.py:66 +#: templates/users/objectpermission.html:6 +#: templates/users/objectpermission.html:14 users/forms/filtersets.py:66 msgid "Permission" msgstr "Autorizzazione" -#: netbox/templates/users/objectpermission.html:34 +#: templates/users/objectpermission.html:34 msgid "View" msgstr "Visualizza" -#: netbox/templates/users/objectpermission.html:52 -#: netbox/users/forms/model_forms.py:315 +#: templates/users/objectpermission.html:52 users/forms/model_forms.py:315 msgid "Constraints" msgstr "Vincoli" -#: netbox/templates/users/objectpermission.html:72 +#: templates/users/objectpermission.html:72 msgid "Assigned Users" msgstr "Utenti assegnati" -#: netbox/templates/virtualization/cluster.html:52 +#: templates/virtualization/cluster.html:52 msgid "Allocated Resources" msgstr "Risorse allocate" -#: netbox/templates/virtualization/cluster.html:55 -#: netbox/templates/virtualization/virtualmachine.html:125 +#: templates/virtualization/cluster.html:55 +#: templates/virtualization/virtualmachine.html:125 msgid "Virtual CPUs" msgstr "CPU virtuali" -#: netbox/templates/virtualization/cluster.html:59 -#: netbox/templates/virtualization/virtualmachine.html:129 +#: templates/virtualization/cluster.html:59 +#: templates/virtualization/virtualmachine.html:129 msgid "Memory" msgstr "Memoria" -#: netbox/templates/virtualization/cluster.html:69 -#: netbox/templates/virtualization/virtualmachine.html:140 +#: templates/virtualization/cluster.html:69 +#: templates/virtualization/virtualmachine.html:140 msgid "Disk Space" msgstr "Spazio su disco" -#: netbox/templates/virtualization/cluster/base.html:18 +#: templates/virtualization/cluster/base.html:18 msgid "Add Virtual Machine" msgstr "Aggiungi macchina virtuale" -#: netbox/templates/virtualization/cluster/base.html:24 +#: templates/virtualization/cluster/base.html:24 msgid "Assign Device" msgstr "Assegna dispositivo" -#: netbox/templates/virtualization/cluster/devices.html:10 +#: templates/virtualization/cluster/devices.html:10 msgid "Remove Selected" msgstr "Rimuovi selezionato" -#: netbox/templates/virtualization/cluster_add_devices.html:9 +#: templates/virtualization/cluster_add_devices.html:9 #, python-format msgid "Add Device to Cluster %(cluster)s" msgstr "Aggiungi dispositivo al cluster %(cluster)s" -#: netbox/templates/virtualization/cluster_add_devices.html:23 +#: templates/virtualization/cluster_add_devices.html:23 msgid "Device Selection" msgstr "Selezione del dispositivo" -#: netbox/templates/virtualization/cluster_add_devices.html:31 +#: templates/virtualization/cluster_add_devices.html:31 msgid "Add Devices" msgstr "Aggiungi dispositivi" -#: netbox/templates/virtualization/clustergroup.html:10 -#: netbox/templates/virtualization/clustertype.html:10 +#: templates/virtualization/clustergroup.html:10 +#: templates/virtualization/clustertype.html:10 msgid "Add Cluster" msgstr "Aggiungi cluster" -#: netbox/templates/virtualization/clustergroup.html:19 -#: netbox/virtualization/forms/model_forms.py:50 +#: templates/virtualization/clustergroup.html:19 +#: virtualization/forms/model_forms.py:50 msgid "Cluster Group" msgstr "Gruppo Cluster" -#: netbox/templates/virtualization/clustertype.html:19 -#: netbox/templates/virtualization/virtualmachine.html:110 -#: netbox/virtualization/forms/model_forms.py:36 +#: templates/virtualization/clustertype.html:19 +#: templates/virtualization/virtualmachine.html:110 +#: virtualization/forms/model_forms.py:36 msgid "Cluster Type" msgstr "Tipo di cluster" -#: netbox/templates/virtualization/virtualdisk.html:18 +#: templates/virtualization/virtualdisk.html:18 msgid "Virtual Disk" msgstr "Disco virtuale" -#: netbox/templates/virtualization/virtualmachine.html:122 -#: netbox/virtualization/forms/bulk_edit.py:190 -#: netbox/virtualization/forms/model_forms.py:224 +#: templates/virtualization/virtualmachine.html:122 +#: virtualization/forms/bulk_edit.py:190 +#: virtualization/forms/model_forms.py:224 msgid "Resources" msgstr "Risorse" -#: netbox/templates/virtualization/virtualmachine.html:178 +#: templates/virtualization/virtualmachine.html:178 msgid "Add Virtual Disk" msgstr "Aggiungi disco virtuale" -#: netbox/templates/vpn/ikepolicy.html:10 -#: netbox/templates/vpn/ipsecprofile.html:33 netbox/vpn/tables/crypto.py:166 +#: templates/vpn/ikepolicy.html:10 templates/vpn/ipsecprofile.html:33 +#: vpn/tables/crypto.py:166 msgid "IKE Policy" msgstr "Politica IKE" -#: netbox/templates/vpn/ikepolicy.html:21 +#: templates/vpn/ikepolicy.html:21 msgid "IKE Version" msgstr "Versione IKE" -#: netbox/templates/vpn/ikepolicy.html:29 +#: templates/vpn/ikepolicy.html:29 msgid "Pre-Shared Key" msgstr "Chiave precondivisa" -#: netbox/templates/vpn/ikepolicy.html:33 -#: netbox/templates/wireless/inc/authentication_attrs.html:20 +#: templates/vpn/ikepolicy.html:33 +#: templates/wireless/inc/authentication_attrs.html:20 msgid "Show Secret" msgstr "Mostra segreto" -#: netbox/templates/vpn/ikepolicy.html:57 -#: netbox/templates/vpn/ipsecpolicy.html:45 -#: netbox/templates/vpn/ipsecprofile.html:52 -#: netbox/templates/vpn/ipsecprofile.html:77 -#: netbox/vpn/forms/model_forms.py:316 netbox/vpn/forms/model_forms.py:352 -#: netbox/vpn/tables/crypto.py:68 netbox/vpn/tables/crypto.py:134 +#: templates/vpn/ikepolicy.html:57 templates/vpn/ipsecpolicy.html:45 +#: templates/vpn/ipsecprofile.html:52 templates/vpn/ipsecprofile.html:77 +#: vpn/forms/model_forms.py:316 vpn/forms/model_forms.py:352 +#: vpn/tables/crypto.py:68 vpn/tables/crypto.py:134 msgid "Proposals" msgstr "Proposte" -#: netbox/templates/vpn/ikeproposal.html:10 +#: templates/vpn/ikeproposal.html:10 msgid "IKE Proposal" msgstr "Proposta IKE" -#: netbox/templates/vpn/ikeproposal.html:21 netbox/vpn/forms/bulk_edit.py:97 -#: netbox/vpn/forms/bulk_import.py:145 netbox/vpn/forms/filtersets.py:101 +#: templates/vpn/ikeproposal.html:21 vpn/forms/bulk_edit.py:97 +#: vpn/forms/bulk_import.py:145 vpn/forms/filtersets.py:101 msgid "Authentication method" msgstr "Metodo di autenticazione" -#: netbox/templates/vpn/ikeproposal.html:25 -#: netbox/templates/vpn/ipsecproposal.html:21 -#: netbox/vpn/forms/bulk_edit.py:102 netbox/vpn/forms/bulk_edit.py:172 -#: netbox/vpn/forms/bulk_import.py:149 netbox/vpn/forms/bulk_import.py:195 -#: netbox/vpn/forms/filtersets.py:106 netbox/vpn/forms/filtersets.py:154 +#: templates/vpn/ikeproposal.html:25 templates/vpn/ipsecproposal.html:21 +#: vpn/forms/bulk_edit.py:102 vpn/forms/bulk_edit.py:172 +#: vpn/forms/bulk_import.py:149 vpn/forms/bulk_import.py:195 +#: vpn/forms/filtersets.py:106 vpn/forms/filtersets.py:154 msgid "Encryption algorithm" msgstr "Algoritmo di crittografia" -#: netbox/templates/vpn/ikeproposal.html:29 -#: netbox/templates/vpn/ipsecproposal.html:25 -#: netbox/vpn/forms/bulk_edit.py:107 netbox/vpn/forms/bulk_edit.py:177 -#: netbox/vpn/forms/bulk_import.py:153 netbox/vpn/forms/bulk_import.py:200 -#: netbox/vpn/forms/filtersets.py:111 netbox/vpn/forms/filtersets.py:159 +#: templates/vpn/ikeproposal.html:29 templates/vpn/ipsecproposal.html:25 +#: vpn/forms/bulk_edit.py:107 vpn/forms/bulk_edit.py:177 +#: vpn/forms/bulk_import.py:153 vpn/forms/bulk_import.py:200 +#: vpn/forms/filtersets.py:111 vpn/forms/filtersets.py:159 msgid "Authentication algorithm" msgstr "Algoritmo di autenticazione" -#: netbox/templates/vpn/ikeproposal.html:33 +#: templates/vpn/ikeproposal.html:33 msgid "DH group" msgstr "Gruppo DH" -#: netbox/templates/vpn/ikeproposal.html:37 -#: netbox/templates/vpn/ipsecproposal.html:29 -#: netbox/vpn/forms/bulk_edit.py:182 netbox/vpn/models/crypto.py:146 +#: templates/vpn/ikeproposal.html:37 templates/vpn/ipsecproposal.html:29 +#: vpn/forms/bulk_edit.py:182 vpn/models/crypto.py:146 msgid "SA lifetime (seconds)" msgstr "Durata SA (secondi)" -#: netbox/templates/vpn/ipsecpolicy.html:10 -#: netbox/templates/vpn/ipsecprofile.html:66 netbox/vpn/tables/crypto.py:170 +#: templates/vpn/ipsecpolicy.html:10 templates/vpn/ipsecprofile.html:66 +#: vpn/tables/crypto.py:170 msgid "IPSec Policy" msgstr "Politica IPSec" -#: netbox/templates/vpn/ipsecpolicy.html:21 netbox/vpn/forms/bulk_edit.py:210 -#: netbox/vpn/models/crypto.py:193 +#: templates/vpn/ipsecpolicy.html:21 vpn/forms/bulk_edit.py:210 +#: vpn/models/crypto.py:193 msgid "PFS group" msgstr "Gruppo PFS" -#: netbox/templates/vpn/ipsecprofile.html:10 -#: netbox/vpn/forms/model_forms.py:54 +#: templates/vpn/ipsecprofile.html:10 vpn/forms/model_forms.py:54 msgid "IPSec Profile" msgstr "Profilo IPSec" -#: netbox/templates/vpn/ipsecprofile.html:89 netbox/vpn/tables/crypto.py:137 +#: templates/vpn/ipsecprofile.html:89 vpn/tables/crypto.py:137 msgid "PFS Group" msgstr "Gruppo PFS" -#: netbox/templates/vpn/ipsecproposal.html:10 +#: templates/vpn/ipsecproposal.html:10 msgid "IPSec Proposal" msgstr "Proposta IPSec" -#: netbox/templates/vpn/ipsecproposal.html:33 -#: netbox/vpn/forms/bulk_edit.py:186 netbox/vpn/models/crypto.py:152 +#: templates/vpn/ipsecproposal.html:33 vpn/forms/bulk_edit.py:186 +#: vpn/models/crypto.py:152 msgid "SA lifetime (KB)" msgstr "Durata SA (KB)" -#: netbox/templates/vpn/l2vpn.html:11 -#: netbox/templates/vpn/l2vpntermination.html:9 +#: templates/vpn/l2vpn.html:11 templates/vpn/l2vpntermination.html:9 msgid "L2VPN Attributes" msgstr "Attributi L2VPN" -#: netbox/templates/vpn/l2vpn.html:60 netbox/templates/vpn/tunnel.html:76 +#: templates/vpn/l2vpn.html:60 templates/vpn/tunnel.html:76 msgid "Add a Termination" msgstr "Aggiungi una terminazione" -#: netbox/templates/vpn/tunnel.html:9 +#: templates/vpn/tunnel.html:9 msgid "Add Termination" msgstr "Aggiungi terminazione" -#: netbox/templates/vpn/tunnel.html:37 netbox/vpn/forms/bulk_edit.py:49 -#: netbox/vpn/forms/bulk_import.py:48 netbox/vpn/forms/filtersets.py:57 +#: templates/vpn/tunnel.html:37 vpn/forms/bulk_edit.py:49 +#: vpn/forms/bulk_import.py:48 vpn/forms/filtersets.py:57 msgid "Encapsulation" msgstr "Incapsulamento" -#: netbox/templates/vpn/tunnel.html:41 netbox/vpn/forms/bulk_edit.py:55 -#: netbox/vpn/forms/bulk_import.py:53 netbox/vpn/forms/filtersets.py:64 -#: netbox/vpn/models/crypto.py:250 netbox/vpn/tables/tunnels.py:51 +#: templates/vpn/tunnel.html:41 vpn/forms/bulk_edit.py:55 +#: vpn/forms/bulk_import.py:53 vpn/forms/filtersets.py:64 +#: vpn/models/crypto.py:250 vpn/tables/tunnels.py:51 msgid "IPSec profile" msgstr "Profilo IPSec" -#: netbox/templates/vpn/tunnel.html:45 netbox/vpn/forms/bulk_edit.py:69 -#: netbox/vpn/forms/filtersets.py:68 +#: templates/vpn/tunnel.html:45 vpn/forms/bulk_edit.py:69 +#: vpn/forms/filtersets.py:68 msgid "Tunnel ID" msgstr "ID del tunnel" -#: netbox/templates/vpn/tunnelgroup.html:14 +#: templates/vpn/tunnelgroup.html:14 msgid "Add Tunnel" msgstr "Aggiungi tunnel" -#: netbox/templates/vpn/tunnelgroup.html:23 netbox/vpn/forms/model_forms.py:36 -#: netbox/vpn/forms/model_forms.py:49 +#: templates/vpn/tunnelgroup.html:23 vpn/forms/model_forms.py:36 +#: vpn/forms/model_forms.py:49 msgid "Tunnel Group" msgstr "Gruppo Tunnel" -#: netbox/templates/vpn/tunneltermination.html:10 +#: templates/vpn/tunneltermination.html:10 msgid "Tunnel Termination" msgstr "Terminazione del tunnel" -#: netbox/templates/vpn/tunneltermination.html:35 -#: netbox/vpn/forms/bulk_import.py:107 netbox/vpn/forms/model_forms.py:102 -#: netbox/vpn/forms/model_forms.py:138 netbox/vpn/forms/model_forms.py:247 -#: netbox/vpn/tables/tunnels.py:101 +#: templates/vpn/tunneltermination.html:35 vpn/forms/bulk_import.py:107 +#: vpn/forms/model_forms.py:102 vpn/forms/model_forms.py:138 +#: vpn/forms/model_forms.py:247 vpn/tables/tunnels.py:101 msgid "Outside IP" msgstr "IP esterno" -#: netbox/templates/vpn/tunneltermination.html:51 +#: templates/vpn/tunneltermination.html:51 msgid "Peer Terminations" msgstr "Terminazioni tra pari" -#: netbox/templates/wireless/inc/authentication_attrs.html:12 +#: templates/wireless/inc/authentication_attrs.html:12 msgid "Cipher" msgstr "Cifrario" -#: netbox/templates/wireless/inc/authentication_attrs.html:16 +#: templates/wireless/inc/authentication_attrs.html:16 msgid "PSK" msgstr "PSK" -#: netbox/templates/wireless/inc/wirelesslink_interface.html:35 -#: netbox/templates/wireless/inc/wirelesslink_interface.html:45 +#: templates/wireless/inc/wirelesslink_interface.html:35 +#: templates/wireless/inc/wirelesslink_interface.html:45 msgctxt "Abbreviation for megahertz" msgid "MHz" msgstr "MHz" -#: netbox/templates/wireless/wirelesslan.html:57 +#: templates/wireless/wirelesslan.html:57 msgid "Attached Interfaces" msgstr "Interfacce collegate" -#: netbox/templates/wireless/wirelesslangroup.html:17 +#: templates/wireless/wirelesslangroup.html:17 msgid "Add Wireless LAN" msgstr "Aggiungi LAN wireless" -#: netbox/templates/wireless/wirelesslangroup.html:26 -#: netbox/wireless/forms/model_forms.py:28 +#: templates/wireless/wirelesslangroup.html:26 +#: wireless/forms/model_forms.py:28 msgid "Wireless LAN Group" msgstr "Gruppo LAN wireless" -#: netbox/templates/wireless/wirelesslangroup.html:59 +#: templates/wireless/wirelesslangroup.html:59 msgid "Add Wireless LAN Group" msgstr "Aggiungi gruppo LAN wireless" -#: netbox/templates/wireless/wirelesslink.html:14 +#: templates/wireless/wirelesslink.html:14 msgid "Link Properties" msgstr "Proprietà dei link" -#: netbox/templates/wireless/wirelesslink.html:38 -#: netbox/wireless/forms/bulk_edit.py:129 -#: netbox/wireless/forms/filtersets.py:102 -#: netbox/wireless/forms/model_forms.py:165 +#: templates/wireless/wirelesslink.html:38 wireless/forms/bulk_edit.py:129 +#: wireless/forms/filtersets.py:102 wireless/forms/model_forms.py:165 msgid "Distance" msgstr "Distanza" -#: netbox/tenancy/filtersets.py:28 +#: tenancy/filtersets.py:28 msgid "Parent contact group (ID)" msgstr "Gruppo di contatto dei genitori (ID)" -#: netbox/tenancy/filtersets.py:34 +#: tenancy/filtersets.py:34 msgid "Parent contact group (slug)" msgstr "Gruppo di contatto con i genitori (slug)" -#: netbox/tenancy/filtersets.py:40 netbox/tenancy/filtersets.py:67 -#: netbox/tenancy/filtersets.py:110 +#: tenancy/filtersets.py:40 tenancy/filtersets.py:67 tenancy/filtersets.py:110 msgid "Contact group (ID)" msgstr "Gruppo di contatti (ID)" -#: netbox/tenancy/filtersets.py:47 netbox/tenancy/filtersets.py:74 -#: netbox/tenancy/filtersets.py:117 +#: tenancy/filtersets.py:47 tenancy/filtersets.py:74 tenancy/filtersets.py:117 msgid "Contact group (slug)" msgstr "Gruppo di contatti (slug)" -#: netbox/tenancy/filtersets.py:104 +#: tenancy/filtersets.py:104 msgid "Contact (ID)" msgstr "Contatto (ID)" -#: netbox/tenancy/filtersets.py:121 +#: tenancy/filtersets.py:121 msgid "Contact role (ID)" msgstr "Ruolo di contatto (ID)" -#: netbox/tenancy/filtersets.py:127 +#: tenancy/filtersets.py:127 msgid "Contact role (slug)" msgstr "Ruolo di contatto (slug)" -#: netbox/tenancy/filtersets.py:158 +#: tenancy/filtersets.py:158 msgid "Contact group" msgstr "Gruppo di contatti" -#: netbox/tenancy/filtersets.py:169 +#: tenancy/filtersets.py:169 msgid "Parent tenant group (ID)" msgstr "Gruppo di inquilini principali (ID)" -#: netbox/tenancy/filtersets.py:175 +#: tenancy/filtersets.py:175 msgid "Parent tenant group (slug)" msgstr "Gruppo di inquilini principali (slug)" -#: netbox/tenancy/filtersets.py:181 netbox/tenancy/filtersets.py:201 +#: tenancy/filtersets.py:181 tenancy/filtersets.py:201 msgid "Tenant group (ID)" msgstr "Gruppo di inquilini (ID)" -#: netbox/tenancy/filtersets.py:234 +#: tenancy/filtersets.py:234 msgid "Tenant Group (ID)" msgstr "Gruppo di inquilini (ID)" -#: netbox/tenancy/filtersets.py:241 +#: tenancy/filtersets.py:241 msgid "Tenant Group (slug)" msgstr "Gruppo di inquilini (slug)" -#: netbox/tenancy/forms/bulk_edit.py:66 +#: tenancy/forms/bulk_edit.py:66 msgid "Desciption" msgstr "Descrizione" -#: netbox/tenancy/forms/bulk_import.py:101 +#: tenancy/forms/bulk_import.py:101 msgid "Assigned contact" msgstr "Contatto assegnato" -#: netbox/tenancy/models/contacts.py:32 +#: tenancy/models/contacts.py:32 msgid "contact group" msgstr "gruppo di contatti" -#: netbox/tenancy/models/contacts.py:33 +#: tenancy/models/contacts.py:33 msgid "contact groups" msgstr "gruppi di contatti" -#: netbox/tenancy/models/contacts.py:48 +#: tenancy/models/contacts.py:48 msgid "contact role" msgstr "ruolo di contatto" -#: netbox/tenancy/models/contacts.py:49 +#: tenancy/models/contacts.py:49 msgid "contact roles" msgstr "ruoli di contatto" -#: netbox/tenancy/models/contacts.py:68 +#: tenancy/models/contacts.py:68 msgid "title" msgstr "titolo" -#: netbox/tenancy/models/contacts.py:73 +#: tenancy/models/contacts.py:73 msgid "phone" msgstr "telefono" -#: netbox/tenancy/models/contacts.py:78 +#: tenancy/models/contacts.py:78 msgid "email" msgstr "e-mail" -#: netbox/tenancy/models/contacts.py:87 +#: tenancy/models/contacts.py:87 msgid "link" msgstr "collegamento" -#: netbox/tenancy/models/contacts.py:103 +#: tenancy/models/contacts.py:103 msgid "contact" msgstr "contatto" -#: netbox/tenancy/models/contacts.py:104 +#: tenancy/models/contacts.py:104 msgid "contacts" msgstr "contatta" -#: netbox/tenancy/models/contacts.py:153 +#: tenancy/models/contacts.py:153 msgid "contact assignment" msgstr "assegnazione dei contatti" -#: netbox/tenancy/models/contacts.py:154 +#: tenancy/models/contacts.py:154 msgid "contact assignments" msgstr "assegnazioni di contatto" -#: netbox/tenancy/models/contacts.py:170 +#: tenancy/models/contacts.py:170 #, python-brace-format msgid "Contacts cannot be assigned to this object type ({type})." msgstr "" "I contatti non possono essere assegnati a questo tipo di oggetto ({type})." -#: netbox/tenancy/models/tenants.py:32 +#: tenancy/models/tenants.py:32 msgid "tenant group" msgstr "gruppo di inquilini" -#: netbox/tenancy/models/tenants.py:33 +#: tenancy/models/tenants.py:33 msgid "tenant groups" msgstr "gruppi di inquilini" -#: netbox/tenancy/models/tenants.py:70 +#: tenancy/models/tenants.py:70 msgid "Tenant name must be unique per group." msgstr "Il nome del tenant deve essere univoco per gruppo." -#: netbox/tenancy/models/tenants.py:80 +#: tenancy/models/tenants.py:80 msgid "Tenant slug must be unique per group." msgstr "Lo slug del tenant deve essere unico per gruppo." -#: netbox/tenancy/models/tenants.py:88 +#: tenancy/models/tenants.py:88 msgid "tenant" msgstr "inquilino" -#: netbox/tenancy/models/tenants.py:89 +#: tenancy/models/tenants.py:89 msgid "tenants" msgstr "inquilini" -#: netbox/tenancy/tables/contacts.py:112 +#: tenancy/tables/contacts.py:112 msgid "Contact Title" msgstr "Titolo del contatto" -#: netbox/tenancy/tables/contacts.py:116 +#: tenancy/tables/contacts.py:116 msgid "Contact Phone" msgstr "Telefono di contatto" -#: netbox/tenancy/tables/contacts.py:121 +#: tenancy/tables/contacts.py:121 msgid "Contact Email" msgstr "Email di contatto" -#: netbox/tenancy/tables/contacts.py:125 +#: tenancy/tables/contacts.py:125 msgid "Contact Address" msgstr "Indirizzo di contatto" -#: netbox/tenancy/tables/contacts.py:129 +#: tenancy/tables/contacts.py:129 msgid "Contact Link" msgstr "Link di contatto" -#: netbox/tenancy/tables/contacts.py:133 +#: tenancy/tables/contacts.py:133 msgid "Contact Description" msgstr "Descrizione del contatto" -#: netbox/users/filtersets.py:33 netbox/users/filtersets.py:73 +#: users/filtersets.py:33 users/filtersets.py:73 msgid "Permission (ID)" msgstr "Autorizzazione (ID)" -#: netbox/users/filtersets.py:38 netbox/users/filtersets.py:78 +#: users/filtersets.py:38 users/filtersets.py:78 msgid "Notification group (ID)" msgstr "Gruppo di notifica (ID)" -#: netbox/users/forms/bulk_edit.py:26 +#: users/forms/bulk_edit.py:26 msgid "First name" msgstr "Nome" -#: netbox/users/forms/bulk_edit.py:31 +#: users/forms/bulk_edit.py:31 msgid "Last name" msgstr "Cognome" -#: netbox/users/forms/bulk_edit.py:43 +#: users/forms/bulk_edit.py:43 msgid "Staff status" msgstr "Status del personale" -#: netbox/users/forms/bulk_edit.py:48 +#: users/forms/bulk_edit.py:48 msgid "Superuser status" msgstr "Stato di utente avanzato" -#: netbox/users/forms/bulk_import.py:41 +#: users/forms/bulk_import.py:41 msgid "If no key is provided, one will be generated automatically." msgstr "" "Se non viene fornita alcuna chiave, ne verrà generata una automaticamente." -#: netbox/users/forms/filtersets.py:51 netbox/users/tables.py:42 +#: users/forms/filtersets.py:51 users/tables.py:42 msgid "Is Staff" msgstr "È personale" -#: netbox/users/forms/filtersets.py:58 netbox/users/tables.py:45 +#: users/forms/filtersets.py:58 users/tables.py:45 msgid "Is Superuser" msgstr "È Superuser" -#: netbox/users/forms/filtersets.py:91 netbox/users/tables.py:86 +#: users/forms/filtersets.py:91 users/tables.py:86 msgid "Can View" msgstr "Può visualizzare" -#: netbox/users/forms/filtersets.py:98 netbox/users/tables.py:89 +#: users/forms/filtersets.py:98 users/tables.py:89 msgid "Can Add" msgstr "Può aggiungere" -#: netbox/users/forms/filtersets.py:105 netbox/users/tables.py:92 +#: users/forms/filtersets.py:105 users/tables.py:92 msgid "Can Change" msgstr "Può cambiare" -#: netbox/users/forms/filtersets.py:112 netbox/users/tables.py:95 +#: users/forms/filtersets.py:112 users/tables.py:95 msgid "Can Delete" msgstr "Può eliminare" -#: netbox/users/forms/model_forms.py:62 +#: users/forms/model_forms.py:62 msgid "User Interface" msgstr "Interfaccia utente" -#: netbox/users/forms/model_forms.py:114 +#: users/forms/model_forms.py:114 msgid "" "Keys must be at least 40 characters in length. Be sure to record " "your key prior to submitting this form, as it may no longer be " @@ -14800,7 +14058,7 @@ msgstr "" "registrare la tua chiave prima di inviare questo modulo, poiché " "potrebbe non essere più accessibile una volta creato il token." -#: netbox/users/forms/model_forms.py:126 +#: users/forms/model_forms.py:126 msgid "" "Allowed IPv4/IPv6 networks from where the token can be used. Leave blank for" " no restrictions. Example: " @@ -14810,31 +14068,31 @@ msgstr "" "vuoto per non avere restrizioni. Esempio: " "10.1.1.0/24,192.168.10.16/32,2001: db 8:1: :/64" -#: netbox/users/forms/model_forms.py:175 +#: users/forms/model_forms.py:175 msgid "Confirm password" msgstr "Conferma la password" -#: netbox/users/forms/model_forms.py:178 +#: users/forms/model_forms.py:178 msgid "Enter the same password as before, for verification." msgstr "Inserisci la stessa password di prima, per la verifica." -#: netbox/users/forms/model_forms.py:227 +#: users/forms/model_forms.py:227 msgid "Passwords do not match! Please check your input and try again." msgstr "Le password non corrispondono! Controlla i dati inseriti e riprova." -#: netbox/users/forms/model_forms.py:294 +#: users/forms/model_forms.py:294 msgid "Additional actions" msgstr "Azioni aggiuntive" -#: netbox/users/forms/model_forms.py:297 +#: users/forms/model_forms.py:297 msgid "Actions granted in addition to those listed above" msgstr "Azioni concesse in aggiunta a quelle sopra elencate" -#: netbox/users/forms/model_forms.py:313 +#: users/forms/model_forms.py:313 msgid "Objects" msgstr "Oggetti" -#: netbox/users/forms/model_forms.py:325 +#: users/forms/model_forms.py:325 msgid "" "JSON expression of a queryset filter that will return only permitted " "objects. Leave null to match all objects of this type. A list of multiple " @@ -14844,81 +14102,81 @@ msgstr "" "consentiti. Lascia null in modo che corrisponda a tutti gli oggetti di " "questo tipo. Un elenco di più oggetti risulterà in un'operazione OR logica." -#: netbox/users/forms/model_forms.py:364 +#: users/forms/model_forms.py:364 msgid "At least one action must be selected." msgstr "È necessario selezionare almeno un'azione." -#: netbox/users/forms/model_forms.py:382 +#: users/forms/model_forms.py:382 #, python-brace-format msgid "Invalid filter for {model}: {error}" msgstr "Filtro non valido per {model}: {error}" -#: netbox/users/models/permissions.py:39 +#: users/models/permissions.py:39 msgid "The list of actions granted by this permission" msgstr "L'elenco delle azioni concesse da questa autorizzazione" -#: netbox/users/models/permissions.py:44 +#: users/models/permissions.py:44 msgid "constraints" msgstr "limiti" -#: netbox/users/models/permissions.py:45 +#: users/models/permissions.py:45 msgid "" "Queryset filter matching the applicable objects of the selected type(s)" msgstr "" "Filtro Queryset che corrisponde agli oggetti applicabili dei tipi " "selezionati" -#: netbox/users/models/permissions.py:52 +#: users/models/permissions.py:52 msgid "permission" msgstr "autorizzazione" -#: netbox/users/models/permissions.py:53 netbox/users/models/users.py:47 +#: users/models/permissions.py:53 users/models/users.py:47 msgid "permissions" msgstr "autorizzazioni" -#: netbox/users/models/preferences.py:29 netbox/users/models/preferences.py:30 +#: users/models/preferences.py:29 users/models/preferences.py:30 msgid "user preferences" msgstr "preferenze utente" -#: netbox/users/models/preferences.py:97 +#: users/models/preferences.py:97 #, python-brace-format msgid "Key '{path}' is a leaf node; cannot assign new keys" msgstr "Chiave '{path}'è un nodo foglia; non può assegnare nuove chiavi" -#: netbox/users/models/preferences.py:109 +#: users/models/preferences.py:109 #, python-brace-format msgid "Key '{path}' is a dictionary; cannot assign a non-dictionary value" msgstr "" "Chiave '{path}'è un dizionario; non può assegnare un valore diverso dal " "dizionario" -#: netbox/users/models/tokens.py:36 +#: users/models/tokens.py:36 msgid "expires" msgstr "scade" -#: netbox/users/models/tokens.py:41 +#: users/models/tokens.py:41 msgid "last used" msgstr "usato per ultimo" -#: netbox/users/models/tokens.py:46 +#: users/models/tokens.py:46 msgid "key" msgstr "chiave" -#: netbox/users/models/tokens.py:52 +#: users/models/tokens.py:52 msgid "write enabled" msgstr "scrittura abilitata" -#: netbox/users/models/tokens.py:54 +#: users/models/tokens.py:54 msgid "Permit create/update/delete operations using this key" msgstr "" "Consenti operazioni di creazione/aggiornamento/eliminazione utilizzando " "questa chiave" -#: netbox/users/models/tokens.py:65 +#: users/models/tokens.py:65 msgid "allowed IPs" msgstr "IP consentiti" -#: netbox/users/models/tokens.py:67 +#: users/models/tokens.py:67 msgid "" "Allowed IPv4/IPv6 networks from where the token can be used. Leave blank for" " no restrictions. Ex: \"10.1.1.0/24, 192.168.10.16/32, 2001:DB8:1::/64\"" @@ -14927,42 +14185,42 @@ msgstr "" "vuoto per non avere restrizioni. Es: «10.1.1.0/24, 192.168.10.16/32, 2001:DB" " 8:1: :/64\"" -#: netbox/users/models/tokens.py:75 +#: users/models/tokens.py:75 msgid "token" msgstr "gettone" -#: netbox/users/models/tokens.py:76 +#: users/models/tokens.py:76 msgid "tokens" msgstr "gettoni" -#: netbox/users/models/users.py:57 netbox/vpn/models/crypto.py:42 +#: users/models/users.py:57 vpn/models/crypto.py:42 msgid "group" msgstr "gruppo" -#: netbox/users/models/users.py:92 +#: users/models/users.py:92 msgid "user" msgstr "utente" -#: netbox/users/models/users.py:104 +#: users/models/users.py:104 msgid "A user with this username already exists." msgstr "Esiste già un utente con questo nome utente." -#: netbox/users/tables.py:98 +#: users/tables.py:98 msgid "Custom Actions" msgstr "Azioni personalizzate" -#: netbox/utilities/api.py:153 +#: utilities/api.py:153 #, python-brace-format msgid "Related object not found using the provided attributes: {params}" msgstr "" "Oggetto correlato non trovato utilizzando gli attributi forniti: {params}" -#: netbox/utilities/api.py:156 +#: utilities/api.py:156 #, python-brace-format msgid "Multiple objects match the provided attributes: {params}" msgstr "Più oggetti corrispondono agli attributi forniti: {params}" -#: netbox/utilities/api.py:168 +#: utilities/api.py:168 #, python-brace-format msgid "" "Related objects must be referenced by numeric ID or by dictionary of " @@ -14971,40 +14229,40 @@ msgstr "" "Gli oggetti correlati devono essere referenziati tramite ID numerico o " "dizionario di attributi. Ha ricevuto un valore non riconosciuto: {value}" -#: netbox/utilities/api.py:177 +#: utilities/api.py:177 #, python-brace-format msgid "Related object not found using the provided numeric ID: {id}" msgstr "Oggetto correlato non trovato utilizzando l'ID numerico fornito: {id}" -#: netbox/utilities/choices.py:19 +#: utilities/choices.py:19 #, python-brace-format msgid "{name} has a key defined but CHOICES is not a list" msgstr "{name} ha una chiave definita ma CHOICES non è una lista" -#: netbox/utilities/conversion.py:19 +#: utilities/conversion.py:19 msgid "Weight must be a positive number" msgstr "Il peso deve essere un numero positivo" -#: netbox/utilities/conversion.py:21 +#: utilities/conversion.py:21 #, python-brace-format msgid "Invalid value '{weight}' for weight (must be a number)" msgstr "Valore non valido '{weight}'per il peso (deve essere un numero)" -#: netbox/utilities/conversion.py:32 netbox/utilities/conversion.py:62 +#: utilities/conversion.py:32 utilities/conversion.py:62 #, python-brace-format msgid "Unknown unit {unit}. Must be one of the following: {valid_units}" msgstr "Unità sconosciuta {unit}. Deve essere uno dei seguenti: {valid_units}" -#: netbox/utilities/conversion.py:45 +#: utilities/conversion.py:45 msgid "Length must be a positive number" msgstr "La lunghezza deve essere un numero positivo" -#: netbox/utilities/conversion.py:47 +#: utilities/conversion.py:47 #, python-brace-format msgid "Invalid value '{length}' for length (must be a number)" msgstr "Valore non valido '{length}'per la lunghezza (deve essere un numero)" -#: netbox/utilities/error_handlers.py:31 +#: utilities/error_handlers.py:31 #, python-brace-format msgid "" "Unable to delete {objects}. {count} dependent objects were " @@ -15013,15 +14271,15 @@ msgstr "" "Impossibile eliminare {objects}. {count} sono stati trovati" " oggetti dipendenti: " -#: netbox/utilities/error_handlers.py:33 +#: utilities/error_handlers.py:33 msgid "More than 50" msgstr "Più di 50" -#: netbox/utilities/fields.py:30 +#: utilities/fields.py:30 msgid "RGB color in hexadecimal. Example: " msgstr "Colore RGB in formato esadecimale. Esempio: " -#: netbox/utilities/fields.py:159 +#: utilities/fields.py:159 #, python-format msgid "" "%s(%r) is invalid. to_model parameter to CounterCacheField must be a string " @@ -15030,7 +14288,7 @@ msgstr "" "%s(%r) non è valido. Il parametro to_model di CounterCacheField deve essere " "una stringa nel formato 'app.model'" -#: netbox/utilities/fields.py:169 +#: utilities/fields.py:169 #, python-format msgid "" "%s(%r) is invalid. to_field parameter to CounterCacheField must be a string " @@ -15039,39 +14297,39 @@ msgstr "" "%s(%r) non è valido. Il parametro to_field di CounterCacheField deve essere " "una stringa nel formato 'field'" -#: netbox/utilities/forms/bulk_import.py:23 +#: utilities/forms/bulk_import.py:23 msgid "Enter object data in CSV, JSON or YAML format." msgstr "Inserisci i dati dell'oggetto in formato CSV, JSON o YAML." -#: netbox/utilities/forms/bulk_import.py:36 +#: utilities/forms/bulk_import.py:36 msgid "CSV delimiter" msgstr "Delimitatore CSV" -#: netbox/utilities/forms/bulk_import.py:37 +#: utilities/forms/bulk_import.py:37 msgid "The character which delimits CSV fields. Applies only to CSV format." msgstr "" "Il carattere che delimita i campi CSV. Si applica solo al formato CSV." -#: netbox/utilities/forms/bulk_import.py:51 +#: utilities/forms/bulk_import.py:51 msgid "Form data must be empty when uploading/selecting a file." msgstr "" "I dati del modulo devono essere vuoti durante il caricamento/selezione di un" " file." -#: netbox/utilities/forms/bulk_import.py:80 +#: utilities/forms/bulk_import.py:80 #, python-brace-format msgid "Unknown data format: {format}" msgstr "Formato dati sconosciuto: {format}" -#: netbox/utilities/forms/bulk_import.py:100 +#: utilities/forms/bulk_import.py:100 msgid "Unable to detect data format. Please specify." msgstr "Impossibile rilevare il formato dei dati. Si prega di specificare." -#: netbox/utilities/forms/bulk_import.py:123 +#: utilities/forms/bulk_import.py:123 msgid "Invalid CSV delimiter" msgstr "Delimitatore CSV non valido" -#: netbox/utilities/forms/bulk_import.py:167 +#: utilities/forms/bulk_import.py:167 msgid "" "Invalid YAML data. Data must be in the form of multiple documents, or a " "single document comprising a list of dictionaries." @@ -15079,7 +14337,7 @@ msgstr "" "Dati YAML non validi. I dati devono avere la forma di più documenti o di un " "singolo documento comprendente un elenco di dizionari." -#: netbox/utilities/forms/fields/array.py:20 +#: utilities/forms/fields/array.py:20 #, python-brace-format msgid "" "Invalid list ({value}). Must be numeric and ranges must be in ascending " @@ -15088,7 +14346,7 @@ msgstr "" "Elenco non valido ({value}). Deve essere numerico e gli intervalli devono " "essere in ordine crescente." -#: netbox/utilities/forms/fields/array.py:40 +#: utilities/forms/fields/array.py:40 msgid "" "Specify one or more numeric ranges separated by commas. Example: " "1-5,20-30" @@ -15096,7 +14354,7 @@ msgstr "" "Specifica uno o più intervalli numerici separati da virgole. Esempio: " "1-5,20-30" -#: netbox/utilities/forms/fields/array.py:47 +#: utilities/forms/fields/array.py:47 #, python-brace-format msgid "" "Invalid ranges ({value}). Must be a range of integers in ascending order." @@ -15104,18 +14362,17 @@ msgstr "" "Intervalli non validi ({value}). Deve essere un intervallo di numeri interi " "in ordine crescente." -#: netbox/utilities/forms/fields/csv.py:44 +#: utilities/forms/fields/csv.py:44 #, python-brace-format msgid "Invalid value for a multiple choice field: {value}" msgstr "Valore non valido per un campo a scelta multipla: {value}" -#: netbox/utilities/forms/fields/csv.py:57 -#: netbox/utilities/forms/fields/csv.py:78 +#: utilities/forms/fields/csv.py:57 utilities/forms/fields/csv.py:78 #, python-format msgid "Object not found: %(value)s" msgstr "Oggetto non trovato: %(value)s" -#: netbox/utilities/forms/fields/csv.py:65 +#: utilities/forms/fields/csv.py:65 #, python-brace-format msgid "" "\"{value}\" is not a unique value for this field; multiple objects were " @@ -15124,20 +14381,20 @@ msgstr "" "«{value}\"non è un valore univoco per questo campo; sono stati trovati più " "oggetti" -#: netbox/utilities/forms/fields/csv.py:69 +#: utilities/forms/fields/csv.py:69 #, python-brace-format msgid "\"{field_name}\" is an invalid accessor field name." msgstr "«{field_name}\"è un nome di campo di accesso non valido." -#: netbox/utilities/forms/fields/csv.py:101 +#: utilities/forms/fields/csv.py:101 msgid "Object type must be specified as \".\"" msgstr "Il tipo di oggetto deve essere specificato come».»" -#: netbox/utilities/forms/fields/csv.py:105 +#: utilities/forms/fields/csv.py:105 msgid "Invalid object type" msgstr "Tipo di oggetto non valido" -#: netbox/utilities/forms/fields/expandable.py:25 +#: utilities/forms/fields/expandable.py:25 msgid "" "Alphanumeric ranges are supported for bulk creation. Mixed cases and types " "within a single range are not supported (example: " @@ -15147,7 +14404,7 @@ msgstr "" "casi e i tipi misti all'interno di un unico intervallo non sono supportati " "(esempio: [età, ex] -0/0/ [0-9])." -#: netbox/utilities/forms/fields/expandable.py:46 +#: utilities/forms/fields/expandable.py:46 msgid "" "Specify a numeric range to create multiple IPs.
Example: " "192.0.2.[1,5,100-254]/24" @@ -15155,7 +14412,7 @@ msgstr "" "Specifica un intervallo numerico per creare più IP.
Esempio: " "192.0.2. [1.500-254] /24" -#: netbox/utilities/forms/fields/fields.py:31 +#: utilities/forms/fields/fields.py:31 #, python-brace-format msgid "" " Markdown la sintassi è supportata" -#: netbox/utilities/forms/fields/fields.py:48 +#: utilities/forms/fields/fields.py:48 msgid "URL-friendly unique shorthand" msgstr "Abbreviazione univoca compatibile con gli URL" -#: netbox/utilities/forms/fields/fields.py:101 +#: utilities/forms/fields/fields.py:101 msgid "Enter context data in JSON format." msgstr "" "Inserisci i dati contestuali in JSON " "formato." -#: netbox/utilities/forms/fields/fields.py:124 +#: utilities/forms/fields/fields.py:124 msgid "MAC address must be in EUI-48 format" msgstr "L'indirizzo MAC deve essere in formato EUI-48" -#: netbox/utilities/forms/forms.py:52 +#: utilities/forms/forms.py:52 msgid "Use regular expressions" msgstr "Usare espressioni regolari" -#: netbox/utilities/forms/forms.py:75 +#: utilities/forms/forms.py:75 msgid "" "Numeric ID of an existing object to update (if not creating a new object)" msgstr "" "ID numerico di un oggetto esistente da aggiornare (se non si crea un nuovo " "oggetto)" -#: netbox/utilities/forms/forms.py:92 +#: utilities/forms/forms.py:92 #, python-brace-format msgid "Unrecognized header: {name}" msgstr "Intestazione non riconosciuta: {name}" -#: netbox/utilities/forms/forms.py:118 +#: utilities/forms/forms.py:118 msgid "Available Columns" msgstr "Colonne disponibili" -#: netbox/utilities/forms/forms.py:126 +#: utilities/forms/forms.py:126 msgid "Selected Columns" msgstr "Colonne selezionate" -#: netbox/utilities/forms/mixins.py:44 +#: utilities/forms/mixins.py:44 msgid "" "This object has been modified since the form was rendered. Please consult " "the object's change log for details." @@ -15210,13 +14467,13 @@ msgstr "" "Questo oggetto è stato modificato dopo il rendering del modulo. Per i " "dettagli, consulta il registro delle modifiche dell'oggetto." -#: netbox/utilities/forms/utils.py:42 netbox/utilities/forms/utils.py:68 -#: netbox/utilities/forms/utils.py:85 netbox/utilities/forms/utils.py:87 +#: utilities/forms/utils.py:42 utilities/forms/utils.py:68 +#: utilities/forms/utils.py:85 utilities/forms/utils.py:87 #, python-brace-format msgid "Range \"{value}\" is invalid." msgstr "Gamma»{value}\"non è valido." -#: netbox/utilities/forms/utils.py:74 +#: utilities/forms/utils.py:74 #, python-brace-format msgid "" "Invalid range: Ending value ({end}) must be greater than beginning value " @@ -15225,70 +14482,70 @@ msgstr "" "Intervallo non valido: valore finale ({end}) deve essere maggiore del valore" " iniziale ({begin})." -#: netbox/utilities/forms/utils.py:232 +#: utilities/forms/utils.py:232 #, python-brace-format msgid "Duplicate or conflicting column header for \"{field}\"" msgstr "Intestazione di colonna duplicata o in conflitto per»{field}»" -#: netbox/utilities/forms/utils.py:238 +#: utilities/forms/utils.py:238 #, python-brace-format msgid "Duplicate or conflicting column header for \"{header}\"" msgstr "Intestazione di colonna duplicata o in conflitto per»{header}»" -#: netbox/utilities/forms/utils.py:247 +#: utilities/forms/utils.py:247 #, python-brace-format msgid "Row {row}: Expected {count_expected} columns but found {count_found}" msgstr "" "Fila {row}: Previsto {count_expected} colonne ma trovate {count_found}" -#: netbox/utilities/forms/utils.py:270 +#: utilities/forms/utils.py:270 #, python-brace-format msgid "Unexpected column header \"{field}\" found." msgstr "Intestazione di colonna inaspettata»{field}«trovato." -#: netbox/utilities/forms/utils.py:272 +#: utilities/forms/utils.py:272 #, python-brace-format msgid "Column \"{field}\" is not a related object; cannot use dots" msgstr "Colonna»{field}\"non è un oggetto correlato; non può usare punti" -#: netbox/utilities/forms/utils.py:276 +#: utilities/forms/utils.py:276 #, python-brace-format msgid "Invalid related object attribute for column \"{field}\": {to_field}" msgstr "" "Attributo oggetto correlato non valido per la colonna»{field}«: {to_field}" -#: netbox/utilities/forms/utils.py:284 +#: utilities/forms/utils.py:284 #, python-brace-format msgid "Required column header \"{header}\" not found." msgstr "Intestazione di colonna obbligatoria»{header}\"non trovato." -#: netbox/utilities/forms/widgets/apiselect.py:124 +#: utilities/forms/widgets/apiselect.py:124 #, python-brace-format msgid "Missing required value for dynamic query param: '{dynamic_params}'" msgstr "" "Valore obbligatorio mancante per il parametro di interrogazione dinamica: " "'{dynamic_params}»" -#: netbox/utilities/forms/widgets/apiselect.py:141 +#: utilities/forms/widgets/apiselect.py:141 #, python-brace-format msgid "Missing required value for static query param: '{static_params}'" msgstr "" "Valore obbligatorio mancante per il parametro di query statica: " "'{static_params}»" -#: netbox/utilities/password_validation.py:13 +#: utilities/password_validation.py:13 msgid "Password must have at least one numeral." msgstr "La password deve contenere almeno un numero." -#: netbox/utilities/password_validation.py:18 +#: utilities/password_validation.py:18 msgid "Password must have at least one uppercase letter." msgstr "La password deve contenere almeno una lettera maiuscola." -#: netbox/utilities/password_validation.py:23 +#: utilities/password_validation.py:23 msgid "Password must have at least one lowercase letter." msgstr "La password deve contenere almeno una lettera minuscola." -#: netbox/utilities/password_validation.py:27 +#: utilities/password_validation.py:27 msgid "" "Your password must contain at least one numeral, one uppercase letter and " "one lowercase letter." @@ -15296,7 +14553,7 @@ msgstr "" "La password deve contenere almeno un numero, una lettera maiuscola e una " "lettera minuscola." -#: netbox/utilities/permissions.py:42 +#: utilities/permissions.py:42 #, python-brace-format msgid "" "Invalid permission name: {name}. Must be in the format " @@ -15305,127 +14562,127 @@ msgstr "" "Nome di autorizzazione non valido: {name}. Deve essere nel formato " "._" -#: netbox/utilities/permissions.py:60 +#: utilities/permissions.py:60 #, python-brace-format msgid "Unknown app_label/model_name for {name}" msgstr "app_label/model_name sconosciuto per {name}" -#: netbox/utilities/request.py:76 +#: utilities/request.py:76 #, python-brace-format msgid "Invalid IP address set for {header}: {ip}" msgstr "Indirizzo IP non valido impostato per {header}: {ip}" -#: netbox/utilities/tables.py:47 +#: utilities/tables.py:47 #, python-brace-format msgid "A column named {name} is already defined for table {table_name}" msgstr "" "Una colonna denominata {name} è già definito per la tabella {table_name}" -#: netbox/utilities/templates/builtins/customfield_value.html:30 +#: utilities/templates/builtins/customfield_value.html:30 msgid "Not defined" msgstr "Non definito" -#: netbox/utilities/templates/buttons/bookmark.html:9 +#: utilities/templates/buttons/bookmark.html:9 msgid "Unbookmark" msgstr "Annulla segnalibro" -#: netbox/utilities/templates/buttons/bookmark.html:13 +#: utilities/templates/buttons/bookmark.html:13 msgid "Bookmark" msgstr "Segnalibro" -#: netbox/utilities/templates/buttons/clone.html:4 +#: utilities/templates/buttons/clone.html:4 msgid "Clone" msgstr "Clona" -#: netbox/utilities/templates/buttons/export.html:7 +#: utilities/templates/buttons/export.html:7 msgid "Current View" msgstr "Visualizzazione corrente" -#: netbox/utilities/templates/buttons/export.html:8 +#: utilities/templates/buttons/export.html:8 msgid "All Data" msgstr "Tutti i dati" -#: netbox/utilities/templates/buttons/export.html:28 +#: utilities/templates/buttons/export.html:28 msgid "Add export template" msgstr "Aggiungi modello di esportazione" -#: netbox/utilities/templates/buttons/import.html:4 +#: utilities/templates/buttons/import.html:4 msgid "Import" msgstr "Importa" -#: netbox/utilities/templates/buttons/subscribe.html:10 +#: utilities/templates/buttons/subscribe.html:10 msgid "Unsubscribe" msgstr "Annulla l'iscrizione" -#: netbox/utilities/templates/buttons/subscribe.html:14 +#: utilities/templates/buttons/subscribe.html:14 msgid "Subscribe" msgstr "Abbonati" -#: netbox/utilities/templates/form_helpers/render_field.html:41 +#: utilities/templates/form_helpers/render_field.html:41 msgid "Copy to clipboard" msgstr "Copia negli appunti" -#: netbox/utilities/templates/form_helpers/render_field.html:57 +#: 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 +#: utilities/templates/form_helpers/render_field.html:70 msgid "Set Null" msgstr "Imposta Null" -#: netbox/utilities/templates/helpers/applied_filters.html:11 +#: utilities/templates/helpers/applied_filters.html:11 msgid "Clear all" msgstr "Cancella tutto" -#: netbox/utilities/templates/helpers/table_config_form.html:8 +#: utilities/templates/helpers/table_config_form.html:8 msgid "Table Configuration" msgstr "Configurazione della tabella" -#: netbox/utilities/templates/helpers/table_config_form.html:31 +#: utilities/templates/helpers/table_config_form.html:31 msgid "Move Up" msgstr "Sposta verso l'alto" -#: netbox/utilities/templates/helpers/table_config_form.html:34 +#: utilities/templates/helpers/table_config_form.html:34 msgid "Move Down" msgstr "Sposta verso il basso" -#: netbox/utilities/templates/navigation/menu.html:14 +#: utilities/templates/navigation/menu.html:14 msgid "Search…" msgstr "Cerca..." -#: netbox/utilities/templates/navigation/menu.html:14 +#: utilities/templates/navigation/menu.html:14 msgid "Search NetBox" msgstr "Cerca NetBox" -#: netbox/utilities/templates/widgets/apiselect.html:7 +#: utilities/templates/widgets/apiselect.html:7 msgid "Open selector" msgstr "Apri selettore" -#: netbox/utilities/templates/widgets/markdown_input.html:6 +#: utilities/templates/widgets/markdown_input.html:6 msgid "Write" msgstr "Scrivere" -#: netbox/utilities/testing/views.py:632 +#: utilities/testing/views.py:632 msgid "The test must define csv_update_data." msgstr "Il test deve definire csv_update_data." -#: netbox/utilities/validators.py:65 +#: utilities/validators.py:65 #, python-brace-format msgid "{value} is not a valid regular expression." msgstr "{value} non è un'espressione regolare valida." -#: netbox/utilities/views.py:57 +#: utilities/views.py:57 #, python-brace-format msgid "{self.__class__.__name__} must implement get_required_permission()" msgstr "" "{self.__class__.__name__} deve implementare get_required_permission ()" -#: netbox/utilities/views.py:93 +#: utilities/views.py:93 #, python-brace-format msgid "{class_name} must implement get_required_permission()" msgstr "{class_name} deve implementare get_required_permission ()" -#: netbox/utilities/views.py:117 +#: utilities/views.py:117 #, python-brace-format msgid "" "{class_name} has no queryset defined. ObjectPermissionRequiredMixin may only" @@ -15434,63 +14691,61 @@ msgstr "" "{class_name} non ha un set di query definito. ObjectPermissionRequiredMixin " "può essere utilizzato solo su viste che definiscono un set di query di base" -#: netbox/virtualization/filtersets.py:79 +#: virtualization/filtersets.py:79 msgid "Parent group (ID)" msgstr "Gruppo padre (ID)" -#: netbox/virtualization/filtersets.py:85 +#: virtualization/filtersets.py:85 msgid "Parent group (slug)" msgstr "Gruppo principale (slug)" -#: netbox/virtualization/filtersets.py:89 -#: netbox/virtualization/filtersets.py:141 +#: virtualization/filtersets.py:89 virtualization/filtersets.py:141 msgid "Cluster type (ID)" msgstr "Tipo di cluster (ID)" -#: netbox/virtualization/filtersets.py:151 -#: netbox/virtualization/filtersets.py:271 +#: virtualization/filtersets.py:151 virtualization/filtersets.py:271 msgid "Cluster (ID)" msgstr "Cluster (ID)" -#: netbox/virtualization/forms/bulk_edit.py:166 -#: netbox/virtualization/models/virtualmachines.py:115 +#: virtualization/forms/bulk_edit.py:166 +#: virtualization/models/virtualmachines.py:115 msgid "vCPUs" msgstr "vCPU" -#: netbox/virtualization/forms/bulk_edit.py:170 +#: virtualization/forms/bulk_edit.py:170 msgid "Memory (MB)" msgstr "Memoria (MB)" -#: netbox/virtualization/forms/bulk_edit.py:174 +#: virtualization/forms/bulk_edit.py:174 msgid "Disk (GB)" msgstr "Disco (GB)" -#: netbox/virtualization/forms/bulk_edit.py:334 -#: netbox/virtualization/forms/filtersets.py:251 +#: virtualization/forms/bulk_edit.py:334 +#: virtualization/forms/filtersets.py:251 msgid "Size (GB)" msgstr "Dimensioni (GB)" -#: netbox/virtualization/forms/bulk_import.py:44 +#: virtualization/forms/bulk_import.py:44 msgid "Type of cluster" msgstr "Tipo di cluster" -#: netbox/virtualization/forms/bulk_import.py:51 +#: virtualization/forms/bulk_import.py:51 msgid "Assigned cluster group" msgstr "Gruppo di cluster assegnato" -#: netbox/virtualization/forms/bulk_import.py:96 +#: virtualization/forms/bulk_import.py:96 msgid "Assigned cluster" msgstr "Cluster assegnato" -#: netbox/virtualization/forms/bulk_import.py:103 +#: virtualization/forms/bulk_import.py:103 msgid "Assigned device within cluster" msgstr "Dispositivo assegnato all'interno del cluster" -#: netbox/virtualization/forms/filtersets.py:183 +#: virtualization/forms/filtersets.py:183 msgid "Serial number" msgstr "Numero di serie" -#: netbox/virtualization/forms/model_forms.py:153 +#: virtualization/forms/model_forms.py:153 #, python-brace-format msgid "" "{device} belongs to a different site ({device_site}) than the cluster " @@ -15499,52 +14754,52 @@ msgstr "" "{device} appartiene a un sito diverso ({device_site}) rispetto al cluster " "({cluster_site})" -#: netbox/virtualization/forms/model_forms.py:192 +#: virtualization/forms/model_forms.py:192 msgid "Optionally pin this VM to a specific host device within the cluster" msgstr "" "Facoltativamente, aggiungi questa VM a un dispositivo host specifico " "all'interno del cluster" -#: netbox/virtualization/forms/model_forms.py:221 +#: virtualization/forms/model_forms.py:221 msgid "Site/Cluster" msgstr "Sito/cluster" -#: netbox/virtualization/forms/model_forms.py:244 +#: virtualization/forms/model_forms.py:244 msgid "Disk size is managed via the attachment of virtual disks." msgstr "" "La dimensione del disco viene gestita tramite il collegamento di dischi " "virtuali." -#: netbox/virtualization/forms/model_forms.py:372 -#: netbox/virtualization/tables/virtualmachines.py:111 +#: virtualization/forms/model_forms.py:372 +#: virtualization/tables/virtualmachines.py:111 msgid "Disk" msgstr "Disco" -#: netbox/virtualization/models/clusters.py:25 +#: virtualization/models/clusters.py:25 msgid "cluster type" msgstr "tipo di cluster" -#: netbox/virtualization/models/clusters.py:26 +#: virtualization/models/clusters.py:26 msgid "cluster types" msgstr "tipi di cluster" -#: netbox/virtualization/models/clusters.py:45 +#: virtualization/models/clusters.py:45 msgid "cluster group" msgstr "gruppo di cluster" -#: netbox/virtualization/models/clusters.py:46 +#: virtualization/models/clusters.py:46 msgid "cluster groups" msgstr "gruppi di cluster" -#: netbox/virtualization/models/clusters.py:121 +#: virtualization/models/clusters.py:121 msgid "cluster" msgstr "grappolo" -#: netbox/virtualization/models/clusters.py:122 +#: virtualization/models/clusters.py:122 msgid "clusters" msgstr "grappoli" -#: netbox/virtualization/models/clusters.py:141 +#: virtualization/models/clusters.py:141 #, python-brace-format msgid "" "{count} devices are assigned as hosts for this cluster but are not in site " @@ -15553,44 +14808,44 @@ msgstr "" "{count} i dispositivi vengono assegnati come host per questo cluster ma non " "si trovano nel sito {site}" -#: netbox/virtualization/models/virtualmachines.py:123 +#: virtualization/models/virtualmachines.py:123 msgid "memory (MB)" msgstr "memoria (MB)" -#: netbox/virtualization/models/virtualmachines.py:128 +#: virtualization/models/virtualmachines.py:128 msgid "disk (MB)" msgstr "disco (MB)" -#: netbox/virtualization/models/virtualmachines.py:166 +#: virtualization/models/virtualmachines.py:166 msgid "Virtual machine name must be unique per cluster." msgstr "Il nome della macchina virtuale deve essere univoco per cluster." -#: netbox/virtualization/models/virtualmachines.py:169 +#: virtualization/models/virtualmachines.py:169 msgid "virtual machine" msgstr "macchina virtuale" -#: netbox/virtualization/models/virtualmachines.py:170 +#: virtualization/models/virtualmachines.py:170 msgid "virtual machines" msgstr "macchine virtuali" -#: netbox/virtualization/models/virtualmachines.py:184 +#: virtualization/models/virtualmachines.py:184 msgid "A virtual machine must be assigned to a site and/or cluster." msgstr "" "Una macchina virtuale deve essere assegnata a un sito e/o a un cluster." -#: netbox/virtualization/models/virtualmachines.py:191 +#: virtualization/models/virtualmachines.py:191 #, python-brace-format msgid "" "The selected cluster ({cluster}) is not assigned to this site ({site})." msgstr "" "Il cluster selezionato ({cluster}) non è assegnato a questo sito ({site})." -#: netbox/virtualization/models/virtualmachines.py:198 +#: virtualization/models/virtualmachines.py:198 msgid "Must specify a cluster when assigning a host device." msgstr "" "È necessario specificare un cluster quando si assegna un dispositivo host." -#: netbox/virtualization/models/virtualmachines.py:203 +#: virtualization/models/virtualmachines.py:203 #, python-brace-format msgid "" "The selected device ({device}) is not assigned to this cluster ({cluster})." @@ -15598,7 +14853,7 @@ msgstr "" "Il dispositivo selezionato ({device}) non è assegnato a questo cluster " "({cluster})." -#: netbox/virtualization/models/virtualmachines.py:215 +#: virtualization/models/virtualmachines.py:215 #, python-brace-format msgid "" "The specified disk size ({size}) must match the aggregate size of assigned " @@ -15607,18 +14862,18 @@ msgstr "" "La dimensione del disco specificata ({size}) deve corrispondere alla " "dimensione aggregata dei dischi virtuali assegnati ({total_size})." -#: netbox/virtualization/models/virtualmachines.py:229 +#: virtualization/models/virtualmachines.py:229 #, python-brace-format msgid "Must be an IPv{family} address. ({ip} is an IPv{version} address.)" msgstr "" "Deve essere un IPV{family} indirizzo. ({ip} è un IPv{version} indirizzo.)" -#: netbox/virtualization/models/virtualmachines.py:238 +#: virtualization/models/virtualmachines.py:238 #, python-brace-format msgid "The specified IP address ({ip}) is not assigned to this VM." msgstr "L'indirizzo IP specificato ({ip}) non è assegnato a questa VM." -#: netbox/virtualization/models/virtualmachines.py:396 +#: virtualization/models/virtualmachines.py:396 #, python-brace-format msgid "" "The selected parent interface ({parent}) belongs to a different virtual " @@ -15627,7 +14882,7 @@ msgstr "" "L'interfaccia principale selezionata ({parent}) appartiene a una macchina " "virtuale diversa ({virtual_machine})." -#: netbox/virtualization/models/virtualmachines.py:411 +#: virtualization/models/virtualmachines.py:411 #, python-brace-format msgid "" "The selected bridge interface ({bridge}) belongs to a different virtual " @@ -15636,7 +14891,7 @@ msgstr "" "L'interfaccia bridge selezionata ({bridge}) appartiene a una macchina " "virtuale diversa ({virtual_machine})." -#: netbox/virtualization/models/virtualmachines.py:422 +#: virtualization/models/virtualmachines.py:422 #, python-brace-format msgid "" "The untagged VLAN ({untagged_vlan}) must belong to the same site as the " @@ -15645,401 +14900,394 @@ msgstr "" "La VLAN senza tag ({untagged_vlan}) deve appartenere allo stesso sito della " "macchina virtuale principale dell'interfaccia o deve essere globale." -#: netbox/virtualization/models/virtualmachines.py:434 +#: virtualization/models/virtualmachines.py:434 msgid "size (MB)" msgstr "dimensione (MB)" -#: netbox/virtualization/models/virtualmachines.py:438 +#: virtualization/models/virtualmachines.py:438 msgid "virtual disk" msgstr "disco virtuale" -#: netbox/virtualization/models/virtualmachines.py:439 +#: virtualization/models/virtualmachines.py:439 msgid "virtual disks" msgstr "dischi virtuali" -#: netbox/virtualization/views.py:275 +#: virtualization/views.py:275 #, python-brace-format msgid "Added {count} devices to cluster {cluster}" msgstr "Aggiunto {count} dispositivi da raggruppare {cluster}" -#: netbox/virtualization/views.py:310 +#: virtualization/views.py:310 #, python-brace-format msgid "Removed {count} devices from cluster {cluster}" msgstr "Rimosso {count} dispositivi dal cluster {cluster}" -#: netbox/vpn/choices.py:31 +#: vpn/choices.py:31 msgid "IPsec - Transport" msgstr "IPSec - Trasporto" -#: netbox/vpn/choices.py:32 +#: vpn/choices.py:32 msgid "IPsec - Tunnel" msgstr "IPSec - Tunnel" -#: netbox/vpn/choices.py:33 +#: vpn/choices.py:33 msgid "IP-in-IP" msgstr "IP in IP" -#: netbox/vpn/choices.py:34 +#: vpn/choices.py:34 msgid "GRE" msgstr "GRE" -#: netbox/vpn/choices.py:56 +#: vpn/choices.py:56 msgid "Hub" msgstr "Hub" -#: netbox/vpn/choices.py:57 +#: vpn/choices.py:57 msgid "Spoke" msgstr "Ha parlato" -#: netbox/vpn/choices.py:80 +#: vpn/choices.py:80 msgid "Aggressive" msgstr "Agressivo" -#: netbox/vpn/choices.py:81 +#: vpn/choices.py:81 msgid "Main" msgstr "Principale" -#: netbox/vpn/choices.py:92 +#: vpn/choices.py:92 msgid "Pre-shared keys" msgstr "Chiavi precondivise" -#: netbox/vpn/choices.py:93 +#: vpn/choices.py:93 msgid "Certificates" msgstr "Certificati" -#: netbox/vpn/choices.py:94 +#: vpn/choices.py:94 msgid "RSA signatures" msgstr "Firme RSA" -#: netbox/vpn/choices.py:95 +#: vpn/choices.py:95 msgid "DSA signatures" msgstr "Firme DSA" -#: netbox/vpn/choices.py:178 netbox/vpn/choices.py:179 -#: netbox/vpn/choices.py:180 netbox/vpn/choices.py:181 -#: netbox/vpn/choices.py:182 netbox/vpn/choices.py:183 -#: netbox/vpn/choices.py:184 netbox/vpn/choices.py:185 -#: netbox/vpn/choices.py:186 netbox/vpn/choices.py:187 -#: netbox/vpn/choices.py:188 netbox/vpn/choices.py:189 -#: netbox/vpn/choices.py:190 netbox/vpn/choices.py:191 -#: netbox/vpn/choices.py:192 netbox/vpn/choices.py:193 -#: netbox/vpn/choices.py:194 netbox/vpn/choices.py:195 -#: netbox/vpn/choices.py:196 netbox/vpn/choices.py:197 -#: netbox/vpn/choices.py:198 netbox/vpn/choices.py:199 -#: netbox/vpn/choices.py:200 netbox/vpn/choices.py:201 +#: vpn/choices.py:178 vpn/choices.py:179 vpn/choices.py:180 vpn/choices.py:181 +#: vpn/choices.py:182 vpn/choices.py:183 vpn/choices.py:184 vpn/choices.py:185 +#: vpn/choices.py:186 vpn/choices.py:187 vpn/choices.py:188 vpn/choices.py:189 +#: vpn/choices.py:190 vpn/choices.py:191 vpn/choices.py:192 vpn/choices.py:193 +#: vpn/choices.py:194 vpn/choices.py:195 vpn/choices.py:196 vpn/choices.py:197 +#: vpn/choices.py:198 vpn/choices.py:199 vpn/choices.py:200 vpn/choices.py:201 #, python-brace-format msgid "Group {n}" msgstr "Gruppo {n}" -#: netbox/vpn/choices.py:243 +#: vpn/choices.py:243 msgid "Ethernet Private LAN" msgstr "LAN privata Ethernet" -#: netbox/vpn/choices.py:244 +#: vpn/choices.py:244 msgid "Ethernet Virtual Private LAN" msgstr "LAN privata virtuale Ethernet" -#: netbox/vpn/choices.py:247 +#: vpn/choices.py:247 msgid "Ethernet Private Tree" msgstr "Albero privato Ethernet" -#: netbox/vpn/choices.py:248 +#: vpn/choices.py:248 msgid "Ethernet Virtual Private Tree" msgstr "Albero privato virtuale Ethernet" -#: netbox/vpn/filtersets.py:41 +#: vpn/filtersets.py:41 msgid "Tunnel group (ID)" msgstr "Gruppo Tunnel (ID)" -#: netbox/vpn/filtersets.py:47 +#: vpn/filtersets.py:47 msgid "Tunnel group (slug)" msgstr "Gruppo tunnel (slug)" -#: netbox/vpn/filtersets.py:54 +#: vpn/filtersets.py:54 msgid "IPSec profile (ID)" msgstr "Profilo IPSec (ID)" -#: netbox/vpn/filtersets.py:60 +#: vpn/filtersets.py:60 msgid "IPSec profile (name)" msgstr "Profilo IPSec (nome)" -#: netbox/vpn/filtersets.py:81 +#: vpn/filtersets.py:81 msgid "Tunnel (ID)" msgstr "Tunnel (ID)" -#: netbox/vpn/filtersets.py:87 +#: vpn/filtersets.py:87 msgid "Tunnel (name)" msgstr "Tunnel (nome)" -#: netbox/vpn/filtersets.py:118 +#: vpn/filtersets.py:118 msgid "Outside IP (ID)" msgstr "IP esterno (ID)" -#: netbox/vpn/filtersets.py:130 netbox/vpn/filtersets.py:263 +#: vpn/filtersets.py:130 vpn/filtersets.py:263 msgid "IKE policy (ID)" msgstr "Politica IKE (ID)" -#: netbox/vpn/filtersets.py:136 netbox/vpn/filtersets.py:269 +#: vpn/filtersets.py:136 vpn/filtersets.py:269 msgid "IKE policy (name)" msgstr "Politica IKE (nome)" -#: netbox/vpn/filtersets.py:200 netbox/vpn/filtersets.py:273 +#: vpn/filtersets.py:200 vpn/filtersets.py:273 msgid "IPSec policy (ID)" msgstr "Politica IPSec (ID)" -#: netbox/vpn/filtersets.py:206 netbox/vpn/filtersets.py:279 +#: vpn/filtersets.py:206 vpn/filtersets.py:279 msgid "IPSec policy (name)" msgstr "Politica IPSec (nome)" -#: netbox/vpn/filtersets.py:348 +#: vpn/filtersets.py:348 msgid "L2VPN (slug)" msgstr "L2VPN (slug)" -#: netbox/vpn/filtersets.py:412 +#: vpn/filtersets.py:412 msgid "VM Interface (ID)" msgstr "Interfaccia VM (ID)" -#: netbox/vpn/filtersets.py:418 +#: vpn/filtersets.py:418 msgid "VLAN (name)" msgstr "VLAN (nome)" -#: netbox/vpn/forms/bulk_edit.py:45 netbox/vpn/forms/bulk_import.py:42 -#: netbox/vpn/forms/filtersets.py:54 +#: vpn/forms/bulk_edit.py:45 vpn/forms/bulk_import.py:42 +#: vpn/forms/filtersets.py:54 msgid "Tunnel group" msgstr "Gruppo Tunnel" -#: netbox/vpn/forms/bulk_edit.py:117 netbox/vpn/models/crypto.py:47 +#: vpn/forms/bulk_edit.py:117 vpn/models/crypto.py:47 msgid "SA lifetime" msgstr "Una vita" -#: netbox/vpn/forms/bulk_edit.py:151 netbox/wireless/forms/bulk_edit.py:79 -#: netbox/wireless/forms/bulk_edit.py:126 -#: netbox/wireless/forms/filtersets.py:64 -#: netbox/wireless/forms/filtersets.py:98 +#: vpn/forms/bulk_edit.py:151 wireless/forms/bulk_edit.py:79 +#: wireless/forms/bulk_edit.py:126 wireless/forms/filtersets.py:64 +#: wireless/forms/filtersets.py:98 msgid "Pre-shared key" msgstr "Chiave precondivisa" -#: netbox/vpn/forms/bulk_edit.py:237 netbox/vpn/forms/bulk_import.py:239 -#: netbox/vpn/forms/filtersets.py:199 netbox/vpn/forms/model_forms.py:370 -#: netbox/vpn/models/crypto.py:104 +#: vpn/forms/bulk_edit.py:237 vpn/forms/bulk_import.py:239 +#: vpn/forms/filtersets.py:199 vpn/forms/model_forms.py:370 +#: vpn/models/crypto.py:104 msgid "IKE policy" msgstr "Politica IKE" -#: netbox/vpn/forms/bulk_edit.py:242 netbox/vpn/forms/bulk_import.py:244 -#: netbox/vpn/forms/filtersets.py:204 netbox/vpn/forms/model_forms.py:374 -#: netbox/vpn/models/crypto.py:209 +#: vpn/forms/bulk_edit.py:242 vpn/forms/bulk_import.py:244 +#: vpn/forms/filtersets.py:204 vpn/forms/model_forms.py:374 +#: vpn/models/crypto.py:209 msgid "IPSec policy" msgstr "Politica IPSec" -#: netbox/vpn/forms/bulk_import.py:50 +#: vpn/forms/bulk_import.py:50 msgid "Tunnel encapsulation" msgstr "Incapsulamento del tunnel" -#: netbox/vpn/forms/bulk_import.py:83 +#: vpn/forms/bulk_import.py:83 msgid "Operational role" msgstr "Ruolo operativo" -#: netbox/vpn/forms/bulk_import.py:90 +#: vpn/forms/bulk_import.py:90 msgid "Parent device of assigned interface" msgstr "Dispositivo principale dell'interfaccia assegnata" -#: netbox/vpn/forms/bulk_import.py:97 +#: vpn/forms/bulk_import.py:97 msgid "Parent VM of assigned interface" msgstr "VM principale dell'interfaccia assegnata" -#: netbox/vpn/forms/bulk_import.py:104 +#: vpn/forms/bulk_import.py:104 msgid "Device or virtual machine interface" msgstr "Interfaccia dispositivo o macchina virtuale" -#: netbox/vpn/forms/bulk_import.py:183 +#: vpn/forms/bulk_import.py:183 msgid "IKE proposal(s)" msgstr "IKE proposal(s)" -#: netbox/vpn/forms/bulk_import.py:215 netbox/vpn/models/crypto.py:197 +#: vpn/forms/bulk_import.py:215 vpn/models/crypto.py:197 msgid "Diffie-Hellman group for Perfect Forward Secrecy" msgstr "Gruppo Diffie-Hellman per Perfect Forward Secrecy" -#: netbox/vpn/forms/bulk_import.py:222 +#: vpn/forms/bulk_import.py:222 msgid "IPSec proposal(s)" msgstr "IPSec proposal(s)" -#: netbox/vpn/forms/bulk_import.py:236 +#: vpn/forms/bulk_import.py:236 msgid "IPSec protocol" msgstr "Protocollo IPSec" -#: netbox/vpn/forms/bulk_import.py:266 +#: vpn/forms/bulk_import.py:266 msgid "L2VPN type" msgstr "Tipo L2VPN" -#: netbox/vpn/forms/bulk_import.py:287 +#: vpn/forms/bulk_import.py:287 msgid "Parent device (for interface)" msgstr "Dispositivo principale (per interfaccia)" -#: netbox/vpn/forms/bulk_import.py:294 +#: vpn/forms/bulk_import.py:294 msgid "Parent virtual machine (for interface)" msgstr "Macchina virtuale principale (per interfaccia)" -#: netbox/vpn/forms/bulk_import.py:301 +#: vpn/forms/bulk_import.py:301 msgid "Assigned interface (device or VM)" msgstr "Interfaccia assegnata (dispositivo o VM)" -#: netbox/vpn/forms/bulk_import.py:334 +#: vpn/forms/bulk_import.py:334 msgid "Cannot import device and VM interface terminations simultaneously." msgstr "" "Non è possibile importare contemporaneamente le terminazioni del dispositivo" " e dell'interfaccia VM." -#: netbox/vpn/forms/bulk_import.py:336 +#: vpn/forms/bulk_import.py:336 msgid "Each termination must specify either an interface or a VLAN." msgstr "Ogni terminazione deve specificare un'interfaccia o una VLAN." -#: netbox/vpn/forms/bulk_import.py:338 +#: vpn/forms/bulk_import.py:338 msgid "Cannot assign both an interface and a VLAN." msgstr "Non è possibile assegnare sia un'interfaccia che una VLAN." -#: netbox/vpn/forms/filtersets.py:130 +#: vpn/forms/filtersets.py:130 msgid "IKE version" msgstr "Versione IKE" -#: netbox/vpn/forms/filtersets.py:142 netbox/vpn/forms/filtersets.py:175 -#: netbox/vpn/forms/model_forms.py:298 netbox/vpn/forms/model_forms.py:334 +#: vpn/forms/filtersets.py:142 vpn/forms/filtersets.py:175 +#: vpn/forms/model_forms.py:298 vpn/forms/model_forms.py:334 msgid "Proposal" msgstr "Proposta" -#: netbox/vpn/forms/filtersets.py:251 +#: vpn/forms/filtersets.py:251 msgid "Assigned Object Type" msgstr "Tipo di oggetto assegnato" -#: netbox/vpn/forms/model_forms.py:95 netbox/vpn/forms/model_forms.py:130 -#: netbox/vpn/forms/model_forms.py:240 netbox/vpn/tables/tunnels.py:91 +#: vpn/forms/model_forms.py:95 vpn/forms/model_forms.py:130 +#: vpn/forms/model_forms.py:240 vpn/tables/tunnels.py:91 msgid "Tunnel interface" msgstr "Interfaccia tunnel" -#: netbox/vpn/forms/model_forms.py:150 +#: vpn/forms/model_forms.py:150 msgid "First Termination" msgstr "Prima cessazione" -#: netbox/vpn/forms/model_forms.py:153 +#: vpn/forms/model_forms.py:153 msgid "Second Termination" msgstr "Seconda cessazione" -#: netbox/vpn/forms/model_forms.py:197 +#: vpn/forms/model_forms.py:197 msgid "This parameter is required when defining a termination." msgstr "Questo parametro è obbligatorio per definire una terminazione." -#: netbox/vpn/forms/model_forms.py:320 netbox/vpn/forms/model_forms.py:356 +#: vpn/forms/model_forms.py:320 vpn/forms/model_forms.py:356 msgid "Policy" msgstr "Politica" -#: netbox/vpn/forms/model_forms.py:487 +#: vpn/forms/model_forms.py:487 msgid "A termination must specify an interface or VLAN." msgstr "Una terminazione deve specificare un'interfaccia o una VLAN." -#: netbox/vpn/forms/model_forms.py:489 +#: vpn/forms/model_forms.py:489 msgid "" "A termination can only have one terminating object (an interface or VLAN)." msgstr "" "Una terminazione può avere un solo oggetto di terminazione (un'interfaccia o" " VLAN)." -#: netbox/vpn/models/crypto.py:33 +#: vpn/models/crypto.py:33 msgid "encryption algorithm" msgstr "algoritmo di crittografia" -#: netbox/vpn/models/crypto.py:37 +#: vpn/models/crypto.py:37 msgid "authentication algorithm" msgstr "algoritmo di autenticazione" -#: netbox/vpn/models/crypto.py:44 +#: vpn/models/crypto.py:44 msgid "Diffie-Hellman group ID" msgstr "ID del gruppo Diffie-Hellman" -#: netbox/vpn/models/crypto.py:50 +#: vpn/models/crypto.py:50 msgid "Security association lifetime (in seconds)" msgstr "Durata dell'associazione di sicurezza (in secondi)" -#: netbox/vpn/models/crypto.py:59 +#: vpn/models/crypto.py:59 msgid "IKE proposal" msgstr "Proposta IKE" -#: netbox/vpn/models/crypto.py:60 +#: vpn/models/crypto.py:60 msgid "IKE proposals" msgstr "Proposte IKE" -#: netbox/vpn/models/crypto.py:76 +#: vpn/models/crypto.py:76 msgid "version" msgstr "versione" -#: netbox/vpn/models/crypto.py:88 netbox/vpn/models/crypto.py:190 +#: vpn/models/crypto.py:88 vpn/models/crypto.py:190 msgid "proposals" msgstr "proposte" -#: netbox/vpn/models/crypto.py:91 netbox/wireless/models.py:39 +#: vpn/models/crypto.py:91 wireless/models.py:39 msgid "pre-shared key" msgstr "chiave precondivisa" -#: netbox/vpn/models/crypto.py:105 +#: vpn/models/crypto.py:105 msgid "IKE policies" msgstr "Politiche IKE" -#: netbox/vpn/models/crypto.py:118 +#: vpn/models/crypto.py:118 msgid "Mode is required for selected IKE version" msgstr "La modalità è richiesta per la versione IKE selezionata" -#: netbox/vpn/models/crypto.py:122 +#: vpn/models/crypto.py:122 msgid "Mode cannot be used for selected IKE version" msgstr "La modalità non può essere utilizzata per la versione IKE selezionata" -#: netbox/vpn/models/crypto.py:136 +#: vpn/models/crypto.py:136 msgid "encryption" msgstr "cifratura" -#: netbox/vpn/models/crypto.py:141 +#: vpn/models/crypto.py:141 msgid "authentication" msgstr "autenticazione" -#: netbox/vpn/models/crypto.py:149 +#: vpn/models/crypto.py:149 msgid "Security association lifetime (seconds)" msgstr "Durata dell'associazione di sicurezza (secondi)" -#: netbox/vpn/models/crypto.py:155 +#: vpn/models/crypto.py:155 msgid "Security association lifetime (in kilobytes)" msgstr "Durata dell'associazione di sicurezza (in kilobyte)" -#: netbox/vpn/models/crypto.py:164 +#: vpn/models/crypto.py:164 msgid "IPSec proposal" msgstr "Proposta IPSec" -#: netbox/vpn/models/crypto.py:165 +#: vpn/models/crypto.py:165 msgid "IPSec proposals" msgstr "Proposte IPSec" -#: netbox/vpn/models/crypto.py:178 +#: vpn/models/crypto.py:178 msgid "Encryption and/or authentication algorithm must be defined" msgstr "È necessario definire un algoritmo di crittografia e/o autenticazione" -#: netbox/vpn/models/crypto.py:210 +#: vpn/models/crypto.py:210 msgid "IPSec policies" msgstr "Criteri IPSec" -#: netbox/vpn/models/crypto.py:251 +#: vpn/models/crypto.py:251 msgid "IPSec profiles" msgstr "Profili IPSec" -#: netbox/vpn/models/l2vpn.py:116 +#: vpn/models/l2vpn.py:116 msgid "L2VPN termination" msgstr "Terminazione L2VPN" -#: netbox/vpn/models/l2vpn.py:117 +#: vpn/models/l2vpn.py:117 msgid "L2VPN terminations" msgstr "Terminazioni L2VPN" -#: netbox/vpn/models/l2vpn.py:135 +#: vpn/models/l2vpn.py:135 #, python-brace-format msgid "L2VPN Termination already assigned ({assigned_object})" msgstr "Terminazione L2VPN già assegnata ({assigned_object})" -#: netbox/vpn/models/l2vpn.py:147 +#: vpn/models/l2vpn.py:147 #, python-brace-format msgid "" "{l2vpn_type} L2VPNs cannot have more than two terminations; found " @@ -16048,195 +15296,187 @@ msgstr "" "{l2vpn_type} Le L2VPN non possono avere più di due terminazioni; trovato " "{terminations_count} già definito." -#: netbox/vpn/models/tunnels.py:26 +#: vpn/models/tunnels.py:26 msgid "tunnel group" msgstr "gruppo tunnel" -#: netbox/vpn/models/tunnels.py:27 +#: vpn/models/tunnels.py:27 msgid "tunnel groups" msgstr "gruppi di tunnel" -#: netbox/vpn/models/tunnels.py:53 +#: vpn/models/tunnels.py:53 msgid "encapsulation" msgstr "incapsulamento" -#: netbox/vpn/models/tunnels.py:72 +#: vpn/models/tunnels.py:72 msgid "tunnel ID" msgstr "ID del tunnel" -#: netbox/vpn/models/tunnels.py:94 +#: vpn/models/tunnels.py:94 msgid "tunnel" msgstr "tunnel" -#: netbox/vpn/models/tunnels.py:95 +#: vpn/models/tunnels.py:95 msgid "tunnels" msgstr "tunnels" -#: netbox/vpn/models/tunnels.py:153 +#: vpn/models/tunnels.py:153 msgid "An object may be terminated to only one tunnel at a time." msgstr "Un oggetto può terminare in un solo tunnel alla volta." -#: netbox/vpn/models/tunnels.py:156 +#: vpn/models/tunnels.py:156 msgid "tunnel termination" msgstr "terminazione del tunnel" -#: netbox/vpn/models/tunnels.py:157 +#: vpn/models/tunnels.py:157 msgid "tunnel terminations" msgstr "terminazioni dei tunnel" -#: netbox/vpn/models/tunnels.py:174 +#: vpn/models/tunnels.py:174 #, python-brace-format msgid "{name} is already attached to a tunnel ({tunnel})." msgstr "{name} è già collegato a un tunnel ({tunnel})." -#: netbox/vpn/tables/crypto.py:22 +#: vpn/tables/crypto.py:22 msgid "Authentication Method" msgstr "Metodo di autenticazione" -#: netbox/vpn/tables/crypto.py:25 netbox/vpn/tables/crypto.py:97 +#: vpn/tables/crypto.py:25 vpn/tables/crypto.py:97 msgid "Encryption Algorithm" msgstr "Algoritmo di crittografia" -#: netbox/vpn/tables/crypto.py:28 netbox/vpn/tables/crypto.py:100 +#: vpn/tables/crypto.py:28 vpn/tables/crypto.py:100 msgid "Authentication Algorithm" msgstr "Algoritmo di autenticazione" -#: netbox/vpn/tables/crypto.py:34 +#: vpn/tables/crypto.py:34 msgid "SA Lifetime" msgstr "SA Lifetime" -#: netbox/vpn/tables/crypto.py:71 +#: vpn/tables/crypto.py:71 msgid "Pre-shared Key" msgstr "Pre-shared Key" -#: netbox/vpn/tables/crypto.py:103 +#: vpn/tables/crypto.py:103 msgid "SA Lifetime (Seconds)" msgstr "Durata SA (secondi)" -#: netbox/vpn/tables/crypto.py:106 +#: vpn/tables/crypto.py:106 msgid "SA Lifetime (KB)" msgstr "SA Lifetime (KB)" -#: netbox/vpn/tables/l2vpn.py:69 +#: vpn/tables/l2vpn.py:69 msgid "Object Parent" msgstr "Genitore dell'oggetto" -#: netbox/vpn/tables/l2vpn.py:74 +#: vpn/tables/l2vpn.py:74 msgid "Object Site" msgstr "Sito oggetto" -#: netbox/wireless/choices.py:11 +#: wireless/choices.py:11 msgid "Access point" msgstr "Punto di accesso" -#: netbox/wireless/choices.py:12 +#: wireless/choices.py:12 msgid "Station" msgstr "Stazione" -#: netbox/wireless/choices.py:467 +#: wireless/choices.py:467 msgid "Open" msgstr "Aperta" -#: netbox/wireless/choices.py:469 +#: wireless/choices.py:469 msgid "WPA Personal (PSK)" msgstr "WPA personal (PSK)" -#: netbox/wireless/choices.py:470 +#: wireless/choices.py:470 msgid "WPA Enterprise" msgstr "WPA Enterprise" -#: netbox/wireless/forms/bulk_edit.py:73 -#: netbox/wireless/forms/bulk_edit.py:120 -#: netbox/wireless/forms/bulk_import.py:68 -#: netbox/wireless/forms/bulk_import.py:71 -#: netbox/wireless/forms/bulk_import.py:110 -#: netbox/wireless/forms/bulk_import.py:113 -#: netbox/wireless/forms/filtersets.py:59 -#: netbox/wireless/forms/filtersets.py:93 +#: wireless/forms/bulk_edit.py:73 wireless/forms/bulk_edit.py:120 +#: wireless/forms/bulk_import.py:68 wireless/forms/bulk_import.py:71 +#: wireless/forms/bulk_import.py:110 wireless/forms/bulk_import.py:113 +#: wireless/forms/filtersets.py:59 wireless/forms/filtersets.py:93 msgid "Authentication cipher" msgstr "Cifrario di autenticazione" -#: netbox/wireless/forms/bulk_edit.py:134 -#: netbox/wireless/forms/bulk_import.py:116 -#: netbox/wireless/forms/bulk_import.py:119 -#: netbox/wireless/forms/filtersets.py:106 +#: wireless/forms/bulk_edit.py:134 wireless/forms/bulk_import.py:116 +#: wireless/forms/bulk_import.py:119 wireless/forms/filtersets.py:106 msgid "Distance unit" msgstr "Unità di distanza" -#: netbox/wireless/forms/bulk_import.py:52 +#: wireless/forms/bulk_import.py:52 msgid "Bridged VLAN" msgstr "VLAN con bridge" -#: netbox/wireless/forms/bulk_import.py:89 -#: netbox/wireless/tables/wirelesslink.py:28 +#: wireless/forms/bulk_import.py:89 wireless/tables/wirelesslink.py:28 msgid "Interface A" msgstr "Interfaccia A" -#: netbox/wireless/forms/bulk_import.py:93 -#: netbox/wireless/tables/wirelesslink.py:37 +#: wireless/forms/bulk_import.py:93 wireless/tables/wirelesslink.py:37 msgid "Interface B" msgstr "Interfaccia B" -#: netbox/wireless/forms/model_forms.py:161 +#: wireless/forms/model_forms.py:161 msgid "Side B" msgstr "Lato B" -#: netbox/wireless/models.py:31 +#: wireless/models.py:31 msgid "authentication cipher" msgstr "cifrario di autenticazione" -#: netbox/wireless/models.py:69 +#: wireless/models.py:69 msgid "wireless LAN group" msgstr "gruppo LAN wireless" -#: netbox/wireless/models.py:70 +#: wireless/models.py:70 msgid "wireless LAN groups" msgstr "gruppi LAN wireless" -#: netbox/wireless/models.py:116 +#: wireless/models.py:116 msgid "wireless LAN" msgstr "LAN senza fili" -#: netbox/wireless/models.py:144 +#: wireless/models.py:144 msgid "interface A" msgstr "interfaccia A" -#: netbox/wireless/models.py:151 +#: wireless/models.py:151 msgid "interface B" msgstr "interfaccia B" -#: netbox/wireless/models.py:165 +#: wireless/models.py:165 msgid "distance" msgstr "distanza" -#: netbox/wireless/models.py:172 +#: wireless/models.py:172 msgid "distance unit" msgstr "unità di distanza" -#: netbox/wireless/models.py:219 +#: wireless/models.py:219 msgid "wireless link" msgstr "collegamento wireless" -#: netbox/wireless/models.py:220 +#: wireless/models.py:220 msgid "wireless links" msgstr "collegamenti wireless" -#: netbox/wireless/models.py:236 +#: wireless/models.py:236 msgid "Must specify a unit when setting a wireless distance" msgstr "" "È necessario specificare un'unità quando si imposta una distanza wireless" -#: netbox/wireless/models.py:242 netbox/wireless/models.py:248 +#: wireless/models.py:242 wireless/models.py:248 #, python-brace-format msgid "{type} is not a wireless interface." msgstr "{type} non è un'interfaccia wireless." -#: netbox/wireless/utils.py:16 +#: wireless/utils.py:16 #, python-brace-format msgid "Invalid channel value: {channel}" msgstr "Valore del canale non valido: {channel}" -#: netbox/wireless/utils.py:26 +#: wireless/utils.py:26 #, python-brace-format msgid "Invalid channel attribute: {name}" msgstr "Attributo del canale non valido: {name}" diff --git a/netbox/translations/ja/LC_MESSAGES/django.po b/netbox/translations/ja/LC_MESSAGES/django.po index 39f438041..b86f59030 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: 2024-10-12 05:02+0000\n" +"POT-Creation-Date: 2024-10-28 19:20+0000\n" "PO-Revision-Date: 2023-10-30 17:48+0000\n" "Last-Translator: Jeremy Stretch, 2024\n" "Language-Team: Japanese (https://app.transifex.com/netbox-community/teams/178115/ja/)\n" @@ -23,4577 +23,4177 @@ msgstr "" "Language: ja\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: netbox/account/tables.py:27 netbox/templates/account/token.html:22 -#: netbox/templates/users/token.html:17 netbox/users/forms/bulk_import.py:39 -#: netbox/users/forms/model_forms.py:112 +#: account/tables.py:27 templates/account/token.html:22 +#: templates/users/token.html:17 users/forms/bulk_import.py:39 +#: users/forms/model_forms.py:112 msgid "Key" msgstr "Key" -#: netbox/account/tables.py:31 netbox/users/forms/filtersets.py:132 +#: account/tables.py:31 users/forms/filtersets.py:132 msgid "Write Enabled" msgstr "書き込み可能" -#: netbox/account/tables.py:35 netbox/core/choices.py:86 -#: netbox/core/tables/jobs.py:29 netbox/core/tables/tasks.py:79 -#: netbox/extras/tables/tables.py:335 netbox/extras/tables/tables.py:566 -#: netbox/templates/account/token.html:43 -#: netbox/templates/core/configrevision.html:26 -#: netbox/templates/core/configrevision_restore.html:12 -#: netbox/templates/core/job.html:69 netbox/templates/core/rq_task.html:16 -#: netbox/templates/core/rq_task.html:73 -#: netbox/templates/core/rq_worker.html:14 -#: netbox/templates/extras/htmx/script_result.html:12 -#: netbox/templates/extras/journalentry.html:22 -#: netbox/templates/generic/object.html:58 -#: netbox/templates/users/token.html:35 +#: account/tables.py:35 core/choices.py:86 core/tables/jobs.py:29 +#: core/tables/tasks.py:79 extras/tables/tables.py:335 +#: extras/tables/tables.py:566 templates/account/token.html:43 +#: templates/core/configrevision.html:26 +#: templates/core/configrevision_restore.html:12 templates/core/job.html:69 +#: templates/core/rq_task.html:16 templates/core/rq_task.html:73 +#: templates/core/rq_worker.html:14 +#: templates/extras/htmx/script_result.html:12 +#: templates/extras/journalentry.html:22 templates/generic/object.html:58 +#: templates/users/token.html:35 msgid "Created" msgstr "作成" -#: netbox/account/tables.py:39 netbox/templates/account/token.html:47 -#: netbox/templates/users/token.html:39 netbox/users/forms/bulk_edit.py:117 -#: netbox/users/forms/filtersets.py:136 +#: account/tables.py:39 templates/account/token.html:47 +#: templates/users/token.html:39 users/forms/bulk_edit.py:117 +#: users/forms/filtersets.py:136 msgid "Expires" msgstr "有効期限" -#: netbox/account/tables.py:42 netbox/users/forms/filtersets.py:141 +#: account/tables.py:42 users/forms/filtersets.py:141 msgid "Last Used" msgstr "最終使用日" -#: netbox/account/tables.py:45 netbox/templates/account/token.html:55 -#: netbox/templates/users/token.html:47 netbox/users/forms/bulk_edit.py:122 -#: netbox/users/forms/model_forms.py:124 +#: account/tables.py:45 templates/account/token.html:55 +#: templates/users/token.html:47 users/forms/bulk_edit.py:122 +#: users/forms/model_forms.py:124 msgid "Allowed IPs" msgstr "許可された IP" -#: netbox/account/views.py:114 +#: account/views.py:114 #, python-brace-format msgid "Logged in as {user}." msgstr "としてログイン {user}。" -#: netbox/account/views.py:164 +#: account/views.py:164 msgid "You have logged out." msgstr "ログアウトしました。" -#: netbox/account/views.py:216 +#: account/views.py:216 msgid "Your preferences have been updated." msgstr "設定が更新されました。" -#: netbox/account/views.py:239 +#: account/views.py:239 msgid "LDAP-authenticated user credentials cannot be changed within NetBox." msgstr "LDAP認証されたユーザー資格情報は、NetBox内で変更することはできません。" -#: netbox/account/views.py:254 +#: account/views.py:254 msgid "Your password has been changed successfully." msgstr "パスワードは正常に変更されました。" -#: netbox/circuits/choices.py:21 netbox/dcim/choices.py:20 -#: netbox/dcim/choices.py:102 netbox/dcim/choices.py:185 -#: netbox/dcim/choices.py:237 netbox/dcim/choices.py:1530 -#: netbox/dcim/choices.py:1606 netbox/dcim/choices.py:1656 -#: netbox/virtualization/choices.py:20 netbox/virtualization/choices.py:45 -#: netbox/vpn/choices.py:18 +#: circuits/choices.py:21 dcim/choices.py:20 dcim/choices.py:102 +#: dcim/choices.py:185 dcim/choices.py:237 dcim/choices.py:1530 +#: dcim/choices.py:1606 dcim/choices.py:1656 virtualization/choices.py:20 +#: virtualization/choices.py:45 vpn/choices.py:18 msgid "Planned" msgstr "計画中" -#: netbox/circuits/choices.py:22 netbox/netbox/navigation/menu.py:305 +#: circuits/choices.py:22 netbox/navigation/menu.py:305 msgid "Provisioning" msgstr "プロビジョニング" -#: netbox/circuits/choices.py:23 netbox/core/tables/tasks.py:22 -#: netbox/dcim/choices.py:22 netbox/dcim/choices.py:103 -#: netbox/dcim/choices.py:184 netbox/dcim/choices.py:236 -#: netbox/dcim/choices.py:1605 netbox/dcim/choices.py:1655 -#: netbox/extras/tables/tables.py:495 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:25 -#: netbox/templates/users/user.html:37 netbox/users/forms/bulk_edit.py:38 -#: netbox/virtualization/choices.py:22 netbox/virtualization/choices.py:44 -#: netbox/vpn/choices.py:19 netbox/wireless/choices.py:25 +#: circuits/choices.py:23 core/tables/tasks.py:22 dcim/choices.py:22 +#: dcim/choices.py:103 dcim/choices.py:184 dcim/choices.py:236 +#: dcim/choices.py:1605 dcim/choices.py:1655 extras/tables/tables.py:495 +#: ipam/choices.py:31 ipam/choices.py:49 ipam/choices.py:69 +#: ipam/choices.py:154 templates/extras/configcontext.html:25 +#: templates/users/user.html:37 users/forms/bulk_edit.py:38 +#: virtualization/choices.py:22 virtualization/choices.py:44 vpn/choices.py:19 +#: wireless/choices.py:25 msgid "Active" msgstr "アクティブ" -#: netbox/circuits/choices.py:24 netbox/dcim/choices.py:183 -#: netbox/dcim/choices.py:235 netbox/dcim/choices.py:1604 -#: netbox/dcim/choices.py:1657 netbox/virtualization/choices.py:24 -#: netbox/virtualization/choices.py:43 +#: circuits/choices.py:24 dcim/choices.py:183 dcim/choices.py:235 +#: dcim/choices.py:1604 dcim/choices.py:1657 virtualization/choices.py:24 +#: virtualization/choices.py:43 msgid "Offline" msgstr "オフライン" -#: netbox/circuits/choices.py:25 +#: circuits/choices.py:25 msgid "Deprovisioning" msgstr "デプロビジョニング" -#: netbox/circuits/choices.py:26 +#: circuits/choices.py:26 msgid "Decommissioned" msgstr "廃止" -#: netbox/circuits/choices.py:90 netbox/dcim/choices.py:1617 -#: netbox/tenancy/choices.py:17 +#: circuits/choices.py:90 dcim/choices.py:1617 tenancy/choices.py:17 msgid "Primary" msgstr "プライマリ" -#: netbox/circuits/choices.py:91 netbox/ipam/choices.py:90 -#: netbox/tenancy/choices.py:18 +#: circuits/choices.py:91 ipam/choices.py:90 tenancy/choices.py:18 msgid "Secondary" msgstr "セカンダリ" -#: netbox/circuits/choices.py:92 netbox/tenancy/choices.py:19 +#: circuits/choices.py:92 tenancy/choices.py:19 msgid "Tertiary" msgstr "三次" -#: netbox/circuits/choices.py:93 netbox/tenancy/choices.py:20 +#: circuits/choices.py:93 tenancy/choices.py:20 msgid "Inactive" msgstr "非アクティブ" -#: netbox/circuits/filtersets.py:31 netbox/circuits/filtersets.py:198 -#: netbox/dcim/filtersets.py:98 netbox/dcim/filtersets.py:152 -#: netbox/dcim/filtersets.py:212 netbox/dcim/filtersets.py:333 -#: netbox/dcim/filtersets.py:464 netbox/dcim/filtersets.py:1021 -#: netbox/dcim/filtersets.py:1368 netbox/dcim/filtersets.py:1903 -#: netbox/dcim/filtersets.py:2146 netbox/dcim/filtersets.py:2204 -#: netbox/ipam/filtersets.py:339 netbox/ipam/filtersets.py:959 -#: netbox/virtualization/filtersets.py:45 -#: netbox/virtualization/filtersets.py:173 netbox/vpn/filtersets.py:358 +#: circuits/filtersets.py:31 circuits/filtersets.py:198 dcim/filtersets.py:98 +#: dcim/filtersets.py:152 dcim/filtersets.py:212 dcim/filtersets.py:333 +#: dcim/filtersets.py:464 dcim/filtersets.py:1021 dcim/filtersets.py:1368 +#: dcim/filtersets.py:1903 dcim/filtersets.py:2146 dcim/filtersets.py:2204 +#: ipam/filtersets.py:339 ipam/filtersets.py:959 +#: virtualization/filtersets.py:45 virtualization/filtersets.py:173 +#: vpn/filtersets.py:358 msgid "Region (ID)" msgstr "リージョン (ID)" -#: netbox/circuits/filtersets.py:38 netbox/circuits/filtersets.py:205 -#: netbox/dcim/filtersets.py:105 netbox/dcim/filtersets.py:158 -#: netbox/dcim/filtersets.py:219 netbox/dcim/filtersets.py:340 -#: netbox/dcim/filtersets.py:471 netbox/dcim/filtersets.py:1028 -#: netbox/dcim/filtersets.py:1375 netbox/dcim/filtersets.py:1910 -#: netbox/dcim/filtersets.py:2153 netbox/dcim/filtersets.py:2211 -#: netbox/extras/filtersets.py:509 netbox/ipam/filtersets.py:346 -#: netbox/ipam/filtersets.py:966 netbox/virtualization/filtersets.py:52 -#: netbox/virtualization/filtersets.py:180 netbox/vpn/filtersets.py:353 +#: circuits/filtersets.py:38 circuits/filtersets.py:205 dcim/filtersets.py:105 +#: dcim/filtersets.py:158 dcim/filtersets.py:219 dcim/filtersets.py:340 +#: dcim/filtersets.py:471 dcim/filtersets.py:1028 dcim/filtersets.py:1375 +#: dcim/filtersets.py:1910 dcim/filtersets.py:2153 dcim/filtersets.py:2211 +#: extras/filtersets.py:509 ipam/filtersets.py:346 ipam/filtersets.py:966 +#: virtualization/filtersets.py:52 virtualization/filtersets.py:180 +#: vpn/filtersets.py:353 msgid "Region (slug)" msgstr "リージョン (slug)" -#: netbox/circuits/filtersets.py:44 netbox/circuits/filtersets.py:211 -#: netbox/dcim/filtersets.py:128 netbox/dcim/filtersets.py:225 -#: netbox/dcim/filtersets.py:346 netbox/dcim/filtersets.py:477 -#: netbox/dcim/filtersets.py:1034 netbox/dcim/filtersets.py:1381 -#: netbox/dcim/filtersets.py:1916 netbox/dcim/filtersets.py:2159 -#: netbox/dcim/filtersets.py:2217 netbox/ipam/filtersets.py:352 -#: netbox/ipam/filtersets.py:972 netbox/virtualization/filtersets.py:58 -#: netbox/virtualization/filtersets.py:186 +#: circuits/filtersets.py:44 circuits/filtersets.py:211 dcim/filtersets.py:128 +#: dcim/filtersets.py:225 dcim/filtersets.py:346 dcim/filtersets.py:477 +#: dcim/filtersets.py:1034 dcim/filtersets.py:1381 dcim/filtersets.py:1916 +#: dcim/filtersets.py:2159 dcim/filtersets.py:2217 ipam/filtersets.py:352 +#: ipam/filtersets.py:972 virtualization/filtersets.py:58 +#: virtualization/filtersets.py:186 msgid "Site group (ID)" msgstr "サイトグループ (ID)" -#: netbox/circuits/filtersets.py:51 netbox/circuits/filtersets.py:218 -#: netbox/dcim/filtersets.py:135 netbox/dcim/filtersets.py:232 -#: netbox/dcim/filtersets.py:353 netbox/dcim/filtersets.py:484 -#: netbox/dcim/filtersets.py:1041 netbox/dcim/filtersets.py:1388 -#: netbox/dcim/filtersets.py:1923 netbox/dcim/filtersets.py:2166 -#: netbox/dcim/filtersets.py:2224 netbox/extras/filtersets.py:515 -#: netbox/ipam/filtersets.py:359 netbox/ipam/filtersets.py:979 -#: netbox/virtualization/filtersets.py:65 -#: netbox/virtualization/filtersets.py:193 +#: circuits/filtersets.py:51 circuits/filtersets.py:218 dcim/filtersets.py:135 +#: dcim/filtersets.py:232 dcim/filtersets.py:353 dcim/filtersets.py:484 +#: dcim/filtersets.py:1041 dcim/filtersets.py:1388 dcim/filtersets.py:1923 +#: dcim/filtersets.py:2166 dcim/filtersets.py:2224 extras/filtersets.py:515 +#: ipam/filtersets.py:359 ipam/filtersets.py:979 +#: virtualization/filtersets.py:65 virtualization/filtersets.py:193 msgid "Site group (slug)" msgstr "サイトグループ (slug)" -#: netbox/circuits/filtersets.py:56 netbox/circuits/forms/bulk_edit.py:188 -#: netbox/circuits/forms/bulk_edit.py:216 -#: netbox/circuits/forms/bulk_import.py:124 -#: netbox/circuits/forms/filtersets.py:51 -#: netbox/circuits/forms/filtersets.py:171 -#: netbox/circuits/forms/filtersets.py:209 -#: netbox/circuits/forms/model_forms.py:138 -#: netbox/circuits/forms/model_forms.py:154 -#: netbox/circuits/tables/circuits.py:113 netbox/dcim/forms/bulk_edit.py:168 -#: netbox/dcim/forms/bulk_edit.py:329 netbox/dcim/forms/bulk_edit.py:677 -#: netbox/dcim/forms/bulk_edit.py:873 netbox/dcim/forms/bulk_import.py:131 -#: netbox/dcim/forms/bulk_import.py:230 netbox/dcim/forms/bulk_import.py:309 -#: netbox/dcim/forms/bulk_import.py:540 netbox/dcim/forms/bulk_import.py:1311 -#: netbox/dcim/forms/bulk_import.py:1339 netbox/dcim/forms/filtersets.py:87 -#: netbox/dcim/forms/filtersets.py:225 netbox/dcim/forms/filtersets.py:342 -#: netbox/dcim/forms/filtersets.py:439 netbox/dcim/forms/filtersets.py:753 -#: netbox/dcim/forms/filtersets.py:997 netbox/dcim/forms/filtersets.py:1021 -#: netbox/dcim/forms/filtersets.py:1111 netbox/dcim/forms/filtersets.py:1149 -#: netbox/dcim/forms/filtersets.py:1584 netbox/dcim/forms/filtersets.py:1608 -#: netbox/dcim/forms/filtersets.py:1632 netbox/dcim/forms/model_forms.py:137 -#: netbox/dcim/forms/model_forms.py:165 netbox/dcim/forms/model_forms.py:238 -#: netbox/dcim/forms/model_forms.py:463 netbox/dcim/forms/model_forms.py:723 -#: netbox/dcim/forms/object_create.py:391 netbox/dcim/tables/devices.py:153 -#: netbox/dcim/tables/power.py:26 netbox/dcim/tables/power.py:93 -#: netbox/dcim/tables/racks.py:122 netbox/dcim/tables/racks.py:207 -#: netbox/dcim/tables/sites.py:134 netbox/extras/filtersets.py:525 -#: netbox/ipam/forms/bulk_edit.py:217 netbox/ipam/forms/bulk_edit.py:284 -#: netbox/ipam/forms/bulk_edit.py:451 netbox/ipam/forms/bulk_edit.py:529 -#: netbox/ipam/forms/bulk_import.py:171 netbox/ipam/forms/bulk_import.py:429 -#: netbox/ipam/forms/filtersets.py:153 netbox/ipam/forms/filtersets.py:231 -#: netbox/ipam/forms/filtersets.py:432 netbox/ipam/forms/filtersets.py:489 -#: netbox/ipam/forms/model_forms.py:205 netbox/ipam/forms/model_forms.py:636 -#: netbox/ipam/tables/ip.py:245 netbox/ipam/tables/vlans.py:118 -#: netbox/ipam/tables/vlans.py:221 -#: netbox/templates/circuits/inc/circuit_termination_fields.html:6 -#: netbox/templates/dcim/device.html:22 -#: netbox/templates/dcim/inc/cable_termination.html:8 -#: netbox/templates/dcim/inc/cable_termination.html:33 -#: netbox/templates/dcim/location.html:37 -#: netbox/templates/dcim/powerpanel.html:22 netbox/templates/dcim/rack.html:20 -#: netbox/templates/dcim/rackreservation.html:28 -#: netbox/templates/dcim/site.html:28 netbox/templates/ipam/prefix.html:56 -#: netbox/templates/ipam/vlan.html:23 netbox/templates/ipam/vlan_edit.html:40 -#: netbox/templates/virtualization/cluster.html:42 -#: netbox/templates/virtualization/virtualmachine.html:95 -#: netbox/virtualization/forms/bulk_edit.py:91 -#: netbox/virtualization/forms/bulk_edit.py:109 -#: netbox/virtualization/forms/bulk_edit.py:124 -#: netbox/virtualization/forms/bulk_import.py:59 -#: netbox/virtualization/forms/bulk_import.py:85 -#: netbox/virtualization/forms/filtersets.py:79 -#: netbox/virtualization/forms/filtersets.py:148 -#: netbox/virtualization/forms/model_forms.py:71 -#: netbox/virtualization/forms/model_forms.py:104 -#: netbox/virtualization/forms/model_forms.py:171 -#: netbox/virtualization/tables/clusters.py:77 -#: netbox/virtualization/tables/virtualmachines.py:63 -#: netbox/vpn/forms/filtersets.py:266 netbox/wireless/forms/model_forms.py:76 -#: netbox/wireless/forms/model_forms.py:118 +#: circuits/filtersets.py:56 circuits/forms/bulk_edit.py:188 +#: circuits/forms/bulk_edit.py:216 circuits/forms/bulk_import.py:124 +#: circuits/forms/filtersets.py:51 circuits/forms/filtersets.py:171 +#: circuits/forms/filtersets.py:209 circuits/forms/model_forms.py:138 +#: circuits/forms/model_forms.py:154 circuits/tables/circuits.py:113 +#: dcim/forms/bulk_edit.py:168 dcim/forms/bulk_edit.py:329 +#: dcim/forms/bulk_edit.py:677 dcim/forms/bulk_edit.py:873 +#: dcim/forms/bulk_import.py:131 dcim/forms/bulk_import.py:230 +#: dcim/forms/bulk_import.py:309 dcim/forms/bulk_import.py:540 +#: dcim/forms/bulk_import.py:1311 dcim/forms/bulk_import.py:1339 +#: dcim/forms/filtersets.py:87 dcim/forms/filtersets.py:225 +#: dcim/forms/filtersets.py:342 dcim/forms/filtersets.py:439 +#: dcim/forms/filtersets.py:753 dcim/forms/filtersets.py:997 +#: dcim/forms/filtersets.py:1021 dcim/forms/filtersets.py:1111 +#: dcim/forms/filtersets.py:1149 dcim/forms/filtersets.py:1584 +#: dcim/forms/filtersets.py:1608 dcim/forms/filtersets.py:1632 +#: dcim/forms/model_forms.py:137 dcim/forms/model_forms.py:165 +#: dcim/forms/model_forms.py:238 dcim/forms/model_forms.py:463 +#: dcim/forms/model_forms.py:723 dcim/forms/object_create.py:391 +#: dcim/tables/devices.py:153 dcim/tables/power.py:26 dcim/tables/power.py:93 +#: dcim/tables/racks.py:122 dcim/tables/racks.py:207 dcim/tables/sites.py:134 +#: extras/filtersets.py:525 ipam/forms/bulk_edit.py:218 +#: ipam/forms/bulk_edit.py:285 ipam/forms/bulk_edit.py:484 +#: ipam/forms/bulk_import.py:171 ipam/forms/bulk_import.py:429 +#: ipam/forms/filtersets.py:153 ipam/forms/filtersets.py:231 +#: ipam/forms/filtersets.py:432 ipam/forms/filtersets.py:489 +#: ipam/forms/model_forms.py:205 ipam/forms/model_forms.py:636 +#: ipam/tables/ip.py:245 ipam/tables/vlans.py:118 ipam/tables/vlans.py:221 +#: templates/circuits/inc/circuit_termination_fields.html:6 +#: templates/dcim/device.html:22 templates/dcim/inc/cable_termination.html:8 +#: templates/dcim/inc/cable_termination.html:33 +#: templates/dcim/location.html:37 templates/dcim/powerpanel.html:22 +#: templates/dcim/rack.html:20 templates/dcim/rackreservation.html:28 +#: templates/dcim/site.html:28 templates/ipam/prefix.html:56 +#: templates/ipam/vlan.html:23 templates/ipam/vlan_edit.html:40 +#: templates/virtualization/cluster.html:42 +#: templates/virtualization/virtualmachine.html:95 +#: virtualization/forms/bulk_edit.py:91 virtualization/forms/bulk_edit.py:109 +#: virtualization/forms/bulk_edit.py:124 +#: virtualization/forms/bulk_import.py:59 +#: virtualization/forms/bulk_import.py:85 +#: virtualization/forms/filtersets.py:79 +#: virtualization/forms/filtersets.py:148 +#: virtualization/forms/model_forms.py:71 +#: virtualization/forms/model_forms.py:104 +#: virtualization/forms/model_forms.py:171 +#: virtualization/tables/clusters.py:77 +#: virtualization/tables/virtualmachines.py:63 vpn/forms/filtersets.py:266 +#: wireless/forms/model_forms.py:76 wireless/forms/model_forms.py:118 msgid "Site" msgstr "サイト" -#: netbox/circuits/filtersets.py:62 netbox/circuits/filtersets.py:229 -#: netbox/circuits/filtersets.py:274 netbox/dcim/filtersets.py:242 -#: netbox/dcim/filtersets.py:363 netbox/dcim/filtersets.py:458 -#: netbox/extras/filtersets.py:531 netbox/ipam/filtersets.py:238 -#: netbox/ipam/filtersets.py:369 netbox/ipam/filtersets.py:989 -#: netbox/virtualization/filtersets.py:75 -#: netbox/virtualization/filtersets.py:203 netbox/vpn/filtersets.py:363 +#: circuits/filtersets.py:62 circuits/filtersets.py:229 +#: circuits/filtersets.py:274 dcim/filtersets.py:242 dcim/filtersets.py:363 +#: dcim/filtersets.py:458 extras/filtersets.py:531 ipam/filtersets.py:238 +#: ipam/filtersets.py:369 ipam/filtersets.py:989 +#: virtualization/filtersets.py:75 virtualization/filtersets.py:203 +#: vpn/filtersets.py:363 msgid "Site (slug)" msgstr "サイト (slug)" -#: netbox/circuits/filtersets.py:67 +#: circuits/filtersets.py:67 msgid "ASN (ID)" msgstr "ASN (ID)" -#: netbox/circuits/filtersets.py:73 netbox/circuits/forms/filtersets.py:31 -#: netbox/ipam/forms/model_forms.py:159 netbox/ipam/models/asns.py:108 -#: netbox/ipam/models/asns.py:125 netbox/ipam/tables/asn.py:41 -#: netbox/templates/ipam/asn.html:20 +#: circuits/filtersets.py:73 circuits/forms/filtersets.py:31 +#: ipam/forms/model_forms.py:159 ipam/models/asns.py:108 +#: ipam/models/asns.py:125 ipam/tables/asn.py:41 templates/ipam/asn.html:20 msgid "ASN" msgstr "ASN" -#: netbox/circuits/filtersets.py:95 netbox/circuits/filtersets.py:122 -#: netbox/circuits/filtersets.py:156 netbox/circuits/filtersets.py:283 -#: netbox/circuits/filtersets.py:325 netbox/ipam/filtersets.py:243 +#: circuits/filtersets.py:95 circuits/filtersets.py:122 +#: circuits/filtersets.py:156 circuits/filtersets.py:283 +#: circuits/filtersets.py:325 ipam/filtersets.py:243 msgid "Provider (ID)" msgstr "プロバイダ (ID)" -#: netbox/circuits/filtersets.py:101 netbox/circuits/filtersets.py:128 -#: netbox/circuits/filtersets.py:162 netbox/circuits/filtersets.py:289 -#: netbox/circuits/filtersets.py:331 netbox/ipam/filtersets.py:249 +#: circuits/filtersets.py:101 circuits/filtersets.py:128 +#: circuits/filtersets.py:162 circuits/filtersets.py:289 +#: circuits/filtersets.py:331 ipam/filtersets.py:249 msgid "Provider (slug)" msgstr "プロバイダ (slug)" -#: netbox/circuits/filtersets.py:167 +#: circuits/filtersets.py:167 msgid "Provider account (ID)" msgstr "プロバイダアカウント (ID)" -#: netbox/circuits/filtersets.py:173 +#: circuits/filtersets.py:173 msgid "Provider account (account)" msgstr "プロバイダーアカウント (アカウント)" -#: netbox/circuits/filtersets.py:178 +#: circuits/filtersets.py:178 msgid "Provider network (ID)" msgstr "プロバイダネットワーク (ID)" -#: netbox/circuits/filtersets.py:182 +#: circuits/filtersets.py:182 msgid "Circuit type (ID)" msgstr "回線タイプ (ID)" -#: netbox/circuits/filtersets.py:188 +#: circuits/filtersets.py:188 msgid "Circuit type (slug)" msgstr "回線タイプ (slug)" -#: netbox/circuits/filtersets.py:223 netbox/circuits/filtersets.py:268 -#: netbox/dcim/filtersets.py:236 netbox/dcim/filtersets.py:357 -#: netbox/dcim/filtersets.py:452 netbox/dcim/filtersets.py:1045 -#: netbox/dcim/filtersets.py:1393 netbox/dcim/filtersets.py:1928 -#: netbox/dcim/filtersets.py:2170 netbox/dcim/filtersets.py:2229 -#: netbox/ipam/filtersets.py:232 netbox/ipam/filtersets.py:363 -#: netbox/ipam/filtersets.py:983 netbox/virtualization/filtersets.py:69 -#: netbox/virtualization/filtersets.py:197 netbox/vpn/filtersets.py:368 +#: circuits/filtersets.py:223 circuits/filtersets.py:268 +#: dcim/filtersets.py:236 dcim/filtersets.py:357 dcim/filtersets.py:452 +#: dcim/filtersets.py:1045 dcim/filtersets.py:1393 dcim/filtersets.py:1928 +#: dcim/filtersets.py:2170 dcim/filtersets.py:2229 ipam/filtersets.py:232 +#: ipam/filtersets.py:363 ipam/filtersets.py:983 +#: virtualization/filtersets.py:69 virtualization/filtersets.py:197 +#: vpn/filtersets.py:368 msgid "Site (ID)" msgstr "サイト (ID)" -#: netbox/circuits/filtersets.py:233 netbox/circuits/filtersets.py:237 +#: circuits/filtersets.py:233 circuits/filtersets.py:237 msgid "Termination A (ID)" msgstr "ターミネーション A (ID)" -#: netbox/circuits/filtersets.py:260 netbox/circuits/filtersets.py:320 -#: netbox/core/filtersets.py:77 netbox/core/filtersets.py:136 -#: netbox/core/filtersets.py:173 netbox/dcim/filtersets.py:751 -#: netbox/dcim/filtersets.py:1362 netbox/dcim/filtersets.py:2277 -#: netbox/extras/filtersets.py:41 netbox/extras/filtersets.py:63 -#: netbox/extras/filtersets.py:92 netbox/extras/filtersets.py:132 -#: netbox/extras/filtersets.py:181 netbox/extras/filtersets.py:209 -#: netbox/extras/filtersets.py:239 netbox/extras/filtersets.py:276 -#: netbox/extras/filtersets.py:348 netbox/extras/filtersets.py:391 -#: netbox/extras/filtersets.py:438 netbox/extras/filtersets.py:498 -#: netbox/extras/filtersets.py:657 netbox/extras/filtersets.py:703 -#: netbox/ipam/forms/model_forms.py:449 netbox/netbox/filtersets.py:282 -#: netbox/netbox/forms/__init__.py:22 netbox/netbox/forms/base.py:167 -#: netbox/templates/htmx/object_selector.html:28 -#: netbox/templates/inc/filter_list.html:45 -#: netbox/templates/ipam/ipaddress_assign.html:29 -#: netbox/templates/search.html:7 netbox/templates/search.html:26 -#: netbox/tenancy/filtersets.py:99 netbox/users/filtersets.py:23 -#: netbox/users/filtersets.py:57 netbox/users/filtersets.py:102 -#: netbox/users/filtersets.py:150 netbox/utilities/forms/forms.py:104 -#: netbox/utilities/templates/navigation/menu.html:16 +#: circuits/filtersets.py:260 circuits/filtersets.py:320 core/filtersets.py:77 +#: core/filtersets.py:136 core/filtersets.py:173 dcim/filtersets.py:751 +#: dcim/filtersets.py:1362 dcim/filtersets.py:2277 extras/filtersets.py:41 +#: extras/filtersets.py:63 extras/filtersets.py:92 extras/filtersets.py:132 +#: extras/filtersets.py:181 extras/filtersets.py:209 extras/filtersets.py:239 +#: extras/filtersets.py:276 extras/filtersets.py:348 extras/filtersets.py:391 +#: extras/filtersets.py:438 extras/filtersets.py:498 extras/filtersets.py:657 +#: extras/filtersets.py:703 ipam/forms/model_forms.py:449 +#: netbox/filtersets.py:282 netbox/forms/__init__.py:22 +#: netbox/forms/base.py:167 templates/htmx/object_selector.html:28 +#: templates/inc/filter_list.html:46 templates/ipam/ipaddress_assign.html:29 +#: templates/search.html:7 templates/search.html:26 tenancy/filtersets.py:99 +#: users/filtersets.py:23 users/filtersets.py:57 users/filtersets.py:102 +#: users/filtersets.py:150 utilities/forms/forms.py:104 +#: utilities/templates/navigation/menu.html:16 msgid "Search" msgstr "検索" -#: netbox/circuits/filtersets.py:264 netbox/circuits/forms/bulk_edit.py:172 -#: netbox/circuits/forms/bulk_edit.py:246 -#: netbox/circuits/forms/bulk_import.py:115 -#: netbox/circuits/forms/filtersets.py:198 -#: netbox/circuits/forms/filtersets.py:214 -#: netbox/circuits/forms/filtersets.py:260 -#: netbox/circuits/forms/model_forms.py:111 -#: netbox/circuits/forms/model_forms.py:133 -#: netbox/circuits/forms/model_forms.py:199 -#: netbox/circuits/tables/circuits.py:104 -#: netbox/circuits/tables/circuits.py:164 netbox/dcim/forms/connections.py:73 -#: netbox/templates/circuits/circuit.html:15 -#: netbox/templates/circuits/circuitgroupassignment.html:26 -#: netbox/templates/circuits/circuittermination.html:19 -#: netbox/templates/dcim/inc/cable_termination.html:55 -#: netbox/templates/dcim/trace/circuit.html:4 +#: circuits/filtersets.py:264 circuits/forms/bulk_edit.py:172 +#: circuits/forms/bulk_edit.py:246 circuits/forms/bulk_import.py:115 +#: circuits/forms/filtersets.py:198 circuits/forms/filtersets.py:214 +#: circuits/forms/filtersets.py:260 circuits/forms/model_forms.py:111 +#: circuits/forms/model_forms.py:133 circuits/forms/model_forms.py:199 +#: circuits/tables/circuits.py:104 circuits/tables/circuits.py:164 +#: dcim/forms/connections.py:73 templates/circuits/circuit.html:15 +#: templates/circuits/circuitgroupassignment.html:26 +#: templates/circuits/circuittermination.html:19 +#: templates/dcim/inc/cable_termination.html:55 +#: templates/dcim/trace/circuit.html:4 msgid "Circuit" msgstr "回線" -#: netbox/circuits/filtersets.py:278 +#: circuits/filtersets.py:278 msgid "ProviderNetwork (ID)" msgstr "プロバイダネットワーク (ID)" -#: netbox/circuits/filtersets.py:335 +#: circuits/filtersets.py:335 msgid "Circuit (ID)" msgstr "回線 (ID)" -#: netbox/circuits/filtersets.py:341 +#: circuits/filtersets.py:341 msgid "Circuit (CID)" msgstr "回線 (CID)" -#: netbox/circuits/filtersets.py:345 +#: circuits/filtersets.py:345 msgid "Circuit group (ID)" msgstr "回路グループ (ID)" -#: netbox/circuits/filtersets.py:351 +#: circuits/filtersets.py:351 msgid "Circuit group (slug)" msgstr "回線グループ (slug)" -#: netbox/circuits/forms/bulk_edit.py:30 -#: netbox/circuits/forms/filtersets.py:56 -#: netbox/circuits/forms/model_forms.py:29 -#: netbox/circuits/tables/providers.py:33 netbox/dcim/forms/bulk_edit.py:128 -#: netbox/dcim/forms/filtersets.py:195 netbox/dcim/forms/model_forms.py:123 -#: netbox/dcim/tables/sites.py:94 netbox/ipam/models/asns.py:126 -#: netbox/ipam/tables/asn.py:27 netbox/ipam/views.py:213 -#: netbox/netbox/navigation/menu.py:172 netbox/netbox/navigation/menu.py:175 -#: netbox/templates/circuits/provider.html:23 +#: circuits/forms/bulk_edit.py:30 circuits/forms/filtersets.py:56 +#: circuits/forms/model_forms.py:29 circuits/tables/providers.py:33 +#: dcim/forms/bulk_edit.py:128 dcim/forms/filtersets.py:195 +#: dcim/forms/model_forms.py:123 dcim/tables/sites.py:94 +#: ipam/models/asns.py:126 ipam/tables/asn.py:27 ipam/views.py:213 +#: netbox/navigation/menu.py:172 netbox/navigation/menu.py:175 +#: templates/circuits/provider.html:23 msgid "ASNs" msgstr "ASN" -#: netbox/circuits/forms/bulk_edit.py:34 netbox/circuits/forms/bulk_edit.py:56 -#: netbox/circuits/forms/bulk_edit.py:83 -#: netbox/circuits/forms/bulk_edit.py:104 -#: netbox/circuits/forms/bulk_edit.py:164 -#: netbox/circuits/forms/bulk_edit.py:183 -#: netbox/circuits/forms/bulk_edit.py:228 netbox/core/forms/bulk_edit.py:28 -#: netbox/dcim/forms/bulk_create.py:35 netbox/dcim/forms/bulk_edit.py:73 -#: netbox/dcim/forms/bulk_edit.py:92 netbox/dcim/forms/bulk_edit.py:151 -#: netbox/dcim/forms/bulk_edit.py:192 netbox/dcim/forms/bulk_edit.py:210 -#: netbox/dcim/forms/bulk_edit.py:288 netbox/dcim/forms/bulk_edit.py:432 -#: netbox/dcim/forms/bulk_edit.py:466 netbox/dcim/forms/bulk_edit.py:481 -#: netbox/dcim/forms/bulk_edit.py:540 netbox/dcim/forms/bulk_edit.py:584 -#: netbox/dcim/forms/bulk_edit.py:618 netbox/dcim/forms/bulk_edit.py:642 -#: netbox/dcim/forms/bulk_edit.py:715 netbox/dcim/forms/bulk_edit.py:767 -#: netbox/dcim/forms/bulk_edit.py:819 netbox/dcim/forms/bulk_edit.py:842 -#: netbox/dcim/forms/bulk_edit.py:890 netbox/dcim/forms/bulk_edit.py:960 -#: netbox/dcim/forms/bulk_edit.py:1013 netbox/dcim/forms/bulk_edit.py:1048 -#: netbox/dcim/forms/bulk_edit.py:1088 netbox/dcim/forms/bulk_edit.py:1132 -#: netbox/dcim/forms/bulk_edit.py:1177 netbox/dcim/forms/bulk_edit.py:1204 -#: netbox/dcim/forms/bulk_edit.py:1222 netbox/dcim/forms/bulk_edit.py:1240 -#: netbox/dcim/forms/bulk_edit.py:1258 netbox/dcim/forms/bulk_edit.py:1682 -#: netbox/extras/forms/bulk_edit.py:39 netbox/extras/forms/bulk_edit.py:149 -#: netbox/extras/forms/bulk_edit.py:178 netbox/extras/forms/bulk_edit.py:208 -#: netbox/extras/forms/bulk_edit.py:256 netbox/extras/forms/bulk_edit.py:274 -#: netbox/extras/forms/bulk_edit.py:298 netbox/extras/forms/bulk_edit.py:312 -#: netbox/extras/forms/bulk_edit.py:339 netbox/extras/tables/tables.py:79 -#: netbox/ipam/forms/bulk_edit.py:52 netbox/ipam/forms/bulk_edit.py:72 -#: netbox/ipam/forms/bulk_edit.py:92 netbox/ipam/forms/bulk_edit.py:116 -#: netbox/ipam/forms/bulk_edit.py:145 netbox/ipam/forms/bulk_edit.py:174 -#: netbox/ipam/forms/bulk_edit.py:193 netbox/ipam/forms/bulk_edit.py:275 -#: netbox/ipam/forms/bulk_edit.py:320 netbox/ipam/forms/bulk_edit.py:368 -#: netbox/ipam/forms/bulk_edit.py:411 netbox/ipam/forms/bulk_edit.py:427 -#: netbox/ipam/forms/bulk_edit.py:561 netbox/ipam/forms/bulk_edit.py:592 -#: netbox/templates/account/token.html:35 -#: netbox/templates/circuits/circuit.html:59 -#: netbox/templates/circuits/circuitgroup.html:32 -#: netbox/templates/circuits/circuittype.html:26 -#: netbox/templates/circuits/inc/circuit_termination_fields.html:88 -#: netbox/templates/circuits/provider.html:33 -#: netbox/templates/circuits/providernetwork.html:32 -#: netbox/templates/core/datasource.html:54 -#: netbox/templates/core/plugin.html:79 netbox/templates/dcim/cable.html:36 -#: netbox/templates/dcim/consoleport.html:44 -#: netbox/templates/dcim/consoleserverport.html:44 -#: netbox/templates/dcim/device.html:94 -#: netbox/templates/dcim/devicebay.html:32 -#: netbox/templates/dcim/devicerole.html:30 -#: netbox/templates/dcim/devicetype.html:33 -#: netbox/templates/dcim/frontport.html:58 -#: netbox/templates/dcim/interface.html:69 -#: netbox/templates/dcim/inventoryitem.html:60 -#: netbox/templates/dcim/inventoryitemrole.html:22 -#: netbox/templates/dcim/location.html:33 -#: netbox/templates/dcim/manufacturer.html:40 -#: netbox/templates/dcim/module.html:73 -#: netbox/templates/dcim/modulebay.html:42 -#: netbox/templates/dcim/moduletype.html:26 -#: netbox/templates/dcim/platform.html:33 -#: netbox/templates/dcim/powerfeed.html:40 -#: netbox/templates/dcim/poweroutlet.html:40 -#: netbox/templates/dcim/powerpanel.html:30 -#: netbox/templates/dcim/powerport.html:40 netbox/templates/dcim/rack.html:53 -#: netbox/templates/dcim/rackreservation.html:62 -#: netbox/templates/dcim/rackrole.html:26 -#: netbox/templates/dcim/racktype.html:24 -#: netbox/templates/dcim/rearport.html:54 netbox/templates/dcim/region.html:33 -#: netbox/templates/dcim/site.html:60 netbox/templates/dcim/sitegroup.html:33 -#: netbox/templates/dcim/virtualchassis.html:31 -#: netbox/templates/extras/configcontext.html:21 -#: netbox/templates/extras/configtemplate.html:17 -#: netbox/templates/extras/customfield.html:34 -#: netbox/templates/extras/dashboard/widget_add.html:14 -#: netbox/templates/extras/eventrule.html:21 -#: netbox/templates/extras/exporttemplate.html:19 -#: netbox/templates/extras/notificationgroup.html:20 -#: netbox/templates/extras/savedfilter.html:17 -#: netbox/templates/extras/script_list.html:45 -#: netbox/templates/extras/tag.html:20 netbox/templates/extras/webhook.html:17 -#: netbox/templates/generic/bulk_import.html:120 -#: netbox/templates/ipam/aggregate.html:43 netbox/templates/ipam/asn.html:42 -#: netbox/templates/ipam/asnrange.html:38 -#: netbox/templates/ipam/fhrpgroup.html:34 -#: netbox/templates/ipam/ipaddress.html:55 -#: netbox/templates/ipam/iprange.html:67 netbox/templates/ipam/prefix.html:81 -#: netbox/templates/ipam/rir.html:26 netbox/templates/ipam/role.html:26 -#: netbox/templates/ipam/routetarget.html:21 -#: netbox/templates/ipam/service.html:50 -#: netbox/templates/ipam/servicetemplate.html:27 -#: netbox/templates/ipam/vlan.html:62 netbox/templates/ipam/vlangroup.html:34 -#: netbox/templates/ipam/vrf.html:33 netbox/templates/tenancy/contact.html:67 -#: netbox/templates/tenancy/contactgroup.html:25 -#: netbox/templates/tenancy/contactrole.html:22 -#: netbox/templates/tenancy/tenant.html:24 -#: netbox/templates/tenancy/tenantgroup.html:33 -#: netbox/templates/users/group.html:21 -#: netbox/templates/users/objectpermission.html:21 -#: netbox/templates/users/token.html:27 -#: netbox/templates/virtualization/cluster.html:25 -#: netbox/templates/virtualization/clustergroup.html:26 -#: netbox/templates/virtualization/clustertype.html:26 -#: netbox/templates/virtualization/virtualdisk.html:39 -#: netbox/templates/virtualization/virtualmachine.html:31 -#: netbox/templates/virtualization/vminterface.html:51 -#: netbox/templates/vpn/ikepolicy.html:17 -#: netbox/templates/vpn/ikeproposal.html:17 -#: netbox/templates/vpn/ipsecpolicy.html:17 -#: netbox/templates/vpn/ipsecprofile.html:17 -#: netbox/templates/vpn/ipsecprofile.html:40 -#: netbox/templates/vpn/ipsecprofile.html:73 -#: netbox/templates/vpn/ipsecproposal.html:17 -#: netbox/templates/vpn/l2vpn.html:26 netbox/templates/vpn/tunnel.html:33 -#: netbox/templates/vpn/tunnelgroup.html:30 -#: netbox/templates/wireless/wirelesslan.html:26 -#: netbox/templates/wireless/wirelesslangroup.html:33 -#: netbox/templates/wireless/wirelesslink.html:34 -#: netbox/tenancy/forms/bulk_edit.py:32 netbox/tenancy/forms/bulk_edit.py:80 -#: netbox/tenancy/forms/bulk_edit.py:122 netbox/users/forms/bulk_edit.py:64 -#: netbox/users/forms/bulk_edit.py:82 netbox/users/forms/bulk_edit.py:112 -#: netbox/virtualization/forms/bulk_edit.py:32 -#: netbox/virtualization/forms/bulk_edit.py:46 -#: netbox/virtualization/forms/bulk_edit.py:100 -#: netbox/virtualization/forms/bulk_edit.py:177 -#: netbox/virtualization/forms/bulk_edit.py:228 -#: netbox/virtualization/forms/bulk_edit.py:337 -#: netbox/vpn/forms/bulk_edit.py:28 netbox/vpn/forms/bulk_edit.py:64 -#: netbox/vpn/forms/bulk_edit.py:121 netbox/vpn/forms/bulk_edit.py:155 -#: netbox/vpn/forms/bulk_edit.py:190 netbox/vpn/forms/bulk_edit.py:215 -#: netbox/vpn/forms/bulk_edit.py:247 netbox/vpn/forms/bulk_edit.py:274 -#: netbox/wireless/forms/bulk_edit.py:29 netbox/wireless/forms/bulk_edit.py:82 -#: netbox/wireless/forms/bulk_edit.py:140 +#: circuits/forms/bulk_edit.py:34 circuits/forms/bulk_edit.py:56 +#: circuits/forms/bulk_edit.py:83 circuits/forms/bulk_edit.py:104 +#: circuits/forms/bulk_edit.py:164 circuits/forms/bulk_edit.py:183 +#: circuits/forms/bulk_edit.py:228 core/forms/bulk_edit.py:28 +#: dcim/forms/bulk_create.py:35 dcim/forms/bulk_edit.py:73 +#: dcim/forms/bulk_edit.py:92 dcim/forms/bulk_edit.py:151 +#: dcim/forms/bulk_edit.py:192 dcim/forms/bulk_edit.py:210 +#: dcim/forms/bulk_edit.py:288 dcim/forms/bulk_edit.py:432 +#: dcim/forms/bulk_edit.py:466 dcim/forms/bulk_edit.py:481 +#: dcim/forms/bulk_edit.py:540 dcim/forms/bulk_edit.py:584 +#: dcim/forms/bulk_edit.py:618 dcim/forms/bulk_edit.py:642 +#: dcim/forms/bulk_edit.py:715 dcim/forms/bulk_edit.py:767 +#: dcim/forms/bulk_edit.py:819 dcim/forms/bulk_edit.py:842 +#: dcim/forms/bulk_edit.py:890 dcim/forms/bulk_edit.py:960 +#: dcim/forms/bulk_edit.py:1013 dcim/forms/bulk_edit.py:1048 +#: dcim/forms/bulk_edit.py:1088 dcim/forms/bulk_edit.py:1132 +#: dcim/forms/bulk_edit.py:1177 dcim/forms/bulk_edit.py:1204 +#: dcim/forms/bulk_edit.py:1222 dcim/forms/bulk_edit.py:1240 +#: dcim/forms/bulk_edit.py:1258 dcim/forms/bulk_edit.py:1682 +#: extras/forms/bulk_edit.py:39 extras/forms/bulk_edit.py:149 +#: extras/forms/bulk_edit.py:178 extras/forms/bulk_edit.py:208 +#: extras/forms/bulk_edit.py:256 extras/forms/bulk_edit.py:274 +#: extras/forms/bulk_edit.py:298 extras/forms/bulk_edit.py:312 +#: extras/forms/bulk_edit.py:339 extras/tables/tables.py:79 +#: ipam/forms/bulk_edit.py:53 ipam/forms/bulk_edit.py:73 +#: ipam/forms/bulk_edit.py:93 ipam/forms/bulk_edit.py:117 +#: ipam/forms/bulk_edit.py:146 ipam/forms/bulk_edit.py:175 +#: ipam/forms/bulk_edit.py:194 ipam/forms/bulk_edit.py:276 +#: ipam/forms/bulk_edit.py:321 ipam/forms/bulk_edit.py:369 +#: ipam/forms/bulk_edit.py:412 ipam/forms/bulk_edit.py:428 +#: ipam/forms/bulk_edit.py:516 ipam/forms/bulk_edit.py:547 +#: templates/account/token.html:35 templates/circuits/circuit.html:59 +#: templates/circuits/circuitgroup.html:32 +#: templates/circuits/circuittype.html:26 +#: templates/circuits/inc/circuit_termination_fields.html:88 +#: templates/circuits/provider.html:33 +#: templates/circuits/providernetwork.html:32 +#: templates/core/datasource.html:54 templates/core/plugin.html:80 +#: templates/dcim/cable.html:36 templates/dcim/consoleport.html:44 +#: templates/dcim/consoleserverport.html:44 templates/dcim/device.html:94 +#: templates/dcim/devicebay.html:32 templates/dcim/devicerole.html:30 +#: templates/dcim/devicetype.html:33 templates/dcim/frontport.html:58 +#: templates/dcim/interface.html:69 templates/dcim/inventoryitem.html:60 +#: templates/dcim/inventoryitemrole.html:22 templates/dcim/location.html:33 +#: templates/dcim/manufacturer.html:40 templates/dcim/module.html:73 +#: templates/dcim/modulebay.html:42 templates/dcim/moduletype.html:37 +#: templates/dcim/platform.html:33 templates/dcim/powerfeed.html:40 +#: templates/dcim/poweroutlet.html:40 templates/dcim/powerpanel.html:30 +#: templates/dcim/powerport.html:40 templates/dcim/rack.html:53 +#: templates/dcim/rackreservation.html:62 templates/dcim/rackrole.html:26 +#: templates/dcim/racktype.html:24 templates/dcim/rearport.html:54 +#: templates/dcim/region.html:33 templates/dcim/site.html:60 +#: templates/dcim/sitegroup.html:33 templates/dcim/virtualchassis.html:31 +#: templates/extras/configcontext.html:21 +#: templates/extras/configtemplate.html:17 +#: templates/extras/customfield.html:34 +#: templates/extras/dashboard/widget_add.html:14 +#: templates/extras/eventrule.html:21 templates/extras/exporttemplate.html:19 +#: templates/extras/notificationgroup.html:20 +#: templates/extras/savedfilter.html:17 templates/extras/script_list.html:45 +#: templates/extras/tag.html:20 templates/extras/webhook.html:17 +#: templates/generic/bulk_import.html:120 templates/ipam/aggregate.html:43 +#: templates/ipam/asn.html:42 templates/ipam/asnrange.html:38 +#: templates/ipam/fhrpgroup.html:34 templates/ipam/ipaddress.html:55 +#: templates/ipam/iprange.html:67 templates/ipam/prefix.html:81 +#: templates/ipam/rir.html:26 templates/ipam/role.html:26 +#: templates/ipam/routetarget.html:21 templates/ipam/service.html:50 +#: templates/ipam/servicetemplate.html:27 templates/ipam/vlan.html:62 +#: templates/ipam/vlangroup.html:34 templates/ipam/vrf.html:33 +#: templates/tenancy/contact.html:67 templates/tenancy/contactgroup.html:25 +#: templates/tenancy/contactrole.html:22 templates/tenancy/tenant.html:24 +#: templates/tenancy/tenantgroup.html:33 templates/users/group.html:21 +#: templates/users/objectpermission.html:21 templates/users/token.html:27 +#: templates/virtualization/cluster.html:25 +#: templates/virtualization/clustergroup.html:26 +#: templates/virtualization/clustertype.html:26 +#: templates/virtualization/virtualdisk.html:39 +#: templates/virtualization/virtualmachine.html:31 +#: templates/virtualization/vminterface.html:51 +#: templates/vpn/ikepolicy.html:17 templates/vpn/ikeproposal.html:17 +#: templates/vpn/ipsecpolicy.html:17 templates/vpn/ipsecprofile.html:17 +#: templates/vpn/ipsecprofile.html:40 templates/vpn/ipsecprofile.html:73 +#: templates/vpn/ipsecproposal.html:17 templates/vpn/l2vpn.html:26 +#: templates/vpn/tunnel.html:33 templates/vpn/tunnelgroup.html:30 +#: templates/wireless/wirelesslan.html:26 +#: templates/wireless/wirelesslangroup.html:33 +#: templates/wireless/wirelesslink.html:34 tenancy/forms/bulk_edit.py:32 +#: tenancy/forms/bulk_edit.py:80 tenancy/forms/bulk_edit.py:122 +#: users/forms/bulk_edit.py:64 users/forms/bulk_edit.py:82 +#: users/forms/bulk_edit.py:112 virtualization/forms/bulk_edit.py:32 +#: virtualization/forms/bulk_edit.py:46 virtualization/forms/bulk_edit.py:100 +#: virtualization/forms/bulk_edit.py:177 virtualization/forms/bulk_edit.py:228 +#: virtualization/forms/bulk_edit.py:337 vpn/forms/bulk_edit.py:28 +#: vpn/forms/bulk_edit.py:64 vpn/forms/bulk_edit.py:121 +#: vpn/forms/bulk_edit.py:155 vpn/forms/bulk_edit.py:190 +#: vpn/forms/bulk_edit.py:215 vpn/forms/bulk_edit.py:247 +#: vpn/forms/bulk_edit.py:274 wireless/forms/bulk_edit.py:29 +#: wireless/forms/bulk_edit.py:82 wireless/forms/bulk_edit.py:140 msgid "Description" msgstr "説明" -#: netbox/circuits/forms/bulk_edit.py:51 netbox/circuits/forms/bulk_edit.py:73 -#: netbox/circuits/forms/bulk_edit.py:123 -#: netbox/circuits/forms/bulk_import.py:36 -#: netbox/circuits/forms/bulk_import.py:51 -#: netbox/circuits/forms/bulk_import.py:74 -#: netbox/circuits/forms/filtersets.py:70 -#: netbox/circuits/forms/filtersets.py:88 -#: netbox/circuits/forms/filtersets.py:116 -#: netbox/circuits/forms/filtersets.py:131 -#: netbox/circuits/forms/filtersets.py:199 -#: netbox/circuits/forms/filtersets.py:232 -#: netbox/circuits/forms/filtersets.py:255 -#: netbox/circuits/forms/model_forms.py:47 -#: netbox/circuits/forms/model_forms.py:61 -#: netbox/circuits/forms/model_forms.py:93 -#: netbox/circuits/tables/circuits.py:58 -#: netbox/circuits/tables/circuits.py:108 -#: netbox/circuits/tables/circuits.py:160 -#: netbox/circuits/tables/providers.py:72 -#: netbox/circuits/tables/providers.py:103 -#: netbox/templates/circuits/circuit.html:18 -#: netbox/templates/circuits/circuittermination.html:25 -#: netbox/templates/circuits/provider.html:20 -#: netbox/templates/circuits/provideraccount.html:20 -#: netbox/templates/circuits/providernetwork.html:20 -#: netbox/templates/dcim/inc/cable_termination.html:51 +#: circuits/forms/bulk_edit.py:51 circuits/forms/bulk_edit.py:73 +#: circuits/forms/bulk_edit.py:123 circuits/forms/bulk_import.py:36 +#: circuits/forms/bulk_import.py:51 circuits/forms/bulk_import.py:74 +#: circuits/forms/filtersets.py:70 circuits/forms/filtersets.py:88 +#: circuits/forms/filtersets.py:116 circuits/forms/filtersets.py:131 +#: circuits/forms/filtersets.py:199 circuits/forms/filtersets.py:232 +#: circuits/forms/filtersets.py:255 circuits/forms/model_forms.py:47 +#: circuits/forms/model_forms.py:61 circuits/forms/model_forms.py:93 +#: circuits/tables/circuits.py:58 circuits/tables/circuits.py:108 +#: circuits/tables/circuits.py:160 circuits/tables/providers.py:72 +#: circuits/tables/providers.py:103 templates/circuits/circuit.html:18 +#: templates/circuits/circuittermination.html:25 +#: templates/circuits/provider.html:20 +#: templates/circuits/provideraccount.html:20 +#: templates/circuits/providernetwork.html:20 +#: templates/dcim/inc/cable_termination.html:51 msgid "Provider" msgstr "プロバイダ" -#: netbox/circuits/forms/bulk_edit.py:80 -#: netbox/circuits/forms/filtersets.py:91 -#: netbox/templates/circuits/providernetwork.html:28 +#: circuits/forms/bulk_edit.py:80 circuits/forms/filtersets.py:91 +#: templates/circuits/providernetwork.html:28 msgid "Service ID" msgstr "サービス ID" -#: netbox/circuits/forms/bulk_edit.py:100 -#: netbox/circuits/forms/filtersets.py:107 netbox/dcim/forms/bulk_edit.py:206 -#: netbox/dcim/forms/bulk_edit.py:604 netbox/dcim/forms/bulk_edit.py:804 -#: netbox/dcim/forms/bulk_edit.py:1173 netbox/dcim/forms/bulk_edit.py:1200 -#: netbox/dcim/forms/bulk_edit.py:1678 netbox/dcim/forms/filtersets.py:1064 -#: netbox/dcim/forms/filtersets.py:1455 netbox/dcim/forms/filtersets.py:1479 -#: netbox/dcim/tables/devices.py:704 netbox/dcim/tables/devices.py:761 -#: netbox/dcim/tables/devices.py:1003 netbox/dcim/tables/devicetypes.py:249 -#: netbox/dcim/tables/devicetypes.py:264 netbox/dcim/tables/racks.py:33 -#: netbox/extras/forms/bulk_edit.py:270 netbox/extras/tables/tables.py:443 -#: netbox/templates/circuits/circuittype.html:30 -#: netbox/templates/dcim/cable.html:40 -#: netbox/templates/dcim/devicerole.html:34 -#: netbox/templates/dcim/frontport.html:40 -#: netbox/templates/dcim/inventoryitemrole.html:26 -#: netbox/templates/dcim/rackrole.html:30 -#: netbox/templates/dcim/rearport.html:40 netbox/templates/extras/tag.html:26 +#: circuits/forms/bulk_edit.py:100 circuits/forms/filtersets.py:107 +#: dcim/forms/bulk_edit.py:206 dcim/forms/bulk_edit.py:604 +#: dcim/forms/bulk_edit.py:804 dcim/forms/bulk_edit.py:1173 +#: dcim/forms/bulk_edit.py:1200 dcim/forms/bulk_edit.py:1678 +#: dcim/forms/filtersets.py:1064 dcim/forms/filtersets.py:1455 +#: dcim/forms/filtersets.py:1479 dcim/tables/devices.py:704 +#: dcim/tables/devices.py:761 dcim/tables/devices.py:1003 +#: dcim/tables/devicetypes.py:249 dcim/tables/devicetypes.py:264 +#: dcim/tables/racks.py:33 extras/forms/bulk_edit.py:270 +#: extras/tables/tables.py:443 templates/circuits/circuittype.html:30 +#: templates/dcim/cable.html:40 templates/dcim/devicerole.html:34 +#: templates/dcim/frontport.html:40 templates/dcim/inventoryitemrole.html:26 +#: templates/dcim/rackrole.html:30 templates/dcim/rearport.html:40 +#: templates/extras/tag.html:26 msgid "Color" msgstr "色" -#: netbox/circuits/forms/bulk_edit.py:118 -#: netbox/circuits/forms/bulk_import.py:87 -#: netbox/circuits/forms/filtersets.py:126 netbox/core/forms/bulk_edit.py:18 -#: netbox/core/forms/filtersets.py:33 netbox/core/tables/change_logging.py:32 -#: netbox/core/tables/data.py:20 netbox/core/tables/jobs.py:18 -#: netbox/dcim/forms/bulk_edit.py:782 netbox/dcim/forms/bulk_edit.py:921 -#: netbox/dcim/forms/bulk_edit.py:989 netbox/dcim/forms/bulk_edit.py:1008 -#: netbox/dcim/forms/bulk_edit.py:1031 netbox/dcim/forms/bulk_edit.py:1073 -#: netbox/dcim/forms/bulk_edit.py:1117 netbox/dcim/forms/bulk_edit.py:1168 -#: netbox/dcim/forms/bulk_edit.py:1195 netbox/dcim/forms/bulk_import.py:188 -#: netbox/dcim/forms/bulk_import.py:260 netbox/dcim/forms/bulk_import.py:708 -#: netbox/dcim/forms/bulk_import.py:734 netbox/dcim/forms/bulk_import.py:760 -#: netbox/dcim/forms/bulk_import.py:780 netbox/dcim/forms/bulk_import.py:863 -#: netbox/dcim/forms/bulk_import.py:957 netbox/dcim/forms/bulk_import.py:999 -#: netbox/dcim/forms/bulk_import.py:1213 netbox/dcim/forms/bulk_import.py:1376 -#: netbox/dcim/forms/filtersets.py:955 netbox/dcim/forms/filtersets.py:1054 -#: netbox/dcim/forms/filtersets.py:1175 netbox/dcim/forms/filtersets.py:1247 -#: netbox/dcim/forms/filtersets.py:1272 netbox/dcim/forms/filtersets.py:1296 -#: netbox/dcim/forms/filtersets.py:1316 netbox/dcim/forms/filtersets.py:1353 -#: netbox/dcim/forms/filtersets.py:1450 netbox/dcim/forms/filtersets.py:1474 -#: netbox/dcim/forms/model_forms.py:703 netbox/dcim/forms/model_forms.py:709 -#: netbox/dcim/forms/object_import.py:84 -#: netbox/dcim/forms/object_import.py:113 -#: netbox/dcim/forms/object_import.py:145 netbox/dcim/tables/devices.py:178 -#: netbox/dcim/tables/devices.py:814 netbox/dcim/tables/power.py:77 -#: netbox/dcim/tables/racks.py:138 netbox/extras/forms/bulk_import.py:42 -#: netbox/extras/tables/tables.py:405 netbox/extras/tables/tables.py:465 -#: netbox/netbox/tables/tables.py:240 -#: netbox/templates/circuits/circuit.html:30 -#: netbox/templates/core/datasource.html:38 -#: netbox/templates/dcim/cable.html:15 -#: netbox/templates/dcim/consoleport.html:36 -#: netbox/templates/dcim/consoleserverport.html:36 -#: netbox/templates/dcim/frontport.html:36 -#: netbox/templates/dcim/interface.html:46 -#: netbox/templates/dcim/interface.html:169 -#: netbox/templates/dcim/interface.html:311 -#: netbox/templates/dcim/powerfeed.html:32 -#: netbox/templates/dcim/poweroutlet.html:36 -#: netbox/templates/dcim/powerport.html:36 -#: netbox/templates/dcim/rearport.html:36 -#: netbox/templates/extras/eventrule.html:74 -#: netbox/templates/virtualization/cluster.html:17 -#: netbox/templates/vpn/l2vpn.html:22 -#: netbox/templates/wireless/inc/authentication_attrs.html:8 -#: netbox/templates/wireless/inc/wirelesslink_interface.html:14 -#: netbox/virtualization/forms/bulk_edit.py:60 -#: netbox/virtualization/forms/bulk_import.py:41 -#: netbox/virtualization/forms/filtersets.py:54 -#: netbox/virtualization/forms/model_forms.py:62 -#: netbox/virtualization/tables/clusters.py:66 -#: netbox/vpn/forms/bulk_edit.py:264 netbox/vpn/forms/bulk_import.py:264 -#: netbox/vpn/forms/filtersets.py:217 netbox/vpn/forms/model_forms.py:84 -#: netbox/vpn/forms/model_forms.py:119 netbox/vpn/forms/model_forms.py:231 +#: circuits/forms/bulk_edit.py:118 circuits/forms/bulk_import.py:87 +#: circuits/forms/filtersets.py:126 core/forms/bulk_edit.py:18 +#: core/forms/filtersets.py:33 core/tables/change_logging.py:32 +#: core/tables/data.py:20 core/tables/jobs.py:18 dcim/forms/bulk_edit.py:782 +#: dcim/forms/bulk_edit.py:921 dcim/forms/bulk_edit.py:989 +#: dcim/forms/bulk_edit.py:1008 dcim/forms/bulk_edit.py:1031 +#: dcim/forms/bulk_edit.py:1073 dcim/forms/bulk_edit.py:1117 +#: dcim/forms/bulk_edit.py:1168 dcim/forms/bulk_edit.py:1195 +#: dcim/forms/bulk_import.py:188 dcim/forms/bulk_import.py:260 +#: dcim/forms/bulk_import.py:708 dcim/forms/bulk_import.py:734 +#: dcim/forms/bulk_import.py:760 dcim/forms/bulk_import.py:780 +#: dcim/forms/bulk_import.py:863 dcim/forms/bulk_import.py:957 +#: dcim/forms/bulk_import.py:999 dcim/forms/bulk_import.py:1213 +#: dcim/forms/bulk_import.py:1376 dcim/forms/filtersets.py:955 +#: dcim/forms/filtersets.py:1054 dcim/forms/filtersets.py:1175 +#: dcim/forms/filtersets.py:1247 dcim/forms/filtersets.py:1272 +#: dcim/forms/filtersets.py:1296 dcim/forms/filtersets.py:1316 +#: dcim/forms/filtersets.py:1353 dcim/forms/filtersets.py:1450 +#: dcim/forms/filtersets.py:1474 dcim/forms/model_forms.py:703 +#: dcim/forms/model_forms.py:709 dcim/forms/object_import.py:84 +#: dcim/forms/object_import.py:113 dcim/forms/object_import.py:145 +#: dcim/tables/devices.py:178 dcim/tables/devices.py:814 +#: dcim/tables/power.py:77 dcim/tables/racks.py:138 +#: extras/forms/bulk_import.py:42 extras/tables/tables.py:405 +#: extras/tables/tables.py:465 netbox/tables/tables.py:240 +#: templates/circuits/circuit.html:30 templates/core/datasource.html:38 +#: templates/dcim/cable.html:15 templates/dcim/consoleport.html:36 +#: templates/dcim/consoleserverport.html:36 templates/dcim/frontport.html:36 +#: templates/dcim/interface.html:46 templates/dcim/interface.html:169 +#: templates/dcim/interface.html:311 templates/dcim/powerfeed.html:32 +#: templates/dcim/poweroutlet.html:36 templates/dcim/powerport.html:36 +#: templates/dcim/rearport.html:36 templates/extras/eventrule.html:74 +#: templates/virtualization/cluster.html:17 templates/vpn/l2vpn.html:22 +#: templates/wireless/inc/authentication_attrs.html:8 +#: templates/wireless/inc/wirelesslink_interface.html:14 +#: virtualization/forms/bulk_edit.py:60 virtualization/forms/bulk_import.py:41 +#: virtualization/forms/filtersets.py:54 +#: virtualization/forms/model_forms.py:62 virtualization/tables/clusters.py:66 +#: vpn/forms/bulk_edit.py:264 vpn/forms/bulk_import.py:264 +#: vpn/forms/filtersets.py:217 vpn/forms/model_forms.py:84 +#: vpn/forms/model_forms.py:119 vpn/forms/model_forms.py:231 msgid "Type" msgstr "タイプ" -#: netbox/circuits/forms/bulk_edit.py:128 -#: netbox/circuits/forms/bulk_import.py:80 -#: netbox/circuits/forms/filtersets.py:139 -#: netbox/circuits/forms/model_forms.py:98 +#: circuits/forms/bulk_edit.py:128 circuits/forms/bulk_import.py:80 +#: circuits/forms/filtersets.py:139 circuits/forms/model_forms.py:98 msgid "Provider account" msgstr "プロバイダアカウント" -#: netbox/circuits/forms/bulk_edit.py:136 -#: netbox/circuits/forms/bulk_import.py:93 -#: netbox/circuits/forms/filtersets.py:150 netbox/core/forms/filtersets.py:38 -#: netbox/core/forms/filtersets.py:79 netbox/core/tables/data.py:23 -#: netbox/core/tables/jobs.py:26 netbox/core/tables/tasks.py:88 -#: netbox/dcim/forms/bulk_edit.py:106 netbox/dcim/forms/bulk_edit.py:181 -#: netbox/dcim/forms/bulk_edit.py:351 netbox/dcim/forms/bulk_edit.py:700 -#: netbox/dcim/forms/bulk_edit.py:756 netbox/dcim/forms/bulk_edit.py:788 -#: netbox/dcim/forms/bulk_edit.py:915 netbox/dcim/forms/bulk_edit.py:1701 -#: netbox/dcim/forms/bulk_import.py:88 netbox/dcim/forms/bulk_import.py:147 -#: netbox/dcim/forms/bulk_import.py:248 netbox/dcim/forms/bulk_import.py:505 -#: netbox/dcim/forms/bulk_import.py:659 netbox/dcim/forms/bulk_import.py:1207 -#: netbox/dcim/forms/bulk_import.py:1371 netbox/dcim/forms/bulk_import.py:1435 -#: netbox/dcim/forms/filtersets.py:178 netbox/dcim/forms/filtersets.py:237 -#: netbox/dcim/forms/filtersets.py:359 netbox/dcim/forms/filtersets.py:799 -#: netbox/dcim/forms/filtersets.py:924 netbox/dcim/forms/filtersets.py:958 -#: netbox/dcim/forms/filtersets.py:1059 netbox/dcim/forms/filtersets.py:1170 -#: netbox/dcim/tables/devices.py:140 netbox/dcim/tables/devices.py:817 -#: netbox/dcim/tables/devices.py:1063 netbox/dcim/tables/modules.py:69 -#: netbox/dcim/tables/power.py:74 netbox/dcim/tables/racks.py:126 -#: netbox/dcim/tables/sites.py:82 netbox/dcim/tables/sites.py:138 -#: netbox/ipam/forms/bulk_edit.py:255 netbox/ipam/forms/bulk_edit.py:305 -#: netbox/ipam/forms/bulk_edit.py:353 netbox/ipam/forms/bulk_edit.py:551 -#: netbox/ipam/forms/bulk_import.py:192 netbox/ipam/forms/bulk_import.py:257 -#: netbox/ipam/forms/bulk_import.py:293 netbox/ipam/forms/bulk_import.py:450 -#: netbox/ipam/forms/filtersets.py:210 netbox/ipam/forms/filtersets.py:281 -#: netbox/ipam/forms/filtersets.py:355 netbox/ipam/forms/filtersets.py:501 -#: netbox/ipam/forms/model_forms.py:468 netbox/ipam/tables/ip.py:237 -#: netbox/ipam/tables/ip.py:312 netbox/ipam/tables/ip.py:363 -#: netbox/ipam/tables/ip.py:426 netbox/ipam/tables/ip.py:453 -#: netbox/ipam/tables/vlans.py:126 netbox/ipam/tables/vlans.py:232 -#: netbox/templates/circuits/circuit.html:34 -#: netbox/templates/core/datasource.html:46 netbox/templates/core/job.html:48 -#: netbox/templates/core/rq_task.html:81 netbox/templates/core/system.html:18 -#: netbox/templates/dcim/cable.html:19 netbox/templates/dcim/device.html:178 -#: netbox/templates/dcim/location.html:45 netbox/templates/dcim/module.html:69 -#: netbox/templates/dcim/powerfeed.html:36 netbox/templates/dcim/rack.html:41 -#: netbox/templates/dcim/site.html:43 -#: netbox/templates/extras/script_list.html:47 -#: netbox/templates/ipam/ipaddress.html:37 -#: netbox/templates/ipam/iprange.html:54 netbox/templates/ipam/prefix.html:73 -#: netbox/templates/ipam/vlan.html:48 -#: netbox/templates/virtualization/cluster.html:21 -#: netbox/templates/virtualization/virtualmachine.html:19 -#: netbox/templates/vpn/tunnel.html:25 -#: netbox/templates/wireless/wirelesslan.html:22 -#: netbox/templates/wireless/wirelesslink.html:17 -#: netbox/users/forms/filtersets.py:32 netbox/users/forms/model_forms.py:194 -#: netbox/virtualization/forms/bulk_edit.py:70 -#: netbox/virtualization/forms/bulk_edit.py:118 -#: netbox/virtualization/forms/bulk_import.py:54 -#: netbox/virtualization/forms/bulk_import.py:80 -#: netbox/virtualization/forms/filtersets.py:62 -#: netbox/virtualization/forms/filtersets.py:160 -#: netbox/virtualization/tables/clusters.py:74 -#: netbox/virtualization/tables/virtualmachines.py:60 -#: netbox/vpn/forms/bulk_edit.py:39 netbox/vpn/forms/bulk_import.py:37 -#: netbox/vpn/forms/filtersets.py:47 netbox/vpn/tables/tunnels.py:48 -#: netbox/wireless/forms/bulk_edit.py:43 -#: netbox/wireless/forms/bulk_edit.py:105 -#: netbox/wireless/forms/bulk_import.py:43 -#: netbox/wireless/forms/bulk_import.py:84 -#: netbox/wireless/forms/filtersets.py:49 -#: netbox/wireless/forms/filtersets.py:83 -#: netbox/wireless/tables/wirelesslan.py:52 -#: netbox/wireless/tables/wirelesslink.py:20 +#: circuits/forms/bulk_edit.py:136 circuits/forms/bulk_import.py:93 +#: circuits/forms/filtersets.py:150 core/forms/filtersets.py:38 +#: core/forms/filtersets.py:79 core/tables/data.py:23 core/tables/jobs.py:26 +#: core/tables/tasks.py:88 dcim/forms/bulk_edit.py:106 +#: dcim/forms/bulk_edit.py:181 dcim/forms/bulk_edit.py:351 +#: dcim/forms/bulk_edit.py:700 dcim/forms/bulk_edit.py:756 +#: dcim/forms/bulk_edit.py:788 dcim/forms/bulk_edit.py:915 +#: dcim/forms/bulk_edit.py:1701 dcim/forms/bulk_import.py:88 +#: dcim/forms/bulk_import.py:147 dcim/forms/bulk_import.py:248 +#: dcim/forms/bulk_import.py:505 dcim/forms/bulk_import.py:659 +#: dcim/forms/bulk_import.py:1207 dcim/forms/bulk_import.py:1371 +#: dcim/forms/bulk_import.py:1435 dcim/forms/filtersets.py:178 +#: dcim/forms/filtersets.py:237 dcim/forms/filtersets.py:359 +#: dcim/forms/filtersets.py:799 dcim/forms/filtersets.py:924 +#: dcim/forms/filtersets.py:958 dcim/forms/filtersets.py:1059 +#: dcim/forms/filtersets.py:1170 dcim/tables/devices.py:140 +#: dcim/tables/devices.py:817 dcim/tables/devices.py:1063 +#: dcim/tables/modules.py:69 dcim/tables/power.py:74 dcim/tables/racks.py:126 +#: dcim/tables/sites.py:82 dcim/tables/sites.py:138 +#: ipam/forms/bulk_edit.py:256 ipam/forms/bulk_edit.py:306 +#: ipam/forms/bulk_edit.py:354 ipam/forms/bulk_edit.py:506 +#: ipam/forms/bulk_import.py:192 ipam/forms/bulk_import.py:257 +#: ipam/forms/bulk_import.py:293 ipam/forms/bulk_import.py:450 +#: ipam/forms/filtersets.py:210 ipam/forms/filtersets.py:281 +#: ipam/forms/filtersets.py:355 ipam/forms/filtersets.py:501 +#: ipam/forms/model_forms.py:468 ipam/tables/ip.py:237 ipam/tables/ip.py:312 +#: ipam/tables/ip.py:363 ipam/tables/ip.py:426 ipam/tables/ip.py:453 +#: ipam/tables/vlans.py:126 ipam/tables/vlans.py:232 +#: templates/circuits/circuit.html:34 templates/core/datasource.html:46 +#: templates/core/job.html:48 templates/core/rq_task.html:81 +#: templates/core/system.html:18 templates/dcim/cable.html:19 +#: templates/dcim/device.html:178 templates/dcim/location.html:45 +#: templates/dcim/module.html:69 templates/dcim/powerfeed.html:36 +#: templates/dcim/rack.html:41 templates/dcim/site.html:43 +#: templates/extras/script_list.html:47 templates/ipam/ipaddress.html:37 +#: templates/ipam/iprange.html:54 templates/ipam/prefix.html:73 +#: templates/ipam/vlan.html:48 templates/virtualization/cluster.html:21 +#: templates/virtualization/virtualmachine.html:19 +#: templates/vpn/tunnel.html:25 templates/wireless/wirelesslan.html:22 +#: templates/wireless/wirelesslink.html:17 users/forms/filtersets.py:32 +#: users/forms/model_forms.py:194 virtualization/forms/bulk_edit.py:70 +#: virtualization/forms/bulk_edit.py:118 +#: virtualization/forms/bulk_import.py:54 +#: virtualization/forms/bulk_import.py:80 +#: virtualization/forms/filtersets.py:62 +#: virtualization/forms/filtersets.py:160 virtualization/tables/clusters.py:74 +#: virtualization/tables/virtualmachines.py:60 vpn/forms/bulk_edit.py:39 +#: vpn/forms/bulk_import.py:37 vpn/forms/filtersets.py:47 +#: vpn/tables/tunnels.py:48 wireless/forms/bulk_edit.py:43 +#: wireless/forms/bulk_edit.py:105 wireless/forms/bulk_import.py:43 +#: wireless/forms/bulk_import.py:84 wireless/forms/filtersets.py:49 +#: wireless/forms/filtersets.py:83 wireless/tables/wirelesslan.py:52 +#: wireless/tables/wirelesslink.py:20 msgid "Status" msgstr "ステータス" -#: netbox/circuits/forms/bulk_edit.py:142 -#: netbox/circuits/forms/bulk_edit.py:233 -#: netbox/circuits/forms/bulk_import.py:98 -#: netbox/circuits/forms/bulk_import.py:158 -#: netbox/circuits/forms/filtersets.py:119 -#: netbox/circuits/forms/filtersets.py:241 netbox/dcim/forms/bulk_edit.py:122 -#: netbox/dcim/forms/bulk_edit.py:187 netbox/dcim/forms/bulk_edit.py:346 -#: netbox/dcim/forms/bulk_edit.py:461 netbox/dcim/forms/bulk_edit.py:690 -#: netbox/dcim/forms/bulk_edit.py:794 netbox/dcim/forms/bulk_edit.py:1706 -#: netbox/dcim/forms/bulk_import.py:107 netbox/dcim/forms/bulk_import.py:152 -#: netbox/dcim/forms/bulk_import.py:241 netbox/dcim/forms/bulk_import.py:334 -#: netbox/dcim/forms/bulk_import.py:479 netbox/dcim/forms/bulk_import.py:1219 -#: netbox/dcim/forms/bulk_import.py:1428 netbox/dcim/forms/filtersets.py:173 -#: netbox/dcim/forms/filtersets.py:205 netbox/dcim/forms/filtersets.py:323 -#: netbox/dcim/forms/filtersets.py:399 netbox/dcim/forms/filtersets.py:420 -#: netbox/dcim/forms/filtersets.py:722 netbox/dcim/forms/filtersets.py:916 -#: netbox/dcim/forms/filtersets.py:978 netbox/dcim/forms/filtersets.py:1008 -#: netbox/dcim/forms/filtersets.py:1130 netbox/dcim/tables/power.py:88 -#: netbox/extras/filtersets.py:612 netbox/extras/forms/filtersets.py:323 -#: netbox/extras/forms/filtersets.py:396 netbox/ipam/forms/bulk_edit.py:42 -#: netbox/ipam/forms/bulk_edit.py:67 netbox/ipam/forms/bulk_edit.py:111 -#: netbox/ipam/forms/bulk_edit.py:140 netbox/ipam/forms/bulk_edit.py:165 -#: netbox/ipam/forms/bulk_edit.py:250 netbox/ipam/forms/bulk_edit.py:300 -#: netbox/ipam/forms/bulk_edit.py:348 netbox/ipam/forms/bulk_edit.py:546 -#: netbox/ipam/forms/bulk_import.py:38 netbox/ipam/forms/bulk_import.py:67 -#: netbox/ipam/forms/bulk_import.py:95 netbox/ipam/forms/bulk_import.py:115 -#: netbox/ipam/forms/bulk_import.py:135 netbox/ipam/forms/bulk_import.py:164 -#: netbox/ipam/forms/bulk_import.py:250 netbox/ipam/forms/bulk_import.py:286 -#: netbox/ipam/forms/bulk_import.py:443 netbox/ipam/forms/filtersets.py:48 -#: netbox/ipam/forms/filtersets.py:68 netbox/ipam/forms/filtersets.py:100 -#: netbox/ipam/forms/filtersets.py:120 netbox/ipam/forms/filtersets.py:143 -#: netbox/ipam/forms/filtersets.py:174 netbox/ipam/forms/filtersets.py:267 -#: netbox/ipam/forms/filtersets.py:310 netbox/ipam/forms/filtersets.py:469 -#: netbox/ipam/tables/ip.py:456 netbox/ipam/tables/vlans.py:229 -#: netbox/templates/circuits/circuit.html:38 -#: netbox/templates/circuits/circuitgroup.html:36 -#: netbox/templates/dcim/cable.html:23 netbox/templates/dcim/device.html:79 -#: netbox/templates/dcim/location.html:49 -#: netbox/templates/dcim/powerfeed.html:44 netbox/templates/dcim/rack.html:32 -#: netbox/templates/dcim/rackreservation.html:49 -#: netbox/templates/dcim/site.html:47 -#: netbox/templates/dcim/virtualdevicecontext.html:52 -#: netbox/templates/ipam/aggregate.html:30 netbox/templates/ipam/asn.html:33 -#: netbox/templates/ipam/asnrange.html:29 -#: netbox/templates/ipam/ipaddress.html:28 -#: netbox/templates/ipam/iprange.html:58 netbox/templates/ipam/prefix.html:29 -#: netbox/templates/ipam/routetarget.html:17 -#: netbox/templates/ipam/vlan.html:39 netbox/templates/ipam/vrf.html:20 -#: netbox/templates/tenancy/tenant.html:17 -#: netbox/templates/virtualization/cluster.html:33 -#: netbox/templates/virtualization/virtualmachine.html:39 -#: netbox/templates/vpn/l2vpn.html:30 netbox/templates/vpn/tunnel.html:49 -#: netbox/templates/wireless/wirelesslan.html:34 -#: netbox/templates/wireless/wirelesslink.html:25 -#: netbox/tenancy/forms/forms.py:25 netbox/tenancy/forms/forms.py:48 -#: netbox/tenancy/forms/model_forms.py:52 netbox/tenancy/tables/columns.py:64 -#: netbox/virtualization/forms/bulk_edit.py:76 -#: netbox/virtualization/forms/bulk_edit.py:155 -#: netbox/virtualization/forms/bulk_import.py:66 -#: netbox/virtualization/forms/bulk_import.py:115 -#: netbox/virtualization/forms/filtersets.py:47 -#: netbox/virtualization/forms/filtersets.py:105 -#: netbox/vpn/forms/bulk_edit.py:59 netbox/vpn/forms/bulk_edit.py:269 -#: netbox/vpn/forms/bulk_import.py:59 netbox/vpn/forms/bulk_import.py:258 -#: netbox/vpn/forms/filtersets.py:214 netbox/wireless/forms/bulk_edit.py:63 -#: netbox/wireless/forms/bulk_edit.py:110 -#: netbox/wireless/forms/bulk_import.py:55 -#: netbox/wireless/forms/bulk_import.py:97 -#: netbox/wireless/forms/filtersets.py:35 -#: netbox/wireless/forms/filtersets.py:75 +#: circuits/forms/bulk_edit.py:142 circuits/forms/bulk_edit.py:233 +#: circuits/forms/bulk_import.py:98 circuits/forms/bulk_import.py:158 +#: circuits/forms/filtersets.py:119 circuits/forms/filtersets.py:241 +#: dcim/forms/bulk_edit.py:122 dcim/forms/bulk_edit.py:187 +#: dcim/forms/bulk_edit.py:346 dcim/forms/bulk_edit.py:461 +#: dcim/forms/bulk_edit.py:690 dcim/forms/bulk_edit.py:794 +#: dcim/forms/bulk_edit.py:1706 dcim/forms/bulk_import.py:107 +#: dcim/forms/bulk_import.py:152 dcim/forms/bulk_import.py:241 +#: dcim/forms/bulk_import.py:334 dcim/forms/bulk_import.py:479 +#: dcim/forms/bulk_import.py:1219 dcim/forms/bulk_import.py:1428 +#: dcim/forms/filtersets.py:173 dcim/forms/filtersets.py:205 +#: dcim/forms/filtersets.py:323 dcim/forms/filtersets.py:399 +#: dcim/forms/filtersets.py:420 dcim/forms/filtersets.py:722 +#: dcim/forms/filtersets.py:916 dcim/forms/filtersets.py:978 +#: dcim/forms/filtersets.py:1008 dcim/forms/filtersets.py:1130 +#: dcim/tables/power.py:88 extras/filtersets.py:612 +#: extras/forms/filtersets.py:323 extras/forms/filtersets.py:396 +#: ipam/forms/bulk_edit.py:43 ipam/forms/bulk_edit.py:68 +#: ipam/forms/bulk_edit.py:112 ipam/forms/bulk_edit.py:141 +#: ipam/forms/bulk_edit.py:166 ipam/forms/bulk_edit.py:251 +#: ipam/forms/bulk_edit.py:301 ipam/forms/bulk_edit.py:349 +#: ipam/forms/bulk_edit.py:501 ipam/forms/bulk_import.py:38 +#: ipam/forms/bulk_import.py:67 ipam/forms/bulk_import.py:95 +#: ipam/forms/bulk_import.py:115 ipam/forms/bulk_import.py:135 +#: ipam/forms/bulk_import.py:164 ipam/forms/bulk_import.py:250 +#: ipam/forms/bulk_import.py:286 ipam/forms/bulk_import.py:443 +#: ipam/forms/filtersets.py:48 ipam/forms/filtersets.py:68 +#: ipam/forms/filtersets.py:100 ipam/forms/filtersets.py:120 +#: ipam/forms/filtersets.py:143 ipam/forms/filtersets.py:174 +#: ipam/forms/filtersets.py:267 ipam/forms/filtersets.py:310 +#: ipam/forms/filtersets.py:469 ipam/tables/ip.py:456 ipam/tables/vlans.py:229 +#: templates/circuits/circuit.html:38 templates/circuits/circuitgroup.html:36 +#: templates/dcim/cable.html:23 templates/dcim/device.html:79 +#: templates/dcim/location.html:49 templates/dcim/powerfeed.html:44 +#: templates/dcim/rack.html:32 templates/dcim/rackreservation.html:49 +#: templates/dcim/site.html:47 templates/dcim/virtualdevicecontext.html:52 +#: templates/ipam/aggregate.html:30 templates/ipam/asn.html:33 +#: templates/ipam/asnrange.html:29 templates/ipam/ipaddress.html:28 +#: templates/ipam/iprange.html:58 templates/ipam/prefix.html:29 +#: templates/ipam/routetarget.html:17 templates/ipam/vlan.html:39 +#: templates/ipam/vrf.html:20 templates/tenancy/tenant.html:17 +#: templates/virtualization/cluster.html:33 +#: templates/virtualization/virtualmachine.html:39 templates/vpn/l2vpn.html:30 +#: templates/vpn/tunnel.html:49 templates/wireless/wirelesslan.html:34 +#: templates/wireless/wirelesslink.html:25 tenancy/forms/forms.py:25 +#: tenancy/forms/forms.py:48 tenancy/forms/model_forms.py:52 +#: tenancy/tables/columns.py:64 virtualization/forms/bulk_edit.py:76 +#: virtualization/forms/bulk_edit.py:155 +#: virtualization/forms/bulk_import.py:66 +#: virtualization/forms/bulk_import.py:115 +#: virtualization/forms/filtersets.py:47 +#: virtualization/forms/filtersets.py:105 vpn/forms/bulk_edit.py:59 +#: vpn/forms/bulk_edit.py:269 vpn/forms/bulk_import.py:59 +#: vpn/forms/bulk_import.py:258 vpn/forms/filtersets.py:214 +#: wireless/forms/bulk_edit.py:63 wireless/forms/bulk_edit.py:110 +#: wireless/forms/bulk_import.py:55 wireless/forms/bulk_import.py:97 +#: wireless/forms/filtersets.py:35 wireless/forms/filtersets.py:75 msgid "Tenant" msgstr "テナント" -#: netbox/circuits/forms/bulk_edit.py:147 -#: netbox/circuits/forms/filtersets.py:174 +#: circuits/forms/bulk_edit.py:147 circuits/forms/filtersets.py:174 msgid "Install date" msgstr "開通日" -#: netbox/circuits/forms/bulk_edit.py:152 -#: netbox/circuits/forms/filtersets.py:179 +#: circuits/forms/bulk_edit.py:152 circuits/forms/filtersets.py:179 msgid "Termination date" msgstr "終了日" -#: netbox/circuits/forms/bulk_edit.py:158 -#: netbox/circuits/forms/filtersets.py:186 +#: circuits/forms/bulk_edit.py:158 circuits/forms/filtersets.py:186 msgid "Commit rate (Kbps)" msgstr "保証帯域 (Kbps)" -#: netbox/circuits/forms/bulk_edit.py:173 -#: netbox/circuits/forms/model_forms.py:112 +#: circuits/forms/bulk_edit.py:173 circuits/forms/model_forms.py:112 msgid "Service Parameters" msgstr "サービス情報" -#: netbox/circuits/forms/bulk_edit.py:174 -#: netbox/circuits/forms/model_forms.py:113 -#: netbox/circuits/forms/model_forms.py:183 -#: netbox/dcim/forms/model_forms.py:139 netbox/dcim/forms/model_forms.py:181 -#: netbox/dcim/forms/model_forms.py:266 netbox/dcim/forms/model_forms.py:323 -#: netbox/dcim/forms/model_forms.py:768 netbox/dcim/forms/model_forms.py:1692 -#: netbox/ipam/forms/model_forms.py:64 netbox/ipam/forms/model_forms.py:81 -#: netbox/ipam/forms/model_forms.py:115 netbox/ipam/forms/model_forms.py:136 -#: netbox/ipam/forms/model_forms.py:160 netbox/ipam/forms/model_forms.py:232 -#: netbox/ipam/forms/model_forms.py:261 netbox/ipam/forms/model_forms.py:316 -#: netbox/netbox/navigation/menu.py:24 -#: netbox/templates/dcim/device_edit.html:85 -#: netbox/templates/dcim/htmx/cable_edit.html:72 -#: netbox/templates/ipam/ipaddress_bulk_add.html:27 -#: netbox/templates/ipam/vlan_edit.html:22 -#: netbox/virtualization/forms/model_forms.py:80 -#: netbox/virtualization/forms/model_forms.py:222 -#: netbox/vpn/forms/bulk_edit.py:78 netbox/vpn/forms/filtersets.py:44 -#: netbox/vpn/forms/model_forms.py:62 netbox/vpn/forms/model_forms.py:147 -#: netbox/vpn/forms/model_forms.py:411 netbox/wireless/forms/model_forms.py:54 -#: netbox/wireless/forms/model_forms.py:170 +#: circuits/forms/bulk_edit.py:174 circuits/forms/model_forms.py:113 +#: circuits/forms/model_forms.py:183 dcim/forms/model_forms.py:139 +#: dcim/forms/model_forms.py:181 dcim/forms/model_forms.py:266 +#: dcim/forms/model_forms.py:323 dcim/forms/model_forms.py:768 +#: dcim/forms/model_forms.py:1692 ipam/forms/model_forms.py:64 +#: ipam/forms/model_forms.py:81 ipam/forms/model_forms.py:115 +#: ipam/forms/model_forms.py:136 ipam/forms/model_forms.py:160 +#: ipam/forms/model_forms.py:232 ipam/forms/model_forms.py:261 +#: ipam/forms/model_forms.py:316 netbox/navigation/menu.py:24 +#: templates/dcim/device_edit.html:85 templates/dcim/htmx/cable_edit.html:72 +#: templates/ipam/ipaddress_bulk_add.html:27 templates/ipam/vlan_edit.html:22 +#: virtualization/forms/model_forms.py:80 +#: virtualization/forms/model_forms.py:222 vpn/forms/bulk_edit.py:78 +#: vpn/forms/filtersets.py:44 vpn/forms/model_forms.py:62 +#: vpn/forms/model_forms.py:147 vpn/forms/model_forms.py:411 +#: wireless/forms/model_forms.py:54 wireless/forms/model_forms.py:170 msgid "Tenancy" msgstr "テナンシー" -#: netbox/circuits/forms/bulk_edit.py:193 -#: netbox/circuits/forms/bulk_edit.py:217 -#: netbox/circuits/forms/model_forms.py:155 -#: netbox/circuits/tables/circuits.py:117 -#: netbox/templates/circuits/inc/circuit_termination_fields.html:62 -#: netbox/templates/circuits/providernetwork.html:17 +#: circuits/forms/bulk_edit.py:193 circuits/forms/bulk_edit.py:217 +#: circuits/forms/model_forms.py:155 circuits/tables/circuits.py:117 +#: templates/circuits/inc/circuit_termination_fields.html:62 +#: templates/circuits/providernetwork.html:17 msgid "Provider Network" msgstr "プロバイダネットワーク" -#: netbox/circuits/forms/bulk_edit.py:199 +#: circuits/forms/bulk_edit.py:199 msgid "Port speed (Kbps)" msgstr "ポートスピード (Kbps)" -#: netbox/circuits/forms/bulk_edit.py:203 +#: circuits/forms/bulk_edit.py:203 msgid "Upstream speed (Kbps)" msgstr "アップストリーム速度 (Kbps)" -#: netbox/circuits/forms/bulk_edit.py:206 netbox/dcim/forms/bulk_edit.py:951 -#: netbox/dcim/forms/bulk_edit.py:1315 netbox/dcim/forms/bulk_edit.py:1332 -#: netbox/dcim/forms/bulk_edit.py:1349 netbox/dcim/forms/bulk_edit.py:1367 -#: netbox/dcim/forms/bulk_edit.py:1455 netbox/dcim/forms/bulk_edit.py:1594 -#: netbox/dcim/forms/bulk_edit.py:1611 +#: circuits/forms/bulk_edit.py:206 dcim/forms/bulk_edit.py:951 +#: dcim/forms/bulk_edit.py:1315 dcim/forms/bulk_edit.py:1332 +#: dcim/forms/bulk_edit.py:1349 dcim/forms/bulk_edit.py:1367 +#: dcim/forms/bulk_edit.py:1455 dcim/forms/bulk_edit.py:1594 +#: dcim/forms/bulk_edit.py:1611 msgid "Mark connected" msgstr "接続済みにする" -#: netbox/circuits/forms/bulk_edit.py:219 -#: netbox/circuits/forms/model_forms.py:157 -#: netbox/templates/circuits/inc/circuit_termination_fields.html:54 -#: netbox/templates/dcim/frontport.html:121 -#: netbox/templates/dcim/interface.html:193 -#: netbox/templates/dcim/rearport.html:111 +#: circuits/forms/bulk_edit.py:219 circuits/forms/model_forms.py:157 +#: templates/circuits/inc/circuit_termination_fields.html:54 +#: templates/dcim/frontport.html:121 templates/dcim/interface.html:193 +#: templates/dcim/rearport.html:111 msgid "Circuit Termination" msgstr "回線終端" -#: netbox/circuits/forms/bulk_edit.py:221 -#: netbox/circuits/forms/model_forms.py:159 +#: circuits/forms/bulk_edit.py:221 circuits/forms/model_forms.py:159 msgid "Termination Details" msgstr "終了詳細" -#: netbox/circuits/forms/bulk_edit.py:251 -#: netbox/circuits/forms/filtersets.py:268 -#: netbox/circuits/tables/circuits.py:168 netbox/dcim/forms/model_forms.py:551 -#: netbox/templates/circuits/circuitgroupassignment.html:30 -#: netbox/templates/dcim/device.html:133 -#: netbox/templates/dcim/virtualchassis.html:68 -#: netbox/templates/dcim/virtualchassis_edit.html:56 -#: netbox/templates/ipam/inc/panels/fhrp_groups.html:26 -#: netbox/tenancy/forms/bulk_edit.py:147 -#: netbox/tenancy/forms/filtersets.py:110 +#: circuits/forms/bulk_edit.py:251 circuits/forms/filtersets.py:268 +#: circuits/tables/circuits.py:168 dcim/forms/model_forms.py:551 +#: templates/circuits/circuitgroupassignment.html:30 +#: templates/dcim/device.html:133 templates/dcim/virtualchassis.html:68 +#: templates/dcim/virtualchassis_edit.html:56 +#: templates/ipam/inc/panels/fhrp_groups.html:26 +#: tenancy/forms/bulk_edit.py:147 tenancy/forms/filtersets.py:110 msgid "Priority" msgstr "優先度" -#: netbox/circuits/forms/bulk_import.py:39 -#: netbox/circuits/forms/bulk_import.py:54 -#: netbox/circuits/forms/bulk_import.py:77 +#: circuits/forms/bulk_import.py:39 circuits/forms/bulk_import.py:54 +#: circuits/forms/bulk_import.py:77 msgid "Assigned provider" msgstr "割当プロバイダ" -#: netbox/circuits/forms/bulk_import.py:83 +#: circuits/forms/bulk_import.py:83 msgid "Assigned provider account" msgstr "割当プロバイダアカウント" -#: netbox/circuits/forms/bulk_import.py:90 +#: circuits/forms/bulk_import.py:90 msgid "Type of circuit" msgstr "回線のタイプ" -#: netbox/circuits/forms/bulk_import.py:95 netbox/dcim/forms/bulk_import.py:90 -#: netbox/dcim/forms/bulk_import.py:149 netbox/dcim/forms/bulk_import.py:250 -#: netbox/dcim/forms/bulk_import.py:507 netbox/dcim/forms/bulk_import.py:661 -#: netbox/dcim/forms/bulk_import.py:1373 netbox/ipam/forms/bulk_import.py:194 -#: netbox/ipam/forms/bulk_import.py:259 netbox/ipam/forms/bulk_import.py:295 -#: netbox/ipam/forms/bulk_import.py:452 -#: netbox/virtualization/forms/bulk_import.py:56 -#: netbox/virtualization/forms/bulk_import.py:82 -#: netbox/vpn/forms/bulk_import.py:39 netbox/wireless/forms/bulk_import.py:45 +#: circuits/forms/bulk_import.py:95 dcim/forms/bulk_import.py:90 +#: dcim/forms/bulk_import.py:149 dcim/forms/bulk_import.py:250 +#: dcim/forms/bulk_import.py:507 dcim/forms/bulk_import.py:661 +#: dcim/forms/bulk_import.py:1373 ipam/forms/bulk_import.py:194 +#: ipam/forms/bulk_import.py:259 ipam/forms/bulk_import.py:295 +#: ipam/forms/bulk_import.py:452 virtualization/forms/bulk_import.py:56 +#: virtualization/forms/bulk_import.py:82 vpn/forms/bulk_import.py:39 +#: wireless/forms/bulk_import.py:45 msgid "Operational status" msgstr "運用状況" -#: netbox/circuits/forms/bulk_import.py:102 -#: netbox/circuits/forms/bulk_import.py:162 -#: netbox/dcim/forms/bulk_import.py:111 netbox/dcim/forms/bulk_import.py:156 -#: netbox/dcim/forms/bulk_import.py:338 netbox/dcim/forms/bulk_import.py:483 -#: netbox/dcim/forms/bulk_import.py:1223 netbox/dcim/forms/bulk_import.py:1368 -#: netbox/dcim/forms/bulk_import.py:1432 netbox/ipam/forms/bulk_import.py:42 -#: netbox/ipam/forms/bulk_import.py:71 netbox/ipam/forms/bulk_import.py:99 -#: netbox/ipam/forms/bulk_import.py:119 netbox/ipam/forms/bulk_import.py:139 -#: netbox/ipam/forms/bulk_import.py:168 netbox/ipam/forms/bulk_import.py:254 -#: netbox/ipam/forms/bulk_import.py:290 netbox/ipam/forms/bulk_import.py:447 -#: netbox/virtualization/forms/bulk_import.py:70 -#: netbox/virtualization/forms/bulk_import.py:119 -#: netbox/vpn/forms/bulk_import.py:63 netbox/wireless/forms/bulk_import.py:59 -#: netbox/wireless/forms/bulk_import.py:101 +#: circuits/forms/bulk_import.py:102 circuits/forms/bulk_import.py:162 +#: dcim/forms/bulk_import.py:111 dcim/forms/bulk_import.py:156 +#: dcim/forms/bulk_import.py:338 dcim/forms/bulk_import.py:483 +#: dcim/forms/bulk_import.py:1223 dcim/forms/bulk_import.py:1368 +#: dcim/forms/bulk_import.py:1432 ipam/forms/bulk_import.py:42 +#: ipam/forms/bulk_import.py:71 ipam/forms/bulk_import.py:99 +#: ipam/forms/bulk_import.py:119 ipam/forms/bulk_import.py:139 +#: ipam/forms/bulk_import.py:168 ipam/forms/bulk_import.py:254 +#: ipam/forms/bulk_import.py:290 ipam/forms/bulk_import.py:447 +#: virtualization/forms/bulk_import.py:70 +#: virtualization/forms/bulk_import.py:119 vpn/forms/bulk_import.py:63 +#: wireless/forms/bulk_import.py:59 wireless/forms/bulk_import.py:101 msgid "Assigned tenant" msgstr "割当テナント" -#: netbox/circuits/forms/bulk_import.py:120 -#: netbox/templates/circuits/inc/circuit_termination.html:6 -#: netbox/templates/circuits/inc/circuit_termination_fields.html:15 -#: netbox/templates/dcim/cable.html:68 netbox/templates/dcim/cable.html:72 -#: netbox/vpn/forms/bulk_import.py:100 netbox/vpn/forms/filtersets.py:77 +#: circuits/forms/bulk_import.py:120 +#: templates/circuits/inc/circuit_termination.html:6 +#: templates/circuits/inc/circuit_termination_fields.html:15 +#: templates/dcim/cable.html:68 templates/dcim/cable.html:72 +#: vpn/forms/bulk_import.py:100 vpn/forms/filtersets.py:77 msgid "Termination" msgstr "終了" -#: netbox/circuits/forms/bulk_import.py:130 -#: netbox/circuits/forms/filtersets.py:147 -#: netbox/circuits/forms/filtersets.py:227 -#: netbox/circuits/forms/model_forms.py:144 +#: circuits/forms/bulk_import.py:130 circuits/forms/filtersets.py:147 +#: circuits/forms/filtersets.py:227 circuits/forms/model_forms.py:144 msgid "Provider network" msgstr "プロバイダネットワーク" -#: netbox/circuits/forms/filtersets.py:30 -#: netbox/circuits/forms/filtersets.py:118 -#: netbox/circuits/forms/filtersets.py:200 netbox/dcim/forms/bulk_edit.py:338 -#: netbox/dcim/forms/bulk_edit.py:441 netbox/dcim/forms/bulk_edit.py:682 -#: netbox/dcim/forms/bulk_edit.py:729 netbox/dcim/forms/bulk_edit.py:882 -#: netbox/dcim/forms/bulk_import.py:235 netbox/dcim/forms/bulk_import.py:315 -#: netbox/dcim/forms/bulk_import.py:546 netbox/dcim/forms/bulk_import.py:1317 -#: netbox/dcim/forms/bulk_import.py:1351 netbox/dcim/forms/filtersets.py:95 -#: netbox/dcim/forms/filtersets.py:322 netbox/dcim/forms/filtersets.py:356 -#: netbox/dcim/forms/filtersets.py:396 netbox/dcim/forms/filtersets.py:447 -#: netbox/dcim/forms/filtersets.py:719 netbox/dcim/forms/filtersets.py:762 -#: netbox/dcim/forms/filtersets.py:977 netbox/dcim/forms/filtersets.py:1006 -#: netbox/dcim/forms/filtersets.py:1026 netbox/dcim/forms/filtersets.py:1090 -#: netbox/dcim/forms/filtersets.py:1120 netbox/dcim/forms/filtersets.py:1129 -#: netbox/dcim/forms/filtersets.py:1240 netbox/dcim/forms/filtersets.py:1264 -#: netbox/dcim/forms/filtersets.py:1289 netbox/dcim/forms/filtersets.py:1308 -#: netbox/dcim/forms/filtersets.py:1331 netbox/dcim/forms/filtersets.py:1442 -#: netbox/dcim/forms/filtersets.py:1466 netbox/dcim/forms/filtersets.py:1490 -#: netbox/dcim/forms/filtersets.py:1508 netbox/dcim/forms/filtersets.py:1525 -#: netbox/dcim/forms/model_forms.py:180 netbox/dcim/forms/model_forms.py:243 -#: netbox/dcim/forms/model_forms.py:468 netbox/dcim/forms/model_forms.py:728 -#: netbox/dcim/tables/devices.py:157 netbox/dcim/tables/power.py:30 -#: netbox/dcim/tables/racks.py:118 netbox/dcim/tables/racks.py:212 -#: netbox/extras/filtersets.py:536 netbox/extras/forms/filtersets.py:320 -#: netbox/ipam/forms/bulk_edit.py:460 netbox/ipam/forms/filtersets.py:173 -#: netbox/ipam/forms/filtersets.py:414 netbox/ipam/forms/filtersets.py:437 -#: netbox/ipam/forms/filtersets.py:467 netbox/templates/dcim/device.html:26 -#: netbox/templates/dcim/device_edit.html:30 -#: netbox/templates/dcim/inc/cable_termination.html:12 -#: netbox/templates/dcim/location.html:26 -#: netbox/templates/dcim/powerpanel.html:26 netbox/templates/dcim/rack.html:24 -#: netbox/templates/dcim/rackreservation.html:32 -#: netbox/virtualization/forms/filtersets.py:46 -#: netbox/virtualization/forms/filtersets.py:100 -#: netbox/wireless/forms/model_forms.py:87 -#: netbox/wireless/forms/model_forms.py:129 +#: circuits/forms/filtersets.py:30 circuits/forms/filtersets.py:118 +#: circuits/forms/filtersets.py:200 dcim/forms/bulk_edit.py:338 +#: dcim/forms/bulk_edit.py:441 dcim/forms/bulk_edit.py:682 +#: dcim/forms/bulk_edit.py:729 dcim/forms/bulk_edit.py:882 +#: dcim/forms/bulk_import.py:235 dcim/forms/bulk_import.py:315 +#: dcim/forms/bulk_import.py:546 dcim/forms/bulk_import.py:1317 +#: dcim/forms/bulk_import.py:1351 dcim/forms/filtersets.py:95 +#: dcim/forms/filtersets.py:322 dcim/forms/filtersets.py:356 +#: dcim/forms/filtersets.py:396 dcim/forms/filtersets.py:447 +#: dcim/forms/filtersets.py:719 dcim/forms/filtersets.py:762 +#: dcim/forms/filtersets.py:977 dcim/forms/filtersets.py:1006 +#: dcim/forms/filtersets.py:1026 dcim/forms/filtersets.py:1090 +#: dcim/forms/filtersets.py:1120 dcim/forms/filtersets.py:1129 +#: dcim/forms/filtersets.py:1240 dcim/forms/filtersets.py:1264 +#: dcim/forms/filtersets.py:1289 dcim/forms/filtersets.py:1308 +#: dcim/forms/filtersets.py:1331 dcim/forms/filtersets.py:1442 +#: dcim/forms/filtersets.py:1466 dcim/forms/filtersets.py:1490 +#: dcim/forms/filtersets.py:1508 dcim/forms/filtersets.py:1525 +#: dcim/forms/model_forms.py:180 dcim/forms/model_forms.py:243 +#: dcim/forms/model_forms.py:468 dcim/forms/model_forms.py:728 +#: dcim/tables/devices.py:157 dcim/tables/power.py:30 dcim/tables/racks.py:118 +#: dcim/tables/racks.py:212 extras/filtersets.py:536 +#: extras/forms/filtersets.py:320 ipam/forms/filtersets.py:173 +#: ipam/forms/filtersets.py:414 ipam/forms/filtersets.py:437 +#: ipam/forms/filtersets.py:467 templates/dcim/device.html:26 +#: templates/dcim/device_edit.html:30 +#: templates/dcim/inc/cable_termination.html:12 +#: templates/dcim/location.html:26 templates/dcim/powerpanel.html:26 +#: templates/dcim/rack.html:24 templates/dcim/rackreservation.html:32 +#: virtualization/forms/filtersets.py:46 +#: virtualization/forms/filtersets.py:100 wireless/forms/model_forms.py:87 +#: wireless/forms/model_forms.py:129 msgid "Location" msgstr "ロケーション" -#: netbox/circuits/forms/filtersets.py:32 -#: netbox/circuits/forms/filtersets.py:120 netbox/dcim/forms/filtersets.py:144 -#: netbox/dcim/forms/filtersets.py:158 netbox/dcim/forms/filtersets.py:174 -#: netbox/dcim/forms/filtersets.py:206 netbox/dcim/forms/filtersets.py:328 -#: netbox/dcim/forms/filtersets.py:400 netbox/dcim/forms/filtersets.py:471 -#: netbox/dcim/forms/filtersets.py:723 netbox/dcim/forms/filtersets.py:1091 -#: netbox/netbox/navigation/menu.py:31 netbox/netbox/navigation/menu.py:33 -#: netbox/tenancy/forms/filtersets.py:42 netbox/tenancy/tables/columns.py:70 -#: netbox/tenancy/tables/contacts.py:25 netbox/tenancy/views.py:19 -#: netbox/virtualization/forms/filtersets.py:37 -#: netbox/virtualization/forms/filtersets.py:48 -#: netbox/virtualization/forms/filtersets.py:106 +#: circuits/forms/filtersets.py:32 circuits/forms/filtersets.py:120 +#: dcim/forms/filtersets.py:144 dcim/forms/filtersets.py:158 +#: dcim/forms/filtersets.py:174 dcim/forms/filtersets.py:206 +#: dcim/forms/filtersets.py:328 dcim/forms/filtersets.py:400 +#: dcim/forms/filtersets.py:471 dcim/forms/filtersets.py:723 +#: dcim/forms/filtersets.py:1091 netbox/navigation/menu.py:31 +#: netbox/navigation/menu.py:33 tenancy/forms/filtersets.py:42 +#: tenancy/tables/columns.py:70 tenancy/tables/contacts.py:25 +#: tenancy/views.py:19 virtualization/forms/filtersets.py:37 +#: virtualization/forms/filtersets.py:48 +#: virtualization/forms/filtersets.py:106 msgid "Contacts" msgstr "連絡先" -#: netbox/circuits/forms/filtersets.py:37 -#: netbox/circuits/forms/filtersets.py:157 netbox/dcim/forms/bulk_edit.py:112 -#: netbox/dcim/forms/bulk_edit.py:313 netbox/dcim/forms/bulk_edit.py:857 -#: netbox/dcim/forms/bulk_import.py:93 netbox/dcim/forms/filtersets.py:73 -#: netbox/dcim/forms/filtersets.py:185 netbox/dcim/forms/filtersets.py:211 -#: netbox/dcim/forms/filtersets.py:334 netbox/dcim/forms/filtersets.py:425 -#: netbox/dcim/forms/filtersets.py:739 netbox/dcim/forms/filtersets.py:983 -#: netbox/dcim/forms/filtersets.py:1013 netbox/dcim/forms/filtersets.py:1097 -#: netbox/dcim/forms/filtersets.py:1136 netbox/dcim/forms/filtersets.py:1576 -#: netbox/dcim/forms/filtersets.py:1600 netbox/dcim/forms/filtersets.py:1624 -#: netbox/dcim/forms/model_forms.py:112 netbox/dcim/forms/object_create.py:375 -#: netbox/dcim/tables/devices.py:143 netbox/dcim/tables/sites.py:85 -#: netbox/extras/filtersets.py:503 netbox/ipam/forms/bulk_edit.py:207 -#: netbox/ipam/forms/bulk_edit.py:441 netbox/ipam/forms/bulk_edit.py:519 -#: netbox/ipam/forms/filtersets.py:217 netbox/ipam/forms/filtersets.py:422 -#: netbox/ipam/forms/filtersets.py:475 netbox/templates/dcim/device.html:18 -#: netbox/templates/dcim/rack.html:16 -#: netbox/templates/dcim/rackreservation.html:22 -#: netbox/templates/dcim/region.html:26 netbox/templates/dcim/site.html:31 -#: netbox/templates/ipam/prefix.html:49 netbox/templates/ipam/vlan.html:16 -#: netbox/virtualization/forms/bulk_edit.py:81 -#: netbox/virtualization/forms/filtersets.py:59 -#: netbox/virtualization/forms/filtersets.py:133 -#: netbox/virtualization/forms/model_forms.py:92 -#: netbox/vpn/forms/filtersets.py:257 +#: circuits/forms/filtersets.py:37 circuits/forms/filtersets.py:157 +#: dcim/forms/bulk_edit.py:112 dcim/forms/bulk_edit.py:313 +#: dcim/forms/bulk_edit.py:857 dcim/forms/bulk_import.py:93 +#: dcim/forms/filtersets.py:73 dcim/forms/filtersets.py:185 +#: dcim/forms/filtersets.py:211 dcim/forms/filtersets.py:334 +#: dcim/forms/filtersets.py:425 dcim/forms/filtersets.py:739 +#: dcim/forms/filtersets.py:983 dcim/forms/filtersets.py:1013 +#: dcim/forms/filtersets.py:1097 dcim/forms/filtersets.py:1136 +#: dcim/forms/filtersets.py:1576 dcim/forms/filtersets.py:1600 +#: dcim/forms/filtersets.py:1624 dcim/forms/model_forms.py:112 +#: dcim/forms/object_create.py:375 dcim/tables/devices.py:143 +#: dcim/tables/sites.py:85 extras/filtersets.py:503 +#: ipam/forms/bulk_edit.py:208 ipam/forms/bulk_edit.py:474 +#: ipam/forms/filtersets.py:217 ipam/forms/filtersets.py:422 +#: ipam/forms/filtersets.py:475 templates/dcim/device.html:18 +#: templates/dcim/rack.html:16 templates/dcim/rackreservation.html:22 +#: templates/dcim/region.html:26 templates/dcim/site.html:31 +#: templates/ipam/prefix.html:49 templates/ipam/vlan.html:16 +#: virtualization/forms/bulk_edit.py:81 virtualization/forms/filtersets.py:59 +#: virtualization/forms/filtersets.py:133 +#: virtualization/forms/model_forms.py:92 vpn/forms/filtersets.py:257 msgid "Region" msgstr "リージョン" -#: netbox/circuits/forms/filtersets.py:42 -#: netbox/circuits/forms/filtersets.py:162 netbox/dcim/forms/bulk_edit.py:321 -#: netbox/dcim/forms/bulk_edit.py:865 netbox/dcim/forms/filtersets.py:78 -#: netbox/dcim/forms/filtersets.py:190 netbox/dcim/forms/filtersets.py:216 -#: netbox/dcim/forms/filtersets.py:347 netbox/dcim/forms/filtersets.py:430 -#: netbox/dcim/forms/filtersets.py:744 netbox/dcim/forms/filtersets.py:988 -#: netbox/dcim/forms/filtersets.py:1102 netbox/dcim/forms/filtersets.py:1141 -#: netbox/dcim/forms/object_create.py:383 netbox/extras/filtersets.py:520 -#: netbox/ipam/forms/bulk_edit.py:212 netbox/ipam/forms/bulk_edit.py:448 -#: netbox/ipam/forms/bulk_edit.py:524 netbox/ipam/forms/filtersets.py:222 -#: netbox/ipam/forms/filtersets.py:427 netbox/ipam/forms/filtersets.py:480 -#: netbox/virtualization/forms/bulk_edit.py:86 -#: netbox/virtualization/forms/filtersets.py:69 -#: netbox/virtualization/forms/filtersets.py:138 -#: netbox/virtualization/forms/model_forms.py:98 +#: circuits/forms/filtersets.py:42 circuits/forms/filtersets.py:162 +#: dcim/forms/bulk_edit.py:321 dcim/forms/bulk_edit.py:865 +#: dcim/forms/filtersets.py:78 dcim/forms/filtersets.py:190 +#: dcim/forms/filtersets.py:216 dcim/forms/filtersets.py:347 +#: dcim/forms/filtersets.py:430 dcim/forms/filtersets.py:744 +#: dcim/forms/filtersets.py:988 dcim/forms/filtersets.py:1102 +#: dcim/forms/filtersets.py:1141 dcim/forms/object_create.py:383 +#: extras/filtersets.py:520 ipam/forms/bulk_edit.py:213 +#: ipam/forms/bulk_edit.py:479 ipam/forms/filtersets.py:222 +#: ipam/forms/filtersets.py:427 ipam/forms/filtersets.py:480 +#: virtualization/forms/bulk_edit.py:86 virtualization/forms/filtersets.py:69 +#: virtualization/forms/filtersets.py:138 +#: virtualization/forms/model_forms.py:98 msgid "Site group" msgstr "サイトグループ" -#: netbox/circuits/forms/filtersets.py:65 -#: netbox/circuits/forms/filtersets.py:83 -#: netbox/circuits/forms/filtersets.py:102 -#: netbox/circuits/forms/filtersets.py:117 netbox/core/forms/filtersets.py:67 -#: netbox/core/forms/filtersets.py:135 netbox/dcim/forms/bulk_edit.py:828 -#: netbox/dcim/forms/filtersets.py:172 netbox/dcim/forms/filtersets.py:204 -#: netbox/dcim/forms/filtersets.py:915 netbox/dcim/forms/filtersets.py:1007 -#: netbox/dcim/forms/filtersets.py:1131 netbox/dcim/forms/filtersets.py:1239 -#: netbox/dcim/forms/filtersets.py:1263 netbox/dcim/forms/filtersets.py:1288 -#: netbox/dcim/forms/filtersets.py:1307 netbox/dcim/forms/filtersets.py:1327 -#: netbox/dcim/forms/filtersets.py:1441 netbox/dcim/forms/filtersets.py:1465 -#: netbox/dcim/forms/filtersets.py:1489 netbox/dcim/forms/filtersets.py:1507 -#: netbox/dcim/forms/filtersets.py:1523 netbox/extras/forms/bulk_edit.py:90 -#: netbox/extras/forms/filtersets.py:44 netbox/extras/forms/filtersets.py:134 -#: netbox/extras/forms/filtersets.py:165 netbox/extras/forms/filtersets.py:205 -#: netbox/extras/forms/filtersets.py:221 netbox/extras/forms/filtersets.py:252 -#: netbox/extras/forms/filtersets.py:276 netbox/extras/forms/filtersets.py:441 -#: netbox/ipam/forms/filtersets.py:99 netbox/ipam/forms/filtersets.py:266 -#: netbox/ipam/forms/filtersets.py:307 netbox/ipam/forms/filtersets.py:382 -#: netbox/ipam/forms/filtersets.py:468 netbox/ipam/forms/filtersets.py:527 -#: netbox/ipam/forms/filtersets.py:545 netbox/netbox/tables/tables.py:256 -#: netbox/virtualization/forms/filtersets.py:45 -#: netbox/virtualization/forms/filtersets.py:103 -#: netbox/virtualization/forms/filtersets.py:198 -#: netbox/virtualization/forms/filtersets.py:243 -#: netbox/vpn/forms/filtersets.py:213 netbox/wireless/forms/bulk_edit.py:150 -#: netbox/wireless/forms/filtersets.py:34 -#: netbox/wireless/forms/filtersets.py:74 +#: circuits/forms/filtersets.py:65 circuits/forms/filtersets.py:83 +#: circuits/forms/filtersets.py:102 circuits/forms/filtersets.py:117 +#: core/forms/filtersets.py:67 core/forms/filtersets.py:135 +#: dcim/forms/bulk_edit.py:828 dcim/forms/filtersets.py:172 +#: dcim/forms/filtersets.py:204 dcim/forms/filtersets.py:915 +#: dcim/forms/filtersets.py:1007 dcim/forms/filtersets.py:1131 +#: dcim/forms/filtersets.py:1239 dcim/forms/filtersets.py:1263 +#: dcim/forms/filtersets.py:1288 dcim/forms/filtersets.py:1307 +#: dcim/forms/filtersets.py:1327 dcim/forms/filtersets.py:1441 +#: dcim/forms/filtersets.py:1465 dcim/forms/filtersets.py:1489 +#: dcim/forms/filtersets.py:1507 dcim/forms/filtersets.py:1523 +#: extras/forms/bulk_edit.py:90 extras/forms/filtersets.py:44 +#: extras/forms/filtersets.py:134 extras/forms/filtersets.py:165 +#: extras/forms/filtersets.py:205 extras/forms/filtersets.py:221 +#: extras/forms/filtersets.py:252 extras/forms/filtersets.py:276 +#: extras/forms/filtersets.py:441 ipam/forms/filtersets.py:99 +#: ipam/forms/filtersets.py:266 ipam/forms/filtersets.py:307 +#: ipam/forms/filtersets.py:382 ipam/forms/filtersets.py:468 +#: ipam/forms/filtersets.py:527 ipam/forms/filtersets.py:545 +#: netbox/tables/tables.py:256 virtualization/forms/filtersets.py:45 +#: virtualization/forms/filtersets.py:103 +#: virtualization/forms/filtersets.py:198 +#: virtualization/forms/filtersets.py:243 vpn/forms/filtersets.py:213 +#: wireless/forms/bulk_edit.py:150 wireless/forms/filtersets.py:34 +#: wireless/forms/filtersets.py:74 msgid "Attributes" msgstr "属性" -#: netbox/circuits/forms/filtersets.py:73 -#: netbox/circuits/tables/circuits.py:63 -#: netbox/circuits/tables/providers.py:66 -#: netbox/templates/circuits/circuit.html:22 -#: netbox/templates/circuits/provideraccount.html:24 +#: circuits/forms/filtersets.py:73 circuits/tables/circuits.py:63 +#: circuits/tables/providers.py:66 templates/circuits/circuit.html:22 +#: templates/circuits/provideraccount.html:24 msgid "Account" msgstr "アカウント" -#: netbox/circuits/forms/filtersets.py:217 +#: circuits/forms/filtersets.py:217 msgid "Term Side" msgstr "タームサイド" -#: netbox/circuits/forms/filtersets.py:250 -#: netbox/extras/forms/model_forms.py:582 netbox/ipam/forms/filtersets.py:142 -#: netbox/ipam/forms/filtersets.py:546 netbox/ipam/forms/model_forms.py:323 -#: netbox/templates/extras/configcontext.html:60 -#: netbox/templates/ipam/ipaddress.html:59 -#: netbox/templates/ipam/vlan_edit.html:30 -#: netbox/tenancy/forms/filtersets.py:87 netbox/users/forms/model_forms.py:314 +#: circuits/forms/filtersets.py:250 extras/forms/model_forms.py:582 +#: ipam/forms/filtersets.py:142 ipam/forms/filtersets.py:546 +#: ipam/forms/model_forms.py:323 templates/extras/configcontext.html:60 +#: templates/ipam/ipaddress.html:59 templates/ipam/vlan_edit.html:30 +#: tenancy/forms/filtersets.py:87 users/forms/model_forms.py:314 msgid "Assignment" msgstr "割当" -#: netbox/circuits/forms/filtersets.py:265 -#: netbox/circuits/forms/model_forms.py:195 -#: netbox/circuits/tables/circuits.py:155 netbox/dcim/forms/bulk_edit.py:117 -#: netbox/dcim/forms/bulk_import.py:100 netbox/dcim/forms/model_forms.py:117 -#: netbox/dcim/tables/sites.py:89 netbox/extras/forms/filtersets.py:480 -#: netbox/ipam/filtersets.py:999 netbox/ipam/forms/bulk_edit.py:538 -#: netbox/ipam/forms/bulk_import.py:436 netbox/ipam/forms/model_forms.py:528 -#: netbox/ipam/tables/fhrp.py:67 netbox/ipam/tables/vlans.py:122 -#: netbox/ipam/tables/vlans.py:226 -#: netbox/templates/circuits/circuitgroupassignment.html:22 -#: netbox/templates/dcim/interface.html:284 netbox/templates/dcim/site.html:37 -#: netbox/templates/ipam/inc/panels/fhrp_groups.html:23 -#: netbox/templates/ipam/vlan.html:27 netbox/templates/tenancy/contact.html:21 -#: netbox/templates/tenancy/tenant.html:20 netbox/templates/users/group.html:6 -#: netbox/templates/users/group.html:14 -#: netbox/templates/virtualization/cluster.html:29 -#: netbox/templates/vpn/tunnel.html:29 -#: netbox/templates/wireless/wirelesslan.html:18 -#: netbox/tenancy/forms/bulk_edit.py:43 netbox/tenancy/forms/bulk_edit.py:94 -#: netbox/tenancy/forms/bulk_import.py:40 -#: netbox/tenancy/forms/bulk_import.py:81 -#: netbox/tenancy/forms/filtersets.py:48 netbox/tenancy/forms/filtersets.py:78 -#: netbox/tenancy/forms/filtersets.py:97 -#: netbox/tenancy/forms/model_forms.py:45 -#: netbox/tenancy/forms/model_forms.py:97 -#: netbox/tenancy/forms/model_forms.py:122 -#: netbox/tenancy/tables/contacts.py:60 netbox/tenancy/tables/contacts.py:107 -#: netbox/tenancy/tables/tenants.py:42 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 -#: netbox/virtualization/forms/bulk_edit.py:65 -#: netbox/virtualization/forms/bulk_import.py:47 -#: netbox/virtualization/forms/filtersets.py:85 -#: netbox/virtualization/forms/model_forms.py:66 -#: netbox/virtualization/tables/clusters.py:70 -#: netbox/vpn/forms/bulk_edit.py:112 netbox/vpn/forms/bulk_import.py:158 -#: netbox/vpn/forms/filtersets.py:116 netbox/vpn/tables/crypto.py:31 -#: netbox/vpn/tables/tunnels.py:44 netbox/wireless/forms/bulk_edit.py:48 -#: netbox/wireless/forms/bulk_import.py:36 -#: netbox/wireless/forms/filtersets.py:46 -#: netbox/wireless/forms/model_forms.py:40 -#: netbox/wireless/tables/wirelesslan.py:48 +#: circuits/forms/filtersets.py:265 circuits/forms/model_forms.py:195 +#: circuits/tables/circuits.py:155 dcim/forms/bulk_edit.py:117 +#: dcim/forms/bulk_import.py:100 dcim/forms/model_forms.py:117 +#: dcim/tables/sites.py:89 extras/forms/filtersets.py:480 +#: ipam/filtersets.py:999 ipam/forms/bulk_edit.py:493 +#: ipam/forms/bulk_import.py:436 ipam/forms/model_forms.py:528 +#: ipam/tables/fhrp.py:67 ipam/tables/vlans.py:122 ipam/tables/vlans.py:226 +#: templates/circuits/circuitgroupassignment.html:22 +#: templates/dcim/interface.html:284 templates/dcim/site.html:37 +#: templates/ipam/inc/panels/fhrp_groups.html:23 templates/ipam/vlan.html:27 +#: templates/tenancy/contact.html:21 templates/tenancy/tenant.html:20 +#: templates/users/group.html:6 templates/users/group.html:14 +#: templates/virtualization/cluster.html:29 templates/vpn/tunnel.html:29 +#: templates/wireless/wirelesslan.html:18 tenancy/forms/bulk_edit.py:43 +#: tenancy/forms/bulk_edit.py:94 tenancy/forms/bulk_import.py:40 +#: tenancy/forms/bulk_import.py:81 tenancy/forms/filtersets.py:48 +#: tenancy/forms/filtersets.py:78 tenancy/forms/filtersets.py:97 +#: tenancy/forms/model_forms.py:45 tenancy/forms/model_forms.py:97 +#: tenancy/forms/model_forms.py:122 tenancy/tables/contacts.py:60 +#: tenancy/tables/contacts.py:107 tenancy/tables/tenants.py:42 +#: users/filtersets.py:62 users/filtersets.py:185 users/forms/filtersets.py:31 +#: users/forms/filtersets.py:37 users/forms/filtersets.py:79 +#: virtualization/forms/bulk_edit.py:65 virtualization/forms/bulk_import.py:47 +#: virtualization/forms/filtersets.py:85 +#: virtualization/forms/model_forms.py:66 virtualization/tables/clusters.py:70 +#: vpn/forms/bulk_edit.py:112 vpn/forms/bulk_import.py:158 +#: vpn/forms/filtersets.py:116 vpn/tables/crypto.py:31 +#: vpn/tables/tunnels.py:44 wireless/forms/bulk_edit.py:48 +#: wireless/forms/bulk_import.py:36 wireless/forms/filtersets.py:46 +#: wireless/forms/model_forms.py:40 wireless/tables/wirelesslan.py:48 msgid "Group" msgstr "グループ" -#: netbox/circuits/forms/model_forms.py:182 -#: netbox/templates/circuits/circuitgroup.html:25 +#: circuits/forms/model_forms.py:182 templates/circuits/circuitgroup.html:25 msgid "Circuit Group" msgstr "回線グループ" -#: netbox/circuits/models/circuits.py:27 netbox/dcim/models/cables.py:67 -#: netbox/dcim/models/device_component_templates.py:517 -#: netbox/dcim/models/device_component_templates.py:617 -#: netbox/dcim/models/device_components.py:975 -#: netbox/dcim/models/device_components.py:1049 -#: netbox/dcim/models/device_components.py:1204 -#: netbox/dcim/models/devices.py:479 netbox/dcim/models/racks.py:224 -#: netbox/extras/models/tags.py:28 +#: circuits/models/circuits.py:27 dcim/models/cables.py:67 +#: dcim/models/device_component_templates.py:517 +#: dcim/models/device_component_templates.py:617 +#: dcim/models/device_components.py:975 dcim/models/device_components.py:1049 +#: dcim/models/device_components.py:1204 dcim/models/devices.py:479 +#: dcim/models/racks.py:224 extras/models/tags.py:28 msgid "color" msgstr "色" -#: netbox/circuits/models/circuits.py:36 +#: circuits/models/circuits.py:36 msgid "circuit type" msgstr "回線タイプ" -#: netbox/circuits/models/circuits.py:37 +#: circuits/models/circuits.py:37 msgid "circuit types" msgstr "回線タイプ" -#: netbox/circuits/models/circuits.py:48 +#: circuits/models/circuits.py:48 msgid "circuit ID" msgstr "回線 ID" -#: netbox/circuits/models/circuits.py:49 +#: circuits/models/circuits.py:49 msgid "Unique circuit ID" msgstr "一意な回線 ID" -#: netbox/circuits/models/circuits.py:69 netbox/core/models/data.py:52 -#: netbox/core/models/jobs.py:84 netbox/dcim/models/cables.py:49 -#: netbox/dcim/models/devices.py:653 netbox/dcim/models/devices.py:1173 -#: netbox/dcim/models/devices.py:1399 netbox/dcim/models/power.py:96 -#: netbox/dcim/models/racks.py:297 netbox/dcim/models/sites.py:154 -#: netbox/dcim/models/sites.py:266 netbox/ipam/models/ip.py:253 -#: netbox/ipam/models/ip.py:522 netbox/ipam/models/ip.py:730 -#: netbox/ipam/models/vlans.py:195 netbox/virtualization/models/clusters.py:74 -#: netbox/virtualization/models/virtualmachines.py:84 -#: netbox/vpn/models/tunnels.py:40 netbox/wireless/models.py:95 -#: netbox/wireless/models.py:159 +#: circuits/models/circuits.py:69 core/models/data.py:52 +#: core/models/jobs.py:84 dcim/models/cables.py:49 dcim/models/devices.py:653 +#: dcim/models/devices.py:1173 dcim/models/devices.py:1399 +#: dcim/models/power.py:96 dcim/models/racks.py:297 dcim/models/sites.py:154 +#: dcim/models/sites.py:266 ipam/models/ip.py:253 ipam/models/ip.py:522 +#: ipam/models/ip.py:730 ipam/models/vlans.py:195 +#: virtualization/models/clusters.py:74 +#: virtualization/models/virtualmachines.py:84 vpn/models/tunnels.py:40 +#: wireless/models.py:95 wireless/models.py:159 msgid "status" msgstr "状態" -#: netbox/circuits/models/circuits.py:84 netbox/templates/core/plugin.html:19 +#: circuits/models/circuits.py:84 templates/core/plugin.html:20 msgid "installed" msgstr "開通済" -#: netbox/circuits/models/circuits.py:89 +#: circuits/models/circuits.py:89 msgid "terminates" msgstr "終端" -#: netbox/circuits/models/circuits.py:94 +#: circuits/models/circuits.py:94 msgid "commit rate (Kbps)" msgstr "保証帯域 (Kbps)" -#: netbox/circuits/models/circuits.py:95 +#: circuits/models/circuits.py:95 msgid "Committed rate" msgstr "保証帯域" -#: netbox/circuits/models/circuits.py:137 +#: circuits/models/circuits.py:137 msgid "circuit" msgstr "回線" -#: netbox/circuits/models/circuits.py:138 +#: circuits/models/circuits.py:138 msgid "circuits" msgstr "回線" -#: netbox/circuits/models/circuits.py:170 +#: circuits/models/circuits.py:170 msgid "circuit group" msgstr "回線グループ" -#: netbox/circuits/models/circuits.py:171 +#: circuits/models/circuits.py:171 msgid "circuit groups" msgstr "回線グループ" -#: netbox/circuits/models/circuits.py:195 netbox/ipam/models/fhrp.py:93 -#: netbox/tenancy/models/contacts.py:134 +#: circuits/models/circuits.py:195 ipam/models/fhrp.py:93 +#: tenancy/models/contacts.py:134 msgid "priority" msgstr "優先度" -#: netbox/circuits/models/circuits.py:213 +#: circuits/models/circuits.py:213 msgid "Circuit group assignment" msgstr "割当回線グループ" -#: netbox/circuits/models/circuits.py:214 +#: circuits/models/circuits.py:214 msgid "Circuit group assignments" msgstr "割当回線グループ" -#: netbox/circuits/models/circuits.py:240 +#: circuits/models/circuits.py:240 msgid "termination" msgstr "終端" -#: netbox/circuits/models/circuits.py:257 +#: circuits/models/circuits.py:257 msgid "port speed (Kbps)" msgstr "ポート速度 (Kbps)" -#: netbox/circuits/models/circuits.py:260 +#: circuits/models/circuits.py:260 msgid "Physical circuit speed" msgstr "物理回線速度" -#: netbox/circuits/models/circuits.py:265 +#: circuits/models/circuits.py:265 msgid "upstream speed (Kbps)" msgstr "アップストリーム速度 (Kbps)" -#: netbox/circuits/models/circuits.py:266 +#: circuits/models/circuits.py:266 msgid "Upstream speed, if different from port speed" msgstr "アップストリーム速度 (ポート速度と異なる場合)" -#: netbox/circuits/models/circuits.py:271 +#: circuits/models/circuits.py:271 msgid "cross-connect ID" msgstr "クロスコネクト ID" -#: netbox/circuits/models/circuits.py:272 +#: circuits/models/circuits.py:272 msgid "ID of the local cross-connect" msgstr "ローカル・クロスコネクトの ID" -#: netbox/circuits/models/circuits.py:277 +#: circuits/models/circuits.py:277 msgid "patch panel/port(s)" msgstr "パッチパネル/ポート" -#: netbox/circuits/models/circuits.py:278 +#: circuits/models/circuits.py:278 msgid "Patch panel ID and port number(s)" msgstr "パッチパネル ID とポート番号" -#: netbox/circuits/models/circuits.py:281 -#: netbox/dcim/models/device_component_templates.py:61 -#: netbox/dcim/models/device_components.py:68 netbox/dcim/models/racks.py:685 -#: netbox/extras/models/configs.py:45 netbox/extras/models/configs.py:219 -#: netbox/extras/models/customfields.py:125 netbox/extras/models/models.py:61 -#: netbox/extras/models/models.py:158 netbox/extras/models/models.py:396 -#: netbox/extras/models/models.py:511 -#: netbox/extras/models/notifications.py:131 -#: netbox/extras/models/staging.py:31 netbox/extras/models/tags.py:32 -#: netbox/netbox/models/__init__.py:110 netbox/netbox/models/__init__.py:145 -#: netbox/netbox/models/__init__.py:191 netbox/users/models/permissions.py:24 -#: netbox/users/models/tokens.py:57 netbox/users/models/users.py:33 -#: netbox/virtualization/models/virtualmachines.py:289 +#: circuits/models/circuits.py:281 +#: dcim/models/device_component_templates.py:61 +#: dcim/models/device_components.py:68 dcim/models/racks.py:685 +#: extras/models/configs.py:45 extras/models/configs.py:219 +#: extras/models/customfields.py:125 extras/models/models.py:61 +#: extras/models/models.py:158 extras/models/models.py:396 +#: extras/models/models.py:511 extras/models/notifications.py:131 +#: extras/models/staging.py:31 extras/models/tags.py:32 +#: netbox/models/__init__.py:110 netbox/models/__init__.py:145 +#: netbox/models/__init__.py:191 users/models/permissions.py:24 +#: users/models/tokens.py:57 users/models/users.py:33 +#: virtualization/models/virtualmachines.py:289 msgid "description" msgstr "説明" -#: netbox/circuits/models/circuits.py:294 +#: circuits/models/circuits.py:294 msgid "circuit termination" msgstr "回線終端" -#: netbox/circuits/models/circuits.py:295 +#: circuits/models/circuits.py:295 msgid "circuit terminations" msgstr "回線終端" -#: netbox/circuits/models/circuits.py:308 +#: circuits/models/circuits.py:308 msgid "" "A circuit termination must attach to either a site or a provider network." msgstr "回線終端は、サイトまたはプロバイダーネットワークに接続する必要があります。" -#: netbox/circuits/models/circuits.py:310 +#: circuits/models/circuits.py:310 msgid "" "A circuit termination cannot attach to both a site and a provider network." msgstr "回線終端をサイトとプロバイダーネットワークの両方に接続することはできません。" -#: netbox/circuits/models/providers.py:22 -#: netbox/circuits/models/providers.py:66 -#: netbox/circuits/models/providers.py:104 netbox/core/models/data.py:39 -#: netbox/core/models/jobs.py:45 -#: netbox/dcim/models/device_component_templates.py:43 -#: netbox/dcim/models/device_components.py:53 -#: netbox/dcim/models/devices.py:593 netbox/dcim/models/devices.py:1330 -#: netbox/dcim/models/devices.py:1395 netbox/dcim/models/power.py:39 -#: netbox/dcim/models/power.py:92 netbox/dcim/models/racks.py:262 -#: netbox/dcim/models/sites.py:138 netbox/extras/models/configs.py:36 -#: netbox/extras/models/configs.py:215 netbox/extras/models/customfields.py:92 -#: netbox/extras/models/models.py:56 netbox/extras/models/models.py:153 -#: netbox/extras/models/models.py:296 netbox/extras/models/models.py:392 -#: netbox/extras/models/models.py:501 netbox/extras/models/models.py:596 -#: netbox/extras/models/notifications.py:126 -#: netbox/extras/models/scripts.py:30 netbox/extras/models/staging.py:26 -#: netbox/ipam/models/asns.py:18 netbox/ipam/models/fhrp.py:25 -#: netbox/ipam/models/services.py:52 netbox/ipam/models/services.py:88 -#: netbox/ipam/models/vlans.py:36 netbox/ipam/models/vlans.py:184 -#: netbox/ipam/models/vrfs.py:22 netbox/ipam/models/vrfs.py:79 -#: netbox/netbox/models/__init__.py:137 netbox/netbox/models/__init__.py:181 -#: netbox/tenancy/models/contacts.py:64 netbox/tenancy/models/tenants.py:20 -#: netbox/tenancy/models/tenants.py:45 netbox/users/models/permissions.py:20 -#: netbox/users/models/users.py:28 netbox/virtualization/models/clusters.py:57 -#: netbox/virtualization/models/virtualmachines.py:72 -#: netbox/virtualization/models/virtualmachines.py:279 -#: netbox/vpn/models/crypto.py:24 netbox/vpn/models/crypto.py:71 -#: netbox/vpn/models/crypto.py:131 netbox/vpn/models/crypto.py:183 -#: netbox/vpn/models/crypto.py:221 netbox/vpn/models/l2vpn.py:22 -#: netbox/vpn/models/tunnels.py:35 netbox/wireless/models.py:51 +#: circuits/models/providers.py:22 circuits/models/providers.py:66 +#: circuits/models/providers.py:104 core/models/data.py:39 +#: core/models/jobs.py:45 dcim/models/device_component_templates.py:43 +#: dcim/models/device_components.py:53 dcim/models/devices.py:593 +#: dcim/models/devices.py:1330 dcim/models/devices.py:1395 +#: dcim/models/power.py:39 dcim/models/power.py:92 dcim/models/racks.py:262 +#: dcim/models/sites.py:138 extras/models/configs.py:36 +#: extras/models/configs.py:215 extras/models/customfields.py:92 +#: extras/models/models.py:56 extras/models/models.py:153 +#: extras/models/models.py:296 extras/models/models.py:392 +#: extras/models/models.py:501 extras/models/models.py:596 +#: extras/models/notifications.py:126 extras/models/scripts.py:30 +#: extras/models/staging.py:26 ipam/models/asns.py:18 ipam/models/fhrp.py:25 +#: ipam/models/services.py:52 ipam/models/services.py:88 +#: ipam/models/vlans.py:36 ipam/models/vlans.py:184 ipam/models/vrfs.py:22 +#: ipam/models/vrfs.py:79 netbox/models/__init__.py:137 +#: netbox/models/__init__.py:181 tenancy/models/contacts.py:64 +#: tenancy/models/tenants.py:20 tenancy/models/tenants.py:45 +#: users/models/permissions.py:20 users/models/users.py:28 +#: virtualization/models/clusters.py:57 +#: virtualization/models/virtualmachines.py:72 +#: virtualization/models/virtualmachines.py:279 vpn/models/crypto.py:24 +#: vpn/models/crypto.py:71 vpn/models/crypto.py:131 vpn/models/crypto.py:183 +#: vpn/models/crypto.py:221 vpn/models/l2vpn.py:22 vpn/models/tunnels.py:35 +#: wireless/models.py:51 msgid "name" msgstr "名前" -#: netbox/circuits/models/providers.py:25 +#: circuits/models/providers.py:25 msgid "Full name of the provider" msgstr "プロバイダのフルネーム" -#: netbox/circuits/models/providers.py:28 netbox/dcim/models/devices.py:86 -#: netbox/dcim/models/racks.py:137 netbox/dcim/models/sites.py:149 -#: netbox/extras/models/models.py:506 netbox/ipam/models/asns.py:23 -#: netbox/ipam/models/vlans.py:40 netbox/netbox/models/__init__.py:141 -#: netbox/netbox/models/__init__.py:186 netbox/tenancy/models/tenants.py:25 -#: netbox/tenancy/models/tenants.py:49 netbox/vpn/models/l2vpn.py:27 -#: netbox/wireless/models.py:56 +#: circuits/models/providers.py:28 dcim/models/devices.py:86 +#: dcim/models/racks.py:137 dcim/models/sites.py:149 +#: extras/models/models.py:506 ipam/models/asns.py:23 ipam/models/vlans.py:40 +#: netbox/models/__init__.py:141 netbox/models/__init__.py:186 +#: tenancy/models/tenants.py:25 tenancy/models/tenants.py:49 +#: vpn/models/l2vpn.py:27 wireless/models.py:56 msgid "slug" msgstr "slug" -#: netbox/circuits/models/providers.py:42 +#: circuits/models/providers.py:42 msgid "provider" msgstr "プロバイダ" -#: netbox/circuits/models/providers.py:43 +#: circuits/models/providers.py:43 msgid "providers" msgstr "プロバイダ" -#: netbox/circuits/models/providers.py:63 +#: circuits/models/providers.py:63 msgid "account ID" msgstr "アカウント ID" -#: netbox/circuits/models/providers.py:86 +#: circuits/models/providers.py:86 msgid "provider account" msgstr "プロバイダアカウント" -#: netbox/circuits/models/providers.py:87 +#: circuits/models/providers.py:87 msgid "provider accounts" msgstr "プロバイダアカウント" -#: netbox/circuits/models/providers.py:115 +#: circuits/models/providers.py:115 msgid "service ID" msgstr "サービス ID" -#: netbox/circuits/models/providers.py:126 +#: circuits/models/providers.py:126 msgid "provider network" msgstr "プロバイダネットワーク" -#: netbox/circuits/models/providers.py:127 +#: circuits/models/providers.py:127 msgid "provider networks" msgstr "プロバイダネットワーク" -#: netbox/circuits/tables/circuits.py:32 -#: netbox/circuits/tables/circuits.py:132 -#: netbox/circuits/tables/providers.py:18 -#: netbox/circuits/tables/providers.py:69 -#: netbox/circuits/tables/providers.py:99 netbox/core/tables/data.py:16 -#: netbox/core/tables/jobs.py:14 netbox/core/tables/plugins.py:44 -#: netbox/core/tables/tasks.py:11 netbox/core/tables/tasks.py:115 -#: netbox/dcim/forms/filtersets.py:63 netbox/dcim/forms/object_create.py:43 -#: netbox/dcim/tables/devices.py:52 netbox/dcim/tables/devices.py:92 -#: netbox/dcim/tables/devices.py:134 netbox/dcim/tables/devices.py:289 -#: netbox/dcim/tables/devices.py:392 netbox/dcim/tables/devices.py:433 -#: netbox/dcim/tables/devices.py:482 netbox/dcim/tables/devices.py:531 -#: netbox/dcim/tables/devices.py:648 netbox/dcim/tables/devices.py:731 -#: netbox/dcim/tables/devices.py:778 netbox/dcim/tables/devices.py:841 -#: netbox/dcim/tables/devices.py:911 netbox/dcim/tables/devices.py:974 -#: netbox/dcim/tables/devices.py:994 netbox/dcim/tables/devices.py:1023 -#: netbox/dcim/tables/devices.py:1053 netbox/dcim/tables/devicetypes.py:31 -#: netbox/dcim/tables/power.py:22 netbox/dcim/tables/power.py:62 -#: netbox/dcim/tables/racks.py:24 netbox/dcim/tables/racks.py:113 -#: netbox/dcim/tables/sites.py:24 netbox/dcim/tables/sites.py:51 -#: netbox/dcim/tables/sites.py:78 netbox/dcim/tables/sites.py:130 -#: netbox/extras/forms/filtersets.py:213 netbox/extras/tables/tables.py:58 -#: netbox/extras/tables/tables.py:122 netbox/extras/tables/tables.py:155 -#: netbox/extras/tables/tables.py:180 netbox/extras/tables/tables.py:246 -#: netbox/extras/tables/tables.py:361 netbox/extras/tables/tables.py:378 -#: netbox/extras/tables/tables.py:401 netbox/extras/tables/tables.py:439 -#: netbox/extras/tables/tables.py:491 netbox/extras/tables/tables.py:514 -#: netbox/ipam/forms/bulk_edit.py:406 netbox/ipam/forms/filtersets.py:386 -#: netbox/ipam/tables/asn.py:16 netbox/ipam/tables/ip.py:85 -#: netbox/ipam/tables/ip.py:160 netbox/ipam/tables/services.py:15 -#: netbox/ipam/tables/services.py:40 netbox/ipam/tables/vlans.py:64 -#: netbox/ipam/tables/vlans.py:114 netbox/ipam/tables/vrfs.py:26 -#: netbox/ipam/tables/vrfs.py:68 -#: netbox/templates/circuits/circuitgroup.html:28 -#: netbox/templates/circuits/circuittype.html:22 -#: netbox/templates/circuits/provideraccount.html:28 -#: netbox/templates/circuits/providernetwork.html:24 -#: netbox/templates/core/datasource.html:34 netbox/templates/core/job.html:44 -#: netbox/templates/core/plugin.html:53 -#: netbox/templates/core/rq_worker.html:43 -#: netbox/templates/dcim/consoleport.html:28 -#: netbox/templates/dcim/consoleserverport.html:28 -#: netbox/templates/dcim/devicebay.html:24 -#: netbox/templates/dcim/devicerole.html:26 -#: netbox/templates/dcim/frontport.html:28 -#: netbox/templates/dcim/inc/interface_vlans_table.html:5 -#: netbox/templates/dcim/inc/panels/inventory_items.html:18 -#: netbox/templates/dcim/interface.html:38 -#: netbox/templates/dcim/interface.html:165 -#: netbox/templates/dcim/inventoryitem.html:28 -#: netbox/templates/dcim/inventoryitemrole.html:18 -#: netbox/templates/dcim/location.html:29 -#: netbox/templates/dcim/manufacturer.html:36 -#: netbox/templates/dcim/modulebay.html:30 -#: netbox/templates/dcim/platform.html:29 -#: netbox/templates/dcim/poweroutlet.html:28 -#: netbox/templates/dcim/powerport.html:28 -#: netbox/templates/dcim/rackrole.html:22 -#: netbox/templates/dcim/rearport.html:28 netbox/templates/dcim/region.html:29 -#: netbox/templates/dcim/sitegroup.html:29 -#: netbox/templates/dcim/virtualdevicecontext.html:18 -#: netbox/templates/extras/configcontext.html:13 -#: netbox/templates/extras/configtemplate.html:13 -#: netbox/templates/extras/customfield.html:13 -#: netbox/templates/extras/customlink.html:13 -#: netbox/templates/extras/eventrule.html:13 -#: netbox/templates/extras/exporttemplate.html:15 -#: netbox/templates/extras/notificationgroup.html:14 -#: netbox/templates/extras/savedfilter.html:13 -#: netbox/templates/extras/script_list.html:44 -#: netbox/templates/extras/tag.html:14 netbox/templates/extras/webhook.html:13 -#: netbox/templates/ipam/asnrange.html:15 -#: netbox/templates/ipam/fhrpgroup.html:30 netbox/templates/ipam/rir.html:22 -#: netbox/templates/ipam/role.html:22 -#: netbox/templates/ipam/routetarget.html:13 -#: netbox/templates/ipam/service.html:24 -#: netbox/templates/ipam/servicetemplate.html:15 -#: netbox/templates/ipam/vlan.html:35 netbox/templates/ipam/vlangroup.html:30 -#: netbox/templates/tenancy/contact.html:25 -#: netbox/templates/tenancy/contactgroup.html:21 -#: netbox/templates/tenancy/contactrole.html:18 -#: netbox/templates/tenancy/tenantgroup.html:29 -#: netbox/templates/users/group.html:17 -#: netbox/templates/users/objectpermission.html:17 -#: netbox/templates/virtualization/cluster.html:13 -#: netbox/templates/virtualization/clustergroup.html:22 -#: netbox/templates/virtualization/clustertype.html:22 -#: netbox/templates/virtualization/virtualdisk.html:25 -#: netbox/templates/virtualization/virtualmachine.html:15 -#: netbox/templates/virtualization/vminterface.html:25 -#: netbox/templates/vpn/ikepolicy.html:13 -#: netbox/templates/vpn/ikeproposal.html:13 -#: netbox/templates/vpn/ipsecpolicy.html:13 -#: netbox/templates/vpn/ipsecprofile.html:13 -#: netbox/templates/vpn/ipsecprofile.html:36 -#: netbox/templates/vpn/ipsecprofile.html:69 -#: netbox/templates/vpn/ipsecproposal.html:13 -#: netbox/templates/vpn/l2vpn.html:14 netbox/templates/vpn/tunnel.html:21 -#: netbox/templates/vpn/tunnelgroup.html:26 -#: netbox/templates/wireless/wirelesslangroup.html:29 -#: netbox/tenancy/tables/contacts.py:19 netbox/tenancy/tables/contacts.py:41 -#: netbox/tenancy/tables/contacts.py:56 netbox/tenancy/tables/tenants.py:16 -#: netbox/tenancy/tables/tenants.py:38 netbox/users/tables.py:62 -#: netbox/users/tables.py:76 netbox/virtualization/forms/bulk_create.py:20 -#: netbox/virtualization/forms/object_create.py:13 -#: netbox/virtualization/forms/object_create.py:23 -#: netbox/virtualization/tables/clusters.py:17 -#: netbox/virtualization/tables/clusters.py:39 -#: netbox/virtualization/tables/clusters.py:62 -#: netbox/virtualization/tables/virtualmachines.py:55 -#: netbox/virtualization/tables/virtualmachines.py:139 -#: netbox/virtualization/tables/virtualmachines.py:194 -#: netbox/vpn/tables/crypto.py:18 netbox/vpn/tables/crypto.py:57 -#: netbox/vpn/tables/crypto.py:93 netbox/vpn/tables/crypto.py:129 -#: netbox/vpn/tables/crypto.py:158 netbox/vpn/tables/l2vpn.py:23 -#: netbox/vpn/tables/tunnels.py:18 netbox/vpn/tables/tunnels.py:40 -#: netbox/wireless/tables/wirelesslan.py:18 -#: netbox/wireless/tables/wirelesslan.py:79 +#: circuits/tables/circuits.py:32 circuits/tables/circuits.py:132 +#: circuits/tables/providers.py:18 circuits/tables/providers.py:69 +#: circuits/tables/providers.py:99 core/tables/data.py:16 +#: core/tables/jobs.py:14 core/tables/plugins.py:44 core/tables/tasks.py:11 +#: core/tables/tasks.py:115 dcim/forms/filtersets.py:63 +#: dcim/forms/object_create.py:43 dcim/tables/devices.py:52 +#: dcim/tables/devices.py:92 dcim/tables/devices.py:134 +#: dcim/tables/devices.py:289 dcim/tables/devices.py:392 +#: dcim/tables/devices.py:433 dcim/tables/devices.py:482 +#: dcim/tables/devices.py:531 dcim/tables/devices.py:648 +#: dcim/tables/devices.py:731 dcim/tables/devices.py:778 +#: dcim/tables/devices.py:841 dcim/tables/devices.py:911 +#: dcim/tables/devices.py:974 dcim/tables/devices.py:994 +#: dcim/tables/devices.py:1023 dcim/tables/devices.py:1053 +#: dcim/tables/devicetypes.py:31 dcim/tables/power.py:22 +#: dcim/tables/power.py:62 dcim/tables/racks.py:24 dcim/tables/racks.py:113 +#: dcim/tables/sites.py:24 dcim/tables/sites.py:51 dcim/tables/sites.py:78 +#: dcim/tables/sites.py:130 extras/forms/filtersets.py:213 +#: extras/tables/tables.py:58 extras/tables/tables.py:122 +#: extras/tables/tables.py:155 extras/tables/tables.py:180 +#: extras/tables/tables.py:246 extras/tables/tables.py:361 +#: extras/tables/tables.py:378 extras/tables/tables.py:401 +#: extras/tables/tables.py:439 extras/tables/tables.py:491 +#: extras/tables/tables.py:514 ipam/forms/bulk_edit.py:407 +#: ipam/forms/filtersets.py:386 ipam/tables/asn.py:16 ipam/tables/ip.py:85 +#: ipam/tables/ip.py:160 ipam/tables/services.py:15 ipam/tables/services.py:40 +#: ipam/tables/vlans.py:64 ipam/tables/vlans.py:114 ipam/tables/vrfs.py:26 +#: ipam/tables/vrfs.py:68 templates/circuits/circuitgroup.html:28 +#: templates/circuits/circuittype.html:22 +#: templates/circuits/provideraccount.html:28 +#: templates/circuits/providernetwork.html:24 +#: templates/core/datasource.html:34 templates/core/job.html:44 +#: templates/core/plugin.html:54 templates/core/rq_worker.html:43 +#: templates/dcim/consoleport.html:28 templates/dcim/consoleserverport.html:28 +#: templates/dcim/devicebay.html:24 templates/dcim/devicerole.html:26 +#: templates/dcim/frontport.html:28 +#: templates/dcim/inc/interface_vlans_table.html:5 +#: templates/dcim/inc/panels/inventory_items.html:18 +#: templates/dcim/interface.html:38 templates/dcim/interface.html:165 +#: templates/dcim/inventoryitem.html:28 +#: templates/dcim/inventoryitemrole.html:18 templates/dcim/location.html:29 +#: templates/dcim/manufacturer.html:36 templates/dcim/modulebay.html:30 +#: templates/dcim/platform.html:29 templates/dcim/poweroutlet.html:28 +#: templates/dcim/powerport.html:28 templates/dcim/rackrole.html:22 +#: templates/dcim/rearport.html:28 templates/dcim/region.html:29 +#: templates/dcim/sitegroup.html:29 +#: templates/dcim/virtualdevicecontext.html:18 +#: templates/extras/configcontext.html:13 +#: templates/extras/configtemplate.html:13 +#: templates/extras/customfield.html:13 templates/extras/customlink.html:13 +#: templates/extras/eventrule.html:13 templates/extras/exporttemplate.html:15 +#: templates/extras/notificationgroup.html:14 +#: templates/extras/savedfilter.html:13 templates/extras/script_list.html:44 +#: templates/extras/tag.html:14 templates/extras/webhook.html:13 +#: templates/ipam/asnrange.html:15 templates/ipam/fhrpgroup.html:30 +#: templates/ipam/rir.html:22 templates/ipam/role.html:22 +#: templates/ipam/routetarget.html:13 templates/ipam/service.html:24 +#: templates/ipam/servicetemplate.html:15 templates/ipam/vlan.html:35 +#: templates/ipam/vlangroup.html:30 templates/tenancy/contact.html:25 +#: templates/tenancy/contactgroup.html:21 +#: templates/tenancy/contactrole.html:18 templates/tenancy/tenantgroup.html:29 +#: templates/users/group.html:17 templates/users/objectpermission.html:17 +#: templates/virtualization/cluster.html:13 +#: templates/virtualization/clustergroup.html:22 +#: templates/virtualization/clustertype.html:22 +#: templates/virtualization/virtualdisk.html:25 +#: templates/virtualization/virtualmachine.html:15 +#: templates/virtualization/vminterface.html:25 +#: templates/vpn/ikepolicy.html:13 templates/vpn/ikeproposal.html:13 +#: templates/vpn/ipsecpolicy.html:13 templates/vpn/ipsecprofile.html:13 +#: templates/vpn/ipsecprofile.html:36 templates/vpn/ipsecprofile.html:69 +#: templates/vpn/ipsecproposal.html:13 templates/vpn/l2vpn.html:14 +#: templates/vpn/tunnel.html:21 templates/vpn/tunnelgroup.html:26 +#: templates/wireless/wirelesslangroup.html:29 tenancy/tables/contacts.py:19 +#: tenancy/tables/contacts.py:41 tenancy/tables/contacts.py:56 +#: tenancy/tables/tenants.py:16 tenancy/tables/tenants.py:38 +#: users/tables.py:62 users/tables.py:76 +#: virtualization/forms/bulk_create.py:20 +#: virtualization/forms/object_create.py:13 +#: virtualization/forms/object_create.py:23 +#: virtualization/tables/clusters.py:17 virtualization/tables/clusters.py:39 +#: virtualization/tables/clusters.py:62 +#: virtualization/tables/virtualmachines.py:55 +#: virtualization/tables/virtualmachines.py:139 +#: virtualization/tables/virtualmachines.py:194 vpn/tables/crypto.py:18 +#: vpn/tables/crypto.py:57 vpn/tables/crypto.py:93 vpn/tables/crypto.py:129 +#: vpn/tables/crypto.py:158 vpn/tables/l2vpn.py:23 vpn/tables/tunnels.py:18 +#: vpn/tables/tunnels.py:40 wireless/tables/wirelesslan.py:18 +#: wireless/tables/wirelesslan.py:79 msgid "Name" msgstr "名前" -#: netbox/circuits/tables/circuits.py:41 -#: netbox/circuits/tables/circuits.py:138 -#: netbox/circuits/tables/providers.py:45 -#: netbox/circuits/tables/providers.py:79 netbox/netbox/navigation/menu.py:266 -#: netbox/netbox/navigation/menu.py:270 netbox/netbox/navigation/menu.py:272 -#: netbox/templates/circuits/provider.html:57 -#: netbox/templates/circuits/provideraccount.html:44 -#: netbox/templates/circuits/providernetwork.html:50 +#: circuits/tables/circuits.py:41 circuits/tables/circuits.py:138 +#: circuits/tables/providers.py:45 circuits/tables/providers.py:79 +#: netbox/navigation/menu.py:266 netbox/navigation/menu.py:270 +#: netbox/navigation/menu.py:272 templates/circuits/provider.html:57 +#: templates/circuits/provideraccount.html:44 +#: templates/circuits/providernetwork.html:50 msgid "Circuits" msgstr "回線" -#: netbox/circuits/tables/circuits.py:55 -#: netbox/templates/circuits/circuit.html:26 +#: circuits/tables/circuits.py:55 templates/circuits/circuit.html:26 msgid "Circuit ID" msgstr "回線 ID" -#: netbox/circuits/tables/circuits.py:69 -#: netbox/wireless/forms/model_forms.py:160 +#: circuits/tables/circuits.py:69 wireless/forms/model_forms.py:160 msgid "Side A" msgstr "サイド A" -#: netbox/circuits/tables/circuits.py:74 +#: circuits/tables/circuits.py:74 msgid "Side Z" msgstr "サイド Z" -#: netbox/circuits/tables/circuits.py:77 -#: netbox/templates/circuits/circuit.html:55 +#: circuits/tables/circuits.py:77 templates/circuits/circuit.html:55 msgid "Commit Rate" msgstr "保証帯域" -#: netbox/circuits/tables/circuits.py:80 -#: netbox/circuits/tables/providers.py:48 -#: netbox/circuits/tables/providers.py:82 -#: netbox/circuits/tables/providers.py:107 netbox/dcim/tables/devices.py:1036 -#: netbox/dcim/tables/devicetypes.py:92 netbox/dcim/tables/modules.py:29 -#: netbox/dcim/tables/modules.py:72 netbox/dcim/tables/power.py:39 -#: netbox/dcim/tables/power.py:96 netbox/dcim/tables/racks.py:84 -#: netbox/dcim/tables/racks.py:145 netbox/dcim/tables/racks.py:225 -#: netbox/dcim/tables/sites.py:108 netbox/extras/tables/tables.py:582 -#: netbox/ipam/tables/asn.py:69 netbox/ipam/tables/fhrp.py:34 -#: netbox/ipam/tables/ip.py:136 netbox/ipam/tables/ip.py:275 -#: netbox/ipam/tables/ip.py:329 netbox/ipam/tables/ip.py:397 -#: netbox/ipam/tables/services.py:24 netbox/ipam/tables/services.py:54 -#: netbox/ipam/tables/vlans.py:145 netbox/ipam/tables/vrfs.py:47 -#: netbox/ipam/tables/vrfs.py:72 netbox/templates/dcim/htmx/cable_edit.html:89 -#: netbox/templates/generic/bulk_edit.html:86 -#: netbox/templates/inc/panels/comments.html:5 -#: netbox/tenancy/tables/contacts.py:68 netbox/tenancy/tables/tenants.py:46 -#: netbox/utilities/forms/fields/fields.py:29 -#: netbox/virtualization/tables/clusters.py:91 -#: netbox/virtualization/tables/virtualmachines.py:82 -#: netbox/vpn/tables/crypto.py:37 netbox/vpn/tables/crypto.py:74 -#: netbox/vpn/tables/crypto.py:109 netbox/vpn/tables/crypto.py:140 -#: netbox/vpn/tables/crypto.py:173 netbox/vpn/tables/l2vpn.py:37 -#: netbox/vpn/tables/tunnels.py:61 netbox/wireless/tables/wirelesslan.py:27 -#: netbox/wireless/tables/wirelesslan.py:58 +#: circuits/tables/circuits.py:80 circuits/tables/providers.py:48 +#: circuits/tables/providers.py:82 circuits/tables/providers.py:107 +#: dcim/tables/devices.py:1036 dcim/tables/devicetypes.py:92 +#: dcim/tables/modules.py:29 dcim/tables/modules.py:72 dcim/tables/power.py:39 +#: dcim/tables/power.py:96 dcim/tables/racks.py:84 dcim/tables/racks.py:145 +#: dcim/tables/racks.py:225 dcim/tables/sites.py:108 +#: extras/tables/tables.py:582 ipam/tables/asn.py:69 ipam/tables/fhrp.py:34 +#: ipam/tables/ip.py:136 ipam/tables/ip.py:275 ipam/tables/ip.py:329 +#: ipam/tables/ip.py:397 ipam/tables/services.py:24 ipam/tables/services.py:54 +#: ipam/tables/vlans.py:145 ipam/tables/vrfs.py:47 ipam/tables/vrfs.py:72 +#: templates/dcim/htmx/cable_edit.html:89 templates/generic/bulk_edit.html:86 +#: templates/inc/panels/comments.html:5 tenancy/tables/contacts.py:68 +#: tenancy/tables/tenants.py:46 utilities/forms/fields/fields.py:29 +#: virtualization/tables/clusters.py:91 +#: virtualization/tables/virtualmachines.py:82 vpn/tables/crypto.py:37 +#: vpn/tables/crypto.py:74 vpn/tables/crypto.py:109 vpn/tables/crypto.py:140 +#: vpn/tables/crypto.py:173 vpn/tables/l2vpn.py:37 vpn/tables/tunnels.py:61 +#: wireless/tables/wirelesslan.py:27 wireless/tables/wirelesslan.py:58 msgid "Comments" msgstr "コメント" -#: netbox/circuits/tables/circuits.py:86 -#: netbox/templates/tenancy/contact.html:84 -#: netbox/tenancy/tables/contacts.py:73 +#: circuits/tables/circuits.py:86 templates/tenancy/contact.html:84 +#: tenancy/tables/contacts.py:73 msgid "Assignments" msgstr "アサイメント" -#: netbox/circuits/tables/providers.py:23 +#: circuits/tables/providers.py:23 msgid "Accounts" msgstr "アカウント" -#: netbox/circuits/tables/providers.py:29 +#: circuits/tables/providers.py:29 msgid "Account Count" msgstr "アカウント数" -#: netbox/circuits/tables/providers.py:39 netbox/dcim/tables/sites.py:100 +#: circuits/tables/providers.py:39 dcim/tables/sites.py:100 msgid "ASN Count" msgstr "ASN 数" -#: netbox/circuits/views.py:331 +#: circuits/views.py:331 #, python-brace-format msgid "No terminations have been defined for circuit {circuit}." msgstr "回路には終端が定義されていません {circuit}。" -#: netbox/circuits/views.py:380 +#: circuits/views.py:380 #, python-brace-format msgid "Swapped terminations for circuit {circuit}." msgstr "回路のスワップ端子 {circuit}。" -#: netbox/core/api/views.py:39 +#: core/api/views.py:39 msgid "This user does not have permission to synchronize this data source." msgstr "このユーザーには、このデータソースを同期する権限がありません。" -#: netbox/core/choices.py:18 +#: core/choices.py:18 msgid "New" msgstr "新規" -#: netbox/core/choices.py:19 netbox/core/constants.py:18 -#: netbox/core/tables/tasks.py:15 netbox/templates/core/rq_task.html:77 +#: core/choices.py:19 core/constants.py:18 core/tables/tasks.py:15 +#: templates/core/rq_task.html:77 msgid "Queued" msgstr "処理待ち" -#: netbox/core/choices.py:20 +#: core/choices.py:20 msgid "Syncing" msgstr "同期中" -#: netbox/core/choices.py:21 netbox/core/choices.py:57 -#: netbox/core/tables/jobs.py:41 netbox/templates/core/job.html:86 +#: core/choices.py:21 core/choices.py:57 core/tables/jobs.py:41 +#: templates/core/job.html:86 msgid "Completed" msgstr "完了" -#: netbox/core/choices.py:22 netbox/core/choices.py:59 -#: netbox/core/constants.py:20 netbox/core/tables/tasks.py:34 -#: netbox/dcim/choices.py:187 netbox/dcim/choices.py:239 -#: netbox/dcim/choices.py:1607 netbox/virtualization/choices.py:47 +#: core/choices.py:22 core/choices.py:59 core/constants.py:20 +#: core/tables/tasks.py:34 dcim/choices.py:187 dcim/choices.py:239 +#: dcim/choices.py:1607 virtualization/choices.py:47 msgid "Failed" msgstr "失敗" -#: netbox/core/choices.py:35 netbox/netbox/navigation/menu.py:335 -#: netbox/netbox/navigation/menu.py:339 -#: netbox/templates/extras/script/base.html:14 -#: netbox/templates/extras/script_list.html:7 -#: netbox/templates/extras/script_list.html:12 -#: netbox/templates/extras/script_result.html:17 +#: core/choices.py:35 netbox/navigation/menu.py:335 +#: netbox/navigation/menu.py:339 templates/extras/script/base.html:14 +#: templates/extras/script_list.html:7 templates/extras/script_list.html:12 +#: templates/extras/script_result.html:17 msgid "Scripts" msgstr "スクリプト" -#: netbox/core/choices.py:36 netbox/templates/extras/report/base.html:13 +#: core/choices.py:36 templates/extras/report/base.html:13 msgid "Reports" msgstr "レポート" -#: netbox/core/choices.py:54 +#: core/choices.py:54 msgid "Pending" msgstr "保留中" -#: netbox/core/choices.py:55 netbox/core/constants.py:23 -#: netbox/core/tables/jobs.py:32 netbox/core/tables/tasks.py:38 -#: netbox/templates/core/job.html:73 +#: core/choices.py:55 core/constants.py:23 core/tables/jobs.py:32 +#: core/tables/tasks.py:38 templates/core/job.html:73 msgid "Scheduled" msgstr "予定済" -#: netbox/core/choices.py:56 +#: core/choices.py:56 msgid "Running" msgstr "実行中" -#: netbox/core/choices.py:58 +#: core/choices.py:58 msgid "Errored" msgstr "エラー" -#: netbox/core/choices.py:87 netbox/core/tables/plugins.py:63 -#: netbox/templates/generic/object.html:61 +#: core/choices.py:87 core/tables/plugins.py:63 +#: templates/generic/object.html:61 msgid "Updated" msgstr "更新" -#: netbox/core/choices.py:88 +#: core/choices.py:88 msgid "Deleted" msgstr "削除" -#: netbox/core/constants.py:19 netbox/core/tables/tasks.py:30 +#: core/constants.py:19 core/tables/tasks.py:30 msgid "Finished" msgstr "終了しました" -#: netbox/core/constants.py:21 netbox/core/tables/jobs.py:38 -#: netbox/templates/core/job.html:82 -#: netbox/templates/extras/htmx/script_result.html:8 +#: core/constants.py:21 core/tables/jobs.py:38 templates/core/job.html:82 +#: templates/extras/htmx/script_result.html:8 msgid "Started" msgstr "開始日時" -#: netbox/core/constants.py:22 netbox/core/tables/tasks.py:26 +#: core/constants.py:22 core/tables/tasks.py:26 msgid "Deferred" msgstr "延期" -#: netbox/core/constants.py:24 +#: core/constants.py:24 msgid "Stopped" msgstr "停止しました" -#: netbox/core/constants.py:25 +#: core/constants.py:25 msgid "Cancelled" msgstr "キャンセルされました" -#: netbox/core/data_backends.py:32 netbox/core/tables/plugins.py:51 -#: netbox/templates/core/plugin.html:87 -#: netbox/templates/dcim/interface.html:216 +#: core/data_backends.py:32 core/tables/plugins.py:51 +#: templates/core/plugin.html:88 templates/dcim/interface.html:216 msgid "Local" msgstr "ローカル" -#: netbox/core/data_backends.py:50 netbox/core/tables/change_logging.py:20 -#: netbox/templates/account/profile.html:15 -#: netbox/templates/users/user.html:17 netbox/users/tables.py:31 +#: core/data_backends.py:50 core/tables/change_logging.py:20 +#: templates/account/profile.html:15 templates/users/user.html:17 +#: users/tables.py:31 msgid "Username" msgstr "ユーザ名" -#: netbox/core/data_backends.py:52 netbox/core/data_backends.py:58 +#: core/data_backends.py:52 core/data_backends.py:58 msgid "Only used for cloning with HTTP(S)" msgstr "HTTP (S) でのcloneに使用されます" -#: netbox/core/data_backends.py:56 netbox/templates/account/base.html:23 -#: netbox/templates/account/password.html:12 -#: netbox/users/forms/model_forms.py:170 +#: core/data_backends.py:56 templates/account/base.html:23 +#: templates/account/password.html:12 users/forms/model_forms.py:170 msgid "Password" msgstr "パスワード" -#: netbox/core/data_backends.py:62 +#: core/data_backends.py:62 msgid "Branch" msgstr "ブランチ" -#: netbox/core/data_backends.py:120 +#: core/data_backends.py:120 #, python-brace-format msgid "Fetching remote data failed ({name}): {error}" msgstr "リモートデータの取得に失敗しました ({name}): {error}" -#: netbox/core/data_backends.py:133 +#: core/data_backends.py:133 msgid "AWS access key ID" msgstr "AWS アクセスキー ID" -#: netbox/core/data_backends.py:137 +#: core/data_backends.py:137 msgid "AWS secret access key" msgstr "AWS シークレットアクセスキー" -#: netbox/core/events.py:27 +#: core/events.py:27 msgid "Object created" msgstr "オブジェクトの作成" -#: netbox/core/events.py:28 +#: core/events.py:28 msgid "Object updated" msgstr "オブジェクトの更新" -#: netbox/core/events.py:29 +#: core/events.py:29 msgid "Object deleted" msgstr "オブジェクトの削除" -#: netbox/core/events.py:30 +#: core/events.py:30 msgid "Job started" msgstr "ジョブの開始" -#: netbox/core/events.py:31 +#: core/events.py:31 msgid "Job completed" msgstr "ジョブの完了" -#: netbox/core/events.py:32 +#: core/events.py:32 msgid "Job failed" msgstr "ジョブの失敗" -#: netbox/core/events.py:33 +#: core/events.py:33 msgid "Job errored" msgstr "ジョブのエラー" -#: netbox/core/filtersets.py:53 netbox/extras/filtersets.py:250 -#: netbox/extras/filtersets.py:633 netbox/extras/filtersets.py:661 +#: core/filtersets.py:53 extras/filtersets.py:250 extras/filtersets.py:633 +#: extras/filtersets.py:661 msgid "Data source (ID)" msgstr "データソース (ID)" -#: netbox/core/filtersets.py:59 +#: core/filtersets.py:59 msgid "Data source (name)" msgstr "データソース (名前)" -#: netbox/core/filtersets.py:145 netbox/dcim/filtersets.py:501 -#: netbox/extras/filtersets.py:287 netbox/extras/filtersets.py:331 -#: netbox/extras/filtersets.py:353 netbox/extras/filtersets.py:413 -#: netbox/users/filtersets.py:28 +#: core/filtersets.py:145 dcim/filtersets.py:501 extras/filtersets.py:287 +#: extras/filtersets.py:331 extras/filtersets.py:353 extras/filtersets.py:413 +#: users/filtersets.py:28 msgid "User (ID)" msgstr "ユーザ (ID)" -#: netbox/core/filtersets.py:151 +#: core/filtersets.py:151 msgid "User name" msgstr "ユーザ名" -#: netbox/core/forms/bulk_edit.py:25 netbox/core/forms/filtersets.py:43 -#: netbox/core/tables/data.py:26 netbox/dcim/forms/bulk_edit.py:1122 -#: netbox/dcim/forms/bulk_edit.py:1400 netbox/dcim/forms/filtersets.py:1370 -#: netbox/dcim/tables/devices.py:553 netbox/dcim/tables/devicetypes.py:224 -#: netbox/extras/forms/bulk_edit.py:123 netbox/extras/forms/bulk_edit.py:187 -#: netbox/extras/forms/bulk_edit.py:246 netbox/extras/forms/filtersets.py:142 -#: netbox/extras/forms/filtersets.py:229 netbox/extras/forms/filtersets.py:294 -#: netbox/extras/tables/tables.py:162 netbox/extras/tables/tables.py:253 -#: netbox/extras/tables/tables.py:415 netbox/netbox/preferences.py:22 -#: netbox/templates/core/datasource.html:42 -#: netbox/templates/dcim/interface.html:61 -#: netbox/templates/extras/customlink.html:17 -#: netbox/templates/extras/eventrule.html:17 -#: netbox/templates/extras/savedfilter.html:25 -#: netbox/templates/users/objectpermission.html:25 -#: netbox/templates/virtualization/vminterface.html:29 -#: netbox/users/forms/bulk_edit.py:89 netbox/users/forms/filtersets.py:70 -#: netbox/users/tables.py:83 netbox/virtualization/forms/bulk_edit.py:217 -#: netbox/virtualization/forms/filtersets.py:215 +#: core/forms/bulk_edit.py:25 core/forms/filtersets.py:43 +#: core/tables/data.py:26 dcim/forms/bulk_edit.py:1122 +#: dcim/forms/bulk_edit.py:1400 dcim/forms/filtersets.py:1370 +#: dcim/tables/devices.py:553 dcim/tables/devicetypes.py:224 +#: extras/forms/bulk_edit.py:123 extras/forms/bulk_edit.py:187 +#: extras/forms/bulk_edit.py:246 extras/forms/filtersets.py:142 +#: extras/forms/filtersets.py:229 extras/forms/filtersets.py:294 +#: extras/tables/tables.py:162 extras/tables/tables.py:253 +#: extras/tables/tables.py:415 netbox/preferences.py:22 +#: templates/core/datasource.html:42 templates/dcim/interface.html:61 +#: templates/extras/customlink.html:17 templates/extras/eventrule.html:17 +#: templates/extras/savedfilter.html:25 +#: templates/users/objectpermission.html:25 +#: templates/virtualization/vminterface.html:29 users/forms/bulk_edit.py:89 +#: users/forms/filtersets.py:70 users/tables.py:83 +#: virtualization/forms/bulk_edit.py:217 +#: virtualization/forms/filtersets.py:215 msgid "Enabled" msgstr "有効" -#: netbox/core/forms/bulk_edit.py:34 netbox/extras/forms/model_forms.py:285 -#: netbox/templates/extras/savedfilter.html:52 -#: netbox/vpn/forms/filtersets.py:97 netbox/vpn/forms/filtersets.py:127 -#: netbox/vpn/forms/filtersets.py:151 netbox/vpn/forms/filtersets.py:170 -#: netbox/vpn/forms/model_forms.py:301 netbox/vpn/forms/model_forms.py:321 -#: netbox/vpn/forms/model_forms.py:337 netbox/vpn/forms/model_forms.py:357 -#: netbox/vpn/forms/model_forms.py:380 +#: core/forms/bulk_edit.py:34 extras/forms/model_forms.py:285 +#: templates/extras/savedfilter.html:52 vpn/forms/filtersets.py:97 +#: vpn/forms/filtersets.py:127 vpn/forms/filtersets.py:151 +#: vpn/forms/filtersets.py:170 vpn/forms/model_forms.py:301 +#: vpn/forms/model_forms.py:321 vpn/forms/model_forms.py:337 +#: vpn/forms/model_forms.py:357 vpn/forms/model_forms.py:380 msgid "Parameters" msgstr "パラメータ" -#: netbox/core/forms/bulk_edit.py:38 netbox/templates/core/datasource.html:68 +#: core/forms/bulk_edit.py:38 templates/core/datasource.html:68 msgid "Ignore rules" msgstr "ignoreルール" -#: netbox/core/forms/filtersets.py:30 netbox/core/forms/model_forms.py:97 -#: netbox/extras/forms/model_forms.py:248 -#: netbox/extras/forms/model_forms.py:578 -#: netbox/extras/forms/model_forms.py:632 netbox/extras/tables/tables.py:191 -#: netbox/extras/tables/tables.py:483 netbox/extras/tables/tables.py:518 -#: netbox/templates/core/datasource.html:31 -#: netbox/templates/dcim/device/render_config.html:18 -#: netbox/templates/extras/configcontext.html:29 -#: netbox/templates/extras/configtemplate.html:21 -#: netbox/templates/extras/exporttemplate.html:35 -#: netbox/templates/virtualization/virtualmachine/render_config.html:18 +#: core/forms/filtersets.py:30 core/forms/model_forms.py:97 +#: extras/forms/model_forms.py:248 extras/forms/model_forms.py:578 +#: extras/forms/model_forms.py:632 extras/tables/tables.py:191 +#: extras/tables/tables.py:483 extras/tables/tables.py:518 +#: templates/core/datasource.html:31 +#: templates/dcim/device/render_config.html:18 +#: templates/extras/configcontext.html:29 +#: templates/extras/configtemplate.html:21 +#: templates/extras/exporttemplate.html:35 +#: templates/virtualization/virtualmachine/render_config.html:18 msgid "Data Source" msgstr "データソース" -#: netbox/core/forms/filtersets.py:55 netbox/core/forms/mixins.py:21 +#: core/forms/filtersets.py:55 core/forms/mixins.py:21 msgid "File" msgstr "ファイル" -#: netbox/core/forms/filtersets.py:60 netbox/core/forms/mixins.py:16 -#: netbox/extras/forms/filtersets.py:170 netbox/extras/forms/filtersets.py:328 -#: netbox/extras/forms/filtersets.py:413 +#: core/forms/filtersets.py:60 core/forms/mixins.py:16 +#: extras/forms/filtersets.py:170 extras/forms/filtersets.py:328 +#: extras/forms/filtersets.py:413 msgid "Data source" msgstr "データソース" -#: netbox/core/forms/filtersets.py:70 netbox/extras/forms/filtersets.py:440 +#: core/forms/filtersets.py:70 extras/forms/filtersets.py:440 msgid "Creation" msgstr "作成" -#: netbox/core/forms/filtersets.py:74 netbox/core/forms/filtersets.py:160 -#: netbox/extras/forms/filtersets.py:461 netbox/extras/tables/tables.py:220 -#: netbox/extras/tables/tables.py:294 netbox/extras/tables/tables.py:326 -#: netbox/extras/tables/tables.py:571 netbox/templates/core/job.html:38 -#: netbox/templates/core/objectchange.html:52 -#: netbox/tenancy/tables/contacts.py:90 netbox/vpn/tables/l2vpn.py:59 +#: core/forms/filtersets.py:74 core/forms/filtersets.py:160 +#: extras/forms/filtersets.py:461 extras/tables/tables.py:220 +#: extras/tables/tables.py:294 extras/tables/tables.py:326 +#: extras/tables/tables.py:571 templates/core/job.html:38 +#: templates/core/objectchange.html:52 tenancy/tables/contacts.py:90 +#: vpn/tables/l2vpn.py:59 msgid "Object Type" msgstr "オブジェクトタイプ" -#: netbox/core/forms/filtersets.py:84 +#: core/forms/filtersets.py:84 msgid "Created after" msgstr "以降に作成" -#: netbox/core/forms/filtersets.py:89 +#: core/forms/filtersets.py:89 msgid "Created before" msgstr "以前に作成" -#: netbox/core/forms/filtersets.py:94 +#: core/forms/filtersets.py:94 msgid "Scheduled after" msgstr "以降に予定" -#: netbox/core/forms/filtersets.py:99 +#: core/forms/filtersets.py:99 msgid "Scheduled before" msgstr "以前に予定" -#: netbox/core/forms/filtersets.py:104 +#: core/forms/filtersets.py:104 msgid "Started after" msgstr "以降に開始" -#: netbox/core/forms/filtersets.py:109 +#: core/forms/filtersets.py:109 msgid "Started before" msgstr "以前に開始" -#: netbox/core/forms/filtersets.py:114 +#: core/forms/filtersets.py:114 msgid "Completed after" msgstr "以降に完了" -#: netbox/core/forms/filtersets.py:119 +#: core/forms/filtersets.py:119 msgid "Completed before" msgstr "以前に完了" -#: netbox/core/forms/filtersets.py:126 netbox/core/forms/filtersets.py:155 -#: netbox/dcim/forms/bulk_edit.py:456 netbox/dcim/forms/filtersets.py:418 -#: netbox/dcim/forms/filtersets.py:462 netbox/dcim/forms/model_forms.py:316 -#: netbox/extras/forms/filtersets.py:456 netbox/extras/forms/filtersets.py:475 -#: netbox/extras/tables/tables.py:302 netbox/extras/tables/tables.py:342 -#: netbox/templates/core/objectchange.html:36 -#: netbox/templates/dcim/rackreservation.html:58 -#: netbox/templates/extras/savedfilter.html:21 -#: netbox/templates/inc/user_menu.html:33 netbox/templates/users/token.html:21 -#: netbox/templates/users/user.html:6 netbox/templates/users/user.html:14 -#: netbox/users/filtersets.py:107 netbox/users/filtersets.py:174 -#: netbox/users/forms/filtersets.py:84 netbox/users/forms/filtersets.py:125 -#: netbox/users/forms/model_forms.py:155 netbox/users/forms/model_forms.py:192 -#: netbox/users/tables.py:19 +#: core/forms/filtersets.py:126 core/forms/filtersets.py:155 +#: dcim/forms/bulk_edit.py:456 dcim/forms/filtersets.py:418 +#: dcim/forms/filtersets.py:462 dcim/forms/model_forms.py:316 +#: extras/forms/filtersets.py:456 extras/forms/filtersets.py:475 +#: extras/tables/tables.py:302 extras/tables/tables.py:342 +#: templates/core/objectchange.html:36 templates/dcim/rackreservation.html:58 +#: templates/extras/savedfilter.html:21 templates/inc/user_menu.html:33 +#: templates/users/token.html:21 templates/users/user.html:6 +#: templates/users/user.html:14 users/filtersets.py:107 +#: users/filtersets.py:174 users/forms/filtersets.py:84 +#: users/forms/filtersets.py:125 users/forms/model_forms.py:155 +#: users/forms/model_forms.py:192 users/tables.py:19 msgid "User" msgstr "ユーザ" -#: netbox/core/forms/filtersets.py:134 netbox/core/tables/change_logging.py:15 -#: netbox/extras/tables/tables.py:609 netbox/extras/tables/tables.py:646 -#: netbox/templates/core/objectchange.html:32 +#: core/forms/filtersets.py:134 core/tables/change_logging.py:15 +#: extras/tables/tables.py:609 extras/tables/tables.py:646 +#: templates/core/objectchange.html:32 msgid "Time" msgstr "時間" -#: netbox/core/forms/filtersets.py:139 netbox/extras/forms/filtersets.py:445 +#: core/forms/filtersets.py:139 extras/forms/filtersets.py:445 msgid "After" msgstr "以降" -#: netbox/core/forms/filtersets.py:144 netbox/extras/forms/filtersets.py:450 +#: core/forms/filtersets.py:144 extras/forms/filtersets.py:450 msgid "Before" msgstr "以前" -#: netbox/core/forms/filtersets.py:148 netbox/core/tables/change_logging.py:29 -#: netbox/extras/forms/model_forms.py:396 -#: netbox/templates/core/objectchange.html:46 -#: netbox/templates/extras/eventrule.html:71 +#: core/forms/filtersets.py:148 core/tables/change_logging.py:29 +#: extras/forms/model_forms.py:396 templates/core/objectchange.html:46 +#: templates/extras/eventrule.html:71 msgid "Action" msgstr "アクション" -#: netbox/core/forms/model_forms.py:54 netbox/core/tables/data.py:46 -#: netbox/templates/core/datafile.html:27 -#: netbox/templates/extras/report/base.html:33 -#: netbox/templates/extras/script/base.html:32 +#: core/forms/model_forms.py:54 core/tables/data.py:46 +#: templates/core/datafile.html:27 templates/extras/report/base.html:33 +#: templates/extras/script/base.html:32 msgid "Source" msgstr "ソース" -#: netbox/core/forms/model_forms.py:58 +#: core/forms/model_forms.py:58 msgid "Backend Parameters" msgstr "バックエンド設定" -#: netbox/core/forms/model_forms.py:96 +#: core/forms/model_forms.py:96 msgid "File Upload" msgstr "ファイルのアップロード" -#: netbox/core/forms/model_forms.py:108 +#: core/forms/model_forms.py:108 msgid "Cannot upload a file and sync from an existing file" msgstr "ファイルをアップロードして既存のファイルから同期することはできません" -#: netbox/core/forms/model_forms.py:110 +#: core/forms/model_forms.py:110 msgid "Must upload a file or select a data file to sync" msgstr "同期するファイルをアップロードするか、データファイルを選択する必要があります" -#: netbox/core/forms/model_forms.py:153 -#: netbox/templates/dcim/rack_elevation_list.html:6 +#: core/forms/model_forms.py:153 templates/dcim/rack_elevation_list.html:6 msgid "Rack Elevations" msgstr "ラック図" -#: netbox/core/forms/model_forms.py:157 netbox/dcim/choices.py:1518 -#: netbox/dcim/forms/bulk_edit.py:969 netbox/dcim/forms/bulk_edit.py:1357 -#: netbox/dcim/forms/bulk_edit.py:1375 netbox/dcim/tables/racks.py:158 -#: netbox/netbox/navigation/menu.py:291 netbox/netbox/navigation/menu.py:295 +#: core/forms/model_forms.py:157 dcim/choices.py:1518 +#: dcim/forms/bulk_edit.py:969 dcim/forms/bulk_edit.py:1357 +#: dcim/forms/bulk_edit.py:1375 dcim/tables/racks.py:158 +#: netbox/navigation/menu.py:291 netbox/navigation/menu.py:295 msgid "Power" msgstr "電源" -#: netbox/core/forms/model_forms.py:159 netbox/netbox/navigation/menu.py:154 -#: netbox/templates/core/inc/config_data.html:37 +#: core/forms/model_forms.py:159 netbox/navigation/menu.py:154 +#: templates/core/inc/config_data.html:37 msgid "IPAM" msgstr "IPAM" -#: netbox/core/forms/model_forms.py:160 netbox/netbox/navigation/menu.py:230 -#: netbox/templates/core/inc/config_data.html:50 -#: netbox/vpn/forms/bulk_edit.py:77 netbox/vpn/forms/filtersets.py:43 -#: netbox/vpn/forms/model_forms.py:61 netbox/vpn/forms/model_forms.py:146 +#: core/forms/model_forms.py:160 netbox/navigation/menu.py:230 +#: templates/core/inc/config_data.html:50 vpn/forms/bulk_edit.py:77 +#: vpn/forms/filtersets.py:43 vpn/forms/model_forms.py:61 +#: vpn/forms/model_forms.py:146 msgid "Security" msgstr "セキュリティ" -#: netbox/core/forms/model_forms.py:161 -#: netbox/templates/core/inc/config_data.html:59 +#: core/forms/model_forms.py:161 templates/core/inc/config_data.html:59 msgid "Banners" msgstr "バナー" -#: netbox/core/forms/model_forms.py:162 -#: netbox/templates/core/inc/config_data.html:80 +#: core/forms/model_forms.py:162 templates/core/inc/config_data.html:80 msgid "Pagination" msgstr "ページネーション" -#: netbox/core/forms/model_forms.py:163 netbox/extras/forms/bulk_edit.py:92 -#: netbox/extras/forms/filtersets.py:47 netbox/extras/forms/model_forms.py:116 -#: netbox/extras/forms/model_forms.py:129 -#: netbox/templates/core/inc/config_data.html:93 +#: core/forms/model_forms.py:163 extras/forms/bulk_edit.py:92 +#: extras/forms/filtersets.py:47 extras/forms/model_forms.py:116 +#: extras/forms/model_forms.py:129 templates/core/inc/config_data.html:93 msgid "Validation" msgstr "バリデーション" -#: netbox/core/forms/model_forms.py:164 -#: netbox/templates/account/preferences.html:6 +#: core/forms/model_forms.py:164 templates/account/preferences.html:6 msgid "User Preferences" msgstr "ユーザ設定" -#: netbox/core/forms/model_forms.py:167 netbox/dcim/forms/filtersets.py:732 -#: netbox/templates/core/inc/config_data.html:127 -#: netbox/users/forms/model_forms.py:64 +#: core/forms/model_forms.py:167 dcim/forms/filtersets.py:732 +#: templates/core/inc/config_data.html:127 users/forms/model_forms.py:64 msgid "Miscellaneous" msgstr "その他" -#: netbox/core/forms/model_forms.py:169 +#: core/forms/model_forms.py:169 msgid "Config Revision" msgstr "設定履歴" -#: netbox/core/forms/model_forms.py:208 +#: core/forms/model_forms.py:208 msgid "This parameter has been defined statically and cannot be modified." msgstr "このパラメータは静的に定義されており、変更できません。" -#: netbox/core/forms/model_forms.py:216 +#: core/forms/model_forms.py:216 #, python-brace-format msgid "Current value: {value}" msgstr "現在の値: {value}" -#: netbox/core/forms/model_forms.py:218 +#: core/forms/model_forms.py:218 msgid " (default)" msgstr " (デフォルト)" -#: netbox/core/models/change_logging.py:29 +#: core/models/change_logging.py:29 msgid "time" msgstr "時刻" -#: netbox/core/models/change_logging.py:42 +#: core/models/change_logging.py:42 msgid "user name" msgstr "ユーザ名" -#: netbox/core/models/change_logging.py:47 +#: core/models/change_logging.py:47 msgid "request ID" msgstr "リクエスト ID" -#: netbox/core/models/change_logging.py:52 netbox/extras/models/staging.py:69 +#: core/models/change_logging.py:52 extras/models/staging.py:69 msgid "action" msgstr "アクション" -#: netbox/core/models/change_logging.py:86 +#: core/models/change_logging.py:86 msgid "pre-change data" msgstr "変更前データ" -#: netbox/core/models/change_logging.py:92 +#: core/models/change_logging.py:92 msgid "post-change data" msgstr "変更後データ" -#: netbox/core/models/change_logging.py:106 +#: core/models/change_logging.py:106 msgid "object change" msgstr "オブジェクト変更" -#: netbox/core/models/change_logging.py:107 +#: core/models/change_logging.py:107 msgid "object changes" msgstr "オブジェクト変更" -#: netbox/core/models/change_logging.py:123 +#: core/models/change_logging.py:123 #, python-brace-format msgid "Change logging is not supported for this object type ({type})." msgstr "このオブジェクトタイプ ({type}) では変更ログはサポートされていません。" -#: netbox/core/models/config.py:18 netbox/core/models/data.py:266 -#: netbox/core/models/files.py:27 netbox/core/models/jobs.py:49 -#: netbox/extras/models/models.py:730 netbox/extras/models/notifications.py:39 -#: netbox/extras/models/notifications.py:186 -#: netbox/netbox/models/features.py:53 netbox/users/models/tokens.py:32 +#: core/models/config.py:18 core/models/data.py:266 core/models/files.py:27 +#: core/models/jobs.py:49 extras/models/models.py:730 +#: extras/models/notifications.py:39 extras/models/notifications.py:186 +#: netbox/models/features.py:53 users/models/tokens.py:32 msgid "created" msgstr "作成日時" -#: netbox/core/models/config.py:22 +#: core/models/config.py:22 msgid "comment" msgstr "コメント" -#: netbox/core/models/config.py:29 +#: core/models/config.py:29 msgid "configuration data" msgstr "設定データ" -#: netbox/core/models/config.py:36 +#: core/models/config.py:36 msgid "config revision" msgstr "設定履歴" -#: netbox/core/models/config.py:37 +#: core/models/config.py:37 msgid "config revisions" msgstr "設定履歴" -#: netbox/core/models/config.py:41 +#: core/models/config.py:41 msgid "Default configuration" msgstr "デフォルト設定" -#: netbox/core/models/config.py:43 +#: core/models/config.py:43 msgid "Current configuration" msgstr "現在の設定" -#: netbox/core/models/config.py:44 +#: core/models/config.py:44 #, python-brace-format msgid "Config revision #{id}" msgstr "設定履歴 #{id}" -#: netbox/core/models/data.py:44 netbox/dcim/models/cables.py:43 -#: netbox/dcim/models/device_component_templates.py:203 -#: netbox/dcim/models/device_component_templates.py:237 -#: netbox/dcim/models/device_component_templates.py:272 -#: netbox/dcim/models/device_component_templates.py:334 -#: netbox/dcim/models/device_component_templates.py:413 -#: netbox/dcim/models/device_component_templates.py:512 -#: netbox/dcim/models/device_component_templates.py:612 -#: netbox/dcim/models/device_components.py:283 -#: netbox/dcim/models/device_components.py:312 -#: netbox/dcim/models/device_components.py:345 -#: netbox/dcim/models/device_components.py:463 -#: netbox/dcim/models/device_components.py:605 -#: netbox/dcim/models/device_components.py:970 -#: netbox/dcim/models/device_components.py:1044 -#: netbox/dcim/models/power.py:102 netbox/extras/models/customfields.py:78 -#: netbox/extras/models/search.py:41 -#: netbox/virtualization/models/clusters.py:61 netbox/vpn/models/l2vpn.py:32 +#: core/models/data.py:44 dcim/models/cables.py:43 +#: dcim/models/device_component_templates.py:203 +#: dcim/models/device_component_templates.py:237 +#: dcim/models/device_component_templates.py:272 +#: dcim/models/device_component_templates.py:334 +#: dcim/models/device_component_templates.py:413 +#: dcim/models/device_component_templates.py:512 +#: dcim/models/device_component_templates.py:612 +#: dcim/models/device_components.py:283 dcim/models/device_components.py:312 +#: dcim/models/device_components.py:345 dcim/models/device_components.py:463 +#: dcim/models/device_components.py:605 dcim/models/device_components.py:970 +#: dcim/models/device_components.py:1044 dcim/models/power.py:102 +#: extras/models/customfields.py:78 extras/models/search.py:41 +#: virtualization/models/clusters.py:61 vpn/models/l2vpn.py:32 msgid "type" msgstr "タイプ" -#: netbox/core/models/data.py:49 netbox/extras/choices.py:37 -#: netbox/extras/models/models.py:164 netbox/extras/tables/tables.py:656 -#: netbox/templates/core/datasource.html:58 -#: netbox/templates/core/plugin.html:65 +#: core/models/data.py:49 extras/choices.py:37 extras/models/models.py:164 +#: extras/tables/tables.py:656 templates/core/datasource.html:58 +#: templates/core/plugin.html:66 msgid "URL" msgstr "URL" -#: netbox/core/models/data.py:59 -#: netbox/dcim/models/device_component_templates.py:418 -#: netbox/dcim/models/device_components.py:512 -#: netbox/extras/models/models.py:70 netbox/extras/models/models.py:301 -#: netbox/extras/models/models.py:526 netbox/users/models/permissions.py:29 +#: core/models/data.py:59 dcim/models/device_component_templates.py:418 +#: dcim/models/device_components.py:512 extras/models/models.py:70 +#: extras/models/models.py:301 extras/models/models.py:526 +#: users/models/permissions.py:29 msgid "enabled" msgstr "有効" -#: netbox/core/models/data.py:63 +#: core/models/data.py:63 msgid "ignore rules" msgstr "ignoreルール" -#: netbox/core/models/data.py:65 +#: core/models/data.py:65 msgid "Patterns (one per line) matching files to ignore when syncing" msgstr "同期時に除外するファイル名のパターン (1 行に 1 つ)" -#: netbox/core/models/data.py:68 netbox/extras/models/models.py:534 +#: core/models/data.py:68 extras/models/models.py:534 msgid "parameters" msgstr "パラメータ" -#: netbox/core/models/data.py:73 +#: core/models/data.py:73 msgid "last synced" msgstr "最終同期日時" -#: netbox/core/models/data.py:81 +#: core/models/data.py:81 msgid "data source" msgstr "データソース" -#: netbox/core/models/data.py:82 +#: core/models/data.py:82 msgid "data sources" msgstr "データソース" -#: netbox/core/models/data.py:122 +#: core/models/data.py:122 #, python-brace-format msgid "Unknown backend type: {type}" msgstr "不明なバックエンドタイプ: {type}" -#: netbox/core/models/data.py:164 +#: core/models/data.py:164 msgid "Cannot initiate sync; syncing already in progress." msgstr "同期を開始できません。同期はすでに進行中です。" -#: netbox/core/models/data.py:177 +#: core/models/data.py:177 msgid "" "There was an error initializing the backend. A dependency needs to be " "installed: " msgstr "バックエンドの初期化中にエラーが発生しました。依存関係をインストールする必要があります。 " -#: netbox/core/models/data.py:270 netbox/core/models/files.py:31 -#: netbox/netbox/models/features.py:59 +#: core/models/data.py:270 core/models/files.py:31 +#: netbox/models/features.py:59 msgid "last updated" msgstr "最終更新日時" -#: netbox/core/models/data.py:280 netbox/dcim/models/cables.py:444 +#: core/models/data.py:280 dcim/models/cables.py:444 msgid "path" msgstr "パス" -#: netbox/core/models/data.py:283 +#: core/models/data.py:283 msgid "File path relative to the data source's root" msgstr "データソースのルートを基準にしたファイルパス" -#: netbox/core/models/data.py:287 netbox/ipam/models/ip.py:503 +#: core/models/data.py:287 ipam/models/ip.py:503 msgid "size" msgstr "サイズ" -#: netbox/core/models/data.py:290 +#: core/models/data.py:290 msgid "hash" msgstr "ハッシュ" -#: netbox/core/models/data.py:294 +#: core/models/data.py:294 msgid "Length must be 64 hexadecimal characters." msgstr "64 桁の 16 進数でなければなりません。" -#: netbox/core/models/data.py:296 +#: core/models/data.py:296 msgid "SHA256 hash of the file data" msgstr "ファイルデータの SHA256 ハッシュ" -#: netbox/core/models/data.py:313 +#: core/models/data.py:313 msgid "data file" msgstr "データファイル" -#: netbox/core/models/data.py:314 +#: core/models/data.py:314 msgid "data files" msgstr "データファイル" -#: netbox/core/models/data.py:401 +#: core/models/data.py:401 msgid "auto sync record" msgstr "自動同期レコード" -#: netbox/core/models/data.py:402 +#: core/models/data.py:402 msgid "auto sync records" msgstr "自動同期レコード" -#: netbox/core/models/files.py:37 +#: core/models/files.py:37 msgid "file root" msgstr "ファイルルート" -#: netbox/core/models/files.py:42 +#: core/models/files.py:42 msgid "file path" msgstr "ファイルパス" -#: netbox/core/models/files.py:44 +#: core/models/files.py:44 msgid "File path relative to the designated root path" msgstr "指定されたルートパスからの相対パス" -#: netbox/core/models/files.py:61 +#: core/models/files.py:61 msgid "managed file" msgstr "管理対象ファイル" -#: netbox/core/models/files.py:62 +#: core/models/files.py:62 msgid "managed files" msgstr "管理対象ファイル" -#: netbox/core/models/jobs.py:53 +#: core/models/jobs.py:53 msgid "scheduled" msgstr "予定日時" -#: netbox/core/models/jobs.py:58 +#: core/models/jobs.py:58 msgid "interval" msgstr "間隔" -#: netbox/core/models/jobs.py:64 +#: core/models/jobs.py:64 msgid "Recurrence interval (in minutes)" msgstr "繰り返し間隔 (分)" -#: netbox/core/models/jobs.py:67 +#: core/models/jobs.py:67 msgid "started" msgstr "開始日時" -#: netbox/core/models/jobs.py:72 +#: core/models/jobs.py:72 msgid "completed" msgstr "完了日時" -#: netbox/core/models/jobs.py:90 netbox/extras/models/models.py:101 -#: netbox/extras/models/staging.py:87 +#: core/models/jobs.py:90 extras/models/models.py:101 +#: extras/models/staging.py:87 msgid "data" msgstr "データ" -#: netbox/core/models/jobs.py:95 +#: core/models/jobs.py:95 msgid "error" msgstr "エラー" -#: netbox/core/models/jobs.py:100 +#: core/models/jobs.py:100 msgid "job ID" msgstr "ジョブ ID" -#: netbox/core/models/jobs.py:111 +#: core/models/jobs.py:111 msgid "job" msgstr "ジョブ" -#: netbox/core/models/jobs.py:112 +#: core/models/jobs.py:112 msgid "jobs" msgstr "ジョブ" -#: netbox/core/models/jobs.py:135 +#: core/models/jobs.py:135 #, python-brace-format msgid "Jobs cannot be assigned to this object type ({type})." msgstr "このオブジェクトタイプにはジョブを割り当てられません ({type})。" -#: netbox/core/models/jobs.py:185 +#: core/models/jobs.py:185 #, python-brace-format msgid "Invalid status for job termination. Choices are: {choices}" msgstr "ジョブ終了のステータスが無効です。選択肢は以下のとおりです。 {choices}" -#: netbox/core/models/jobs.py:216 +#: core/models/jobs.py:216 msgid "" "enqueue() cannot be called with values for both schedule_at and immediate." msgstr "enqueue () は schedule_at と immediate の両方の値を指定して呼び出すことはできません。" -#: netbox/core/signals.py:126 +#: core/signals.py:126 #, python-brace-format msgid "Deletion is prevented by a protection rule: {message}" msgstr "削除は保護ルールによって禁止されています。 {message}" -#: netbox/core/tables/change_logging.py:25 -#: netbox/templates/account/profile.html:19 -#: netbox/templates/users/user.html:21 +#: core/tables/change_logging.py:25 templates/account/profile.html:19 +#: templates/users/user.html:21 msgid "Full Name" msgstr "フルネーム" -#: netbox/core/tables/change_logging.py:37 netbox/core/tables/jobs.py:21 -#: netbox/extras/choices.py:41 netbox/extras/tables/tables.py:279 -#: netbox/extras/tables/tables.py:297 netbox/extras/tables/tables.py:329 -#: netbox/extras/tables/tables.py:409 netbox/extras/tables/tables.py:470 -#: netbox/extras/tables/tables.py:576 netbox/extras/tables/tables.py:616 -#: netbox/extras/tables/tables.py:653 netbox/netbox/tables/tables.py:244 -#: netbox/templates/core/objectchange.html:58 -#: netbox/templates/extras/eventrule.html:78 -#: netbox/templates/extras/journalentry.html:18 -#: netbox/tenancy/tables/contacts.py:93 netbox/vpn/tables/l2vpn.py:64 +#: core/tables/change_logging.py:37 core/tables/jobs.py:21 +#: extras/choices.py:41 extras/tables/tables.py:279 +#: extras/tables/tables.py:297 extras/tables/tables.py:329 +#: extras/tables/tables.py:409 extras/tables/tables.py:470 +#: extras/tables/tables.py:576 extras/tables/tables.py:616 +#: extras/tables/tables.py:653 netbox/tables/tables.py:244 +#: templates/core/objectchange.html:58 templates/extras/eventrule.html:78 +#: templates/extras/journalentry.html:18 tenancy/tables/contacts.py:93 +#: vpn/tables/l2vpn.py:64 msgid "Object" msgstr "オブジェクト" -#: netbox/core/tables/change_logging.py:42 -#: netbox/templates/core/objectchange.html:68 +#: core/tables/change_logging.py:42 templates/core/objectchange.html:68 msgid "Request ID" msgstr "リクエスト ID" -#: netbox/core/tables/config.py:21 netbox/users/forms/filtersets.py:44 -#: netbox/users/tables.py:39 +#: core/tables/config.py:21 users/forms/filtersets.py:44 users/tables.py:39 msgid "Is Active" msgstr "有効" -#: netbox/core/tables/data.py:50 netbox/templates/core/datafile.html:31 +#: core/tables/data.py:50 templates/core/datafile.html:31 msgid "Path" msgstr "パス" -#: netbox/core/tables/data.py:54 -#: netbox/templates/extras/inc/result_pending.html:7 +#: core/tables/data.py:54 templates/extras/inc/result_pending.html:7 msgid "Last updated" msgstr "最終更新日" -#: netbox/core/tables/jobs.py:10 netbox/core/tables/tasks.py:76 -#: netbox/dcim/tables/devicetypes.py:164 netbox/extras/tables/tables.py:216 -#: netbox/extras/tables/tables.py:460 netbox/netbox/tables/tables.py:189 -#: netbox/templates/dcim/virtualchassis_edit.html:52 -#: netbox/utilities/forms/forms.py:73 -#: netbox/wireless/tables/wirelesslink.py:17 +#: core/tables/jobs.py:10 core/tables/tasks.py:76 +#: dcim/tables/devicetypes.py:164 extras/tables/tables.py:216 +#: extras/tables/tables.py:460 netbox/tables/tables.py:189 +#: templates/dcim/virtualchassis_edit.html:52 utilities/forms/forms.py:73 +#: wireless/tables/wirelesslink.py:17 msgid "ID" msgstr "ID" -#: netbox/core/tables/jobs.py:35 +#: core/tables/jobs.py:35 msgid "Interval" msgstr "間隔" -#: netbox/core/tables/plugins.py:14 netbox/templates/vpn/ipsecprofile.html:44 -#: netbox/vpn/forms/bulk_edit.py:141 netbox/vpn/forms/bulk_import.py:172 -#: netbox/vpn/tables/crypto.py:61 +#: core/tables/plugins.py:14 templates/vpn/ipsecprofile.html:44 +#: vpn/forms/bulk_edit.py:141 vpn/forms/bulk_import.py:172 +#: vpn/tables/crypto.py:61 msgid "Version" msgstr "バージョン" -#: netbox/core/tables/plugins.py:19 netbox/templates/core/datafile.html:38 +#: core/tables/plugins.py:19 templates/core/datafile.html:38 msgid "Last Updated" msgstr "最終更新日" -#: netbox/core/tables/plugins.py:23 +#: core/tables/plugins.py:23 msgid "Minimum NetBox Version" msgstr "NetBox の最小バージョン" -#: netbox/core/tables/plugins.py:27 +#: core/tables/plugins.py:27 msgid "Maximum NetBox Version" msgstr "NetBoxの最大バージョン" -#: netbox/core/tables/plugins.py:31 netbox/core/tables/plugins.py:74 +#: core/tables/plugins.py:31 core/tables/plugins.py:74 msgid "No plugin data found" msgstr "プラグインデータが見つかりません" -#: netbox/core/tables/plugins.py:48 netbox/templates/core/plugin.html:61 +#: core/tables/plugins.py:48 templates/core/plugin.html:62 msgid "Author" msgstr "著者" -#: netbox/core/tables/plugins.py:54 +#: core/tables/plugins.py:54 msgid "Installed" msgstr "インストール済" -#: netbox/core/tables/plugins.py:57 netbox/templates/core/plugin.html:83 +#: core/tables/plugins.py:57 templates/core/plugin.html:84 msgid "Certified" msgstr "認定済" -#: netbox/core/tables/plugins.py:60 +#: core/tables/plugins.py:60 msgid "Published" msgstr "公開済" -#: netbox/core/tables/plugins.py:66 +#: core/tables/plugins.py:66 msgid "Installed Version" msgstr "インストール済バージョン" -#: netbox/core/tables/plugins.py:70 +#: core/tables/plugins.py:70 msgid "Latest Version" msgstr "最新バージョン" -#: netbox/core/tables/tasks.py:18 +#: core/tables/tasks.py:18 msgid "Oldest Task" msgstr "最も古いタスク" -#: netbox/core/tables/tasks.py:42 netbox/templates/core/rq_worker_list.html:39 +#: core/tables/tasks.py:42 templates/core/rq_worker_list.html:39 msgid "Workers" msgstr "労働者" -#: netbox/core/tables/tasks.py:46 netbox/vpn/tables/tunnels.py:88 +#: core/tables/tasks.py:46 vpn/tables/tunnels.py:88 msgid "Host" msgstr "ホスト" -#: netbox/core/tables/tasks.py:50 netbox/ipam/forms/filtersets.py:535 +#: core/tables/tasks.py:50 ipam/forms/filtersets.py:535 msgid "Port" msgstr "ポート" -#: netbox/core/tables/tasks.py:54 +#: core/tables/tasks.py:54 msgid "DB" msgstr "デシベル" -#: netbox/core/tables/tasks.py:58 +#: core/tables/tasks.py:58 msgid "Scheduler PID" msgstr "スケジューラー PID" -#: netbox/core/tables/tasks.py:62 +#: core/tables/tasks.py:62 msgid "No queues found" msgstr "キューが見つかりません" -#: netbox/core/tables/tasks.py:82 +#: core/tables/tasks.py:82 msgid "Enqueued" msgstr "エンキュー" -#: netbox/core/tables/tasks.py:85 +#: core/tables/tasks.py:85 msgid "Ended" msgstr "終了しました" -#: netbox/core/tables/tasks.py:93 netbox/templates/core/rq_task.html:85 +#: core/tables/tasks.py:93 templates/core/rq_task.html:85 msgid "Callable" msgstr "呼び出し可能" -#: netbox/core/tables/tasks.py:97 +#: core/tables/tasks.py:97 msgid "No tasks found" msgstr "タスクが見つかりません" -#: netbox/core/tables/tasks.py:118 netbox/templates/core/rq_worker.html:47 +#: core/tables/tasks.py:118 templates/core/rq_worker.html:47 msgid "State" msgstr "状態" -#: netbox/core/tables/tasks.py:121 netbox/templates/core/rq_worker.html:51 +#: core/tables/tasks.py:121 templates/core/rq_worker.html:51 msgid "Birth" msgstr "誕生" -#: netbox/core/tables/tasks.py:124 netbox/templates/core/rq_worker.html:59 +#: core/tables/tasks.py:124 templates/core/rq_worker.html:59 msgid "PID" msgstr "PID" -#: netbox/core/tables/tasks.py:128 +#: core/tables/tasks.py:128 msgid "No workers found" msgstr "作業者が見つかりませんでした" -#: netbox/core/views.py:90 +#: core/views.py:90 #, python-brace-format msgid "Queued job #{id} to sync {datasource}" msgstr "キューに入っているジョブ #{id} 同期するには {datasource}" -#: netbox/core/views.py:319 +#: core/views.py:319 #, python-brace-format msgid "Restored configuration revision #{id}" msgstr "復元された設定リビジョン #{id}" -#: netbox/core/views.py:412 netbox/core/views.py:455 netbox/core/views.py:531 +#: core/views.py:412 core/views.py:455 core/views.py:531 #, python-brace-format msgid "Job {job_id} not found" msgstr "ジョブ {job_id} 見つかりません" -#: netbox/core/views.py:463 +#: core/views.py:463 #, python-brace-format msgid "Job {id} has been deleted." msgstr "ジョブ {id} が削除されました。" -#: netbox/core/views.py:465 +#: core/views.py:465 #, python-brace-format msgid "Error deleting job {id}: {error}" msgstr "ジョブの削除中にエラーが発生しました {id}: {error}" -#: netbox/core/views.py:478 netbox/core/views.py:496 +#: core/views.py:478 core/views.py:496 #, python-brace-format msgid "Job {id} not found." msgstr "ジョブ {id} 見つかりません。" -#: netbox/core/views.py:484 +#: core/views.py:484 #, python-brace-format msgid "Job {id} has been re-enqueued." msgstr "ジョブ {id} が再エンキューされました。" -#: netbox/core/views.py:519 +#: core/views.py:519 #, python-brace-format msgid "Job {id} has been enqueued." msgstr "ジョブ {id} キューに追加されました。" -#: netbox/core/views.py:538 +#: core/views.py:538 #, python-brace-format msgid "Job {id} has been stopped." msgstr "ジョブ {id} 停止されました。" -#: netbox/core/views.py:540 +#: core/views.py:540 #, python-brace-format msgid "Failed to stop job {id}" msgstr "ジョブを停止できませんでした {id}" -#: netbox/core/views.py:678 +#: core/views.py:678 msgid "Plugins catalog could not be loaded" msgstr "プラグインカタログを読み込めませんでした" -#: netbox/core/views.py:712 +#: core/views.py:712 #, python-brace-format msgid "Plugin {name} not found" msgstr "プラグイン {name} が見つかりません" -#: netbox/dcim/api/serializers_/devices.py:49 -#: netbox/dcim/api/serializers_/devicetypes.py:25 +#: dcim/api/serializers_/devices.py:49 dcim/api/serializers_/devicetypes.py:25 msgid "Position (U)" msgstr "ポジション (U)" -#: netbox/dcim/api/serializers_/racks.py:112 -#: netbox/templates/dcim/rack.html:28 +#: dcim/api/serializers_/racks.py:112 templates/dcim/rack.html:28 msgid "Facility ID" msgstr "ファシリティ ID" -#: netbox/dcim/choices.py:21 netbox/virtualization/choices.py:21 +#: dcim/choices.py:21 virtualization/choices.py:21 msgid "Staging" msgstr "ステージング" -#: netbox/dcim/choices.py:23 netbox/dcim/choices.py:189 -#: netbox/dcim/choices.py:240 netbox/dcim/choices.py:1531 -#: netbox/virtualization/choices.py:23 netbox/virtualization/choices.py:48 +#: dcim/choices.py:23 dcim/choices.py:189 dcim/choices.py:240 +#: dcim/choices.py:1531 virtualization/choices.py:23 +#: virtualization/choices.py:48 msgid "Decommissioning" msgstr "廃止" -#: netbox/dcim/choices.py:24 +#: dcim/choices.py:24 msgid "Retired" msgstr "撤退済" -#: netbox/dcim/choices.py:65 +#: dcim/choices.py:65 msgid "2-post frame" msgstr "2 ポストラック" -#: netbox/dcim/choices.py:66 +#: dcim/choices.py:66 msgid "4-post frame" msgstr "4ポストラック" -#: netbox/dcim/choices.py:67 +#: dcim/choices.py:67 msgid "4-post cabinet" msgstr "4 ポストキャビネット" -#: netbox/dcim/choices.py:68 +#: dcim/choices.py:68 msgid "Wall-mounted frame" msgstr "ウォールマウントラック" -#: netbox/dcim/choices.py:69 +#: dcim/choices.py:69 msgid "Wall-mounted frame (vertical)" msgstr "ウォールマウントラック (垂直)" -#: netbox/dcim/choices.py:70 +#: dcim/choices.py:70 msgid "Wall-mounted cabinet" msgstr "ウォールマウントキャビネット" -#: netbox/dcim/choices.py:71 +#: dcim/choices.py:71 msgid "Wall-mounted cabinet (vertical)" msgstr "ウォールマウントキャビネット (垂直)" -#: netbox/dcim/choices.py:83 netbox/dcim/choices.py:84 -#: netbox/dcim/choices.py:85 netbox/dcim/choices.py:86 +#: dcim/choices.py:83 dcim/choices.py:84 dcim/choices.py:85 dcim/choices.py:86 #, python-brace-format msgid "{n} inches" msgstr "{n} インチ" -#: netbox/dcim/choices.py:100 netbox/ipam/choices.py:32 -#: netbox/ipam/choices.py:50 netbox/ipam/choices.py:70 -#: netbox/ipam/choices.py:155 netbox/wireless/choices.py:26 +#: dcim/choices.py:100 ipam/choices.py:32 ipam/choices.py:50 +#: ipam/choices.py:70 ipam/choices.py:155 wireless/choices.py:26 msgid "Reserved" msgstr "予約済" -#: netbox/dcim/choices.py:101 netbox/templates/dcim/device.html:259 +#: dcim/choices.py:101 templates/dcim/device.html:259 msgid "Available" msgstr "利用可能" -#: netbox/dcim/choices.py:104 netbox/ipam/choices.py:33 -#: netbox/ipam/choices.py:51 netbox/ipam/choices.py:71 -#: netbox/ipam/choices.py:156 netbox/wireless/choices.py:28 +#: dcim/choices.py:104 ipam/choices.py:33 ipam/choices.py:51 +#: ipam/choices.py:71 ipam/choices.py:156 wireless/choices.py:28 msgid "Deprecated" msgstr "廃止済" -#: netbox/dcim/choices.py:114 -#: netbox/templates/dcim/inc/panels/racktype_dimensions.html:41 +#: dcim/choices.py:114 templates/dcim/inc/panels/racktype_dimensions.html:41 msgid "Millimeters" msgstr "ミリメートル" -#: netbox/dcim/choices.py:115 netbox/dcim/choices.py:1553 +#: dcim/choices.py:115 dcim/choices.py:1553 msgid "Inches" msgstr "インチ" -#: netbox/dcim/choices.py:136 netbox/dcim/choices.py:207 -#: netbox/dcim/choices.py:254 +#: dcim/choices.py:136 dcim/choices.py:207 dcim/choices.py:254 msgid "Front to rear" msgstr "前面から背面" -#: netbox/dcim/choices.py:137 netbox/dcim/choices.py:208 -#: netbox/dcim/choices.py:255 +#: dcim/choices.py:137 dcim/choices.py:208 dcim/choices.py:255 msgid "Rear to front" msgstr "背面から前面" -#: netbox/dcim/choices.py:151 netbox/dcim/forms/bulk_edit.py:68 -#: netbox/dcim/forms/bulk_edit.py:87 netbox/dcim/forms/bulk_edit.py:173 -#: netbox/dcim/forms/bulk_edit.py:1405 netbox/dcim/forms/bulk_import.py:60 -#: netbox/dcim/forms/bulk_import.py:74 netbox/dcim/forms/bulk_import.py:137 -#: netbox/dcim/forms/bulk_import.py:566 netbox/dcim/forms/bulk_import.py:833 -#: netbox/dcim/forms/bulk_import.py:1088 netbox/dcim/forms/filtersets.py:234 -#: netbox/dcim/forms/model_forms.py:74 netbox/dcim/forms/model_forms.py:93 -#: netbox/dcim/forms/model_forms.py:170 netbox/dcim/forms/model_forms.py:1062 -#: netbox/dcim/forms/model_forms.py:1502 -#: netbox/dcim/forms/object_import.py:176 netbox/dcim/tables/devices.py:656 -#: netbox/dcim/tables/devices.py:869 netbox/dcim/tables/devices.py:954 -#: netbox/extras/tables/tables.py:223 netbox/ipam/tables/fhrp.py:59 -#: netbox/ipam/tables/ip.py:378 netbox/ipam/tables/services.py:44 -#: netbox/templates/dcim/interface.html:102 -#: netbox/templates/dcim/interface.html:309 -#: netbox/templates/dcim/location.html:41 netbox/templates/dcim/region.html:37 -#: netbox/templates/dcim/sitegroup.html:37 -#: netbox/templates/ipam/service.html:28 -#: netbox/templates/tenancy/contactgroup.html:29 -#: netbox/templates/tenancy/tenantgroup.html:37 -#: netbox/templates/virtualization/vminterface.html:39 -#: netbox/templates/wireless/wirelesslangroup.html:37 -#: netbox/tenancy/forms/bulk_edit.py:27 netbox/tenancy/forms/bulk_edit.py:61 -#: netbox/tenancy/forms/bulk_import.py:24 -#: netbox/tenancy/forms/bulk_import.py:58 -#: netbox/tenancy/forms/model_forms.py:25 -#: netbox/tenancy/forms/model_forms.py:68 -#: netbox/virtualization/forms/bulk_edit.py:207 -#: netbox/virtualization/forms/bulk_import.py:151 -#: netbox/virtualization/tables/virtualmachines.py:162 -#: netbox/wireless/forms/bulk_edit.py:24 -#: netbox/wireless/forms/bulk_import.py:21 -#: netbox/wireless/forms/model_forms.py:21 +#: dcim/choices.py:151 dcim/forms/bulk_edit.py:68 dcim/forms/bulk_edit.py:87 +#: dcim/forms/bulk_edit.py:173 dcim/forms/bulk_edit.py:1405 +#: dcim/forms/bulk_import.py:60 dcim/forms/bulk_import.py:74 +#: dcim/forms/bulk_import.py:137 dcim/forms/bulk_import.py:566 +#: dcim/forms/bulk_import.py:833 dcim/forms/bulk_import.py:1088 +#: dcim/forms/filtersets.py:234 dcim/forms/model_forms.py:74 +#: dcim/forms/model_forms.py:93 dcim/forms/model_forms.py:170 +#: dcim/forms/model_forms.py:1062 dcim/forms/model_forms.py:1502 +#: dcim/forms/object_import.py:176 dcim/tables/devices.py:656 +#: dcim/tables/devices.py:869 dcim/tables/devices.py:954 +#: extras/tables/tables.py:223 ipam/tables/fhrp.py:59 ipam/tables/ip.py:378 +#: ipam/tables/services.py:44 templates/dcim/interface.html:102 +#: templates/dcim/interface.html:309 templates/dcim/location.html:41 +#: templates/dcim/region.html:37 templates/dcim/sitegroup.html:37 +#: templates/ipam/service.html:28 templates/tenancy/contactgroup.html:29 +#: templates/tenancy/tenantgroup.html:37 +#: templates/virtualization/vminterface.html:39 +#: templates/wireless/wirelesslangroup.html:37 tenancy/forms/bulk_edit.py:27 +#: tenancy/forms/bulk_edit.py:61 tenancy/forms/bulk_import.py:24 +#: tenancy/forms/bulk_import.py:58 tenancy/forms/model_forms.py:25 +#: tenancy/forms/model_forms.py:68 virtualization/forms/bulk_edit.py:207 +#: virtualization/forms/bulk_import.py:151 +#: virtualization/tables/virtualmachines.py:162 wireless/forms/bulk_edit.py:24 +#: wireless/forms/bulk_import.py:21 wireless/forms/model_forms.py:21 msgid "Parent" msgstr "親" -#: netbox/dcim/choices.py:152 +#: dcim/choices.py:152 msgid "Child" msgstr "子" -#: netbox/dcim/choices.py:166 netbox/templates/dcim/device.html:340 -#: netbox/templates/dcim/rack.html:133 -#: netbox/templates/dcim/rack_elevation_list.html:20 -#: netbox/templates/dcim/rackreservation.html:76 +#: dcim/choices.py:166 templates/dcim/device.html:340 +#: templates/dcim/rack.html:133 templates/dcim/rack_elevation_list.html:20 +#: templates/dcim/rackreservation.html:76 msgid "Front" msgstr "前面" -#: netbox/dcim/choices.py:167 netbox/templates/dcim/device.html:346 -#: netbox/templates/dcim/rack.html:139 -#: netbox/templates/dcim/rack_elevation_list.html:21 -#: netbox/templates/dcim/rackreservation.html:82 +#: dcim/choices.py:167 templates/dcim/device.html:346 +#: templates/dcim/rack.html:139 templates/dcim/rack_elevation_list.html:21 +#: templates/dcim/rackreservation.html:82 msgid "Rear" msgstr "背面" -#: netbox/dcim/choices.py:186 netbox/dcim/choices.py:238 -#: netbox/virtualization/choices.py:46 +#: dcim/choices.py:186 dcim/choices.py:238 virtualization/choices.py:46 msgid "Staged" msgstr "検証" -#: netbox/dcim/choices.py:188 +#: dcim/choices.py:188 msgid "Inventory" msgstr "在庫" -#: netbox/dcim/choices.py:209 netbox/dcim/choices.py:256 +#: dcim/choices.py:209 dcim/choices.py:256 msgid "Left to right" msgstr "左から右" -#: netbox/dcim/choices.py:210 netbox/dcim/choices.py:257 +#: dcim/choices.py:210 dcim/choices.py:257 msgid "Right to left" msgstr "右から左" -#: netbox/dcim/choices.py:211 netbox/dcim/choices.py:258 +#: dcim/choices.py:211 dcim/choices.py:258 msgid "Side to rear" msgstr "側面から背面" -#: netbox/dcim/choices.py:212 +#: dcim/choices.py:212 msgid "Rear to side" msgstr "背面から側面" -#: netbox/dcim/choices.py:213 +#: dcim/choices.py:213 msgid "Bottom to top" msgstr "下から上へ" -#: netbox/dcim/choices.py:214 +#: dcim/choices.py:214 msgid "Top to bottom" msgstr "上から下へ" -#: netbox/dcim/choices.py:215 netbox/dcim/choices.py:259 -#: netbox/dcim/choices.py:1303 +#: dcim/choices.py:215 dcim/choices.py:259 dcim/choices.py:1303 msgid "Passive" msgstr "パッシブ" -#: netbox/dcim/choices.py:216 +#: dcim/choices.py:216 msgid "Mixed" msgstr "混合" -#: netbox/dcim/choices.py:484 netbox/dcim/choices.py:733 +#: dcim/choices.py:484 dcim/choices.py:733 msgid "NEMA (Non-locking)" msgstr "NEMA (ロック無)" -#: netbox/dcim/choices.py:506 netbox/dcim/choices.py:755 +#: dcim/choices.py:506 dcim/choices.py:755 msgid "NEMA (Locking)" msgstr "NEMA (ロック有)" -#: netbox/dcim/choices.py:530 netbox/dcim/choices.py:779 +#: dcim/choices.py:530 dcim/choices.py:779 msgid "California Style" msgstr "California Style" -#: netbox/dcim/choices.py:538 +#: dcim/choices.py:538 msgid "International/ITA" msgstr "International/ITA" -#: netbox/dcim/choices.py:573 netbox/dcim/choices.py:814 +#: dcim/choices.py:573 dcim/choices.py:814 msgid "Proprietary" msgstr "独自規格" -#: netbox/dcim/choices.py:581 netbox/dcim/choices.py:824 -#: netbox/dcim/choices.py:1219 netbox/dcim/choices.py:1221 -#: netbox/dcim/choices.py:1447 netbox/dcim/choices.py:1449 -#: netbox/netbox/navigation/menu.py:200 +#: dcim/choices.py:581 dcim/choices.py:824 dcim/choices.py:1219 +#: dcim/choices.py:1221 dcim/choices.py:1447 dcim/choices.py:1449 +#: netbox/navigation/menu.py:200 msgid "Other" msgstr "その他" -#: netbox/dcim/choices.py:787 +#: dcim/choices.py:787 msgid "ITA/International" msgstr "ITA/International" -#: netbox/dcim/choices.py:854 +#: dcim/choices.py:854 msgid "Physical" msgstr "物理" -#: netbox/dcim/choices.py:855 netbox/dcim/choices.py:1023 +#: dcim/choices.py:855 dcim/choices.py:1023 msgid "Virtual" msgstr "仮想" -#: netbox/dcim/choices.py:856 netbox/dcim/choices.py:1097 -#: netbox/dcim/forms/bulk_edit.py:1515 netbox/dcim/forms/filtersets.py:1330 -#: netbox/dcim/forms/model_forms.py:988 netbox/dcim/forms/model_forms.py:1397 -#: netbox/netbox/navigation/menu.py:140 netbox/netbox/navigation/menu.py:144 -#: netbox/templates/dcim/interface.html:210 +#: dcim/choices.py:856 dcim/choices.py:1097 dcim/forms/bulk_edit.py:1515 +#: dcim/forms/filtersets.py:1330 dcim/forms/model_forms.py:988 +#: dcim/forms/model_forms.py:1397 netbox/navigation/menu.py:140 +#: netbox/navigation/menu.py:144 templates/dcim/interface.html:210 msgid "Wireless" msgstr "無線" -#: netbox/dcim/choices.py:1021 +#: dcim/choices.py:1021 msgid "Virtual interfaces" msgstr "仮想インタフェース" -#: netbox/dcim/choices.py:1024 netbox/dcim/forms/bulk_edit.py:1410 -#: netbox/dcim/forms/bulk_import.py:840 netbox/dcim/forms/model_forms.py:974 -#: netbox/dcim/tables/devices.py:660 netbox/templates/dcim/interface.html:106 -#: netbox/templates/virtualization/vminterface.html:43 -#: netbox/virtualization/forms/bulk_edit.py:212 -#: netbox/virtualization/forms/bulk_import.py:158 -#: netbox/virtualization/tables/virtualmachines.py:166 +#: dcim/choices.py:1024 dcim/forms/bulk_edit.py:1410 +#: dcim/forms/bulk_import.py:840 dcim/forms/model_forms.py:974 +#: dcim/tables/devices.py:660 templates/dcim/interface.html:106 +#: templates/virtualization/vminterface.html:43 +#: virtualization/forms/bulk_edit.py:212 +#: virtualization/forms/bulk_import.py:158 +#: virtualization/tables/virtualmachines.py:166 msgid "Bridge" msgstr "ブリッジ" -#: netbox/dcim/choices.py:1025 +#: dcim/choices.py:1025 msgid "Link Aggregation Group (LAG)" msgstr "リンクアグリゲーション (LAG)" -#: netbox/dcim/choices.py:1029 +#: dcim/choices.py:1029 msgid "Ethernet (fixed)" msgstr "イーサネット (固定)" -#: netbox/dcim/choices.py:1044 +#: dcim/choices.py:1044 msgid "Ethernet (modular)" msgstr "イーサネット (モジュール)" -#: netbox/dcim/choices.py:1081 +#: dcim/choices.py:1081 msgid "Ethernet (backplane)" msgstr "イーサネット (バックプレーン)" -#: netbox/dcim/choices.py:1113 +#: dcim/choices.py:1113 msgid "Cellular" msgstr "セルラー" -#: netbox/dcim/choices.py:1165 netbox/dcim/forms/filtersets.py:383 -#: netbox/dcim/forms/filtersets.py:809 netbox/dcim/forms/filtersets.py:963 -#: netbox/dcim/forms/filtersets.py:1542 -#: netbox/templates/dcim/inventoryitem.html:52 -#: netbox/templates/dcim/virtualchassis_edit.html:54 +#: dcim/choices.py:1165 dcim/forms/filtersets.py:383 +#: dcim/forms/filtersets.py:809 dcim/forms/filtersets.py:963 +#: dcim/forms/filtersets.py:1542 templates/dcim/inventoryitem.html:52 +#: templates/dcim/virtualchassis_edit.html:54 msgid "Serial" msgstr "シリアル" -#: netbox/dcim/choices.py:1180 +#: dcim/choices.py:1180 msgid "Coaxial" msgstr "同軸" -#: netbox/dcim/choices.py:1200 +#: dcim/choices.py:1200 msgid "Stacking" msgstr "スタック" -#: netbox/dcim/choices.py:1250 +#: dcim/choices.py:1250 msgid "Half" msgstr "半二重" -#: netbox/dcim/choices.py:1251 +#: dcim/choices.py:1251 msgid "Full" msgstr "全二重" -#: netbox/dcim/choices.py:1252 netbox/netbox/preferences.py:31 -#: netbox/wireless/choices.py:480 +#: dcim/choices.py:1252 netbox/preferences.py:31 wireless/choices.py:480 msgid "Auto" msgstr "自動" -#: netbox/dcim/choices.py:1263 +#: dcim/choices.py:1263 msgid "Access" msgstr "アクセス" -#: netbox/dcim/choices.py:1264 netbox/ipam/tables/vlans.py:172 -#: netbox/ipam/tables/vlans.py:217 -#: netbox/templates/dcim/inc/interface_vlans_table.html:7 +#: dcim/choices.py:1264 ipam/tables/vlans.py:172 ipam/tables/vlans.py:217 +#: templates/dcim/inc/interface_vlans_table.html:7 msgid "Tagged" msgstr "タグ付き" -#: netbox/dcim/choices.py:1265 +#: dcim/choices.py:1265 msgid "Tagged (All)" msgstr "タグ付き (全て)" -#: netbox/dcim/choices.py:1294 +#: dcim/choices.py:1294 msgid "IEEE Standard" msgstr "IEEE スタンダード" -#: netbox/dcim/choices.py:1305 +#: dcim/choices.py:1305 msgid "Passive 24V (2-pair)" msgstr "パッシブ 24V (2 ペア)" -#: netbox/dcim/choices.py:1306 +#: dcim/choices.py:1306 msgid "Passive 24V (4-pair)" msgstr "パッシブ 24V (4ペア)" -#: netbox/dcim/choices.py:1307 +#: dcim/choices.py:1307 msgid "Passive 48V (2-pair)" msgstr "パッシブ 48V (2 ペア)" -#: netbox/dcim/choices.py:1308 +#: dcim/choices.py:1308 msgid "Passive 48V (4-pair)" msgstr "パッシブ 48V (4ペア)" -#: netbox/dcim/choices.py:1378 netbox/dcim/choices.py:1488 +#: dcim/choices.py:1378 dcim/choices.py:1488 msgid "Copper" msgstr "カッパー" -#: netbox/dcim/choices.py:1401 +#: dcim/choices.py:1401 msgid "Fiber Optic" msgstr "光ファイバー" -#: netbox/dcim/choices.py:1434 netbox/dcim/choices.py:1517 +#: dcim/choices.py:1434 dcim/choices.py:1517 msgid "USB" msgstr "USB" -#: netbox/dcim/choices.py:1504 +#: dcim/choices.py:1504 msgid "Fiber" msgstr "ファイバー" -#: netbox/dcim/choices.py:1529 netbox/dcim/forms/filtersets.py:1227 +#: dcim/choices.py:1529 dcim/forms/filtersets.py:1227 msgid "Connected" msgstr "接続済" -#: netbox/dcim/choices.py:1548 netbox/wireless/choices.py:497 +#: dcim/choices.py:1548 wireless/choices.py:497 msgid "Kilometers" msgstr "キロメートル" -#: netbox/dcim/choices.py:1549 netbox/templates/dcim/cable_trace.html:65 -#: netbox/wireless/choices.py:498 +#: dcim/choices.py:1549 templates/dcim/cable_trace.html:65 +#: wireless/choices.py:498 msgid "Meters" msgstr "メートル" -#: netbox/dcim/choices.py:1550 +#: dcim/choices.py:1550 msgid "Centimeters" msgstr "センチメートル" -#: netbox/dcim/choices.py:1551 netbox/wireless/choices.py:499 +#: dcim/choices.py:1551 wireless/choices.py:499 msgid "Miles" msgstr "マイル" -#: netbox/dcim/choices.py:1552 netbox/templates/dcim/cable_trace.html:66 -#: netbox/wireless/choices.py:500 +#: dcim/choices.py:1552 templates/dcim/cable_trace.html:66 +#: wireless/choices.py:500 msgid "Feet" msgstr "フィート" -#: netbox/dcim/choices.py:1568 netbox/templates/dcim/device.html:327 -#: netbox/templates/dcim/rack.html:107 +#: dcim/choices.py:1568 templates/dcim/device.html:327 +#: templates/dcim/rack.html:107 msgid "Kilograms" msgstr "キログラム" -#: netbox/dcim/choices.py:1569 +#: dcim/choices.py:1569 msgid "Grams" msgstr "グラム" -#: netbox/dcim/choices.py:1570 netbox/templates/dcim/device.html:328 -#: netbox/templates/dcim/rack.html:108 +#: dcim/choices.py:1570 templates/dcim/device.html:328 +#: templates/dcim/rack.html:108 msgid "Pounds" msgstr "ポンド" -#: netbox/dcim/choices.py:1571 +#: dcim/choices.py:1571 msgid "Ounces" msgstr "オンス" -#: netbox/dcim/choices.py:1618 +#: dcim/choices.py:1618 msgid "Redundant" msgstr "冗長" -#: netbox/dcim/choices.py:1639 +#: dcim/choices.py:1639 msgid "Single phase" msgstr "単相" -#: netbox/dcim/choices.py:1640 +#: dcim/choices.py:1640 msgid "Three-phase" msgstr "三相" -#: netbox/dcim/fields.py:45 +#: dcim/fields.py:45 #, python-brace-format msgid "Invalid MAC address format: {value}" msgstr "MAC アドレス形式が無効です: {value}" -#: netbox/dcim/fields.py:71 +#: dcim/fields.py:71 #, python-brace-format msgid "Invalid WWN format: {value}" msgstr "WWN 形式が無効です: {value}" -#: netbox/dcim/filtersets.py:86 +#: dcim/filtersets.py:86 msgid "Parent region (ID)" msgstr "親リージョン (ID)" -#: netbox/dcim/filtersets.py:92 +#: dcim/filtersets.py:92 msgid "Parent region (slug)" msgstr "親リージョン (slug)" -#: netbox/dcim/filtersets.py:116 +#: dcim/filtersets.py:116 msgid "Parent site group (ID)" msgstr "親サイトグループ (ID)" -#: netbox/dcim/filtersets.py:122 +#: dcim/filtersets.py:122 msgid "Parent site group (slug)" msgstr "親サイトグループ (slug)" -#: netbox/dcim/filtersets.py:164 netbox/extras/filtersets.py:364 -#: netbox/ipam/filtersets.py:841 netbox/ipam/filtersets.py:993 +#: dcim/filtersets.py:164 extras/filtersets.py:364 ipam/filtersets.py:841 +#: ipam/filtersets.py:993 msgid "Group (ID)" msgstr "グループ (ID)" -#: netbox/dcim/filtersets.py:170 +#: dcim/filtersets.py:170 msgid "Group (slug)" msgstr "グループ (slug)" -#: netbox/dcim/filtersets.py:176 netbox/dcim/filtersets.py:181 +#: dcim/filtersets.py:176 dcim/filtersets.py:181 msgid "AS (ID)" msgstr "AS (ID)" -#: netbox/dcim/filtersets.py:246 +#: dcim/filtersets.py:246 msgid "Parent location (ID)" msgstr "親の場所 (ID)" -#: netbox/dcim/filtersets.py:252 +#: dcim/filtersets.py:252 msgid "Parent location (slug)" msgstr "親の場所 (スラッグ)" -#: netbox/dcim/filtersets.py:258 netbox/dcim/filtersets.py:369 -#: netbox/dcim/filtersets.py:490 netbox/dcim/filtersets.py:1057 -#: netbox/dcim/filtersets.py:1404 netbox/dcim/filtersets.py:2182 +#: dcim/filtersets.py:258 dcim/filtersets.py:369 dcim/filtersets.py:490 +#: dcim/filtersets.py:1057 dcim/filtersets.py:1404 dcim/filtersets.py:2182 msgid "Location (ID)" msgstr "ロケーション (ID)" -#: netbox/dcim/filtersets.py:265 netbox/dcim/filtersets.py:376 -#: netbox/dcim/filtersets.py:497 netbox/dcim/filtersets.py:1410 -#: netbox/extras/filtersets.py:542 +#: dcim/filtersets.py:265 dcim/filtersets.py:376 dcim/filtersets.py:497 +#: dcim/filtersets.py:1410 extras/filtersets.py:542 msgid "Location (slug)" msgstr "ロケーション (slug)" -#: netbox/dcim/filtersets.py:296 netbox/dcim/filtersets.py:381 -#: netbox/dcim/filtersets.py:539 netbox/dcim/filtersets.py:678 -#: netbox/dcim/filtersets.py:882 netbox/dcim/filtersets.py:933 -#: netbox/dcim/filtersets.py:973 netbox/dcim/filtersets.py:1306 -#: netbox/dcim/filtersets.py:1840 +#: dcim/filtersets.py:296 dcim/filtersets.py:381 dcim/filtersets.py:539 +#: dcim/filtersets.py:678 dcim/filtersets.py:882 dcim/filtersets.py:933 +#: dcim/filtersets.py:973 dcim/filtersets.py:1306 dcim/filtersets.py:1840 msgid "Manufacturer (ID)" msgstr "メーカ (ID)" -#: netbox/dcim/filtersets.py:302 netbox/dcim/filtersets.py:387 -#: netbox/dcim/filtersets.py:545 netbox/dcim/filtersets.py:684 -#: netbox/dcim/filtersets.py:888 netbox/dcim/filtersets.py:939 -#: netbox/dcim/filtersets.py:979 netbox/dcim/filtersets.py:1312 -#: netbox/dcim/filtersets.py:1846 +#: dcim/filtersets.py:302 dcim/filtersets.py:387 dcim/filtersets.py:545 +#: dcim/filtersets.py:684 dcim/filtersets.py:888 dcim/filtersets.py:939 +#: dcim/filtersets.py:979 dcim/filtersets.py:1312 dcim/filtersets.py:1846 msgid "Manufacturer (slug)" msgstr "メーカ (slug)" -#: netbox/dcim/filtersets.py:393 +#: dcim/filtersets.py:393 msgid "Rack type (slug)" msgstr "ラックタイプ (slug)" -#: netbox/dcim/filtersets.py:397 +#: dcim/filtersets.py:397 msgid "Rack type (ID)" msgstr "ラックタイプ (ID)" -#: netbox/dcim/filtersets.py:411 netbox/dcim/filtersets.py:892 -#: netbox/dcim/filtersets.py:994 netbox/dcim/filtersets.py:1850 -#: netbox/ipam/filtersets.py:381 netbox/ipam/filtersets.py:493 -#: netbox/ipam/filtersets.py:1003 netbox/virtualization/filtersets.py:210 +#: dcim/filtersets.py:411 dcim/filtersets.py:892 dcim/filtersets.py:994 +#: dcim/filtersets.py:1850 ipam/filtersets.py:381 ipam/filtersets.py:493 +#: ipam/filtersets.py:1003 virtualization/filtersets.py:210 msgid "Role (ID)" msgstr "ロール (ID)" -#: netbox/dcim/filtersets.py:417 netbox/dcim/filtersets.py:898 -#: netbox/dcim/filtersets.py:1000 netbox/dcim/filtersets.py:1856 -#: netbox/extras/filtersets.py:558 netbox/ipam/filtersets.py:387 -#: netbox/ipam/filtersets.py:499 netbox/ipam/filtersets.py:1009 -#: netbox/virtualization/filtersets.py:216 +#: dcim/filtersets.py:417 dcim/filtersets.py:898 dcim/filtersets.py:1000 +#: dcim/filtersets.py:1856 extras/filtersets.py:558 ipam/filtersets.py:387 +#: ipam/filtersets.py:499 ipam/filtersets.py:1009 +#: virtualization/filtersets.py:216 msgid "Role (slug)" msgstr "ロール (slug)" -#: netbox/dcim/filtersets.py:447 netbox/dcim/filtersets.py:1062 -#: netbox/dcim/filtersets.py:1415 netbox/dcim/filtersets.py:2244 +#: dcim/filtersets.py:447 dcim/filtersets.py:1062 dcim/filtersets.py:1415 +#: dcim/filtersets.py:2244 msgid "Rack (ID)" msgstr "ラック (ID)" -#: netbox/dcim/filtersets.py:507 netbox/extras/filtersets.py:293 -#: netbox/extras/filtersets.py:337 netbox/extras/filtersets.py:359 -#: netbox/extras/filtersets.py:419 netbox/users/filtersets.py:113 -#: netbox/users/filtersets.py:180 +#: dcim/filtersets.py:507 extras/filtersets.py:293 extras/filtersets.py:337 +#: extras/filtersets.py:359 extras/filtersets.py:419 users/filtersets.py:113 +#: users/filtersets.py:180 msgid "User (name)" msgstr "ユーザ (名前)" -#: netbox/dcim/filtersets.py:549 +#: dcim/filtersets.py:549 msgid "Default platform (ID)" msgstr "デフォルトプラットフォーム (ID)" -#: netbox/dcim/filtersets.py:555 +#: dcim/filtersets.py:555 msgid "Default platform (slug)" msgstr "デフォルトプラットフォーム (slug)" -#: netbox/dcim/filtersets.py:558 netbox/dcim/forms/filtersets.py:517 +#: dcim/filtersets.py:558 dcim/forms/filtersets.py:517 msgid "Has a front image" msgstr "正面画像がある" -#: netbox/dcim/filtersets.py:562 netbox/dcim/forms/filtersets.py:524 +#: dcim/filtersets.py:562 dcim/forms/filtersets.py:524 msgid "Has a rear image" msgstr "背面画像がある" -#: netbox/dcim/filtersets.py:567 netbox/dcim/filtersets.py:688 -#: netbox/dcim/filtersets.py:1131 netbox/dcim/forms/filtersets.py:531 -#: netbox/dcim/forms/filtersets.py:627 netbox/dcim/forms/filtersets.py:848 +#: dcim/filtersets.py:567 dcim/filtersets.py:688 dcim/filtersets.py:1131 +#: dcim/forms/filtersets.py:531 dcim/forms/filtersets.py:627 +#: dcim/forms/filtersets.py:848 msgid "Has console ports" msgstr "コンソールポートがある" -#: netbox/dcim/filtersets.py:571 netbox/dcim/filtersets.py:692 -#: netbox/dcim/filtersets.py:1135 netbox/dcim/forms/filtersets.py:538 -#: netbox/dcim/forms/filtersets.py:634 netbox/dcim/forms/filtersets.py:855 +#: dcim/filtersets.py:571 dcim/filtersets.py:692 dcim/filtersets.py:1135 +#: dcim/forms/filtersets.py:538 dcim/forms/filtersets.py:634 +#: dcim/forms/filtersets.py:855 msgid "Has console server ports" msgstr "コンソールサーバポートがある" -#: netbox/dcim/filtersets.py:575 netbox/dcim/filtersets.py:696 -#: netbox/dcim/filtersets.py:1139 netbox/dcim/forms/filtersets.py:545 -#: netbox/dcim/forms/filtersets.py:641 netbox/dcim/forms/filtersets.py:862 +#: dcim/filtersets.py:575 dcim/filtersets.py:696 dcim/filtersets.py:1139 +#: dcim/forms/filtersets.py:545 dcim/forms/filtersets.py:641 +#: dcim/forms/filtersets.py:862 msgid "Has power ports" msgstr "電源ポートがある" -#: netbox/dcim/filtersets.py:579 netbox/dcim/filtersets.py:700 -#: netbox/dcim/filtersets.py:1143 netbox/dcim/forms/filtersets.py:552 -#: netbox/dcim/forms/filtersets.py:648 netbox/dcim/forms/filtersets.py:869 +#: dcim/filtersets.py:579 dcim/filtersets.py:700 dcim/filtersets.py:1143 +#: dcim/forms/filtersets.py:552 dcim/forms/filtersets.py:648 +#: dcim/forms/filtersets.py:869 msgid "Has power outlets" msgstr "電源コンセントがある" -#: netbox/dcim/filtersets.py:583 netbox/dcim/filtersets.py:704 -#: netbox/dcim/filtersets.py:1147 netbox/dcim/forms/filtersets.py:559 -#: netbox/dcim/forms/filtersets.py:655 netbox/dcim/forms/filtersets.py:876 +#: dcim/filtersets.py:583 dcim/filtersets.py:704 dcim/filtersets.py:1147 +#: dcim/forms/filtersets.py:559 dcim/forms/filtersets.py:655 +#: dcim/forms/filtersets.py:876 msgid "Has interfaces" msgstr "インタフェースがある" -#: netbox/dcim/filtersets.py:587 netbox/dcim/filtersets.py:708 -#: netbox/dcim/filtersets.py:1151 netbox/dcim/forms/filtersets.py:566 -#: netbox/dcim/forms/filtersets.py:662 netbox/dcim/forms/filtersets.py:883 +#: dcim/filtersets.py:587 dcim/filtersets.py:708 dcim/filtersets.py:1151 +#: dcim/forms/filtersets.py:566 dcim/forms/filtersets.py:662 +#: dcim/forms/filtersets.py:883 msgid "Has pass-through ports" msgstr "パススルーポートがある" -#: netbox/dcim/filtersets.py:591 netbox/dcim/filtersets.py:1155 -#: netbox/dcim/forms/filtersets.py:580 +#: dcim/filtersets.py:591 dcim/filtersets.py:1155 dcim/forms/filtersets.py:580 msgid "Has module bays" msgstr "モジュールベイがある" -#: netbox/dcim/filtersets.py:595 netbox/dcim/filtersets.py:1159 -#: netbox/dcim/forms/filtersets.py:573 +#: dcim/filtersets.py:595 dcim/filtersets.py:1159 dcim/forms/filtersets.py:573 msgid "Has device bays" msgstr "デバイスベイがある" -#: netbox/dcim/filtersets.py:599 netbox/dcim/forms/filtersets.py:587 +#: dcim/filtersets.py:599 dcim/forms/filtersets.py:587 msgid "Has inventory items" msgstr "在庫品目がある" -#: netbox/dcim/filtersets.py:756 netbox/dcim/filtersets.py:989 -#: netbox/dcim/filtersets.py:1436 +#: dcim/filtersets.py:756 dcim/filtersets.py:989 dcim/filtersets.py:1436 msgid "Device type (ID)" msgstr "デバイスタイプ (ID)" -#: netbox/dcim/filtersets.py:772 netbox/dcim/filtersets.py:1317 +#: dcim/filtersets.py:772 dcim/filtersets.py:1317 msgid "Module type (ID)" msgstr "モジュールタイプ (ID)" -#: netbox/dcim/filtersets.py:804 netbox/dcim/filtersets.py:1591 +#: dcim/filtersets.py:804 dcim/filtersets.py:1591 msgid "Power port (ID)" msgstr "電源ポート (ID)" -#: netbox/dcim/filtersets.py:878 netbox/dcim/filtersets.py:1836 +#: dcim/filtersets.py:878 dcim/filtersets.py:1836 msgid "Parent inventory item (ID)" msgstr "親在庫品目 (ID)" -#: netbox/dcim/filtersets.py:921 netbox/dcim/filtersets.py:947 -#: netbox/dcim/filtersets.py:1127 netbox/virtualization/filtersets.py:238 +#: dcim/filtersets.py:921 dcim/filtersets.py:947 dcim/filtersets.py:1127 +#: virtualization/filtersets.py:238 msgid "Config template (ID)" msgstr "設定テンプレート (ID)" -#: netbox/dcim/filtersets.py:985 +#: dcim/filtersets.py:985 msgid "Device type (slug)" msgstr "デバイスタイプ (slug)" -#: netbox/dcim/filtersets.py:1005 +#: dcim/filtersets.py:1005 msgid "Parent Device (ID)" msgstr "親デバイス (ID)" -#: netbox/dcim/filtersets.py:1009 netbox/virtualization/filtersets.py:220 +#: dcim/filtersets.py:1009 virtualization/filtersets.py:220 msgid "Platform (ID)" msgstr "プラットフォーム (ID)" -#: netbox/dcim/filtersets.py:1015 netbox/extras/filtersets.py:569 -#: netbox/virtualization/filtersets.py:226 +#: dcim/filtersets.py:1015 extras/filtersets.py:569 +#: virtualization/filtersets.py:226 msgid "Platform (slug)" msgstr "プラットフォーム (slug)" -#: netbox/dcim/filtersets.py:1051 netbox/dcim/filtersets.py:1399 -#: netbox/dcim/filtersets.py:1934 netbox/dcim/filtersets.py:2176 -#: netbox/dcim/filtersets.py:2235 +#: dcim/filtersets.py:1051 dcim/filtersets.py:1399 dcim/filtersets.py:1934 +#: dcim/filtersets.py:2176 dcim/filtersets.py:2235 msgid "Site name (slug)" msgstr "サイト名 (slug)" -#: netbox/dcim/filtersets.py:1067 +#: dcim/filtersets.py:1067 msgid "Parent bay (ID)" msgstr "ペアレントベイ (ID)" -#: netbox/dcim/filtersets.py:1071 +#: dcim/filtersets.py:1071 msgid "VM cluster (ID)" msgstr "VM クラスタ (ID)" -#: netbox/dcim/filtersets.py:1077 netbox/extras/filtersets.py:591 -#: netbox/virtualization/filtersets.py:136 +#: dcim/filtersets.py:1077 extras/filtersets.py:591 +#: virtualization/filtersets.py:136 msgid "Cluster group (slug)" msgstr "クラスタグループ (slug)" -#: netbox/dcim/filtersets.py:1082 netbox/virtualization/filtersets.py:130 +#: dcim/filtersets.py:1082 virtualization/filtersets.py:130 msgid "Cluster group (ID)" msgstr "クラスタグループ (ID)" -#: netbox/dcim/filtersets.py:1088 +#: dcim/filtersets.py:1088 msgid "Device model (slug)" msgstr "デバイスモデル (slug)" -#: netbox/dcim/filtersets.py:1099 netbox/dcim/forms/bulk_edit.py:516 +#: dcim/filtersets.py:1099 dcim/forms/bulk_edit.py:516 msgid "Is full depth" msgstr "奥行きをすべて使うか" -#: netbox/dcim/filtersets.py:1103 netbox/dcim/forms/common.py:18 -#: netbox/dcim/forms/filtersets.py:818 netbox/dcim/forms/filtersets.py:1385 -#: netbox/dcim/models/device_components.py:518 -#: netbox/virtualization/filtersets.py:230 -#: netbox/virtualization/filtersets.py:301 -#: netbox/virtualization/forms/filtersets.py:172 -#: netbox/virtualization/forms/filtersets.py:223 +#: dcim/filtersets.py:1103 dcim/forms/common.py:18 +#: dcim/forms/filtersets.py:818 dcim/forms/filtersets.py:1385 +#: dcim/models/device_components.py:518 virtualization/filtersets.py:230 +#: virtualization/filtersets.py:301 virtualization/forms/filtersets.py:172 +#: virtualization/forms/filtersets.py:223 msgid "MAC address" msgstr "MAC アドレス" -#: netbox/dcim/filtersets.py:1110 netbox/dcim/filtersets.py:1274 -#: netbox/dcim/forms/filtersets.py:827 netbox/dcim/forms/filtersets.py:930 -#: netbox/virtualization/filtersets.py:234 -#: netbox/virtualization/forms/filtersets.py:176 +#: dcim/filtersets.py:1110 dcim/filtersets.py:1274 +#: dcim/forms/filtersets.py:827 dcim/forms/filtersets.py:930 +#: virtualization/filtersets.py:234 virtualization/forms/filtersets.py:176 msgid "Has a primary IP" msgstr "プライマリ IP がある" -#: netbox/dcim/filtersets.py:1114 +#: dcim/filtersets.py:1114 msgid "Has an out-of-band IP" msgstr "帯域外 IP がある" -#: netbox/dcim/filtersets.py:1119 +#: dcim/filtersets.py:1119 msgid "Virtual chassis (ID)" msgstr "バーチャルシャーシ (ID)" -#: netbox/dcim/filtersets.py:1123 +#: dcim/filtersets.py:1123 msgid "Is a virtual chassis member" msgstr "バーチャルシャーシのメンバーか" -#: netbox/dcim/filtersets.py:1164 +#: dcim/filtersets.py:1164 msgid "OOB IP (ID)" msgstr "OOB IP (ID)" -#: netbox/dcim/filtersets.py:1168 +#: dcim/filtersets.py:1168 msgid "Has virtual device context" msgstr "仮想デバイスコンテキストあり" -#: netbox/dcim/filtersets.py:1257 +#: dcim/filtersets.py:1257 msgid "VDC (ID)" msgstr "VDC (ID)" -#: netbox/dcim/filtersets.py:1262 +#: dcim/filtersets.py:1262 msgid "Device model" msgstr "デバイスモデル" -#: netbox/dcim/filtersets.py:1267 netbox/ipam/filtersets.py:632 -#: netbox/vpn/filtersets.py:102 netbox/vpn/filtersets.py:401 +#: dcim/filtersets.py:1267 ipam/filtersets.py:632 vpn/filtersets.py:102 +#: vpn/filtersets.py:401 msgid "Interface (ID)" msgstr "インタフェース (ID)" -#: netbox/dcim/filtersets.py:1323 +#: dcim/filtersets.py:1323 msgid "Module type (model)" msgstr "モジュールタイプ (モデル)" -#: netbox/dcim/filtersets.py:1329 +#: dcim/filtersets.py:1329 msgid "Module bay (ID)" msgstr "モジュールベイ (ID)" -#: netbox/dcim/filtersets.py:1333 netbox/dcim/filtersets.py:1425 -#: netbox/ipam/filtersets.py:611 netbox/ipam/filtersets.py:851 -#: netbox/ipam/filtersets.py:1115 netbox/virtualization/filtersets.py:161 -#: netbox/vpn/filtersets.py:379 +#: dcim/filtersets.py:1333 dcim/filtersets.py:1425 ipam/filtersets.py:611 +#: ipam/filtersets.py:851 ipam/filtersets.py:1115 +#: virtualization/filtersets.py:161 vpn/filtersets.py:379 msgid "Device (ID)" msgstr "デバイス (ID)" -#: netbox/dcim/filtersets.py:1421 +#: dcim/filtersets.py:1421 msgid "Rack (name)" msgstr "ラック (名前)" -#: netbox/dcim/filtersets.py:1431 netbox/ipam/filtersets.py:606 -#: netbox/ipam/filtersets.py:846 netbox/ipam/filtersets.py:1121 -#: netbox/vpn/filtersets.py:374 +#: dcim/filtersets.py:1431 ipam/filtersets.py:606 ipam/filtersets.py:846 +#: ipam/filtersets.py:1121 vpn/filtersets.py:374 msgid "Device (name)" msgstr "デバイス (名前)" -#: netbox/dcim/filtersets.py:1442 +#: dcim/filtersets.py:1442 msgid "Device type (model)" msgstr "デバイスタイプ (モデル)" -#: netbox/dcim/filtersets.py:1447 +#: dcim/filtersets.py:1447 msgid "Device role (ID)" msgstr "デバイスロール (ID)" -#: netbox/dcim/filtersets.py:1453 +#: dcim/filtersets.py:1453 msgid "Device role (slug)" msgstr "デバイスロール (slug)" -#: netbox/dcim/filtersets.py:1458 +#: dcim/filtersets.py:1458 msgid "Virtual Chassis (ID)" msgstr "バーチャルシャーシ (ID)" -#: netbox/dcim/filtersets.py:1464 netbox/dcim/forms/filtersets.py:109 -#: netbox/dcim/tables/devices.py:206 netbox/netbox/navigation/menu.py:79 -#: netbox/templates/dcim/device.html:120 -#: netbox/templates/dcim/device_edit.html:93 -#: netbox/templates/dcim/virtualchassis.html:20 -#: netbox/templates/dcim/virtualchassis_add.html:8 -#: netbox/templates/dcim/virtualchassis_edit.html:24 +#: dcim/filtersets.py:1464 dcim/forms/filtersets.py:109 +#: dcim/tables/devices.py:206 netbox/navigation/menu.py:79 +#: templates/dcim/device.html:120 templates/dcim/device_edit.html:93 +#: templates/dcim/virtualchassis.html:20 +#: templates/dcim/virtualchassis_add.html:8 +#: templates/dcim/virtualchassis_edit.html:24 msgid "Virtual Chassis" msgstr "バーチャルシャーシ" -#: netbox/dcim/filtersets.py:1488 +#: dcim/filtersets.py:1488 msgid "Module (ID)" msgstr "モジュール (ID)" -#: netbox/dcim/filtersets.py:1495 +#: dcim/filtersets.py:1495 msgid "Cable (ID)" msgstr "ケーブル (ID)" -#: netbox/dcim/filtersets.py:1604 netbox/ipam/forms/bulk_import.py:189 -#: netbox/vpn/forms/bulk_import.py:308 +#: dcim/filtersets.py:1604 ipam/forms/bulk_import.py:189 +#: vpn/forms/bulk_import.py:308 msgid "Assigned VLAN" msgstr "割当 VLAN" -#: netbox/dcim/filtersets.py:1608 +#: dcim/filtersets.py:1608 msgid "Assigned VID" msgstr "割当 VID" -#: netbox/dcim/filtersets.py:1613 netbox/dcim/forms/bulk_edit.py:1489 -#: netbox/dcim/forms/bulk_import.py:891 netbox/dcim/forms/filtersets.py:1428 -#: netbox/dcim/forms/model_forms.py:1378 -#: netbox/dcim/models/device_components.py:711 -#: netbox/dcim/tables/devices.py:626 netbox/ipam/filtersets.py:316 -#: netbox/ipam/filtersets.py:327 netbox/ipam/filtersets.py:483 -#: netbox/ipam/filtersets.py:584 netbox/ipam/filtersets.py:595 -#: netbox/ipam/forms/bulk_edit.py:241 netbox/ipam/forms/bulk_edit.py:297 -#: netbox/ipam/forms/bulk_edit.py:339 netbox/ipam/forms/bulk_import.py:157 -#: netbox/ipam/forms/bulk_import.py:243 netbox/ipam/forms/bulk_import.py:279 -#: netbox/ipam/forms/filtersets.py:67 netbox/ipam/forms/filtersets.py:172 -#: netbox/ipam/forms/filtersets.py:309 netbox/ipam/forms/model_forms.py:62 -#: netbox/ipam/forms/model_forms.py:202 netbox/ipam/forms/model_forms.py:247 -#: netbox/ipam/forms/model_forms.py:300 netbox/ipam/forms/model_forms.py:431 -#: netbox/ipam/forms/model_forms.py:445 netbox/ipam/forms/model_forms.py:459 -#: netbox/ipam/models/ip.py:233 netbox/ipam/models/ip.py:512 -#: netbox/ipam/models/ip.py:720 netbox/ipam/models/vrfs.py:62 -#: netbox/ipam/tables/ip.py:242 netbox/ipam/tables/ip.py:309 -#: netbox/ipam/tables/ip.py:360 netbox/ipam/tables/ip.py:450 -#: netbox/templates/dcim/interface.html:133 -#: netbox/templates/ipam/ipaddress.html:18 -#: netbox/templates/ipam/iprange.html:40 netbox/templates/ipam/prefix.html:19 -#: netbox/templates/ipam/vrf.html:7 netbox/templates/ipam/vrf.html:13 -#: netbox/templates/virtualization/vminterface.html:47 -#: netbox/virtualization/forms/bulk_edit.py:261 -#: netbox/virtualization/forms/bulk_import.py:171 -#: netbox/virtualization/forms/filtersets.py:228 -#: netbox/virtualization/forms/model_forms.py:344 -#: netbox/virtualization/models/virtualmachines.py:355 -#: netbox/virtualization/tables/virtualmachines.py:143 +#: dcim/filtersets.py:1613 dcim/forms/bulk_edit.py:1489 +#: dcim/forms/bulk_import.py:891 dcim/forms/filtersets.py:1428 +#: dcim/forms/model_forms.py:1378 dcim/models/device_components.py:711 +#: dcim/tables/devices.py:626 ipam/filtersets.py:316 ipam/filtersets.py:327 +#: ipam/filtersets.py:483 ipam/filtersets.py:584 ipam/filtersets.py:595 +#: ipam/forms/bulk_edit.py:242 ipam/forms/bulk_edit.py:298 +#: ipam/forms/bulk_edit.py:340 ipam/forms/bulk_import.py:157 +#: ipam/forms/bulk_import.py:243 ipam/forms/bulk_import.py:279 +#: ipam/forms/filtersets.py:67 ipam/forms/filtersets.py:172 +#: ipam/forms/filtersets.py:309 ipam/forms/model_forms.py:62 +#: ipam/forms/model_forms.py:202 ipam/forms/model_forms.py:247 +#: ipam/forms/model_forms.py:300 ipam/forms/model_forms.py:431 +#: ipam/forms/model_forms.py:445 ipam/forms/model_forms.py:459 +#: ipam/models/ip.py:233 ipam/models/ip.py:512 ipam/models/ip.py:720 +#: ipam/models/vrfs.py:62 ipam/tables/ip.py:242 ipam/tables/ip.py:309 +#: ipam/tables/ip.py:360 ipam/tables/ip.py:450 +#: templates/dcim/interface.html:133 templates/ipam/ipaddress.html:18 +#: templates/ipam/iprange.html:40 templates/ipam/prefix.html:19 +#: templates/ipam/vrf.html:7 templates/ipam/vrf.html:13 +#: templates/virtualization/vminterface.html:47 +#: virtualization/forms/bulk_edit.py:261 +#: virtualization/forms/bulk_import.py:171 +#: virtualization/forms/filtersets.py:228 +#: virtualization/forms/model_forms.py:344 +#: virtualization/models/virtualmachines.py:355 +#: virtualization/tables/virtualmachines.py:143 msgid "VRF" msgstr "VRF" -#: netbox/dcim/filtersets.py:1619 netbox/ipam/filtersets.py:322 -#: netbox/ipam/filtersets.py:333 netbox/ipam/filtersets.py:489 -#: netbox/ipam/filtersets.py:590 netbox/ipam/filtersets.py:601 +#: dcim/filtersets.py:1619 ipam/filtersets.py:322 ipam/filtersets.py:333 +#: ipam/filtersets.py:489 ipam/filtersets.py:590 ipam/filtersets.py:601 msgid "VRF (RD)" msgstr "VRF (RD)" -#: netbox/dcim/filtersets.py:1624 netbox/ipam/filtersets.py:1030 -#: netbox/vpn/filtersets.py:342 +#: dcim/filtersets.py:1624 ipam/filtersets.py:1030 vpn/filtersets.py:342 msgid "L2VPN (ID)" msgstr "L2VPN (ID)" -#: netbox/dcim/filtersets.py:1630 netbox/dcim/forms/filtersets.py:1433 -#: netbox/dcim/tables/devices.py:570 netbox/ipam/filtersets.py:1036 -#: netbox/ipam/forms/filtersets.py:518 netbox/ipam/tables/vlans.py:137 -#: netbox/templates/dcim/interface.html:93 netbox/templates/ipam/vlan.html:66 -#: netbox/templates/vpn/l2vpntermination.html:12 -#: netbox/virtualization/forms/filtersets.py:233 -#: netbox/vpn/forms/bulk_import.py:280 netbox/vpn/forms/filtersets.py:246 -#: netbox/vpn/forms/model_forms.py:409 netbox/vpn/forms/model_forms.py:427 -#: netbox/vpn/models/l2vpn.py:63 netbox/vpn/tables/l2vpn.py:55 +#: dcim/filtersets.py:1630 dcim/forms/filtersets.py:1433 +#: dcim/tables/devices.py:570 ipam/filtersets.py:1036 +#: ipam/forms/filtersets.py:518 ipam/tables/vlans.py:137 +#: templates/dcim/interface.html:93 templates/ipam/vlan.html:66 +#: templates/vpn/l2vpntermination.html:12 +#: virtualization/forms/filtersets.py:233 vpn/forms/bulk_import.py:280 +#: vpn/forms/filtersets.py:246 vpn/forms/model_forms.py:409 +#: vpn/forms/model_forms.py:427 vpn/models/l2vpn.py:63 vpn/tables/l2vpn.py:55 msgid "L2VPN" msgstr "L2VPN" -#: netbox/dcim/filtersets.py:1662 +#: dcim/filtersets.py:1662 msgid "Virtual Chassis Interfaces for Device" msgstr "バーチャルシャーシインタフェース" -#: netbox/dcim/filtersets.py:1667 +#: dcim/filtersets.py:1667 msgid "Virtual Chassis Interfaces for Device (ID)" msgstr "バーチャルシャーシインタフェース (ID)" -#: netbox/dcim/filtersets.py:1671 +#: dcim/filtersets.py:1671 msgid "Kind of interface" msgstr "インタフェースの種類" -#: netbox/dcim/filtersets.py:1676 netbox/virtualization/filtersets.py:293 +#: dcim/filtersets.py:1676 virtualization/filtersets.py:293 msgid "Parent interface (ID)" msgstr "親インタフェース (ID)" -#: netbox/dcim/filtersets.py:1681 netbox/virtualization/filtersets.py:298 +#: dcim/filtersets.py:1681 virtualization/filtersets.py:298 msgid "Bridged interface (ID)" msgstr "ブリッジインタフェース (ID)" -#: netbox/dcim/filtersets.py:1686 +#: dcim/filtersets.py:1686 msgid "LAG interface (ID)" msgstr "LAG インタフェース (ID)" -#: netbox/dcim/filtersets.py:1713 netbox/dcim/filtersets.py:1725 -#: netbox/dcim/forms/filtersets.py:1345 netbox/dcim/forms/model_forms.py:1690 -#: netbox/templates/dcim/virtualdevicecontext.html:15 +#: dcim/filtersets.py:1713 dcim/filtersets.py:1725 +#: dcim/forms/filtersets.py:1345 dcim/forms/model_forms.py:1690 +#: templates/dcim/virtualdevicecontext.html:15 msgid "Virtual Device Context" msgstr "仮想デバイスコンテキスト" -#: netbox/dcim/filtersets.py:1719 +#: dcim/filtersets.py:1719 msgid "Virtual Device Context (Identifier)" msgstr "仮想デバイスコンテキスト (識別子)" -#: netbox/dcim/filtersets.py:1730 -#: netbox/templates/wireless/wirelesslan.html:11 -#: netbox/wireless/forms/model_forms.py:53 +#: dcim/filtersets.py:1730 templates/wireless/wirelesslan.html:11 +#: wireless/forms/model_forms.py:53 msgid "Wireless LAN" msgstr "無線 LAN" -#: netbox/dcim/filtersets.py:1734 netbox/dcim/tables/devices.py:613 +#: dcim/filtersets.py:1734 dcim/tables/devices.py:613 msgid "Wireless link" msgstr "無線リンク" -#: netbox/dcim/filtersets.py:1803 +#: dcim/filtersets.py:1803 msgid "Parent module bay (ID)" msgstr "親モジュールベイ (ID)" -#: netbox/dcim/filtersets.py:1808 +#: dcim/filtersets.py:1808 msgid "Installed module (ID)" msgstr "インストール済みモジュール (ID)" -#: netbox/dcim/filtersets.py:1819 +#: dcim/filtersets.py:1819 msgid "Installed device (ID)" msgstr "インストール済みデバイス (ID)" -#: netbox/dcim/filtersets.py:1825 +#: dcim/filtersets.py:1825 msgid "Installed device (name)" msgstr "インストール済みデバイス (名前)" -#: netbox/dcim/filtersets.py:1891 +#: dcim/filtersets.py:1891 msgid "Master (ID)" msgstr "マスター (ID)" -#: netbox/dcim/filtersets.py:1897 +#: dcim/filtersets.py:1897 msgid "Master (name)" msgstr "マスター (名前)" -#: netbox/dcim/filtersets.py:1939 netbox/tenancy/filtersets.py:245 +#: dcim/filtersets.py:1939 tenancy/filtersets.py:245 msgid "Tenant (ID)" msgstr "テナント (ID)" -#: netbox/dcim/filtersets.py:1945 netbox/extras/filtersets.py:618 -#: netbox/tenancy/filtersets.py:251 +#: dcim/filtersets.py:1945 extras/filtersets.py:618 tenancy/filtersets.py:251 msgid "Tenant (slug)" msgstr "テナント (slug)" -#: netbox/dcim/filtersets.py:1981 netbox/dcim/forms/filtersets.py:1077 +#: dcim/filtersets.py:1981 dcim/forms/filtersets.py:1077 msgid "Unterminated" msgstr "未終端" -#: netbox/dcim/filtersets.py:2239 +#: dcim/filtersets.py:2239 msgid "Power panel (ID)" msgstr "電源盤 (ID)" -#: netbox/dcim/forms/bulk_create.py:40 netbox/extras/forms/filtersets.py:401 -#: netbox/extras/forms/model_forms.py:567 -#: netbox/extras/forms/model_forms.py:619 netbox/netbox/forms/base.py:86 -#: netbox/netbox/forms/mixins.py:81 netbox/netbox/tables/columns.py:478 -#: netbox/templates/circuits/inc/circuit_termination.html:32 -#: netbox/templates/generic/bulk_edit.html:65 -#: netbox/templates/inc/panels/tags.html:5 -#: netbox/utilities/forms/fields/fields.py:81 +#: dcim/forms/bulk_create.py:40 extras/forms/filtersets.py:401 +#: extras/forms/model_forms.py:567 extras/forms/model_forms.py:619 +#: netbox/forms/base.py:86 netbox/forms/mixins.py:81 +#: netbox/tables/columns.py:478 +#: templates/circuits/inc/circuit_termination.html:32 +#: templates/generic/bulk_edit.html:65 templates/inc/panels/tags.html:5 +#: utilities/forms/fields/fields.py:81 msgid "Tags" msgstr "タグ" -#: netbox/dcim/forms/bulk_create.py:112 netbox/dcim/forms/filtersets.py:1498 -#: netbox/dcim/forms/model_forms.py:488 netbox/dcim/forms/model_forms.py:546 -#: netbox/dcim/forms/object_create.py:197 -#: netbox/dcim/forms/object_create.py:353 netbox/dcim/tables/devices.py:165 -#: netbox/dcim/tables/devices.py:707 netbox/dcim/tables/devicetypes.py:246 -#: netbox/templates/dcim/device.html:43 netbox/templates/dcim/device.html:131 -#: netbox/templates/dcim/modulebay.html:38 -#: netbox/templates/dcim/virtualchassis.html:66 -#: netbox/templates/dcim/virtualchassis_edit.html:55 +#: dcim/forms/bulk_create.py:112 dcim/forms/filtersets.py:1498 +#: dcim/forms/model_forms.py:488 dcim/forms/model_forms.py:546 +#: dcim/forms/object_create.py:197 dcim/forms/object_create.py:353 +#: dcim/tables/devices.py:165 dcim/tables/devices.py:707 +#: dcim/tables/devicetypes.py:246 templates/dcim/device.html:43 +#: templates/dcim/device.html:131 templates/dcim/modulebay.html:38 +#: templates/dcim/virtualchassis.html:66 +#: templates/dcim/virtualchassis_edit.html:55 msgid "Position" msgstr "ポジション" -#: netbox/dcim/forms/bulk_create.py:114 +#: dcim/forms/bulk_create.py:114 msgid "" "Alphanumeric ranges are supported. (Must match the number of names being " "created.)" msgstr "英数字の範囲が使用できます。(作成する名前の数と一致する必要があります)" -#: netbox/dcim/forms/bulk_edit.py:132 +#: dcim/forms/bulk_edit.py:132 msgid "Contact name" msgstr "連絡先名" -#: netbox/dcim/forms/bulk_edit.py:137 +#: dcim/forms/bulk_edit.py:137 msgid "Contact phone" msgstr "連絡先電話番号" -#: netbox/dcim/forms/bulk_edit.py:143 +#: dcim/forms/bulk_edit.py:143 msgid "Contact E-mail" msgstr "連絡先電子メール" -#: netbox/dcim/forms/bulk_edit.py:146 netbox/dcim/forms/bulk_import.py:123 -#: netbox/dcim/forms/model_forms.py:128 +#: dcim/forms/bulk_edit.py:146 dcim/forms/bulk_import.py:123 +#: dcim/forms/model_forms.py:128 msgid "Time zone" msgstr "タイムゾーン" -#: netbox/dcim/forms/bulk_edit.py:224 netbox/dcim/forms/bulk_edit.py:495 -#: netbox/dcim/forms/bulk_edit.py:559 netbox/dcim/forms/bulk_edit.py:632 -#: netbox/dcim/forms/bulk_edit.py:656 netbox/dcim/forms/bulk_edit.py:740 -#: netbox/dcim/forms/bulk_edit.py:1267 netbox/dcim/forms/bulk_edit.py:1660 -#: netbox/dcim/forms/bulk_import.py:182 netbox/dcim/forms/bulk_import.py:371 -#: netbox/dcim/forms/bulk_import.py:405 netbox/dcim/forms/bulk_import.py:450 -#: netbox/dcim/forms/bulk_import.py:486 netbox/dcim/forms/bulk_import.py:1082 -#: netbox/dcim/forms/filtersets.py:313 netbox/dcim/forms/filtersets.py:372 -#: netbox/dcim/forms/filtersets.py:494 netbox/dcim/forms/filtersets.py:619 -#: netbox/dcim/forms/filtersets.py:700 netbox/dcim/forms/filtersets.py:782 -#: netbox/dcim/forms/filtersets.py:947 netbox/dcim/forms/filtersets.py:1539 -#: netbox/dcim/forms/model_forms.py:207 netbox/dcim/forms/model_forms.py:337 -#: netbox/dcim/forms/model_forms.py:349 netbox/dcim/forms/model_forms.py:395 -#: netbox/dcim/forms/model_forms.py:436 netbox/dcim/forms/model_forms.py:1075 -#: netbox/dcim/forms/model_forms.py:1515 -#: netbox/dcim/forms/object_import.py:187 netbox/dcim/tables/devices.py:96 -#: netbox/dcim/tables/devices.py:172 netbox/dcim/tables/devices.py:940 -#: netbox/dcim/tables/devicetypes.py:80 netbox/dcim/tables/devicetypes.py:308 -#: netbox/dcim/tables/modules.py:20 netbox/dcim/tables/modules.py:60 -#: netbox/dcim/tables/racks.py:58 netbox/dcim/tables/racks.py:132 -#: netbox/templates/dcim/devicetype.html:14 -#: netbox/templates/dcim/inventoryitem.html:44 -#: netbox/templates/dcim/manufacturer.html:33 -#: netbox/templates/dcim/modulebay.html:62 -#: netbox/templates/dcim/moduletype.html:14 -#: netbox/templates/dcim/platform.html:37 -#: netbox/templates/dcim/racktype.html:16 +#: dcim/forms/bulk_edit.py:224 dcim/forms/bulk_edit.py:495 +#: dcim/forms/bulk_edit.py:559 dcim/forms/bulk_edit.py:632 +#: dcim/forms/bulk_edit.py:656 dcim/forms/bulk_edit.py:740 +#: dcim/forms/bulk_edit.py:1267 dcim/forms/bulk_edit.py:1660 +#: dcim/forms/bulk_import.py:182 dcim/forms/bulk_import.py:371 +#: dcim/forms/bulk_import.py:405 dcim/forms/bulk_import.py:450 +#: dcim/forms/bulk_import.py:486 dcim/forms/bulk_import.py:1082 +#: dcim/forms/filtersets.py:313 dcim/forms/filtersets.py:372 +#: dcim/forms/filtersets.py:494 dcim/forms/filtersets.py:619 +#: dcim/forms/filtersets.py:700 dcim/forms/filtersets.py:782 +#: dcim/forms/filtersets.py:947 dcim/forms/filtersets.py:1539 +#: dcim/forms/model_forms.py:207 dcim/forms/model_forms.py:337 +#: dcim/forms/model_forms.py:349 dcim/forms/model_forms.py:395 +#: dcim/forms/model_forms.py:436 dcim/forms/model_forms.py:1075 +#: dcim/forms/model_forms.py:1515 dcim/forms/object_import.py:187 +#: dcim/tables/devices.py:96 dcim/tables/devices.py:172 +#: dcim/tables/devices.py:940 dcim/tables/devicetypes.py:80 +#: dcim/tables/devicetypes.py:308 dcim/tables/modules.py:20 +#: dcim/tables/modules.py:60 dcim/tables/racks.py:58 dcim/tables/racks.py:132 +#: templates/dcim/devicetype.html:14 templates/dcim/inventoryitem.html:44 +#: templates/dcim/manufacturer.html:33 templates/dcim/modulebay.html:62 +#: templates/dcim/moduletype.html:25 templates/dcim/platform.html:37 +#: templates/dcim/racktype.html:16 msgid "Manufacturer" msgstr "メーカ" -#: netbox/dcim/forms/bulk_edit.py:229 netbox/dcim/forms/bulk_edit.py:372 -#: netbox/dcim/forms/bulk_import.py:191 netbox/dcim/forms/bulk_import.py:263 -#: netbox/dcim/forms/filtersets.py:255 -#: netbox/templates/dcim/inc/panels/racktype_dimensions.html:6 +#: dcim/forms/bulk_edit.py:229 dcim/forms/bulk_edit.py:372 +#: dcim/forms/bulk_import.py:191 dcim/forms/bulk_import.py:263 +#: dcim/forms/filtersets.py:255 +#: templates/dcim/inc/panels/racktype_dimensions.html:6 msgid "Form factor" msgstr "フォームファクタ" -#: netbox/dcim/forms/bulk_edit.py:234 netbox/dcim/forms/bulk_edit.py:377 -#: netbox/dcim/forms/bulk_import.py:199 netbox/dcim/forms/bulk_import.py:266 -#: netbox/dcim/forms/filtersets.py:260 -#: netbox/templates/dcim/inc/panels/racktype_dimensions.html:10 +#: dcim/forms/bulk_edit.py:234 dcim/forms/bulk_edit.py:377 +#: dcim/forms/bulk_import.py:199 dcim/forms/bulk_import.py:266 +#: dcim/forms/filtersets.py:260 +#: templates/dcim/inc/panels/racktype_dimensions.html:10 msgid "Width" msgstr "幅" -#: netbox/dcim/forms/bulk_edit.py:240 netbox/dcim/forms/bulk_edit.py:383 -#: netbox/templates/dcim/devicetype.html:37 +#: dcim/forms/bulk_edit.py:240 dcim/forms/bulk_edit.py:383 +#: templates/dcim/devicetype.html:37 msgid "Height (U)" msgstr "高さ (U)" -#: netbox/dcim/forms/bulk_edit.py:249 netbox/dcim/forms/bulk_edit.py:388 -#: netbox/dcim/forms/filtersets.py:274 +#: dcim/forms/bulk_edit.py:249 dcim/forms/bulk_edit.py:388 +#: dcim/forms/filtersets.py:274 msgid "Descending units" msgstr "降順" -#: netbox/dcim/forms/bulk_edit.py:252 netbox/dcim/forms/bulk_edit.py:391 +#: dcim/forms/bulk_edit.py:252 dcim/forms/bulk_edit.py:391 msgid "Outer width" msgstr "外形の幅" -#: netbox/dcim/forms/bulk_edit.py:257 netbox/dcim/forms/bulk_edit.py:396 +#: dcim/forms/bulk_edit.py:257 dcim/forms/bulk_edit.py:396 msgid "Outer depth" msgstr "外形の奥行" -#: netbox/dcim/forms/bulk_edit.py:262 netbox/dcim/forms/bulk_edit.py:401 -#: netbox/dcim/forms/bulk_import.py:204 netbox/dcim/forms/bulk_import.py:271 +#: dcim/forms/bulk_edit.py:262 dcim/forms/bulk_edit.py:401 +#: dcim/forms/bulk_import.py:204 dcim/forms/bulk_import.py:271 msgid "Outer unit" msgstr "外形の単位" -#: netbox/dcim/forms/bulk_edit.py:267 netbox/dcim/forms/bulk_edit.py:406 +#: dcim/forms/bulk_edit.py:267 dcim/forms/bulk_edit.py:406 msgid "Mounting depth" msgstr "取り付け奥行き" -#: netbox/dcim/forms/bulk_edit.py:272 netbox/dcim/forms/bulk_edit.py:299 -#: netbox/dcim/forms/bulk_edit.py:416 netbox/dcim/forms/bulk_edit.py:446 -#: netbox/dcim/forms/bulk_edit.py:529 netbox/dcim/forms/bulk_edit.py:552 -#: netbox/dcim/forms/bulk_edit.py:573 netbox/dcim/forms/bulk_edit.py:595 -#: netbox/dcim/forms/bulk_import.py:384 netbox/dcim/forms/bulk_import.py:416 -#: netbox/dcim/forms/filtersets.py:285 netbox/dcim/forms/filtersets.py:307 -#: netbox/dcim/forms/filtersets.py:327 netbox/dcim/forms/filtersets.py:401 -#: netbox/dcim/forms/filtersets.py:488 netbox/dcim/forms/filtersets.py:594 -#: netbox/dcim/forms/filtersets.py:613 netbox/dcim/forms/filtersets.py:674 -#: netbox/dcim/forms/model_forms.py:221 netbox/dcim/forms/model_forms.py:298 -#: netbox/dcim/tables/devicetypes.py:106 netbox/dcim/tables/modules.py:35 -#: netbox/dcim/tables/racks.py:74 netbox/dcim/tables/racks.py:172 -#: netbox/extras/forms/bulk_edit.py:53 netbox/extras/forms/bulk_edit.py:133 -#: netbox/extras/forms/bulk_edit.py:183 netbox/extras/forms/bulk_edit.py:288 -#: netbox/extras/forms/filtersets.py:64 netbox/extras/forms/filtersets.py:156 -#: netbox/extras/forms/filtersets.py:243 netbox/ipam/forms/bulk_edit.py:189 -#: netbox/templates/dcim/device.html:324 -#: netbox/templates/dcim/devicetype.html:49 -#: netbox/templates/dcim/moduletype.html:34 netbox/templates/dcim/rack.html:81 -#: netbox/templates/dcim/racktype.html:41 -#: netbox/templates/extras/configcontext.html:17 -#: netbox/templates/extras/customlink.html:25 -#: netbox/templates/extras/savedfilter.html:33 -#: netbox/templates/ipam/role.html:30 +#: dcim/forms/bulk_edit.py:272 dcim/forms/bulk_edit.py:299 +#: dcim/forms/bulk_edit.py:416 dcim/forms/bulk_edit.py:446 +#: dcim/forms/bulk_edit.py:529 dcim/forms/bulk_edit.py:552 +#: dcim/forms/bulk_edit.py:573 dcim/forms/bulk_edit.py:595 +#: dcim/forms/bulk_import.py:384 dcim/forms/bulk_import.py:416 +#: dcim/forms/filtersets.py:285 dcim/forms/filtersets.py:307 +#: dcim/forms/filtersets.py:327 dcim/forms/filtersets.py:401 +#: dcim/forms/filtersets.py:488 dcim/forms/filtersets.py:594 +#: dcim/forms/filtersets.py:613 dcim/forms/filtersets.py:674 +#: dcim/forms/model_forms.py:221 dcim/forms/model_forms.py:298 +#: dcim/tables/devicetypes.py:106 dcim/tables/modules.py:35 +#: dcim/tables/racks.py:74 dcim/tables/racks.py:172 +#: extras/forms/bulk_edit.py:53 extras/forms/bulk_edit.py:133 +#: extras/forms/bulk_edit.py:183 extras/forms/bulk_edit.py:288 +#: extras/forms/filtersets.py:64 extras/forms/filtersets.py:156 +#: extras/forms/filtersets.py:243 ipam/forms/bulk_edit.py:190 +#: templates/dcim/device.html:324 templates/dcim/devicetype.html:49 +#: templates/dcim/moduletype.html:45 templates/dcim/rack.html:81 +#: templates/dcim/racktype.html:41 templates/extras/configcontext.html:17 +#: templates/extras/customlink.html:25 templates/extras/savedfilter.html:33 +#: templates/ipam/role.html:30 msgid "Weight" msgstr "重量" -#: netbox/dcim/forms/bulk_edit.py:277 netbox/dcim/forms/bulk_edit.py:421 -#: netbox/dcim/forms/filtersets.py:290 +#: dcim/forms/bulk_edit.py:277 dcim/forms/bulk_edit.py:421 +#: dcim/forms/filtersets.py:290 msgid "Max weight" msgstr "最大重量" -#: netbox/dcim/forms/bulk_edit.py:282 netbox/dcim/forms/bulk_edit.py:426 -#: netbox/dcim/forms/bulk_edit.py:534 netbox/dcim/forms/bulk_edit.py:578 -#: netbox/dcim/forms/bulk_import.py:210 netbox/dcim/forms/bulk_import.py:283 -#: netbox/dcim/forms/bulk_import.py:389 netbox/dcim/forms/bulk_import.py:421 -#: netbox/dcim/forms/filtersets.py:295 netbox/dcim/forms/filtersets.py:598 -#: netbox/dcim/forms/filtersets.py:678 +#: dcim/forms/bulk_edit.py:282 dcim/forms/bulk_edit.py:426 +#: dcim/forms/bulk_edit.py:534 dcim/forms/bulk_edit.py:578 +#: dcim/forms/bulk_import.py:210 dcim/forms/bulk_import.py:283 +#: dcim/forms/bulk_import.py:389 dcim/forms/bulk_import.py:421 +#: dcim/forms/filtersets.py:295 dcim/forms/filtersets.py:598 +#: dcim/forms/filtersets.py:678 msgid "Weight unit" msgstr "重量単位" -#: netbox/dcim/forms/bulk_edit.py:296 netbox/dcim/forms/filtersets.py:305 -#: netbox/dcim/forms/model_forms.py:217 netbox/dcim/forms/model_forms.py:256 -#: netbox/templates/dcim/rack.html:45 netbox/templates/dcim/racktype.html:13 +#: dcim/forms/bulk_edit.py:296 dcim/forms/filtersets.py:305 +#: dcim/forms/model_forms.py:217 dcim/forms/model_forms.py:256 +#: templates/dcim/rack.html:45 templates/dcim/racktype.html:13 msgid "Rack Type" msgstr "ラックタイプ" -#: netbox/dcim/forms/bulk_edit.py:298 netbox/dcim/forms/model_forms.py:220 -#: netbox/dcim/forms/model_forms.py:297 +#: dcim/forms/bulk_edit.py:298 dcim/forms/model_forms.py:220 +#: dcim/forms/model_forms.py:297 msgid "Outer Dimensions" msgstr "外形寸法" -#: netbox/dcim/forms/bulk_edit.py:301 netbox/dcim/forms/model_forms.py:222 -#: netbox/dcim/forms/model_forms.py:299 netbox/templates/dcim/device.html:315 -#: netbox/templates/dcim/inc/panels/racktype_dimensions.html:3 +#: dcim/forms/bulk_edit.py:301 dcim/forms/model_forms.py:222 +#: dcim/forms/model_forms.py:299 templates/dcim/device.html:315 +#: templates/dcim/inc/panels/racktype_dimensions.html:3 msgid "Dimensions" msgstr "寸法" -#: netbox/dcim/forms/bulk_edit.py:303 netbox/dcim/forms/filtersets.py:306 -#: netbox/dcim/forms/filtersets.py:326 netbox/dcim/forms/model_forms.py:224 -#: netbox/templates/dcim/inc/panels/racktype_numbering.html:3 +#: dcim/forms/bulk_edit.py:303 dcim/forms/filtersets.py:306 +#: dcim/forms/filtersets.py:326 dcim/forms/model_forms.py:224 +#: templates/dcim/inc/panels/racktype_numbering.html:3 msgid "Numbering" msgstr "ナンバリング" -#: netbox/dcim/forms/bulk_edit.py:357 netbox/dcim/forms/bulk_edit.py:1262 -#: netbox/dcim/forms/bulk_edit.py:1655 netbox/dcim/forms/bulk_import.py:253 -#: netbox/dcim/forms/bulk_import.py:1076 netbox/dcim/forms/filtersets.py:367 -#: netbox/dcim/forms/filtersets.py:777 netbox/dcim/forms/filtersets.py:1534 -#: netbox/dcim/forms/model_forms.py:251 netbox/dcim/forms/model_forms.py:1070 -#: netbox/dcim/forms/model_forms.py:1510 -#: netbox/dcim/forms/object_import.py:181 netbox/dcim/tables/devices.py:169 -#: netbox/dcim/tables/devices.py:809 netbox/dcim/tables/devices.py:937 -#: netbox/dcim/tables/devicetypes.py:304 netbox/dcim/tables/racks.py:129 -#: netbox/extras/filtersets.py:552 netbox/ipam/forms/bulk_edit.py:260 -#: netbox/ipam/forms/bulk_edit.py:310 netbox/ipam/forms/bulk_edit.py:358 -#: netbox/ipam/forms/bulk_edit.py:556 netbox/ipam/forms/bulk_import.py:197 -#: netbox/ipam/forms/bulk_import.py:262 netbox/ipam/forms/bulk_import.py:298 -#: netbox/ipam/forms/bulk_import.py:455 netbox/ipam/forms/filtersets.py:237 -#: netbox/ipam/forms/filtersets.py:289 netbox/ipam/forms/filtersets.py:360 -#: netbox/ipam/forms/filtersets.py:509 netbox/ipam/forms/model_forms.py:188 -#: netbox/ipam/forms/model_forms.py:221 netbox/ipam/forms/model_forms.py:250 -#: netbox/ipam/forms/model_forms.py:643 netbox/ipam/tables/ip.py:258 -#: netbox/ipam/tables/ip.py:316 netbox/ipam/tables/ip.py:367 -#: netbox/ipam/tables/vlans.py:130 netbox/ipam/tables/vlans.py:235 -#: netbox/templates/dcim/device.html:182 -#: netbox/templates/dcim/inc/panels/inventory_items.html:20 -#: netbox/templates/dcim/interface.html:223 -#: netbox/templates/dcim/inventoryitem.html:36 -#: netbox/templates/dcim/rack.html:49 netbox/templates/ipam/ipaddress.html:41 -#: netbox/templates/ipam/iprange.html:50 netbox/templates/ipam/prefix.html:77 -#: netbox/templates/ipam/role.html:19 netbox/templates/ipam/vlan.html:52 -#: netbox/templates/virtualization/virtualmachine.html:23 -#: netbox/templates/vpn/tunneltermination.html:17 -#: netbox/templates/wireless/inc/wirelesslink_interface.html:20 -#: netbox/tenancy/forms/bulk_edit.py:142 -#: netbox/tenancy/forms/filtersets.py:107 -#: netbox/tenancy/forms/model_forms.py:137 -#: netbox/tenancy/tables/contacts.py:102 -#: netbox/virtualization/forms/bulk_edit.py:145 -#: netbox/virtualization/forms/bulk_import.py:106 -#: netbox/virtualization/forms/filtersets.py:157 -#: netbox/virtualization/forms/model_forms.py:195 -#: netbox/virtualization/tables/virtualmachines.py:75 -#: netbox/vpn/forms/bulk_edit.py:87 netbox/vpn/forms/bulk_import.py:81 -#: netbox/vpn/forms/filtersets.py:85 netbox/vpn/forms/model_forms.py:78 -#: netbox/vpn/forms/model_forms.py:113 netbox/vpn/tables/tunnels.py:82 +#: dcim/forms/bulk_edit.py:357 dcim/forms/bulk_edit.py:1262 +#: dcim/forms/bulk_edit.py:1655 dcim/forms/bulk_import.py:253 +#: dcim/forms/bulk_import.py:1076 dcim/forms/filtersets.py:367 +#: dcim/forms/filtersets.py:777 dcim/forms/filtersets.py:1534 +#: dcim/forms/model_forms.py:251 dcim/forms/model_forms.py:1070 +#: dcim/forms/model_forms.py:1510 dcim/forms/object_import.py:181 +#: dcim/tables/devices.py:169 dcim/tables/devices.py:809 +#: dcim/tables/devices.py:937 dcim/tables/devicetypes.py:304 +#: dcim/tables/racks.py:129 extras/filtersets.py:552 +#: ipam/forms/bulk_edit.py:261 ipam/forms/bulk_edit.py:311 +#: ipam/forms/bulk_edit.py:359 ipam/forms/bulk_edit.py:511 +#: ipam/forms/bulk_import.py:197 ipam/forms/bulk_import.py:262 +#: ipam/forms/bulk_import.py:298 ipam/forms/bulk_import.py:455 +#: ipam/forms/filtersets.py:237 ipam/forms/filtersets.py:289 +#: ipam/forms/filtersets.py:360 ipam/forms/filtersets.py:509 +#: ipam/forms/model_forms.py:188 ipam/forms/model_forms.py:221 +#: ipam/forms/model_forms.py:250 ipam/forms/model_forms.py:643 +#: ipam/tables/ip.py:258 ipam/tables/ip.py:316 ipam/tables/ip.py:367 +#: ipam/tables/vlans.py:130 ipam/tables/vlans.py:235 +#: templates/dcim/device.html:182 +#: templates/dcim/inc/panels/inventory_items.html:20 +#: templates/dcim/interface.html:223 templates/dcim/inventoryitem.html:36 +#: templates/dcim/rack.html:49 templates/ipam/ipaddress.html:41 +#: templates/ipam/iprange.html:50 templates/ipam/prefix.html:77 +#: templates/ipam/role.html:19 templates/ipam/vlan.html:52 +#: templates/virtualization/virtualmachine.html:23 +#: templates/vpn/tunneltermination.html:17 +#: templates/wireless/inc/wirelesslink_interface.html:20 +#: tenancy/forms/bulk_edit.py:142 tenancy/forms/filtersets.py:107 +#: tenancy/forms/model_forms.py:137 tenancy/tables/contacts.py:102 +#: virtualization/forms/bulk_edit.py:145 +#: virtualization/forms/bulk_import.py:106 +#: virtualization/forms/filtersets.py:157 +#: virtualization/forms/model_forms.py:195 +#: virtualization/tables/virtualmachines.py:75 vpn/forms/bulk_edit.py:87 +#: vpn/forms/bulk_import.py:81 vpn/forms/filtersets.py:85 +#: vpn/forms/model_forms.py:78 vpn/forms/model_forms.py:113 +#: vpn/tables/tunnels.py:82 msgid "Role" msgstr "ロール" -#: netbox/dcim/forms/bulk_edit.py:364 netbox/dcim/forms/bulk_edit.py:712 -#: netbox/dcim/forms/bulk_edit.py:764 netbox/templates/dcim/device.html:104 -#: netbox/templates/dcim/module.html:77 -#: netbox/templates/dcim/modulebay.html:70 netbox/templates/dcim/rack.html:57 -#: netbox/templates/virtualization/virtualmachine.html:35 +#: dcim/forms/bulk_edit.py:364 dcim/forms/bulk_edit.py:712 +#: dcim/forms/bulk_edit.py:764 templates/dcim/device.html:104 +#: templates/dcim/module.html:77 templates/dcim/modulebay.html:70 +#: templates/dcim/rack.html:57 templates/virtualization/virtualmachine.html:35 msgid "Serial Number" msgstr "シリアル番号" -#: netbox/dcim/forms/bulk_edit.py:367 netbox/dcim/forms/filtersets.py:387 -#: netbox/dcim/forms/filtersets.py:813 netbox/dcim/forms/filtersets.py:967 -#: netbox/dcim/forms/filtersets.py:1546 +#: dcim/forms/bulk_edit.py:367 dcim/forms/filtersets.py:387 +#: dcim/forms/filtersets.py:813 dcim/forms/filtersets.py:967 +#: dcim/forms/filtersets.py:1546 msgid "Asset tag" msgstr "アセットタグ" -#: netbox/dcim/forms/bulk_edit.py:411 netbox/dcim/forms/bulk_edit.py:524 -#: netbox/dcim/forms/bulk_edit.py:568 netbox/dcim/forms/bulk_edit.py:705 -#: netbox/dcim/forms/bulk_import.py:277 netbox/dcim/forms/bulk_import.py:410 -#: netbox/dcim/forms/bulk_import.py:580 netbox/dcim/forms/filtersets.py:280 -#: netbox/dcim/forms/filtersets.py:511 netbox/dcim/forms/filtersets.py:669 -#: netbox/dcim/forms/filtersets.py:804 netbox/templates/dcim/device.html:98 -#: netbox/templates/dcim/devicetype.html:65 -#: netbox/templates/dcim/moduletype.html:30 netbox/templates/dcim/rack.html:65 -#: netbox/templates/dcim/racktype.html:28 +#: dcim/forms/bulk_edit.py:411 dcim/forms/bulk_edit.py:524 +#: dcim/forms/bulk_edit.py:568 dcim/forms/bulk_edit.py:705 +#: dcim/forms/bulk_import.py:277 dcim/forms/bulk_import.py:410 +#: dcim/forms/bulk_import.py:580 dcim/forms/filtersets.py:280 +#: dcim/forms/filtersets.py:511 dcim/forms/filtersets.py:669 +#: dcim/forms/filtersets.py:804 templates/dcim/device.html:98 +#: templates/dcim/devicetype.html:65 templates/dcim/moduletype.html:41 +#: templates/dcim/rack.html:65 templates/dcim/racktype.html:28 msgid "Airflow" msgstr "エアフロー" -#: netbox/dcim/forms/bulk_edit.py:440 netbox/dcim/forms/bulk_edit.py:910 -#: netbox/dcim/forms/bulk_import.py:322 netbox/dcim/forms/bulk_import.py:325 -#: netbox/dcim/forms/bulk_import.py:553 netbox/dcim/forms/bulk_import.py:1358 -#: netbox/dcim/forms/bulk_import.py:1362 netbox/dcim/forms/filtersets.py:104 -#: netbox/dcim/forms/filtersets.py:324 netbox/dcim/forms/filtersets.py:405 -#: netbox/dcim/forms/filtersets.py:419 netbox/dcim/forms/filtersets.py:457 -#: netbox/dcim/forms/filtersets.py:772 netbox/dcim/forms/filtersets.py:1035 -#: netbox/dcim/forms/filtersets.py:1167 netbox/dcim/forms/model_forms.py:264 -#: netbox/dcim/forms/model_forms.py:306 netbox/dcim/forms/model_forms.py:479 -#: netbox/dcim/forms/model_forms.py:755 netbox/dcim/forms/object_create.py:400 -#: netbox/dcim/tables/devices.py:161 netbox/dcim/tables/power.py:70 -#: netbox/dcim/tables/racks.py:217 netbox/ipam/forms/bulk_edit.py:468 -#: netbox/ipam/forms/filtersets.py:442 netbox/templates/dcim/device.html:30 -#: netbox/templates/dcim/inc/cable_termination.html:16 -#: netbox/templates/dcim/powerfeed.html:28 netbox/templates/dcim/rack.html:13 -#: netbox/templates/dcim/rack/base.html:4 -#: netbox/templates/dcim/rackreservation.html:19 -#: netbox/templates/dcim/rackreservation.html:36 -#: netbox/virtualization/forms/model_forms.py:113 +#: dcim/forms/bulk_edit.py:440 dcim/forms/bulk_edit.py:910 +#: dcim/forms/bulk_import.py:322 dcim/forms/bulk_import.py:325 +#: dcim/forms/bulk_import.py:553 dcim/forms/bulk_import.py:1358 +#: dcim/forms/bulk_import.py:1362 dcim/forms/filtersets.py:104 +#: dcim/forms/filtersets.py:324 dcim/forms/filtersets.py:405 +#: dcim/forms/filtersets.py:419 dcim/forms/filtersets.py:457 +#: dcim/forms/filtersets.py:772 dcim/forms/filtersets.py:1035 +#: dcim/forms/filtersets.py:1167 dcim/forms/model_forms.py:264 +#: dcim/forms/model_forms.py:306 dcim/forms/model_forms.py:479 +#: dcim/forms/model_forms.py:755 dcim/forms/object_create.py:400 +#: dcim/tables/devices.py:161 dcim/tables/power.py:70 dcim/tables/racks.py:217 +#: ipam/forms/filtersets.py:442 templates/dcim/device.html:30 +#: templates/dcim/inc/cable_termination.html:16 +#: templates/dcim/powerfeed.html:28 templates/dcim/rack.html:13 +#: templates/dcim/rack/base.html:4 templates/dcim/rackreservation.html:19 +#: templates/dcim/rackreservation.html:36 +#: virtualization/forms/model_forms.py:113 msgid "Rack" msgstr "ラック" -#: netbox/dcim/forms/bulk_edit.py:444 netbox/dcim/forms/bulk_edit.py:730 -#: netbox/dcim/forms/filtersets.py:325 netbox/dcim/forms/filtersets.py:398 -#: netbox/dcim/forms/filtersets.py:481 netbox/dcim/forms/filtersets.py:608 -#: netbox/dcim/forms/filtersets.py:721 netbox/dcim/forms/filtersets.py:942 -#: netbox/dcim/forms/model_forms.py:670 netbox/dcim/forms/model_forms.py:1580 -#: netbox/templates/dcim/device_edit.html:20 +#: dcim/forms/bulk_edit.py:444 dcim/forms/bulk_edit.py:730 +#: dcim/forms/filtersets.py:325 dcim/forms/filtersets.py:398 +#: dcim/forms/filtersets.py:481 dcim/forms/filtersets.py:608 +#: dcim/forms/filtersets.py:721 dcim/forms/filtersets.py:942 +#: dcim/forms/model_forms.py:670 dcim/forms/model_forms.py:1580 +#: templates/dcim/device_edit.html:20 msgid "Hardware" msgstr "ハードウェア" -#: netbox/dcim/forms/bulk_edit.py:500 netbox/dcim/forms/bulk_import.py:377 -#: netbox/dcim/forms/filtersets.py:499 netbox/dcim/forms/model_forms.py:353 +#: dcim/forms/bulk_edit.py:500 dcim/forms/bulk_import.py:377 +#: dcim/forms/filtersets.py:499 dcim/forms/model_forms.py:353 msgid "Default platform" msgstr "デフォルトプラットフォーム" -#: netbox/dcim/forms/bulk_edit.py:505 netbox/dcim/forms/bulk_edit.py:564 -#: netbox/dcim/forms/filtersets.py:502 netbox/dcim/forms/filtersets.py:622 +#: dcim/forms/bulk_edit.py:505 dcim/forms/bulk_edit.py:564 +#: dcim/forms/filtersets.py:502 dcim/forms/filtersets.py:622 msgid "Part number" msgstr "パーツ番号" -#: netbox/dcim/forms/bulk_edit.py:509 +#: dcim/forms/bulk_edit.py:509 msgid "U height" msgstr "ユニット数" -#: netbox/dcim/forms/bulk_edit.py:521 netbox/dcim/tables/devicetypes.py:102 +#: dcim/forms/bulk_edit.py:521 dcim/tables/devicetypes.py:102 msgid "Exclude from utilization" msgstr "ラック利用率に含めない" -#: netbox/dcim/forms/bulk_edit.py:550 netbox/dcim/forms/model_forms.py:368 -#: netbox/dcim/tables/devicetypes.py:77 netbox/templates/dcim/device.html:88 -#: netbox/templates/dcim/devicebay.html:52 -#: netbox/templates/dcim/module.html:61 +#: dcim/forms/bulk_edit.py:550 dcim/forms/model_forms.py:368 +#: dcim/tables/devicetypes.py:77 templates/dcim/device.html:88 +#: templates/dcim/devicebay.html:52 templates/dcim/module.html:61 msgid "Device Type" msgstr "デバイスタイプ" -#: netbox/dcim/forms/bulk_edit.py:592 netbox/dcim/forms/model_forms.py:401 -#: netbox/dcim/tables/modules.py:17 netbox/dcim/tables/modules.py:65 -#: netbox/templates/dcim/module.html:65 -#: netbox/templates/dcim/modulebay.html:66 -#: netbox/templates/dcim/moduletype.html:11 +#: dcim/forms/bulk_edit.py:592 dcim/forms/model_forms.py:401 +#: dcim/tables/modules.py:17 dcim/tables/modules.py:65 +#: templates/dcim/module.html:65 templates/dcim/modulebay.html:66 +#: templates/dcim/moduletype.html:22 msgid "Module Type" msgstr "モジュールタイプ" -#: netbox/dcim/forms/bulk_edit.py:596 netbox/dcim/forms/model_forms.py:371 -#: netbox/dcim/forms/model_forms.py:402 -#: netbox/templates/dcim/devicetype.html:11 +#: dcim/forms/bulk_edit.py:596 dcim/forms/model_forms.py:371 +#: dcim/forms/model_forms.py:402 templates/dcim/devicetype.html:11 msgid "Chassis" msgstr "シャーシ" -#: netbox/dcim/forms/bulk_edit.py:610 netbox/dcim/models/devices.py:484 -#: netbox/dcim/tables/devices.py:67 +#: dcim/forms/bulk_edit.py:610 dcim/models/devices.py:484 +#: dcim/tables/devices.py:67 msgid "VM role" msgstr "VMのロール" -#: netbox/dcim/forms/bulk_edit.py:613 netbox/dcim/forms/bulk_edit.py:637 -#: netbox/dcim/forms/bulk_edit.py:720 netbox/dcim/forms/bulk_import.py:434 -#: netbox/dcim/forms/bulk_import.py:438 netbox/dcim/forms/bulk_import.py:457 -#: netbox/dcim/forms/bulk_import.py:461 netbox/dcim/forms/bulk_import.py:586 -#: netbox/dcim/forms/bulk_import.py:590 netbox/dcim/forms/filtersets.py:689 -#: netbox/dcim/forms/filtersets.py:705 netbox/dcim/forms/filtersets.py:823 -#: netbox/dcim/forms/model_forms.py:415 netbox/dcim/forms/model_forms.py:441 -#: netbox/dcim/forms/model_forms.py:555 -#: netbox/virtualization/forms/bulk_import.py:132 -#: netbox/virtualization/forms/bulk_import.py:133 -#: netbox/virtualization/forms/filtersets.py:188 -#: netbox/virtualization/forms/model_forms.py:215 +#: dcim/forms/bulk_edit.py:613 dcim/forms/bulk_edit.py:637 +#: dcim/forms/bulk_edit.py:720 dcim/forms/bulk_import.py:434 +#: dcim/forms/bulk_import.py:438 dcim/forms/bulk_import.py:457 +#: dcim/forms/bulk_import.py:461 dcim/forms/bulk_import.py:586 +#: dcim/forms/bulk_import.py:590 dcim/forms/filtersets.py:689 +#: dcim/forms/filtersets.py:705 dcim/forms/filtersets.py:823 +#: dcim/forms/model_forms.py:415 dcim/forms/model_forms.py:441 +#: dcim/forms/model_forms.py:555 virtualization/forms/bulk_import.py:132 +#: virtualization/forms/bulk_import.py:133 +#: virtualization/forms/filtersets.py:188 +#: virtualization/forms/model_forms.py:215 msgid "Config template" msgstr "設定テンプレート" -#: netbox/dcim/forms/bulk_edit.py:661 netbox/dcim/forms/bulk_edit.py:1061 -#: netbox/dcim/forms/bulk_import.py:492 netbox/dcim/forms/filtersets.py:114 -#: netbox/dcim/forms/model_forms.py:501 netbox/dcim/forms/model_forms.py:872 -#: netbox/dcim/forms/model_forms.py:889 netbox/extras/filtersets.py:547 +#: dcim/forms/bulk_edit.py:661 dcim/forms/bulk_edit.py:1061 +#: dcim/forms/bulk_import.py:492 dcim/forms/filtersets.py:114 +#: dcim/forms/model_forms.py:501 dcim/forms/model_forms.py:872 +#: dcim/forms/model_forms.py:889 extras/filtersets.py:547 msgid "Device type" msgstr "デバイスタイプ" -#: netbox/dcim/forms/bulk_edit.py:672 netbox/dcim/forms/bulk_import.py:473 -#: netbox/dcim/forms/filtersets.py:119 netbox/dcim/forms/model_forms.py:509 +#: dcim/forms/bulk_edit.py:672 dcim/forms/bulk_import.py:473 +#: dcim/forms/filtersets.py:119 dcim/forms/model_forms.py:509 msgid "Device role" msgstr "デバイスロール" -#: netbox/dcim/forms/bulk_edit.py:695 netbox/dcim/forms/bulk_import.py:498 -#: netbox/dcim/forms/filtersets.py:796 netbox/dcim/forms/model_forms.py:451 -#: netbox/dcim/forms/model_forms.py:513 netbox/dcim/tables/devices.py:182 -#: netbox/extras/filtersets.py:563 netbox/templates/dcim/device.html:186 -#: netbox/templates/dcim/platform.html:26 -#: netbox/templates/virtualization/virtualmachine.html:27 -#: netbox/virtualization/forms/bulk_edit.py:160 -#: netbox/virtualization/forms/bulk_import.py:122 -#: netbox/virtualization/forms/filtersets.py:168 -#: netbox/virtualization/forms/model_forms.py:203 -#: netbox/virtualization/tables/virtualmachines.py:79 +#: dcim/forms/bulk_edit.py:695 dcim/forms/bulk_import.py:498 +#: dcim/forms/filtersets.py:796 dcim/forms/model_forms.py:451 +#: dcim/forms/model_forms.py:513 dcim/tables/devices.py:182 +#: extras/filtersets.py:563 templates/dcim/device.html:186 +#: templates/dcim/platform.html:26 +#: templates/virtualization/virtualmachine.html:27 +#: virtualization/forms/bulk_edit.py:160 +#: virtualization/forms/bulk_import.py:122 +#: virtualization/forms/filtersets.py:168 +#: virtualization/forms/model_forms.py:203 +#: virtualization/tables/virtualmachines.py:79 msgid "Platform" msgstr "プラットフォーム" -#: netbox/dcim/forms/bulk_edit.py:728 netbox/dcim/forms/bulk_edit.py:1281 -#: netbox/dcim/forms/bulk_edit.py:1650 netbox/dcim/forms/bulk_edit.py:1696 -#: netbox/dcim/forms/bulk_import.py:641 netbox/dcim/forms/bulk_import.py:703 -#: netbox/dcim/forms/bulk_import.py:729 netbox/dcim/forms/bulk_import.py:755 -#: netbox/dcim/forms/bulk_import.py:775 netbox/dcim/forms/bulk_import.py:828 -#: netbox/dcim/forms/bulk_import.py:946 netbox/dcim/forms/bulk_import.py:994 -#: netbox/dcim/forms/bulk_import.py:1011 netbox/dcim/forms/bulk_import.py:1023 -#: netbox/dcim/forms/bulk_import.py:1071 netbox/dcim/forms/bulk_import.py:1422 -#: netbox/dcim/forms/connections.py:24 netbox/dcim/forms/filtersets.py:131 -#: netbox/dcim/forms/filtersets.py:921 netbox/dcim/forms/filtersets.py:1051 -#: netbox/dcim/forms/filtersets.py:1242 netbox/dcim/forms/filtersets.py:1267 -#: netbox/dcim/forms/filtersets.py:1291 netbox/dcim/forms/filtersets.py:1311 -#: netbox/dcim/forms/filtersets.py:1334 netbox/dcim/forms/filtersets.py:1444 -#: netbox/dcim/forms/filtersets.py:1469 netbox/dcim/forms/filtersets.py:1493 -#: netbox/dcim/forms/filtersets.py:1511 netbox/dcim/forms/filtersets.py:1528 -#: netbox/dcim/forms/filtersets.py:1592 netbox/dcim/forms/filtersets.py:1616 -#: netbox/dcim/forms/filtersets.py:1640 netbox/dcim/forms/model_forms.py:633 -#: netbox/dcim/forms/model_forms.py:849 netbox/dcim/forms/model_forms.py:1208 -#: netbox/dcim/forms/model_forms.py:1664 -#: netbox/dcim/forms/object_create.py:257 netbox/dcim/tables/connections.py:22 -#: netbox/dcim/tables/connections.py:41 netbox/dcim/tables/connections.py:60 -#: netbox/dcim/tables/devices.py:285 netbox/dcim/tables/devices.py:371 -#: netbox/dcim/tables/devices.py:412 netbox/dcim/tables/devices.py:454 -#: netbox/dcim/tables/devices.py:505 netbox/dcim/tables/devices.py:597 -#: netbox/dcim/tables/devices.py:697 netbox/dcim/tables/devices.py:754 -#: netbox/dcim/tables/devices.py:801 netbox/dcim/tables/devices.py:861 -#: netbox/dcim/tables/devices.py:930 netbox/dcim/tables/devices.py:1057 -#: netbox/dcim/tables/modules.py:52 netbox/extras/forms/filtersets.py:321 -#: netbox/ipam/forms/bulk_import.py:304 netbox/ipam/forms/bulk_import.py:481 -#: netbox/ipam/forms/filtersets.py:551 netbox/ipam/forms/model_forms.py:319 -#: netbox/ipam/forms/model_forms.py:679 netbox/ipam/forms/model_forms.py:712 -#: netbox/ipam/forms/model_forms.py:738 netbox/ipam/tables/vlans.py:180 -#: netbox/templates/dcim/consoleport.html:20 -#: netbox/templates/dcim/consoleserverport.html:20 -#: netbox/templates/dcim/device.html:15 netbox/templates/dcim/device.html:130 -#: netbox/templates/dcim/device_edit.html:10 -#: netbox/templates/dcim/devicebay.html:20 -#: netbox/templates/dcim/devicebay.html:48 -#: netbox/templates/dcim/frontport.html:20 -#: netbox/templates/dcim/interface.html:30 -#: netbox/templates/dcim/interface.html:161 -#: netbox/templates/dcim/inventoryitem.html:20 -#: netbox/templates/dcim/module.html:57 -#: netbox/templates/dcim/modulebay.html:20 -#: netbox/templates/dcim/poweroutlet.html:20 -#: netbox/templates/dcim/powerport.html:20 -#: netbox/templates/dcim/rearport.html:20 -#: netbox/templates/dcim/virtualchassis.html:65 -#: netbox/templates/dcim/virtualchassis_edit.html:51 -#: netbox/templates/dcim/virtualdevicecontext.html:22 -#: netbox/templates/virtualization/virtualmachine.html:114 -#: netbox/templates/vpn/tunneltermination.html:23 -#: netbox/templates/wireless/inc/wirelesslink_interface.html:6 -#: netbox/virtualization/filtersets.py:167 -#: netbox/virtualization/forms/bulk_edit.py:137 -#: netbox/virtualization/forms/bulk_import.py:99 -#: netbox/virtualization/forms/filtersets.py:128 -#: netbox/virtualization/forms/model_forms.py:185 -#: netbox/virtualization/tables/virtualmachines.py:71 netbox/vpn/choices.py:44 -#: netbox/vpn/forms/bulk_import.py:86 netbox/vpn/forms/bulk_import.py:283 -#: netbox/vpn/forms/filtersets.py:275 netbox/vpn/forms/model_forms.py:90 -#: netbox/vpn/forms/model_forms.py:125 netbox/vpn/forms/model_forms.py:236 -#: netbox/vpn/forms/model_forms.py:453 netbox/wireless/forms/model_forms.py:99 -#: netbox/wireless/forms/model_forms.py:141 -#: netbox/wireless/tables/wirelesslan.py:75 +#: dcim/forms/bulk_edit.py:728 dcim/forms/bulk_edit.py:1281 +#: dcim/forms/bulk_edit.py:1650 dcim/forms/bulk_edit.py:1696 +#: dcim/forms/bulk_import.py:641 dcim/forms/bulk_import.py:703 +#: dcim/forms/bulk_import.py:729 dcim/forms/bulk_import.py:755 +#: dcim/forms/bulk_import.py:775 dcim/forms/bulk_import.py:828 +#: dcim/forms/bulk_import.py:946 dcim/forms/bulk_import.py:994 +#: dcim/forms/bulk_import.py:1011 dcim/forms/bulk_import.py:1023 +#: dcim/forms/bulk_import.py:1071 dcim/forms/bulk_import.py:1422 +#: dcim/forms/connections.py:24 dcim/forms/filtersets.py:131 +#: dcim/forms/filtersets.py:921 dcim/forms/filtersets.py:1051 +#: dcim/forms/filtersets.py:1242 dcim/forms/filtersets.py:1267 +#: dcim/forms/filtersets.py:1291 dcim/forms/filtersets.py:1311 +#: dcim/forms/filtersets.py:1334 dcim/forms/filtersets.py:1444 +#: dcim/forms/filtersets.py:1469 dcim/forms/filtersets.py:1493 +#: dcim/forms/filtersets.py:1511 dcim/forms/filtersets.py:1528 +#: dcim/forms/filtersets.py:1592 dcim/forms/filtersets.py:1616 +#: dcim/forms/filtersets.py:1640 dcim/forms/model_forms.py:633 +#: dcim/forms/model_forms.py:849 dcim/forms/model_forms.py:1208 +#: dcim/forms/model_forms.py:1664 dcim/forms/object_create.py:257 +#: dcim/tables/connections.py:22 dcim/tables/connections.py:41 +#: dcim/tables/connections.py:60 dcim/tables/devices.py:285 +#: dcim/tables/devices.py:371 dcim/tables/devices.py:412 +#: dcim/tables/devices.py:454 dcim/tables/devices.py:505 +#: dcim/tables/devices.py:597 dcim/tables/devices.py:697 +#: dcim/tables/devices.py:754 dcim/tables/devices.py:801 +#: dcim/tables/devices.py:861 dcim/tables/devices.py:930 +#: dcim/tables/devices.py:1057 dcim/tables/modules.py:52 +#: extras/forms/filtersets.py:321 ipam/forms/bulk_import.py:304 +#: ipam/forms/bulk_import.py:481 ipam/forms/filtersets.py:551 +#: ipam/forms/model_forms.py:319 ipam/forms/model_forms.py:679 +#: ipam/forms/model_forms.py:712 ipam/forms/model_forms.py:738 +#: ipam/tables/vlans.py:180 templates/dcim/consoleport.html:20 +#: templates/dcim/consoleserverport.html:20 templates/dcim/device.html:15 +#: templates/dcim/device.html:130 templates/dcim/device_edit.html:10 +#: templates/dcim/devicebay.html:20 templates/dcim/devicebay.html:48 +#: templates/dcim/frontport.html:20 templates/dcim/interface.html:30 +#: templates/dcim/interface.html:161 templates/dcim/inventoryitem.html:20 +#: templates/dcim/module.html:57 templates/dcim/modulebay.html:20 +#: templates/dcim/poweroutlet.html:20 templates/dcim/powerport.html:20 +#: templates/dcim/rearport.html:20 templates/dcim/virtualchassis.html:65 +#: templates/dcim/virtualchassis_edit.html:51 +#: templates/dcim/virtualdevicecontext.html:22 +#: templates/virtualization/virtualmachine.html:114 +#: templates/vpn/tunneltermination.html:23 +#: templates/wireless/inc/wirelesslink_interface.html:6 +#: virtualization/filtersets.py:167 virtualization/forms/bulk_edit.py:137 +#: virtualization/forms/bulk_import.py:99 +#: virtualization/forms/filtersets.py:128 +#: virtualization/forms/model_forms.py:185 +#: virtualization/tables/virtualmachines.py:71 vpn/choices.py:44 +#: vpn/forms/bulk_import.py:86 vpn/forms/bulk_import.py:283 +#: vpn/forms/filtersets.py:275 vpn/forms/model_forms.py:90 +#: vpn/forms/model_forms.py:125 vpn/forms/model_forms.py:236 +#: vpn/forms/model_forms.py:453 wireless/forms/model_forms.py:99 +#: wireless/forms/model_forms.py:141 wireless/tables/wirelesslan.py:75 msgid "Device" msgstr "デバイス" -#: netbox/dcim/forms/bulk_edit.py:731 -#: netbox/templates/extras/dashboard/widget_config.html:7 -#: netbox/virtualization/forms/bulk_edit.py:191 +#: dcim/forms/bulk_edit.py:731 templates/extras/dashboard/widget_config.html:7 +#: virtualization/forms/bulk_edit.py:191 msgid "Configuration" msgstr "設定" -#: netbox/dcim/forms/bulk_edit.py:745 netbox/dcim/forms/bulk_import.py:653 -#: netbox/dcim/forms/model_forms.py:647 netbox/dcim/forms/model_forms.py:897 +#: dcim/forms/bulk_edit.py:745 dcim/forms/bulk_import.py:653 +#: dcim/forms/model_forms.py:647 dcim/forms/model_forms.py:897 msgid "Module type" msgstr "モジュールタイプ" -#: netbox/dcim/forms/bulk_edit.py:799 netbox/dcim/forms/bulk_edit.py:984 -#: netbox/dcim/forms/bulk_edit.py:1003 netbox/dcim/forms/bulk_edit.py:1026 -#: netbox/dcim/forms/bulk_edit.py:1068 netbox/dcim/forms/bulk_edit.py:1112 -#: netbox/dcim/forms/bulk_edit.py:1163 netbox/dcim/forms/bulk_edit.py:1190 -#: netbox/dcim/forms/bulk_edit.py:1217 netbox/dcim/forms/bulk_edit.py:1235 -#: netbox/dcim/forms/bulk_edit.py:1253 netbox/dcim/forms/filtersets.py:67 -#: netbox/dcim/forms/object_create.py:46 netbox/templates/dcim/cable.html:32 -#: netbox/templates/dcim/consoleport.html:32 -#: netbox/templates/dcim/consoleserverport.html:32 -#: netbox/templates/dcim/devicebay.html:28 -#: netbox/templates/dcim/frontport.html:32 -#: netbox/templates/dcim/inc/panels/inventory_items.html:19 -#: netbox/templates/dcim/interface.html:42 -#: netbox/templates/dcim/inventoryitem.html:32 -#: netbox/templates/dcim/modulebay.html:34 -#: netbox/templates/dcim/poweroutlet.html:32 -#: netbox/templates/dcim/powerport.html:32 -#: netbox/templates/dcim/rearport.html:32 -#: netbox/templates/extras/customfield.html:26 -#: netbox/templates/generic/bulk_import.html:162 +#: dcim/forms/bulk_edit.py:799 dcim/forms/bulk_edit.py:984 +#: dcim/forms/bulk_edit.py:1003 dcim/forms/bulk_edit.py:1026 +#: dcim/forms/bulk_edit.py:1068 dcim/forms/bulk_edit.py:1112 +#: dcim/forms/bulk_edit.py:1163 dcim/forms/bulk_edit.py:1190 +#: dcim/forms/bulk_edit.py:1217 dcim/forms/bulk_edit.py:1235 +#: dcim/forms/bulk_edit.py:1253 dcim/forms/filtersets.py:67 +#: dcim/forms/object_create.py:46 templates/dcim/cable.html:32 +#: templates/dcim/consoleport.html:32 templates/dcim/consoleserverport.html:32 +#: templates/dcim/devicebay.html:28 templates/dcim/frontport.html:32 +#: templates/dcim/inc/panels/inventory_items.html:19 +#: templates/dcim/interface.html:42 templates/dcim/inventoryitem.html:32 +#: templates/dcim/modulebay.html:34 templates/dcim/poweroutlet.html:32 +#: templates/dcim/powerport.html:32 templates/dcim/rearport.html:32 +#: templates/extras/customfield.html:26 templates/generic/bulk_import.html:162 msgid "Label" msgstr "ラベル" -#: netbox/dcim/forms/bulk_edit.py:808 netbox/dcim/forms/filtersets.py:1068 -#: netbox/templates/dcim/cable.html:50 +#: dcim/forms/bulk_edit.py:808 dcim/forms/filtersets.py:1068 +#: templates/dcim/cable.html:50 msgid "Length" msgstr "長さ" -#: netbox/dcim/forms/bulk_edit.py:813 netbox/dcim/forms/bulk_import.py:1226 -#: netbox/dcim/forms/bulk_import.py:1229 netbox/dcim/forms/filtersets.py:1072 +#: dcim/forms/bulk_edit.py:813 dcim/forms/bulk_import.py:1226 +#: dcim/forms/bulk_import.py:1229 dcim/forms/filtersets.py:1072 msgid "Length unit" msgstr "長さの単位" -#: netbox/dcim/forms/bulk_edit.py:837 -#: netbox/templates/dcim/virtualchassis.html:23 +#: dcim/forms/bulk_edit.py:837 templates/dcim/virtualchassis.html:23 msgid "Domain" msgstr "ドメイン" -#: netbox/dcim/forms/bulk_edit.py:905 netbox/dcim/forms/bulk_import.py:1345 -#: netbox/dcim/forms/filtersets.py:1158 netbox/dcim/forms/model_forms.py:750 +#: dcim/forms/bulk_edit.py:905 dcim/forms/bulk_import.py:1345 +#: dcim/forms/filtersets.py:1158 dcim/forms/model_forms.py:750 msgid "Power panel" msgstr "電源盤" -#: netbox/dcim/forms/bulk_edit.py:927 netbox/dcim/forms/bulk_import.py:1381 -#: netbox/dcim/forms/filtersets.py:1180 -#: netbox/templates/dcim/powerfeed.html:83 +#: dcim/forms/bulk_edit.py:927 dcim/forms/bulk_import.py:1381 +#: dcim/forms/filtersets.py:1180 templates/dcim/powerfeed.html:83 msgid "Supply" msgstr "供給電源" -#: netbox/dcim/forms/bulk_edit.py:933 netbox/dcim/forms/bulk_import.py:1386 -#: netbox/dcim/forms/filtersets.py:1185 -#: netbox/templates/dcim/powerfeed.html:95 +#: dcim/forms/bulk_edit.py:933 dcim/forms/bulk_import.py:1386 +#: dcim/forms/filtersets.py:1185 templates/dcim/powerfeed.html:95 msgid "Phase" msgstr "電力相" -#: netbox/dcim/forms/bulk_edit.py:939 netbox/dcim/forms/filtersets.py:1190 -#: netbox/templates/dcim/powerfeed.html:87 +#: dcim/forms/bulk_edit.py:939 dcim/forms/filtersets.py:1190 +#: templates/dcim/powerfeed.html:87 msgid "Voltage" msgstr "電圧" -#: netbox/dcim/forms/bulk_edit.py:943 netbox/dcim/forms/filtersets.py:1194 -#: netbox/templates/dcim/powerfeed.html:91 +#: dcim/forms/bulk_edit.py:943 dcim/forms/filtersets.py:1194 +#: templates/dcim/powerfeed.html:91 msgid "Amperage" msgstr "アンペア数" -#: netbox/dcim/forms/bulk_edit.py:947 netbox/dcim/forms/filtersets.py:1198 +#: dcim/forms/bulk_edit.py:947 dcim/forms/filtersets.py:1198 msgid "Max utilization" msgstr "最大使用率" -#: netbox/dcim/forms/bulk_edit.py:1036 +#: dcim/forms/bulk_edit.py:1036 msgid "Maximum draw" msgstr "最大消費電力" -#: netbox/dcim/forms/bulk_edit.py:1039 -#: netbox/dcim/models/device_component_templates.py:282 -#: netbox/dcim/models/device_components.py:356 +#: dcim/forms/bulk_edit.py:1039 dcim/models/device_component_templates.py:282 +#: dcim/models/device_components.py:356 msgid "Maximum power draw (watts)" msgstr "最大消費電力 (ワット)" -#: netbox/dcim/forms/bulk_edit.py:1042 +#: dcim/forms/bulk_edit.py:1042 msgid "Allocated draw" msgstr "割当電力" -#: netbox/dcim/forms/bulk_edit.py:1045 -#: netbox/dcim/models/device_component_templates.py:289 -#: netbox/dcim/models/device_components.py:363 +#: dcim/forms/bulk_edit.py:1045 dcim/models/device_component_templates.py:289 +#: dcim/models/device_components.py:363 msgid "Allocated power draw (watts)" msgstr "割当消費電力 (ワット)" -#: netbox/dcim/forms/bulk_edit.py:1078 netbox/dcim/forms/bulk_import.py:786 -#: netbox/dcim/forms/model_forms.py:953 netbox/dcim/forms/model_forms.py:1278 -#: netbox/dcim/forms/model_forms.py:1567 netbox/dcim/forms/object_import.py:55 +#: dcim/forms/bulk_edit.py:1078 dcim/forms/bulk_import.py:786 +#: dcim/forms/model_forms.py:953 dcim/forms/model_forms.py:1278 +#: dcim/forms/model_forms.py:1567 dcim/forms/object_import.py:55 msgid "Power port" msgstr "電源ポート" -#: netbox/dcim/forms/bulk_edit.py:1083 netbox/dcim/forms/bulk_import.py:793 +#: dcim/forms/bulk_edit.py:1083 dcim/forms/bulk_import.py:793 msgid "Feed leg" msgstr "供給端子" -#: netbox/dcim/forms/bulk_edit.py:1129 netbox/dcim/forms/bulk_edit.py:1440 +#: dcim/forms/bulk_edit.py:1129 dcim/forms/bulk_edit.py:1440 msgid "Management only" msgstr "管理のみ" -#: netbox/dcim/forms/bulk_edit.py:1139 netbox/dcim/forms/bulk_edit.py:1446 -#: netbox/dcim/forms/bulk_import.py:876 netbox/dcim/forms/filtersets.py:1394 -#: netbox/dcim/forms/object_import.py:90 -#: netbox/dcim/models/device_component_templates.py:437 -#: netbox/dcim/models/device_components.py:670 +#: dcim/forms/bulk_edit.py:1139 dcim/forms/bulk_edit.py:1446 +#: dcim/forms/bulk_import.py:876 dcim/forms/filtersets.py:1394 +#: dcim/forms/object_import.py:90 +#: dcim/models/device_component_templates.py:437 +#: dcim/models/device_components.py:670 msgid "PoE mode" msgstr "PoE モード" -#: netbox/dcim/forms/bulk_edit.py:1145 netbox/dcim/forms/bulk_edit.py:1452 -#: netbox/dcim/forms/bulk_import.py:882 netbox/dcim/forms/filtersets.py:1399 -#: netbox/dcim/forms/object_import.py:95 -#: netbox/dcim/models/device_component_templates.py:443 -#: netbox/dcim/models/device_components.py:676 +#: dcim/forms/bulk_edit.py:1145 dcim/forms/bulk_edit.py:1452 +#: dcim/forms/bulk_import.py:882 dcim/forms/filtersets.py:1399 +#: dcim/forms/object_import.py:95 +#: dcim/models/device_component_templates.py:443 +#: dcim/models/device_components.py:676 msgid "PoE type" msgstr "PoE タイプ" -#: netbox/dcim/forms/bulk_edit.py:1151 netbox/dcim/forms/filtersets.py:1404 -#: netbox/dcim/forms/object_import.py:100 +#: dcim/forms/bulk_edit.py:1151 dcim/forms/filtersets.py:1404 +#: dcim/forms/object_import.py:100 msgid "Wireless role" msgstr "無線ロール" -#: netbox/dcim/forms/bulk_edit.py:1288 netbox/dcim/forms/model_forms.py:669 -#: netbox/dcim/forms/model_forms.py:1223 netbox/dcim/tables/devices.py:313 -#: netbox/templates/dcim/consoleport.html:24 -#: netbox/templates/dcim/consoleserverport.html:24 -#: netbox/templates/dcim/frontport.html:24 -#: netbox/templates/dcim/interface.html:34 -#: netbox/templates/dcim/module.html:54 -#: netbox/templates/dcim/modulebay.html:26 -#: netbox/templates/dcim/modulebay.html:58 -#: netbox/templates/dcim/poweroutlet.html:24 -#: netbox/templates/dcim/powerport.html:24 -#: netbox/templates/dcim/rearport.html:24 +#: dcim/forms/bulk_edit.py:1288 dcim/forms/model_forms.py:669 +#: dcim/forms/model_forms.py:1223 dcim/tables/devices.py:313 +#: templates/dcim/consoleport.html:24 templates/dcim/consoleserverport.html:24 +#: templates/dcim/frontport.html:24 templates/dcim/interface.html:34 +#: templates/dcim/module.html:54 templates/dcim/modulebay.html:26 +#: templates/dcim/modulebay.html:58 templates/dcim/poweroutlet.html:24 +#: templates/dcim/powerport.html:24 templates/dcim/rearport.html:24 msgid "Module" msgstr "モジュール" -#: netbox/dcim/forms/bulk_edit.py:1420 netbox/dcim/tables/devices.py:665 -#: netbox/templates/dcim/interface.html:110 +#: dcim/forms/bulk_edit.py:1420 dcim/tables/devices.py:665 +#: templates/dcim/interface.html:110 msgid "LAG" msgstr "LAG" -#: netbox/dcim/forms/bulk_edit.py:1425 netbox/dcim/forms/model_forms.py:1305 +#: dcim/forms/bulk_edit.py:1425 dcim/forms/model_forms.py:1305 msgid "Virtual device contexts" msgstr "仮想デバイスコンテキスト" -#: netbox/dcim/forms/bulk_edit.py:1431 netbox/dcim/forms/bulk_import.py:714 -#: netbox/dcim/forms/bulk_import.py:740 netbox/dcim/forms/filtersets.py:1252 -#: netbox/dcim/forms/filtersets.py:1277 netbox/dcim/forms/filtersets.py:1358 -#: netbox/dcim/tables/devices.py:610 -#: netbox/templates/circuits/inc/circuit_termination_fields.html:67 -#: netbox/templates/dcim/consoleport.html:40 -#: netbox/templates/dcim/consoleserverport.html:40 +#: dcim/forms/bulk_edit.py:1431 dcim/forms/bulk_import.py:714 +#: dcim/forms/bulk_import.py:740 dcim/forms/filtersets.py:1252 +#: dcim/forms/filtersets.py:1277 dcim/forms/filtersets.py:1358 +#: dcim/tables/devices.py:610 +#: templates/circuits/inc/circuit_termination_fields.html:67 +#: templates/dcim/consoleport.html:40 templates/dcim/consoleserverport.html:40 msgid "Speed" msgstr "速度" -#: netbox/dcim/forms/bulk_edit.py:1460 netbox/dcim/forms/bulk_import.py:885 -#: netbox/templates/vpn/ikepolicy.html:25 -#: netbox/templates/vpn/ipsecprofile.html:21 -#: netbox/templates/vpn/ipsecprofile.html:48 -#: netbox/virtualization/forms/bulk_edit.py:233 -#: netbox/virtualization/forms/bulk_import.py:165 -#: netbox/vpn/forms/bulk_edit.py:146 netbox/vpn/forms/bulk_edit.py:232 -#: netbox/vpn/forms/bulk_import.py:176 netbox/vpn/forms/bulk_import.py:234 -#: netbox/vpn/forms/filtersets.py:135 netbox/vpn/forms/filtersets.py:178 -#: netbox/vpn/forms/filtersets.py:192 netbox/vpn/tables/crypto.py:64 -#: netbox/vpn/tables/crypto.py:162 +#: dcim/forms/bulk_edit.py:1460 dcim/forms/bulk_import.py:885 +#: templates/vpn/ikepolicy.html:25 templates/vpn/ipsecprofile.html:21 +#: templates/vpn/ipsecprofile.html:48 virtualization/forms/bulk_edit.py:233 +#: virtualization/forms/bulk_import.py:165 vpn/forms/bulk_edit.py:146 +#: vpn/forms/bulk_edit.py:232 vpn/forms/bulk_import.py:176 +#: vpn/forms/bulk_import.py:234 vpn/forms/filtersets.py:135 +#: vpn/forms/filtersets.py:178 vpn/forms/filtersets.py:192 +#: vpn/tables/crypto.py:64 vpn/tables/crypto.py:162 msgid "Mode" msgstr "モード" -#: netbox/dcim/forms/bulk_edit.py:1468 netbox/dcim/forms/model_forms.py:1354 -#: netbox/ipam/forms/bulk_import.py:178 netbox/ipam/forms/filtersets.py:498 -#: netbox/ipam/models/vlans.py:84 netbox/virtualization/forms/bulk_edit.py:240 -#: netbox/virtualization/forms/model_forms.py:321 +#: dcim/forms/bulk_edit.py:1468 dcim/forms/model_forms.py:1354 +#: ipam/forms/bulk_import.py:178 ipam/forms/filtersets.py:498 +#: ipam/models/vlans.py:84 virtualization/forms/bulk_edit.py:240 +#: virtualization/forms/model_forms.py:321 msgid "VLAN group" msgstr "VLAN グループ" -#: netbox/dcim/forms/bulk_edit.py:1476 netbox/dcim/forms/model_forms.py:1360 -#: netbox/dcim/tables/devices.py:579 -#: netbox/virtualization/forms/bulk_edit.py:248 -#: netbox/virtualization/forms/model_forms.py:326 +#: dcim/forms/bulk_edit.py:1476 dcim/forms/model_forms.py:1360 +#: dcim/tables/devices.py:579 virtualization/forms/bulk_edit.py:248 +#: virtualization/forms/model_forms.py:326 msgid "Untagged VLAN" msgstr "タグなし VLAN" -#: netbox/dcim/forms/bulk_edit.py:1484 netbox/dcim/forms/model_forms.py:1369 -#: netbox/dcim/tables/devices.py:585 -#: netbox/virtualization/forms/bulk_edit.py:256 -#: netbox/virtualization/forms/model_forms.py:335 +#: dcim/forms/bulk_edit.py:1484 dcim/forms/model_forms.py:1369 +#: dcim/tables/devices.py:585 virtualization/forms/bulk_edit.py:256 +#: virtualization/forms/model_forms.py:335 msgid "Tagged VLANs" msgstr "タグ付き VLAN" -#: netbox/dcim/forms/bulk_edit.py:1494 netbox/dcim/forms/model_forms.py:1341 +#: dcim/forms/bulk_edit.py:1494 dcim/forms/model_forms.py:1341 msgid "Wireless LAN group" msgstr "無線 LAN グループ" -#: netbox/dcim/forms/bulk_edit.py:1499 netbox/dcim/forms/model_forms.py:1346 -#: netbox/dcim/tables/devices.py:619 netbox/netbox/navigation/menu.py:146 -#: netbox/templates/dcim/interface.html:280 -#: netbox/wireless/tables/wirelesslan.py:24 +#: dcim/forms/bulk_edit.py:1499 dcim/forms/model_forms.py:1346 +#: dcim/tables/devices.py:619 netbox/navigation/menu.py:146 +#: templates/dcim/interface.html:280 wireless/tables/wirelesslan.py:24 msgid "Wireless LANs" msgstr "無線 LAN" -#: netbox/dcim/forms/bulk_edit.py:1508 netbox/dcim/forms/filtersets.py:1328 -#: netbox/dcim/forms/model_forms.py:1390 netbox/ipam/forms/bulk_edit.py:285 -#: netbox/ipam/forms/bulk_edit.py:377 netbox/ipam/forms/filtersets.py:169 -#: netbox/templates/dcim/interface.html:122 -#: netbox/templates/ipam/prefix.html:95 -#: netbox/virtualization/forms/model_forms.py:349 +#: dcim/forms/bulk_edit.py:1508 dcim/forms/filtersets.py:1328 +#: dcim/forms/model_forms.py:1390 ipam/forms/bulk_edit.py:286 +#: ipam/forms/bulk_edit.py:378 ipam/forms/filtersets.py:169 +#: templates/dcim/interface.html:122 templates/ipam/prefix.html:95 +#: virtualization/forms/model_forms.py:349 msgid "Addressing" msgstr "アドレス" -#: netbox/dcim/forms/bulk_edit.py:1509 netbox/dcim/forms/filtersets.py:720 -#: netbox/dcim/forms/model_forms.py:1391 -#: netbox/virtualization/forms/model_forms.py:350 +#: dcim/forms/bulk_edit.py:1509 dcim/forms/filtersets.py:720 +#: dcim/forms/model_forms.py:1391 virtualization/forms/model_forms.py:350 msgid "Operation" msgstr "オペレーション" -#: netbox/dcim/forms/bulk_edit.py:1510 netbox/dcim/forms/filtersets.py:1329 -#: netbox/dcim/forms/model_forms.py:987 netbox/dcim/forms/model_forms.py:1393 +#: dcim/forms/bulk_edit.py:1510 dcim/forms/filtersets.py:1329 +#: dcim/forms/model_forms.py:987 dcim/forms/model_forms.py:1393 msgid "PoE" msgstr "PoE" -#: netbox/dcim/forms/bulk_edit.py:1511 netbox/dcim/forms/model_forms.py:1392 -#: netbox/templates/dcim/interface.html:99 -#: netbox/virtualization/forms/bulk_edit.py:267 -#: netbox/virtualization/forms/model_forms.py:351 +#: dcim/forms/bulk_edit.py:1511 dcim/forms/model_forms.py:1392 +#: templates/dcim/interface.html:99 virtualization/forms/bulk_edit.py:267 +#: virtualization/forms/model_forms.py:351 msgid "Related Interfaces" msgstr "関連インタフェース" -#: netbox/dcim/forms/bulk_edit.py:1512 netbox/dcim/forms/model_forms.py:1394 -#: netbox/virtualization/forms/bulk_edit.py:268 -#: netbox/virtualization/forms/model_forms.py:352 +#: dcim/forms/bulk_edit.py:1512 dcim/forms/model_forms.py:1394 +#: virtualization/forms/bulk_edit.py:268 +#: virtualization/forms/model_forms.py:352 msgid "802.1Q Switching" msgstr "802.1Q スイッチング" -#: netbox/dcim/forms/bulk_edit.py:1574 netbox/dcim/forms/bulk_edit.py:1576 +#: dcim/forms/bulk_edit.py:1574 dcim/forms/bulk_edit.py:1576 msgid "Interface mode must be specified to assign VLANs" msgstr "VLAN を割り当てるには、インタフェースモードを指定する必要があります" -#: netbox/dcim/forms/bulk_edit.py:1581 netbox/dcim/forms/common.py:50 +#: dcim/forms/bulk_edit.py:1581 dcim/forms/common.py:50 msgid "An access interface cannot have tagged VLANs assigned." msgstr "アクセスインタフェースにはタグ付き VLAN を割り当てることはできません。" -#: netbox/dcim/forms/bulk_import.py:64 +#: dcim/forms/bulk_import.py:64 msgid "Name of parent region" msgstr "親リージョン名" -#: netbox/dcim/forms/bulk_import.py:78 +#: dcim/forms/bulk_import.py:78 msgid "Name of parent site group" msgstr "親サイトグループ名" -#: netbox/dcim/forms/bulk_import.py:97 +#: dcim/forms/bulk_import.py:97 msgid "Assigned region" msgstr "割当リージョン" -#: netbox/dcim/forms/bulk_import.py:104 netbox/tenancy/forms/bulk_import.py:44 -#: netbox/tenancy/forms/bulk_import.py:85 -#: netbox/wireless/forms/bulk_import.py:40 +#: dcim/forms/bulk_import.py:104 tenancy/forms/bulk_import.py:44 +#: tenancy/forms/bulk_import.py:85 wireless/forms/bulk_import.py:40 msgid "Assigned group" msgstr "割当グループ" -#: netbox/dcim/forms/bulk_import.py:123 +#: dcim/forms/bulk_import.py:123 msgid "available options" msgstr "使用可能なオプション" -#: netbox/dcim/forms/bulk_import.py:134 netbox/dcim/forms/bulk_import.py:543 -#: netbox/dcim/forms/bulk_import.py:1342 netbox/ipam/forms/bulk_import.py:175 -#: netbox/ipam/forms/bulk_import.py:433 -#: netbox/virtualization/forms/bulk_import.py:63 -#: netbox/virtualization/forms/bulk_import.py:89 +#: dcim/forms/bulk_import.py:134 dcim/forms/bulk_import.py:543 +#: dcim/forms/bulk_import.py:1342 ipam/forms/bulk_import.py:175 +#: ipam/forms/bulk_import.py:433 virtualization/forms/bulk_import.py:63 +#: virtualization/forms/bulk_import.py:89 msgid "Assigned site" msgstr "割当サイト" -#: netbox/dcim/forms/bulk_import.py:141 +#: dcim/forms/bulk_import.py:141 msgid "Parent location" msgstr "親ロケーション" -#: netbox/dcim/forms/bulk_import.py:143 +#: dcim/forms/bulk_import.py:143 msgid "Location not found." msgstr "ロケーションが見つかりません。" -#: netbox/dcim/forms/bulk_import.py:185 +#: dcim/forms/bulk_import.py:185 msgid "The manufacturer of this rack type" msgstr "このラックタイプのメーカ" -#: netbox/dcim/forms/bulk_import.py:196 +#: dcim/forms/bulk_import.py:196 msgid "The lowest-numbered position in the rack" msgstr "ラック内の一番小さい番号の位置" -#: netbox/dcim/forms/bulk_import.py:201 netbox/dcim/forms/bulk_import.py:268 +#: dcim/forms/bulk_import.py:201 dcim/forms/bulk_import.py:268 msgid "Rail-to-rail width (in inches)" msgstr "レール間の幅 (インチ)" -#: netbox/dcim/forms/bulk_import.py:207 netbox/dcim/forms/bulk_import.py:274 +#: dcim/forms/bulk_import.py:207 dcim/forms/bulk_import.py:274 msgid "Unit for outer dimensions" msgstr "外形寸法の単位" -#: netbox/dcim/forms/bulk_import.py:213 netbox/dcim/forms/bulk_import.py:286 +#: dcim/forms/bulk_import.py:213 dcim/forms/bulk_import.py:286 msgid "Unit for rack weights" msgstr "重量の単位" -#: netbox/dcim/forms/bulk_import.py:245 +#: dcim/forms/bulk_import.py:245 msgid "Name of assigned tenant" msgstr "割当テナント名" -#: netbox/dcim/forms/bulk_import.py:257 +#: dcim/forms/bulk_import.py:257 msgid "Name of assigned role" msgstr "割当ロール名" -#: netbox/dcim/forms/bulk_import.py:280 netbox/dcim/forms/bulk_import.py:413 -#: netbox/dcim/forms/bulk_import.py:583 +#: dcim/forms/bulk_import.py:280 dcim/forms/bulk_import.py:413 +#: dcim/forms/bulk_import.py:583 msgid "Airflow direction" msgstr "エアフロー" -#: netbox/dcim/forms/bulk_import.py:312 +#: dcim/forms/bulk_import.py:312 msgid "Parent site" msgstr "親サイト" -#: netbox/dcim/forms/bulk_import.py:319 netbox/dcim/forms/bulk_import.py:1355 +#: dcim/forms/bulk_import.py:319 dcim/forms/bulk_import.py:1355 msgid "Rack's location (if any)" msgstr "ラックのロケーション (存在する場合)" -#: netbox/dcim/forms/bulk_import.py:328 netbox/dcim/forms/model_forms.py:311 -#: netbox/dcim/tables/racks.py:222 -#: netbox/templates/dcim/rackreservation.html:12 -#: netbox/templates/dcim/rackreservation.html:45 +#: dcim/forms/bulk_import.py:328 dcim/forms/model_forms.py:311 +#: dcim/tables/racks.py:222 templates/dcim/rackreservation.html:12 +#: templates/dcim/rackreservation.html:45 msgid "Units" msgstr "単位" -#: netbox/dcim/forms/bulk_import.py:331 +#: dcim/forms/bulk_import.py:331 msgid "Comma-separated list of individual unit numbers" msgstr "カンマ区切りのユニット番号" -#: netbox/dcim/forms/bulk_import.py:374 +#: dcim/forms/bulk_import.py:374 msgid "The manufacturer which produces this device type" msgstr "製造メーカ" -#: netbox/dcim/forms/bulk_import.py:381 +#: dcim/forms/bulk_import.py:381 msgid "The default platform for devices of this type (optional)" msgstr "デフォルトのプラットフォーム (オプション)" -#: netbox/dcim/forms/bulk_import.py:386 +#: dcim/forms/bulk_import.py:386 msgid "Device weight" msgstr "デバイス重量" -#: netbox/dcim/forms/bulk_import.py:392 +#: dcim/forms/bulk_import.py:392 msgid "Unit for device weight" msgstr "デバイス重量の単位" -#: netbox/dcim/forms/bulk_import.py:418 +#: dcim/forms/bulk_import.py:418 msgid "Module weight" msgstr "モジュール重量" -#: netbox/dcim/forms/bulk_import.py:424 +#: dcim/forms/bulk_import.py:424 msgid "Unit for module weight" msgstr "モジュール重量の単位" -#: netbox/dcim/forms/bulk_import.py:454 +#: dcim/forms/bulk_import.py:454 msgid "Limit platform assignments to this manufacturer" msgstr "プラットフォーム割り当てをこのメーカに限定する" -#: netbox/dcim/forms/bulk_import.py:476 netbox/dcim/forms/bulk_import.py:1425 -#: netbox/tenancy/forms/bulk_import.py:106 +#: dcim/forms/bulk_import.py:476 dcim/forms/bulk_import.py:1425 +#: tenancy/forms/bulk_import.py:106 msgid "Assigned role" msgstr "割当ロール" -#: netbox/dcim/forms/bulk_import.py:489 +#: dcim/forms/bulk_import.py:489 msgid "Device type manufacturer" msgstr "デバイスタイプメーカ" -#: netbox/dcim/forms/bulk_import.py:495 +#: dcim/forms/bulk_import.py:495 msgid "Device type model" msgstr "デバイスタイプモデル" -#: netbox/dcim/forms/bulk_import.py:502 -#: netbox/virtualization/forms/bulk_import.py:126 +#: dcim/forms/bulk_import.py:502 virtualization/forms/bulk_import.py:126 msgid "Assigned platform" msgstr "割当プラットフォーム" -#: netbox/dcim/forms/bulk_import.py:510 netbox/dcim/forms/bulk_import.py:514 -#: netbox/dcim/forms/model_forms.py:536 +#: dcim/forms/bulk_import.py:510 dcim/forms/bulk_import.py:514 +#: dcim/forms/model_forms.py:536 msgid "Virtual chassis" msgstr "バーチャルシャーシ" -#: netbox/dcim/forms/bulk_import.py:517 netbox/dcim/forms/filtersets.py:728 -#: netbox/dcim/forms/filtersets.py:898 netbox/dcim/forms/model_forms.py:522 -#: netbox/dcim/tables/devices.py:202 netbox/extras/filtersets.py:596 -#: netbox/extras/forms/filtersets.py:322 netbox/ipam/forms/bulk_edit.py:482 -#: netbox/ipam/forms/filtersets.py:415 netbox/ipam/forms/filtersets.py:447 -#: netbox/templates/dcim/device.html:239 -#: netbox/templates/virtualization/cluster.html:10 -#: netbox/templates/virtualization/virtualmachine.html:92 -#: netbox/templates/virtualization/virtualmachine.html:101 -#: netbox/virtualization/filtersets.py:157 -#: netbox/virtualization/filtersets.py:277 -#: netbox/virtualization/forms/bulk_edit.py:129 -#: netbox/virtualization/forms/bulk_import.py:92 -#: netbox/virtualization/forms/filtersets.py:99 -#: netbox/virtualization/forms/filtersets.py:123 -#: netbox/virtualization/forms/filtersets.py:204 -#: netbox/virtualization/forms/model_forms.py:79 -#: netbox/virtualization/forms/model_forms.py:176 -#: netbox/virtualization/tables/virtualmachines.py:67 +#: dcim/forms/bulk_import.py:517 dcim/forms/filtersets.py:728 +#: dcim/forms/filtersets.py:898 dcim/forms/model_forms.py:522 +#: dcim/tables/devices.py:202 extras/filtersets.py:596 +#: extras/forms/filtersets.py:322 ipam/forms/filtersets.py:415 +#: ipam/forms/filtersets.py:447 templates/dcim/device.html:239 +#: templates/virtualization/cluster.html:10 +#: templates/virtualization/virtualmachine.html:92 +#: templates/virtualization/virtualmachine.html:101 +#: virtualization/filtersets.py:157 virtualization/filtersets.py:277 +#: virtualization/forms/bulk_edit.py:129 +#: virtualization/forms/bulk_import.py:92 +#: virtualization/forms/filtersets.py:99 +#: virtualization/forms/filtersets.py:123 +#: virtualization/forms/filtersets.py:204 +#: virtualization/forms/model_forms.py:79 +#: virtualization/forms/model_forms.py:176 +#: virtualization/tables/virtualmachines.py:67 msgid "Cluster" msgstr "クラスタ" -#: netbox/dcim/forms/bulk_import.py:521 +#: dcim/forms/bulk_import.py:521 msgid "Virtualization cluster" msgstr "仮想化クラスタ" -#: netbox/dcim/forms/bulk_import.py:550 +#: dcim/forms/bulk_import.py:550 msgid "Assigned location (if any)" msgstr "割当ロケーション (存在する場合)" -#: netbox/dcim/forms/bulk_import.py:557 +#: dcim/forms/bulk_import.py:557 msgid "Assigned rack (if any)" msgstr "割当ラック (存在する場合)" -#: netbox/dcim/forms/bulk_import.py:560 +#: dcim/forms/bulk_import.py:560 msgid "Face" msgstr "面" -#: netbox/dcim/forms/bulk_import.py:563 +#: dcim/forms/bulk_import.py:563 msgid "Mounted rack face" msgstr "ラック取付面" -#: netbox/dcim/forms/bulk_import.py:570 +#: dcim/forms/bulk_import.py:570 msgid "Parent device (for child devices)" msgstr "親デバイス (子デバイス用)" -#: netbox/dcim/forms/bulk_import.py:573 +#: dcim/forms/bulk_import.py:573 msgid "Device bay" msgstr "デバイスベイ" -#: netbox/dcim/forms/bulk_import.py:577 +#: dcim/forms/bulk_import.py:577 msgid "Device bay in which this device is installed (for child devices)" msgstr "取付られているデバイスベイ (子デバイス用)" -#: netbox/dcim/forms/bulk_import.py:644 +#: dcim/forms/bulk_import.py:644 msgid "The device in which this module is installed" msgstr "取付られているデバイス" -#: netbox/dcim/forms/bulk_import.py:647 netbox/dcim/forms/model_forms.py:640 +#: dcim/forms/bulk_import.py:647 dcim/forms/model_forms.py:640 msgid "Module bay" msgstr "モジュールベイ" -#: netbox/dcim/forms/bulk_import.py:650 +#: dcim/forms/bulk_import.py:650 msgid "The module bay in which this module is installed" msgstr "取付られているモジュールベイ" -#: netbox/dcim/forms/bulk_import.py:656 +#: dcim/forms/bulk_import.py:656 msgid "The type of module" msgstr "モジュールタイプ" -#: netbox/dcim/forms/bulk_import.py:664 netbox/dcim/forms/model_forms.py:656 +#: dcim/forms/bulk_import.py:664 dcim/forms/model_forms.py:656 msgid "Replicate components" msgstr "構成要素を複製" -#: netbox/dcim/forms/bulk_import.py:666 +#: dcim/forms/bulk_import.py:666 msgid "" "Automatically populate components associated with this module type (enabled " "by default)" msgstr "関連する構成要素を自動的に登録 (デフォルト)" -#: netbox/dcim/forms/bulk_import.py:669 netbox/dcim/forms/model_forms.py:662 +#: dcim/forms/bulk_import.py:669 dcim/forms/model_forms.py:662 msgid "Adopt components" msgstr "既存の構成要素を採用" -#: netbox/dcim/forms/bulk_import.py:671 netbox/dcim/forms/model_forms.py:665 +#: dcim/forms/bulk_import.py:671 dcim/forms/model_forms.py:665 msgid "Adopt already existing components" msgstr "既存の構成要素を採用" -#: netbox/dcim/forms/bulk_import.py:711 netbox/dcim/forms/bulk_import.py:737 -#: netbox/dcim/forms/bulk_import.py:763 +#: dcim/forms/bulk_import.py:711 dcim/forms/bulk_import.py:737 +#: dcim/forms/bulk_import.py:763 msgid "Port type" msgstr "ポートタイプ" -#: netbox/dcim/forms/bulk_import.py:719 netbox/dcim/forms/bulk_import.py:745 +#: dcim/forms/bulk_import.py:719 dcim/forms/bulk_import.py:745 msgid "Port speed in bps" msgstr "ポート速度 (bps)" -#: netbox/dcim/forms/bulk_import.py:783 +#: dcim/forms/bulk_import.py:783 msgid "Outlet type" msgstr "コンセントタイプ" -#: netbox/dcim/forms/bulk_import.py:790 +#: dcim/forms/bulk_import.py:790 msgid "Local power port which feeds this outlet" msgstr "このコンセントに給電する電源ポート" -#: netbox/dcim/forms/bulk_import.py:796 +#: dcim/forms/bulk_import.py:796 msgid "Electrical phase (for three-phase circuits)" msgstr "電気位相 (三相回路用)" -#: netbox/dcim/forms/bulk_import.py:837 netbox/dcim/forms/model_forms.py:1316 -#: netbox/virtualization/forms/bulk_import.py:155 -#: netbox/virtualization/forms/model_forms.py:305 +#: dcim/forms/bulk_import.py:837 dcim/forms/model_forms.py:1316 +#: virtualization/forms/bulk_import.py:155 +#: virtualization/forms/model_forms.py:305 msgid "Parent interface" msgstr "親インタフェース" -#: netbox/dcim/forms/bulk_import.py:844 netbox/dcim/forms/model_forms.py:1324 -#: netbox/virtualization/forms/bulk_import.py:162 -#: netbox/virtualization/forms/model_forms.py:313 +#: dcim/forms/bulk_import.py:844 dcim/forms/model_forms.py:1324 +#: virtualization/forms/bulk_import.py:162 +#: virtualization/forms/model_forms.py:313 msgid "Bridged interface" msgstr "ブリッジインタフェース" -#: netbox/dcim/forms/bulk_import.py:847 +#: dcim/forms/bulk_import.py:847 msgid "Lag" msgstr "Lag" -#: netbox/dcim/forms/bulk_import.py:851 +#: dcim/forms/bulk_import.py:851 msgid "Parent LAG interface" msgstr "親 LAG インタフェース" -#: netbox/dcim/forms/bulk_import.py:854 +#: dcim/forms/bulk_import.py:854 msgid "Vdcs" msgstr "VDC" -#: netbox/dcim/forms/bulk_import.py:859 +#: dcim/forms/bulk_import.py:859 msgid "VDC names separated by commas, encased with double quotes. Example:" msgstr "VDC 名をコンマで区切り、二重引用符で囲みます。例:" -#: netbox/dcim/forms/bulk_import.py:865 +#: dcim/forms/bulk_import.py:865 msgid "Physical medium" msgstr "物理媒体" -#: netbox/dcim/forms/bulk_import.py:868 netbox/dcim/forms/filtersets.py:1365 +#: dcim/forms/bulk_import.py:868 dcim/forms/filtersets.py:1365 msgid "Duplex" msgstr "デュプレックス" -#: netbox/dcim/forms/bulk_import.py:873 +#: dcim/forms/bulk_import.py:873 msgid "Poe mode" msgstr "PoEモード" -#: netbox/dcim/forms/bulk_import.py:879 +#: dcim/forms/bulk_import.py:879 msgid "Poe type" msgstr "PoEタイプ" -#: netbox/dcim/forms/bulk_import.py:888 -#: netbox/virtualization/forms/bulk_import.py:168 +#: dcim/forms/bulk_import.py:888 virtualization/forms/bulk_import.py:168 msgid "IEEE 802.1Q operational mode (for L2 interfaces)" msgstr "IEEE 802.1Q モード(L2 インタフェース用)" -#: netbox/dcim/forms/bulk_import.py:895 netbox/ipam/forms/bulk_import.py:161 -#: netbox/ipam/forms/bulk_import.py:247 netbox/ipam/forms/bulk_import.py:283 -#: netbox/ipam/forms/filtersets.py:201 netbox/ipam/forms/filtersets.py:277 -#: netbox/ipam/forms/filtersets.py:336 -#: netbox/virtualization/forms/bulk_import.py:175 +#: dcim/forms/bulk_import.py:895 ipam/forms/bulk_import.py:161 +#: ipam/forms/bulk_import.py:247 ipam/forms/bulk_import.py:283 +#: ipam/forms/filtersets.py:201 ipam/forms/filtersets.py:277 +#: ipam/forms/filtersets.py:336 virtualization/forms/bulk_import.py:175 msgid "Assigned VRF" msgstr "割当 VRF" -#: netbox/dcim/forms/bulk_import.py:898 +#: dcim/forms/bulk_import.py:898 msgid "Rf role" msgstr "RF ロール" -#: netbox/dcim/forms/bulk_import.py:901 +#: dcim/forms/bulk_import.py:901 msgid "Wireless role (AP/station)" msgstr "無線ロール (AP/ステーション)" -#: netbox/dcim/forms/bulk_import.py:937 +#: dcim/forms/bulk_import.py:937 #, python-brace-format msgid "VDC {vdc} is not assigned to device {device}" msgstr "VDC {vdc} デバイスには割り当てられていません {device}" -#: netbox/dcim/forms/bulk_import.py:951 netbox/dcim/forms/model_forms.py:1000 -#: netbox/dcim/forms/model_forms.py:1575 -#: netbox/dcim/forms/object_import.py:117 +#: dcim/forms/bulk_import.py:951 dcim/forms/model_forms.py:1000 +#: dcim/forms/model_forms.py:1575 dcim/forms/object_import.py:117 msgid "Rear port" msgstr "背面ポート" -#: netbox/dcim/forms/bulk_import.py:954 +#: dcim/forms/bulk_import.py:954 msgid "Corresponding rear port" msgstr "対応する背面ポート" -#: netbox/dcim/forms/bulk_import.py:959 netbox/dcim/forms/bulk_import.py:1000 -#: netbox/dcim/forms/bulk_import.py:1216 +#: dcim/forms/bulk_import.py:959 dcim/forms/bulk_import.py:1000 +#: dcim/forms/bulk_import.py:1216 msgid "Physical medium classification" msgstr "物理媒体の分類" -#: netbox/dcim/forms/bulk_import.py:1028 netbox/dcim/tables/devices.py:822 +#: dcim/forms/bulk_import.py:1028 dcim/tables/devices.py:822 msgid "Installed device" msgstr "取付済みデバイス" -#: netbox/dcim/forms/bulk_import.py:1032 +#: dcim/forms/bulk_import.py:1032 msgid "Child device installed within this bay" msgstr "このベイ内に取付された子デバイス" -#: netbox/dcim/forms/bulk_import.py:1034 +#: dcim/forms/bulk_import.py:1034 msgid "Child device not found." msgstr "子デバイスが見つかりません。" -#: netbox/dcim/forms/bulk_import.py:1092 +#: dcim/forms/bulk_import.py:1092 msgid "Parent inventory item" msgstr "親在庫品目" -#: netbox/dcim/forms/bulk_import.py:1095 +#: dcim/forms/bulk_import.py:1095 msgid "Component type" msgstr "構成要素タイプ" -#: netbox/dcim/forms/bulk_import.py:1099 +#: dcim/forms/bulk_import.py:1099 msgid "Component Type" msgstr "構成要素タイプ" -#: netbox/dcim/forms/bulk_import.py:1102 +#: dcim/forms/bulk_import.py:1102 msgid "Compnent name" msgstr "コンポーネント名" -#: netbox/dcim/forms/bulk_import.py:1104 +#: dcim/forms/bulk_import.py:1104 msgid "Component Name" msgstr "構成要素名" -#: netbox/dcim/forms/bulk_import.py:1146 +#: dcim/forms/bulk_import.py:1146 #, python-brace-format msgid "Component not found: {device} - {component_name}" msgstr "コンポーネントが見つかりません: {device} - {component_name}" -#: netbox/dcim/forms/bulk_import.py:1171 +#: dcim/forms/bulk_import.py:1171 msgid "Side A device" msgstr "サイド A デバイス" -#: netbox/dcim/forms/bulk_import.py:1174 netbox/dcim/forms/bulk_import.py:1192 +#: dcim/forms/bulk_import.py:1174 dcim/forms/bulk_import.py:1192 msgid "Device name" msgstr "デバイス名" -#: netbox/dcim/forms/bulk_import.py:1177 +#: dcim/forms/bulk_import.py:1177 msgid "Side A type" msgstr "サイド A タイプ" -#: netbox/dcim/forms/bulk_import.py:1180 netbox/dcim/forms/bulk_import.py:1198 +#: dcim/forms/bulk_import.py:1180 dcim/forms/bulk_import.py:1198 msgid "Termination type" msgstr "終了タイプ" -#: netbox/dcim/forms/bulk_import.py:1183 +#: dcim/forms/bulk_import.py:1183 msgid "Side A name" msgstr "サイド A 名" -#: netbox/dcim/forms/bulk_import.py:1184 netbox/dcim/forms/bulk_import.py:1202 +#: dcim/forms/bulk_import.py:1184 dcim/forms/bulk_import.py:1202 msgid "Termination name" msgstr "終端名" -#: netbox/dcim/forms/bulk_import.py:1189 +#: dcim/forms/bulk_import.py:1189 msgid "Side B device" msgstr "サイド B デバイス" -#: netbox/dcim/forms/bulk_import.py:1195 +#: dcim/forms/bulk_import.py:1195 msgid "Side B type" msgstr "サイド B タイプ" -#: netbox/dcim/forms/bulk_import.py:1201 +#: dcim/forms/bulk_import.py:1201 msgid "Side B name" msgstr "サイド B 名" -#: netbox/dcim/forms/bulk_import.py:1210 -#: netbox/wireless/forms/bulk_import.py:86 +#: dcim/forms/bulk_import.py:1210 wireless/forms/bulk_import.py:86 msgid "Connection status" msgstr "接続ステータス" -#: netbox/dcim/forms/bulk_import.py:1262 +#: dcim/forms/bulk_import.py:1262 #, python-brace-format msgid "Side {side_upper}: {device} {termination_object} is already connected" msgstr "サイド {side_upper}: {device} {termination_object} は既に接続されています" -#: netbox/dcim/forms/bulk_import.py:1268 +#: dcim/forms/bulk_import.py:1268 #, python-brace-format msgid "{side_upper} side termination not found: {device} {name}" msgstr "{side_upper} サイドターミネーションが見つかりません: {device} {name}" -#: netbox/dcim/forms/bulk_import.py:1293 netbox/dcim/forms/model_forms.py:785 -#: netbox/dcim/tables/devices.py:1027 netbox/templates/dcim/device.html:132 -#: netbox/templates/dcim/virtualchassis.html:27 -#: netbox/templates/dcim/virtualchassis.html:67 +#: dcim/forms/bulk_import.py:1293 dcim/forms/model_forms.py:785 +#: dcim/tables/devices.py:1027 templates/dcim/device.html:132 +#: templates/dcim/virtualchassis.html:27 templates/dcim/virtualchassis.html:67 msgid "Master" msgstr "マスター" -#: netbox/dcim/forms/bulk_import.py:1297 +#: dcim/forms/bulk_import.py:1297 msgid "Master device" msgstr "マスターデバイス" -#: netbox/dcim/forms/bulk_import.py:1314 +#: dcim/forms/bulk_import.py:1314 msgid "Name of parent site" msgstr "親サイトの名前" -#: netbox/dcim/forms/bulk_import.py:1348 +#: dcim/forms/bulk_import.py:1348 msgid "Upstream power panel" msgstr "上流電源盤" -#: netbox/dcim/forms/bulk_import.py:1378 +#: dcim/forms/bulk_import.py:1378 msgid "Primary or redundant" msgstr "プライマリまたは冗長" -#: netbox/dcim/forms/bulk_import.py:1383 +#: dcim/forms/bulk_import.py:1383 msgid "Supply type (AC/DC)" msgstr "電源タイプ (AC/DC)" -#: netbox/dcim/forms/bulk_import.py:1388 +#: dcim/forms/bulk_import.py:1388 msgid "Single or three-phase" msgstr "単相または三相" -#: netbox/dcim/forms/bulk_import.py:1439 netbox/dcim/forms/model_forms.py:1670 -#: netbox/templates/dcim/device.html:190 -#: netbox/templates/dcim/virtualdevicecontext.html:30 -#: netbox/templates/virtualization/virtualmachine.html:52 +#: dcim/forms/bulk_import.py:1439 dcim/forms/model_forms.py:1670 +#: templates/dcim/device.html:190 templates/dcim/virtualdevicecontext.html:30 +#: templates/virtualization/virtualmachine.html:52 msgid "Primary IPv4" msgstr "プライマリ IPv4" -#: netbox/dcim/forms/bulk_import.py:1443 +#: dcim/forms/bulk_import.py:1443 msgid "IPv4 address with mask, e.g. 1.2.3.4/24" msgstr "マスク付きの IPv4 アドレス (例:1.2.3.4/24)" -#: netbox/dcim/forms/bulk_import.py:1446 netbox/dcim/forms/model_forms.py:1679 -#: netbox/templates/dcim/device.html:206 -#: netbox/templates/dcim/virtualdevicecontext.html:41 -#: netbox/templates/virtualization/virtualmachine.html:68 +#: dcim/forms/bulk_import.py:1446 dcim/forms/model_forms.py:1679 +#: templates/dcim/device.html:206 templates/dcim/virtualdevicecontext.html:41 +#: templates/virtualization/virtualmachine.html:68 msgid "Primary IPv6" msgstr "プライマリ IPv6" -#: netbox/dcim/forms/bulk_import.py:1450 +#: dcim/forms/bulk_import.py:1450 msgid "IPv6 address with prefix length, e.g. 2001:db8::1/64" msgstr "プレフィックス長のある IPv6 アドレス、例:2001: db8:: 1/64" -#: netbox/dcim/forms/common.py:24 netbox/dcim/models/device_components.py:527 -#: netbox/templates/dcim/interface.html:57 -#: netbox/templates/virtualization/vminterface.html:55 -#: netbox/virtualization/forms/bulk_edit.py:225 +#: dcim/forms/common.py:24 dcim/models/device_components.py:527 +#: templates/dcim/interface.html:57 +#: templates/virtualization/vminterface.html:55 +#: virtualization/forms/bulk_edit.py:225 msgid "MTU" msgstr "MTU" -#: netbox/dcim/forms/common.py:65 +#: dcim/forms/common.py:65 #, python-brace-format msgid "" "The tagged VLANs ({vlans}) must belong to the same site as the interface's " "parent device/VM, or they must be global" msgstr "タグ付き VLAN ({vlans}) はインタフェースの親デバイス/VMと同サイトに属しているか、グローバルである必要があります" -#: netbox/dcim/forms/common.py:126 +#: dcim/forms/common.py:126 msgid "" "Cannot install module with placeholder values in a module bay with no " "position defined." msgstr "位置が定義されていないモジュールベイには、プレースホルダー値のあるモジュールを挿入できません。" -#: netbox/dcim/forms/common.py:131 +#: dcim/forms/common.py:131 #, python-brace-format msgid "" "Cannot install module with placeholder values in a module bay tree {level} " @@ -4602,418 +4202,382 @@ msgstr "" "モジュールベイツリーの{level}レベルにはプレースホルダ値のあるモジュールをインストールできませんが、 " "{tokens}個のプレースホルダが与えられています。" -#: netbox/dcim/forms/common.py:144 +#: dcim/forms/common.py:144 #, python-brace-format msgid "Cannot adopt {model} {name} as it already belongs to a module" msgstr " {model} {name} は既にモジュールに属しているので採用できません" -#: netbox/dcim/forms/common.py:153 +#: dcim/forms/common.py:153 #, python-brace-format msgid "A {model} named {name} already exists" msgstr "{model} {name} は既に存在しています" -#: netbox/dcim/forms/connections.py:49 netbox/dcim/forms/model_forms.py:738 -#: netbox/dcim/tables/power.py:66 -#: netbox/templates/dcim/inc/cable_termination.html:37 -#: netbox/templates/dcim/powerfeed.html:24 -#: netbox/templates/dcim/powerpanel.html:19 -#: netbox/templates/dcim/trace/powerpanel.html:4 +#: dcim/forms/connections.py:49 dcim/forms/model_forms.py:738 +#: dcim/tables/power.py:66 templates/dcim/inc/cable_termination.html:37 +#: templates/dcim/powerfeed.html:24 templates/dcim/powerpanel.html:19 +#: templates/dcim/trace/powerpanel.html:4 msgid "Power Panel" msgstr "電源盤" -#: netbox/dcim/forms/connections.py:58 netbox/dcim/forms/model_forms.py:765 -#: netbox/templates/dcim/powerfeed.html:21 -#: netbox/templates/dcim/powerport.html:80 +#: dcim/forms/connections.py:58 dcim/forms/model_forms.py:765 +#: templates/dcim/powerfeed.html:21 templates/dcim/powerport.html:80 msgid "Power Feed" msgstr "電源タップ" -#: netbox/dcim/forms/connections.py:81 +#: dcim/forms/connections.py:81 msgid "Side" msgstr "サイド" -#: netbox/dcim/forms/filtersets.py:136 netbox/dcim/tables/devices.py:295 +#: dcim/forms/filtersets.py:136 dcim/tables/devices.py:295 msgid "Device Status" msgstr "デバイスステータス" -#: netbox/dcim/forms/filtersets.py:149 +#: dcim/forms/filtersets.py:149 msgid "Parent region" msgstr "親リージョン" -#: netbox/dcim/forms/filtersets.py:163 netbox/tenancy/forms/bulk_import.py:28 -#: netbox/tenancy/forms/bulk_import.py:62 -#: netbox/tenancy/forms/filtersets.py:33 netbox/tenancy/forms/filtersets.py:62 -#: netbox/wireless/forms/bulk_import.py:25 -#: netbox/wireless/forms/filtersets.py:25 +#: dcim/forms/filtersets.py:163 tenancy/forms/bulk_import.py:28 +#: tenancy/forms/bulk_import.py:62 tenancy/forms/filtersets.py:33 +#: tenancy/forms/filtersets.py:62 wireless/forms/bulk_import.py:25 +#: wireless/forms/filtersets.py:25 msgid "Parent group" msgstr "親グループ" -#: netbox/dcim/forms/filtersets.py:242 netbox/templates/dcim/location.html:58 -#: netbox/templates/dcim/site.html:56 +#: dcim/forms/filtersets.py:242 templates/dcim/location.html:58 +#: templates/dcim/site.html:56 msgid "Facility" msgstr "ファシリティ" -#: netbox/dcim/forms/filtersets.py:380 +#: dcim/forms/filtersets.py:380 msgid "Rack type" msgstr "ラックタイプ" -#: netbox/dcim/forms/filtersets.py:397 +#: dcim/forms/filtersets.py:397 msgid "Function" msgstr "機能" -#: netbox/dcim/forms/filtersets.py:483 netbox/dcim/forms/model_forms.py:373 -#: netbox/templates/inc/panels/image_attachments.html:6 +#: dcim/forms/filtersets.py:483 dcim/forms/model_forms.py:373 +#: templates/inc/panels/image_attachments.html:6 msgid "Images" msgstr "画像" -#: netbox/dcim/forms/filtersets.py:486 netbox/dcim/forms/filtersets.py:611 -#: netbox/dcim/forms/filtersets.py:726 +#: dcim/forms/filtersets.py:486 dcim/forms/filtersets.py:611 +#: dcim/forms/filtersets.py:726 msgid "Components" msgstr "構成要素" -#: netbox/dcim/forms/filtersets.py:506 +#: dcim/forms/filtersets.py:506 msgid "Subdevice role" msgstr "サブデバイスロール" -#: netbox/dcim/forms/filtersets.py:790 netbox/dcim/tables/racks.py:54 -#: netbox/templates/dcim/racktype.html:20 +#: dcim/forms/filtersets.py:790 dcim/tables/racks.py:54 +#: templates/dcim/racktype.html:20 msgid "Model" msgstr "モデル" -#: netbox/dcim/forms/filtersets.py:834 +#: dcim/forms/filtersets.py:834 msgid "Has an OOB IP" msgstr "OOB IP アドレスを持っている" -#: netbox/dcim/forms/filtersets.py:841 +#: dcim/forms/filtersets.py:841 msgid "Virtual chassis member" msgstr "バーチャルシャーシメンバー" -#: netbox/dcim/forms/filtersets.py:890 +#: dcim/forms/filtersets.py:890 msgid "Has virtual device contexts" msgstr "仮想デバイスコンテキストがある" -#: netbox/dcim/forms/filtersets.py:903 netbox/extras/filtersets.py:585 -#: netbox/ipam/forms/bulk_edit.py:479 netbox/ipam/forms/filtersets.py:452 -#: netbox/virtualization/forms/filtersets.py:112 +#: dcim/forms/filtersets.py:903 extras/filtersets.py:585 +#: ipam/forms/filtersets.py:452 virtualization/forms/filtersets.py:112 msgid "Cluster group" msgstr "クラスタグループ" -#: netbox/dcim/forms/filtersets.py:1210 +#: dcim/forms/filtersets.py:1210 msgid "Cabled" msgstr "ケーブル接続済" -#: netbox/dcim/forms/filtersets.py:1217 +#: dcim/forms/filtersets.py:1217 msgid "Occupied" msgstr "専有済" -#: netbox/dcim/forms/filtersets.py:1244 netbox/dcim/forms/filtersets.py:1269 -#: netbox/dcim/forms/filtersets.py:1293 netbox/dcim/forms/filtersets.py:1313 -#: netbox/dcim/forms/filtersets.py:1336 netbox/dcim/tables/devices.py:364 -#: netbox/templates/dcim/consoleport.html:55 -#: netbox/templates/dcim/consoleserverport.html:55 -#: netbox/templates/dcim/frontport.html:69 -#: netbox/templates/dcim/interface.html:140 -#: netbox/templates/dcim/powerfeed.html:110 -#: netbox/templates/dcim/poweroutlet.html:59 -#: netbox/templates/dcim/powerport.html:59 -#: netbox/templates/dcim/rearport.html:65 +#: dcim/forms/filtersets.py:1244 dcim/forms/filtersets.py:1269 +#: dcim/forms/filtersets.py:1293 dcim/forms/filtersets.py:1313 +#: dcim/forms/filtersets.py:1336 dcim/tables/devices.py:364 +#: templates/dcim/consoleport.html:55 templates/dcim/consoleserverport.html:55 +#: templates/dcim/frontport.html:69 templates/dcim/interface.html:140 +#: templates/dcim/powerfeed.html:110 templates/dcim/poweroutlet.html:59 +#: templates/dcim/powerport.html:59 templates/dcim/rearport.html:65 msgid "Connection" msgstr "接続" -#: netbox/dcim/forms/filtersets.py:1348 netbox/extras/forms/bulk_edit.py:326 -#: netbox/extras/forms/bulk_import.py:247 -#: netbox/extras/forms/filtersets.py:464 -#: netbox/extras/forms/model_forms.py:675 netbox/extras/tables/tables.py:579 -#: netbox/templates/extras/journalentry.html:30 +#: dcim/forms/filtersets.py:1348 extras/forms/bulk_edit.py:326 +#: extras/forms/bulk_import.py:247 extras/forms/filtersets.py:464 +#: extras/forms/model_forms.py:675 extras/tables/tables.py:579 +#: templates/extras/journalentry.html:30 msgid "Kind" msgstr "種類" -#: netbox/dcim/forms/filtersets.py:1377 +#: dcim/forms/filtersets.py:1377 msgid "Mgmt only" msgstr "管理のみ" -#: netbox/dcim/forms/filtersets.py:1389 netbox/dcim/forms/model_forms.py:1383 -#: netbox/dcim/models/device_components.py:629 -#: netbox/templates/dcim/interface.html:129 +#: dcim/forms/filtersets.py:1389 dcim/forms/model_forms.py:1383 +#: dcim/models/device_components.py:629 templates/dcim/interface.html:129 msgid "WWN" msgstr "WWN" -#: netbox/dcim/forms/filtersets.py:1409 +#: dcim/forms/filtersets.py:1409 msgid "Wireless channel" msgstr "無線チャネル" -#: netbox/dcim/forms/filtersets.py:1413 +#: dcim/forms/filtersets.py:1413 msgid "Channel frequency (MHz)" msgstr "チャネル周波数 (MHz)" -#: netbox/dcim/forms/filtersets.py:1417 +#: dcim/forms/filtersets.py:1417 msgid "Channel width (MHz)" msgstr "チャネル幅 (MHz)" -#: netbox/dcim/forms/filtersets.py:1421 -#: netbox/templates/dcim/interface.html:85 +#: dcim/forms/filtersets.py:1421 templates/dcim/interface.html:85 msgid "Transmit power (dBm)" msgstr "送信出力 (dBm)" -#: netbox/dcim/forms/filtersets.py:1446 netbox/dcim/forms/filtersets.py:1471 -#: netbox/dcim/tables/devices.py:327 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:50 -#: netbox/templates/dcim/inc/connection_endpoints.html:4 -#: netbox/templates/dcim/rearport.html:73 -#: netbox/templates/dcim/trace/cable.html:7 +#: dcim/forms/filtersets.py:1446 dcim/forms/filtersets.py:1471 +#: dcim/tables/devices.py:327 templates/dcim/cable.html:12 +#: templates/dcim/cable_trace.html:46 templates/dcim/frontport.html:77 +#: templates/dcim/htmx/cable_edit.html:50 +#: templates/dcim/inc/connection_endpoints.html:4 +#: templates/dcim/rearport.html:73 templates/dcim/trace/cable.html:7 msgid "Cable" msgstr "ケーブル" -#: netbox/dcim/forms/filtersets.py:1550 netbox/dcim/tables/devices.py:949 +#: dcim/forms/filtersets.py:1550 dcim/tables/devices.py:949 msgid "Discovered" msgstr "自動検出" -#: netbox/dcim/forms/formsets.py:20 +#: dcim/forms/formsets.py:20 #, python-brace-format msgid "A virtual chassis member already exists in position {vc_position}." msgstr "バーチャルシャーシメンバーはすでに{vc_position}に存在します 。" -#: netbox/dcim/forms/model_forms.py:140 +#: dcim/forms/model_forms.py:140 msgid "Contact Info" msgstr "連絡先情報" -#: netbox/dcim/forms/model_forms.py:195 netbox/templates/dcim/rackrole.html:19 +#: dcim/forms/model_forms.py:195 templates/dcim/rackrole.html:19 msgid "Rack Role" msgstr "ラックロール" -#: netbox/dcim/forms/model_forms.py:212 netbox/dcim/forms/model_forms.py:362 -#: netbox/dcim/forms/model_forms.py:446 -#: netbox/utilities/forms/fields/fields.py:47 +#: dcim/forms/model_forms.py:212 dcim/forms/model_forms.py:362 +#: dcim/forms/model_forms.py:446 utilities/forms/fields/fields.py:47 msgid "Slug" msgstr "Slug" -#: netbox/dcim/forms/model_forms.py:259 +#: dcim/forms/model_forms.py:259 msgid "Select a pre-defined rack type, or set physical characteristics below." msgstr "定義済みのラックタイプを選択するか、以下で物理特性を設定してください。" -#: netbox/dcim/forms/model_forms.py:265 +#: dcim/forms/model_forms.py:265 msgid "Inventory Control" msgstr "在庫管理" -#: netbox/dcim/forms/model_forms.py:313 +#: dcim/forms/model_forms.py:313 msgid "" "Comma-separated list of numeric unit IDs. A range may be specified using a " "hyphen." msgstr "カンマ区切りのユニット ID 。範囲はハイフンを使用して指定できます。" -#: netbox/dcim/forms/model_forms.py:322 netbox/dcim/tables/racks.py:202 +#: dcim/forms/model_forms.py:322 dcim/tables/racks.py:202 msgid "Reservation" msgstr "予約" -#: netbox/dcim/forms/model_forms.py:423 -#: netbox/templates/dcim/devicerole.html:23 +#: dcim/forms/model_forms.py:423 templates/dcim/devicerole.html:23 msgid "Device Role" msgstr "デバイスロール" -#: netbox/dcim/forms/model_forms.py:490 netbox/dcim/models/devices.py:644 +#: dcim/forms/model_forms.py:490 dcim/models/devices.py:644 msgid "The lowest-numbered unit occupied by the device" msgstr "デバイスが使用している最も小さいユニット番号" -#: netbox/dcim/forms/model_forms.py:547 +#: dcim/forms/model_forms.py:547 msgid "The position in the virtual chassis this device is identified by" msgstr "仮想シャーシ内の位置" -#: netbox/dcim/forms/model_forms.py:552 +#: dcim/forms/model_forms.py:552 msgid "The priority of the device in the virtual chassis" msgstr "仮想シャーシ内の優先度" -#: netbox/dcim/forms/model_forms.py:659 +#: dcim/forms/model_forms.py:659 msgid "Automatically populate components associated with this module type" msgstr "このモジュールタイプに関連する構成要素を自動的に入力する" -#: netbox/dcim/forms/model_forms.py:767 +#: dcim/forms/model_forms.py:767 msgid "Characteristics" msgstr "特性" -#: netbox/dcim/forms/model_forms.py:1087 +#: dcim/forms/model_forms.py:1087 msgid "Console port template" msgstr "コンソールポートテンプレート" -#: netbox/dcim/forms/model_forms.py:1095 +#: dcim/forms/model_forms.py:1095 msgid "Console server port template" msgstr "コンソールサーバポートテンプレート" -#: netbox/dcim/forms/model_forms.py:1103 +#: dcim/forms/model_forms.py:1103 msgid "Front port template" msgstr "全面ポートテンプレート" -#: netbox/dcim/forms/model_forms.py:1111 +#: dcim/forms/model_forms.py:1111 msgid "Interface template" msgstr "インタフェーステンプレート" -#: netbox/dcim/forms/model_forms.py:1119 +#: dcim/forms/model_forms.py:1119 msgid "Power outlet template" msgstr "電源コンセントテンプレート" -#: netbox/dcim/forms/model_forms.py:1127 +#: dcim/forms/model_forms.py:1127 msgid "Power port template" msgstr "電源ポートテンプレート" -#: netbox/dcim/forms/model_forms.py:1135 +#: dcim/forms/model_forms.py:1135 msgid "Rear port template" msgstr "背面ポートテンプレート" -#: netbox/dcim/forms/model_forms.py:1144 netbox/dcim/forms/model_forms.py:1388 -#: netbox/dcim/forms/model_forms.py:1551 netbox/dcim/forms/model_forms.py:1583 -#: netbox/dcim/tables/connections.py:65 netbox/ipam/forms/bulk_import.py:318 -#: netbox/ipam/forms/model_forms.py:280 netbox/ipam/forms/model_forms.py:289 -#: netbox/ipam/tables/fhrp.py:64 netbox/ipam/tables/ip.py:372 -#: netbox/ipam/tables/vlans.py:169 -#: netbox/templates/circuits/inc/circuit_termination_fields.html:51 -#: netbox/templates/dcim/frontport.html:106 -#: netbox/templates/dcim/interface.html:27 -#: netbox/templates/dcim/interface.html:184 -#: netbox/templates/dcim/interface.html:310 -#: netbox/templates/dcim/rearport.html:102 -#: netbox/templates/virtualization/vminterface.html:18 -#: netbox/templates/vpn/tunneltermination.html:31 -#: netbox/templates/wireless/inc/wirelesslink_interface.html:10 -#: netbox/templates/wireless/wirelesslink.html:10 -#: netbox/templates/wireless/wirelesslink.html:55 -#: netbox/virtualization/forms/model_forms.py:348 -#: netbox/vpn/forms/bulk_import.py:297 netbox/vpn/forms/model_forms.py:436 -#: netbox/vpn/forms/model_forms.py:445 -#: netbox/wireless/forms/model_forms.py:113 -#: netbox/wireless/forms/model_forms.py:155 +#: dcim/forms/model_forms.py:1144 dcim/forms/model_forms.py:1388 +#: dcim/forms/model_forms.py:1551 dcim/forms/model_forms.py:1583 +#: dcim/tables/connections.py:65 ipam/forms/bulk_import.py:318 +#: ipam/forms/model_forms.py:280 ipam/forms/model_forms.py:289 +#: ipam/tables/fhrp.py:64 ipam/tables/ip.py:372 ipam/tables/vlans.py:169 +#: templates/circuits/inc/circuit_termination_fields.html:51 +#: templates/dcim/frontport.html:106 templates/dcim/interface.html:27 +#: templates/dcim/interface.html:184 templates/dcim/interface.html:310 +#: templates/dcim/rearport.html:102 +#: templates/virtualization/vminterface.html:18 +#: templates/vpn/tunneltermination.html:31 +#: templates/wireless/inc/wirelesslink_interface.html:10 +#: templates/wireless/wirelesslink.html:10 +#: templates/wireless/wirelesslink.html:55 +#: virtualization/forms/model_forms.py:348 vpn/forms/bulk_import.py:297 +#: vpn/forms/model_forms.py:436 vpn/forms/model_forms.py:445 +#: wireless/forms/model_forms.py:113 wireless/forms/model_forms.py:155 msgid "Interface" msgstr "インタフェース" -#: netbox/dcim/forms/model_forms.py:1145 netbox/dcim/forms/model_forms.py:1584 -#: netbox/dcim/tables/connections.py:27 -#: netbox/templates/dcim/consoleport.html:17 -#: netbox/templates/dcim/consoleserverport.html:74 -#: netbox/templates/dcim/frontport.html:112 +#: dcim/forms/model_forms.py:1145 dcim/forms/model_forms.py:1584 +#: dcim/tables/connections.py:27 templates/dcim/consoleport.html:17 +#: templates/dcim/consoleserverport.html:74 templates/dcim/frontport.html:112 msgid "Console Port" msgstr "コンソールポート" -#: netbox/dcim/forms/model_forms.py:1146 netbox/dcim/forms/model_forms.py:1585 -#: netbox/templates/dcim/consoleport.html:73 -#: netbox/templates/dcim/consoleserverport.html:17 -#: netbox/templates/dcim/frontport.html:109 +#: dcim/forms/model_forms.py:1146 dcim/forms/model_forms.py:1585 +#: templates/dcim/consoleport.html:73 templates/dcim/consoleserverport.html:17 +#: templates/dcim/frontport.html:109 msgid "Console Server Port" msgstr "コンソールサーバポート" -#: netbox/dcim/forms/model_forms.py:1147 netbox/dcim/forms/model_forms.py:1586 -#: netbox/templates/circuits/inc/circuit_termination_fields.html:52 -#: netbox/templates/dcim/consoleport.html:76 -#: netbox/templates/dcim/consoleserverport.html:77 -#: netbox/templates/dcim/frontport.html:17 -#: netbox/templates/dcim/frontport.html:115 -#: netbox/templates/dcim/interface.html:187 -#: netbox/templates/dcim/rearport.html:105 +#: dcim/forms/model_forms.py:1147 dcim/forms/model_forms.py:1586 +#: templates/circuits/inc/circuit_termination_fields.html:52 +#: templates/dcim/consoleport.html:76 templates/dcim/consoleserverport.html:77 +#: templates/dcim/frontport.html:17 templates/dcim/frontport.html:115 +#: templates/dcim/interface.html:187 templates/dcim/rearport.html:105 msgid "Front Port" msgstr "前面ポート" -#: netbox/dcim/forms/model_forms.py:1148 netbox/dcim/forms/model_forms.py:1587 -#: netbox/dcim/tables/devices.py:710 -#: netbox/templates/circuits/inc/circuit_termination_fields.html:53 -#: netbox/templates/dcim/consoleport.html:79 -#: netbox/templates/dcim/consoleserverport.html:80 -#: netbox/templates/dcim/frontport.html:50 -#: netbox/templates/dcim/frontport.html:118 -#: netbox/templates/dcim/interface.html:190 -#: netbox/templates/dcim/rearport.html:17 -#: netbox/templates/dcim/rearport.html:108 +#: dcim/forms/model_forms.py:1148 dcim/forms/model_forms.py:1587 +#: dcim/tables/devices.py:710 +#: templates/circuits/inc/circuit_termination_fields.html:53 +#: templates/dcim/consoleport.html:79 templates/dcim/consoleserverport.html:80 +#: templates/dcim/frontport.html:50 templates/dcim/frontport.html:118 +#: templates/dcim/interface.html:190 templates/dcim/rearport.html:17 +#: templates/dcim/rearport.html:108 msgid "Rear Port" msgstr "背面ポート" -#: netbox/dcim/forms/model_forms.py:1149 netbox/dcim/forms/model_forms.py:1588 -#: netbox/dcim/tables/connections.py:46 netbox/dcim/tables/devices.py:512 -#: netbox/templates/dcim/poweroutlet.html:44 -#: netbox/templates/dcim/powerport.html:17 +#: dcim/forms/model_forms.py:1149 dcim/forms/model_forms.py:1588 +#: dcim/tables/connections.py:46 dcim/tables/devices.py:512 +#: templates/dcim/poweroutlet.html:44 templates/dcim/powerport.html:17 msgid "Power Port" msgstr "電源ポート" -#: netbox/dcim/forms/model_forms.py:1150 netbox/dcim/forms/model_forms.py:1589 -#: netbox/templates/dcim/poweroutlet.html:17 -#: netbox/templates/dcim/powerport.html:77 +#: dcim/forms/model_forms.py:1150 dcim/forms/model_forms.py:1589 +#: templates/dcim/poweroutlet.html:17 templates/dcim/powerport.html:77 msgid "Power Outlet" msgstr "電源コンセント" -#: netbox/dcim/forms/model_forms.py:1152 netbox/dcim/forms/model_forms.py:1591 +#: dcim/forms/model_forms.py:1152 dcim/forms/model_forms.py:1591 msgid "Component Assignment" msgstr "構成要素割り当て" -#: netbox/dcim/forms/model_forms.py:1195 netbox/dcim/forms/model_forms.py:1638 +#: dcim/forms/model_forms.py:1195 dcim/forms/model_forms.py:1638 msgid "An InventoryItem can only be assigned to a single component." msgstr "在庫品目は1つの構成要素にのみ割り当てることができます。" -#: netbox/dcim/forms/model_forms.py:1332 +#: dcim/forms/model_forms.py:1332 msgid "LAG interface" msgstr "LAG インタフェース" -#: netbox/dcim/forms/model_forms.py:1355 +#: dcim/forms/model_forms.py:1355 msgid "Filter VLANs available for assignment by group." msgstr "割り当て可能な VLAN をグループ別にフィルタリングします。" -#: netbox/dcim/forms/model_forms.py:1484 +#: dcim/forms/model_forms.py:1484 msgid "Child Device" msgstr "子デバイス" -#: netbox/dcim/forms/model_forms.py:1485 +#: dcim/forms/model_forms.py:1485 msgid "" "Child devices must first be created and assigned to the site and rack of the" " parent device." msgstr "まず子デバイスを作成し、親デバイスのサイトとラックに割り当てる必要があります。" -#: netbox/dcim/forms/model_forms.py:1527 +#: dcim/forms/model_forms.py:1527 msgid "Console port" msgstr "コンソールポート" -#: netbox/dcim/forms/model_forms.py:1535 +#: dcim/forms/model_forms.py:1535 msgid "Console server port" msgstr "コンソールサーバポート" -#: netbox/dcim/forms/model_forms.py:1543 +#: dcim/forms/model_forms.py:1543 msgid "Front port" msgstr "前面ポート" -#: netbox/dcim/forms/model_forms.py:1559 +#: dcim/forms/model_forms.py:1559 msgid "Power outlet" msgstr "電源コンセント" -#: netbox/dcim/forms/model_forms.py:1579 -#: netbox/templates/dcim/inventoryitem.html:17 +#: dcim/forms/model_forms.py:1579 templates/dcim/inventoryitem.html:17 msgid "Inventory Item" msgstr "在庫品目" -#: netbox/dcim/forms/model_forms.py:1652 -#: netbox/templates/dcim/inventoryitemrole.html:15 +#: dcim/forms/model_forms.py:1652 templates/dcim/inventoryitemrole.html:15 msgid "Inventory Item Role" msgstr "在庫品目ロール" -#: netbox/dcim/forms/object_create.py:48 -#: netbox/dcim/forms/object_create.py:199 -#: netbox/dcim/forms/object_create.py:355 +#: dcim/forms/object_create.py:48 dcim/forms/object_create.py:199 +#: dcim/forms/object_create.py:355 msgid "" "Alphanumeric ranges are supported. (Must match the number of objects being " "created.)" msgstr "英数字の範囲がサポートされています。(作成するオブジェクトの数と一致する必要があります)。" -#: netbox/dcim/forms/object_create.py:68 +#: dcim/forms/object_create.py:68 #, python-brace-format msgid "" "The provided pattern specifies {value_count} values, but {pattern_count} are" " expected." msgstr "パターンは {value_count} 個の値を示す範囲を指定しますが、 {pattern_count} 個の値が必要です。" -#: netbox/dcim/forms/object_create.py:110 -#: netbox/dcim/forms/object_create.py:271 netbox/dcim/tables/devices.py:252 +#: dcim/forms/object_create.py:110 dcim/forms/object_create.py:271 +#: dcim/tables/devices.py:252 msgid "Rear ports" msgstr "背面ポート" -#: netbox/dcim/forms/object_create.py:111 -#: netbox/dcim/forms/object_create.py:272 +#: dcim/forms/object_create.py:111 dcim/forms/object_create.py:272 msgid "Select one rear port assignment for each front port being created." msgstr "前面ポートごとに背面ポート 1 つ割り当てます。" -#: netbox/dcim/forms/object_create.py:164 +#: dcim/forms/object_create.py:164 #, python-brace-format msgid "" "The number of front port templates to be created ({frontport_count}) must " @@ -5022,14 +4586,14 @@ msgstr "" "前面ポートテンプレートの数 ({frontport_count}) " "は選択した背面ポートの数({rearport_count})と一致する必要があります。" -#: netbox/dcim/forms/object_create.py:251 +#: dcim/forms/object_create.py:251 #, python-brace-format msgid "" "The string {module} will be replaced with the position of the " "assigned module, if any." msgstr "文字列 {module} は(存在する場合)割当モジュールの位置に置き換えられます。" -#: netbox/dcim/forms/object_create.py:320 +#: dcim/forms/object_create.py:320 #, python-brace-format msgid "" "The number of front ports to be created ({frontport_count}) must match the " @@ -5037,319 +4601,316 @@ msgid "" msgstr "" "前面ポートの数 ({frontport_count}) は選択した背面ポートの数 ({rearport_count}) と一致する必要があります。" -#: netbox/dcim/forms/object_create.py:409 netbox/dcim/tables/devices.py:1033 -#: netbox/ipam/tables/fhrp.py:31 netbox/templates/dcim/virtualchassis.html:53 -#: netbox/templates/dcim/virtualchassis_edit.html:47 -#: netbox/templates/ipam/fhrpgroup.html:38 +#: dcim/forms/object_create.py:409 dcim/tables/devices.py:1033 +#: ipam/tables/fhrp.py:31 templates/dcim/virtualchassis.html:53 +#: templates/dcim/virtualchassis_edit.html:47 templates/ipam/fhrpgroup.html:38 msgid "Members" msgstr "メンバー" -#: netbox/dcim/forms/object_create.py:418 +#: dcim/forms/object_create.py:418 msgid "Initial position" msgstr "初期ポジション" -#: netbox/dcim/forms/object_create.py:421 +#: dcim/forms/object_create.py:421 msgid "" "Position of the first member device. Increases by one for each additional " "member." msgstr "最初のメンバーのポジション。メンバーが増えるごとに 1 ずつ増えます。" -#: netbox/dcim/forms/object_create.py:435 +#: dcim/forms/object_create.py:435 msgid "A position must be specified for the first VC member." msgstr "最初の VC メンバーのポジションを指定する必要があります。" -#: netbox/dcim/models/cables.py:62 -#: netbox/dcim/models/device_component_templates.py:55 -#: netbox/dcim/models/device_components.py:62 -#: netbox/extras/models/customfields.py:111 +#: dcim/models/cables.py:62 dcim/models/device_component_templates.py:55 +#: dcim/models/device_components.py:62 extras/models/customfields.py:111 msgid "label" msgstr "ラベル" -#: netbox/dcim/models/cables.py:71 +#: dcim/models/cables.py:71 msgid "length" msgstr "長さ" -#: netbox/dcim/models/cables.py:78 +#: dcim/models/cables.py:78 msgid "length unit" msgstr "長さの単位" -#: netbox/dcim/models/cables.py:95 +#: dcim/models/cables.py:95 msgid "cable" msgstr "ケーブル" -#: netbox/dcim/models/cables.py:96 +#: dcim/models/cables.py:96 msgid "cables" msgstr "ケーブル" -#: netbox/dcim/models/cables.py:165 +#: dcim/models/cables.py:165 msgid "Must specify a unit when setting a cable length" msgstr "ケーブル長を設定するときは単位を指定する必要があります" -#: netbox/dcim/models/cables.py:168 +#: dcim/models/cables.py:168 msgid "Must define A and B terminations when creating a new cable." msgstr "新しいケーブルを作成するときは、A 終端と B 終端を定義する必要があります。" -#: netbox/dcim/models/cables.py:175 +#: dcim/models/cables.py:175 msgid "Cannot connect different termination types to same end of cable." msgstr "ケーブルの同じ端に異なる終端タイプを接続することはできません。" -#: netbox/dcim/models/cables.py:183 +#: dcim/models/cables.py:183 #, python-brace-format msgid "Incompatible termination types: {type_a} and {type_b}" msgstr "互換性のない終端タイプ: {type_a} そして {type_b}" -#: netbox/dcim/models/cables.py:193 +#: dcim/models/cables.py:193 msgid "A and B terminations cannot connect to the same object." msgstr "A 端子と B 端子を同じオブジェクトに接続することはできません。" -#: netbox/dcim/models/cables.py:260 netbox/ipam/models/asns.py:37 +#: dcim/models/cables.py:260 ipam/models/asns.py:37 msgid "end" msgstr "端" -#: netbox/dcim/models/cables.py:313 +#: dcim/models/cables.py:313 msgid "cable termination" msgstr "ケーブル終端" -#: netbox/dcim/models/cables.py:314 +#: dcim/models/cables.py:314 msgid "cable terminations" msgstr "ケーブル終端" -#: netbox/dcim/models/cables.py:333 +#: dcim/models/cables.py:333 #, python-brace-format msgid "" "Duplicate termination found for {app_label}.{model} {termination_id}: cable " "{cable_pk}" msgstr "の重複終了が見つかりました {app_label}。{model} {termination_id}: ケーブル {cable_pk}" -#: netbox/dcim/models/cables.py:343 +#: dcim/models/cables.py:343 #, python-brace-format msgid "Cables cannot be terminated to {type_display} interfaces" msgstr "ケーブルは終端できません {type_display} インターフェース" -#: netbox/dcim/models/cables.py:350 +#: dcim/models/cables.py:350 msgid "Circuit terminations attached to a provider network may not be cabled." msgstr "プロバイダーネットワークに接続されている回線終端はケーブル接続できない場合があります。" -#: netbox/dcim/models/cables.py:448 netbox/extras/models/configs.py:50 +#: dcim/models/cables.py:448 extras/models/configs.py:50 msgid "is active" msgstr "アクティブ" -#: netbox/dcim/models/cables.py:452 +#: dcim/models/cables.py:452 msgid "is complete" msgstr "完了" -#: netbox/dcim/models/cables.py:456 +#: dcim/models/cables.py:456 msgid "is split" msgstr "分割" -#: netbox/dcim/models/cables.py:464 +#: dcim/models/cables.py:464 msgid "cable path" msgstr "ケーブル経路" -#: netbox/dcim/models/cables.py:465 +#: dcim/models/cables.py:465 msgid "cable paths" msgstr "ケーブル経路" -#: netbox/dcim/models/device_component_templates.py:46 +#: dcim/models/device_component_templates.py:46 #, python-brace-format msgid "" "{module} is accepted as a substitution for the module bay position when " "attached to a module type." msgstr "{module} は、モジュールタイプに取り付けられる場合、モジュールベイ位置の代わりとして使用できます。" -#: netbox/dcim/models/device_component_templates.py:58 -#: netbox/dcim/models/device_components.py:65 +#: dcim/models/device_component_templates.py:58 +#: dcim/models/device_components.py:65 msgid "Physical label" msgstr "物理ラベル" -#: netbox/dcim/models/device_component_templates.py:103 +#: dcim/models/device_component_templates.py:103 msgid "Component templates cannot be moved to a different device type." msgstr "構成要素テンプレートを別のデバイスタイプに移動することはできません。" -#: netbox/dcim/models/device_component_templates.py:154 +#: dcim/models/device_component_templates.py:154 msgid "" "A component template cannot be associated with both a device type and a " "module type." msgstr "構成要素テンプレートをデバイスタイプとモジュールタイプの両方に関連付けることはできません。" -#: netbox/dcim/models/device_component_templates.py:158 +#: dcim/models/device_component_templates.py:158 msgid "" "A component template must be associated with either a device type or a " "module type." msgstr "構成要素テンプレートは、デバイスタイプまたはモジュールタイプのいずれかに関連付ける必要があります。" -#: netbox/dcim/models/device_component_templates.py:212 +#: dcim/models/device_component_templates.py:212 msgid "console port template" msgstr "コンソールポートテンプレート" -#: netbox/dcim/models/device_component_templates.py:213 +#: dcim/models/device_component_templates.py:213 msgid "console port templates" msgstr "コンソールポートテンプレート" -#: netbox/dcim/models/device_component_templates.py:246 +#: dcim/models/device_component_templates.py:246 msgid "console server port template" msgstr "コンソールサーバポートテンプレート" -#: netbox/dcim/models/device_component_templates.py:247 +#: dcim/models/device_component_templates.py:247 msgid "console server port templates" msgstr "コンソールサーバポートテンプレート" -#: netbox/dcim/models/device_component_templates.py:278 -#: netbox/dcim/models/device_components.py:352 +#: dcim/models/device_component_templates.py:278 +#: dcim/models/device_components.py:352 msgid "maximum draw" msgstr "最大消費電力" -#: netbox/dcim/models/device_component_templates.py:285 -#: netbox/dcim/models/device_components.py:359 +#: dcim/models/device_component_templates.py:285 +#: dcim/models/device_components.py:359 msgid "allocated draw" msgstr "割当消費電力" -#: netbox/dcim/models/device_component_templates.py:295 +#: dcim/models/device_component_templates.py:295 msgid "power port template" msgstr "電源ポートテンプレート" -#: netbox/dcim/models/device_component_templates.py:296 +#: dcim/models/device_component_templates.py:296 msgid "power port templates" msgstr "電源ポートテンプレート" -#: netbox/dcim/models/device_component_templates.py:315 -#: netbox/dcim/models/device_components.py:382 +#: dcim/models/device_component_templates.py:315 +#: dcim/models/device_components.py:382 #, python-brace-format msgid "Allocated draw cannot exceed the maximum draw ({maximum_draw}W)." msgstr "割当消費電力は最大消費電力 ({maximum_draw}W) を超えることはできません。" -#: netbox/dcim/models/device_component_templates.py:347 -#: netbox/dcim/models/device_components.py:477 +#: dcim/models/device_component_templates.py:347 +#: dcim/models/device_components.py:477 msgid "feed leg" msgstr "供給端子" -#: netbox/dcim/models/device_component_templates.py:351 -#: netbox/dcim/models/device_components.py:481 +#: dcim/models/device_component_templates.py:351 +#: dcim/models/device_components.py:481 msgid "Phase (for three-phase feeds)" msgstr "電力相 (三相電源用)" -#: netbox/dcim/models/device_component_templates.py:357 +#: dcim/models/device_component_templates.py:357 msgid "power outlet template" msgstr "電源コンセントテンプレート" -#: netbox/dcim/models/device_component_templates.py:358 +#: dcim/models/device_component_templates.py:358 msgid "power outlet templates" msgstr "電源コンセントテンプレート" -#: netbox/dcim/models/device_component_templates.py:367 +#: dcim/models/device_component_templates.py:367 #, python-brace-format msgid "Parent power port ({power_port}) must belong to the same device type" msgstr "親電源ポート ({power_port}) は同じデバイスタイプに属している必要があります" -#: netbox/dcim/models/device_component_templates.py:371 +#: dcim/models/device_component_templates.py:371 #, python-brace-format msgid "Parent power port ({power_port}) must belong to the same module type" msgstr "親電源ポート ({power_port}) は同じモジュールタイプに属している必要があります" -#: netbox/dcim/models/device_component_templates.py:423 -#: netbox/dcim/models/device_components.py:611 +#: dcim/models/device_component_templates.py:423 +#: dcim/models/device_components.py:611 msgid "management only" msgstr "管理のみ" -#: netbox/dcim/models/device_component_templates.py:431 -#: netbox/dcim/models/device_components.py:550 +#: dcim/models/device_component_templates.py:431 +#: dcim/models/device_components.py:550 msgid "bridge interface" msgstr "ブリッジインタフェース" -#: netbox/dcim/models/device_component_templates.py:449 -#: netbox/dcim/models/device_components.py:636 +#: dcim/models/device_component_templates.py:449 +#: dcim/models/device_components.py:636 msgid "wireless role" msgstr "無線ロール" -#: netbox/dcim/models/device_component_templates.py:455 +#: dcim/models/device_component_templates.py:455 msgid "interface template" msgstr "インタフェーステンプレート" -#: netbox/dcim/models/device_component_templates.py:456 +#: dcim/models/device_component_templates.py:456 msgid "interface templates" msgstr "インタフェーステンプレート" -#: netbox/dcim/models/device_component_templates.py:463 -#: netbox/dcim/models/device_components.py:804 -#: netbox/virtualization/models/virtualmachines.py:405 +#: dcim/models/device_component_templates.py:463 +#: dcim/models/device_components.py:804 +#: virtualization/models/virtualmachines.py:405 msgid "An interface cannot be bridged to itself." msgstr "インタフェースを自分自身にブリッジすることはできません。" -#: netbox/dcim/models/device_component_templates.py:466 +#: dcim/models/device_component_templates.py:466 #, python-brace-format msgid "Bridge interface ({bridge}) must belong to the same device type" msgstr "ブリッジインタフェース ({bridge}) は同じデバイスタイプに属している必要があります" -#: netbox/dcim/models/device_component_templates.py:470 +#: dcim/models/device_component_templates.py:470 #, python-brace-format msgid "Bridge interface ({bridge}) must belong to the same module type" msgstr "ブリッジインタフェース ({bridge}) は同じモジュールタイプに属している必要があります" -#: netbox/dcim/models/device_component_templates.py:526 -#: netbox/dcim/models/device_components.py:984 +#: dcim/models/device_component_templates.py:526 +#: dcim/models/device_components.py:984 msgid "rear port position" msgstr "背面ポート位置" -#: netbox/dcim/models/device_component_templates.py:551 +#: dcim/models/device_component_templates.py:551 msgid "front port template" msgstr "前面ポートテンプレート" -#: netbox/dcim/models/device_component_templates.py:552 +#: dcim/models/device_component_templates.py:552 msgid "front port templates" msgstr "前面ポートテンプレート" -#: netbox/dcim/models/device_component_templates.py:562 +#: dcim/models/device_component_templates.py:562 #, python-brace-format msgid "Rear port ({name}) must belong to the same device type" msgstr "背面ポート ({name}) は同じデバイスタイプに属している必要があります" -#: netbox/dcim/models/device_component_templates.py:568 +#: dcim/models/device_component_templates.py:568 #, python-brace-format msgid "" "Invalid rear port position ({position}); rear port {name} has only {count} " "positions" msgstr "背面ポートの位置 ({position}) が無効です; 背面ポート {name} は{count}箇所しかありません" -#: netbox/dcim/models/device_component_templates.py:621 -#: netbox/dcim/models/device_components.py:1053 +#: dcim/models/device_component_templates.py:621 +#: dcim/models/device_components.py:1053 msgid "positions" msgstr "位置" -#: netbox/dcim/models/device_component_templates.py:632 +#: dcim/models/device_component_templates.py:632 msgid "rear port template" msgstr "背面ポートテンプレート" -#: netbox/dcim/models/device_component_templates.py:633 +#: dcim/models/device_component_templates.py:633 msgid "rear port templates" msgstr "背面ポートテンプレート" -#: netbox/dcim/models/device_component_templates.py:662 -#: netbox/dcim/models/device_components.py:1103 +#: dcim/models/device_component_templates.py:662 +#: dcim/models/device_components.py:1103 msgid "position" msgstr "位置" -#: netbox/dcim/models/device_component_templates.py:665 -#: netbox/dcim/models/device_components.py:1106 +#: dcim/models/device_component_templates.py:665 +#: dcim/models/device_components.py:1106 msgid "Identifier to reference when renaming installed components" msgstr "取付済み構成要素名を変更する際に参照する識別子" -#: netbox/dcim/models/device_component_templates.py:671 +#: dcim/models/device_component_templates.py:671 msgid "module bay template" msgstr "モジュールベイテンプレート" -#: netbox/dcim/models/device_component_templates.py:672 +#: dcim/models/device_component_templates.py:672 msgid "module bay templates" msgstr "モジュールベイテンプレート" -#: netbox/dcim/models/device_component_templates.py:699 +#: dcim/models/device_component_templates.py:699 msgid "device bay template" msgstr "デバイスベイテンプレート" -#: netbox/dcim/models/device_component_templates.py:700 +#: dcim/models/device_component_templates.py:700 msgid "device bay templates" msgstr "デバイスベイテンプレート" -#: netbox/dcim/models/device_component_templates.py:713 +#: dcim/models/device_component_templates.py:713 #, python-brace-format msgid "" "Subdevice role of device type ({device_type}) must be set to \"parent\" to " @@ -5357,212 +4918,207 @@ msgid "" msgstr "" "デバイスベイを許可するためには、デバイスタイプ ({device_type}) のサブデバイスロールを「parent」に設定する必要があります。" -#: netbox/dcim/models/device_component_templates.py:768 -#: netbox/dcim/models/device_components.py:1262 +#: dcim/models/device_component_templates.py:768 +#: dcim/models/device_components.py:1262 msgid "part ID" msgstr "パーツ ID" -#: netbox/dcim/models/device_component_templates.py:770 -#: netbox/dcim/models/device_components.py:1264 +#: dcim/models/device_component_templates.py:770 +#: dcim/models/device_components.py:1264 msgid "Manufacturer-assigned part identifier" msgstr "メーカ指定の部品識別子" -#: netbox/dcim/models/device_component_templates.py:787 +#: dcim/models/device_component_templates.py:787 msgid "inventory item template" msgstr "在庫品目テンプレート" -#: netbox/dcim/models/device_component_templates.py:788 +#: dcim/models/device_component_templates.py:788 msgid "inventory item templates" msgstr "在庫品目テンプレート" -#: netbox/dcim/models/device_components.py:105 +#: dcim/models/device_components.py:105 msgid "Components cannot be moved to a different device." msgstr "構成要素を別のデバイスに移動することはできません。" -#: netbox/dcim/models/device_components.py:144 +#: dcim/models/device_components.py:144 msgid "cable end" msgstr "ケーブル端" -#: netbox/dcim/models/device_components.py:150 +#: dcim/models/device_components.py:150 msgid "mark connected" msgstr "接続済みとしてマークする" -#: netbox/dcim/models/device_components.py:152 +#: dcim/models/device_components.py:152 msgid "Treat as if a cable is connected" msgstr "ケーブルが接続されているかのように扱う" -#: netbox/dcim/models/device_components.py:170 +#: dcim/models/device_components.py:170 msgid "Must specify cable end (A or B) when attaching a cable." msgstr "ケーブルを接続するときは、ケーブルの端 (A または B) を指定する必要があります。" -#: netbox/dcim/models/device_components.py:174 +#: dcim/models/device_components.py:174 msgid "Cable end must not be set without a cable." msgstr "ケーブルの端はケーブルなしでセットしないでください。" -#: netbox/dcim/models/device_components.py:178 +#: dcim/models/device_components.py:178 msgid "Cannot mark as connected with a cable attached." msgstr "ケーブルが接続されている状態では接続済みとマークできません。" -#: netbox/dcim/models/device_components.py:202 +#: dcim/models/device_components.py:202 #, python-brace-format msgid "{class_name} models must declare a parent_object property" msgstr "{class_name} モデルは親オブジェクトプロパティを宣言しなければなりません" -#: netbox/dcim/models/device_components.py:287 -#: netbox/dcim/models/device_components.py:316 -#: netbox/dcim/models/device_components.py:349 -#: netbox/dcim/models/device_components.py:467 +#: dcim/models/device_components.py:287 dcim/models/device_components.py:316 +#: dcim/models/device_components.py:349 dcim/models/device_components.py:467 msgid "Physical port type" msgstr "物理ポートタイプ" -#: netbox/dcim/models/device_components.py:290 -#: netbox/dcim/models/device_components.py:319 +#: dcim/models/device_components.py:290 dcim/models/device_components.py:319 msgid "speed" msgstr "速度" -#: netbox/dcim/models/device_components.py:294 -#: netbox/dcim/models/device_components.py:323 +#: dcim/models/device_components.py:294 dcim/models/device_components.py:323 msgid "Port speed in bits per second" msgstr "ポート速度 (bps)" -#: netbox/dcim/models/device_components.py:300 +#: dcim/models/device_components.py:300 msgid "console port" msgstr "コンソールポート" -#: netbox/dcim/models/device_components.py:301 +#: dcim/models/device_components.py:301 msgid "console ports" msgstr "コンソールポート" -#: netbox/dcim/models/device_components.py:329 +#: dcim/models/device_components.py:329 msgid "console server port" msgstr "コンソールサーバポート" -#: netbox/dcim/models/device_components.py:330 +#: dcim/models/device_components.py:330 msgid "console server ports" msgstr "コンソールサーバポート" -#: netbox/dcim/models/device_components.py:369 +#: dcim/models/device_components.py:369 msgid "power port" msgstr "電源ポート" -#: netbox/dcim/models/device_components.py:370 +#: dcim/models/device_components.py:370 msgid "power ports" msgstr "電源ポート" -#: netbox/dcim/models/device_components.py:487 +#: dcim/models/device_components.py:487 msgid "power outlet" msgstr "電源コンセント" -#: netbox/dcim/models/device_components.py:488 +#: dcim/models/device_components.py:488 msgid "power outlets" msgstr "電源コンセント" -#: netbox/dcim/models/device_components.py:499 +#: dcim/models/device_components.py:499 #, python-brace-format msgid "Parent power port ({power_port}) must belong to the same device" msgstr "親電源ポート ({power_port}) は同じデバイスに属している必要があります" -#: netbox/dcim/models/device_components.py:530 netbox/vpn/models/crypto.py:81 -#: netbox/vpn/models/crypto.py:226 +#: dcim/models/device_components.py:530 vpn/models/crypto.py:81 +#: vpn/models/crypto.py:226 msgid "mode" msgstr "モード" -#: netbox/dcim/models/device_components.py:534 +#: dcim/models/device_components.py:534 msgid "IEEE 802.1Q tagging strategy" msgstr "IEEE 802.1Q タギング戦略" -#: netbox/dcim/models/device_components.py:542 +#: dcim/models/device_components.py:542 msgid "parent interface" msgstr "親インタフェース" -#: netbox/dcim/models/device_components.py:602 +#: dcim/models/device_components.py:602 msgid "parent LAG" msgstr "親ラグ" -#: netbox/dcim/models/device_components.py:612 +#: dcim/models/device_components.py:612 msgid "This interface is used only for out-of-band management" msgstr "このインタフェースは帯域外管理にのみ使用されます。" -#: netbox/dcim/models/device_components.py:617 +#: dcim/models/device_components.py:617 msgid "speed (Kbps)" msgstr "速度 (Kbps)" -#: netbox/dcim/models/device_components.py:620 +#: dcim/models/device_components.py:620 msgid "duplex" msgstr "デュプレックス" -#: netbox/dcim/models/device_components.py:630 +#: dcim/models/device_components.py:630 msgid "64-bit World Wide Name" msgstr "64 ビットのWWN (World Wide Name)" -#: netbox/dcim/models/device_components.py:642 +#: dcim/models/device_components.py:642 msgid "wireless channel" msgstr "無線チャネル" -#: netbox/dcim/models/device_components.py:649 +#: dcim/models/device_components.py:649 msgid "channel frequency (MHz)" msgstr "チャネル周波数 (MHz)" -#: netbox/dcim/models/device_components.py:650 -#: netbox/dcim/models/device_components.py:658 +#: dcim/models/device_components.py:650 dcim/models/device_components.py:658 msgid "Populated by selected channel (if set)" msgstr "選択したチャンネルによって設定されます (設定されている場合)" -#: netbox/dcim/models/device_components.py:664 +#: dcim/models/device_components.py:664 msgid "transmit power (dBm)" msgstr "送信パワー (dBm)" -#: netbox/dcim/models/device_components.py:689 netbox/wireless/models.py:117 +#: dcim/models/device_components.py:689 wireless/models.py:117 msgid "wireless LANs" msgstr "無線 LAN" -#: netbox/dcim/models/device_components.py:697 -#: netbox/virtualization/models/virtualmachines.py:335 +#: dcim/models/device_components.py:697 +#: virtualization/models/virtualmachines.py:335 msgid "untagged VLAN" msgstr "タグなし VLAN" -#: netbox/dcim/models/device_components.py:703 -#: netbox/virtualization/models/virtualmachines.py:341 +#: dcim/models/device_components.py:703 +#: virtualization/models/virtualmachines.py:341 msgid "tagged VLANs" msgstr "タグ付き VLAN" -#: netbox/dcim/models/device_components.py:745 -#: netbox/virtualization/models/virtualmachines.py:377 +#: dcim/models/device_components.py:745 +#: virtualization/models/virtualmachines.py:377 msgid "interface" msgstr "インタフェース" -#: netbox/dcim/models/device_components.py:746 -#: netbox/virtualization/models/virtualmachines.py:378 +#: dcim/models/device_components.py:746 +#: virtualization/models/virtualmachines.py:378 msgid "interfaces" msgstr "インタフェース" -#: netbox/dcim/models/device_components.py:757 +#: dcim/models/device_components.py:757 #, python-brace-format msgid "{display_type} interfaces cannot have a cable attached." msgstr "{display_type} インタフェースにはケーブルを接続できません。" -#: netbox/dcim/models/device_components.py:765 +#: dcim/models/device_components.py:765 #, python-brace-format msgid "{display_type} interfaces cannot be marked as connected." msgstr "{display_type} インタフェースは接続済みとしてマークできません。" -#: netbox/dcim/models/device_components.py:774 -#: netbox/virtualization/models/virtualmachines.py:390 +#: dcim/models/device_components.py:774 +#: virtualization/models/virtualmachines.py:390 msgid "An interface cannot be its own parent." msgstr "インタフェースを自身の親にすることはできません。" -#: netbox/dcim/models/device_components.py:778 +#: dcim/models/device_components.py:778 msgid "Only virtual interfaces may be assigned to a parent interface." msgstr "親インタフェースに割り当てることができるのは仮想インタフェースだけです。" -#: netbox/dcim/models/device_components.py:785 +#: dcim/models/device_components.py:785 #, python-brace-format msgid "" "The selected parent interface ({interface}) belongs to a different device " "({device})" msgstr "選択した親インタフェース ({interface}) は別のデバイス ({device}) に属しています" -#: netbox/dcim/models/device_components.py:791 +#: dcim/models/device_components.py:791 #, python-brace-format msgid "" "The selected parent interface ({interface}) belongs to {device}, which is " @@ -5571,14 +5127,14 @@ msgstr "" "選択した親インタフェース ({interface}) が属する {device} " "は、バーチャルシャーシ{virtual_chassis}には含まれていません。 。" -#: netbox/dcim/models/device_components.py:811 +#: dcim/models/device_components.py:811 #, python-brace-format msgid "" "The selected bridge interface ({bridge}) belongs to a different device " "({device})." msgstr "選択したブリッジインタフェース ({bridge}) は別のデバイス ({device}) に属しています。" -#: netbox/dcim/models/device_components.py:817 +#: dcim/models/device_components.py:817 #, python-brace-format msgid "" "The selected bridge interface ({interface}) belongs to {device}, which is " @@ -5587,21 +5143,21 @@ msgstr "" "選択したブリッジインタフェース ({interface}) が属する " "{device}は、バーチャルシャーシ{virtual_chassis}には含まれていません。 " -#: netbox/dcim/models/device_components.py:828 +#: dcim/models/device_components.py:828 msgid "Virtual interfaces cannot have a parent LAG interface." msgstr "仮想インタフェースは親 LAG インタフェースを持つことはできません。" -#: netbox/dcim/models/device_components.py:832 +#: dcim/models/device_components.py:832 msgid "A LAG interface cannot be its own parent." msgstr "LAG インタフェースを自身の親にすることはできません。" -#: netbox/dcim/models/device_components.py:839 +#: dcim/models/device_components.py:839 #, python-brace-format msgid "" "The selected LAG interface ({lag}) belongs to a different device ({device})." msgstr "選択した LAG インタフェース ({lag}) は別のデバイス ({device}) に属しています。" -#: netbox/dcim/models/device_components.py:845 +#: dcim/models/device_components.py:845 #, python-brace-format msgid "" "The selected LAG interface ({lag}) belongs to {device}, which is not part of" @@ -5610,43 +5166,43 @@ msgstr "" "選択した LAG インタフェース ({lag}) が属する {device}は、バーチャルシャーシには含まれていません " "{virtual_chassis}。" -#: netbox/dcim/models/device_components.py:856 +#: dcim/models/device_components.py:856 msgid "Virtual interfaces cannot have a PoE mode." msgstr "仮想インタフェースには PoE モードを設定できません。" -#: netbox/dcim/models/device_components.py:860 +#: dcim/models/device_components.py:860 msgid "Virtual interfaces cannot have a PoE type." msgstr "仮想インタフェースに PoE タイプを設定することはできません。" -#: netbox/dcim/models/device_components.py:866 +#: dcim/models/device_components.py:866 msgid "Must specify PoE mode when designating a PoE type." msgstr "PoE タイプを指定するときは、PoE モードを指定する必要があります。" -#: netbox/dcim/models/device_components.py:873 +#: dcim/models/device_components.py:873 msgid "Wireless role may be set only on wireless interfaces." msgstr "無線ロールは無線インタフェースでのみ設定できます。" -#: netbox/dcim/models/device_components.py:875 +#: dcim/models/device_components.py:875 msgid "Channel may be set only on wireless interfaces." msgstr "チャネルは無線インタフェースでのみ設定できます。" -#: netbox/dcim/models/device_components.py:881 +#: dcim/models/device_components.py:881 msgid "Channel frequency may be set only on wireless interfaces." msgstr "チャネル周波数は、無線インタフェースでのみ設定できます。" -#: netbox/dcim/models/device_components.py:885 +#: dcim/models/device_components.py:885 msgid "Cannot specify custom frequency with channel selected." msgstr "選択したチャンネルではカスタム周波数を指定できません。" -#: netbox/dcim/models/device_components.py:891 +#: dcim/models/device_components.py:891 msgid "Channel width may be set only on wireless interfaces." msgstr "チャネル幅は無線インタフェースでのみ設定できます。" -#: netbox/dcim/models/device_components.py:893 +#: dcim/models/device_components.py:893 msgid "Cannot specify custom width with channel selected." msgstr "選択したチャンネルではカスタム幅を指定できません。" -#: netbox/dcim/models/device_components.py:901 +#: dcim/models/device_components.py:901 #, python-brace-format msgid "" "The untagged VLAN ({untagged_vlan}) must belong to the same site as the " @@ -5654,24 +5210,24 @@ msgid "" msgstr "" "タグ無し VLAN ({untagged_vlan}) はインタフェースの親デバイスと同じサイトに属しているか、グローバルである必要があります。" -#: netbox/dcim/models/device_components.py:990 +#: dcim/models/device_components.py:990 msgid "Mapped position on corresponding rear port" msgstr "対応する背面ポートのマップ位置" -#: netbox/dcim/models/device_components.py:1006 +#: dcim/models/device_components.py:1006 msgid "front port" msgstr "前面ポート" -#: netbox/dcim/models/device_components.py:1007 +#: dcim/models/device_components.py:1007 msgid "front ports" msgstr "前面ポート" -#: netbox/dcim/models/device_components.py:1021 +#: dcim/models/device_components.py:1021 #, python-brace-format msgid "Rear port ({rear_port}) must belong to the same device" msgstr "背面ポート ({rear_port}) は同じデバイスに属している必要があります" -#: netbox/dcim/models/device_components.py:1029 +#: dcim/models/device_components.py:1029 #, python-brace-format msgid "" "Invalid rear port position ({rear_port_position}): Rear port {name} has only" @@ -5679,198 +5235,195 @@ msgid "" msgstr "" "背面ポートの位置 ({rear_port_position}) が無効です: 背面ポート {name} は {positions} 箇所しかありません。" -#: netbox/dcim/models/device_components.py:1059 +#: dcim/models/device_components.py:1059 msgid "Number of front ports which may be mapped" msgstr "マップできる前面ポートの数" -#: netbox/dcim/models/device_components.py:1064 +#: dcim/models/device_components.py:1064 msgid "rear port" msgstr "背面ポート" -#: netbox/dcim/models/device_components.py:1065 +#: dcim/models/device_components.py:1065 msgid "rear ports" msgstr "背面ポート" -#: netbox/dcim/models/device_components.py:1079 +#: dcim/models/device_components.py:1079 #, python-brace-format msgid "" "The number of positions cannot be less than the number of mapped front ports" " ({frontport_count})" msgstr "ポジションの数は、マップされた前面ポートの数より少なくすることはできません ({frontport_count})" -#: netbox/dcim/models/device_components.py:1120 +#: dcim/models/device_components.py:1120 msgid "module bay" msgstr "モジュールベイ" -#: netbox/dcim/models/device_components.py:1121 +#: dcim/models/device_components.py:1121 msgid "module bays" msgstr "モジュールベイ" -#: netbox/dcim/models/device_components.py:1138 -#: netbox/dcim/models/devices.py:1224 +#: dcim/models/device_components.py:1138 dcim/models/devices.py:1224 msgid "A module bay cannot belong to a module installed within it." msgstr "モジュールベイは、その中に取り付けられているモジュールに属することはできません。" -#: netbox/dcim/models/device_components.py:1164 +#: dcim/models/device_components.py:1164 msgid "device bay" msgstr "デバイスベイ" -#: netbox/dcim/models/device_components.py:1165 +#: dcim/models/device_components.py:1165 msgid "device bays" msgstr "デバイスベイ" -#: netbox/dcim/models/device_components.py:1175 +#: dcim/models/device_components.py:1175 #, python-brace-format msgid "This type of device ({device_type}) does not support device bays." msgstr "このタイプ ({device_type}) のデバイスは、デバイスベイをサポートしていません。" -#: netbox/dcim/models/device_components.py:1181 +#: dcim/models/device_components.py:1181 msgid "Cannot install a device into itself." msgstr "デバイスをそれ自体に挿入することはできません。" -#: netbox/dcim/models/device_components.py:1189 +#: dcim/models/device_components.py:1189 #, python-brace-format msgid "" "Cannot install the specified device; device is already installed in {bay}." msgstr "指定されたデバイスは取付できません。デバイスは既に {bay} に取付られています 。" -#: netbox/dcim/models/device_components.py:1210 +#: dcim/models/device_components.py:1210 msgid "inventory item role" msgstr "在庫品目ロール" -#: netbox/dcim/models/device_components.py:1211 +#: dcim/models/device_components.py:1211 msgid "inventory item roles" msgstr "在庫品目ロール" -#: netbox/dcim/models/device_components.py:1268 -#: netbox/dcim/models/devices.py:607 netbox/dcim/models/devices.py:1181 -#: netbox/dcim/models/racks.py:313 -#: netbox/virtualization/models/virtualmachines.py:131 +#: dcim/models/device_components.py:1268 dcim/models/devices.py:607 +#: dcim/models/devices.py:1181 dcim/models/racks.py:313 +#: virtualization/models/virtualmachines.py:131 msgid "serial number" msgstr "シリアル番号" -#: netbox/dcim/models/device_components.py:1276 -#: netbox/dcim/models/devices.py:615 netbox/dcim/models/devices.py:1188 -#: netbox/dcim/models/racks.py:320 +#: dcim/models/device_components.py:1276 dcim/models/devices.py:615 +#: dcim/models/devices.py:1188 dcim/models/racks.py:320 msgid "asset tag" msgstr "アセットタグ" -#: netbox/dcim/models/device_components.py:1277 +#: dcim/models/device_components.py:1277 msgid "A unique tag used to identify this item" msgstr "この部品を識別するために使用される一意のタグ" -#: netbox/dcim/models/device_components.py:1280 +#: dcim/models/device_components.py:1280 msgid "discovered" msgstr "自動検出" -#: netbox/dcim/models/device_components.py:1282 +#: dcim/models/device_components.py:1282 msgid "This item was automatically discovered" msgstr "このアイテムは自動的に検出されました" -#: netbox/dcim/models/device_components.py:1300 +#: dcim/models/device_components.py:1300 msgid "inventory item" msgstr "在庫品目" -#: netbox/dcim/models/device_components.py:1301 +#: dcim/models/device_components.py:1301 msgid "inventory items" msgstr "在庫品目" -#: netbox/dcim/models/device_components.py:1312 +#: dcim/models/device_components.py:1312 msgid "Cannot assign self as parent." msgstr "自分を親として割り当てることはできません。" -#: netbox/dcim/models/device_components.py:1320 +#: dcim/models/device_components.py:1320 msgid "Parent inventory item does not belong to the same device." msgstr "親在庫品目は同じデバイスに属していません。" -#: netbox/dcim/models/device_components.py:1326 +#: dcim/models/device_components.py:1326 msgid "Cannot move an inventory item with dependent children" msgstr "子を持つ在庫品目は移動できません" -#: netbox/dcim/models/device_components.py:1334 +#: dcim/models/device_components.py:1334 msgid "Cannot assign inventory item to component on another device" msgstr "在庫品目を別のデバイスの構成要素に割り当てることはできません" -#: netbox/dcim/models/devices.py:54 +#: dcim/models/devices.py:54 msgid "manufacturer" msgstr "メーカ" -#: netbox/dcim/models/devices.py:55 +#: dcim/models/devices.py:55 msgid "manufacturers" msgstr "メーカ" -#: netbox/dcim/models/devices.py:82 netbox/dcim/models/devices.py:382 -#: netbox/dcim/models/racks.py:133 +#: dcim/models/devices.py:82 dcim/models/devices.py:382 +#: dcim/models/racks.py:133 msgid "model" msgstr "型" -#: netbox/dcim/models/devices.py:95 +#: dcim/models/devices.py:95 msgid "default platform" msgstr "デフォルトプラットフォーム" -#: netbox/dcim/models/devices.py:98 netbox/dcim/models/devices.py:386 +#: dcim/models/devices.py:98 dcim/models/devices.py:386 msgid "part number" msgstr "パーツ番号" -#: netbox/dcim/models/devices.py:101 netbox/dcim/models/devices.py:389 +#: dcim/models/devices.py:101 dcim/models/devices.py:389 msgid "Discrete part number (optional)" msgstr "個別の部品番号 (オプション)" -#: netbox/dcim/models/devices.py:107 netbox/dcim/models/racks.py:54 +#: dcim/models/devices.py:107 dcim/models/racks.py:54 msgid "height (U)" msgstr "高さ (U)" -#: netbox/dcim/models/devices.py:111 +#: dcim/models/devices.py:111 msgid "exclude from utilization" msgstr "使用率から除外" -#: netbox/dcim/models/devices.py:112 +#: dcim/models/devices.py:112 msgid "Devices of this type are excluded when calculating rack utilization." msgstr "このタイプのデバイスは、ラック使用率の計算時に除外されます。" -#: netbox/dcim/models/devices.py:116 +#: dcim/models/devices.py:116 msgid "is full depth" msgstr "奥行きをすべて利用する" -#: netbox/dcim/models/devices.py:117 +#: dcim/models/devices.py:117 msgid "Device consumes both front and rear rack faces." msgstr "デバイスは前面と背面の両方のラック面を使用します。" -#: netbox/dcim/models/devices.py:123 +#: dcim/models/devices.py:123 msgid "parent/child status" msgstr "親/子のステータス" -#: netbox/dcim/models/devices.py:124 +#: dcim/models/devices.py:124 msgid "" "Parent devices house child devices in device bays. Leave blank if this " "device type is neither a parent nor a child." msgstr "親デバイスはデバイスベイに子デバイスを収納します。このデバイスタイプが親でも子供でもない場合は、空白のままにしてください。" -#: netbox/dcim/models/devices.py:128 netbox/dcim/models/devices.py:392 -#: netbox/dcim/models/devices.py:659 netbox/dcim/models/racks.py:324 +#: dcim/models/devices.py:128 dcim/models/devices.py:392 +#: dcim/models/devices.py:659 dcim/models/racks.py:324 msgid "airflow" msgstr "エアフロー" -#: netbox/dcim/models/devices.py:204 +#: dcim/models/devices.py:204 msgid "device type" msgstr "デバイスタイプ" -#: netbox/dcim/models/devices.py:205 +#: dcim/models/devices.py:205 msgid "device types" msgstr "デバイスタイプ" -#: netbox/dcim/models/devices.py:290 +#: dcim/models/devices.py:290 msgid "U height must be in increments of 0.5 rack units." msgstr "U の高さは 0.5 ラック単位でなければなりません。" -#: netbox/dcim/models/devices.py:307 +#: dcim/models/devices.py:307 #, python-brace-format msgid "" "Device {device} in rack {rack} does not have sufficient space to accommodate" " a height of {height}U" msgstr "ラック内 {rack} のデバイス {device} は高さ{height}Uに対応する十分なスペースが有りません " -#: netbox/dcim/models/devices.py:322 +#: dcim/models/devices.py:322 #, python-brace-format msgid "" "Unable to set 0U height: Found {racked_instance_count} " @@ -5879,173 +5432,173 @@ msgstr "" "高さは 0U にできません: {racked_instance_count} インスタンス " "がラックに取り付け済みです。" -#: netbox/dcim/models/devices.py:331 +#: dcim/models/devices.py:331 msgid "" "Must delete all device bay templates associated with this device before " "declassifying it as a parent device." msgstr "このデバイスを親デバイスとして分類解除する前に、このデバイスに関連付けられているすべてのデバイスベイテンプレートを削除する必要があります。" -#: netbox/dcim/models/devices.py:337 +#: dcim/models/devices.py:337 msgid "Child device types must be 0U." msgstr "子デバイスタイプは 0U でなければなりません。" -#: netbox/dcim/models/devices.py:411 +#: dcim/models/devices.py:411 msgid "module type" msgstr "モジュールタイプ" -#: netbox/dcim/models/devices.py:412 +#: dcim/models/devices.py:412 msgid "module types" msgstr "モジュールタイプ" -#: netbox/dcim/models/devices.py:485 +#: dcim/models/devices.py:485 msgid "Virtual machines may be assigned to this role" msgstr "仮想マシンをこのロールに割り当てることができます" -#: netbox/dcim/models/devices.py:497 +#: dcim/models/devices.py:497 msgid "device role" msgstr "デバイスロール" -#: netbox/dcim/models/devices.py:498 +#: dcim/models/devices.py:498 msgid "device roles" msgstr "デバイスロール" -#: netbox/dcim/models/devices.py:515 +#: dcim/models/devices.py:515 msgid "Optionally limit this platform to devices of a certain manufacturer" msgstr "オプションで、このプラットフォームを特定のメーカのデバイスに限定できます" -#: netbox/dcim/models/devices.py:527 +#: dcim/models/devices.py:527 msgid "platform" msgstr "プラットフォーム" -#: netbox/dcim/models/devices.py:528 +#: dcim/models/devices.py:528 msgid "platforms" msgstr "プラットフォーム" -#: netbox/dcim/models/devices.py:576 +#: dcim/models/devices.py:576 msgid "The function this device serves" msgstr "このデバイスが果たす機能" -#: netbox/dcim/models/devices.py:608 +#: dcim/models/devices.py:608 msgid "Chassis serial number, assigned by the manufacturer" msgstr "製造元によって割当られた、シャーシのシリアル番号" -#: netbox/dcim/models/devices.py:616 netbox/dcim/models/devices.py:1189 +#: dcim/models/devices.py:616 dcim/models/devices.py:1189 msgid "A unique tag used to identify this device" msgstr "このデバイスを識別するために使用される一意のタグ" -#: netbox/dcim/models/devices.py:643 +#: dcim/models/devices.py:643 msgid "position (U)" msgstr "ポジション (U)" -#: netbox/dcim/models/devices.py:650 +#: dcim/models/devices.py:650 msgid "rack face" msgstr "ラックフェイス" -#: netbox/dcim/models/devices.py:670 netbox/dcim/models/devices.py:1415 -#: netbox/virtualization/models/virtualmachines.py:100 +#: dcim/models/devices.py:670 dcim/models/devices.py:1415 +#: virtualization/models/virtualmachines.py:100 msgid "primary IPv4" msgstr "プライマリ IPv4" -#: netbox/dcim/models/devices.py:678 netbox/dcim/models/devices.py:1423 -#: netbox/virtualization/models/virtualmachines.py:108 +#: dcim/models/devices.py:678 dcim/models/devices.py:1423 +#: virtualization/models/virtualmachines.py:108 msgid "primary IPv6" msgstr "プライマリ IPv6" -#: netbox/dcim/models/devices.py:686 +#: dcim/models/devices.py:686 msgid "out-of-band IP" msgstr "out-of-band IP" -#: netbox/dcim/models/devices.py:703 +#: dcim/models/devices.py:703 msgid "VC position" msgstr "VCポジション" -#: netbox/dcim/models/devices.py:706 +#: dcim/models/devices.py:706 msgid "Virtual chassis position" msgstr "バーチャルシャーシポジション" -#: netbox/dcim/models/devices.py:709 +#: dcim/models/devices.py:709 msgid "VC priority" msgstr "VC プライオリティ" -#: netbox/dcim/models/devices.py:713 +#: dcim/models/devices.py:713 msgid "Virtual chassis master election priority" msgstr "バーチャルシャーシのマスター選択優先順位" -#: netbox/dcim/models/devices.py:716 netbox/dcim/models/sites.py:207 +#: dcim/models/devices.py:716 dcim/models/sites.py:207 msgid "latitude" msgstr "緯度" -#: netbox/dcim/models/devices.py:721 netbox/dcim/models/devices.py:729 -#: netbox/dcim/models/sites.py:212 netbox/dcim/models/sites.py:220 +#: dcim/models/devices.py:721 dcim/models/devices.py:729 +#: dcim/models/sites.py:212 dcim/models/sites.py:220 msgid "GPS coordinate in decimal format (xx.yyyyyy)" msgstr "10 進数形式の GPS 座標 (xx.yyyyyy)" -#: netbox/dcim/models/devices.py:724 netbox/dcim/models/sites.py:215 +#: dcim/models/devices.py:724 dcim/models/sites.py:215 msgid "longitude" msgstr "経度" -#: netbox/dcim/models/devices.py:797 +#: dcim/models/devices.py:797 msgid "Device name must be unique per site." msgstr "デバイス名はサイトごとに一意である必要があります。" -#: netbox/dcim/models/devices.py:808 netbox/ipam/models/services.py:75 +#: dcim/models/devices.py:808 ipam/models/services.py:75 msgid "device" msgstr "デバイス" -#: netbox/dcim/models/devices.py:809 +#: dcim/models/devices.py:809 msgid "devices" msgstr "デバイス" -#: netbox/dcim/models/devices.py:835 +#: dcim/models/devices.py:835 #, python-brace-format msgid "Rack {rack} does not belong to site {site}." msgstr "ラック {rack} はサイト{site}に属していません 。" -#: netbox/dcim/models/devices.py:840 +#: dcim/models/devices.py:840 #, python-brace-format msgid "Location {location} does not belong to site {site}." msgstr "ロケーション {location} はサイト{site}に属していません 。" -#: netbox/dcim/models/devices.py:846 +#: dcim/models/devices.py:846 #, python-brace-format msgid "Rack {rack} does not belong to location {location}." msgstr "ラック {rack} はロケーション{location}に属していません 。" -#: netbox/dcim/models/devices.py:853 +#: dcim/models/devices.py:853 msgid "Cannot select a rack face without assigning a rack." msgstr "ラックを割り当てないとラックフェースは選択できません。" -#: netbox/dcim/models/devices.py:857 +#: dcim/models/devices.py:857 msgid "Cannot select a rack position without assigning a rack." msgstr "ラックを割り当てないとラックポジションを選択できません。" -#: netbox/dcim/models/devices.py:863 +#: dcim/models/devices.py:863 msgid "Position must be in increments of 0.5 rack units." msgstr "ポジションは 0.5 ラックユニット単位で入力する必要があります。" -#: netbox/dcim/models/devices.py:867 +#: dcim/models/devices.py:867 msgid "Must specify rack face when defining rack position." msgstr "ラックの位置を定義するときは、ラックの面を指定する必要があります。" -#: netbox/dcim/models/devices.py:875 +#: dcim/models/devices.py:875 #, python-brace-format msgid "" "A 0U device type ({device_type}) cannot be assigned to a rack position." msgstr "0U デバイスタイプ ({device_type}) をラックポジションに割り当てることはできません。" -#: netbox/dcim/models/devices.py:886 +#: dcim/models/devices.py:886 msgid "" "Child device types cannot be assigned to a rack face. This is an attribute " "of the parent device." msgstr "子デバイスタイプをラックフェースに割り当てることはできません。これは親デバイスの属性です。" -#: netbox/dcim/models/devices.py:893 +#: dcim/models/devices.py:893 msgid "" "Child device types cannot be assigned to a rack position. This is an " "attribute of the parent device." msgstr "子デバイスタイプをラックポジションに割り当てることはできません。これは親デバイスの属性です。" -#: netbox/dcim/models/devices.py:907 +#: dcim/models/devices.py:907 #, python-brace-format msgid "" "U{position} is already occupied or does not have sufficient space to " @@ -6054,22 +5607,22 @@ msgstr "" "U{position} が既に占有されているか、このデバイスタイプを収容するのに十分なスペースがありません: {device_type} " "({u_height}U)" -#: netbox/dcim/models/devices.py:922 +#: dcim/models/devices.py:922 #, python-brace-format msgid "{ip} is not an IPv4 address." msgstr "{ip} は IPv4 アドレスではありません。" -#: netbox/dcim/models/devices.py:931 netbox/dcim/models/devices.py:946 +#: dcim/models/devices.py:931 dcim/models/devices.py:946 #, python-brace-format msgid "The specified IP address ({ip}) is not assigned to this device." msgstr "指定された IP アドレス ({ip}) はこのデバイスに割り当てられていません。" -#: netbox/dcim/models/devices.py:937 +#: dcim/models/devices.py:937 #, python-brace-format msgid "{ip} is not an IPv6 address." msgstr "{ip} IPv6 アドレスではありません。" -#: netbox/dcim/models/devices.py:964 +#: dcim/models/devices.py:964 #, python-brace-format msgid "" "The assigned platform is limited to {platform_manufacturer} device types, " @@ -6078,154 +5631,154 @@ msgstr "" "割当られたプラットフォームは{platform_manufacturer} のデバイスタイプに限定されます 。しかし、このデバイスのタイプは " "{devicetype_manufacturer}に属します。" -#: netbox/dcim/models/devices.py:975 +#: dcim/models/devices.py:975 #, python-brace-format msgid "The assigned cluster belongs to a different site ({site})" msgstr "割当クラスタは別のサイトに属しています ({site})" -#: netbox/dcim/models/devices.py:983 +#: dcim/models/devices.py:983 msgid "A device assigned to a virtual chassis must have its position defined." msgstr "仮想シャーシに割当られたデバイスには、その位置が定義されている必要があります。" -#: netbox/dcim/models/devices.py:988 +#: dcim/models/devices.py:988 #, python-brace-format msgid "" "Device cannot be removed from virtual chassis {virtual_chassis} because it " "is currently designated as its master." msgstr "デバイスを仮想シャーシから削除できない {virtual_chassis} 現在マスターとして指定されているからです。" -#: netbox/dcim/models/devices.py:1196 +#: dcim/models/devices.py:1196 msgid "module" msgstr "モジュール" -#: netbox/dcim/models/devices.py:1197 +#: dcim/models/devices.py:1197 msgid "modules" msgstr "モジュール" -#: netbox/dcim/models/devices.py:1213 +#: dcim/models/devices.py:1213 #, python-brace-format msgid "" "Module must be installed within a module bay belonging to the assigned " "device ({device})." msgstr "モジュールは、割当デバイスに属するモジュールベイ内に取り付ける必要があります ({device})。" -#: netbox/dcim/models/devices.py:1334 +#: dcim/models/devices.py:1334 msgid "domain" msgstr "ドメイン" -#: netbox/dcim/models/devices.py:1347 netbox/dcim/models/devices.py:1348 +#: dcim/models/devices.py:1347 dcim/models/devices.py:1348 msgid "virtual chassis" msgstr "バーチャルシャーシ" -#: netbox/dcim/models/devices.py:1363 +#: dcim/models/devices.py:1363 #, python-brace-format msgid "" "The selected master ({master}) is not assigned to this virtual chassis." msgstr "選択したマスター ({master}) はこの仮想シャーシに割り当てられていません。" -#: netbox/dcim/models/devices.py:1379 +#: dcim/models/devices.py:1379 #, python-brace-format msgid "" "Unable to delete virtual chassis {self}. There are member interfaces which " "form a cross-chassis LAG interfaces." msgstr "バーチャルシャーシ{self}を削除できません 。クロスシャーシ LAG インタフェースを形成するメンバーインタフェースがあります。" -#: netbox/dcim/models/devices.py:1404 netbox/vpn/models/l2vpn.py:37 +#: dcim/models/devices.py:1404 vpn/models/l2vpn.py:37 msgid "identifier" msgstr "識別子" -#: netbox/dcim/models/devices.py:1405 +#: dcim/models/devices.py:1405 msgid "Numeric identifier unique to the parent device" msgstr "親デバイスに固有の数値識別子" -#: netbox/dcim/models/devices.py:1433 netbox/extras/models/customfields.py:225 -#: netbox/extras/models/models.py:107 netbox/extras/models/models.py:694 -#: netbox/netbox/models/__init__.py:115 +#: dcim/models/devices.py:1433 extras/models/customfields.py:225 +#: extras/models/models.py:107 extras/models/models.py:694 +#: netbox/models/__init__.py:115 msgid "comments" msgstr "コメント" -#: netbox/dcim/models/devices.py:1449 +#: dcim/models/devices.py:1449 msgid "virtual device context" msgstr "仮想デバイスコンテキスト" -#: netbox/dcim/models/devices.py:1450 +#: dcim/models/devices.py:1450 msgid "virtual device contexts" msgstr "仮想デバイスコンテキスト" -#: netbox/dcim/models/devices.py:1482 +#: dcim/models/devices.py:1482 #, python-brace-format msgid "{ip} is not an IPv{family} address." msgstr "{ip}は IPv{family}アドレスではありません。" -#: netbox/dcim/models/devices.py:1488 +#: dcim/models/devices.py:1488 msgid "Primary IP address must belong to an interface on the assigned device." msgstr "プライマリ IP アドレスは、割当デバイスのインタフェースに属している必要があります。" -#: netbox/dcim/models/mixins.py:15 netbox/extras/models/configs.py:41 -#: netbox/extras/models/models.py:313 netbox/extras/models/models.py:522 -#: netbox/extras/models/search.py:48 netbox/ipam/models/ip.py:194 +#: dcim/models/mixins.py:15 extras/models/configs.py:41 +#: extras/models/models.py:313 extras/models/models.py:522 +#: extras/models/search.py:48 ipam/models/ip.py:194 msgid "weight" msgstr "重量" -#: netbox/dcim/models/mixins.py:22 +#: dcim/models/mixins.py:22 msgid "weight unit" msgstr "重量単位" -#: netbox/dcim/models/mixins.py:51 +#: dcim/models/mixins.py:51 msgid "Must specify a unit when setting a weight" msgstr "重量を設定するときは単位を指定する必要があります" -#: netbox/dcim/models/power.py:55 +#: dcim/models/power.py:55 msgid "power panel" msgstr "電源盤" -#: netbox/dcim/models/power.py:56 +#: dcim/models/power.py:56 msgid "power panels" msgstr "電源盤" -#: netbox/dcim/models/power.py:70 +#: dcim/models/power.py:70 #, python-brace-format msgid "" "Location {location} ({location_site}) is in a different site than {site}" msgstr "ロケーション {location} ({location_site}) は{site}とは別のサイトにあります " -#: netbox/dcim/models/power.py:108 +#: dcim/models/power.py:108 msgid "supply" msgstr "供給" -#: netbox/dcim/models/power.py:114 +#: dcim/models/power.py:114 msgid "phase" msgstr "電力相" -#: netbox/dcim/models/power.py:120 +#: dcim/models/power.py:120 msgid "voltage" msgstr "電圧" -#: netbox/dcim/models/power.py:125 +#: dcim/models/power.py:125 msgid "amperage" msgstr "アンペア数" -#: netbox/dcim/models/power.py:130 +#: dcim/models/power.py:130 msgid "max utilization" msgstr "最大使用率" -#: netbox/dcim/models/power.py:133 +#: dcim/models/power.py:133 msgid "Maximum permissible draw (percentage)" msgstr "最大許容電力 (パーセンテージ)" -#: netbox/dcim/models/power.py:136 +#: dcim/models/power.py:136 msgid "available power" msgstr "使用可能な電力" -#: netbox/dcim/models/power.py:164 +#: dcim/models/power.py:164 msgid "power feed" msgstr "電源タップ" -#: netbox/dcim/models/power.py:165 +#: dcim/models/power.py:165 msgid "power feeds" msgstr "電源タップ" -#: netbox/dcim/models/power.py:179 +#: dcim/models/power.py:179 #, python-brace-format msgid "" "Rack {rack} ({rack_site}) and power panel {powerpanel} ({powerpanel_site}) " @@ -6233,1381 +5786,1295 @@ msgid "" msgstr "" "ラック {rack} ({rack_site}) と電源盤 {powerpanel} ({powerpanel_site}) は別のサイトにあります。" -#: netbox/dcim/models/power.py:190 +#: dcim/models/power.py:190 msgid "Voltage cannot be negative for AC supply" msgstr "AC 電源の電圧を負にすることはできません" -#: netbox/dcim/models/racks.py:47 +#: dcim/models/racks.py:47 msgid "width" msgstr "幅" -#: netbox/dcim/models/racks.py:48 +#: dcim/models/racks.py:48 msgid "Rail-to-rail width" msgstr "レール間の幅" -#: netbox/dcim/models/racks.py:56 +#: dcim/models/racks.py:56 msgid "Height in rack units" msgstr "ラックユニットの高さ" -#: netbox/dcim/models/racks.py:60 +#: dcim/models/racks.py:60 msgid "starting unit" msgstr "開始ユニット" -#: netbox/dcim/models/racks.py:62 +#: dcim/models/racks.py:62 msgid "Starting unit for rack" msgstr "ラック用開始ユニット" -#: netbox/dcim/models/racks.py:66 +#: dcim/models/racks.py:66 msgid "descending units" msgstr "降順" -#: netbox/dcim/models/racks.py:67 +#: dcim/models/racks.py:67 msgid "Units are numbered top-to-bottom" msgstr "ユニットには上から下に番号が付けられています" -#: netbox/dcim/models/racks.py:72 +#: dcim/models/racks.py:72 msgid "outer width" msgstr "外形の幅" -#: netbox/dcim/models/racks.py:75 +#: dcim/models/racks.py:75 msgid "Outer dimension of rack (width)" msgstr "ラックの外形寸法(幅)" -#: netbox/dcim/models/racks.py:78 +#: dcim/models/racks.py:78 msgid "outer depth" msgstr "外形の奥行" -#: netbox/dcim/models/racks.py:81 +#: dcim/models/racks.py:81 msgid "Outer dimension of rack (depth)" msgstr "ラックの外形寸法(奥行き)" -#: netbox/dcim/models/racks.py:84 +#: dcim/models/racks.py:84 msgid "outer unit" msgstr "外形の単位" -#: netbox/dcim/models/racks.py:90 +#: dcim/models/racks.py:90 msgid "mounting depth" msgstr "取り付け奥行き" -#: netbox/dcim/models/racks.py:94 +#: dcim/models/racks.py:94 msgid "" "Maximum depth of a mounted device, in millimeters. For four-post racks, this" " is the distance between the front and rear rails." msgstr "マウントされたデバイスの最大奥行き (mm)。4 支柱ラックの場合、これは前面レールと背面レールの間の距離です。" -#: netbox/dcim/models/racks.py:102 +#: dcim/models/racks.py:102 msgid "max weight" msgstr "最大重量" -#: netbox/dcim/models/racks.py:105 +#: dcim/models/racks.py:105 msgid "Maximum load capacity for the rack" msgstr "ラックの最大積載量" -#: netbox/dcim/models/racks.py:125 netbox/dcim/models/racks.py:252 +#: dcim/models/racks.py:125 dcim/models/racks.py:252 msgid "form factor" msgstr "フォームファクタ" -#: netbox/dcim/models/racks.py:162 +#: dcim/models/racks.py:162 msgid "rack type" msgstr "ラックタイプ" -#: netbox/dcim/models/racks.py:163 +#: dcim/models/racks.py:163 msgid "rack types" msgstr "ラックタイプ" -#: netbox/dcim/models/racks.py:180 netbox/dcim/models/racks.py:379 +#: dcim/models/racks.py:180 dcim/models/racks.py:379 msgid "Must specify a unit when setting an outer width/depth" msgstr "外形の幅/奥行きを設定する場合は単位を指定する必要があります" -#: netbox/dcim/models/racks.py:184 netbox/dcim/models/racks.py:383 +#: dcim/models/racks.py:184 dcim/models/racks.py:383 msgid "Must specify a unit when setting a maximum weight" msgstr "最大重量を設定する場合は単位を指定する必要があります" -#: netbox/dcim/models/racks.py:230 +#: dcim/models/racks.py:230 msgid "rack role" msgstr "ラックロール" -#: netbox/dcim/models/racks.py:231 +#: dcim/models/racks.py:231 msgid "rack roles" msgstr "ラックロール" -#: netbox/dcim/models/racks.py:274 +#: dcim/models/racks.py:274 msgid "facility ID" msgstr "ファシリティ ID" -#: netbox/dcim/models/racks.py:275 +#: dcim/models/racks.py:275 msgid "Locally-assigned identifier" msgstr "ローカル識別子" -#: netbox/dcim/models/racks.py:308 netbox/ipam/forms/bulk_import.py:201 -#: netbox/ipam/forms/bulk_import.py:266 netbox/ipam/forms/bulk_import.py:301 -#: netbox/ipam/forms/bulk_import.py:459 -#: netbox/virtualization/forms/bulk_import.py:112 +#: dcim/models/racks.py:308 ipam/forms/bulk_import.py:201 +#: ipam/forms/bulk_import.py:266 ipam/forms/bulk_import.py:301 +#: ipam/forms/bulk_import.py:459 virtualization/forms/bulk_import.py:112 msgid "Functional role" msgstr "機能的ロール" -#: netbox/dcim/models/racks.py:321 +#: dcim/models/racks.py:321 msgid "A unique tag used to identify this rack" msgstr "このラックの識別に使用される固有のタグ" -#: netbox/dcim/models/racks.py:359 +#: dcim/models/racks.py:359 msgid "rack" msgstr "ラック" -#: netbox/dcim/models/racks.py:360 +#: dcim/models/racks.py:360 msgid "racks" msgstr "ラック" -#: netbox/dcim/models/racks.py:375 +#: dcim/models/racks.py:375 #, python-brace-format msgid "Assigned location must belong to parent site ({site})." msgstr "割当ロケーションは親サイト ({site}) に属している必要があります。" -#: netbox/dcim/models/racks.py:393 +#: dcim/models/racks.py:393 #, python-brace-format msgid "" "Rack must be at least {min_height}U tall to house currently installed " "devices." msgstr "現在取付られているデバイスを収納するには、ラックは少なくとも{min_height} U 必要です 。" -#: netbox/dcim/models/racks.py:400 +#: dcim/models/racks.py:400 #, python-brace-format msgid "" "Rack unit numbering must begin at {position} or less to house currently " "installed devices." msgstr "現在取付られているデバイスを収納するには、ラックユニット番号は {position} 以下で始まる必要があります 。" -#: netbox/dcim/models/racks.py:408 +#: dcim/models/racks.py:408 #, python-brace-format msgid "Location must be from the same site, {site}." msgstr "ロケーションは同じサイト {site} のものでなければなりません。 。" -#: netbox/dcim/models/racks.py:670 +#: dcim/models/racks.py:670 msgid "units" msgstr "単位" -#: netbox/dcim/models/racks.py:696 +#: dcim/models/racks.py:696 msgid "rack reservation" msgstr "ラック予約" -#: netbox/dcim/models/racks.py:697 +#: dcim/models/racks.py:697 msgid "rack reservations" msgstr "ラック予約" -#: netbox/dcim/models/racks.py:714 +#: dcim/models/racks.py:714 #, python-brace-format msgid "Invalid unit(s) for {height}U rack: {unit_list}" msgstr " {height}U ラックのユニットが無効です: {unit_list}" -#: netbox/dcim/models/racks.py:727 +#: dcim/models/racks.py:727 #, python-brace-format msgid "The following units have already been reserved: {unit_list}" msgstr "次のユニットはすでに予約されています: {unit_list}" -#: netbox/dcim/models/sites.py:49 +#: dcim/models/sites.py:49 msgid "A top-level region with this name already exists." msgstr "同名のトップレベルリージョンが存在します。" -#: netbox/dcim/models/sites.py:59 +#: dcim/models/sites.py:59 msgid "A top-level region with this slug already exists." msgstr "このslugを含むトップレベルリージョンは存在します。" -#: netbox/dcim/models/sites.py:62 +#: dcim/models/sites.py:62 msgid "region" msgstr "領域" -#: netbox/dcim/models/sites.py:63 +#: dcim/models/sites.py:63 msgid "regions" msgstr "リージョン" -#: netbox/dcim/models/sites.py:102 +#: dcim/models/sites.py:102 msgid "A top-level site group with this name already exists." msgstr "同名のトップレベルサイトグループが存在します。" -#: netbox/dcim/models/sites.py:112 +#: dcim/models/sites.py:112 msgid "A top-level site group with this slug already exists." msgstr "このslugを含むトップレベルサイトグループが存在します。" -#: netbox/dcim/models/sites.py:115 +#: dcim/models/sites.py:115 msgid "site group" msgstr "サイトグループ" -#: netbox/dcim/models/sites.py:116 +#: dcim/models/sites.py:116 msgid "site groups" msgstr "サイトグループ" -#: netbox/dcim/models/sites.py:141 +#: dcim/models/sites.py:141 msgid "Full name of the site" msgstr "サイトのフルネーム" -#: netbox/dcim/models/sites.py:181 netbox/dcim/models/sites.py:279 +#: dcim/models/sites.py:181 dcim/models/sites.py:279 msgid "facility" msgstr "施設" -#: netbox/dcim/models/sites.py:184 netbox/dcim/models/sites.py:282 +#: dcim/models/sites.py:184 dcim/models/sites.py:282 msgid "Local facility ID or description" msgstr "ローカルファシリティ ID または説明" -#: netbox/dcim/models/sites.py:195 +#: dcim/models/sites.py:195 msgid "physical address" msgstr "物理アドレス" -#: netbox/dcim/models/sites.py:198 +#: dcim/models/sites.py:198 msgid "Physical location of the building" msgstr "建物の物理的位置" -#: netbox/dcim/models/sites.py:201 +#: dcim/models/sites.py:201 msgid "shipping address" msgstr "配送先住所" -#: netbox/dcim/models/sites.py:204 +#: dcim/models/sites.py:204 msgid "If different from the physical address" msgstr "実際の住所と異なる場合" -#: netbox/dcim/models/sites.py:238 +#: dcim/models/sites.py:238 msgid "site" msgstr "サイト" -#: netbox/dcim/models/sites.py:239 +#: dcim/models/sites.py:239 msgid "sites" msgstr "サイト" -#: netbox/dcim/models/sites.py:309 +#: dcim/models/sites.py:309 msgid "A location with this name already exists within the specified site." msgstr "この名前のロケーションは、サイト内に存在します。" -#: netbox/dcim/models/sites.py:319 +#: dcim/models/sites.py:319 msgid "A location with this slug already exists within the specified site." msgstr "このslugのロケーションは、サイト内に存在します。" -#: netbox/dcim/models/sites.py:322 +#: dcim/models/sites.py:322 msgid "location" msgstr "ロケーション" -#: netbox/dcim/models/sites.py:323 +#: dcim/models/sites.py:323 msgid "locations" msgstr "ロケーション" -#: netbox/dcim/models/sites.py:337 +#: dcim/models/sites.py:337 #, python-brace-format msgid "Parent location ({parent}) must belong to the same site ({site})." msgstr "親のロケーション ({parent}) は同じサイト ({site}) に属している必要があります。" -#: netbox/dcim/tables/cables.py:55 +#: dcim/tables/cables.py:55 msgid "Termination A" msgstr "終端 A" -#: netbox/dcim/tables/cables.py:60 +#: dcim/tables/cables.py:60 msgid "Termination B" msgstr "終端 B" -#: netbox/dcim/tables/cables.py:66 netbox/wireless/tables/wirelesslink.py:23 +#: dcim/tables/cables.py:66 wireless/tables/wirelesslink.py:23 msgid "Device A" msgstr "デバイス A" -#: netbox/dcim/tables/cables.py:72 netbox/wireless/tables/wirelesslink.py:32 +#: dcim/tables/cables.py:72 wireless/tables/wirelesslink.py:32 msgid "Device B" msgstr "デバイス B" -#: netbox/dcim/tables/cables.py:78 +#: dcim/tables/cables.py:78 msgid "Location A" msgstr "ロケーション A" -#: netbox/dcim/tables/cables.py:84 +#: dcim/tables/cables.py:84 msgid "Location B" msgstr "ロケーション B" -#: netbox/dcim/tables/cables.py:90 +#: dcim/tables/cables.py:90 msgid "Rack A" msgstr "ラック A" -#: netbox/dcim/tables/cables.py:96 +#: dcim/tables/cables.py:96 msgid "Rack B" msgstr "ラック B" -#: netbox/dcim/tables/cables.py:102 +#: dcim/tables/cables.py:102 msgid "Site A" msgstr "サイト A" -#: netbox/dcim/tables/cables.py:108 +#: dcim/tables/cables.py:108 msgid "Site B" msgstr "サイト B" -#: netbox/dcim/tables/connections.py:31 netbox/dcim/tables/connections.py:50 -#: netbox/dcim/tables/connections.py:71 -#: netbox/templates/dcim/inc/connection_endpoints.html:16 +#: dcim/tables/connections.py:31 dcim/tables/connections.py:50 +#: dcim/tables/connections.py:71 +#: templates/dcim/inc/connection_endpoints.html:16 msgid "Reachable" msgstr "到達可能" -#: netbox/dcim/tables/devices.py:58 netbox/dcim/tables/devices.py:106 -#: netbox/dcim/tables/racks.py:150 netbox/dcim/tables/sites.py:105 -#: netbox/dcim/tables/sites.py:148 netbox/extras/tables/tables.py:545 -#: netbox/netbox/navigation/menu.py:69 netbox/netbox/navigation/menu.py:73 -#: netbox/netbox/navigation/menu.py:75 -#: netbox/virtualization/forms/model_forms.py:122 -#: netbox/virtualization/tables/clusters.py:83 -#: netbox/virtualization/views.py:206 +#: dcim/tables/devices.py:58 dcim/tables/devices.py:106 +#: dcim/tables/racks.py:150 dcim/tables/sites.py:105 dcim/tables/sites.py:148 +#: extras/tables/tables.py:545 netbox/navigation/menu.py:69 +#: netbox/navigation/menu.py:73 netbox/navigation/menu.py:75 +#: virtualization/forms/model_forms.py:122 +#: virtualization/tables/clusters.py:83 virtualization/views.py:206 msgid "Devices" msgstr "デバイス" -#: netbox/dcim/tables/devices.py:63 netbox/dcim/tables/devices.py:111 -#: netbox/virtualization/tables/clusters.py:88 +#: dcim/tables/devices.py:63 dcim/tables/devices.py:111 +#: virtualization/tables/clusters.py:88 msgid "VMs" msgstr "VM" -#: netbox/dcim/tables/devices.py:100 netbox/dcim/tables/devices.py:216 -#: netbox/extras/forms/model_forms.py:630 -#: netbox/templates/dcim/device.html:112 -#: netbox/templates/dcim/device/render_config.html:11 -#: netbox/templates/dcim/device/render_config.html:14 -#: netbox/templates/dcim/devicerole.html:44 -#: netbox/templates/dcim/platform.html:41 -#: netbox/templates/extras/configtemplate.html:10 -#: netbox/templates/virtualization/virtualmachine.html:48 -#: netbox/templates/virtualization/virtualmachine/render_config.html:11 -#: netbox/templates/virtualization/virtualmachine/render_config.html:14 -#: netbox/virtualization/tables/virtualmachines.py:107 +#: dcim/tables/devices.py:100 dcim/tables/devices.py:216 +#: extras/forms/model_forms.py:630 templates/dcim/device.html:112 +#: templates/dcim/device/render_config.html:11 +#: templates/dcim/device/render_config.html:14 +#: templates/dcim/devicerole.html:44 templates/dcim/platform.html:41 +#: templates/extras/configtemplate.html:10 +#: templates/virtualization/virtualmachine.html:48 +#: templates/virtualization/virtualmachine/render_config.html:11 +#: templates/virtualization/virtualmachine/render_config.html:14 +#: virtualization/tables/virtualmachines.py:107 msgid "Config Template" msgstr "設定テンプレート" -#: netbox/dcim/tables/devices.py:150 netbox/templates/dcim/sitegroup.html:26 +#: dcim/tables/devices.py:150 templates/dcim/sitegroup.html:26 msgid "Site Group" msgstr "サイトグループ" -#: netbox/dcim/tables/devices.py:187 netbox/dcim/tables/devices.py:1068 -#: netbox/ipam/forms/bulk_import.py:503 netbox/ipam/forms/model_forms.py:306 -#: netbox/ipam/forms/model_forms.py:315 netbox/ipam/tables/ip.py:356 -#: netbox/ipam/tables/ip.py:423 netbox/ipam/tables/ip.py:446 -#: netbox/templates/ipam/ipaddress.html:11 -#: netbox/virtualization/tables/virtualmachines.py:95 +#: dcim/tables/devices.py:187 dcim/tables/devices.py:1068 +#: ipam/forms/bulk_import.py:503 ipam/forms/model_forms.py:306 +#: ipam/forms/model_forms.py:315 ipam/tables/ip.py:356 ipam/tables/ip.py:423 +#: ipam/tables/ip.py:446 templates/ipam/ipaddress.html:11 +#: virtualization/tables/virtualmachines.py:95 msgid "IP Address" msgstr "IP アドレス" -#: netbox/dcim/tables/devices.py:191 netbox/dcim/tables/devices.py:1072 -#: netbox/virtualization/tables/virtualmachines.py:86 +#: dcim/tables/devices.py:191 dcim/tables/devices.py:1072 +#: virtualization/tables/virtualmachines.py:86 msgid "IPv4 Address" msgstr "IPv4 アドレス" -#: netbox/dcim/tables/devices.py:195 netbox/dcim/tables/devices.py:1076 -#: netbox/virtualization/tables/virtualmachines.py:90 +#: dcim/tables/devices.py:195 dcim/tables/devices.py:1076 +#: virtualization/tables/virtualmachines.py:90 msgid "IPv6 Address" msgstr "IPv6 アドレス" -#: netbox/dcim/tables/devices.py:210 +#: dcim/tables/devices.py:210 msgid "VC Position" msgstr "VC ポジション" -#: netbox/dcim/tables/devices.py:213 +#: dcim/tables/devices.py:213 msgid "VC Priority" msgstr "VC プライオリティ" -#: netbox/dcim/tables/devices.py:220 netbox/templates/dcim/device_edit.html:38 -#: netbox/templates/dcim/devicebay_populate.html:16 +#: dcim/tables/devices.py:220 templates/dcim/device_edit.html:38 +#: templates/dcim/devicebay_populate.html:16 msgid "Parent Device" msgstr "親デバイス" -#: netbox/dcim/tables/devices.py:225 +#: dcim/tables/devices.py:225 msgid "Position (Device Bay)" msgstr "位置 (デバイスベイ)" -#: netbox/dcim/tables/devices.py:234 +#: dcim/tables/devices.py:234 msgid "Console ports" msgstr "コンソールポート" -#: netbox/dcim/tables/devices.py:237 +#: dcim/tables/devices.py:237 msgid "Console server ports" msgstr "コンソールサーバポート" -#: netbox/dcim/tables/devices.py:240 +#: dcim/tables/devices.py:240 msgid "Power ports" msgstr "電源ポート" -#: netbox/dcim/tables/devices.py:243 +#: dcim/tables/devices.py:243 msgid "Power outlets" msgstr "電源コンセント" -#: netbox/dcim/tables/devices.py:246 netbox/dcim/tables/devices.py:1081 -#: netbox/dcim/tables/devicetypes.py:128 netbox/dcim/views.py:1042 -#: netbox/dcim/views.py:1281 netbox/dcim/views.py:1977 -#: netbox/netbox/navigation/menu.py:94 netbox/netbox/navigation/menu.py:250 -#: netbox/templates/dcim/device/base.html:37 -#: netbox/templates/dcim/device_list.html:43 -#: netbox/templates/dcim/devicetype/base.html:34 -#: netbox/templates/dcim/module.html:34 -#: netbox/templates/dcim/moduletype/base.html:34 -#: netbox/templates/dcim/virtualdevicecontext.html:61 -#: netbox/templates/dcim/virtualdevicecontext.html:81 -#: netbox/templates/virtualization/virtualmachine/base.html:27 -#: netbox/templates/virtualization/virtualmachine_list.html:14 -#: netbox/virtualization/tables/virtualmachines.py:101 -#: netbox/virtualization/views.py:366 netbox/wireless/tables/wirelesslan.py:55 +#: dcim/tables/devices.py:246 dcim/tables/devices.py:1081 +#: dcim/tables/devicetypes.py:128 dcim/views.py:1042 dcim/views.py:1281 +#: dcim/views.py:1977 netbox/navigation/menu.py:94 +#: netbox/navigation/menu.py:250 templates/dcim/device/base.html:37 +#: templates/dcim/device_list.html:43 templates/dcim/devicetype/base.html:34 +#: templates/dcim/inc/moduletype_buttons.html:25 templates/dcim/module.html:34 +#: templates/dcim/virtualdevicecontext.html:61 +#: templates/dcim/virtualdevicecontext.html:81 +#: templates/virtualization/virtualmachine/base.html:27 +#: templates/virtualization/virtualmachine_list.html:14 +#: virtualization/tables/virtualmachines.py:101 virtualization/views.py:366 +#: wireless/tables/wirelesslan.py:55 msgid "Interfaces" msgstr "インタフェース" -#: netbox/dcim/tables/devices.py:249 +#: dcim/tables/devices.py:249 msgid "Front ports" msgstr "前面ポート" -#: netbox/dcim/tables/devices.py:255 +#: dcim/tables/devices.py:255 msgid "Device bays" msgstr "デバイスベイ" -#: netbox/dcim/tables/devices.py:258 +#: dcim/tables/devices.py:258 msgid "Module bays" msgstr "モジュールベイ" -#: netbox/dcim/tables/devices.py:261 +#: dcim/tables/devices.py:261 msgid "Inventory items" msgstr "在庫品目" -#: netbox/dcim/tables/devices.py:305 netbox/dcim/tables/modules.py:56 -#: netbox/templates/dcim/modulebay.html:17 +#: dcim/tables/devices.py:305 dcim/tables/modules.py:56 +#: templates/dcim/modulebay.html:17 msgid "Module Bay" msgstr "モジュールベイ" -#: netbox/dcim/tables/devices.py:318 netbox/dcim/tables/devicetypes.py:47 -#: netbox/dcim/tables/devicetypes.py:143 netbox/dcim/views.py:1117 -#: netbox/dcim/views.py:2075 netbox/netbox/navigation/menu.py:103 -#: netbox/templates/dcim/device/base.html:52 -#: netbox/templates/dcim/device_list.html:71 -#: netbox/templates/dcim/devicetype/base.html:49 -#: netbox/templates/dcim/inc/panels/inventory_items.html:6 -#: netbox/templates/dcim/inventoryitemrole.html:32 +#: dcim/tables/devices.py:318 dcim/tables/devicetypes.py:47 +#: dcim/tables/devicetypes.py:143 dcim/views.py:1117 dcim/views.py:2075 +#: netbox/navigation/menu.py:103 templates/dcim/device/base.html:52 +#: templates/dcim/device_list.html:71 templates/dcim/devicetype/base.html:49 +#: templates/dcim/inc/panels/inventory_items.html:6 +#: templates/dcim/inventoryitemrole.html:32 msgid "Inventory Items" msgstr "在庫品目" -#: netbox/dcim/tables/devices.py:333 +#: dcim/tables/devices.py:333 msgid "Cable Color" msgstr "ケーブル色" -#: netbox/dcim/tables/devices.py:339 +#: dcim/tables/devices.py:339 msgid "Link Peers" msgstr "対向" -#: netbox/dcim/tables/devices.py:342 +#: dcim/tables/devices.py:342 msgid "Mark Connected" msgstr "接続済みとしてマークする" -#: netbox/dcim/tables/devices.py:461 +#: dcim/tables/devices.py:461 msgid "Maximum draw (W)" msgstr "最大電力 (W)" -#: netbox/dcim/tables/devices.py:464 +#: dcim/tables/devices.py:464 msgid "Allocated draw (W)" msgstr "割当電力 (W)" -#: netbox/dcim/tables/devices.py:558 netbox/ipam/forms/model_forms.py:701 -#: netbox/ipam/tables/fhrp.py:28 netbox/ipam/views.py:596 -#: netbox/ipam/views.py:696 netbox/netbox/navigation/menu.py:158 -#: netbox/netbox/navigation/menu.py:160 -#: netbox/templates/dcim/interface.html:339 -#: netbox/templates/ipam/ipaddress_bulk_add.html:15 -#: netbox/templates/ipam/service.html:40 -#: netbox/templates/virtualization/vminterface.html:85 -#: netbox/vpn/tables/tunnels.py:98 +#: dcim/tables/devices.py:558 ipam/forms/model_forms.py:701 +#: ipam/tables/fhrp.py:28 ipam/views.py:596 ipam/views.py:696 +#: netbox/navigation/menu.py:158 netbox/navigation/menu.py:160 +#: templates/dcim/interface.html:339 templates/ipam/ipaddress_bulk_add.html:15 +#: templates/ipam/service.html:40 templates/virtualization/vminterface.html:85 +#: vpn/tables/tunnels.py:98 msgid "IP Addresses" msgstr "IP アドレス" -#: netbox/dcim/tables/devices.py:564 netbox/netbox/navigation/menu.py:202 -#: netbox/templates/ipam/inc/panels/fhrp_groups.html:6 +#: dcim/tables/devices.py:564 netbox/navigation/menu.py:202 +#: templates/ipam/inc/panels/fhrp_groups.html:6 msgid "FHRP Groups" msgstr "FHRP グループ" -#: netbox/dcim/tables/devices.py:576 netbox/templates/dcim/interface.html:89 -#: netbox/templates/virtualization/vminterface.html:67 -#: netbox/templates/vpn/tunnel.html:18 -#: netbox/templates/vpn/tunneltermination.html:13 -#: netbox/vpn/forms/bulk_edit.py:76 netbox/vpn/forms/bulk_import.py:76 -#: netbox/vpn/forms/filtersets.py:42 netbox/vpn/forms/filtersets.py:82 -#: netbox/vpn/forms/model_forms.py:60 netbox/vpn/forms/model_forms.py:145 -#: netbox/vpn/tables/tunnels.py:78 +#: dcim/tables/devices.py:576 templates/dcim/interface.html:89 +#: templates/virtualization/vminterface.html:67 templates/vpn/tunnel.html:18 +#: templates/vpn/tunneltermination.html:13 vpn/forms/bulk_edit.py:76 +#: vpn/forms/bulk_import.py:76 vpn/forms/filtersets.py:42 +#: vpn/forms/filtersets.py:82 vpn/forms/model_forms.py:60 +#: vpn/forms/model_forms.py:145 vpn/tables/tunnels.py:78 msgid "Tunnel" msgstr "トンネル" -#: netbox/dcim/tables/devices.py:604 netbox/dcim/tables/devicetypes.py:227 -#: netbox/templates/dcim/interface.html:65 +#: dcim/tables/devices.py:604 dcim/tables/devicetypes.py:227 +#: templates/dcim/interface.html:65 msgid "Management Only" msgstr "管理のみ" -#: netbox/dcim/tables/devices.py:623 +#: dcim/tables/devices.py:623 msgid "VDCs" msgstr "VDC" -#: netbox/dcim/tables/devices.py:873 netbox/templates/dcim/modulebay.html:53 +#: dcim/tables/devices.py:873 templates/dcim/modulebay.html:53 msgid "Installed Module" msgstr "取付済みモジュール" -#: netbox/dcim/tables/devices.py:876 +#: dcim/tables/devices.py:876 msgid "Module Serial" msgstr "モジュールシリアル番号" -#: netbox/dcim/tables/devices.py:880 +#: dcim/tables/devices.py:880 msgid "Module Asset Tag" msgstr "モジュール資産タグ" -#: netbox/dcim/tables/devices.py:889 +#: dcim/tables/devices.py:889 msgid "Module Status" msgstr "モジュールステータス" -#: netbox/dcim/tables/devices.py:944 netbox/dcim/tables/devicetypes.py:312 -#: netbox/templates/dcim/inventoryitem.html:40 +#: dcim/tables/devices.py:944 dcim/tables/devicetypes.py:312 +#: templates/dcim/inventoryitem.html:40 msgid "Component" msgstr "構成要素" -#: netbox/dcim/tables/devices.py:1000 +#: dcim/tables/devices.py:1000 msgid "Items" msgstr "アイテム" -#: netbox/dcim/tables/devicetypes.py:37 netbox/netbox/navigation/menu.py:84 -#: netbox/netbox/navigation/menu.py:86 +#: dcim/tables/devicetypes.py:37 netbox/navigation/menu.py:84 +#: netbox/navigation/menu.py:86 msgid "Device Types" msgstr "デバイスタイプ" -#: netbox/dcim/tables/devicetypes.py:42 netbox/netbox/navigation/menu.py:87 +#: dcim/tables/devicetypes.py:42 netbox/navigation/menu.py:87 msgid "Module Types" msgstr "モジュールタイプ" -#: netbox/dcim/tables/devicetypes.py:52 netbox/extras/forms/filtersets.py:371 -#: netbox/extras/forms/model_forms.py:537 netbox/extras/tables/tables.py:540 -#: netbox/netbox/navigation/menu.py:78 +#: dcim/tables/devicetypes.py:52 extras/forms/filtersets.py:371 +#: extras/forms/model_forms.py:537 extras/tables/tables.py:540 +#: netbox/navigation/menu.py:78 msgid "Platforms" msgstr "プラットフォーム" -#: netbox/dcim/tables/devicetypes.py:84 -#: netbox/templates/dcim/devicetype.html:29 +#: dcim/tables/devicetypes.py:84 templates/dcim/devicetype.html:29 msgid "Default Platform" msgstr "デフォルトプラットフォーム" -#: netbox/dcim/tables/devicetypes.py:88 -#: netbox/templates/dcim/devicetype.html:45 +#: dcim/tables/devicetypes.py:88 templates/dcim/devicetype.html:45 msgid "Full Depth" msgstr "奥行きをすべて利用する" -#: netbox/dcim/tables/devicetypes.py:98 +#: dcim/tables/devicetypes.py:98 msgid "U Height" msgstr "U 高さ" -#: netbox/dcim/tables/devicetypes.py:113 netbox/dcim/tables/modules.py:26 -#: netbox/dcim/tables/racks.py:89 +#: dcim/tables/devicetypes.py:113 dcim/tables/modules.py:26 +#: dcim/tables/racks.py:89 msgid "Instances" msgstr "インスタンス" -#: netbox/dcim/tables/devicetypes.py:116 netbox/dcim/views.py:982 -#: netbox/dcim/views.py:1221 netbox/dcim/views.py:1913 -#: netbox/netbox/navigation/menu.py:97 -#: netbox/templates/dcim/device/base.html:25 -#: netbox/templates/dcim/device_list.html:15 -#: netbox/templates/dcim/devicetype/base.html:22 -#: netbox/templates/dcim/module.html:22 -#: netbox/templates/dcim/moduletype/base.html:22 +#: dcim/tables/devicetypes.py:116 dcim/views.py:982 dcim/views.py:1221 +#: dcim/views.py:1913 netbox/navigation/menu.py:97 +#: templates/dcim/device/base.html:25 templates/dcim/device_list.html:15 +#: templates/dcim/devicetype/base.html:22 +#: templates/dcim/inc/moduletype_buttons.html:13 templates/dcim/module.html:22 msgid "Console Ports" msgstr "コンソールポート" -#: netbox/dcim/tables/devicetypes.py:119 netbox/dcim/views.py:997 -#: netbox/dcim/views.py:1236 netbox/dcim/views.py:1929 -#: netbox/netbox/navigation/menu.py:98 -#: netbox/templates/dcim/device/base.html:28 -#: netbox/templates/dcim/device_list.html:22 -#: netbox/templates/dcim/devicetype/base.html:25 -#: netbox/templates/dcim/module.html:25 -#: netbox/templates/dcim/moduletype/base.html:25 +#: dcim/tables/devicetypes.py:119 dcim/views.py:997 dcim/views.py:1236 +#: dcim/views.py:1929 netbox/navigation/menu.py:98 +#: templates/dcim/device/base.html:28 templates/dcim/device_list.html:22 +#: templates/dcim/devicetype/base.html:25 +#: templates/dcim/inc/moduletype_buttons.html:16 templates/dcim/module.html:25 msgid "Console Server Ports" msgstr "コンソールサーバポート" -#: netbox/dcim/tables/devicetypes.py:122 netbox/dcim/views.py:1012 -#: netbox/dcim/views.py:1251 netbox/dcim/views.py:1945 -#: netbox/netbox/navigation/menu.py:99 -#: netbox/templates/dcim/device/base.html:31 -#: netbox/templates/dcim/device_list.html:29 -#: netbox/templates/dcim/devicetype/base.html:28 -#: netbox/templates/dcim/module.html:28 -#: netbox/templates/dcim/moduletype/base.html:28 +#: dcim/tables/devicetypes.py:122 dcim/views.py:1012 dcim/views.py:1251 +#: dcim/views.py:1945 netbox/navigation/menu.py:99 +#: templates/dcim/device/base.html:31 templates/dcim/device_list.html:29 +#: templates/dcim/devicetype/base.html:28 +#: templates/dcim/inc/moduletype_buttons.html:19 templates/dcim/module.html:28 msgid "Power Ports" msgstr "電源ポート" -#: netbox/dcim/tables/devicetypes.py:125 netbox/dcim/views.py:1027 -#: netbox/dcim/views.py:1266 netbox/dcim/views.py:1961 -#: netbox/netbox/navigation/menu.py:100 -#: netbox/templates/dcim/device/base.html:34 -#: netbox/templates/dcim/device_list.html:36 -#: netbox/templates/dcim/devicetype/base.html:31 -#: netbox/templates/dcim/module.html:31 -#: netbox/templates/dcim/moduletype/base.html:31 +#: dcim/tables/devicetypes.py:125 dcim/views.py:1027 dcim/views.py:1266 +#: dcim/views.py:1961 netbox/navigation/menu.py:100 +#: templates/dcim/device/base.html:34 templates/dcim/device_list.html:36 +#: templates/dcim/devicetype/base.html:31 +#: templates/dcim/inc/moduletype_buttons.html:22 templates/dcim/module.html:31 msgid "Power Outlets" msgstr "電源コンセント" -#: netbox/dcim/tables/devicetypes.py:131 netbox/dcim/views.py:1057 -#: netbox/dcim/views.py:1296 netbox/dcim/views.py:1999 -#: netbox/netbox/navigation/menu.py:95 -#: netbox/templates/dcim/device/base.html:40 -#: netbox/templates/dcim/devicetype/base.html:37 -#: netbox/templates/dcim/module.html:37 -#: netbox/templates/dcim/moduletype/base.html:37 +#: dcim/tables/devicetypes.py:131 dcim/views.py:1057 dcim/views.py:1296 +#: dcim/views.py:1999 netbox/navigation/menu.py:95 +#: templates/dcim/device/base.html:40 templates/dcim/devicetype/base.html:37 +#: templates/dcim/inc/moduletype_buttons.html:28 templates/dcim/module.html:37 msgid "Front Ports" msgstr "前面ポート" -#: netbox/dcim/tables/devicetypes.py:134 netbox/dcim/views.py:1072 -#: netbox/dcim/views.py:1311 netbox/dcim/views.py:2015 -#: netbox/netbox/navigation/menu.py:96 -#: netbox/templates/dcim/device/base.html:43 -#: netbox/templates/dcim/device_list.html:50 -#: netbox/templates/dcim/devicetype/base.html:40 -#: netbox/templates/dcim/module.html:40 -#: netbox/templates/dcim/moduletype/base.html:40 +#: dcim/tables/devicetypes.py:134 dcim/views.py:1072 dcim/views.py:1311 +#: dcim/views.py:2015 netbox/navigation/menu.py:96 +#: templates/dcim/device/base.html:43 templates/dcim/device_list.html:50 +#: templates/dcim/devicetype/base.html:40 +#: templates/dcim/inc/moduletype_buttons.html:31 templates/dcim/module.html:40 msgid "Rear Ports" msgstr "背面ポート" -#: netbox/dcim/tables/devicetypes.py:137 netbox/dcim/views.py:1102 -#: netbox/dcim/views.py:2055 netbox/netbox/navigation/menu.py:102 -#: netbox/templates/dcim/device/base.html:49 -#: netbox/templates/dcim/device_list.html:57 -#: netbox/templates/dcim/devicetype/base.html:46 +#: dcim/tables/devicetypes.py:137 dcim/views.py:1102 dcim/views.py:2055 +#: netbox/navigation/menu.py:102 templates/dcim/device/base.html:49 +#: templates/dcim/device_list.html:57 templates/dcim/devicetype/base.html:46 msgid "Device Bays" msgstr "デバイスベイ" -#: netbox/dcim/tables/devicetypes.py:140 netbox/dcim/views.py:1087 -#: netbox/dcim/views.py:1326 netbox/dcim/views.py:2035 -#: netbox/netbox/navigation/menu.py:101 -#: netbox/templates/dcim/device/base.html:46 -#: netbox/templates/dcim/device_list.html:64 -#: netbox/templates/dcim/devicetype/base.html:43 -#: netbox/templates/dcim/module.html:43 -#: netbox/templates/dcim/moduletype/base.html:43 +#: dcim/tables/devicetypes.py:140 dcim/views.py:1087 dcim/views.py:1326 +#: dcim/views.py:2035 netbox/navigation/menu.py:101 +#: templates/dcim/device/base.html:46 templates/dcim/device_list.html:64 +#: templates/dcim/devicetype/base.html:43 +#: templates/dcim/inc/moduletype_buttons.html:34 templates/dcim/module.html:43 msgid "Module Bays" msgstr "モジュールベイ" -#: netbox/dcim/tables/power.py:36 netbox/netbox/navigation/menu.py:297 -#: netbox/templates/dcim/powerpanel.html:51 +#: dcim/tables/power.py:36 netbox/navigation/menu.py:297 +#: templates/dcim/powerpanel.html:51 msgid "Power Feeds" msgstr "電源タップ" -#: netbox/dcim/tables/power.py:80 netbox/templates/dcim/powerfeed.html:99 +#: dcim/tables/power.py:80 templates/dcim/powerfeed.html:99 msgid "Max Utilization" msgstr "最大使用率" -#: netbox/dcim/tables/power.py:84 +#: dcim/tables/power.py:84 msgid "Available Power (VA)" msgstr "使用可能な電力 (VA)" -#: netbox/dcim/tables/racks.py:30 netbox/dcim/tables/sites.py:143 -#: netbox/netbox/navigation/menu.py:43 netbox/netbox/navigation/menu.py:47 -#: netbox/netbox/navigation/menu.py:49 +#: dcim/tables/racks.py:30 dcim/tables/sites.py:143 +#: netbox/navigation/menu.py:43 netbox/navigation/menu.py:47 +#: netbox/navigation/menu.py:49 msgid "Racks" msgstr "ラック" -#: netbox/dcim/tables/racks.py:63 netbox/dcim/tables/racks.py:142 -#: netbox/templates/dcim/device.html:318 -#: netbox/templates/dcim/inc/panels/racktype_dimensions.html:14 +#: dcim/tables/racks.py:63 dcim/tables/racks.py:142 +#: templates/dcim/device.html:318 +#: templates/dcim/inc/panels/racktype_dimensions.html:14 msgid "Height" msgstr "高さ" -#: netbox/dcim/tables/racks.py:67 netbox/dcim/tables/racks.py:165 -#: netbox/templates/dcim/inc/panels/racktype_dimensions.html:18 +#: dcim/tables/racks.py:67 dcim/tables/racks.py:165 +#: templates/dcim/inc/panels/racktype_dimensions.html:18 msgid "Outer Width" msgstr "外形幅" -#: netbox/dcim/tables/racks.py:71 netbox/dcim/tables/racks.py:169 -#: netbox/templates/dcim/inc/panels/racktype_dimensions.html:28 +#: dcim/tables/racks.py:71 dcim/tables/racks.py:169 +#: templates/dcim/inc/panels/racktype_dimensions.html:28 msgid "Outer Depth" msgstr "外形奥行" -#: netbox/dcim/tables/racks.py:79 netbox/dcim/tables/racks.py:177 +#: dcim/tables/racks.py:79 dcim/tables/racks.py:177 msgid "Max Weight" msgstr "最大重量" -#: netbox/dcim/tables/racks.py:154 +#: dcim/tables/racks.py:154 msgid "Space" msgstr "スペース" -#: netbox/dcim/tables/sites.py:30 netbox/dcim/tables/sites.py:57 -#: netbox/extras/forms/filtersets.py:351 -#: netbox/extras/forms/model_forms.py:517 netbox/ipam/forms/bulk_edit.py:130 -#: netbox/ipam/forms/model_forms.py:153 netbox/ipam/tables/asn.py:66 -#: netbox/netbox/navigation/menu.py:15 netbox/netbox/navigation/menu.py:17 +#: dcim/tables/sites.py:30 dcim/tables/sites.py:57 +#: extras/forms/filtersets.py:351 extras/forms/model_forms.py:517 +#: ipam/forms/bulk_edit.py:131 ipam/forms/model_forms.py:153 +#: ipam/tables/asn.py:66 netbox/navigation/menu.py:15 +#: netbox/navigation/menu.py:17 msgid "Sites" msgstr "サイト" -#: netbox/dcim/tests/test_api.py:47 +#: dcim/tests/test_api.py:47 msgid "Test case must set peer_termination_type" msgstr "テストケースは peer_termination_type を設定する必要があります" -#: netbox/dcim/views.py:140 +#: dcim/views.py:140 #, python-brace-format msgid "Disconnected {count} {type}" msgstr "切断されました {count} {type}" -#: netbox/dcim/views.py:740 netbox/netbox/navigation/menu.py:51 +#: dcim/views.py:740 netbox/navigation/menu.py:51 msgid "Reservations" msgstr "予約" -#: netbox/dcim/views.py:759 netbox/templates/dcim/location.html:90 -#: netbox/templates/dcim/site.html:140 +#: dcim/views.py:759 templates/dcim/location.html:90 +#: templates/dcim/site.html:140 msgid "Non-Racked Devices" msgstr "ラック搭載でないデバイス" -#: netbox/dcim/views.py:2088 netbox/extras/forms/model_forms.py:577 -#: netbox/templates/extras/configcontext.html:10 -#: netbox/virtualization/forms/model_forms.py:225 -#: netbox/virtualization/views.py:407 +#: dcim/views.py:2088 extras/forms/model_forms.py:577 +#: templates/extras/configcontext.html:10 +#: virtualization/forms/model_forms.py:225 virtualization/views.py:407 msgid "Config Context" msgstr "コンフィグコンテキスト" -#: netbox/dcim/views.py:2098 netbox/virtualization/views.py:417 +#: dcim/views.py:2098 virtualization/views.py:417 msgid "Render Config" msgstr "レンダーコンフィグ" -#: netbox/dcim/views.py:2131 netbox/virtualization/views.py:450 +#: dcim/views.py:2131 virtualization/views.py:450 #, python-brace-format msgid "An error occurred while rendering the template: {error}" msgstr "テンプレートをレンダリング中にエラーが発生しました: {error}" -#: netbox/dcim/views.py:2149 netbox/extras/tables/tables.py:550 -#: netbox/netbox/navigation/menu.py:247 netbox/netbox/navigation/menu.py:249 -#: netbox/virtualization/views.py:180 +#: dcim/views.py:2149 extras/tables/tables.py:550 +#: netbox/navigation/menu.py:247 netbox/navigation/menu.py:249 +#: virtualization/views.py:180 msgid "Virtual Machines" msgstr "仮想マシン" -#: netbox/dcim/views.py:2897 +#: dcim/views.py:2897 #, python-brace-format msgid "Installed device {device} in bay {device_bay}." msgstr "インストール済みデバイス {device} イン・ベイ {device_bay}。" -#: netbox/dcim/views.py:2938 +#: dcim/views.py:2938 #, python-brace-format msgid "Removed device {device} from bay {device_bay}." msgstr "削除されたデバイス {device} ベイから {device_bay}。" -#: netbox/dcim/views.py:3044 netbox/ipam/tables/ip.py:234 +#: dcim/views.py:3044 ipam/tables/ip.py:234 msgid "Children" msgstr "子ども" -#: netbox/dcim/views.py:3510 +#: dcim/views.py:3510 #, python-brace-format msgid "Added member {device}" msgstr "メンバー追加 {device}" -#: netbox/dcim/views.py:3557 +#: dcim/views.py:3557 #, python-brace-format msgid "Unable to remove master device {device} from the virtual chassis." msgstr "マスターデバイスを削除できません {device} バーチャルシャーシから。" -#: netbox/dcim/views.py:3570 +#: dcim/views.py:3570 #, python-brace-format msgid "Removed {device} from virtual chassis {chassis}" msgstr "削除済み {device} バーチャルシャーシから {chassis}" -#: netbox/extras/api/customfields.py:89 +#: extras/api/customfields.py:89 #, python-brace-format msgid "Unknown related object(s): {name}" msgstr "不明な関連オブジェクト: {name}" -#: netbox/extras/api/serializers_/customfields.py:73 +#: extras/api/serializers_/customfields.py:73 msgid "Changing the type of custom fields is not supported." msgstr "カスタムフィールドのタイプの変更はサポートされていません。" -#: netbox/extras/api/serializers_/scripts.py:70 -#: netbox/extras/api/serializers_/scripts.py:75 +#: extras/api/serializers_/scripts.py:70 extras/api/serializers_/scripts.py:75 msgid "Scheduling is not enabled for this script." msgstr "このスクリプトではスケジューリングが有効になっていません。" -#: netbox/extras/choices.py:30 netbox/extras/forms/misc.py:14 +#: extras/choices.py:30 extras/forms/misc.py:14 msgid "Text" msgstr "テキスト" -#: netbox/extras/choices.py:31 +#: extras/choices.py:31 msgid "Text (long)" msgstr "テキスト (長い)" -#: netbox/extras/choices.py:32 +#: extras/choices.py:32 msgid "Integer" msgstr "整数" -#: netbox/extras/choices.py:33 +#: extras/choices.py:33 msgid "Decimal" msgstr "実数" -#: netbox/extras/choices.py:34 +#: extras/choices.py:34 msgid "Boolean (true/false)" msgstr "真偽値 (true/false)" -#: netbox/extras/choices.py:35 +#: extras/choices.py:35 msgid "Date" msgstr "日付" -#: netbox/extras/choices.py:36 +#: extras/choices.py:36 msgid "Date & time" msgstr "日付と時刻" -#: netbox/extras/choices.py:38 +#: extras/choices.py:38 msgid "JSON" msgstr "JSON" -#: netbox/extras/choices.py:39 +#: extras/choices.py:39 msgid "Selection" msgstr "選択" -#: netbox/extras/choices.py:40 +#: extras/choices.py:40 msgid "Multiple selection" msgstr "複数選択" -#: netbox/extras/choices.py:42 +#: extras/choices.py:42 msgid "Multiple objects" msgstr "複数オブジェクト" -#: netbox/extras/choices.py:53 netbox/netbox/preferences.py:21 -#: netbox/templates/extras/customfield.html:78 netbox/vpn/choices.py:20 -#: netbox/wireless/choices.py:27 +#: extras/choices.py:53 netbox/preferences.py:21 +#: templates/extras/customfield.html:78 vpn/choices.py:20 +#: wireless/choices.py:27 msgid "Disabled" msgstr "無効" -#: netbox/extras/choices.py:54 +#: extras/choices.py:54 msgid "Loose" msgstr "緩い" -#: netbox/extras/choices.py:55 +#: extras/choices.py:55 msgid "Exact" msgstr "正確" -#: netbox/extras/choices.py:66 +#: extras/choices.py:66 msgid "Always" msgstr "常に" -#: netbox/extras/choices.py:67 +#: extras/choices.py:67 msgid "If set" msgstr "設定されている場合" -#: netbox/extras/choices.py:68 netbox/extras/choices.py:81 +#: extras/choices.py:68 extras/choices.py:81 msgid "Hidden" msgstr "非表示" -#: netbox/extras/choices.py:79 +#: extras/choices.py:79 msgid "Yes" msgstr "はい" -#: netbox/extras/choices.py:80 +#: extras/choices.py:80 msgid "No" msgstr "いいえ" -#: netbox/extras/choices.py:108 netbox/templates/tenancy/contact.html:57 -#: netbox/tenancy/forms/bulk_edit.py:118 -#: netbox/wireless/forms/model_forms.py:168 +#: extras/choices.py:108 templates/tenancy/contact.html:57 +#: tenancy/forms/bulk_edit.py:118 wireless/forms/model_forms.py:168 msgid "Link" msgstr "リンク" -#: netbox/extras/choices.py:124 +#: extras/choices.py:124 msgid "Newest" msgstr "最新" -#: netbox/extras/choices.py:125 +#: extras/choices.py:125 msgid "Oldest" msgstr "最古" -#: netbox/extras/choices.py:126 +#: extras/choices.py:126 msgid "Alphabetical (A-Z)" msgstr "アルファベット順 (A-Z)" -#: netbox/extras/choices.py:127 +#: extras/choices.py:127 msgid "Alphabetical (Z-A)" msgstr "アルファベット順 (Z-A)" -#: netbox/extras/choices.py:144 netbox/extras/choices.py:167 +#: extras/choices.py:144 extras/choices.py:167 msgid "Info" msgstr "情報" -#: netbox/extras/choices.py:145 netbox/extras/choices.py:168 +#: extras/choices.py:145 extras/choices.py:168 msgid "Success" msgstr "成功" -#: netbox/extras/choices.py:146 netbox/extras/choices.py:169 +#: extras/choices.py:146 extras/choices.py:169 msgid "Warning" msgstr "警告" -#: netbox/extras/choices.py:147 +#: extras/choices.py:147 msgid "Danger" msgstr "危険" -#: netbox/extras/choices.py:165 +#: extras/choices.py:165 msgid "Debug" msgstr "デバッグ" -#: netbox/extras/choices.py:166 netbox/netbox/choices.py:101 +#: extras/choices.py:166 netbox/choices.py:101 msgid "Default" msgstr "デフォルト" -#: netbox/extras/choices.py:170 +#: extras/choices.py:170 msgid "Failure" msgstr "失敗" -#: netbox/extras/choices.py:186 +#: extras/choices.py:186 msgid "Hourly" msgstr "毎時" -#: netbox/extras/choices.py:187 +#: extras/choices.py:187 msgid "12 hours" msgstr "12 時間毎" -#: netbox/extras/choices.py:188 +#: extras/choices.py:188 msgid "Daily" msgstr "毎日" -#: netbox/extras/choices.py:189 +#: extras/choices.py:189 msgid "Weekly" msgstr "毎週" -#: netbox/extras/choices.py:190 +#: extras/choices.py:190 msgid "30 days" msgstr "30 日毎" -#: netbox/extras/choices.py:226 -#: netbox/templates/dcim/virtualchassis_edit.html:107 -#: netbox/templates/generic/bulk_add_component.html:68 -#: netbox/templates/generic/object_edit.html:47 -#: netbox/templates/generic/object_edit.html:80 -#: netbox/templates/ipam/inc/ipaddress_edit_header.html:7 +#: extras/choices.py:226 templates/dcim/virtualchassis_edit.html:107 +#: templates/generic/bulk_add_component.html:68 +#: templates/generic/object_edit.html:47 templates/generic/object_edit.html:80 +#: templates/ipam/inc/ipaddress_edit_header.html:7 msgid "Create" msgstr "作成" -#: netbox/extras/choices.py:227 +#: extras/choices.py:227 msgid "Update" msgstr "更新" -#: netbox/extras/choices.py:228 -#: netbox/templates/circuits/inc/circuit_termination.html:23 -#: netbox/templates/dcim/inc/panels/inventory_items.html:37 -#: netbox/templates/dcim/moduletype/component_templates.html:23 -#: netbox/templates/dcim/powerpanel.html:66 -#: netbox/templates/extras/script_list.html:35 -#: netbox/templates/generic/bulk_delete.html:20 -#: netbox/templates/generic/bulk_delete.html:66 -#: netbox/templates/generic/object_delete.html:19 -#: netbox/templates/htmx/delete_form.html:57 -#: netbox/templates/ipam/inc/panels/fhrp_groups.html:48 -#: netbox/templates/users/objectpermission.html:46 -#: netbox/utilities/templates/buttons/delete.html:11 +#: extras/choices.py:228 templates/circuits/inc/circuit_termination.html:23 +#: templates/dcim/inc/panels/inventory_items.html:37 +#: templates/dcim/powerpanel.html:66 templates/extras/script_list.html:35 +#: templates/generic/bulk_delete.html:20 templates/generic/bulk_delete.html:66 +#: templates/generic/object_delete.html:19 templates/htmx/delete_form.html:57 +#: templates/ipam/inc/panels/fhrp_groups.html:48 +#: templates/users/objectpermission.html:46 +#: utilities/templates/buttons/delete.html:11 msgid "Delete" msgstr "削除" -#: netbox/extras/choices.py:252 netbox/netbox/choices.py:57 -#: netbox/netbox/choices.py:102 +#: extras/choices.py:252 netbox/choices.py:57 netbox/choices.py:102 msgid "Blue" msgstr "青" -#: netbox/extras/choices.py:253 netbox/netbox/choices.py:56 -#: netbox/netbox/choices.py:103 +#: extras/choices.py:253 netbox/choices.py:56 netbox/choices.py:103 msgid "Indigo" msgstr "藍" -#: netbox/extras/choices.py:254 netbox/netbox/choices.py:54 -#: netbox/netbox/choices.py:104 +#: extras/choices.py:254 netbox/choices.py:54 netbox/choices.py:104 msgid "Purple" msgstr "紫" -#: netbox/extras/choices.py:255 netbox/netbox/choices.py:51 -#: netbox/netbox/choices.py:105 +#: extras/choices.py:255 netbox/choices.py:51 netbox/choices.py:105 msgid "Pink" msgstr "桃" -#: netbox/extras/choices.py:256 netbox/netbox/choices.py:50 -#: netbox/netbox/choices.py:106 +#: extras/choices.py:256 netbox/choices.py:50 netbox/choices.py:106 msgid "Red" msgstr "赤" -#: netbox/extras/choices.py:257 netbox/netbox/choices.py:68 -#: netbox/netbox/choices.py:107 +#: extras/choices.py:257 netbox/choices.py:68 netbox/choices.py:107 msgid "Orange" msgstr "橙" -#: netbox/extras/choices.py:258 netbox/netbox/choices.py:66 -#: netbox/netbox/choices.py:108 +#: extras/choices.py:258 netbox/choices.py:66 netbox/choices.py:108 msgid "Yellow" msgstr "黄" -#: netbox/extras/choices.py:259 netbox/netbox/choices.py:63 -#: netbox/netbox/choices.py:109 +#: extras/choices.py:259 netbox/choices.py:63 netbox/choices.py:109 msgid "Green" msgstr "緑" -#: netbox/extras/choices.py:260 netbox/netbox/choices.py:60 -#: netbox/netbox/choices.py:110 +#: extras/choices.py:260 netbox/choices.py:60 netbox/choices.py:110 msgid "Teal" msgstr "青緑" -#: netbox/extras/choices.py:261 netbox/netbox/choices.py:59 -#: netbox/netbox/choices.py:111 +#: extras/choices.py:261 netbox/choices.py:59 netbox/choices.py:111 msgid "Cyan" msgstr "水" -#: netbox/extras/choices.py:262 netbox/netbox/choices.py:112 +#: extras/choices.py:262 netbox/choices.py:112 msgid "Gray" msgstr "灰" -#: netbox/extras/choices.py:263 netbox/netbox/choices.py:74 -#: netbox/netbox/choices.py:113 +#: extras/choices.py:263 netbox/choices.py:74 netbox/choices.py:113 msgid "Black" msgstr "黒" -#: netbox/extras/choices.py:264 netbox/netbox/choices.py:75 -#: netbox/netbox/choices.py:114 +#: extras/choices.py:264 netbox/choices.py:75 netbox/choices.py:114 msgid "White" msgstr "白" -#: netbox/extras/choices.py:279 netbox/extras/forms/model_forms.py:353 -#: netbox/extras/forms/model_forms.py:430 -#: netbox/templates/extras/webhook.html:10 +#: extras/choices.py:279 extras/forms/model_forms.py:353 +#: extras/forms/model_forms.py:430 templates/extras/webhook.html:10 msgid "Webhook" msgstr "Webhook" -#: netbox/extras/choices.py:280 netbox/extras/forms/model_forms.py:418 -#: netbox/templates/extras/script/base.html:29 +#: extras/choices.py:280 extras/forms/model_forms.py:418 +#: templates/extras/script/base.html:29 msgid "Script" msgstr "スクリプト" -#: netbox/extras/choices.py:281 +#: extras/choices.py:281 msgid "Notification" msgstr "通知" -#: netbox/extras/conditions.py:54 +#: extras/conditions.py:54 #, python-brace-format msgid "Unknown operator: {op}. Must be one of: {operators}" msgstr "不明なオペレータ: {op}。次のいずれかでなければなりません。 {operators}" -#: netbox/extras/conditions.py:58 +#: extras/conditions.py:58 #, python-brace-format msgid "Unsupported value type: {value}" msgstr "サポートされていない値のタイプ: {value}" -#: netbox/extras/conditions.py:60 +#: extras/conditions.py:60 #, python-brace-format msgid "Invalid type for {op} operation: {value}" msgstr "のタイプが無効です {op} オペレーション: {value}" -#: netbox/extras/conditions.py:137 +#: extras/conditions.py:137 #, python-brace-format msgid "Ruleset must be a dictionary, not {ruleset}." msgstr "ルールセットは辞書でなければならず、辞書であってはなりません {ruleset}。" -#: netbox/extras/conditions.py:142 +#: extras/conditions.py:142 msgid "Invalid logic type: must be 'AND' or 'OR'. Please check documentation." msgstr "論理型が無効です。'AND' または 'OR' でなければなりません。ドキュメントを確認してください。" -#: netbox/extras/conditions.py:154 +#: extras/conditions.py:154 msgid "Incorrect key(s) informed. Please check documentation." msgstr "誤ったキーが通知されました。ドキュメントを確認してください。" -#: netbox/extras/dashboard/forms.py:38 +#: extras/dashboard/forms.py:38 msgid "Widget type" msgstr "ウィジェットタイプ" -#: netbox/extras/dashboard/utils.py:36 +#: extras/dashboard/utils.py:36 #, python-brace-format msgid "Unregistered widget class: {name}" msgstr "未登録のウィジェットクラス: {name}" -#: netbox/extras/dashboard/widgets.py:125 +#: extras/dashboard/widgets.py:125 #, python-brace-format msgid "{class_name} must define a render() method." msgstr "{class_name} render () メソッドを定義する必要があります。" -#: netbox/extras/dashboard/widgets.py:144 +#: extras/dashboard/widgets.py:144 msgid "Note" msgstr "メモ" -#: netbox/extras/dashboard/widgets.py:145 +#: extras/dashboard/widgets.py:145 msgid "Display some arbitrary custom content. Markdown is supported." msgstr "任意のカスタムコンテンツを表示します。Markdown がサポートされています。" -#: netbox/extras/dashboard/widgets.py:158 +#: extras/dashboard/widgets.py:158 msgid "Object Counts" msgstr "オブジェクト数" -#: netbox/extras/dashboard/widgets.py:159 +#: extras/dashboard/widgets.py:159 msgid "" "Display a set of NetBox models and the number of objects created for each " "type." msgstr "NetBox モデルのセットと、各タイプで作成されたオブジェクトの数を表示します。" -#: netbox/extras/dashboard/widgets.py:169 +#: extras/dashboard/widgets.py:169 msgid "Filters to apply when counting the number of objects" msgstr "オブジェクトの数をカウントするときに適用するフィルタ" -#: netbox/extras/dashboard/widgets.py:177 +#: extras/dashboard/widgets.py:177 msgid "Invalid format. Object filters must be passed as a dictionary." msgstr "形式が無効です。オブジェクトフィルタはディクショナリとして渡さなければなりません。" -#: netbox/extras/dashboard/widgets.py:208 +#: extras/dashboard/widgets.py:208 msgid "Object List" msgstr "オブジェクトリスト" -#: netbox/extras/dashboard/widgets.py:209 +#: extras/dashboard/widgets.py:209 msgid "Display an arbitrary list of objects." msgstr "任意のオブジェクトリストを表示します。" -#: netbox/extras/dashboard/widgets.py:222 +#: extras/dashboard/widgets.py:222 msgid "The default number of objects to display" msgstr "デフォルトで表示するオブジェクト数" -#: netbox/extras/dashboard/widgets.py:234 +#: extras/dashboard/widgets.py:234 msgid "Invalid format. URL parameters must be passed as a dictionary." msgstr "形式が無効です。URL パラメータはディクショナリとして渡さなければなりません。" -#: netbox/extras/dashboard/widgets.py:274 +#: extras/dashboard/widgets.py:274 msgid "RSS Feed" msgstr "RSS フィード" -#: netbox/extras/dashboard/widgets.py:279 +#: extras/dashboard/widgets.py:279 msgid "Embed an RSS feed from an external website." msgstr "外部 Web サイトの RSS フィードを埋め込みます。" -#: netbox/extras/dashboard/widgets.py:286 +#: extras/dashboard/widgets.py:286 msgid "Feed URL" msgstr "フィード URL" -#: netbox/extras/dashboard/widgets.py:291 +#: extras/dashboard/widgets.py:291 msgid "The maximum number of objects to display" msgstr "表示するオブジェクトの最大数" -#: netbox/extras/dashboard/widgets.py:296 +#: extras/dashboard/widgets.py:296 msgid "How long to stored the cached content (in seconds)" msgstr "キャッシュされたコンテンツを保存する時間 (秒)" -#: netbox/extras/dashboard/widgets.py:348 -#: netbox/templates/account/base.html:10 -#: netbox/templates/account/bookmarks.html:7 -#: netbox/templates/inc/user_menu.html:48 +#: extras/dashboard/widgets.py:348 templates/account/base.html:10 +#: templates/account/bookmarks.html:7 templates/inc/user_menu.html:48 msgid "Bookmarks" msgstr "ブックマーク" -#: netbox/extras/dashboard/widgets.py:352 +#: extras/dashboard/widgets.py:352 msgid "Show your personal bookmarks" msgstr "個人用のブックマークを表示する" -#: netbox/extras/events.py:147 +#: extras/events.py:147 #, python-brace-format msgid "Unknown action type for an event rule: {action_type}" msgstr "イベントルールのアクションタイプが不明です: {action_type}" -#: netbox/extras/events.py:192 +#: extras/events.py:192 #, python-brace-format msgid "Cannot import events pipeline {name} error: {error}" msgstr "イベントパイプラインをインポートできません {name} エラー: {error}" -#: netbox/extras/filtersets.py:45 +#: extras/filtersets.py:45 msgid "Script module (ID)" msgstr "スクリプトモジュール (ID)" -#: netbox/extras/filtersets.py:254 netbox/extras/filtersets.py:637 -#: netbox/extras/filtersets.py:665 +#: extras/filtersets.py:254 extras/filtersets.py:637 extras/filtersets.py:665 msgid "Data file (ID)" msgstr "データファイル (ID)" -#: netbox/extras/filtersets.py:370 netbox/users/filtersets.py:68 -#: netbox/users/filtersets.py:191 +#: extras/filtersets.py:370 users/filtersets.py:68 users/filtersets.py:191 msgid "Group (name)" msgstr "グループ (名前)" -#: netbox/extras/filtersets.py:574 -#: netbox/virtualization/forms/filtersets.py:118 +#: extras/filtersets.py:574 virtualization/forms/filtersets.py:118 msgid "Cluster type" msgstr "クラスタタイプ" -#: netbox/extras/filtersets.py:580 netbox/virtualization/filtersets.py:95 -#: netbox/virtualization/filtersets.py:147 +#: extras/filtersets.py:580 virtualization/filtersets.py:95 +#: virtualization/filtersets.py:147 msgid "Cluster type (slug)" msgstr "クラスタタイプ (slug)" -#: netbox/extras/filtersets.py:601 netbox/tenancy/forms/forms.py:16 -#: netbox/tenancy/forms/forms.py:39 +#: extras/filtersets.py:601 tenancy/forms/forms.py:16 +#: tenancy/forms/forms.py:39 msgid "Tenant group" msgstr "テナントグループ" -#: netbox/extras/filtersets.py:607 netbox/tenancy/filtersets.py:188 -#: netbox/tenancy/filtersets.py:208 +#: extras/filtersets.py:607 tenancy/filtersets.py:188 +#: tenancy/filtersets.py:208 msgid "Tenant group (slug)" msgstr "テナントグループ (slug)" -#: netbox/extras/filtersets.py:623 netbox/extras/forms/model_forms.py:495 -#: netbox/templates/extras/tag.html:11 +#: extras/filtersets.py:623 extras/forms/model_forms.py:495 +#: templates/extras/tag.html:11 msgid "Tag" msgstr "タグ" -#: netbox/extras/filtersets.py:629 +#: extras/filtersets.py:629 msgid "Tag (slug)" msgstr "タグ (slug)" -#: netbox/extras/filtersets.py:689 netbox/extras/forms/filtersets.py:429 +#: extras/filtersets.py:689 extras/forms/filtersets.py:429 msgid "Has local config context data" msgstr "ローカル設定コンテキストがある" -#: netbox/extras/forms/bulk_edit.py:35 netbox/extras/forms/filtersets.py:60 +#: extras/forms/bulk_edit.py:35 extras/forms/filtersets.py:60 msgid "Group name" msgstr "グループ名" -#: netbox/extras/forms/bulk_edit.py:43 netbox/extras/forms/filtersets.py:68 -#: netbox/extras/tables/tables.py:65 -#: netbox/templates/extras/customfield.html:38 -#: netbox/templates/generic/bulk_import.html:118 +#: extras/forms/bulk_edit.py:43 extras/forms/filtersets.py:68 +#: extras/tables/tables.py:65 templates/extras/customfield.html:38 +#: templates/generic/bulk_import.html:118 msgid "Required" msgstr "必須" -#: netbox/extras/forms/bulk_edit.py:48 netbox/extras/forms/filtersets.py:75 +#: extras/forms/bulk_edit.py:48 extras/forms/filtersets.py:75 msgid "Must be unique" msgstr "一意でなければならない" -#: netbox/extras/forms/bulk_edit.py:61 netbox/extras/forms/bulk_import.py:60 -#: netbox/extras/forms/filtersets.py:89 -#: netbox/extras/models/customfields.py:209 +#: extras/forms/bulk_edit.py:61 extras/forms/bulk_import.py:60 +#: extras/forms/filtersets.py:89 extras/models/customfields.py:209 msgid "UI visible" msgstr "UI で表示される" -#: netbox/extras/forms/bulk_edit.py:66 netbox/extras/forms/bulk_import.py:66 -#: netbox/extras/forms/filtersets.py:94 -#: netbox/extras/models/customfields.py:216 +#: extras/forms/bulk_edit.py:66 extras/forms/bulk_import.py:66 +#: extras/forms/filtersets.py:94 extras/models/customfields.py:216 msgid "UI editable" msgstr "UI で編集可能" -#: netbox/extras/forms/bulk_edit.py:71 netbox/extras/forms/filtersets.py:97 +#: extras/forms/bulk_edit.py:71 extras/forms/filtersets.py:97 msgid "Is cloneable" msgstr "複製可能" -#: netbox/extras/forms/bulk_edit.py:76 netbox/extras/forms/filtersets.py:104 +#: extras/forms/bulk_edit.py:76 extras/forms/filtersets.py:104 msgid "Minimum value" msgstr "最小値" -#: netbox/extras/forms/bulk_edit.py:80 netbox/extras/forms/filtersets.py:108 +#: extras/forms/bulk_edit.py:80 extras/forms/filtersets.py:108 msgid "Maximum value" msgstr "最大値" -#: netbox/extras/forms/bulk_edit.py:84 netbox/extras/forms/filtersets.py:112 +#: extras/forms/bulk_edit.py:84 extras/forms/filtersets.py:112 msgid "Validation regex" msgstr "検証正規表現" -#: netbox/extras/forms/bulk_edit.py:91 netbox/extras/forms/filtersets.py:46 -#: netbox/extras/forms/model_forms.py:76 -#: netbox/templates/extras/customfield.html:70 +#: extras/forms/bulk_edit.py:91 extras/forms/filtersets.py:46 +#: extras/forms/model_forms.py:76 templates/extras/customfield.html:70 msgid "Behavior" msgstr "動作" -#: netbox/extras/forms/bulk_edit.py:128 netbox/extras/forms/filtersets.py:149 +#: extras/forms/bulk_edit.py:128 extras/forms/filtersets.py:149 msgid "New window" msgstr "新しいウィンドウ" -#: netbox/extras/forms/bulk_edit.py:137 +#: extras/forms/bulk_edit.py:137 msgid "Button class" msgstr "ボタンクラス" -#: netbox/extras/forms/bulk_edit.py:154 netbox/extras/forms/filtersets.py:187 -#: netbox/extras/models/models.py:409 +#: extras/forms/bulk_edit.py:154 extras/forms/filtersets.py:187 +#: extras/models/models.py:409 msgid "MIME type" msgstr "MIMEタイプ" -#: netbox/extras/forms/bulk_edit.py:159 netbox/extras/forms/filtersets.py:190 +#: extras/forms/bulk_edit.py:159 extras/forms/filtersets.py:190 msgid "File extension" msgstr "ファイル拡張子" -#: netbox/extras/forms/bulk_edit.py:164 netbox/extras/forms/filtersets.py:194 +#: extras/forms/bulk_edit.py:164 extras/forms/filtersets.py:194 msgid "As attachment" msgstr "添付ファイルとして" -#: netbox/extras/forms/bulk_edit.py:192 netbox/extras/forms/filtersets.py:236 -#: netbox/extras/tables/tables.py:256 -#: netbox/templates/extras/savedfilter.html:29 +#: extras/forms/bulk_edit.py:192 extras/forms/filtersets.py:236 +#: extras/tables/tables.py:256 templates/extras/savedfilter.html:29 msgid "Shared" msgstr "共有" -#: netbox/extras/forms/bulk_edit.py:215 netbox/extras/forms/filtersets.py:265 -#: netbox/extras/models/models.py:174 +#: extras/forms/bulk_edit.py:215 extras/forms/filtersets.py:265 +#: extras/models/models.py:174 msgid "HTTP method" msgstr "HTTP メソッド" -#: netbox/extras/forms/bulk_edit.py:219 netbox/extras/forms/filtersets.py:259 -#: netbox/templates/extras/webhook.html:30 +#: extras/forms/bulk_edit.py:219 extras/forms/filtersets.py:259 +#: templates/extras/webhook.html:30 msgid "Payload URL" msgstr "ペイロード URL" -#: netbox/extras/forms/bulk_edit.py:224 netbox/extras/models/models.py:214 +#: extras/forms/bulk_edit.py:224 extras/models/models.py:214 msgid "SSL verification" msgstr "SSL 検証" -#: netbox/extras/forms/bulk_edit.py:227 -#: netbox/templates/extras/webhook.html:38 +#: extras/forms/bulk_edit.py:227 templates/extras/webhook.html:38 msgid "Secret" msgstr "シークレット" -#: netbox/extras/forms/bulk_edit.py:232 +#: extras/forms/bulk_edit.py:232 msgid "CA file path" msgstr "CA ファイルパス" -#: netbox/extras/forms/bulk_edit.py:253 netbox/extras/forms/bulk_import.py:192 -#: netbox/extras/forms/model_forms.py:377 +#: extras/forms/bulk_edit.py:253 extras/forms/bulk_import.py:192 +#: extras/forms/model_forms.py:377 msgid "Event types" msgstr "イベントタイプ" -#: netbox/extras/forms/bulk_edit.py:293 +#: extras/forms/bulk_edit.py:293 msgid "Is active" msgstr "有効" -#: netbox/extras/forms/bulk_import.py:37 -#: netbox/extras/forms/bulk_import.py:118 -#: netbox/extras/forms/bulk_import.py:139 -#: netbox/extras/forms/bulk_import.py:162 -#: netbox/extras/forms/bulk_import.py:186 -#: netbox/extras/forms/filtersets.py:137 netbox/extras/forms/filtersets.py:224 -#: netbox/extras/forms/model_forms.py:47 -#: netbox/extras/forms/model_forms.py:205 -#: netbox/extras/forms/model_forms.py:237 -#: netbox/extras/forms/model_forms.py:278 -#: netbox/extras/forms/model_forms.py:372 -#: netbox/extras/forms/model_forms.py:489 -#: netbox/users/forms/model_forms.py:276 +#: extras/forms/bulk_import.py:37 extras/forms/bulk_import.py:118 +#: extras/forms/bulk_import.py:139 extras/forms/bulk_import.py:162 +#: extras/forms/bulk_import.py:186 extras/forms/filtersets.py:137 +#: extras/forms/filtersets.py:224 extras/forms/model_forms.py:47 +#: extras/forms/model_forms.py:205 extras/forms/model_forms.py:237 +#: extras/forms/model_forms.py:278 extras/forms/model_forms.py:372 +#: extras/forms/model_forms.py:489 users/forms/model_forms.py:276 msgid "Object types" msgstr "オブジェクトタイプ" -#: netbox/extras/forms/bulk_import.py:39 -#: netbox/extras/forms/bulk_import.py:120 -#: netbox/extras/forms/bulk_import.py:141 -#: netbox/extras/forms/bulk_import.py:164 -#: netbox/extras/forms/bulk_import.py:188 -#: netbox/tenancy/forms/bulk_import.py:96 +#: extras/forms/bulk_import.py:39 extras/forms/bulk_import.py:120 +#: extras/forms/bulk_import.py:141 extras/forms/bulk_import.py:164 +#: extras/forms/bulk_import.py:188 tenancy/forms/bulk_import.py:96 msgid "One or more assigned object types" msgstr "1 つ以上の割当オブジェクトタイプ" -#: netbox/extras/forms/bulk_import.py:44 +#: extras/forms/bulk_import.py:44 msgid "Field data type (e.g. text, integer, etc.)" msgstr "フィールドデータタイプ (テキスト、整数など)" -#: netbox/extras/forms/bulk_import.py:47 netbox/extras/forms/filtersets.py:208 -#: netbox/extras/forms/filtersets.py:281 -#: netbox/extras/forms/model_forms.py:304 -#: netbox/extras/forms/model_forms.py:341 -#: netbox/tenancy/forms/filtersets.py:92 +#: extras/forms/bulk_import.py:47 extras/forms/filtersets.py:208 +#: extras/forms/filtersets.py:281 extras/forms/model_forms.py:304 +#: extras/forms/model_forms.py:341 tenancy/forms/filtersets.py:92 msgid "Object type" msgstr "オブジェクトタイプ" -#: netbox/extras/forms/bulk_import.py:50 +#: extras/forms/bulk_import.py:50 msgid "Object type (for object or multi-object fields)" msgstr "オブジェクトタイプ (オブジェクトフィールドまたはマルチオブジェクトフィールド用)" -#: netbox/extras/forms/bulk_import.py:53 netbox/extras/forms/filtersets.py:84 +#: extras/forms/bulk_import.py:53 extras/forms/filtersets.py:84 msgid "Choice set" msgstr "選択肢" -#: netbox/extras/forms/bulk_import.py:57 +#: extras/forms/bulk_import.py:57 msgid "Choice set (for selection fields)" msgstr "選択肢 (選択フィールド用)" -#: netbox/extras/forms/bulk_import.py:63 +#: extras/forms/bulk_import.py:63 msgid "Whether the custom field is displayed in the UI" msgstr "カスタムフィールドが UI上に表示されるかどうか" -#: netbox/extras/forms/bulk_import.py:69 +#: extras/forms/bulk_import.py:69 msgid "Whether the custom field is editable in the UI" msgstr "カスタムフィールドが UI上で編集可能かどうか" -#: netbox/extras/forms/bulk_import.py:85 +#: extras/forms/bulk_import.py:85 msgid "The base set of predefined choices to use (if any)" msgstr "定義済みの選択肢の基本セット (存在する場合)" -#: netbox/extras/forms/bulk_import.py:91 +#: extras/forms/bulk_import.py:91 msgid "" "Quoted string of comma-separated field choices with optional labels " "separated by colon: \"choice1:First Choice,choice2:Second Choice\"" @@ -7615,230 +7082,213 @@ msgstr "" "引用符で囲んだ、カンマ区切りの選択肢。コロン区切りでラベル設定可能: \"choice1:First Choice,choice2:Second " "Choice\"" -#: netbox/extras/forms/bulk_import.py:123 netbox/extras/models/models.py:323 +#: extras/forms/bulk_import.py:123 extras/models/models.py:323 msgid "button class" msgstr "ボタンクラス" -#: netbox/extras/forms/bulk_import.py:126 netbox/extras/models/models.py:327 +#: extras/forms/bulk_import.py:126 extras/models/models.py:327 msgid "" "The class of the first link in a group will be used for the dropdown button" msgstr "グループ内の最初のリンクのクラスがドロップダウンボタンに使用されます" -#: netbox/extras/forms/bulk_import.py:193 +#: extras/forms/bulk_import.py:193 msgid "The event type(s) which will trigger this rule" msgstr "このルールをトリガーするイベントタイプ" -#: netbox/extras/forms/bulk_import.py:196 +#: extras/forms/bulk_import.py:196 msgid "Action object" msgstr "アクションオブジェクト" -#: netbox/extras/forms/bulk_import.py:198 +#: extras/forms/bulk_import.py:198 msgid "Webhook name or script as dotted path module.Class" msgstr "ドットパス形式 (module.Class) のウェブフック名またはスクリプト" -#: netbox/extras/forms/bulk_import.py:219 +#: extras/forms/bulk_import.py:219 #, python-brace-format msgid "Webhook {name} not found" msgstr "ウェブフック {name} 見つかりません" -#: netbox/extras/forms/bulk_import.py:228 +#: extras/forms/bulk_import.py:228 #, python-brace-format msgid "Script {name} not found" msgstr "スクリプト {name} 見つかりません" -#: netbox/extras/forms/bulk_import.py:244 +#: extras/forms/bulk_import.py:244 msgid "Assigned object type" msgstr "割当オブジェクトタイプ" -#: netbox/extras/forms/bulk_import.py:249 +#: extras/forms/bulk_import.py:249 msgid "The classification of entry" msgstr "エントリの分類" -#: netbox/extras/forms/bulk_import.py:261 -#: netbox/extras/forms/model_forms.py:320 netbox/netbox/navigation/menu.py:390 -#: netbox/templates/extras/notificationgroup.html:41 -#: netbox/templates/users/group.html:29 netbox/users/forms/model_forms.py:236 -#: netbox/users/forms/model_forms.py:248 netbox/users/forms/model_forms.py:300 -#: netbox/users/tables.py:102 +#: extras/forms/bulk_import.py:261 extras/forms/model_forms.py:320 +#: netbox/navigation/menu.py:390 templates/extras/notificationgroup.html:41 +#: templates/users/group.html:29 users/forms/model_forms.py:236 +#: users/forms/model_forms.py:248 users/forms/model_forms.py:300 +#: users/tables.py:102 msgid "Users" msgstr "ユーザ" -#: netbox/extras/forms/bulk_import.py:265 +#: extras/forms/bulk_import.py:265 msgid "User names separated by commas, encased with double quotes" msgstr "二重引用符で囲まれたカンマ区切りユーザ名" -#: netbox/extras/forms/bulk_import.py:268 -#: netbox/extras/forms/model_forms.py:315 netbox/netbox/navigation/menu.py:410 -#: netbox/templates/extras/notificationgroup.html:31 -#: netbox/users/forms/model_forms.py:181 netbox/users/forms/model_forms.py:193 -#: netbox/users/forms/model_forms.py:305 netbox/users/tables.py:35 -#: netbox/users/tables.py:106 +#: extras/forms/bulk_import.py:268 extras/forms/model_forms.py:315 +#: netbox/navigation/menu.py:410 templates/extras/notificationgroup.html:31 +#: users/forms/model_forms.py:181 users/forms/model_forms.py:193 +#: users/forms/model_forms.py:305 users/tables.py:35 users/tables.py:106 msgid "Groups" msgstr "グループ" -#: netbox/extras/forms/bulk_import.py:272 +#: extras/forms/bulk_import.py:272 msgid "Group names separated by commas, encased with double quotes" msgstr "二重引用符で囲まれたカンマで区切りグループ名" -#: netbox/extras/forms/filtersets.py:52 netbox/extras/forms/model_forms.py:56 +#: extras/forms/filtersets.py:52 extras/forms/model_forms.py:56 msgid "Related object type" msgstr "関連オブジェクトタイプ" -#: netbox/extras/forms/filtersets.py:57 +#: extras/forms/filtersets.py:57 msgid "Field type" msgstr "フィールドタイプ" -#: netbox/extras/forms/filtersets.py:120 -#: netbox/extras/forms/model_forms.py:157 netbox/extras/tables/tables.py:91 -#: netbox/templates/generic/bulk_import.html:154 +#: extras/forms/filtersets.py:120 extras/forms/model_forms.py:157 +#: extras/tables/tables.py:91 templates/generic/bulk_import.html:154 msgid "Choices" msgstr "選択肢" -#: netbox/extras/forms/filtersets.py:164 netbox/extras/forms/filtersets.py:319 -#: netbox/extras/forms/filtersets.py:408 -#: netbox/extras/forms/model_forms.py:572 netbox/templates/core/job.html:96 -#: netbox/templates/extras/eventrule.html:84 +#: extras/forms/filtersets.py:164 extras/forms/filtersets.py:319 +#: extras/forms/filtersets.py:408 extras/forms/model_forms.py:572 +#: templates/core/job.html:96 templates/extras/eventrule.html:84 msgid "Data" msgstr "データ" -#: netbox/extras/forms/filtersets.py:175 netbox/extras/forms/filtersets.py:333 -#: netbox/extras/forms/filtersets.py:418 netbox/netbox/choices.py:130 -#: netbox/utilities/forms/bulk_import.py:26 +#: extras/forms/filtersets.py:175 extras/forms/filtersets.py:333 +#: extras/forms/filtersets.py:418 netbox/choices.py:130 +#: utilities/forms/bulk_import.py:26 msgid "Data file" msgstr "データファイル" -#: netbox/extras/forms/filtersets.py:183 +#: extras/forms/filtersets.py:183 msgid "Content types" msgstr "コンテンツタイプ" -#: netbox/extras/forms/filtersets.py:255 netbox/extras/models/models.py:179 +#: extras/forms/filtersets.py:255 extras/models/models.py:179 msgid "HTTP content type" msgstr "HTTP content type" -#: netbox/extras/forms/filtersets.py:286 +#: extras/forms/filtersets.py:286 msgid "Event type" msgstr "イベントタイプ" -#: netbox/extras/forms/filtersets.py:291 +#: extras/forms/filtersets.py:291 msgid "Action type" msgstr "アクションタイプ" -#: netbox/extras/forms/filtersets.py:307 +#: extras/forms/filtersets.py:307 msgid "Tagged object type" msgstr "タグ付きオブジェクトタイプ" -#: netbox/extras/forms/filtersets.py:312 +#: extras/forms/filtersets.py:312 msgid "Allowed object type" msgstr "許可されるオブジェクトタイプ" -#: netbox/extras/forms/filtersets.py:341 -#: netbox/extras/forms/model_forms.py:507 netbox/netbox/navigation/menu.py:18 +#: extras/forms/filtersets.py:341 extras/forms/model_forms.py:507 +#: netbox/navigation/menu.py:18 msgid "Regions" msgstr "リージョン" -#: netbox/extras/forms/filtersets.py:346 -#: netbox/extras/forms/model_forms.py:512 +#: extras/forms/filtersets.py:346 extras/forms/model_forms.py:512 msgid "Site groups" msgstr "サイトグループ" -#: netbox/extras/forms/filtersets.py:356 -#: netbox/extras/forms/model_forms.py:522 netbox/netbox/navigation/menu.py:20 -#: netbox/templates/dcim/site.html:127 +#: extras/forms/filtersets.py:356 extras/forms/model_forms.py:522 +#: netbox/navigation/menu.py:20 templates/dcim/site.html:127 msgid "Locations" msgstr "ロケーション" -#: netbox/extras/forms/filtersets.py:361 -#: netbox/extras/forms/model_forms.py:527 +#: extras/forms/filtersets.py:361 extras/forms/model_forms.py:527 msgid "Device types" msgstr "デバイスタイプ" -#: netbox/extras/forms/filtersets.py:366 -#: netbox/extras/forms/model_forms.py:532 +#: extras/forms/filtersets.py:366 extras/forms/model_forms.py:532 msgid "Roles" msgstr "ロール" -#: netbox/extras/forms/filtersets.py:376 -#: netbox/extras/forms/model_forms.py:542 +#: extras/forms/filtersets.py:376 extras/forms/model_forms.py:542 msgid "Cluster types" msgstr "クラスタタイプ" -#: netbox/extras/forms/filtersets.py:381 -#: netbox/extras/forms/model_forms.py:547 +#: extras/forms/filtersets.py:381 extras/forms/model_forms.py:547 msgid "Cluster groups" msgstr "クラスタグループ" -#: netbox/extras/forms/filtersets.py:386 -#: netbox/extras/forms/model_forms.py:552 netbox/netbox/navigation/menu.py:255 -#: netbox/netbox/navigation/menu.py:257 -#: netbox/templates/virtualization/clustertype.html:30 -#: netbox/virtualization/tables/clusters.py:23 -#: netbox/virtualization/tables/clusters.py:45 +#: extras/forms/filtersets.py:386 extras/forms/model_forms.py:552 +#: netbox/navigation/menu.py:255 netbox/navigation/menu.py:257 +#: templates/virtualization/clustertype.html:30 +#: virtualization/tables/clusters.py:23 virtualization/tables/clusters.py:45 msgid "Clusters" msgstr "クラスタ" -#: netbox/extras/forms/filtersets.py:391 -#: netbox/extras/forms/model_forms.py:557 +#: extras/forms/filtersets.py:391 extras/forms/model_forms.py:557 msgid "Tenant groups" msgstr "テナントグループ" -#: netbox/extras/forms/model_forms.py:49 +#: extras/forms/model_forms.py:49 msgid "The type(s) of object that have this custom field" msgstr "このカスタムフィールドを持つオブジェクトのタイプ" -#: netbox/extras/forms/model_forms.py:52 +#: extras/forms/model_forms.py:52 msgid "Default value" msgstr "既定値" -#: netbox/extras/forms/model_forms.py:58 +#: extras/forms/model_forms.py:58 msgid "Type of the related object (for object/multi-object fields only)" msgstr "関連オブジェクトのタイプ (オブジェクト/マルチオブジェクトフィールドのみ)" -#: netbox/extras/forms/model_forms.py:61 -#: netbox/templates/extras/customfield.html:60 +#: extras/forms/model_forms.py:61 templates/extras/customfield.html:60 msgid "Related object filter" msgstr "関連オブジェクトフィルタ" -#: netbox/extras/forms/model_forms.py:63 +#: extras/forms/model_forms.py:63 msgid "Specify query parameters as a JSON object." msgstr "クエリパラメータを JSON オブジェクトとして指定します。" -#: netbox/extras/forms/model_forms.py:73 -#: netbox/templates/extras/customfield.html:10 +#: extras/forms/model_forms.py:73 templates/extras/customfield.html:10 msgid "Custom Field" msgstr "カスタムフィールド" -#: netbox/extras/forms/model_forms.py:85 +#: extras/forms/model_forms.py:85 msgid "" "The type of data stored in this field. For object/multi-object fields, " "select the related object type below." msgstr "このフィールドのタイプ。オブジェクト/マルチオブジェクトフィールドの場合は、関連するオブジェクトタイプを以下から選択してください。" -#: netbox/extras/forms/model_forms.py:88 +#: extras/forms/model_forms.py:88 msgid "" "This will be displayed as help text for the form field. Markdown is " "supported." msgstr "これはフォームフィールドのヘルプテキストとして表示されます。Markdown がサポートされています。" -#: netbox/extras/forms/model_forms.py:143 +#: extras/forms/model_forms.py:143 msgid "Related Object" msgstr "関連オブジェクト" -#: netbox/extras/forms/model_forms.py:169 +#: extras/forms/model_forms.py:169 msgid "" "Enter one choice per line. An optional label may be specified for each " "choice by appending it with a colon. Example:" msgstr "1 行に 1 つの選択肢を入力します。必要に応じて、各選択肢にコロンを付けることで、ラベルを指定できます。例:" -#: netbox/extras/forms/model_forms.py:212 -#: netbox/templates/extras/customlink.html:10 +#: extras/forms/model_forms.py:212 templates/extras/customlink.html:10 msgid "Custom Link" msgstr "カスタムリンク" -#: netbox/extras/forms/model_forms.py:214 +#: extras/forms/model_forms.py:214 msgid "Templates" msgstr "テンプレート" -#: netbox/extras/forms/model_forms.py:226 +#: extras/forms/model_forms.py:226 #, python-brace-format msgid "" "Jinja2 template code for the link text. Reference the object as {example}. " @@ -7847,192 +7297,184 @@ msgstr "" "リンクテキストの Jinja2 テンプレートコード。オブジェクトを次のように参照します。 " "{example}。空のテキストとしてレンダリングされるリンクは表示されません。" -#: netbox/extras/forms/model_forms.py:230 +#: extras/forms/model_forms.py:230 #, python-brace-format msgid "" "Jinja2 template code for the link URL. Reference the object as {example}." msgstr "リンク URL の Jinja2 テンプレートコード。オブジェクトを次のように参照します。 {example}。" -#: netbox/extras/forms/model_forms.py:241 -#: netbox/extras/forms/model_forms.py:624 +#: extras/forms/model_forms.py:241 extras/forms/model_forms.py:624 msgid "Template code" msgstr "テンプレートコード" -#: netbox/extras/forms/model_forms.py:247 -#: netbox/templates/extras/exporttemplate.html:12 +#: extras/forms/model_forms.py:247 templates/extras/exporttemplate.html:12 msgid "Export Template" msgstr "テンプレートをエクスポート" -#: netbox/extras/forms/model_forms.py:249 +#: extras/forms/model_forms.py:249 msgid "Rendering" msgstr "レンダリング" -#: netbox/extras/forms/model_forms.py:263 -#: netbox/extras/forms/model_forms.py:649 +#: extras/forms/model_forms.py:263 extras/forms/model_forms.py:649 msgid "Template content is populated from the remote source selected below." msgstr "選択したリモートソースから、テンプレートコンテンツが入力されます。" -#: netbox/extras/forms/model_forms.py:270 -#: netbox/extras/forms/model_forms.py:656 +#: extras/forms/model_forms.py:270 extras/forms/model_forms.py:656 msgid "Must specify either local content or a data file" msgstr "ローカルコンテンツまたはデータファイルのいずれかを指定する必要があります" -#: netbox/extras/forms/model_forms.py:284 netbox/netbox/forms/mixins.py:70 -#: netbox/templates/extras/savedfilter.html:10 +#: extras/forms/model_forms.py:284 netbox/forms/mixins.py:70 +#: templates/extras/savedfilter.html:10 msgid "Saved Filter" msgstr "保存済みフィルタ" -#: netbox/extras/forms/model_forms.py:334 +#: extras/forms/model_forms.py:334 msgid "A notification group specify at least one user or group." msgstr "通知グループには、少なくとも 1 人のユーザまたはグループを指定します。" -#: netbox/extras/forms/model_forms.py:356 -#: netbox/templates/extras/webhook.html:23 +#: extras/forms/model_forms.py:356 templates/extras/webhook.html:23 msgid "HTTP Request" msgstr "HTTP リクエスト" -#: netbox/extras/forms/model_forms.py:358 -#: netbox/templates/extras/webhook.html:44 +#: extras/forms/model_forms.py:358 templates/extras/webhook.html:44 msgid "SSL" msgstr "SSL" -#: netbox/extras/forms/model_forms.py:380 +#: extras/forms/model_forms.py:380 msgid "Action choice" msgstr "スクリプト" -#: netbox/extras/forms/model_forms.py:385 +#: extras/forms/model_forms.py:385 msgid "Enter conditions in JSON format." msgstr "JSON フォーマットで条件を入力。" -#: netbox/extras/forms/model_forms.py:389 +#: extras/forms/model_forms.py:389 msgid "" "Enter parameters to pass to the action in JSON format." msgstr "JSON フォーマットでアクションに渡すパラメータを入力してください。" -#: netbox/extras/forms/model_forms.py:394 -#: netbox/templates/extras/eventrule.html:10 +#: extras/forms/model_forms.py:394 templates/extras/eventrule.html:10 msgid "Event Rule" msgstr "イベントルール" -#: netbox/extras/forms/model_forms.py:395 +#: extras/forms/model_forms.py:395 msgid "Triggers" msgstr "トリガー" -#: netbox/extras/forms/model_forms.py:442 +#: extras/forms/model_forms.py:442 msgid "Notification group" msgstr "通知グループ" -#: netbox/extras/forms/model_forms.py:562 netbox/netbox/navigation/menu.py:26 -#: netbox/tenancy/tables/tenants.py:22 +#: extras/forms/model_forms.py:562 netbox/navigation/menu.py:26 +#: tenancy/tables/tenants.py:22 msgid "Tenants" msgstr "テナント" -#: netbox/extras/forms/model_forms.py:606 +#: extras/forms/model_forms.py:606 msgid "Data is populated from the remote source selected below." msgstr "データは、以下で選択したリモートソースから入力されます。" -#: netbox/extras/forms/model_forms.py:612 +#: extras/forms/model_forms.py:612 msgid "Must specify either local data or a data file" msgstr "ローカルデータまたはデータファイルのいずれかを指定する必要があります" -#: netbox/extras/forms/model_forms.py:631 -#: netbox/templates/core/datafile.html:55 +#: extras/forms/model_forms.py:631 templates/core/datafile.html:55 msgid "Content" msgstr "コンテンツ" -#: netbox/extras/forms/reports.py:17 netbox/extras/forms/scripts.py:23 +#: extras/forms/reports.py:17 extras/forms/scripts.py:23 msgid "Schedule at" msgstr "スケジュール" -#: netbox/extras/forms/reports.py:18 +#: extras/forms/reports.py:18 msgid "Schedule execution of report to a set time" msgstr "レポートの実行をスケジュールする" -#: netbox/extras/forms/reports.py:23 netbox/extras/forms/scripts.py:29 +#: extras/forms/reports.py:23 extras/forms/scripts.py:29 msgid "Recurs every" msgstr "繰り返す" -#: netbox/extras/forms/reports.py:27 +#: extras/forms/reports.py:27 msgid "Interval at which this report is re-run (in minutes)" msgstr "実行される間隔 (分)" -#: netbox/extras/forms/reports.py:35 netbox/extras/forms/scripts.py:41 +#: extras/forms/reports.py:35 extras/forms/scripts.py:41 #, python-brace-format msgid " (current time: {now})" msgstr " (現在時刻: {now})" -#: netbox/extras/forms/reports.py:45 netbox/extras/forms/scripts.py:51 +#: extras/forms/reports.py:45 extras/forms/scripts.py:51 msgid "Scheduled time must be in the future." msgstr "予定時刻は将来の時刻でなければなりません。" -#: netbox/extras/forms/scripts.py:17 +#: extras/forms/scripts.py:17 msgid "Commit changes" msgstr "変更をコミット" -#: netbox/extras/forms/scripts.py:18 +#: extras/forms/scripts.py:18 msgid "Commit changes to the database (uncheck for a dry-run)" msgstr "変更をDBにコミットする (dry runの場合はチェックを外す)" -#: netbox/extras/forms/scripts.py:24 +#: extras/forms/scripts.py:24 msgid "Schedule execution of script to a set time" msgstr "スクリプトの実行をスケジュールする" -#: netbox/extras/forms/scripts.py:33 +#: extras/forms/scripts.py:33 msgid "Interval at which this script is re-run (in minutes)" msgstr "実行される間隔 (分単位)" -#: netbox/extras/jobs.py:49 +#: extras/jobs.py:49 msgid "Database changes have been reverted automatically." msgstr "データベースの変更は自動的に元に戻されました。" -#: netbox/extras/jobs.py:56 +#: extras/jobs.py:55 msgid "Script aborted with error: " msgstr "スクリプトがエラーで中止されました: " -#: netbox/extras/jobs.py:66 +#: extras/jobs.py:65 msgid "An exception occurred: " msgstr "例外が発生しました: " -#: netbox/extras/jobs.py:71 +#: extras/jobs.py:70 msgid "Database changes have been reverted due to error." msgstr "エラーにより、データベースの変更が元に戻されました。" -#: netbox/extras/management/commands/reindex.py:66 +#: extras/management/commands/reindex.py:66 msgid "No indexers found!" msgstr "indexerが見つかりません" -#: netbox/extras/models/configs.py:130 +#: extras/models/configs.py:130 msgid "config context" msgstr "コンフィグコンテキスト" -#: netbox/extras/models/configs.py:131 +#: extras/models/configs.py:131 msgid "config contexts" msgstr "コンフィグコンテキスト" -#: netbox/extras/models/configs.py:149 netbox/extras/models/configs.py:205 +#: extras/models/configs.py:149 extras/models/configs.py:205 msgid "JSON data must be in object form. Example:" msgstr "JSON データはオブジェクト形式である必要があります。例:" -#: netbox/extras/models/configs.py:169 +#: extras/models/configs.py:169 msgid "" "Local config context data takes precedence over source contexts in the final" " rendered config context" msgstr "最終的なコンフィグコンテキストでは、ローカルコンフィグコンテキストが優先されます。" -#: netbox/extras/models/configs.py:224 +#: extras/models/configs.py:224 msgid "template code" msgstr "テンプレートコード" -#: netbox/extras/models/configs.py:225 +#: extras/models/configs.py:225 msgid "Jinja2 template code." msgstr "Jinja2 テンプレートコード。" -#: netbox/extras/models/configs.py:228 +#: extras/models/configs.py:228 msgid "environment parameters" msgstr "環境パラメータ" -#: netbox/extras/models/configs.py:233 +#: extras/models/configs.py:233 msgid "" "Any additional" @@ -8042,101 +7484,101 @@ msgstr "" "href=\"https://jinja.palletsprojects.com/en/3.1.x/api/#jinja2.Environment\">追加パラメータ" " はJinja2 環境を構築するときに渡されます。" -#: netbox/extras/models/configs.py:240 +#: extras/models/configs.py:240 msgid "config template" msgstr "設定テンプレート" -#: netbox/extras/models/configs.py:241 +#: extras/models/configs.py:241 msgid "config templates" msgstr "設定テンプレート" -#: netbox/extras/models/customfields.py:75 +#: extras/models/customfields.py:75 msgid "The object(s) to which this field applies." msgstr "このフィールドが適用されるオブジェクト。" -#: netbox/extras/models/customfields.py:82 +#: extras/models/customfields.py:82 msgid "The type of data this custom field holds" msgstr "このカスタムフィールドが保持するデータのタイプ" -#: netbox/extras/models/customfields.py:89 +#: extras/models/customfields.py:89 msgid "The type of NetBox object this field maps to (for object fields)" msgstr "このフィールドがマップされる NetBox オブジェクトのタイプ (オブジェクトフィールド用)" -#: netbox/extras/models/customfields.py:95 +#: extras/models/customfields.py:95 msgid "Internal field name" msgstr "内部フィールド名" -#: netbox/extras/models/customfields.py:99 +#: extras/models/customfields.py:99 msgid "Only alphanumeric characters and underscores are allowed." msgstr "英数字とアンダースコアのみ使用できます。" -#: netbox/extras/models/customfields.py:104 +#: extras/models/customfields.py:104 msgid "Double underscores are not permitted in custom field names." msgstr "カスタムフィールド名には二重アンダースコアを使用できません。" -#: netbox/extras/models/customfields.py:115 +#: extras/models/customfields.py:115 msgid "" "Name of the field as displayed to users (if not provided, 'the field's name " "will be used)" msgstr "表示されるフィールド名 (指定しない場合は、フィールド名が使用されます)" -#: netbox/extras/models/customfields.py:119 netbox/extras/models/models.py:317 +#: extras/models/customfields.py:119 extras/models/models.py:317 msgid "group name" msgstr "グループ名" -#: netbox/extras/models/customfields.py:122 +#: extras/models/customfields.py:122 msgid "Custom fields within the same group will be displayed together" msgstr "同じグループ内のカスタムフィールドは一緒に表示されます" -#: netbox/extras/models/customfields.py:130 +#: extras/models/customfields.py:130 msgid "required" msgstr "必須" -#: netbox/extras/models/customfields.py:132 +#: extras/models/customfields.py:132 msgid "" "This field is required when creating new objects or editing an existing " "object." msgstr "このフィールドは、オブジェクトを作成・編集に必要です。" -#: netbox/extras/models/customfields.py:135 +#: extras/models/customfields.py:135 msgid "must be unique" msgstr "ユニークでなければならない" -#: netbox/extras/models/customfields.py:137 +#: extras/models/customfields.py:137 msgid "The value of this field must be unique for the assigned object" msgstr "このフィールドの値は、割当オブジェクトで一意である必要があります" -#: netbox/extras/models/customfields.py:140 +#: extras/models/customfields.py:140 msgid "search weight" msgstr "検索優先度" -#: netbox/extras/models/customfields.py:143 +#: extras/models/customfields.py:143 msgid "" "Weighting for search. Lower values are considered more important. Fields " "with a search weight of zero will be ignored." msgstr "検索用の重み付け。値が小さいほど優先されます。検索優先度が 0 のフィールドは無視されます。" -#: netbox/extras/models/customfields.py:148 +#: extras/models/customfields.py:148 msgid "filter logic" msgstr "フィルタロジック" -#: netbox/extras/models/customfields.py:152 +#: extras/models/customfields.py:152 msgid "" "Loose matches any instance of a given string; exact matches the entire " "field." msgstr "Loose は指定した文字列が含まれる場合に一致し、exact はフィールド全体と一致します。" -#: netbox/extras/models/customfields.py:155 +#: extras/models/customfields.py:155 msgid "default" msgstr "デフォルト" -#: netbox/extras/models/customfields.py:159 +#: extras/models/customfields.py:159 msgid "" "Default value for the field (must be a JSON value). Encapsulate strings with" " double quotes (e.g. \"Foo\")." msgstr "フィールドのデフォルト値 (JSON 値である必要があります)。文字列を二重引用符で囲みます (例:「Foo」)。" -#: netbox/extras/models/customfields.py:166 +#: extras/models/customfields.py:166 msgid "" "Filter the object selection choices using a query_params dict (must be a " "JSON value).Encapsulate strings with double quotes (e.g. \"Foo\")." @@ -8144,35 +7586,35 @@ msgstr "" "query_params dict (JSON 値である必要があります) " "を使用してオブジェクト選択の選択肢をフィルタリングします。文字列を二重引用符で囲みます (例:「Foo」)。" -#: netbox/extras/models/customfields.py:172 +#: extras/models/customfields.py:172 msgid "display weight" msgstr "表示優先度" -#: netbox/extras/models/customfields.py:173 +#: extras/models/customfields.py:173 msgid "Fields with higher weights appear lower in a form." msgstr "値が大きいフィールドは、フォームの下に表示されます。" -#: netbox/extras/models/customfields.py:178 +#: extras/models/customfields.py:178 msgid "minimum value" msgstr "最小値" -#: netbox/extras/models/customfields.py:179 +#: extras/models/customfields.py:179 msgid "Minimum allowed value (for numeric fields)" msgstr "最小許容値 (数値フィールド用)" -#: netbox/extras/models/customfields.py:184 +#: extras/models/customfields.py:184 msgid "maximum value" msgstr "最大値" -#: netbox/extras/models/customfields.py:185 +#: extras/models/customfields.py:185 msgid "Maximum allowed value (for numeric fields)" msgstr "最大許容値 (数値フィールド用)" -#: netbox/extras/models/customfields.py:191 +#: extras/models/customfields.py:191 msgid "validation regex" msgstr "バリデーション正規表現" -#: netbox/extras/models/customfields.py:193 +#: extras/models/customfields.py:193 #, python-brace-format msgid "" "Regular expression to enforce on text field values. Use ^ and $ to force " @@ -8182,245 +7624,243 @@ msgstr "" "テキストフィールド値に適用する正規表現。^ と $ を使用して文字列全体を強制的に一致させます。例えば、 ^ " "[A-Z]{3}$ は値を3 字の大文字に制限します。" -#: netbox/extras/models/customfields.py:201 +#: extras/models/customfields.py:201 msgid "choice set" msgstr "選択肢" -#: netbox/extras/models/customfields.py:210 +#: extras/models/customfields.py:210 msgid "Specifies whether the custom field is displayed in the UI" msgstr "カスタムフィールドを UI に表示するかどうかを指定します" -#: netbox/extras/models/customfields.py:217 +#: extras/models/customfields.py:217 msgid "Specifies whether the custom field value can be edited in the UI" msgstr "カスタムフィールド値を UI で編集できるかどうかを指定します" -#: netbox/extras/models/customfields.py:221 +#: extras/models/customfields.py:221 msgid "is cloneable" msgstr "複製可能" -#: netbox/extras/models/customfields.py:222 +#: extras/models/customfields.py:222 msgid "Replicate this value when cloning objects" msgstr "オブジェクトの複製時にこの値を複製する" -#: netbox/extras/models/customfields.py:239 +#: extras/models/customfields.py:239 msgid "custom field" msgstr "カスタムフィールド" -#: netbox/extras/models/customfields.py:240 +#: extras/models/customfields.py:240 msgid "custom fields" msgstr "カスタムフィールド" -#: netbox/extras/models/customfields.py:329 +#: extras/models/customfields.py:329 #, python-brace-format msgid "Invalid default value \"{value}\": {error}" msgstr "デフォルト値が無効です \"{value}\": {error}" -#: netbox/extras/models/customfields.py:336 +#: extras/models/customfields.py:336 msgid "A minimum value may be set only for numeric fields" msgstr "最小値は数値フィールドにのみ設定できます" -#: netbox/extras/models/customfields.py:338 +#: extras/models/customfields.py:338 msgid "A maximum value may be set only for numeric fields" msgstr "最大値は数値フィールドにのみ設定できます" -#: netbox/extras/models/customfields.py:348 +#: extras/models/customfields.py:348 msgid "" "Regular expression validation is supported only for text and URL fields" msgstr "正規表現の検証は、テキストフィールドと URL フィールドでのみサポートされます。" -#: netbox/extras/models/customfields.py:354 +#: extras/models/customfields.py:354 msgid "Uniqueness cannot be enforced for boolean fields" msgstr "ブーリアン型フィールドには一意性を強制できない" -#: netbox/extras/models/customfields.py:364 +#: extras/models/customfields.py:364 msgid "Selection fields must specify a set of choices." msgstr "選択フィールドには選択肢のセットを指定する必要があります。" -#: netbox/extras/models/customfields.py:368 +#: extras/models/customfields.py:368 msgid "Choices may be set only on selection fields." msgstr "選択肢は選択フィールドにのみ設定できます。" -#: netbox/extras/models/customfields.py:375 +#: extras/models/customfields.py:375 msgid "Object fields must define an object type." msgstr "オブジェクトフィールドはオブジェクトタイプを定義する必要があります。" -#: netbox/extras/models/customfields.py:379 +#: extras/models/customfields.py:379 #, python-brace-format msgid "{type} fields may not define an object type." msgstr "{type} フィールドはオブジェクトタイプを定義できません。" -#: netbox/extras/models/customfields.py:386 +#: extras/models/customfields.py:386 msgid "A related object filter can be defined only for object fields." msgstr "関連オブジェクトフィルターはオブジェクトフィールドにのみ定義できます。" -#: netbox/extras/models/customfields.py:390 +#: extras/models/customfields.py:390 msgid "Filter must be defined as a dictionary mapping attributes to values." msgstr "フィルタは、属性を値にマッピングするディクショナリとして定義する必要があります。" -#: netbox/extras/models/customfields.py:469 +#: extras/models/customfields.py:469 msgid "True" msgstr "真" -#: netbox/extras/models/customfields.py:470 +#: extras/models/customfields.py:470 msgid "False" msgstr "偽" -#: netbox/extras/models/customfields.py:560 +#: extras/models/customfields.py:560 #, python-brace-format msgid "Values must match this regex: {regex}" msgstr "値は次の正規表現とマッチする必要があります。 {regex}" -#: netbox/extras/models/customfields.py:654 +#: extras/models/customfields.py:654 msgid "Value must be a string." msgstr "値は文字列でなければなりません。" -#: netbox/extras/models/customfields.py:656 +#: extras/models/customfields.py:656 #, python-brace-format msgid "Value must match regex '{regex}'" msgstr "値は正規表現 '{regex}'と一致する必要があります" -#: netbox/extras/models/customfields.py:661 +#: extras/models/customfields.py:661 msgid "Value must be an integer." msgstr "値は整数でなければなりません。" -#: netbox/extras/models/customfields.py:664 -#: netbox/extras/models/customfields.py:679 +#: extras/models/customfields.py:664 extras/models/customfields.py:679 #, python-brace-format msgid "Value must be at least {minimum}" msgstr "値は {minimum} 以上でなければなりません" -#: netbox/extras/models/customfields.py:668 -#: netbox/extras/models/customfields.py:683 +#: extras/models/customfields.py:668 extras/models/customfields.py:683 #, python-brace-format msgid "Value must not exceed {maximum}" msgstr "値は {maximum} を超えてはいけません" -#: netbox/extras/models/customfields.py:676 +#: extras/models/customfields.py:676 msgid "Value must be a decimal." msgstr "値は実数でなければなりません。" -#: netbox/extras/models/customfields.py:688 +#: extras/models/customfields.py:688 msgid "Value must be true or false." msgstr "値は true または false でなければなりません。" -#: netbox/extras/models/customfields.py:696 +#: extras/models/customfields.py:696 msgid "Date values must be in ISO 8601 format (YYYY-MM-DD)." msgstr "日付値は ISO 8601 フォーマット (YYYY-MM-DD) である必要があります。" -#: netbox/extras/models/customfields.py:705 +#: extras/models/customfields.py:705 msgid "Date and time values must be in ISO 8601 format (YYYY-MM-DD HH:MM:SS)." msgstr "日付と時刻の値は ISO 8601 フォーマット (YYYY-MM-DD HH:MM:SS) である必要があります。" -#: netbox/extras/models/customfields.py:712 +#: extras/models/customfields.py:712 #, python-brace-format msgid "Invalid choice ({value}) for choice set {choiceset}." msgstr "{value}は選択肢 {choiceset} に含まれていません。" -#: netbox/extras/models/customfields.py:722 +#: extras/models/customfields.py:722 #, python-brace-format msgid "Invalid choice(s) ({value}) for choice set {choiceset}." msgstr "{value}は選択肢 {choiceset} に含まれていません。" -#: netbox/extras/models/customfields.py:731 +#: extras/models/customfields.py:731 #, python-brace-format msgid "Value must be an object ID, not {type}" msgstr "{type}ではなく、オブジェクトIDを指定してください" -#: netbox/extras/models/customfields.py:737 +#: extras/models/customfields.py:737 #, python-brace-format msgid "Value must be a list of object IDs, not {type}" msgstr "{type} ではなくオブジェクト ID のリストを入力してください" -#: netbox/extras/models/customfields.py:741 +#: extras/models/customfields.py:741 #, python-brace-format msgid "Found invalid object ID: {id}" msgstr "無効なオブジェクト ID が見つかりました: {id}" -#: netbox/extras/models/customfields.py:744 +#: extras/models/customfields.py:744 msgid "Required field cannot be empty." msgstr "必須フィールドを空にすることはできません。" -#: netbox/extras/models/customfields.py:763 +#: extras/models/customfields.py:763 msgid "Base set of predefined choices (optional)" msgstr "定義済みの選択肢の基本セット (オプション)" -#: netbox/extras/models/customfields.py:775 +#: extras/models/customfields.py:775 msgid "Choices are automatically ordered alphabetically" msgstr "選択肢は自動的にアルファベット順に並べられます" -#: netbox/extras/models/customfields.py:782 +#: extras/models/customfields.py:782 msgid "custom field choice set" msgstr "カスタムフィールド選択肢" -#: netbox/extras/models/customfields.py:783 +#: extras/models/customfields.py:783 msgid "custom field choice sets" msgstr "カスタムフィールド選択肢" -#: netbox/extras/models/customfields.py:825 +#: extras/models/customfields.py:825 msgid "Must define base or extra choices." msgstr "基本選択肢または追加選択肢を定義する必要があります。" -#: netbox/extras/models/customfields.py:849 +#: extras/models/customfields.py:849 #, python-brace-format msgid "" "Cannot remove choice {choice} as there are {model} objects which reference " "it." msgstr "選択肢を削除できません {choice} あるように {model} それを参照するオブジェクト。" -#: netbox/extras/models/dashboard.py:18 +#: extras/models/dashboard.py:18 msgid "layout" msgstr "レイアウト" -#: netbox/extras/models/dashboard.py:22 +#: extras/models/dashboard.py:22 msgid "config" msgstr "設定" -#: netbox/extras/models/dashboard.py:27 +#: extras/models/dashboard.py:27 msgid "dashboard" msgstr "ダッシュボード" -#: netbox/extras/models/dashboard.py:28 +#: extras/models/dashboard.py:28 msgid "dashboards" msgstr "ダッシュボード" -#: netbox/extras/models/models.py:52 +#: extras/models/models.py:52 msgid "object types" msgstr "オブジェクトタイプ" -#: netbox/extras/models/models.py:53 +#: extras/models/models.py:53 msgid "The object(s) to which this rule applies." msgstr "このルールが適用されるオブジェクト。" -#: netbox/extras/models/models.py:67 +#: extras/models/models.py:67 msgid "The types of event which will trigger this rule." msgstr "このルールをトリガーするイベントのタイプ。" -#: netbox/extras/models/models.py:74 +#: extras/models/models.py:74 msgid "conditions" msgstr "条件" -#: netbox/extras/models/models.py:77 +#: extras/models/models.py:77 msgid "" "A set of conditions which determine whether the event will be generated." msgstr "イベントを生成するかどうかを決定する一連の条件。" -#: netbox/extras/models/models.py:85 +#: extras/models/models.py:85 msgid "action type" msgstr "アクションタイプ" -#: netbox/extras/models/models.py:104 +#: extras/models/models.py:104 msgid "Additional data to pass to the action object" msgstr "アクションオブジェクトに渡す追加データ" -#: netbox/extras/models/models.py:116 +#: extras/models/models.py:116 msgid "event rule" msgstr "イベントルール" -#: netbox/extras/models/models.py:117 +#: extras/models/models.py:117 msgid "event rules" msgstr "イベントルール" -#: netbox/extras/models/models.py:166 +#: extras/models/models.py:166 msgid "" "This URL will be called using the HTTP method defined when the webhook is " "called. Jinja2 template processing is supported with the same context as the" @@ -8429,7 +7869,7 @@ msgstr "" "この URL は、Webhook が呼び出されたときに定義された HTTP メソッドを使用して呼び出されます。Jinja2 " "テンプレート処理はリクエストボディと同じコンテキストでサポートされています。" -#: netbox/extras/models/models.py:181 +#: extras/models/models.py:181 msgid "" "The complete list of official content types is available ここに。" -#: netbox/extras/models/models.py:186 +#: extras/models/models.py:186 msgid "additional headers" msgstr "追加ヘッダー" -#: netbox/extras/models/models.py:189 +#: extras/models/models.py:189 msgid "" "User-supplied HTTP headers to be sent with the request in addition to the " "HTTP content type. Headers should be defined in the format Name: " @@ -8452,11 +7892,11 @@ msgstr "" "HTTP コンテンツタイプに加えて、リクエストとともに送信されるユーザ指定の HTTP ヘッダー。ヘッダーは次の形式で定義する必要があります。 " "名前:値。Jinja2 テンプレート処理はリクエストボディ (下記) と同じコンテキストでサポートされています。" -#: netbox/extras/models/models.py:195 +#: extras/models/models.py:195 msgid "body template" msgstr "ボディテンプレート" -#: netbox/extras/models/models.py:198 +#: extras/models/models.py:198 msgid "" "Jinja2 template for a custom request body. If blank, a JSON object " "representing the change will be included. Available context data includes: " @@ -8468,11 +7908,11 @@ msgstr "" "model, timestamp, username, " "request_id, and data." -#: netbox/extras/models/models.py:204 +#: extras/models/models.py:204 msgid "secret" msgstr "シークレット" -#: netbox/extras/models/models.py:208 +#: extras/models/models.py:208 msgid "" "When provided, the request will include a X-Hook-Signature " "header containing a HMAC hex digest of the payload body using the secret as " @@ -8481,77 +7921,77 @@ msgstr "" "提供された場合、リクエストにはシークレットをキーとして使用したペイロード本体のHMAC 16 進ダイジェストを含むX-Hook-" "Signature ヘッダー が含まれます 。シークレットはリクエストでは送信されません。" -#: netbox/extras/models/models.py:215 +#: extras/models/models.py:215 msgid "Enable SSL certificate verification. Disable with caution!" msgstr "SSL 証明書検証を有効にします。注意して無効にしてください。" -#: netbox/extras/models/models.py:221 netbox/templates/extras/webhook.html:51 +#: extras/models/models.py:221 templates/extras/webhook.html:51 msgid "CA File Path" msgstr "CA ファイルパス" -#: netbox/extras/models/models.py:223 +#: extras/models/models.py:223 msgid "" "The specific CA certificate file to use for SSL verification. Leave blank to" " use the system defaults." msgstr "SSL 検証に使用する特定の CA 証明書ファイル。システムデフォルトを使用するには空白のままにしておきます。" -#: netbox/extras/models/models.py:234 +#: extras/models/models.py:234 msgid "webhook" msgstr "ウェブフック" -#: netbox/extras/models/models.py:235 +#: extras/models/models.py:235 msgid "webhooks" msgstr "ウェブフック" -#: netbox/extras/models/models.py:253 +#: extras/models/models.py:253 msgid "Do not specify a CA certificate file if SSL verification is disabled." msgstr "SSL 検証が無効になっている場合は、CA 証明書ファイルを指定しないでください。" -#: netbox/extras/models/models.py:293 +#: extras/models/models.py:293 msgid "The object type(s) to which this link applies." msgstr "このリンクが適用されるオブジェクトタイプ。" -#: netbox/extras/models/models.py:305 +#: extras/models/models.py:305 msgid "link text" msgstr "リンクテキスト" -#: netbox/extras/models/models.py:306 +#: extras/models/models.py:306 msgid "Jinja2 template code for link text" msgstr "リンクテキストの Jinja2 テンプレートコード" -#: netbox/extras/models/models.py:309 +#: extras/models/models.py:309 msgid "link URL" msgstr "リンク URL" -#: netbox/extras/models/models.py:310 +#: extras/models/models.py:310 msgid "Jinja2 template code for link URL" msgstr "リンク URL の Jinja2 テンプレートコード" -#: netbox/extras/models/models.py:320 +#: extras/models/models.py:320 msgid "Links with the same group will appear as a dropdown menu" msgstr "同じグループのリンクはドロップダウンメニューとして表示されます" -#: netbox/extras/models/models.py:330 +#: extras/models/models.py:330 msgid "new window" msgstr "新しいウィンドウ" -#: netbox/extras/models/models.py:332 +#: extras/models/models.py:332 msgid "Force link to open in a new window" msgstr "リンクを強制的に新しいウィンドウで開く" -#: netbox/extras/models/models.py:341 +#: extras/models/models.py:341 msgid "custom link" msgstr "カスタムリンク" -#: netbox/extras/models/models.py:342 +#: extras/models/models.py:342 msgid "custom links" msgstr "カスタムリンク" -#: netbox/extras/models/models.py:389 +#: extras/models/models.py:389 msgid "The object type(s) to which this template applies." msgstr "このテンプレートが適用されるオブジェクトタイプ。" -#: netbox/extras/models/models.py:402 +#: extras/models/models.py:402 msgid "" "Jinja2 template code. The list of objects being exported is passed as a " "context variable named queryset." @@ -8559,2461 +7999,2391 @@ msgstr "" "Jinja2 テンプレートコード。エクスポートされるオブジェクトのリストは、 " "クエリーセットという名前のコンテキスト変数として渡されます。" -#: netbox/extras/models/models.py:410 +#: extras/models/models.py:410 msgid "Defaults to text/plain; charset=utf-8" msgstr "デフォルトは text/plain; charset=utf-8" -#: netbox/extras/models/models.py:413 +#: extras/models/models.py:413 msgid "file extension" msgstr "ファイル拡張子" -#: netbox/extras/models/models.py:416 +#: extras/models/models.py:416 msgid "Extension to append to the rendered filename" msgstr "レンダリングされたファイル名に追加する拡張子" -#: netbox/extras/models/models.py:419 +#: extras/models/models.py:419 msgid "as attachment" msgstr "添付ファイルとして" -#: netbox/extras/models/models.py:421 +#: extras/models/models.py:421 msgid "Download file as attachment" msgstr "ファイルを直接ダウンロードする" -#: netbox/extras/models/models.py:430 +#: extras/models/models.py:430 msgid "export template" msgstr "エクスポートテンプレート" -#: netbox/extras/models/models.py:431 +#: extras/models/models.py:431 msgid "export templates" msgstr "エクスポートテンプレート" -#: netbox/extras/models/models.py:448 +#: extras/models/models.py:448 #, python-brace-format msgid "\"{name}\" is a reserved name. Please choose a different name." msgstr "\"{name}\"は予約されています。別の名前を選択してください。" -#: netbox/extras/models/models.py:498 +#: extras/models/models.py:498 msgid "The object type(s) to which this filter applies." msgstr "このフィルタが適用されるオブジェクトタイプ。" -#: netbox/extras/models/models.py:530 +#: extras/models/models.py:530 msgid "shared" msgstr "共有した" -#: netbox/extras/models/models.py:543 +#: extras/models/models.py:543 msgid "saved filter" msgstr "保存済みフィルタ" -#: netbox/extras/models/models.py:544 +#: extras/models/models.py:544 msgid "saved filters" msgstr "保存済みフィルタ" -#: netbox/extras/models/models.py:562 +#: extras/models/models.py:562 msgid "Filter parameters must be stored as a dictionary of keyword arguments." msgstr "フィルタパラメータは、キーワード引数の辞書として保存する必要があります。" -#: netbox/extras/models/models.py:590 +#: extras/models/models.py:590 msgid "image height" msgstr "画像高さ" -#: netbox/extras/models/models.py:593 +#: extras/models/models.py:593 msgid "image width" msgstr "画像幅" -#: netbox/extras/models/models.py:610 +#: extras/models/models.py:610 msgid "image attachment" msgstr "添付画像" -#: netbox/extras/models/models.py:611 +#: extras/models/models.py:611 msgid "image attachments" msgstr "添付画像" -#: netbox/extras/models/models.py:625 +#: extras/models/models.py:625 #, python-brace-format msgid "Image attachments cannot be assigned to this object type ({type})." msgstr "このオブジェクトタイプ ({type})には添付画像を割り当てることができません。" -#: netbox/extras/models/models.py:688 +#: extras/models/models.py:688 msgid "kind" msgstr "種類" -#: netbox/extras/models/models.py:702 +#: extras/models/models.py:702 msgid "journal entry" msgstr "ジャーナルエントリ" -#: netbox/extras/models/models.py:703 +#: extras/models/models.py:703 msgid "journal entries" msgstr "ジャーナルエントリ" -#: netbox/extras/models/models.py:718 +#: extras/models/models.py:718 #, python-brace-format msgid "Journaling is not supported for this object type ({type})." msgstr "このオブジェクトタイプ({type})ではジャーナリングはサポートされていません 。" -#: netbox/extras/models/models.py:760 +#: extras/models/models.py:760 msgid "bookmark" msgstr "ブックマーク" -#: netbox/extras/models/models.py:761 +#: extras/models/models.py:761 msgid "bookmarks" msgstr "ブックマーク" -#: netbox/extras/models/models.py:774 +#: extras/models/models.py:774 #, python-brace-format msgid "Bookmarks cannot be assigned to this object type ({type})." msgstr "このオブジェクトタイプ ({type})にはブックマークを割り当てられません。" -#: netbox/extras/models/notifications.py:43 +#: extras/models/notifications.py:43 msgid "read" msgstr "読む" -#: netbox/extras/models/notifications.py:66 +#: extras/models/notifications.py:66 msgid "event" msgstr "出来事" -#: netbox/extras/models/notifications.py:84 +#: extras/models/notifications.py:84 msgid "notification" msgstr "通知" -#: netbox/extras/models/notifications.py:85 +#: extras/models/notifications.py:85 msgid "notifications" msgstr "通知" -#: netbox/extras/models/notifications.py:99 -#: netbox/extras/models/notifications.py:234 +#: extras/models/notifications.py:99 extras/models/notifications.py:234 #, python-brace-format msgid "Objects of this type ({type}) do not support notifications." msgstr "このタイプのオブジェクト ({type}) 通知はサポートしていません。" -#: netbox/extras/models/notifications.py:137 netbox/users/models/users.py:58 -#: netbox/users/models/users.py:77 +#: extras/models/notifications.py:137 users/models/users.py:58 +#: users/models/users.py:77 msgid "groups" msgstr "グループ" -#: netbox/extras/models/notifications.py:143 netbox/users/models/users.py:93 +#: extras/models/notifications.py:143 users/models/users.py:93 msgid "users" msgstr "ユーザ" -#: netbox/extras/models/notifications.py:152 +#: extras/models/notifications.py:152 msgid "notification group" msgstr "通知グループ" -#: netbox/extras/models/notifications.py:153 +#: extras/models/notifications.py:153 msgid "notification groups" msgstr "通知グループ" -#: netbox/extras/models/notifications.py:217 +#: extras/models/notifications.py:217 msgid "subscription" msgstr "サブスクリプション" -#: netbox/extras/models/notifications.py:218 +#: extras/models/notifications.py:218 msgid "subscriptions" msgstr "サブスクリプション" -#: netbox/extras/models/scripts.py:42 +#: extras/models/scripts.py:42 msgid "is executable" msgstr "実行可能" -#: netbox/extras/models/scripts.py:64 +#: extras/models/scripts.py:64 msgid "script" msgstr "スクリプト" -#: netbox/extras/models/scripts.py:65 +#: extras/models/scripts.py:65 msgid "scripts" msgstr "スクリプト" -#: netbox/extras/models/scripts.py:111 +#: extras/models/scripts.py:111 msgid "script module" msgstr "スクリプトモジュール" -#: netbox/extras/models/scripts.py:112 +#: extras/models/scripts.py:112 msgid "script modules" msgstr "スクリプトモジュール" -#: netbox/extras/models/search.py:22 +#: extras/models/search.py:22 msgid "timestamp" msgstr "タイムスタンプ" -#: netbox/extras/models/search.py:37 +#: extras/models/search.py:37 msgid "field" msgstr "フィールド" -#: netbox/extras/models/search.py:45 +#: extras/models/search.py:45 msgid "value" msgstr "値" -#: netbox/extras/models/search.py:56 +#: extras/models/search.py:56 msgid "cached value" msgstr "キャッシュ値" -#: netbox/extras/models/search.py:57 +#: extras/models/search.py:57 msgid "cached values" msgstr "キャッシュ値" -#: netbox/extras/models/staging.py:44 +#: extras/models/staging.py:44 msgid "branch" msgstr "ブランチ" -#: netbox/extras/models/staging.py:45 +#: extras/models/staging.py:45 msgid "branches" msgstr "ブランチ" -#: netbox/extras/models/staging.py:97 +#: extras/models/staging.py:97 msgid "staged change" msgstr "段階的変更" -#: netbox/extras/models/staging.py:98 +#: extras/models/staging.py:98 msgid "staged changes" msgstr "段階的変更" -#: netbox/extras/models/tags.py:40 +#: extras/models/tags.py:40 msgid "The object type(s) to which this tag can be applied." msgstr "このタグを適用できるオブジェクトタイプ。" -#: netbox/extras/models/tags.py:49 +#: extras/models/tags.py:49 msgid "tag" msgstr "タグ" -#: netbox/extras/models/tags.py:50 +#: extras/models/tags.py:50 msgid "tags" msgstr "タグ" -#: netbox/extras/models/tags.py:78 +#: extras/models/tags.py:78 msgid "tagged item" msgstr "タグ付きアイテム" -#: netbox/extras/models/tags.py:79 +#: extras/models/tags.py:79 msgid "tagged items" msgstr "タグ付きアイテム" -#: netbox/extras/scripts.py:429 +#: extras/scripts.py:429 msgid "Script Data" msgstr "スクリプトデータ" -#: netbox/extras/scripts.py:433 +#: extras/scripts.py:433 msgid "Script Execution Parameters" msgstr "スクリプト実行パラメータ" -#: netbox/extras/tables/columns.py:12 -#: netbox/templates/htmx/notifications.html:18 +#: extras/tables/columns.py:12 templates/htmx/notifications.html:18 msgid "Dismiss" msgstr "却下" -#: netbox/extras/tables/tables.py:62 netbox/extras/tables/tables.py:159 -#: netbox/extras/tables/tables.py:184 netbox/extras/tables/tables.py:250 -#: netbox/extras/tables/tables.py:276 netbox/extras/tables/tables.py:412 -#: netbox/extras/tables/tables.py:446 -#: netbox/templates/extras/customfield.html:105 -#: netbox/templates/extras/eventrule.html:27 -#: netbox/templates/users/objectpermission.html:64 netbox/users/tables.py:80 +#: extras/tables/tables.py:62 extras/tables/tables.py:159 +#: extras/tables/tables.py:184 extras/tables/tables.py:250 +#: extras/tables/tables.py:276 extras/tables/tables.py:412 +#: extras/tables/tables.py:446 templates/extras/customfield.html:105 +#: templates/extras/eventrule.html:27 templates/users/objectpermission.html:64 +#: users/tables.py:80 msgid "Object Types" msgstr "オブジェクトタイプ" -#: netbox/extras/tables/tables.py:69 +#: extras/tables/tables.py:69 msgid "Validate Uniqueness" msgstr "一意性を検証" -#: netbox/extras/tables/tables.py:73 +#: extras/tables/tables.py:73 msgid "Visible" msgstr "可視" -#: netbox/extras/tables/tables.py:76 +#: extras/tables/tables.py:76 msgid "Editable" msgstr "編集可能" -#: netbox/extras/tables/tables.py:82 +#: extras/tables/tables.py:82 msgid "Related Object Type" msgstr "関連オブジェクトタイプ" -#: netbox/extras/tables/tables.py:86 -#: netbox/templates/extras/customfield.html:51 +#: extras/tables/tables.py:86 templates/extras/customfield.html:51 msgid "Choice Set" msgstr "チョイスセット" -#: netbox/extras/tables/tables.py:94 +#: extras/tables/tables.py:94 msgid "Is Cloneable" msgstr "複製可能" -#: netbox/extras/tables/tables.py:98 -#: netbox/templates/extras/customfield.html:118 +#: extras/tables/tables.py:98 templates/extras/customfield.html:118 msgid "Minimum Value" msgstr "最小値" -#: netbox/extras/tables/tables.py:101 -#: netbox/templates/extras/customfield.html:122 +#: extras/tables/tables.py:101 templates/extras/customfield.html:122 msgid "Maximum Value" msgstr "最大値" -#: netbox/extras/tables/tables.py:104 +#: extras/tables/tables.py:104 msgid "Validation Regex" msgstr "検証正規表現" -#: netbox/extras/tables/tables.py:137 +#: extras/tables/tables.py:137 msgid "Count" msgstr "カウント" -#: netbox/extras/tables/tables.py:140 +#: extras/tables/tables.py:140 msgid "Order Alphabetically" msgstr "アルファベット順に並べる" -#: netbox/extras/tables/tables.py:165 -#: netbox/templates/extras/customlink.html:33 +#: extras/tables/tables.py:165 templates/extras/customlink.html:33 msgid "New Window" msgstr "新規ウィンドウ" -#: netbox/extras/tables/tables.py:187 +#: extras/tables/tables.py:187 msgid "As Attachment" msgstr "添付ファイルとして" -#: netbox/extras/tables/tables.py:195 netbox/extras/tables/tables.py:487 -#: netbox/extras/tables/tables.py:522 netbox/templates/core/datafile.html:24 -#: netbox/templates/dcim/device/render_config.html:22 -#: netbox/templates/extras/configcontext.html:39 -#: netbox/templates/extras/configtemplate.html:31 -#: netbox/templates/extras/exporttemplate.html:45 -#: netbox/templates/generic/bulk_import.html:35 -#: netbox/templates/virtualization/virtualmachine/render_config.html:22 +#: extras/tables/tables.py:195 extras/tables/tables.py:487 +#: extras/tables/tables.py:522 templates/core/datafile.html:24 +#: templates/dcim/device/render_config.html:22 +#: templates/extras/configcontext.html:39 +#: templates/extras/configtemplate.html:31 +#: templates/extras/exporttemplate.html:45 +#: templates/generic/bulk_import.html:35 +#: templates/virtualization/virtualmachine/render_config.html:22 msgid "Data File" msgstr "データファイル" -#: netbox/extras/tables/tables.py:200 netbox/extras/tables/tables.py:499 -#: netbox/extras/tables/tables.py:527 +#: extras/tables/tables.py:200 extras/tables/tables.py:499 +#: extras/tables/tables.py:527 msgid "Synced" msgstr "同期済み" -#: netbox/extras/tables/tables.py:227 +#: extras/tables/tables.py:227 msgid "Image" msgstr "画像" -#: netbox/extras/tables/tables.py:232 +#: extras/tables/tables.py:232 msgid "Size (Bytes)" msgstr "サイズ (バイト)" -#: netbox/extras/tables/tables.py:339 +#: extras/tables/tables.py:339 msgid "Read" msgstr "読む" -#: netbox/extras/tables/tables.py:382 +#: extras/tables/tables.py:382 msgid "SSL Validation" msgstr "SSL バリデーション" -#: netbox/extras/tables/tables.py:418 -#: netbox/templates/extras/eventrule.html:37 +#: extras/tables/tables.py:418 templates/extras/eventrule.html:37 msgid "Event Types" msgstr "イベントタイプ" -#: netbox/extras/tables/tables.py:535 netbox/netbox/navigation/menu.py:77 -#: netbox/templates/dcim/devicerole.html:8 +#: extras/tables/tables.py:535 netbox/navigation/menu.py:77 +#: templates/dcim/devicerole.html:8 msgid "Device Roles" msgstr "デバイスロール" -#: netbox/extras/tables/tables.py:587 +#: extras/tables/tables.py:587 msgid "Comments (Short)" msgstr "コメント (ショート)" -#: netbox/extras/tables/tables.py:606 netbox/extras/tables/tables.py:640 +#: extras/tables/tables.py:606 extras/tables/tables.py:640 msgid "Line" msgstr "ライン" -#: netbox/extras/tables/tables.py:613 netbox/extras/tables/tables.py:650 +#: extras/tables/tables.py:613 extras/tables/tables.py:650 msgid "Level" msgstr "レベル" -#: netbox/extras/tables/tables.py:619 netbox/extras/tables/tables.py:659 +#: extras/tables/tables.py:619 extras/tables/tables.py:659 msgid "Message" msgstr "メッセージ" -#: netbox/extras/tables/tables.py:643 +#: extras/tables/tables.py:643 msgid "Method" msgstr "メソッド" -#: netbox/extras/validators.py:15 +#: extras/validators.py:15 #, python-format msgid "Ensure this value is equal to %(limit_value)s." msgstr "%(limit_value)sと等しいことを確認する 。" -#: netbox/extras/validators.py:26 +#: extras/validators.py:26 #, python-format msgid "Ensure this value does not equal %(limit_value)s." msgstr "%(limit_value)sと等しくないことを確認する。" -#: netbox/extras/validators.py:37 +#: extras/validators.py:37 msgid "This field must be empty." msgstr "このフィールドは空でなければなりません。" -#: netbox/extras/validators.py:52 +#: extras/validators.py:52 msgid "This field must not be empty." msgstr "このフィールドは空であってはなりません。" -#: netbox/extras/validators.py:94 +#: extras/validators.py:94 msgid "Validation rules must be passed as a dictionary" msgstr "検証ルールはディクショナリとして渡さなければなりません" -#: netbox/extras/validators.py:119 +#: extras/validators.py:119 #, python-brace-format msgid "Custom validation failed for {attribute}: {exception}" msgstr "のカスタム検証が失敗しました {attribute}: {exception}" -#: netbox/extras/validators.py:133 +#: extras/validators.py:133 #, python-brace-format msgid "Invalid attribute \"{name}\" for request" msgstr "属性が無効です」{name}「」(リクエスト用)" -#: netbox/extras/validators.py:150 +#: extras/validators.py:150 #, python-brace-format msgid "Invalid attribute \"{name}\" for {model}" msgstr "{model}において{name}属性は無効です" -#: netbox/extras/views.py:960 +#: extras/views.py:960 msgid "Your dashboard has been reset." msgstr "ダッシュボードがリセットされました。" -#: netbox/extras/views.py:1006 +#: extras/views.py:1006 msgid "Added widget: " msgstr "ウィジェットの追加: " -#: netbox/extras/views.py:1047 +#: extras/views.py:1047 msgid "Updated widget: " msgstr "ウィジェットの更新: " -#: netbox/extras/views.py:1083 +#: extras/views.py:1083 msgid "Deleted widget: " msgstr "削除したウィジェット: " -#: netbox/extras/views.py:1085 +#: extras/views.py:1085 msgid "Error deleting widget: " msgstr "ウィジェットの削除中にエラーが発生しました: " -#: netbox/extras/views.py:1172 +#: extras/views.py:1172 msgid "Unable to run script: RQ worker process not running." msgstr "スクリプトを実行できません:RQ ワーカープロセスが実行されていません。" -#: netbox/ipam/api/field_serializers.py:17 +#: ipam/api/field_serializers.py:17 msgid "Enter a valid IPv4 or IPv6 address with optional mask." msgstr "有効な IPv4 または IPv6 アドレスを入力してください。(サブネットマスクが使用可能)" -#: netbox/ipam/api/field_serializers.py:24 +#: ipam/api/field_serializers.py:24 #, python-brace-format msgid "Invalid IP address format: {data}" msgstr "IP アドレス形式が無効です: {data}" -#: netbox/ipam/api/field_serializers.py:37 +#: ipam/api/field_serializers.py:37 msgid "Enter a valid IPv4 or IPv6 prefix and mask in CIDR notation." msgstr "有効な IPv4 または IPv6 プレフィックスとマスクを CIDR 表記で入力します。" -#: netbox/ipam/api/field_serializers.py:44 +#: ipam/api/field_serializers.py:44 #, python-brace-format msgid "Invalid IP prefix format: {data}" msgstr "IP プレフィックス形式が無効です: {data}" -#: netbox/ipam/api/views.py:358 +#: ipam/api/views.py:358 msgid "" "Insufficient space is available to accommodate the requested prefix size(s)" msgstr "要求されたプレフィックスサイズを収容するにはスペースが足りません" -#: netbox/ipam/choices.py:30 +#: ipam/choices.py:30 msgid "Container" msgstr "コンテナ" -#: netbox/ipam/choices.py:72 +#: ipam/choices.py:72 msgid "DHCP" msgstr "DHCP" -#: netbox/ipam/choices.py:73 +#: ipam/choices.py:73 msgid "SLAAC" msgstr "SLAAC" -#: netbox/ipam/choices.py:89 +#: ipam/choices.py:89 msgid "Loopback" msgstr "ループバック" -#: netbox/ipam/choices.py:91 +#: ipam/choices.py:91 msgid "Anycast" msgstr "エニーキャスト" -#: netbox/ipam/choices.py:115 +#: ipam/choices.py:115 msgid "Standard" msgstr "スタンダード" -#: netbox/ipam/choices.py:120 +#: ipam/choices.py:120 msgid "CheckPoint" msgstr "チェックポイント" -#: netbox/ipam/choices.py:123 +#: ipam/choices.py:123 msgid "Cisco" msgstr "シスコ" -#: netbox/ipam/choices.py:137 +#: ipam/choices.py:137 msgid "Plaintext" msgstr "プレーンテキスト" -#: netbox/ipam/fields.py:36 +#: ipam/fields.py:36 #, python-brace-format msgid "Invalid IP address format: {address}" msgstr "IP アドレス形式が無効です: {address}" -#: netbox/ipam/filtersets.py:48 netbox/vpn/filtersets.py:304 +#: ipam/filtersets.py:48 vpn/filtersets.py:304 msgid "Import target" msgstr "インポート対象" -#: netbox/ipam/filtersets.py:54 netbox/vpn/filtersets.py:310 +#: ipam/filtersets.py:54 vpn/filtersets.py:310 msgid "Import target (name)" msgstr "インポート対象 (名前)" -#: netbox/ipam/filtersets.py:59 netbox/vpn/filtersets.py:315 +#: ipam/filtersets.py:59 vpn/filtersets.py:315 msgid "Export target" msgstr "エクスポート対象" -#: netbox/ipam/filtersets.py:65 netbox/vpn/filtersets.py:321 +#: ipam/filtersets.py:65 vpn/filtersets.py:321 msgid "Export target (name)" msgstr "エクスポート対象 (名前)" -#: netbox/ipam/filtersets.py:86 +#: ipam/filtersets.py:86 msgid "Importing VRF" msgstr "VRF のインポート" -#: netbox/ipam/filtersets.py:92 +#: ipam/filtersets.py:92 msgid "Import VRF (RD)" msgstr "VRF (RD) をインポート" -#: netbox/ipam/filtersets.py:97 +#: ipam/filtersets.py:97 msgid "Exporting VRF" msgstr "VRF のエクスポート" -#: netbox/ipam/filtersets.py:103 +#: ipam/filtersets.py:103 msgid "Export VRF (RD)" msgstr "VRF (RD) をエクスポート" -#: netbox/ipam/filtersets.py:108 +#: ipam/filtersets.py:108 msgid "Importing L2VPN" msgstr "L2VPN のインポート" -#: netbox/ipam/filtersets.py:114 +#: ipam/filtersets.py:114 msgid "Importing L2VPN (identifier)" msgstr "L2VPN (識別子) のインポート" -#: netbox/ipam/filtersets.py:119 +#: ipam/filtersets.py:119 msgid "Exporting L2VPN" msgstr "L2VPN のエクスポート" -#: netbox/ipam/filtersets.py:125 +#: ipam/filtersets.py:125 msgid "Exporting L2VPN (identifier)" msgstr "L2VPN (識別子) のエクスポート" -#: netbox/ipam/filtersets.py:155 netbox/ipam/filtersets.py:281 -#: netbox/ipam/forms/model_forms.py:229 netbox/ipam/tables/ip.py:212 -#: netbox/templates/ipam/prefix.html:12 +#: ipam/filtersets.py:155 ipam/filtersets.py:281 ipam/forms/model_forms.py:229 +#: ipam/tables/ip.py:212 templates/ipam/prefix.html:12 msgid "Prefix" msgstr "プレフィックス" -#: netbox/ipam/filtersets.py:159 netbox/ipam/filtersets.py:198 -#: netbox/ipam/filtersets.py:221 +#: ipam/filtersets.py:159 ipam/filtersets.py:198 ipam/filtersets.py:221 msgid "RIR (ID)" msgstr "RIR (ID)" -#: netbox/ipam/filtersets.py:165 netbox/ipam/filtersets.py:204 -#: netbox/ipam/filtersets.py:227 +#: ipam/filtersets.py:165 ipam/filtersets.py:204 ipam/filtersets.py:227 msgid "RIR (slug)" msgstr "RIR (slug)" -#: netbox/ipam/filtersets.py:285 +#: ipam/filtersets.py:285 msgid "Within prefix" msgstr "プレフィックス内" -#: netbox/ipam/filtersets.py:289 +#: ipam/filtersets.py:289 msgid "Within and including prefix" msgstr "プレフィックス内およびプレフィックスを含む" -#: netbox/ipam/filtersets.py:293 +#: ipam/filtersets.py:293 msgid "Prefixes which contain this prefix or IP" msgstr "このプレフィックス / IP を含むプレフィックス" -#: netbox/ipam/filtersets.py:304 netbox/ipam/filtersets.py:572 -#: netbox/ipam/forms/bulk_edit.py:342 netbox/ipam/forms/filtersets.py:196 -#: netbox/ipam/forms/filtersets.py:331 +#: ipam/filtersets.py:304 ipam/filtersets.py:572 ipam/forms/bulk_edit.py:343 +#: ipam/forms/filtersets.py:196 ipam/forms/filtersets.py:331 msgid "Mask length" msgstr "マスクの長さ" -#: netbox/ipam/filtersets.py:373 netbox/vpn/filtersets.py:427 +#: ipam/filtersets.py:373 vpn/filtersets.py:427 msgid "VLAN (ID)" msgstr "VLAN (ID)" -#: netbox/ipam/filtersets.py:377 netbox/vpn/filtersets.py:422 +#: ipam/filtersets.py:377 vpn/filtersets.py:422 msgid "VLAN number (1-4094)" msgstr "VLAN 番号 (1-4094)" -#: netbox/ipam/filtersets.py:471 netbox/ipam/filtersets.py:475 -#: netbox/ipam/filtersets.py:567 netbox/ipam/forms/model_forms.py:463 -#: netbox/templates/tenancy/contact.html:53 -#: netbox/tenancy/forms/bulk_edit.py:113 +#: ipam/filtersets.py:471 ipam/filtersets.py:475 ipam/filtersets.py:567 +#: ipam/forms/model_forms.py:463 templates/tenancy/contact.html:53 +#: tenancy/forms/bulk_edit.py:113 msgid "Address" msgstr "アドレス" -#: netbox/ipam/filtersets.py:479 +#: ipam/filtersets.py:479 msgid "Ranges which contain this prefix or IP" msgstr "このプレフィックス / IP を含む範囲" -#: netbox/ipam/filtersets.py:507 netbox/ipam/filtersets.py:563 +#: ipam/filtersets.py:507 ipam/filtersets.py:563 msgid "Parent prefix" msgstr "親プレフィックス" -#: netbox/ipam/filtersets.py:616 netbox/ipam/filtersets.py:856 -#: netbox/ipam/filtersets.py:1131 netbox/vpn/filtersets.py:385 +#: ipam/filtersets.py:616 ipam/filtersets.py:856 ipam/filtersets.py:1131 +#: vpn/filtersets.py:385 msgid "Virtual machine (name)" msgstr "仮想マシン (名前)" -#: netbox/ipam/filtersets.py:621 netbox/ipam/filtersets.py:861 -#: netbox/ipam/filtersets.py:1125 netbox/virtualization/filtersets.py:282 -#: netbox/virtualization/filtersets.py:321 netbox/vpn/filtersets.py:390 +#: ipam/filtersets.py:621 ipam/filtersets.py:861 ipam/filtersets.py:1125 +#: virtualization/filtersets.py:282 virtualization/filtersets.py:321 +#: vpn/filtersets.py:390 msgid "Virtual machine (ID)" msgstr "仮想マシン (ID)" -#: netbox/ipam/filtersets.py:627 netbox/vpn/filtersets.py:97 -#: netbox/vpn/filtersets.py:396 +#: ipam/filtersets.py:627 vpn/filtersets.py:97 vpn/filtersets.py:396 msgid "Interface (name)" msgstr "インタフェース (名前)" -#: netbox/ipam/filtersets.py:638 netbox/vpn/filtersets.py:108 -#: netbox/vpn/filtersets.py:407 +#: ipam/filtersets.py:638 vpn/filtersets.py:108 vpn/filtersets.py:407 msgid "VM interface (name)" msgstr "VM インタフェース (名前)" -#: netbox/ipam/filtersets.py:643 netbox/vpn/filtersets.py:113 +#: ipam/filtersets.py:643 vpn/filtersets.py:113 msgid "VM interface (ID)" msgstr "VM インタフェース (ID)" -#: netbox/ipam/filtersets.py:648 +#: ipam/filtersets.py:648 msgid "FHRP group (ID)" msgstr "FHRP グループ (ID)" -#: netbox/ipam/filtersets.py:652 +#: ipam/filtersets.py:652 msgid "Is assigned to an interface" msgstr "インタフェースに割り当てられているか" -#: netbox/ipam/filtersets.py:656 +#: ipam/filtersets.py:656 msgid "Is assigned" msgstr "割当済みか" -#: netbox/ipam/filtersets.py:668 +#: ipam/filtersets.py:668 msgid "Service (ID)" msgstr "サービス (ID)" -#: netbox/ipam/filtersets.py:673 +#: ipam/filtersets.py:673 msgid "NAT inside IP address (ID)" msgstr "NAT 内部の IP アドレス (ID)" -#: netbox/ipam/filtersets.py:1041 netbox/ipam/forms/bulk_import.py:322 +#: ipam/filtersets.py:1041 ipam/forms/bulk_import.py:322 msgid "Assigned interface" msgstr "割当インタフェース" -#: netbox/ipam/filtersets.py:1046 +#: ipam/filtersets.py:1046 msgid "Assigned VM interface" msgstr "割り当てられた VM インターフェイス" -#: netbox/ipam/filtersets.py:1136 +#: ipam/filtersets.py:1136 msgid "IP address (ID)" msgstr "IP アドレス (ID)" -#: netbox/ipam/filtersets.py:1142 netbox/ipam/models/ip.py:788 +#: ipam/filtersets.py:1142 ipam/models/ip.py:788 msgid "IP address" msgstr "IP アドレス" -#: netbox/ipam/filtersets.py:1167 +#: ipam/filtersets.py:1167 msgid "Primary IPv4 (ID)" msgstr "プライマリ IPv4 (ID)" -#: netbox/ipam/filtersets.py:1172 +#: ipam/filtersets.py:1172 msgid "Primary IPv6 (ID)" msgstr "プライマリ IPv6 (ID)" -#: netbox/ipam/formfields.py:14 +#: ipam/formfields.py:14 msgid "Enter a valid IPv4 or IPv6 address (without a mask)." msgstr "有効な IPv4 または IPv6 アドレス (マスクなし) を入力します。" -#: netbox/ipam/formfields.py:32 +#: ipam/formfields.py:32 #, python-brace-format msgid "Invalid IPv4/IPv6 address format: {address}" msgstr "IPv4/IPv6 アドレスの形式が無効です: {address}" -#: netbox/ipam/formfields.py:37 +#: ipam/formfields.py:37 msgid "This field requires an IP address without a mask." msgstr "このフィールドには、マスクなしの IP アドレスが必要です。" -#: netbox/ipam/formfields.py:39 netbox/ipam/formfields.py:61 +#: ipam/formfields.py:39 ipam/formfields.py:61 msgid "Please specify a valid IPv4 or IPv6 address." msgstr "有効な IPv4 または IPv6 アドレスを指定してください。" -#: netbox/ipam/formfields.py:44 +#: ipam/formfields.py:44 msgid "Enter a valid IPv4 or IPv6 address (with CIDR mask)." msgstr "有効な IPv4 または IPv6 アドレス (CIDR マスク付き) を入力します。" -#: netbox/ipam/formfields.py:56 +#: ipam/formfields.py:56 msgid "CIDR mask (e.g. /24) is required." msgstr "CIDR マスク (例:/24) が必要です。" -#: netbox/ipam/forms/bulk_create.py:13 +#: ipam/forms/bulk_create.py:13 msgid "Address pattern" msgstr "アドレスパターン" -#: netbox/ipam/forms/bulk_edit.py:49 +#: ipam/forms/bulk_edit.py:50 msgid "Enforce unique space" msgstr "重複を禁止する" -#: netbox/ipam/forms/bulk_edit.py:87 +#: ipam/forms/bulk_edit.py:88 msgid "Is private" msgstr "非公開です" -#: netbox/ipam/forms/bulk_edit.py:108 netbox/ipam/forms/bulk_edit.py:137 -#: netbox/ipam/forms/bulk_edit.py:162 netbox/ipam/forms/bulk_import.py:89 -#: netbox/ipam/forms/bulk_import.py:109 netbox/ipam/forms/bulk_import.py:129 -#: netbox/ipam/forms/filtersets.py:110 netbox/ipam/forms/filtersets.py:125 -#: netbox/ipam/forms/filtersets.py:148 netbox/ipam/forms/model_forms.py:96 -#: netbox/ipam/forms/model_forms.py:109 netbox/ipam/forms/model_forms.py:131 -#: netbox/ipam/forms/model_forms.py:149 netbox/ipam/models/asns.py:31 -#: netbox/ipam/models/asns.py:103 netbox/ipam/models/ip.py:71 -#: netbox/ipam/models/ip.py:90 netbox/ipam/tables/asn.py:20 -#: netbox/ipam/tables/asn.py:45 netbox/templates/ipam/aggregate.html:18 -#: netbox/templates/ipam/asn.html:27 netbox/templates/ipam/asnrange.html:19 -#: netbox/templates/ipam/rir.html:19 +#: ipam/forms/bulk_edit.py:109 ipam/forms/bulk_edit.py:138 +#: ipam/forms/bulk_edit.py:163 ipam/forms/bulk_import.py:89 +#: ipam/forms/bulk_import.py:109 ipam/forms/bulk_import.py:129 +#: ipam/forms/filtersets.py:110 ipam/forms/filtersets.py:125 +#: ipam/forms/filtersets.py:148 ipam/forms/model_forms.py:96 +#: ipam/forms/model_forms.py:109 ipam/forms/model_forms.py:131 +#: ipam/forms/model_forms.py:149 ipam/models/asns.py:31 +#: ipam/models/asns.py:103 ipam/models/ip.py:71 ipam/models/ip.py:90 +#: ipam/tables/asn.py:20 ipam/tables/asn.py:45 +#: templates/ipam/aggregate.html:18 templates/ipam/asn.html:27 +#: templates/ipam/asnrange.html:19 templates/ipam/rir.html:19 msgid "RIR" msgstr "RIR" -#: netbox/ipam/forms/bulk_edit.py:170 +#: ipam/forms/bulk_edit.py:171 msgid "Date added" msgstr "追加日" -#: netbox/ipam/forms/bulk_edit.py:228 netbox/ipam/forms/model_forms.py:586 -#: netbox/ipam/forms/model_forms.py:633 netbox/ipam/tables/ip.py:251 -#: netbox/templates/ipam/vlan_edit.html:37 -#: netbox/templates/ipam/vlangroup.html:27 +#: ipam/forms/bulk_edit.py:229 ipam/forms/model_forms.py:586 +#: ipam/forms/model_forms.py:633 ipam/tables/ip.py:251 +#: templates/ipam/vlan_edit.html:37 templates/ipam/vlangroup.html:27 msgid "VLAN Group" msgstr "VLAN グループ" -#: netbox/ipam/forms/bulk_edit.py:233 netbox/ipam/forms/bulk_import.py:185 -#: netbox/ipam/forms/filtersets.py:256 netbox/ipam/forms/model_forms.py:218 -#: netbox/ipam/models/vlans.py:234 netbox/ipam/tables/ip.py:255 -#: netbox/templates/ipam/prefix.html:60 netbox/templates/ipam/vlan.html:12 -#: netbox/templates/ipam/vlan/base.html:6 -#: netbox/templates/ipam/vlan_edit.html:10 -#: netbox/templates/wireless/wirelesslan.html:30 -#: netbox/vpn/forms/bulk_import.py:304 netbox/vpn/forms/filtersets.py:284 -#: netbox/vpn/forms/model_forms.py:433 netbox/vpn/forms/model_forms.py:452 -#: netbox/wireless/forms/bulk_edit.py:55 -#: netbox/wireless/forms/bulk_import.py:48 -#: netbox/wireless/forms/model_forms.py:48 netbox/wireless/models.py:102 +#: ipam/forms/bulk_edit.py:234 ipam/forms/bulk_import.py:185 +#: ipam/forms/filtersets.py:256 ipam/forms/model_forms.py:218 +#: ipam/models/vlans.py:234 ipam/tables/ip.py:255 +#: templates/ipam/prefix.html:60 templates/ipam/vlan.html:12 +#: templates/ipam/vlan/base.html:6 templates/ipam/vlan_edit.html:10 +#: templates/wireless/wirelesslan.html:30 vpn/forms/bulk_import.py:304 +#: vpn/forms/filtersets.py:284 vpn/forms/model_forms.py:433 +#: vpn/forms/model_forms.py:452 wireless/forms/bulk_edit.py:55 +#: wireless/forms/bulk_import.py:48 wireless/forms/model_forms.py:48 +#: wireless/models.py:102 msgid "VLAN" msgstr "VLAN" -#: netbox/ipam/forms/bulk_edit.py:244 +#: ipam/forms/bulk_edit.py:245 msgid "Prefix length" msgstr "プレフィックス長" -#: netbox/ipam/forms/bulk_edit.py:267 netbox/ipam/forms/filtersets.py:241 -#: netbox/templates/ipam/prefix.html:85 +#: ipam/forms/bulk_edit.py:268 ipam/forms/filtersets.py:241 +#: templates/ipam/prefix.html:85 msgid "Is a pool" msgstr "プールです" -#: netbox/ipam/forms/bulk_edit.py:272 netbox/ipam/forms/bulk_edit.py:317 -#: netbox/ipam/forms/filtersets.py:248 netbox/ipam/forms/filtersets.py:293 -#: netbox/ipam/models/ip.py:272 netbox/ipam/models/ip.py:539 +#: ipam/forms/bulk_edit.py:273 ipam/forms/bulk_edit.py:318 +#: ipam/forms/filtersets.py:248 ipam/forms/filtersets.py:293 +#: ipam/models/ip.py:272 ipam/models/ip.py:539 msgid "Treat as fully utilized" msgstr "すべて使用済として扱う" -#: netbox/ipam/forms/bulk_edit.py:286 netbox/ipam/forms/filtersets.py:171 +#: ipam/forms/bulk_edit.py:287 ipam/forms/filtersets.py:171 msgid "VLAN Assignment" msgstr "VLAN アサイメント" -#: netbox/ipam/forms/bulk_edit.py:365 netbox/ipam/models/ip.py:772 +#: ipam/forms/bulk_edit.py:366 ipam/models/ip.py:772 msgid "DNS name" msgstr "DNS ネーム" -#: netbox/ipam/forms/bulk_edit.py:386 netbox/ipam/forms/bulk_edit.py:579 -#: netbox/ipam/forms/bulk_import.py:394 netbox/ipam/forms/bulk_import.py:469 -#: netbox/ipam/forms/bulk_import.py:495 netbox/ipam/forms/filtersets.py:390 -#: netbox/ipam/forms/filtersets.py:530 netbox/templates/ipam/fhrpgroup.html:22 -#: netbox/templates/ipam/inc/panels/fhrp_groups.html:24 -#: netbox/templates/ipam/service.html:32 -#: netbox/templates/ipam/servicetemplate.html:19 +#: ipam/forms/bulk_edit.py:387 ipam/forms/bulk_edit.py:534 +#: ipam/forms/bulk_import.py:394 ipam/forms/bulk_import.py:469 +#: ipam/forms/bulk_import.py:495 ipam/forms/filtersets.py:390 +#: ipam/forms/filtersets.py:530 templates/ipam/fhrpgroup.html:22 +#: templates/ipam/inc/panels/fhrp_groups.html:24 +#: templates/ipam/service.html:32 templates/ipam/servicetemplate.html:19 msgid "Protocol" msgstr "プロトコル" -#: netbox/ipam/forms/bulk_edit.py:393 netbox/ipam/forms/filtersets.py:397 -#: netbox/ipam/tables/fhrp.py:22 netbox/templates/ipam/fhrpgroup.html:26 +#: ipam/forms/bulk_edit.py:394 ipam/forms/filtersets.py:397 +#: ipam/tables/fhrp.py:22 templates/ipam/fhrpgroup.html:26 msgid "Group ID" msgstr "グループ ID" -#: netbox/ipam/forms/bulk_edit.py:398 netbox/ipam/forms/filtersets.py:402 -#: netbox/wireless/forms/bulk_edit.py:68 -#: netbox/wireless/forms/bulk_edit.py:115 -#: netbox/wireless/forms/bulk_import.py:62 -#: netbox/wireless/forms/bulk_import.py:65 -#: netbox/wireless/forms/bulk_import.py:104 -#: netbox/wireless/forms/bulk_import.py:107 -#: netbox/wireless/forms/filtersets.py:54 -#: netbox/wireless/forms/filtersets.py:88 +#: ipam/forms/bulk_edit.py:399 ipam/forms/filtersets.py:402 +#: wireless/forms/bulk_edit.py:68 wireless/forms/bulk_edit.py:115 +#: wireless/forms/bulk_import.py:62 wireless/forms/bulk_import.py:65 +#: wireless/forms/bulk_import.py:104 wireless/forms/bulk_import.py:107 +#: wireless/forms/filtersets.py:54 wireless/forms/filtersets.py:88 msgid "Authentication type" msgstr "認証タイプ" -#: netbox/ipam/forms/bulk_edit.py:403 netbox/ipam/forms/filtersets.py:406 +#: ipam/forms/bulk_edit.py:404 ipam/forms/filtersets.py:406 msgid "Authentication key" msgstr "認証キー" -#: netbox/ipam/forms/bulk_edit.py:420 netbox/ipam/forms/filtersets.py:383 -#: netbox/ipam/forms/model_forms.py:474 netbox/netbox/navigation/menu.py:386 -#: netbox/templates/ipam/fhrpgroup.html:49 -#: netbox/templates/wireless/inc/authentication_attrs.html:5 -#: netbox/wireless/forms/bulk_edit.py:91 -#: netbox/wireless/forms/bulk_edit.py:149 -#: netbox/wireless/forms/filtersets.py:36 -#: netbox/wireless/forms/filtersets.py:76 -#: netbox/wireless/forms/model_forms.py:55 -#: netbox/wireless/forms/model_forms.py:171 +#: ipam/forms/bulk_edit.py:421 ipam/forms/filtersets.py:383 +#: ipam/forms/model_forms.py:474 netbox/navigation/menu.py:386 +#: templates/ipam/fhrpgroup.html:49 +#: templates/wireless/inc/authentication_attrs.html:5 +#: wireless/forms/bulk_edit.py:91 wireless/forms/bulk_edit.py:149 +#: wireless/forms/filtersets.py:36 wireless/forms/filtersets.py:76 +#: wireless/forms/model_forms.py:55 wireless/forms/model_forms.py:171 msgid "Authentication" msgstr "認証" -#: netbox/ipam/forms/bulk_edit.py:432 netbox/ipam/forms/model_forms.py:575 +#: ipam/forms/bulk_edit.py:436 ipam/forms/model_forms.py:575 msgid "Scope type" msgstr "スコープタイプ" -#: netbox/ipam/forms/bulk_edit.py:490 netbox/ipam/models/vlans.py:60 -msgid "VLAN ID ranges" -msgstr "VLAN ID の範囲" - -#: netbox/ipam/forms/bulk_edit.py:498 netbox/ipam/forms/model_forms.py:578 -#: netbox/ipam/forms/model_forms.py:588 netbox/ipam/tables/vlans.py:71 -#: netbox/templates/ipam/vlangroup.html:38 +#: ipam/forms/bulk_edit.py:439 ipam/forms/bulk_edit.py:453 +#: ipam/forms/model_forms.py:578 ipam/forms/model_forms.py:588 +#: ipam/tables/vlans.py:71 templates/ipam/vlangroup.html:38 msgid "Scope" msgstr "スコープ" -#: netbox/ipam/forms/bulk_edit.py:570 +#: ipam/forms/bulk_edit.py:446 ipam/models/vlans.py:60 +msgid "VLAN ID ranges" +msgstr "VLAN ID の範囲" + +#: ipam/forms/bulk_edit.py:525 msgid "Site & Group" msgstr "サイトとグループ" -#: netbox/ipam/forms/bulk_edit.py:584 netbox/ipam/forms/model_forms.py:659 -#: netbox/ipam/forms/model_forms.py:691 netbox/ipam/tables/services.py:19 -#: netbox/ipam/tables/services.py:49 netbox/templates/ipam/service.html:36 -#: netbox/templates/ipam/servicetemplate.html:23 +#: ipam/forms/bulk_edit.py:539 ipam/forms/model_forms.py:659 +#: ipam/forms/model_forms.py:691 ipam/tables/services.py:19 +#: ipam/tables/services.py:49 templates/ipam/service.html:36 +#: templates/ipam/servicetemplate.html:23 msgid "Ports" msgstr "ポート" -#: netbox/ipam/forms/bulk_import.py:48 +#: ipam/forms/bulk_import.py:48 msgid "Import route targets" msgstr "インポートルートターゲット" -#: netbox/ipam/forms/bulk_import.py:54 +#: ipam/forms/bulk_import.py:54 msgid "Export route targets" msgstr "エクスポートルートターゲット" -#: netbox/ipam/forms/bulk_import.py:92 netbox/ipam/forms/bulk_import.py:112 -#: netbox/ipam/forms/bulk_import.py:132 +#: ipam/forms/bulk_import.py:92 ipam/forms/bulk_import.py:112 +#: ipam/forms/bulk_import.py:132 msgid "Assigned RIR" msgstr "割当 RIR" -#: netbox/ipam/forms/bulk_import.py:182 +#: ipam/forms/bulk_import.py:182 msgid "VLAN's group (if any)" msgstr "VLAN のグループ (存在する場合)" -#: netbox/ipam/forms/bulk_import.py:308 +#: ipam/forms/bulk_import.py:308 msgid "Parent device of assigned interface (if any)" msgstr "割当インタフェースの親デバイス (存在する場合)" -#: netbox/ipam/forms/bulk_import.py:311 netbox/ipam/forms/bulk_import.py:488 -#: netbox/ipam/forms/model_forms.py:685 -#: netbox/virtualization/filtersets.py:288 -#: netbox/virtualization/filtersets.py:327 -#: netbox/virtualization/forms/bulk_edit.py:200 -#: netbox/virtualization/forms/bulk_edit.py:326 -#: netbox/virtualization/forms/bulk_import.py:146 -#: netbox/virtualization/forms/bulk_import.py:207 -#: netbox/virtualization/forms/filtersets.py:212 -#: netbox/virtualization/forms/filtersets.py:248 -#: netbox/virtualization/forms/model_forms.py:288 -#: netbox/vpn/forms/bulk_import.py:93 netbox/vpn/forms/bulk_import.py:290 +#: ipam/forms/bulk_import.py:311 ipam/forms/bulk_import.py:488 +#: ipam/forms/model_forms.py:685 virtualization/filtersets.py:288 +#: virtualization/filtersets.py:327 virtualization/forms/bulk_edit.py:200 +#: virtualization/forms/bulk_edit.py:326 +#: virtualization/forms/bulk_import.py:146 +#: virtualization/forms/bulk_import.py:207 +#: virtualization/forms/filtersets.py:212 +#: virtualization/forms/filtersets.py:248 +#: virtualization/forms/model_forms.py:288 vpn/forms/bulk_import.py:93 +#: vpn/forms/bulk_import.py:290 msgid "Virtual machine" msgstr "仮想マシン" -#: netbox/ipam/forms/bulk_import.py:315 +#: ipam/forms/bulk_import.py:315 msgid "Parent VM of assigned interface (if any)" msgstr "割当インタフェースの親VM (存在する場合)" -#: netbox/ipam/forms/bulk_import.py:325 +#: ipam/forms/bulk_import.py:325 msgid "Is primary" msgstr "プライマリか" -#: netbox/ipam/forms/bulk_import.py:326 +#: ipam/forms/bulk_import.py:326 msgid "Make this the primary IP for the assigned device" msgstr "割当デバイスのプライマリ IP アドレスにする" -#: netbox/ipam/forms/bulk_import.py:365 +#: ipam/forms/bulk_import.py:365 msgid "No device or virtual machine specified; cannot set as primary IP" msgstr "デバイスまたは仮想マシンが指定されていないため、プライマリ IP として設定できません" -#: netbox/ipam/forms/bulk_import.py:369 +#: ipam/forms/bulk_import.py:369 msgid "No interface specified; cannot set as primary IP" msgstr "インタフェースが指定されていないため、プライマリ IP として設定できません" -#: netbox/ipam/forms/bulk_import.py:398 +#: ipam/forms/bulk_import.py:398 msgid "Auth type" msgstr "認証タイプ" -#: netbox/ipam/forms/bulk_import.py:413 +#: ipam/forms/bulk_import.py:413 msgid "Scope type (app & model)" msgstr "スコープの種類 (アプリとモデル)" -#: netbox/ipam/forms/bulk_import.py:440 +#: ipam/forms/bulk_import.py:440 msgid "Assigned VLAN group" msgstr "割当 VLAN グループ" -#: netbox/ipam/forms/bulk_import.py:471 netbox/ipam/forms/bulk_import.py:497 +#: ipam/forms/bulk_import.py:471 ipam/forms/bulk_import.py:497 msgid "IP protocol" msgstr "IP プロトコル" -#: netbox/ipam/forms/bulk_import.py:485 +#: ipam/forms/bulk_import.py:485 msgid "Required if not assigned to a VM" msgstr "VM に割り当てられていない場合は必須" -#: netbox/ipam/forms/bulk_import.py:492 +#: ipam/forms/bulk_import.py:492 msgid "Required if not assigned to a device" msgstr "デバイスに割り当てられていない場合は必須" -#: netbox/ipam/forms/bulk_import.py:517 +#: ipam/forms/bulk_import.py:517 #, python-brace-format msgid "{ip} is not assigned to this device/VM." msgstr "{ip} はこのデバイス/VM には割り当てられていません。" -#: netbox/ipam/forms/filtersets.py:47 netbox/ipam/forms/model_forms.py:63 -#: netbox/netbox/navigation/menu.py:189 netbox/vpn/forms/model_forms.py:410 +#: ipam/forms/filtersets.py:47 ipam/forms/model_forms.py:63 +#: netbox/navigation/menu.py:189 vpn/forms/model_forms.py:410 msgid "Route Targets" msgstr "ルートターゲット" -#: netbox/ipam/forms/filtersets.py:53 netbox/ipam/forms/model_forms.py:50 -#: netbox/vpn/forms/filtersets.py:224 netbox/vpn/forms/model_forms.py:397 +#: ipam/forms/filtersets.py:53 ipam/forms/model_forms.py:50 +#: vpn/forms/filtersets.py:224 vpn/forms/model_forms.py:397 msgid "Import targets" msgstr "インポートターゲット" -#: netbox/ipam/forms/filtersets.py:58 netbox/ipam/forms/model_forms.py:55 -#: netbox/vpn/forms/filtersets.py:229 netbox/vpn/forms/model_forms.py:402 +#: ipam/forms/filtersets.py:58 ipam/forms/model_forms.py:55 +#: vpn/forms/filtersets.py:229 vpn/forms/model_forms.py:402 msgid "Export targets" msgstr "エクスポートターゲット" -#: netbox/ipam/forms/filtersets.py:73 +#: ipam/forms/filtersets.py:73 msgid "Imported by VRF" msgstr "VRF によるインポート" -#: netbox/ipam/forms/filtersets.py:78 +#: ipam/forms/filtersets.py:78 msgid "Exported by VRF" msgstr "VRF によるエクスポート" -#: netbox/ipam/forms/filtersets.py:87 netbox/ipam/tables/ip.py:89 -#: netbox/templates/ipam/rir.html:30 +#: ipam/forms/filtersets.py:87 ipam/tables/ip.py:89 templates/ipam/rir.html:30 msgid "Private" msgstr "プライベート" -#: netbox/ipam/forms/filtersets.py:105 netbox/ipam/forms/filtersets.py:191 -#: netbox/ipam/forms/filtersets.py:272 netbox/ipam/forms/filtersets.py:326 +#: ipam/forms/filtersets.py:105 ipam/forms/filtersets.py:191 +#: ipam/forms/filtersets.py:272 ipam/forms/filtersets.py:326 msgid "Address family" msgstr "アドレスファミリー" -#: netbox/ipam/forms/filtersets.py:119 netbox/templates/ipam/asnrange.html:25 +#: ipam/forms/filtersets.py:119 templates/ipam/asnrange.html:25 msgid "Range" msgstr "レンジ" -#: netbox/ipam/forms/filtersets.py:128 +#: ipam/forms/filtersets.py:128 msgid "Start" msgstr "開始" -#: netbox/ipam/forms/filtersets.py:132 +#: ipam/forms/filtersets.py:132 msgid "End" msgstr "終了" -#: netbox/ipam/forms/filtersets.py:186 +#: ipam/forms/filtersets.py:186 msgid "Search within" msgstr "範囲内を検索" -#: netbox/ipam/forms/filtersets.py:207 netbox/ipam/forms/filtersets.py:342 +#: ipam/forms/filtersets.py:207 ipam/forms/filtersets.py:342 msgid "Present in VRF" msgstr "VRF 内に存在する" -#: netbox/ipam/forms/filtersets.py:311 +#: ipam/forms/filtersets.py:311 msgid "Device/VM" msgstr "デバイス/VM" -#: netbox/ipam/forms/filtersets.py:321 +#: ipam/forms/filtersets.py:321 msgid "Parent Prefix" msgstr "親プレフィックス" -#: netbox/ipam/forms/filtersets.py:347 +#: ipam/forms/filtersets.py:347 msgid "Assigned Device" msgstr "割当デバイス" -#: netbox/ipam/forms/filtersets.py:352 +#: ipam/forms/filtersets.py:352 msgid "Assigned VM" msgstr "割当VM" -#: netbox/ipam/forms/filtersets.py:366 +#: ipam/forms/filtersets.py:366 msgid "Assigned to an interface" msgstr "インタフェースに割当済" -#: netbox/ipam/forms/filtersets.py:373 netbox/templates/ipam/ipaddress.html:51 +#: ipam/forms/filtersets.py:373 templates/ipam/ipaddress.html:51 msgid "DNS Name" msgstr "DNS名" -#: netbox/ipam/forms/filtersets.py:416 netbox/ipam/models/vlans.py:235 -#: netbox/ipam/tables/ip.py:176 netbox/ipam/tables/vlans.py:82 -#: netbox/ipam/views.py:971 netbox/netbox/navigation/menu.py:193 -#: netbox/netbox/navigation/menu.py:195 +#: ipam/forms/filtersets.py:416 ipam/models/vlans.py:235 ipam/tables/ip.py:176 +#: ipam/tables/vlans.py:82 ipam/views.py:971 netbox/navigation/menu.py:193 +#: netbox/navigation/menu.py:195 msgid "VLANs" msgstr "VLAN" -#: netbox/ipam/forms/filtersets.py:457 +#: ipam/forms/filtersets.py:457 msgid "Contains VLAN ID" msgstr "VLAN ID が含まれています" -#: netbox/ipam/forms/filtersets.py:513 netbox/ipam/models/vlans.py:176 -#: netbox/templates/ipam/vlan.html:31 +#: ipam/forms/filtersets.py:513 ipam/models/vlans.py:176 +#: templates/ipam/vlan.html:31 msgid "VLAN ID" msgstr "VLAN ID" -#: netbox/ipam/forms/filtersets.py:556 netbox/ipam/forms/model_forms.py:320 -#: netbox/ipam/forms/model_forms.py:713 netbox/ipam/forms/model_forms.py:739 -#: netbox/ipam/tables/vlans.py:195 -#: netbox/templates/virtualization/virtualdisk.html:21 -#: netbox/templates/virtualization/virtualmachine.html:12 -#: netbox/templates/virtualization/vminterface.html:21 -#: netbox/templates/vpn/tunneltermination.html:25 -#: netbox/virtualization/forms/filtersets.py:197 -#: netbox/virtualization/forms/filtersets.py:242 -#: netbox/virtualization/forms/model_forms.py:220 -#: netbox/virtualization/tables/virtualmachines.py:135 -#: netbox/virtualization/tables/virtualmachines.py:190 -#: netbox/vpn/choices.py:45 netbox/vpn/forms/filtersets.py:293 -#: netbox/vpn/forms/model_forms.py:160 netbox/vpn/forms/model_forms.py:171 -#: netbox/vpn/forms/model_forms.py:273 netbox/vpn/forms/model_forms.py:454 +#: ipam/forms/filtersets.py:556 ipam/forms/model_forms.py:320 +#: ipam/forms/model_forms.py:713 ipam/forms/model_forms.py:739 +#: ipam/tables/vlans.py:195 templates/virtualization/virtualdisk.html:21 +#: templates/virtualization/virtualmachine.html:12 +#: templates/virtualization/vminterface.html:21 +#: templates/vpn/tunneltermination.html:25 +#: virtualization/forms/filtersets.py:197 +#: virtualization/forms/filtersets.py:242 +#: virtualization/forms/model_forms.py:220 +#: virtualization/tables/virtualmachines.py:135 +#: virtualization/tables/virtualmachines.py:190 vpn/choices.py:45 +#: vpn/forms/filtersets.py:293 vpn/forms/model_forms.py:160 +#: vpn/forms/model_forms.py:171 vpn/forms/model_forms.py:273 +#: vpn/forms/model_forms.py:454 msgid "Virtual Machine" msgstr "仮想マシン" -#: netbox/ipam/forms/model_forms.py:80 -#: netbox/templates/ipam/routetarget.html:10 +#: ipam/forms/model_forms.py:80 templates/ipam/routetarget.html:10 msgid "Route Target" msgstr "ルートターゲット" -#: netbox/ipam/forms/model_forms.py:114 netbox/ipam/tables/ip.py:117 -#: netbox/templates/ipam/aggregate.html:11 -#: netbox/templates/ipam/prefix.html:38 +#: ipam/forms/model_forms.py:114 ipam/tables/ip.py:117 +#: templates/ipam/aggregate.html:11 templates/ipam/prefix.html:38 msgid "Aggregate" msgstr "集約" -#: netbox/ipam/forms/model_forms.py:135 netbox/templates/ipam/asnrange.html:12 +#: ipam/forms/model_forms.py:135 templates/ipam/asnrange.html:12 msgid "ASN Range" msgstr "ASN レンジ" -#: netbox/ipam/forms/model_forms.py:231 +#: ipam/forms/model_forms.py:231 msgid "Site/VLAN Assignment" msgstr "サイト/VLAN 割り当て" -#: netbox/ipam/forms/model_forms.py:259 netbox/templates/ipam/iprange.html:10 +#: ipam/forms/model_forms.py:259 templates/ipam/iprange.html:10 msgid "IP Range" msgstr "IP アドレス範囲" -#: netbox/ipam/forms/model_forms.py:295 netbox/ipam/forms/model_forms.py:321 -#: netbox/ipam/forms/model_forms.py:473 -#: netbox/templates/ipam/fhrpgroup.html:19 +#: ipam/forms/model_forms.py:295 ipam/forms/model_forms.py:321 +#: ipam/forms/model_forms.py:473 templates/ipam/fhrpgroup.html:19 msgid "FHRP Group" msgstr "FHRP グループ" -#: netbox/ipam/forms/model_forms.py:310 +#: ipam/forms/model_forms.py:310 msgid "Make this the primary IP for the device/VM" msgstr "デバイス/VMのプライマリIPにする" -#: netbox/ipam/forms/model_forms.py:325 +#: ipam/forms/model_forms.py:325 msgid "NAT IP (Inside)" msgstr "NAT IP (インサイド)" -#: netbox/ipam/forms/model_forms.py:384 +#: ipam/forms/model_forms.py:384 msgid "An IP address can only be assigned to a single object." msgstr "IP アドレスは 1 つのオブジェクトにのみ割り当てることができます。" -#: netbox/ipam/forms/model_forms.py:390 netbox/ipam/models/ip.py:897 +#: ipam/forms/model_forms.py:390 ipam/models/ip.py:897 msgid "" "Cannot reassign IP address while it is designated as the primary IP for the " "parent object" msgstr "親オブジェクトのプライマリ IP として指定されている間は IP アドレスを再割り当てできません" -#: netbox/ipam/forms/model_forms.py:400 +#: ipam/forms/model_forms.py:400 msgid "" "Only IP addresses assigned to an interface can be designated as primary IPs." msgstr "プライマリ IP として指定できるのは、インタフェースに割り当てられた IP アドレスのみです。" -#: netbox/ipam/forms/model_forms.py:475 +#: ipam/forms/model_forms.py:475 msgid "Virtual IP Address" msgstr "仮想 IP アドレス" -#: netbox/ipam/forms/model_forms.py:560 +#: ipam/forms/model_forms.py:560 msgid "Assignment already exists" msgstr "既に割り当てられています" -#: netbox/ipam/forms/model_forms.py:569 -#: netbox/templates/ipam/vlangroup.html:42 +#: ipam/forms/model_forms.py:569 templates/ipam/vlangroup.html:42 msgid "VLAN IDs" msgstr "VLAN ID" -#: netbox/ipam/forms/model_forms.py:587 +#: ipam/forms/model_forms.py:587 msgid "Child VLANs" msgstr "子 VLAN" -#: netbox/ipam/forms/model_forms.py:664 netbox/ipam/forms/model_forms.py:696 +#: ipam/forms/model_forms.py:664 ipam/forms/model_forms.py:696 msgid "" "Comma-separated list of one or more port numbers. A range may be specified " "using a hyphen." msgstr "カンマ区切りのポート番号のリスト。範囲はハイフンを使用して指定できます。" -#: netbox/ipam/forms/model_forms.py:669 -#: netbox/templates/ipam/servicetemplate.html:12 +#: ipam/forms/model_forms.py:669 templates/ipam/servicetemplate.html:12 msgid "Service Template" msgstr "サービステンプレート" -#: netbox/ipam/forms/model_forms.py:716 +#: ipam/forms/model_forms.py:716 msgid "Port(s)" msgstr "ポート (s)" -#: netbox/ipam/forms/model_forms.py:717 netbox/ipam/forms/model_forms.py:745 -#: netbox/templates/ipam/service.html:21 +#: ipam/forms/model_forms.py:717 ipam/forms/model_forms.py:745 +#: templates/ipam/service.html:21 msgid "Service" msgstr "サービス" -#: netbox/ipam/forms/model_forms.py:730 +#: ipam/forms/model_forms.py:730 msgid "Service template" msgstr "サービステンプレート" -#: netbox/ipam/forms/model_forms.py:742 +#: ipam/forms/model_forms.py:742 msgid "From Template" msgstr "テンプレートから" -#: netbox/ipam/forms/model_forms.py:743 +#: ipam/forms/model_forms.py:743 msgid "Custom" msgstr "カスタム" -#: netbox/ipam/forms/model_forms.py:773 +#: ipam/forms/model_forms.py:773 msgid "" "Must specify name, protocol, and port(s) if not using a service template." msgstr "サービステンプレートを使用しない場合は、名前、プロトコル、およびポートを指定する必要があります。" -#: netbox/ipam/models/asns.py:34 +#: ipam/models/asns.py:34 msgid "start" msgstr "開始" -#: netbox/ipam/models/asns.py:51 +#: ipam/models/asns.py:51 msgid "ASN range" msgstr "ASN レンジ" -#: netbox/ipam/models/asns.py:52 +#: ipam/models/asns.py:52 msgid "ASN ranges" msgstr "ASN レンジ" -#: netbox/ipam/models/asns.py:72 +#: ipam/models/asns.py:72 #, python-brace-format msgid "Starting ASN ({start}) must be lower than ending ASN ({end})." msgstr "開始ASN ({start}) は終了ASN ({end}) より小さくなければなりません)。" -#: netbox/ipam/models/asns.py:104 +#: ipam/models/asns.py:104 msgid "Regional Internet Registry responsible for this AS number space" msgstr "この AS 番号空間を担当する地域インターネットレジストリ" -#: netbox/ipam/models/asns.py:109 +#: ipam/models/asns.py:109 msgid "16- or 32-bit autonomous system number" msgstr "16 または 32 ビットのAS番号" -#: netbox/ipam/models/fhrp.py:22 +#: ipam/models/fhrp.py:22 msgid "group ID" msgstr "グループ ID" -#: netbox/ipam/models/fhrp.py:30 netbox/ipam/models/services.py:22 +#: ipam/models/fhrp.py:30 ipam/models/services.py:22 msgid "protocol" msgstr "プロトコル" -#: netbox/ipam/models/fhrp.py:38 netbox/wireless/models.py:28 +#: ipam/models/fhrp.py:38 wireless/models.py:28 msgid "authentication type" msgstr "認証タイプ" -#: netbox/ipam/models/fhrp.py:43 +#: ipam/models/fhrp.py:43 msgid "authentication key" msgstr "認証キー" -#: netbox/ipam/models/fhrp.py:56 +#: ipam/models/fhrp.py:56 msgid "FHRP group" msgstr "FHRP グループ" -#: netbox/ipam/models/fhrp.py:57 +#: ipam/models/fhrp.py:57 msgid "FHRP groups" msgstr "FHRP グループ" -#: netbox/ipam/models/fhrp.py:113 +#: ipam/models/fhrp.py:113 msgid "FHRP group assignment" msgstr "FHRP グループ割当" -#: netbox/ipam/models/fhrp.py:114 +#: ipam/models/fhrp.py:114 msgid "FHRP group assignments" msgstr "FHRP グループ割当" -#: netbox/ipam/models/ip.py:65 +#: ipam/models/ip.py:65 msgid "private" msgstr "プライベート" -#: netbox/ipam/models/ip.py:66 +#: ipam/models/ip.py:66 msgid "IP space managed by this RIR is considered private" msgstr "この RIR が管理する IP スペースはプライベートと見なされます" -#: netbox/ipam/models/ip.py:72 netbox/netbox/navigation/menu.py:182 +#: ipam/models/ip.py:72 netbox/navigation/menu.py:182 msgid "RIRs" msgstr "RIR" -#: netbox/ipam/models/ip.py:84 +#: ipam/models/ip.py:84 msgid "IPv4 or IPv6 network" msgstr "IPv4 または IPv6 ネットワーク" -#: netbox/ipam/models/ip.py:91 +#: ipam/models/ip.py:91 msgid "Regional Internet Registry responsible for this IP space" msgstr "この IP スペースを管理する地域インターネットレジストリ" -#: netbox/ipam/models/ip.py:101 +#: ipam/models/ip.py:101 msgid "date added" msgstr "追加日" -#: netbox/ipam/models/ip.py:115 +#: ipam/models/ip.py:115 msgid "aggregate" msgstr "集約" -#: netbox/ipam/models/ip.py:116 +#: ipam/models/ip.py:116 msgid "aggregates" msgstr "集約" -#: netbox/ipam/models/ip.py:132 +#: ipam/models/ip.py:132 msgid "Cannot create aggregate with /0 mask." msgstr "/0 マスクを使用して集約を作成することはできません。" -#: netbox/ipam/models/ip.py:144 +#: ipam/models/ip.py:144 #, python-brace-format msgid "" "Aggregates cannot overlap. {prefix} is already covered by an existing " "aggregate ({aggregate})." msgstr "集約は重複できません。{prefix} は既存の集約({aggregate}) に含まれます。" -#: netbox/ipam/models/ip.py:158 +#: ipam/models/ip.py:158 #, python-brace-format msgid "" "Prefixes cannot overlap aggregates. {prefix} covers an existing aggregate " "({aggregate})." msgstr "プレフィックスは集約と重複できません。 {prefix} は既存の集約 ({aggregate}) に含まれます。" -#: netbox/ipam/models/ip.py:200 netbox/ipam/models/ip.py:737 -#: netbox/vpn/models/tunnels.py:114 +#: ipam/models/ip.py:200 ipam/models/ip.py:737 vpn/models/tunnels.py:114 msgid "role" msgstr "ロール" -#: netbox/ipam/models/ip.py:201 +#: ipam/models/ip.py:201 msgid "roles" msgstr "ロール" -#: netbox/ipam/models/ip.py:217 netbox/ipam/models/ip.py:293 +#: ipam/models/ip.py:217 ipam/models/ip.py:293 msgid "prefix" msgstr "プレフィックス" -#: netbox/ipam/models/ip.py:218 +#: ipam/models/ip.py:218 msgid "IPv4 or IPv6 network with mask" msgstr "マスク付きの IPv4 または IPv6 ネットワーク" -#: netbox/ipam/models/ip.py:254 +#: ipam/models/ip.py:254 msgid "Operational status of this prefix" msgstr "このプレフィックスの動作ステータス" -#: netbox/ipam/models/ip.py:262 +#: ipam/models/ip.py:262 msgid "The primary function of this prefix" msgstr "このプレフィックスの主な機能" -#: netbox/ipam/models/ip.py:265 +#: ipam/models/ip.py:265 msgid "is a pool" msgstr "プールか" -#: netbox/ipam/models/ip.py:267 +#: ipam/models/ip.py:267 msgid "All IP addresses within this prefix are considered usable" msgstr "このプレフィックス内のすべての IP アドレスが使用可能と見なされます。" -#: netbox/ipam/models/ip.py:270 netbox/ipam/models/ip.py:537 +#: ipam/models/ip.py:270 ipam/models/ip.py:537 msgid "mark utilized" msgstr "使用済み" -#: netbox/ipam/models/ip.py:294 +#: ipam/models/ip.py:294 msgid "prefixes" msgstr "プレフィックス" -#: netbox/ipam/models/ip.py:317 +#: ipam/models/ip.py:317 msgid "Cannot create prefix with /0 mask." msgstr "/0 マスクではプレフィックスを作成できません。" -#: netbox/ipam/models/ip.py:324 netbox/ipam/models/ip.py:874 +#: ipam/models/ip.py:324 ipam/models/ip.py:874 #, python-brace-format msgid "VRF {vrf}" msgstr "VRF {vrf}" -#: netbox/ipam/models/ip.py:324 netbox/ipam/models/ip.py:874 +#: ipam/models/ip.py:324 ipam/models/ip.py:874 msgid "global table" msgstr "グローバルテーブル" -#: netbox/ipam/models/ip.py:326 +#: ipam/models/ip.py:326 #, python-brace-format msgid "Duplicate prefix found in {table}: {prefix}" msgstr "重複したプレフィックスが見つかりました {table}: {prefix}" -#: netbox/ipam/models/ip.py:495 +#: ipam/models/ip.py:495 msgid "start address" msgstr "開始アドレス" -#: netbox/ipam/models/ip.py:496 netbox/ipam/models/ip.py:500 -#: netbox/ipam/models/ip.py:712 +#: ipam/models/ip.py:496 ipam/models/ip.py:500 ipam/models/ip.py:712 msgid "IPv4 or IPv6 address (with mask)" msgstr "IPv4 または IPv6 アドレス (マスク付き)" -#: netbox/ipam/models/ip.py:499 +#: ipam/models/ip.py:499 msgid "end address" msgstr "終了アドレス" -#: netbox/ipam/models/ip.py:526 +#: ipam/models/ip.py:526 msgid "Operational status of this range" msgstr "この範囲の動作状況" -#: netbox/ipam/models/ip.py:534 +#: ipam/models/ip.py:534 msgid "The primary function of this range" msgstr "この範囲の主な機能" -#: netbox/ipam/models/ip.py:548 +#: ipam/models/ip.py:548 msgid "IP range" msgstr "IP アドレス範囲" -#: netbox/ipam/models/ip.py:549 +#: ipam/models/ip.py:549 msgid "IP ranges" msgstr "IP アドレス範囲" -#: netbox/ipam/models/ip.py:565 +#: ipam/models/ip.py:565 msgid "Starting and ending IP address versions must match" msgstr "開始・終了 IP アドレスのバージョンが一致している必要があります" -#: netbox/ipam/models/ip.py:571 +#: ipam/models/ip.py:571 msgid "Starting and ending IP address masks must match" msgstr "開始・終了 IP アドレスマスクは一致する必要があります" -#: netbox/ipam/models/ip.py:578 +#: ipam/models/ip.py:578 #, python-brace-format msgid "" "Ending address must be greater than the starting address ({start_address})" msgstr "終了アドレスは開始アドレスより大きくなければなりません ({start_address})" -#: netbox/ipam/models/ip.py:590 +#: ipam/models/ip.py:590 #, python-brace-format msgid "Defined addresses overlap with range {overlapping_range} in VRF {vrf}" msgstr "VRF{vrf}において、定義されたアドレスが範囲{overlapping_range}と重複しています " -#: netbox/ipam/models/ip.py:599 +#: ipam/models/ip.py:599 #, python-brace-format msgid "Defined range exceeds maximum supported size ({max_size})" msgstr "定義された範囲がサポートされている最大サイズを超えています ({max_size})" -#: netbox/ipam/models/ip.py:711 netbox/tenancy/models/contacts.py:82 +#: ipam/models/ip.py:711 tenancy/models/contacts.py:82 msgid "address" msgstr "アドレス" -#: netbox/ipam/models/ip.py:734 +#: ipam/models/ip.py:734 msgid "The operational status of this IP" msgstr "この IP の動作ステータス" -#: netbox/ipam/models/ip.py:741 +#: ipam/models/ip.py:741 msgid "The functional role of this IP" msgstr "この IP の役割" -#: netbox/ipam/models/ip.py:765 netbox/templates/ipam/ipaddress.html:72 +#: ipam/models/ip.py:765 templates/ipam/ipaddress.html:72 msgid "NAT (inside)" msgstr "NAT (インサイド)" -#: netbox/ipam/models/ip.py:766 +#: ipam/models/ip.py:766 msgid "The IP for which this address is the \"outside\" IP" msgstr "このアドレスが「アウトサイド」IPであるIP" -#: netbox/ipam/models/ip.py:773 +#: ipam/models/ip.py:773 msgid "Hostname or FQDN (not case-sensitive)" msgstr "ホスト名または FQDN (大文字と小文字は区別されません)" -#: netbox/ipam/models/ip.py:789 netbox/ipam/models/services.py:94 +#: ipam/models/ip.py:789 ipam/models/services.py:94 msgid "IP addresses" msgstr "IP アドレス" -#: netbox/ipam/models/ip.py:845 +#: ipam/models/ip.py:845 msgid "Cannot create IP address with /0 mask." msgstr "/0 マスクで IP アドレスを作成することはできません。" -#: netbox/ipam/models/ip.py:851 +#: ipam/models/ip.py:851 #, python-brace-format msgid "{ip} is a network ID, which may not be assigned to an interface." msgstr "{ip} はネットワーク ID のため、インタフェースに割り当てることはできません。" -#: netbox/ipam/models/ip.py:862 +#: ipam/models/ip.py:862 #, python-brace-format msgid "" "{ip} is a broadcast address, which may not be assigned to an interface." msgstr "{ip} はブロードキャストアドレスのため、インタフェースに割り当てることはできません。" -#: netbox/ipam/models/ip.py:876 +#: ipam/models/ip.py:876 #, python-brace-format msgid "Duplicate IP address found in {table}: {ipaddress}" msgstr "重複した IP アドレスが見つかりました {table}: {ipaddress}" -#: netbox/ipam/models/ip.py:903 +#: ipam/models/ip.py:903 msgid "Only IPv6 addresses can be assigned SLAAC status" msgstr "SLAAC ステータスを割り当てることができるのは IPv6 アドレスのみです" -#: netbox/ipam/models/services.py:33 +#: ipam/models/services.py:33 msgid "port numbers" msgstr "ポート番号" -#: netbox/ipam/models/services.py:59 +#: ipam/models/services.py:59 msgid "service template" msgstr "サービステンプレート" -#: netbox/ipam/models/services.py:60 +#: ipam/models/services.py:60 msgid "service templates" msgstr "サービステンプレート" -#: netbox/ipam/models/services.py:95 +#: ipam/models/services.py:95 msgid "The specific IP addresses (if any) to which this service is bound" msgstr "このサービスがバインドされている IP アドレス (存在する場合)" -#: netbox/ipam/models/services.py:102 +#: ipam/models/services.py:102 msgid "service" msgstr "サービス" -#: netbox/ipam/models/services.py:103 +#: ipam/models/services.py:103 msgid "services" msgstr "サービス" -#: netbox/ipam/models/services.py:117 +#: ipam/models/services.py:117 msgid "" "A service cannot be associated with both a device and a virtual machine." msgstr "サービスをデバイスと仮想マシンの両方に関連付けることはできません。" -#: netbox/ipam/models/services.py:119 +#: ipam/models/services.py:119 msgid "" "A service must be associated with either a device or a virtual machine." msgstr "サービスは、デバイスまたは仮想マシンのいずれかに関連付ける必要があります。" -#: netbox/ipam/models/vlans.py:85 +#: ipam/models/vlans.py:85 msgid "VLAN groups" msgstr "VLAN グループ" -#: netbox/ipam/models/vlans.py:95 +#: ipam/models/vlans.py:95 msgid "Cannot set scope_type without scope_id." msgstr "scope_id なしでscope_typeを設定することはできません。" -#: netbox/ipam/models/vlans.py:97 +#: ipam/models/vlans.py:97 msgid "Cannot set scope_id without scope_type." msgstr "scope_typeなしでscope_idを設定することはできません。" -#: netbox/ipam/models/vlans.py:101 +#: ipam/models/vlans.py:101 msgid "Ranges cannot overlap." msgstr "範囲は重複できません。" -#: netbox/ipam/models/vlans.py:106 +#: ipam/models/vlans.py:106 #, python-brace-format msgid "" "Maximum child VID must be greater than or equal to minimum child VID " "({value})" msgstr "子供 VID の最大数は、子供 VID の最小値以上でなければなりません ({value})" -#: netbox/ipam/models/vlans.py:165 +#: ipam/models/vlans.py:165 msgid "The specific site to which this VLAN is assigned (if any)" msgstr "この VLAN が割り当てられているサイト (存在する場合)" -#: netbox/ipam/models/vlans.py:173 +#: ipam/models/vlans.py:173 msgid "VLAN group (optional)" msgstr "VLAN グループ (オプション)" -#: netbox/ipam/models/vlans.py:181 +#: ipam/models/vlans.py:181 msgid "Numeric VLAN ID (1-4094)" msgstr "数値によるVLAN ID (1-4094)" -#: netbox/ipam/models/vlans.py:199 +#: ipam/models/vlans.py:199 msgid "Operational status of this VLAN" msgstr "この VLAN の動作ステータス" -#: netbox/ipam/models/vlans.py:207 +#: ipam/models/vlans.py:207 msgid "The primary function of this VLAN" msgstr "この VLAN の主な機能" -#: netbox/ipam/models/vlans.py:250 +#: ipam/models/vlans.py:250 #, python-brace-format msgid "" "VLAN is assigned to group {group} (scope: {scope}); cannot also assign to " "site {site}." msgstr "VLANはグループ{group}に割り当てられています (スコープ: {scope}) サイト{site}への割り当てはできません 。" -#: netbox/ipam/models/vlans.py:259 +#: ipam/models/vlans.py:259 #, python-brace-format msgid "VID must be in ranges {ranges} for VLANs in group {group}" msgstr "VID は範囲内にある必要があります {ranges} グループ内の VLAN 用 {group}" -#: netbox/ipam/models/vrfs.py:30 +#: ipam/models/vrfs.py:30 msgid "route distinguisher" msgstr "ルート識別子(RD)" -#: netbox/ipam/models/vrfs.py:31 +#: ipam/models/vrfs.py:31 msgid "Unique route distinguisher (as defined in RFC 4364)" msgstr "一意のルート識別子 (RFC 4364 におけるRoute Distinguisher)" -#: netbox/ipam/models/vrfs.py:42 +#: ipam/models/vrfs.py:42 msgid "enforce unique space" msgstr "重複を禁止する" -#: netbox/ipam/models/vrfs.py:43 +#: ipam/models/vrfs.py:43 msgid "Prevent duplicate prefixes/IP addresses within this VRF" msgstr "この VRF 内のプレフィックス/IP アドレスの重複を防ぐ" -#: netbox/ipam/models/vrfs.py:63 netbox/netbox/navigation/menu.py:186 -#: netbox/netbox/navigation/menu.py:188 +#: ipam/models/vrfs.py:63 netbox/navigation/menu.py:186 +#: netbox/navigation/menu.py:188 msgid "VRFs" msgstr "VRF" -#: netbox/ipam/models/vrfs.py:82 +#: ipam/models/vrfs.py:82 msgid "Route target value (formatted in accordance with RFC 4360)" msgstr "ルートターゲット値 (RFC 4360 に従ってフォーマットされています)" -#: netbox/ipam/models/vrfs.py:94 +#: ipam/models/vrfs.py:94 msgid "route target" msgstr "ルートターゲット" -#: netbox/ipam/models/vrfs.py:95 +#: ipam/models/vrfs.py:95 msgid "route targets" msgstr "ルートターゲット" -#: netbox/ipam/tables/asn.py:52 +#: ipam/tables/asn.py:52 msgid "ASDOT" msgstr "ASDOT" -#: netbox/ipam/tables/asn.py:57 +#: ipam/tables/asn.py:57 msgid "Site Count" msgstr "サイト数" -#: netbox/ipam/tables/asn.py:62 +#: ipam/tables/asn.py:62 msgid "Provider Count" msgstr "プロバイダ数" -#: netbox/ipam/tables/ip.py:95 netbox/netbox/navigation/menu.py:179 -#: netbox/netbox/navigation/menu.py:181 +#: ipam/tables/ip.py:95 netbox/navigation/menu.py:179 +#: netbox/navigation/menu.py:181 msgid "Aggregates" msgstr "集約" -#: netbox/ipam/tables/ip.py:125 +#: ipam/tables/ip.py:125 msgid "Added" msgstr "追加日" -#: netbox/ipam/tables/ip.py:128 netbox/ipam/tables/ip.py:166 -#: netbox/ipam/tables/vlans.py:142 netbox/ipam/views.py:346 -#: netbox/netbox/navigation/menu.py:165 netbox/netbox/navigation/menu.py:167 -#: netbox/templates/ipam/vlan.html:84 +#: ipam/tables/ip.py:128 ipam/tables/ip.py:166 ipam/tables/vlans.py:142 +#: ipam/views.py:346 netbox/navigation/menu.py:165 +#: netbox/navigation/menu.py:167 templates/ipam/vlan.html:84 msgid "Prefixes" msgstr "プレフィックス" -#: netbox/ipam/tables/ip.py:131 netbox/ipam/tables/ip.py:270 -#: netbox/ipam/tables/ip.py:324 netbox/ipam/tables/vlans.py:86 -#: netbox/templates/dcim/device.html:260 -#: netbox/templates/ipam/aggregate.html:24 -#: netbox/templates/ipam/iprange.html:29 netbox/templates/ipam/prefix.html:106 +#: ipam/tables/ip.py:131 ipam/tables/ip.py:270 ipam/tables/ip.py:324 +#: ipam/tables/vlans.py:86 templates/dcim/device.html:260 +#: templates/ipam/aggregate.html:24 templates/ipam/iprange.html:29 +#: templates/ipam/prefix.html:106 msgid "Utilization" msgstr "使用率" -#: netbox/ipam/tables/ip.py:171 netbox/netbox/navigation/menu.py:161 +#: ipam/tables/ip.py:171 netbox/navigation/menu.py:161 msgid "IP Ranges" msgstr "IP アドレス範囲" -#: netbox/ipam/tables/ip.py:221 +#: ipam/tables/ip.py:221 msgid "Prefix (Flat)" msgstr "プレフィックス (フラット)" -#: netbox/ipam/tables/ip.py:225 +#: ipam/tables/ip.py:225 msgid "Depth" msgstr "階層" -#: netbox/ipam/tables/ip.py:262 +#: ipam/tables/ip.py:262 msgid "Pool" msgstr "プール" -#: netbox/ipam/tables/ip.py:266 netbox/ipam/tables/ip.py:320 +#: ipam/tables/ip.py:266 ipam/tables/ip.py:320 msgid "Marked Utilized" msgstr "使用済み" -#: netbox/ipam/tables/ip.py:304 +#: ipam/tables/ip.py:304 msgid "Start address" msgstr "開始アドレス" -#: netbox/ipam/tables/ip.py:383 +#: ipam/tables/ip.py:383 msgid "NAT (Inside)" msgstr "NAT (インサイド)" -#: netbox/ipam/tables/ip.py:388 +#: ipam/tables/ip.py:388 msgid "NAT (Outside)" msgstr "NAT (アウトサイド)" -#: netbox/ipam/tables/ip.py:393 +#: ipam/tables/ip.py:393 msgid "Assigned" msgstr "割当済み" -#: netbox/ipam/tables/ip.py:429 netbox/templates/vpn/l2vpntermination.html:16 -#: netbox/vpn/forms/filtersets.py:240 +#: ipam/tables/ip.py:429 templates/vpn/l2vpntermination.html:16 +#: vpn/forms/filtersets.py:240 msgid "Assigned Object" msgstr "割当オブジェクト" -#: netbox/ipam/tables/vlans.py:68 +#: ipam/tables/vlans.py:68 msgid "Scope Type" msgstr "スコープタイプ" -#: netbox/ipam/tables/vlans.py:76 +#: ipam/tables/vlans.py:76 msgid "VID Ranges" msgstr "VID レンジ" -#: netbox/ipam/tables/vlans.py:111 netbox/ipam/tables/vlans.py:214 -#: netbox/templates/dcim/inc/interface_vlans_table.html:4 +#: ipam/tables/vlans.py:111 ipam/tables/vlans.py:214 +#: templates/dcim/inc/interface_vlans_table.html:4 msgid "VID" msgstr "VID" -#: netbox/ipam/tables/vrfs.py:30 +#: ipam/tables/vrfs.py:30 msgid "RD" msgstr "RD" -#: netbox/ipam/tables/vrfs.py:33 +#: ipam/tables/vrfs.py:33 msgid "Unique" msgstr "ユニーク" -#: netbox/ipam/tables/vrfs.py:37 netbox/vpn/tables/l2vpn.py:27 +#: ipam/tables/vrfs.py:37 vpn/tables/l2vpn.py:27 msgid "Import Targets" msgstr "インポートターゲット" -#: netbox/ipam/tables/vrfs.py:42 netbox/vpn/tables/l2vpn.py:32 +#: ipam/tables/vrfs.py:42 vpn/tables/l2vpn.py:32 msgid "Export Targets" msgstr "エクスポートターゲット" -#: netbox/ipam/validators.py:9 +#: ipam/validators.py:9 #, python-brace-format msgid "{prefix} is not a valid prefix. Did you mean {suggested}?" msgstr "{prefix} は有効なプレフィックスではありません。もしかして{suggested}?" -#: netbox/ipam/validators.py:16 +#: ipam/validators.py:16 #, python-format msgid "The prefix length must be less than or equal to %(limit_value)s." msgstr "プレフィックス長は%(limit_value)s以下でなければなりません 。" -#: netbox/ipam/validators.py:24 +#: ipam/validators.py:24 #, python-format msgid "The prefix length must be greater than or equal to %(limit_value)s." msgstr "プレフィックス長は%(limit_value)s以上でなければなりません 。" -#: netbox/ipam/validators.py:33 +#: ipam/validators.py:33 msgid "" "Only alphanumeric characters, asterisks, hyphens, periods, and underscores " "are allowed in DNS names" msgstr "DNS 名に使用できるのは、英数字、アスタリスク、ハイフン、ピリオド、アンダースコアのみです。" -#: netbox/ipam/views.py:533 +#: ipam/views.py:533 msgid "Child Prefixes" msgstr "子プレフィックス" -#: netbox/ipam/views.py:569 +#: ipam/views.py:569 msgid "Child Ranges" msgstr "子レンジ" -#: netbox/ipam/views.py:898 +#: ipam/views.py:898 msgid "Related IPs" msgstr "関連IPアドレス" -#: netbox/ipam/views.py:1127 +#: ipam/views.py:1127 msgid "Device Interfaces" msgstr "デバイスインタフェース" -#: netbox/ipam/views.py:1145 +#: ipam/views.py:1145 msgid "VM Interfaces" msgstr "VM インタフェース" -#: netbox/netbox/api/fields.py:65 +#: netbox/api/fields.py:65 msgid "This field may not be blank." msgstr "このフィールドは空白であってはなりません。" -#: netbox/netbox/api/fields.py:70 +#: netbox/api/fields.py:70 msgid "" "Value must be passed directly (e.g. \"foo\": 123); do not use a dictionary " "or list." msgstr "値は直接渡す必要があります (例: \"foo\": 123)。辞書やリストは使用しないでください。" -#: netbox/netbox/api/fields.py:91 +#: netbox/api/fields.py:91 #, python-brace-format msgid "{value} is not a valid choice." msgstr "{value} は有効な選択肢ではありません。" -#: netbox/netbox/api/fields.py:104 +#: netbox/api/fields.py:104 #, python-brace-format msgid "Invalid content type: {content_type}" msgstr "コンテントタイプが無効です: {content_type}" -#: netbox/netbox/api/fields.py:105 +#: netbox/api/fields.py:105 msgid "Invalid value. Specify a content type as '.'." msgstr "値が無効です。コンテントタイプを '.'として指定してください。" -#: netbox/netbox/api/fields.py:167 +#: netbox/api/fields.py:167 msgid "Ranges must be specified in the form (lower, upper)." msgstr "範囲は (下限、上部) の形式で指定する必要があります。" -#: netbox/netbox/api/fields.py:169 +#: netbox/api/fields.py:169 msgid "Range boundaries must be defined as integers." msgstr "範囲の境界は整数として定義する必要があります。" -#: netbox/netbox/api/serializers/fields.py:40 +#: netbox/api/serializers/fields.py:40 #, python-brace-format msgid "{class_name} must implement get_view_name()" msgstr "{class_name} get_view_name () を実装する必要があります" -#: netbox/netbox/authentication/__init__.py:138 +#: netbox/authentication/__init__.py:138 #, python-brace-format msgid "Invalid permission {permission} for model {model}" msgstr "モデル{model}において権限{permission}が無効です " -#: netbox/netbox/choices.py:49 +#: netbox/choices.py:49 msgid "Dark Red" msgstr "ダークレッド" -#: netbox/netbox/choices.py:52 +#: netbox/choices.py:52 msgid "Rose" msgstr "ローズ" -#: netbox/netbox/choices.py:53 +#: netbox/choices.py:53 msgid "Fuchsia" msgstr "フクシア" -#: netbox/netbox/choices.py:55 +#: netbox/choices.py:55 msgid "Dark Purple" msgstr "ダークパープル" -#: netbox/netbox/choices.py:58 +#: netbox/choices.py:58 msgid "Light Blue" msgstr "ライトブルー" -#: netbox/netbox/choices.py:61 +#: netbox/choices.py:61 msgid "Aqua" msgstr "アクア" -#: netbox/netbox/choices.py:62 +#: netbox/choices.py:62 msgid "Dark Green" msgstr "ダークグリーン" -#: netbox/netbox/choices.py:64 +#: netbox/choices.py:64 msgid "Light Green" msgstr "ライトグリーン" -#: netbox/netbox/choices.py:65 +#: netbox/choices.py:65 msgid "Lime" msgstr "ライム" -#: netbox/netbox/choices.py:67 +#: netbox/choices.py:67 msgid "Amber" msgstr "アンバー" -#: netbox/netbox/choices.py:69 +#: netbox/choices.py:69 msgid "Dark Orange" msgstr "ダークオレンジ" -#: netbox/netbox/choices.py:70 +#: netbox/choices.py:70 msgid "Brown" msgstr "ブラウン" -#: netbox/netbox/choices.py:71 +#: netbox/choices.py:71 msgid "Light Grey" msgstr "ライトグレー" -#: netbox/netbox/choices.py:72 +#: netbox/choices.py:72 msgid "Grey" msgstr "グレー" -#: netbox/netbox/choices.py:73 +#: netbox/choices.py:73 msgid "Dark Grey" msgstr "ダークグレー" -#: netbox/netbox/choices.py:128 +#: netbox/choices.py:128 msgid "Direct" msgstr "直接" -#: netbox/netbox/choices.py:129 +#: netbox/choices.py:129 msgid "Upload" msgstr "アップロード" -#: netbox/netbox/choices.py:141 netbox/netbox/choices.py:155 +#: netbox/choices.py:141 netbox/choices.py:155 msgid "Auto-detect" msgstr "自動検出" -#: netbox/netbox/choices.py:156 +#: netbox/choices.py:156 msgid "Comma" msgstr "カンマ" -#: netbox/netbox/choices.py:157 +#: netbox/choices.py:157 msgid "Semicolon" msgstr "セミコロン" -#: netbox/netbox/choices.py:158 +#: netbox/choices.py:158 msgid "Tab" msgstr "タブ" -#: netbox/netbox/config/__init__.py:67 +#: netbox/config/__init__.py:67 #, python-brace-format msgid "Invalid configuration parameter: {item}" msgstr "設定パラメータが無効です: {item}" -#: netbox/netbox/config/parameters.py:22 -#: netbox/templates/core/inc/config_data.html:62 +#: netbox/config/parameters.py:22 templates/core/inc/config_data.html:62 msgid "Login banner" msgstr "ログインバナー" -#: netbox/netbox/config/parameters.py:24 +#: netbox/config/parameters.py:24 msgid "Additional content to display on the login page" msgstr "ログインページに表示する追加コンテンツ" -#: netbox/netbox/config/parameters.py:33 -#: netbox/templates/core/inc/config_data.html:66 +#: netbox/config/parameters.py:33 templates/core/inc/config_data.html:66 msgid "Maintenance banner" msgstr "メンテナンスバナー" -#: netbox/netbox/config/parameters.py:35 +#: netbox/config/parameters.py:35 msgid "Additional content to display when in maintenance mode" msgstr "メンテナンスモード時に表示する追加コンテンツ" -#: netbox/netbox/config/parameters.py:44 -#: netbox/templates/core/inc/config_data.html:70 +#: netbox/config/parameters.py:44 templates/core/inc/config_data.html:70 msgid "Top banner" msgstr "トップバナー" -#: netbox/netbox/config/parameters.py:46 +#: netbox/config/parameters.py:46 msgid "Additional content to display at the top of every page" msgstr "各ページの上部に表示する追加コンテンツ" -#: netbox/netbox/config/parameters.py:55 -#: netbox/templates/core/inc/config_data.html:74 +#: netbox/config/parameters.py:55 templates/core/inc/config_data.html:74 msgid "Bottom banner" msgstr "ボトムバナー" -#: netbox/netbox/config/parameters.py:57 +#: netbox/config/parameters.py:57 msgid "Additional content to display at the bottom of every page" msgstr "各ページの下部に表示する追加コンテンツ" -#: netbox/netbox/config/parameters.py:68 +#: netbox/config/parameters.py:68 msgid "Globally unique IP space" msgstr "グローバルに一意なIP空間" -#: netbox/netbox/config/parameters.py:70 +#: netbox/config/parameters.py:70 msgid "Enforce unique IP addressing within the global table" msgstr "グローバルテーブル内で一意の IP アドレスを強制する" -#: netbox/netbox/config/parameters.py:75 -#: netbox/templates/core/inc/config_data.html:44 +#: netbox/config/parameters.py:75 templates/core/inc/config_data.html:44 msgid "Prefer IPv4" msgstr "IPv4 を優先する" -#: netbox/netbox/config/parameters.py:77 +#: netbox/config/parameters.py:77 msgid "Prefer IPv4 addresses over IPv6" msgstr "IPv6よりもIPv4アドレスを優先する" -#: netbox/netbox/config/parameters.py:84 +#: netbox/config/parameters.py:84 msgid "Rack unit height" msgstr "ラックユニットの高さ" -#: netbox/netbox/config/parameters.py:86 +#: netbox/config/parameters.py:86 msgid "Default unit height for rendered rack elevations" msgstr "ラック図を描画する際の、ユニットの高さのデフォルト値" -#: netbox/netbox/config/parameters.py:91 +#: netbox/config/parameters.py:91 msgid "Rack unit width" msgstr "ラックユニット幅" -#: netbox/netbox/config/parameters.py:93 +#: netbox/config/parameters.py:93 msgid "Default unit width for rendered rack elevations" msgstr "ラック図を描画する際の、ユニットの幅のデフォルト値" -#: netbox/netbox/config/parameters.py:100 +#: netbox/config/parameters.py:100 msgid "Powerfeed voltage" msgstr "給電電圧" -#: netbox/netbox/config/parameters.py:102 +#: netbox/config/parameters.py:102 msgid "Default voltage for powerfeeds" msgstr "電源タップのデフォルト電圧" -#: netbox/netbox/config/parameters.py:107 +#: netbox/config/parameters.py:107 msgid "Powerfeed amperage" msgstr "給電アンペア数" -#: netbox/netbox/config/parameters.py:109 +#: netbox/config/parameters.py:109 msgid "Default amperage for powerfeeds" msgstr "電源タップのデフォルトアンペア数" -#: netbox/netbox/config/parameters.py:114 +#: netbox/config/parameters.py:114 msgid "Powerfeed max utilization" msgstr "電源タップの最大使用率" -#: netbox/netbox/config/parameters.py:116 +#: netbox/config/parameters.py:116 msgid "Default max utilization for powerfeeds" msgstr "電源タップのデフォルト最大使用率" -#: netbox/netbox/config/parameters.py:123 -#: netbox/templates/core/inc/config_data.html:53 +#: netbox/config/parameters.py:123 templates/core/inc/config_data.html:53 msgid "Allowed URL schemes" msgstr "許可された URL スキーム" -#: netbox/netbox/config/parameters.py:128 +#: netbox/config/parameters.py:128 msgid "Permitted schemes for URLs in user-provided content" msgstr "ユーザ提供コンテンツの URL に許可されているスキーム" -#: netbox/netbox/config/parameters.py:136 +#: netbox/config/parameters.py:136 msgid "Default page size" msgstr "デフォルトページサイズ" -#: netbox/netbox/config/parameters.py:142 +#: netbox/config/parameters.py:142 msgid "Maximum page size" msgstr "最大ページサイズ" -#: netbox/netbox/config/parameters.py:150 -#: netbox/templates/core/inc/config_data.html:96 +#: netbox/config/parameters.py:150 templates/core/inc/config_data.html:96 msgid "Custom validators" msgstr "カスタムバリデータ" -#: netbox/netbox/config/parameters.py:152 +#: netbox/config/parameters.py:152 msgid "Custom validation rules (JSON)" msgstr "カスタム検証ルール (JSON)" -#: netbox/netbox/config/parameters.py:160 -#: netbox/templates/core/inc/config_data.html:104 +#: netbox/config/parameters.py:160 templates/core/inc/config_data.html:104 msgid "Protection rules" msgstr "保護ルール" -#: netbox/netbox/config/parameters.py:162 +#: netbox/config/parameters.py:162 msgid "Deletion protection rules (JSON)" msgstr "削除保護ルール (JSON)" -#: netbox/netbox/config/parameters.py:172 -#: netbox/templates/core/inc/config_data.html:117 +#: netbox/config/parameters.py:172 templates/core/inc/config_data.html:117 msgid "Default preferences" msgstr "デフォルト設定" -#: netbox/netbox/config/parameters.py:174 +#: netbox/config/parameters.py:174 msgid "Default preferences for new users" msgstr "新規ユーザのデフォルト設定" -#: netbox/netbox/config/parameters.py:181 -#: netbox/templates/core/inc/config_data.html:129 +#: netbox/config/parameters.py:181 templates/core/inc/config_data.html:129 msgid "Maintenance mode" msgstr "メンテナンスモード" -#: netbox/netbox/config/parameters.py:183 +#: netbox/config/parameters.py:183 msgid "Enable maintenance mode" msgstr "メンテナンスモードを有効にする" -#: netbox/netbox/config/parameters.py:188 -#: netbox/templates/core/inc/config_data.html:133 +#: netbox/config/parameters.py:188 templates/core/inc/config_data.html:133 msgid "GraphQL enabled" msgstr "GraphQLの有効化" -#: netbox/netbox/config/parameters.py:190 +#: netbox/config/parameters.py:190 msgid "Enable the GraphQL API" msgstr "GraphQL API を有効にする" -#: netbox/netbox/config/parameters.py:195 -#: netbox/templates/core/inc/config_data.html:137 +#: netbox/config/parameters.py:195 templates/core/inc/config_data.html:137 msgid "Changelog retention" msgstr "変更履歴の保存" -#: netbox/netbox/config/parameters.py:197 +#: netbox/config/parameters.py:197 msgid "Days to retain changelog history (set to zero for unlimited)" msgstr "変更履歴の保存日数 (無制限の場合は0)" -#: netbox/netbox/config/parameters.py:202 +#: netbox/config/parameters.py:202 msgid "Job result retention" msgstr "ジョブ結果の保存" -#: netbox/netbox/config/parameters.py:204 +#: netbox/config/parameters.py:204 msgid "Days to retain job result history (set to zero for unlimited)" msgstr "ジョブの結果履歴を保存する日数 (無制限の場合は0)" -#: netbox/netbox/config/parameters.py:209 -#: netbox/templates/core/inc/config_data.html:145 +#: netbox/config/parameters.py:209 templates/core/inc/config_data.html:145 msgid "Maps URL" msgstr "マップ URL" -#: netbox/netbox/config/parameters.py:211 +#: netbox/config/parameters.py:211 msgid "Base URL for mapping geographic locations" msgstr "地理的位置をマッピングするためのベース URL" -#: netbox/netbox/forms/__init__.py:12 +#: netbox/forms/__init__.py:12 msgid "Partial match" msgstr "部分一致" -#: netbox/netbox/forms/__init__.py:13 +#: netbox/forms/__init__.py:13 msgid "Exact match" msgstr "完全一致" -#: netbox/netbox/forms/__init__.py:14 +#: netbox/forms/__init__.py:14 msgid "Starts with" msgstr "で始まる" -#: netbox/netbox/forms/__init__.py:15 +#: netbox/forms/__init__.py:15 msgid "Ends with" msgstr "で終わる" -#: netbox/netbox/forms/__init__.py:16 +#: netbox/forms/__init__.py:16 msgid "Regex" msgstr "正規表現" -#: netbox/netbox/forms/__init__.py:34 +#: netbox/forms/__init__.py:34 msgid "Object type(s)" msgstr "オブジェクトタイプ" -#: netbox/netbox/forms/__init__.py:40 +#: netbox/forms/__init__.py:40 msgid "Lookup" msgstr "検索" -#: netbox/netbox/forms/base.py:90 +#: netbox/forms/base.py:90 msgid "" "Tag slugs separated by commas, encased with double quotes (e.g. " "\"tag1,tag2,tag3\")" msgstr "二重引用符で囲まれたカンマ区切りのタグslug (例:\"tag1,tag2,tag3\")" -#: netbox/netbox/forms/base.py:120 +#: netbox/forms/base.py:120 msgid "Add tags" msgstr "タグを追加" -#: netbox/netbox/forms/base.py:125 +#: netbox/forms/base.py:125 msgid "Remove tags" msgstr "タグを削除" -#: netbox/netbox/forms/mixins.py:38 +#: netbox/forms/mixins.py:38 #, python-brace-format msgid "{class_name} must specify a model class." msgstr "{class_name} はモデルクラスを指定する必要があります。" -#: netbox/netbox/models/features.py:280 +#: netbox/models/features.py:280 #, python-brace-format msgid "Unknown field name '{name}' in custom field data." msgstr "カスタムフィールドデータに、不明なフィールド名 '{name}'が存在します。" -#: netbox/netbox/models/features.py:286 +#: netbox/models/features.py:286 #, python-brace-format msgid "Invalid value for custom field '{name}': {error}" msgstr "カスタムフィールドの値が無効です。'{name}': {error}" -#: netbox/netbox/models/features.py:295 +#: netbox/models/features.py:295 #, python-brace-format msgid "Custom field '{name}' must have a unique value." msgstr "カスタムフィールド '{name}'には一意の値が必要です。" -#: netbox/netbox/models/features.py:302 +#: netbox/models/features.py:302 #, python-brace-format msgid "Missing required custom field '{name}'." msgstr "必須カスタムフィールド'{name}'が見つかりません。" -#: netbox/netbox/models/features.py:462 +#: netbox/models/features.py:462 msgid "Remote data source" msgstr "リモートデータソース" -#: netbox/netbox/models/features.py:472 +#: netbox/models/features.py:472 msgid "data path" msgstr "データパス" -#: netbox/netbox/models/features.py:476 +#: netbox/models/features.py:476 msgid "Path to remote file (relative to data source root)" msgstr "リモートファイルへのパス (データソースルートからの相対パス)" -#: netbox/netbox/models/features.py:479 +#: netbox/models/features.py:479 msgid "auto sync enabled" msgstr "自動同期が有効" -#: netbox/netbox/models/features.py:481 +#: netbox/models/features.py:481 msgid "Enable automatic synchronization of data when the data file is updated" msgstr "データファイルの更新時にデータの自動同期を有効にする" -#: netbox/netbox/models/features.py:484 +#: netbox/models/features.py:484 msgid "date synced" msgstr "同期日付" -#: netbox/netbox/models/features.py:578 +#: netbox/models/features.py:578 #, python-brace-format msgid "{class_name} must implement a sync_data() method." msgstr "{class_name} はsync_data () メソッドを実装する必要があります。" -#: netbox/netbox/navigation/menu.py:11 +#: netbox/navigation/menu.py:11 msgid "Organization" msgstr "組織" -#: netbox/netbox/navigation/menu.py:19 +#: netbox/navigation/menu.py:19 msgid "Site Groups" msgstr "サイトグループ" -#: netbox/netbox/navigation/menu.py:27 +#: netbox/navigation/menu.py:27 msgid "Tenant Groups" msgstr "テナントグループ" -#: netbox/netbox/navigation/menu.py:34 +#: netbox/navigation/menu.py:34 msgid "Contact Groups" msgstr "連絡先グループ" -#: netbox/netbox/navigation/menu.py:35 -#: netbox/templates/tenancy/contactrole.html:8 +#: netbox/navigation/menu.py:35 templates/tenancy/contactrole.html:8 msgid "Contact Roles" msgstr "連絡先のロール" -#: netbox/netbox/navigation/menu.py:36 +#: netbox/navigation/menu.py:36 msgid "Contact Assignments" msgstr "連絡先の割り当て" -#: netbox/netbox/navigation/menu.py:50 +#: netbox/navigation/menu.py:50 msgid "Rack Roles" msgstr "ラックロール" -#: netbox/netbox/navigation/menu.py:54 +#: netbox/navigation/menu.py:54 msgid "Elevations" msgstr "ラック図" -#: netbox/netbox/navigation/menu.py:60 netbox/netbox/navigation/menu.py:62 +#: netbox/navigation/menu.py:60 netbox/navigation/menu.py:62 msgid "Rack Types" msgstr "ラックタイプ" -#: netbox/netbox/navigation/menu.py:76 +#: netbox/navigation/menu.py:76 msgid "Modules" msgstr "モジュール" -#: netbox/netbox/navigation/menu.py:80 netbox/templates/dcim/device.html:160 -#: netbox/templates/dcim/virtualdevicecontext.html:8 +#: netbox/navigation/menu.py:80 templates/dcim/device.html:160 +#: templates/dcim/virtualdevicecontext.html:8 msgid "Virtual Device Contexts" msgstr "仮想デバイスコンテキスト" -#: netbox/netbox/navigation/menu.py:88 +#: netbox/navigation/menu.py:88 msgid "Manufacturers" msgstr "メーカ" -#: netbox/netbox/navigation/menu.py:92 +#: netbox/navigation/menu.py:92 msgid "Device Components" msgstr "デバイス構成要素" -#: netbox/netbox/navigation/menu.py:104 -#: netbox/templates/dcim/inventoryitemrole.html:8 +#: netbox/navigation/menu.py:104 templates/dcim/inventoryitemrole.html:8 msgid "Inventory Item Roles" msgstr "在庫品目のロール" -#: netbox/netbox/navigation/menu.py:111 netbox/netbox/navigation/menu.py:115 +#: netbox/navigation/menu.py:111 netbox/navigation/menu.py:115 msgid "Connections" msgstr "接続" -#: netbox/netbox/navigation/menu.py:117 +#: netbox/navigation/menu.py:117 msgid "Cables" msgstr "ケーブル" -#: netbox/netbox/navigation/menu.py:118 +#: netbox/navigation/menu.py:118 msgid "Wireless Links" msgstr "無線リンク" -#: netbox/netbox/navigation/menu.py:121 +#: netbox/navigation/menu.py:121 msgid "Interface Connections" msgstr "インタフェース接続" -#: netbox/netbox/navigation/menu.py:126 +#: netbox/navigation/menu.py:126 msgid "Console Connections" msgstr "コンソール接続" -#: netbox/netbox/navigation/menu.py:131 +#: netbox/navigation/menu.py:131 msgid "Power Connections" msgstr "電源接続" -#: netbox/netbox/navigation/menu.py:147 +#: netbox/navigation/menu.py:147 msgid "Wireless LAN Groups" msgstr "無線 LAN グループ" -#: netbox/netbox/navigation/menu.py:168 +#: netbox/navigation/menu.py:168 msgid "Prefix & VLAN Roles" msgstr "プレフィックスと VLAN のロール" -#: netbox/netbox/navigation/menu.py:174 +#: netbox/navigation/menu.py:174 msgid "ASN Ranges" msgstr "ASN レンジ" -#: netbox/netbox/navigation/menu.py:196 +#: netbox/navigation/menu.py:196 msgid "VLAN Groups" msgstr "VLAN グループ" -#: netbox/netbox/navigation/menu.py:203 +#: netbox/navigation/menu.py:203 msgid "Service Templates" msgstr "サービステンプレート" -#: netbox/netbox/navigation/menu.py:204 netbox/templates/dcim/device.html:302 -#: netbox/templates/ipam/ipaddress.html:118 -#: netbox/templates/virtualization/virtualmachine.html:154 +#: netbox/navigation/menu.py:204 templates/dcim/device.html:302 +#: templates/ipam/ipaddress.html:118 +#: templates/virtualization/virtualmachine.html:154 msgid "Services" msgstr "サービス" -#: netbox/netbox/navigation/menu.py:211 +#: netbox/navigation/menu.py:211 msgid "VPN" msgstr "VPN" -#: netbox/netbox/navigation/menu.py:215 netbox/netbox/navigation/menu.py:217 -#: netbox/vpn/tables/tunnels.py:24 +#: netbox/navigation/menu.py:215 netbox/navigation/menu.py:217 +#: vpn/tables/tunnels.py:24 msgid "Tunnels" msgstr "トンネル" -#: netbox/netbox/navigation/menu.py:218 -#: netbox/templates/vpn/tunnelgroup.html:8 +#: netbox/navigation/menu.py:218 templates/vpn/tunnelgroup.html:8 msgid "Tunnel Groups" msgstr "トンネルグループ" -#: netbox/netbox/navigation/menu.py:219 +#: netbox/navigation/menu.py:219 msgid "Tunnel Terminations" msgstr "トンネルターミネーション" -#: netbox/netbox/navigation/menu.py:223 netbox/netbox/navigation/menu.py:225 -#: netbox/vpn/models/l2vpn.py:64 +#: netbox/navigation/menu.py:223 netbox/navigation/menu.py:225 +#: vpn/models/l2vpn.py:64 msgid "L2VPNs" msgstr "L2 VPN" -#: netbox/netbox/navigation/menu.py:226 netbox/templates/vpn/l2vpn.html:56 -#: netbox/templates/vpn/tunnel.html:72 netbox/vpn/tables/tunnels.py:58 +#: netbox/navigation/menu.py:226 templates/vpn/l2vpn.html:56 +#: templates/vpn/tunnel.html:72 vpn/tables/tunnels.py:58 msgid "Terminations" msgstr "終端" -#: netbox/netbox/navigation/menu.py:232 +#: netbox/navigation/menu.py:232 msgid "IKE Proposals" msgstr "IKEプロポザール" -#: netbox/netbox/navigation/menu.py:233 -#: netbox/templates/vpn/ikeproposal.html:41 +#: netbox/navigation/menu.py:233 templates/vpn/ikeproposal.html:41 msgid "IKE Policies" msgstr "IKE ポリシ" -#: netbox/netbox/navigation/menu.py:234 +#: netbox/navigation/menu.py:234 msgid "IPSec Proposals" msgstr "IPsec プロポーザル" -#: netbox/netbox/navigation/menu.py:235 -#: netbox/templates/vpn/ipsecproposal.html:37 +#: netbox/navigation/menu.py:235 templates/vpn/ipsecproposal.html:37 msgid "IPSec Policies" msgstr "IPsec ポリシ" -#: netbox/netbox/navigation/menu.py:236 netbox/templates/vpn/ikepolicy.html:38 -#: netbox/templates/vpn/ipsecpolicy.html:25 +#: netbox/navigation/menu.py:236 templates/vpn/ikepolicy.html:38 +#: templates/vpn/ipsecpolicy.html:25 msgid "IPSec Profiles" msgstr "IPsec プロファイル" -#: netbox/netbox/navigation/menu.py:243 -#: netbox/templates/dcim/device_edit.html:78 +#: netbox/navigation/menu.py:243 templates/dcim/device_edit.html:78 msgid "Virtualization" msgstr "仮想化" -#: netbox/netbox/navigation/menu.py:251 -#: netbox/templates/virtualization/virtualmachine.html:174 -#: netbox/templates/virtualization/virtualmachine/base.html:32 -#: netbox/templates/virtualization/virtualmachine_list.html:21 -#: netbox/virtualization/tables/virtualmachines.py:104 -#: netbox/virtualization/views.py:388 +#: netbox/navigation/menu.py:251 +#: templates/virtualization/virtualmachine.html:174 +#: templates/virtualization/virtualmachine/base.html:32 +#: templates/virtualization/virtualmachine_list.html:21 +#: virtualization/tables/virtualmachines.py:104 virtualization/views.py:388 msgid "Virtual Disks" msgstr "仮想ディスク" -#: netbox/netbox/navigation/menu.py:258 +#: netbox/navigation/menu.py:258 msgid "Cluster Types" msgstr "クラスタタイプ" -#: netbox/netbox/navigation/menu.py:259 +#: netbox/navigation/menu.py:259 msgid "Cluster Groups" msgstr "クラスタグループ" -#: netbox/netbox/navigation/menu.py:273 +#: netbox/navigation/menu.py:273 msgid "Circuit Types" msgstr "回線タイプ" -#: netbox/netbox/navigation/menu.py:274 +#: netbox/navigation/menu.py:274 msgid "Circuit Groups" msgstr "回路グループ" -#: netbox/netbox/navigation/menu.py:275 -#: netbox/templates/circuits/circuit.html:66 +#: netbox/navigation/menu.py:275 templates/circuits/circuit.html:66 msgid "Group Assignments" msgstr "グループ課題" -#: netbox/netbox/navigation/menu.py:276 +#: netbox/navigation/menu.py:276 msgid "Circuit Terminations" msgstr "回路終端" -#: netbox/netbox/navigation/menu.py:280 netbox/netbox/navigation/menu.py:282 +#: netbox/navigation/menu.py:280 netbox/navigation/menu.py:282 msgid "Providers" msgstr "プロバイダ" -#: netbox/netbox/navigation/menu.py:283 -#: netbox/templates/circuits/provider.html:51 +#: netbox/navigation/menu.py:283 templates/circuits/provider.html:51 msgid "Provider Accounts" msgstr "プロバイダアカウント" -#: netbox/netbox/navigation/menu.py:284 +#: netbox/navigation/menu.py:284 msgid "Provider Networks" msgstr "プロバイダネットワーク" -#: netbox/netbox/navigation/menu.py:298 +#: netbox/navigation/menu.py:298 msgid "Power Panels" msgstr "電源盤" -#: netbox/netbox/navigation/menu.py:309 +#: netbox/navigation/menu.py:309 msgid "Configurations" msgstr "コンフィギュレーション" -#: netbox/netbox/navigation/menu.py:311 +#: netbox/navigation/menu.py:311 msgid "Config Contexts" msgstr "コンフィグコンテキスト" -#: netbox/netbox/navigation/menu.py:312 +#: netbox/navigation/menu.py:312 msgid "Config Templates" msgstr "設定テンプレート" -#: netbox/netbox/navigation/menu.py:319 netbox/netbox/navigation/menu.py:323 +#: netbox/navigation/menu.py:319 netbox/navigation/menu.py:323 msgid "Customization" msgstr "カスタマイズ" -#: netbox/netbox/navigation/menu.py:325 -#: netbox/templates/dcim/device_edit.html:103 -#: netbox/templates/dcim/htmx/cable_edit.html:81 -#: netbox/templates/dcim/virtualchassis_add.html:31 -#: netbox/templates/dcim/virtualchassis_edit.html:40 -#: netbox/templates/generic/bulk_edit.html:76 -#: netbox/templates/htmx/form.html:19 netbox/templates/inc/filter_list.html:30 -#: netbox/templates/inc/panels/custom_fields.html:7 -#: netbox/templates/ipam/ipaddress_bulk_add.html:35 -#: netbox/templates/ipam/vlan_edit.html:59 +#: netbox/navigation/menu.py:325 templates/dcim/device_edit.html:103 +#: templates/dcim/htmx/cable_edit.html:81 +#: templates/dcim/virtualchassis_add.html:31 +#: templates/dcim/virtualchassis_edit.html:40 +#: templates/generic/bulk_edit.html:76 templates/htmx/form.html:19 +#: templates/inc/filter_list.html:30 templates/inc/panels/custom_fields.html:7 +#: templates/ipam/ipaddress_bulk_add.html:35 templates/ipam/vlan_edit.html:59 msgid "Custom Fields" msgstr "カスタムフィールド" -#: netbox/netbox/navigation/menu.py:326 +#: netbox/navigation/menu.py:326 msgid "Custom Field Choices" msgstr "カスタムフィールド選択肢" -#: netbox/netbox/navigation/menu.py:327 +#: netbox/navigation/menu.py:327 msgid "Custom Links" msgstr "カスタムリンク" -#: netbox/netbox/navigation/menu.py:328 +#: netbox/navigation/menu.py:328 msgid "Export Templates" msgstr "エクスポートテンプレート" -#: netbox/netbox/navigation/menu.py:329 +#: netbox/navigation/menu.py:329 msgid "Saved Filters" msgstr "保存済みフィルタ" -#: netbox/netbox/navigation/menu.py:331 +#: netbox/navigation/menu.py:331 msgid "Image Attachments" msgstr "画像添付ファイル" -#: netbox/netbox/navigation/menu.py:349 +#: netbox/navigation/menu.py:349 msgid "Operations" msgstr "オペレーション" -#: netbox/netbox/navigation/menu.py:353 +#: netbox/navigation/menu.py:353 msgid "Integrations" msgstr "インテグレーション" -#: netbox/netbox/navigation/menu.py:355 +#: netbox/navigation/menu.py:355 msgid "Data Sources" msgstr "データソース" -#: netbox/netbox/navigation/menu.py:356 +#: netbox/navigation/menu.py:356 msgid "Event Rules" msgstr "イベントルール" -#: netbox/netbox/navigation/menu.py:357 +#: netbox/navigation/menu.py:357 msgid "Webhooks" msgstr "ウェブフック" -#: netbox/netbox/navigation/menu.py:361 netbox/netbox/navigation/menu.py:365 -#: netbox/netbox/views/generic/feature_views.py:153 -#: netbox/templates/extras/report/base.html:37 -#: netbox/templates/extras/script/base.html:36 +#: netbox/navigation/menu.py:361 netbox/navigation/menu.py:365 +#: netbox/views/generic/feature_views.py:153 +#: templates/extras/report/base.html:37 templates/extras/script/base.html:36 msgid "Jobs" msgstr "ジョブ" -#: netbox/netbox/navigation/menu.py:371 +#: netbox/navigation/menu.py:371 msgid "Logging" msgstr "ロギング" -#: netbox/netbox/navigation/menu.py:373 +#: netbox/navigation/menu.py:373 msgid "Notification Groups" msgstr "通知グループ" -#: netbox/netbox/navigation/menu.py:374 +#: netbox/navigation/menu.py:374 msgid "Journal Entries" msgstr "ジャーナルエントリ" -#: netbox/netbox/navigation/menu.py:375 -#: netbox/templates/core/objectchange.html:9 -#: netbox/templates/core/objectchange_list.html:4 +#: netbox/navigation/menu.py:375 templates/core/objectchange.html:9 +#: templates/core/objectchange_list.html:4 msgid "Change Log" msgstr "変更ログ" -#: netbox/netbox/navigation/menu.py:382 netbox/templates/inc/user_menu.html:29 +#: netbox/navigation/menu.py:382 templates/inc/user_menu.html:29 msgid "Admin" msgstr "管理者" -#: netbox/netbox/navigation/menu.py:430 netbox/templates/account/base.html:27 -#: netbox/templates/inc/user_menu.html:57 +#: netbox/navigation/menu.py:430 templates/account/base.html:27 +#: templates/inc/user_menu.html:57 msgid "API Tokens" msgstr "API トークン" -#: netbox/netbox/navigation/menu.py:437 netbox/users/forms/model_forms.py:187 -#: netbox/users/forms/model_forms.py:195 netbox/users/forms/model_forms.py:242 -#: netbox/users/forms/model_forms.py:249 +#: netbox/navigation/menu.py:437 users/forms/model_forms.py:187 +#: users/forms/model_forms.py:195 users/forms/model_forms.py:242 +#: users/forms/model_forms.py:249 msgid "Permissions" msgstr "権限" -#: netbox/netbox/navigation/menu.py:445 netbox/netbox/navigation/menu.py:449 -#: netbox/templates/core/system.html:7 +#: netbox/navigation/menu.py:445 netbox/navigation/menu.py:449 +#: templates/core/system.html:7 msgid "System" msgstr "システム" -#: netbox/netbox/navigation/menu.py:454 netbox/netbox/navigation/menu.py:502 -#: netbox/templates/500.html:35 netbox/templates/account/preferences.html:22 -#: netbox/templates/core/plugin.html:12 -#: netbox/templates/core/plugin_list.html:7 -#: netbox/templates/core/plugin_list.html:12 +#: netbox/navigation/menu.py:454 netbox/navigation/menu.py:502 +#: templates/500.html:35 templates/account/preferences.html:22 +#: templates/core/plugin.html:13 templates/core/plugin_list.html:7 +#: templates/core/plugin_list.html:12 msgid "Plugins" msgstr "プラグイン" -#: netbox/netbox/navigation/menu.py:459 +#: netbox/navigation/menu.py:459 msgid "Configuration History" msgstr "設定履歴" -#: netbox/netbox/navigation/menu.py:465 netbox/templates/core/rq_task.html:8 -#: netbox/templates/core/rq_task_list.html:22 +#: netbox/navigation/menu.py:465 templates/core/rq_task.html:8 +#: templates/core/rq_task_list.html:22 msgid "Background Tasks" msgstr "バックグラウンドタスク" -#: netbox/netbox/plugins/navigation.py:47 -#: netbox/netbox/plugins/navigation.py:69 +#: netbox/plugins/navigation.py:47 netbox/plugins/navigation.py:69 msgid "Permissions must be passed as a tuple or list." msgstr "権限はタプルまたはリストとして渡す必要があります。" -#: netbox/netbox/plugins/navigation.py:51 +#: netbox/plugins/navigation.py:51 msgid "Buttons must be passed as a tuple or list." msgstr "ボタンはタプルまたはリストとして渡す必要があります。" -#: netbox/netbox/plugins/navigation.py:73 +#: netbox/plugins/navigation.py:73 msgid "Button color must be a choice within ButtonColorChoices." msgstr "ボタンの色はButtonColorChoicesから選択する必要があります。" -#: netbox/netbox/plugins/registration.py:25 +#: netbox/plugins/registration.py:25 #, python-brace-format msgid "" "PluginTemplateExtension class {template_extension} was passed as an " "instance!" msgstr "PluginTemplateExtension クラス {template_extension} がインスタンスとして渡されました!" -#: netbox/netbox/plugins/registration.py:31 +#: netbox/plugins/registration.py:31 #, python-brace-format msgid "" "{template_extension} is not a subclass of " @@ -11022,1390 +10392,1329 @@ msgstr "" "{template_extension} はnetbox.plugins.Plugins.PluginTemplate Extension " "のサブクラスではありません!" -#: netbox/netbox/plugins/registration.py:51 +#: netbox/plugins/registration.py:51 #, python-brace-format msgid "{item} must be an instance of netbox.plugins.PluginMenuItem" msgstr "{item} はnetbox.Plugins.PluginMenuItem のインスタンスでなければなりません" -#: netbox/netbox/plugins/registration.py:62 +#: netbox/plugins/registration.py:62 #, python-brace-format msgid "{menu_link} must be an instance of netbox.plugins.PluginMenuItem" msgstr "{menu_link} はnetbox.plugins.PluginMenuItem のインスタンスでなければなりません" -#: netbox/netbox/plugins/registration.py:67 +#: netbox/plugins/registration.py:67 #, python-brace-format msgid "{button} must be an instance of netbox.plugins.PluginMenuButton" msgstr "{button} netbox.plugins.Plugin.MenuButton のインスタンスでなければなりません" -#: netbox/netbox/plugins/templates.py:37 +#: netbox/plugins/templates.py:37 msgid "extra_context must be a dictionary" msgstr "extra_contextはディクショナリでなければなりません" -#: netbox/netbox/preferences.py:19 +#: netbox/preferences.py:19 msgid "HTMX Navigation" msgstr "HTMX ナビゲーション" -#: netbox/netbox/preferences.py:24 +#: netbox/preferences.py:24 msgid "Enable dynamic UI navigation" msgstr "動的 UI ナビゲーションを有効にする" -#: netbox/netbox/preferences.py:26 +#: netbox/preferences.py:26 msgid "Experimental feature" msgstr "実験的機能" -#: netbox/netbox/preferences.py:29 +#: netbox/preferences.py:29 msgid "Language" msgstr "言語" -#: netbox/netbox/preferences.py:34 +#: netbox/preferences.py:34 msgid "Forces UI translation to the specified language" msgstr "UI を指定された言語に強制的に翻訳します" -#: netbox/netbox/preferences.py:36 +#: netbox/preferences.py:36 msgid "Support for translation has been disabled locally" msgstr "翻訳のサポートはローカルで無効になっています" -#: netbox/netbox/preferences.py:42 +#: netbox/preferences.py:42 msgid "Page length" msgstr "ページの長さ" -#: netbox/netbox/preferences.py:44 +#: netbox/preferences.py:44 msgid "The default number of objects to display per page" msgstr "1 ページに表示するデフォルトのオブジェクト数" -#: netbox/netbox/preferences.py:48 +#: netbox/preferences.py:48 msgid "Paginator placement" msgstr "ページネータの配置" -#: netbox/netbox/preferences.py:50 +#: netbox/preferences.py:50 msgid "Bottom" msgstr "下部" -#: netbox/netbox/preferences.py:51 +#: netbox/preferences.py:51 msgid "Top" msgstr "上部" -#: netbox/netbox/preferences.py:52 +#: netbox/preferences.py:52 msgid "Both" msgstr "両方" -#: netbox/netbox/preferences.py:55 +#: netbox/preferences.py:55 msgid "Where the paginator controls will be displayed relative to a table" msgstr "テーブルを基とした、ページネータが表示される場所" -#: netbox/netbox/preferences.py:60 +#: netbox/preferences.py:60 msgid "Data format" msgstr "データ形式" -#: netbox/netbox/preferences.py:65 +#: netbox/preferences.py:65 msgid "The preferred syntax for displaying generic data within the UI" msgstr "UI 内で汎用データを表示するための推奨構文" -#: netbox/netbox/registry.py:14 +#: netbox/registry.py:14 #, python-brace-format msgid "Invalid store: {key}" msgstr "ストアが無効です: {key}" -#: netbox/netbox/registry.py:17 +#: netbox/registry.py:17 msgid "Cannot add stores to registry after initialization" msgstr "初期化後にストアをレジストリに追加できません" -#: netbox/netbox/registry.py:20 +#: netbox/registry.py:20 msgid "Cannot delete stores from registry" msgstr "レジストリからストアを削除できません" -#: netbox/netbox/settings.py:760 +#: netbox/settings.py:760 msgid "Czech" msgstr "チェコ語" -#: netbox/netbox/settings.py:761 +#: netbox/settings.py:761 msgid "Danish" msgstr "デンマーク語" -#: netbox/netbox/settings.py:762 +#: netbox/settings.py:762 msgid "German" msgstr "ドイツ人" -#: netbox/netbox/settings.py:763 +#: netbox/settings.py:763 msgid "English" msgstr "英語" -#: netbox/netbox/settings.py:764 +#: netbox/settings.py:764 msgid "Spanish" msgstr "スペイン語" -#: netbox/netbox/settings.py:765 +#: netbox/settings.py:765 msgid "French" msgstr "フランス語" -#: netbox/netbox/settings.py:766 +#: netbox/settings.py:766 msgid "Italian" msgstr "イタリア語" -#: netbox/netbox/settings.py:767 +#: netbox/settings.py:767 msgid "Japanese" msgstr "日本語" -#: netbox/netbox/settings.py:768 +#: netbox/settings.py:768 msgid "Dutch" msgstr "オランダ語" -#: netbox/netbox/settings.py:769 +#: netbox/settings.py:769 msgid "Polish" msgstr "ポーランド語" -#: netbox/netbox/settings.py:770 +#: netbox/settings.py:770 msgid "Portuguese" msgstr "ポルトガル語" -#: netbox/netbox/settings.py:771 +#: netbox/settings.py:771 msgid "Russian" msgstr "ロシア語" -#: netbox/netbox/settings.py:772 +#: netbox/settings.py:772 msgid "Turkish" msgstr "トルコ語" -#: netbox/netbox/settings.py:773 +#: netbox/settings.py:773 msgid "Ukrainian" msgstr "ウクライナ語" -#: netbox/netbox/settings.py:774 +#: netbox/settings.py:774 msgid "Chinese" msgstr "中国語" -#: netbox/netbox/tables/columns.py:176 +#: netbox/tables/columns.py:176 msgid "Select all" msgstr "すべて選択" -#: netbox/netbox/tables/columns.py:189 +#: netbox/tables/columns.py:189 msgid "Toggle all" msgstr "すべて切り替え" -#: netbox/netbox/tables/columns.py:300 +#: netbox/tables/columns.py:300 msgid "Toggle Dropdown" msgstr "ドロップダウンを切り替え" -#: netbox/netbox/tables/columns.py:572 netbox/templates/core/job.html:53 +#: netbox/tables/columns.py:572 templates/core/job.html:53 msgid "Error" msgstr "エラー" -#: netbox/netbox/tables/tables.py:58 +#: netbox/tables/tables.py:58 #, python-brace-format msgid "No {model_name} found" msgstr "{model_name} が見つかりません" -#: netbox/netbox/tables/tables.py:249 -#: netbox/templates/generic/bulk_import.html:117 +#: netbox/tables/tables.py:249 templates/generic/bulk_import.html:117 msgid "Field" msgstr "フィールド" -#: netbox/netbox/tables/tables.py:252 +#: netbox/tables/tables.py:252 msgid "Value" msgstr "値" -#: netbox/netbox/tests/dummy_plugin/navigation.py:29 +#: netbox/tests/dummy_plugin/navigation.py:29 msgid "Dummy Plugin" msgstr "ダミープラグイン" -#: netbox/netbox/views/generic/bulk_views.py:114 +#: netbox/views/generic/bulk_views.py:114 #, python-brace-format msgid "" "There was an error rendering the selected export template ({template}): " "{error}" msgstr "選択したエクスポートテンプレートをレンダリング中にエラーが発生しました ({template}): {error}" -#: netbox/netbox/views/generic/bulk_views.py:416 +#: netbox/views/generic/bulk_views.py:416 #, python-brace-format msgid "Row {i}: Object with ID {id} does not exist" msgstr "行 {i}: ID {id}のオブジェクトは存在しません" -#: netbox/netbox/views/generic/bulk_views.py:699 -#: netbox/netbox/views/generic/bulk_views.py:897 -#: netbox/netbox/views/generic/bulk_views.py:945 +#: netbox/views/generic/bulk_views.py:702 +#: netbox/views/generic/bulk_views.py:900 +#: netbox/views/generic/bulk_views.py:948 #, python-brace-format msgid "No {object_type} were selected." msgstr "いいえ {object_type} が選ばれました。" -#: netbox/netbox/views/generic/bulk_views.py:779 +#: netbox/views/generic/bulk_views.py:782 #, python-brace-format msgid "Renamed {count} {object_type}" msgstr "名前が変更されました {count} {object_type}" -#: netbox/netbox/views/generic/bulk_views.py:875 +#: netbox/views/generic/bulk_views.py:878 #, python-brace-format msgid "Deleted {count} {object_type}" msgstr "削除済み {count} {object_type}" -#: netbox/netbox/views/generic/feature_views.py:40 +#: netbox/views/generic/feature_views.py:40 msgid "Changelog" msgstr "変更ログ" -#: netbox/netbox/views/generic/feature_views.py:93 +#: netbox/views/generic/feature_views.py:93 msgid "Journal" msgstr "ジャーナル" -#: netbox/netbox/views/generic/feature_views.py:207 +#: netbox/views/generic/feature_views.py:207 msgid "Unable to synchronize data: No data file set." msgstr "データを同期できません:データファイルが設定されていません。" -#: netbox/netbox/views/generic/feature_views.py:211 +#: netbox/views/generic/feature_views.py:211 #, python-brace-format msgid "Synchronized data for {object_type} {object}." msgstr "の同期データ {object_type} {object}。" -#: netbox/netbox/views/generic/feature_views.py:236 +#: netbox/views/generic/feature_views.py:236 #, python-brace-format msgid "Synced {count} {object_type}" msgstr "同期済み {count} {object_type}" -#: netbox/netbox/views/generic/object_views.py:108 +#: netbox/views/generic/object_views.py:108 #, python-brace-format msgid "{class_name} must implement get_children()" msgstr "{class_name} はget_children () を実装する必要があります" -#: netbox/netbox/views/misc.py:44 +#: netbox/views/misc.py:44 msgid "" "There was an error loading the dashboard configuration. A default dashboard " "is in use." msgstr "ダッシュボード設定の読込中にエラーが発生しました。デフォルトのダッシュボードが使用中です。" -#: netbox/templates/403.html:4 +#: templates/403.html:4 msgid "Access Denied" msgstr "アクセス拒否" -#: netbox/templates/403.html:9 +#: templates/403.html:9 msgid "You do not have permission to access this page" msgstr "このページにアクセスする権限がありません" -#: netbox/templates/404.html:4 +#: templates/404.html:4 msgid "Page Not Found" msgstr "ページが見つかりません" -#: netbox/templates/404.html:9 +#: templates/404.html:9 msgid "The requested page does not exist" msgstr "要求されたページは存在しません" -#: netbox/templates/500.html:7 netbox/templates/500.html:18 +#: templates/500.html:7 templates/500.html:18 msgid "Server Error" msgstr "サーバエラー" -#: netbox/templates/500.html:23 +#: templates/500.html:23 msgid "There was a problem with your request. Please contact an administrator" msgstr "リクエストに問題がありました。管理者に問い合わせてください。" -#: netbox/templates/500.html:28 +#: templates/500.html:28 msgid "The complete exception is provided below" msgstr "The complete exception is provided below" -#: netbox/templates/500.html:33 netbox/templates/core/system.html:40 +#: templates/500.html:33 templates/core/system.html:40 msgid "Python version" msgstr "Python version" -#: netbox/templates/500.html:34 +#: templates/500.html:34 msgid "NetBox version" msgstr "NetBox version" -#: netbox/templates/500.html:36 +#: templates/500.html:36 msgid "None installed" msgstr "None installed" -#: netbox/templates/500.html:39 +#: templates/500.html:39 msgid "If further assistance is required, please post to the" msgstr "さらにサポートが必要な場合は、以下サイトに投稿してください。" -#: netbox/templates/500.html:39 +#: templates/500.html:39 msgid "NetBox discussion forum" msgstr "NetBox ディスカッションフォーラム" -#: netbox/templates/500.html:39 +#: templates/500.html:39 msgid "on GitHub" msgstr "(GitHub)" -#: netbox/templates/500.html:42 netbox/templates/base/40x.html:17 +#: templates/500.html:42 templates/base/40x.html:17 msgid "Home Page" msgstr "ホームページ" -#: netbox/templates/account/base.html:7 netbox/templates/inc/user_menu.html:45 -#: netbox/vpn/forms/bulk_edit.py:255 netbox/vpn/forms/filtersets.py:189 -#: netbox/vpn/forms/model_forms.py:379 +#: templates/account/base.html:7 templates/inc/user_menu.html:45 +#: vpn/forms/bulk_edit.py:255 vpn/forms/filtersets.py:189 +#: vpn/forms/model_forms.py:379 msgid "Profile" msgstr "プロフィール" -#: netbox/templates/account/base.html:13 -#: netbox/templates/account/notifications.html:7 -#: netbox/templates/inc/user_menu.html:15 +#: templates/account/base.html:13 templates/account/notifications.html:7 +#: templates/inc/user_menu.html:15 msgid "Notifications" msgstr "通知" -#: netbox/templates/account/base.html:16 -#: netbox/templates/account/subscriptions.html:7 -#: netbox/templates/inc/user_menu.html:51 +#: templates/account/base.html:16 templates/account/subscriptions.html:7 +#: templates/inc/user_menu.html:51 msgid "Subscriptions" msgstr "サブスクリプション" -#: netbox/templates/account/base.html:19 -#: netbox/templates/inc/user_menu.html:54 +#: templates/account/base.html:19 templates/inc/user_menu.html:54 msgid "Preferences" msgstr "環境設定" -#: netbox/templates/account/password.html:5 +#: templates/account/password.html:5 msgid "Change Password" msgstr "パスワードを変更" -#: netbox/templates/account/password.html:19 -#: netbox/templates/account/preferences.html:77 -#: netbox/templates/core/configrevision_restore.html:63 -#: netbox/templates/dcim/devicebay_populate.html:34 -#: netbox/templates/dcim/virtualchassis_add_member.html:26 -#: netbox/templates/dcim/virtualchassis_edit.html:103 -#: netbox/templates/extras/object_journal.html:26 -#: netbox/templates/extras/script.html:38 -#: netbox/templates/generic/bulk_add_component.html:67 -#: netbox/templates/generic/bulk_delete.html:65 -#: netbox/templates/generic/bulk_edit.html:106 -#: netbox/templates/generic/bulk_import.html:56 -#: netbox/templates/generic/bulk_import.html:78 -#: netbox/templates/generic/bulk_import.html:100 -#: netbox/templates/generic/bulk_remove.html:62 -#: netbox/templates/generic/bulk_rename.html:63 -#: netbox/templates/generic/confirmation_form.html:19 -#: netbox/templates/generic/object_edit.html:72 -#: netbox/templates/htmx/delete_form.html:53 -#: netbox/templates/htmx/delete_form.html:55 -#: netbox/templates/ipam/ipaddress_assign.html:28 -#: netbox/templates/virtualization/cluster_add_devices.html:30 +#: templates/account/password.html:19 templates/account/preferences.html:77 +#: templates/core/configrevision_restore.html:63 +#: templates/dcim/devicebay_populate.html:34 +#: templates/dcim/virtualchassis_add_member.html:26 +#: templates/dcim/virtualchassis_edit.html:103 +#: templates/extras/object_journal.html:26 templates/extras/script.html:38 +#: templates/generic/bulk_add_component.html:67 +#: templates/generic/bulk_delete.html:65 templates/generic/bulk_edit.html:106 +#: templates/generic/bulk_import.html:56 templates/generic/bulk_import.html:78 +#: templates/generic/bulk_import.html:100 +#: templates/generic/bulk_remove.html:62 templates/generic/bulk_rename.html:63 +#: templates/generic/confirmation_form.html:19 +#: templates/generic/object_edit.html:72 templates/htmx/delete_form.html:53 +#: templates/htmx/delete_form.html:55 templates/ipam/ipaddress_assign.html:28 +#: templates/virtualization/cluster_add_devices.html:30 msgid "Cancel" msgstr "キャンセル" -#: netbox/templates/account/password.html:20 -#: netbox/templates/account/preferences.html:78 -#: netbox/templates/dcim/devicebay_populate.html:35 -#: netbox/templates/dcim/virtualchassis_add_member.html:28 -#: netbox/templates/dcim/virtualchassis_edit.html:105 -#: netbox/templates/extras/dashboard/widget_add.html:26 -#: netbox/templates/extras/dashboard/widget_config.html:19 -#: netbox/templates/extras/object_journal.html:27 -#: netbox/templates/generic/object_edit.html:75 -#: netbox/utilities/templates/helpers/applied_filters.html:16 -#: netbox/utilities/templates/helpers/table_config_form.html:40 +#: templates/account/password.html:20 templates/account/preferences.html:78 +#: templates/dcim/devicebay_populate.html:35 +#: templates/dcim/virtualchassis_add_member.html:28 +#: templates/dcim/virtualchassis_edit.html:105 +#: templates/extras/dashboard/widget_add.html:26 +#: templates/extras/dashboard/widget_config.html:19 +#: templates/extras/object_journal.html:27 +#: templates/generic/object_edit.html:75 +#: utilities/templates/helpers/applied_filters.html:16 +#: utilities/templates/helpers/table_config_form.html:40 msgid "Save" msgstr "保存" -#: netbox/templates/account/preferences.html:34 +#: templates/account/preferences.html:34 msgid "Table Configurations" msgstr "テーブル設定" -#: netbox/templates/account/preferences.html:39 +#: templates/account/preferences.html:39 msgid "Clear table preferences" msgstr "テーブル設定をクリア" -#: netbox/templates/account/preferences.html:47 +#: templates/account/preferences.html:47 msgid "Toggle All" msgstr "すべて切り替え" -#: netbox/templates/account/preferences.html:49 +#: templates/account/preferences.html:49 msgid "Table" msgstr "テーブル" -#: netbox/templates/account/preferences.html:50 +#: templates/account/preferences.html:50 msgid "Ordering" msgstr "注文" -#: netbox/templates/account/preferences.html:51 +#: templates/account/preferences.html:51 msgid "Columns" msgstr "列" -#: netbox/templates/account/preferences.html:71 -#: netbox/templates/dcim/cable_trace.html:113 -#: netbox/templates/extras/object_configcontext.html:43 +#: templates/account/preferences.html:71 templates/dcim/cable_trace.html:113 +#: templates/extras/object_configcontext.html:43 msgid "None found" msgstr "何も見つかりませんでした" -#: netbox/templates/account/profile.html:6 +#: templates/account/profile.html:6 msgid "User Profile" msgstr "ユーザプロフィール" -#: netbox/templates/account/profile.html:12 +#: templates/account/profile.html:12 msgid "Account Details" msgstr "アカウント詳細" -#: netbox/templates/account/profile.html:29 -#: netbox/templates/tenancy/contact.html:43 -#: netbox/templates/users/user.html:25 netbox/tenancy/forms/bulk_edit.py:109 +#: templates/account/profile.html:29 templates/tenancy/contact.html:43 +#: templates/users/user.html:25 tenancy/forms/bulk_edit.py:109 msgid "Email" msgstr "メール" -#: netbox/templates/account/profile.html:33 -#: netbox/templates/users/user.html:29 +#: templates/account/profile.html:33 templates/users/user.html:29 msgid "Account Created" msgstr "アカウント作成日時" -#: netbox/templates/account/profile.html:37 -#: netbox/templates/users/user.html:33 +#: templates/account/profile.html:37 templates/users/user.html:33 msgid "Last Login" msgstr "最終ログイン" -#: netbox/templates/account/profile.html:41 -#: netbox/templates/users/user.html:45 +#: templates/account/profile.html:41 templates/users/user.html:45 msgid "Superuser" msgstr "スーパーユーザ" -#: netbox/templates/account/profile.html:45 -#: netbox/templates/inc/user_menu.html:31 netbox/templates/users/user.html:41 +#: templates/account/profile.html:45 templates/inc/user_menu.html:31 +#: templates/users/user.html:41 msgid "Staff" msgstr "スタッフ" -#: netbox/templates/account/profile.html:53 -#: netbox/templates/users/objectpermission.html:82 -#: netbox/templates/users/user.html:53 +#: templates/account/profile.html:53 templates/users/objectpermission.html:82 +#: templates/users/user.html:53 msgid "Assigned Groups" msgstr "割当グループ" -#: netbox/templates/account/profile.html:58 -#: netbox/templates/circuits/circuit_terminations_swap.html:18 -#: netbox/templates/circuits/circuit_terminations_swap.html:26 -#: netbox/templates/circuits/circuittermination.html:34 -#: netbox/templates/circuits/inc/circuit_termination.html:68 -#: netbox/templates/core/objectchange.html:124 -#: netbox/templates/core/objectchange.html:142 -#: netbox/templates/dcim/devicebay.html:59 -#: netbox/templates/dcim/inc/panels/inventory_items.html:45 -#: netbox/templates/dcim/interface.html:296 -#: netbox/templates/dcim/modulebay.html:80 -#: netbox/templates/extras/configcontext.html:70 -#: netbox/templates/extras/eventrule.html:66 -#: netbox/templates/extras/htmx/script_result.html:60 -#: netbox/templates/extras/webhook.html:65 -#: netbox/templates/extras/webhook.html:75 -#: netbox/templates/inc/panel_table.html:13 -#: netbox/templates/inc/panels/comments.html:10 -#: netbox/templates/ipam/inc/panels/fhrp_groups.html:56 -#: netbox/templates/users/group.html:34 netbox/templates/users/group.html:44 -#: netbox/templates/users/objectpermission.html:77 -#: netbox/templates/users/objectpermission.html:87 -#: netbox/templates/users/user.html:58 netbox/templates/users/user.html:68 +#: templates/account/profile.html:58 +#: templates/circuits/circuit_terminations_swap.html:18 +#: templates/circuits/circuit_terminations_swap.html:26 +#: templates/circuits/circuittermination.html:34 +#: templates/circuits/inc/circuit_termination.html:68 +#: templates/core/objectchange.html:124 templates/core/objectchange.html:142 +#: templates/dcim/devicebay.html:59 +#: templates/dcim/inc/panels/inventory_items.html:45 +#: templates/dcim/interface.html:296 templates/dcim/modulebay.html:80 +#: templates/extras/configcontext.html:70 templates/extras/eventrule.html:66 +#: templates/extras/htmx/script_result.html:60 +#: templates/extras/webhook.html:65 templates/extras/webhook.html:75 +#: templates/inc/panel_table.html:13 templates/inc/panels/comments.html:10 +#: templates/ipam/inc/panels/fhrp_groups.html:56 templates/users/group.html:34 +#: templates/users/group.html:44 templates/users/objectpermission.html:77 +#: templates/users/objectpermission.html:87 templates/users/user.html:58 +#: templates/users/user.html:68 msgid "None" msgstr "なし" -#: netbox/templates/account/profile.html:68 -#: netbox/templates/users/user.html:78 +#: templates/account/profile.html:68 templates/users/user.html:78 msgid "Recent Activity" msgstr "最近のアクティビティ" -#: netbox/templates/account/token.html:8 -#: netbox/templates/account/token_list.html:6 +#: templates/account/token.html:8 templates/account/token_list.html:6 msgid "My API Tokens" msgstr "マイ API トークン" -#: netbox/templates/account/token.html:11 -#: netbox/templates/account/token.html:19 netbox/templates/users/token.html:6 -#: netbox/templates/users/token.html:14 netbox/users/forms/filtersets.py:120 +#: templates/account/token.html:11 templates/account/token.html:19 +#: templates/users/token.html:6 templates/users/token.html:14 +#: users/forms/filtersets.py:120 msgid "Token" msgstr "トークン" -#: netbox/templates/account/token.html:39 netbox/templates/users/token.html:31 -#: netbox/users/forms/bulk_edit.py:107 +#: templates/account/token.html:39 templates/users/token.html:31 +#: users/forms/bulk_edit.py:107 msgid "Write enabled" msgstr "書き込み可能" -#: netbox/templates/account/token.html:51 netbox/templates/users/token.html:43 +#: templates/account/token.html:51 templates/users/token.html:43 msgid "Last used" msgstr "最終使用日" -#: netbox/templates/account/token_list.html:12 +#: templates/account/token_list.html:12 msgid "Add a Token" msgstr "トークンを追加" -#: netbox/templates/base/base.html:22 netbox/templates/home.html:27 +#: templates/base/base.html:22 templates/home.html:27 msgid "Home" msgstr "ホーム" -#: netbox/templates/base/layout.html:25 +#: templates/base/layout.html:25 msgid "NetBox Motif" msgstr "ネットボックスモチーフ" -#: netbox/templates/base/layout.html:38 netbox/templates/base/layout.html:39 -#: netbox/templates/login.html:14 netbox/templates/login.html:15 +#: templates/base/layout.html:38 templates/base/layout.html:39 +#: templates/login.html:14 templates/login.html:15 msgid "NetBox Logo" msgstr "NetBoxロゴ" -#: netbox/templates/base/layout.html:150 netbox/templates/base/layout.html:151 +#: templates/base/layout.html:150 templates/base/layout.html:151 msgid "Docs" msgstr "ドキュメント" -#: netbox/templates/base/layout.html:156 netbox/templates/base/layout.html:157 -#: netbox/templates/rest_framework/api.html:10 +#: templates/base/layout.html:156 templates/base/layout.html:157 +#: templates/rest_framework/api.html:10 msgid "REST API" msgstr "REST API" -#: netbox/templates/base/layout.html:162 netbox/templates/base/layout.html:163 +#: templates/base/layout.html:162 templates/base/layout.html:163 msgid "REST API documentation" msgstr "REST API ドキュメント" -#: netbox/templates/base/layout.html:169 netbox/templates/base/layout.html:170 +#: templates/base/layout.html:169 templates/base/layout.html:170 msgid "GraphQL API" msgstr "GraphQL API" -#: netbox/templates/base/layout.html:185 netbox/templates/base/layout.html:186 +#: templates/base/layout.html:185 templates/base/layout.html:186 msgid "NetBox Labs Support" msgstr "ネットボックスラボサポート" -#: netbox/templates/base/layout.html:194 netbox/templates/base/layout.html:195 +#: templates/base/layout.html:194 templates/base/layout.html:195 msgid "Source Code" msgstr "ソースコード" -#: netbox/templates/base/layout.html:200 netbox/templates/base/layout.html:201 +#: templates/base/layout.html:200 templates/base/layout.html:201 msgid "Community" msgstr "コミュニティ" -#: netbox/templates/circuits/circuit.html:47 +#: templates/circuits/circuit.html:47 msgid "Install Date" msgstr "インストール日" -#: netbox/templates/circuits/circuit.html:51 +#: templates/circuits/circuit.html:51 msgid "Termination Date" msgstr "終端日" -#: netbox/templates/circuits/circuit.html:70 -#: netbox/templates/ipam/inc/panels/fhrp_groups.html:15 +#: templates/circuits/circuit.html:70 +#: templates/ipam/inc/panels/fhrp_groups.html:15 msgid "Assign Group" msgstr "グループを割り当て" -#: netbox/templates/circuits/circuit_terminations_swap.html:4 +#: templates/circuits/circuit_terminations_swap.html:4 msgid "Swap Circuit Terminations" msgstr "回線終端を交換する" -#: netbox/templates/circuits/circuit_terminations_swap.html:8 +#: templates/circuits/circuit_terminations_swap.html:8 #, python-format msgid "Swap these terminations for circuit %(circuit)s?" msgstr "回線%(circuit)sの終端を交換しますか?" -#: netbox/templates/circuits/circuit_terminations_swap.html:14 +#: templates/circuits/circuit_terminations_swap.html:14 msgid "A side" msgstr "Aサイド" -#: netbox/templates/circuits/circuit_terminations_swap.html:22 +#: templates/circuits/circuit_terminations_swap.html:22 msgid "Z side" msgstr "Z サイド" -#: netbox/templates/circuits/circuitgroup.html:16 +#: templates/circuits/circuitgroup.html:16 msgid "Assign Circuit" msgstr "回路を割り当て" -#: netbox/templates/circuits/circuitgroupassignment.html:19 +#: templates/circuits/circuitgroupassignment.html:19 msgid "Circuit Group Assignment" msgstr "回路グループ割り当て" -#: netbox/templates/circuits/circuittype.html:10 +#: templates/circuits/circuittype.html:10 msgid "Add Circuit" msgstr "回線を追加" -#: netbox/templates/circuits/circuittype.html:19 +#: templates/circuits/circuittype.html:19 msgid "Circuit Type" msgstr "回線タイプ" -#: netbox/templates/circuits/inc/circuit_termination.html:10 -#: netbox/templates/dcim/devicetype/component_templates.html:33 -#: netbox/templates/dcim/manufacturer.html:11 -#: netbox/templates/dcim/moduletype/component_templates.html:29 -#: netbox/templates/generic/bulk_add_component.html:22 -#: netbox/templates/users/objectpermission.html:38 -#: netbox/utilities/templates/buttons/add.html:4 -#: netbox/utilities/templates/helpers/table_config_form.html:20 +#: templates/circuits/inc/circuit_termination.html:10 +#: templates/dcim/manufacturer.html:11 +#: templates/generic/bulk_add_component.html:22 +#: templates/users/objectpermission.html:38 +#: utilities/templates/buttons/add.html:4 +#: utilities/templates/helpers/table_config_form.html:20 msgid "Add" msgstr "追加" -#: netbox/templates/circuits/inc/circuit_termination.html:15 -#: netbox/templates/circuits/inc/circuit_termination_fields.html:36 -#: netbox/templates/dcim/inc/panels/inventory_items.html:32 -#: netbox/templates/dcim/moduletype/component_templates.html:20 -#: netbox/templates/dcim/powerpanel.html:56 -#: netbox/templates/extras/script_list.html:30 -#: netbox/templates/generic/object_edit.html:47 -#: netbox/templates/ipam/inc/ipaddress_edit_header.html:7 -#: netbox/templates/ipam/inc/panels/fhrp_groups.html:43 -#: netbox/utilities/templates/buttons/edit.html:3 +#: templates/circuits/inc/circuit_termination.html:15 +#: templates/circuits/inc/circuit_termination_fields.html:36 +#: templates/dcim/inc/panels/inventory_items.html:32 +#: templates/dcim/powerpanel.html:56 templates/extras/script_list.html:30 +#: templates/generic/object_edit.html:47 +#: templates/ipam/inc/ipaddress_edit_header.html:7 +#: templates/ipam/inc/panels/fhrp_groups.html:43 +#: utilities/templates/buttons/edit.html:3 msgid "Edit" msgstr "編集" -#: netbox/templates/circuits/inc/circuit_termination.html:18 +#: templates/circuits/inc/circuit_termination.html:18 msgid "Swap" msgstr "スワップ" -#: netbox/templates/circuits/inc/circuit_termination_fields.html:19 -#: netbox/templates/dcim/consoleport.html:59 -#: netbox/templates/dcim/consoleserverport.html:60 -#: netbox/templates/dcim/powerfeed.html:114 +#: templates/circuits/inc/circuit_termination_fields.html:19 +#: templates/dcim/consoleport.html:59 templates/dcim/consoleserverport.html:60 +#: templates/dcim/powerfeed.html:114 msgid "Marked as connected" msgstr "接続済みとしてマークされています" -#: netbox/templates/circuits/inc/circuit_termination_fields.html:21 +#: templates/circuits/inc/circuit_termination_fields.html:21 msgid "to" msgstr "に" -#: netbox/templates/circuits/inc/circuit_termination_fields.html:31 -#: netbox/templates/circuits/inc/circuit_termination_fields.html:32 -#: netbox/templates/dcim/frontport.html:80 -#: netbox/templates/dcim/inc/connection_endpoints.html:7 -#: netbox/templates/dcim/interface.html:154 -#: netbox/templates/dcim/rearport.html:76 +#: templates/circuits/inc/circuit_termination_fields.html:31 +#: templates/circuits/inc/circuit_termination_fields.html:32 +#: templates/dcim/frontport.html:80 +#: templates/dcim/inc/connection_endpoints.html:7 +#: templates/dcim/interface.html:154 templates/dcim/rearport.html:76 msgid "Trace" msgstr "トレース" -#: netbox/templates/circuits/inc/circuit_termination_fields.html:35 +#: templates/circuits/inc/circuit_termination_fields.html:35 msgid "Edit cable" msgstr "ケーブル編集" -#: netbox/templates/circuits/inc/circuit_termination_fields.html:40 +#: templates/circuits/inc/circuit_termination_fields.html:40 msgid "Remove cable" msgstr "ケーブルを取り外す" -#: netbox/templates/circuits/inc/circuit_termination_fields.html:41 -#: netbox/templates/dcim/bulk_disconnect.html:5 -#: netbox/templates/dcim/device/consoleports.html:12 -#: netbox/templates/dcim/device/consoleserverports.html:12 -#: netbox/templates/dcim/device/frontports.html:12 -#: netbox/templates/dcim/device/interfaces.html:16 -#: netbox/templates/dcim/device/poweroutlets.html:12 -#: netbox/templates/dcim/device/powerports.html:12 -#: netbox/templates/dcim/device/rearports.html:12 -#: netbox/templates/dcim/powerpanel.html:61 +#: templates/circuits/inc/circuit_termination_fields.html:41 +#: templates/dcim/bulk_disconnect.html:5 +#: templates/dcim/device/consoleports.html:12 +#: templates/dcim/device/consoleserverports.html:12 +#: templates/dcim/device/frontports.html:12 +#: templates/dcim/device/interfaces.html:16 +#: templates/dcim/device/poweroutlets.html:12 +#: templates/dcim/device/powerports.html:12 +#: templates/dcim/device/rearports.html:12 templates/dcim/powerpanel.html:61 msgid "Disconnect" msgstr "接続解除" -#: netbox/templates/circuits/inc/circuit_termination_fields.html:48 -#: netbox/templates/dcim/consoleport.html:69 -#: netbox/templates/dcim/consoleserverport.html:70 -#: netbox/templates/dcim/frontport.html:102 -#: netbox/templates/dcim/interface.html:180 -#: netbox/templates/dcim/interface.html:200 -#: netbox/templates/dcim/powerfeed.html:127 -#: netbox/templates/dcim/poweroutlet.html:71 -#: netbox/templates/dcim/poweroutlet.html:72 -#: netbox/templates/dcim/powerport.html:73 -#: netbox/templates/dcim/rearport.html:98 +#: templates/circuits/inc/circuit_termination_fields.html:48 +#: templates/dcim/consoleport.html:69 templates/dcim/consoleserverport.html:70 +#: templates/dcim/frontport.html:102 templates/dcim/interface.html:180 +#: templates/dcim/interface.html:200 templates/dcim/powerfeed.html:127 +#: templates/dcim/poweroutlet.html:71 templates/dcim/poweroutlet.html:72 +#: templates/dcim/powerport.html:73 templates/dcim/rearport.html:98 msgid "Connect" msgstr "接続" -#: netbox/templates/circuits/inc/circuit_termination_fields.html:70 +#: templates/circuits/inc/circuit_termination_fields.html:70 msgid "Downstream" msgstr "ダウンストリーム" -#: netbox/templates/circuits/inc/circuit_termination_fields.html:71 +#: templates/circuits/inc/circuit_termination_fields.html:71 msgid "Upstream" msgstr "アップストリーム" -#: netbox/templates/circuits/inc/circuit_termination_fields.html:80 +#: templates/circuits/inc/circuit_termination_fields.html:80 msgid "Cross-Connect" msgstr "クロスコネクト" -#: netbox/templates/circuits/inc/circuit_termination_fields.html:84 +#: templates/circuits/inc/circuit_termination_fields.html:84 msgid "Patch Panel/Port" msgstr "パッチパネル/ポート" -#: netbox/templates/circuits/provider.html:11 +#: templates/circuits/provider.html:11 msgid "Add circuit" msgstr "回線を追加" -#: netbox/templates/circuits/provideraccount.html:17 +#: templates/circuits/provideraccount.html:17 msgid "Provider Account" msgstr "プロバイダアカウント" -#: netbox/templates/core/configrevision.html:35 +#: templates/core/configrevision.html:35 msgid "Configuration Data" msgstr "設定データ" -#: netbox/templates/core/configrevision.html:40 +#: templates/core/configrevision.html:40 msgid "Comment" msgstr "コメント" -#: netbox/templates/core/configrevision_restore.html:8 -#: netbox/templates/core/configrevision_restore.html:25 -#: netbox/templates/core/configrevision_restore.html:64 +#: templates/core/configrevision_restore.html:8 +#: templates/core/configrevision_restore.html:25 +#: templates/core/configrevision_restore.html:64 msgid "Restore" msgstr "復元" -#: netbox/templates/core/configrevision_restore.html:36 +#: templates/core/configrevision_restore.html:36 msgid "Parameter" msgstr "パラメータ" -#: netbox/templates/core/configrevision_restore.html:37 +#: templates/core/configrevision_restore.html:37 msgid "Current Value" msgstr "現在の値" -#: netbox/templates/core/configrevision_restore.html:38 +#: templates/core/configrevision_restore.html:38 msgid "New Value" msgstr "新しい値" -#: netbox/templates/core/configrevision_restore.html:50 +#: templates/core/configrevision_restore.html:50 msgid "Changed" msgstr "変更日" -#: netbox/templates/core/datafile.html:42 -#: netbox/templates/ipam/iprange.html:25 -#: netbox/templates/virtualization/virtualdisk.html:29 -#: netbox/virtualization/tables/virtualmachines.py:198 +#: templates/core/datafile.html:42 templates/ipam/iprange.html:25 +#: templates/virtualization/virtualdisk.html:29 +#: virtualization/tables/virtualmachines.py:198 msgid "Size" msgstr "サイズ" -#: netbox/templates/core/datafile.html:43 +#: templates/core/datafile.html:43 msgid "bytes" msgstr "バイト" -#: netbox/templates/core/datafile.html:46 +#: templates/core/datafile.html:46 msgid "SHA256 Hash" msgstr "SHA256 ハッシュ" -#: netbox/templates/core/datasource.html:14 -#: netbox/templates/core/datasource.html:20 -#: netbox/utilities/templates/buttons/sync.html:5 +#: templates/core/datasource.html:14 templates/core/datasource.html:20 +#: utilities/templates/buttons/sync.html:5 msgid "Sync" msgstr "同期" -#: netbox/templates/core/datasource.html:50 +#: templates/core/datasource.html:50 msgid "Last synced" msgstr "最終同期" -#: netbox/templates/core/datasource.html:84 +#: templates/core/datasource.html:84 msgid "Backend" msgstr "バックエンド" -#: netbox/templates/core/datasource.html:99 +#: templates/core/datasource.html:99 msgid "No parameters defined" msgstr "パラメータが定義されていません" -#: netbox/templates/core/datasource.html:114 +#: templates/core/datasource.html:114 msgid "Files" msgstr "ファイル" -#: netbox/templates/core/inc/config_data.html:7 +#: templates/core/inc/config_data.html:7 msgid "Rack elevations" msgstr "ラック図" -#: netbox/templates/core/inc/config_data.html:10 +#: templates/core/inc/config_data.html:10 msgid "Default unit height" msgstr "既定のユニット高さ" -#: netbox/templates/core/inc/config_data.html:14 +#: templates/core/inc/config_data.html:14 msgid "Default unit width" msgstr "既定のユニット幅" -#: netbox/templates/core/inc/config_data.html:20 +#: templates/core/inc/config_data.html:20 msgid "Power feeds" msgstr "電源タップ" -#: netbox/templates/core/inc/config_data.html:23 +#: templates/core/inc/config_data.html:23 msgid "Default voltage" msgstr "既定の電圧" -#: netbox/templates/core/inc/config_data.html:27 +#: templates/core/inc/config_data.html:27 msgid "Default amperage" msgstr "既定のアンペア数" -#: netbox/templates/core/inc/config_data.html:31 +#: templates/core/inc/config_data.html:31 msgid "Default max utilization" msgstr "既定の最大使用率" -#: netbox/templates/core/inc/config_data.html:40 +#: templates/core/inc/config_data.html:40 msgid "Enforce global unique" msgstr "グローバルユニークを強制" -#: netbox/templates/core/inc/config_data.html:83 +#: templates/core/inc/config_data.html:83 msgid "Paginate count" msgstr "ページ分割数" -#: netbox/templates/core/inc/config_data.html:87 +#: templates/core/inc/config_data.html:87 msgid "Max page size" msgstr "最大ページサイズ" -#: netbox/templates/core/inc/config_data.html:114 +#: templates/core/inc/config_data.html:114 msgid "User preferences" msgstr "ユーザープリファレンス" -#: netbox/templates/core/inc/config_data.html:141 +#: templates/core/inc/config_data.html:141 msgid "Job retention" msgstr "仕事の維持" -#: netbox/templates/core/job.html:35 netbox/templates/core/rq_task.html:12 -#: netbox/templates/core/rq_task.html:49 netbox/templates/core/rq_task.html:58 +#: templates/core/job.html:35 templates/core/rq_task.html:12 +#: templates/core/rq_task.html:49 templates/core/rq_task.html:58 msgid "Job" msgstr "ジョブ" -#: netbox/templates/core/job.html:58 -#: netbox/templates/extras/journalentry.html:26 +#: templates/core/job.html:58 templates/extras/journalentry.html:26 msgid "Created By" msgstr "作成者" -#: netbox/templates/core/job.html:66 +#: templates/core/job.html:66 msgid "Scheduling" msgstr "スケジューリング" -#: netbox/templates/core/job.html:77 +#: templates/core/job.html:77 #, python-format msgid "every %(interval)s minutes" msgstr "ごと %(interval)s 分" -#: netbox/templates/core/objectchange.html:29 -#: netbox/templates/users/objectpermission.html:42 +#: templates/core/objectchange.html:29 +#: templates/users/objectpermission.html:42 msgid "Change" msgstr "変更" -#: netbox/templates/core/objectchange.html:79 +#: templates/core/objectchange.html:79 msgid "Difference" msgstr "差分" -#: netbox/templates/core/objectchange.html:82 +#: templates/core/objectchange.html:82 msgid "Previous" msgstr "前へ" -#: netbox/templates/core/objectchange.html:85 +#: templates/core/objectchange.html:85 msgid "Next" msgstr "次へ" -#: netbox/templates/core/objectchange.html:93 +#: templates/core/objectchange.html:93 msgid "Object Created" msgstr "オブジェクトが作成されました" -#: netbox/templates/core/objectchange.html:95 +#: templates/core/objectchange.html:95 msgid "Object Deleted" msgstr "オブジェクトは削除されました" -#: netbox/templates/core/objectchange.html:97 +#: templates/core/objectchange.html:97 msgid "No Changes" msgstr "変更なし" -#: netbox/templates/core/objectchange.html:111 +#: templates/core/objectchange.html:111 msgid "Pre-Change Data" msgstr "変更前データ" -#: netbox/templates/core/objectchange.html:122 +#: templates/core/objectchange.html:122 msgid "Warning: Comparing non-atomic change to previous change record" msgstr "警告:非アトミックな変更と以前の変更レコードの比較" -#: netbox/templates/core/objectchange.html:131 +#: templates/core/objectchange.html:131 msgid "Post-Change Data" msgstr "変更後のデータ" -#: netbox/templates/core/objectchange.html:162 +#: templates/core/objectchange.html:162 #, python-format msgid "See All %(count)s Changes" msgstr "すべて表示 %(count)s 変更点" -#: netbox/templates/core/objectchange_list.html:9 -#: netbox/templates/extras/object_changelog.html:15 +#: templates/core/objectchange_list.html:9 +#: templates/extras/object_changelog.html:15 msgid "Change log retention" msgstr "変更ログの保存" -#: netbox/templates/core/objectchange_list.html:9 -#: netbox/templates/extras/object_changelog.html:15 +#: templates/core/objectchange_list.html:9 +#: templates/extras/object_changelog.html:15 msgid "days" msgstr "日々" -#: netbox/templates/core/objectchange_list.html:9 -#: netbox/templates/extras/object_changelog.html:15 +#: templates/core/objectchange_list.html:9 +#: templates/extras/object_changelog.html:15 msgid "Indefinite" msgstr "無期限" -#: netbox/templates/core/plugin.html:21 +#: templates/core/plugin.html:22 msgid "Not installed" msgstr "未インストール" -#: netbox/templates/core/plugin.html:32 +#: templates/core/plugin.html:33 msgid "Overview" msgstr "概要" -#: netbox/templates/core/plugin.html:38 +#: templates/core/plugin.html:39 msgid "Install" msgstr "インストール" -#: netbox/templates/core/plugin.html:50 +#: templates/core/plugin.html:51 msgid "Plugin Details" msgstr "プラグイン詳細" -#: netbox/templates/core/plugin.html:57 +#: templates/core/plugin.html:58 msgid "Summary" msgstr "サマリー" -#: netbox/templates/core/plugin.html:75 +#: templates/core/plugin.html:76 msgid "License" msgstr "ライセンス" -#: netbox/templates/core/plugin.html:95 +#: templates/core/plugin.html:96 msgid "Version History" msgstr "バージョン履歴" -#: netbox/templates/core/plugin.html:106 +#: templates/core/plugin.html:107 msgid "Local Installation Instructions" msgstr "ローカルインストール手順" -#: netbox/templates/core/rq_queue_list.html:5 -#: netbox/templates/core/rq_queue_list.html:13 -#: netbox/templates/core/rq_task_list.html:14 -#: netbox/templates/core/rq_worker.html:7 +#: templates/core/rq_queue_list.html:5 templates/core/rq_queue_list.html:13 +#: templates/core/rq_task_list.html:14 templates/core/rq_worker.html:7 msgid "Background Queues" msgstr "バックグラウンドキュー" -#: netbox/templates/core/rq_queue_list.html:24 -#: netbox/templates/core/rq_queue_list.html:25 -#: netbox/templates/core/rq_worker_list.html:49 -#: netbox/templates/core/rq_worker_list.html:50 -#: netbox/templates/extras/script_result.html:67 -#: netbox/templates/extras/script_result.html:69 -#: netbox/templates/inc/table_controls_htmx.html:30 -#: netbox/templates/inc/table_controls_htmx.html:33 +#: templates/core/rq_queue_list.html:24 templates/core/rq_queue_list.html:25 +#: templates/core/rq_worker_list.html:49 templates/core/rq_worker_list.html:50 +#: templates/extras/script_result.html:67 +#: templates/extras/script_result.html:69 +#: templates/inc/table_controls_htmx.html:30 +#: templates/inc/table_controls_htmx.html:33 msgid "Configure Table" msgstr "テーブルを設定" -#: netbox/templates/core/rq_task.html:29 +#: templates/core/rq_task.html:29 msgid "Stop" msgstr "ストップ" -#: netbox/templates/core/rq_task.html:34 +#: templates/core/rq_task.html:34 msgid "Requeue" msgstr "リキュー" -#: netbox/templates/core/rq_task.html:39 +#: templates/core/rq_task.html:39 msgid "Enqueue" msgstr "エンキュー" -#: netbox/templates/core/rq_task.html:61 +#: templates/core/rq_task.html:61 msgid "Queue" msgstr "キュー" -#: netbox/templates/core/rq_task.html:65 +#: templates/core/rq_task.html:65 msgid "Timeout" msgstr "タイムアウト" -#: netbox/templates/core/rq_task.html:69 +#: templates/core/rq_task.html:69 msgid "Result TTL" msgstr "結果 TTL" -#: netbox/templates/core/rq_task.html:89 +#: templates/core/rq_task.html:89 msgid "Meta" msgstr "メタ" -#: netbox/templates/core/rq_task.html:93 +#: templates/core/rq_task.html:93 msgid "Arguments" msgstr "引数" -#: netbox/templates/core/rq_task.html:97 +#: templates/core/rq_task.html:97 msgid "Keyword Arguments" msgstr "キーワード引数" -#: netbox/templates/core/rq_task.html:103 +#: templates/core/rq_task.html:103 msgid "Depends on" msgstr "によって異なります" -#: netbox/templates/core/rq_task.html:109 +#: templates/core/rq_task.html:109 msgid "Exception" msgstr "例外" -#: netbox/templates/core/rq_task_list.html:28 +#: templates/core/rq_task_list.html:28 msgid "tasks in " msgstr "のタスク " -#: netbox/templates/core/rq_task_list.html:33 +#: templates/core/rq_task_list.html:33 msgid "Queued Jobs" msgstr "キューに入っているジョブ" -#: netbox/templates/core/rq_task_list.html:64 -#: netbox/templates/extras/script_result.html:86 +#: templates/core/rq_task_list.html:64 templates/extras/script_result.html:86 #, python-format msgid "" "Select all %(count)s %(object_type_plural)s matching query" msgstr "選択 すべて %(count)s %(object_type_plural)s マッチングクエリ" -#: netbox/templates/core/rq_worker.html:10 +#: templates/core/rq_worker.html:10 msgid "Worker Info" msgstr "労働者情報" -#: netbox/templates/core/rq_worker.html:31 -#: netbox/templates/core/rq_worker.html:40 +#: templates/core/rq_worker.html:31 templates/core/rq_worker.html:40 msgid "Worker" msgstr "ワーカー" -#: netbox/templates/core/rq_worker.html:55 +#: templates/core/rq_worker.html:55 msgid "Queues" msgstr "キュー" -#: netbox/templates/core/rq_worker.html:63 +#: templates/core/rq_worker.html:63 msgid "Curent Job" msgstr "現在の仕事" -#: netbox/templates/core/rq_worker.html:67 +#: templates/core/rq_worker.html:67 msgid "Successful job count" msgstr "成功したジョブ数" -#: netbox/templates/core/rq_worker.html:71 +#: templates/core/rq_worker.html:71 msgid "Failed job count" msgstr "失敗したジョブ数" -#: netbox/templates/core/rq_worker.html:75 +#: templates/core/rq_worker.html:75 msgid "Total working time" msgstr "総作業時間" -#: netbox/templates/core/rq_worker.html:76 +#: templates/core/rq_worker.html:76 msgid "seconds" msgstr "秒" -#: netbox/templates/core/rq_worker_list.html:13 -#: netbox/templates/core/rq_worker_list.html:21 +#: templates/core/rq_worker_list.html:13 templates/core/rq_worker_list.html:21 msgid "Background Workers" msgstr "バックグラウンドワーカー" -#: netbox/templates/core/rq_worker_list.html:29 +#: templates/core/rq_worker_list.html:29 #, python-format msgid "Workers in %(queue_name)s" msgstr "の労働者 %(queue_name)s" -#: netbox/templates/core/system.html:11 -#: netbox/utilities/templates/buttons/export.html:4 +#: templates/core/system.html:11 utilities/templates/buttons/export.html:4 msgid "Export" msgstr "エクスポート" -#: netbox/templates/core/system.html:28 +#: templates/core/system.html:28 msgid "System Status" msgstr "システムステータス" -#: netbox/templates/core/system.html:31 +#: templates/core/system.html:31 msgid "NetBox release" msgstr "ネットボックスリリース" -#: netbox/templates/core/system.html:44 +#: templates/core/system.html:44 msgid "Django version" msgstr "ジャンゴバージョン" -#: netbox/templates/core/system.html:48 +#: templates/core/system.html:48 msgid "PostgreSQL version" msgstr "PostgreSQL バージョン" -#: netbox/templates/core/system.html:52 +#: templates/core/system.html:52 msgid "Database name" msgstr "データベース名" -#: netbox/templates/core/system.html:56 +#: templates/core/system.html:56 msgid "Database size" msgstr "データベースサイズ" -#: netbox/templates/core/system.html:61 +#: templates/core/system.html:61 msgid "Unavailable" msgstr "ご利用いただけません" -#: netbox/templates/core/system.html:66 +#: templates/core/system.html:66 msgid "RQ workers" msgstr "RQ ワーカー" -#: netbox/templates/core/system.html:69 +#: templates/core/system.html:69 msgid "default queue" msgstr "デフォルトキュー" -#: netbox/templates/core/system.html:73 +#: templates/core/system.html:73 msgid "System time" msgstr "システムタイム" -#: netbox/templates/core/system.html:85 +#: templates/core/system.html:85 msgid "Current Configuration" msgstr "現在の構成" -#: netbox/templates/dcim/bulk_disconnect.html:9 +#: templates/dcim/bulk_disconnect.html:9 #, python-format msgid "" "Are you sure you want to disconnect these %(count)s %(obj_type_plural)s?" msgstr "これらを切断してもよろしいですか %(count)s %(obj_type_plural)s?" -#: netbox/templates/dcim/cable_trace.html:10 +#: templates/dcim/cable_trace.html:10 #, python-format msgid "Cable Trace for %(object_type)s %(object)s" msgstr "用ケーブルトレース %(object_type)s %(object)s" -#: netbox/templates/dcim/cable_trace.html:24 -#: netbox/templates/dcim/inc/rack_elevation.html:7 +#: templates/dcim/cable_trace.html:24 templates/dcim/inc/rack_elevation.html:7 msgid "Download SVG" msgstr "SVG をダウンロード" -#: netbox/templates/dcim/cable_trace.html:30 +#: templates/dcim/cable_trace.html:30 msgid "Asymmetric Path" msgstr "非対称パス" -#: netbox/templates/dcim/cable_trace.html:31 +#: templates/dcim/cable_trace.html:31 msgid "The nodes below have no links and result in an asymmetric path" msgstr "以下のノードにはリンクがなく、パスが非対称になっています" -#: netbox/templates/dcim/cable_trace.html:38 +#: templates/dcim/cable_trace.html:38 msgid "Path split" msgstr "パススプリット" -#: netbox/templates/dcim/cable_trace.html:39 +#: templates/dcim/cable_trace.html:39 msgid "Select a node below to continue" msgstr "続行するには以下のノードを選択してください" -#: netbox/templates/dcim/cable_trace.html:55 +#: templates/dcim/cable_trace.html:55 msgid "Trace Completed" msgstr "トレース完了" -#: netbox/templates/dcim/cable_trace.html:58 +#: templates/dcim/cable_trace.html:58 msgid "Total segments" msgstr "合計セグメント" -#: netbox/templates/dcim/cable_trace.html:62 +#: templates/dcim/cable_trace.html:62 msgid "Total length" msgstr "全長" -#: netbox/templates/dcim/cable_trace.html:77 +#: templates/dcim/cable_trace.html:77 msgid "No paths found" msgstr "パスが見つかりません" -#: netbox/templates/dcim/cable_trace.html:85 +#: templates/dcim/cable_trace.html:85 msgid "Related Paths" msgstr "関連パス" -#: netbox/templates/dcim/cable_trace.html:89 +#: templates/dcim/cable_trace.html:89 msgid "Origin" msgstr "オリジン" -#: netbox/templates/dcim/cable_trace.html:90 +#: templates/dcim/cable_trace.html:90 msgid "Destination" msgstr "目的地" -#: netbox/templates/dcim/cable_trace.html:91 +#: templates/dcim/cable_trace.html:91 msgid "Segments" msgstr "セグメント" -#: netbox/templates/dcim/cable_trace.html:104 +#: templates/dcim/cable_trace.html:104 msgid "Incomplete" msgstr "不完全" -#: netbox/templates/dcim/component_list.html:14 +#: templates/dcim/component_list.html:14 msgid "Rename Selected" msgstr "選択項目の名前を変更" -#: netbox/templates/dcim/consoleport.html:65 -#: netbox/templates/dcim/consoleserverport.html:66 -#: netbox/templates/dcim/frontport.html:98 -#: netbox/templates/dcim/interface.html:176 -#: netbox/templates/dcim/poweroutlet.html:69 -#: netbox/templates/dcim/powerport.html:69 +#: templates/dcim/consoleport.html:65 templates/dcim/consoleserverport.html:66 +#: templates/dcim/frontport.html:98 templates/dcim/interface.html:176 +#: templates/dcim/poweroutlet.html:69 templates/dcim/powerport.html:69 msgid "Not Connected" msgstr "未接続" -#: netbox/templates/dcim/device.html:34 +#: templates/dcim/device.html:34 msgid "Highlight device in rack" msgstr "ラック内のデバイスを強調表示" -#: netbox/templates/dcim/device.html:55 +#: templates/dcim/device.html:55 msgid "Not racked" msgstr "ラックなし" -#: netbox/templates/dcim/device.html:62 netbox/templates/dcim/site.html:94 +#: templates/dcim/device.html:62 templates/dcim/site.html:94 msgid "GPS Coordinates" msgstr "GPS 座標" -#: netbox/templates/dcim/device.html:68 netbox/templates/dcim/site.html:81 -#: netbox/templates/dcim/site.html:100 +#: templates/dcim/device.html:68 templates/dcim/site.html:81 +#: templates/dcim/site.html:100 msgid "Map" msgstr "マップ" -#: netbox/templates/dcim/device.html:108 -#: netbox/templates/dcim/inventoryitem.html:56 -#: netbox/templates/dcim/module.html:81 -#: netbox/templates/dcim/modulebay.html:74 netbox/templates/dcim/rack.html:61 +#: templates/dcim/device.html:108 templates/dcim/inventoryitem.html:56 +#: templates/dcim/module.html:81 templates/dcim/modulebay.html:74 +#: templates/dcim/rack.html:61 msgid "Asset Tag" msgstr "アセットタグ" -#: netbox/templates/dcim/device.html:123 +#: templates/dcim/device.html:123 msgid "View Virtual Chassis" msgstr "バーチャルシャーシを見る" -#: netbox/templates/dcim/device.html:164 +#: templates/dcim/device.html:164 msgid "Create VDC" msgstr "VDC の作成" -#: netbox/templates/dcim/device.html:175 -#: netbox/templates/dcim/device_edit.html:64 -#: netbox/virtualization/forms/model_forms.py:223 +#: templates/dcim/device.html:175 templates/dcim/device_edit.html:64 +#: virtualization/forms/model_forms.py:223 msgid "Management" msgstr "マネジメント" -#: netbox/templates/dcim/device.html:195 netbox/templates/dcim/device.html:211 -#: netbox/templates/dcim/device.html:227 -#: netbox/templates/virtualization/virtualmachine.html:57 -#: netbox/templates/virtualization/virtualmachine.html:73 +#: templates/dcim/device.html:195 templates/dcim/device.html:211 +#: templates/dcim/device.html:227 +#: templates/virtualization/virtualmachine.html:57 +#: templates/virtualization/virtualmachine.html:73 msgid "NAT for" msgstr "用の NAT" -#: netbox/templates/dcim/device.html:197 netbox/templates/dcim/device.html:213 -#: netbox/templates/dcim/device.html:229 -#: netbox/templates/virtualization/virtualmachine.html:59 -#: netbox/templates/virtualization/virtualmachine.html:75 +#: templates/dcim/device.html:197 templates/dcim/device.html:213 +#: templates/dcim/device.html:229 +#: templates/virtualization/virtualmachine.html:59 +#: templates/virtualization/virtualmachine.html:75 msgid "NAT" msgstr "ナット" -#: netbox/templates/dcim/device.html:252 netbox/templates/dcim/rack.html:73 +#: templates/dcim/device.html:252 templates/dcim/rack.html:73 msgid "Power Utilization" msgstr "電力使用率" -#: netbox/templates/dcim/device.html:256 +#: templates/dcim/device.html:256 msgid "Input" msgstr "入力" -#: netbox/templates/dcim/device.html:257 +#: templates/dcim/device.html:257 msgid "Outlets" msgstr "アウトレット" -#: netbox/templates/dcim/device.html:258 +#: templates/dcim/device.html:258 msgid "Allocated" msgstr "割り当て済み" -#: netbox/templates/dcim/device.html:268 netbox/templates/dcim/device.html:270 -#: netbox/templates/dcim/device.html:286 -#: netbox/templates/dcim/powerfeed.html:67 +#: templates/dcim/device.html:268 templates/dcim/device.html:270 +#: templates/dcim/device.html:286 templates/dcim/powerfeed.html:67 msgid "VA" msgstr "VA" -#: netbox/templates/dcim/device.html:280 +#: templates/dcim/device.html:280 msgctxt "Leg of a power feed" msgid "Leg" msgstr "レッグ" -#: netbox/templates/dcim/device.html:306 -#: netbox/templates/virtualization/virtualmachine.html:158 +#: templates/dcim/device.html:306 +#: templates/virtualization/virtualmachine.html:158 msgid "Add a service" msgstr "サービスを追加" -#: netbox/templates/dcim/device/base.html:21 -#: netbox/templates/dcim/device_list.html:9 -#: netbox/templates/dcim/devicetype/base.html:18 -#: netbox/templates/dcim/module.html:18 -#: netbox/templates/dcim/moduletype/base.html:18 -#: netbox/templates/virtualization/virtualmachine/base.html:22 -#: netbox/templates/virtualization/virtualmachine_list.html:8 +#: templates/dcim/device/base.html:21 templates/dcim/device_list.html:9 +#: templates/dcim/devicetype/base.html:18 +#: templates/dcim/inc/moduletype_buttons.html:9 templates/dcim/module.html:18 +#: templates/virtualization/virtualmachine/base.html:22 +#: templates/virtualization/virtualmachine_list.html:8 msgid "Add Components" msgstr "構成要素を追加" -#: netbox/templates/dcim/device/consoleports.html:24 +#: templates/dcim/device/consoleports.html:24 msgid "Add Console Ports" msgstr "コンソールポートの追加" -#: netbox/templates/dcim/device/consoleserverports.html:24 +#: templates/dcim/device/consoleserverports.html:24 msgid "Add Console Server Ports" msgstr "コンソールサーバポートの追加" -#: netbox/templates/dcim/device/devicebays.html:10 +#: templates/dcim/device/devicebays.html:10 msgid "Add Device Bays" msgstr "デバイスベイの追加" -#: netbox/templates/dcim/device/frontports.html:24 +#: templates/dcim/device/frontports.html:24 msgid "Add Front Ports" msgstr "前面ポートを追加" -#: netbox/templates/dcim/device/inc/interface_table_controls.html:9 +#: templates/dcim/device/inc/interface_table_controls.html:9 msgid "Hide Enabled" msgstr "非表示有効" -#: netbox/templates/dcim/device/inc/interface_table_controls.html:10 +#: templates/dcim/device/inc/interface_table_controls.html:10 msgid "Hide Disabled" msgstr "非表示無効" -#: netbox/templates/dcim/device/inc/interface_table_controls.html:11 +#: templates/dcim/device/inc/interface_table_controls.html:11 msgid "Hide Virtual" msgstr "バーチャルを非表示" -#: netbox/templates/dcim/device/inc/interface_table_controls.html:12 +#: templates/dcim/device/inc/interface_table_controls.html:12 msgid "Hide Disconnected" msgstr "接続解除を非表示" -#: netbox/templates/dcim/device/interfaces.html:27 +#: templates/dcim/device/interfaces.html:27 msgid "Add Interfaces" msgstr "インタフェースを追加" -#: netbox/templates/dcim/device/inventory.html:10 -#: netbox/templates/dcim/inc/panels/inventory_items.html:10 +#: templates/dcim/device/inventory.html:10 +#: templates/dcim/inc/panels/inventory_items.html:10 msgid "Add Inventory Item" msgstr "在庫品目の追加" -#: netbox/templates/dcim/device/modulebays.html:10 +#: templates/dcim/device/modulebays.html:10 msgid "Add Module Bays" msgstr "モジュールベイの追加" -#: netbox/templates/dcim/device/poweroutlets.html:24 +#: templates/dcim/device/poweroutlets.html:24 msgid "Add Power Outlets" msgstr "電源コンセントの追加" -#: netbox/templates/dcim/device/powerports.html:24 +#: templates/dcim/device/powerports.html:24 msgid "Add Power Port" msgstr "電源ポートを追加" -#: netbox/templates/dcim/device/rearports.html:24 +#: templates/dcim/device/rearports.html:24 msgid "Add Rear Ports" msgstr "背面ポートを追加" -#: netbox/templates/dcim/device/render_config.html:5 -#: netbox/templates/virtualization/virtualmachine/render_config.html:5 +#: templates/dcim/device/render_config.html:5 +#: templates/virtualization/virtualmachine/render_config.html:5 msgid "Config" msgstr "コンフィグ" -#: netbox/templates/dcim/device/render_config.html:35 -#: netbox/templates/virtualization/virtualmachine/render_config.html:35 +#: templates/dcim/device/render_config.html:35 +#: templates/virtualization/virtualmachine/render_config.html:35 msgid "Context Data" msgstr "コンテキストデータ" -#: netbox/templates/dcim/device/render_config.html:53 -#: netbox/templates/virtualization/virtualmachine/render_config.html:53 +#: templates/dcim/device/render_config.html:53 +#: templates/virtualization/virtualmachine/render_config.html:53 msgid "Rendered Config" msgstr "レンダリング設定" -#: netbox/templates/dcim/device/render_config.html:55 -#: netbox/templates/virtualization/virtualmachine/render_config.html:55 +#: templates/dcim/device/render_config.html:55 +#: templates/virtualization/virtualmachine/render_config.html:55 msgid "Download" msgstr "ダウンロード" -#: netbox/templates/dcim/device/render_config.html:61 -#: netbox/templates/virtualization/virtualmachine/render_config.html:61 +#: templates/dcim/device/render_config.html:61 +#: templates/virtualization/virtualmachine/render_config.html:61 msgid "No configuration template found" msgstr "設定テンプレートが見つかりません" -#: netbox/templates/dcim/device_edit.html:44 +#: templates/dcim/device_edit.html:44 msgid "Parent Bay" msgstr "ペアレントベイ" -#: netbox/templates/dcim/device_edit.html:48 -#: netbox/utilities/templates/form_helpers/render_field.html:22 +#: templates/dcim/device_edit.html:48 +#: utilities/templates/form_helpers/render_field.html:22 msgid "Regenerate Slug" msgstr "リジェネレートslug" -#: netbox/templates/dcim/device_edit.html:49 -#: netbox/templates/generic/bulk_remove.html:21 -#: netbox/utilities/templates/helpers/table_config_form.html:23 +#: templates/dcim/device_edit.html:49 templates/generic/bulk_remove.html:21 +#: utilities/templates/helpers/table_config_form.html:23 msgid "Remove" msgstr "削除" -#: netbox/templates/dcim/device_edit.html:110 +#: templates/dcim/device_edit.html:110 msgid "Local Config Context Data" msgstr "ローカル設定コンテキストデータ" -#: netbox/templates/dcim/device_list.html:82 -#: netbox/templates/dcim/moduletype/component_templates.html:17 -#: netbox/templates/generic/bulk_rename.html:57 -#: netbox/templates/virtualization/virtualmachine/interfaces.html:11 -#: netbox/templates/virtualization/virtualmachine/virtual_disks.html:11 +#: templates/dcim/device_list.html:82 templates/generic/bulk_rename.html:57 +#: templates/virtualization/virtualmachine/interfaces.html:11 +#: templates/virtualization/virtualmachine/virtual_disks.html:11 msgid "Rename" msgstr "名前を変更" -#: netbox/templates/dcim/devicebay.html:17 +#: templates/dcim/devicebay.html:17 msgid "Device Bay" msgstr "デバイスベイ" -#: netbox/templates/dcim/devicebay.html:43 +#: templates/dcim/devicebay.html:43 msgid "Installed Device" msgstr "取付済みデバイス" -#: netbox/templates/dcim/devicebay_depopulate.html:6 +#: templates/dcim/devicebay_depopulate.html:6 #, python-format msgid "Remove %(device)s from %(device_bay)s?" msgstr "削除 %(device)s から %(device_bay)s?" -#: netbox/templates/dcim/devicebay_depopulate.html:13 +#: templates/dcim/devicebay_depopulate.html:13 #, python-format msgid "" "Are you sure you want to remove %(device)s from " @@ -12414,471 +11723,451 @@ msgstr "" "本当に削除してもよろしいですか %(device)s から " "%(device_bay)s?" -#: netbox/templates/dcim/devicebay_populate.html:13 +#: templates/dcim/devicebay_populate.html:13 msgid "Populate" msgstr "住む" -#: netbox/templates/dcim/devicebay_populate.html:22 +#: templates/dcim/devicebay_populate.html:22 msgid "Bay" msgstr "ベイ" -#: netbox/templates/dcim/devicerole.html:14 -#: netbox/templates/dcim/platform.html:17 +#: templates/dcim/devicerole.html:14 templates/dcim/platform.html:17 msgid "Add Device" msgstr "デバイスを追加" -#: netbox/templates/dcim/devicerole.html:40 +#: templates/dcim/devicerole.html:40 msgid "VM Role" msgstr "VMのロール" -#: netbox/templates/dcim/devicetype.html:18 -#: netbox/templates/dcim/moduletype.html:18 +#: templates/dcim/devicetype.html:18 templates/dcim/moduletype.html:29 msgid "Model Name" msgstr "モデル名" -#: netbox/templates/dcim/devicetype.html:25 -#: netbox/templates/dcim/moduletype.html:22 +#: templates/dcim/devicetype.html:25 templates/dcim/moduletype.html:33 msgid "Part Number" msgstr "パーツ番号" -#: netbox/templates/dcim/devicetype.html:41 +#: templates/dcim/devicetype.html:41 msgid "Exclude From Utilization" msgstr "利用から除外" -#: netbox/templates/dcim/devicetype.html:59 +#: templates/dcim/devicetype.html:59 msgid "Parent/Child" msgstr "親/子" -#: netbox/templates/dcim/devicetype.html:71 +#: templates/dcim/devicetype.html:71 msgid "Front Image" msgstr "前面イメージ" -#: netbox/templates/dcim/devicetype.html:83 +#: templates/dcim/devicetype.html:83 msgid "Rear Image" msgstr "背面画像" -#: netbox/templates/dcim/frontport.html:54 +#: templates/dcim/frontport.html:54 msgid "Rear Port Position" msgstr "背面ポート位置" -#: netbox/templates/dcim/frontport.html:72 -#: netbox/templates/dcim/interface.html:144 -#: netbox/templates/dcim/poweroutlet.html:63 -#: netbox/templates/dcim/powerport.html:63 -#: netbox/templates/dcim/rearport.html:68 +#: templates/dcim/frontport.html:72 templates/dcim/interface.html:144 +#: templates/dcim/poweroutlet.html:63 templates/dcim/powerport.html:63 +#: templates/dcim/rearport.html:68 msgid "Marked as Connected" msgstr "接続済みとしてマークされています" -#: netbox/templates/dcim/frontport.html:86 -#: netbox/templates/dcim/rearport.html:82 +#: templates/dcim/frontport.html:86 templates/dcim/rearport.html:82 msgid "Connection Status" msgstr "接続ステータス" -#: netbox/templates/dcim/htmx/cable_edit.html:10 +#: templates/dcim/htmx/cable_edit.html:10 msgid "A Side" msgstr "Aサイド" -#: netbox/templates/dcim/htmx/cable_edit.html:30 +#: templates/dcim/htmx/cable_edit.html:30 msgid "B Side" msgstr "B サイド" -#: netbox/templates/dcim/inc/cable_termination.html:65 +#: templates/dcim/inc/cable_termination.html:65 msgid "No termination" msgstr "終了なし" -#: netbox/templates/dcim/inc/cable_toggle_buttons.html:3 +#: templates/dcim/inc/cable_toggle_buttons.html:3 msgid "Mark Planned" msgstr "マーク・プランド" -#: netbox/templates/dcim/inc/cable_toggle_buttons.html:6 +#: templates/dcim/inc/cable_toggle_buttons.html:6 msgid "Mark Installed" msgstr "取付済みとマークする" -#: netbox/templates/dcim/inc/connection_endpoints.html:13 +#: templates/dcim/inc/connection_endpoints.html:13 msgid "Path Status" msgstr "パスステータス" -#: netbox/templates/dcim/inc/connection_endpoints.html:18 +#: templates/dcim/inc/connection_endpoints.html:18 msgid "Not Reachable" msgstr "アクセス不可" -#: netbox/templates/dcim/inc/connection_endpoints.html:23 +#: templates/dcim/inc/connection_endpoints.html:23 msgid "Path Endpoints" msgstr "パスエンドポイント" -#: netbox/templates/dcim/inc/endpoint_connection.html:8 -#: netbox/templates/dcim/powerfeed.html:120 -#: netbox/templates/dcim/rearport.html:94 +#: templates/dcim/inc/endpoint_connection.html:8 +#: templates/dcim/powerfeed.html:120 templates/dcim/rearport.html:94 msgid "Not connected" msgstr "接続されていません" -#: netbox/templates/dcim/inc/interface_vlans_table.html:6 +#: templates/dcim/inc/interface_vlans_table.html:6 msgid "Untagged" msgstr "タグなし" -#: netbox/templates/dcim/inc/interface_vlans_table.html:37 +#: templates/dcim/inc/interface_vlans_table.html:37 msgid "No VLANs Assigned" msgstr "VLAN が割り当てられていません" -#: netbox/templates/dcim/inc/interface_vlans_table.html:44 -#: netbox/templates/ipam/prefix_list.html:16 -#: netbox/templates/ipam/prefix_list.html:33 +#: templates/dcim/inc/interface_vlans_table.html:44 +#: templates/ipam/prefix_list.html:16 templates/ipam/prefix_list.html:33 msgid "Clear" msgstr "クリア" -#: netbox/templates/dcim/inc/interface_vlans_table.html:47 +#: templates/dcim/inc/interface_vlans_table.html:47 msgid "Clear All" msgstr "すべてクリア" -#: netbox/templates/dcim/inc/panels/racktype_dimensions.html:38 +#: templates/dcim/inc/panels/racktype_dimensions.html:38 msgid "Mounting Depth" msgstr "取り付け奥行き" -#: netbox/templates/dcim/inc/panels/racktype_numbering.html:6 +#: templates/dcim/inc/panels/racktype_numbering.html:6 msgid "Starting Unit" msgstr "起動ユニット" -#: netbox/templates/dcim/inc/panels/racktype_numbering.html:10 +#: templates/dcim/inc/panels/racktype_numbering.html:10 msgid "Descending Units" msgstr "降順単位" -#: netbox/templates/dcim/inc/rack_elevation.html:3 +#: templates/dcim/inc/rack_elevation.html:3 msgid "Rack elevation" msgstr "ラックの高さ" -#: netbox/templates/dcim/interface.html:17 +#: templates/dcim/interface.html:17 msgid "Add Child Interface" msgstr "子インタフェースの追加" -#: netbox/templates/dcim/interface.html:50 +#: templates/dcim/interface.html:50 msgid "Speed/Duplex" msgstr "スピード/デュプレックス" -#: netbox/templates/dcim/interface.html:73 +#: templates/dcim/interface.html:73 msgid "PoE Mode" msgstr "PoE モード" -#: netbox/templates/dcim/interface.html:77 +#: templates/dcim/interface.html:77 msgid "PoE Type" msgstr "PoE タイプ" -#: netbox/templates/dcim/interface.html:81 -#: netbox/templates/virtualization/vminterface.html:63 +#: templates/dcim/interface.html:81 +#: templates/virtualization/vminterface.html:63 msgid "802.1Q Mode" msgstr "802.1Q モード" -#: netbox/templates/dcim/interface.html:125 -#: netbox/templates/virtualization/vminterface.html:59 +#: templates/dcim/interface.html:125 +#: templates/virtualization/vminterface.html:59 msgid "MAC Address" msgstr "MAC アドレス" -#: netbox/templates/dcim/interface.html:151 +#: templates/dcim/interface.html:151 msgid "Wireless Link" msgstr "無線リンク" -#: netbox/templates/dcim/interface.html:218 netbox/vpn/choices.py:55 +#: templates/dcim/interface.html:218 vpn/choices.py:55 msgid "Peer" msgstr "ピア" -#: netbox/templates/dcim/interface.html:230 -#: netbox/templates/wireless/inc/wirelesslink_interface.html:26 +#: templates/dcim/interface.html:230 +#: templates/wireless/inc/wirelesslink_interface.html:26 msgid "Channel" msgstr "チャネル" -#: netbox/templates/dcim/interface.html:239 -#: netbox/templates/wireless/inc/wirelesslink_interface.html:32 +#: templates/dcim/interface.html:239 +#: templates/wireless/inc/wirelesslink_interface.html:32 msgid "Channel Frequency" msgstr "チャンネル周波数" -#: netbox/templates/dcim/interface.html:242 -#: netbox/templates/dcim/interface.html:250 -#: netbox/templates/dcim/interface.html:261 -#: netbox/templates/dcim/interface.html:269 +#: templates/dcim/interface.html:242 templates/dcim/interface.html:250 +#: templates/dcim/interface.html:261 templates/dcim/interface.html:269 msgid "MHz" msgstr "メガヘルツ" -#: netbox/templates/dcim/interface.html:258 -#: netbox/templates/wireless/inc/wirelesslink_interface.html:42 +#: templates/dcim/interface.html:258 +#: templates/wireless/inc/wirelesslink_interface.html:42 msgid "Channel Width" msgstr "チャンネル幅" -#: netbox/templates/dcim/interface.html:285 -#: netbox/templates/wireless/wirelesslan.html:14 -#: netbox/templates/wireless/wirelesslink.html:21 -#: netbox/wireless/forms/bulk_edit.py:60 -#: netbox/wireless/forms/bulk_edit.py:102 -#: netbox/wireless/forms/filtersets.py:40 -#: netbox/wireless/forms/filtersets.py:80 netbox/wireless/models.py:82 -#: netbox/wireless/models.py:156 netbox/wireless/tables/wirelesslan.py:44 +#: templates/dcim/interface.html:285 templates/wireless/wirelesslan.html:14 +#: templates/wireless/wirelesslink.html:21 wireless/forms/bulk_edit.py:60 +#: wireless/forms/bulk_edit.py:102 wireless/forms/filtersets.py:40 +#: wireless/forms/filtersets.py:80 wireless/models.py:82 +#: wireless/models.py:156 wireless/tables/wirelesslan.py:44 msgid "SSID" msgstr "言った" -#: netbox/templates/dcim/interface.html:305 +#: templates/dcim/interface.html:305 msgid "LAG Members" msgstr "LAG メンバー" -#: netbox/templates/dcim/interface.html:323 +#: templates/dcim/interface.html:323 msgid "No member interfaces" msgstr "メンバーインタフェースなし" -#: netbox/templates/dcim/interface.html:343 -#: netbox/templates/ipam/fhrpgroup.html:73 -#: netbox/templates/ipam/iprange/ip_addresses.html:7 -#: netbox/templates/ipam/prefix/ip_addresses.html:7 -#: netbox/templates/virtualization/vminterface.html:89 +#: templates/dcim/interface.html:343 templates/ipam/fhrpgroup.html:73 +#: templates/ipam/iprange/ip_addresses.html:7 +#: templates/ipam/prefix/ip_addresses.html:7 +#: templates/virtualization/vminterface.html:89 msgid "Add IP Address" msgstr "IP アドレスを追加" -#: netbox/templates/dcim/inventoryitem.html:24 +#: templates/dcim/inventoryitem.html:24 msgid "Parent Item" msgstr "親アイテム" -#: netbox/templates/dcim/inventoryitem.html:48 +#: templates/dcim/inventoryitem.html:48 msgid "Part ID" msgstr "パーツ ID" -#: netbox/templates/dcim/location.html:17 +#: templates/dcim/location.html:17 msgid "Add Child Location" msgstr "子所在地を追加" -#: netbox/templates/dcim/location.html:77 +#: templates/dcim/location.html:77 msgid "Child Locations" msgstr "子ロケーション" -#: netbox/templates/dcim/location.html:81 netbox/templates/dcim/site.html:131 +#: templates/dcim/location.html:81 templates/dcim/site.html:131 msgid "Add a Location" msgstr "ロケーションを追加" -#: netbox/templates/dcim/location.html:94 netbox/templates/dcim/site.html:144 +#: templates/dcim/location.html:94 templates/dcim/site.html:144 msgid "Add a Device" msgstr "デバイスを追加" -#: netbox/templates/dcim/manufacturer.html:16 +#: templates/dcim/manufacturer.html:16 msgid "Add Device Type" msgstr "デバイスタイプを追加" -#: netbox/templates/dcim/manufacturer.html:21 +#: templates/dcim/manufacturer.html:21 msgid "Add Module Type" msgstr "モジュールタイプを追加" -#: netbox/templates/dcim/powerfeed.html:53 +#: templates/dcim/powerfeed.html:53 msgid "Connected Device" msgstr "接続デバイス" -#: netbox/templates/dcim/powerfeed.html:63 +#: templates/dcim/powerfeed.html:63 msgid "Utilization (Allocated" msgstr "使用率 (割り当て済み)" -#: netbox/templates/dcim/powerfeed.html:80 +#: templates/dcim/powerfeed.html:80 msgid "Electrical Characteristics" msgstr "電気的特性" -#: netbox/templates/dcim/powerfeed.html:88 +#: templates/dcim/powerfeed.html:88 msgctxt "Abbreviation for volts" msgid "V" msgstr "V" -#: netbox/templates/dcim/powerfeed.html:92 +#: templates/dcim/powerfeed.html:92 msgctxt "Abbreviation for amperes" msgid "A" msgstr "A" -#: netbox/templates/dcim/poweroutlet.html:48 +#: templates/dcim/poweroutlet.html:48 msgid "Feed Leg" msgstr "供給端子" -#: netbox/templates/dcim/powerpanel.html:72 +#: templates/dcim/powerpanel.html:72 msgid "Add Power Feeds" msgstr "電源タップの追加" -#: netbox/templates/dcim/powerport.html:44 +#: templates/dcim/powerport.html:44 msgid "Maximum Draw" msgstr "最大消費電力" -#: netbox/templates/dcim/powerport.html:48 +#: templates/dcim/powerport.html:48 msgid "Allocated Draw" msgstr "割り当てられた抽選" -#: netbox/templates/dcim/rack.html:69 +#: templates/dcim/rack.html:69 msgid "Space Utilization" msgstr "スペース活用" -#: netbox/templates/dcim/rack.html:84 netbox/templates/dcim/racktype.html:44 +#: templates/dcim/rack.html:84 templates/dcim/racktype.html:44 msgid "Rack Weight" msgstr "ラック重量" -#: netbox/templates/dcim/rack.html:94 netbox/templates/dcim/racktype.html:54 +#: templates/dcim/rack.html:94 templates/dcim/racktype.html:54 msgid "Maximum Weight" msgstr "最大重量" -#: netbox/templates/dcim/rack.html:104 +#: templates/dcim/rack.html:104 msgid "Total Weight" msgstr "合計重量" -#: netbox/templates/dcim/rack.html:125 -#: netbox/templates/dcim/rack_elevation_list.html:15 +#: templates/dcim/rack.html:125 templates/dcim/rack_elevation_list.html:15 msgid "Images and Labels" msgstr "画像とラベル" -#: netbox/templates/dcim/rack.html:126 -#: netbox/templates/dcim/rack_elevation_list.html:16 +#: templates/dcim/rack.html:126 templates/dcim/rack_elevation_list.html:16 msgid "Images only" msgstr "画像のみ" -#: netbox/templates/dcim/rack.html:127 -#: netbox/templates/dcim/rack_elevation_list.html:17 +#: templates/dcim/rack.html:127 templates/dcim/rack_elevation_list.html:17 msgid "Labels only" msgstr "ラベルのみ" -#: netbox/templates/dcim/rack/reservations.html:8 +#: templates/dcim/rack/reservations.html:8 msgid "Add reservation" msgstr "予約を追加" -#: netbox/templates/dcim/rack_elevation_list.html:12 +#: templates/dcim/rack_elevation_list.html:12 msgid "View List" msgstr "リストを表示" -#: netbox/templates/dcim/rack_elevation_list.html:14 +#: templates/dcim/rack_elevation_list.html:14 msgid "Select rack view" msgstr "ラックビューを選択" -#: netbox/templates/dcim/rack_elevation_list.html:25 +#: templates/dcim/rack_elevation_list.html:25 msgid "Sort By" msgstr "並び替え" -#: netbox/templates/dcim/rack_elevation_list.html:74 +#: templates/dcim/rack_elevation_list.html:74 msgid "No Racks Found" msgstr "ラックが見つかりません" -#: netbox/templates/dcim/rack_list.html:8 +#: templates/dcim/rack_list.html:8 msgid "View Elevations" msgstr "ラック図を表示" -#: netbox/templates/dcim/rackreservation.html:42 +#: templates/dcim/rackreservation.html:42 msgid "Reservation Details" msgstr "予約詳細" -#: netbox/templates/dcim/rackrole.html:10 +#: templates/dcim/rackrole.html:10 msgid "Add Rack" msgstr "ラックを追加" -#: netbox/templates/dcim/rearport.html:50 +#: templates/dcim/rearport.html:50 msgid "Positions" msgstr "ポジション" -#: netbox/templates/dcim/region.html:17 -#: netbox/templates/dcim/sitegroup.html:17 +#: templates/dcim/region.html:17 templates/dcim/sitegroup.html:17 msgid "Add Site" msgstr "サイトを追加" -#: netbox/templates/dcim/region.html:55 +#: templates/dcim/region.html:55 msgid "Child Regions" msgstr "子リージョン" -#: netbox/templates/dcim/region.html:59 +#: templates/dcim/region.html:59 msgid "Add Region" msgstr "リージョンを追加" -#: netbox/templates/dcim/site.html:64 +#: templates/dcim/site.html:64 msgid "Time Zone" msgstr "タイムゾーン" -#: netbox/templates/dcim/site.html:67 +#: templates/dcim/site.html:67 msgid "UTC" msgstr "UTC" -#: netbox/templates/dcim/site.html:68 +#: templates/dcim/site.html:68 msgid "Site time" msgstr "サイトタイム" -#: netbox/templates/dcim/site.html:75 +#: templates/dcim/site.html:75 msgid "Physical Address" msgstr "物理アドレス" -#: netbox/templates/dcim/site.html:90 +#: templates/dcim/site.html:90 msgid "Shipping Address" msgstr "配送先住所" -#: netbox/templates/dcim/sitegroup.html:55 -#: netbox/templates/tenancy/contactgroup.html:46 -#: netbox/templates/tenancy/tenantgroup.html:55 -#: netbox/templates/wireless/wirelesslangroup.html:55 +#: templates/dcim/sitegroup.html:55 templates/tenancy/contactgroup.html:46 +#: templates/tenancy/tenantgroup.html:55 +#: templates/wireless/wirelesslangroup.html:55 msgid "Child Groups" msgstr "子・グループ" -#: netbox/templates/dcim/sitegroup.html:59 +#: templates/dcim/sitegroup.html:59 msgid "Add Site Group" msgstr "サイトグループを追加" -#: netbox/templates/dcim/trace/attachment.html:5 -#: netbox/templates/extras/exporttemplate.html:31 +#: templates/dcim/trace/attachment.html:5 +#: templates/extras/exporttemplate.html:31 msgid "Attachment" msgstr "アタッチメント" -#: netbox/templates/dcim/virtualchassis.html:57 +#: templates/dcim/virtualchassis.html:57 msgid "Add Member" msgstr "メンバーを追加" -#: netbox/templates/dcim/virtualchassis_add.html:18 +#: templates/dcim/virtualchassis_add.html:18 msgid "Member Devices" msgstr "メンバーデバイス" -#: netbox/templates/dcim/virtualchassis_add_member.html:10 +#: templates/dcim/virtualchassis_add_member.html:10 #, python-format msgid "Add New Member to Virtual Chassis %(virtual_chassis)s" msgstr "バーチャルシャーシへの新規メンバーの追加 %(virtual_chassis)s" -#: netbox/templates/dcim/virtualchassis_add_member.html:19 +#: templates/dcim/virtualchassis_add_member.html:19 msgid "Add New Member" msgstr "新しいメンバーを追加" -#: netbox/templates/dcim/virtualchassis_add_member.html:27 -#: netbox/templates/generic/object_edit.html:78 -#: netbox/templates/users/objectpermission.html:31 -#: netbox/users/forms/filtersets.py:67 netbox/users/forms/model_forms.py:312 +#: templates/dcim/virtualchassis_add_member.html:27 +#: templates/generic/object_edit.html:78 +#: templates/users/objectpermission.html:31 users/forms/filtersets.py:67 +#: users/forms/model_forms.py:312 msgid "Actions" msgstr "アクション" -#: netbox/templates/dcim/virtualchassis_add_member.html:29 +#: templates/dcim/virtualchassis_add_member.html:29 msgid "Save & Add Another" msgstr "保存して別のものを追加" -#: netbox/templates/dcim/virtualchassis_edit.html:7 +#: templates/dcim/virtualchassis_edit.html:7 #, python-format msgid "Editing Virtual Chassis %(name)s" msgstr "バーチャルシャーシの編集 %(name)s" -#: netbox/templates/dcim/virtualchassis_edit.html:53 +#: templates/dcim/virtualchassis_edit.html:53 msgid "Rack/Unit" msgstr "ラック/ユニット" -#: netbox/templates/dcim/virtualchassis_remove_member.html:5 +#: templates/dcim/virtualchassis_remove_member.html:5 msgid "Remove Virtual Chassis Member" msgstr "バーチャルシャーシメンバーの削除" -#: netbox/templates/dcim/virtualchassis_remove_member.html:9 +#: templates/dcim/virtualchassis_remove_member.html:9 #, python-format msgid "" "Are you sure you want to remove %(device)s from virtual " "chassis %(name)s?" msgstr "本当に削除してもよろしいですか %(device)s バーチャルシャーシから %(name)s?" -#: netbox/templates/dcim/virtualdevicecontext.html:26 -#: netbox/templates/vpn/l2vpn.html:18 +#: templates/dcim/virtualdevicecontext.html:26 templates/vpn/l2vpn.html:18 msgid "Identifier" msgstr "識別子" -#: netbox/templates/exceptions/import_error.html:6 +#: templates/exceptions/import_error.html:6 msgid "" "A module import error occurred during this request. Common causes include " "the following:" msgstr "このリクエスト中にモジュールインポートエラーが発生しました。一般的な原因には次のものがあります。" -#: netbox/templates/exceptions/import_error.html:10 +#: templates/exceptions/import_error.html:10 msgid "Missing required packages" msgstr "必要なパッケージが見つかりません" -#: netbox/templates/exceptions/import_error.html:11 +#: templates/exceptions/import_error.html:11 msgid "" "This installation of NetBox might be missing one or more required Python " "packages. These packages are listed in requirements.txt and " @@ -12892,11 +12181,11 @@ msgstr "" "local_requirements.txt、通常は取付またはアップグレードプロセスの一部として取付されます。取付されたパッケージを確認するには、以下を実行します。" " ピップフリーズ コンソールから、出力を必要なパッケージのリストと比較します。" -#: netbox/templates/exceptions/import_error.html:20 +#: templates/exceptions/import_error.html:20 msgid "WSGI service not restarted after upgrade" msgstr "アップグレード後に WSGI サービスが再起動されない" -#: netbox/templates/exceptions/import_error.html:21 +#: templates/exceptions/import_error.html:21 msgid "" "If this installation has recently been upgraded, check that the WSGI service" " (e.g. gunicorn or uWSGI) has been restarted. This ensures that the new code" @@ -12905,17 +12194,17 @@ msgstr "" "このインストールが最近アップグレードされた場合は、WSGI サービス (gunicorn や uWSGI など) " "が再起動されていることを確認してください。これにより、新しいコードが確実に実行されていることを確認できます。" -#: netbox/templates/exceptions/permission_error.html:6 +#: templates/exceptions/permission_error.html:6 msgid "" "A file permission error was detected while processing this request. Common " "causes include the following:" msgstr "このリクエストの処理中に、ファイル権限エラーが検出されました。一般的な原因には次のものがあります。" -#: netbox/templates/exceptions/permission_error.html:10 +#: templates/exceptions/permission_error.html:10 msgid "Insufficient write permission to the media root" msgstr "メディアルートへの書き込み権限が不十分です" -#: netbox/templates/exceptions/permission_error.html:11 +#: templates/exceptions/permission_error.html:11 #, python-format msgid "" "The configured media root is %(media_root)s. Ensure that the " @@ -12925,17 +12214,17 @@ msgstr "" "設定されているメディアルートは %(media_root)s。NetBox " "を実行するユーザに、このパス内のすべてのロケーションにファイルを書き込む権限があることを確認してください。" -#: netbox/templates/exceptions/programming_error.html:6 +#: templates/exceptions/programming_error.html:6 msgid "" "A database programming error was detected while processing this request. " "Common causes include the following:" msgstr "この要求の処理中に、データベースプログラミングエラーが検出されました。一般的な原因には次のものがあります。" -#: netbox/templates/exceptions/programming_error.html:10 +#: templates/exceptions/programming_error.html:10 msgid "Database migrations missing" msgstr "データベースマイグレーションが見つかりません" -#: netbox/templates/exceptions/programming_error.html:11 +#: templates/exceptions/programming_error.html:11 msgid "" "When upgrading to a new NetBox release, the upgrade script must be run to " "apply any new database migrations. You can run migrations manually by " @@ -12945,11 +12234,11 @@ msgstr "" "の新しいリリースにアップグレードする場合、新しいデータベースマイグレーションを適用するには、アップグレードスクリプトを実行する必要があります。マイグレーションは以下を実行することで手動で実行できます。" " python3 manage.py マイグレーション コマンドラインから。" -#: netbox/templates/exceptions/programming_error.html:18 +#: templates/exceptions/programming_error.html:18 msgid "Unsupported PostgreSQL version" msgstr "サポートされていない PostgreSQL バージョン" -#: netbox/templates/exceptions/programming_error.html:19 +#: templates/exceptions/programming_error.html:19 msgid "" "Ensure that PostgreSQL version 12 or later is in use. You can check this by " "connecting to the database using NetBox's credentials and issuing a query " @@ -12958,263 +12247,258 @@ msgstr "" "PostgreSQL バージョン 12 以降が使用されていることを確認してください。これを確認するには、NetBox " "の認証情報を使用してデータベースに接続し、次のクエリを実行します。 バージョンを選択 ()。" -#: netbox/templates/extras/configcontext.html:45 -#: netbox/templates/extras/configtemplate.html:37 -#: netbox/templates/extras/exporttemplate.html:51 +#: templates/extras/configcontext.html:45 +#: templates/extras/configtemplate.html:37 +#: templates/extras/exporttemplate.html:51 msgid "The data file associated with this object has been deleted" msgstr "このオブジェクトに関連するデータファイルは削除されました" -#: netbox/templates/extras/configcontext.html:54 -#: netbox/templates/extras/configtemplate.html:46 -#: netbox/templates/extras/exporttemplate.html:60 +#: templates/extras/configcontext.html:54 +#: templates/extras/configtemplate.html:46 +#: templates/extras/exporttemplate.html:60 msgid "Data Synced" msgstr "データ同期済み" -#: netbox/templates/extras/configcontext_list.html:7 -#: netbox/templates/extras/configtemplate_list.html:7 -#: netbox/templates/extras/exporttemplate_list.html:7 +#: templates/extras/configcontext_list.html:7 +#: templates/extras/configtemplate_list.html:7 +#: templates/extras/exporttemplate_list.html:7 msgid "Sync Data" msgstr "データを同期" -#: netbox/templates/extras/configtemplate.html:56 +#: templates/extras/configtemplate.html:56 msgid "Environment Parameters" msgstr "環境パラメータ" -#: netbox/templates/extras/configtemplate.html:67 -#: netbox/templates/extras/exporttemplate.html:79 +#: templates/extras/configtemplate.html:67 +#: templates/extras/exporttemplate.html:79 msgid "Template" msgstr "テンプレート" -#: netbox/templates/extras/customfield.html:30 -#: netbox/templates/extras/customlink.html:21 +#: templates/extras/customfield.html:30 templates/extras/customlink.html:21 msgid "Group Name" msgstr "グループ名" -#: netbox/templates/extras/customfield.html:42 +#: templates/extras/customfield.html:42 msgid "Must be Unique" msgstr "ユニークでなければならない" -#: netbox/templates/extras/customfield.html:46 +#: templates/extras/customfield.html:46 msgid "Cloneable" msgstr "クローン可能" -#: netbox/templates/extras/customfield.html:56 +#: templates/extras/customfield.html:56 msgid "Default Value" msgstr "既定値" -#: netbox/templates/extras/customfield.html:73 +#: templates/extras/customfield.html:73 msgid "Search Weight" msgstr "検索重量" -#: netbox/templates/extras/customfield.html:83 +#: templates/extras/customfield.html:83 msgid "Filter Logic" msgstr "フィルタロジック" -#: netbox/templates/extras/customfield.html:87 +#: templates/extras/customfield.html:87 msgid "Display Weight" msgstr "ディスプレイ重量" -#: netbox/templates/extras/customfield.html:91 +#: templates/extras/customfield.html:91 msgid "UI Visible" msgstr "UI が表示される" -#: netbox/templates/extras/customfield.html:95 +#: templates/extras/customfield.html:95 msgid "UI Editable" msgstr "UI 編集可能" -#: netbox/templates/extras/customfield.html:115 +#: templates/extras/customfield.html:115 msgid "Validation Rules" msgstr "検証ルール" -#: netbox/templates/extras/customfield.html:126 +#: templates/extras/customfield.html:126 msgid "Regular Expression" msgstr "正規表現" -#: netbox/templates/extras/customlink.html:29 +#: templates/extras/customlink.html:29 msgid "Button Class" msgstr "ボタンクラス" -#: netbox/templates/extras/customlink.html:39 -#: netbox/templates/extras/exporttemplate.html:66 -#: netbox/templates/extras/savedfilter.html:39 +#: templates/extras/customlink.html:39 templates/extras/exporttemplate.html:66 +#: templates/extras/savedfilter.html:39 msgid "Assigned Models" msgstr "割当モデル" -#: netbox/templates/extras/customlink.html:52 +#: templates/extras/customlink.html:52 msgid "Link Text" msgstr "リンクテキスト" -#: netbox/templates/extras/customlink.html:58 +#: templates/extras/customlink.html:58 msgid "Link URL" msgstr "リンク URL" -#: netbox/templates/extras/dashboard/reset.html:4 -#: netbox/templates/home.html:66 +#: templates/extras/dashboard/reset.html:4 templates/home.html:66 msgid "Reset Dashboard" msgstr "ダッシュボードをリセット" -#: netbox/templates/extras/dashboard/reset.html:8 +#: templates/extras/dashboard/reset.html:8 msgid "" "This will remove all configured widgets and restore the " "default dashboard configuration." msgstr "これにより削除されます すべて ウィジェットを構成し、デフォルトのダッシュボード設定を復元しました。" -#: netbox/templates/extras/dashboard/reset.html:13 +#: templates/extras/dashboard/reset.html:13 msgid "" "This change affects only your dashboard, and will not impact other " "users." msgstr "この変更の影響を受けるのは きみの ダッシュボード。他のユーザには影響しません。" -#: netbox/templates/extras/dashboard/widget.html:21 +#: templates/extras/dashboard/widget.html:21 msgid "widget configuration" msgstr "ウィジェット構成" -#: netbox/templates/extras/dashboard/widget.html:36 +#: templates/extras/dashboard/widget.html:36 msgid "Close widget" msgstr "ウィジェットを閉じる" -#: netbox/templates/extras/dashboard/widget_add.html:7 +#: templates/extras/dashboard/widget_add.html:7 msgid "Add a Widget" msgstr "ウィジェットを追加" -#: netbox/templates/extras/dashboard/widgets/bookmarks.html:14 +#: templates/extras/dashboard/widgets/bookmarks.html:14 msgid "No bookmarks have been added yet." msgstr "ブックマークはまだ追加されていません。" -#: netbox/templates/extras/dashboard/widgets/objectcounts.html:10 +#: templates/extras/dashboard/widgets/objectcounts.html:10 msgid "No permission" msgstr "許可なし" -#: netbox/templates/extras/dashboard/widgets/objectlist.html:6 +#: templates/extras/dashboard/widgets/objectlist.html:6 msgid "No permission to view this content" msgstr "このコンテンツを閲覧する権限がありません" -#: netbox/templates/extras/dashboard/widgets/objectlist.html:10 +#: templates/extras/dashboard/widgets/objectlist.html:10 msgid "Unable to load content. Invalid view name" msgstr "コンテンツを読み込めません。ビュー名が無効です。" -#: netbox/templates/extras/dashboard/widgets/rssfeed.html:12 +#: templates/extras/dashboard/widgets/rssfeed.html:12 msgid "No content found" msgstr "コンテンツが見つかりません" -#: netbox/templates/extras/dashboard/widgets/rssfeed.html:18 +#: templates/extras/dashboard/widgets/rssfeed.html:18 msgid "There was a problem fetching the RSS feed" msgstr "RSS フィードの取得中に問題が発生しました" -#: netbox/templates/extras/dashboard/widgets/rssfeed.html:21 +#: templates/extras/dashboard/widgets/rssfeed.html:21 msgid "HTTP" msgstr "HTTP" -#: netbox/templates/extras/eventrule.html:61 +#: templates/extras/eventrule.html:61 msgid "Conditions" msgstr "条件" -#: netbox/templates/extras/exporttemplate.html:23 +#: templates/extras/exporttemplate.html:23 msgid "MIME Type" msgstr "マイムタイプ" -#: netbox/templates/extras/exporttemplate.html:27 +#: templates/extras/exporttemplate.html:27 msgid "File Extension" msgstr "ファイル拡張子" -#: netbox/templates/extras/htmx/script_result.html:10 +#: templates/extras/htmx/script_result.html:10 msgid "Scheduled for" msgstr "予定日" -#: netbox/templates/extras/htmx/script_result.html:15 +#: templates/extras/htmx/script_result.html:15 msgid "Duration" msgstr "所要時間" -#: netbox/templates/extras/htmx/script_result.html:23 +#: templates/extras/htmx/script_result.html:23 msgid "Test Summary" msgstr "テスト概要" -#: netbox/templates/extras/htmx/script_result.html:43 +#: templates/extras/htmx/script_result.html:43 msgid "Log" msgstr "ログ" -#: netbox/templates/extras/htmx/script_result.html:56 +#: templates/extras/htmx/script_result.html:56 msgid "Output" msgstr "出力" -#: netbox/templates/extras/inc/result_pending.html:4 +#: templates/extras/inc/result_pending.html:4 msgid "Loading" msgstr "読み込み中" -#: netbox/templates/extras/inc/result_pending.html:6 +#: templates/extras/inc/result_pending.html:6 msgid "Results pending" msgstr "結果は保留中です" -#: netbox/templates/extras/journalentry.html:15 +#: templates/extras/journalentry.html:15 msgid "Journal Entry" msgstr "ジャーナルエントリ" -#: netbox/templates/extras/notificationgroup.html:11 +#: templates/extras/notificationgroup.html:11 msgid "Notification Group" msgstr "通知グループ" -#: netbox/templates/extras/notificationgroup.html:36 -#: netbox/templates/extras/notificationgroup.html:46 -#: netbox/utilities/templates/widgets/clearable_file_input.html:12 +#: templates/extras/notificationgroup.html:36 +#: templates/extras/notificationgroup.html:46 +#: utilities/templates/widgets/clearable_file_input.html:12 msgid "None assigned" msgstr "割り当てなし" -#: netbox/templates/extras/object_configcontext.html:19 +#: templates/extras/object_configcontext.html:19 msgid "The local config context overwrites all source contexts" msgstr "ローカル設定コンテキストはすべてのソースコンテキストを上書きします" -#: netbox/templates/extras/object_configcontext.html:25 +#: templates/extras/object_configcontext.html:25 msgid "Source Contexts" msgstr "ソースコンテキスト" -#: netbox/templates/extras/object_journal.html:17 +#: templates/extras/object_journal.html:17 msgid "New Journal Entry" msgstr "新しいジャーナルエントリ" -#: netbox/templates/extras/report/base.html:30 +#: templates/extras/report/base.html:30 msgid "Report" msgstr "報告書" -#: netbox/templates/extras/script.html:14 +#: templates/extras/script.html:14 msgid "You do not have permission to run scripts" msgstr "スクリプトを実行する権限がありません" -#: netbox/templates/extras/script.html:41 -#: netbox/templates/extras/script.html:45 -#: netbox/templates/extras/script_list.html:86 +#: templates/extras/script.html:41 templates/extras/script.html:45 +#: templates/extras/script_list.html:86 msgid "Run Script" msgstr "スクリプトを実行" -#: netbox/templates/extras/script.html:51 -#: netbox/templates/extras/script/source.html:10 +#: templates/extras/script.html:51 templates/extras/script/source.html:10 msgid "Error loading script" msgstr "スクリプトのロード中にエラーが発生しました" -#: netbox/templates/extras/script/jobs.html:16 +#: templates/extras/script/jobs.html:16 msgid "Script no longer exists in the source file." msgstr "スクリプトはソースファイルに存在しなくなりました。" -#: netbox/templates/extras/script_list.html:46 +#: templates/extras/script_list.html:46 msgid "Last Run" msgstr "ラストラン" -#: netbox/templates/extras/script_list.html:61 +#: templates/extras/script_list.html:61 msgid "Script is no longer present in the source file" msgstr "スクリプトはソースファイルに存在しなくなりました" -#: netbox/templates/extras/script_list.html:74 +#: templates/extras/script_list.html:74 msgid "Never" msgstr "決して" -#: netbox/templates/extras/script_list.html:84 +#: templates/extras/script_list.html:84 msgid "Run Again" msgstr "もう一度実行" -#: netbox/templates/extras/script_list.html:138 +#: templates/extras/script_list.html:138 msgid "No Scripts Found" msgstr "スクリプトが見つかりません" -#: netbox/templates/extras/script_list.html:141 +#: templates/extras/script_list.html:141 #, python-format msgid "" "Get started by creating a script from " @@ -13223,83 +12507,81 @@ msgstr "" "始めてみよう スクリプトの作成 " "アップロードされたファイルまたはデータソースから。" -#: netbox/templates/extras/script_result.html:35 -#: netbox/templates/generic/object_list.html:50 -#: netbox/templates/search.html:13 +#: templates/extras/script_result.html:35 +#: templates/generic/object_list.html:50 templates/search.html:13 msgid "Results" msgstr "結果" -#: netbox/templates/extras/script_result.html:46 +#: templates/extras/script_result.html:46 msgid "Log threshold" msgstr "ログ閾値" -#: netbox/templates/extras/script_result.html:56 +#: templates/extras/script_result.html:56 msgid "All" msgstr "[すべて]" -#: netbox/templates/extras/tag.html:32 +#: templates/extras/tag.html:32 msgid "Tagged Items" msgstr "タグ付きアイテム" -#: netbox/templates/extras/tag.html:43 +#: templates/extras/tag.html:43 msgid "Allowed Object Types" msgstr "許可されるオブジェクトタイプ" -#: netbox/templates/extras/tag.html:51 +#: templates/extras/tag.html:51 msgid "Any" msgstr "任意" -#: netbox/templates/extras/tag.html:57 +#: templates/extras/tag.html:57 msgid "Tagged Item Types" msgstr "タグ付きアイテムタイプ" -#: netbox/templates/extras/tag.html:81 +#: templates/extras/tag.html:81 msgid "Tagged Objects" msgstr "タグ付きオブジェクト" -#: netbox/templates/extras/webhook.html:26 +#: templates/extras/webhook.html:26 msgid "HTTP Method" msgstr "HTTP メソッド" -#: netbox/templates/extras/webhook.html:34 +#: templates/extras/webhook.html:34 msgid "HTTP Content Type" msgstr "HTTP コンテンツタイプ" -#: netbox/templates/extras/webhook.html:47 +#: templates/extras/webhook.html:47 msgid "SSL Verification" msgstr "SSL 検証" -#: netbox/templates/extras/webhook.html:60 +#: templates/extras/webhook.html:60 msgid "Additional Headers" msgstr "その他のヘッダー" -#: netbox/templates/extras/webhook.html:70 +#: templates/extras/webhook.html:70 msgid "Body Template" msgstr "ボディテンプレート" -#: netbox/templates/generic/bulk_add_component.html:29 +#: templates/generic/bulk_add_component.html:29 msgid "Bulk Creation" msgstr "一括作成" -#: netbox/templates/generic/bulk_add_component.html:34 -#: netbox/templates/generic/bulk_delete.html:32 -#: netbox/templates/generic/bulk_edit.html:33 +#: templates/generic/bulk_add_component.html:34 +#: templates/generic/bulk_delete.html:32 templates/generic/bulk_edit.html:33 msgid "Selected Objects" msgstr "選択オブジェクト" -#: netbox/templates/generic/bulk_add_component.html:58 +#: templates/generic/bulk_add_component.html:58 msgid "to Add" msgstr "追加するには" -#: netbox/templates/generic/bulk_delete.html:27 +#: templates/generic/bulk_delete.html:27 msgid "Bulk Delete" msgstr "一括削除" -#: netbox/templates/generic/bulk_delete.html:49 +#: templates/generic/bulk_delete.html:49 msgid "Confirm Bulk Deletion" msgstr "一括削除を確認" -#: netbox/templates/generic/bulk_delete.html:50 +#: templates/generic/bulk_delete.html:50 #, python-format msgid "" "The following operation will delete %(count)s " @@ -13309,67 +12591,64 @@ msgstr "" "次の操作で削除されます %(count)s " "%(type_plural)s。選択したオブジェクトを注意深く確認し、この操作を確認してください。" -#: netbox/templates/generic/bulk_edit.html:21 -#: netbox/templates/generic/object_edit.html:22 +#: templates/generic/bulk_edit.html:21 templates/generic/object_edit.html:22 msgid "Editing" msgstr "編集" -#: netbox/templates/generic/bulk_edit.html:28 +#: templates/generic/bulk_edit.html:28 msgid "Bulk Edit" msgstr "一括編集" -#: netbox/templates/generic/bulk_edit.html:107 -#: netbox/templates/generic/bulk_rename.html:66 +#: templates/generic/bulk_edit.html:107 templates/generic/bulk_rename.html:66 msgid "Apply" msgstr "申し込む" -#: netbox/templates/generic/bulk_import.html:19 +#: templates/generic/bulk_import.html:19 msgid "Bulk Import" msgstr "一括インポート" -#: netbox/templates/generic/bulk_import.html:25 +#: templates/generic/bulk_import.html:25 msgid "Direct Import" msgstr "直接インポート" -#: netbox/templates/generic/bulk_import.html:30 +#: templates/generic/bulk_import.html:30 msgid "Upload File" msgstr "ファイルをアップロード" -#: netbox/templates/generic/bulk_import.html:58 -#: netbox/templates/generic/bulk_import.html:80 -#: netbox/templates/generic/bulk_import.html:102 +#: templates/generic/bulk_import.html:58 templates/generic/bulk_import.html:80 +#: templates/generic/bulk_import.html:102 msgid "Submit" msgstr "送信" -#: netbox/templates/generic/bulk_import.html:113 +#: templates/generic/bulk_import.html:113 msgid "Field Options" msgstr "フィールドオプション" -#: netbox/templates/generic/bulk_import.html:119 +#: templates/generic/bulk_import.html:119 msgid "Accessor" msgstr "アクセサ" -#: netbox/templates/generic/bulk_import.html:148 +#: templates/generic/bulk_import.html:148 msgid "choices" msgstr "選択肢" -#: netbox/templates/generic/bulk_import.html:161 +#: templates/generic/bulk_import.html:161 msgid "Import Value" msgstr "インポート値" -#: netbox/templates/generic/bulk_import.html:181 +#: templates/generic/bulk_import.html:181 msgid "Format: YYYY-MM-DD" msgstr "フォーマット:YYYY-MM-DD" -#: netbox/templates/generic/bulk_import.html:183 +#: templates/generic/bulk_import.html:183 msgid "Specify true or false" msgstr "真/偽を指定してください" -#: netbox/templates/generic/bulk_import.html:195 +#: templates/generic/bulk_import.html:195 msgid "Required fields must be specified for all objects." msgstr "必須フィールド しなければならない すべてのオブジェクトに指定してください。" -#: netbox/templates/generic/bulk_import.html:201 +#: templates/generic/bulk_import.html:201 #, python-format msgid "" "Related objects may be referenced by any unique attribute. For example, " @@ -13377,15 +12656,15 @@ msgid "" msgstr "" "関連オブジェクトは、任意の一意の属性で参照できます。たとえば、 %(example)s VRF はルート識別子で識別されます。" -#: netbox/templates/generic/bulk_remove.html:28 +#: templates/generic/bulk_remove.html:28 msgid "Bulk Remove" msgstr "一括削除" -#: netbox/templates/generic/bulk_remove.html:42 +#: templates/generic/bulk_remove.html:42 msgid "Confirm Bulk Removal" msgstr "一括削除を確認" -#: netbox/templates/generic/bulk_remove.html:43 +#: templates/generic/bulk_remove.html:43 #, python-format msgid "" "The following operation will remove %(count)s %(obj_type_plural)s from " @@ -13395,72 +12674,72 @@ msgstr "" "次の操作で削除されます %(count)s %(obj_type_plural)s から %(parent_obj)s。よく確認してください " "%(obj_type_plural)s 削除する予定。以下で確認する。" -#: netbox/templates/generic/bulk_remove.html:64 +#: templates/generic/bulk_remove.html:64 #, python-format msgid "Remove these %(count)s %(obj_type_plural)s" msgstr "これらを削除 %(count)s %(obj_type_plural)s" -#: netbox/templates/generic/bulk_rename.html:20 +#: templates/generic/bulk_rename.html:20 msgid "Renaming" msgstr "名前変更" -#: netbox/templates/generic/bulk_rename.html:27 +#: templates/generic/bulk_rename.html:27 msgid "Bulk Rename" msgstr "一括名前変更" -#: netbox/templates/generic/bulk_rename.html:39 +#: templates/generic/bulk_rename.html:39 msgid "Current Name" msgstr "現在の名前" -#: netbox/templates/generic/bulk_rename.html:40 +#: templates/generic/bulk_rename.html:40 msgid "New Name" msgstr "新しい名前" -#: netbox/templates/generic/bulk_rename.html:64 -#: netbox/utilities/templates/widgets/markdown_input.html:11 +#: templates/generic/bulk_rename.html:64 +#: utilities/templates/widgets/markdown_input.html:11 msgid "Preview" msgstr "プレビュー" -#: netbox/templates/generic/confirmation_form.html:16 +#: templates/generic/confirmation_form.html:16 msgid "Are you sure" msgstr "よろしいですか" -#: netbox/templates/generic/confirmation_form.html:20 +#: templates/generic/confirmation_form.html:20 msgid "Confirm" msgstr "確認" -#: netbox/templates/generic/object_children.html:47 -#: netbox/utilities/templates/buttons/bulk_edit.html:4 +#: templates/generic/object_children.html:47 +#: utilities/templates/buttons/bulk_edit.html:4 msgid "Edit Selected" msgstr "選択項目を編集" -#: netbox/templates/generic/object_children.html:61 -#: netbox/utilities/templates/buttons/bulk_delete.html:4 +#: templates/generic/object_children.html:61 +#: utilities/templates/buttons/bulk_delete.html:4 msgid "Delete Selected" msgstr "選択項目を削除" -#: netbox/templates/generic/object_edit.html:24 +#: templates/generic/object_edit.html:24 #, python-format msgid "Add a new %(object_type)s" msgstr "新規追加 %(object_type)s" -#: netbox/templates/generic/object_edit.html:35 +#: templates/generic/object_edit.html:35 msgid "View model documentation" msgstr "モデルドキュメンテーションを見る" -#: netbox/templates/generic/object_edit.html:36 +#: templates/generic/object_edit.html:36 msgid "Help" msgstr "ヘルプ" -#: netbox/templates/generic/object_edit.html:83 +#: templates/generic/object_edit.html:83 msgid "Create & Add Another" msgstr "作成して別のものを追加" -#: netbox/templates/generic/object_list.html:57 +#: templates/generic/object_list.html:57 msgid "Filters" msgstr "フィルタ" -#: netbox/templates/generic/object_list.html:88 +#: templates/generic/object_list.html:88 #, python-format msgid "" "Select all %(count)s " @@ -13469,40 +12748,40 @@ msgstr "" "選択 すべて %(count)s " "%(object_type_plural)s マッチングクエリ" -#: netbox/templates/home.html:15 +#: templates/home.html:15 msgid "New Release Available" msgstr "新しいリリースが入手可能" -#: netbox/templates/home.html:16 +#: templates/home.html:16 msgid "is available" msgstr "利用可能です" -#: netbox/templates/home.html:18 +#: templates/home.html:18 msgctxt "Document title" msgid "Upgrade Instructions" msgstr "アップグレード手順" -#: netbox/templates/home.html:40 +#: templates/home.html:40 msgid "Unlock Dashboard" msgstr "ダッシュボードのロック解除" -#: netbox/templates/home.html:49 +#: templates/home.html:49 msgid "Lock Dashboard" msgstr "ロックダッシュボード" -#: netbox/templates/home.html:60 +#: templates/home.html:60 msgid "Add Widget" msgstr "ウィジェットを追加" -#: netbox/templates/home.html:63 +#: templates/home.html:63 msgid "Save Layout" msgstr "レイアウトを保存" -#: netbox/templates/htmx/delete_form.html:7 +#: templates/htmx/delete_form.html:7 msgid "Confirm Deletion" msgstr "削除を確認" -#: netbox/templates/htmx/delete_form.html:11 +#: templates/htmx/delete_form.html:11 #, python-format msgid "" "Are you sure you want to delete " @@ -13511,40 +12790,40 @@ msgstr "" "本当にしたいですか 削除する %(object_type)s " "%(object)s?" -#: netbox/templates/htmx/delete_form.html:17 +#: templates/htmx/delete_form.html:17 msgid "The following objects will be deleted as a result of this action." msgstr "このアクションの結果、次のオブジェクトが削除されます。" -#: netbox/templates/htmx/notifications.html:15 +#: templates/htmx/notifications.html:15 msgid "ago" msgstr "前に" -#: netbox/templates/htmx/notifications.html:26 +#: templates/htmx/notifications.html:26 msgid "No unread notifications" msgstr "未読通知なし" -#: netbox/templates/htmx/notifications.html:31 +#: templates/htmx/notifications.html:31 msgid "All notifications" msgstr "すべての通知" -#: netbox/templates/htmx/object_selector.html:5 +#: templates/htmx/object_selector.html:5 msgid "Select" msgstr "選択" -#: netbox/templates/inc/filter_list.html:42 -#: netbox/utilities/templates/helpers/table_config_form.html:39 +#: templates/inc/filter_list.html:43 +#: utilities/templates/helpers/table_config_form.html:39 msgid "Reset" msgstr "リセット" -#: netbox/templates/inc/light_toggle.html:4 +#: templates/inc/light_toggle.html:4 msgid "Enable dark mode" msgstr "ダークモードを有効にする" -#: netbox/templates/inc/light_toggle.html:7 +#: templates/inc/light_toggle.html:7 msgid "Enable light mode" msgstr "ライトモードを有効にする" -#: netbox/templates/inc/missing_prerequisites.html:8 +#: templates/inc/missing_prerequisites.html:8 #, python-format msgid "" "Before you can add a %(model)s you must first create a " @@ -13552,283 +12831,281 @@ msgid "" msgstr "" "追加する前に %(model)s 最初に作成する必要があります %(prerequisite_model)s。" -#: netbox/templates/inc/paginator.html:15 +#: templates/inc/paginator.html:15 msgid "Page selection" msgstr "ページ選択" -#: netbox/templates/inc/paginator.html:75 +#: templates/inc/paginator.html:75 #, python-format msgid "Showing %(start)s-%(end)s of %(total)s" msgstr "表示中 %(start)s-%(end)s の %(total)s" -#: netbox/templates/inc/paginator.html:82 +#: templates/inc/paginator.html:82 msgid "Pagination options" msgstr "ページネーションオプション" -#: netbox/templates/inc/paginator.html:86 +#: templates/inc/paginator.html:86 msgid "Per Page" msgstr "1 ページあたり" -#: netbox/templates/inc/panels/image_attachments.html:10 +#: templates/inc/panels/image_attachments.html:10 msgid "Attach an image" msgstr "画像を添付" -#: netbox/templates/inc/panels/related_objects.html:5 +#: templates/inc/panels/related_objects.html:5 msgid "Related Objects" msgstr "関連オブジェクト" -#: netbox/templates/inc/panels/tags.html:11 +#: templates/inc/panels/tags.html:11 msgid "No tags assigned" msgstr "タグが割り当てられていません" -#: netbox/templates/inc/sync_warning.html:10 +#: templates/inc/sync_warning.html:10 msgid "Data is out of sync with upstream file" msgstr "データはアップストリームファイルと同期していません" -#: netbox/templates/inc/table_controls_htmx.html:7 +#: templates/inc/table_controls_htmx.html:7 msgid "Quick search" msgstr "簡易検索" -#: netbox/templates/inc/table_controls_htmx.html:20 +#: templates/inc/table_controls_htmx.html:20 msgid "Saved filter" msgstr "保存済みフィルタ" -#: netbox/templates/inc/table_htmx.html:18 +#: templates/inc/table_htmx.html:18 msgid "Clear ordering" msgstr "注文をクリア" -#: netbox/templates/inc/user_menu.html:6 +#: templates/inc/user_menu.html:6 msgid "Help center" msgstr "ヘルプセンター" -#: netbox/templates/inc/user_menu.html:41 +#: templates/inc/user_menu.html:41 msgid "Django Admin" msgstr "ジャンゴ管理者" -#: netbox/templates/inc/user_menu.html:61 +#: templates/inc/user_menu.html:61 msgid "Log Out" msgstr "ログアウト" -#: netbox/templates/inc/user_menu.html:68 netbox/templates/login.html:38 +#: templates/inc/user_menu.html:68 templates/login.html:38 msgid "Log In" msgstr "ログイン" -#: netbox/templates/ipam/aggregate.html:14 -#: netbox/templates/ipam/ipaddress.html:14 -#: netbox/templates/ipam/iprange.html:13 netbox/templates/ipam/prefix.html:15 +#: templates/ipam/aggregate.html:14 templates/ipam/ipaddress.html:14 +#: templates/ipam/iprange.html:13 templates/ipam/prefix.html:15 msgid "Family" msgstr "ファミリー" -#: netbox/templates/ipam/aggregate.html:39 +#: templates/ipam/aggregate.html:39 msgid "Date Added" msgstr "追加日" -#: netbox/templates/ipam/aggregate/prefixes.html:8 -#: netbox/templates/ipam/prefix/prefixes.html:8 -#: netbox/templates/ipam/role.html:10 +#: templates/ipam/aggregate/prefixes.html:8 +#: templates/ipam/prefix/prefixes.html:8 templates/ipam/role.html:10 msgid "Add Prefix" msgstr "プレフィックスを追加" -#: netbox/templates/ipam/asn.html:23 +#: templates/ipam/asn.html:23 msgid "AS Number" msgstr "AS 番号" -#: netbox/templates/ipam/fhrpgroup.html:52 +#: templates/ipam/fhrpgroup.html:52 msgid "Authentication Type" msgstr "認証タイプ" -#: netbox/templates/ipam/fhrpgroup.html:56 +#: templates/ipam/fhrpgroup.html:56 msgid "Authentication Key" msgstr "認証キー" -#: netbox/templates/ipam/fhrpgroup.html:69 +#: templates/ipam/fhrpgroup.html:69 msgid "Virtual IP Addresses" msgstr "仮想 IP アドレス" -#: netbox/templates/ipam/inc/ipaddress_edit_header.html:13 +#: templates/ipam/inc/ipaddress_edit_header.html:13 msgid "Assign IP" msgstr "IP アドレスを割り当てる" -#: netbox/templates/ipam/inc/ipaddress_edit_header.html:19 +#: templates/ipam/inc/ipaddress_edit_header.html:19 msgid "Bulk Create" msgstr "一括作成" -#: netbox/templates/ipam/inc/panels/fhrp_groups.html:10 +#: templates/ipam/inc/panels/fhrp_groups.html:10 msgid "Create Group" msgstr "グループを作成" -#: netbox/templates/ipam/inc/panels/fhrp_groups.html:25 +#: templates/ipam/inc/panels/fhrp_groups.html:25 msgid "Virtual IPs" msgstr "仮想 IP" -#: netbox/templates/ipam/inc/toggle_available.html:7 +#: templates/ipam/inc/toggle_available.html:7 msgid "Show Assigned" msgstr "割り当て済みを表示" -#: netbox/templates/ipam/inc/toggle_available.html:10 +#: templates/ipam/inc/toggle_available.html:10 msgid "Show Available" msgstr "ショー利用可能" -#: netbox/templates/ipam/inc/toggle_available.html:13 +#: templates/ipam/inc/toggle_available.html:13 msgid "Show All" msgstr "すべて表示" -#: netbox/templates/ipam/ipaddress.html:23 -#: netbox/templates/ipam/iprange.html:45 netbox/templates/ipam/prefix.html:24 +#: templates/ipam/ipaddress.html:23 templates/ipam/iprange.html:45 +#: templates/ipam/prefix.html:24 msgid "Global" msgstr "グローバル" -#: netbox/templates/ipam/ipaddress.html:85 +#: templates/ipam/ipaddress.html:85 msgid "NAT (outside)" msgstr "NAT (アウトサイド)" -#: netbox/templates/ipam/ipaddress_assign.html:8 +#: templates/ipam/ipaddress_assign.html:8 msgid "Assign an IP Address" msgstr "IP アドレスを割り当てる" -#: netbox/templates/ipam/ipaddress_assign.html:22 +#: templates/ipam/ipaddress_assign.html:22 msgid "Select IP Address" msgstr "IP アドレスを選択" -#: netbox/templates/ipam/ipaddress_assign.html:35 +#: templates/ipam/ipaddress_assign.html:35 msgid "Search Results" msgstr "検索結果" -#: netbox/templates/ipam/ipaddress_bulk_add.html:6 +#: templates/ipam/ipaddress_bulk_add.html:6 msgid "Bulk Add IP Addresses" msgstr "IP アドレスを一括追加" -#: netbox/templates/ipam/iprange.html:17 +#: templates/ipam/iprange.html:17 msgid "Starting Address" msgstr "開始アドレス" -#: netbox/templates/ipam/iprange.html:21 +#: templates/ipam/iprange.html:21 msgid "Ending Address" msgstr "終了アドレス" -#: netbox/templates/ipam/iprange.html:33 netbox/templates/ipam/prefix.html:110 +#: templates/ipam/iprange.html:33 templates/ipam/prefix.html:110 msgid "Marked fully utilized" msgstr "「完全使用済み」とマークされています" -#: netbox/templates/ipam/prefix.html:99 +#: templates/ipam/prefix.html:99 msgid "Addressing Details" msgstr "アドレス詳細" -#: netbox/templates/ipam/prefix.html:118 +#: templates/ipam/prefix.html:118 msgid "Child IPs" msgstr "子供 IP" -#: netbox/templates/ipam/prefix.html:126 +#: templates/ipam/prefix.html:126 msgid "Available IPs" msgstr "使用可能な IP" -#: netbox/templates/ipam/prefix.html:138 +#: templates/ipam/prefix.html:138 msgid "First available IP" msgstr "最初に利用可能な IP" -#: netbox/templates/ipam/prefix.html:179 +#: templates/ipam/prefix.html:179 msgid "Prefix Details" msgstr "プレフィックスの詳細" -#: netbox/templates/ipam/prefix.html:185 +#: templates/ipam/prefix.html:185 msgid "Network Address" msgstr "ネットワークアドレス" -#: netbox/templates/ipam/prefix.html:189 +#: templates/ipam/prefix.html:189 msgid "Network Mask" msgstr "ネットワークマスク" -#: netbox/templates/ipam/prefix.html:193 +#: templates/ipam/prefix.html:193 msgid "Wildcard Mask" msgstr "ワイルドカードマスク" -#: netbox/templates/ipam/prefix.html:197 +#: templates/ipam/prefix.html:197 msgid "Broadcast Address" msgstr "ブロードキャストアドレス" -#: netbox/templates/ipam/prefix/ip_ranges.html:7 +#: templates/ipam/prefix/ip_ranges.html:7 msgid "Add IP Range" msgstr "IP アドレス範囲を追加" -#: netbox/templates/ipam/prefix_list.html:7 +#: templates/ipam/prefix_list.html:7 msgid "Hide Depth Indicators" msgstr "深度インジケーターを非表示" -#: netbox/templates/ipam/prefix_list.html:11 +#: templates/ipam/prefix_list.html:11 msgid "Max Depth" msgstr "最大深度" -#: netbox/templates/ipam/prefix_list.html:28 +#: templates/ipam/prefix_list.html:28 msgid "Max Length" msgstr "最大長" -#: netbox/templates/ipam/rir.html:10 +#: templates/ipam/rir.html:10 msgid "Add Aggregate" msgstr "集約を追加" -#: netbox/templates/ipam/routetarget.html:38 +#: templates/ipam/routetarget.html:38 msgid "Importing VRFs" msgstr "VRF のインポート" -#: netbox/templates/ipam/routetarget.html:44 +#: templates/ipam/routetarget.html:44 msgid "Exporting VRFs" msgstr "VRF のエクスポート" -#: netbox/templates/ipam/routetarget.html:52 +#: templates/ipam/routetarget.html:52 msgid "Importing L2VPNs" msgstr "L2VPN のインポート" -#: netbox/templates/ipam/routetarget.html:58 +#: templates/ipam/routetarget.html:58 msgid "Exporting L2VPNs" msgstr "L2VPN のエクスポート" -#: netbox/templates/ipam/vlan.html:88 +#: templates/ipam/vlan.html:88 msgid "Add a Prefix" msgstr "プレフィックスを追加" -#: netbox/templates/ipam/vlangroup.html:18 +#: templates/ipam/vlangroup.html:18 msgid "Add VLAN" msgstr "VLAN の追加" -#: netbox/templates/ipam/vrf.html:16 +#: templates/ipam/vrf.html:16 msgid "Route Distinguisher" msgstr "ルート識別子" -#: netbox/templates/ipam/vrf.html:29 +#: templates/ipam/vrf.html:29 msgid "Unique IP Space" msgstr "ユニークな IP スペース" -#: netbox/templates/login.html:29 -#: netbox/utilities/templates/form_helpers/render_errors.html:7 +#: templates/login.html:29 +#: utilities/templates/form_helpers/render_errors.html:7 msgid "Errors" msgstr "エラー" -#: netbox/templates/login.html:69 +#: templates/login.html:69 msgid "Sign In" msgstr "サインイン" -#: netbox/templates/login.html:77 +#: templates/login.html:77 msgctxt "Denotes an alternative option" msgid "Or" msgstr "または" -#: netbox/templates/media_failure.html:7 +#: templates/media_failure.html:7 msgid "Static Media Failure - NetBox" msgstr "スタティックメディア障害-NetBox" -#: netbox/templates/media_failure.html:21 +#: templates/media_failure.html:21 msgid "Static Media Failure" msgstr "スタティックメディア障害" -#: netbox/templates/media_failure.html:23 +#: templates/media_failure.html:23 msgid "The following static media file failed to load" msgstr "次の静的メディアファイルを読み込めませんでした" -#: netbox/templates/media_failure.html:26 +#: templates/media_failure.html:26 msgid "Check the following" msgstr "以下を確認してください" -#: netbox/templates/media_failure.html:29 +#: templates/media_failure.html:29 msgid "" "manage.py collectstatic was run during the most recent upgrade." " This installs the most recent iteration of each static file into the static" @@ -13837,7 +13114,7 @@ msgstr "" "manage.py コレクトスタティック " "最新のアップグレード時に実行されました。これにより、各静的ファイルの最新のイテレーションが静的ルートパスにインストールされます。" -#: netbox/templates/media_failure.html:35 +#: templates/media_failure.html:35 #, python-format msgid "" "The HTTP service (e.g. nginx or Apache) is configured to serve files from " @@ -13848,7 +13125,7 @@ msgstr "" "スタティック・ルート パス。を参照してください。 インストールドキュメント さらなるガイダンスについて。" -#: netbox/templates/media_failure.html:47 +#: templates/media_failure.html:47 #, python-format msgid "" "The file %(filename)s exists in the static root directory and " @@ -13856,565 +13133,546 @@ msgid "" msgstr "" "このファイル %(filename)s 静的ルートディレクトリに存在し、HTTP サーバーから読み取ることができます。" -#: netbox/templates/media_failure.html:55 +#: templates/media_failure.html:55 #, python-format msgid "Click here to attempt loading NetBox again." msgstr "クリック ここに NetBox をもう一度ロードしてみます。" -#: netbox/templates/tenancy/contact.html:18 netbox/tenancy/filtersets.py:147 -#: netbox/tenancy/forms/bulk_edit.py:137 -#: netbox/tenancy/forms/filtersets.py:102 netbox/tenancy/forms/forms.py:56 -#: netbox/tenancy/forms/model_forms.py:106 -#: netbox/tenancy/forms/model_forms.py:130 -#: netbox/tenancy/tables/contacts.py:98 +#: templates/tenancy/contact.html:18 tenancy/filtersets.py:147 +#: tenancy/forms/bulk_edit.py:137 tenancy/forms/filtersets.py:102 +#: tenancy/forms/forms.py:56 tenancy/forms/model_forms.py:106 +#: tenancy/forms/model_forms.py:130 tenancy/tables/contacts.py:98 msgid "Contact" msgstr "連絡" -#: netbox/templates/tenancy/contact.html:29 -#: netbox/tenancy/forms/bulk_edit.py:99 +#: templates/tenancy/contact.html:29 tenancy/forms/bulk_edit.py:99 msgid "Title" msgstr "タイトル" -#: netbox/templates/tenancy/contact.html:33 -#: netbox/tenancy/forms/bulk_edit.py:104 netbox/tenancy/tables/contacts.py:64 +#: templates/tenancy/contact.html:33 tenancy/forms/bulk_edit.py:104 +#: tenancy/tables/contacts.py:64 msgid "Phone" msgstr "電話" -#: netbox/templates/tenancy/contactgroup.html:18 -#: netbox/tenancy/forms/forms.py:66 netbox/tenancy/forms/model_forms.py:75 +#: templates/tenancy/contactgroup.html:18 tenancy/forms/forms.py:66 +#: tenancy/forms/model_forms.py:75 msgid "Contact Group" msgstr "コンタクトグループ" -#: netbox/templates/tenancy/contactgroup.html:50 +#: templates/tenancy/contactgroup.html:50 msgid "Add Contact Group" msgstr "連絡先グループを追加" -#: netbox/templates/tenancy/contactrole.html:15 -#: netbox/tenancy/filtersets.py:152 netbox/tenancy/forms/forms.py:61 -#: netbox/tenancy/forms/model_forms.py:87 +#: templates/tenancy/contactrole.html:15 tenancy/filtersets.py:152 +#: tenancy/forms/forms.py:61 tenancy/forms/model_forms.py:87 msgid "Contact Role" msgstr "連絡先のロール" -#: netbox/templates/tenancy/object_contacts.html:9 +#: templates/tenancy/object_contacts.html:9 msgid "Add a contact" msgstr "連絡先を追加" -#: netbox/templates/tenancy/tenantgroup.html:17 +#: templates/tenancy/tenantgroup.html:17 msgid "Add Tenant" msgstr "テナントを追加" -#: netbox/templates/tenancy/tenantgroup.html:26 -#: netbox/tenancy/forms/model_forms.py:32 netbox/tenancy/tables/columns.py:51 -#: netbox/tenancy/tables/columns.py:61 +#: templates/tenancy/tenantgroup.html:26 tenancy/forms/model_forms.py:32 +#: tenancy/tables/columns.py:51 tenancy/tables/columns.py:61 msgid "Tenant Group" msgstr "テナントグループ" -#: netbox/templates/tenancy/tenantgroup.html:59 +#: templates/tenancy/tenantgroup.html:59 msgid "Add Tenant Group" msgstr "テナントグループの追加" -#: netbox/templates/users/group.html:39 netbox/templates/users/user.html:63 +#: templates/users/group.html:39 templates/users/user.html:63 msgid "Assigned Permissions" msgstr "割当権限" -#: netbox/templates/users/objectpermission.html:6 -#: netbox/templates/users/objectpermission.html:14 -#: netbox/users/forms/filtersets.py:66 +#: templates/users/objectpermission.html:6 +#: templates/users/objectpermission.html:14 users/forms/filtersets.py:66 msgid "Permission" msgstr "許可" -#: netbox/templates/users/objectpermission.html:34 +#: templates/users/objectpermission.html:34 msgid "View" msgstr "ビュー" -#: netbox/templates/users/objectpermission.html:52 -#: netbox/users/forms/model_forms.py:315 +#: templates/users/objectpermission.html:52 users/forms/model_forms.py:315 msgid "Constraints" msgstr "制約" -#: netbox/templates/users/objectpermission.html:72 +#: templates/users/objectpermission.html:72 msgid "Assigned Users" msgstr "割当ユーザ" -#: netbox/templates/virtualization/cluster.html:52 +#: templates/virtualization/cluster.html:52 msgid "Allocated Resources" msgstr "割り当てられたリソース" -#: netbox/templates/virtualization/cluster.html:55 -#: netbox/templates/virtualization/virtualmachine.html:125 +#: templates/virtualization/cluster.html:55 +#: templates/virtualization/virtualmachine.html:125 msgid "Virtual CPUs" msgstr "バーチャル CPU" -#: netbox/templates/virtualization/cluster.html:59 -#: netbox/templates/virtualization/virtualmachine.html:129 +#: templates/virtualization/cluster.html:59 +#: templates/virtualization/virtualmachine.html:129 msgid "Memory" msgstr "メモリー" -#: netbox/templates/virtualization/cluster.html:69 -#: netbox/templates/virtualization/virtualmachine.html:140 +#: templates/virtualization/cluster.html:69 +#: templates/virtualization/virtualmachine.html:140 msgid "Disk Space" msgstr "ディスク容量" -#: netbox/templates/virtualization/cluster/base.html:18 +#: templates/virtualization/cluster/base.html:18 msgid "Add Virtual Machine" msgstr "バーチャルマシンを追加" -#: netbox/templates/virtualization/cluster/base.html:24 +#: templates/virtualization/cluster/base.html:24 msgid "Assign Device" msgstr "デバイスを割り当て" -#: netbox/templates/virtualization/cluster/devices.html:10 +#: templates/virtualization/cluster/devices.html:10 msgid "Remove Selected" msgstr "選択項目を削除" -#: netbox/templates/virtualization/cluster_add_devices.html:9 +#: templates/virtualization/cluster_add_devices.html:9 #, python-format msgid "Add Device to Cluster %(cluster)s" msgstr "クラスタにデバイスを追加 %(cluster)s" -#: netbox/templates/virtualization/cluster_add_devices.html:23 +#: templates/virtualization/cluster_add_devices.html:23 msgid "Device Selection" msgstr "デバイス選択" -#: netbox/templates/virtualization/cluster_add_devices.html:31 +#: templates/virtualization/cluster_add_devices.html:31 msgid "Add Devices" msgstr "デバイスを追加" -#: netbox/templates/virtualization/clustergroup.html:10 -#: netbox/templates/virtualization/clustertype.html:10 +#: templates/virtualization/clustergroup.html:10 +#: templates/virtualization/clustertype.html:10 msgid "Add Cluster" msgstr "クラスタを追加" -#: netbox/templates/virtualization/clustergroup.html:19 -#: netbox/virtualization/forms/model_forms.py:50 +#: templates/virtualization/clustergroup.html:19 +#: virtualization/forms/model_forms.py:50 msgid "Cluster Group" msgstr "クラスタグループ" -#: netbox/templates/virtualization/clustertype.html:19 -#: netbox/templates/virtualization/virtualmachine.html:110 -#: netbox/virtualization/forms/model_forms.py:36 +#: templates/virtualization/clustertype.html:19 +#: templates/virtualization/virtualmachine.html:110 +#: virtualization/forms/model_forms.py:36 msgid "Cluster Type" msgstr "クラスタタイプ" -#: netbox/templates/virtualization/virtualdisk.html:18 +#: templates/virtualization/virtualdisk.html:18 msgid "Virtual Disk" msgstr "仮想ディスク" -#: netbox/templates/virtualization/virtualmachine.html:122 -#: netbox/virtualization/forms/bulk_edit.py:190 -#: netbox/virtualization/forms/model_forms.py:224 +#: templates/virtualization/virtualmachine.html:122 +#: virtualization/forms/bulk_edit.py:190 +#: virtualization/forms/model_forms.py:224 msgid "Resources" msgstr "リソース" -#: netbox/templates/virtualization/virtualmachine.html:178 +#: templates/virtualization/virtualmachine.html:178 msgid "Add Virtual Disk" msgstr "仮想ディスクを追加" -#: netbox/templates/vpn/ikepolicy.html:10 -#: netbox/templates/vpn/ipsecprofile.html:33 netbox/vpn/tables/crypto.py:166 +#: templates/vpn/ikepolicy.html:10 templates/vpn/ipsecprofile.html:33 +#: vpn/tables/crypto.py:166 msgid "IKE Policy" msgstr "IKE ポリシー" -#: netbox/templates/vpn/ikepolicy.html:21 +#: templates/vpn/ikepolicy.html:21 msgid "IKE Version" msgstr "IKE バージョン" -#: netbox/templates/vpn/ikepolicy.html:29 +#: templates/vpn/ikepolicy.html:29 msgid "Pre-Shared Key" msgstr "事前共有キー" -#: netbox/templates/vpn/ikepolicy.html:33 -#: netbox/templates/wireless/inc/authentication_attrs.html:20 +#: templates/vpn/ikepolicy.html:33 +#: templates/wireless/inc/authentication_attrs.html:20 msgid "Show Secret" msgstr "シークレットを表示" -#: netbox/templates/vpn/ikepolicy.html:57 -#: netbox/templates/vpn/ipsecpolicy.html:45 -#: netbox/templates/vpn/ipsecprofile.html:52 -#: netbox/templates/vpn/ipsecprofile.html:77 -#: netbox/vpn/forms/model_forms.py:316 netbox/vpn/forms/model_forms.py:352 -#: netbox/vpn/tables/crypto.py:68 netbox/vpn/tables/crypto.py:134 +#: templates/vpn/ikepolicy.html:57 templates/vpn/ipsecpolicy.html:45 +#: templates/vpn/ipsecprofile.html:52 templates/vpn/ipsecprofile.html:77 +#: vpn/forms/model_forms.py:316 vpn/forms/model_forms.py:352 +#: vpn/tables/crypto.py:68 vpn/tables/crypto.py:134 msgid "Proposals" msgstr "提案" -#: netbox/templates/vpn/ikeproposal.html:10 +#: templates/vpn/ikeproposal.html:10 msgid "IKE Proposal" msgstr "イケアの提案" -#: netbox/templates/vpn/ikeproposal.html:21 netbox/vpn/forms/bulk_edit.py:97 -#: netbox/vpn/forms/bulk_import.py:145 netbox/vpn/forms/filtersets.py:101 +#: templates/vpn/ikeproposal.html:21 vpn/forms/bulk_edit.py:97 +#: vpn/forms/bulk_import.py:145 vpn/forms/filtersets.py:101 msgid "Authentication method" msgstr "認証方法" -#: netbox/templates/vpn/ikeproposal.html:25 -#: netbox/templates/vpn/ipsecproposal.html:21 -#: netbox/vpn/forms/bulk_edit.py:102 netbox/vpn/forms/bulk_edit.py:172 -#: netbox/vpn/forms/bulk_import.py:149 netbox/vpn/forms/bulk_import.py:195 -#: netbox/vpn/forms/filtersets.py:106 netbox/vpn/forms/filtersets.py:154 +#: templates/vpn/ikeproposal.html:25 templates/vpn/ipsecproposal.html:21 +#: vpn/forms/bulk_edit.py:102 vpn/forms/bulk_edit.py:172 +#: vpn/forms/bulk_import.py:149 vpn/forms/bulk_import.py:195 +#: vpn/forms/filtersets.py:106 vpn/forms/filtersets.py:154 msgid "Encryption algorithm" msgstr "暗号化アルゴリズム" -#: netbox/templates/vpn/ikeproposal.html:29 -#: netbox/templates/vpn/ipsecproposal.html:25 -#: netbox/vpn/forms/bulk_edit.py:107 netbox/vpn/forms/bulk_edit.py:177 -#: netbox/vpn/forms/bulk_import.py:153 netbox/vpn/forms/bulk_import.py:200 -#: netbox/vpn/forms/filtersets.py:111 netbox/vpn/forms/filtersets.py:159 +#: templates/vpn/ikeproposal.html:29 templates/vpn/ipsecproposal.html:25 +#: vpn/forms/bulk_edit.py:107 vpn/forms/bulk_edit.py:177 +#: vpn/forms/bulk_import.py:153 vpn/forms/bulk_import.py:200 +#: vpn/forms/filtersets.py:111 vpn/forms/filtersets.py:159 msgid "Authentication algorithm" msgstr "認証アルゴリズム" -#: netbox/templates/vpn/ikeproposal.html:33 +#: templates/vpn/ikeproposal.html:33 msgid "DH group" msgstr "ディーエイチグループ" -#: netbox/templates/vpn/ikeproposal.html:37 -#: netbox/templates/vpn/ipsecproposal.html:29 -#: netbox/vpn/forms/bulk_edit.py:182 netbox/vpn/models/crypto.py:146 +#: templates/vpn/ikeproposal.html:37 templates/vpn/ipsecproposal.html:29 +#: vpn/forms/bulk_edit.py:182 vpn/models/crypto.py:146 msgid "SA lifetime (seconds)" msgstr "SA ライフタイム (秒)" -#: netbox/templates/vpn/ipsecpolicy.html:10 -#: netbox/templates/vpn/ipsecprofile.html:66 netbox/vpn/tables/crypto.py:170 +#: templates/vpn/ipsecpolicy.html:10 templates/vpn/ipsecprofile.html:66 +#: vpn/tables/crypto.py:170 msgid "IPSec Policy" msgstr "IPsec ポリシー" -#: netbox/templates/vpn/ipsecpolicy.html:21 netbox/vpn/forms/bulk_edit.py:210 -#: netbox/vpn/models/crypto.py:193 +#: templates/vpn/ipsecpolicy.html:21 vpn/forms/bulk_edit.py:210 +#: vpn/models/crypto.py:193 msgid "PFS group" msgstr "PFS グループ" -#: netbox/templates/vpn/ipsecprofile.html:10 -#: netbox/vpn/forms/model_forms.py:54 +#: templates/vpn/ipsecprofile.html:10 vpn/forms/model_forms.py:54 msgid "IPSec Profile" msgstr "IPsec プロファイル" -#: netbox/templates/vpn/ipsecprofile.html:89 netbox/vpn/tables/crypto.py:137 +#: templates/vpn/ipsecprofile.html:89 vpn/tables/crypto.py:137 msgid "PFS Group" msgstr "PFS グループ" -#: netbox/templates/vpn/ipsecproposal.html:10 +#: templates/vpn/ipsecproposal.html:10 msgid "IPSec Proposal" msgstr "IPsec プロポーザル" -#: netbox/templates/vpn/ipsecproposal.html:33 -#: netbox/vpn/forms/bulk_edit.py:186 netbox/vpn/models/crypto.py:152 +#: templates/vpn/ipsecproposal.html:33 vpn/forms/bulk_edit.py:186 +#: vpn/models/crypto.py:152 msgid "SA lifetime (KB)" msgstr "SA ライフタイム (KB)" -#: netbox/templates/vpn/l2vpn.html:11 -#: netbox/templates/vpn/l2vpntermination.html:9 +#: templates/vpn/l2vpn.html:11 templates/vpn/l2vpntermination.html:9 msgid "L2VPN Attributes" msgstr "L2VPN アトリビュート" -#: netbox/templates/vpn/l2vpn.html:60 netbox/templates/vpn/tunnel.html:76 +#: templates/vpn/l2vpn.html:60 templates/vpn/tunnel.html:76 msgid "Add a Termination" msgstr "終了を追加" -#: netbox/templates/vpn/tunnel.html:9 +#: templates/vpn/tunnel.html:9 msgid "Add Termination" msgstr "終了を追加" -#: netbox/templates/vpn/tunnel.html:37 netbox/vpn/forms/bulk_edit.py:49 -#: netbox/vpn/forms/bulk_import.py:48 netbox/vpn/forms/filtersets.py:57 +#: templates/vpn/tunnel.html:37 vpn/forms/bulk_edit.py:49 +#: vpn/forms/bulk_import.py:48 vpn/forms/filtersets.py:57 msgid "Encapsulation" msgstr "カプセル化" -#: netbox/templates/vpn/tunnel.html:41 netbox/vpn/forms/bulk_edit.py:55 -#: netbox/vpn/forms/bulk_import.py:53 netbox/vpn/forms/filtersets.py:64 -#: netbox/vpn/models/crypto.py:250 netbox/vpn/tables/tunnels.py:51 +#: templates/vpn/tunnel.html:41 vpn/forms/bulk_edit.py:55 +#: vpn/forms/bulk_import.py:53 vpn/forms/filtersets.py:64 +#: vpn/models/crypto.py:250 vpn/tables/tunnels.py:51 msgid "IPSec profile" msgstr "IPsec プロファイル" -#: netbox/templates/vpn/tunnel.html:45 netbox/vpn/forms/bulk_edit.py:69 -#: netbox/vpn/forms/filtersets.py:68 +#: templates/vpn/tunnel.html:45 vpn/forms/bulk_edit.py:69 +#: vpn/forms/filtersets.py:68 msgid "Tunnel ID" msgstr "トンネル ID" -#: netbox/templates/vpn/tunnelgroup.html:14 +#: templates/vpn/tunnelgroup.html:14 msgid "Add Tunnel" msgstr "トンネルを追加" -#: netbox/templates/vpn/tunnelgroup.html:23 netbox/vpn/forms/model_forms.py:36 -#: netbox/vpn/forms/model_forms.py:49 +#: templates/vpn/tunnelgroup.html:23 vpn/forms/model_forms.py:36 +#: vpn/forms/model_forms.py:49 msgid "Tunnel Group" msgstr "トンネルグループ" -#: netbox/templates/vpn/tunneltermination.html:10 +#: templates/vpn/tunneltermination.html:10 msgid "Tunnel Termination" msgstr "トンネル終端" -#: netbox/templates/vpn/tunneltermination.html:35 -#: netbox/vpn/forms/bulk_import.py:107 netbox/vpn/forms/model_forms.py:102 -#: netbox/vpn/forms/model_forms.py:138 netbox/vpn/forms/model_forms.py:247 -#: netbox/vpn/tables/tunnels.py:101 +#: templates/vpn/tunneltermination.html:35 vpn/forms/bulk_import.py:107 +#: vpn/forms/model_forms.py:102 vpn/forms/model_forms.py:138 +#: vpn/forms/model_forms.py:247 vpn/tables/tunnels.py:101 msgid "Outside IP" msgstr "外部IP" -#: netbox/templates/vpn/tunneltermination.html:51 +#: templates/vpn/tunneltermination.html:51 msgid "Peer Terminations" msgstr "ピアターミネーション" -#: netbox/templates/wireless/inc/authentication_attrs.html:12 +#: templates/wireless/inc/authentication_attrs.html:12 msgid "Cipher" msgstr "暗号" -#: netbox/templates/wireless/inc/authentication_attrs.html:16 +#: templates/wireless/inc/authentication_attrs.html:16 msgid "PSK" msgstr "PSK" -#: netbox/templates/wireless/inc/wirelesslink_interface.html:35 -#: netbox/templates/wireless/inc/wirelesslink_interface.html:45 +#: templates/wireless/inc/wirelesslink_interface.html:35 +#: templates/wireless/inc/wirelesslink_interface.html:45 msgctxt "Abbreviation for megahertz" msgid "MHz" msgstr "メガヘルツ" -#: netbox/templates/wireless/wirelesslan.html:57 +#: templates/wireless/wirelesslan.html:57 msgid "Attached Interfaces" msgstr "接続インタフェース" -#: netbox/templates/wireless/wirelesslangroup.html:17 +#: templates/wireless/wirelesslangroup.html:17 msgid "Add Wireless LAN" msgstr "無線 LAN の追加" -#: netbox/templates/wireless/wirelesslangroup.html:26 -#: netbox/wireless/forms/model_forms.py:28 +#: templates/wireless/wirelesslangroup.html:26 +#: wireless/forms/model_forms.py:28 msgid "Wireless LAN Group" msgstr "無線 LAN グループ" -#: netbox/templates/wireless/wirelesslangroup.html:59 +#: templates/wireless/wirelesslangroup.html:59 msgid "Add Wireless LAN Group" msgstr "無線 LAN グループの追加" -#: netbox/templates/wireless/wirelesslink.html:14 +#: templates/wireless/wirelesslink.html:14 msgid "Link Properties" msgstr "リンクプロパティ" -#: netbox/templates/wireless/wirelesslink.html:38 -#: netbox/wireless/forms/bulk_edit.py:129 -#: netbox/wireless/forms/filtersets.py:102 -#: netbox/wireless/forms/model_forms.py:165 +#: templates/wireless/wirelesslink.html:38 wireless/forms/bulk_edit.py:129 +#: wireless/forms/filtersets.py:102 wireless/forms/model_forms.py:165 msgid "Distance" msgstr "距離" -#: netbox/tenancy/filtersets.py:28 +#: tenancy/filtersets.py:28 msgid "Parent contact group (ID)" msgstr "親連絡先グループ (ID)" -#: netbox/tenancy/filtersets.py:34 +#: tenancy/filtersets.py:34 msgid "Parent contact group (slug)" msgstr "親連絡先グループ (スラッグ)" -#: netbox/tenancy/filtersets.py:40 netbox/tenancy/filtersets.py:67 -#: netbox/tenancy/filtersets.py:110 +#: tenancy/filtersets.py:40 tenancy/filtersets.py:67 tenancy/filtersets.py:110 msgid "Contact group (ID)" msgstr "連絡先グループ (ID)" -#: netbox/tenancy/filtersets.py:47 netbox/tenancy/filtersets.py:74 -#: netbox/tenancy/filtersets.py:117 +#: tenancy/filtersets.py:47 tenancy/filtersets.py:74 tenancy/filtersets.py:117 msgid "Contact group (slug)" msgstr "コンタクトグループ (slug)" -#: netbox/tenancy/filtersets.py:104 +#: tenancy/filtersets.py:104 msgid "Contact (ID)" msgstr "連絡先 (ID)" -#: netbox/tenancy/filtersets.py:121 +#: tenancy/filtersets.py:121 msgid "Contact role (ID)" msgstr "連絡先ロール (ID)" -#: netbox/tenancy/filtersets.py:127 +#: tenancy/filtersets.py:127 msgid "Contact role (slug)" msgstr "コンタクトロール (slug)" -#: netbox/tenancy/filtersets.py:158 +#: tenancy/filtersets.py:158 msgid "Contact group" msgstr "連絡先グループ" -#: netbox/tenancy/filtersets.py:169 +#: tenancy/filtersets.py:169 msgid "Parent tenant group (ID)" msgstr "親テナントグループ (ID)" -#: netbox/tenancy/filtersets.py:175 +#: tenancy/filtersets.py:175 msgid "Parent tenant group (slug)" msgstr "親テナントグループ (スラッグ)" -#: netbox/tenancy/filtersets.py:181 netbox/tenancy/filtersets.py:201 +#: tenancy/filtersets.py:181 tenancy/filtersets.py:201 msgid "Tenant group (ID)" msgstr "テナントグループ (ID)" -#: netbox/tenancy/filtersets.py:234 +#: tenancy/filtersets.py:234 msgid "Tenant Group (ID)" msgstr "テナントグループ (ID)" -#: netbox/tenancy/filtersets.py:241 +#: tenancy/filtersets.py:241 msgid "Tenant Group (slug)" msgstr "テナントグループ (slug)" -#: netbox/tenancy/forms/bulk_edit.py:66 +#: tenancy/forms/bulk_edit.py:66 msgid "Desciption" msgstr "説明" -#: netbox/tenancy/forms/bulk_import.py:101 +#: tenancy/forms/bulk_import.py:101 msgid "Assigned contact" msgstr "割当連絡先" -#: netbox/tenancy/models/contacts.py:32 +#: tenancy/models/contacts.py:32 msgid "contact group" msgstr "連絡先グループ" -#: netbox/tenancy/models/contacts.py:33 +#: tenancy/models/contacts.py:33 msgid "contact groups" msgstr "連絡先グループ" -#: netbox/tenancy/models/contacts.py:48 +#: tenancy/models/contacts.py:48 msgid "contact role" msgstr "連絡先のロール" -#: netbox/tenancy/models/contacts.py:49 +#: tenancy/models/contacts.py:49 msgid "contact roles" msgstr "連絡先のロール" -#: netbox/tenancy/models/contacts.py:68 +#: tenancy/models/contacts.py:68 msgid "title" msgstr "タイトル" -#: netbox/tenancy/models/contacts.py:73 +#: tenancy/models/contacts.py:73 msgid "phone" msgstr "電話" -#: netbox/tenancy/models/contacts.py:78 +#: tenancy/models/contacts.py:78 msgid "email" msgstr "Eメール" -#: netbox/tenancy/models/contacts.py:87 +#: tenancy/models/contacts.py:87 msgid "link" msgstr "リンク" -#: netbox/tenancy/models/contacts.py:103 +#: tenancy/models/contacts.py:103 msgid "contact" msgstr "接触" -#: netbox/tenancy/models/contacts.py:104 +#: tenancy/models/contacts.py:104 msgid "contacts" msgstr "連絡先" -#: netbox/tenancy/models/contacts.py:153 +#: tenancy/models/contacts.py:153 msgid "contact assignment" msgstr "連絡先割り当て" -#: netbox/tenancy/models/contacts.py:154 +#: tenancy/models/contacts.py:154 msgid "contact assignments" msgstr "連絡先の割り当て" -#: netbox/tenancy/models/contacts.py:170 +#: tenancy/models/contacts.py:170 #, python-brace-format msgid "Contacts cannot be assigned to this object type ({type})." msgstr "このオブジェクトタイプには連絡先を割り当てられません ({type})。" -#: netbox/tenancy/models/tenants.py:32 +#: tenancy/models/tenants.py:32 msgid "tenant group" msgstr "テナントグループ" -#: netbox/tenancy/models/tenants.py:33 +#: tenancy/models/tenants.py:33 msgid "tenant groups" msgstr "テナントグループ" -#: netbox/tenancy/models/tenants.py:70 +#: tenancy/models/tenants.py:70 msgid "Tenant name must be unique per group." msgstr "テナント名はグループごとに一意である必要があります。" -#: netbox/tenancy/models/tenants.py:80 +#: tenancy/models/tenants.py:80 msgid "Tenant slug must be unique per group." msgstr "テナントslugはグループごとにユニークでなければなりません。" -#: netbox/tenancy/models/tenants.py:88 +#: tenancy/models/tenants.py:88 msgid "tenant" msgstr "テナント" -#: netbox/tenancy/models/tenants.py:89 +#: tenancy/models/tenants.py:89 msgid "tenants" msgstr "テナント" -#: netbox/tenancy/tables/contacts.py:112 +#: tenancy/tables/contacts.py:112 msgid "Contact Title" msgstr "連絡先のタイトル" -#: netbox/tenancy/tables/contacts.py:116 +#: tenancy/tables/contacts.py:116 msgid "Contact Phone" msgstr "連絡先電話番号" -#: netbox/tenancy/tables/contacts.py:121 +#: tenancy/tables/contacts.py:121 msgid "Contact Email" msgstr "連絡先電子メール" -#: netbox/tenancy/tables/contacts.py:125 +#: tenancy/tables/contacts.py:125 msgid "Contact Address" msgstr "連絡先住所" -#: netbox/tenancy/tables/contacts.py:129 +#: tenancy/tables/contacts.py:129 msgid "Contact Link" msgstr "連絡先リンク" -#: netbox/tenancy/tables/contacts.py:133 +#: tenancy/tables/contacts.py:133 msgid "Contact Description" msgstr "連絡先の説明" -#: netbox/users/filtersets.py:33 netbox/users/filtersets.py:73 +#: users/filtersets.py:33 users/filtersets.py:73 msgid "Permission (ID)" msgstr "パーミッション (ID)" -#: netbox/users/filtersets.py:38 netbox/users/filtersets.py:78 +#: users/filtersets.py:38 users/filtersets.py:78 msgid "Notification group (ID)" msgstr "通知グループ (ID)" -#: netbox/users/forms/bulk_edit.py:26 +#: users/forms/bulk_edit.py:26 msgid "First name" msgstr "ファーストネーム" -#: netbox/users/forms/bulk_edit.py:31 +#: users/forms/bulk_edit.py:31 msgid "Last name" msgstr "苗字" -#: netbox/users/forms/bulk_edit.py:43 +#: users/forms/bulk_edit.py:43 msgid "Staff status" msgstr "スタッフステータス" -#: netbox/users/forms/bulk_edit.py:48 +#: users/forms/bulk_edit.py:48 msgid "Superuser status" msgstr "スーパーユーザステータス" -#: netbox/users/forms/bulk_import.py:41 +#: users/forms/bulk_import.py:41 msgid "If no key is provided, one will be generated automatically." msgstr "キーが指定されていない場合は、キーが自動的に生成されます。" -#: netbox/users/forms/filtersets.py:51 netbox/users/tables.py:42 +#: users/forms/filtersets.py:51 users/tables.py:42 msgid "Is Staff" msgstr "スタッフですか" -#: netbox/users/forms/filtersets.py:58 netbox/users/tables.py:45 +#: users/forms/filtersets.py:58 users/tables.py:45 msgid "Is Superuser" msgstr "スーパーユーザですか" -#: netbox/users/forms/filtersets.py:91 netbox/users/tables.py:86 +#: users/forms/filtersets.py:91 users/tables.py:86 msgid "Can View" msgstr "閲覧可能" -#: netbox/users/forms/filtersets.py:98 netbox/users/tables.py:89 +#: users/forms/filtersets.py:98 users/tables.py:89 msgid "Can Add" msgstr "追加可能" -#: netbox/users/forms/filtersets.py:105 netbox/users/tables.py:92 +#: users/forms/filtersets.py:105 users/tables.py:92 msgid "Can Change" msgstr "変更可能" -#: netbox/users/forms/filtersets.py:112 netbox/users/tables.py:95 +#: users/forms/filtersets.py:112 users/tables.py:95 msgid "Can Delete" msgstr "削除可能" -#: netbox/users/forms/model_forms.py:62 +#: users/forms/model_forms.py:62 msgid "User Interface" msgstr "ユーザインタフェース" -#: netbox/users/forms/model_forms.py:114 +#: users/forms/model_forms.py:114 msgid "" "Keys must be at least 40 characters in length. Be sure to record " "your key prior to submitting this form, as it may no longer be " @@ -14423,7 +13681,7 @@ msgstr "" "キーの長さは 40 文字以上でなければなりません。 キーは必ず記録してください。 " "このフォームを送信する前に。トークンが作成されるとアクセスできなくなる可能性があるためです。" -#: netbox/users/forms/model_forms.py:126 +#: users/forms/model_forms.py:126 msgid "" "Allowed IPv4/IPv6 networks from where the token can be used. Leave blank for" " no restrictions. Example: " @@ -14432,31 +13690,31 @@ msgstr "" "トークンを使用できる許可された IPv4/IPv6 ネットワーク。制限がない場合は空白のままにしてください。例: " "10.1.1.0/24,192.168.10.16/32,2001: db 8:1:: /64" -#: netbox/users/forms/model_forms.py:175 +#: users/forms/model_forms.py:175 msgid "Confirm password" msgstr "パスワードを確認" -#: netbox/users/forms/model_forms.py:178 +#: users/forms/model_forms.py:178 msgid "Enter the same password as before, for verification." msgstr "確認のため、以前と同じパスワードを入力します。" -#: netbox/users/forms/model_forms.py:227 +#: users/forms/model_forms.py:227 msgid "Passwords do not match! Please check your input and try again." msgstr "パスワードが一致しません!入力内容を確認して、もう一度試してください。" -#: netbox/users/forms/model_forms.py:294 +#: users/forms/model_forms.py:294 msgid "Additional actions" msgstr "その他のアクション" -#: netbox/users/forms/model_forms.py:297 +#: users/forms/model_forms.py:297 msgid "Actions granted in addition to those listed above" msgstr "上記以外に付与されたアクション" -#: netbox/users/forms/model_forms.py:313 +#: users/forms/model_forms.py:313 msgid "Objects" msgstr "オブジェクト" -#: netbox/users/forms/model_forms.py:325 +#: users/forms/model_forms.py:325 msgid "" "JSON expression of a queryset filter that will return only permitted " "objects. Leave null to match all objects of this type. A list of multiple " @@ -14465,75 +13723,75 @@ msgstr "" "許可されたオブジェクトのみを返すクエリセットフィルタの JSON 式。null " "のままにしておくと、このタイプのすべてのオブジェクトに一致します。複数のオブジェクトのリストでは、論理 OR 演算が行われます。" -#: netbox/users/forms/model_forms.py:364 +#: users/forms/model_forms.py:364 msgid "At least one action must be selected." msgstr "少なくとも 1 つのアクションを選択する必要があります。" -#: netbox/users/forms/model_forms.py:382 +#: users/forms/model_forms.py:382 #, python-brace-format msgid "Invalid filter for {model}: {error}" msgstr "のフィルタが無効です {model}: {error}" -#: netbox/users/models/permissions.py:39 +#: users/models/permissions.py:39 msgid "The list of actions granted by this permission" msgstr "この権限によって付与されたアクションのリスト" -#: netbox/users/models/permissions.py:44 +#: users/models/permissions.py:44 msgid "constraints" msgstr "制約" -#: netbox/users/models/permissions.py:45 +#: users/models/permissions.py:45 msgid "" "Queryset filter matching the applicable objects of the selected type(s)" msgstr "選択したタイプの該当するオブジェクトに一致するクエリーセットフィルタ" -#: netbox/users/models/permissions.py:52 +#: users/models/permissions.py:52 msgid "permission" msgstr "許可" -#: netbox/users/models/permissions.py:53 netbox/users/models/users.py:47 +#: users/models/permissions.py:53 users/models/users.py:47 msgid "permissions" msgstr "権限" -#: netbox/users/models/preferences.py:29 netbox/users/models/preferences.py:30 +#: users/models/preferences.py:29 users/models/preferences.py:30 msgid "user preferences" msgstr "ユーザプリファレンス" -#: netbox/users/models/preferences.py:97 +#: users/models/preferences.py:97 #, python-brace-format msgid "Key '{path}' is a leaf node; cannot assign new keys" msgstr "キー '{path}'はリーフノードです。新しいキーを割り当てることはできません" -#: netbox/users/models/preferences.py:109 +#: users/models/preferences.py:109 #, python-brace-format msgid "Key '{path}' is a dictionary; cannot assign a non-dictionary value" msgstr "キー '{path}'はディクショナリです。ディクショナリ以外の値は割り当てられません" -#: netbox/users/models/tokens.py:36 +#: users/models/tokens.py:36 msgid "expires" msgstr "期限切れ" -#: netbox/users/models/tokens.py:41 +#: users/models/tokens.py:41 msgid "last used" msgstr "最終使用日" -#: netbox/users/models/tokens.py:46 +#: users/models/tokens.py:46 msgid "key" msgstr "キー" -#: netbox/users/models/tokens.py:52 +#: users/models/tokens.py:52 msgid "write enabled" msgstr "書き込み有効" -#: netbox/users/models/tokens.py:54 +#: users/models/tokens.py:54 msgid "Permit create/update/delete operations using this key" msgstr "このキーを使用して作成/更新/削除操作を許可する" -#: netbox/users/models/tokens.py:65 +#: users/models/tokens.py:65 msgid "allowed IPs" msgstr "許可された IP" -#: netbox/users/models/tokens.py:67 +#: users/models/tokens.py:67 msgid "" "Allowed IPv4/IPv6 networks from where the token can be used. Leave blank for" " no restrictions. Ex: \"10.1.1.0/24, 192.168.10.16/32, 2001:DB8:1::/64\"" @@ -14542,96 +13800,96 @@ msgstr "" "ネットワーク。制限がない場合は空白のままにしてください。例:10.1.1.0/24、192.168.10.16/32、2001: DB 8:1:: " "/64\"" -#: netbox/users/models/tokens.py:75 +#: users/models/tokens.py:75 msgid "token" msgstr "トークン" -#: netbox/users/models/tokens.py:76 +#: users/models/tokens.py:76 msgid "tokens" msgstr "トークン" -#: netbox/users/models/users.py:57 netbox/vpn/models/crypto.py:42 +#: users/models/users.py:57 vpn/models/crypto.py:42 msgid "group" msgstr "グループ" -#: netbox/users/models/users.py:92 +#: users/models/users.py:92 msgid "user" msgstr "ユーザ" -#: netbox/users/models/users.py:104 +#: users/models/users.py:104 msgid "A user with this username already exists." msgstr "このユーザ名のユーザはすでに存在します。" -#: netbox/users/tables.py:98 +#: users/tables.py:98 msgid "Custom Actions" msgstr "カスタムアクション" -#: netbox/utilities/api.py:153 +#: utilities/api.py:153 #, python-brace-format msgid "Related object not found using the provided attributes: {params}" msgstr "指定された属性を使用しても関連オブジェクトが見つかりません: {params}" -#: netbox/utilities/api.py:156 +#: utilities/api.py:156 #, python-brace-format msgid "Multiple objects match the provided attributes: {params}" msgstr "複数のオブジェクトが、指定された属性に一致します。 {params}" -#: netbox/utilities/api.py:168 +#: utilities/api.py:168 #, python-brace-format msgid "" "Related objects must be referenced by numeric ID or by dictionary of " "attributes. Received an unrecognized value: {value}" msgstr "関連オブジェクトは、数値 ID または属性の辞書で参照する必要があります。認識できない値を受け取りました: {value}" -#: netbox/utilities/api.py:177 +#: utilities/api.py:177 #, python-brace-format msgid "Related object not found using the provided numeric ID: {id}" msgstr "指定された数値 ID を使用しても関連オブジェクトが見つかりません: {id}" -#: netbox/utilities/choices.py:19 +#: utilities/choices.py:19 #, python-brace-format msgid "{name} has a key defined but CHOICES is not a list" msgstr "{name} キーは定義されているが、CHOICES はリストではない" -#: netbox/utilities/conversion.py:19 +#: utilities/conversion.py:19 msgid "Weight must be a positive number" msgstr "重量は正の数でなければなりません" -#: netbox/utilities/conversion.py:21 +#: utilities/conversion.py:21 #, python-brace-format msgid "Invalid value '{weight}' for weight (must be a number)" msgstr "値 'が無効です{weight}'は重みを表す (数字でなければならない)" -#: netbox/utilities/conversion.py:32 netbox/utilities/conversion.py:62 +#: utilities/conversion.py:32 utilities/conversion.py:62 #, python-brace-format msgid "Unknown unit {unit}. Must be one of the following: {valid_units}" msgstr "不明なユニット {unit}。次のいずれかである必要があります。 {valid_units}" -#: netbox/utilities/conversion.py:45 +#: utilities/conversion.py:45 msgid "Length must be a positive number" msgstr "長さは正の数でなければなりません" -#: netbox/utilities/conversion.py:47 +#: utilities/conversion.py:47 #, python-brace-format msgid "Invalid value '{length}' for length (must be a number)" msgstr "値 'が無効です{length}'は長さを表す (数字でなければならない)" -#: netbox/utilities/error_handlers.py:31 +#: utilities/error_handlers.py:31 #, python-brace-format msgid "" "Unable to delete {objects}. {count} dependent objects were " "found: " msgstr "削除できません {objects}。 {count} 依存オブジェクトが見つかりました: " -#: netbox/utilities/error_handlers.py:33 +#: utilities/error_handlers.py:33 msgid "More than 50" msgstr "50 個以上" -#: netbox/utilities/fields.py:30 +#: utilities/fields.py:30 msgid "RGB color in hexadecimal. Example: " msgstr "16 進 RGB カラー。例: " -#: netbox/utilities/fields.py:159 +#: utilities/fields.py:159 #, python-format msgid "" "%s(%r) is invalid. to_model parameter to CounterCacheField must be a string " @@ -14640,7 +13898,7 @@ msgstr "" "%s(%r) は無効です。CounterCacheField の to_model パラメータは 'app.model' " "形式の文字列でなければなりません" -#: netbox/utilities/fields.py:169 +#: utilities/fields.py:169 #, python-format msgid "" "%s(%r) is invalid. to_field parameter to CounterCacheField must be a string " @@ -14648,93 +13906,92 @@ msgid "" msgstr "" "%s(%r) は無効です。CounterCacheField の to_field パラメータは 'field' 形式の文字列でなければなりません" -#: netbox/utilities/forms/bulk_import.py:23 +#: utilities/forms/bulk_import.py:23 msgid "Enter object data in CSV, JSON or YAML format." msgstr "オブジェクトデータを CSV、JSON、または YAML 形式で入力します。" -#: netbox/utilities/forms/bulk_import.py:36 +#: utilities/forms/bulk_import.py:36 msgid "CSV delimiter" msgstr "CSV デリミター" -#: netbox/utilities/forms/bulk_import.py:37 +#: utilities/forms/bulk_import.py:37 msgid "The character which delimits CSV fields. Applies only to CSV format." msgstr "CSV フィールドを区切る文字。CSV 形式にのみ適用されます。" -#: netbox/utilities/forms/bulk_import.py:51 +#: utilities/forms/bulk_import.py:51 msgid "Form data must be empty when uploading/selecting a file." msgstr "ファイルをアップロード/選択するときは、フォームデータを空にする必要があります。" -#: netbox/utilities/forms/bulk_import.py:80 +#: utilities/forms/bulk_import.py:80 #, python-brace-format msgid "Unknown data format: {format}" msgstr "不明なデータ形式: {format}" -#: netbox/utilities/forms/bulk_import.py:100 +#: utilities/forms/bulk_import.py:100 msgid "Unable to detect data format. Please specify." msgstr "データ形式を検出できません。指定してください。" -#: netbox/utilities/forms/bulk_import.py:123 +#: utilities/forms/bulk_import.py:123 msgid "Invalid CSV delimiter" msgstr "CSV 区切り文字が無効です" -#: netbox/utilities/forms/bulk_import.py:167 +#: utilities/forms/bulk_import.py:167 msgid "" "Invalid YAML data. Data must be in the form of multiple documents, or a " "single document comprising a list of dictionaries." msgstr "" "YAML データが無効です。データは複数のドキュメント、またはディクショナリのリストから構成される 1 つのドキュメントの形式である必要があります。" -#: netbox/utilities/forms/fields/array.py:20 +#: utilities/forms/fields/array.py:20 #, python-brace-format msgid "" "Invalid list ({value}). Must be numeric and ranges must be in ascending " "order." msgstr "リストが無効です ({value})。数値でなければならず、範囲は昇順でなければなりません。" -#: netbox/utilities/forms/fields/array.py:40 +#: utilities/forms/fields/array.py:40 msgid "" "Specify one or more numeric ranges separated by commas. Example: " "1-5,20-30" msgstr "1 つまたは複数の数値範囲をカンマで区切って指定します。例: 1-5,20-30" -#: netbox/utilities/forms/fields/array.py:47 +#: utilities/forms/fields/array.py:47 #, python-brace-format msgid "" "Invalid ranges ({value}). Must be a range of integers in ascending order." msgstr "範囲が無効です ({value})。昇順の整数の範囲でなければなりません。" -#: netbox/utilities/forms/fields/csv.py:44 +#: utilities/forms/fields/csv.py:44 #, python-brace-format msgid "Invalid value for a multiple choice field: {value}" msgstr "複数選択フィールドの値が無効です: {value}" -#: netbox/utilities/forms/fields/csv.py:57 -#: netbox/utilities/forms/fields/csv.py:78 +#: utilities/forms/fields/csv.py:57 utilities/forms/fields/csv.py:78 #, python-format msgid "Object not found: %(value)s" msgstr "オブジェクトが見つかりません: %(value)s" -#: netbox/utilities/forms/fields/csv.py:65 +#: utilities/forms/fields/csv.py:65 #, python-brace-format msgid "" "\"{value}\" is not a unique value for this field; multiple objects were " "found" msgstr "「{value}「」はこのフィールドにとって一意の値ではありません。複数のオブジェクトが見つかりました" -#: netbox/utilities/forms/fields/csv.py:69 +#: utilities/forms/fields/csv.py:69 #, python-brace-format msgid "\"{field_name}\" is an invalid accessor field name." msgstr "「{field_name}「」は無効なアクセサーフィールド名です。" -#: netbox/utilities/forms/fields/csv.py:101 +#: utilities/forms/fields/csv.py:101 msgid "Object type must be specified as \".\"" msgstr "オブジェクトタイプは「」として指定する必要があります」" -#: netbox/utilities/forms/fields/csv.py:105 +#: utilities/forms/fields/csv.py:105 msgid "Invalid object type" msgstr "オブジェクトタイプが無効です" -#: netbox/utilities/forms/fields/expandable.py:25 +#: utilities/forms/fields/expandable.py:25 msgid "" "Alphanumeric ranges are supported for bulk creation. Mixed cases and types " "within a single range are not supported (example: " @@ -14743,14 +14000,14 @@ msgstr "" "英数字の範囲は一括作成でサポートされています。1 つの範囲内で大文字と小文字と文字が混在することはサポートされていません (例: [年齢, " "性別] -0/0/ [0-9])。" -#: netbox/utilities/forms/fields/expandable.py:46 +#: utilities/forms/fields/expandable.py:46 msgid "" "Specify a numeric range to create multiple IPs.
Example: " "192.0.2.[1,5,100-254]/24" msgstr "" "複数の IP を作成するには、数値範囲を指定します。
例: 192.0.2。[1,5,100-254] /24" -#: netbox/utilities/forms/fields/fields.py:31 +#: utilities/forms/fields/fields.py:31 #, python-brace-format msgid "" " マークダウン シンタックスはサポートされています" -#: netbox/utilities/forms/fields/fields.py:48 +#: utilities/forms/fields/fields.py:48 msgid "URL-friendly unique shorthand" msgstr "URL に対応したユニークな省略記法" -#: netbox/utilities/forms/fields/fields.py:101 +#: utilities/forms/fields/fields.py:101 msgid "Enter context data in JSON format." msgstr "にコンテキストデータを入力してください JSON フォーマット。" -#: netbox/utilities/forms/fields/fields.py:124 +#: utilities/forms/fields/fields.py:124 msgid "MAC address must be in EUI-48 format" msgstr "MAC アドレスは EUI-48 形式である必要があります" -#: netbox/utilities/forms/forms.py:52 +#: utilities/forms/forms.py:52 msgid "Use regular expressions" msgstr "正規表現を使う" -#: netbox/utilities/forms/forms.py:75 +#: utilities/forms/forms.py:75 msgid "" "Numeric ID of an existing object to update (if not creating a new object)" msgstr "更新する既存のオブジェクトの数値 ID (新しいオブジェクトを作成しない場合)" -#: netbox/utilities/forms/forms.py:92 +#: utilities/forms/forms.py:92 #, python-brace-format msgid "Unrecognized header: {name}" msgstr "認識できないヘッダー: {name}" -#: netbox/utilities/forms/forms.py:118 +#: utilities/forms/forms.py:118 msgid "Available Columns" msgstr "使用可能な列" -#: netbox/utilities/forms/forms.py:126 +#: utilities/forms/forms.py:126 msgid "Selected Columns" msgstr "選択した列" -#: netbox/utilities/forms/mixins.py:44 +#: utilities/forms/mixins.py:44 msgid "" "This object has been modified since the form was rendered. Please consult " "the object's change log for details." msgstr "このオブジェクトは、フォームがレンダリングされてから変更されました。詳細については、オブジェクトの変更ログを参照してください。" -#: netbox/utilities/forms/utils.py:42 netbox/utilities/forms/utils.py:68 -#: netbox/utilities/forms/utils.py:85 netbox/utilities/forms/utils.py:87 +#: utilities/forms/utils.py:42 utilities/forms/utils.py:68 +#: utilities/forms/utils.py:85 utilities/forms/utils.py:87 #, python-brace-format msgid "Range \"{value}\" is invalid." msgstr "レンジ」{value}「は無効です。" -#: netbox/utilities/forms/utils.py:74 +#: utilities/forms/utils.py:74 #, python-brace-format msgid "" "Invalid range: Ending value ({end}) must be greater than beginning value " "({begin})." msgstr "範囲が無効です:終了値 ({end}) は開始値 () より大きくなければなりません{begin})。" -#: netbox/utilities/forms/utils.py:232 +#: utilities/forms/utils.py:232 #, python-brace-format msgid "Duplicate or conflicting column header for \"{field}\"" msgstr "「」の列ヘッダーが重複しているか、重複しています{field}」" -#: netbox/utilities/forms/utils.py:238 +#: utilities/forms/utils.py:238 #, python-brace-format msgid "Duplicate or conflicting column header for \"{header}\"" msgstr "「」の列ヘッダーが重複しているか、重複しています{header}」" -#: netbox/utilities/forms/utils.py:247 +#: utilities/forms/utils.py:247 #, python-brace-format msgid "Row {row}: Expected {count_expected} columns but found {count_found}" msgstr "行 {row}: 期待 {count_expected} 列が見つかりましたが {count_found}" -#: netbox/utilities/forms/utils.py:270 +#: utilities/forms/utils.py:270 #, python-brace-format msgid "Unexpected column header \"{field}\" found." msgstr "予期しない列ヘッダー」{field}「が見つかりました。" -#: netbox/utilities/forms/utils.py:272 +#: utilities/forms/utils.py:272 #, python-brace-format msgid "Column \"{field}\" is not a related object; cannot use dots" msgstr "コラム」{field}\"は関連オブジェクトではありません。ドットは使用できません" -#: netbox/utilities/forms/utils.py:276 +#: utilities/forms/utils.py:276 #, python-brace-format msgid "Invalid related object attribute for column \"{field}\": {to_field}" msgstr "列 \"の関連オブジェクト属性が無効です{field}「: {to_field}" -#: netbox/utilities/forms/utils.py:284 +#: utilities/forms/utils.py:284 #, python-brace-format msgid "Required column header \"{header}\" not found." msgstr "必須の列ヘッダー」{header}「が見つかりません。" -#: netbox/utilities/forms/widgets/apiselect.py:124 +#: utilities/forms/widgets/apiselect.py:124 #, python-brace-format msgid "Missing required value for dynamic query param: '{dynamic_params}'" msgstr "動的クエリパラメータに必要な値が見つかりません:'{dynamic_params}'" -#: netbox/utilities/forms/widgets/apiselect.py:141 +#: utilities/forms/widgets/apiselect.py:141 #, python-brace-format msgid "Missing required value for static query param: '{static_params}'" msgstr "静的クエリパラメータに必要な値が見つかりません:'{static_params}'" -#: netbox/utilities/password_validation.py:13 +#: utilities/password_validation.py:13 msgid "Password must have at least one numeral." msgstr "パスワードには少なくとも 1 つの数字が必要です。" -#: netbox/utilities/password_validation.py:18 +#: utilities/password_validation.py:18 msgid "Password must have at least one uppercase letter." msgstr "パスワードには少なくとも 1 つの大文字が必要です。" -#: netbox/utilities/password_validation.py:23 +#: utilities/password_validation.py:23 msgid "Password must have at least one lowercase letter." msgstr "パスワードには少なくとも 1 つの小文字が必要です。" -#: netbox/utilities/password_validation.py:27 +#: utilities/password_validation.py:27 msgid "" "Your password must contain at least one numeral, one uppercase letter and " "one lowercase letter." msgstr "パスワードには、少なくとも1つの数字、1つの大文字、1つの小文字が含まれている必要があります。" -#: netbox/utilities/permissions.py:42 +#: utilities/permissions.py:42 #, python-brace-format msgid "" "Invalid permission name: {name}. Must be in the format " "._" msgstr "権限名が無効です: {name}。次の形式である必要があります _" -#: netbox/utilities/permissions.py:60 +#: utilities/permissions.py:60 #, python-brace-format msgid "Unknown app_label/model_name for {name}" msgstr "のアプリケーションラベル/モデル名が不明です {name}" -#: netbox/utilities/request.py:76 +#: utilities/request.py:76 #, python-brace-format msgid "Invalid IP address set for {header}: {ip}" msgstr "に設定された IP アドレスが無効です {header}: {ip}" -#: netbox/utilities/tables.py:47 +#: utilities/tables.py:47 #, python-brace-format msgid "A column named {name} is already defined for table {table_name}" msgstr "という名前の列 {name} テーブルには既に定義されています {table_name}" -#: netbox/utilities/templates/builtins/customfield_value.html:30 +#: utilities/templates/builtins/customfield_value.html:30 msgid "Not defined" msgstr "未定義" -#: netbox/utilities/templates/buttons/bookmark.html:9 +#: utilities/templates/buttons/bookmark.html:9 msgid "Unbookmark" msgstr "ブックマーク解除" -#: netbox/utilities/templates/buttons/bookmark.html:13 +#: utilities/templates/buttons/bookmark.html:13 msgid "Bookmark" msgstr "ブックマーク" -#: netbox/utilities/templates/buttons/clone.html:4 +#: utilities/templates/buttons/clone.html:4 msgid "Clone" msgstr "クローン" -#: netbox/utilities/templates/buttons/export.html:7 +#: utilities/templates/buttons/export.html:7 msgid "Current View" msgstr "現在のビュー" -#: netbox/utilities/templates/buttons/export.html:8 +#: utilities/templates/buttons/export.html:8 msgid "All Data" msgstr "すべてのデータ" -#: netbox/utilities/templates/buttons/export.html:28 +#: utilities/templates/buttons/export.html:28 msgid "Add export template" msgstr "エクスポートテンプレートを追加" -#: netbox/utilities/templates/buttons/import.html:4 +#: utilities/templates/buttons/import.html:4 msgid "Import" msgstr "インポート" -#: netbox/utilities/templates/buttons/subscribe.html:10 +#: utilities/templates/buttons/subscribe.html:10 msgid "Unsubscribe" msgstr "購読解除" -#: netbox/utilities/templates/buttons/subscribe.html:14 +#: utilities/templates/buttons/subscribe.html:14 msgid "Subscribe" msgstr "購読" -#: netbox/utilities/templates/form_helpers/render_field.html:41 +#: utilities/templates/form_helpers/render_field.html:41 msgid "Copy to clipboard" msgstr "クリップボードにコピー" -#: netbox/utilities/templates/form_helpers/render_field.html:57 +#: utilities/templates/form_helpers/render_field.html:57 msgid "This field is required" msgstr "このフィールドは必須です" -#: netbox/utilities/templates/form_helpers/render_field.html:70 +#: utilities/templates/form_helpers/render_field.html:70 msgid "Set Null" msgstr "NULL を設定" -#: netbox/utilities/templates/helpers/applied_filters.html:11 +#: utilities/templates/helpers/applied_filters.html:11 msgid "Clear all" msgstr "すべてクリア" -#: netbox/utilities/templates/helpers/table_config_form.html:8 +#: utilities/templates/helpers/table_config_form.html:8 msgid "Table Configuration" msgstr "テーブル構成" -#: netbox/utilities/templates/helpers/table_config_form.html:31 +#: utilities/templates/helpers/table_config_form.html:31 msgid "Move Up" msgstr "上へ移動" -#: netbox/utilities/templates/helpers/table_config_form.html:34 +#: utilities/templates/helpers/table_config_form.html:34 msgid "Move Down" msgstr "下に移動" -#: netbox/utilities/templates/navigation/menu.html:14 +#: utilities/templates/navigation/menu.html:14 msgid "Search…" msgstr "検索..." -#: netbox/utilities/templates/navigation/menu.html:14 +#: utilities/templates/navigation/menu.html:14 msgid "Search NetBox" msgstr "NetBoxを検索" -#: netbox/utilities/templates/widgets/apiselect.html:7 +#: utilities/templates/widgets/apiselect.html:7 msgid "Open selector" msgstr "セレクターを開く" -#: netbox/utilities/templates/widgets/markdown_input.html:6 +#: utilities/templates/widgets/markdown_input.html:6 msgid "Write" msgstr "書き込み" -#: netbox/utilities/testing/views.py:632 +#: utilities/testing/views.py:632 msgid "The test must define csv_update_data." msgstr "テストでは csv_update_data を定義する必要があります。" -#: netbox/utilities/validators.py:65 +#: utilities/validators.py:65 #, python-brace-format msgid "{value} is not a valid regular expression." msgstr "{value} は有効な正規表現ではありません。" -#: netbox/utilities/views.py:57 +#: utilities/views.py:57 #, python-brace-format msgid "{self.__class__.__name__} must implement get_required_permission()" msgstr "{self.__class__.__name__} get_required_permission () を実装する必要があります" -#: netbox/utilities/views.py:93 +#: utilities/views.py:93 #, python-brace-format msgid "{class_name} must implement get_required_permission()" msgstr "{class_name} get_required_permission () を実装する必要があります" -#: netbox/utilities/views.py:117 +#: utilities/views.py:117 #, python-brace-format msgid "" "{class_name} has no queryset defined. ObjectPermissionRequiredMixin may only" @@ -15009,189 +14266,187 @@ msgstr "" "{class_name} クエリセットが定義されていません。ObjectPermissionRequiredMixin " "は、基本クエリセットを定義するビューでのみ使用できます。" -#: netbox/virtualization/filtersets.py:79 +#: virtualization/filtersets.py:79 msgid "Parent group (ID)" msgstr "親グループ (ID)" -#: netbox/virtualization/filtersets.py:85 +#: virtualization/filtersets.py:85 msgid "Parent group (slug)" msgstr "親グループ (slug)" -#: netbox/virtualization/filtersets.py:89 -#: netbox/virtualization/filtersets.py:141 +#: virtualization/filtersets.py:89 virtualization/filtersets.py:141 msgid "Cluster type (ID)" msgstr "クラスタタイプ (ID)" -#: netbox/virtualization/filtersets.py:151 -#: netbox/virtualization/filtersets.py:271 +#: virtualization/filtersets.py:151 virtualization/filtersets.py:271 msgid "Cluster (ID)" msgstr "クラスタ (ID)" -#: netbox/virtualization/forms/bulk_edit.py:166 -#: netbox/virtualization/models/virtualmachines.py:115 +#: virtualization/forms/bulk_edit.py:166 +#: virtualization/models/virtualmachines.py:115 msgid "vCPUs" msgstr "vCPU" -#: netbox/virtualization/forms/bulk_edit.py:170 +#: virtualization/forms/bulk_edit.py:170 msgid "Memory (MB)" msgstr "メモリ (MB)" -#: netbox/virtualization/forms/bulk_edit.py:174 +#: virtualization/forms/bulk_edit.py:174 msgid "Disk (GB)" msgstr "ディスク (GB)" -#: netbox/virtualization/forms/bulk_edit.py:334 -#: netbox/virtualization/forms/filtersets.py:251 +#: virtualization/forms/bulk_edit.py:334 +#: virtualization/forms/filtersets.py:251 msgid "Size (GB)" msgstr "サイズ (GB)" -#: netbox/virtualization/forms/bulk_import.py:44 +#: virtualization/forms/bulk_import.py:44 msgid "Type of cluster" msgstr "クラスタのタイプ" -#: netbox/virtualization/forms/bulk_import.py:51 +#: virtualization/forms/bulk_import.py:51 msgid "Assigned cluster group" msgstr "割当クラスタグループ" -#: netbox/virtualization/forms/bulk_import.py:96 +#: virtualization/forms/bulk_import.py:96 msgid "Assigned cluster" msgstr "割り当て済みクラスタ" -#: netbox/virtualization/forms/bulk_import.py:103 +#: virtualization/forms/bulk_import.py:103 msgid "Assigned device within cluster" msgstr "クラスタ内の割り当て済みデバイス" -#: netbox/virtualization/forms/filtersets.py:183 +#: virtualization/forms/filtersets.py:183 msgid "Serial number" msgstr "シリアル番号" -#: netbox/virtualization/forms/model_forms.py:153 +#: virtualization/forms/model_forms.py:153 #, python-brace-format msgid "" "{device} belongs to a different site ({device_site}) than the cluster " "({cluster_site})" msgstr "{device} 別のサイトに属している ({device_site}) よりもクラスタ ({cluster_site})" -#: netbox/virtualization/forms/model_forms.py:192 +#: virtualization/forms/model_forms.py:192 msgid "Optionally pin this VM to a specific host device within the cluster" msgstr "オプションで、この VM をクラスタ内の特定のホストデバイスにピン留めできます。" -#: netbox/virtualization/forms/model_forms.py:221 +#: virtualization/forms/model_forms.py:221 msgid "Site/Cluster" msgstr "サイト/クラスタ" -#: netbox/virtualization/forms/model_forms.py:244 +#: virtualization/forms/model_forms.py:244 msgid "Disk size is managed via the attachment of virtual disks." msgstr "ディスクサイズは、仮想ディスクのアタッチメントによって管理されます。" -#: netbox/virtualization/forms/model_forms.py:372 -#: netbox/virtualization/tables/virtualmachines.py:111 +#: virtualization/forms/model_forms.py:372 +#: virtualization/tables/virtualmachines.py:111 msgid "Disk" msgstr "ディスク" -#: netbox/virtualization/models/clusters.py:25 +#: virtualization/models/clusters.py:25 msgid "cluster type" msgstr "クラスタタイプ" -#: netbox/virtualization/models/clusters.py:26 +#: virtualization/models/clusters.py:26 msgid "cluster types" msgstr "クラスタタイプ" -#: netbox/virtualization/models/clusters.py:45 +#: virtualization/models/clusters.py:45 msgid "cluster group" msgstr "クラスタグループ" -#: netbox/virtualization/models/clusters.py:46 +#: virtualization/models/clusters.py:46 msgid "cluster groups" msgstr "クラスタグループ" -#: netbox/virtualization/models/clusters.py:121 +#: virtualization/models/clusters.py:121 msgid "cluster" msgstr "集まる" -#: netbox/virtualization/models/clusters.py:122 +#: virtualization/models/clusters.py:122 msgid "clusters" msgstr "クラスタ" -#: netbox/virtualization/models/clusters.py:141 +#: virtualization/models/clusters.py:141 #, python-brace-format msgid "" "{count} devices are assigned as hosts for this cluster but are not in site " "{site}" msgstr "{count} デバイスはこのクラスタのホストとして割り当てられているが、サイトにはない {site}" -#: netbox/virtualization/models/virtualmachines.py:123 +#: virtualization/models/virtualmachines.py:123 msgid "memory (MB)" msgstr "メモリ (MB)" -#: netbox/virtualization/models/virtualmachines.py:128 +#: virtualization/models/virtualmachines.py:128 msgid "disk (MB)" msgstr "ディスク (MB)" -#: netbox/virtualization/models/virtualmachines.py:166 +#: virtualization/models/virtualmachines.py:166 msgid "Virtual machine name must be unique per cluster." msgstr "仮想マシン名はクラスタごとに一意である必要があります。" -#: netbox/virtualization/models/virtualmachines.py:169 +#: virtualization/models/virtualmachines.py:169 msgid "virtual machine" msgstr "仮想マシン" -#: netbox/virtualization/models/virtualmachines.py:170 +#: virtualization/models/virtualmachines.py:170 msgid "virtual machines" msgstr "仮想マシン" -#: netbox/virtualization/models/virtualmachines.py:184 +#: virtualization/models/virtualmachines.py:184 msgid "A virtual machine must be assigned to a site and/or cluster." msgstr "仮想マシンをサイトまたはクラスタに割り当てる必要があります。" -#: netbox/virtualization/models/virtualmachines.py:191 +#: virtualization/models/virtualmachines.py:191 #, python-brace-format msgid "" "The selected cluster ({cluster}) is not assigned to this site ({site})." msgstr "選択したクラスタ ({cluster}) はこのサイトに割り当てられていません ({site})。" -#: netbox/virtualization/models/virtualmachines.py:198 +#: virtualization/models/virtualmachines.py:198 msgid "Must specify a cluster when assigning a host device." msgstr "ホストデバイスを割り当てるときは、クラスタを指定する必要があります。" -#: netbox/virtualization/models/virtualmachines.py:203 +#: virtualization/models/virtualmachines.py:203 #, python-brace-format msgid "" "The selected device ({device}) is not assigned to this cluster ({cluster})." msgstr "選択したデバイス ({device}) はこのクラスタに割り当てられていません ({cluster})。" -#: netbox/virtualization/models/virtualmachines.py:215 +#: virtualization/models/virtualmachines.py:215 #, python-brace-format msgid "" "The specified disk size ({size}) must match the aggregate size of assigned " "virtual disks ({total_size})." msgstr "指定されたディスクサイズ ({size}) は割当仮想ディスクの合計サイズと一致する必要がある ({total_size})。" -#: netbox/virtualization/models/virtualmachines.py:229 +#: virtualization/models/virtualmachines.py:229 #, python-brace-format msgid "Must be an IPv{family} address. ({ip} is an IPv{version} address.)" msgstr "IPvである必要があります{family} 住所。({ip} は IPv です{version} 住所。)" -#: netbox/virtualization/models/virtualmachines.py:238 +#: virtualization/models/virtualmachines.py:238 #, python-brace-format msgid "The specified IP address ({ip}) is not assigned to this VM." msgstr "指定された IP アドレス ({ip}) はこの VM に割り当てられていません。" -#: netbox/virtualization/models/virtualmachines.py:396 +#: virtualization/models/virtualmachines.py:396 #, python-brace-format msgid "" "The selected parent interface ({parent}) belongs to a different virtual " "machine ({virtual_machine})." msgstr "選択した親インタフェース ({parent}) は別の仮想マシンに属しています ({virtual_machine})。" -#: netbox/virtualization/models/virtualmachines.py:411 +#: virtualization/models/virtualmachines.py:411 #, python-brace-format msgid "" "The selected bridge interface ({bridge}) belongs to a different virtual " "machine ({virtual_machine})." msgstr "選択したブリッジインタフェース ({bridge}) は別の仮想マシンに属しています ({virtual_machine})。" -#: netbox/virtualization/models/virtualmachines.py:422 +#: virtualization/models/virtualmachines.py:422 #, python-brace-format msgid "" "The untagged VLAN ({untagged_vlan}) must belong to the same site as the " @@ -15200,397 +14455,390 @@ msgstr "" "タグが付いていない VLAN ({untagged_vlan}) " "はインタフェースの親仮想マシンと同じサイトに属しているか、またはグローバルである必要があります。" -#: netbox/virtualization/models/virtualmachines.py:434 +#: virtualization/models/virtualmachines.py:434 msgid "size (MB)" msgstr "サイズ (MB)" -#: netbox/virtualization/models/virtualmachines.py:438 +#: virtualization/models/virtualmachines.py:438 msgid "virtual disk" msgstr "仮想ディスク" -#: netbox/virtualization/models/virtualmachines.py:439 +#: virtualization/models/virtualmachines.py:439 msgid "virtual disks" msgstr "仮想ディスク" -#: netbox/virtualization/views.py:275 +#: virtualization/views.py:275 #, python-brace-format msgid "Added {count} devices to cluster {cluster}" msgstr "追加しました {count} デバイスをクラスタに {cluster}" -#: netbox/virtualization/views.py:310 +#: virtualization/views.py:310 #, python-brace-format msgid "Removed {count} devices from cluster {cluster}" msgstr "削除済み {count} クラスターのデバイス {cluster}" -#: netbox/vpn/choices.py:31 +#: vpn/choices.py:31 msgid "IPsec - Transport" msgstr "IPsec-トランスポート" -#: netbox/vpn/choices.py:32 +#: vpn/choices.py:32 msgid "IPsec - Tunnel" msgstr "IPsec-トンネル" -#: netbox/vpn/choices.py:33 +#: vpn/choices.py:33 msgid "IP-in-IP" msgstr "IP-in-IP" -#: netbox/vpn/choices.py:34 +#: vpn/choices.py:34 msgid "GRE" msgstr "GRE" -#: netbox/vpn/choices.py:56 +#: vpn/choices.py:56 msgid "Hub" msgstr "ハブ" -#: netbox/vpn/choices.py:57 +#: vpn/choices.py:57 msgid "Spoke" msgstr "スポーク" -#: netbox/vpn/choices.py:80 +#: vpn/choices.py:80 msgid "Aggressive" msgstr "アグレッシブ" -#: netbox/vpn/choices.py:81 +#: vpn/choices.py:81 msgid "Main" msgstr "メイン" -#: netbox/vpn/choices.py:92 +#: vpn/choices.py:92 msgid "Pre-shared keys" msgstr "事前共有キー" -#: netbox/vpn/choices.py:93 +#: vpn/choices.py:93 msgid "Certificates" msgstr "証明書" -#: netbox/vpn/choices.py:94 +#: vpn/choices.py:94 msgid "RSA signatures" msgstr "RSA シグネチャ" -#: netbox/vpn/choices.py:95 +#: vpn/choices.py:95 msgid "DSA signatures" msgstr "DSA シグネチャ" -#: netbox/vpn/choices.py:178 netbox/vpn/choices.py:179 -#: netbox/vpn/choices.py:180 netbox/vpn/choices.py:181 -#: netbox/vpn/choices.py:182 netbox/vpn/choices.py:183 -#: netbox/vpn/choices.py:184 netbox/vpn/choices.py:185 -#: netbox/vpn/choices.py:186 netbox/vpn/choices.py:187 -#: netbox/vpn/choices.py:188 netbox/vpn/choices.py:189 -#: netbox/vpn/choices.py:190 netbox/vpn/choices.py:191 -#: netbox/vpn/choices.py:192 netbox/vpn/choices.py:193 -#: netbox/vpn/choices.py:194 netbox/vpn/choices.py:195 -#: netbox/vpn/choices.py:196 netbox/vpn/choices.py:197 -#: netbox/vpn/choices.py:198 netbox/vpn/choices.py:199 -#: netbox/vpn/choices.py:200 netbox/vpn/choices.py:201 +#: vpn/choices.py:178 vpn/choices.py:179 vpn/choices.py:180 vpn/choices.py:181 +#: vpn/choices.py:182 vpn/choices.py:183 vpn/choices.py:184 vpn/choices.py:185 +#: vpn/choices.py:186 vpn/choices.py:187 vpn/choices.py:188 vpn/choices.py:189 +#: vpn/choices.py:190 vpn/choices.py:191 vpn/choices.py:192 vpn/choices.py:193 +#: vpn/choices.py:194 vpn/choices.py:195 vpn/choices.py:196 vpn/choices.py:197 +#: vpn/choices.py:198 vpn/choices.py:199 vpn/choices.py:200 vpn/choices.py:201 #, python-brace-format msgid "Group {n}" msgstr "グループ {n}" -#: netbox/vpn/choices.py:243 +#: vpn/choices.py:243 msgid "Ethernet Private LAN" msgstr "イーサネットプライベート LAN" -#: netbox/vpn/choices.py:244 +#: vpn/choices.py:244 msgid "Ethernet Virtual Private LAN" msgstr "イーサネット仮想プライベート LAN" -#: netbox/vpn/choices.py:247 +#: vpn/choices.py:247 msgid "Ethernet Private Tree" msgstr "イーサネットプライベートツリー" -#: netbox/vpn/choices.py:248 +#: vpn/choices.py:248 msgid "Ethernet Virtual Private Tree" msgstr "イーサネット仮想プライベートツリー" -#: netbox/vpn/filtersets.py:41 +#: vpn/filtersets.py:41 msgid "Tunnel group (ID)" msgstr "トンネルグループ (ID)" -#: netbox/vpn/filtersets.py:47 +#: vpn/filtersets.py:47 msgid "Tunnel group (slug)" msgstr "トンネルグループ (slug)" -#: netbox/vpn/filtersets.py:54 +#: vpn/filtersets.py:54 msgid "IPSec profile (ID)" msgstr "IPsec プロファイル (ID)" -#: netbox/vpn/filtersets.py:60 +#: vpn/filtersets.py:60 msgid "IPSec profile (name)" msgstr "IPsec プロファイル (名前)" -#: netbox/vpn/filtersets.py:81 +#: vpn/filtersets.py:81 msgid "Tunnel (ID)" msgstr "トンネル (ID)" -#: netbox/vpn/filtersets.py:87 +#: vpn/filtersets.py:87 msgid "Tunnel (name)" msgstr "トンネル (名前)" -#: netbox/vpn/filtersets.py:118 +#: vpn/filtersets.py:118 msgid "Outside IP (ID)" msgstr "外部IP (ID)" -#: netbox/vpn/filtersets.py:130 netbox/vpn/filtersets.py:263 +#: vpn/filtersets.py:130 vpn/filtersets.py:263 msgid "IKE policy (ID)" msgstr "IKE ポリシー (ID)" -#: netbox/vpn/filtersets.py:136 netbox/vpn/filtersets.py:269 +#: vpn/filtersets.py:136 vpn/filtersets.py:269 msgid "IKE policy (name)" msgstr "IKE ポリシー (名前)" -#: netbox/vpn/filtersets.py:200 netbox/vpn/filtersets.py:273 +#: vpn/filtersets.py:200 vpn/filtersets.py:273 msgid "IPSec policy (ID)" msgstr "IPsec ポリシー (ID)" -#: netbox/vpn/filtersets.py:206 netbox/vpn/filtersets.py:279 +#: vpn/filtersets.py:206 vpn/filtersets.py:279 msgid "IPSec policy (name)" msgstr "IPsec ポリシー (名前)" -#: netbox/vpn/filtersets.py:348 +#: vpn/filtersets.py:348 msgid "L2VPN (slug)" msgstr "L2VPN (slug)" -#: netbox/vpn/filtersets.py:412 +#: vpn/filtersets.py:412 msgid "VM Interface (ID)" msgstr "VM インタフェース (ID)" -#: netbox/vpn/filtersets.py:418 +#: vpn/filtersets.py:418 msgid "VLAN (name)" msgstr "VLAN (名前)" -#: netbox/vpn/forms/bulk_edit.py:45 netbox/vpn/forms/bulk_import.py:42 -#: netbox/vpn/forms/filtersets.py:54 +#: vpn/forms/bulk_edit.py:45 vpn/forms/bulk_import.py:42 +#: vpn/forms/filtersets.py:54 msgid "Tunnel group" msgstr "トンネルグループ" -#: netbox/vpn/forms/bulk_edit.py:117 netbox/vpn/models/crypto.py:47 +#: vpn/forms/bulk_edit.py:117 vpn/models/crypto.py:47 msgid "SA lifetime" msgstr "SA ライフタイム" -#: netbox/vpn/forms/bulk_edit.py:151 netbox/wireless/forms/bulk_edit.py:79 -#: netbox/wireless/forms/bulk_edit.py:126 -#: netbox/wireless/forms/filtersets.py:64 -#: netbox/wireless/forms/filtersets.py:98 +#: vpn/forms/bulk_edit.py:151 wireless/forms/bulk_edit.py:79 +#: wireless/forms/bulk_edit.py:126 wireless/forms/filtersets.py:64 +#: wireless/forms/filtersets.py:98 msgid "Pre-shared key" msgstr "事前共有キー" -#: netbox/vpn/forms/bulk_edit.py:237 netbox/vpn/forms/bulk_import.py:239 -#: netbox/vpn/forms/filtersets.py:199 netbox/vpn/forms/model_forms.py:370 -#: netbox/vpn/models/crypto.py:104 +#: vpn/forms/bulk_edit.py:237 vpn/forms/bulk_import.py:239 +#: vpn/forms/filtersets.py:199 vpn/forms/model_forms.py:370 +#: vpn/models/crypto.py:104 msgid "IKE policy" msgstr "IKE ポリシー" -#: netbox/vpn/forms/bulk_edit.py:242 netbox/vpn/forms/bulk_import.py:244 -#: netbox/vpn/forms/filtersets.py:204 netbox/vpn/forms/model_forms.py:374 -#: netbox/vpn/models/crypto.py:209 +#: vpn/forms/bulk_edit.py:242 vpn/forms/bulk_import.py:244 +#: vpn/forms/filtersets.py:204 vpn/forms/model_forms.py:374 +#: vpn/models/crypto.py:209 msgid "IPSec policy" msgstr "IPsec ポリシー" -#: netbox/vpn/forms/bulk_import.py:50 +#: vpn/forms/bulk_import.py:50 msgid "Tunnel encapsulation" msgstr "トンネルカプセル化" -#: netbox/vpn/forms/bulk_import.py:83 +#: vpn/forms/bulk_import.py:83 msgid "Operational role" msgstr "運用上のロール" -#: netbox/vpn/forms/bulk_import.py:90 +#: vpn/forms/bulk_import.py:90 msgid "Parent device of assigned interface" msgstr "割当インタフェースの親デバイス" -#: netbox/vpn/forms/bulk_import.py:97 +#: vpn/forms/bulk_import.py:97 msgid "Parent VM of assigned interface" msgstr "割当インタフェースの親VM" -#: netbox/vpn/forms/bulk_import.py:104 +#: vpn/forms/bulk_import.py:104 msgid "Device or virtual machine interface" msgstr "デバイスまたは仮想マシンのインタフェース" -#: netbox/vpn/forms/bulk_import.py:183 +#: vpn/forms/bulk_import.py:183 msgid "IKE proposal(s)" msgstr "IKE プロポーザル" -#: netbox/vpn/forms/bulk_import.py:215 netbox/vpn/models/crypto.py:197 +#: vpn/forms/bulk_import.py:215 vpn/models/crypto.py:197 msgid "Diffie-Hellman group for Perfect Forward Secrecy" msgstr "パーフェクト・フォワード・シークレシのディフィー・ヘルマン・グループ" -#: netbox/vpn/forms/bulk_import.py:222 +#: vpn/forms/bulk_import.py:222 msgid "IPSec proposal(s)" msgstr "IPsec プロポーザル" -#: netbox/vpn/forms/bulk_import.py:236 +#: vpn/forms/bulk_import.py:236 msgid "IPSec protocol" msgstr "IPsec プロトコル" -#: netbox/vpn/forms/bulk_import.py:266 +#: vpn/forms/bulk_import.py:266 msgid "L2VPN type" msgstr "L2VPN タイプ" -#: netbox/vpn/forms/bulk_import.py:287 +#: vpn/forms/bulk_import.py:287 msgid "Parent device (for interface)" msgstr "親デバイス (インタフェース用)" -#: netbox/vpn/forms/bulk_import.py:294 +#: vpn/forms/bulk_import.py:294 msgid "Parent virtual machine (for interface)" msgstr "親仮想マシン (インタフェース用)" -#: netbox/vpn/forms/bulk_import.py:301 +#: vpn/forms/bulk_import.py:301 msgid "Assigned interface (device or VM)" msgstr "割当インタフェース (デバイスまたは VM)" -#: netbox/vpn/forms/bulk_import.py:334 +#: vpn/forms/bulk_import.py:334 msgid "Cannot import device and VM interface terminations simultaneously." msgstr "デバイスと VM インタフェースの終端を同時にインポートすることはできません。" -#: netbox/vpn/forms/bulk_import.py:336 +#: vpn/forms/bulk_import.py:336 msgid "Each termination must specify either an interface or a VLAN." msgstr "各終端には、インタフェースまたは VLAN のいずれかを指定する必要があります。" -#: netbox/vpn/forms/bulk_import.py:338 +#: vpn/forms/bulk_import.py:338 msgid "Cannot assign both an interface and a VLAN." msgstr "インタフェースと VLAN の両方を割り当てることはできません。" -#: netbox/vpn/forms/filtersets.py:130 +#: vpn/forms/filtersets.py:130 msgid "IKE version" msgstr "IKE バージョン" -#: netbox/vpn/forms/filtersets.py:142 netbox/vpn/forms/filtersets.py:175 -#: netbox/vpn/forms/model_forms.py:298 netbox/vpn/forms/model_forms.py:334 +#: vpn/forms/filtersets.py:142 vpn/forms/filtersets.py:175 +#: vpn/forms/model_forms.py:298 vpn/forms/model_forms.py:334 msgid "Proposal" msgstr "提案" -#: netbox/vpn/forms/filtersets.py:251 +#: vpn/forms/filtersets.py:251 msgid "Assigned Object Type" msgstr "割当オブジェクトタイプ" -#: netbox/vpn/forms/model_forms.py:95 netbox/vpn/forms/model_forms.py:130 -#: netbox/vpn/forms/model_forms.py:240 netbox/vpn/tables/tunnels.py:91 +#: vpn/forms/model_forms.py:95 vpn/forms/model_forms.py:130 +#: vpn/forms/model_forms.py:240 vpn/tables/tunnels.py:91 msgid "Tunnel interface" msgstr "トンネルインターフェイス" -#: netbox/vpn/forms/model_forms.py:150 +#: vpn/forms/model_forms.py:150 msgid "First Termination" msgstr "1 回目の解約" -#: netbox/vpn/forms/model_forms.py:153 +#: vpn/forms/model_forms.py:153 msgid "Second Termination" msgstr "2 回目の終了" -#: netbox/vpn/forms/model_forms.py:197 +#: vpn/forms/model_forms.py:197 msgid "This parameter is required when defining a termination." msgstr "このパラメータは、終端を定義する場合に必要です。" -#: netbox/vpn/forms/model_forms.py:320 netbox/vpn/forms/model_forms.py:356 +#: vpn/forms/model_forms.py:320 vpn/forms/model_forms.py:356 msgid "Policy" msgstr "ポリシー" -#: netbox/vpn/forms/model_forms.py:487 +#: vpn/forms/model_forms.py:487 msgid "A termination must specify an interface or VLAN." msgstr "終端にはインタフェースまたは VLAN を指定する必要があります。" -#: netbox/vpn/forms/model_forms.py:489 +#: vpn/forms/model_forms.py:489 msgid "" "A termination can only have one terminating object (an interface or VLAN)." msgstr "終端には、1 つの終端オブジェクト(インタフェースまたは VLAN)しか設定できません。" -#: netbox/vpn/models/crypto.py:33 +#: vpn/models/crypto.py:33 msgid "encryption algorithm" msgstr "暗号化アルゴリズム" -#: netbox/vpn/models/crypto.py:37 +#: vpn/models/crypto.py:37 msgid "authentication algorithm" msgstr "認証アルゴリズム" -#: netbox/vpn/models/crypto.py:44 +#: vpn/models/crypto.py:44 msgid "Diffie-Hellman group ID" msgstr "ディフィー・ヘルマングループ ID" -#: netbox/vpn/models/crypto.py:50 +#: vpn/models/crypto.py:50 msgid "Security association lifetime (in seconds)" msgstr "セキュリティアソシエーションの有効期間 (秒単位)" -#: netbox/vpn/models/crypto.py:59 +#: vpn/models/crypto.py:59 msgid "IKE proposal" msgstr "イケアの提案" -#: netbox/vpn/models/crypto.py:60 +#: vpn/models/crypto.py:60 msgid "IKE proposals" msgstr "IKEの提案" -#: netbox/vpn/models/crypto.py:76 +#: vpn/models/crypto.py:76 msgid "version" msgstr "版" -#: netbox/vpn/models/crypto.py:88 netbox/vpn/models/crypto.py:190 +#: vpn/models/crypto.py:88 vpn/models/crypto.py:190 msgid "proposals" msgstr "提案" -#: netbox/vpn/models/crypto.py:91 netbox/wireless/models.py:39 +#: vpn/models/crypto.py:91 wireless/models.py:39 msgid "pre-shared key" msgstr "事前共有キー" -#: netbox/vpn/models/crypto.py:105 +#: vpn/models/crypto.py:105 msgid "IKE policies" msgstr "IKE ポリシー" -#: netbox/vpn/models/crypto.py:118 +#: vpn/models/crypto.py:118 msgid "Mode is required for selected IKE version" msgstr "選択した IKE バージョンにはモードが必要です" -#: netbox/vpn/models/crypto.py:122 +#: vpn/models/crypto.py:122 msgid "Mode cannot be used for selected IKE version" msgstr "モードは選択された IKE バージョンでは使用できません" -#: netbox/vpn/models/crypto.py:136 +#: vpn/models/crypto.py:136 msgid "encryption" msgstr "暗号化" -#: netbox/vpn/models/crypto.py:141 +#: vpn/models/crypto.py:141 msgid "authentication" msgstr "認証" -#: netbox/vpn/models/crypto.py:149 +#: vpn/models/crypto.py:149 msgid "Security association lifetime (seconds)" msgstr "セキュリティアソシエーションの有効期間 (秒)" -#: netbox/vpn/models/crypto.py:155 +#: vpn/models/crypto.py:155 msgid "Security association lifetime (in kilobytes)" msgstr "セキュリティアソシエーションの有効期間 (KB 単位)" -#: netbox/vpn/models/crypto.py:164 +#: vpn/models/crypto.py:164 msgid "IPSec proposal" msgstr "IPsec プロポーザル" -#: netbox/vpn/models/crypto.py:165 +#: vpn/models/crypto.py:165 msgid "IPSec proposals" msgstr "IPsec プロポーザル" -#: netbox/vpn/models/crypto.py:178 +#: vpn/models/crypto.py:178 msgid "Encryption and/or authentication algorithm must be defined" msgstr "暗号化および/または認証アルゴリズムを定義する必要があります" -#: netbox/vpn/models/crypto.py:210 +#: vpn/models/crypto.py:210 msgid "IPSec policies" msgstr "IPsec ポリシー" -#: netbox/vpn/models/crypto.py:251 +#: vpn/models/crypto.py:251 msgid "IPSec profiles" msgstr "IPsec プロファイル" -#: netbox/vpn/models/l2vpn.py:116 +#: vpn/models/l2vpn.py:116 msgid "L2VPN termination" msgstr "L2 VPN ターミネーション" -#: netbox/vpn/models/l2vpn.py:117 +#: vpn/models/l2vpn.py:117 msgid "L2VPN terminations" msgstr "L2 VPN ターミネーション" -#: netbox/vpn/models/l2vpn.py:135 +#: vpn/models/l2vpn.py:135 #, python-brace-format msgid "L2VPN Termination already assigned ({assigned_object})" msgstr "L2VPN ターミネーションはすでに割り当てられています({assigned_object})" -#: netbox/vpn/models/l2vpn.py:147 +#: vpn/models/l2vpn.py:147 #, python-brace-format msgid "" "{l2vpn_type} L2VPNs cannot have more than two terminations; found " @@ -15598,194 +14846,186 @@ msgid "" msgstr "" "{l2vpn_type} L2VPN のターミネーションは 3 つまでです。見つかりました {terminations_count} 定義済みです。" -#: netbox/vpn/models/tunnels.py:26 +#: vpn/models/tunnels.py:26 msgid "tunnel group" msgstr "トンネルグループ" -#: netbox/vpn/models/tunnels.py:27 +#: vpn/models/tunnels.py:27 msgid "tunnel groups" msgstr "トンネルグループ" -#: netbox/vpn/models/tunnels.py:53 +#: vpn/models/tunnels.py:53 msgid "encapsulation" msgstr "カプセル化" -#: netbox/vpn/models/tunnels.py:72 +#: vpn/models/tunnels.py:72 msgid "tunnel ID" msgstr "トンネル ID" -#: netbox/vpn/models/tunnels.py:94 +#: vpn/models/tunnels.py:94 msgid "tunnel" msgstr "トンネル" -#: netbox/vpn/models/tunnels.py:95 +#: vpn/models/tunnels.py:95 msgid "tunnels" msgstr "トンネル" -#: netbox/vpn/models/tunnels.py:153 +#: vpn/models/tunnels.py:153 msgid "An object may be terminated to only one tunnel at a time." msgstr "オブジェクトは一度に 1 つのトンネルにしか終端できません。" -#: netbox/vpn/models/tunnels.py:156 +#: vpn/models/tunnels.py:156 msgid "tunnel termination" msgstr "トンネル終端" -#: netbox/vpn/models/tunnels.py:157 +#: vpn/models/tunnels.py:157 msgid "tunnel terminations" msgstr "トンネル終端" -#: netbox/vpn/models/tunnels.py:174 +#: vpn/models/tunnels.py:174 #, python-brace-format msgid "{name} is already attached to a tunnel ({tunnel})." msgstr "{name} すでにトンネルに接続されています ({tunnel})。" -#: netbox/vpn/tables/crypto.py:22 +#: vpn/tables/crypto.py:22 msgid "Authentication Method" msgstr "認証方法" -#: netbox/vpn/tables/crypto.py:25 netbox/vpn/tables/crypto.py:97 +#: vpn/tables/crypto.py:25 vpn/tables/crypto.py:97 msgid "Encryption Algorithm" msgstr "暗号化アルゴリズム" -#: netbox/vpn/tables/crypto.py:28 netbox/vpn/tables/crypto.py:100 +#: vpn/tables/crypto.py:28 vpn/tables/crypto.py:100 msgid "Authentication Algorithm" msgstr "認証アルゴリズム" -#: netbox/vpn/tables/crypto.py:34 +#: vpn/tables/crypto.py:34 msgid "SA Lifetime" msgstr "SA ライフタイム" -#: netbox/vpn/tables/crypto.py:71 +#: vpn/tables/crypto.py:71 msgid "Pre-shared Key" msgstr "事前共有キー" -#: netbox/vpn/tables/crypto.py:103 +#: vpn/tables/crypto.py:103 msgid "SA Lifetime (Seconds)" msgstr "SA ライフタイム (秒)" -#: netbox/vpn/tables/crypto.py:106 +#: vpn/tables/crypto.py:106 msgid "SA Lifetime (KB)" msgstr "SA ライフタイム (KB)" -#: netbox/vpn/tables/l2vpn.py:69 +#: vpn/tables/l2vpn.py:69 msgid "Object Parent" msgstr "オブジェクト親" -#: netbox/vpn/tables/l2vpn.py:74 +#: vpn/tables/l2vpn.py:74 msgid "Object Site" msgstr "オブジェクトサイト" -#: netbox/wireless/choices.py:11 +#: wireless/choices.py:11 msgid "Access point" msgstr "アクセスポイント" -#: netbox/wireless/choices.py:12 +#: wireless/choices.py:12 msgid "Station" msgstr "ステーション" -#: netbox/wireless/choices.py:467 +#: wireless/choices.py:467 msgid "Open" msgstr "開く" -#: netbox/wireless/choices.py:469 +#: wireless/choices.py:469 msgid "WPA Personal (PSK)" msgstr "WPA パーソナル (PSK)" -#: netbox/wireless/choices.py:470 +#: wireless/choices.py:470 msgid "WPA Enterprise" msgstr "WPA エンタープライズ" -#: netbox/wireless/forms/bulk_edit.py:73 -#: netbox/wireless/forms/bulk_edit.py:120 -#: netbox/wireless/forms/bulk_import.py:68 -#: netbox/wireless/forms/bulk_import.py:71 -#: netbox/wireless/forms/bulk_import.py:110 -#: netbox/wireless/forms/bulk_import.py:113 -#: netbox/wireless/forms/filtersets.py:59 -#: netbox/wireless/forms/filtersets.py:93 +#: wireless/forms/bulk_edit.py:73 wireless/forms/bulk_edit.py:120 +#: wireless/forms/bulk_import.py:68 wireless/forms/bulk_import.py:71 +#: wireless/forms/bulk_import.py:110 wireless/forms/bulk_import.py:113 +#: wireless/forms/filtersets.py:59 wireless/forms/filtersets.py:93 msgid "Authentication cipher" msgstr "認証暗号" -#: netbox/wireless/forms/bulk_edit.py:134 -#: netbox/wireless/forms/bulk_import.py:116 -#: netbox/wireless/forms/bulk_import.py:119 -#: netbox/wireless/forms/filtersets.py:106 +#: wireless/forms/bulk_edit.py:134 wireless/forms/bulk_import.py:116 +#: wireless/forms/bulk_import.py:119 wireless/forms/filtersets.py:106 msgid "Distance unit" msgstr "距離単位" -#: netbox/wireless/forms/bulk_import.py:52 +#: wireless/forms/bulk_import.py:52 msgid "Bridged VLAN" msgstr "ブリッジド VLAN" -#: netbox/wireless/forms/bulk_import.py:89 -#: netbox/wireless/tables/wirelesslink.py:28 +#: wireless/forms/bulk_import.py:89 wireless/tables/wirelesslink.py:28 msgid "Interface A" msgstr "インタフェース A" -#: netbox/wireless/forms/bulk_import.py:93 -#: netbox/wireless/tables/wirelesslink.py:37 +#: wireless/forms/bulk_import.py:93 wireless/tables/wirelesslink.py:37 msgid "Interface B" msgstr "インタフェース B" -#: netbox/wireless/forms/model_forms.py:161 +#: wireless/forms/model_forms.py:161 msgid "Side B" msgstr "サイド B" -#: netbox/wireless/models.py:31 +#: wireless/models.py:31 msgid "authentication cipher" msgstr "認証暗号" -#: netbox/wireless/models.py:69 +#: wireless/models.py:69 msgid "wireless LAN group" msgstr "無線 LAN グループ" -#: netbox/wireless/models.py:70 +#: wireless/models.py:70 msgid "wireless LAN groups" msgstr "無線 LAN グループ" -#: netbox/wireless/models.py:116 +#: wireless/models.py:116 msgid "wireless LAN" msgstr "無線 LAN" -#: netbox/wireless/models.py:144 +#: wireless/models.py:144 msgid "interface A" msgstr "インタフェース A" -#: netbox/wireless/models.py:151 +#: wireless/models.py:151 msgid "interface B" msgstr "インタフェース B" -#: netbox/wireless/models.py:165 +#: wireless/models.py:165 msgid "distance" msgstr "距離" -#: netbox/wireless/models.py:172 +#: wireless/models.py:172 msgid "distance unit" msgstr "距離単位" -#: netbox/wireless/models.py:219 +#: wireless/models.py:219 msgid "wireless link" msgstr "無線リンク" -#: netbox/wireless/models.py:220 +#: wireless/models.py:220 msgid "wireless links" msgstr "無線リンク" -#: netbox/wireless/models.py:236 +#: wireless/models.py:236 msgid "Must specify a unit when setting a wireless distance" msgstr "ワイヤレス距離を設定するときは単位を指定する必要があります" -#: netbox/wireless/models.py:242 netbox/wireless/models.py:248 +#: wireless/models.py:242 wireless/models.py:248 #, python-brace-format msgid "{type} is not a wireless interface." msgstr "{type} 無線インタフェースではありません。" -#: netbox/wireless/utils.py:16 +#: wireless/utils.py:16 #, python-brace-format msgid "Invalid channel value: {channel}" msgstr "チャンネル値が無効です: {channel}" -#: netbox/wireless/utils.py:26 +#: wireless/utils.py:26 #, python-brace-format msgid "Invalid channel attribute: {name}" msgstr "チャンネル属性が無効です: {name}" diff --git a/netbox/translations/nl/LC_MESSAGES/django.po b/netbox/translations/nl/LC_MESSAGES/django.po index 9a9392642..175331f93 100644 --- a/netbox/translations/nl/LC_MESSAGES/django.po +++ b/netbox/translations/nl/LC_MESSAGES/django.po @@ -15,7 +15,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-12 05:02+0000\n" +"POT-Creation-Date: 2024-10-28 19:20+0000\n" "PO-Revision-Date: 2023-10-30 17:48+0000\n" "Last-Translator: Sebastian Berm, 2024\n" "Language-Team: Dutch (https://app.transifex.com/netbox-community/teams/178115/nl/)\n" @@ -25,2146 +25,1877 @@ msgstr "" "Language: nl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: netbox/account/tables.py:27 netbox/templates/account/token.html:22 -#: netbox/templates/users/token.html:17 netbox/users/forms/bulk_import.py:39 -#: netbox/users/forms/model_forms.py:112 +#: account/tables.py:27 templates/account/token.html:22 +#: templates/users/token.html:17 users/forms/bulk_import.py:39 +#: users/forms/model_forms.py:112 msgid "Key" msgstr "Sleutel" -#: netbox/account/tables.py:31 netbox/users/forms/filtersets.py:132 +#: account/tables.py:31 users/forms/filtersets.py:132 msgid "Write Enabled" msgstr "Schrijven ingeschakeld" -#: netbox/account/tables.py:35 netbox/core/choices.py:86 -#: netbox/core/tables/jobs.py:29 netbox/core/tables/tasks.py:79 -#: netbox/extras/tables/tables.py:335 netbox/extras/tables/tables.py:566 -#: netbox/templates/account/token.html:43 -#: netbox/templates/core/configrevision.html:26 -#: netbox/templates/core/configrevision_restore.html:12 -#: netbox/templates/core/job.html:69 netbox/templates/core/rq_task.html:16 -#: netbox/templates/core/rq_task.html:73 -#: netbox/templates/core/rq_worker.html:14 -#: netbox/templates/extras/htmx/script_result.html:12 -#: netbox/templates/extras/journalentry.html:22 -#: netbox/templates/generic/object.html:58 -#: netbox/templates/users/token.html:35 +#: account/tables.py:35 core/choices.py:86 core/tables/jobs.py:29 +#: core/tables/tasks.py:79 extras/tables/tables.py:335 +#: extras/tables/tables.py:566 templates/account/token.html:43 +#: templates/core/configrevision.html:26 +#: templates/core/configrevision_restore.html:12 templates/core/job.html:69 +#: templates/core/rq_task.html:16 templates/core/rq_task.html:73 +#: templates/core/rq_worker.html:14 +#: templates/extras/htmx/script_result.html:12 +#: templates/extras/journalentry.html:22 templates/generic/object.html:58 +#: templates/users/token.html:35 msgid "Created" msgstr "Aangemaakt" -#: netbox/account/tables.py:39 netbox/templates/account/token.html:47 -#: netbox/templates/users/token.html:39 netbox/users/forms/bulk_edit.py:117 -#: netbox/users/forms/filtersets.py:136 +#: account/tables.py:39 templates/account/token.html:47 +#: templates/users/token.html:39 users/forms/bulk_edit.py:117 +#: users/forms/filtersets.py:136 msgid "Expires" msgstr "Vervalt" -#: netbox/account/tables.py:42 netbox/users/forms/filtersets.py:141 +#: account/tables.py:42 users/forms/filtersets.py:141 msgid "Last Used" msgstr "Laatst gebruikt" -#: netbox/account/tables.py:45 netbox/templates/account/token.html:55 -#: netbox/templates/users/token.html:47 netbox/users/forms/bulk_edit.py:122 -#: netbox/users/forms/model_forms.py:124 +#: account/tables.py:45 templates/account/token.html:55 +#: templates/users/token.html:47 users/forms/bulk_edit.py:122 +#: users/forms/model_forms.py:124 msgid "Allowed IPs" msgstr "Toegestane IP-adressen" -#: netbox/account/views.py:114 +#: account/views.py:114 #, python-brace-format msgid "Logged in as {user}." msgstr "Ingelogd als {user}." -#: netbox/account/views.py:164 +#: account/views.py:164 msgid "You have logged out." msgstr "Je bent uitgelogd." -#: netbox/account/views.py:216 +#: account/views.py:216 msgid "Your preferences have been updated." msgstr "Je voorkeuren zijn bijgewerkt." -#: netbox/account/views.py:239 +#: account/views.py:239 msgid "LDAP-authenticated user credentials cannot be changed within NetBox." msgstr "" "LDAP-geverifieerde gebruikersgegevens kunnen niet worden gewijzigd in " "NetBox." -#: netbox/account/views.py:254 +#: account/views.py:254 msgid "Your password has been changed successfully." 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:185 -#: netbox/dcim/choices.py:237 netbox/dcim/choices.py:1530 -#: netbox/dcim/choices.py:1606 netbox/dcim/choices.py:1656 -#: netbox/virtualization/choices.py:20 netbox/virtualization/choices.py:45 -#: netbox/vpn/choices.py:18 +#: circuits/choices.py:21 dcim/choices.py:20 dcim/choices.py:102 +#: dcim/choices.py:185 dcim/choices.py:237 dcim/choices.py:1530 +#: dcim/choices.py:1606 dcim/choices.py:1656 virtualization/choices.py:20 +#: virtualization/choices.py:45 vpn/choices.py:18 msgid "Planned" msgstr "Gepland" -#: netbox/circuits/choices.py:22 netbox/netbox/navigation/menu.py:305 +#: circuits/choices.py:22 netbox/navigation/menu.py:305 msgid "Provisioning" msgstr "Provisioning" -#: netbox/circuits/choices.py:23 netbox/core/tables/tasks.py:22 -#: netbox/dcim/choices.py:22 netbox/dcim/choices.py:103 -#: netbox/dcim/choices.py:184 netbox/dcim/choices.py:236 -#: netbox/dcim/choices.py:1605 netbox/dcim/choices.py:1655 -#: netbox/extras/tables/tables.py:495 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:25 -#: netbox/templates/users/user.html:37 netbox/users/forms/bulk_edit.py:38 -#: netbox/virtualization/choices.py:22 netbox/virtualization/choices.py:44 -#: netbox/vpn/choices.py:19 netbox/wireless/choices.py:25 +#: circuits/choices.py:23 core/tables/tasks.py:22 dcim/choices.py:22 +#: dcim/choices.py:103 dcim/choices.py:184 dcim/choices.py:236 +#: dcim/choices.py:1605 dcim/choices.py:1655 extras/tables/tables.py:495 +#: ipam/choices.py:31 ipam/choices.py:49 ipam/choices.py:69 +#: ipam/choices.py:154 templates/extras/configcontext.html:25 +#: templates/users/user.html:37 users/forms/bulk_edit.py:38 +#: virtualization/choices.py:22 virtualization/choices.py:44 vpn/choices.py:19 +#: wireless/choices.py:25 msgid "Active" msgstr "Actief" -#: netbox/circuits/choices.py:24 netbox/dcim/choices.py:183 -#: netbox/dcim/choices.py:235 netbox/dcim/choices.py:1604 -#: netbox/dcim/choices.py:1657 netbox/virtualization/choices.py:24 -#: netbox/virtualization/choices.py:43 +#: circuits/choices.py:24 dcim/choices.py:183 dcim/choices.py:235 +#: dcim/choices.py:1604 dcim/choices.py:1657 virtualization/choices.py:24 +#: virtualization/choices.py:43 msgid "Offline" msgstr "Offline" -#: netbox/circuits/choices.py:25 +#: circuits/choices.py:25 msgid "Deprovisioning" msgstr "Deprovisioning" -#: netbox/circuits/choices.py:26 +#: circuits/choices.py:26 msgid "Decommissioned" msgstr "Buiten gebruik" -#: netbox/circuits/choices.py:90 netbox/dcim/choices.py:1617 -#: netbox/tenancy/choices.py:17 +#: circuits/choices.py:90 dcim/choices.py:1617 tenancy/choices.py:17 msgid "Primary" msgstr "Primair" -#: netbox/circuits/choices.py:91 netbox/ipam/choices.py:90 -#: netbox/tenancy/choices.py:18 +#: circuits/choices.py:91 ipam/choices.py:90 tenancy/choices.py:18 msgid "Secondary" msgstr "Secundair" -#: netbox/circuits/choices.py:92 netbox/tenancy/choices.py:19 +#: circuits/choices.py:92 tenancy/choices.py:19 msgid "Tertiary" msgstr "Tertiair" -#: netbox/circuits/choices.py:93 netbox/tenancy/choices.py:20 +#: circuits/choices.py:93 tenancy/choices.py:20 msgid "Inactive" msgstr "Inactief" -#: netbox/circuits/filtersets.py:31 netbox/circuits/filtersets.py:198 -#: netbox/dcim/filtersets.py:98 netbox/dcim/filtersets.py:152 -#: netbox/dcim/filtersets.py:212 netbox/dcim/filtersets.py:333 -#: netbox/dcim/filtersets.py:464 netbox/dcim/filtersets.py:1021 -#: netbox/dcim/filtersets.py:1368 netbox/dcim/filtersets.py:1903 -#: netbox/dcim/filtersets.py:2146 netbox/dcim/filtersets.py:2204 -#: netbox/ipam/filtersets.py:339 netbox/ipam/filtersets.py:959 -#: netbox/virtualization/filtersets.py:45 -#: netbox/virtualization/filtersets.py:173 netbox/vpn/filtersets.py:358 +#: circuits/filtersets.py:31 circuits/filtersets.py:198 dcim/filtersets.py:98 +#: dcim/filtersets.py:152 dcim/filtersets.py:212 dcim/filtersets.py:333 +#: dcim/filtersets.py:464 dcim/filtersets.py:1021 dcim/filtersets.py:1368 +#: dcim/filtersets.py:1903 dcim/filtersets.py:2146 dcim/filtersets.py:2204 +#: ipam/filtersets.py:339 ipam/filtersets.py:959 +#: virtualization/filtersets.py:45 virtualization/filtersets.py:173 +#: vpn/filtersets.py:358 msgid "Region (ID)" msgstr "Regio (ID)" -#: netbox/circuits/filtersets.py:38 netbox/circuits/filtersets.py:205 -#: netbox/dcim/filtersets.py:105 netbox/dcim/filtersets.py:158 -#: netbox/dcim/filtersets.py:219 netbox/dcim/filtersets.py:340 -#: netbox/dcim/filtersets.py:471 netbox/dcim/filtersets.py:1028 -#: netbox/dcim/filtersets.py:1375 netbox/dcim/filtersets.py:1910 -#: netbox/dcim/filtersets.py:2153 netbox/dcim/filtersets.py:2211 -#: netbox/extras/filtersets.py:509 netbox/ipam/filtersets.py:346 -#: netbox/ipam/filtersets.py:966 netbox/virtualization/filtersets.py:52 -#: netbox/virtualization/filtersets.py:180 netbox/vpn/filtersets.py:353 +#: circuits/filtersets.py:38 circuits/filtersets.py:205 dcim/filtersets.py:105 +#: dcim/filtersets.py:158 dcim/filtersets.py:219 dcim/filtersets.py:340 +#: dcim/filtersets.py:471 dcim/filtersets.py:1028 dcim/filtersets.py:1375 +#: dcim/filtersets.py:1910 dcim/filtersets.py:2153 dcim/filtersets.py:2211 +#: extras/filtersets.py:509 ipam/filtersets.py:346 ipam/filtersets.py:966 +#: virtualization/filtersets.py:52 virtualization/filtersets.py:180 +#: vpn/filtersets.py:353 msgid "Region (slug)" msgstr "Regio (slug)" -#: netbox/circuits/filtersets.py:44 netbox/circuits/filtersets.py:211 -#: netbox/dcim/filtersets.py:128 netbox/dcim/filtersets.py:225 -#: netbox/dcim/filtersets.py:346 netbox/dcim/filtersets.py:477 -#: netbox/dcim/filtersets.py:1034 netbox/dcim/filtersets.py:1381 -#: netbox/dcim/filtersets.py:1916 netbox/dcim/filtersets.py:2159 -#: netbox/dcim/filtersets.py:2217 netbox/ipam/filtersets.py:352 -#: netbox/ipam/filtersets.py:972 netbox/virtualization/filtersets.py:58 -#: netbox/virtualization/filtersets.py:186 +#: circuits/filtersets.py:44 circuits/filtersets.py:211 dcim/filtersets.py:128 +#: dcim/filtersets.py:225 dcim/filtersets.py:346 dcim/filtersets.py:477 +#: dcim/filtersets.py:1034 dcim/filtersets.py:1381 dcim/filtersets.py:1916 +#: dcim/filtersets.py:2159 dcim/filtersets.py:2217 ipam/filtersets.py:352 +#: ipam/filtersets.py:972 virtualization/filtersets.py:58 +#: virtualization/filtersets.py:186 msgid "Site group (ID)" msgstr "Sitegroep (ID)" -#: netbox/circuits/filtersets.py:51 netbox/circuits/filtersets.py:218 -#: netbox/dcim/filtersets.py:135 netbox/dcim/filtersets.py:232 -#: netbox/dcim/filtersets.py:353 netbox/dcim/filtersets.py:484 -#: netbox/dcim/filtersets.py:1041 netbox/dcim/filtersets.py:1388 -#: netbox/dcim/filtersets.py:1923 netbox/dcim/filtersets.py:2166 -#: netbox/dcim/filtersets.py:2224 netbox/extras/filtersets.py:515 -#: netbox/ipam/filtersets.py:359 netbox/ipam/filtersets.py:979 -#: netbox/virtualization/filtersets.py:65 -#: netbox/virtualization/filtersets.py:193 +#: circuits/filtersets.py:51 circuits/filtersets.py:218 dcim/filtersets.py:135 +#: dcim/filtersets.py:232 dcim/filtersets.py:353 dcim/filtersets.py:484 +#: dcim/filtersets.py:1041 dcim/filtersets.py:1388 dcim/filtersets.py:1923 +#: dcim/filtersets.py:2166 dcim/filtersets.py:2224 extras/filtersets.py:515 +#: ipam/filtersets.py:359 ipam/filtersets.py:979 +#: virtualization/filtersets.py:65 virtualization/filtersets.py:193 msgid "Site group (slug)" msgstr "Sitegroep (slug)" -#: netbox/circuits/filtersets.py:56 netbox/circuits/forms/bulk_edit.py:188 -#: netbox/circuits/forms/bulk_edit.py:216 -#: netbox/circuits/forms/bulk_import.py:124 -#: netbox/circuits/forms/filtersets.py:51 -#: netbox/circuits/forms/filtersets.py:171 -#: netbox/circuits/forms/filtersets.py:209 -#: netbox/circuits/forms/model_forms.py:138 -#: netbox/circuits/forms/model_forms.py:154 -#: netbox/circuits/tables/circuits.py:113 netbox/dcim/forms/bulk_edit.py:168 -#: netbox/dcim/forms/bulk_edit.py:329 netbox/dcim/forms/bulk_edit.py:677 -#: netbox/dcim/forms/bulk_edit.py:873 netbox/dcim/forms/bulk_import.py:131 -#: netbox/dcim/forms/bulk_import.py:230 netbox/dcim/forms/bulk_import.py:309 -#: netbox/dcim/forms/bulk_import.py:540 netbox/dcim/forms/bulk_import.py:1311 -#: netbox/dcim/forms/bulk_import.py:1339 netbox/dcim/forms/filtersets.py:87 -#: netbox/dcim/forms/filtersets.py:225 netbox/dcim/forms/filtersets.py:342 -#: netbox/dcim/forms/filtersets.py:439 netbox/dcim/forms/filtersets.py:753 -#: netbox/dcim/forms/filtersets.py:997 netbox/dcim/forms/filtersets.py:1021 -#: netbox/dcim/forms/filtersets.py:1111 netbox/dcim/forms/filtersets.py:1149 -#: netbox/dcim/forms/filtersets.py:1584 netbox/dcim/forms/filtersets.py:1608 -#: netbox/dcim/forms/filtersets.py:1632 netbox/dcim/forms/model_forms.py:137 -#: netbox/dcim/forms/model_forms.py:165 netbox/dcim/forms/model_forms.py:238 -#: netbox/dcim/forms/model_forms.py:463 netbox/dcim/forms/model_forms.py:723 -#: netbox/dcim/forms/object_create.py:391 netbox/dcim/tables/devices.py:153 -#: netbox/dcim/tables/power.py:26 netbox/dcim/tables/power.py:93 -#: netbox/dcim/tables/racks.py:122 netbox/dcim/tables/racks.py:207 -#: netbox/dcim/tables/sites.py:134 netbox/extras/filtersets.py:525 -#: netbox/ipam/forms/bulk_edit.py:217 netbox/ipam/forms/bulk_edit.py:284 -#: netbox/ipam/forms/bulk_edit.py:451 netbox/ipam/forms/bulk_edit.py:529 -#: netbox/ipam/forms/bulk_import.py:171 netbox/ipam/forms/bulk_import.py:429 -#: netbox/ipam/forms/filtersets.py:153 netbox/ipam/forms/filtersets.py:231 -#: netbox/ipam/forms/filtersets.py:432 netbox/ipam/forms/filtersets.py:489 -#: netbox/ipam/forms/model_forms.py:205 netbox/ipam/forms/model_forms.py:636 -#: netbox/ipam/tables/ip.py:245 netbox/ipam/tables/vlans.py:118 -#: netbox/ipam/tables/vlans.py:221 -#: netbox/templates/circuits/inc/circuit_termination_fields.html:6 -#: netbox/templates/dcim/device.html:22 -#: netbox/templates/dcim/inc/cable_termination.html:8 -#: netbox/templates/dcim/inc/cable_termination.html:33 -#: netbox/templates/dcim/location.html:37 -#: netbox/templates/dcim/powerpanel.html:22 netbox/templates/dcim/rack.html:20 -#: netbox/templates/dcim/rackreservation.html:28 -#: netbox/templates/dcim/site.html:28 netbox/templates/ipam/prefix.html:56 -#: netbox/templates/ipam/vlan.html:23 netbox/templates/ipam/vlan_edit.html:40 -#: netbox/templates/virtualization/cluster.html:42 -#: netbox/templates/virtualization/virtualmachine.html:95 -#: netbox/virtualization/forms/bulk_edit.py:91 -#: netbox/virtualization/forms/bulk_edit.py:109 -#: netbox/virtualization/forms/bulk_edit.py:124 -#: netbox/virtualization/forms/bulk_import.py:59 -#: netbox/virtualization/forms/bulk_import.py:85 -#: netbox/virtualization/forms/filtersets.py:79 -#: netbox/virtualization/forms/filtersets.py:148 -#: netbox/virtualization/forms/model_forms.py:71 -#: netbox/virtualization/forms/model_forms.py:104 -#: netbox/virtualization/forms/model_forms.py:171 -#: netbox/virtualization/tables/clusters.py:77 -#: netbox/virtualization/tables/virtualmachines.py:63 -#: netbox/vpn/forms/filtersets.py:266 netbox/wireless/forms/model_forms.py:76 -#: netbox/wireless/forms/model_forms.py:118 +#: circuits/filtersets.py:56 circuits/forms/bulk_edit.py:188 +#: circuits/forms/bulk_edit.py:216 circuits/forms/bulk_import.py:124 +#: circuits/forms/filtersets.py:51 circuits/forms/filtersets.py:171 +#: circuits/forms/filtersets.py:209 circuits/forms/model_forms.py:138 +#: circuits/forms/model_forms.py:154 circuits/tables/circuits.py:113 +#: dcim/forms/bulk_edit.py:168 dcim/forms/bulk_edit.py:329 +#: dcim/forms/bulk_edit.py:677 dcim/forms/bulk_edit.py:873 +#: dcim/forms/bulk_import.py:131 dcim/forms/bulk_import.py:230 +#: dcim/forms/bulk_import.py:309 dcim/forms/bulk_import.py:540 +#: dcim/forms/bulk_import.py:1311 dcim/forms/bulk_import.py:1339 +#: dcim/forms/filtersets.py:87 dcim/forms/filtersets.py:225 +#: dcim/forms/filtersets.py:342 dcim/forms/filtersets.py:439 +#: dcim/forms/filtersets.py:753 dcim/forms/filtersets.py:997 +#: dcim/forms/filtersets.py:1021 dcim/forms/filtersets.py:1111 +#: dcim/forms/filtersets.py:1149 dcim/forms/filtersets.py:1584 +#: dcim/forms/filtersets.py:1608 dcim/forms/filtersets.py:1632 +#: dcim/forms/model_forms.py:137 dcim/forms/model_forms.py:165 +#: dcim/forms/model_forms.py:238 dcim/forms/model_forms.py:463 +#: dcim/forms/model_forms.py:723 dcim/forms/object_create.py:391 +#: dcim/tables/devices.py:153 dcim/tables/power.py:26 dcim/tables/power.py:93 +#: dcim/tables/racks.py:122 dcim/tables/racks.py:207 dcim/tables/sites.py:134 +#: extras/filtersets.py:525 ipam/forms/bulk_edit.py:218 +#: ipam/forms/bulk_edit.py:285 ipam/forms/bulk_edit.py:484 +#: ipam/forms/bulk_import.py:171 ipam/forms/bulk_import.py:429 +#: ipam/forms/filtersets.py:153 ipam/forms/filtersets.py:231 +#: ipam/forms/filtersets.py:432 ipam/forms/filtersets.py:489 +#: ipam/forms/model_forms.py:205 ipam/forms/model_forms.py:636 +#: ipam/tables/ip.py:245 ipam/tables/vlans.py:118 ipam/tables/vlans.py:221 +#: templates/circuits/inc/circuit_termination_fields.html:6 +#: templates/dcim/device.html:22 templates/dcim/inc/cable_termination.html:8 +#: templates/dcim/inc/cable_termination.html:33 +#: templates/dcim/location.html:37 templates/dcim/powerpanel.html:22 +#: templates/dcim/rack.html:20 templates/dcim/rackreservation.html:28 +#: templates/dcim/site.html:28 templates/ipam/prefix.html:56 +#: templates/ipam/vlan.html:23 templates/ipam/vlan_edit.html:40 +#: templates/virtualization/cluster.html:42 +#: templates/virtualization/virtualmachine.html:95 +#: virtualization/forms/bulk_edit.py:91 virtualization/forms/bulk_edit.py:109 +#: virtualization/forms/bulk_edit.py:124 +#: virtualization/forms/bulk_import.py:59 +#: virtualization/forms/bulk_import.py:85 +#: virtualization/forms/filtersets.py:79 +#: virtualization/forms/filtersets.py:148 +#: virtualization/forms/model_forms.py:71 +#: virtualization/forms/model_forms.py:104 +#: virtualization/forms/model_forms.py:171 +#: virtualization/tables/clusters.py:77 +#: virtualization/tables/virtualmachines.py:63 vpn/forms/filtersets.py:266 +#: wireless/forms/model_forms.py:76 wireless/forms/model_forms.py:118 msgid "Site" msgstr "Site" -#: netbox/circuits/filtersets.py:62 netbox/circuits/filtersets.py:229 -#: netbox/circuits/filtersets.py:274 netbox/dcim/filtersets.py:242 -#: netbox/dcim/filtersets.py:363 netbox/dcim/filtersets.py:458 -#: netbox/extras/filtersets.py:531 netbox/ipam/filtersets.py:238 -#: netbox/ipam/filtersets.py:369 netbox/ipam/filtersets.py:989 -#: netbox/virtualization/filtersets.py:75 -#: netbox/virtualization/filtersets.py:203 netbox/vpn/filtersets.py:363 +#: circuits/filtersets.py:62 circuits/filtersets.py:229 +#: circuits/filtersets.py:274 dcim/filtersets.py:242 dcim/filtersets.py:363 +#: dcim/filtersets.py:458 extras/filtersets.py:531 ipam/filtersets.py:238 +#: ipam/filtersets.py:369 ipam/filtersets.py:989 +#: virtualization/filtersets.py:75 virtualization/filtersets.py:203 +#: vpn/filtersets.py:363 msgid "Site (slug)" msgstr "Site (slug)" -#: netbox/circuits/filtersets.py:67 +#: circuits/filtersets.py:67 msgid "ASN (ID)" msgstr "ASN (ID)" -#: netbox/circuits/filtersets.py:73 netbox/circuits/forms/filtersets.py:31 -#: netbox/ipam/forms/model_forms.py:159 netbox/ipam/models/asns.py:108 -#: netbox/ipam/models/asns.py:125 netbox/ipam/tables/asn.py:41 -#: netbox/templates/ipam/asn.html:20 +#: circuits/filtersets.py:73 circuits/forms/filtersets.py:31 +#: ipam/forms/model_forms.py:159 ipam/models/asns.py:108 +#: ipam/models/asns.py:125 ipam/tables/asn.py:41 templates/ipam/asn.html:20 msgid "ASN" msgstr "ASN" -#: netbox/circuits/filtersets.py:95 netbox/circuits/filtersets.py:122 -#: netbox/circuits/filtersets.py:156 netbox/circuits/filtersets.py:283 -#: netbox/circuits/filtersets.py:325 netbox/ipam/filtersets.py:243 +#: circuits/filtersets.py:95 circuits/filtersets.py:122 +#: circuits/filtersets.py:156 circuits/filtersets.py:283 +#: circuits/filtersets.py:325 ipam/filtersets.py:243 msgid "Provider (ID)" msgstr "Provider (ID)" -#: netbox/circuits/filtersets.py:101 netbox/circuits/filtersets.py:128 -#: netbox/circuits/filtersets.py:162 netbox/circuits/filtersets.py:289 -#: netbox/circuits/filtersets.py:331 netbox/ipam/filtersets.py:249 +#: circuits/filtersets.py:101 circuits/filtersets.py:128 +#: circuits/filtersets.py:162 circuits/filtersets.py:289 +#: circuits/filtersets.py:331 ipam/filtersets.py:249 msgid "Provider (slug)" msgstr "Provider (slug)" -#: netbox/circuits/filtersets.py:167 +#: circuits/filtersets.py:167 msgid "Provider account (ID)" msgstr "Provideraccount (ID)" -#: netbox/circuits/filtersets.py:173 +#: circuits/filtersets.py:173 msgid "Provider account (account)" msgstr "Provideraccount (account)" -#: netbox/circuits/filtersets.py:178 +#: circuits/filtersets.py:178 msgid "Provider network (ID)" msgstr "Providernetwerk (ID)" -#: netbox/circuits/filtersets.py:182 +#: circuits/filtersets.py:182 msgid "Circuit type (ID)" msgstr "Circuittype (ID)" -#: netbox/circuits/filtersets.py:188 +#: circuits/filtersets.py:188 msgid "Circuit type (slug)" msgstr "Circuittype (slug)" -#: netbox/circuits/filtersets.py:223 netbox/circuits/filtersets.py:268 -#: netbox/dcim/filtersets.py:236 netbox/dcim/filtersets.py:357 -#: netbox/dcim/filtersets.py:452 netbox/dcim/filtersets.py:1045 -#: netbox/dcim/filtersets.py:1393 netbox/dcim/filtersets.py:1928 -#: netbox/dcim/filtersets.py:2170 netbox/dcim/filtersets.py:2229 -#: netbox/ipam/filtersets.py:232 netbox/ipam/filtersets.py:363 -#: netbox/ipam/filtersets.py:983 netbox/virtualization/filtersets.py:69 -#: netbox/virtualization/filtersets.py:197 netbox/vpn/filtersets.py:368 +#: circuits/filtersets.py:223 circuits/filtersets.py:268 +#: dcim/filtersets.py:236 dcim/filtersets.py:357 dcim/filtersets.py:452 +#: dcim/filtersets.py:1045 dcim/filtersets.py:1393 dcim/filtersets.py:1928 +#: dcim/filtersets.py:2170 dcim/filtersets.py:2229 ipam/filtersets.py:232 +#: ipam/filtersets.py:363 ipam/filtersets.py:983 +#: virtualization/filtersets.py:69 virtualization/filtersets.py:197 +#: vpn/filtersets.py:368 msgid "Site (ID)" msgstr "Locatie (ID)" -#: netbox/circuits/filtersets.py:233 netbox/circuits/filtersets.py:237 +#: circuits/filtersets.py:233 circuits/filtersets.py:237 msgid "Termination A (ID)" msgstr "Eindpunt A (ID)" -#: netbox/circuits/filtersets.py:260 netbox/circuits/filtersets.py:320 -#: netbox/core/filtersets.py:77 netbox/core/filtersets.py:136 -#: netbox/core/filtersets.py:173 netbox/dcim/filtersets.py:751 -#: netbox/dcim/filtersets.py:1362 netbox/dcim/filtersets.py:2277 -#: netbox/extras/filtersets.py:41 netbox/extras/filtersets.py:63 -#: netbox/extras/filtersets.py:92 netbox/extras/filtersets.py:132 -#: netbox/extras/filtersets.py:181 netbox/extras/filtersets.py:209 -#: netbox/extras/filtersets.py:239 netbox/extras/filtersets.py:276 -#: netbox/extras/filtersets.py:348 netbox/extras/filtersets.py:391 -#: netbox/extras/filtersets.py:438 netbox/extras/filtersets.py:498 -#: netbox/extras/filtersets.py:657 netbox/extras/filtersets.py:703 -#: netbox/ipam/forms/model_forms.py:449 netbox/netbox/filtersets.py:282 -#: netbox/netbox/forms/__init__.py:22 netbox/netbox/forms/base.py:167 -#: netbox/templates/htmx/object_selector.html:28 -#: netbox/templates/inc/filter_list.html:45 -#: netbox/templates/ipam/ipaddress_assign.html:29 -#: netbox/templates/search.html:7 netbox/templates/search.html:26 -#: netbox/tenancy/filtersets.py:99 netbox/users/filtersets.py:23 -#: netbox/users/filtersets.py:57 netbox/users/filtersets.py:102 -#: netbox/users/filtersets.py:150 netbox/utilities/forms/forms.py:104 -#: netbox/utilities/templates/navigation/menu.html:16 +#: circuits/filtersets.py:260 circuits/filtersets.py:320 core/filtersets.py:77 +#: core/filtersets.py:136 core/filtersets.py:173 dcim/filtersets.py:751 +#: dcim/filtersets.py:1362 dcim/filtersets.py:2277 extras/filtersets.py:41 +#: extras/filtersets.py:63 extras/filtersets.py:92 extras/filtersets.py:132 +#: extras/filtersets.py:181 extras/filtersets.py:209 extras/filtersets.py:239 +#: extras/filtersets.py:276 extras/filtersets.py:348 extras/filtersets.py:391 +#: extras/filtersets.py:438 extras/filtersets.py:498 extras/filtersets.py:657 +#: extras/filtersets.py:703 ipam/forms/model_forms.py:449 +#: netbox/filtersets.py:282 netbox/forms/__init__.py:22 +#: netbox/forms/base.py:167 templates/htmx/object_selector.html:28 +#: templates/inc/filter_list.html:46 templates/ipam/ipaddress_assign.html:29 +#: templates/search.html:7 templates/search.html:26 tenancy/filtersets.py:99 +#: users/filtersets.py:23 users/filtersets.py:57 users/filtersets.py:102 +#: users/filtersets.py:150 utilities/forms/forms.py:104 +#: utilities/templates/navigation/menu.html:16 msgid "Search" msgstr "Zoeken" -#: netbox/circuits/filtersets.py:264 netbox/circuits/forms/bulk_edit.py:172 -#: netbox/circuits/forms/bulk_edit.py:246 -#: netbox/circuits/forms/bulk_import.py:115 -#: netbox/circuits/forms/filtersets.py:198 -#: netbox/circuits/forms/filtersets.py:214 -#: netbox/circuits/forms/filtersets.py:260 -#: netbox/circuits/forms/model_forms.py:111 -#: netbox/circuits/forms/model_forms.py:133 -#: netbox/circuits/forms/model_forms.py:199 -#: netbox/circuits/tables/circuits.py:104 -#: netbox/circuits/tables/circuits.py:164 netbox/dcim/forms/connections.py:73 -#: netbox/templates/circuits/circuit.html:15 -#: netbox/templates/circuits/circuitgroupassignment.html:26 -#: netbox/templates/circuits/circuittermination.html:19 -#: netbox/templates/dcim/inc/cable_termination.html:55 -#: netbox/templates/dcim/trace/circuit.html:4 +#: circuits/filtersets.py:264 circuits/forms/bulk_edit.py:172 +#: circuits/forms/bulk_edit.py:246 circuits/forms/bulk_import.py:115 +#: circuits/forms/filtersets.py:198 circuits/forms/filtersets.py:214 +#: circuits/forms/filtersets.py:260 circuits/forms/model_forms.py:111 +#: circuits/forms/model_forms.py:133 circuits/forms/model_forms.py:199 +#: circuits/tables/circuits.py:104 circuits/tables/circuits.py:164 +#: dcim/forms/connections.py:73 templates/circuits/circuit.html:15 +#: templates/circuits/circuitgroupassignment.html:26 +#: templates/circuits/circuittermination.html:19 +#: templates/dcim/inc/cable_termination.html:55 +#: templates/dcim/trace/circuit.html:4 msgid "Circuit" msgstr "Circuit" -#: netbox/circuits/filtersets.py:278 +#: circuits/filtersets.py:278 msgid "ProviderNetwork (ID)" msgstr "Providernetwerk (ID)" -#: netbox/circuits/filtersets.py:335 +#: circuits/filtersets.py:335 msgid "Circuit (ID)" msgstr "Circuit (ID)" -#: netbox/circuits/filtersets.py:341 +#: circuits/filtersets.py:341 msgid "Circuit (CID)" msgstr "Circuit (CID)" -#: netbox/circuits/filtersets.py:345 +#: circuits/filtersets.py:345 msgid "Circuit group (ID)" msgstr "Circuitgroep (ID)" -#: netbox/circuits/filtersets.py:351 +#: circuits/filtersets.py:351 msgid "Circuit group (slug)" msgstr "Circuitgroep (slug)" -#: netbox/circuits/forms/bulk_edit.py:30 -#: netbox/circuits/forms/filtersets.py:56 -#: netbox/circuits/forms/model_forms.py:29 -#: netbox/circuits/tables/providers.py:33 netbox/dcim/forms/bulk_edit.py:128 -#: netbox/dcim/forms/filtersets.py:195 netbox/dcim/forms/model_forms.py:123 -#: netbox/dcim/tables/sites.py:94 netbox/ipam/models/asns.py:126 -#: netbox/ipam/tables/asn.py:27 netbox/ipam/views.py:213 -#: netbox/netbox/navigation/menu.py:172 netbox/netbox/navigation/menu.py:175 -#: netbox/templates/circuits/provider.html:23 +#: circuits/forms/bulk_edit.py:30 circuits/forms/filtersets.py:56 +#: circuits/forms/model_forms.py:29 circuits/tables/providers.py:33 +#: dcim/forms/bulk_edit.py:128 dcim/forms/filtersets.py:195 +#: dcim/forms/model_forms.py:123 dcim/tables/sites.py:94 +#: ipam/models/asns.py:126 ipam/tables/asn.py:27 ipam/views.py:213 +#: netbox/navigation/menu.py:172 netbox/navigation/menu.py:175 +#: templates/circuits/provider.html:23 msgid "ASNs" msgstr "ASN's" -#: netbox/circuits/forms/bulk_edit.py:34 netbox/circuits/forms/bulk_edit.py:56 -#: netbox/circuits/forms/bulk_edit.py:83 -#: netbox/circuits/forms/bulk_edit.py:104 -#: netbox/circuits/forms/bulk_edit.py:164 -#: netbox/circuits/forms/bulk_edit.py:183 -#: netbox/circuits/forms/bulk_edit.py:228 netbox/core/forms/bulk_edit.py:28 -#: netbox/dcim/forms/bulk_create.py:35 netbox/dcim/forms/bulk_edit.py:73 -#: netbox/dcim/forms/bulk_edit.py:92 netbox/dcim/forms/bulk_edit.py:151 -#: netbox/dcim/forms/bulk_edit.py:192 netbox/dcim/forms/bulk_edit.py:210 -#: netbox/dcim/forms/bulk_edit.py:288 netbox/dcim/forms/bulk_edit.py:432 -#: netbox/dcim/forms/bulk_edit.py:466 netbox/dcim/forms/bulk_edit.py:481 -#: netbox/dcim/forms/bulk_edit.py:540 netbox/dcim/forms/bulk_edit.py:584 -#: netbox/dcim/forms/bulk_edit.py:618 netbox/dcim/forms/bulk_edit.py:642 -#: netbox/dcim/forms/bulk_edit.py:715 netbox/dcim/forms/bulk_edit.py:767 -#: netbox/dcim/forms/bulk_edit.py:819 netbox/dcim/forms/bulk_edit.py:842 -#: netbox/dcim/forms/bulk_edit.py:890 netbox/dcim/forms/bulk_edit.py:960 -#: netbox/dcim/forms/bulk_edit.py:1013 netbox/dcim/forms/bulk_edit.py:1048 -#: netbox/dcim/forms/bulk_edit.py:1088 netbox/dcim/forms/bulk_edit.py:1132 -#: netbox/dcim/forms/bulk_edit.py:1177 netbox/dcim/forms/bulk_edit.py:1204 -#: netbox/dcim/forms/bulk_edit.py:1222 netbox/dcim/forms/bulk_edit.py:1240 -#: netbox/dcim/forms/bulk_edit.py:1258 netbox/dcim/forms/bulk_edit.py:1682 -#: netbox/extras/forms/bulk_edit.py:39 netbox/extras/forms/bulk_edit.py:149 -#: netbox/extras/forms/bulk_edit.py:178 netbox/extras/forms/bulk_edit.py:208 -#: netbox/extras/forms/bulk_edit.py:256 netbox/extras/forms/bulk_edit.py:274 -#: netbox/extras/forms/bulk_edit.py:298 netbox/extras/forms/bulk_edit.py:312 -#: netbox/extras/forms/bulk_edit.py:339 netbox/extras/tables/tables.py:79 -#: netbox/ipam/forms/bulk_edit.py:52 netbox/ipam/forms/bulk_edit.py:72 -#: netbox/ipam/forms/bulk_edit.py:92 netbox/ipam/forms/bulk_edit.py:116 -#: netbox/ipam/forms/bulk_edit.py:145 netbox/ipam/forms/bulk_edit.py:174 -#: netbox/ipam/forms/bulk_edit.py:193 netbox/ipam/forms/bulk_edit.py:275 -#: netbox/ipam/forms/bulk_edit.py:320 netbox/ipam/forms/bulk_edit.py:368 -#: netbox/ipam/forms/bulk_edit.py:411 netbox/ipam/forms/bulk_edit.py:427 -#: netbox/ipam/forms/bulk_edit.py:561 netbox/ipam/forms/bulk_edit.py:592 -#: netbox/templates/account/token.html:35 -#: netbox/templates/circuits/circuit.html:59 -#: netbox/templates/circuits/circuitgroup.html:32 -#: netbox/templates/circuits/circuittype.html:26 -#: netbox/templates/circuits/inc/circuit_termination_fields.html:88 -#: netbox/templates/circuits/provider.html:33 -#: netbox/templates/circuits/providernetwork.html:32 -#: netbox/templates/core/datasource.html:54 -#: netbox/templates/core/plugin.html:79 netbox/templates/dcim/cable.html:36 -#: netbox/templates/dcim/consoleport.html:44 -#: netbox/templates/dcim/consoleserverport.html:44 -#: netbox/templates/dcim/device.html:94 -#: netbox/templates/dcim/devicebay.html:32 -#: netbox/templates/dcim/devicerole.html:30 -#: netbox/templates/dcim/devicetype.html:33 -#: netbox/templates/dcim/frontport.html:58 -#: netbox/templates/dcim/interface.html:69 -#: netbox/templates/dcim/inventoryitem.html:60 -#: netbox/templates/dcim/inventoryitemrole.html:22 -#: netbox/templates/dcim/location.html:33 -#: netbox/templates/dcim/manufacturer.html:40 -#: netbox/templates/dcim/module.html:73 -#: netbox/templates/dcim/modulebay.html:42 -#: netbox/templates/dcim/moduletype.html:26 -#: netbox/templates/dcim/platform.html:33 -#: netbox/templates/dcim/powerfeed.html:40 -#: netbox/templates/dcim/poweroutlet.html:40 -#: netbox/templates/dcim/powerpanel.html:30 -#: netbox/templates/dcim/powerport.html:40 netbox/templates/dcim/rack.html:53 -#: netbox/templates/dcim/rackreservation.html:62 -#: netbox/templates/dcim/rackrole.html:26 -#: netbox/templates/dcim/racktype.html:24 -#: netbox/templates/dcim/rearport.html:54 netbox/templates/dcim/region.html:33 -#: netbox/templates/dcim/site.html:60 netbox/templates/dcim/sitegroup.html:33 -#: netbox/templates/dcim/virtualchassis.html:31 -#: netbox/templates/extras/configcontext.html:21 -#: netbox/templates/extras/configtemplate.html:17 -#: netbox/templates/extras/customfield.html:34 -#: netbox/templates/extras/dashboard/widget_add.html:14 -#: netbox/templates/extras/eventrule.html:21 -#: netbox/templates/extras/exporttemplate.html:19 -#: netbox/templates/extras/notificationgroup.html:20 -#: netbox/templates/extras/savedfilter.html:17 -#: netbox/templates/extras/script_list.html:45 -#: netbox/templates/extras/tag.html:20 netbox/templates/extras/webhook.html:17 -#: netbox/templates/generic/bulk_import.html:120 -#: netbox/templates/ipam/aggregate.html:43 netbox/templates/ipam/asn.html:42 -#: netbox/templates/ipam/asnrange.html:38 -#: netbox/templates/ipam/fhrpgroup.html:34 -#: netbox/templates/ipam/ipaddress.html:55 -#: netbox/templates/ipam/iprange.html:67 netbox/templates/ipam/prefix.html:81 -#: netbox/templates/ipam/rir.html:26 netbox/templates/ipam/role.html:26 -#: netbox/templates/ipam/routetarget.html:21 -#: netbox/templates/ipam/service.html:50 -#: netbox/templates/ipam/servicetemplate.html:27 -#: netbox/templates/ipam/vlan.html:62 netbox/templates/ipam/vlangroup.html:34 -#: netbox/templates/ipam/vrf.html:33 netbox/templates/tenancy/contact.html:67 -#: netbox/templates/tenancy/contactgroup.html:25 -#: netbox/templates/tenancy/contactrole.html:22 -#: netbox/templates/tenancy/tenant.html:24 -#: netbox/templates/tenancy/tenantgroup.html:33 -#: netbox/templates/users/group.html:21 -#: netbox/templates/users/objectpermission.html:21 -#: netbox/templates/users/token.html:27 -#: netbox/templates/virtualization/cluster.html:25 -#: netbox/templates/virtualization/clustergroup.html:26 -#: netbox/templates/virtualization/clustertype.html:26 -#: netbox/templates/virtualization/virtualdisk.html:39 -#: netbox/templates/virtualization/virtualmachine.html:31 -#: netbox/templates/virtualization/vminterface.html:51 -#: netbox/templates/vpn/ikepolicy.html:17 -#: netbox/templates/vpn/ikeproposal.html:17 -#: netbox/templates/vpn/ipsecpolicy.html:17 -#: netbox/templates/vpn/ipsecprofile.html:17 -#: netbox/templates/vpn/ipsecprofile.html:40 -#: netbox/templates/vpn/ipsecprofile.html:73 -#: netbox/templates/vpn/ipsecproposal.html:17 -#: netbox/templates/vpn/l2vpn.html:26 netbox/templates/vpn/tunnel.html:33 -#: netbox/templates/vpn/tunnelgroup.html:30 -#: netbox/templates/wireless/wirelesslan.html:26 -#: netbox/templates/wireless/wirelesslangroup.html:33 -#: netbox/templates/wireless/wirelesslink.html:34 -#: netbox/tenancy/forms/bulk_edit.py:32 netbox/tenancy/forms/bulk_edit.py:80 -#: netbox/tenancy/forms/bulk_edit.py:122 netbox/users/forms/bulk_edit.py:64 -#: netbox/users/forms/bulk_edit.py:82 netbox/users/forms/bulk_edit.py:112 -#: netbox/virtualization/forms/bulk_edit.py:32 -#: netbox/virtualization/forms/bulk_edit.py:46 -#: netbox/virtualization/forms/bulk_edit.py:100 -#: netbox/virtualization/forms/bulk_edit.py:177 -#: netbox/virtualization/forms/bulk_edit.py:228 -#: netbox/virtualization/forms/bulk_edit.py:337 -#: netbox/vpn/forms/bulk_edit.py:28 netbox/vpn/forms/bulk_edit.py:64 -#: netbox/vpn/forms/bulk_edit.py:121 netbox/vpn/forms/bulk_edit.py:155 -#: netbox/vpn/forms/bulk_edit.py:190 netbox/vpn/forms/bulk_edit.py:215 -#: netbox/vpn/forms/bulk_edit.py:247 netbox/vpn/forms/bulk_edit.py:274 -#: netbox/wireless/forms/bulk_edit.py:29 netbox/wireless/forms/bulk_edit.py:82 -#: netbox/wireless/forms/bulk_edit.py:140 +#: circuits/forms/bulk_edit.py:34 circuits/forms/bulk_edit.py:56 +#: circuits/forms/bulk_edit.py:83 circuits/forms/bulk_edit.py:104 +#: circuits/forms/bulk_edit.py:164 circuits/forms/bulk_edit.py:183 +#: circuits/forms/bulk_edit.py:228 core/forms/bulk_edit.py:28 +#: dcim/forms/bulk_create.py:35 dcim/forms/bulk_edit.py:73 +#: dcim/forms/bulk_edit.py:92 dcim/forms/bulk_edit.py:151 +#: dcim/forms/bulk_edit.py:192 dcim/forms/bulk_edit.py:210 +#: dcim/forms/bulk_edit.py:288 dcim/forms/bulk_edit.py:432 +#: dcim/forms/bulk_edit.py:466 dcim/forms/bulk_edit.py:481 +#: dcim/forms/bulk_edit.py:540 dcim/forms/bulk_edit.py:584 +#: dcim/forms/bulk_edit.py:618 dcim/forms/bulk_edit.py:642 +#: dcim/forms/bulk_edit.py:715 dcim/forms/bulk_edit.py:767 +#: dcim/forms/bulk_edit.py:819 dcim/forms/bulk_edit.py:842 +#: dcim/forms/bulk_edit.py:890 dcim/forms/bulk_edit.py:960 +#: dcim/forms/bulk_edit.py:1013 dcim/forms/bulk_edit.py:1048 +#: dcim/forms/bulk_edit.py:1088 dcim/forms/bulk_edit.py:1132 +#: dcim/forms/bulk_edit.py:1177 dcim/forms/bulk_edit.py:1204 +#: dcim/forms/bulk_edit.py:1222 dcim/forms/bulk_edit.py:1240 +#: dcim/forms/bulk_edit.py:1258 dcim/forms/bulk_edit.py:1682 +#: extras/forms/bulk_edit.py:39 extras/forms/bulk_edit.py:149 +#: extras/forms/bulk_edit.py:178 extras/forms/bulk_edit.py:208 +#: extras/forms/bulk_edit.py:256 extras/forms/bulk_edit.py:274 +#: extras/forms/bulk_edit.py:298 extras/forms/bulk_edit.py:312 +#: extras/forms/bulk_edit.py:339 extras/tables/tables.py:79 +#: ipam/forms/bulk_edit.py:53 ipam/forms/bulk_edit.py:73 +#: ipam/forms/bulk_edit.py:93 ipam/forms/bulk_edit.py:117 +#: ipam/forms/bulk_edit.py:146 ipam/forms/bulk_edit.py:175 +#: ipam/forms/bulk_edit.py:194 ipam/forms/bulk_edit.py:276 +#: ipam/forms/bulk_edit.py:321 ipam/forms/bulk_edit.py:369 +#: ipam/forms/bulk_edit.py:412 ipam/forms/bulk_edit.py:428 +#: ipam/forms/bulk_edit.py:516 ipam/forms/bulk_edit.py:547 +#: templates/account/token.html:35 templates/circuits/circuit.html:59 +#: templates/circuits/circuitgroup.html:32 +#: templates/circuits/circuittype.html:26 +#: templates/circuits/inc/circuit_termination_fields.html:88 +#: templates/circuits/provider.html:33 +#: templates/circuits/providernetwork.html:32 +#: templates/core/datasource.html:54 templates/core/plugin.html:80 +#: templates/dcim/cable.html:36 templates/dcim/consoleport.html:44 +#: templates/dcim/consoleserverport.html:44 templates/dcim/device.html:94 +#: templates/dcim/devicebay.html:32 templates/dcim/devicerole.html:30 +#: templates/dcim/devicetype.html:33 templates/dcim/frontport.html:58 +#: templates/dcim/interface.html:69 templates/dcim/inventoryitem.html:60 +#: templates/dcim/inventoryitemrole.html:22 templates/dcim/location.html:33 +#: templates/dcim/manufacturer.html:40 templates/dcim/module.html:73 +#: templates/dcim/modulebay.html:42 templates/dcim/moduletype.html:37 +#: templates/dcim/platform.html:33 templates/dcim/powerfeed.html:40 +#: templates/dcim/poweroutlet.html:40 templates/dcim/powerpanel.html:30 +#: templates/dcim/powerport.html:40 templates/dcim/rack.html:53 +#: templates/dcim/rackreservation.html:62 templates/dcim/rackrole.html:26 +#: templates/dcim/racktype.html:24 templates/dcim/rearport.html:54 +#: templates/dcim/region.html:33 templates/dcim/site.html:60 +#: templates/dcim/sitegroup.html:33 templates/dcim/virtualchassis.html:31 +#: templates/extras/configcontext.html:21 +#: templates/extras/configtemplate.html:17 +#: templates/extras/customfield.html:34 +#: templates/extras/dashboard/widget_add.html:14 +#: templates/extras/eventrule.html:21 templates/extras/exporttemplate.html:19 +#: templates/extras/notificationgroup.html:20 +#: templates/extras/savedfilter.html:17 templates/extras/script_list.html:45 +#: templates/extras/tag.html:20 templates/extras/webhook.html:17 +#: templates/generic/bulk_import.html:120 templates/ipam/aggregate.html:43 +#: templates/ipam/asn.html:42 templates/ipam/asnrange.html:38 +#: templates/ipam/fhrpgroup.html:34 templates/ipam/ipaddress.html:55 +#: templates/ipam/iprange.html:67 templates/ipam/prefix.html:81 +#: templates/ipam/rir.html:26 templates/ipam/role.html:26 +#: templates/ipam/routetarget.html:21 templates/ipam/service.html:50 +#: templates/ipam/servicetemplate.html:27 templates/ipam/vlan.html:62 +#: templates/ipam/vlangroup.html:34 templates/ipam/vrf.html:33 +#: templates/tenancy/contact.html:67 templates/tenancy/contactgroup.html:25 +#: templates/tenancy/contactrole.html:22 templates/tenancy/tenant.html:24 +#: templates/tenancy/tenantgroup.html:33 templates/users/group.html:21 +#: templates/users/objectpermission.html:21 templates/users/token.html:27 +#: templates/virtualization/cluster.html:25 +#: templates/virtualization/clustergroup.html:26 +#: templates/virtualization/clustertype.html:26 +#: templates/virtualization/virtualdisk.html:39 +#: templates/virtualization/virtualmachine.html:31 +#: templates/virtualization/vminterface.html:51 +#: templates/vpn/ikepolicy.html:17 templates/vpn/ikeproposal.html:17 +#: templates/vpn/ipsecpolicy.html:17 templates/vpn/ipsecprofile.html:17 +#: templates/vpn/ipsecprofile.html:40 templates/vpn/ipsecprofile.html:73 +#: templates/vpn/ipsecproposal.html:17 templates/vpn/l2vpn.html:26 +#: templates/vpn/tunnel.html:33 templates/vpn/tunnelgroup.html:30 +#: templates/wireless/wirelesslan.html:26 +#: templates/wireless/wirelesslangroup.html:33 +#: templates/wireless/wirelesslink.html:34 tenancy/forms/bulk_edit.py:32 +#: tenancy/forms/bulk_edit.py:80 tenancy/forms/bulk_edit.py:122 +#: users/forms/bulk_edit.py:64 users/forms/bulk_edit.py:82 +#: users/forms/bulk_edit.py:112 virtualization/forms/bulk_edit.py:32 +#: virtualization/forms/bulk_edit.py:46 virtualization/forms/bulk_edit.py:100 +#: virtualization/forms/bulk_edit.py:177 virtualization/forms/bulk_edit.py:228 +#: virtualization/forms/bulk_edit.py:337 vpn/forms/bulk_edit.py:28 +#: vpn/forms/bulk_edit.py:64 vpn/forms/bulk_edit.py:121 +#: vpn/forms/bulk_edit.py:155 vpn/forms/bulk_edit.py:190 +#: vpn/forms/bulk_edit.py:215 vpn/forms/bulk_edit.py:247 +#: vpn/forms/bulk_edit.py:274 wireless/forms/bulk_edit.py:29 +#: wireless/forms/bulk_edit.py:82 wireless/forms/bulk_edit.py:140 msgid "Description" msgstr "Omschrijving" -#: netbox/circuits/forms/bulk_edit.py:51 netbox/circuits/forms/bulk_edit.py:73 -#: netbox/circuits/forms/bulk_edit.py:123 -#: netbox/circuits/forms/bulk_import.py:36 -#: netbox/circuits/forms/bulk_import.py:51 -#: netbox/circuits/forms/bulk_import.py:74 -#: netbox/circuits/forms/filtersets.py:70 -#: netbox/circuits/forms/filtersets.py:88 -#: netbox/circuits/forms/filtersets.py:116 -#: netbox/circuits/forms/filtersets.py:131 -#: netbox/circuits/forms/filtersets.py:199 -#: netbox/circuits/forms/filtersets.py:232 -#: netbox/circuits/forms/filtersets.py:255 -#: netbox/circuits/forms/model_forms.py:47 -#: netbox/circuits/forms/model_forms.py:61 -#: netbox/circuits/forms/model_forms.py:93 -#: netbox/circuits/tables/circuits.py:58 -#: netbox/circuits/tables/circuits.py:108 -#: netbox/circuits/tables/circuits.py:160 -#: netbox/circuits/tables/providers.py:72 -#: netbox/circuits/tables/providers.py:103 -#: netbox/templates/circuits/circuit.html:18 -#: netbox/templates/circuits/circuittermination.html:25 -#: netbox/templates/circuits/provider.html:20 -#: netbox/templates/circuits/provideraccount.html:20 -#: netbox/templates/circuits/providernetwork.html:20 -#: netbox/templates/dcim/inc/cable_termination.html:51 +#: circuits/forms/bulk_edit.py:51 circuits/forms/bulk_edit.py:73 +#: circuits/forms/bulk_edit.py:123 circuits/forms/bulk_import.py:36 +#: circuits/forms/bulk_import.py:51 circuits/forms/bulk_import.py:74 +#: circuits/forms/filtersets.py:70 circuits/forms/filtersets.py:88 +#: circuits/forms/filtersets.py:116 circuits/forms/filtersets.py:131 +#: circuits/forms/filtersets.py:199 circuits/forms/filtersets.py:232 +#: circuits/forms/filtersets.py:255 circuits/forms/model_forms.py:47 +#: circuits/forms/model_forms.py:61 circuits/forms/model_forms.py:93 +#: circuits/tables/circuits.py:58 circuits/tables/circuits.py:108 +#: circuits/tables/circuits.py:160 circuits/tables/providers.py:72 +#: circuits/tables/providers.py:103 templates/circuits/circuit.html:18 +#: templates/circuits/circuittermination.html:25 +#: templates/circuits/provider.html:20 +#: templates/circuits/provideraccount.html:20 +#: templates/circuits/providernetwork.html:20 +#: templates/dcim/inc/cable_termination.html:51 msgid "Provider" msgstr "Provider" -#: netbox/circuits/forms/bulk_edit.py:80 -#: netbox/circuits/forms/filtersets.py:91 -#: netbox/templates/circuits/providernetwork.html:28 +#: circuits/forms/bulk_edit.py:80 circuits/forms/filtersets.py:91 +#: templates/circuits/providernetwork.html:28 msgid "Service ID" msgstr "Service-ID" -#: netbox/circuits/forms/bulk_edit.py:100 -#: netbox/circuits/forms/filtersets.py:107 netbox/dcim/forms/bulk_edit.py:206 -#: netbox/dcim/forms/bulk_edit.py:604 netbox/dcim/forms/bulk_edit.py:804 -#: netbox/dcim/forms/bulk_edit.py:1173 netbox/dcim/forms/bulk_edit.py:1200 -#: netbox/dcim/forms/bulk_edit.py:1678 netbox/dcim/forms/filtersets.py:1064 -#: netbox/dcim/forms/filtersets.py:1455 netbox/dcim/forms/filtersets.py:1479 -#: netbox/dcim/tables/devices.py:704 netbox/dcim/tables/devices.py:761 -#: netbox/dcim/tables/devices.py:1003 netbox/dcim/tables/devicetypes.py:249 -#: netbox/dcim/tables/devicetypes.py:264 netbox/dcim/tables/racks.py:33 -#: netbox/extras/forms/bulk_edit.py:270 netbox/extras/tables/tables.py:443 -#: netbox/templates/circuits/circuittype.html:30 -#: netbox/templates/dcim/cable.html:40 -#: netbox/templates/dcim/devicerole.html:34 -#: netbox/templates/dcim/frontport.html:40 -#: netbox/templates/dcim/inventoryitemrole.html:26 -#: netbox/templates/dcim/rackrole.html:30 -#: netbox/templates/dcim/rearport.html:40 netbox/templates/extras/tag.html:26 +#: circuits/forms/bulk_edit.py:100 circuits/forms/filtersets.py:107 +#: dcim/forms/bulk_edit.py:206 dcim/forms/bulk_edit.py:604 +#: dcim/forms/bulk_edit.py:804 dcim/forms/bulk_edit.py:1173 +#: dcim/forms/bulk_edit.py:1200 dcim/forms/bulk_edit.py:1678 +#: dcim/forms/filtersets.py:1064 dcim/forms/filtersets.py:1455 +#: dcim/forms/filtersets.py:1479 dcim/tables/devices.py:704 +#: dcim/tables/devices.py:761 dcim/tables/devices.py:1003 +#: dcim/tables/devicetypes.py:249 dcim/tables/devicetypes.py:264 +#: dcim/tables/racks.py:33 extras/forms/bulk_edit.py:270 +#: extras/tables/tables.py:443 templates/circuits/circuittype.html:30 +#: templates/dcim/cable.html:40 templates/dcim/devicerole.html:34 +#: templates/dcim/frontport.html:40 templates/dcim/inventoryitemrole.html:26 +#: templates/dcim/rackrole.html:30 templates/dcim/rearport.html:40 +#: templates/extras/tag.html:26 msgid "Color" msgstr "Kleur" -#: netbox/circuits/forms/bulk_edit.py:118 -#: netbox/circuits/forms/bulk_import.py:87 -#: netbox/circuits/forms/filtersets.py:126 netbox/core/forms/bulk_edit.py:18 -#: netbox/core/forms/filtersets.py:33 netbox/core/tables/change_logging.py:32 -#: netbox/core/tables/data.py:20 netbox/core/tables/jobs.py:18 -#: netbox/dcim/forms/bulk_edit.py:782 netbox/dcim/forms/bulk_edit.py:921 -#: netbox/dcim/forms/bulk_edit.py:989 netbox/dcim/forms/bulk_edit.py:1008 -#: netbox/dcim/forms/bulk_edit.py:1031 netbox/dcim/forms/bulk_edit.py:1073 -#: netbox/dcim/forms/bulk_edit.py:1117 netbox/dcim/forms/bulk_edit.py:1168 -#: netbox/dcim/forms/bulk_edit.py:1195 netbox/dcim/forms/bulk_import.py:188 -#: netbox/dcim/forms/bulk_import.py:260 netbox/dcim/forms/bulk_import.py:708 -#: netbox/dcim/forms/bulk_import.py:734 netbox/dcim/forms/bulk_import.py:760 -#: netbox/dcim/forms/bulk_import.py:780 netbox/dcim/forms/bulk_import.py:863 -#: netbox/dcim/forms/bulk_import.py:957 netbox/dcim/forms/bulk_import.py:999 -#: netbox/dcim/forms/bulk_import.py:1213 netbox/dcim/forms/bulk_import.py:1376 -#: netbox/dcim/forms/filtersets.py:955 netbox/dcim/forms/filtersets.py:1054 -#: netbox/dcim/forms/filtersets.py:1175 netbox/dcim/forms/filtersets.py:1247 -#: netbox/dcim/forms/filtersets.py:1272 netbox/dcim/forms/filtersets.py:1296 -#: netbox/dcim/forms/filtersets.py:1316 netbox/dcim/forms/filtersets.py:1353 -#: netbox/dcim/forms/filtersets.py:1450 netbox/dcim/forms/filtersets.py:1474 -#: netbox/dcim/forms/model_forms.py:703 netbox/dcim/forms/model_forms.py:709 -#: netbox/dcim/forms/object_import.py:84 -#: netbox/dcim/forms/object_import.py:113 -#: netbox/dcim/forms/object_import.py:145 netbox/dcim/tables/devices.py:178 -#: netbox/dcim/tables/devices.py:814 netbox/dcim/tables/power.py:77 -#: netbox/dcim/tables/racks.py:138 netbox/extras/forms/bulk_import.py:42 -#: netbox/extras/tables/tables.py:405 netbox/extras/tables/tables.py:465 -#: netbox/netbox/tables/tables.py:240 -#: netbox/templates/circuits/circuit.html:30 -#: netbox/templates/core/datasource.html:38 -#: netbox/templates/dcim/cable.html:15 -#: netbox/templates/dcim/consoleport.html:36 -#: netbox/templates/dcim/consoleserverport.html:36 -#: netbox/templates/dcim/frontport.html:36 -#: netbox/templates/dcim/interface.html:46 -#: netbox/templates/dcim/interface.html:169 -#: netbox/templates/dcim/interface.html:311 -#: netbox/templates/dcim/powerfeed.html:32 -#: netbox/templates/dcim/poweroutlet.html:36 -#: netbox/templates/dcim/powerport.html:36 -#: netbox/templates/dcim/rearport.html:36 -#: netbox/templates/extras/eventrule.html:74 -#: netbox/templates/virtualization/cluster.html:17 -#: netbox/templates/vpn/l2vpn.html:22 -#: netbox/templates/wireless/inc/authentication_attrs.html:8 -#: netbox/templates/wireless/inc/wirelesslink_interface.html:14 -#: netbox/virtualization/forms/bulk_edit.py:60 -#: netbox/virtualization/forms/bulk_import.py:41 -#: netbox/virtualization/forms/filtersets.py:54 -#: netbox/virtualization/forms/model_forms.py:62 -#: netbox/virtualization/tables/clusters.py:66 -#: netbox/vpn/forms/bulk_edit.py:264 netbox/vpn/forms/bulk_import.py:264 -#: netbox/vpn/forms/filtersets.py:217 netbox/vpn/forms/model_forms.py:84 -#: netbox/vpn/forms/model_forms.py:119 netbox/vpn/forms/model_forms.py:231 +#: circuits/forms/bulk_edit.py:118 circuits/forms/bulk_import.py:87 +#: circuits/forms/filtersets.py:126 core/forms/bulk_edit.py:18 +#: core/forms/filtersets.py:33 core/tables/change_logging.py:32 +#: core/tables/data.py:20 core/tables/jobs.py:18 dcim/forms/bulk_edit.py:782 +#: dcim/forms/bulk_edit.py:921 dcim/forms/bulk_edit.py:989 +#: dcim/forms/bulk_edit.py:1008 dcim/forms/bulk_edit.py:1031 +#: dcim/forms/bulk_edit.py:1073 dcim/forms/bulk_edit.py:1117 +#: dcim/forms/bulk_edit.py:1168 dcim/forms/bulk_edit.py:1195 +#: dcim/forms/bulk_import.py:188 dcim/forms/bulk_import.py:260 +#: dcim/forms/bulk_import.py:708 dcim/forms/bulk_import.py:734 +#: dcim/forms/bulk_import.py:760 dcim/forms/bulk_import.py:780 +#: dcim/forms/bulk_import.py:863 dcim/forms/bulk_import.py:957 +#: dcim/forms/bulk_import.py:999 dcim/forms/bulk_import.py:1213 +#: dcim/forms/bulk_import.py:1376 dcim/forms/filtersets.py:955 +#: dcim/forms/filtersets.py:1054 dcim/forms/filtersets.py:1175 +#: dcim/forms/filtersets.py:1247 dcim/forms/filtersets.py:1272 +#: dcim/forms/filtersets.py:1296 dcim/forms/filtersets.py:1316 +#: dcim/forms/filtersets.py:1353 dcim/forms/filtersets.py:1450 +#: dcim/forms/filtersets.py:1474 dcim/forms/model_forms.py:703 +#: dcim/forms/model_forms.py:709 dcim/forms/object_import.py:84 +#: dcim/forms/object_import.py:113 dcim/forms/object_import.py:145 +#: dcim/tables/devices.py:178 dcim/tables/devices.py:814 +#: dcim/tables/power.py:77 dcim/tables/racks.py:138 +#: extras/forms/bulk_import.py:42 extras/tables/tables.py:405 +#: extras/tables/tables.py:465 netbox/tables/tables.py:240 +#: templates/circuits/circuit.html:30 templates/core/datasource.html:38 +#: templates/dcim/cable.html:15 templates/dcim/consoleport.html:36 +#: templates/dcim/consoleserverport.html:36 templates/dcim/frontport.html:36 +#: templates/dcim/interface.html:46 templates/dcim/interface.html:169 +#: templates/dcim/interface.html:311 templates/dcim/powerfeed.html:32 +#: templates/dcim/poweroutlet.html:36 templates/dcim/powerport.html:36 +#: templates/dcim/rearport.html:36 templates/extras/eventrule.html:74 +#: templates/virtualization/cluster.html:17 templates/vpn/l2vpn.html:22 +#: templates/wireless/inc/authentication_attrs.html:8 +#: templates/wireless/inc/wirelesslink_interface.html:14 +#: virtualization/forms/bulk_edit.py:60 virtualization/forms/bulk_import.py:41 +#: virtualization/forms/filtersets.py:54 +#: virtualization/forms/model_forms.py:62 virtualization/tables/clusters.py:66 +#: vpn/forms/bulk_edit.py:264 vpn/forms/bulk_import.py:264 +#: vpn/forms/filtersets.py:217 vpn/forms/model_forms.py:84 +#: vpn/forms/model_forms.py:119 vpn/forms/model_forms.py:231 msgid "Type" msgstr "Type" -#: netbox/circuits/forms/bulk_edit.py:128 -#: netbox/circuits/forms/bulk_import.py:80 -#: netbox/circuits/forms/filtersets.py:139 -#: netbox/circuits/forms/model_forms.py:98 +#: circuits/forms/bulk_edit.py:128 circuits/forms/bulk_import.py:80 +#: circuits/forms/filtersets.py:139 circuits/forms/model_forms.py:98 msgid "Provider account" msgstr "Provideraccount" -#: netbox/circuits/forms/bulk_edit.py:136 -#: netbox/circuits/forms/bulk_import.py:93 -#: netbox/circuits/forms/filtersets.py:150 netbox/core/forms/filtersets.py:38 -#: netbox/core/forms/filtersets.py:79 netbox/core/tables/data.py:23 -#: netbox/core/tables/jobs.py:26 netbox/core/tables/tasks.py:88 -#: netbox/dcim/forms/bulk_edit.py:106 netbox/dcim/forms/bulk_edit.py:181 -#: netbox/dcim/forms/bulk_edit.py:351 netbox/dcim/forms/bulk_edit.py:700 -#: netbox/dcim/forms/bulk_edit.py:756 netbox/dcim/forms/bulk_edit.py:788 -#: netbox/dcim/forms/bulk_edit.py:915 netbox/dcim/forms/bulk_edit.py:1701 -#: netbox/dcim/forms/bulk_import.py:88 netbox/dcim/forms/bulk_import.py:147 -#: netbox/dcim/forms/bulk_import.py:248 netbox/dcim/forms/bulk_import.py:505 -#: netbox/dcim/forms/bulk_import.py:659 netbox/dcim/forms/bulk_import.py:1207 -#: netbox/dcim/forms/bulk_import.py:1371 netbox/dcim/forms/bulk_import.py:1435 -#: netbox/dcim/forms/filtersets.py:178 netbox/dcim/forms/filtersets.py:237 -#: netbox/dcim/forms/filtersets.py:359 netbox/dcim/forms/filtersets.py:799 -#: netbox/dcim/forms/filtersets.py:924 netbox/dcim/forms/filtersets.py:958 -#: netbox/dcim/forms/filtersets.py:1059 netbox/dcim/forms/filtersets.py:1170 -#: netbox/dcim/tables/devices.py:140 netbox/dcim/tables/devices.py:817 -#: netbox/dcim/tables/devices.py:1063 netbox/dcim/tables/modules.py:69 -#: netbox/dcim/tables/power.py:74 netbox/dcim/tables/racks.py:126 -#: netbox/dcim/tables/sites.py:82 netbox/dcim/tables/sites.py:138 -#: netbox/ipam/forms/bulk_edit.py:255 netbox/ipam/forms/bulk_edit.py:305 -#: netbox/ipam/forms/bulk_edit.py:353 netbox/ipam/forms/bulk_edit.py:551 -#: netbox/ipam/forms/bulk_import.py:192 netbox/ipam/forms/bulk_import.py:257 -#: netbox/ipam/forms/bulk_import.py:293 netbox/ipam/forms/bulk_import.py:450 -#: netbox/ipam/forms/filtersets.py:210 netbox/ipam/forms/filtersets.py:281 -#: netbox/ipam/forms/filtersets.py:355 netbox/ipam/forms/filtersets.py:501 -#: netbox/ipam/forms/model_forms.py:468 netbox/ipam/tables/ip.py:237 -#: netbox/ipam/tables/ip.py:312 netbox/ipam/tables/ip.py:363 -#: netbox/ipam/tables/ip.py:426 netbox/ipam/tables/ip.py:453 -#: netbox/ipam/tables/vlans.py:126 netbox/ipam/tables/vlans.py:232 -#: netbox/templates/circuits/circuit.html:34 -#: netbox/templates/core/datasource.html:46 netbox/templates/core/job.html:48 -#: netbox/templates/core/rq_task.html:81 netbox/templates/core/system.html:18 -#: netbox/templates/dcim/cable.html:19 netbox/templates/dcim/device.html:178 -#: netbox/templates/dcim/location.html:45 netbox/templates/dcim/module.html:69 -#: netbox/templates/dcim/powerfeed.html:36 netbox/templates/dcim/rack.html:41 -#: netbox/templates/dcim/site.html:43 -#: netbox/templates/extras/script_list.html:47 -#: netbox/templates/ipam/ipaddress.html:37 -#: netbox/templates/ipam/iprange.html:54 netbox/templates/ipam/prefix.html:73 -#: netbox/templates/ipam/vlan.html:48 -#: netbox/templates/virtualization/cluster.html:21 -#: netbox/templates/virtualization/virtualmachine.html:19 -#: netbox/templates/vpn/tunnel.html:25 -#: netbox/templates/wireless/wirelesslan.html:22 -#: netbox/templates/wireless/wirelesslink.html:17 -#: netbox/users/forms/filtersets.py:32 netbox/users/forms/model_forms.py:194 -#: netbox/virtualization/forms/bulk_edit.py:70 -#: netbox/virtualization/forms/bulk_edit.py:118 -#: netbox/virtualization/forms/bulk_import.py:54 -#: netbox/virtualization/forms/bulk_import.py:80 -#: netbox/virtualization/forms/filtersets.py:62 -#: netbox/virtualization/forms/filtersets.py:160 -#: netbox/virtualization/tables/clusters.py:74 -#: netbox/virtualization/tables/virtualmachines.py:60 -#: netbox/vpn/forms/bulk_edit.py:39 netbox/vpn/forms/bulk_import.py:37 -#: netbox/vpn/forms/filtersets.py:47 netbox/vpn/tables/tunnels.py:48 -#: netbox/wireless/forms/bulk_edit.py:43 -#: netbox/wireless/forms/bulk_edit.py:105 -#: netbox/wireless/forms/bulk_import.py:43 -#: netbox/wireless/forms/bulk_import.py:84 -#: netbox/wireless/forms/filtersets.py:49 -#: netbox/wireless/forms/filtersets.py:83 -#: netbox/wireless/tables/wirelesslan.py:52 -#: netbox/wireless/tables/wirelesslink.py:20 +#: circuits/forms/bulk_edit.py:136 circuits/forms/bulk_import.py:93 +#: circuits/forms/filtersets.py:150 core/forms/filtersets.py:38 +#: core/forms/filtersets.py:79 core/tables/data.py:23 core/tables/jobs.py:26 +#: core/tables/tasks.py:88 dcim/forms/bulk_edit.py:106 +#: dcim/forms/bulk_edit.py:181 dcim/forms/bulk_edit.py:351 +#: dcim/forms/bulk_edit.py:700 dcim/forms/bulk_edit.py:756 +#: dcim/forms/bulk_edit.py:788 dcim/forms/bulk_edit.py:915 +#: dcim/forms/bulk_edit.py:1701 dcim/forms/bulk_import.py:88 +#: dcim/forms/bulk_import.py:147 dcim/forms/bulk_import.py:248 +#: dcim/forms/bulk_import.py:505 dcim/forms/bulk_import.py:659 +#: dcim/forms/bulk_import.py:1207 dcim/forms/bulk_import.py:1371 +#: dcim/forms/bulk_import.py:1435 dcim/forms/filtersets.py:178 +#: dcim/forms/filtersets.py:237 dcim/forms/filtersets.py:359 +#: dcim/forms/filtersets.py:799 dcim/forms/filtersets.py:924 +#: dcim/forms/filtersets.py:958 dcim/forms/filtersets.py:1059 +#: dcim/forms/filtersets.py:1170 dcim/tables/devices.py:140 +#: dcim/tables/devices.py:817 dcim/tables/devices.py:1063 +#: dcim/tables/modules.py:69 dcim/tables/power.py:74 dcim/tables/racks.py:126 +#: dcim/tables/sites.py:82 dcim/tables/sites.py:138 +#: ipam/forms/bulk_edit.py:256 ipam/forms/bulk_edit.py:306 +#: ipam/forms/bulk_edit.py:354 ipam/forms/bulk_edit.py:506 +#: ipam/forms/bulk_import.py:192 ipam/forms/bulk_import.py:257 +#: ipam/forms/bulk_import.py:293 ipam/forms/bulk_import.py:450 +#: ipam/forms/filtersets.py:210 ipam/forms/filtersets.py:281 +#: ipam/forms/filtersets.py:355 ipam/forms/filtersets.py:501 +#: ipam/forms/model_forms.py:468 ipam/tables/ip.py:237 ipam/tables/ip.py:312 +#: ipam/tables/ip.py:363 ipam/tables/ip.py:426 ipam/tables/ip.py:453 +#: ipam/tables/vlans.py:126 ipam/tables/vlans.py:232 +#: templates/circuits/circuit.html:34 templates/core/datasource.html:46 +#: templates/core/job.html:48 templates/core/rq_task.html:81 +#: templates/core/system.html:18 templates/dcim/cable.html:19 +#: templates/dcim/device.html:178 templates/dcim/location.html:45 +#: templates/dcim/module.html:69 templates/dcim/powerfeed.html:36 +#: templates/dcim/rack.html:41 templates/dcim/site.html:43 +#: templates/extras/script_list.html:47 templates/ipam/ipaddress.html:37 +#: templates/ipam/iprange.html:54 templates/ipam/prefix.html:73 +#: templates/ipam/vlan.html:48 templates/virtualization/cluster.html:21 +#: templates/virtualization/virtualmachine.html:19 +#: templates/vpn/tunnel.html:25 templates/wireless/wirelesslan.html:22 +#: templates/wireless/wirelesslink.html:17 users/forms/filtersets.py:32 +#: users/forms/model_forms.py:194 virtualization/forms/bulk_edit.py:70 +#: virtualization/forms/bulk_edit.py:118 +#: virtualization/forms/bulk_import.py:54 +#: virtualization/forms/bulk_import.py:80 +#: virtualization/forms/filtersets.py:62 +#: virtualization/forms/filtersets.py:160 virtualization/tables/clusters.py:74 +#: virtualization/tables/virtualmachines.py:60 vpn/forms/bulk_edit.py:39 +#: vpn/forms/bulk_import.py:37 vpn/forms/filtersets.py:47 +#: vpn/tables/tunnels.py:48 wireless/forms/bulk_edit.py:43 +#: wireless/forms/bulk_edit.py:105 wireless/forms/bulk_import.py:43 +#: wireless/forms/bulk_import.py:84 wireless/forms/filtersets.py:49 +#: wireless/forms/filtersets.py:83 wireless/tables/wirelesslan.py:52 +#: wireless/tables/wirelesslink.py:20 msgid "Status" msgstr "Status" -#: netbox/circuits/forms/bulk_edit.py:142 -#: netbox/circuits/forms/bulk_edit.py:233 -#: netbox/circuits/forms/bulk_import.py:98 -#: netbox/circuits/forms/bulk_import.py:158 -#: netbox/circuits/forms/filtersets.py:119 -#: netbox/circuits/forms/filtersets.py:241 netbox/dcim/forms/bulk_edit.py:122 -#: netbox/dcim/forms/bulk_edit.py:187 netbox/dcim/forms/bulk_edit.py:346 -#: netbox/dcim/forms/bulk_edit.py:461 netbox/dcim/forms/bulk_edit.py:690 -#: netbox/dcim/forms/bulk_edit.py:794 netbox/dcim/forms/bulk_edit.py:1706 -#: netbox/dcim/forms/bulk_import.py:107 netbox/dcim/forms/bulk_import.py:152 -#: netbox/dcim/forms/bulk_import.py:241 netbox/dcim/forms/bulk_import.py:334 -#: netbox/dcim/forms/bulk_import.py:479 netbox/dcim/forms/bulk_import.py:1219 -#: netbox/dcim/forms/bulk_import.py:1428 netbox/dcim/forms/filtersets.py:173 -#: netbox/dcim/forms/filtersets.py:205 netbox/dcim/forms/filtersets.py:323 -#: netbox/dcim/forms/filtersets.py:399 netbox/dcim/forms/filtersets.py:420 -#: netbox/dcim/forms/filtersets.py:722 netbox/dcim/forms/filtersets.py:916 -#: netbox/dcim/forms/filtersets.py:978 netbox/dcim/forms/filtersets.py:1008 -#: netbox/dcim/forms/filtersets.py:1130 netbox/dcim/tables/power.py:88 -#: netbox/extras/filtersets.py:612 netbox/extras/forms/filtersets.py:323 -#: netbox/extras/forms/filtersets.py:396 netbox/ipam/forms/bulk_edit.py:42 -#: netbox/ipam/forms/bulk_edit.py:67 netbox/ipam/forms/bulk_edit.py:111 -#: netbox/ipam/forms/bulk_edit.py:140 netbox/ipam/forms/bulk_edit.py:165 -#: netbox/ipam/forms/bulk_edit.py:250 netbox/ipam/forms/bulk_edit.py:300 -#: netbox/ipam/forms/bulk_edit.py:348 netbox/ipam/forms/bulk_edit.py:546 -#: netbox/ipam/forms/bulk_import.py:38 netbox/ipam/forms/bulk_import.py:67 -#: netbox/ipam/forms/bulk_import.py:95 netbox/ipam/forms/bulk_import.py:115 -#: netbox/ipam/forms/bulk_import.py:135 netbox/ipam/forms/bulk_import.py:164 -#: netbox/ipam/forms/bulk_import.py:250 netbox/ipam/forms/bulk_import.py:286 -#: netbox/ipam/forms/bulk_import.py:443 netbox/ipam/forms/filtersets.py:48 -#: netbox/ipam/forms/filtersets.py:68 netbox/ipam/forms/filtersets.py:100 -#: netbox/ipam/forms/filtersets.py:120 netbox/ipam/forms/filtersets.py:143 -#: netbox/ipam/forms/filtersets.py:174 netbox/ipam/forms/filtersets.py:267 -#: netbox/ipam/forms/filtersets.py:310 netbox/ipam/forms/filtersets.py:469 -#: netbox/ipam/tables/ip.py:456 netbox/ipam/tables/vlans.py:229 -#: netbox/templates/circuits/circuit.html:38 -#: netbox/templates/circuits/circuitgroup.html:36 -#: netbox/templates/dcim/cable.html:23 netbox/templates/dcim/device.html:79 -#: netbox/templates/dcim/location.html:49 -#: netbox/templates/dcim/powerfeed.html:44 netbox/templates/dcim/rack.html:32 -#: netbox/templates/dcim/rackreservation.html:49 -#: netbox/templates/dcim/site.html:47 -#: netbox/templates/dcim/virtualdevicecontext.html:52 -#: netbox/templates/ipam/aggregate.html:30 netbox/templates/ipam/asn.html:33 -#: netbox/templates/ipam/asnrange.html:29 -#: netbox/templates/ipam/ipaddress.html:28 -#: netbox/templates/ipam/iprange.html:58 netbox/templates/ipam/prefix.html:29 -#: netbox/templates/ipam/routetarget.html:17 -#: netbox/templates/ipam/vlan.html:39 netbox/templates/ipam/vrf.html:20 -#: netbox/templates/tenancy/tenant.html:17 -#: netbox/templates/virtualization/cluster.html:33 -#: netbox/templates/virtualization/virtualmachine.html:39 -#: netbox/templates/vpn/l2vpn.html:30 netbox/templates/vpn/tunnel.html:49 -#: netbox/templates/wireless/wirelesslan.html:34 -#: netbox/templates/wireless/wirelesslink.html:25 -#: netbox/tenancy/forms/forms.py:25 netbox/tenancy/forms/forms.py:48 -#: netbox/tenancy/forms/model_forms.py:52 netbox/tenancy/tables/columns.py:64 -#: netbox/virtualization/forms/bulk_edit.py:76 -#: netbox/virtualization/forms/bulk_edit.py:155 -#: netbox/virtualization/forms/bulk_import.py:66 -#: netbox/virtualization/forms/bulk_import.py:115 -#: netbox/virtualization/forms/filtersets.py:47 -#: netbox/virtualization/forms/filtersets.py:105 -#: netbox/vpn/forms/bulk_edit.py:59 netbox/vpn/forms/bulk_edit.py:269 -#: netbox/vpn/forms/bulk_import.py:59 netbox/vpn/forms/bulk_import.py:258 -#: netbox/vpn/forms/filtersets.py:214 netbox/wireless/forms/bulk_edit.py:63 -#: netbox/wireless/forms/bulk_edit.py:110 -#: netbox/wireless/forms/bulk_import.py:55 -#: netbox/wireless/forms/bulk_import.py:97 -#: netbox/wireless/forms/filtersets.py:35 -#: netbox/wireless/forms/filtersets.py:75 +#: circuits/forms/bulk_edit.py:142 circuits/forms/bulk_edit.py:233 +#: circuits/forms/bulk_import.py:98 circuits/forms/bulk_import.py:158 +#: circuits/forms/filtersets.py:119 circuits/forms/filtersets.py:241 +#: dcim/forms/bulk_edit.py:122 dcim/forms/bulk_edit.py:187 +#: dcim/forms/bulk_edit.py:346 dcim/forms/bulk_edit.py:461 +#: dcim/forms/bulk_edit.py:690 dcim/forms/bulk_edit.py:794 +#: dcim/forms/bulk_edit.py:1706 dcim/forms/bulk_import.py:107 +#: dcim/forms/bulk_import.py:152 dcim/forms/bulk_import.py:241 +#: dcim/forms/bulk_import.py:334 dcim/forms/bulk_import.py:479 +#: dcim/forms/bulk_import.py:1219 dcim/forms/bulk_import.py:1428 +#: dcim/forms/filtersets.py:173 dcim/forms/filtersets.py:205 +#: dcim/forms/filtersets.py:323 dcim/forms/filtersets.py:399 +#: dcim/forms/filtersets.py:420 dcim/forms/filtersets.py:722 +#: dcim/forms/filtersets.py:916 dcim/forms/filtersets.py:978 +#: dcim/forms/filtersets.py:1008 dcim/forms/filtersets.py:1130 +#: dcim/tables/power.py:88 extras/filtersets.py:612 +#: extras/forms/filtersets.py:323 extras/forms/filtersets.py:396 +#: ipam/forms/bulk_edit.py:43 ipam/forms/bulk_edit.py:68 +#: ipam/forms/bulk_edit.py:112 ipam/forms/bulk_edit.py:141 +#: ipam/forms/bulk_edit.py:166 ipam/forms/bulk_edit.py:251 +#: ipam/forms/bulk_edit.py:301 ipam/forms/bulk_edit.py:349 +#: ipam/forms/bulk_edit.py:501 ipam/forms/bulk_import.py:38 +#: ipam/forms/bulk_import.py:67 ipam/forms/bulk_import.py:95 +#: ipam/forms/bulk_import.py:115 ipam/forms/bulk_import.py:135 +#: ipam/forms/bulk_import.py:164 ipam/forms/bulk_import.py:250 +#: ipam/forms/bulk_import.py:286 ipam/forms/bulk_import.py:443 +#: ipam/forms/filtersets.py:48 ipam/forms/filtersets.py:68 +#: ipam/forms/filtersets.py:100 ipam/forms/filtersets.py:120 +#: ipam/forms/filtersets.py:143 ipam/forms/filtersets.py:174 +#: ipam/forms/filtersets.py:267 ipam/forms/filtersets.py:310 +#: ipam/forms/filtersets.py:469 ipam/tables/ip.py:456 ipam/tables/vlans.py:229 +#: templates/circuits/circuit.html:38 templates/circuits/circuitgroup.html:36 +#: templates/dcim/cable.html:23 templates/dcim/device.html:79 +#: templates/dcim/location.html:49 templates/dcim/powerfeed.html:44 +#: templates/dcim/rack.html:32 templates/dcim/rackreservation.html:49 +#: templates/dcim/site.html:47 templates/dcim/virtualdevicecontext.html:52 +#: templates/ipam/aggregate.html:30 templates/ipam/asn.html:33 +#: templates/ipam/asnrange.html:29 templates/ipam/ipaddress.html:28 +#: templates/ipam/iprange.html:58 templates/ipam/prefix.html:29 +#: templates/ipam/routetarget.html:17 templates/ipam/vlan.html:39 +#: templates/ipam/vrf.html:20 templates/tenancy/tenant.html:17 +#: templates/virtualization/cluster.html:33 +#: templates/virtualization/virtualmachine.html:39 templates/vpn/l2vpn.html:30 +#: templates/vpn/tunnel.html:49 templates/wireless/wirelesslan.html:34 +#: templates/wireless/wirelesslink.html:25 tenancy/forms/forms.py:25 +#: tenancy/forms/forms.py:48 tenancy/forms/model_forms.py:52 +#: tenancy/tables/columns.py:64 virtualization/forms/bulk_edit.py:76 +#: virtualization/forms/bulk_edit.py:155 +#: virtualization/forms/bulk_import.py:66 +#: virtualization/forms/bulk_import.py:115 +#: virtualization/forms/filtersets.py:47 +#: virtualization/forms/filtersets.py:105 vpn/forms/bulk_edit.py:59 +#: vpn/forms/bulk_edit.py:269 vpn/forms/bulk_import.py:59 +#: vpn/forms/bulk_import.py:258 vpn/forms/filtersets.py:214 +#: wireless/forms/bulk_edit.py:63 wireless/forms/bulk_edit.py:110 +#: wireless/forms/bulk_import.py:55 wireless/forms/bulk_import.py:97 +#: wireless/forms/filtersets.py:35 wireless/forms/filtersets.py:75 msgid "Tenant" msgstr "Tenant" -#: netbox/circuits/forms/bulk_edit.py:147 -#: netbox/circuits/forms/filtersets.py:174 +#: circuits/forms/bulk_edit.py:147 circuits/forms/filtersets.py:174 msgid "Install date" msgstr "Installatiedatum" -#: netbox/circuits/forms/bulk_edit.py:152 -#: netbox/circuits/forms/filtersets.py:179 +#: circuits/forms/bulk_edit.py:152 circuits/forms/filtersets.py:179 msgid "Termination date" msgstr "Beëindigingsdatum" -#: netbox/circuits/forms/bulk_edit.py:158 -#: netbox/circuits/forms/filtersets.py:186 +#: circuits/forms/bulk_edit.py:158 circuits/forms/filtersets.py:186 msgid "Commit rate (Kbps)" msgstr "Vastleggingssnelheid (Kbps)" -#: netbox/circuits/forms/bulk_edit.py:173 -#: netbox/circuits/forms/model_forms.py:112 +#: circuits/forms/bulk_edit.py:173 circuits/forms/model_forms.py:112 msgid "Service Parameters" msgstr "Serviceparameters" -#: netbox/circuits/forms/bulk_edit.py:174 -#: netbox/circuits/forms/model_forms.py:113 -#: netbox/circuits/forms/model_forms.py:183 -#: netbox/dcim/forms/model_forms.py:139 netbox/dcim/forms/model_forms.py:181 -#: netbox/dcim/forms/model_forms.py:266 netbox/dcim/forms/model_forms.py:323 -#: netbox/dcim/forms/model_forms.py:768 netbox/dcim/forms/model_forms.py:1692 -#: netbox/ipam/forms/model_forms.py:64 netbox/ipam/forms/model_forms.py:81 -#: netbox/ipam/forms/model_forms.py:115 netbox/ipam/forms/model_forms.py:136 -#: netbox/ipam/forms/model_forms.py:160 netbox/ipam/forms/model_forms.py:232 -#: netbox/ipam/forms/model_forms.py:261 netbox/ipam/forms/model_forms.py:316 -#: netbox/netbox/navigation/menu.py:24 -#: netbox/templates/dcim/device_edit.html:85 -#: netbox/templates/dcim/htmx/cable_edit.html:72 -#: netbox/templates/ipam/ipaddress_bulk_add.html:27 -#: netbox/templates/ipam/vlan_edit.html:22 -#: netbox/virtualization/forms/model_forms.py:80 -#: netbox/virtualization/forms/model_forms.py:222 -#: netbox/vpn/forms/bulk_edit.py:78 netbox/vpn/forms/filtersets.py:44 -#: netbox/vpn/forms/model_forms.py:62 netbox/vpn/forms/model_forms.py:147 -#: netbox/vpn/forms/model_forms.py:411 netbox/wireless/forms/model_forms.py:54 -#: netbox/wireless/forms/model_forms.py:170 +#: circuits/forms/bulk_edit.py:174 circuits/forms/model_forms.py:113 +#: circuits/forms/model_forms.py:183 dcim/forms/model_forms.py:139 +#: dcim/forms/model_forms.py:181 dcim/forms/model_forms.py:266 +#: dcim/forms/model_forms.py:323 dcim/forms/model_forms.py:768 +#: dcim/forms/model_forms.py:1692 ipam/forms/model_forms.py:64 +#: ipam/forms/model_forms.py:81 ipam/forms/model_forms.py:115 +#: ipam/forms/model_forms.py:136 ipam/forms/model_forms.py:160 +#: ipam/forms/model_forms.py:232 ipam/forms/model_forms.py:261 +#: ipam/forms/model_forms.py:316 netbox/navigation/menu.py:24 +#: templates/dcim/device_edit.html:85 templates/dcim/htmx/cable_edit.html:72 +#: templates/ipam/ipaddress_bulk_add.html:27 templates/ipam/vlan_edit.html:22 +#: virtualization/forms/model_forms.py:80 +#: virtualization/forms/model_forms.py:222 vpn/forms/bulk_edit.py:78 +#: vpn/forms/filtersets.py:44 vpn/forms/model_forms.py:62 +#: vpn/forms/model_forms.py:147 vpn/forms/model_forms.py:411 +#: wireless/forms/model_forms.py:54 wireless/forms/model_forms.py:170 msgid "Tenancy" msgstr "Huurovereenkomst" -#: netbox/circuits/forms/bulk_edit.py:193 -#: netbox/circuits/forms/bulk_edit.py:217 -#: netbox/circuits/forms/model_forms.py:155 -#: netbox/circuits/tables/circuits.py:117 -#: netbox/templates/circuits/inc/circuit_termination_fields.html:62 -#: netbox/templates/circuits/providernetwork.html:17 +#: circuits/forms/bulk_edit.py:193 circuits/forms/bulk_edit.py:217 +#: circuits/forms/model_forms.py:155 circuits/tables/circuits.py:117 +#: templates/circuits/inc/circuit_termination_fields.html:62 +#: templates/circuits/providernetwork.html:17 msgid "Provider Network" msgstr "Netwerkprovider" -#: netbox/circuits/forms/bulk_edit.py:199 +#: circuits/forms/bulk_edit.py:199 msgid "Port speed (Kbps)" msgstr "Poortsnelheid (Kbps)" -#: netbox/circuits/forms/bulk_edit.py:203 +#: circuits/forms/bulk_edit.py:203 msgid "Upstream speed (Kbps)" msgstr "Upstreamsnelheid (Kbps)" -#: netbox/circuits/forms/bulk_edit.py:206 netbox/dcim/forms/bulk_edit.py:951 -#: netbox/dcim/forms/bulk_edit.py:1315 netbox/dcim/forms/bulk_edit.py:1332 -#: netbox/dcim/forms/bulk_edit.py:1349 netbox/dcim/forms/bulk_edit.py:1367 -#: netbox/dcim/forms/bulk_edit.py:1455 netbox/dcim/forms/bulk_edit.py:1594 -#: netbox/dcim/forms/bulk_edit.py:1611 +#: circuits/forms/bulk_edit.py:206 dcim/forms/bulk_edit.py:951 +#: dcim/forms/bulk_edit.py:1315 dcim/forms/bulk_edit.py:1332 +#: dcim/forms/bulk_edit.py:1349 dcim/forms/bulk_edit.py:1367 +#: dcim/forms/bulk_edit.py:1455 dcim/forms/bulk_edit.py:1594 +#: dcim/forms/bulk_edit.py:1611 msgid "Mark connected" msgstr "Markeren als verbonden" -#: netbox/circuits/forms/bulk_edit.py:219 -#: netbox/circuits/forms/model_forms.py:157 -#: netbox/templates/circuits/inc/circuit_termination_fields.html:54 -#: netbox/templates/dcim/frontport.html:121 -#: netbox/templates/dcim/interface.html:193 -#: netbox/templates/dcim/rearport.html:111 +#: circuits/forms/bulk_edit.py:219 circuits/forms/model_forms.py:157 +#: templates/circuits/inc/circuit_termination_fields.html:54 +#: templates/dcim/frontport.html:121 templates/dcim/interface.html:193 +#: templates/dcim/rearport.html:111 msgid "Circuit Termination" msgstr "Circuitbeëindiging" -#: netbox/circuits/forms/bulk_edit.py:221 -#: netbox/circuits/forms/model_forms.py:159 +#: circuits/forms/bulk_edit.py:221 circuits/forms/model_forms.py:159 msgid "Termination Details" msgstr "Details van de beëindiging" -#: netbox/circuits/forms/bulk_edit.py:251 -#: netbox/circuits/forms/filtersets.py:268 -#: netbox/circuits/tables/circuits.py:168 netbox/dcim/forms/model_forms.py:551 -#: netbox/templates/circuits/circuitgroupassignment.html:30 -#: netbox/templates/dcim/device.html:133 -#: netbox/templates/dcim/virtualchassis.html:68 -#: netbox/templates/dcim/virtualchassis_edit.html:56 -#: netbox/templates/ipam/inc/panels/fhrp_groups.html:26 -#: netbox/tenancy/forms/bulk_edit.py:147 -#: netbox/tenancy/forms/filtersets.py:110 +#: circuits/forms/bulk_edit.py:251 circuits/forms/filtersets.py:268 +#: circuits/tables/circuits.py:168 dcim/forms/model_forms.py:551 +#: templates/circuits/circuitgroupassignment.html:30 +#: templates/dcim/device.html:133 templates/dcim/virtualchassis.html:68 +#: templates/dcim/virtualchassis_edit.html:56 +#: templates/ipam/inc/panels/fhrp_groups.html:26 +#: tenancy/forms/bulk_edit.py:147 tenancy/forms/filtersets.py:110 msgid "Priority" msgstr "Prioriteit" -#: netbox/circuits/forms/bulk_import.py:39 -#: netbox/circuits/forms/bulk_import.py:54 -#: netbox/circuits/forms/bulk_import.py:77 +#: circuits/forms/bulk_import.py:39 circuits/forms/bulk_import.py:54 +#: circuits/forms/bulk_import.py:77 msgid "Assigned provider" msgstr "Toegewezen provider" -#: netbox/circuits/forms/bulk_import.py:83 +#: circuits/forms/bulk_import.py:83 msgid "Assigned provider account" msgstr "Toegewezen provideraccount" -#: netbox/circuits/forms/bulk_import.py:90 +#: circuits/forms/bulk_import.py:90 msgid "Type of circuit" msgstr "Soort circuit" -#: netbox/circuits/forms/bulk_import.py:95 netbox/dcim/forms/bulk_import.py:90 -#: netbox/dcim/forms/bulk_import.py:149 netbox/dcim/forms/bulk_import.py:250 -#: netbox/dcim/forms/bulk_import.py:507 netbox/dcim/forms/bulk_import.py:661 -#: netbox/dcim/forms/bulk_import.py:1373 netbox/ipam/forms/bulk_import.py:194 -#: netbox/ipam/forms/bulk_import.py:259 netbox/ipam/forms/bulk_import.py:295 -#: netbox/ipam/forms/bulk_import.py:452 -#: netbox/virtualization/forms/bulk_import.py:56 -#: netbox/virtualization/forms/bulk_import.py:82 -#: netbox/vpn/forms/bulk_import.py:39 netbox/wireless/forms/bulk_import.py:45 +#: circuits/forms/bulk_import.py:95 dcim/forms/bulk_import.py:90 +#: dcim/forms/bulk_import.py:149 dcim/forms/bulk_import.py:250 +#: dcim/forms/bulk_import.py:507 dcim/forms/bulk_import.py:661 +#: dcim/forms/bulk_import.py:1373 ipam/forms/bulk_import.py:194 +#: ipam/forms/bulk_import.py:259 ipam/forms/bulk_import.py:295 +#: ipam/forms/bulk_import.py:452 virtualization/forms/bulk_import.py:56 +#: virtualization/forms/bulk_import.py:82 vpn/forms/bulk_import.py:39 +#: wireless/forms/bulk_import.py:45 msgid "Operational status" msgstr "Operationele status" -#: netbox/circuits/forms/bulk_import.py:102 -#: netbox/circuits/forms/bulk_import.py:162 -#: netbox/dcim/forms/bulk_import.py:111 netbox/dcim/forms/bulk_import.py:156 -#: netbox/dcim/forms/bulk_import.py:338 netbox/dcim/forms/bulk_import.py:483 -#: netbox/dcim/forms/bulk_import.py:1223 netbox/dcim/forms/bulk_import.py:1368 -#: netbox/dcim/forms/bulk_import.py:1432 netbox/ipam/forms/bulk_import.py:42 -#: netbox/ipam/forms/bulk_import.py:71 netbox/ipam/forms/bulk_import.py:99 -#: netbox/ipam/forms/bulk_import.py:119 netbox/ipam/forms/bulk_import.py:139 -#: netbox/ipam/forms/bulk_import.py:168 netbox/ipam/forms/bulk_import.py:254 -#: netbox/ipam/forms/bulk_import.py:290 netbox/ipam/forms/bulk_import.py:447 -#: netbox/virtualization/forms/bulk_import.py:70 -#: netbox/virtualization/forms/bulk_import.py:119 -#: netbox/vpn/forms/bulk_import.py:63 netbox/wireless/forms/bulk_import.py:59 -#: netbox/wireless/forms/bulk_import.py:101 +#: circuits/forms/bulk_import.py:102 circuits/forms/bulk_import.py:162 +#: dcim/forms/bulk_import.py:111 dcim/forms/bulk_import.py:156 +#: dcim/forms/bulk_import.py:338 dcim/forms/bulk_import.py:483 +#: dcim/forms/bulk_import.py:1223 dcim/forms/bulk_import.py:1368 +#: dcim/forms/bulk_import.py:1432 ipam/forms/bulk_import.py:42 +#: ipam/forms/bulk_import.py:71 ipam/forms/bulk_import.py:99 +#: ipam/forms/bulk_import.py:119 ipam/forms/bulk_import.py:139 +#: ipam/forms/bulk_import.py:168 ipam/forms/bulk_import.py:254 +#: ipam/forms/bulk_import.py:290 ipam/forms/bulk_import.py:447 +#: virtualization/forms/bulk_import.py:70 +#: virtualization/forms/bulk_import.py:119 vpn/forms/bulk_import.py:63 +#: wireless/forms/bulk_import.py:59 wireless/forms/bulk_import.py:101 msgid "Assigned tenant" msgstr "Toegewezen huurder" -#: netbox/circuits/forms/bulk_import.py:120 -#: netbox/templates/circuits/inc/circuit_termination.html:6 -#: netbox/templates/circuits/inc/circuit_termination_fields.html:15 -#: netbox/templates/dcim/cable.html:68 netbox/templates/dcim/cable.html:72 -#: netbox/vpn/forms/bulk_import.py:100 netbox/vpn/forms/filtersets.py:77 +#: circuits/forms/bulk_import.py:120 +#: templates/circuits/inc/circuit_termination.html:6 +#: templates/circuits/inc/circuit_termination_fields.html:15 +#: templates/dcim/cable.html:68 templates/dcim/cable.html:72 +#: vpn/forms/bulk_import.py:100 vpn/forms/filtersets.py:77 msgid "Termination" msgstr "Opzegging" -#: netbox/circuits/forms/bulk_import.py:130 -#: netbox/circuits/forms/filtersets.py:147 -#: netbox/circuits/forms/filtersets.py:227 -#: netbox/circuits/forms/model_forms.py:144 +#: circuits/forms/bulk_import.py:130 circuits/forms/filtersets.py:147 +#: circuits/forms/filtersets.py:227 circuits/forms/model_forms.py:144 msgid "Provider network" msgstr "Netwerkprovider" -#: netbox/circuits/forms/filtersets.py:30 -#: netbox/circuits/forms/filtersets.py:118 -#: netbox/circuits/forms/filtersets.py:200 netbox/dcim/forms/bulk_edit.py:338 -#: netbox/dcim/forms/bulk_edit.py:441 netbox/dcim/forms/bulk_edit.py:682 -#: netbox/dcim/forms/bulk_edit.py:729 netbox/dcim/forms/bulk_edit.py:882 -#: netbox/dcim/forms/bulk_import.py:235 netbox/dcim/forms/bulk_import.py:315 -#: netbox/dcim/forms/bulk_import.py:546 netbox/dcim/forms/bulk_import.py:1317 -#: netbox/dcim/forms/bulk_import.py:1351 netbox/dcim/forms/filtersets.py:95 -#: netbox/dcim/forms/filtersets.py:322 netbox/dcim/forms/filtersets.py:356 -#: netbox/dcim/forms/filtersets.py:396 netbox/dcim/forms/filtersets.py:447 -#: netbox/dcim/forms/filtersets.py:719 netbox/dcim/forms/filtersets.py:762 -#: netbox/dcim/forms/filtersets.py:977 netbox/dcim/forms/filtersets.py:1006 -#: netbox/dcim/forms/filtersets.py:1026 netbox/dcim/forms/filtersets.py:1090 -#: netbox/dcim/forms/filtersets.py:1120 netbox/dcim/forms/filtersets.py:1129 -#: netbox/dcim/forms/filtersets.py:1240 netbox/dcim/forms/filtersets.py:1264 -#: netbox/dcim/forms/filtersets.py:1289 netbox/dcim/forms/filtersets.py:1308 -#: netbox/dcim/forms/filtersets.py:1331 netbox/dcim/forms/filtersets.py:1442 -#: netbox/dcim/forms/filtersets.py:1466 netbox/dcim/forms/filtersets.py:1490 -#: netbox/dcim/forms/filtersets.py:1508 netbox/dcim/forms/filtersets.py:1525 -#: netbox/dcim/forms/model_forms.py:180 netbox/dcim/forms/model_forms.py:243 -#: netbox/dcim/forms/model_forms.py:468 netbox/dcim/forms/model_forms.py:728 -#: netbox/dcim/tables/devices.py:157 netbox/dcim/tables/power.py:30 -#: netbox/dcim/tables/racks.py:118 netbox/dcim/tables/racks.py:212 -#: netbox/extras/filtersets.py:536 netbox/extras/forms/filtersets.py:320 -#: netbox/ipam/forms/bulk_edit.py:460 netbox/ipam/forms/filtersets.py:173 -#: netbox/ipam/forms/filtersets.py:414 netbox/ipam/forms/filtersets.py:437 -#: netbox/ipam/forms/filtersets.py:467 netbox/templates/dcim/device.html:26 -#: netbox/templates/dcim/device_edit.html:30 -#: netbox/templates/dcim/inc/cable_termination.html:12 -#: netbox/templates/dcim/location.html:26 -#: netbox/templates/dcim/powerpanel.html:26 netbox/templates/dcim/rack.html:24 -#: netbox/templates/dcim/rackreservation.html:32 -#: netbox/virtualization/forms/filtersets.py:46 -#: netbox/virtualization/forms/filtersets.py:100 -#: netbox/wireless/forms/model_forms.py:87 -#: netbox/wireless/forms/model_forms.py:129 +#: circuits/forms/filtersets.py:30 circuits/forms/filtersets.py:118 +#: circuits/forms/filtersets.py:200 dcim/forms/bulk_edit.py:338 +#: dcim/forms/bulk_edit.py:441 dcim/forms/bulk_edit.py:682 +#: dcim/forms/bulk_edit.py:729 dcim/forms/bulk_edit.py:882 +#: dcim/forms/bulk_import.py:235 dcim/forms/bulk_import.py:315 +#: dcim/forms/bulk_import.py:546 dcim/forms/bulk_import.py:1317 +#: dcim/forms/bulk_import.py:1351 dcim/forms/filtersets.py:95 +#: dcim/forms/filtersets.py:322 dcim/forms/filtersets.py:356 +#: dcim/forms/filtersets.py:396 dcim/forms/filtersets.py:447 +#: dcim/forms/filtersets.py:719 dcim/forms/filtersets.py:762 +#: dcim/forms/filtersets.py:977 dcim/forms/filtersets.py:1006 +#: dcim/forms/filtersets.py:1026 dcim/forms/filtersets.py:1090 +#: dcim/forms/filtersets.py:1120 dcim/forms/filtersets.py:1129 +#: dcim/forms/filtersets.py:1240 dcim/forms/filtersets.py:1264 +#: dcim/forms/filtersets.py:1289 dcim/forms/filtersets.py:1308 +#: dcim/forms/filtersets.py:1331 dcim/forms/filtersets.py:1442 +#: dcim/forms/filtersets.py:1466 dcim/forms/filtersets.py:1490 +#: dcim/forms/filtersets.py:1508 dcim/forms/filtersets.py:1525 +#: dcim/forms/model_forms.py:180 dcim/forms/model_forms.py:243 +#: dcim/forms/model_forms.py:468 dcim/forms/model_forms.py:728 +#: dcim/tables/devices.py:157 dcim/tables/power.py:30 dcim/tables/racks.py:118 +#: dcim/tables/racks.py:212 extras/filtersets.py:536 +#: extras/forms/filtersets.py:320 ipam/forms/filtersets.py:173 +#: ipam/forms/filtersets.py:414 ipam/forms/filtersets.py:437 +#: ipam/forms/filtersets.py:467 templates/dcim/device.html:26 +#: templates/dcim/device_edit.html:30 +#: templates/dcim/inc/cable_termination.html:12 +#: templates/dcim/location.html:26 templates/dcim/powerpanel.html:26 +#: templates/dcim/rack.html:24 templates/dcim/rackreservation.html:32 +#: virtualization/forms/filtersets.py:46 +#: virtualization/forms/filtersets.py:100 wireless/forms/model_forms.py:87 +#: wireless/forms/model_forms.py:129 msgid "Location" msgstr "Locatie" -#: netbox/circuits/forms/filtersets.py:32 -#: netbox/circuits/forms/filtersets.py:120 netbox/dcim/forms/filtersets.py:144 -#: netbox/dcim/forms/filtersets.py:158 netbox/dcim/forms/filtersets.py:174 -#: netbox/dcim/forms/filtersets.py:206 netbox/dcim/forms/filtersets.py:328 -#: netbox/dcim/forms/filtersets.py:400 netbox/dcim/forms/filtersets.py:471 -#: netbox/dcim/forms/filtersets.py:723 netbox/dcim/forms/filtersets.py:1091 -#: netbox/netbox/navigation/menu.py:31 netbox/netbox/navigation/menu.py:33 -#: netbox/tenancy/forms/filtersets.py:42 netbox/tenancy/tables/columns.py:70 -#: netbox/tenancy/tables/contacts.py:25 netbox/tenancy/views.py:19 -#: netbox/virtualization/forms/filtersets.py:37 -#: netbox/virtualization/forms/filtersets.py:48 -#: netbox/virtualization/forms/filtersets.py:106 +#: circuits/forms/filtersets.py:32 circuits/forms/filtersets.py:120 +#: dcim/forms/filtersets.py:144 dcim/forms/filtersets.py:158 +#: dcim/forms/filtersets.py:174 dcim/forms/filtersets.py:206 +#: dcim/forms/filtersets.py:328 dcim/forms/filtersets.py:400 +#: dcim/forms/filtersets.py:471 dcim/forms/filtersets.py:723 +#: dcim/forms/filtersets.py:1091 netbox/navigation/menu.py:31 +#: netbox/navigation/menu.py:33 tenancy/forms/filtersets.py:42 +#: tenancy/tables/columns.py:70 tenancy/tables/contacts.py:25 +#: tenancy/views.py:19 virtualization/forms/filtersets.py:37 +#: virtualization/forms/filtersets.py:48 +#: virtualization/forms/filtersets.py:106 msgid "Contacts" msgstr "Contacten" -#: netbox/circuits/forms/filtersets.py:37 -#: netbox/circuits/forms/filtersets.py:157 netbox/dcim/forms/bulk_edit.py:112 -#: netbox/dcim/forms/bulk_edit.py:313 netbox/dcim/forms/bulk_edit.py:857 -#: netbox/dcim/forms/bulk_import.py:93 netbox/dcim/forms/filtersets.py:73 -#: netbox/dcim/forms/filtersets.py:185 netbox/dcim/forms/filtersets.py:211 -#: netbox/dcim/forms/filtersets.py:334 netbox/dcim/forms/filtersets.py:425 -#: netbox/dcim/forms/filtersets.py:739 netbox/dcim/forms/filtersets.py:983 -#: netbox/dcim/forms/filtersets.py:1013 netbox/dcim/forms/filtersets.py:1097 -#: netbox/dcim/forms/filtersets.py:1136 netbox/dcim/forms/filtersets.py:1576 -#: netbox/dcim/forms/filtersets.py:1600 netbox/dcim/forms/filtersets.py:1624 -#: netbox/dcim/forms/model_forms.py:112 netbox/dcim/forms/object_create.py:375 -#: netbox/dcim/tables/devices.py:143 netbox/dcim/tables/sites.py:85 -#: netbox/extras/filtersets.py:503 netbox/ipam/forms/bulk_edit.py:207 -#: netbox/ipam/forms/bulk_edit.py:441 netbox/ipam/forms/bulk_edit.py:519 -#: netbox/ipam/forms/filtersets.py:217 netbox/ipam/forms/filtersets.py:422 -#: netbox/ipam/forms/filtersets.py:475 netbox/templates/dcim/device.html:18 -#: netbox/templates/dcim/rack.html:16 -#: netbox/templates/dcim/rackreservation.html:22 -#: netbox/templates/dcim/region.html:26 netbox/templates/dcim/site.html:31 -#: netbox/templates/ipam/prefix.html:49 netbox/templates/ipam/vlan.html:16 -#: netbox/virtualization/forms/bulk_edit.py:81 -#: netbox/virtualization/forms/filtersets.py:59 -#: netbox/virtualization/forms/filtersets.py:133 -#: netbox/virtualization/forms/model_forms.py:92 -#: netbox/vpn/forms/filtersets.py:257 +#: circuits/forms/filtersets.py:37 circuits/forms/filtersets.py:157 +#: dcim/forms/bulk_edit.py:112 dcim/forms/bulk_edit.py:313 +#: dcim/forms/bulk_edit.py:857 dcim/forms/bulk_import.py:93 +#: dcim/forms/filtersets.py:73 dcim/forms/filtersets.py:185 +#: dcim/forms/filtersets.py:211 dcim/forms/filtersets.py:334 +#: dcim/forms/filtersets.py:425 dcim/forms/filtersets.py:739 +#: dcim/forms/filtersets.py:983 dcim/forms/filtersets.py:1013 +#: dcim/forms/filtersets.py:1097 dcim/forms/filtersets.py:1136 +#: dcim/forms/filtersets.py:1576 dcim/forms/filtersets.py:1600 +#: dcim/forms/filtersets.py:1624 dcim/forms/model_forms.py:112 +#: dcim/forms/object_create.py:375 dcim/tables/devices.py:143 +#: dcim/tables/sites.py:85 extras/filtersets.py:503 +#: ipam/forms/bulk_edit.py:208 ipam/forms/bulk_edit.py:474 +#: ipam/forms/filtersets.py:217 ipam/forms/filtersets.py:422 +#: ipam/forms/filtersets.py:475 templates/dcim/device.html:18 +#: templates/dcim/rack.html:16 templates/dcim/rackreservation.html:22 +#: templates/dcim/region.html:26 templates/dcim/site.html:31 +#: templates/ipam/prefix.html:49 templates/ipam/vlan.html:16 +#: virtualization/forms/bulk_edit.py:81 virtualization/forms/filtersets.py:59 +#: virtualization/forms/filtersets.py:133 +#: virtualization/forms/model_forms.py:92 vpn/forms/filtersets.py:257 msgid "Region" msgstr "Regio" -#: netbox/circuits/forms/filtersets.py:42 -#: netbox/circuits/forms/filtersets.py:162 netbox/dcim/forms/bulk_edit.py:321 -#: netbox/dcim/forms/bulk_edit.py:865 netbox/dcim/forms/filtersets.py:78 -#: netbox/dcim/forms/filtersets.py:190 netbox/dcim/forms/filtersets.py:216 -#: netbox/dcim/forms/filtersets.py:347 netbox/dcim/forms/filtersets.py:430 -#: netbox/dcim/forms/filtersets.py:744 netbox/dcim/forms/filtersets.py:988 -#: netbox/dcim/forms/filtersets.py:1102 netbox/dcim/forms/filtersets.py:1141 -#: netbox/dcim/forms/object_create.py:383 netbox/extras/filtersets.py:520 -#: netbox/ipam/forms/bulk_edit.py:212 netbox/ipam/forms/bulk_edit.py:448 -#: netbox/ipam/forms/bulk_edit.py:524 netbox/ipam/forms/filtersets.py:222 -#: netbox/ipam/forms/filtersets.py:427 netbox/ipam/forms/filtersets.py:480 -#: netbox/virtualization/forms/bulk_edit.py:86 -#: netbox/virtualization/forms/filtersets.py:69 -#: netbox/virtualization/forms/filtersets.py:138 -#: netbox/virtualization/forms/model_forms.py:98 +#: circuits/forms/filtersets.py:42 circuits/forms/filtersets.py:162 +#: dcim/forms/bulk_edit.py:321 dcim/forms/bulk_edit.py:865 +#: dcim/forms/filtersets.py:78 dcim/forms/filtersets.py:190 +#: dcim/forms/filtersets.py:216 dcim/forms/filtersets.py:347 +#: dcim/forms/filtersets.py:430 dcim/forms/filtersets.py:744 +#: dcim/forms/filtersets.py:988 dcim/forms/filtersets.py:1102 +#: dcim/forms/filtersets.py:1141 dcim/forms/object_create.py:383 +#: extras/filtersets.py:520 ipam/forms/bulk_edit.py:213 +#: ipam/forms/bulk_edit.py:479 ipam/forms/filtersets.py:222 +#: ipam/forms/filtersets.py:427 ipam/forms/filtersets.py:480 +#: virtualization/forms/bulk_edit.py:86 virtualization/forms/filtersets.py:69 +#: virtualization/forms/filtersets.py:138 +#: virtualization/forms/model_forms.py:98 msgid "Site group" msgstr "Sitegroep" -#: netbox/circuits/forms/filtersets.py:65 -#: netbox/circuits/forms/filtersets.py:83 -#: netbox/circuits/forms/filtersets.py:102 -#: netbox/circuits/forms/filtersets.py:117 netbox/core/forms/filtersets.py:67 -#: netbox/core/forms/filtersets.py:135 netbox/dcim/forms/bulk_edit.py:828 -#: netbox/dcim/forms/filtersets.py:172 netbox/dcim/forms/filtersets.py:204 -#: netbox/dcim/forms/filtersets.py:915 netbox/dcim/forms/filtersets.py:1007 -#: netbox/dcim/forms/filtersets.py:1131 netbox/dcim/forms/filtersets.py:1239 -#: netbox/dcim/forms/filtersets.py:1263 netbox/dcim/forms/filtersets.py:1288 -#: netbox/dcim/forms/filtersets.py:1307 netbox/dcim/forms/filtersets.py:1327 -#: netbox/dcim/forms/filtersets.py:1441 netbox/dcim/forms/filtersets.py:1465 -#: netbox/dcim/forms/filtersets.py:1489 netbox/dcim/forms/filtersets.py:1507 -#: netbox/dcim/forms/filtersets.py:1523 netbox/extras/forms/bulk_edit.py:90 -#: netbox/extras/forms/filtersets.py:44 netbox/extras/forms/filtersets.py:134 -#: netbox/extras/forms/filtersets.py:165 netbox/extras/forms/filtersets.py:205 -#: netbox/extras/forms/filtersets.py:221 netbox/extras/forms/filtersets.py:252 -#: netbox/extras/forms/filtersets.py:276 netbox/extras/forms/filtersets.py:441 -#: netbox/ipam/forms/filtersets.py:99 netbox/ipam/forms/filtersets.py:266 -#: netbox/ipam/forms/filtersets.py:307 netbox/ipam/forms/filtersets.py:382 -#: netbox/ipam/forms/filtersets.py:468 netbox/ipam/forms/filtersets.py:527 -#: netbox/ipam/forms/filtersets.py:545 netbox/netbox/tables/tables.py:256 -#: netbox/virtualization/forms/filtersets.py:45 -#: netbox/virtualization/forms/filtersets.py:103 -#: netbox/virtualization/forms/filtersets.py:198 -#: netbox/virtualization/forms/filtersets.py:243 -#: netbox/vpn/forms/filtersets.py:213 netbox/wireless/forms/bulk_edit.py:150 -#: netbox/wireless/forms/filtersets.py:34 -#: netbox/wireless/forms/filtersets.py:74 +#: circuits/forms/filtersets.py:65 circuits/forms/filtersets.py:83 +#: circuits/forms/filtersets.py:102 circuits/forms/filtersets.py:117 +#: core/forms/filtersets.py:67 core/forms/filtersets.py:135 +#: dcim/forms/bulk_edit.py:828 dcim/forms/filtersets.py:172 +#: dcim/forms/filtersets.py:204 dcim/forms/filtersets.py:915 +#: dcim/forms/filtersets.py:1007 dcim/forms/filtersets.py:1131 +#: dcim/forms/filtersets.py:1239 dcim/forms/filtersets.py:1263 +#: dcim/forms/filtersets.py:1288 dcim/forms/filtersets.py:1307 +#: dcim/forms/filtersets.py:1327 dcim/forms/filtersets.py:1441 +#: dcim/forms/filtersets.py:1465 dcim/forms/filtersets.py:1489 +#: dcim/forms/filtersets.py:1507 dcim/forms/filtersets.py:1523 +#: extras/forms/bulk_edit.py:90 extras/forms/filtersets.py:44 +#: extras/forms/filtersets.py:134 extras/forms/filtersets.py:165 +#: extras/forms/filtersets.py:205 extras/forms/filtersets.py:221 +#: extras/forms/filtersets.py:252 extras/forms/filtersets.py:276 +#: extras/forms/filtersets.py:441 ipam/forms/filtersets.py:99 +#: ipam/forms/filtersets.py:266 ipam/forms/filtersets.py:307 +#: ipam/forms/filtersets.py:382 ipam/forms/filtersets.py:468 +#: ipam/forms/filtersets.py:527 ipam/forms/filtersets.py:545 +#: netbox/tables/tables.py:256 virtualization/forms/filtersets.py:45 +#: virtualization/forms/filtersets.py:103 +#: virtualization/forms/filtersets.py:198 +#: virtualization/forms/filtersets.py:243 vpn/forms/filtersets.py:213 +#: wireless/forms/bulk_edit.py:150 wireless/forms/filtersets.py:34 +#: wireless/forms/filtersets.py:74 msgid "Attributes" msgstr "Attributen" -#: netbox/circuits/forms/filtersets.py:73 -#: netbox/circuits/tables/circuits.py:63 -#: netbox/circuits/tables/providers.py:66 -#: netbox/templates/circuits/circuit.html:22 -#: netbox/templates/circuits/provideraccount.html:24 +#: circuits/forms/filtersets.py:73 circuits/tables/circuits.py:63 +#: circuits/tables/providers.py:66 templates/circuits/circuit.html:22 +#: templates/circuits/provideraccount.html:24 msgid "Account" msgstr "Account" -#: netbox/circuits/forms/filtersets.py:217 +#: circuits/forms/filtersets.py:217 msgid "Term Side" msgstr "Termzijde" -#: netbox/circuits/forms/filtersets.py:250 -#: netbox/extras/forms/model_forms.py:582 netbox/ipam/forms/filtersets.py:142 -#: netbox/ipam/forms/filtersets.py:546 netbox/ipam/forms/model_forms.py:323 -#: netbox/templates/extras/configcontext.html:60 -#: netbox/templates/ipam/ipaddress.html:59 -#: netbox/templates/ipam/vlan_edit.html:30 -#: netbox/tenancy/forms/filtersets.py:87 netbox/users/forms/model_forms.py:314 +#: circuits/forms/filtersets.py:250 extras/forms/model_forms.py:582 +#: ipam/forms/filtersets.py:142 ipam/forms/filtersets.py:546 +#: ipam/forms/model_forms.py:323 templates/extras/configcontext.html:60 +#: templates/ipam/ipaddress.html:59 templates/ipam/vlan_edit.html:30 +#: tenancy/forms/filtersets.py:87 users/forms/model_forms.py:314 msgid "Assignment" msgstr "Opdracht" -#: netbox/circuits/forms/filtersets.py:265 -#: netbox/circuits/forms/model_forms.py:195 -#: netbox/circuits/tables/circuits.py:155 netbox/dcim/forms/bulk_edit.py:117 -#: netbox/dcim/forms/bulk_import.py:100 netbox/dcim/forms/model_forms.py:117 -#: netbox/dcim/tables/sites.py:89 netbox/extras/forms/filtersets.py:480 -#: netbox/ipam/filtersets.py:999 netbox/ipam/forms/bulk_edit.py:538 -#: netbox/ipam/forms/bulk_import.py:436 netbox/ipam/forms/model_forms.py:528 -#: netbox/ipam/tables/fhrp.py:67 netbox/ipam/tables/vlans.py:122 -#: netbox/ipam/tables/vlans.py:226 -#: netbox/templates/circuits/circuitgroupassignment.html:22 -#: netbox/templates/dcim/interface.html:284 netbox/templates/dcim/site.html:37 -#: netbox/templates/ipam/inc/panels/fhrp_groups.html:23 -#: netbox/templates/ipam/vlan.html:27 netbox/templates/tenancy/contact.html:21 -#: netbox/templates/tenancy/tenant.html:20 netbox/templates/users/group.html:6 -#: netbox/templates/users/group.html:14 -#: netbox/templates/virtualization/cluster.html:29 -#: netbox/templates/vpn/tunnel.html:29 -#: netbox/templates/wireless/wirelesslan.html:18 -#: netbox/tenancy/forms/bulk_edit.py:43 netbox/tenancy/forms/bulk_edit.py:94 -#: netbox/tenancy/forms/bulk_import.py:40 -#: netbox/tenancy/forms/bulk_import.py:81 -#: netbox/tenancy/forms/filtersets.py:48 netbox/tenancy/forms/filtersets.py:78 -#: netbox/tenancy/forms/filtersets.py:97 -#: netbox/tenancy/forms/model_forms.py:45 -#: netbox/tenancy/forms/model_forms.py:97 -#: netbox/tenancy/forms/model_forms.py:122 -#: netbox/tenancy/tables/contacts.py:60 netbox/tenancy/tables/contacts.py:107 -#: netbox/tenancy/tables/tenants.py:42 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 -#: netbox/virtualization/forms/bulk_edit.py:65 -#: netbox/virtualization/forms/bulk_import.py:47 -#: netbox/virtualization/forms/filtersets.py:85 -#: netbox/virtualization/forms/model_forms.py:66 -#: netbox/virtualization/tables/clusters.py:70 -#: netbox/vpn/forms/bulk_edit.py:112 netbox/vpn/forms/bulk_import.py:158 -#: netbox/vpn/forms/filtersets.py:116 netbox/vpn/tables/crypto.py:31 -#: netbox/vpn/tables/tunnels.py:44 netbox/wireless/forms/bulk_edit.py:48 -#: netbox/wireless/forms/bulk_import.py:36 -#: netbox/wireless/forms/filtersets.py:46 -#: netbox/wireless/forms/model_forms.py:40 -#: netbox/wireless/tables/wirelesslan.py:48 +#: circuits/forms/filtersets.py:265 circuits/forms/model_forms.py:195 +#: circuits/tables/circuits.py:155 dcim/forms/bulk_edit.py:117 +#: dcim/forms/bulk_import.py:100 dcim/forms/model_forms.py:117 +#: dcim/tables/sites.py:89 extras/forms/filtersets.py:480 +#: ipam/filtersets.py:999 ipam/forms/bulk_edit.py:493 +#: ipam/forms/bulk_import.py:436 ipam/forms/model_forms.py:528 +#: ipam/tables/fhrp.py:67 ipam/tables/vlans.py:122 ipam/tables/vlans.py:226 +#: templates/circuits/circuitgroupassignment.html:22 +#: templates/dcim/interface.html:284 templates/dcim/site.html:37 +#: templates/ipam/inc/panels/fhrp_groups.html:23 templates/ipam/vlan.html:27 +#: templates/tenancy/contact.html:21 templates/tenancy/tenant.html:20 +#: templates/users/group.html:6 templates/users/group.html:14 +#: templates/virtualization/cluster.html:29 templates/vpn/tunnel.html:29 +#: templates/wireless/wirelesslan.html:18 tenancy/forms/bulk_edit.py:43 +#: tenancy/forms/bulk_edit.py:94 tenancy/forms/bulk_import.py:40 +#: tenancy/forms/bulk_import.py:81 tenancy/forms/filtersets.py:48 +#: tenancy/forms/filtersets.py:78 tenancy/forms/filtersets.py:97 +#: tenancy/forms/model_forms.py:45 tenancy/forms/model_forms.py:97 +#: tenancy/forms/model_forms.py:122 tenancy/tables/contacts.py:60 +#: tenancy/tables/contacts.py:107 tenancy/tables/tenants.py:42 +#: users/filtersets.py:62 users/filtersets.py:185 users/forms/filtersets.py:31 +#: users/forms/filtersets.py:37 users/forms/filtersets.py:79 +#: virtualization/forms/bulk_edit.py:65 virtualization/forms/bulk_import.py:47 +#: virtualization/forms/filtersets.py:85 +#: virtualization/forms/model_forms.py:66 virtualization/tables/clusters.py:70 +#: vpn/forms/bulk_edit.py:112 vpn/forms/bulk_import.py:158 +#: vpn/forms/filtersets.py:116 vpn/tables/crypto.py:31 +#: vpn/tables/tunnels.py:44 wireless/forms/bulk_edit.py:48 +#: wireless/forms/bulk_import.py:36 wireless/forms/filtersets.py:46 +#: wireless/forms/model_forms.py:40 wireless/tables/wirelesslan.py:48 msgid "Group" msgstr "groep" -#: netbox/circuits/forms/model_forms.py:182 -#: netbox/templates/circuits/circuitgroup.html:25 +#: circuits/forms/model_forms.py:182 templates/circuits/circuitgroup.html:25 msgid "Circuit Group" msgstr "Circuitgroep" -#: netbox/circuits/models/circuits.py:27 netbox/dcim/models/cables.py:67 -#: netbox/dcim/models/device_component_templates.py:517 -#: netbox/dcim/models/device_component_templates.py:617 -#: netbox/dcim/models/device_components.py:975 -#: netbox/dcim/models/device_components.py:1049 -#: netbox/dcim/models/device_components.py:1204 -#: netbox/dcim/models/devices.py:479 netbox/dcim/models/racks.py:224 -#: netbox/extras/models/tags.py:28 +#: circuits/models/circuits.py:27 dcim/models/cables.py:67 +#: dcim/models/device_component_templates.py:517 +#: dcim/models/device_component_templates.py:617 +#: dcim/models/device_components.py:975 dcim/models/device_components.py:1049 +#: dcim/models/device_components.py:1204 dcim/models/devices.py:479 +#: dcim/models/racks.py:224 extras/models/tags.py:28 msgid "color" msgstr "kleur" -#: netbox/circuits/models/circuits.py:36 +#: circuits/models/circuits.py:36 msgid "circuit type" msgstr "soort circuit" -#: netbox/circuits/models/circuits.py:37 +#: circuits/models/circuits.py:37 msgid "circuit types" msgstr "soorten circuits" -#: netbox/circuits/models/circuits.py:48 +#: circuits/models/circuits.py:48 msgid "circuit ID" msgstr "circuit-ID" -#: netbox/circuits/models/circuits.py:49 +#: circuits/models/circuits.py:49 msgid "Unique circuit ID" msgstr "Uniek circuit-ID" -#: netbox/circuits/models/circuits.py:69 netbox/core/models/data.py:52 -#: netbox/core/models/jobs.py:84 netbox/dcim/models/cables.py:49 -#: netbox/dcim/models/devices.py:653 netbox/dcim/models/devices.py:1173 -#: netbox/dcim/models/devices.py:1399 netbox/dcim/models/power.py:96 -#: netbox/dcim/models/racks.py:297 netbox/dcim/models/sites.py:154 -#: netbox/dcim/models/sites.py:266 netbox/ipam/models/ip.py:253 -#: netbox/ipam/models/ip.py:522 netbox/ipam/models/ip.py:730 -#: netbox/ipam/models/vlans.py:195 netbox/virtualization/models/clusters.py:74 -#: netbox/virtualization/models/virtualmachines.py:84 -#: netbox/vpn/models/tunnels.py:40 netbox/wireless/models.py:95 -#: netbox/wireless/models.py:159 +#: circuits/models/circuits.py:69 core/models/data.py:52 +#: core/models/jobs.py:84 dcim/models/cables.py:49 dcim/models/devices.py:653 +#: dcim/models/devices.py:1173 dcim/models/devices.py:1399 +#: dcim/models/power.py:96 dcim/models/racks.py:297 dcim/models/sites.py:154 +#: dcim/models/sites.py:266 ipam/models/ip.py:253 ipam/models/ip.py:522 +#: ipam/models/ip.py:730 ipam/models/vlans.py:195 +#: virtualization/models/clusters.py:74 +#: virtualization/models/virtualmachines.py:84 vpn/models/tunnels.py:40 +#: wireless/models.py:95 wireless/models.py:159 msgid "status" msgstr "-status" -#: netbox/circuits/models/circuits.py:84 netbox/templates/core/plugin.html:19 +#: circuits/models/circuits.py:84 templates/core/plugin.html:20 msgid "installed" msgstr "geïnstalleerd" -#: netbox/circuits/models/circuits.py:89 +#: circuits/models/circuits.py:89 msgid "terminates" msgstr "beëindigt" -#: netbox/circuits/models/circuits.py:94 +#: circuits/models/circuits.py:94 msgid "commit rate (Kbps)" msgstr "Toewijzingssnelheid (Kbps)" -#: netbox/circuits/models/circuits.py:95 +#: circuits/models/circuits.py:95 msgid "Committed rate" msgstr "Toegewijde rente" -#: netbox/circuits/models/circuits.py:137 +#: circuits/models/circuits.py:137 msgid "circuit" msgstr "circuit" -#: netbox/circuits/models/circuits.py:138 +#: circuits/models/circuits.py:138 msgid "circuits" msgstr "circuits" -#: netbox/circuits/models/circuits.py:170 +#: circuits/models/circuits.py:170 msgid "circuit group" msgstr "circuitgroep" -#: netbox/circuits/models/circuits.py:171 +#: circuits/models/circuits.py:171 msgid "circuit groups" msgstr "circuitgroepen" -#: netbox/circuits/models/circuits.py:195 netbox/ipam/models/fhrp.py:93 -#: netbox/tenancy/models/contacts.py:134 +#: circuits/models/circuits.py:195 ipam/models/fhrp.py:93 +#: tenancy/models/contacts.py:134 msgid "priority" msgstr "prioriteit" -#: netbox/circuits/models/circuits.py:213 +#: circuits/models/circuits.py:213 msgid "Circuit group assignment" msgstr "Circuitgroepopdracht" -#: netbox/circuits/models/circuits.py:214 +#: circuits/models/circuits.py:214 msgid "Circuit group assignments" msgstr "Circuitgroeptoewijzingen" -#: netbox/circuits/models/circuits.py:240 +#: circuits/models/circuits.py:240 msgid "termination" msgstr "beëindiging" -#: netbox/circuits/models/circuits.py:257 +#: circuits/models/circuits.py:257 msgid "port speed (Kbps)" msgstr "poortsnelheid (Kbps)" -#: netbox/circuits/models/circuits.py:260 +#: circuits/models/circuits.py:260 msgid "Physical circuit speed" msgstr "Fysieke circuitsnelheid" -#: netbox/circuits/models/circuits.py:265 +#: circuits/models/circuits.py:265 msgid "upstream speed (Kbps)" msgstr "upstream snelheid (Kbps)" -#: netbox/circuits/models/circuits.py:266 +#: circuits/models/circuits.py:266 msgid "Upstream speed, if different from port speed" msgstr "Upstream snelheid, indien verschillend van de poortsnelheid" -#: netbox/circuits/models/circuits.py:271 +#: circuits/models/circuits.py:271 msgid "cross-connect ID" msgstr "ID voor kruisverbinding" -#: netbox/circuits/models/circuits.py:272 +#: circuits/models/circuits.py:272 msgid "ID of the local cross-connect" msgstr "ID van de lokale kruisverbinding" -#: netbox/circuits/models/circuits.py:277 +#: circuits/models/circuits.py:277 msgid "patch panel/port(s)" msgstr "patchpaneel/poort (en)" -#: netbox/circuits/models/circuits.py:278 +#: circuits/models/circuits.py:278 msgid "Patch panel ID and port number(s)" msgstr "ID en poortnummer(s) van het patchpaneel" -#: netbox/circuits/models/circuits.py:281 -#: netbox/dcim/models/device_component_templates.py:61 -#: netbox/dcim/models/device_components.py:68 netbox/dcim/models/racks.py:685 -#: netbox/extras/models/configs.py:45 netbox/extras/models/configs.py:219 -#: netbox/extras/models/customfields.py:125 netbox/extras/models/models.py:61 -#: netbox/extras/models/models.py:158 netbox/extras/models/models.py:396 -#: netbox/extras/models/models.py:511 -#: netbox/extras/models/notifications.py:131 -#: netbox/extras/models/staging.py:31 netbox/extras/models/tags.py:32 -#: netbox/netbox/models/__init__.py:110 netbox/netbox/models/__init__.py:145 -#: netbox/netbox/models/__init__.py:191 netbox/users/models/permissions.py:24 -#: netbox/users/models/tokens.py:57 netbox/users/models/users.py:33 -#: netbox/virtualization/models/virtualmachines.py:289 +#: circuits/models/circuits.py:281 +#: dcim/models/device_component_templates.py:61 +#: dcim/models/device_components.py:68 dcim/models/racks.py:685 +#: extras/models/configs.py:45 extras/models/configs.py:219 +#: extras/models/customfields.py:125 extras/models/models.py:61 +#: extras/models/models.py:158 extras/models/models.py:396 +#: extras/models/models.py:511 extras/models/notifications.py:131 +#: extras/models/staging.py:31 extras/models/tags.py:32 +#: netbox/models/__init__.py:110 netbox/models/__init__.py:145 +#: netbox/models/__init__.py:191 users/models/permissions.py:24 +#: users/models/tokens.py:57 users/models/users.py:33 +#: virtualization/models/virtualmachines.py:289 msgid "description" msgstr "omschrijving" -#: netbox/circuits/models/circuits.py:294 +#: circuits/models/circuits.py:294 msgid "circuit termination" msgstr "beëindiging van het circuit" -#: netbox/circuits/models/circuits.py:295 +#: circuits/models/circuits.py:295 msgid "circuit terminations" msgstr "circuitafsluitingen" -#: netbox/circuits/models/circuits.py:308 +#: circuits/models/circuits.py:308 msgid "" "A circuit termination must attach to either a site or a provider network." msgstr "" "Een circuitafsluiting moet verbonden zijn met een site of een netwerk van " "een provider." -#: netbox/circuits/models/circuits.py:310 +#: circuits/models/circuits.py:310 msgid "" "A circuit termination cannot attach to both a site and a provider network." msgstr "" "Een circuitafsluiting kan niet worden aangesloten op zowel een site als een " "netwerk van een provider." -#: netbox/circuits/models/providers.py:22 -#: netbox/circuits/models/providers.py:66 -#: netbox/circuits/models/providers.py:104 netbox/core/models/data.py:39 -#: netbox/core/models/jobs.py:45 -#: netbox/dcim/models/device_component_templates.py:43 -#: netbox/dcim/models/device_components.py:53 -#: netbox/dcim/models/devices.py:593 netbox/dcim/models/devices.py:1330 -#: netbox/dcim/models/devices.py:1395 netbox/dcim/models/power.py:39 -#: netbox/dcim/models/power.py:92 netbox/dcim/models/racks.py:262 -#: netbox/dcim/models/sites.py:138 netbox/extras/models/configs.py:36 -#: netbox/extras/models/configs.py:215 netbox/extras/models/customfields.py:92 -#: netbox/extras/models/models.py:56 netbox/extras/models/models.py:153 -#: netbox/extras/models/models.py:296 netbox/extras/models/models.py:392 -#: netbox/extras/models/models.py:501 netbox/extras/models/models.py:596 -#: netbox/extras/models/notifications.py:126 -#: netbox/extras/models/scripts.py:30 netbox/extras/models/staging.py:26 -#: netbox/ipam/models/asns.py:18 netbox/ipam/models/fhrp.py:25 -#: netbox/ipam/models/services.py:52 netbox/ipam/models/services.py:88 -#: netbox/ipam/models/vlans.py:36 netbox/ipam/models/vlans.py:184 -#: netbox/ipam/models/vrfs.py:22 netbox/ipam/models/vrfs.py:79 -#: netbox/netbox/models/__init__.py:137 netbox/netbox/models/__init__.py:181 -#: netbox/tenancy/models/contacts.py:64 netbox/tenancy/models/tenants.py:20 -#: netbox/tenancy/models/tenants.py:45 netbox/users/models/permissions.py:20 -#: netbox/users/models/users.py:28 netbox/virtualization/models/clusters.py:57 -#: netbox/virtualization/models/virtualmachines.py:72 -#: netbox/virtualization/models/virtualmachines.py:279 -#: netbox/vpn/models/crypto.py:24 netbox/vpn/models/crypto.py:71 -#: netbox/vpn/models/crypto.py:131 netbox/vpn/models/crypto.py:183 -#: netbox/vpn/models/crypto.py:221 netbox/vpn/models/l2vpn.py:22 -#: netbox/vpn/models/tunnels.py:35 netbox/wireless/models.py:51 +#: circuits/models/providers.py:22 circuits/models/providers.py:66 +#: circuits/models/providers.py:104 core/models/data.py:39 +#: core/models/jobs.py:45 dcim/models/device_component_templates.py:43 +#: dcim/models/device_components.py:53 dcim/models/devices.py:593 +#: dcim/models/devices.py:1330 dcim/models/devices.py:1395 +#: dcim/models/power.py:39 dcim/models/power.py:92 dcim/models/racks.py:262 +#: dcim/models/sites.py:138 extras/models/configs.py:36 +#: extras/models/configs.py:215 extras/models/customfields.py:92 +#: extras/models/models.py:56 extras/models/models.py:153 +#: extras/models/models.py:296 extras/models/models.py:392 +#: extras/models/models.py:501 extras/models/models.py:596 +#: extras/models/notifications.py:126 extras/models/scripts.py:30 +#: extras/models/staging.py:26 ipam/models/asns.py:18 ipam/models/fhrp.py:25 +#: ipam/models/services.py:52 ipam/models/services.py:88 +#: ipam/models/vlans.py:36 ipam/models/vlans.py:184 ipam/models/vrfs.py:22 +#: ipam/models/vrfs.py:79 netbox/models/__init__.py:137 +#: netbox/models/__init__.py:181 tenancy/models/contacts.py:64 +#: tenancy/models/tenants.py:20 tenancy/models/tenants.py:45 +#: users/models/permissions.py:20 users/models/users.py:28 +#: virtualization/models/clusters.py:57 +#: virtualization/models/virtualmachines.py:72 +#: virtualization/models/virtualmachines.py:279 vpn/models/crypto.py:24 +#: vpn/models/crypto.py:71 vpn/models/crypto.py:131 vpn/models/crypto.py:183 +#: vpn/models/crypto.py:221 vpn/models/l2vpn.py:22 vpn/models/tunnels.py:35 +#: wireless/models.py:51 msgid "name" msgstr "naam" -#: netbox/circuits/models/providers.py:25 +#: circuits/models/providers.py:25 msgid "Full name of the provider" msgstr "Volledige naam van de provider" -#: netbox/circuits/models/providers.py:28 netbox/dcim/models/devices.py:86 -#: netbox/dcim/models/racks.py:137 netbox/dcim/models/sites.py:149 -#: netbox/extras/models/models.py:506 netbox/ipam/models/asns.py:23 -#: netbox/ipam/models/vlans.py:40 netbox/netbox/models/__init__.py:141 -#: netbox/netbox/models/__init__.py:186 netbox/tenancy/models/tenants.py:25 -#: netbox/tenancy/models/tenants.py:49 netbox/vpn/models/l2vpn.py:27 -#: netbox/wireless/models.py:56 +#: circuits/models/providers.py:28 dcim/models/devices.py:86 +#: dcim/models/racks.py:137 dcim/models/sites.py:149 +#: extras/models/models.py:506 ipam/models/asns.py:23 ipam/models/vlans.py:40 +#: netbox/models/__init__.py:141 netbox/models/__init__.py:186 +#: tenancy/models/tenants.py:25 tenancy/models/tenants.py:49 +#: vpn/models/l2vpn.py:27 wireless/models.py:56 msgid "slug" msgstr "slug" -#: netbox/circuits/models/providers.py:42 +#: circuits/models/providers.py:42 msgid "provider" msgstr "provider" -#: netbox/circuits/models/providers.py:43 +#: circuits/models/providers.py:43 msgid "providers" msgstr "providers" -#: netbox/circuits/models/providers.py:63 +#: circuits/models/providers.py:63 msgid "account ID" msgstr "account-ID" -#: netbox/circuits/models/providers.py:86 +#: circuits/models/providers.py:86 msgid "provider account" msgstr "provideraccount" -#: netbox/circuits/models/providers.py:87 +#: circuits/models/providers.py:87 msgid "provider accounts" msgstr "provideraccounts" -#: netbox/circuits/models/providers.py:115 +#: circuits/models/providers.py:115 msgid "service ID" msgstr "service-ID" -#: netbox/circuits/models/providers.py:126 +#: circuits/models/providers.py:126 msgid "provider network" msgstr "netwerkprovider" -#: netbox/circuits/models/providers.py:127 +#: circuits/models/providers.py:127 msgid "provider networks" msgstr "providernetwerken" -#: netbox/circuits/tables/circuits.py:32 -#: netbox/circuits/tables/circuits.py:132 -#: netbox/circuits/tables/providers.py:18 -#: netbox/circuits/tables/providers.py:69 -#: netbox/circuits/tables/providers.py:99 netbox/core/tables/data.py:16 -#: netbox/core/tables/jobs.py:14 netbox/core/tables/plugins.py:44 -#: netbox/core/tables/tasks.py:11 netbox/core/tables/tasks.py:115 -#: netbox/dcim/forms/filtersets.py:63 netbox/dcim/forms/object_create.py:43 -#: netbox/dcim/tables/devices.py:52 netbox/dcim/tables/devices.py:92 -#: netbox/dcim/tables/devices.py:134 netbox/dcim/tables/devices.py:289 -#: netbox/dcim/tables/devices.py:392 netbox/dcim/tables/devices.py:433 -#: netbox/dcim/tables/devices.py:482 netbox/dcim/tables/devices.py:531 -#: netbox/dcim/tables/devices.py:648 netbox/dcim/tables/devices.py:731 -#: netbox/dcim/tables/devices.py:778 netbox/dcim/tables/devices.py:841 -#: netbox/dcim/tables/devices.py:911 netbox/dcim/tables/devices.py:974 -#: netbox/dcim/tables/devices.py:994 netbox/dcim/tables/devices.py:1023 -#: netbox/dcim/tables/devices.py:1053 netbox/dcim/tables/devicetypes.py:31 -#: netbox/dcim/tables/power.py:22 netbox/dcim/tables/power.py:62 -#: netbox/dcim/tables/racks.py:24 netbox/dcim/tables/racks.py:113 -#: netbox/dcim/tables/sites.py:24 netbox/dcim/tables/sites.py:51 -#: netbox/dcim/tables/sites.py:78 netbox/dcim/tables/sites.py:130 -#: netbox/extras/forms/filtersets.py:213 netbox/extras/tables/tables.py:58 -#: netbox/extras/tables/tables.py:122 netbox/extras/tables/tables.py:155 -#: netbox/extras/tables/tables.py:180 netbox/extras/tables/tables.py:246 -#: netbox/extras/tables/tables.py:361 netbox/extras/tables/tables.py:378 -#: netbox/extras/tables/tables.py:401 netbox/extras/tables/tables.py:439 -#: netbox/extras/tables/tables.py:491 netbox/extras/tables/tables.py:514 -#: netbox/ipam/forms/bulk_edit.py:406 netbox/ipam/forms/filtersets.py:386 -#: netbox/ipam/tables/asn.py:16 netbox/ipam/tables/ip.py:85 -#: netbox/ipam/tables/ip.py:160 netbox/ipam/tables/services.py:15 -#: netbox/ipam/tables/services.py:40 netbox/ipam/tables/vlans.py:64 -#: netbox/ipam/tables/vlans.py:114 netbox/ipam/tables/vrfs.py:26 -#: netbox/ipam/tables/vrfs.py:68 -#: netbox/templates/circuits/circuitgroup.html:28 -#: netbox/templates/circuits/circuittype.html:22 -#: netbox/templates/circuits/provideraccount.html:28 -#: netbox/templates/circuits/providernetwork.html:24 -#: netbox/templates/core/datasource.html:34 netbox/templates/core/job.html:44 -#: netbox/templates/core/plugin.html:53 -#: netbox/templates/core/rq_worker.html:43 -#: netbox/templates/dcim/consoleport.html:28 -#: netbox/templates/dcim/consoleserverport.html:28 -#: netbox/templates/dcim/devicebay.html:24 -#: netbox/templates/dcim/devicerole.html:26 -#: netbox/templates/dcim/frontport.html:28 -#: netbox/templates/dcim/inc/interface_vlans_table.html:5 -#: netbox/templates/dcim/inc/panels/inventory_items.html:18 -#: netbox/templates/dcim/interface.html:38 -#: netbox/templates/dcim/interface.html:165 -#: netbox/templates/dcim/inventoryitem.html:28 -#: netbox/templates/dcim/inventoryitemrole.html:18 -#: netbox/templates/dcim/location.html:29 -#: netbox/templates/dcim/manufacturer.html:36 -#: netbox/templates/dcim/modulebay.html:30 -#: netbox/templates/dcim/platform.html:29 -#: netbox/templates/dcim/poweroutlet.html:28 -#: netbox/templates/dcim/powerport.html:28 -#: netbox/templates/dcim/rackrole.html:22 -#: netbox/templates/dcim/rearport.html:28 netbox/templates/dcim/region.html:29 -#: netbox/templates/dcim/sitegroup.html:29 -#: netbox/templates/dcim/virtualdevicecontext.html:18 -#: netbox/templates/extras/configcontext.html:13 -#: netbox/templates/extras/configtemplate.html:13 -#: netbox/templates/extras/customfield.html:13 -#: netbox/templates/extras/customlink.html:13 -#: netbox/templates/extras/eventrule.html:13 -#: netbox/templates/extras/exporttemplate.html:15 -#: netbox/templates/extras/notificationgroup.html:14 -#: netbox/templates/extras/savedfilter.html:13 -#: netbox/templates/extras/script_list.html:44 -#: netbox/templates/extras/tag.html:14 netbox/templates/extras/webhook.html:13 -#: netbox/templates/ipam/asnrange.html:15 -#: netbox/templates/ipam/fhrpgroup.html:30 netbox/templates/ipam/rir.html:22 -#: netbox/templates/ipam/role.html:22 -#: netbox/templates/ipam/routetarget.html:13 -#: netbox/templates/ipam/service.html:24 -#: netbox/templates/ipam/servicetemplate.html:15 -#: netbox/templates/ipam/vlan.html:35 netbox/templates/ipam/vlangroup.html:30 -#: netbox/templates/tenancy/contact.html:25 -#: netbox/templates/tenancy/contactgroup.html:21 -#: netbox/templates/tenancy/contactrole.html:18 -#: netbox/templates/tenancy/tenantgroup.html:29 -#: netbox/templates/users/group.html:17 -#: netbox/templates/users/objectpermission.html:17 -#: netbox/templates/virtualization/cluster.html:13 -#: netbox/templates/virtualization/clustergroup.html:22 -#: netbox/templates/virtualization/clustertype.html:22 -#: netbox/templates/virtualization/virtualdisk.html:25 -#: netbox/templates/virtualization/virtualmachine.html:15 -#: netbox/templates/virtualization/vminterface.html:25 -#: netbox/templates/vpn/ikepolicy.html:13 -#: netbox/templates/vpn/ikeproposal.html:13 -#: netbox/templates/vpn/ipsecpolicy.html:13 -#: netbox/templates/vpn/ipsecprofile.html:13 -#: netbox/templates/vpn/ipsecprofile.html:36 -#: netbox/templates/vpn/ipsecprofile.html:69 -#: netbox/templates/vpn/ipsecproposal.html:13 -#: netbox/templates/vpn/l2vpn.html:14 netbox/templates/vpn/tunnel.html:21 -#: netbox/templates/vpn/tunnelgroup.html:26 -#: netbox/templates/wireless/wirelesslangroup.html:29 -#: netbox/tenancy/tables/contacts.py:19 netbox/tenancy/tables/contacts.py:41 -#: netbox/tenancy/tables/contacts.py:56 netbox/tenancy/tables/tenants.py:16 -#: netbox/tenancy/tables/tenants.py:38 netbox/users/tables.py:62 -#: netbox/users/tables.py:76 netbox/virtualization/forms/bulk_create.py:20 -#: netbox/virtualization/forms/object_create.py:13 -#: netbox/virtualization/forms/object_create.py:23 -#: netbox/virtualization/tables/clusters.py:17 -#: netbox/virtualization/tables/clusters.py:39 -#: netbox/virtualization/tables/clusters.py:62 -#: netbox/virtualization/tables/virtualmachines.py:55 -#: netbox/virtualization/tables/virtualmachines.py:139 -#: netbox/virtualization/tables/virtualmachines.py:194 -#: netbox/vpn/tables/crypto.py:18 netbox/vpn/tables/crypto.py:57 -#: netbox/vpn/tables/crypto.py:93 netbox/vpn/tables/crypto.py:129 -#: netbox/vpn/tables/crypto.py:158 netbox/vpn/tables/l2vpn.py:23 -#: netbox/vpn/tables/tunnels.py:18 netbox/vpn/tables/tunnels.py:40 -#: netbox/wireless/tables/wirelesslan.py:18 -#: netbox/wireless/tables/wirelesslan.py:79 +#: circuits/tables/circuits.py:32 circuits/tables/circuits.py:132 +#: circuits/tables/providers.py:18 circuits/tables/providers.py:69 +#: circuits/tables/providers.py:99 core/tables/data.py:16 +#: core/tables/jobs.py:14 core/tables/plugins.py:44 core/tables/tasks.py:11 +#: core/tables/tasks.py:115 dcim/forms/filtersets.py:63 +#: dcim/forms/object_create.py:43 dcim/tables/devices.py:52 +#: dcim/tables/devices.py:92 dcim/tables/devices.py:134 +#: dcim/tables/devices.py:289 dcim/tables/devices.py:392 +#: dcim/tables/devices.py:433 dcim/tables/devices.py:482 +#: dcim/tables/devices.py:531 dcim/tables/devices.py:648 +#: dcim/tables/devices.py:731 dcim/tables/devices.py:778 +#: dcim/tables/devices.py:841 dcim/tables/devices.py:911 +#: dcim/tables/devices.py:974 dcim/tables/devices.py:994 +#: dcim/tables/devices.py:1023 dcim/tables/devices.py:1053 +#: dcim/tables/devicetypes.py:31 dcim/tables/power.py:22 +#: dcim/tables/power.py:62 dcim/tables/racks.py:24 dcim/tables/racks.py:113 +#: dcim/tables/sites.py:24 dcim/tables/sites.py:51 dcim/tables/sites.py:78 +#: dcim/tables/sites.py:130 extras/forms/filtersets.py:213 +#: extras/tables/tables.py:58 extras/tables/tables.py:122 +#: extras/tables/tables.py:155 extras/tables/tables.py:180 +#: extras/tables/tables.py:246 extras/tables/tables.py:361 +#: extras/tables/tables.py:378 extras/tables/tables.py:401 +#: extras/tables/tables.py:439 extras/tables/tables.py:491 +#: extras/tables/tables.py:514 ipam/forms/bulk_edit.py:407 +#: ipam/forms/filtersets.py:386 ipam/tables/asn.py:16 ipam/tables/ip.py:85 +#: ipam/tables/ip.py:160 ipam/tables/services.py:15 ipam/tables/services.py:40 +#: ipam/tables/vlans.py:64 ipam/tables/vlans.py:114 ipam/tables/vrfs.py:26 +#: ipam/tables/vrfs.py:68 templates/circuits/circuitgroup.html:28 +#: templates/circuits/circuittype.html:22 +#: templates/circuits/provideraccount.html:28 +#: templates/circuits/providernetwork.html:24 +#: templates/core/datasource.html:34 templates/core/job.html:44 +#: templates/core/plugin.html:54 templates/core/rq_worker.html:43 +#: templates/dcim/consoleport.html:28 templates/dcim/consoleserverport.html:28 +#: templates/dcim/devicebay.html:24 templates/dcim/devicerole.html:26 +#: templates/dcim/frontport.html:28 +#: templates/dcim/inc/interface_vlans_table.html:5 +#: templates/dcim/inc/panels/inventory_items.html:18 +#: templates/dcim/interface.html:38 templates/dcim/interface.html:165 +#: templates/dcim/inventoryitem.html:28 +#: templates/dcim/inventoryitemrole.html:18 templates/dcim/location.html:29 +#: templates/dcim/manufacturer.html:36 templates/dcim/modulebay.html:30 +#: templates/dcim/platform.html:29 templates/dcim/poweroutlet.html:28 +#: templates/dcim/powerport.html:28 templates/dcim/rackrole.html:22 +#: templates/dcim/rearport.html:28 templates/dcim/region.html:29 +#: templates/dcim/sitegroup.html:29 +#: templates/dcim/virtualdevicecontext.html:18 +#: templates/extras/configcontext.html:13 +#: templates/extras/configtemplate.html:13 +#: templates/extras/customfield.html:13 templates/extras/customlink.html:13 +#: templates/extras/eventrule.html:13 templates/extras/exporttemplate.html:15 +#: templates/extras/notificationgroup.html:14 +#: templates/extras/savedfilter.html:13 templates/extras/script_list.html:44 +#: templates/extras/tag.html:14 templates/extras/webhook.html:13 +#: templates/ipam/asnrange.html:15 templates/ipam/fhrpgroup.html:30 +#: templates/ipam/rir.html:22 templates/ipam/role.html:22 +#: templates/ipam/routetarget.html:13 templates/ipam/service.html:24 +#: templates/ipam/servicetemplate.html:15 templates/ipam/vlan.html:35 +#: templates/ipam/vlangroup.html:30 templates/tenancy/contact.html:25 +#: templates/tenancy/contactgroup.html:21 +#: templates/tenancy/contactrole.html:18 templates/tenancy/tenantgroup.html:29 +#: templates/users/group.html:17 templates/users/objectpermission.html:17 +#: templates/virtualization/cluster.html:13 +#: templates/virtualization/clustergroup.html:22 +#: templates/virtualization/clustertype.html:22 +#: templates/virtualization/virtualdisk.html:25 +#: templates/virtualization/virtualmachine.html:15 +#: templates/virtualization/vminterface.html:25 +#: templates/vpn/ikepolicy.html:13 templates/vpn/ikeproposal.html:13 +#: templates/vpn/ipsecpolicy.html:13 templates/vpn/ipsecprofile.html:13 +#: templates/vpn/ipsecprofile.html:36 templates/vpn/ipsecprofile.html:69 +#: templates/vpn/ipsecproposal.html:13 templates/vpn/l2vpn.html:14 +#: templates/vpn/tunnel.html:21 templates/vpn/tunnelgroup.html:26 +#: templates/wireless/wirelesslangroup.html:29 tenancy/tables/contacts.py:19 +#: tenancy/tables/contacts.py:41 tenancy/tables/contacts.py:56 +#: tenancy/tables/tenants.py:16 tenancy/tables/tenants.py:38 +#: users/tables.py:62 users/tables.py:76 +#: virtualization/forms/bulk_create.py:20 +#: virtualization/forms/object_create.py:13 +#: virtualization/forms/object_create.py:23 +#: virtualization/tables/clusters.py:17 virtualization/tables/clusters.py:39 +#: virtualization/tables/clusters.py:62 +#: virtualization/tables/virtualmachines.py:55 +#: virtualization/tables/virtualmachines.py:139 +#: virtualization/tables/virtualmachines.py:194 vpn/tables/crypto.py:18 +#: vpn/tables/crypto.py:57 vpn/tables/crypto.py:93 vpn/tables/crypto.py:129 +#: vpn/tables/crypto.py:158 vpn/tables/l2vpn.py:23 vpn/tables/tunnels.py:18 +#: vpn/tables/tunnels.py:40 wireless/tables/wirelesslan.py:18 +#: wireless/tables/wirelesslan.py:79 msgid "Name" msgstr "Naam" -#: netbox/circuits/tables/circuits.py:41 -#: netbox/circuits/tables/circuits.py:138 -#: netbox/circuits/tables/providers.py:45 -#: netbox/circuits/tables/providers.py:79 netbox/netbox/navigation/menu.py:266 -#: netbox/netbox/navigation/menu.py:270 netbox/netbox/navigation/menu.py:272 -#: netbox/templates/circuits/provider.html:57 -#: netbox/templates/circuits/provideraccount.html:44 -#: netbox/templates/circuits/providernetwork.html:50 +#: circuits/tables/circuits.py:41 circuits/tables/circuits.py:138 +#: circuits/tables/providers.py:45 circuits/tables/providers.py:79 +#: netbox/navigation/menu.py:266 netbox/navigation/menu.py:270 +#: netbox/navigation/menu.py:272 templates/circuits/provider.html:57 +#: templates/circuits/provideraccount.html:44 +#: templates/circuits/providernetwork.html:50 msgid "Circuits" msgstr "Circuits" -#: netbox/circuits/tables/circuits.py:55 -#: netbox/templates/circuits/circuit.html:26 +#: circuits/tables/circuits.py:55 templates/circuits/circuit.html:26 msgid "Circuit ID" msgstr "Circuit-ID" -#: netbox/circuits/tables/circuits.py:69 -#: netbox/wireless/forms/model_forms.py:160 +#: circuits/tables/circuits.py:69 wireless/forms/model_forms.py:160 msgid "Side A" msgstr "Kant A" -#: netbox/circuits/tables/circuits.py:74 +#: circuits/tables/circuits.py:74 msgid "Side Z" msgstr "Kant Z" -#: netbox/circuits/tables/circuits.py:77 -#: netbox/templates/circuits/circuit.html:55 +#: circuits/tables/circuits.py:77 templates/circuits/circuit.html:55 msgid "Commit Rate" msgstr "Vastleggingspercentage" -#: netbox/circuits/tables/circuits.py:80 -#: netbox/circuits/tables/providers.py:48 -#: netbox/circuits/tables/providers.py:82 -#: netbox/circuits/tables/providers.py:107 netbox/dcim/tables/devices.py:1036 -#: netbox/dcim/tables/devicetypes.py:92 netbox/dcim/tables/modules.py:29 -#: netbox/dcim/tables/modules.py:72 netbox/dcim/tables/power.py:39 -#: netbox/dcim/tables/power.py:96 netbox/dcim/tables/racks.py:84 -#: netbox/dcim/tables/racks.py:145 netbox/dcim/tables/racks.py:225 -#: netbox/dcim/tables/sites.py:108 netbox/extras/tables/tables.py:582 -#: netbox/ipam/tables/asn.py:69 netbox/ipam/tables/fhrp.py:34 -#: netbox/ipam/tables/ip.py:136 netbox/ipam/tables/ip.py:275 -#: netbox/ipam/tables/ip.py:329 netbox/ipam/tables/ip.py:397 -#: netbox/ipam/tables/services.py:24 netbox/ipam/tables/services.py:54 -#: netbox/ipam/tables/vlans.py:145 netbox/ipam/tables/vrfs.py:47 -#: netbox/ipam/tables/vrfs.py:72 netbox/templates/dcim/htmx/cable_edit.html:89 -#: netbox/templates/generic/bulk_edit.html:86 -#: netbox/templates/inc/panels/comments.html:5 -#: netbox/tenancy/tables/contacts.py:68 netbox/tenancy/tables/tenants.py:46 -#: netbox/utilities/forms/fields/fields.py:29 -#: netbox/virtualization/tables/clusters.py:91 -#: netbox/virtualization/tables/virtualmachines.py:82 -#: netbox/vpn/tables/crypto.py:37 netbox/vpn/tables/crypto.py:74 -#: netbox/vpn/tables/crypto.py:109 netbox/vpn/tables/crypto.py:140 -#: netbox/vpn/tables/crypto.py:173 netbox/vpn/tables/l2vpn.py:37 -#: netbox/vpn/tables/tunnels.py:61 netbox/wireless/tables/wirelesslan.py:27 -#: netbox/wireless/tables/wirelesslan.py:58 +#: circuits/tables/circuits.py:80 circuits/tables/providers.py:48 +#: circuits/tables/providers.py:82 circuits/tables/providers.py:107 +#: dcim/tables/devices.py:1036 dcim/tables/devicetypes.py:92 +#: dcim/tables/modules.py:29 dcim/tables/modules.py:72 dcim/tables/power.py:39 +#: dcim/tables/power.py:96 dcim/tables/racks.py:84 dcim/tables/racks.py:145 +#: dcim/tables/racks.py:225 dcim/tables/sites.py:108 +#: extras/tables/tables.py:582 ipam/tables/asn.py:69 ipam/tables/fhrp.py:34 +#: ipam/tables/ip.py:136 ipam/tables/ip.py:275 ipam/tables/ip.py:329 +#: ipam/tables/ip.py:397 ipam/tables/services.py:24 ipam/tables/services.py:54 +#: ipam/tables/vlans.py:145 ipam/tables/vrfs.py:47 ipam/tables/vrfs.py:72 +#: templates/dcim/htmx/cable_edit.html:89 templates/generic/bulk_edit.html:86 +#: templates/inc/panels/comments.html:5 tenancy/tables/contacts.py:68 +#: tenancy/tables/tenants.py:46 utilities/forms/fields/fields.py:29 +#: virtualization/tables/clusters.py:91 +#: virtualization/tables/virtualmachines.py:82 vpn/tables/crypto.py:37 +#: vpn/tables/crypto.py:74 vpn/tables/crypto.py:109 vpn/tables/crypto.py:140 +#: vpn/tables/crypto.py:173 vpn/tables/l2vpn.py:37 vpn/tables/tunnels.py:61 +#: wireless/tables/wirelesslan.py:27 wireless/tables/wirelesslan.py:58 msgid "Comments" msgstr "Opmerkingen" -#: netbox/circuits/tables/circuits.py:86 -#: netbox/templates/tenancy/contact.html:84 -#: netbox/tenancy/tables/contacts.py:73 +#: circuits/tables/circuits.py:86 templates/tenancy/contact.html:84 +#: tenancy/tables/contacts.py:73 msgid "Assignments" msgstr "Toewijzingen" -#: netbox/circuits/tables/providers.py:23 +#: circuits/tables/providers.py:23 msgid "Accounts" msgstr "Accounts" -#: netbox/circuits/tables/providers.py:29 +#: circuits/tables/providers.py:29 msgid "Account Count" msgstr "Aantal accounts" -#: netbox/circuits/tables/providers.py:39 netbox/dcim/tables/sites.py:100 +#: circuits/tables/providers.py:39 dcim/tables/sites.py:100 msgid "ASN Count" msgstr "Aantal ASN's" -#: netbox/circuits/views.py:331 +#: circuits/views.py:331 #, python-brace-format msgid "No terminations have been defined for circuit {circuit}." msgstr "Er zijn geen afsluitingen gedefinieerd voor het circuit {circuit}." -#: netbox/circuits/views.py:380 +#: circuits/views.py:380 #, python-brace-format msgid "Swapped terminations for circuit {circuit}." msgstr "Verwisselde aansluitingen voor het circuit {circuit}." -#: netbox/core/api/views.py:39 +#: core/api/views.py:39 msgid "This user does not have permission to synchronize this data source." msgstr "" "Deze gebruiker heeft geen toestemming om deze gegevensbron te " "synchroniseren." -#: netbox/core/choices.py:18 +#: core/choices.py:18 msgid "New" msgstr "Nieuw" -#: netbox/core/choices.py:19 netbox/core/constants.py:18 -#: netbox/core/tables/tasks.py:15 netbox/templates/core/rq_task.html:77 +#: core/choices.py:19 core/constants.py:18 core/tables/tasks.py:15 +#: templates/core/rq_task.html:77 msgid "Queued" msgstr "In de wachtrij" -#: netbox/core/choices.py:20 +#: core/choices.py:20 msgid "Syncing" msgstr "Synchroniseren" -#: netbox/core/choices.py:21 netbox/core/choices.py:57 -#: netbox/core/tables/jobs.py:41 netbox/templates/core/job.html:86 +#: core/choices.py:21 core/choices.py:57 core/tables/jobs.py:41 +#: templates/core/job.html:86 msgid "Completed" msgstr "Voltooid" -#: netbox/core/choices.py:22 netbox/core/choices.py:59 -#: netbox/core/constants.py:20 netbox/core/tables/tasks.py:34 -#: netbox/dcim/choices.py:187 netbox/dcim/choices.py:239 -#: netbox/dcim/choices.py:1607 netbox/virtualization/choices.py:47 +#: core/choices.py:22 core/choices.py:59 core/constants.py:20 +#: core/tables/tasks.py:34 dcim/choices.py:187 dcim/choices.py:239 +#: dcim/choices.py:1607 virtualization/choices.py:47 msgid "Failed" msgstr "Mislukt" -#: netbox/core/choices.py:35 netbox/netbox/navigation/menu.py:335 -#: netbox/netbox/navigation/menu.py:339 -#: netbox/templates/extras/script/base.html:14 -#: netbox/templates/extras/script_list.html:7 -#: netbox/templates/extras/script_list.html:12 -#: netbox/templates/extras/script_result.html:17 +#: core/choices.py:35 netbox/navigation/menu.py:335 +#: netbox/navigation/menu.py:339 templates/extras/script/base.html:14 +#: templates/extras/script_list.html:7 templates/extras/script_list.html:12 +#: templates/extras/script_result.html:17 msgid "Scripts" msgstr "Scripts" -#: netbox/core/choices.py:36 netbox/templates/extras/report/base.html:13 +#: core/choices.py:36 templates/extras/report/base.html:13 msgid "Reports" msgstr "Rapporten" -#: netbox/core/choices.py:54 +#: core/choices.py:54 msgid "Pending" msgstr "In afwachting" -#: netbox/core/choices.py:55 netbox/core/constants.py:23 -#: netbox/core/tables/jobs.py:32 netbox/core/tables/tasks.py:38 -#: netbox/templates/core/job.html:73 +#: core/choices.py:55 core/constants.py:23 core/tables/jobs.py:32 +#: core/tables/tasks.py:38 templates/core/job.html:73 msgid "Scheduled" msgstr "Gepland" -#: netbox/core/choices.py:56 +#: core/choices.py:56 msgid "Running" msgstr "Wordt uitgevoerd" -#: netbox/core/choices.py:58 +#: core/choices.py:58 msgid "Errored" msgstr "Fout" -#: netbox/core/choices.py:87 netbox/core/tables/plugins.py:63 -#: netbox/templates/generic/object.html:61 +#: core/choices.py:87 core/tables/plugins.py:63 +#: templates/generic/object.html:61 msgid "Updated" msgstr "Bijgewerkt" -#: netbox/core/choices.py:88 +#: core/choices.py:88 msgid "Deleted" msgstr "Verwijderd" -#: netbox/core/constants.py:19 netbox/core/tables/tasks.py:30 +#: core/constants.py:19 core/tables/tasks.py:30 msgid "Finished" msgstr "Klaar" -#: netbox/core/constants.py:21 netbox/core/tables/jobs.py:38 -#: netbox/templates/core/job.html:82 -#: netbox/templates/extras/htmx/script_result.html:8 +#: core/constants.py:21 core/tables/jobs.py:38 templates/core/job.html:82 +#: templates/extras/htmx/script_result.html:8 msgid "Started" msgstr "Gestart" -#: netbox/core/constants.py:22 netbox/core/tables/tasks.py:26 +#: core/constants.py:22 core/tables/tasks.py:26 msgid "Deferred" msgstr "Uitgesteld" -#: netbox/core/constants.py:24 +#: core/constants.py:24 msgid "Stopped" msgstr "Gestopt" -#: netbox/core/constants.py:25 +#: core/constants.py:25 msgid "Cancelled" msgstr "Geannuleerd" -#: netbox/core/data_backends.py:32 netbox/core/tables/plugins.py:51 -#: netbox/templates/core/plugin.html:87 -#: netbox/templates/dcim/interface.html:216 +#: core/data_backends.py:32 core/tables/plugins.py:51 +#: templates/core/plugin.html:88 templates/dcim/interface.html:216 msgid "Local" msgstr "Lokaal" -#: netbox/core/data_backends.py:50 netbox/core/tables/change_logging.py:20 -#: netbox/templates/account/profile.html:15 -#: netbox/templates/users/user.html:17 netbox/users/tables.py:31 +#: core/data_backends.py:50 core/tables/change_logging.py:20 +#: templates/account/profile.html:15 templates/users/user.html:17 +#: users/tables.py:31 msgid "Username" msgstr "Gebruikersnaam" -#: netbox/core/data_backends.py:52 netbox/core/data_backends.py:58 +#: core/data_backends.py:52 core/data_backends.py:58 msgid "Only used for cloning with HTTP(S)" msgstr "Alleen gebruikt voor klonen met HTTP(S)" -#: netbox/core/data_backends.py:56 netbox/templates/account/base.html:23 -#: netbox/templates/account/password.html:12 -#: netbox/users/forms/model_forms.py:170 +#: core/data_backends.py:56 templates/account/base.html:23 +#: templates/account/password.html:12 users/forms/model_forms.py:170 msgid "Password" msgstr "Wachtwoord" -#: netbox/core/data_backends.py:62 +#: core/data_backends.py:62 msgid "Branch" msgstr "Branch" -#: netbox/core/data_backends.py:120 +#: core/data_backends.py:120 #, python-brace-format msgid "Fetching remote data failed ({name}): {error}" msgstr "Het ophalen van externe gegevens is mislukt ({name}): {error}" -#: netbox/core/data_backends.py:133 +#: core/data_backends.py:133 msgid "AWS access key ID" msgstr "AWS-toegangssleutel-ID" -#: netbox/core/data_backends.py:137 +#: core/data_backends.py:137 msgid "AWS secret access key" msgstr "Geheime toegangssleutel van AWS" -#: netbox/core/events.py:27 +#: core/events.py:27 msgid "Object created" msgstr "Object aangemaakt" -#: netbox/core/events.py:28 +#: core/events.py:28 msgid "Object updated" msgstr "Object bijgewerkt" -#: netbox/core/events.py:29 +#: core/events.py:29 msgid "Object deleted" msgstr "Object verwijderd" -#: netbox/core/events.py:30 +#: core/events.py:30 msgid "Job started" msgstr "Opdracht gestart" -#: netbox/core/events.py:31 +#: core/events.py:31 msgid "Job completed" msgstr "Opdracht voltooid" -#: netbox/core/events.py:32 +#: core/events.py:32 msgid "Job failed" msgstr "Opdracht is mislukt" -#: netbox/core/events.py:33 +#: core/events.py:33 msgid "Job errored" msgstr "Taak is fout" -#: netbox/core/filtersets.py:53 netbox/extras/filtersets.py:250 -#: netbox/extras/filtersets.py:633 netbox/extras/filtersets.py:661 +#: core/filtersets.py:53 extras/filtersets.py:250 extras/filtersets.py:633 +#: extras/filtersets.py:661 msgid "Data source (ID)" msgstr "Gegevensbron (ID)" -#: netbox/core/filtersets.py:59 +#: core/filtersets.py:59 msgid "Data source (name)" msgstr "Gegevensbron (naam)" -#: netbox/core/filtersets.py:145 netbox/dcim/filtersets.py:501 -#: netbox/extras/filtersets.py:287 netbox/extras/filtersets.py:331 -#: netbox/extras/filtersets.py:353 netbox/extras/filtersets.py:413 -#: netbox/users/filtersets.py:28 +#: core/filtersets.py:145 dcim/filtersets.py:501 extras/filtersets.py:287 +#: extras/filtersets.py:331 extras/filtersets.py:353 extras/filtersets.py:413 +#: users/filtersets.py:28 msgid "User (ID)" msgstr "Gebruiker (ID)" -#: netbox/core/filtersets.py:151 +#: core/filtersets.py:151 msgid "User name" msgstr "Gebruikersnaam" -#: netbox/core/forms/bulk_edit.py:25 netbox/core/forms/filtersets.py:43 -#: netbox/core/tables/data.py:26 netbox/dcim/forms/bulk_edit.py:1122 -#: netbox/dcim/forms/bulk_edit.py:1400 netbox/dcim/forms/filtersets.py:1370 -#: netbox/dcim/tables/devices.py:553 netbox/dcim/tables/devicetypes.py:224 -#: netbox/extras/forms/bulk_edit.py:123 netbox/extras/forms/bulk_edit.py:187 -#: netbox/extras/forms/bulk_edit.py:246 netbox/extras/forms/filtersets.py:142 -#: netbox/extras/forms/filtersets.py:229 netbox/extras/forms/filtersets.py:294 -#: netbox/extras/tables/tables.py:162 netbox/extras/tables/tables.py:253 -#: netbox/extras/tables/tables.py:415 netbox/netbox/preferences.py:22 -#: netbox/templates/core/datasource.html:42 -#: netbox/templates/dcim/interface.html:61 -#: netbox/templates/extras/customlink.html:17 -#: netbox/templates/extras/eventrule.html:17 -#: netbox/templates/extras/savedfilter.html:25 -#: netbox/templates/users/objectpermission.html:25 -#: netbox/templates/virtualization/vminterface.html:29 -#: netbox/users/forms/bulk_edit.py:89 netbox/users/forms/filtersets.py:70 -#: netbox/users/tables.py:83 netbox/virtualization/forms/bulk_edit.py:217 -#: netbox/virtualization/forms/filtersets.py:215 +#: core/forms/bulk_edit.py:25 core/forms/filtersets.py:43 +#: core/tables/data.py:26 dcim/forms/bulk_edit.py:1122 +#: dcim/forms/bulk_edit.py:1400 dcim/forms/filtersets.py:1370 +#: dcim/tables/devices.py:553 dcim/tables/devicetypes.py:224 +#: extras/forms/bulk_edit.py:123 extras/forms/bulk_edit.py:187 +#: extras/forms/bulk_edit.py:246 extras/forms/filtersets.py:142 +#: extras/forms/filtersets.py:229 extras/forms/filtersets.py:294 +#: extras/tables/tables.py:162 extras/tables/tables.py:253 +#: extras/tables/tables.py:415 netbox/preferences.py:22 +#: templates/core/datasource.html:42 templates/dcim/interface.html:61 +#: templates/extras/customlink.html:17 templates/extras/eventrule.html:17 +#: templates/extras/savedfilter.html:25 +#: templates/users/objectpermission.html:25 +#: templates/virtualization/vminterface.html:29 users/forms/bulk_edit.py:89 +#: users/forms/filtersets.py:70 users/tables.py:83 +#: virtualization/forms/bulk_edit.py:217 +#: virtualization/forms/filtersets.py:215 msgid "Enabled" msgstr "Ingeschakeld" -#: netbox/core/forms/bulk_edit.py:34 netbox/extras/forms/model_forms.py:285 -#: netbox/templates/extras/savedfilter.html:52 -#: netbox/vpn/forms/filtersets.py:97 netbox/vpn/forms/filtersets.py:127 -#: netbox/vpn/forms/filtersets.py:151 netbox/vpn/forms/filtersets.py:170 -#: netbox/vpn/forms/model_forms.py:301 netbox/vpn/forms/model_forms.py:321 -#: netbox/vpn/forms/model_forms.py:337 netbox/vpn/forms/model_forms.py:357 -#: netbox/vpn/forms/model_forms.py:380 +#: core/forms/bulk_edit.py:34 extras/forms/model_forms.py:285 +#: templates/extras/savedfilter.html:52 vpn/forms/filtersets.py:97 +#: vpn/forms/filtersets.py:127 vpn/forms/filtersets.py:151 +#: vpn/forms/filtersets.py:170 vpn/forms/model_forms.py:301 +#: vpn/forms/model_forms.py:321 vpn/forms/model_forms.py:337 +#: vpn/forms/model_forms.py:357 vpn/forms/model_forms.py:380 msgid "Parameters" msgstr "Parameters" -#: netbox/core/forms/bulk_edit.py:38 netbox/templates/core/datasource.html:68 +#: core/forms/bulk_edit.py:38 templates/core/datasource.html:68 msgid "Ignore rules" msgstr "Regels negeren" -#: netbox/core/forms/filtersets.py:30 netbox/core/forms/model_forms.py:97 -#: netbox/extras/forms/model_forms.py:248 -#: netbox/extras/forms/model_forms.py:578 -#: netbox/extras/forms/model_forms.py:632 netbox/extras/tables/tables.py:191 -#: netbox/extras/tables/tables.py:483 netbox/extras/tables/tables.py:518 -#: netbox/templates/core/datasource.html:31 -#: netbox/templates/dcim/device/render_config.html:18 -#: netbox/templates/extras/configcontext.html:29 -#: netbox/templates/extras/configtemplate.html:21 -#: netbox/templates/extras/exporttemplate.html:35 -#: netbox/templates/virtualization/virtualmachine/render_config.html:18 +#: core/forms/filtersets.py:30 core/forms/model_forms.py:97 +#: extras/forms/model_forms.py:248 extras/forms/model_forms.py:578 +#: extras/forms/model_forms.py:632 extras/tables/tables.py:191 +#: extras/tables/tables.py:483 extras/tables/tables.py:518 +#: templates/core/datasource.html:31 +#: templates/dcim/device/render_config.html:18 +#: templates/extras/configcontext.html:29 +#: templates/extras/configtemplate.html:21 +#: templates/extras/exporttemplate.html:35 +#: templates/virtualization/virtualmachine/render_config.html:18 msgid "Data Source" msgstr "Gegevensbron" -#: netbox/core/forms/filtersets.py:55 netbox/core/forms/mixins.py:21 +#: core/forms/filtersets.py:55 core/forms/mixins.py:21 msgid "File" msgstr "Bestand" -#: netbox/core/forms/filtersets.py:60 netbox/core/forms/mixins.py:16 -#: netbox/extras/forms/filtersets.py:170 netbox/extras/forms/filtersets.py:328 -#: netbox/extras/forms/filtersets.py:413 +#: core/forms/filtersets.py:60 core/forms/mixins.py:16 +#: extras/forms/filtersets.py:170 extras/forms/filtersets.py:328 +#: extras/forms/filtersets.py:413 msgid "Data source" msgstr "Gegevensbron" -#: netbox/core/forms/filtersets.py:70 netbox/extras/forms/filtersets.py:440 +#: core/forms/filtersets.py:70 extras/forms/filtersets.py:440 msgid "Creation" msgstr "Aangemaakt" -#: netbox/core/forms/filtersets.py:74 netbox/core/forms/filtersets.py:160 -#: netbox/extras/forms/filtersets.py:461 netbox/extras/tables/tables.py:220 -#: netbox/extras/tables/tables.py:294 netbox/extras/tables/tables.py:326 -#: netbox/extras/tables/tables.py:571 netbox/templates/core/job.html:38 -#: netbox/templates/core/objectchange.html:52 -#: netbox/tenancy/tables/contacts.py:90 netbox/vpn/tables/l2vpn.py:59 +#: core/forms/filtersets.py:74 core/forms/filtersets.py:160 +#: extras/forms/filtersets.py:461 extras/tables/tables.py:220 +#: extras/tables/tables.py:294 extras/tables/tables.py:326 +#: extras/tables/tables.py:571 templates/core/job.html:38 +#: templates/core/objectchange.html:52 tenancy/tables/contacts.py:90 +#: vpn/tables/l2vpn.py:59 msgid "Object Type" msgstr "Soort object" -#: netbox/core/forms/filtersets.py:84 +#: core/forms/filtersets.py:84 msgid "Created after" msgstr "Aangemaakt na" -#: netbox/core/forms/filtersets.py:89 +#: core/forms/filtersets.py:89 msgid "Created before" msgstr "Eerder gemaakt" -#: netbox/core/forms/filtersets.py:94 +#: core/forms/filtersets.py:94 msgid "Scheduled after" msgstr "Daarna gepland" -#: netbox/core/forms/filtersets.py:99 +#: core/forms/filtersets.py:99 msgid "Scheduled before" msgstr "Eerder gepland" -#: netbox/core/forms/filtersets.py:104 +#: core/forms/filtersets.py:104 msgid "Started after" msgstr "Begonnen na" -#: netbox/core/forms/filtersets.py:109 +#: core/forms/filtersets.py:109 msgid "Started before" msgstr "Eerder begonnen" -#: netbox/core/forms/filtersets.py:114 +#: core/forms/filtersets.py:114 msgid "Completed after" msgstr "Voltooid na" -#: netbox/core/forms/filtersets.py:119 +#: core/forms/filtersets.py:119 msgid "Completed before" msgstr "Eerder voltooid" -#: netbox/core/forms/filtersets.py:126 netbox/core/forms/filtersets.py:155 -#: netbox/dcim/forms/bulk_edit.py:456 netbox/dcim/forms/filtersets.py:418 -#: netbox/dcim/forms/filtersets.py:462 netbox/dcim/forms/model_forms.py:316 -#: netbox/extras/forms/filtersets.py:456 netbox/extras/forms/filtersets.py:475 -#: netbox/extras/tables/tables.py:302 netbox/extras/tables/tables.py:342 -#: netbox/templates/core/objectchange.html:36 -#: netbox/templates/dcim/rackreservation.html:58 -#: netbox/templates/extras/savedfilter.html:21 -#: netbox/templates/inc/user_menu.html:33 netbox/templates/users/token.html:21 -#: netbox/templates/users/user.html:6 netbox/templates/users/user.html:14 -#: netbox/users/filtersets.py:107 netbox/users/filtersets.py:174 -#: netbox/users/forms/filtersets.py:84 netbox/users/forms/filtersets.py:125 -#: netbox/users/forms/model_forms.py:155 netbox/users/forms/model_forms.py:192 -#: netbox/users/tables.py:19 +#: core/forms/filtersets.py:126 core/forms/filtersets.py:155 +#: dcim/forms/bulk_edit.py:456 dcim/forms/filtersets.py:418 +#: dcim/forms/filtersets.py:462 dcim/forms/model_forms.py:316 +#: extras/forms/filtersets.py:456 extras/forms/filtersets.py:475 +#: extras/tables/tables.py:302 extras/tables/tables.py:342 +#: templates/core/objectchange.html:36 templates/dcim/rackreservation.html:58 +#: templates/extras/savedfilter.html:21 templates/inc/user_menu.html:33 +#: templates/users/token.html:21 templates/users/user.html:6 +#: templates/users/user.html:14 users/filtersets.py:107 +#: users/filtersets.py:174 users/forms/filtersets.py:84 +#: users/forms/filtersets.py:125 users/forms/model_forms.py:155 +#: users/forms/model_forms.py:192 users/tables.py:19 msgid "User" msgstr "Gebruiker" -#: netbox/core/forms/filtersets.py:134 netbox/core/tables/change_logging.py:15 -#: netbox/extras/tables/tables.py:609 netbox/extras/tables/tables.py:646 -#: netbox/templates/core/objectchange.html:32 +#: core/forms/filtersets.py:134 core/tables/change_logging.py:15 +#: extras/tables/tables.py:609 extras/tables/tables.py:646 +#: templates/core/objectchange.html:32 msgid "Time" msgstr "Tijd" -#: netbox/core/forms/filtersets.py:139 netbox/extras/forms/filtersets.py:445 +#: core/forms/filtersets.py:139 extras/forms/filtersets.py:445 msgid "After" msgstr "Na" -#: netbox/core/forms/filtersets.py:144 netbox/extras/forms/filtersets.py:450 +#: core/forms/filtersets.py:144 extras/forms/filtersets.py:450 msgid "Before" msgstr "Voordien" -#: netbox/core/forms/filtersets.py:148 netbox/core/tables/change_logging.py:29 -#: netbox/extras/forms/model_forms.py:396 -#: netbox/templates/core/objectchange.html:46 -#: netbox/templates/extras/eventrule.html:71 +#: core/forms/filtersets.py:148 core/tables/change_logging.py:29 +#: extras/forms/model_forms.py:396 templates/core/objectchange.html:46 +#: templates/extras/eventrule.html:71 msgid "Action" msgstr "Actie" -#: netbox/core/forms/model_forms.py:54 netbox/core/tables/data.py:46 -#: netbox/templates/core/datafile.html:27 -#: netbox/templates/extras/report/base.html:33 -#: netbox/templates/extras/script/base.html:32 +#: core/forms/model_forms.py:54 core/tables/data.py:46 +#: templates/core/datafile.html:27 templates/extras/report/base.html:33 +#: templates/extras/script/base.html:32 msgid "Source" msgstr "Bron" -#: netbox/core/forms/model_forms.py:58 +#: core/forms/model_forms.py:58 msgid "Backend Parameters" msgstr "Parameters van de backend" -#: netbox/core/forms/model_forms.py:96 +#: core/forms/model_forms.py:96 msgid "File Upload" msgstr "Uploaden van bestanden" -#: netbox/core/forms/model_forms.py:108 +#: core/forms/model_forms.py:108 msgid "Cannot upload a file and sync from an existing file" msgstr "" "Kan een bestand niet uploaden en synchroniseren vanuit een bestaand bestand" -#: netbox/core/forms/model_forms.py:110 +#: core/forms/model_forms.py:110 msgid "Must upload a file or select a data file to sync" msgstr "" "Moet een bestand uploaden of een gegevensbestand selecteren om te " "synchroniseren" -#: netbox/core/forms/model_forms.py:153 -#: netbox/templates/dcim/rack_elevation_list.html:6 +#: core/forms/model_forms.py:153 templates/dcim/rack_elevation_list.html:6 msgid "Rack Elevations" msgstr "Rackverhogingen" -#: netbox/core/forms/model_forms.py:157 netbox/dcim/choices.py:1518 -#: netbox/dcim/forms/bulk_edit.py:969 netbox/dcim/forms/bulk_edit.py:1357 -#: netbox/dcim/forms/bulk_edit.py:1375 netbox/dcim/tables/racks.py:158 -#: netbox/netbox/navigation/menu.py:291 netbox/netbox/navigation/menu.py:295 +#: core/forms/model_forms.py:157 dcim/choices.py:1518 +#: dcim/forms/bulk_edit.py:969 dcim/forms/bulk_edit.py:1357 +#: dcim/forms/bulk_edit.py:1375 dcim/tables/racks.py:158 +#: netbox/navigation/menu.py:291 netbox/navigation/menu.py:295 msgid "Power" msgstr "Stroom" -#: netbox/core/forms/model_forms.py:159 netbox/netbox/navigation/menu.py:154 -#: netbox/templates/core/inc/config_data.html:37 +#: core/forms/model_forms.py:159 netbox/navigation/menu.py:154 +#: templates/core/inc/config_data.html:37 msgid "IPAM" msgstr "IPAM" -#: netbox/core/forms/model_forms.py:160 netbox/netbox/navigation/menu.py:230 -#: netbox/templates/core/inc/config_data.html:50 -#: netbox/vpn/forms/bulk_edit.py:77 netbox/vpn/forms/filtersets.py:43 -#: netbox/vpn/forms/model_forms.py:61 netbox/vpn/forms/model_forms.py:146 +#: core/forms/model_forms.py:160 netbox/navigation/menu.py:230 +#: templates/core/inc/config_data.html:50 vpn/forms/bulk_edit.py:77 +#: vpn/forms/filtersets.py:43 vpn/forms/model_forms.py:61 +#: vpn/forms/model_forms.py:146 msgid "Security" msgstr "Beveiliging" -#: netbox/core/forms/model_forms.py:161 -#: netbox/templates/core/inc/config_data.html:59 +#: core/forms/model_forms.py:161 templates/core/inc/config_data.html:59 msgid "Banners" msgstr "Banners" -#: netbox/core/forms/model_forms.py:162 -#: netbox/templates/core/inc/config_data.html:80 +#: core/forms/model_forms.py:162 templates/core/inc/config_data.html:80 msgid "Pagination" msgstr "Paginering" -#: netbox/core/forms/model_forms.py:163 netbox/extras/forms/bulk_edit.py:92 -#: netbox/extras/forms/filtersets.py:47 netbox/extras/forms/model_forms.py:116 -#: netbox/extras/forms/model_forms.py:129 -#: netbox/templates/core/inc/config_data.html:93 +#: core/forms/model_forms.py:163 extras/forms/bulk_edit.py:92 +#: extras/forms/filtersets.py:47 extras/forms/model_forms.py:116 +#: extras/forms/model_forms.py:129 templates/core/inc/config_data.html:93 msgid "Validation" msgstr "Validatie" -#: netbox/core/forms/model_forms.py:164 -#: netbox/templates/account/preferences.html:6 +#: core/forms/model_forms.py:164 templates/account/preferences.html:6 msgid "User Preferences" msgstr "Gebruikersvoorkeuren" -#: netbox/core/forms/model_forms.py:167 netbox/dcim/forms/filtersets.py:732 -#: netbox/templates/core/inc/config_data.html:127 -#: netbox/users/forms/model_forms.py:64 +#: core/forms/model_forms.py:167 dcim/forms/filtersets.py:732 +#: templates/core/inc/config_data.html:127 users/forms/model_forms.py:64 msgid "Miscellaneous" msgstr "Diversen" -#: netbox/core/forms/model_forms.py:169 +#: core/forms/model_forms.py:169 msgid "Config Revision" msgstr "Revisie van de configuratie" -#: netbox/core/forms/model_forms.py:208 +#: core/forms/model_forms.py:208 msgid "This parameter has been defined statically and cannot be modified." msgstr "Deze parameter is statisch gedefinieerd en kan niet worden gewijzigd." -#: netbox/core/forms/model_forms.py:216 +#: core/forms/model_forms.py:216 #, python-brace-format msgid "Current value: {value}" msgstr "Huidige waarde: {value}" -#: netbox/core/forms/model_forms.py:218 +#: core/forms/model_forms.py:218 msgid " (default)" msgstr " (standaard)" -#: netbox/core/models/change_logging.py:29 +#: core/models/change_logging.py:29 msgid "time" msgstr "tijd" -#: netbox/core/models/change_logging.py:42 +#: core/models/change_logging.py:42 msgid "user name" msgstr "gebruikersnaam" -#: netbox/core/models/change_logging.py:47 +#: core/models/change_logging.py:47 msgid "request ID" msgstr "verzoek-ID" -#: netbox/core/models/change_logging.py:52 netbox/extras/models/staging.py:69 +#: core/models/change_logging.py:52 extras/models/staging.py:69 msgid "action" msgstr "daad" -#: netbox/core/models/change_logging.py:86 +#: core/models/change_logging.py:86 msgid "pre-change data" msgstr "gegevens vóór de wijziging" -#: netbox/core/models/change_logging.py:92 +#: core/models/change_logging.py:92 msgid "post-change data" msgstr "gegevens na de wijziging" -#: netbox/core/models/change_logging.py:106 +#: core/models/change_logging.py:106 msgid "object change" msgstr "wijziging van het object" -#: netbox/core/models/change_logging.py:107 +#: core/models/change_logging.py:107 msgid "object changes" msgstr "wijzigingen in het object" -#: netbox/core/models/change_logging.py:123 +#: core/models/change_logging.py:123 #, python-brace-format msgid "Change logging is not supported for this object type ({type})." msgstr "" "Logboekregistratie van wijzigingen wordt niet ondersteund voor dit " "objecttype ({type})." -#: netbox/core/models/config.py:18 netbox/core/models/data.py:266 -#: netbox/core/models/files.py:27 netbox/core/models/jobs.py:49 -#: netbox/extras/models/models.py:730 netbox/extras/models/notifications.py:39 -#: netbox/extras/models/notifications.py:186 -#: netbox/netbox/models/features.py:53 netbox/users/models/tokens.py:32 +#: core/models/config.py:18 core/models/data.py:266 core/models/files.py:27 +#: core/models/jobs.py:49 extras/models/models.py:730 +#: extras/models/notifications.py:39 extras/models/notifications.py:186 +#: netbox/models/features.py:53 users/models/tokens.py:32 msgid "created" msgstr "aangemaakt" -#: netbox/core/models/config.py:22 +#: core/models/config.py:22 msgid "comment" msgstr "commentaar" -#: netbox/core/models/config.py:29 +#: core/models/config.py:29 msgid "configuration data" msgstr "configuratiegegevens" -#: netbox/core/models/config.py:36 +#: core/models/config.py:36 msgid "config revision" msgstr "revisie van de configuratie" -#: netbox/core/models/config.py:37 +#: core/models/config.py:37 msgid "config revisions" msgstr "revisies van de configuratie" -#: netbox/core/models/config.py:41 +#: core/models/config.py:41 msgid "Default configuration" msgstr "Standaardconfiguratie" -#: netbox/core/models/config.py:43 +#: core/models/config.py:43 msgid "Current configuration" msgstr "Huidige configuratie" -#: netbox/core/models/config.py:44 +#: core/models/config.py:44 #, python-brace-format msgid "Config revision #{id}" msgstr "Revisie van de configuratie #{id}" -#: netbox/core/models/data.py:44 netbox/dcim/models/cables.py:43 -#: netbox/dcim/models/device_component_templates.py:203 -#: netbox/dcim/models/device_component_templates.py:237 -#: netbox/dcim/models/device_component_templates.py:272 -#: netbox/dcim/models/device_component_templates.py:334 -#: netbox/dcim/models/device_component_templates.py:413 -#: netbox/dcim/models/device_component_templates.py:512 -#: netbox/dcim/models/device_component_templates.py:612 -#: netbox/dcim/models/device_components.py:283 -#: netbox/dcim/models/device_components.py:312 -#: netbox/dcim/models/device_components.py:345 -#: netbox/dcim/models/device_components.py:463 -#: netbox/dcim/models/device_components.py:605 -#: netbox/dcim/models/device_components.py:970 -#: netbox/dcim/models/device_components.py:1044 -#: netbox/dcim/models/power.py:102 netbox/extras/models/customfields.py:78 -#: netbox/extras/models/search.py:41 -#: netbox/virtualization/models/clusters.py:61 netbox/vpn/models/l2vpn.py:32 +#: core/models/data.py:44 dcim/models/cables.py:43 +#: dcim/models/device_component_templates.py:203 +#: dcim/models/device_component_templates.py:237 +#: dcim/models/device_component_templates.py:272 +#: dcim/models/device_component_templates.py:334 +#: dcim/models/device_component_templates.py:413 +#: dcim/models/device_component_templates.py:512 +#: dcim/models/device_component_templates.py:612 +#: dcim/models/device_components.py:283 dcim/models/device_components.py:312 +#: dcim/models/device_components.py:345 dcim/models/device_components.py:463 +#: dcim/models/device_components.py:605 dcim/models/device_components.py:970 +#: dcim/models/device_components.py:1044 dcim/models/power.py:102 +#: extras/models/customfields.py:78 extras/models/search.py:41 +#: virtualization/models/clusters.py:61 vpn/models/l2vpn.py:32 msgid "type" msgstr "type" -#: netbox/core/models/data.py:49 netbox/extras/choices.py:37 -#: netbox/extras/models/models.py:164 netbox/extras/tables/tables.py:656 -#: netbox/templates/core/datasource.html:58 -#: netbox/templates/core/plugin.html:65 +#: core/models/data.py:49 extras/choices.py:37 extras/models/models.py:164 +#: extras/tables/tables.py:656 templates/core/datasource.html:58 +#: templates/core/plugin.html:66 msgid "URL" msgstr "URL" -#: netbox/core/models/data.py:59 -#: netbox/dcim/models/device_component_templates.py:418 -#: netbox/dcim/models/device_components.py:512 -#: netbox/extras/models/models.py:70 netbox/extras/models/models.py:301 -#: netbox/extras/models/models.py:526 netbox/users/models/permissions.py:29 +#: core/models/data.py:59 dcim/models/device_component_templates.py:418 +#: dcim/models/device_components.py:512 extras/models/models.py:70 +#: extras/models/models.py:301 extras/models/models.py:526 +#: users/models/permissions.py:29 msgid "enabled" msgstr "ingeschakeld" -#: netbox/core/models/data.py:63 +#: core/models/data.py:63 msgid "ignore rules" msgstr "negeer regels" -#: netbox/core/models/data.py:65 +#: core/models/data.py:65 msgid "Patterns (one per line) matching files to ignore when syncing" msgstr "" "Patronen (één per regel) die overeenkomen met bestanden om te negeren " "tijdens het synchroniseren" -#: netbox/core/models/data.py:68 netbox/extras/models/models.py:534 +#: core/models/data.py:68 extras/models/models.py:534 msgid "parameters" msgstr "parameters" -#: netbox/core/models/data.py:73 +#: core/models/data.py:73 msgid "last synced" msgstr "laatst gesynchroniseerd" -#: netbox/core/models/data.py:81 +#: core/models/data.py:81 msgid "data source" msgstr "gegevensbron" -#: netbox/core/models/data.py:82 +#: core/models/data.py:82 msgid "data sources" msgstr "gegevensbronnen" -#: netbox/core/models/data.py:122 +#: core/models/data.py:122 #, python-brace-format msgid "Unknown backend type: {type}" msgstr "Onbekend backend-type: {type}" -#: netbox/core/models/data.py:164 +#: core/models/data.py:164 msgid "Cannot initiate sync; syncing already in progress." msgstr "Kan de synchronisatie niet starten; de synchronisatie is al bezig." -#: netbox/core/models/data.py:177 +#: core/models/data.py:177 msgid "" "There was an error initializing the backend. A dependency needs to be " "installed: " @@ -2172,1286 +1903,1224 @@ msgstr "" "Er is een fout opgetreden bij het initialiseren van de backend. Er moet een " "afhankelijkheid worden geïnstalleerd: " -#: netbox/core/models/data.py:270 netbox/core/models/files.py:31 -#: netbox/netbox/models/features.py:59 +#: core/models/data.py:270 core/models/files.py:31 +#: netbox/models/features.py:59 msgid "last updated" msgstr "laatst bijgewerkt" -#: netbox/core/models/data.py:280 netbox/dcim/models/cables.py:444 +#: core/models/data.py:280 dcim/models/cables.py:444 msgid "path" msgstr "pad" -#: netbox/core/models/data.py:283 +#: core/models/data.py:283 msgid "File path relative to the data source's root" msgstr "Bestandspad relatief ten opzichte van de hoofdmap van de gegevensbron" -#: netbox/core/models/data.py:287 netbox/ipam/models/ip.py:503 +#: core/models/data.py:287 ipam/models/ip.py:503 msgid "size" msgstr "grootte" -#: netbox/core/models/data.py:290 +#: core/models/data.py:290 msgid "hash" msgstr "hash" -#: netbox/core/models/data.py:294 +#: core/models/data.py:294 msgid "Length must be 64 hexadecimal characters." msgstr "De lengte moet 64 hexadecimale tekens zijn." -#: netbox/core/models/data.py:296 +#: core/models/data.py:296 msgid "SHA256 hash of the file data" msgstr "SHA256-hash van de bestandsgegevens" -#: netbox/core/models/data.py:313 +#: core/models/data.py:313 msgid "data file" msgstr "gegevensbestand" -#: netbox/core/models/data.py:314 +#: core/models/data.py:314 msgid "data files" msgstr "gegevensbestanden" -#: netbox/core/models/data.py:401 +#: core/models/data.py:401 msgid "auto sync record" msgstr "opname automatisch synchroniseren" -#: netbox/core/models/data.py:402 +#: core/models/data.py:402 msgid "auto sync records" msgstr "records automatisch synchroniseren" -#: netbox/core/models/files.py:37 +#: core/models/files.py:37 msgid "file root" msgstr "root van het bestand" -#: netbox/core/models/files.py:42 +#: core/models/files.py:42 msgid "file path" msgstr "bestandspad" -#: netbox/core/models/files.py:44 +#: core/models/files.py:44 msgid "File path relative to the designated root path" msgstr "Bestandspad relatief ten opzichte van het aangewezen hoofdpad" -#: netbox/core/models/files.py:61 +#: core/models/files.py:61 msgid "managed file" msgstr "beheerd bestand" -#: netbox/core/models/files.py:62 +#: core/models/files.py:62 msgid "managed files" msgstr "beheerde bestanden" -#: netbox/core/models/jobs.py:53 +#: core/models/jobs.py:53 msgid "scheduled" msgstr "gepland" -#: netbox/core/models/jobs.py:58 +#: core/models/jobs.py:58 msgid "interval" msgstr "interval" -#: netbox/core/models/jobs.py:64 +#: core/models/jobs.py:64 msgid "Recurrence interval (in minutes)" msgstr "Herhalingsinterval (in minuten)" -#: netbox/core/models/jobs.py:67 +#: core/models/jobs.py:67 msgid "started" msgstr "gestart" -#: netbox/core/models/jobs.py:72 +#: core/models/jobs.py:72 msgid "completed" msgstr "voltooid" -#: netbox/core/models/jobs.py:90 netbox/extras/models/models.py:101 -#: netbox/extras/models/staging.py:87 +#: core/models/jobs.py:90 extras/models/models.py:101 +#: extras/models/staging.py:87 msgid "data" msgstr "gegevens" -#: netbox/core/models/jobs.py:95 +#: core/models/jobs.py:95 msgid "error" msgstr "fout" -#: netbox/core/models/jobs.py:100 +#: core/models/jobs.py:100 msgid "job ID" msgstr "taak-ID" -#: netbox/core/models/jobs.py:111 +#: core/models/jobs.py:111 msgid "job" msgstr "taak" -#: netbox/core/models/jobs.py:112 +#: core/models/jobs.py:112 msgid "jobs" msgstr "taken" -#: netbox/core/models/jobs.py:135 +#: core/models/jobs.py:135 #, python-brace-format msgid "Jobs cannot be assigned to this object type ({type})." msgstr "Taken kunnen niet worden toegewezen aan dit objecttype ({type})." -#: netbox/core/models/jobs.py:185 +#: core/models/jobs.py:185 #, python-brace-format msgid "Invalid status for job termination. Choices are: {choices}" msgstr "" "Ongeldige status voor beëindiging van het dienstverband. De keuzes zijn: " "{choices}" -#: netbox/core/models/jobs.py:216 +#: core/models/jobs.py:216 msgid "" "enqueue() cannot be called with values for both schedule_at and immediate." msgstr "" "enqueue () kan niet worden aangeroepen met waarden voor zowel schedule_at " "als immediate." -#: netbox/core/signals.py:126 +#: core/signals.py:126 #, python-brace-format msgid "Deletion is prevented by a protection rule: {message}" msgstr "Verwijdering wordt voorkomen door een beschermingsregel: {message}" -#: netbox/core/tables/change_logging.py:25 -#: netbox/templates/account/profile.html:19 -#: netbox/templates/users/user.html:21 +#: core/tables/change_logging.py:25 templates/account/profile.html:19 +#: templates/users/user.html:21 msgid "Full Name" msgstr "Volledige naam" -#: netbox/core/tables/change_logging.py:37 netbox/core/tables/jobs.py:21 -#: netbox/extras/choices.py:41 netbox/extras/tables/tables.py:279 -#: netbox/extras/tables/tables.py:297 netbox/extras/tables/tables.py:329 -#: netbox/extras/tables/tables.py:409 netbox/extras/tables/tables.py:470 -#: netbox/extras/tables/tables.py:576 netbox/extras/tables/tables.py:616 -#: netbox/extras/tables/tables.py:653 netbox/netbox/tables/tables.py:244 -#: netbox/templates/core/objectchange.html:58 -#: netbox/templates/extras/eventrule.html:78 -#: netbox/templates/extras/journalentry.html:18 -#: netbox/tenancy/tables/contacts.py:93 netbox/vpn/tables/l2vpn.py:64 +#: core/tables/change_logging.py:37 core/tables/jobs.py:21 +#: extras/choices.py:41 extras/tables/tables.py:279 +#: extras/tables/tables.py:297 extras/tables/tables.py:329 +#: extras/tables/tables.py:409 extras/tables/tables.py:470 +#: extras/tables/tables.py:576 extras/tables/tables.py:616 +#: extras/tables/tables.py:653 netbox/tables/tables.py:244 +#: templates/core/objectchange.html:58 templates/extras/eventrule.html:78 +#: templates/extras/journalentry.html:18 tenancy/tables/contacts.py:93 +#: vpn/tables/l2vpn.py:64 msgid "Object" msgstr "Object" -#: netbox/core/tables/change_logging.py:42 -#: netbox/templates/core/objectchange.html:68 +#: core/tables/change_logging.py:42 templates/core/objectchange.html:68 msgid "Request ID" msgstr "ID aanvragen" -#: netbox/core/tables/config.py:21 netbox/users/forms/filtersets.py:44 -#: netbox/users/tables.py:39 +#: core/tables/config.py:21 users/forms/filtersets.py:44 users/tables.py:39 msgid "Is Active" msgstr "Is actief" -#: netbox/core/tables/data.py:50 netbox/templates/core/datafile.html:31 +#: core/tables/data.py:50 templates/core/datafile.html:31 msgid "Path" msgstr "Pad" -#: netbox/core/tables/data.py:54 -#: netbox/templates/extras/inc/result_pending.html:7 +#: core/tables/data.py:54 templates/extras/inc/result_pending.html:7 msgid "Last updated" msgstr "Laatst bijgewerkt" -#: netbox/core/tables/jobs.py:10 netbox/core/tables/tasks.py:76 -#: netbox/dcim/tables/devicetypes.py:164 netbox/extras/tables/tables.py:216 -#: netbox/extras/tables/tables.py:460 netbox/netbox/tables/tables.py:189 -#: netbox/templates/dcim/virtualchassis_edit.html:52 -#: netbox/utilities/forms/forms.py:73 -#: netbox/wireless/tables/wirelesslink.py:17 +#: core/tables/jobs.py:10 core/tables/tasks.py:76 +#: dcim/tables/devicetypes.py:164 extras/tables/tables.py:216 +#: extras/tables/tables.py:460 netbox/tables/tables.py:189 +#: templates/dcim/virtualchassis_edit.html:52 utilities/forms/forms.py:73 +#: wireless/tables/wirelesslink.py:17 msgid "ID" msgstr "ID" -#: netbox/core/tables/jobs.py:35 +#: core/tables/jobs.py:35 msgid "Interval" msgstr "Interval" -#: netbox/core/tables/plugins.py:14 netbox/templates/vpn/ipsecprofile.html:44 -#: netbox/vpn/forms/bulk_edit.py:141 netbox/vpn/forms/bulk_import.py:172 -#: netbox/vpn/tables/crypto.py:61 +#: core/tables/plugins.py:14 templates/vpn/ipsecprofile.html:44 +#: vpn/forms/bulk_edit.py:141 vpn/forms/bulk_import.py:172 +#: vpn/tables/crypto.py:61 msgid "Version" msgstr "Versie" -#: netbox/core/tables/plugins.py:19 netbox/templates/core/datafile.html:38 +#: core/tables/plugins.py:19 templates/core/datafile.html:38 msgid "Last Updated" msgstr "Laatst bijgewerkt" -#: netbox/core/tables/plugins.py:23 +#: core/tables/plugins.py:23 msgid "Minimum NetBox Version" msgstr "Minimale NetBox-versie" -#: netbox/core/tables/plugins.py:27 +#: core/tables/plugins.py:27 msgid "Maximum NetBox Version" msgstr "Maximale NetBox-versie" -#: netbox/core/tables/plugins.py:31 netbox/core/tables/plugins.py:74 +#: core/tables/plugins.py:31 core/tables/plugins.py:74 msgid "No plugin data found" msgstr "Geen plugin-gegevens gevonden" -#: netbox/core/tables/plugins.py:48 netbox/templates/core/plugin.html:61 +#: core/tables/plugins.py:48 templates/core/plugin.html:62 msgid "Author" msgstr "Auteur" -#: netbox/core/tables/plugins.py:54 +#: core/tables/plugins.py:54 msgid "Installed" msgstr "Geïnstalleerd" -#: netbox/core/tables/plugins.py:57 netbox/templates/core/plugin.html:83 +#: core/tables/plugins.py:57 templates/core/plugin.html:84 msgid "Certified" msgstr "Gecertificeerd" -#: netbox/core/tables/plugins.py:60 +#: core/tables/plugins.py:60 msgid "Published" msgstr "Gepubliceerd" -#: netbox/core/tables/plugins.py:66 +#: core/tables/plugins.py:66 msgid "Installed Version" msgstr "Geïnstalleerde versie" -#: netbox/core/tables/plugins.py:70 +#: core/tables/plugins.py:70 msgid "Latest Version" msgstr "Laatste versie" -#: netbox/core/tables/tasks.py:18 +#: core/tables/tasks.py:18 msgid "Oldest Task" msgstr "Oudste taak" -#: netbox/core/tables/tasks.py:42 netbox/templates/core/rq_worker_list.html:39 +#: core/tables/tasks.py:42 templates/core/rq_worker_list.html:39 msgid "Workers" msgstr "Workers" -#: netbox/core/tables/tasks.py:46 netbox/vpn/tables/tunnels.py:88 +#: core/tables/tasks.py:46 vpn/tables/tunnels.py:88 msgid "Host" msgstr "Host" -#: netbox/core/tables/tasks.py:50 netbox/ipam/forms/filtersets.py:535 +#: core/tables/tasks.py:50 ipam/forms/filtersets.py:535 msgid "Port" msgstr "Poort" -#: netbox/core/tables/tasks.py:54 +#: core/tables/tasks.py:54 msgid "DB" msgstr "DB" -#: netbox/core/tables/tasks.py:58 +#: core/tables/tasks.py:58 msgid "Scheduler PID" msgstr "PID van de planner" -#: netbox/core/tables/tasks.py:62 +#: core/tables/tasks.py:62 msgid "No queues found" msgstr "Geen wachtrijen gevonden" -#: netbox/core/tables/tasks.py:82 +#: core/tables/tasks.py:82 msgid "Enqueued" msgstr "In de wachtrij gezet" -#: netbox/core/tables/tasks.py:85 +#: core/tables/tasks.py:85 msgid "Ended" msgstr "Afgelopen" -#: netbox/core/tables/tasks.py:93 netbox/templates/core/rq_task.html:85 +#: core/tables/tasks.py:93 templates/core/rq_task.html:85 msgid "Callable" msgstr "Oproepbaar" -#: netbox/core/tables/tasks.py:97 +#: core/tables/tasks.py:97 msgid "No tasks found" msgstr "Geen taken gevonden" -#: netbox/core/tables/tasks.py:118 netbox/templates/core/rq_worker.html:47 +#: core/tables/tasks.py:118 templates/core/rq_worker.html:47 msgid "State" msgstr "Staat" -#: netbox/core/tables/tasks.py:121 netbox/templates/core/rq_worker.html:51 +#: core/tables/tasks.py:121 templates/core/rq_worker.html:51 msgid "Birth" msgstr "Geboorte" -#: netbox/core/tables/tasks.py:124 netbox/templates/core/rq_worker.html:59 +#: core/tables/tasks.py:124 templates/core/rq_worker.html:59 msgid "PID" msgstr "PIDE" -#: netbox/core/tables/tasks.py:128 +#: core/tables/tasks.py:128 msgid "No workers found" msgstr "Geen workers gevonden" -#: netbox/core/views.py:90 +#: core/views.py:90 #, python-brace-format msgid "Queued job #{id} to sync {datasource}" msgstr "Taak in de wachtrij #{id} om te synchroniseren {datasource}" -#: netbox/core/views.py:319 +#: core/views.py:319 #, python-brace-format msgid "Restored configuration revision #{id}" msgstr "Herstelde configuratierevisie #{id}" -#: netbox/core/views.py:412 netbox/core/views.py:455 netbox/core/views.py:531 +#: core/views.py:412 core/views.py:455 core/views.py:531 #, python-brace-format msgid "Job {job_id} not found" msgstr "Taak {job_id} niet gevonden" -#: netbox/core/views.py:463 +#: core/views.py:463 #, python-brace-format msgid "Job {id} has been deleted." msgstr "Baan {id} is verwijderd." -#: netbox/core/views.py:465 +#: core/views.py:465 #, python-brace-format msgid "Error deleting job {id}: {error}" msgstr "Fout bij het verwijderen van de taak {id}: {error}" -#: netbox/core/views.py:478 netbox/core/views.py:496 +#: core/views.py:478 core/views.py:496 #, python-brace-format msgid "Job {id} not found." msgstr "Baan {id} niet gevonden." -#: netbox/core/views.py:484 +#: core/views.py:484 #, python-brace-format msgid "Job {id} has been re-enqueued." msgstr "Baan {id} is opnieuw gevraagd." -#: netbox/core/views.py:519 +#: core/views.py:519 #, python-brace-format msgid "Job {id} has been enqueued." msgstr "Baan {id} is ondervraagd." -#: netbox/core/views.py:538 +#: core/views.py:538 #, python-brace-format msgid "Job {id} has been stopped." msgstr "Baan {id} is gestopt." -#: netbox/core/views.py:540 +#: core/views.py:540 #, python-brace-format msgid "Failed to stop job {id}" msgstr "Kon de taak niet stoppen {id}" -#: netbox/core/views.py:678 +#: core/views.py:678 msgid "Plugins catalog could not be loaded" msgstr "De catalogus met plug-ins kon niet worden geladen" -#: netbox/core/views.py:712 +#: core/views.py:712 #, python-brace-format msgid "Plugin {name} not found" msgstr "Plug-in {name} niet gevonden" -#: netbox/dcim/api/serializers_/devices.py:49 -#: netbox/dcim/api/serializers_/devicetypes.py:25 +#: dcim/api/serializers_/devices.py:49 dcim/api/serializers_/devicetypes.py:25 msgid "Position (U)" msgstr "Positie (U)" -#: netbox/dcim/api/serializers_/racks.py:112 -#: netbox/templates/dcim/rack.html:28 +#: dcim/api/serializers_/racks.py:112 templates/dcim/rack.html:28 msgid "Facility ID" msgstr "Faciliteits-ID" -#: netbox/dcim/choices.py:21 netbox/virtualization/choices.py:21 +#: dcim/choices.py:21 virtualization/choices.py:21 msgid "Staging" msgstr "Klaarzetten" -#: netbox/dcim/choices.py:23 netbox/dcim/choices.py:189 -#: netbox/dcim/choices.py:240 netbox/dcim/choices.py:1531 -#: netbox/virtualization/choices.py:23 netbox/virtualization/choices.py:48 +#: dcim/choices.py:23 dcim/choices.py:189 dcim/choices.py:240 +#: dcim/choices.py:1531 virtualization/choices.py:23 +#: virtualization/choices.py:48 msgid "Decommissioning" msgstr "Ontmanteling" -#: netbox/dcim/choices.py:24 +#: dcim/choices.py:24 msgid "Retired" msgstr "Opgeheven" -#: netbox/dcim/choices.py:65 +#: dcim/choices.py:65 msgid "2-post frame" msgstr "Frame met 2 stijlen" -#: netbox/dcim/choices.py:66 +#: dcim/choices.py:66 msgid "4-post frame" msgstr "Frame met 4 stijlen" -#: netbox/dcim/choices.py:67 +#: dcim/choices.py:67 msgid "4-post cabinet" msgstr "Kast met 4 posten" -#: netbox/dcim/choices.py:68 +#: dcim/choices.py:68 msgid "Wall-mounted frame" msgstr "Frame voor wandmontage" -#: netbox/dcim/choices.py:69 +#: dcim/choices.py:69 msgid "Wall-mounted frame (vertical)" msgstr "Frame voor wandmontage (verticaal)" -#: netbox/dcim/choices.py:70 +#: dcim/choices.py:70 msgid "Wall-mounted cabinet" msgstr "Kast voor wandmontage" -#: netbox/dcim/choices.py:71 +#: dcim/choices.py:71 msgid "Wall-mounted cabinet (vertical)" msgstr "Wandkast (verticaal)" -#: netbox/dcim/choices.py:83 netbox/dcim/choices.py:84 -#: netbox/dcim/choices.py:85 netbox/dcim/choices.py:86 +#: dcim/choices.py:83 dcim/choices.py:84 dcim/choices.py:85 dcim/choices.py:86 #, python-brace-format msgid "{n} inches" msgstr "{n} inches" -#: netbox/dcim/choices.py:100 netbox/ipam/choices.py:32 -#: netbox/ipam/choices.py:50 netbox/ipam/choices.py:70 -#: netbox/ipam/choices.py:155 netbox/wireless/choices.py:26 +#: dcim/choices.py:100 ipam/choices.py:32 ipam/choices.py:50 +#: ipam/choices.py:70 ipam/choices.py:155 wireless/choices.py:26 msgid "Reserved" msgstr "Gereserveerd" -#: netbox/dcim/choices.py:101 netbox/templates/dcim/device.html:259 +#: dcim/choices.py:101 templates/dcim/device.html:259 msgid "Available" msgstr "Beschikbaar" -#: netbox/dcim/choices.py:104 netbox/ipam/choices.py:33 -#: netbox/ipam/choices.py:51 netbox/ipam/choices.py:71 -#: netbox/ipam/choices.py:156 netbox/wireless/choices.py:28 +#: dcim/choices.py:104 ipam/choices.py:33 ipam/choices.py:51 +#: ipam/choices.py:71 ipam/choices.py:156 wireless/choices.py:28 msgid "Deprecated" msgstr "Verouderd" -#: netbox/dcim/choices.py:114 -#: netbox/templates/dcim/inc/panels/racktype_dimensions.html:41 +#: dcim/choices.py:114 templates/dcim/inc/panels/racktype_dimensions.html:41 msgid "Millimeters" msgstr "Millimeters" -#: netbox/dcim/choices.py:115 netbox/dcim/choices.py:1553 +#: dcim/choices.py:115 dcim/choices.py:1553 msgid "Inches" msgstr "Inches" -#: netbox/dcim/choices.py:136 netbox/dcim/choices.py:207 -#: netbox/dcim/choices.py:254 +#: dcim/choices.py:136 dcim/choices.py:207 dcim/choices.py:254 msgid "Front to rear" msgstr "Van voor naar achter" -#: netbox/dcim/choices.py:137 netbox/dcim/choices.py:208 -#: netbox/dcim/choices.py:255 +#: dcim/choices.py:137 dcim/choices.py:208 dcim/choices.py:255 msgid "Rear to front" msgstr "Van achter naar voren" -#: netbox/dcim/choices.py:151 netbox/dcim/forms/bulk_edit.py:68 -#: netbox/dcim/forms/bulk_edit.py:87 netbox/dcim/forms/bulk_edit.py:173 -#: netbox/dcim/forms/bulk_edit.py:1405 netbox/dcim/forms/bulk_import.py:60 -#: netbox/dcim/forms/bulk_import.py:74 netbox/dcim/forms/bulk_import.py:137 -#: netbox/dcim/forms/bulk_import.py:566 netbox/dcim/forms/bulk_import.py:833 -#: netbox/dcim/forms/bulk_import.py:1088 netbox/dcim/forms/filtersets.py:234 -#: netbox/dcim/forms/model_forms.py:74 netbox/dcim/forms/model_forms.py:93 -#: netbox/dcim/forms/model_forms.py:170 netbox/dcim/forms/model_forms.py:1062 -#: netbox/dcim/forms/model_forms.py:1502 -#: netbox/dcim/forms/object_import.py:176 netbox/dcim/tables/devices.py:656 -#: netbox/dcim/tables/devices.py:869 netbox/dcim/tables/devices.py:954 -#: netbox/extras/tables/tables.py:223 netbox/ipam/tables/fhrp.py:59 -#: netbox/ipam/tables/ip.py:378 netbox/ipam/tables/services.py:44 -#: netbox/templates/dcim/interface.html:102 -#: netbox/templates/dcim/interface.html:309 -#: netbox/templates/dcim/location.html:41 netbox/templates/dcim/region.html:37 -#: netbox/templates/dcim/sitegroup.html:37 -#: netbox/templates/ipam/service.html:28 -#: netbox/templates/tenancy/contactgroup.html:29 -#: netbox/templates/tenancy/tenantgroup.html:37 -#: netbox/templates/virtualization/vminterface.html:39 -#: netbox/templates/wireless/wirelesslangroup.html:37 -#: netbox/tenancy/forms/bulk_edit.py:27 netbox/tenancy/forms/bulk_edit.py:61 -#: netbox/tenancy/forms/bulk_import.py:24 -#: netbox/tenancy/forms/bulk_import.py:58 -#: netbox/tenancy/forms/model_forms.py:25 -#: netbox/tenancy/forms/model_forms.py:68 -#: netbox/virtualization/forms/bulk_edit.py:207 -#: netbox/virtualization/forms/bulk_import.py:151 -#: netbox/virtualization/tables/virtualmachines.py:162 -#: netbox/wireless/forms/bulk_edit.py:24 -#: netbox/wireless/forms/bulk_import.py:21 -#: netbox/wireless/forms/model_forms.py:21 +#: dcim/choices.py:151 dcim/forms/bulk_edit.py:68 dcim/forms/bulk_edit.py:87 +#: dcim/forms/bulk_edit.py:173 dcim/forms/bulk_edit.py:1405 +#: dcim/forms/bulk_import.py:60 dcim/forms/bulk_import.py:74 +#: dcim/forms/bulk_import.py:137 dcim/forms/bulk_import.py:566 +#: dcim/forms/bulk_import.py:833 dcim/forms/bulk_import.py:1088 +#: dcim/forms/filtersets.py:234 dcim/forms/model_forms.py:74 +#: dcim/forms/model_forms.py:93 dcim/forms/model_forms.py:170 +#: dcim/forms/model_forms.py:1062 dcim/forms/model_forms.py:1502 +#: dcim/forms/object_import.py:176 dcim/tables/devices.py:656 +#: dcim/tables/devices.py:869 dcim/tables/devices.py:954 +#: extras/tables/tables.py:223 ipam/tables/fhrp.py:59 ipam/tables/ip.py:378 +#: ipam/tables/services.py:44 templates/dcim/interface.html:102 +#: templates/dcim/interface.html:309 templates/dcim/location.html:41 +#: templates/dcim/region.html:37 templates/dcim/sitegroup.html:37 +#: templates/ipam/service.html:28 templates/tenancy/contactgroup.html:29 +#: templates/tenancy/tenantgroup.html:37 +#: templates/virtualization/vminterface.html:39 +#: templates/wireless/wirelesslangroup.html:37 tenancy/forms/bulk_edit.py:27 +#: tenancy/forms/bulk_edit.py:61 tenancy/forms/bulk_import.py:24 +#: tenancy/forms/bulk_import.py:58 tenancy/forms/model_forms.py:25 +#: tenancy/forms/model_forms.py:68 virtualization/forms/bulk_edit.py:207 +#: virtualization/forms/bulk_import.py:151 +#: virtualization/tables/virtualmachines.py:162 wireless/forms/bulk_edit.py:24 +#: wireless/forms/bulk_import.py:21 wireless/forms/model_forms.py:21 msgid "Parent" msgstr "Ouder" -#: netbox/dcim/choices.py:152 +#: dcim/choices.py:152 msgid "Child" msgstr "Kind" -#: netbox/dcim/choices.py:166 netbox/templates/dcim/device.html:340 -#: netbox/templates/dcim/rack.html:133 -#: netbox/templates/dcim/rack_elevation_list.html:20 -#: netbox/templates/dcim/rackreservation.html:76 +#: dcim/choices.py:166 templates/dcim/device.html:340 +#: templates/dcim/rack.html:133 templates/dcim/rack_elevation_list.html:20 +#: templates/dcim/rackreservation.html:76 msgid "Front" msgstr "Voorkant" -#: netbox/dcim/choices.py:167 netbox/templates/dcim/device.html:346 -#: netbox/templates/dcim/rack.html:139 -#: netbox/templates/dcim/rack_elevation_list.html:21 -#: netbox/templates/dcim/rackreservation.html:82 +#: dcim/choices.py:167 templates/dcim/device.html:346 +#: templates/dcim/rack.html:139 templates/dcim/rack_elevation_list.html:21 +#: templates/dcim/rackreservation.html:82 msgid "Rear" msgstr "Achterkant" -#: netbox/dcim/choices.py:186 netbox/dcim/choices.py:238 -#: netbox/virtualization/choices.py:46 +#: dcim/choices.py:186 dcim/choices.py:238 virtualization/choices.py:46 msgid "Staged" msgstr "Klaargezet" -#: netbox/dcim/choices.py:188 +#: dcim/choices.py:188 msgid "Inventory" msgstr "Inventaris" -#: netbox/dcim/choices.py:209 netbox/dcim/choices.py:256 +#: dcim/choices.py:209 dcim/choices.py:256 msgid "Left to right" msgstr "Van links naar rechts" -#: netbox/dcim/choices.py:210 netbox/dcim/choices.py:257 +#: dcim/choices.py:210 dcim/choices.py:257 msgid "Right to left" msgstr "Van rechts naar links" -#: netbox/dcim/choices.py:211 netbox/dcim/choices.py:258 +#: dcim/choices.py:211 dcim/choices.py:258 msgid "Side to rear" msgstr "Van links naar achteren" -#: netbox/dcim/choices.py:212 +#: dcim/choices.py:212 msgid "Rear to side" msgstr "Van achter naar links" -#: netbox/dcim/choices.py:213 +#: dcim/choices.py:213 msgid "Bottom to top" msgstr "Van onder naar boven" -#: netbox/dcim/choices.py:214 +#: dcim/choices.py:214 msgid "Top to bottom" msgstr "Van boven naar beneden" -#: netbox/dcim/choices.py:215 netbox/dcim/choices.py:259 -#: netbox/dcim/choices.py:1303 +#: dcim/choices.py:215 dcim/choices.py:259 dcim/choices.py:1303 msgid "Passive" msgstr "Passief" -#: netbox/dcim/choices.py:216 +#: dcim/choices.py:216 msgid "Mixed" msgstr "Gemengd" -#: netbox/dcim/choices.py:484 netbox/dcim/choices.py:733 +#: dcim/choices.py:484 dcim/choices.py:733 msgid "NEMA (Non-locking)" msgstr "NEMA (niet-vergrendelend)" -#: netbox/dcim/choices.py:506 netbox/dcim/choices.py:755 +#: dcim/choices.py:506 dcim/choices.py:755 msgid "NEMA (Locking)" msgstr "NEMA (vergrendeling)" -#: netbox/dcim/choices.py:530 netbox/dcim/choices.py:779 +#: dcim/choices.py:530 dcim/choices.py:779 msgid "California Style" msgstr "Californische stijl" -#: netbox/dcim/choices.py:538 +#: dcim/choices.py:538 msgid "International/ITA" msgstr "Internationaal/ITA" -#: netbox/dcim/choices.py:573 netbox/dcim/choices.py:814 +#: dcim/choices.py:573 dcim/choices.py:814 msgid "Proprietary" msgstr "Gepatenteerd" -#: netbox/dcim/choices.py:581 netbox/dcim/choices.py:824 -#: netbox/dcim/choices.py:1219 netbox/dcim/choices.py:1221 -#: netbox/dcim/choices.py:1447 netbox/dcim/choices.py:1449 -#: netbox/netbox/navigation/menu.py:200 +#: dcim/choices.py:581 dcim/choices.py:824 dcim/choices.py:1219 +#: dcim/choices.py:1221 dcim/choices.py:1447 dcim/choices.py:1449 +#: netbox/navigation/menu.py:200 msgid "Other" msgstr "Andere" -#: netbox/dcim/choices.py:787 +#: dcim/choices.py:787 msgid "ITA/International" msgstr "ITA/internationaal" -#: netbox/dcim/choices.py:854 +#: dcim/choices.py:854 msgid "Physical" msgstr "Fysiek" -#: netbox/dcim/choices.py:855 netbox/dcim/choices.py:1023 +#: dcim/choices.py:855 dcim/choices.py:1023 msgid "Virtual" msgstr "Virtueel" -#: netbox/dcim/choices.py:856 netbox/dcim/choices.py:1097 -#: netbox/dcim/forms/bulk_edit.py:1515 netbox/dcim/forms/filtersets.py:1330 -#: netbox/dcim/forms/model_forms.py:988 netbox/dcim/forms/model_forms.py:1397 -#: netbox/netbox/navigation/menu.py:140 netbox/netbox/navigation/menu.py:144 -#: netbox/templates/dcim/interface.html:210 +#: dcim/choices.py:856 dcim/choices.py:1097 dcim/forms/bulk_edit.py:1515 +#: dcim/forms/filtersets.py:1330 dcim/forms/model_forms.py:988 +#: dcim/forms/model_forms.py:1397 netbox/navigation/menu.py:140 +#: netbox/navigation/menu.py:144 templates/dcim/interface.html:210 msgid "Wireless" msgstr "Draadloos" -#: netbox/dcim/choices.py:1021 +#: dcim/choices.py:1021 msgid "Virtual interfaces" msgstr "Virtuele interfaces" -#: netbox/dcim/choices.py:1024 netbox/dcim/forms/bulk_edit.py:1410 -#: netbox/dcim/forms/bulk_import.py:840 netbox/dcim/forms/model_forms.py:974 -#: netbox/dcim/tables/devices.py:660 netbox/templates/dcim/interface.html:106 -#: netbox/templates/virtualization/vminterface.html:43 -#: netbox/virtualization/forms/bulk_edit.py:212 -#: netbox/virtualization/forms/bulk_import.py:158 -#: netbox/virtualization/tables/virtualmachines.py:166 +#: dcim/choices.py:1024 dcim/forms/bulk_edit.py:1410 +#: dcim/forms/bulk_import.py:840 dcim/forms/model_forms.py:974 +#: dcim/tables/devices.py:660 templates/dcim/interface.html:106 +#: templates/virtualization/vminterface.html:43 +#: virtualization/forms/bulk_edit.py:212 +#: virtualization/forms/bulk_import.py:158 +#: virtualization/tables/virtualmachines.py:166 msgid "Bridge" msgstr "Bridge" -#: netbox/dcim/choices.py:1025 +#: dcim/choices.py:1025 msgid "Link Aggregation Group (LAG)" msgstr "Linkaggregatiegroep (LAG)" -#: netbox/dcim/choices.py:1029 +#: dcim/choices.py:1029 msgid "Ethernet (fixed)" msgstr "Ethernet (vast)" -#: netbox/dcim/choices.py:1044 +#: dcim/choices.py:1044 msgid "Ethernet (modular)" msgstr "Ethernet (modulair)" -#: netbox/dcim/choices.py:1081 +#: dcim/choices.py:1081 msgid "Ethernet (backplane)" msgstr "Ethernet (backplane)" -#: netbox/dcim/choices.py:1113 +#: dcim/choices.py:1113 msgid "Cellular" msgstr "Mobiel" -#: netbox/dcim/choices.py:1165 netbox/dcim/forms/filtersets.py:383 -#: netbox/dcim/forms/filtersets.py:809 netbox/dcim/forms/filtersets.py:963 -#: netbox/dcim/forms/filtersets.py:1542 -#: netbox/templates/dcim/inventoryitem.html:52 -#: netbox/templates/dcim/virtualchassis_edit.html:54 +#: dcim/choices.py:1165 dcim/forms/filtersets.py:383 +#: dcim/forms/filtersets.py:809 dcim/forms/filtersets.py:963 +#: dcim/forms/filtersets.py:1542 templates/dcim/inventoryitem.html:52 +#: templates/dcim/virtualchassis_edit.html:54 msgid "Serial" msgstr "Serienummer" -#: netbox/dcim/choices.py:1180 +#: dcim/choices.py:1180 msgid "Coaxial" msgstr "Coaxiaal" -#: netbox/dcim/choices.py:1200 +#: dcim/choices.py:1200 msgid "Stacking" msgstr "Stapelen" -#: netbox/dcim/choices.py:1250 +#: dcim/choices.py:1250 msgid "Half" msgstr "Half" -#: netbox/dcim/choices.py:1251 +#: dcim/choices.py:1251 msgid "Full" msgstr "Volledig" -#: netbox/dcim/choices.py:1252 netbox/netbox/preferences.py:31 -#: netbox/wireless/choices.py:480 +#: dcim/choices.py:1252 netbox/preferences.py:31 wireless/choices.py:480 msgid "Auto" msgstr "Auto" -#: netbox/dcim/choices.py:1263 +#: dcim/choices.py:1263 msgid "Access" msgstr "Toegang" -#: netbox/dcim/choices.py:1264 netbox/ipam/tables/vlans.py:172 -#: netbox/ipam/tables/vlans.py:217 -#: netbox/templates/dcim/inc/interface_vlans_table.html:7 +#: dcim/choices.py:1264 ipam/tables/vlans.py:172 ipam/tables/vlans.py:217 +#: templates/dcim/inc/interface_vlans_table.html:7 msgid "Tagged" msgstr "Getagd" -#: netbox/dcim/choices.py:1265 +#: dcim/choices.py:1265 msgid "Tagged (All)" msgstr "Getagd (Alles)" -#: netbox/dcim/choices.py:1294 +#: dcim/choices.py:1294 msgid "IEEE Standard" msgstr "IEEE-standaard" -#: netbox/dcim/choices.py:1305 +#: dcim/choices.py:1305 msgid "Passive 24V (2-pair)" msgstr "Passief 24V (2 paren)" -#: netbox/dcim/choices.py:1306 +#: dcim/choices.py:1306 msgid "Passive 24V (4-pair)" msgstr "Passief 24V (4 paren)" -#: netbox/dcim/choices.py:1307 +#: dcim/choices.py:1307 msgid "Passive 48V (2-pair)" msgstr "Passief 48V (2 paren)" -#: netbox/dcim/choices.py:1308 +#: dcim/choices.py:1308 msgid "Passive 48V (4-pair)" msgstr "Passief 48V (4 paren)" -#: netbox/dcim/choices.py:1378 netbox/dcim/choices.py:1488 +#: dcim/choices.py:1378 dcim/choices.py:1488 msgid "Copper" msgstr "Koper" -#: netbox/dcim/choices.py:1401 +#: dcim/choices.py:1401 msgid "Fiber Optic" msgstr "Glasvezel" -#: netbox/dcim/choices.py:1434 netbox/dcim/choices.py:1517 +#: dcim/choices.py:1434 dcim/choices.py:1517 msgid "USB" msgstr "USB" -#: netbox/dcim/choices.py:1504 +#: dcim/choices.py:1504 msgid "Fiber" msgstr "Vezel" -#: netbox/dcim/choices.py:1529 netbox/dcim/forms/filtersets.py:1227 +#: dcim/choices.py:1529 dcim/forms/filtersets.py:1227 msgid "Connected" msgstr "Verbonden" -#: netbox/dcim/choices.py:1548 netbox/wireless/choices.py:497 +#: dcim/choices.py:1548 wireless/choices.py:497 msgid "Kilometers" msgstr "Kilometers" -#: netbox/dcim/choices.py:1549 netbox/templates/dcim/cable_trace.html:65 -#: netbox/wireless/choices.py:498 +#: dcim/choices.py:1549 templates/dcim/cable_trace.html:65 +#: wireless/choices.py:498 msgid "Meters" msgstr "Meters" -#: netbox/dcim/choices.py:1550 +#: dcim/choices.py:1550 msgid "Centimeters" msgstr "Centimeters" -#: netbox/dcim/choices.py:1551 netbox/wireless/choices.py:499 +#: dcim/choices.py:1551 wireless/choices.py:499 msgid "Miles" msgstr "Mijlen" -#: netbox/dcim/choices.py:1552 netbox/templates/dcim/cable_trace.html:66 -#: netbox/wireless/choices.py:500 +#: dcim/choices.py:1552 templates/dcim/cable_trace.html:66 +#: wireless/choices.py:500 msgid "Feet" msgstr "Feet" -#: netbox/dcim/choices.py:1568 netbox/templates/dcim/device.html:327 -#: netbox/templates/dcim/rack.html:107 +#: dcim/choices.py:1568 templates/dcim/device.html:327 +#: templates/dcim/rack.html:107 msgid "Kilograms" msgstr "Kilogrammen" -#: netbox/dcim/choices.py:1569 +#: dcim/choices.py:1569 msgid "Grams" msgstr "Gram" -#: netbox/dcim/choices.py:1570 netbox/templates/dcim/device.html:328 -#: netbox/templates/dcim/rack.html:108 +#: dcim/choices.py:1570 templates/dcim/device.html:328 +#: templates/dcim/rack.html:108 msgid "Pounds" msgstr "Ponden" -#: netbox/dcim/choices.py:1571 +#: dcim/choices.py:1571 msgid "Ounces" msgstr "Ons" -#: netbox/dcim/choices.py:1618 +#: dcim/choices.py:1618 msgid "Redundant" msgstr "Redundant" -#: netbox/dcim/choices.py:1639 +#: dcim/choices.py:1639 msgid "Single phase" msgstr "Een fase" -#: netbox/dcim/choices.py:1640 +#: dcim/choices.py:1640 msgid "Three-phase" msgstr "Drie fase" -#: netbox/dcim/fields.py:45 +#: dcim/fields.py:45 #, python-brace-format msgid "Invalid MAC address format: {value}" msgstr "Ongeldig formaat van het MAC-adres: {value}" -#: netbox/dcim/fields.py:71 +#: dcim/fields.py:71 #, python-brace-format msgid "Invalid WWN format: {value}" msgstr "Ongeldig WWN-formaat: {value}" -#: netbox/dcim/filtersets.py:86 +#: dcim/filtersets.py:86 msgid "Parent region (ID)" msgstr "Ouderregio (ID)" -#: netbox/dcim/filtersets.py:92 +#: dcim/filtersets.py:92 msgid "Parent region (slug)" msgstr "Ouderregio (slug)" -#: netbox/dcim/filtersets.py:116 +#: dcim/filtersets.py:116 msgid "Parent site group (ID)" msgstr "Oudersitegroep (ID)" -#: netbox/dcim/filtersets.py:122 +#: dcim/filtersets.py:122 msgid "Parent site group (slug)" msgstr "Bovenliggende sitegroep (slug)" -#: netbox/dcim/filtersets.py:164 netbox/extras/filtersets.py:364 -#: netbox/ipam/filtersets.py:841 netbox/ipam/filtersets.py:993 +#: dcim/filtersets.py:164 extras/filtersets.py:364 ipam/filtersets.py:841 +#: ipam/filtersets.py:993 msgid "Group (ID)" msgstr "Groep (ID)" -#: netbox/dcim/filtersets.py:170 +#: dcim/filtersets.py:170 msgid "Group (slug)" msgstr "Groep (slug)" -#: netbox/dcim/filtersets.py:176 netbox/dcim/filtersets.py:181 +#: dcim/filtersets.py:176 dcim/filtersets.py:181 msgid "AS (ID)" msgstr "ALS (ID)" -#: netbox/dcim/filtersets.py:246 +#: dcim/filtersets.py:246 msgid "Parent location (ID)" msgstr "Locatie van de ouder (ID)" -#: netbox/dcim/filtersets.py:252 +#: dcim/filtersets.py:252 msgid "Parent location (slug)" msgstr "Locatie van de ouder (slug)" -#: netbox/dcim/filtersets.py:258 netbox/dcim/filtersets.py:369 -#: netbox/dcim/filtersets.py:490 netbox/dcim/filtersets.py:1057 -#: netbox/dcim/filtersets.py:1404 netbox/dcim/filtersets.py:2182 +#: dcim/filtersets.py:258 dcim/filtersets.py:369 dcim/filtersets.py:490 +#: dcim/filtersets.py:1057 dcim/filtersets.py:1404 dcim/filtersets.py:2182 msgid "Location (ID)" msgstr "Locatie (ID)" -#: netbox/dcim/filtersets.py:265 netbox/dcim/filtersets.py:376 -#: netbox/dcim/filtersets.py:497 netbox/dcim/filtersets.py:1410 -#: netbox/extras/filtersets.py:542 +#: dcim/filtersets.py:265 dcim/filtersets.py:376 dcim/filtersets.py:497 +#: dcim/filtersets.py:1410 extras/filtersets.py:542 msgid "Location (slug)" msgstr "Locatie (slug)" -#: netbox/dcim/filtersets.py:296 netbox/dcim/filtersets.py:381 -#: netbox/dcim/filtersets.py:539 netbox/dcim/filtersets.py:678 -#: netbox/dcim/filtersets.py:882 netbox/dcim/filtersets.py:933 -#: netbox/dcim/filtersets.py:973 netbox/dcim/filtersets.py:1306 -#: netbox/dcim/filtersets.py:1840 +#: dcim/filtersets.py:296 dcim/filtersets.py:381 dcim/filtersets.py:539 +#: dcim/filtersets.py:678 dcim/filtersets.py:882 dcim/filtersets.py:933 +#: dcim/filtersets.py:973 dcim/filtersets.py:1306 dcim/filtersets.py:1840 msgid "Manufacturer (ID)" msgstr "Fabrikant (ID)" -#: netbox/dcim/filtersets.py:302 netbox/dcim/filtersets.py:387 -#: netbox/dcim/filtersets.py:545 netbox/dcim/filtersets.py:684 -#: netbox/dcim/filtersets.py:888 netbox/dcim/filtersets.py:939 -#: netbox/dcim/filtersets.py:979 netbox/dcim/filtersets.py:1312 -#: netbox/dcim/filtersets.py:1846 +#: dcim/filtersets.py:302 dcim/filtersets.py:387 dcim/filtersets.py:545 +#: dcim/filtersets.py:684 dcim/filtersets.py:888 dcim/filtersets.py:939 +#: dcim/filtersets.py:979 dcim/filtersets.py:1312 dcim/filtersets.py:1846 msgid "Manufacturer (slug)" msgstr "Fabrikant (slug)" -#: netbox/dcim/filtersets.py:393 +#: dcim/filtersets.py:393 msgid "Rack type (slug)" msgstr "Racktype (slug)" -#: netbox/dcim/filtersets.py:397 +#: dcim/filtersets.py:397 msgid "Rack type (ID)" msgstr "Racktype (ID)" -#: netbox/dcim/filtersets.py:411 netbox/dcim/filtersets.py:892 -#: netbox/dcim/filtersets.py:994 netbox/dcim/filtersets.py:1850 -#: netbox/ipam/filtersets.py:381 netbox/ipam/filtersets.py:493 -#: netbox/ipam/filtersets.py:1003 netbox/virtualization/filtersets.py:210 +#: dcim/filtersets.py:411 dcim/filtersets.py:892 dcim/filtersets.py:994 +#: dcim/filtersets.py:1850 ipam/filtersets.py:381 ipam/filtersets.py:493 +#: ipam/filtersets.py:1003 virtualization/filtersets.py:210 msgid "Role (ID)" msgstr "Rol (ID)" -#: netbox/dcim/filtersets.py:417 netbox/dcim/filtersets.py:898 -#: netbox/dcim/filtersets.py:1000 netbox/dcim/filtersets.py:1856 -#: netbox/extras/filtersets.py:558 netbox/ipam/filtersets.py:387 -#: netbox/ipam/filtersets.py:499 netbox/ipam/filtersets.py:1009 -#: netbox/virtualization/filtersets.py:216 +#: dcim/filtersets.py:417 dcim/filtersets.py:898 dcim/filtersets.py:1000 +#: dcim/filtersets.py:1856 extras/filtersets.py:558 ipam/filtersets.py:387 +#: ipam/filtersets.py:499 ipam/filtersets.py:1009 +#: virtualization/filtersets.py:216 msgid "Role (slug)" msgstr "Rol (slug)" -#: netbox/dcim/filtersets.py:447 netbox/dcim/filtersets.py:1062 -#: netbox/dcim/filtersets.py:1415 netbox/dcim/filtersets.py:2244 +#: dcim/filtersets.py:447 dcim/filtersets.py:1062 dcim/filtersets.py:1415 +#: dcim/filtersets.py:2244 msgid "Rack (ID)" msgstr "Rek (ID)" -#: netbox/dcim/filtersets.py:507 netbox/extras/filtersets.py:293 -#: netbox/extras/filtersets.py:337 netbox/extras/filtersets.py:359 -#: netbox/extras/filtersets.py:419 netbox/users/filtersets.py:113 -#: netbox/users/filtersets.py:180 +#: dcim/filtersets.py:507 extras/filtersets.py:293 extras/filtersets.py:337 +#: extras/filtersets.py:359 extras/filtersets.py:419 users/filtersets.py:113 +#: users/filtersets.py:180 msgid "User (name)" msgstr "Gebruiker (naam)" -#: netbox/dcim/filtersets.py:549 +#: dcim/filtersets.py:549 msgid "Default platform (ID)" msgstr "Standaardplatform (ID)" -#: netbox/dcim/filtersets.py:555 +#: dcim/filtersets.py:555 msgid "Default platform (slug)" msgstr "Standaardplatform (slug)" -#: netbox/dcim/filtersets.py:558 netbox/dcim/forms/filtersets.py:517 +#: dcim/filtersets.py:558 dcim/forms/filtersets.py:517 msgid "Has a front image" msgstr "Heeft een afbeelding van de voorkant" -#: netbox/dcim/filtersets.py:562 netbox/dcim/forms/filtersets.py:524 +#: dcim/filtersets.py:562 dcim/forms/filtersets.py:524 msgid "Has a rear image" msgstr "Heeft een afbeelding van de achterkant" -#: netbox/dcim/filtersets.py:567 netbox/dcim/filtersets.py:688 -#: netbox/dcim/filtersets.py:1131 netbox/dcim/forms/filtersets.py:531 -#: netbox/dcim/forms/filtersets.py:627 netbox/dcim/forms/filtersets.py:848 +#: dcim/filtersets.py:567 dcim/filtersets.py:688 dcim/filtersets.py:1131 +#: dcim/forms/filtersets.py:531 dcim/forms/filtersets.py:627 +#: dcim/forms/filtersets.py:848 msgid "Has console ports" msgstr "Heeft consolepoorten" -#: netbox/dcim/filtersets.py:571 netbox/dcim/filtersets.py:692 -#: netbox/dcim/filtersets.py:1135 netbox/dcim/forms/filtersets.py:538 -#: netbox/dcim/forms/filtersets.py:634 netbox/dcim/forms/filtersets.py:855 +#: dcim/filtersets.py:571 dcim/filtersets.py:692 dcim/filtersets.py:1135 +#: dcim/forms/filtersets.py:538 dcim/forms/filtersets.py:634 +#: dcim/forms/filtersets.py:855 msgid "Has console server ports" msgstr "Heeft consoleserverpoorten" -#: netbox/dcim/filtersets.py:575 netbox/dcim/filtersets.py:696 -#: netbox/dcim/filtersets.py:1139 netbox/dcim/forms/filtersets.py:545 -#: netbox/dcim/forms/filtersets.py:641 netbox/dcim/forms/filtersets.py:862 +#: dcim/filtersets.py:575 dcim/filtersets.py:696 dcim/filtersets.py:1139 +#: dcim/forms/filtersets.py:545 dcim/forms/filtersets.py:641 +#: dcim/forms/filtersets.py:862 msgid "Has power ports" msgstr "Heeft voedingspoorten" -#: netbox/dcim/filtersets.py:579 netbox/dcim/filtersets.py:700 -#: netbox/dcim/filtersets.py:1143 netbox/dcim/forms/filtersets.py:552 -#: netbox/dcim/forms/filtersets.py:648 netbox/dcim/forms/filtersets.py:869 +#: dcim/filtersets.py:579 dcim/filtersets.py:700 dcim/filtersets.py:1143 +#: dcim/forms/filtersets.py:552 dcim/forms/filtersets.py:648 +#: dcim/forms/filtersets.py:869 msgid "Has power outlets" msgstr "Heeft stopcontacten" -#: netbox/dcim/filtersets.py:583 netbox/dcim/filtersets.py:704 -#: netbox/dcim/filtersets.py:1147 netbox/dcim/forms/filtersets.py:559 -#: netbox/dcim/forms/filtersets.py:655 netbox/dcim/forms/filtersets.py:876 +#: dcim/filtersets.py:583 dcim/filtersets.py:704 dcim/filtersets.py:1147 +#: dcim/forms/filtersets.py:559 dcim/forms/filtersets.py:655 +#: dcim/forms/filtersets.py:876 msgid "Has interfaces" msgstr "Heeft interfaces" -#: netbox/dcim/filtersets.py:587 netbox/dcim/filtersets.py:708 -#: netbox/dcim/filtersets.py:1151 netbox/dcim/forms/filtersets.py:566 -#: netbox/dcim/forms/filtersets.py:662 netbox/dcim/forms/filtersets.py:883 +#: dcim/filtersets.py:587 dcim/filtersets.py:708 dcim/filtersets.py:1151 +#: dcim/forms/filtersets.py:566 dcim/forms/filtersets.py:662 +#: dcim/forms/filtersets.py:883 msgid "Has pass-through ports" msgstr "Heeft pass-through-poorten" -#: netbox/dcim/filtersets.py:591 netbox/dcim/filtersets.py:1155 -#: netbox/dcim/forms/filtersets.py:580 +#: dcim/filtersets.py:591 dcim/filtersets.py:1155 dcim/forms/filtersets.py:580 msgid "Has module bays" msgstr "Heeft modulevakken" -#: netbox/dcim/filtersets.py:595 netbox/dcim/filtersets.py:1159 -#: netbox/dcim/forms/filtersets.py:573 +#: dcim/filtersets.py:595 dcim/filtersets.py:1159 dcim/forms/filtersets.py:573 msgid "Has device bays" msgstr "Heeft apparaatvakken" -#: netbox/dcim/filtersets.py:599 netbox/dcim/forms/filtersets.py:587 +#: dcim/filtersets.py:599 dcim/forms/filtersets.py:587 msgid "Has inventory items" msgstr "Heeft inventarisitems" -#: netbox/dcim/filtersets.py:756 netbox/dcim/filtersets.py:989 -#: netbox/dcim/filtersets.py:1436 +#: dcim/filtersets.py:756 dcim/filtersets.py:989 dcim/filtersets.py:1436 msgid "Device type (ID)" msgstr "Soort apparaat (ID)" -#: netbox/dcim/filtersets.py:772 netbox/dcim/filtersets.py:1317 +#: dcim/filtersets.py:772 dcim/filtersets.py:1317 msgid "Module type (ID)" msgstr "Moduletype (ID)" -#: netbox/dcim/filtersets.py:804 netbox/dcim/filtersets.py:1591 +#: dcim/filtersets.py:804 dcim/filtersets.py:1591 msgid "Power port (ID)" msgstr "Voedingspoort (ID)" -#: netbox/dcim/filtersets.py:878 netbox/dcim/filtersets.py:1836 +#: dcim/filtersets.py:878 dcim/filtersets.py:1836 msgid "Parent inventory item (ID)" msgstr "Onderliggend inventarisitem (ID)" -#: netbox/dcim/filtersets.py:921 netbox/dcim/filtersets.py:947 -#: netbox/dcim/filtersets.py:1127 netbox/virtualization/filtersets.py:238 +#: dcim/filtersets.py:921 dcim/filtersets.py:947 dcim/filtersets.py:1127 +#: virtualization/filtersets.py:238 msgid "Config template (ID)" msgstr "Configuratiesjabloon (ID)" -#: netbox/dcim/filtersets.py:985 +#: dcim/filtersets.py:985 msgid "Device type (slug)" msgstr "Soort apparaat (slug)" -#: netbox/dcim/filtersets.py:1005 +#: dcim/filtersets.py:1005 msgid "Parent Device (ID)" msgstr "Ouderapparaat (ID)" -#: netbox/dcim/filtersets.py:1009 netbox/virtualization/filtersets.py:220 +#: dcim/filtersets.py:1009 virtualization/filtersets.py:220 msgid "Platform (ID)" msgstr "Platform (ID)" -#: netbox/dcim/filtersets.py:1015 netbox/extras/filtersets.py:569 -#: netbox/virtualization/filtersets.py:226 +#: dcim/filtersets.py:1015 extras/filtersets.py:569 +#: virtualization/filtersets.py:226 msgid "Platform (slug)" msgstr "Platform (slug)" -#: netbox/dcim/filtersets.py:1051 netbox/dcim/filtersets.py:1399 -#: netbox/dcim/filtersets.py:1934 netbox/dcim/filtersets.py:2176 -#: netbox/dcim/filtersets.py:2235 +#: dcim/filtersets.py:1051 dcim/filtersets.py:1399 dcim/filtersets.py:1934 +#: dcim/filtersets.py:2176 dcim/filtersets.py:2235 msgid "Site name (slug)" msgstr "Sitenaam (slug)" -#: netbox/dcim/filtersets.py:1067 +#: dcim/filtersets.py:1067 msgid "Parent bay (ID)" msgstr "Ouderbaby (ID)" -#: netbox/dcim/filtersets.py:1071 +#: dcim/filtersets.py:1071 msgid "VM cluster (ID)" msgstr "VM-cluster (ID)" -#: netbox/dcim/filtersets.py:1077 netbox/extras/filtersets.py:591 -#: netbox/virtualization/filtersets.py:136 +#: dcim/filtersets.py:1077 extras/filtersets.py:591 +#: virtualization/filtersets.py:136 msgid "Cluster group (slug)" msgstr "Clustergroep (slug)" -#: netbox/dcim/filtersets.py:1082 netbox/virtualization/filtersets.py:130 +#: dcim/filtersets.py:1082 virtualization/filtersets.py:130 msgid "Cluster group (ID)" msgstr "Clustergroep (ID)" -#: netbox/dcim/filtersets.py:1088 +#: dcim/filtersets.py:1088 msgid "Device model (slug)" msgstr "Apparaatmodel (slug)" -#: netbox/dcim/filtersets.py:1099 netbox/dcim/forms/bulk_edit.py:516 +#: dcim/filtersets.py:1099 dcim/forms/bulk_edit.py:516 msgid "Is full depth" msgstr "Is volledige diepte" -#: netbox/dcim/filtersets.py:1103 netbox/dcim/forms/common.py:18 -#: netbox/dcim/forms/filtersets.py:818 netbox/dcim/forms/filtersets.py:1385 -#: netbox/dcim/models/device_components.py:518 -#: netbox/virtualization/filtersets.py:230 -#: netbox/virtualization/filtersets.py:301 -#: netbox/virtualization/forms/filtersets.py:172 -#: netbox/virtualization/forms/filtersets.py:223 +#: dcim/filtersets.py:1103 dcim/forms/common.py:18 +#: dcim/forms/filtersets.py:818 dcim/forms/filtersets.py:1385 +#: dcim/models/device_components.py:518 virtualization/filtersets.py:230 +#: virtualization/filtersets.py:301 virtualization/forms/filtersets.py:172 +#: virtualization/forms/filtersets.py:223 msgid "MAC address" msgstr "MAC-adres" -#: netbox/dcim/filtersets.py:1110 netbox/dcim/filtersets.py:1274 -#: netbox/dcim/forms/filtersets.py:827 netbox/dcim/forms/filtersets.py:930 -#: netbox/virtualization/filtersets.py:234 -#: netbox/virtualization/forms/filtersets.py:176 +#: dcim/filtersets.py:1110 dcim/filtersets.py:1274 +#: dcim/forms/filtersets.py:827 dcim/forms/filtersets.py:930 +#: virtualization/filtersets.py:234 virtualization/forms/filtersets.py:176 msgid "Has a primary IP" msgstr "Heeft een primair IP-adres" -#: netbox/dcim/filtersets.py:1114 +#: dcim/filtersets.py:1114 msgid "Has an out-of-band IP" msgstr "Heeft een IP-adres buiten de band" -#: netbox/dcim/filtersets.py:1119 +#: dcim/filtersets.py:1119 msgid "Virtual chassis (ID)" msgstr "Virtueel chassis (ID)" -#: netbox/dcim/filtersets.py:1123 +#: dcim/filtersets.py:1123 msgid "Is a virtual chassis member" msgstr "Is een virtueel chassislid" -#: netbox/dcim/filtersets.py:1164 +#: dcim/filtersets.py:1164 msgid "OOB IP (ID)" msgstr "OOB IP (ID)" -#: netbox/dcim/filtersets.py:1168 +#: dcim/filtersets.py:1168 msgid "Has virtual device context" msgstr "Heeft een context voor een virtueel apparaat" -#: netbox/dcim/filtersets.py:1257 +#: dcim/filtersets.py:1257 msgid "VDC (ID)" msgstr "VDC (ID)" -#: netbox/dcim/filtersets.py:1262 +#: dcim/filtersets.py:1262 msgid "Device model" msgstr "Model van het apparaat" -#: netbox/dcim/filtersets.py:1267 netbox/ipam/filtersets.py:632 -#: netbox/vpn/filtersets.py:102 netbox/vpn/filtersets.py:401 +#: dcim/filtersets.py:1267 ipam/filtersets.py:632 vpn/filtersets.py:102 +#: vpn/filtersets.py:401 msgid "Interface (ID)" msgstr "Interface (ID)" -#: netbox/dcim/filtersets.py:1323 +#: dcim/filtersets.py:1323 msgid "Module type (model)" msgstr "Moduletype (model)" -#: netbox/dcim/filtersets.py:1329 +#: dcim/filtersets.py:1329 msgid "Module bay (ID)" msgstr "Modulevak (ID)" -#: netbox/dcim/filtersets.py:1333 netbox/dcim/filtersets.py:1425 -#: netbox/ipam/filtersets.py:611 netbox/ipam/filtersets.py:851 -#: netbox/ipam/filtersets.py:1115 netbox/virtualization/filtersets.py:161 -#: netbox/vpn/filtersets.py:379 +#: dcim/filtersets.py:1333 dcim/filtersets.py:1425 ipam/filtersets.py:611 +#: ipam/filtersets.py:851 ipam/filtersets.py:1115 +#: virtualization/filtersets.py:161 vpn/filtersets.py:379 msgid "Device (ID)" msgstr "Apparaat (ID)" -#: netbox/dcim/filtersets.py:1421 +#: dcim/filtersets.py:1421 msgid "Rack (name)" msgstr "Rack (naam)" -#: netbox/dcim/filtersets.py:1431 netbox/ipam/filtersets.py:606 -#: netbox/ipam/filtersets.py:846 netbox/ipam/filtersets.py:1121 -#: netbox/vpn/filtersets.py:374 +#: dcim/filtersets.py:1431 ipam/filtersets.py:606 ipam/filtersets.py:846 +#: ipam/filtersets.py:1121 vpn/filtersets.py:374 msgid "Device (name)" msgstr "Apparaat (naam)" -#: netbox/dcim/filtersets.py:1442 +#: dcim/filtersets.py:1442 msgid "Device type (model)" msgstr "Soort apparaat (model)" -#: netbox/dcim/filtersets.py:1447 +#: dcim/filtersets.py:1447 msgid "Device role (ID)" msgstr "Rol van het apparaat (ID)" -#: netbox/dcim/filtersets.py:1453 +#: dcim/filtersets.py:1453 msgid "Device role (slug)" msgstr "Rol van het apparaat (slug)" -#: netbox/dcim/filtersets.py:1458 +#: dcim/filtersets.py:1458 msgid "Virtual Chassis (ID)" msgstr "Virtueel chassis (ID)" -#: netbox/dcim/filtersets.py:1464 netbox/dcim/forms/filtersets.py:109 -#: netbox/dcim/tables/devices.py:206 netbox/netbox/navigation/menu.py:79 -#: netbox/templates/dcim/device.html:120 -#: netbox/templates/dcim/device_edit.html:93 -#: netbox/templates/dcim/virtualchassis.html:20 -#: netbox/templates/dcim/virtualchassis_add.html:8 -#: netbox/templates/dcim/virtualchassis_edit.html:24 +#: dcim/filtersets.py:1464 dcim/forms/filtersets.py:109 +#: dcim/tables/devices.py:206 netbox/navigation/menu.py:79 +#: templates/dcim/device.html:120 templates/dcim/device_edit.html:93 +#: templates/dcim/virtualchassis.html:20 +#: templates/dcim/virtualchassis_add.html:8 +#: templates/dcim/virtualchassis_edit.html:24 msgid "Virtual Chassis" msgstr "Virtueel chassis" -#: netbox/dcim/filtersets.py:1488 +#: dcim/filtersets.py:1488 msgid "Module (ID)" msgstr "Module (ID)" -#: netbox/dcim/filtersets.py:1495 +#: dcim/filtersets.py:1495 msgid "Cable (ID)" msgstr "Kabel (ID)" -#: netbox/dcim/filtersets.py:1604 netbox/ipam/forms/bulk_import.py:189 -#: netbox/vpn/forms/bulk_import.py:308 +#: dcim/filtersets.py:1604 ipam/forms/bulk_import.py:189 +#: vpn/forms/bulk_import.py:308 msgid "Assigned VLAN" msgstr "Toegewezen VLAN" -#: netbox/dcim/filtersets.py:1608 +#: dcim/filtersets.py:1608 msgid "Assigned VID" msgstr "Toegewezen VID" -#: netbox/dcim/filtersets.py:1613 netbox/dcim/forms/bulk_edit.py:1489 -#: netbox/dcim/forms/bulk_import.py:891 netbox/dcim/forms/filtersets.py:1428 -#: netbox/dcim/forms/model_forms.py:1378 -#: netbox/dcim/models/device_components.py:711 -#: netbox/dcim/tables/devices.py:626 netbox/ipam/filtersets.py:316 -#: netbox/ipam/filtersets.py:327 netbox/ipam/filtersets.py:483 -#: netbox/ipam/filtersets.py:584 netbox/ipam/filtersets.py:595 -#: netbox/ipam/forms/bulk_edit.py:241 netbox/ipam/forms/bulk_edit.py:297 -#: netbox/ipam/forms/bulk_edit.py:339 netbox/ipam/forms/bulk_import.py:157 -#: netbox/ipam/forms/bulk_import.py:243 netbox/ipam/forms/bulk_import.py:279 -#: netbox/ipam/forms/filtersets.py:67 netbox/ipam/forms/filtersets.py:172 -#: netbox/ipam/forms/filtersets.py:309 netbox/ipam/forms/model_forms.py:62 -#: netbox/ipam/forms/model_forms.py:202 netbox/ipam/forms/model_forms.py:247 -#: netbox/ipam/forms/model_forms.py:300 netbox/ipam/forms/model_forms.py:431 -#: netbox/ipam/forms/model_forms.py:445 netbox/ipam/forms/model_forms.py:459 -#: netbox/ipam/models/ip.py:233 netbox/ipam/models/ip.py:512 -#: netbox/ipam/models/ip.py:720 netbox/ipam/models/vrfs.py:62 -#: netbox/ipam/tables/ip.py:242 netbox/ipam/tables/ip.py:309 -#: netbox/ipam/tables/ip.py:360 netbox/ipam/tables/ip.py:450 -#: netbox/templates/dcim/interface.html:133 -#: netbox/templates/ipam/ipaddress.html:18 -#: netbox/templates/ipam/iprange.html:40 netbox/templates/ipam/prefix.html:19 -#: netbox/templates/ipam/vrf.html:7 netbox/templates/ipam/vrf.html:13 -#: netbox/templates/virtualization/vminterface.html:47 -#: netbox/virtualization/forms/bulk_edit.py:261 -#: netbox/virtualization/forms/bulk_import.py:171 -#: netbox/virtualization/forms/filtersets.py:228 -#: netbox/virtualization/forms/model_forms.py:344 -#: netbox/virtualization/models/virtualmachines.py:355 -#: netbox/virtualization/tables/virtualmachines.py:143 +#: dcim/filtersets.py:1613 dcim/forms/bulk_edit.py:1489 +#: dcim/forms/bulk_import.py:891 dcim/forms/filtersets.py:1428 +#: dcim/forms/model_forms.py:1378 dcim/models/device_components.py:711 +#: dcim/tables/devices.py:626 ipam/filtersets.py:316 ipam/filtersets.py:327 +#: ipam/filtersets.py:483 ipam/filtersets.py:584 ipam/filtersets.py:595 +#: ipam/forms/bulk_edit.py:242 ipam/forms/bulk_edit.py:298 +#: ipam/forms/bulk_edit.py:340 ipam/forms/bulk_import.py:157 +#: ipam/forms/bulk_import.py:243 ipam/forms/bulk_import.py:279 +#: ipam/forms/filtersets.py:67 ipam/forms/filtersets.py:172 +#: ipam/forms/filtersets.py:309 ipam/forms/model_forms.py:62 +#: ipam/forms/model_forms.py:202 ipam/forms/model_forms.py:247 +#: ipam/forms/model_forms.py:300 ipam/forms/model_forms.py:431 +#: ipam/forms/model_forms.py:445 ipam/forms/model_forms.py:459 +#: ipam/models/ip.py:233 ipam/models/ip.py:512 ipam/models/ip.py:720 +#: ipam/models/vrfs.py:62 ipam/tables/ip.py:242 ipam/tables/ip.py:309 +#: ipam/tables/ip.py:360 ipam/tables/ip.py:450 +#: templates/dcim/interface.html:133 templates/ipam/ipaddress.html:18 +#: templates/ipam/iprange.html:40 templates/ipam/prefix.html:19 +#: templates/ipam/vrf.html:7 templates/ipam/vrf.html:13 +#: templates/virtualization/vminterface.html:47 +#: virtualization/forms/bulk_edit.py:261 +#: virtualization/forms/bulk_import.py:171 +#: virtualization/forms/filtersets.py:228 +#: virtualization/forms/model_forms.py:344 +#: virtualization/models/virtualmachines.py:355 +#: virtualization/tables/virtualmachines.py:143 msgid "VRF" msgstr "VRF" -#: netbox/dcim/filtersets.py:1619 netbox/ipam/filtersets.py:322 -#: netbox/ipam/filtersets.py:333 netbox/ipam/filtersets.py:489 -#: netbox/ipam/filtersets.py:590 netbox/ipam/filtersets.py:601 +#: dcim/filtersets.py:1619 ipam/filtersets.py:322 ipam/filtersets.py:333 +#: ipam/filtersets.py:489 ipam/filtersets.py:590 ipam/filtersets.py:601 msgid "VRF (RD)" msgstr "VRF (RD)" -#: netbox/dcim/filtersets.py:1624 netbox/ipam/filtersets.py:1030 -#: netbox/vpn/filtersets.py:342 +#: dcim/filtersets.py:1624 ipam/filtersets.py:1030 vpn/filtersets.py:342 msgid "L2VPN (ID)" msgstr "L2VPN (ID)" -#: netbox/dcim/filtersets.py:1630 netbox/dcim/forms/filtersets.py:1433 -#: netbox/dcim/tables/devices.py:570 netbox/ipam/filtersets.py:1036 -#: netbox/ipam/forms/filtersets.py:518 netbox/ipam/tables/vlans.py:137 -#: netbox/templates/dcim/interface.html:93 netbox/templates/ipam/vlan.html:66 -#: netbox/templates/vpn/l2vpntermination.html:12 -#: netbox/virtualization/forms/filtersets.py:233 -#: netbox/vpn/forms/bulk_import.py:280 netbox/vpn/forms/filtersets.py:246 -#: netbox/vpn/forms/model_forms.py:409 netbox/vpn/forms/model_forms.py:427 -#: netbox/vpn/models/l2vpn.py:63 netbox/vpn/tables/l2vpn.py:55 +#: dcim/filtersets.py:1630 dcim/forms/filtersets.py:1433 +#: dcim/tables/devices.py:570 ipam/filtersets.py:1036 +#: ipam/forms/filtersets.py:518 ipam/tables/vlans.py:137 +#: templates/dcim/interface.html:93 templates/ipam/vlan.html:66 +#: templates/vpn/l2vpntermination.html:12 +#: virtualization/forms/filtersets.py:233 vpn/forms/bulk_import.py:280 +#: vpn/forms/filtersets.py:246 vpn/forms/model_forms.py:409 +#: vpn/forms/model_forms.py:427 vpn/models/l2vpn.py:63 vpn/tables/l2vpn.py:55 msgid "L2VPN" msgstr "L2VPN" -#: netbox/dcim/filtersets.py:1662 +#: dcim/filtersets.py:1662 msgid "Virtual Chassis Interfaces for Device" msgstr "Virtuele chassisinterfaces voor apparaten" -#: netbox/dcim/filtersets.py:1667 +#: dcim/filtersets.py:1667 msgid "Virtual Chassis Interfaces for Device (ID)" msgstr "Virtuele chassisinterfaces voor apparaat (ID)" -#: netbox/dcim/filtersets.py:1671 +#: dcim/filtersets.py:1671 msgid "Kind of interface" msgstr "Soort interface" -#: netbox/dcim/filtersets.py:1676 netbox/virtualization/filtersets.py:293 +#: dcim/filtersets.py:1676 virtualization/filtersets.py:293 msgid "Parent interface (ID)" msgstr "Ouderinterface (ID)" -#: netbox/dcim/filtersets.py:1681 netbox/virtualization/filtersets.py:298 +#: dcim/filtersets.py:1681 virtualization/filtersets.py:298 msgid "Bridged interface (ID)" msgstr "Overbrugde interface (ID)" -#: netbox/dcim/filtersets.py:1686 +#: dcim/filtersets.py:1686 msgid "LAG interface (ID)" msgstr "LAG-interface (ID)" -#: netbox/dcim/filtersets.py:1713 netbox/dcim/filtersets.py:1725 -#: netbox/dcim/forms/filtersets.py:1345 netbox/dcim/forms/model_forms.py:1690 -#: netbox/templates/dcim/virtualdevicecontext.html:15 +#: dcim/filtersets.py:1713 dcim/filtersets.py:1725 +#: dcim/forms/filtersets.py:1345 dcim/forms/model_forms.py:1690 +#: templates/dcim/virtualdevicecontext.html:15 msgid "Virtual Device Context" msgstr "Context van het virtuele apparaat" -#: netbox/dcim/filtersets.py:1719 +#: dcim/filtersets.py:1719 msgid "Virtual Device Context (Identifier)" msgstr "Context van het virtuele apparaat (ID)" -#: netbox/dcim/filtersets.py:1730 -#: netbox/templates/wireless/wirelesslan.html:11 -#: netbox/wireless/forms/model_forms.py:53 +#: dcim/filtersets.py:1730 templates/wireless/wirelesslan.html:11 +#: wireless/forms/model_forms.py:53 msgid "Wireless LAN" msgstr "Draadloos LAN" -#: netbox/dcim/filtersets.py:1734 netbox/dcim/tables/devices.py:613 +#: dcim/filtersets.py:1734 dcim/tables/devices.py:613 msgid "Wireless link" msgstr "Draadloze link" -#: netbox/dcim/filtersets.py:1803 +#: dcim/filtersets.py:1803 msgid "Parent module bay (ID)" msgstr "Baai voor oudermodule (ID)" -#: netbox/dcim/filtersets.py:1808 +#: dcim/filtersets.py:1808 msgid "Installed module (ID)" msgstr "Geïnstalleerde module (ID)" -#: netbox/dcim/filtersets.py:1819 +#: dcim/filtersets.py:1819 msgid "Installed device (ID)" msgstr "Geïnstalleerd apparaat (ID)" -#: netbox/dcim/filtersets.py:1825 +#: dcim/filtersets.py:1825 msgid "Installed device (name)" msgstr "Geïnstalleerd apparaat (naam)" -#: netbox/dcim/filtersets.py:1891 +#: dcim/filtersets.py:1891 msgid "Master (ID)" msgstr "Meester (ID)" -#: netbox/dcim/filtersets.py:1897 +#: dcim/filtersets.py:1897 msgid "Master (name)" msgstr "Master (naam)" -#: netbox/dcim/filtersets.py:1939 netbox/tenancy/filtersets.py:245 +#: dcim/filtersets.py:1939 tenancy/filtersets.py:245 msgid "Tenant (ID)" msgstr "Tenant (ID)" -#: netbox/dcim/filtersets.py:1945 netbox/extras/filtersets.py:618 -#: netbox/tenancy/filtersets.py:251 +#: dcim/filtersets.py:1945 extras/filtersets.py:618 tenancy/filtersets.py:251 msgid "Tenant (slug)" msgstr "Tenant (slug)" -#: netbox/dcim/filtersets.py:1981 netbox/dcim/forms/filtersets.py:1077 +#: dcim/filtersets.py:1981 dcim/forms/filtersets.py:1077 msgid "Unterminated" msgstr "Onbeëindigd" -#: netbox/dcim/filtersets.py:2239 +#: dcim/filtersets.py:2239 msgid "Power panel (ID)" msgstr "Voedingspaneel (ID)" -#: netbox/dcim/forms/bulk_create.py:40 netbox/extras/forms/filtersets.py:401 -#: netbox/extras/forms/model_forms.py:567 -#: netbox/extras/forms/model_forms.py:619 netbox/netbox/forms/base.py:86 -#: netbox/netbox/forms/mixins.py:81 netbox/netbox/tables/columns.py:478 -#: netbox/templates/circuits/inc/circuit_termination.html:32 -#: netbox/templates/generic/bulk_edit.html:65 -#: netbox/templates/inc/panels/tags.html:5 -#: netbox/utilities/forms/fields/fields.py:81 +#: dcim/forms/bulk_create.py:40 extras/forms/filtersets.py:401 +#: extras/forms/model_forms.py:567 extras/forms/model_forms.py:619 +#: netbox/forms/base.py:86 netbox/forms/mixins.py:81 +#: netbox/tables/columns.py:478 +#: templates/circuits/inc/circuit_termination.html:32 +#: templates/generic/bulk_edit.html:65 templates/inc/panels/tags.html:5 +#: utilities/forms/fields/fields.py:81 msgid "Tags" msgstr "Labels" -#: netbox/dcim/forms/bulk_create.py:112 netbox/dcim/forms/filtersets.py:1498 -#: netbox/dcim/forms/model_forms.py:488 netbox/dcim/forms/model_forms.py:546 -#: netbox/dcim/forms/object_create.py:197 -#: netbox/dcim/forms/object_create.py:353 netbox/dcim/tables/devices.py:165 -#: netbox/dcim/tables/devices.py:707 netbox/dcim/tables/devicetypes.py:246 -#: netbox/templates/dcim/device.html:43 netbox/templates/dcim/device.html:131 -#: netbox/templates/dcim/modulebay.html:38 -#: netbox/templates/dcim/virtualchassis.html:66 -#: netbox/templates/dcim/virtualchassis_edit.html:55 +#: dcim/forms/bulk_create.py:112 dcim/forms/filtersets.py:1498 +#: dcim/forms/model_forms.py:488 dcim/forms/model_forms.py:546 +#: dcim/forms/object_create.py:197 dcim/forms/object_create.py:353 +#: dcim/tables/devices.py:165 dcim/tables/devices.py:707 +#: dcim/tables/devicetypes.py:246 templates/dcim/device.html:43 +#: templates/dcim/device.html:131 templates/dcim/modulebay.html:38 +#: templates/dcim/virtualchassis.html:66 +#: templates/dcim/virtualchassis_edit.html:55 msgid "Position" msgstr "Positie" -#: netbox/dcim/forms/bulk_create.py:114 +#: dcim/forms/bulk_create.py:114 msgid "" "Alphanumeric ranges are supported. (Must match the number of names being " "created.)" @@ -3459,888 +3128,826 @@ msgstr "" "Alfanumerieke reeksen worden ondersteund. (Moet overeenkomen met het aantal " "namen dat wordt aangemaakt.)" -#: netbox/dcim/forms/bulk_edit.py:132 +#: dcim/forms/bulk_edit.py:132 msgid "Contact name" msgstr "Naam van de contactpersoon" -#: netbox/dcim/forms/bulk_edit.py:137 +#: dcim/forms/bulk_edit.py:137 msgid "Contact phone" msgstr "Telefoonnummer contacteren" -#: netbox/dcim/forms/bulk_edit.py:143 +#: dcim/forms/bulk_edit.py:143 msgid "Contact E-mail" msgstr "E-mailadres voor contact" -#: netbox/dcim/forms/bulk_edit.py:146 netbox/dcim/forms/bulk_import.py:123 -#: netbox/dcim/forms/model_forms.py:128 +#: dcim/forms/bulk_edit.py:146 dcim/forms/bulk_import.py:123 +#: dcim/forms/model_forms.py:128 msgid "Time zone" msgstr "Tijdzone" -#: netbox/dcim/forms/bulk_edit.py:224 netbox/dcim/forms/bulk_edit.py:495 -#: netbox/dcim/forms/bulk_edit.py:559 netbox/dcim/forms/bulk_edit.py:632 -#: netbox/dcim/forms/bulk_edit.py:656 netbox/dcim/forms/bulk_edit.py:740 -#: netbox/dcim/forms/bulk_edit.py:1267 netbox/dcim/forms/bulk_edit.py:1660 -#: netbox/dcim/forms/bulk_import.py:182 netbox/dcim/forms/bulk_import.py:371 -#: netbox/dcim/forms/bulk_import.py:405 netbox/dcim/forms/bulk_import.py:450 -#: netbox/dcim/forms/bulk_import.py:486 netbox/dcim/forms/bulk_import.py:1082 -#: netbox/dcim/forms/filtersets.py:313 netbox/dcim/forms/filtersets.py:372 -#: netbox/dcim/forms/filtersets.py:494 netbox/dcim/forms/filtersets.py:619 -#: netbox/dcim/forms/filtersets.py:700 netbox/dcim/forms/filtersets.py:782 -#: netbox/dcim/forms/filtersets.py:947 netbox/dcim/forms/filtersets.py:1539 -#: netbox/dcim/forms/model_forms.py:207 netbox/dcim/forms/model_forms.py:337 -#: netbox/dcim/forms/model_forms.py:349 netbox/dcim/forms/model_forms.py:395 -#: netbox/dcim/forms/model_forms.py:436 netbox/dcim/forms/model_forms.py:1075 -#: netbox/dcim/forms/model_forms.py:1515 -#: netbox/dcim/forms/object_import.py:187 netbox/dcim/tables/devices.py:96 -#: netbox/dcim/tables/devices.py:172 netbox/dcim/tables/devices.py:940 -#: netbox/dcim/tables/devicetypes.py:80 netbox/dcim/tables/devicetypes.py:308 -#: netbox/dcim/tables/modules.py:20 netbox/dcim/tables/modules.py:60 -#: netbox/dcim/tables/racks.py:58 netbox/dcim/tables/racks.py:132 -#: netbox/templates/dcim/devicetype.html:14 -#: netbox/templates/dcim/inventoryitem.html:44 -#: netbox/templates/dcim/manufacturer.html:33 -#: netbox/templates/dcim/modulebay.html:62 -#: netbox/templates/dcim/moduletype.html:14 -#: netbox/templates/dcim/platform.html:37 -#: netbox/templates/dcim/racktype.html:16 +#: dcim/forms/bulk_edit.py:224 dcim/forms/bulk_edit.py:495 +#: dcim/forms/bulk_edit.py:559 dcim/forms/bulk_edit.py:632 +#: dcim/forms/bulk_edit.py:656 dcim/forms/bulk_edit.py:740 +#: dcim/forms/bulk_edit.py:1267 dcim/forms/bulk_edit.py:1660 +#: dcim/forms/bulk_import.py:182 dcim/forms/bulk_import.py:371 +#: dcim/forms/bulk_import.py:405 dcim/forms/bulk_import.py:450 +#: dcim/forms/bulk_import.py:486 dcim/forms/bulk_import.py:1082 +#: dcim/forms/filtersets.py:313 dcim/forms/filtersets.py:372 +#: dcim/forms/filtersets.py:494 dcim/forms/filtersets.py:619 +#: dcim/forms/filtersets.py:700 dcim/forms/filtersets.py:782 +#: dcim/forms/filtersets.py:947 dcim/forms/filtersets.py:1539 +#: dcim/forms/model_forms.py:207 dcim/forms/model_forms.py:337 +#: dcim/forms/model_forms.py:349 dcim/forms/model_forms.py:395 +#: dcim/forms/model_forms.py:436 dcim/forms/model_forms.py:1075 +#: dcim/forms/model_forms.py:1515 dcim/forms/object_import.py:187 +#: dcim/tables/devices.py:96 dcim/tables/devices.py:172 +#: dcim/tables/devices.py:940 dcim/tables/devicetypes.py:80 +#: dcim/tables/devicetypes.py:308 dcim/tables/modules.py:20 +#: dcim/tables/modules.py:60 dcim/tables/racks.py:58 dcim/tables/racks.py:132 +#: templates/dcim/devicetype.html:14 templates/dcim/inventoryitem.html:44 +#: templates/dcim/manufacturer.html:33 templates/dcim/modulebay.html:62 +#: templates/dcim/moduletype.html:25 templates/dcim/platform.html:37 +#: templates/dcim/racktype.html:16 msgid "Manufacturer" msgstr "Fabrikant" -#: netbox/dcim/forms/bulk_edit.py:229 netbox/dcim/forms/bulk_edit.py:372 -#: netbox/dcim/forms/bulk_import.py:191 netbox/dcim/forms/bulk_import.py:263 -#: netbox/dcim/forms/filtersets.py:255 -#: netbox/templates/dcim/inc/panels/racktype_dimensions.html:6 +#: dcim/forms/bulk_edit.py:229 dcim/forms/bulk_edit.py:372 +#: dcim/forms/bulk_import.py:191 dcim/forms/bulk_import.py:263 +#: dcim/forms/filtersets.py:255 +#: templates/dcim/inc/panels/racktype_dimensions.html:6 msgid "Form factor" msgstr "Vormfactor" -#: netbox/dcim/forms/bulk_edit.py:234 netbox/dcim/forms/bulk_edit.py:377 -#: netbox/dcim/forms/bulk_import.py:199 netbox/dcim/forms/bulk_import.py:266 -#: netbox/dcim/forms/filtersets.py:260 -#: netbox/templates/dcim/inc/panels/racktype_dimensions.html:10 +#: dcim/forms/bulk_edit.py:234 dcim/forms/bulk_edit.py:377 +#: dcim/forms/bulk_import.py:199 dcim/forms/bulk_import.py:266 +#: dcim/forms/filtersets.py:260 +#: templates/dcim/inc/panels/racktype_dimensions.html:10 msgid "Width" msgstr "Breedte" -#: netbox/dcim/forms/bulk_edit.py:240 netbox/dcim/forms/bulk_edit.py:383 -#: netbox/templates/dcim/devicetype.html:37 +#: dcim/forms/bulk_edit.py:240 dcim/forms/bulk_edit.py:383 +#: templates/dcim/devicetype.html:37 msgid "Height (U)" msgstr "Hoogte (U)" -#: netbox/dcim/forms/bulk_edit.py:249 netbox/dcim/forms/bulk_edit.py:388 -#: netbox/dcim/forms/filtersets.py:274 +#: dcim/forms/bulk_edit.py:249 dcim/forms/bulk_edit.py:388 +#: dcim/forms/filtersets.py:274 msgid "Descending units" msgstr "Aflopende eenheden" -#: netbox/dcim/forms/bulk_edit.py:252 netbox/dcim/forms/bulk_edit.py:391 +#: dcim/forms/bulk_edit.py:252 dcim/forms/bulk_edit.py:391 msgid "Outer width" msgstr "Buitenbreedte" -#: netbox/dcim/forms/bulk_edit.py:257 netbox/dcim/forms/bulk_edit.py:396 +#: dcim/forms/bulk_edit.py:257 dcim/forms/bulk_edit.py:396 msgid "Outer depth" msgstr "Buitendiepte" -#: netbox/dcim/forms/bulk_edit.py:262 netbox/dcim/forms/bulk_edit.py:401 -#: netbox/dcim/forms/bulk_import.py:204 netbox/dcim/forms/bulk_import.py:271 +#: dcim/forms/bulk_edit.py:262 dcim/forms/bulk_edit.py:401 +#: dcim/forms/bulk_import.py:204 dcim/forms/bulk_import.py:271 msgid "Outer unit" msgstr "Buitenste eenheid" -#: netbox/dcim/forms/bulk_edit.py:267 netbox/dcim/forms/bulk_edit.py:406 +#: dcim/forms/bulk_edit.py:267 dcim/forms/bulk_edit.py:406 msgid "Mounting depth" msgstr "Inbouwdiepte" -#: netbox/dcim/forms/bulk_edit.py:272 netbox/dcim/forms/bulk_edit.py:299 -#: netbox/dcim/forms/bulk_edit.py:416 netbox/dcim/forms/bulk_edit.py:446 -#: netbox/dcim/forms/bulk_edit.py:529 netbox/dcim/forms/bulk_edit.py:552 -#: netbox/dcim/forms/bulk_edit.py:573 netbox/dcim/forms/bulk_edit.py:595 -#: netbox/dcim/forms/bulk_import.py:384 netbox/dcim/forms/bulk_import.py:416 -#: netbox/dcim/forms/filtersets.py:285 netbox/dcim/forms/filtersets.py:307 -#: netbox/dcim/forms/filtersets.py:327 netbox/dcim/forms/filtersets.py:401 -#: netbox/dcim/forms/filtersets.py:488 netbox/dcim/forms/filtersets.py:594 -#: netbox/dcim/forms/filtersets.py:613 netbox/dcim/forms/filtersets.py:674 -#: netbox/dcim/forms/model_forms.py:221 netbox/dcim/forms/model_forms.py:298 -#: netbox/dcim/tables/devicetypes.py:106 netbox/dcim/tables/modules.py:35 -#: netbox/dcim/tables/racks.py:74 netbox/dcim/tables/racks.py:172 -#: netbox/extras/forms/bulk_edit.py:53 netbox/extras/forms/bulk_edit.py:133 -#: netbox/extras/forms/bulk_edit.py:183 netbox/extras/forms/bulk_edit.py:288 -#: netbox/extras/forms/filtersets.py:64 netbox/extras/forms/filtersets.py:156 -#: netbox/extras/forms/filtersets.py:243 netbox/ipam/forms/bulk_edit.py:189 -#: netbox/templates/dcim/device.html:324 -#: netbox/templates/dcim/devicetype.html:49 -#: netbox/templates/dcim/moduletype.html:34 netbox/templates/dcim/rack.html:81 -#: netbox/templates/dcim/racktype.html:41 -#: netbox/templates/extras/configcontext.html:17 -#: netbox/templates/extras/customlink.html:25 -#: netbox/templates/extras/savedfilter.html:33 -#: netbox/templates/ipam/role.html:30 +#: dcim/forms/bulk_edit.py:272 dcim/forms/bulk_edit.py:299 +#: dcim/forms/bulk_edit.py:416 dcim/forms/bulk_edit.py:446 +#: dcim/forms/bulk_edit.py:529 dcim/forms/bulk_edit.py:552 +#: dcim/forms/bulk_edit.py:573 dcim/forms/bulk_edit.py:595 +#: dcim/forms/bulk_import.py:384 dcim/forms/bulk_import.py:416 +#: dcim/forms/filtersets.py:285 dcim/forms/filtersets.py:307 +#: dcim/forms/filtersets.py:327 dcim/forms/filtersets.py:401 +#: dcim/forms/filtersets.py:488 dcim/forms/filtersets.py:594 +#: dcim/forms/filtersets.py:613 dcim/forms/filtersets.py:674 +#: dcim/forms/model_forms.py:221 dcim/forms/model_forms.py:298 +#: dcim/tables/devicetypes.py:106 dcim/tables/modules.py:35 +#: dcim/tables/racks.py:74 dcim/tables/racks.py:172 +#: extras/forms/bulk_edit.py:53 extras/forms/bulk_edit.py:133 +#: extras/forms/bulk_edit.py:183 extras/forms/bulk_edit.py:288 +#: extras/forms/filtersets.py:64 extras/forms/filtersets.py:156 +#: extras/forms/filtersets.py:243 ipam/forms/bulk_edit.py:190 +#: templates/dcim/device.html:324 templates/dcim/devicetype.html:49 +#: templates/dcim/moduletype.html:45 templates/dcim/rack.html:81 +#: templates/dcim/racktype.html:41 templates/extras/configcontext.html:17 +#: templates/extras/customlink.html:25 templates/extras/savedfilter.html:33 +#: templates/ipam/role.html:30 msgid "Weight" msgstr "Gewicht" -#: netbox/dcim/forms/bulk_edit.py:277 netbox/dcim/forms/bulk_edit.py:421 -#: netbox/dcim/forms/filtersets.py:290 +#: dcim/forms/bulk_edit.py:277 dcim/forms/bulk_edit.py:421 +#: dcim/forms/filtersets.py:290 msgid "Max weight" msgstr "Maximaal gewicht" -#: netbox/dcim/forms/bulk_edit.py:282 netbox/dcim/forms/bulk_edit.py:426 -#: netbox/dcim/forms/bulk_edit.py:534 netbox/dcim/forms/bulk_edit.py:578 -#: netbox/dcim/forms/bulk_import.py:210 netbox/dcim/forms/bulk_import.py:283 -#: netbox/dcim/forms/bulk_import.py:389 netbox/dcim/forms/bulk_import.py:421 -#: netbox/dcim/forms/filtersets.py:295 netbox/dcim/forms/filtersets.py:598 -#: netbox/dcim/forms/filtersets.py:678 +#: dcim/forms/bulk_edit.py:282 dcim/forms/bulk_edit.py:426 +#: dcim/forms/bulk_edit.py:534 dcim/forms/bulk_edit.py:578 +#: dcim/forms/bulk_import.py:210 dcim/forms/bulk_import.py:283 +#: dcim/forms/bulk_import.py:389 dcim/forms/bulk_import.py:421 +#: dcim/forms/filtersets.py:295 dcim/forms/filtersets.py:598 +#: dcim/forms/filtersets.py:678 msgid "Weight unit" msgstr "Gewichtseenheid" -#: netbox/dcim/forms/bulk_edit.py:296 netbox/dcim/forms/filtersets.py:305 -#: netbox/dcim/forms/model_forms.py:217 netbox/dcim/forms/model_forms.py:256 -#: netbox/templates/dcim/rack.html:45 netbox/templates/dcim/racktype.html:13 +#: dcim/forms/bulk_edit.py:296 dcim/forms/filtersets.py:305 +#: dcim/forms/model_forms.py:217 dcim/forms/model_forms.py:256 +#: templates/dcim/rack.html:45 templates/dcim/racktype.html:13 msgid "Rack Type" msgstr "Racktype" -#: netbox/dcim/forms/bulk_edit.py:298 netbox/dcim/forms/model_forms.py:220 -#: netbox/dcim/forms/model_forms.py:297 +#: dcim/forms/bulk_edit.py:298 dcim/forms/model_forms.py:220 +#: dcim/forms/model_forms.py:297 msgid "Outer Dimensions" msgstr "Buitenafmetingen" -#: netbox/dcim/forms/bulk_edit.py:301 netbox/dcim/forms/model_forms.py:222 -#: netbox/dcim/forms/model_forms.py:299 netbox/templates/dcim/device.html:315 -#: netbox/templates/dcim/inc/panels/racktype_dimensions.html:3 +#: dcim/forms/bulk_edit.py:301 dcim/forms/model_forms.py:222 +#: dcim/forms/model_forms.py:299 templates/dcim/device.html:315 +#: templates/dcim/inc/panels/racktype_dimensions.html:3 msgid "Dimensions" msgstr "Dimensies" -#: netbox/dcim/forms/bulk_edit.py:303 netbox/dcim/forms/filtersets.py:306 -#: netbox/dcim/forms/filtersets.py:326 netbox/dcim/forms/model_forms.py:224 -#: netbox/templates/dcim/inc/panels/racktype_numbering.html:3 +#: dcim/forms/bulk_edit.py:303 dcim/forms/filtersets.py:306 +#: dcim/forms/filtersets.py:326 dcim/forms/model_forms.py:224 +#: templates/dcim/inc/panels/racktype_numbering.html:3 msgid "Numbering" msgstr "Nummering" -#: netbox/dcim/forms/bulk_edit.py:357 netbox/dcim/forms/bulk_edit.py:1262 -#: netbox/dcim/forms/bulk_edit.py:1655 netbox/dcim/forms/bulk_import.py:253 -#: netbox/dcim/forms/bulk_import.py:1076 netbox/dcim/forms/filtersets.py:367 -#: netbox/dcim/forms/filtersets.py:777 netbox/dcim/forms/filtersets.py:1534 -#: netbox/dcim/forms/model_forms.py:251 netbox/dcim/forms/model_forms.py:1070 -#: netbox/dcim/forms/model_forms.py:1510 -#: netbox/dcim/forms/object_import.py:181 netbox/dcim/tables/devices.py:169 -#: netbox/dcim/tables/devices.py:809 netbox/dcim/tables/devices.py:937 -#: netbox/dcim/tables/devicetypes.py:304 netbox/dcim/tables/racks.py:129 -#: netbox/extras/filtersets.py:552 netbox/ipam/forms/bulk_edit.py:260 -#: netbox/ipam/forms/bulk_edit.py:310 netbox/ipam/forms/bulk_edit.py:358 -#: netbox/ipam/forms/bulk_edit.py:556 netbox/ipam/forms/bulk_import.py:197 -#: netbox/ipam/forms/bulk_import.py:262 netbox/ipam/forms/bulk_import.py:298 -#: netbox/ipam/forms/bulk_import.py:455 netbox/ipam/forms/filtersets.py:237 -#: netbox/ipam/forms/filtersets.py:289 netbox/ipam/forms/filtersets.py:360 -#: netbox/ipam/forms/filtersets.py:509 netbox/ipam/forms/model_forms.py:188 -#: netbox/ipam/forms/model_forms.py:221 netbox/ipam/forms/model_forms.py:250 -#: netbox/ipam/forms/model_forms.py:643 netbox/ipam/tables/ip.py:258 -#: netbox/ipam/tables/ip.py:316 netbox/ipam/tables/ip.py:367 -#: netbox/ipam/tables/vlans.py:130 netbox/ipam/tables/vlans.py:235 -#: netbox/templates/dcim/device.html:182 -#: netbox/templates/dcim/inc/panels/inventory_items.html:20 -#: netbox/templates/dcim/interface.html:223 -#: netbox/templates/dcim/inventoryitem.html:36 -#: netbox/templates/dcim/rack.html:49 netbox/templates/ipam/ipaddress.html:41 -#: netbox/templates/ipam/iprange.html:50 netbox/templates/ipam/prefix.html:77 -#: netbox/templates/ipam/role.html:19 netbox/templates/ipam/vlan.html:52 -#: netbox/templates/virtualization/virtualmachine.html:23 -#: netbox/templates/vpn/tunneltermination.html:17 -#: netbox/templates/wireless/inc/wirelesslink_interface.html:20 -#: netbox/tenancy/forms/bulk_edit.py:142 -#: netbox/tenancy/forms/filtersets.py:107 -#: netbox/tenancy/forms/model_forms.py:137 -#: netbox/tenancy/tables/contacts.py:102 -#: netbox/virtualization/forms/bulk_edit.py:145 -#: netbox/virtualization/forms/bulk_import.py:106 -#: netbox/virtualization/forms/filtersets.py:157 -#: netbox/virtualization/forms/model_forms.py:195 -#: netbox/virtualization/tables/virtualmachines.py:75 -#: netbox/vpn/forms/bulk_edit.py:87 netbox/vpn/forms/bulk_import.py:81 -#: netbox/vpn/forms/filtersets.py:85 netbox/vpn/forms/model_forms.py:78 -#: netbox/vpn/forms/model_forms.py:113 netbox/vpn/tables/tunnels.py:82 +#: dcim/forms/bulk_edit.py:357 dcim/forms/bulk_edit.py:1262 +#: dcim/forms/bulk_edit.py:1655 dcim/forms/bulk_import.py:253 +#: dcim/forms/bulk_import.py:1076 dcim/forms/filtersets.py:367 +#: dcim/forms/filtersets.py:777 dcim/forms/filtersets.py:1534 +#: dcim/forms/model_forms.py:251 dcim/forms/model_forms.py:1070 +#: dcim/forms/model_forms.py:1510 dcim/forms/object_import.py:181 +#: dcim/tables/devices.py:169 dcim/tables/devices.py:809 +#: dcim/tables/devices.py:937 dcim/tables/devicetypes.py:304 +#: dcim/tables/racks.py:129 extras/filtersets.py:552 +#: ipam/forms/bulk_edit.py:261 ipam/forms/bulk_edit.py:311 +#: ipam/forms/bulk_edit.py:359 ipam/forms/bulk_edit.py:511 +#: ipam/forms/bulk_import.py:197 ipam/forms/bulk_import.py:262 +#: ipam/forms/bulk_import.py:298 ipam/forms/bulk_import.py:455 +#: ipam/forms/filtersets.py:237 ipam/forms/filtersets.py:289 +#: ipam/forms/filtersets.py:360 ipam/forms/filtersets.py:509 +#: ipam/forms/model_forms.py:188 ipam/forms/model_forms.py:221 +#: ipam/forms/model_forms.py:250 ipam/forms/model_forms.py:643 +#: ipam/tables/ip.py:258 ipam/tables/ip.py:316 ipam/tables/ip.py:367 +#: ipam/tables/vlans.py:130 ipam/tables/vlans.py:235 +#: templates/dcim/device.html:182 +#: templates/dcim/inc/panels/inventory_items.html:20 +#: templates/dcim/interface.html:223 templates/dcim/inventoryitem.html:36 +#: templates/dcim/rack.html:49 templates/ipam/ipaddress.html:41 +#: templates/ipam/iprange.html:50 templates/ipam/prefix.html:77 +#: templates/ipam/role.html:19 templates/ipam/vlan.html:52 +#: templates/virtualization/virtualmachine.html:23 +#: templates/vpn/tunneltermination.html:17 +#: templates/wireless/inc/wirelesslink_interface.html:20 +#: tenancy/forms/bulk_edit.py:142 tenancy/forms/filtersets.py:107 +#: tenancy/forms/model_forms.py:137 tenancy/tables/contacts.py:102 +#: virtualization/forms/bulk_edit.py:145 +#: virtualization/forms/bulk_import.py:106 +#: virtualization/forms/filtersets.py:157 +#: virtualization/forms/model_forms.py:195 +#: virtualization/tables/virtualmachines.py:75 vpn/forms/bulk_edit.py:87 +#: vpn/forms/bulk_import.py:81 vpn/forms/filtersets.py:85 +#: vpn/forms/model_forms.py:78 vpn/forms/model_forms.py:113 +#: vpn/tables/tunnels.py:82 msgid "Role" msgstr "Rol" -#: netbox/dcim/forms/bulk_edit.py:364 netbox/dcim/forms/bulk_edit.py:712 -#: netbox/dcim/forms/bulk_edit.py:764 netbox/templates/dcim/device.html:104 -#: netbox/templates/dcim/module.html:77 -#: netbox/templates/dcim/modulebay.html:70 netbox/templates/dcim/rack.html:57 -#: netbox/templates/virtualization/virtualmachine.html:35 +#: dcim/forms/bulk_edit.py:364 dcim/forms/bulk_edit.py:712 +#: dcim/forms/bulk_edit.py:764 templates/dcim/device.html:104 +#: templates/dcim/module.html:77 templates/dcim/modulebay.html:70 +#: templates/dcim/rack.html:57 templates/virtualization/virtualmachine.html:35 msgid "Serial Number" msgstr "Serienummer" -#: netbox/dcim/forms/bulk_edit.py:367 netbox/dcim/forms/filtersets.py:387 -#: netbox/dcim/forms/filtersets.py:813 netbox/dcim/forms/filtersets.py:967 -#: netbox/dcim/forms/filtersets.py:1546 +#: dcim/forms/bulk_edit.py:367 dcim/forms/filtersets.py:387 +#: dcim/forms/filtersets.py:813 dcim/forms/filtersets.py:967 +#: dcim/forms/filtersets.py:1546 msgid "Asset tag" msgstr "Tag voor bedrijfsmiddelen" -#: netbox/dcim/forms/bulk_edit.py:411 netbox/dcim/forms/bulk_edit.py:524 -#: netbox/dcim/forms/bulk_edit.py:568 netbox/dcim/forms/bulk_edit.py:705 -#: netbox/dcim/forms/bulk_import.py:277 netbox/dcim/forms/bulk_import.py:410 -#: netbox/dcim/forms/bulk_import.py:580 netbox/dcim/forms/filtersets.py:280 -#: netbox/dcim/forms/filtersets.py:511 netbox/dcim/forms/filtersets.py:669 -#: netbox/dcim/forms/filtersets.py:804 netbox/templates/dcim/device.html:98 -#: netbox/templates/dcim/devicetype.html:65 -#: netbox/templates/dcim/moduletype.html:30 netbox/templates/dcim/rack.html:65 -#: netbox/templates/dcim/racktype.html:28 +#: dcim/forms/bulk_edit.py:411 dcim/forms/bulk_edit.py:524 +#: dcim/forms/bulk_edit.py:568 dcim/forms/bulk_edit.py:705 +#: dcim/forms/bulk_import.py:277 dcim/forms/bulk_import.py:410 +#: dcim/forms/bulk_import.py:580 dcim/forms/filtersets.py:280 +#: dcim/forms/filtersets.py:511 dcim/forms/filtersets.py:669 +#: dcim/forms/filtersets.py:804 templates/dcim/device.html:98 +#: templates/dcim/devicetype.html:65 templates/dcim/moduletype.html:41 +#: templates/dcim/rack.html:65 templates/dcim/racktype.html:28 msgid "Airflow" msgstr "Luchtstroom" -#: netbox/dcim/forms/bulk_edit.py:440 netbox/dcim/forms/bulk_edit.py:910 -#: netbox/dcim/forms/bulk_import.py:322 netbox/dcim/forms/bulk_import.py:325 -#: netbox/dcim/forms/bulk_import.py:553 netbox/dcim/forms/bulk_import.py:1358 -#: netbox/dcim/forms/bulk_import.py:1362 netbox/dcim/forms/filtersets.py:104 -#: netbox/dcim/forms/filtersets.py:324 netbox/dcim/forms/filtersets.py:405 -#: netbox/dcim/forms/filtersets.py:419 netbox/dcim/forms/filtersets.py:457 -#: netbox/dcim/forms/filtersets.py:772 netbox/dcim/forms/filtersets.py:1035 -#: netbox/dcim/forms/filtersets.py:1167 netbox/dcim/forms/model_forms.py:264 -#: netbox/dcim/forms/model_forms.py:306 netbox/dcim/forms/model_forms.py:479 -#: netbox/dcim/forms/model_forms.py:755 netbox/dcim/forms/object_create.py:400 -#: netbox/dcim/tables/devices.py:161 netbox/dcim/tables/power.py:70 -#: netbox/dcim/tables/racks.py:217 netbox/ipam/forms/bulk_edit.py:468 -#: netbox/ipam/forms/filtersets.py:442 netbox/templates/dcim/device.html:30 -#: netbox/templates/dcim/inc/cable_termination.html:16 -#: netbox/templates/dcim/powerfeed.html:28 netbox/templates/dcim/rack.html:13 -#: netbox/templates/dcim/rack/base.html:4 -#: netbox/templates/dcim/rackreservation.html:19 -#: netbox/templates/dcim/rackreservation.html:36 -#: netbox/virtualization/forms/model_forms.py:113 +#: dcim/forms/bulk_edit.py:440 dcim/forms/bulk_edit.py:910 +#: dcim/forms/bulk_import.py:322 dcim/forms/bulk_import.py:325 +#: dcim/forms/bulk_import.py:553 dcim/forms/bulk_import.py:1358 +#: dcim/forms/bulk_import.py:1362 dcim/forms/filtersets.py:104 +#: dcim/forms/filtersets.py:324 dcim/forms/filtersets.py:405 +#: dcim/forms/filtersets.py:419 dcim/forms/filtersets.py:457 +#: dcim/forms/filtersets.py:772 dcim/forms/filtersets.py:1035 +#: dcim/forms/filtersets.py:1167 dcim/forms/model_forms.py:264 +#: dcim/forms/model_forms.py:306 dcim/forms/model_forms.py:479 +#: dcim/forms/model_forms.py:755 dcim/forms/object_create.py:400 +#: dcim/tables/devices.py:161 dcim/tables/power.py:70 dcim/tables/racks.py:217 +#: ipam/forms/filtersets.py:442 templates/dcim/device.html:30 +#: templates/dcim/inc/cable_termination.html:16 +#: templates/dcim/powerfeed.html:28 templates/dcim/rack.html:13 +#: templates/dcim/rack/base.html:4 templates/dcim/rackreservation.html:19 +#: templates/dcim/rackreservation.html:36 +#: virtualization/forms/model_forms.py:113 msgid "Rack" msgstr "Rek" -#: netbox/dcim/forms/bulk_edit.py:444 netbox/dcim/forms/bulk_edit.py:730 -#: netbox/dcim/forms/filtersets.py:325 netbox/dcim/forms/filtersets.py:398 -#: netbox/dcim/forms/filtersets.py:481 netbox/dcim/forms/filtersets.py:608 -#: netbox/dcim/forms/filtersets.py:721 netbox/dcim/forms/filtersets.py:942 -#: netbox/dcim/forms/model_forms.py:670 netbox/dcim/forms/model_forms.py:1580 -#: netbox/templates/dcim/device_edit.html:20 +#: dcim/forms/bulk_edit.py:444 dcim/forms/bulk_edit.py:730 +#: dcim/forms/filtersets.py:325 dcim/forms/filtersets.py:398 +#: dcim/forms/filtersets.py:481 dcim/forms/filtersets.py:608 +#: dcim/forms/filtersets.py:721 dcim/forms/filtersets.py:942 +#: dcim/forms/model_forms.py:670 dcim/forms/model_forms.py:1580 +#: templates/dcim/device_edit.html:20 msgid "Hardware" msgstr "Hardware" -#: netbox/dcim/forms/bulk_edit.py:500 netbox/dcim/forms/bulk_import.py:377 -#: netbox/dcim/forms/filtersets.py:499 netbox/dcim/forms/model_forms.py:353 +#: dcim/forms/bulk_edit.py:500 dcim/forms/bulk_import.py:377 +#: dcim/forms/filtersets.py:499 dcim/forms/model_forms.py:353 msgid "Default platform" msgstr "Standaardplatform" -#: netbox/dcim/forms/bulk_edit.py:505 netbox/dcim/forms/bulk_edit.py:564 -#: netbox/dcim/forms/filtersets.py:502 netbox/dcim/forms/filtersets.py:622 +#: dcim/forms/bulk_edit.py:505 dcim/forms/bulk_edit.py:564 +#: dcim/forms/filtersets.py:502 dcim/forms/filtersets.py:622 msgid "Part number" msgstr "Onderdeelnummer" -#: netbox/dcim/forms/bulk_edit.py:509 +#: dcim/forms/bulk_edit.py:509 msgid "U height" msgstr "U-hoogte" -#: netbox/dcim/forms/bulk_edit.py:521 netbox/dcim/tables/devicetypes.py:102 +#: dcim/forms/bulk_edit.py:521 dcim/tables/devicetypes.py:102 msgid "Exclude from utilization" msgstr "Uitsluiten van gebruik" -#: netbox/dcim/forms/bulk_edit.py:550 netbox/dcim/forms/model_forms.py:368 -#: netbox/dcim/tables/devicetypes.py:77 netbox/templates/dcim/device.html:88 -#: netbox/templates/dcim/devicebay.html:52 -#: netbox/templates/dcim/module.html:61 +#: dcim/forms/bulk_edit.py:550 dcim/forms/model_forms.py:368 +#: dcim/tables/devicetypes.py:77 templates/dcim/device.html:88 +#: templates/dcim/devicebay.html:52 templates/dcim/module.html:61 msgid "Device Type" msgstr "Soort apparaat" -#: netbox/dcim/forms/bulk_edit.py:592 netbox/dcim/forms/model_forms.py:401 -#: netbox/dcim/tables/modules.py:17 netbox/dcim/tables/modules.py:65 -#: netbox/templates/dcim/module.html:65 -#: netbox/templates/dcim/modulebay.html:66 -#: netbox/templates/dcim/moduletype.html:11 +#: dcim/forms/bulk_edit.py:592 dcim/forms/model_forms.py:401 +#: dcim/tables/modules.py:17 dcim/tables/modules.py:65 +#: templates/dcim/module.html:65 templates/dcim/modulebay.html:66 +#: templates/dcim/moduletype.html:22 msgid "Module Type" msgstr "Moduletype" -#: netbox/dcim/forms/bulk_edit.py:596 netbox/dcim/forms/model_forms.py:371 -#: netbox/dcim/forms/model_forms.py:402 -#: netbox/templates/dcim/devicetype.html:11 +#: dcim/forms/bulk_edit.py:596 dcim/forms/model_forms.py:371 +#: dcim/forms/model_forms.py:402 templates/dcim/devicetype.html:11 msgid "Chassis" msgstr "Chassis" -#: netbox/dcim/forms/bulk_edit.py:610 netbox/dcim/models/devices.py:484 -#: netbox/dcim/tables/devices.py:67 +#: dcim/forms/bulk_edit.py:610 dcim/models/devices.py:484 +#: dcim/tables/devices.py:67 msgid "VM role" msgstr "VM-rol" -#: netbox/dcim/forms/bulk_edit.py:613 netbox/dcim/forms/bulk_edit.py:637 -#: netbox/dcim/forms/bulk_edit.py:720 netbox/dcim/forms/bulk_import.py:434 -#: netbox/dcim/forms/bulk_import.py:438 netbox/dcim/forms/bulk_import.py:457 -#: netbox/dcim/forms/bulk_import.py:461 netbox/dcim/forms/bulk_import.py:586 -#: netbox/dcim/forms/bulk_import.py:590 netbox/dcim/forms/filtersets.py:689 -#: netbox/dcim/forms/filtersets.py:705 netbox/dcim/forms/filtersets.py:823 -#: netbox/dcim/forms/model_forms.py:415 netbox/dcim/forms/model_forms.py:441 -#: netbox/dcim/forms/model_forms.py:555 -#: netbox/virtualization/forms/bulk_import.py:132 -#: netbox/virtualization/forms/bulk_import.py:133 -#: netbox/virtualization/forms/filtersets.py:188 -#: netbox/virtualization/forms/model_forms.py:215 +#: dcim/forms/bulk_edit.py:613 dcim/forms/bulk_edit.py:637 +#: dcim/forms/bulk_edit.py:720 dcim/forms/bulk_import.py:434 +#: dcim/forms/bulk_import.py:438 dcim/forms/bulk_import.py:457 +#: dcim/forms/bulk_import.py:461 dcim/forms/bulk_import.py:586 +#: dcim/forms/bulk_import.py:590 dcim/forms/filtersets.py:689 +#: dcim/forms/filtersets.py:705 dcim/forms/filtersets.py:823 +#: dcim/forms/model_forms.py:415 dcim/forms/model_forms.py:441 +#: dcim/forms/model_forms.py:555 virtualization/forms/bulk_import.py:132 +#: virtualization/forms/bulk_import.py:133 +#: virtualization/forms/filtersets.py:188 +#: virtualization/forms/model_forms.py:215 msgid "Config template" msgstr "Configuratiesjabloon" -#: netbox/dcim/forms/bulk_edit.py:661 netbox/dcim/forms/bulk_edit.py:1061 -#: netbox/dcim/forms/bulk_import.py:492 netbox/dcim/forms/filtersets.py:114 -#: netbox/dcim/forms/model_forms.py:501 netbox/dcim/forms/model_forms.py:872 -#: netbox/dcim/forms/model_forms.py:889 netbox/extras/filtersets.py:547 +#: dcim/forms/bulk_edit.py:661 dcim/forms/bulk_edit.py:1061 +#: dcim/forms/bulk_import.py:492 dcim/forms/filtersets.py:114 +#: dcim/forms/model_forms.py:501 dcim/forms/model_forms.py:872 +#: dcim/forms/model_forms.py:889 extras/filtersets.py:547 msgid "Device type" msgstr "Soort apparaat" -#: netbox/dcim/forms/bulk_edit.py:672 netbox/dcim/forms/bulk_import.py:473 -#: netbox/dcim/forms/filtersets.py:119 netbox/dcim/forms/model_forms.py:509 +#: dcim/forms/bulk_edit.py:672 dcim/forms/bulk_import.py:473 +#: dcim/forms/filtersets.py:119 dcim/forms/model_forms.py:509 msgid "Device role" msgstr "Rol van het apparaat" -#: netbox/dcim/forms/bulk_edit.py:695 netbox/dcim/forms/bulk_import.py:498 -#: netbox/dcim/forms/filtersets.py:796 netbox/dcim/forms/model_forms.py:451 -#: netbox/dcim/forms/model_forms.py:513 netbox/dcim/tables/devices.py:182 -#: netbox/extras/filtersets.py:563 netbox/templates/dcim/device.html:186 -#: netbox/templates/dcim/platform.html:26 -#: netbox/templates/virtualization/virtualmachine.html:27 -#: netbox/virtualization/forms/bulk_edit.py:160 -#: netbox/virtualization/forms/bulk_import.py:122 -#: netbox/virtualization/forms/filtersets.py:168 -#: netbox/virtualization/forms/model_forms.py:203 -#: netbox/virtualization/tables/virtualmachines.py:79 +#: dcim/forms/bulk_edit.py:695 dcim/forms/bulk_import.py:498 +#: dcim/forms/filtersets.py:796 dcim/forms/model_forms.py:451 +#: dcim/forms/model_forms.py:513 dcim/tables/devices.py:182 +#: extras/filtersets.py:563 templates/dcim/device.html:186 +#: templates/dcim/platform.html:26 +#: templates/virtualization/virtualmachine.html:27 +#: virtualization/forms/bulk_edit.py:160 +#: virtualization/forms/bulk_import.py:122 +#: virtualization/forms/filtersets.py:168 +#: virtualization/forms/model_forms.py:203 +#: virtualization/tables/virtualmachines.py:79 msgid "Platform" msgstr "Platform" -#: netbox/dcim/forms/bulk_edit.py:728 netbox/dcim/forms/bulk_edit.py:1281 -#: netbox/dcim/forms/bulk_edit.py:1650 netbox/dcim/forms/bulk_edit.py:1696 -#: netbox/dcim/forms/bulk_import.py:641 netbox/dcim/forms/bulk_import.py:703 -#: netbox/dcim/forms/bulk_import.py:729 netbox/dcim/forms/bulk_import.py:755 -#: netbox/dcim/forms/bulk_import.py:775 netbox/dcim/forms/bulk_import.py:828 -#: netbox/dcim/forms/bulk_import.py:946 netbox/dcim/forms/bulk_import.py:994 -#: netbox/dcim/forms/bulk_import.py:1011 netbox/dcim/forms/bulk_import.py:1023 -#: netbox/dcim/forms/bulk_import.py:1071 netbox/dcim/forms/bulk_import.py:1422 -#: netbox/dcim/forms/connections.py:24 netbox/dcim/forms/filtersets.py:131 -#: netbox/dcim/forms/filtersets.py:921 netbox/dcim/forms/filtersets.py:1051 -#: netbox/dcim/forms/filtersets.py:1242 netbox/dcim/forms/filtersets.py:1267 -#: netbox/dcim/forms/filtersets.py:1291 netbox/dcim/forms/filtersets.py:1311 -#: netbox/dcim/forms/filtersets.py:1334 netbox/dcim/forms/filtersets.py:1444 -#: netbox/dcim/forms/filtersets.py:1469 netbox/dcim/forms/filtersets.py:1493 -#: netbox/dcim/forms/filtersets.py:1511 netbox/dcim/forms/filtersets.py:1528 -#: netbox/dcim/forms/filtersets.py:1592 netbox/dcim/forms/filtersets.py:1616 -#: netbox/dcim/forms/filtersets.py:1640 netbox/dcim/forms/model_forms.py:633 -#: netbox/dcim/forms/model_forms.py:849 netbox/dcim/forms/model_forms.py:1208 -#: netbox/dcim/forms/model_forms.py:1664 -#: netbox/dcim/forms/object_create.py:257 netbox/dcim/tables/connections.py:22 -#: netbox/dcim/tables/connections.py:41 netbox/dcim/tables/connections.py:60 -#: netbox/dcim/tables/devices.py:285 netbox/dcim/tables/devices.py:371 -#: netbox/dcim/tables/devices.py:412 netbox/dcim/tables/devices.py:454 -#: netbox/dcim/tables/devices.py:505 netbox/dcim/tables/devices.py:597 -#: netbox/dcim/tables/devices.py:697 netbox/dcim/tables/devices.py:754 -#: netbox/dcim/tables/devices.py:801 netbox/dcim/tables/devices.py:861 -#: netbox/dcim/tables/devices.py:930 netbox/dcim/tables/devices.py:1057 -#: netbox/dcim/tables/modules.py:52 netbox/extras/forms/filtersets.py:321 -#: netbox/ipam/forms/bulk_import.py:304 netbox/ipam/forms/bulk_import.py:481 -#: netbox/ipam/forms/filtersets.py:551 netbox/ipam/forms/model_forms.py:319 -#: netbox/ipam/forms/model_forms.py:679 netbox/ipam/forms/model_forms.py:712 -#: netbox/ipam/forms/model_forms.py:738 netbox/ipam/tables/vlans.py:180 -#: netbox/templates/dcim/consoleport.html:20 -#: netbox/templates/dcim/consoleserverport.html:20 -#: netbox/templates/dcim/device.html:15 netbox/templates/dcim/device.html:130 -#: netbox/templates/dcim/device_edit.html:10 -#: netbox/templates/dcim/devicebay.html:20 -#: netbox/templates/dcim/devicebay.html:48 -#: netbox/templates/dcim/frontport.html:20 -#: netbox/templates/dcim/interface.html:30 -#: netbox/templates/dcim/interface.html:161 -#: netbox/templates/dcim/inventoryitem.html:20 -#: netbox/templates/dcim/module.html:57 -#: netbox/templates/dcim/modulebay.html:20 -#: netbox/templates/dcim/poweroutlet.html:20 -#: netbox/templates/dcim/powerport.html:20 -#: netbox/templates/dcim/rearport.html:20 -#: netbox/templates/dcim/virtualchassis.html:65 -#: netbox/templates/dcim/virtualchassis_edit.html:51 -#: netbox/templates/dcim/virtualdevicecontext.html:22 -#: netbox/templates/virtualization/virtualmachine.html:114 -#: netbox/templates/vpn/tunneltermination.html:23 -#: netbox/templates/wireless/inc/wirelesslink_interface.html:6 -#: netbox/virtualization/filtersets.py:167 -#: netbox/virtualization/forms/bulk_edit.py:137 -#: netbox/virtualization/forms/bulk_import.py:99 -#: netbox/virtualization/forms/filtersets.py:128 -#: netbox/virtualization/forms/model_forms.py:185 -#: netbox/virtualization/tables/virtualmachines.py:71 netbox/vpn/choices.py:44 -#: netbox/vpn/forms/bulk_import.py:86 netbox/vpn/forms/bulk_import.py:283 -#: netbox/vpn/forms/filtersets.py:275 netbox/vpn/forms/model_forms.py:90 -#: netbox/vpn/forms/model_forms.py:125 netbox/vpn/forms/model_forms.py:236 -#: netbox/vpn/forms/model_forms.py:453 netbox/wireless/forms/model_forms.py:99 -#: netbox/wireless/forms/model_forms.py:141 -#: netbox/wireless/tables/wirelesslan.py:75 +#: dcim/forms/bulk_edit.py:728 dcim/forms/bulk_edit.py:1281 +#: dcim/forms/bulk_edit.py:1650 dcim/forms/bulk_edit.py:1696 +#: dcim/forms/bulk_import.py:641 dcim/forms/bulk_import.py:703 +#: dcim/forms/bulk_import.py:729 dcim/forms/bulk_import.py:755 +#: dcim/forms/bulk_import.py:775 dcim/forms/bulk_import.py:828 +#: dcim/forms/bulk_import.py:946 dcim/forms/bulk_import.py:994 +#: dcim/forms/bulk_import.py:1011 dcim/forms/bulk_import.py:1023 +#: dcim/forms/bulk_import.py:1071 dcim/forms/bulk_import.py:1422 +#: dcim/forms/connections.py:24 dcim/forms/filtersets.py:131 +#: dcim/forms/filtersets.py:921 dcim/forms/filtersets.py:1051 +#: dcim/forms/filtersets.py:1242 dcim/forms/filtersets.py:1267 +#: dcim/forms/filtersets.py:1291 dcim/forms/filtersets.py:1311 +#: dcim/forms/filtersets.py:1334 dcim/forms/filtersets.py:1444 +#: dcim/forms/filtersets.py:1469 dcim/forms/filtersets.py:1493 +#: dcim/forms/filtersets.py:1511 dcim/forms/filtersets.py:1528 +#: dcim/forms/filtersets.py:1592 dcim/forms/filtersets.py:1616 +#: dcim/forms/filtersets.py:1640 dcim/forms/model_forms.py:633 +#: dcim/forms/model_forms.py:849 dcim/forms/model_forms.py:1208 +#: dcim/forms/model_forms.py:1664 dcim/forms/object_create.py:257 +#: dcim/tables/connections.py:22 dcim/tables/connections.py:41 +#: dcim/tables/connections.py:60 dcim/tables/devices.py:285 +#: dcim/tables/devices.py:371 dcim/tables/devices.py:412 +#: dcim/tables/devices.py:454 dcim/tables/devices.py:505 +#: dcim/tables/devices.py:597 dcim/tables/devices.py:697 +#: dcim/tables/devices.py:754 dcim/tables/devices.py:801 +#: dcim/tables/devices.py:861 dcim/tables/devices.py:930 +#: dcim/tables/devices.py:1057 dcim/tables/modules.py:52 +#: extras/forms/filtersets.py:321 ipam/forms/bulk_import.py:304 +#: ipam/forms/bulk_import.py:481 ipam/forms/filtersets.py:551 +#: ipam/forms/model_forms.py:319 ipam/forms/model_forms.py:679 +#: ipam/forms/model_forms.py:712 ipam/forms/model_forms.py:738 +#: ipam/tables/vlans.py:180 templates/dcim/consoleport.html:20 +#: templates/dcim/consoleserverport.html:20 templates/dcim/device.html:15 +#: templates/dcim/device.html:130 templates/dcim/device_edit.html:10 +#: templates/dcim/devicebay.html:20 templates/dcim/devicebay.html:48 +#: templates/dcim/frontport.html:20 templates/dcim/interface.html:30 +#: templates/dcim/interface.html:161 templates/dcim/inventoryitem.html:20 +#: templates/dcim/module.html:57 templates/dcim/modulebay.html:20 +#: templates/dcim/poweroutlet.html:20 templates/dcim/powerport.html:20 +#: templates/dcim/rearport.html:20 templates/dcim/virtualchassis.html:65 +#: templates/dcim/virtualchassis_edit.html:51 +#: templates/dcim/virtualdevicecontext.html:22 +#: templates/virtualization/virtualmachine.html:114 +#: templates/vpn/tunneltermination.html:23 +#: templates/wireless/inc/wirelesslink_interface.html:6 +#: virtualization/filtersets.py:167 virtualization/forms/bulk_edit.py:137 +#: virtualization/forms/bulk_import.py:99 +#: virtualization/forms/filtersets.py:128 +#: virtualization/forms/model_forms.py:185 +#: virtualization/tables/virtualmachines.py:71 vpn/choices.py:44 +#: vpn/forms/bulk_import.py:86 vpn/forms/bulk_import.py:283 +#: vpn/forms/filtersets.py:275 vpn/forms/model_forms.py:90 +#: vpn/forms/model_forms.py:125 vpn/forms/model_forms.py:236 +#: vpn/forms/model_forms.py:453 wireless/forms/model_forms.py:99 +#: wireless/forms/model_forms.py:141 wireless/tables/wirelesslan.py:75 msgid "Device" msgstr "Apparaat" -#: netbox/dcim/forms/bulk_edit.py:731 -#: netbox/templates/extras/dashboard/widget_config.html:7 -#: netbox/virtualization/forms/bulk_edit.py:191 +#: dcim/forms/bulk_edit.py:731 templates/extras/dashboard/widget_config.html:7 +#: virtualization/forms/bulk_edit.py:191 msgid "Configuration" msgstr "Configuratie" -#: netbox/dcim/forms/bulk_edit.py:745 netbox/dcim/forms/bulk_import.py:653 -#: netbox/dcim/forms/model_forms.py:647 netbox/dcim/forms/model_forms.py:897 +#: dcim/forms/bulk_edit.py:745 dcim/forms/bulk_import.py:653 +#: dcim/forms/model_forms.py:647 dcim/forms/model_forms.py:897 msgid "Module type" msgstr "Moduletype" -#: netbox/dcim/forms/bulk_edit.py:799 netbox/dcim/forms/bulk_edit.py:984 -#: netbox/dcim/forms/bulk_edit.py:1003 netbox/dcim/forms/bulk_edit.py:1026 -#: netbox/dcim/forms/bulk_edit.py:1068 netbox/dcim/forms/bulk_edit.py:1112 -#: netbox/dcim/forms/bulk_edit.py:1163 netbox/dcim/forms/bulk_edit.py:1190 -#: netbox/dcim/forms/bulk_edit.py:1217 netbox/dcim/forms/bulk_edit.py:1235 -#: netbox/dcim/forms/bulk_edit.py:1253 netbox/dcim/forms/filtersets.py:67 -#: netbox/dcim/forms/object_create.py:46 netbox/templates/dcim/cable.html:32 -#: netbox/templates/dcim/consoleport.html:32 -#: netbox/templates/dcim/consoleserverport.html:32 -#: netbox/templates/dcim/devicebay.html:28 -#: netbox/templates/dcim/frontport.html:32 -#: netbox/templates/dcim/inc/panels/inventory_items.html:19 -#: netbox/templates/dcim/interface.html:42 -#: netbox/templates/dcim/inventoryitem.html:32 -#: netbox/templates/dcim/modulebay.html:34 -#: netbox/templates/dcim/poweroutlet.html:32 -#: netbox/templates/dcim/powerport.html:32 -#: netbox/templates/dcim/rearport.html:32 -#: netbox/templates/extras/customfield.html:26 -#: netbox/templates/generic/bulk_import.html:162 +#: dcim/forms/bulk_edit.py:799 dcim/forms/bulk_edit.py:984 +#: dcim/forms/bulk_edit.py:1003 dcim/forms/bulk_edit.py:1026 +#: dcim/forms/bulk_edit.py:1068 dcim/forms/bulk_edit.py:1112 +#: dcim/forms/bulk_edit.py:1163 dcim/forms/bulk_edit.py:1190 +#: dcim/forms/bulk_edit.py:1217 dcim/forms/bulk_edit.py:1235 +#: dcim/forms/bulk_edit.py:1253 dcim/forms/filtersets.py:67 +#: dcim/forms/object_create.py:46 templates/dcim/cable.html:32 +#: templates/dcim/consoleport.html:32 templates/dcim/consoleserverport.html:32 +#: templates/dcim/devicebay.html:28 templates/dcim/frontport.html:32 +#: templates/dcim/inc/panels/inventory_items.html:19 +#: templates/dcim/interface.html:42 templates/dcim/inventoryitem.html:32 +#: templates/dcim/modulebay.html:34 templates/dcim/poweroutlet.html:32 +#: templates/dcim/powerport.html:32 templates/dcim/rearport.html:32 +#: templates/extras/customfield.html:26 templates/generic/bulk_import.html:162 msgid "Label" msgstr "Label" -#: netbox/dcim/forms/bulk_edit.py:808 netbox/dcim/forms/filtersets.py:1068 -#: netbox/templates/dcim/cable.html:50 +#: dcim/forms/bulk_edit.py:808 dcim/forms/filtersets.py:1068 +#: templates/dcim/cable.html:50 msgid "Length" msgstr "Lengte" -#: netbox/dcim/forms/bulk_edit.py:813 netbox/dcim/forms/bulk_import.py:1226 -#: netbox/dcim/forms/bulk_import.py:1229 netbox/dcim/forms/filtersets.py:1072 +#: dcim/forms/bulk_edit.py:813 dcim/forms/bulk_import.py:1226 +#: dcim/forms/bulk_import.py:1229 dcim/forms/filtersets.py:1072 msgid "Length unit" msgstr "Lengte-eenheid" -#: netbox/dcim/forms/bulk_edit.py:837 -#: netbox/templates/dcim/virtualchassis.html:23 +#: dcim/forms/bulk_edit.py:837 templates/dcim/virtualchassis.html:23 msgid "Domain" msgstr "Domein" -#: netbox/dcim/forms/bulk_edit.py:905 netbox/dcim/forms/bulk_import.py:1345 -#: netbox/dcim/forms/filtersets.py:1158 netbox/dcim/forms/model_forms.py:750 +#: dcim/forms/bulk_edit.py:905 dcim/forms/bulk_import.py:1345 +#: dcim/forms/filtersets.py:1158 dcim/forms/model_forms.py:750 msgid "Power panel" msgstr "Voedingspaneel" -#: netbox/dcim/forms/bulk_edit.py:927 netbox/dcim/forms/bulk_import.py:1381 -#: netbox/dcim/forms/filtersets.py:1180 -#: netbox/templates/dcim/powerfeed.html:83 +#: dcim/forms/bulk_edit.py:927 dcim/forms/bulk_import.py:1381 +#: dcim/forms/filtersets.py:1180 templates/dcim/powerfeed.html:83 msgid "Supply" msgstr "Levering" -#: netbox/dcim/forms/bulk_edit.py:933 netbox/dcim/forms/bulk_import.py:1386 -#: netbox/dcim/forms/filtersets.py:1185 -#: netbox/templates/dcim/powerfeed.html:95 +#: dcim/forms/bulk_edit.py:933 dcim/forms/bulk_import.py:1386 +#: dcim/forms/filtersets.py:1185 templates/dcim/powerfeed.html:95 msgid "Phase" msgstr "Fase" -#: netbox/dcim/forms/bulk_edit.py:939 netbox/dcim/forms/filtersets.py:1190 -#: netbox/templates/dcim/powerfeed.html:87 +#: dcim/forms/bulk_edit.py:939 dcim/forms/filtersets.py:1190 +#: templates/dcim/powerfeed.html:87 msgid "Voltage" msgstr "Spanning" -#: netbox/dcim/forms/bulk_edit.py:943 netbox/dcim/forms/filtersets.py:1194 -#: netbox/templates/dcim/powerfeed.html:91 +#: dcim/forms/bulk_edit.py:943 dcim/forms/filtersets.py:1194 +#: templates/dcim/powerfeed.html:91 msgid "Amperage" msgstr "Stroomsterkte" -#: netbox/dcim/forms/bulk_edit.py:947 netbox/dcim/forms/filtersets.py:1198 +#: dcim/forms/bulk_edit.py:947 dcim/forms/filtersets.py:1198 msgid "Max utilization" msgstr "Maximaal gebruik" -#: netbox/dcim/forms/bulk_edit.py:1036 +#: dcim/forms/bulk_edit.py:1036 msgid "Maximum draw" msgstr "Maximale trekking" -#: netbox/dcim/forms/bulk_edit.py:1039 -#: netbox/dcim/models/device_component_templates.py:282 -#: netbox/dcim/models/device_components.py:356 +#: dcim/forms/bulk_edit.py:1039 dcim/models/device_component_templates.py:282 +#: dcim/models/device_components.py:356 msgid "Maximum power draw (watts)" msgstr "Maximaal stroomverbruik (watt)" -#: netbox/dcim/forms/bulk_edit.py:1042 +#: dcim/forms/bulk_edit.py:1042 msgid "Allocated draw" msgstr "Toegewezen loting" -#: netbox/dcim/forms/bulk_edit.py:1045 -#: netbox/dcim/models/device_component_templates.py:289 -#: netbox/dcim/models/device_components.py:363 +#: dcim/forms/bulk_edit.py:1045 dcim/models/device_component_templates.py:289 +#: dcim/models/device_components.py:363 msgid "Allocated power draw (watts)" msgstr "Toegewezen stroomverbruik (watt)" -#: netbox/dcim/forms/bulk_edit.py:1078 netbox/dcim/forms/bulk_import.py:786 -#: netbox/dcim/forms/model_forms.py:953 netbox/dcim/forms/model_forms.py:1278 -#: netbox/dcim/forms/model_forms.py:1567 netbox/dcim/forms/object_import.py:55 +#: dcim/forms/bulk_edit.py:1078 dcim/forms/bulk_import.py:786 +#: dcim/forms/model_forms.py:953 dcim/forms/model_forms.py:1278 +#: dcim/forms/model_forms.py:1567 dcim/forms/object_import.py:55 msgid "Power port" msgstr "Voedingspoort" -#: netbox/dcim/forms/bulk_edit.py:1083 netbox/dcim/forms/bulk_import.py:793 +#: dcim/forms/bulk_edit.py:1083 dcim/forms/bulk_import.py:793 msgid "Feed leg" msgstr "Voer de poot in" -#: netbox/dcim/forms/bulk_edit.py:1129 netbox/dcim/forms/bulk_edit.py:1440 +#: dcim/forms/bulk_edit.py:1129 dcim/forms/bulk_edit.py:1440 msgid "Management only" msgstr "Alleen voor beheer" -#: netbox/dcim/forms/bulk_edit.py:1139 netbox/dcim/forms/bulk_edit.py:1446 -#: netbox/dcim/forms/bulk_import.py:876 netbox/dcim/forms/filtersets.py:1394 -#: netbox/dcim/forms/object_import.py:90 -#: netbox/dcim/models/device_component_templates.py:437 -#: netbox/dcim/models/device_components.py:670 +#: dcim/forms/bulk_edit.py:1139 dcim/forms/bulk_edit.py:1446 +#: dcim/forms/bulk_import.py:876 dcim/forms/filtersets.py:1394 +#: dcim/forms/object_import.py:90 +#: dcim/models/device_component_templates.py:437 +#: dcim/models/device_components.py:670 msgid "PoE mode" msgstr "PoE-modus" -#: netbox/dcim/forms/bulk_edit.py:1145 netbox/dcim/forms/bulk_edit.py:1452 -#: netbox/dcim/forms/bulk_import.py:882 netbox/dcim/forms/filtersets.py:1399 -#: netbox/dcim/forms/object_import.py:95 -#: netbox/dcim/models/device_component_templates.py:443 -#: netbox/dcim/models/device_components.py:676 +#: dcim/forms/bulk_edit.py:1145 dcim/forms/bulk_edit.py:1452 +#: dcim/forms/bulk_import.py:882 dcim/forms/filtersets.py:1399 +#: dcim/forms/object_import.py:95 +#: dcim/models/device_component_templates.py:443 +#: dcim/models/device_components.py:676 msgid "PoE type" msgstr "PoE-type" -#: netbox/dcim/forms/bulk_edit.py:1151 netbox/dcim/forms/filtersets.py:1404 -#: netbox/dcim/forms/object_import.py:100 +#: dcim/forms/bulk_edit.py:1151 dcim/forms/filtersets.py:1404 +#: dcim/forms/object_import.py:100 msgid "Wireless role" msgstr "Draadloze rol" -#: netbox/dcim/forms/bulk_edit.py:1288 netbox/dcim/forms/model_forms.py:669 -#: netbox/dcim/forms/model_forms.py:1223 netbox/dcim/tables/devices.py:313 -#: netbox/templates/dcim/consoleport.html:24 -#: netbox/templates/dcim/consoleserverport.html:24 -#: netbox/templates/dcim/frontport.html:24 -#: netbox/templates/dcim/interface.html:34 -#: netbox/templates/dcim/module.html:54 -#: netbox/templates/dcim/modulebay.html:26 -#: netbox/templates/dcim/modulebay.html:58 -#: netbox/templates/dcim/poweroutlet.html:24 -#: netbox/templates/dcim/powerport.html:24 -#: netbox/templates/dcim/rearport.html:24 +#: dcim/forms/bulk_edit.py:1288 dcim/forms/model_forms.py:669 +#: dcim/forms/model_forms.py:1223 dcim/tables/devices.py:313 +#: templates/dcim/consoleport.html:24 templates/dcim/consoleserverport.html:24 +#: templates/dcim/frontport.html:24 templates/dcim/interface.html:34 +#: templates/dcim/module.html:54 templates/dcim/modulebay.html:26 +#: templates/dcim/modulebay.html:58 templates/dcim/poweroutlet.html:24 +#: templates/dcim/powerport.html:24 templates/dcim/rearport.html:24 msgid "Module" msgstr "Module" -#: netbox/dcim/forms/bulk_edit.py:1420 netbox/dcim/tables/devices.py:665 -#: netbox/templates/dcim/interface.html:110 +#: dcim/forms/bulk_edit.py:1420 dcim/tables/devices.py:665 +#: templates/dcim/interface.html:110 msgid "LAG" msgstr "LAG" -#: netbox/dcim/forms/bulk_edit.py:1425 netbox/dcim/forms/model_forms.py:1305 +#: dcim/forms/bulk_edit.py:1425 dcim/forms/model_forms.py:1305 msgid "Virtual device contexts" msgstr "Contexten van virtuele apparaten" -#: netbox/dcim/forms/bulk_edit.py:1431 netbox/dcim/forms/bulk_import.py:714 -#: netbox/dcim/forms/bulk_import.py:740 netbox/dcim/forms/filtersets.py:1252 -#: netbox/dcim/forms/filtersets.py:1277 netbox/dcim/forms/filtersets.py:1358 -#: netbox/dcim/tables/devices.py:610 -#: netbox/templates/circuits/inc/circuit_termination_fields.html:67 -#: netbox/templates/dcim/consoleport.html:40 -#: netbox/templates/dcim/consoleserverport.html:40 +#: dcim/forms/bulk_edit.py:1431 dcim/forms/bulk_import.py:714 +#: dcim/forms/bulk_import.py:740 dcim/forms/filtersets.py:1252 +#: dcim/forms/filtersets.py:1277 dcim/forms/filtersets.py:1358 +#: dcim/tables/devices.py:610 +#: templates/circuits/inc/circuit_termination_fields.html:67 +#: templates/dcim/consoleport.html:40 templates/dcim/consoleserverport.html:40 msgid "Speed" msgstr "Snelheid" -#: netbox/dcim/forms/bulk_edit.py:1460 netbox/dcim/forms/bulk_import.py:885 -#: netbox/templates/vpn/ikepolicy.html:25 -#: netbox/templates/vpn/ipsecprofile.html:21 -#: netbox/templates/vpn/ipsecprofile.html:48 -#: netbox/virtualization/forms/bulk_edit.py:233 -#: netbox/virtualization/forms/bulk_import.py:165 -#: netbox/vpn/forms/bulk_edit.py:146 netbox/vpn/forms/bulk_edit.py:232 -#: netbox/vpn/forms/bulk_import.py:176 netbox/vpn/forms/bulk_import.py:234 -#: netbox/vpn/forms/filtersets.py:135 netbox/vpn/forms/filtersets.py:178 -#: netbox/vpn/forms/filtersets.py:192 netbox/vpn/tables/crypto.py:64 -#: netbox/vpn/tables/crypto.py:162 +#: dcim/forms/bulk_edit.py:1460 dcim/forms/bulk_import.py:885 +#: templates/vpn/ikepolicy.html:25 templates/vpn/ipsecprofile.html:21 +#: templates/vpn/ipsecprofile.html:48 virtualization/forms/bulk_edit.py:233 +#: virtualization/forms/bulk_import.py:165 vpn/forms/bulk_edit.py:146 +#: vpn/forms/bulk_edit.py:232 vpn/forms/bulk_import.py:176 +#: vpn/forms/bulk_import.py:234 vpn/forms/filtersets.py:135 +#: vpn/forms/filtersets.py:178 vpn/forms/filtersets.py:192 +#: vpn/tables/crypto.py:64 vpn/tables/crypto.py:162 msgid "Mode" msgstr "Modus" -#: netbox/dcim/forms/bulk_edit.py:1468 netbox/dcim/forms/model_forms.py:1354 -#: netbox/ipam/forms/bulk_import.py:178 netbox/ipam/forms/filtersets.py:498 -#: netbox/ipam/models/vlans.py:84 netbox/virtualization/forms/bulk_edit.py:240 -#: netbox/virtualization/forms/model_forms.py:321 +#: dcim/forms/bulk_edit.py:1468 dcim/forms/model_forms.py:1354 +#: ipam/forms/bulk_import.py:178 ipam/forms/filtersets.py:498 +#: ipam/models/vlans.py:84 virtualization/forms/bulk_edit.py:240 +#: virtualization/forms/model_forms.py:321 msgid "VLAN group" msgstr "VLAN-groep" -#: netbox/dcim/forms/bulk_edit.py:1476 netbox/dcim/forms/model_forms.py:1360 -#: netbox/dcim/tables/devices.py:579 -#: netbox/virtualization/forms/bulk_edit.py:248 -#: netbox/virtualization/forms/model_forms.py:326 +#: dcim/forms/bulk_edit.py:1476 dcim/forms/model_forms.py:1360 +#: dcim/tables/devices.py:579 virtualization/forms/bulk_edit.py:248 +#: virtualization/forms/model_forms.py:326 msgid "Untagged VLAN" msgstr "VLAN zonder label" -#: netbox/dcim/forms/bulk_edit.py:1484 netbox/dcim/forms/model_forms.py:1369 -#: netbox/dcim/tables/devices.py:585 -#: netbox/virtualization/forms/bulk_edit.py:256 -#: netbox/virtualization/forms/model_forms.py:335 +#: dcim/forms/bulk_edit.py:1484 dcim/forms/model_forms.py:1369 +#: dcim/tables/devices.py:585 virtualization/forms/bulk_edit.py:256 +#: virtualization/forms/model_forms.py:335 msgid "Tagged VLANs" msgstr "Getagde VLAN's" -#: netbox/dcim/forms/bulk_edit.py:1494 netbox/dcim/forms/model_forms.py:1341 +#: dcim/forms/bulk_edit.py:1494 dcim/forms/model_forms.py:1341 msgid "Wireless LAN group" msgstr "Draadloze LAN-groep" -#: netbox/dcim/forms/bulk_edit.py:1499 netbox/dcim/forms/model_forms.py:1346 -#: netbox/dcim/tables/devices.py:619 netbox/netbox/navigation/menu.py:146 -#: netbox/templates/dcim/interface.html:280 -#: netbox/wireless/tables/wirelesslan.py:24 +#: dcim/forms/bulk_edit.py:1499 dcim/forms/model_forms.py:1346 +#: dcim/tables/devices.py:619 netbox/navigation/menu.py:146 +#: templates/dcim/interface.html:280 wireless/tables/wirelesslan.py:24 msgid "Wireless LANs" msgstr "Draadloze LAN's" -#: netbox/dcim/forms/bulk_edit.py:1508 netbox/dcim/forms/filtersets.py:1328 -#: netbox/dcim/forms/model_forms.py:1390 netbox/ipam/forms/bulk_edit.py:285 -#: netbox/ipam/forms/bulk_edit.py:377 netbox/ipam/forms/filtersets.py:169 -#: netbox/templates/dcim/interface.html:122 -#: netbox/templates/ipam/prefix.html:95 -#: netbox/virtualization/forms/model_forms.py:349 +#: dcim/forms/bulk_edit.py:1508 dcim/forms/filtersets.py:1328 +#: dcim/forms/model_forms.py:1390 ipam/forms/bulk_edit.py:286 +#: ipam/forms/bulk_edit.py:378 ipam/forms/filtersets.py:169 +#: templates/dcim/interface.html:122 templates/ipam/prefix.html:95 +#: virtualization/forms/model_forms.py:349 msgid "Addressing" msgstr "Addressing" -#: netbox/dcim/forms/bulk_edit.py:1509 netbox/dcim/forms/filtersets.py:720 -#: netbox/dcim/forms/model_forms.py:1391 -#: netbox/virtualization/forms/model_forms.py:350 +#: dcim/forms/bulk_edit.py:1509 dcim/forms/filtersets.py:720 +#: dcim/forms/model_forms.py:1391 virtualization/forms/model_forms.py:350 msgid "Operation" msgstr "Operatie" -#: netbox/dcim/forms/bulk_edit.py:1510 netbox/dcim/forms/filtersets.py:1329 -#: netbox/dcim/forms/model_forms.py:987 netbox/dcim/forms/model_forms.py:1393 +#: dcim/forms/bulk_edit.py:1510 dcim/forms/filtersets.py:1329 +#: dcim/forms/model_forms.py:987 dcim/forms/model_forms.py:1393 msgid "PoE" msgstr "PoE" -#: netbox/dcim/forms/bulk_edit.py:1511 netbox/dcim/forms/model_forms.py:1392 -#: netbox/templates/dcim/interface.html:99 -#: netbox/virtualization/forms/bulk_edit.py:267 -#: netbox/virtualization/forms/model_forms.py:351 +#: dcim/forms/bulk_edit.py:1511 dcim/forms/model_forms.py:1392 +#: templates/dcim/interface.html:99 virtualization/forms/bulk_edit.py:267 +#: virtualization/forms/model_forms.py:351 msgid "Related Interfaces" msgstr "Gerelateerde interfaces" -#: netbox/dcim/forms/bulk_edit.py:1512 netbox/dcim/forms/model_forms.py:1394 -#: netbox/virtualization/forms/bulk_edit.py:268 -#: netbox/virtualization/forms/model_forms.py:352 +#: dcim/forms/bulk_edit.py:1512 dcim/forms/model_forms.py:1394 +#: virtualization/forms/bulk_edit.py:268 +#: virtualization/forms/model_forms.py:352 msgid "802.1Q Switching" msgstr "802.1Q-omschakeling" -#: netbox/dcim/forms/bulk_edit.py:1574 netbox/dcim/forms/bulk_edit.py:1576 +#: dcim/forms/bulk_edit.py:1574 dcim/forms/bulk_edit.py:1576 msgid "Interface mode must be specified to assign VLANs" msgstr "De interfacemodus moet worden gespecificeerd om VLAN's toe te wijzen" -#: netbox/dcim/forms/bulk_edit.py:1581 netbox/dcim/forms/common.py:50 +#: dcim/forms/bulk_edit.py:1581 dcim/forms/common.py:50 msgid "An access interface cannot have tagged VLANs assigned." msgstr "" "Aan een toegangsinterface kunnen geen gelabelde VLAN's worden toegewezen." -#: netbox/dcim/forms/bulk_import.py:64 +#: dcim/forms/bulk_import.py:64 msgid "Name of parent region" msgstr "Naam van de moederregio" -#: netbox/dcim/forms/bulk_import.py:78 +#: dcim/forms/bulk_import.py:78 msgid "Name of parent site group" msgstr "Naam van de oudersitegroep" -#: netbox/dcim/forms/bulk_import.py:97 +#: dcim/forms/bulk_import.py:97 msgid "Assigned region" msgstr "Toegewezen regio" -#: netbox/dcim/forms/bulk_import.py:104 netbox/tenancy/forms/bulk_import.py:44 -#: netbox/tenancy/forms/bulk_import.py:85 -#: netbox/wireless/forms/bulk_import.py:40 +#: dcim/forms/bulk_import.py:104 tenancy/forms/bulk_import.py:44 +#: tenancy/forms/bulk_import.py:85 wireless/forms/bulk_import.py:40 msgid "Assigned group" msgstr "Toegewezen groep" -#: netbox/dcim/forms/bulk_import.py:123 +#: dcim/forms/bulk_import.py:123 msgid "available options" msgstr "beschikbare opties" -#: netbox/dcim/forms/bulk_import.py:134 netbox/dcim/forms/bulk_import.py:543 -#: netbox/dcim/forms/bulk_import.py:1342 netbox/ipam/forms/bulk_import.py:175 -#: netbox/ipam/forms/bulk_import.py:433 -#: netbox/virtualization/forms/bulk_import.py:63 -#: netbox/virtualization/forms/bulk_import.py:89 +#: dcim/forms/bulk_import.py:134 dcim/forms/bulk_import.py:543 +#: dcim/forms/bulk_import.py:1342 ipam/forms/bulk_import.py:175 +#: ipam/forms/bulk_import.py:433 virtualization/forms/bulk_import.py:63 +#: virtualization/forms/bulk_import.py:89 msgid "Assigned site" msgstr "Toegewezen site" -#: netbox/dcim/forms/bulk_import.py:141 +#: dcim/forms/bulk_import.py:141 msgid "Parent location" msgstr "Locatie van de ouders" -#: netbox/dcim/forms/bulk_import.py:143 +#: dcim/forms/bulk_import.py:143 msgid "Location not found." msgstr "Locatie niet gevonden." -#: netbox/dcim/forms/bulk_import.py:185 +#: dcim/forms/bulk_import.py:185 msgid "The manufacturer of this rack type" msgstr "De fabrikant van dit racktype" -#: netbox/dcim/forms/bulk_import.py:196 +#: dcim/forms/bulk_import.py:196 msgid "The lowest-numbered position in the rack" msgstr "De positie met het laagst genummerde nummer in het rack" -#: netbox/dcim/forms/bulk_import.py:201 netbox/dcim/forms/bulk_import.py:268 +#: dcim/forms/bulk_import.py:201 dcim/forms/bulk_import.py:268 msgid "Rail-to-rail width (in inches)" msgstr "Breedte van rail tot rail (in inches)" -#: netbox/dcim/forms/bulk_import.py:207 netbox/dcim/forms/bulk_import.py:274 +#: dcim/forms/bulk_import.py:207 dcim/forms/bulk_import.py:274 msgid "Unit for outer dimensions" msgstr "Eenheid voor buitenafmetingen" -#: netbox/dcim/forms/bulk_import.py:213 netbox/dcim/forms/bulk_import.py:286 +#: dcim/forms/bulk_import.py:213 dcim/forms/bulk_import.py:286 msgid "Unit for rack weights" msgstr "Eenheid voor rackgewichten" -#: netbox/dcim/forms/bulk_import.py:245 +#: dcim/forms/bulk_import.py:245 msgid "Name of assigned tenant" msgstr "Naam van de toegewezen tenant" -#: netbox/dcim/forms/bulk_import.py:257 +#: dcim/forms/bulk_import.py:257 msgid "Name of assigned role" msgstr "Naam van de toegewezen rol" -#: netbox/dcim/forms/bulk_import.py:280 netbox/dcim/forms/bulk_import.py:413 -#: netbox/dcim/forms/bulk_import.py:583 +#: dcim/forms/bulk_import.py:280 dcim/forms/bulk_import.py:413 +#: dcim/forms/bulk_import.py:583 msgid "Airflow direction" msgstr "Richting van de luchtstroom" -#: netbox/dcim/forms/bulk_import.py:312 +#: dcim/forms/bulk_import.py:312 msgid "Parent site" msgstr "Site voor ouders" -#: netbox/dcim/forms/bulk_import.py:319 netbox/dcim/forms/bulk_import.py:1355 +#: dcim/forms/bulk_import.py:319 dcim/forms/bulk_import.py:1355 msgid "Rack's location (if any)" msgstr "Locatie van het rek (indien aanwezig)" -#: netbox/dcim/forms/bulk_import.py:328 netbox/dcim/forms/model_forms.py:311 -#: netbox/dcim/tables/racks.py:222 -#: netbox/templates/dcim/rackreservation.html:12 -#: netbox/templates/dcim/rackreservation.html:45 +#: dcim/forms/bulk_import.py:328 dcim/forms/model_forms.py:311 +#: dcim/tables/racks.py:222 templates/dcim/rackreservation.html:12 +#: templates/dcim/rackreservation.html:45 msgid "Units" msgstr "Eenheden" -#: netbox/dcim/forms/bulk_import.py:331 +#: dcim/forms/bulk_import.py:331 msgid "Comma-separated list of individual unit numbers" msgstr "Door komma's gescheiden lijst van individuele eenheidsnummers" -#: netbox/dcim/forms/bulk_import.py:374 +#: dcim/forms/bulk_import.py:374 msgid "The manufacturer which produces this device type" msgstr "De fabrikant die dit apparaattype produceert" -#: netbox/dcim/forms/bulk_import.py:381 +#: dcim/forms/bulk_import.py:381 msgid "The default platform for devices of this type (optional)" msgstr "Het standaardplatform voor apparaten van dit type (optioneel)" -#: netbox/dcim/forms/bulk_import.py:386 +#: dcim/forms/bulk_import.py:386 msgid "Device weight" msgstr "Gewicht van het apparaat" -#: netbox/dcim/forms/bulk_import.py:392 +#: dcim/forms/bulk_import.py:392 msgid "Unit for device weight" msgstr "Eenheid voor het gewicht van het apparaat" -#: netbox/dcim/forms/bulk_import.py:418 +#: dcim/forms/bulk_import.py:418 msgid "Module weight" msgstr "Gewicht van de module" -#: netbox/dcim/forms/bulk_import.py:424 +#: dcim/forms/bulk_import.py:424 msgid "Unit for module weight" msgstr "Eenheid voor modulegewicht" -#: netbox/dcim/forms/bulk_import.py:454 +#: dcim/forms/bulk_import.py:454 msgid "Limit platform assignments to this manufacturer" msgstr "Beperk de platformtoewijzingen aan deze fabrikant" -#: netbox/dcim/forms/bulk_import.py:476 netbox/dcim/forms/bulk_import.py:1425 -#: netbox/tenancy/forms/bulk_import.py:106 +#: dcim/forms/bulk_import.py:476 dcim/forms/bulk_import.py:1425 +#: tenancy/forms/bulk_import.py:106 msgid "Assigned role" msgstr "Toegewezen rol" -#: netbox/dcim/forms/bulk_import.py:489 +#: dcim/forms/bulk_import.py:489 msgid "Device type manufacturer" msgstr "Apparaattype fabrikant" -#: netbox/dcim/forms/bulk_import.py:495 +#: dcim/forms/bulk_import.py:495 msgid "Device type model" msgstr "Apparaattype model" -#: netbox/dcim/forms/bulk_import.py:502 -#: netbox/virtualization/forms/bulk_import.py:126 +#: dcim/forms/bulk_import.py:502 virtualization/forms/bulk_import.py:126 msgid "Assigned platform" msgstr "Toegewezen platform" -#: netbox/dcim/forms/bulk_import.py:510 netbox/dcim/forms/bulk_import.py:514 -#: netbox/dcim/forms/model_forms.py:536 +#: dcim/forms/bulk_import.py:510 dcim/forms/bulk_import.py:514 +#: dcim/forms/model_forms.py:536 msgid "Virtual chassis" msgstr "Virtueel chassis" -#: netbox/dcim/forms/bulk_import.py:517 netbox/dcim/forms/filtersets.py:728 -#: netbox/dcim/forms/filtersets.py:898 netbox/dcim/forms/model_forms.py:522 -#: netbox/dcim/tables/devices.py:202 netbox/extras/filtersets.py:596 -#: netbox/extras/forms/filtersets.py:322 netbox/ipam/forms/bulk_edit.py:482 -#: netbox/ipam/forms/filtersets.py:415 netbox/ipam/forms/filtersets.py:447 -#: netbox/templates/dcim/device.html:239 -#: netbox/templates/virtualization/cluster.html:10 -#: netbox/templates/virtualization/virtualmachine.html:92 -#: netbox/templates/virtualization/virtualmachine.html:101 -#: netbox/virtualization/filtersets.py:157 -#: netbox/virtualization/filtersets.py:277 -#: netbox/virtualization/forms/bulk_edit.py:129 -#: netbox/virtualization/forms/bulk_import.py:92 -#: netbox/virtualization/forms/filtersets.py:99 -#: netbox/virtualization/forms/filtersets.py:123 -#: netbox/virtualization/forms/filtersets.py:204 -#: netbox/virtualization/forms/model_forms.py:79 -#: netbox/virtualization/forms/model_forms.py:176 -#: netbox/virtualization/tables/virtualmachines.py:67 +#: dcim/forms/bulk_import.py:517 dcim/forms/filtersets.py:728 +#: dcim/forms/filtersets.py:898 dcim/forms/model_forms.py:522 +#: dcim/tables/devices.py:202 extras/filtersets.py:596 +#: extras/forms/filtersets.py:322 ipam/forms/filtersets.py:415 +#: ipam/forms/filtersets.py:447 templates/dcim/device.html:239 +#: templates/virtualization/cluster.html:10 +#: templates/virtualization/virtualmachine.html:92 +#: templates/virtualization/virtualmachine.html:101 +#: virtualization/filtersets.py:157 virtualization/filtersets.py:277 +#: virtualization/forms/bulk_edit.py:129 +#: virtualization/forms/bulk_import.py:92 +#: virtualization/forms/filtersets.py:99 +#: virtualization/forms/filtersets.py:123 +#: virtualization/forms/filtersets.py:204 +#: virtualization/forms/model_forms.py:79 +#: virtualization/forms/model_forms.py:176 +#: virtualization/tables/virtualmachines.py:67 msgid "Cluster" msgstr "Cluster" -#: netbox/dcim/forms/bulk_import.py:521 +#: dcim/forms/bulk_import.py:521 msgid "Virtualization cluster" msgstr "Virtualisatiecluster" -#: netbox/dcim/forms/bulk_import.py:550 +#: dcim/forms/bulk_import.py:550 msgid "Assigned location (if any)" msgstr "Toegewezen locatie (indien aanwezig)" -#: netbox/dcim/forms/bulk_import.py:557 +#: dcim/forms/bulk_import.py:557 msgid "Assigned rack (if any)" msgstr "Toegewezen rek (indien aanwezig)" -#: netbox/dcim/forms/bulk_import.py:560 +#: dcim/forms/bulk_import.py:560 msgid "Face" msgstr "Gezicht" -#: netbox/dcim/forms/bulk_import.py:563 +#: dcim/forms/bulk_import.py:563 msgid "Mounted rack face" msgstr "Gemonteerd rackfront" -#: netbox/dcim/forms/bulk_import.py:570 +#: dcim/forms/bulk_import.py:570 msgid "Parent device (for child devices)" msgstr "Ouderapparaat (voor apparaten voor kinderen)" -#: netbox/dcim/forms/bulk_import.py:573 +#: dcim/forms/bulk_import.py:573 msgid "Device bay" msgstr "Toestelvak" -#: netbox/dcim/forms/bulk_import.py:577 +#: dcim/forms/bulk_import.py:577 msgid "Device bay in which this device is installed (for child devices)" msgstr "" "Apparaatvak waarin dit apparaat is geïnstalleerd (voor onderliggende " "apparaten)" -#: netbox/dcim/forms/bulk_import.py:644 +#: dcim/forms/bulk_import.py:644 msgid "The device in which this module is installed" msgstr "Het apparaat waarop deze module is geïnstalleerd" -#: netbox/dcim/forms/bulk_import.py:647 netbox/dcim/forms/model_forms.py:640 +#: dcim/forms/bulk_import.py:647 dcim/forms/model_forms.py:640 msgid "Module bay" msgstr "Modulevak" -#: netbox/dcim/forms/bulk_import.py:650 +#: dcim/forms/bulk_import.py:650 msgid "The module bay in which this module is installed" msgstr "De moduleruimte waarin deze module is geïnstalleerd" -#: netbox/dcim/forms/bulk_import.py:656 +#: dcim/forms/bulk_import.py:656 msgid "The type of module" msgstr "Het type module" -#: netbox/dcim/forms/bulk_import.py:664 netbox/dcim/forms/model_forms.py:656 +#: dcim/forms/bulk_import.py:664 dcim/forms/model_forms.py:656 msgid "Replicate components" msgstr "Componenten repliceren" -#: netbox/dcim/forms/bulk_import.py:666 +#: dcim/forms/bulk_import.py:666 msgid "" "Automatically populate components associated with this module type (enabled " "by default)" @@ -4348,271 +3955,264 @@ msgstr "" "Componenten die aan dit moduletype zijn gekoppeld automatisch invullen " "(standaard ingeschakeld)" -#: netbox/dcim/forms/bulk_import.py:669 netbox/dcim/forms/model_forms.py:662 +#: dcim/forms/bulk_import.py:669 dcim/forms/model_forms.py:662 msgid "Adopt components" msgstr "Componenten adopteren" -#: netbox/dcim/forms/bulk_import.py:671 netbox/dcim/forms/model_forms.py:665 +#: dcim/forms/bulk_import.py:671 dcim/forms/model_forms.py:665 msgid "Adopt already existing components" msgstr "Reeds bestaande componenten adopteren" -#: netbox/dcim/forms/bulk_import.py:711 netbox/dcim/forms/bulk_import.py:737 -#: netbox/dcim/forms/bulk_import.py:763 +#: dcim/forms/bulk_import.py:711 dcim/forms/bulk_import.py:737 +#: dcim/forms/bulk_import.py:763 msgid "Port type" msgstr "Poorttype" -#: netbox/dcim/forms/bulk_import.py:719 netbox/dcim/forms/bulk_import.py:745 +#: dcim/forms/bulk_import.py:719 dcim/forms/bulk_import.py:745 msgid "Port speed in bps" msgstr "Poortsnelheid in bps" -#: netbox/dcim/forms/bulk_import.py:783 +#: dcim/forms/bulk_import.py:783 msgid "Outlet type" msgstr "Type stopcontact" -#: netbox/dcim/forms/bulk_import.py:790 +#: dcim/forms/bulk_import.py:790 msgid "Local power port which feeds this outlet" msgstr "Lokale voedingspoort die dit stopcontact voedt" -#: netbox/dcim/forms/bulk_import.py:796 +#: dcim/forms/bulk_import.py:796 msgid "Electrical phase (for three-phase circuits)" msgstr "Elektrische fase (voor driefasige circuits)" -#: netbox/dcim/forms/bulk_import.py:837 netbox/dcim/forms/model_forms.py:1316 -#: netbox/virtualization/forms/bulk_import.py:155 -#: netbox/virtualization/forms/model_forms.py:305 +#: dcim/forms/bulk_import.py:837 dcim/forms/model_forms.py:1316 +#: virtualization/forms/bulk_import.py:155 +#: virtualization/forms/model_forms.py:305 msgid "Parent interface" msgstr "Interface voor ouders" -#: netbox/dcim/forms/bulk_import.py:844 netbox/dcim/forms/model_forms.py:1324 -#: netbox/virtualization/forms/bulk_import.py:162 -#: netbox/virtualization/forms/model_forms.py:313 +#: dcim/forms/bulk_import.py:844 dcim/forms/model_forms.py:1324 +#: virtualization/forms/bulk_import.py:162 +#: virtualization/forms/model_forms.py:313 msgid "Bridged interface" msgstr "Overbrugde interface" -#: netbox/dcim/forms/bulk_import.py:847 +#: dcim/forms/bulk_import.py:847 msgid "Lag" msgstr "Lag" -#: netbox/dcim/forms/bulk_import.py:851 +#: dcim/forms/bulk_import.py:851 msgid "Parent LAG interface" msgstr "LAG-interface voor ouders" -#: netbox/dcim/forms/bulk_import.py:854 +#: dcim/forms/bulk_import.py:854 msgid "Vdcs" msgstr "Vdcs" -#: netbox/dcim/forms/bulk_import.py:859 +#: dcim/forms/bulk_import.py:859 msgid "VDC names separated by commas, encased with double quotes. Example:" msgstr "" "VDC-namen gescheiden door komma's, tussen dubbele aanhalingstekens. " "Voorbeeld:" -#: netbox/dcim/forms/bulk_import.py:865 +#: dcim/forms/bulk_import.py:865 msgid "Physical medium" msgstr "Fysiek medium" -#: netbox/dcim/forms/bulk_import.py:868 netbox/dcim/forms/filtersets.py:1365 +#: dcim/forms/bulk_import.py:868 dcim/forms/filtersets.py:1365 msgid "Duplex" msgstr "Dubbelzijdig" -#: netbox/dcim/forms/bulk_import.py:873 +#: dcim/forms/bulk_import.py:873 msgid "Poe mode" msgstr "Poe-modus" -#: netbox/dcim/forms/bulk_import.py:879 +#: dcim/forms/bulk_import.py:879 msgid "Poe type" msgstr "Poe-type" -#: netbox/dcim/forms/bulk_import.py:888 -#: netbox/virtualization/forms/bulk_import.py:168 +#: dcim/forms/bulk_import.py:888 virtualization/forms/bulk_import.py:168 msgid "IEEE 802.1Q operational mode (for L2 interfaces)" msgstr "IEEE 802.1Q operationele modus (voor L2-interfaces)" -#: netbox/dcim/forms/bulk_import.py:895 netbox/ipam/forms/bulk_import.py:161 -#: netbox/ipam/forms/bulk_import.py:247 netbox/ipam/forms/bulk_import.py:283 -#: netbox/ipam/forms/filtersets.py:201 netbox/ipam/forms/filtersets.py:277 -#: netbox/ipam/forms/filtersets.py:336 -#: netbox/virtualization/forms/bulk_import.py:175 +#: dcim/forms/bulk_import.py:895 ipam/forms/bulk_import.py:161 +#: ipam/forms/bulk_import.py:247 ipam/forms/bulk_import.py:283 +#: ipam/forms/filtersets.py:201 ipam/forms/filtersets.py:277 +#: ipam/forms/filtersets.py:336 virtualization/forms/bulk_import.py:175 msgid "Assigned VRF" msgstr "Toegewezen VRF" -#: netbox/dcim/forms/bulk_import.py:898 +#: dcim/forms/bulk_import.py:898 msgid "Rf role" msgstr "Rf-rol" -#: netbox/dcim/forms/bulk_import.py:901 +#: dcim/forms/bulk_import.py:901 msgid "Wireless role (AP/station)" msgstr "Draadloze rol (AP/station)" -#: netbox/dcim/forms/bulk_import.py:937 +#: dcim/forms/bulk_import.py:937 #, python-brace-format msgid "VDC {vdc} is not assigned to device {device}" msgstr "VDC {vdc} is niet toegewezen aan het apparaat {device}" -#: netbox/dcim/forms/bulk_import.py:951 netbox/dcim/forms/model_forms.py:1000 -#: netbox/dcim/forms/model_forms.py:1575 -#: netbox/dcim/forms/object_import.py:117 +#: dcim/forms/bulk_import.py:951 dcim/forms/model_forms.py:1000 +#: dcim/forms/model_forms.py:1575 dcim/forms/object_import.py:117 msgid "Rear port" msgstr "Poort aan de achterkant" -#: netbox/dcim/forms/bulk_import.py:954 +#: dcim/forms/bulk_import.py:954 msgid "Corresponding rear port" msgstr "Bijbehorende poort aan de achterkant" -#: netbox/dcim/forms/bulk_import.py:959 netbox/dcim/forms/bulk_import.py:1000 -#: netbox/dcim/forms/bulk_import.py:1216 +#: dcim/forms/bulk_import.py:959 dcim/forms/bulk_import.py:1000 +#: dcim/forms/bulk_import.py:1216 msgid "Physical medium classification" msgstr "Classificatie van fysieke media" -#: netbox/dcim/forms/bulk_import.py:1028 netbox/dcim/tables/devices.py:822 +#: dcim/forms/bulk_import.py:1028 dcim/tables/devices.py:822 msgid "Installed device" msgstr "Geïnstalleerd apparaat" -#: netbox/dcim/forms/bulk_import.py:1032 +#: dcim/forms/bulk_import.py:1032 msgid "Child device installed within this bay" msgstr "Kinderapparaat dat in deze bay is geïnstalleerd" -#: netbox/dcim/forms/bulk_import.py:1034 +#: dcim/forms/bulk_import.py:1034 msgid "Child device not found." msgstr "Kinderapparaat niet gevonden." -#: netbox/dcim/forms/bulk_import.py:1092 +#: dcim/forms/bulk_import.py:1092 msgid "Parent inventory item" msgstr "Onderliggend inventarisitem" -#: netbox/dcim/forms/bulk_import.py:1095 +#: dcim/forms/bulk_import.py:1095 msgid "Component type" msgstr "Soort onderdeel" -#: netbox/dcim/forms/bulk_import.py:1099 +#: dcim/forms/bulk_import.py:1099 msgid "Component Type" msgstr "Soort onderdeel" -#: netbox/dcim/forms/bulk_import.py:1102 +#: dcim/forms/bulk_import.py:1102 msgid "Compnent name" msgstr "Naam van het onderdeel" -#: netbox/dcim/forms/bulk_import.py:1104 +#: dcim/forms/bulk_import.py:1104 msgid "Component Name" msgstr "Naam van de component" -#: netbox/dcim/forms/bulk_import.py:1146 +#: dcim/forms/bulk_import.py:1146 #, python-brace-format msgid "Component not found: {device} - {component_name}" msgstr "Onderdeel niet gevonden: {device} - {component_name}" -#: netbox/dcim/forms/bulk_import.py:1171 +#: dcim/forms/bulk_import.py:1171 msgid "Side A device" msgstr "Side A-apparaat" -#: netbox/dcim/forms/bulk_import.py:1174 netbox/dcim/forms/bulk_import.py:1192 +#: dcim/forms/bulk_import.py:1174 dcim/forms/bulk_import.py:1192 msgid "Device name" msgstr "Naam van het apparaat" -#: netbox/dcim/forms/bulk_import.py:1177 +#: dcim/forms/bulk_import.py:1177 msgid "Side A type" msgstr "Type kant A" -#: netbox/dcim/forms/bulk_import.py:1180 netbox/dcim/forms/bulk_import.py:1198 +#: dcim/forms/bulk_import.py:1180 dcim/forms/bulk_import.py:1198 msgid "Termination type" msgstr "Soort beëindiging" -#: netbox/dcim/forms/bulk_import.py:1183 +#: dcim/forms/bulk_import.py:1183 msgid "Side A name" msgstr "Naam van kant A" -#: netbox/dcim/forms/bulk_import.py:1184 netbox/dcim/forms/bulk_import.py:1202 +#: dcim/forms/bulk_import.py:1184 dcim/forms/bulk_import.py:1202 msgid "Termination name" msgstr "Naam van beëindiging" -#: netbox/dcim/forms/bulk_import.py:1189 +#: dcim/forms/bulk_import.py:1189 msgid "Side B device" msgstr "Side B-apparaat" -#: netbox/dcim/forms/bulk_import.py:1195 +#: dcim/forms/bulk_import.py:1195 msgid "Side B type" msgstr "Type kant B" -#: netbox/dcim/forms/bulk_import.py:1201 +#: dcim/forms/bulk_import.py:1201 msgid "Side B name" msgstr "Naam van kant B" -#: netbox/dcim/forms/bulk_import.py:1210 -#: netbox/wireless/forms/bulk_import.py:86 +#: dcim/forms/bulk_import.py:1210 wireless/forms/bulk_import.py:86 msgid "Connection status" msgstr "Status van de verbinding" -#: netbox/dcim/forms/bulk_import.py:1262 +#: dcim/forms/bulk_import.py:1262 #, python-brace-format msgid "Side {side_upper}: {device} {termination_object} is already connected" msgstr "Kant {side_upper}: {device} {termination_object} is al verbonden" -#: netbox/dcim/forms/bulk_import.py:1268 +#: dcim/forms/bulk_import.py:1268 #, python-brace-format msgid "{side_upper} side termination not found: {device} {name}" msgstr "{side_upper} nevenbeëindiging niet gevonden: {device} {name}" -#: netbox/dcim/forms/bulk_import.py:1293 netbox/dcim/forms/model_forms.py:785 -#: netbox/dcim/tables/devices.py:1027 netbox/templates/dcim/device.html:132 -#: netbox/templates/dcim/virtualchassis.html:27 -#: netbox/templates/dcim/virtualchassis.html:67 +#: dcim/forms/bulk_import.py:1293 dcim/forms/model_forms.py:785 +#: dcim/tables/devices.py:1027 templates/dcim/device.html:132 +#: templates/dcim/virtualchassis.html:27 templates/dcim/virtualchassis.html:67 msgid "Master" msgstr "Meester" -#: netbox/dcim/forms/bulk_import.py:1297 +#: dcim/forms/bulk_import.py:1297 msgid "Master device" msgstr "Master-apparaat" -#: netbox/dcim/forms/bulk_import.py:1314 +#: dcim/forms/bulk_import.py:1314 msgid "Name of parent site" msgstr "Naam van de moedersite" -#: netbox/dcim/forms/bulk_import.py:1348 +#: dcim/forms/bulk_import.py:1348 msgid "Upstream power panel" msgstr "Stroomopwaarts stroompaneel" -#: netbox/dcim/forms/bulk_import.py:1378 +#: dcim/forms/bulk_import.py:1378 msgid "Primary or redundant" msgstr "Primair of redundant" -#: netbox/dcim/forms/bulk_import.py:1383 +#: dcim/forms/bulk_import.py:1383 msgid "Supply type (AC/DC)" msgstr "Soort voeding (AC/DC)" -#: netbox/dcim/forms/bulk_import.py:1388 +#: dcim/forms/bulk_import.py:1388 msgid "Single or three-phase" msgstr "Enkel- of driefasig" -#: netbox/dcim/forms/bulk_import.py:1439 netbox/dcim/forms/model_forms.py:1670 -#: netbox/templates/dcim/device.html:190 -#: netbox/templates/dcim/virtualdevicecontext.html:30 -#: netbox/templates/virtualization/virtualmachine.html:52 +#: dcim/forms/bulk_import.py:1439 dcim/forms/model_forms.py:1670 +#: templates/dcim/device.html:190 templates/dcim/virtualdevicecontext.html:30 +#: templates/virtualization/virtualmachine.html:52 msgid "Primary IPv4" msgstr "Primaire IPv4" -#: netbox/dcim/forms/bulk_import.py:1443 +#: dcim/forms/bulk_import.py:1443 msgid "IPv4 address with mask, e.g. 1.2.3.4/24" msgstr "IPv4-adres met masker, bijvoorbeeld 1.2.3.4/24" -#: netbox/dcim/forms/bulk_import.py:1446 netbox/dcim/forms/model_forms.py:1679 -#: netbox/templates/dcim/device.html:206 -#: netbox/templates/dcim/virtualdevicecontext.html:41 -#: netbox/templates/virtualization/virtualmachine.html:68 +#: dcim/forms/bulk_import.py:1446 dcim/forms/model_forms.py:1679 +#: templates/dcim/device.html:206 templates/dcim/virtualdevicecontext.html:41 +#: templates/virtualization/virtualmachine.html:68 msgid "Primary IPv6" msgstr "Primaire IPv6" -#: netbox/dcim/forms/bulk_import.py:1450 +#: dcim/forms/bulk_import.py:1450 msgid "IPv6 address with prefix length, e.g. 2001:db8::1/64" msgstr "IPv6-adres met prefixlengte, bijvoorbeeld 2001:db8: :1/64" -#: netbox/dcim/forms/common.py:24 netbox/dcim/models/device_components.py:527 -#: netbox/templates/dcim/interface.html:57 -#: netbox/templates/virtualization/vminterface.html:55 -#: netbox/virtualization/forms/bulk_edit.py:225 +#: dcim/forms/common.py:24 dcim/models/device_components.py:527 +#: templates/dcim/interface.html:57 +#: templates/virtualization/vminterface.html:55 +#: virtualization/forms/bulk_edit.py:225 msgid "MTU" msgstr "MTU" -#: netbox/dcim/forms/common.py:65 +#: dcim/forms/common.py:65 #, python-brace-format msgid "" "The tagged VLANs ({vlans}) must belong to the same site as the interface's " @@ -4621,7 +4221,7 @@ msgstr "" "De gelabelde VLAN's ({vlans}) moeten tot dezelfde site behoren als het " "bovenliggende apparaat/VM van de interface, of ze moeten globaal zijn" -#: netbox/dcim/forms/common.py:126 +#: dcim/forms/common.py:126 msgid "" "Cannot install module with placeholder values in a module bay with no " "position defined." @@ -4629,7 +4229,7 @@ msgstr "" "Kan een module met tijdelijke aanduidingen niet installeren in een " "modulecompartiment zonder gedefinieerde positie." -#: netbox/dcim/forms/common.py:131 +#: dcim/forms/common.py:131 #, python-brace-format msgid "" "Cannot install module with placeholder values in a module bay tree {level} " @@ -4639,203 +4239,188 @@ msgstr "" "modulelaurierboom {level} in een boom, maar {tokens} tijdelijke aanduidingen" " gegeven." -#: netbox/dcim/forms/common.py:144 +#: dcim/forms/common.py:144 #, python-brace-format msgid "Cannot adopt {model} {name} as it already belongs to a module" msgstr "Kan niet adopteren {model} {name} omdat het al bij een module hoort" -#: netbox/dcim/forms/common.py:153 +#: dcim/forms/common.py:153 #, python-brace-format msgid "A {model} named {name} already exists" msgstr "EEN {model} genoemd {name} bestaat al" -#: netbox/dcim/forms/connections.py:49 netbox/dcim/forms/model_forms.py:738 -#: netbox/dcim/tables/power.py:66 -#: netbox/templates/dcim/inc/cable_termination.html:37 -#: netbox/templates/dcim/powerfeed.html:24 -#: netbox/templates/dcim/powerpanel.html:19 -#: netbox/templates/dcim/trace/powerpanel.html:4 +#: dcim/forms/connections.py:49 dcim/forms/model_forms.py:738 +#: dcim/tables/power.py:66 templates/dcim/inc/cable_termination.html:37 +#: templates/dcim/powerfeed.html:24 templates/dcim/powerpanel.html:19 +#: templates/dcim/trace/powerpanel.html:4 msgid "Power Panel" msgstr "Voedingspaneel" -#: netbox/dcim/forms/connections.py:58 netbox/dcim/forms/model_forms.py:765 -#: netbox/templates/dcim/powerfeed.html:21 -#: netbox/templates/dcim/powerport.html:80 +#: dcim/forms/connections.py:58 dcim/forms/model_forms.py:765 +#: templates/dcim/powerfeed.html:21 templates/dcim/powerport.html:80 msgid "Power Feed" msgstr "Stroomvoorziening" -#: netbox/dcim/forms/connections.py:81 +#: dcim/forms/connections.py:81 msgid "Side" msgstr "Kant" -#: netbox/dcim/forms/filtersets.py:136 netbox/dcim/tables/devices.py:295 +#: dcim/forms/filtersets.py:136 dcim/tables/devices.py:295 msgid "Device Status" msgstr "Status van het apparaat" -#: netbox/dcim/forms/filtersets.py:149 +#: dcim/forms/filtersets.py:149 msgid "Parent region" msgstr "Regio van het moederland" -#: netbox/dcim/forms/filtersets.py:163 netbox/tenancy/forms/bulk_import.py:28 -#: netbox/tenancy/forms/bulk_import.py:62 -#: netbox/tenancy/forms/filtersets.py:33 netbox/tenancy/forms/filtersets.py:62 -#: netbox/wireless/forms/bulk_import.py:25 -#: netbox/wireless/forms/filtersets.py:25 +#: dcim/forms/filtersets.py:163 tenancy/forms/bulk_import.py:28 +#: tenancy/forms/bulk_import.py:62 tenancy/forms/filtersets.py:33 +#: tenancy/forms/filtersets.py:62 wireless/forms/bulk_import.py:25 +#: wireless/forms/filtersets.py:25 msgid "Parent group" msgstr "Oudergroep" -#: netbox/dcim/forms/filtersets.py:242 netbox/templates/dcim/location.html:58 -#: netbox/templates/dcim/site.html:56 +#: dcim/forms/filtersets.py:242 templates/dcim/location.html:58 +#: templates/dcim/site.html:56 msgid "Facility" msgstr "Faciliteit" -#: netbox/dcim/forms/filtersets.py:380 +#: dcim/forms/filtersets.py:380 msgid "Rack type" msgstr "Racktype" -#: netbox/dcim/forms/filtersets.py:397 +#: dcim/forms/filtersets.py:397 msgid "Function" msgstr "Functie" -#: netbox/dcim/forms/filtersets.py:483 netbox/dcim/forms/model_forms.py:373 -#: netbox/templates/inc/panels/image_attachments.html:6 +#: dcim/forms/filtersets.py:483 dcim/forms/model_forms.py:373 +#: templates/inc/panels/image_attachments.html:6 msgid "Images" msgstr "Afbeeldingen" -#: netbox/dcim/forms/filtersets.py:486 netbox/dcim/forms/filtersets.py:611 -#: netbox/dcim/forms/filtersets.py:726 +#: dcim/forms/filtersets.py:486 dcim/forms/filtersets.py:611 +#: dcim/forms/filtersets.py:726 msgid "Components" msgstr "Componenten" -#: netbox/dcim/forms/filtersets.py:506 +#: dcim/forms/filtersets.py:506 msgid "Subdevice role" msgstr "Rol van het subapparaat" -#: netbox/dcim/forms/filtersets.py:790 netbox/dcim/tables/racks.py:54 -#: netbox/templates/dcim/racktype.html:20 +#: dcim/forms/filtersets.py:790 dcim/tables/racks.py:54 +#: templates/dcim/racktype.html:20 msgid "Model" msgstr "Model" -#: netbox/dcim/forms/filtersets.py:834 +#: dcim/forms/filtersets.py:834 msgid "Has an OOB IP" msgstr "Heeft een OOB IP" -#: netbox/dcim/forms/filtersets.py:841 +#: dcim/forms/filtersets.py:841 msgid "Virtual chassis member" msgstr "Virtueel chassislid" -#: netbox/dcim/forms/filtersets.py:890 +#: dcim/forms/filtersets.py:890 msgid "Has virtual device contexts" msgstr "Heeft contexten voor virtuele apparaten" -#: netbox/dcim/forms/filtersets.py:903 netbox/extras/filtersets.py:585 -#: netbox/ipam/forms/bulk_edit.py:479 netbox/ipam/forms/filtersets.py:452 -#: netbox/virtualization/forms/filtersets.py:112 +#: dcim/forms/filtersets.py:903 extras/filtersets.py:585 +#: ipam/forms/filtersets.py:452 virtualization/forms/filtersets.py:112 msgid "Cluster group" msgstr "Clustergroep" -#: netbox/dcim/forms/filtersets.py:1210 +#: dcim/forms/filtersets.py:1210 msgid "Cabled" msgstr "Bekabeld" -#: netbox/dcim/forms/filtersets.py:1217 +#: dcim/forms/filtersets.py:1217 msgid "Occupied" msgstr "Bezet" -#: netbox/dcim/forms/filtersets.py:1244 netbox/dcim/forms/filtersets.py:1269 -#: netbox/dcim/forms/filtersets.py:1293 netbox/dcim/forms/filtersets.py:1313 -#: netbox/dcim/forms/filtersets.py:1336 netbox/dcim/tables/devices.py:364 -#: netbox/templates/dcim/consoleport.html:55 -#: netbox/templates/dcim/consoleserverport.html:55 -#: netbox/templates/dcim/frontport.html:69 -#: netbox/templates/dcim/interface.html:140 -#: netbox/templates/dcim/powerfeed.html:110 -#: netbox/templates/dcim/poweroutlet.html:59 -#: netbox/templates/dcim/powerport.html:59 -#: netbox/templates/dcim/rearport.html:65 +#: dcim/forms/filtersets.py:1244 dcim/forms/filtersets.py:1269 +#: dcim/forms/filtersets.py:1293 dcim/forms/filtersets.py:1313 +#: dcim/forms/filtersets.py:1336 dcim/tables/devices.py:364 +#: templates/dcim/consoleport.html:55 templates/dcim/consoleserverport.html:55 +#: templates/dcim/frontport.html:69 templates/dcim/interface.html:140 +#: templates/dcim/powerfeed.html:110 templates/dcim/poweroutlet.html:59 +#: templates/dcim/powerport.html:59 templates/dcim/rearport.html:65 msgid "Connection" msgstr "Verbinding" -#: netbox/dcim/forms/filtersets.py:1348 netbox/extras/forms/bulk_edit.py:326 -#: netbox/extras/forms/bulk_import.py:247 -#: netbox/extras/forms/filtersets.py:464 -#: netbox/extras/forms/model_forms.py:675 netbox/extras/tables/tables.py:579 -#: netbox/templates/extras/journalentry.html:30 +#: dcim/forms/filtersets.py:1348 extras/forms/bulk_edit.py:326 +#: extras/forms/bulk_import.py:247 extras/forms/filtersets.py:464 +#: extras/forms/model_forms.py:675 extras/tables/tables.py:579 +#: templates/extras/journalentry.html:30 msgid "Kind" msgstr "Vriendelijk" -#: netbox/dcim/forms/filtersets.py:1377 +#: dcim/forms/filtersets.py:1377 msgid "Mgmt only" msgstr "Alleen voor beheer" -#: netbox/dcim/forms/filtersets.py:1389 netbox/dcim/forms/model_forms.py:1383 -#: netbox/dcim/models/device_components.py:629 -#: netbox/templates/dcim/interface.html:129 +#: dcim/forms/filtersets.py:1389 dcim/forms/model_forms.py:1383 +#: dcim/models/device_components.py:629 templates/dcim/interface.html:129 msgid "WWN" msgstr "WWN" -#: netbox/dcim/forms/filtersets.py:1409 +#: dcim/forms/filtersets.py:1409 msgid "Wireless channel" msgstr "Draadloos kanaal" -#: netbox/dcim/forms/filtersets.py:1413 +#: dcim/forms/filtersets.py:1413 msgid "Channel frequency (MHz)" msgstr "Kanaalfrequentie (MHz)" -#: netbox/dcim/forms/filtersets.py:1417 +#: dcim/forms/filtersets.py:1417 msgid "Channel width (MHz)" msgstr "Kanaalbreedte (MHz)" -#: netbox/dcim/forms/filtersets.py:1421 -#: netbox/templates/dcim/interface.html:85 +#: dcim/forms/filtersets.py:1421 templates/dcim/interface.html:85 msgid "Transmit power (dBm)" msgstr "Zendvermogen (dBm)" -#: netbox/dcim/forms/filtersets.py:1446 netbox/dcim/forms/filtersets.py:1471 -#: netbox/dcim/tables/devices.py:327 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:50 -#: netbox/templates/dcim/inc/connection_endpoints.html:4 -#: netbox/templates/dcim/rearport.html:73 -#: netbox/templates/dcim/trace/cable.html:7 +#: dcim/forms/filtersets.py:1446 dcim/forms/filtersets.py:1471 +#: dcim/tables/devices.py:327 templates/dcim/cable.html:12 +#: templates/dcim/cable_trace.html:46 templates/dcim/frontport.html:77 +#: templates/dcim/htmx/cable_edit.html:50 +#: templates/dcim/inc/connection_endpoints.html:4 +#: templates/dcim/rearport.html:73 templates/dcim/trace/cable.html:7 msgid "Cable" msgstr "Kabel" -#: netbox/dcim/forms/filtersets.py:1550 netbox/dcim/tables/devices.py:949 +#: dcim/forms/filtersets.py:1550 dcim/tables/devices.py:949 msgid "Discovered" msgstr "Ontdekt" -#: netbox/dcim/forms/formsets.py:20 +#: dcim/forms/formsets.py:20 #, python-brace-format msgid "A virtual chassis member already exists in position {vc_position}." msgstr "Er bestaat al een virtueel chassislid op zijn plaats {vc_position}." -#: netbox/dcim/forms/model_forms.py:140 +#: dcim/forms/model_forms.py:140 msgid "Contact Info" msgstr "Contactgegevens" -#: netbox/dcim/forms/model_forms.py:195 netbox/templates/dcim/rackrole.html:19 +#: dcim/forms/model_forms.py:195 templates/dcim/rackrole.html:19 msgid "Rack Role" msgstr "Rol van het rek" -#: netbox/dcim/forms/model_forms.py:212 netbox/dcim/forms/model_forms.py:362 -#: netbox/dcim/forms/model_forms.py:446 -#: netbox/utilities/forms/fields/fields.py:47 +#: dcim/forms/model_forms.py:212 dcim/forms/model_forms.py:362 +#: dcim/forms/model_forms.py:446 utilities/forms/fields/fields.py:47 msgid "Slug" msgstr "Slug" -#: netbox/dcim/forms/model_forms.py:259 +#: dcim/forms/model_forms.py:259 msgid "Select a pre-defined rack type, or set physical characteristics below." msgstr "" "Selecteer een vooraf gedefinieerd racktype of stel hieronder de fysieke " "kenmerken in." -#: netbox/dcim/forms/model_forms.py:265 +#: dcim/forms/model_forms.py:265 msgid "Inventory Control" msgstr "Inventarisbeheer" -#: netbox/dcim/forms/model_forms.py:313 +#: dcim/forms/model_forms.py:313 msgid "" "Comma-separated list of numeric unit IDs. A range may be specified using a " "hyphen." @@ -4843,165 +4428,148 @@ msgstr "" "Door komma's gescheiden lijst van numerieke eenheid-ID's. Een bereik kan " "worden gespecificeerd met een koppelteken." -#: netbox/dcim/forms/model_forms.py:322 netbox/dcim/tables/racks.py:202 +#: dcim/forms/model_forms.py:322 dcim/tables/racks.py:202 msgid "Reservation" msgstr "Reservatie" -#: netbox/dcim/forms/model_forms.py:423 -#: netbox/templates/dcim/devicerole.html:23 +#: dcim/forms/model_forms.py:423 templates/dcim/devicerole.html:23 msgid "Device Role" msgstr "Apparaat Rol" -#: netbox/dcim/forms/model_forms.py:490 netbox/dcim/models/devices.py:644 +#: dcim/forms/model_forms.py:490 dcim/models/devices.py:644 msgid "The lowest-numbered unit occupied by the device" msgstr "" "De eenheid met het laagste nummer die door het apparaat wordt gebruikt" -#: netbox/dcim/forms/model_forms.py:547 +#: dcim/forms/model_forms.py:547 msgid "The position in the virtual chassis this device is identified by" msgstr "" "De positie in het virtuele chassis waarmee dit apparaat wordt " "geïdentificeerd" -#: netbox/dcim/forms/model_forms.py:552 +#: dcim/forms/model_forms.py:552 msgid "The priority of the device in the virtual chassis" msgstr "De prioriteit van het apparaat in het virtuele chassis" -#: netbox/dcim/forms/model_forms.py:659 +#: dcim/forms/model_forms.py:659 msgid "Automatically populate components associated with this module type" msgstr "" "Componenten die aan dit moduletype zijn gekoppeld automatisch invullen" -#: netbox/dcim/forms/model_forms.py:767 +#: dcim/forms/model_forms.py:767 msgid "Characteristics" msgstr "Kenmerken" -#: netbox/dcim/forms/model_forms.py:1087 +#: dcim/forms/model_forms.py:1087 msgid "Console port template" msgstr "Sjabloon voor consolepoort" -#: netbox/dcim/forms/model_forms.py:1095 +#: dcim/forms/model_forms.py:1095 msgid "Console server port template" msgstr "Poortsjabloon voor consoleserver" -#: netbox/dcim/forms/model_forms.py:1103 +#: dcim/forms/model_forms.py:1103 msgid "Front port template" msgstr "Sjabloon voor de voorpoort" -#: netbox/dcim/forms/model_forms.py:1111 +#: dcim/forms/model_forms.py:1111 msgid "Interface template" msgstr "Interfacesjabloon" -#: netbox/dcim/forms/model_forms.py:1119 +#: dcim/forms/model_forms.py:1119 msgid "Power outlet template" msgstr "Sjabloon voor stopcontact" -#: netbox/dcim/forms/model_forms.py:1127 +#: dcim/forms/model_forms.py:1127 msgid "Power port template" msgstr "Sjabloon voor voedingspoort" -#: netbox/dcim/forms/model_forms.py:1135 +#: dcim/forms/model_forms.py:1135 msgid "Rear port template" msgstr "Sjabloon voor achterpoort" -#: netbox/dcim/forms/model_forms.py:1144 netbox/dcim/forms/model_forms.py:1388 -#: netbox/dcim/forms/model_forms.py:1551 netbox/dcim/forms/model_forms.py:1583 -#: netbox/dcim/tables/connections.py:65 netbox/ipam/forms/bulk_import.py:318 -#: netbox/ipam/forms/model_forms.py:280 netbox/ipam/forms/model_forms.py:289 -#: netbox/ipam/tables/fhrp.py:64 netbox/ipam/tables/ip.py:372 -#: netbox/ipam/tables/vlans.py:169 -#: netbox/templates/circuits/inc/circuit_termination_fields.html:51 -#: netbox/templates/dcim/frontport.html:106 -#: netbox/templates/dcim/interface.html:27 -#: netbox/templates/dcim/interface.html:184 -#: netbox/templates/dcim/interface.html:310 -#: netbox/templates/dcim/rearport.html:102 -#: netbox/templates/virtualization/vminterface.html:18 -#: netbox/templates/vpn/tunneltermination.html:31 -#: netbox/templates/wireless/inc/wirelesslink_interface.html:10 -#: netbox/templates/wireless/wirelesslink.html:10 -#: netbox/templates/wireless/wirelesslink.html:55 -#: netbox/virtualization/forms/model_forms.py:348 -#: netbox/vpn/forms/bulk_import.py:297 netbox/vpn/forms/model_forms.py:436 -#: netbox/vpn/forms/model_forms.py:445 -#: netbox/wireless/forms/model_forms.py:113 -#: netbox/wireless/forms/model_forms.py:155 +#: dcim/forms/model_forms.py:1144 dcim/forms/model_forms.py:1388 +#: dcim/forms/model_forms.py:1551 dcim/forms/model_forms.py:1583 +#: dcim/tables/connections.py:65 ipam/forms/bulk_import.py:318 +#: ipam/forms/model_forms.py:280 ipam/forms/model_forms.py:289 +#: ipam/tables/fhrp.py:64 ipam/tables/ip.py:372 ipam/tables/vlans.py:169 +#: templates/circuits/inc/circuit_termination_fields.html:51 +#: templates/dcim/frontport.html:106 templates/dcim/interface.html:27 +#: templates/dcim/interface.html:184 templates/dcim/interface.html:310 +#: templates/dcim/rearport.html:102 +#: templates/virtualization/vminterface.html:18 +#: templates/vpn/tunneltermination.html:31 +#: templates/wireless/inc/wirelesslink_interface.html:10 +#: templates/wireless/wirelesslink.html:10 +#: templates/wireless/wirelesslink.html:55 +#: virtualization/forms/model_forms.py:348 vpn/forms/bulk_import.py:297 +#: vpn/forms/model_forms.py:436 vpn/forms/model_forms.py:445 +#: wireless/forms/model_forms.py:113 wireless/forms/model_forms.py:155 msgid "Interface" msgstr "Interface" -#: netbox/dcim/forms/model_forms.py:1145 netbox/dcim/forms/model_forms.py:1584 -#: netbox/dcim/tables/connections.py:27 -#: netbox/templates/dcim/consoleport.html:17 -#: netbox/templates/dcim/consoleserverport.html:74 -#: netbox/templates/dcim/frontport.html:112 +#: dcim/forms/model_forms.py:1145 dcim/forms/model_forms.py:1584 +#: dcim/tables/connections.py:27 templates/dcim/consoleport.html:17 +#: templates/dcim/consoleserverport.html:74 templates/dcim/frontport.html:112 msgid "Console Port" msgstr "Consolepoort" -#: netbox/dcim/forms/model_forms.py:1146 netbox/dcim/forms/model_forms.py:1585 -#: netbox/templates/dcim/consoleport.html:73 -#: netbox/templates/dcim/consoleserverport.html:17 -#: netbox/templates/dcim/frontport.html:109 +#: dcim/forms/model_forms.py:1146 dcim/forms/model_forms.py:1585 +#: templates/dcim/consoleport.html:73 templates/dcim/consoleserverport.html:17 +#: templates/dcim/frontport.html:109 msgid "Console Server Port" msgstr "Console Server-poort" -#: netbox/dcim/forms/model_forms.py:1147 netbox/dcim/forms/model_forms.py:1586 -#: netbox/templates/circuits/inc/circuit_termination_fields.html:52 -#: netbox/templates/dcim/consoleport.html:76 -#: netbox/templates/dcim/consoleserverport.html:77 -#: netbox/templates/dcim/frontport.html:17 -#: netbox/templates/dcim/frontport.html:115 -#: netbox/templates/dcim/interface.html:187 -#: netbox/templates/dcim/rearport.html:105 +#: dcim/forms/model_forms.py:1147 dcim/forms/model_forms.py:1586 +#: templates/circuits/inc/circuit_termination_fields.html:52 +#: templates/dcim/consoleport.html:76 templates/dcim/consoleserverport.html:77 +#: templates/dcim/frontport.html:17 templates/dcim/frontport.html:115 +#: templates/dcim/interface.html:187 templates/dcim/rearport.html:105 msgid "Front Port" msgstr "Poort Voor" -#: netbox/dcim/forms/model_forms.py:1148 netbox/dcim/forms/model_forms.py:1587 -#: netbox/dcim/tables/devices.py:710 -#: netbox/templates/circuits/inc/circuit_termination_fields.html:53 -#: netbox/templates/dcim/consoleport.html:79 -#: netbox/templates/dcim/consoleserverport.html:80 -#: netbox/templates/dcim/frontport.html:50 -#: netbox/templates/dcim/frontport.html:118 -#: netbox/templates/dcim/interface.html:190 -#: netbox/templates/dcim/rearport.html:17 -#: netbox/templates/dcim/rearport.html:108 +#: dcim/forms/model_forms.py:1148 dcim/forms/model_forms.py:1587 +#: dcim/tables/devices.py:710 +#: templates/circuits/inc/circuit_termination_fields.html:53 +#: templates/dcim/consoleport.html:79 templates/dcim/consoleserverport.html:80 +#: templates/dcim/frontport.html:50 templates/dcim/frontport.html:118 +#: templates/dcim/interface.html:190 templates/dcim/rearport.html:17 +#: templates/dcim/rearport.html:108 msgid "Rear Port" msgstr "Poort achter" -#: netbox/dcim/forms/model_forms.py:1149 netbox/dcim/forms/model_forms.py:1588 -#: netbox/dcim/tables/connections.py:46 netbox/dcim/tables/devices.py:512 -#: netbox/templates/dcim/poweroutlet.html:44 -#: netbox/templates/dcim/powerport.html:17 +#: dcim/forms/model_forms.py:1149 dcim/forms/model_forms.py:1588 +#: dcim/tables/connections.py:46 dcim/tables/devices.py:512 +#: templates/dcim/poweroutlet.html:44 templates/dcim/powerport.html:17 msgid "Power Port" msgstr "Voedingspoort" -#: netbox/dcim/forms/model_forms.py:1150 netbox/dcim/forms/model_forms.py:1589 -#: netbox/templates/dcim/poweroutlet.html:17 -#: netbox/templates/dcim/powerport.html:77 +#: dcim/forms/model_forms.py:1150 dcim/forms/model_forms.py:1589 +#: templates/dcim/poweroutlet.html:17 templates/dcim/powerport.html:77 msgid "Power Outlet" msgstr "Stopcontact" -#: netbox/dcim/forms/model_forms.py:1152 netbox/dcim/forms/model_forms.py:1591 +#: dcim/forms/model_forms.py:1152 dcim/forms/model_forms.py:1591 msgid "Component Assignment" msgstr "Toewijzing van componenten" -#: netbox/dcim/forms/model_forms.py:1195 netbox/dcim/forms/model_forms.py:1638 +#: dcim/forms/model_forms.py:1195 dcim/forms/model_forms.py:1638 msgid "An InventoryItem can only be assigned to a single component." msgstr "Een InventoryItem kan slechts aan één component worden toegewezen." -#: netbox/dcim/forms/model_forms.py:1332 +#: dcim/forms/model_forms.py:1332 msgid "LAG interface" msgstr "LAG-interface" -#: netbox/dcim/forms/model_forms.py:1355 +#: dcim/forms/model_forms.py:1355 msgid "Filter VLANs available for assignment by group." msgstr "Filter-VLAN's die beschikbaar zijn voor toewijzing per groep." -#: netbox/dcim/forms/model_forms.py:1484 +#: dcim/forms/model_forms.py:1484 msgid "Child Device" msgstr "Apparaat voor kinderen" -#: netbox/dcim/forms/model_forms.py:1485 +#: dcim/forms/model_forms.py:1485 msgid "" "Child devices must first be created and assigned to the site and rack of the" " parent device." @@ -5009,35 +4577,32 @@ msgstr "" "Kindapparaten moeten eerst worden aangemaakt en toegewezen aan de site en " "het rack van het ouderapparaat." -#: netbox/dcim/forms/model_forms.py:1527 +#: dcim/forms/model_forms.py:1527 msgid "Console port" msgstr "Consolepoort" -#: netbox/dcim/forms/model_forms.py:1535 +#: dcim/forms/model_forms.py:1535 msgid "Console server port" msgstr "Console-serverpoort" -#: netbox/dcim/forms/model_forms.py:1543 +#: dcim/forms/model_forms.py:1543 msgid "Front port" msgstr "Poort voor" -#: netbox/dcim/forms/model_forms.py:1559 +#: dcim/forms/model_forms.py:1559 msgid "Power outlet" msgstr "Stopcontact" -#: netbox/dcim/forms/model_forms.py:1579 -#: netbox/templates/dcim/inventoryitem.html:17 +#: dcim/forms/model_forms.py:1579 templates/dcim/inventoryitem.html:17 msgid "Inventory Item" msgstr "Inventarisitem" -#: netbox/dcim/forms/model_forms.py:1652 -#: netbox/templates/dcim/inventoryitemrole.html:15 +#: dcim/forms/model_forms.py:1652 templates/dcim/inventoryitemrole.html:15 msgid "Inventory Item Role" msgstr "Rol van het inventarisitem" -#: netbox/dcim/forms/object_create.py:48 -#: netbox/dcim/forms/object_create.py:199 -#: netbox/dcim/forms/object_create.py:355 +#: dcim/forms/object_create.py:48 dcim/forms/object_create.py:199 +#: dcim/forms/object_create.py:355 msgid "" "Alphanumeric ranges are supported. (Must match the number of objects being " "created.)" @@ -5045,7 +4610,7 @@ msgstr "" "Alfanumerieke reeksen worden ondersteund. (Moet overeenkomen met het aantal " "objecten dat wordt gemaakt.)" -#: netbox/dcim/forms/object_create.py:68 +#: dcim/forms/object_create.py:68 #, python-brace-format msgid "" "The provided pattern specifies {value_count} values, but {pattern_count} are" @@ -5054,19 +4619,18 @@ msgstr "" "Het meegeleverde patroon specificeert {value_count} waarden, maar " "{pattern_count} worden verwacht." -#: netbox/dcim/forms/object_create.py:110 -#: netbox/dcim/forms/object_create.py:271 netbox/dcim/tables/devices.py:252 +#: dcim/forms/object_create.py:110 dcim/forms/object_create.py:271 +#: dcim/tables/devices.py:252 msgid "Rear ports" msgstr "Poorten achter" -#: netbox/dcim/forms/object_create.py:111 -#: netbox/dcim/forms/object_create.py:272 +#: dcim/forms/object_create.py:111 dcim/forms/object_create.py:272 msgid "Select one rear port assignment for each front port being created." msgstr "" "Selecteer één toewijzing van de achterpoort voor elke poort aan de voorkant " "die wordt gemaakt." -#: netbox/dcim/forms/object_create.py:164 +#: dcim/forms/object_create.py:164 #, python-brace-format msgid "" "The number of front port templates to be created ({frontport_count}) must " @@ -5076,7 +4640,7 @@ msgstr "" "moet overeenkomen met het geselecteerde aantal posities aan de achterkant " "van de poort ({rearport_count})." -#: netbox/dcim/forms/object_create.py:251 +#: dcim/forms/object_create.py:251 #, python-brace-format msgid "" "The string {module} will be replaced with the position of the " @@ -5085,7 +4649,7 @@ msgstr "" "Het touwtje {module} wordt vervangen door de positie van de " "toegewezen module, indien aanwezig." -#: netbox/dcim/forms/object_create.py:320 +#: dcim/forms/object_create.py:320 #, python-brace-format msgid "" "The number of front ports to be created ({frontport_count}) must match the " @@ -5095,18 +4659,17 @@ msgstr "" "overeenkomen met het geselecteerde aantal posities aan de achterkant van de " "poort ({rearport_count})." -#: netbox/dcim/forms/object_create.py:409 netbox/dcim/tables/devices.py:1033 -#: netbox/ipam/tables/fhrp.py:31 netbox/templates/dcim/virtualchassis.html:53 -#: netbox/templates/dcim/virtualchassis_edit.html:47 -#: netbox/templates/ipam/fhrpgroup.html:38 +#: dcim/forms/object_create.py:409 dcim/tables/devices.py:1033 +#: ipam/tables/fhrp.py:31 templates/dcim/virtualchassis.html:53 +#: templates/dcim/virtualchassis_edit.html:47 templates/ipam/fhrpgroup.html:38 msgid "Members" msgstr "Leden" -#: netbox/dcim/forms/object_create.py:418 +#: dcim/forms/object_create.py:418 msgid "Initial position" msgstr "Uitgangspositie" -#: netbox/dcim/forms/object_create.py:421 +#: dcim/forms/object_create.py:421 msgid "" "Position of the first member device. Increases by one for each additional " "member." @@ -5114,71 +4677,69 @@ msgstr "" "Positie van het apparaat van het eerste lid. Verhoogt met één voor elk extra" " lid." -#: netbox/dcim/forms/object_create.py:435 +#: dcim/forms/object_create.py:435 msgid "A position must be specified for the first VC member." msgstr "Voor het eerste VC-lid moet een positie worden gespecificeerd." -#: netbox/dcim/models/cables.py:62 -#: netbox/dcim/models/device_component_templates.py:55 -#: netbox/dcim/models/device_components.py:62 -#: netbox/extras/models/customfields.py:111 +#: dcim/models/cables.py:62 dcim/models/device_component_templates.py:55 +#: dcim/models/device_components.py:62 extras/models/customfields.py:111 msgid "label" msgstr "label" -#: netbox/dcim/models/cables.py:71 +#: dcim/models/cables.py:71 msgid "length" msgstr "lengte" -#: netbox/dcim/models/cables.py:78 +#: dcim/models/cables.py:78 msgid "length unit" msgstr "lengte-eenheid" -#: netbox/dcim/models/cables.py:95 +#: dcim/models/cables.py:95 msgid "cable" msgstr "kabel" -#: netbox/dcim/models/cables.py:96 +#: dcim/models/cables.py:96 msgid "cables" msgstr "kabels" -#: netbox/dcim/models/cables.py:165 +#: dcim/models/cables.py:165 msgid "Must specify a unit when setting a cable length" msgstr "Moet een eenheid specificeren bij het instellen van een kabellengte" -#: netbox/dcim/models/cables.py:168 +#: dcim/models/cables.py:168 msgid "Must define A and B terminations when creating a new cable." msgstr "" "Moet A- en B-aansluitingen definiëren bij het aanmaken van een nieuwe kabel." -#: netbox/dcim/models/cables.py:175 +#: dcim/models/cables.py:175 msgid "Cannot connect different termination types to same end of cable." msgstr "" "Kan geen verschillende soorten aansluitingen aansluiten op hetzelfde " "uiteinde van de kabel." -#: netbox/dcim/models/cables.py:183 +#: dcim/models/cables.py:183 #, python-brace-format msgid "Incompatible termination types: {type_a} and {type_b}" msgstr "Incompatibele beëindigingstypen: {type_a} en {type_b}" -#: netbox/dcim/models/cables.py:193 +#: dcim/models/cables.py:193 msgid "A and B terminations cannot connect to the same object." msgstr "" "A- en B-aansluitingen kunnen geen verbinding maken met hetzelfde object." -#: netbox/dcim/models/cables.py:260 netbox/ipam/models/asns.py:37 +#: dcim/models/cables.py:260 ipam/models/asns.py:37 msgid "end" msgstr "einde" -#: netbox/dcim/models/cables.py:313 +#: dcim/models/cables.py:313 msgid "cable termination" msgstr "kabelafsluiting" -#: netbox/dcim/models/cables.py:314 +#: dcim/models/cables.py:314 msgid "cable terminations" msgstr "kabelaansluitingen" -#: netbox/dcim/models/cables.py:333 +#: dcim/models/cables.py:333 #, python-brace-format msgid "" "Duplicate termination found for {app_label}.{model} {termination_id}: cable " @@ -5187,38 +4748,38 @@ msgstr "" "Dubbele beëindiging gevonden voor {app_label}.{model} {termination_id}: " "kabel {cable_pk}" -#: netbox/dcim/models/cables.py:343 +#: dcim/models/cables.py:343 #, python-brace-format msgid "Cables cannot be terminated to {type_display} interfaces" msgstr "Kabels kunnen niet worden aangesloten op {type_display} interfaces" -#: netbox/dcim/models/cables.py:350 +#: dcim/models/cables.py:350 msgid "Circuit terminations attached to a provider network may not be cabled." msgstr "" "Circuitafsluitingen die zijn aangesloten op het netwerk van een provider " "zijn mogelijk niet bekabeld." -#: netbox/dcim/models/cables.py:448 netbox/extras/models/configs.py:50 +#: dcim/models/cables.py:448 extras/models/configs.py:50 msgid "is active" msgstr "is actief" -#: netbox/dcim/models/cables.py:452 +#: dcim/models/cables.py:452 msgid "is complete" msgstr "is compleet" -#: netbox/dcim/models/cables.py:456 +#: dcim/models/cables.py:456 msgid "is split" msgstr "is gesplitst" -#: netbox/dcim/models/cables.py:464 +#: dcim/models/cables.py:464 msgid "cable path" msgstr "kabelpad" -#: netbox/dcim/models/cables.py:465 +#: dcim/models/cables.py:465 msgid "cable paths" msgstr "kabelpaden" -#: netbox/dcim/models/device_component_templates.py:46 +#: dcim/models/device_component_templates.py:46 #, python-brace-format msgid "" "{module} is accepted as a substitution for the module bay position when " @@ -5227,18 +4788,18 @@ msgstr "" "{module} wordt geaccepteerd als vervanging voor de positie van het " "modulecompartiment wanneer deze is gekoppeld aan een moduletype." -#: netbox/dcim/models/device_component_templates.py:58 -#: netbox/dcim/models/device_components.py:65 +#: dcim/models/device_component_templates.py:58 +#: dcim/models/device_components.py:65 msgid "Physical label" msgstr "Fysiek label" -#: netbox/dcim/models/device_component_templates.py:103 +#: dcim/models/device_component_templates.py:103 msgid "Component templates cannot be moved to a different device type." msgstr "" "Componentsjablonen kunnen niet naar een ander apparaattype worden " "verplaatst." -#: netbox/dcim/models/device_component_templates.py:154 +#: dcim/models/device_component_templates.py:154 msgid "" "A component template cannot be associated with both a device type and a " "module type." @@ -5246,7 +4807,7 @@ msgstr "" "Een componentsjabloon kan niet worden gekoppeld aan zowel een apparaattype " "als een moduletype." -#: netbox/dcim/models/device_component_templates.py:158 +#: dcim/models/device_component_templates.py:158 msgid "" "A component template must be associated with either a device type or a " "module type." @@ -5254,138 +4815,138 @@ msgstr "" "Een componentsjabloon moet gekoppeld zijn aan een apparaattype of een " "moduletype." -#: netbox/dcim/models/device_component_templates.py:212 +#: dcim/models/device_component_templates.py:212 msgid "console port template" msgstr "sjabloon voor consolepoort" -#: netbox/dcim/models/device_component_templates.py:213 +#: dcim/models/device_component_templates.py:213 msgid "console port templates" msgstr "sjablonen voor consolepoorten" -#: netbox/dcim/models/device_component_templates.py:246 +#: dcim/models/device_component_templates.py:246 msgid "console server port template" msgstr "poortsjabloon voor consoleserver" -#: netbox/dcim/models/device_component_templates.py:247 +#: dcim/models/device_component_templates.py:247 msgid "console server port templates" msgstr "poortsjablonen voor consoleservers" -#: netbox/dcim/models/device_component_templates.py:278 -#: netbox/dcim/models/device_components.py:352 +#: dcim/models/device_component_templates.py:278 +#: dcim/models/device_components.py:352 msgid "maximum draw" msgstr "maximale trekking" -#: netbox/dcim/models/device_component_templates.py:285 -#: netbox/dcim/models/device_components.py:359 +#: dcim/models/device_component_templates.py:285 +#: dcim/models/device_components.py:359 msgid "allocated draw" msgstr "toegewezen gelijkspel" -#: netbox/dcim/models/device_component_templates.py:295 +#: dcim/models/device_component_templates.py:295 msgid "power port template" msgstr "sjabloon voor voedingspoort" -#: netbox/dcim/models/device_component_templates.py:296 +#: dcim/models/device_component_templates.py:296 msgid "power port templates" msgstr "sjablonen voor voedingspoorten" -#: netbox/dcim/models/device_component_templates.py:315 -#: netbox/dcim/models/device_components.py:382 +#: dcim/models/device_component_templates.py:315 +#: dcim/models/device_components.py:382 #, python-brace-format msgid "Allocated draw cannot exceed the maximum draw ({maximum_draw}W)." msgstr "" "De toegewezen trekking mag niet hoger zijn dan de maximale trekking " "({maximum_draw}W)." -#: netbox/dcim/models/device_component_templates.py:347 -#: netbox/dcim/models/device_components.py:477 +#: dcim/models/device_component_templates.py:347 +#: dcim/models/device_components.py:477 msgid "feed leg" msgstr "voerbeen" -#: netbox/dcim/models/device_component_templates.py:351 -#: netbox/dcim/models/device_components.py:481 +#: dcim/models/device_component_templates.py:351 +#: dcim/models/device_components.py:481 msgid "Phase (for three-phase feeds)" msgstr "Fase (voor driefasige voedingen)" -#: netbox/dcim/models/device_component_templates.py:357 +#: dcim/models/device_component_templates.py:357 msgid "power outlet template" msgstr "sjabloon voor stopcontact" -#: netbox/dcim/models/device_component_templates.py:358 +#: dcim/models/device_component_templates.py:358 msgid "power outlet templates" msgstr "sjablonen voor stopcontacten" -#: netbox/dcim/models/device_component_templates.py:367 +#: dcim/models/device_component_templates.py:367 #, python-brace-format msgid "Parent power port ({power_port}) must belong to the same device type" msgstr "" "Voedingspoort voor ouders ({power_port}) moet tot hetzelfde apparaattype " "behoren" -#: netbox/dcim/models/device_component_templates.py:371 +#: dcim/models/device_component_templates.py:371 #, python-brace-format msgid "Parent power port ({power_port}) must belong to the same module type" msgstr "" "Voedingspoort voor ouders ({power_port}) moet tot hetzelfde moduletype " "behoren" -#: netbox/dcim/models/device_component_templates.py:423 -#: netbox/dcim/models/device_components.py:611 +#: dcim/models/device_component_templates.py:423 +#: dcim/models/device_components.py:611 msgid "management only" msgstr "alleen beheer" -#: netbox/dcim/models/device_component_templates.py:431 -#: netbox/dcim/models/device_components.py:550 +#: dcim/models/device_component_templates.py:431 +#: dcim/models/device_components.py:550 msgid "bridge interface" msgstr "bridge-interface" -#: netbox/dcim/models/device_component_templates.py:449 -#: netbox/dcim/models/device_components.py:636 +#: dcim/models/device_component_templates.py:449 +#: dcim/models/device_components.py:636 msgid "wireless role" msgstr "draadloze rol" -#: netbox/dcim/models/device_component_templates.py:455 +#: dcim/models/device_component_templates.py:455 msgid "interface template" msgstr "interfacesjabloon" -#: netbox/dcim/models/device_component_templates.py:456 +#: dcim/models/device_component_templates.py:456 msgid "interface templates" msgstr "interfacesjablonen" -#: netbox/dcim/models/device_component_templates.py:463 -#: netbox/dcim/models/device_components.py:804 -#: netbox/virtualization/models/virtualmachines.py:405 +#: dcim/models/device_component_templates.py:463 +#: dcim/models/device_components.py:804 +#: virtualization/models/virtualmachines.py:405 msgid "An interface cannot be bridged to itself." msgstr "Een interface kan niet naar zichzelf worden overbrugd." -#: netbox/dcim/models/device_component_templates.py:466 +#: dcim/models/device_component_templates.py:466 #, python-brace-format msgid "Bridge interface ({bridge}) must belong to the same device type" msgstr "Bridge-interface ({bridge}) moet tot hetzelfde apparaattype behoren" -#: netbox/dcim/models/device_component_templates.py:470 +#: dcim/models/device_component_templates.py:470 #, python-brace-format msgid "Bridge interface ({bridge}) must belong to the same module type" msgstr "Bridge-interface ({bridge}) moet tot hetzelfde moduletype behoren" -#: netbox/dcim/models/device_component_templates.py:526 -#: netbox/dcim/models/device_components.py:984 +#: dcim/models/device_component_templates.py:526 +#: dcim/models/device_components.py:984 msgid "rear port position" msgstr "positie van de achterpoort" -#: netbox/dcim/models/device_component_templates.py:551 +#: dcim/models/device_component_templates.py:551 msgid "front port template" msgstr "sjabloon voor de voorpoort" -#: netbox/dcim/models/device_component_templates.py:552 +#: dcim/models/device_component_templates.py:552 msgid "front port templates" msgstr "sjablonen voor de voorpoort" -#: netbox/dcim/models/device_component_templates.py:562 +#: dcim/models/device_component_templates.py:562 #, python-brace-format msgid "Rear port ({name}) must belong to the same device type" msgstr "Achterpoort ({name}) moet tot hetzelfde apparaattype behoren" -#: netbox/dcim/models/device_component_templates.py:568 +#: dcim/models/device_component_templates.py:568 #, python-brace-format msgid "" "Invalid rear port position ({position}); rear port {name} has only {count} " @@ -5394,48 +4955,48 @@ msgstr "" "Ongeldige positie van de achterpoort ({position}); achterpoort {name} heeft " "slechts {count} standen" -#: netbox/dcim/models/device_component_templates.py:621 -#: netbox/dcim/models/device_components.py:1053 +#: dcim/models/device_component_templates.py:621 +#: dcim/models/device_components.py:1053 msgid "positions" msgstr "standen" -#: netbox/dcim/models/device_component_templates.py:632 +#: dcim/models/device_component_templates.py:632 msgid "rear port template" msgstr "sjabloon voor de achterpoort" -#: netbox/dcim/models/device_component_templates.py:633 +#: dcim/models/device_component_templates.py:633 msgid "rear port templates" msgstr "sjablonen voor achterpoorten" -#: netbox/dcim/models/device_component_templates.py:662 -#: netbox/dcim/models/device_components.py:1103 +#: dcim/models/device_component_templates.py:662 +#: dcim/models/device_components.py:1103 msgid "position" msgstr "positie" -#: netbox/dcim/models/device_component_templates.py:665 -#: netbox/dcim/models/device_components.py:1106 +#: dcim/models/device_component_templates.py:665 +#: dcim/models/device_components.py:1106 msgid "Identifier to reference when renaming installed components" msgstr "" "Identificatie waarnaar moet worden verwezen bij het hernoemen van " "geïnstalleerde componenten" -#: netbox/dcim/models/device_component_templates.py:671 +#: dcim/models/device_component_templates.py:671 msgid "module bay template" msgstr "sjabloon voor modulebay" -#: netbox/dcim/models/device_component_templates.py:672 +#: dcim/models/device_component_templates.py:672 msgid "module bay templates" msgstr "sjablonen voor modulebay" -#: netbox/dcim/models/device_component_templates.py:699 +#: dcim/models/device_component_templates.py:699 msgid "device bay template" msgstr "sjabloon voor apparaatvak" -#: netbox/dcim/models/device_component_templates.py:700 +#: dcim/models/device_component_templates.py:700 msgid "device bay templates" msgstr "sjablonen voor apparaatruimte" -#: netbox/dcim/models/device_component_templates.py:713 +#: dcim/models/device_component_templates.py:713 #, python-brace-format msgid "" "Subdevice role of device type ({device_type}) must be set to \"parent\" to " @@ -5444,211 +5005,206 @@ msgstr "" "De rol van het apparaattype van het subapparaat ({device_type}) moet op " "„parent” zijn ingesteld om apparaatbays toe te staan." -#: netbox/dcim/models/device_component_templates.py:768 -#: netbox/dcim/models/device_components.py:1262 +#: dcim/models/device_component_templates.py:768 +#: dcim/models/device_components.py:1262 msgid "part ID" msgstr "onderdeel-ID" -#: netbox/dcim/models/device_component_templates.py:770 -#: netbox/dcim/models/device_components.py:1264 +#: dcim/models/device_component_templates.py:770 +#: dcim/models/device_components.py:1264 msgid "Manufacturer-assigned part identifier" msgstr "Onderdeel-ID toegewezen door de fabrikant" -#: netbox/dcim/models/device_component_templates.py:787 +#: dcim/models/device_component_templates.py:787 msgid "inventory item template" msgstr "sjabloon voor inventarisitems" -#: netbox/dcim/models/device_component_templates.py:788 +#: dcim/models/device_component_templates.py:788 msgid "inventory item templates" msgstr "sjablonen voor inventarisitems" -#: netbox/dcim/models/device_components.py:105 +#: dcim/models/device_components.py:105 msgid "Components cannot be moved to a different device." msgstr "Componenten kunnen niet naar een ander apparaat worden verplaatst." -#: netbox/dcim/models/device_components.py:144 +#: dcim/models/device_components.py:144 msgid "cable end" msgstr "uiteinde van de kabel" -#: netbox/dcim/models/device_components.py:150 +#: dcim/models/device_components.py:150 msgid "mark connected" msgstr "markeer verbonden" -#: netbox/dcim/models/device_components.py:152 +#: dcim/models/device_components.py:152 msgid "Treat as if a cable is connected" msgstr "Behandel alsof er een kabel is aangesloten" -#: netbox/dcim/models/device_components.py:170 +#: dcim/models/device_components.py:170 msgid "Must specify cable end (A or B) when attaching a cable." msgstr "" "Moet het kabeluiteinde (A of B) specificeren bij het aansluiten van een " "kabel." -#: netbox/dcim/models/device_components.py:174 +#: dcim/models/device_components.py:174 msgid "Cable end must not be set without a cable." msgstr "Het kabeluiteinde mag niet zonder kabel worden ingesteld." -#: netbox/dcim/models/device_components.py:178 +#: dcim/models/device_components.py:178 msgid "Cannot mark as connected with a cable attached." msgstr "Kan niet markeren als verbonden met een aangesloten kabel." -#: netbox/dcim/models/device_components.py:202 +#: dcim/models/device_components.py:202 #, python-brace-format msgid "{class_name} models must declare a parent_object property" msgstr "{class_name} modellen moeten een eigenschap parent_object declareren" -#: netbox/dcim/models/device_components.py:287 -#: netbox/dcim/models/device_components.py:316 -#: netbox/dcim/models/device_components.py:349 -#: netbox/dcim/models/device_components.py:467 +#: dcim/models/device_components.py:287 dcim/models/device_components.py:316 +#: dcim/models/device_components.py:349 dcim/models/device_components.py:467 msgid "Physical port type" msgstr "Fysiek poorttype" -#: netbox/dcim/models/device_components.py:290 -#: netbox/dcim/models/device_components.py:319 +#: dcim/models/device_components.py:290 dcim/models/device_components.py:319 msgid "speed" msgstr "snelheid" -#: netbox/dcim/models/device_components.py:294 -#: netbox/dcim/models/device_components.py:323 +#: dcim/models/device_components.py:294 dcim/models/device_components.py:323 msgid "Port speed in bits per second" msgstr "Poortsnelheid in bits per seconde" -#: netbox/dcim/models/device_components.py:300 +#: dcim/models/device_components.py:300 msgid "console port" msgstr "consolepoort" -#: netbox/dcim/models/device_components.py:301 +#: dcim/models/device_components.py:301 msgid "console ports" msgstr "consolepoorten" -#: netbox/dcim/models/device_components.py:329 +#: dcim/models/device_components.py:329 msgid "console server port" msgstr "console-serverpoort" -#: netbox/dcim/models/device_components.py:330 +#: dcim/models/device_components.py:330 msgid "console server ports" msgstr "console-serverpoorten" -#: netbox/dcim/models/device_components.py:369 +#: dcim/models/device_components.py:369 msgid "power port" msgstr "voedingspoort" -#: netbox/dcim/models/device_components.py:370 +#: dcim/models/device_components.py:370 msgid "power ports" msgstr "voedingspoorten" -#: netbox/dcim/models/device_components.py:487 +#: dcim/models/device_components.py:487 msgid "power outlet" msgstr "stopcontact" -#: netbox/dcim/models/device_components.py:488 +#: dcim/models/device_components.py:488 msgid "power outlets" msgstr "stopcontacten" -#: netbox/dcim/models/device_components.py:499 +#: dcim/models/device_components.py:499 #, python-brace-format msgid "Parent power port ({power_port}) must belong to the same device" msgstr "" "Voedingspoort voor ouders ({power_port}) moet tot hetzelfde apparaat behoren" -#: netbox/dcim/models/device_components.py:530 netbox/vpn/models/crypto.py:81 -#: netbox/vpn/models/crypto.py:226 +#: dcim/models/device_components.py:530 vpn/models/crypto.py:81 +#: vpn/models/crypto.py:226 msgid "mode" msgstr "-modus" -#: netbox/dcim/models/device_components.py:534 +#: dcim/models/device_components.py:534 msgid "IEEE 802.1Q tagging strategy" msgstr "IEEE 802.1Q-tagging-strategie" -#: netbox/dcim/models/device_components.py:542 +#: dcim/models/device_components.py:542 msgid "parent interface" msgstr "bovenliggende interface" -#: netbox/dcim/models/device_components.py:602 +#: dcim/models/device_components.py:602 msgid "parent LAG" msgstr "LAG van de ouders" -#: netbox/dcim/models/device_components.py:612 +#: dcim/models/device_components.py:612 msgid "This interface is used only for out-of-band management" msgstr "Deze interface wordt alleen gebruikt voor beheer buiten de band" -#: netbox/dcim/models/device_components.py:617 +#: dcim/models/device_components.py:617 msgid "speed (Kbps)" msgstr "snelheid (Kbps)" -#: netbox/dcim/models/device_components.py:620 +#: dcim/models/device_components.py:620 msgid "duplex" msgstr "tweezijdig" -#: netbox/dcim/models/device_components.py:630 +#: dcim/models/device_components.py:630 msgid "64-bit World Wide Name" msgstr "64-bits wereldwijde naam" -#: netbox/dcim/models/device_components.py:642 +#: dcim/models/device_components.py:642 msgid "wireless channel" msgstr "draadloos kanaal" -#: netbox/dcim/models/device_components.py:649 +#: dcim/models/device_components.py:649 msgid "channel frequency (MHz)" msgstr "kanaalfrequentie (MHz)" -#: netbox/dcim/models/device_components.py:650 -#: netbox/dcim/models/device_components.py:658 +#: dcim/models/device_components.py:650 dcim/models/device_components.py:658 msgid "Populated by selected channel (if set)" msgstr "Ingevuld per geselecteerd kanaal (indien ingesteld)" -#: netbox/dcim/models/device_components.py:664 +#: dcim/models/device_components.py:664 msgid "transmit power (dBm)" msgstr "zendvermogen (dBm)" -#: netbox/dcim/models/device_components.py:689 netbox/wireless/models.py:117 +#: dcim/models/device_components.py:689 wireless/models.py:117 msgid "wireless LANs" msgstr "draadloze LAN's" -#: netbox/dcim/models/device_components.py:697 -#: netbox/virtualization/models/virtualmachines.py:335 +#: dcim/models/device_components.py:697 +#: virtualization/models/virtualmachines.py:335 msgid "untagged VLAN" msgstr "VLAN zonder label" -#: netbox/dcim/models/device_components.py:703 -#: netbox/virtualization/models/virtualmachines.py:341 +#: dcim/models/device_components.py:703 +#: virtualization/models/virtualmachines.py:341 msgid "tagged VLANs" msgstr "gelabelde VLAN's" -#: netbox/dcim/models/device_components.py:745 -#: netbox/virtualization/models/virtualmachines.py:377 +#: dcim/models/device_components.py:745 +#: virtualization/models/virtualmachines.py:377 msgid "interface" msgstr "interface" -#: netbox/dcim/models/device_components.py:746 -#: netbox/virtualization/models/virtualmachines.py:378 +#: dcim/models/device_components.py:746 +#: virtualization/models/virtualmachines.py:378 msgid "interfaces" msgstr "interfaces" -#: netbox/dcim/models/device_components.py:757 +#: dcim/models/device_components.py:757 #, python-brace-format msgid "{display_type} interfaces cannot have a cable attached." msgstr "{display_type} op interfaces kan geen kabel worden aangesloten." -#: netbox/dcim/models/device_components.py:765 +#: dcim/models/device_components.py:765 #, python-brace-format msgid "{display_type} interfaces cannot be marked as connected." msgstr "" "{display_type} interfaces kunnen niet als verbonden worden gemarkeerd." -#: netbox/dcim/models/device_components.py:774 -#: netbox/virtualization/models/virtualmachines.py:390 +#: dcim/models/device_components.py:774 +#: virtualization/models/virtualmachines.py:390 msgid "An interface cannot be its own parent." msgstr "Een interface kan niet zijn eigen ouder zijn." -#: netbox/dcim/models/device_components.py:778 +#: dcim/models/device_components.py:778 msgid "Only virtual interfaces may be assigned to a parent interface." msgstr "" "Alleen virtuele interfaces mogen aan een bovenliggende interface worden " "toegewezen." -#: netbox/dcim/models/device_components.py:785 +#: dcim/models/device_components.py:785 #, python-brace-format msgid "" "The selected parent interface ({interface}) belongs to a different device " @@ -5657,7 +5213,7 @@ msgstr "" "De geselecteerde ouderinterface ({interface}) hoort bij een ander apparaat " "({device})" -#: netbox/dcim/models/device_components.py:791 +#: dcim/models/device_components.py:791 #, python-brace-format msgid "" "The selected parent interface ({interface}) belongs to {device}, which is " @@ -5666,7 +5222,7 @@ msgstr "" "De geselecteerde ouderinterface ({interface}) behoort tot {device}, dat geen" " deel uitmaakt van een virtueel chassis {virtual_chassis}." -#: netbox/dcim/models/device_components.py:811 +#: dcim/models/device_components.py:811 #, python-brace-format msgid "" "The selected bridge interface ({bridge}) belongs to a different device " @@ -5675,7 +5231,7 @@ msgstr "" "De geselecteerde bridge-interface ({bridge}) hoort bij een ander apparaat " "({device})." -#: netbox/dcim/models/device_components.py:817 +#: dcim/models/device_components.py:817 #, python-brace-format msgid "" "The selected bridge interface ({interface}) belongs to {device}, which is " @@ -5684,15 +5240,15 @@ msgstr "" "De geselecteerde bridge-interface ({interface}) behoort tot {device}, dat " "geen deel uitmaakt van een virtueel chassis {virtual_chassis}." -#: netbox/dcim/models/device_components.py:828 +#: dcim/models/device_components.py:828 msgid "Virtual interfaces cannot have a parent LAG interface." msgstr "Virtuele interfaces kunnen geen bovenliggende LAG-interface hebben." -#: netbox/dcim/models/device_components.py:832 +#: dcim/models/device_components.py:832 msgid "A LAG interface cannot be its own parent." msgstr "Een LAG-interface kan niet zijn eigen ouder zijn." -#: netbox/dcim/models/device_components.py:839 +#: dcim/models/device_components.py:839 #, python-brace-format msgid "" "The selected LAG interface ({lag}) belongs to a different device ({device})." @@ -5700,7 +5256,7 @@ msgstr "" "De geselecteerde LAG-interface ({lag}) hoort bij een ander apparaat " "({device})." -#: netbox/dcim/models/device_components.py:845 +#: dcim/models/device_components.py:845 #, python-brace-format msgid "" "The selected LAG interface ({lag}) belongs to {device}, which is not part of" @@ -5709,46 +5265,46 @@ msgstr "" "De geselecteerde LAG-interface ({lag}) behoort tot {device}, dat geen deel " "uitmaakt van een virtueel chassis {virtual_chassis}." -#: netbox/dcim/models/device_components.py:856 +#: dcim/models/device_components.py:856 msgid "Virtual interfaces cannot have a PoE mode." msgstr "Virtuele interfaces kunnen geen PoE-modus hebben." -#: netbox/dcim/models/device_components.py:860 +#: dcim/models/device_components.py:860 msgid "Virtual interfaces cannot have a PoE type." msgstr "Virtuele interfaces mogen geen PoE-type hebben." -#: netbox/dcim/models/device_components.py:866 +#: dcim/models/device_components.py:866 msgid "Must specify PoE mode when designating a PoE type." msgstr "Moet de PoE-modus specificeren bij het aanwijzen van een PoE-type." -#: netbox/dcim/models/device_components.py:873 +#: dcim/models/device_components.py:873 msgid "Wireless role may be set only on wireless interfaces." msgstr "De draadloze rol kan alleen worden ingesteld op draadloze interfaces." -#: netbox/dcim/models/device_components.py:875 +#: dcim/models/device_components.py:875 msgid "Channel may be set only on wireless interfaces." msgstr "Kanaal mag alleen worden ingesteld op draadloze interfaces." -#: netbox/dcim/models/device_components.py:881 +#: dcim/models/device_components.py:881 msgid "Channel frequency may be set only on wireless interfaces." msgstr "" "De kanaalfrequentie mag alleen worden ingesteld op draadloze interfaces." -#: netbox/dcim/models/device_components.py:885 +#: dcim/models/device_components.py:885 msgid "Cannot specify custom frequency with channel selected." msgstr "" "Kan geen aangepaste frequentie specificeren met een geselecteerd kanaal." -#: netbox/dcim/models/device_components.py:891 +#: dcim/models/device_components.py:891 msgid "Channel width may be set only on wireless interfaces." msgstr "De kanaalbreedte kan alleen worden ingesteld op draadloze interfaces." -#: netbox/dcim/models/device_components.py:893 +#: dcim/models/device_components.py:893 msgid "Cannot specify custom width with channel selected." msgstr "" "Kan geen aangepaste breedte specificeren als het kanaal is geselecteerd." -#: netbox/dcim/models/device_components.py:901 +#: dcim/models/device_components.py:901 #, python-brace-format msgid "" "The untagged VLAN ({untagged_vlan}) must belong to the same site as the " @@ -5757,24 +5313,24 @@ msgstr "" "Het VLAN zonder label ({untagged_vlan}) moet tot dezelfde site behoren als " "het bovenliggende apparaat van de interface, of het moet globaal zijn." -#: netbox/dcim/models/device_components.py:990 +#: dcim/models/device_components.py:990 msgid "Mapped position on corresponding rear port" msgstr "In kaart gebrachte positie op de corresponderende achterpoort" -#: netbox/dcim/models/device_components.py:1006 +#: dcim/models/device_components.py:1006 msgid "front port" msgstr "poort voor" -#: netbox/dcim/models/device_components.py:1007 +#: dcim/models/device_components.py:1007 msgid "front ports" msgstr "poorten voor" -#: netbox/dcim/models/device_components.py:1021 +#: dcim/models/device_components.py:1021 #, python-brace-format msgid "Rear port ({rear_port}) must belong to the same device" msgstr "Achterpoort ({rear_port}) moet tot hetzelfde apparaat behoren" -#: netbox/dcim/models/device_components.py:1029 +#: dcim/models/device_components.py:1029 #, python-brace-format msgid "" "Invalid rear port position ({rear_port_position}): Rear port {name} has only" @@ -5783,19 +5339,19 @@ msgstr "" "Ongeldige positie van de achterpoort ({rear_port_position}): Achterpoort " "{name} heeft slechts {positions} posities." -#: netbox/dcim/models/device_components.py:1059 +#: dcim/models/device_components.py:1059 msgid "Number of front ports which may be mapped" msgstr "Aantal poorten aan de voorkant dat in kaart kan worden gebracht" -#: netbox/dcim/models/device_components.py:1064 +#: dcim/models/device_components.py:1064 msgid "rear port" msgstr "poort achter" -#: netbox/dcim/models/device_components.py:1065 +#: dcim/models/device_components.py:1065 msgid "rear ports" msgstr "poorten achter" -#: netbox/dcim/models/device_components.py:1079 +#: dcim/models/device_components.py:1079 #, python-brace-format msgid "" "The number of positions cannot be less than the number of mapped front ports" @@ -5804,39 +5360,38 @@ msgstr "" "Het aantal posities mag niet minder zijn dan het aantal toegewezen poorten " "aan de voorkant ({frontport_count})" -#: netbox/dcim/models/device_components.py:1120 +#: dcim/models/device_components.py:1120 msgid "module bay" msgstr "modulevak" -#: netbox/dcim/models/device_components.py:1121 +#: dcim/models/device_components.py:1121 msgid "module bays" msgstr "modulevakken" -#: netbox/dcim/models/device_components.py:1138 -#: netbox/dcim/models/devices.py:1224 +#: dcim/models/device_components.py:1138 dcim/models/devices.py:1224 msgid "A module bay cannot belong to a module installed within it." msgstr "" "Een modulecompartiment mag niet behoren tot een module die erin is " "geïnstalleerd." -#: netbox/dcim/models/device_components.py:1164 +#: dcim/models/device_components.py:1164 msgid "device bay" msgstr "apparaatvak" -#: netbox/dcim/models/device_components.py:1165 +#: dcim/models/device_components.py:1165 msgid "device bays" msgstr "bays voor apparaten" -#: netbox/dcim/models/device_components.py:1175 +#: dcim/models/device_components.py:1175 #, python-brace-format msgid "This type of device ({device_type}) does not support device bays." msgstr "Dit type apparaat ({device_type}) ondersteunt geen apparaatsleuven." -#: netbox/dcim/models/device_components.py:1181 +#: dcim/models/device_components.py:1181 msgid "Cannot install a device into itself." msgstr "Kan een apparaat niet op zichzelf installeren." -#: netbox/dcim/models/device_components.py:1189 +#: dcim/models/device_components.py:1189 #, python-brace-format msgid "" "Cannot install the specified device; device is already installed in {bay}." @@ -5844,118 +5399,116 @@ msgstr "" "Kan het opgegeven apparaat niet installeren; het apparaat is al " "geïnstalleerd in {bay}." -#: netbox/dcim/models/device_components.py:1210 +#: dcim/models/device_components.py:1210 msgid "inventory item role" msgstr "Rol van het inventarisitem" -#: netbox/dcim/models/device_components.py:1211 +#: dcim/models/device_components.py:1211 msgid "inventory item roles" msgstr "Rollen van inventarisitems" -#: netbox/dcim/models/device_components.py:1268 -#: netbox/dcim/models/devices.py:607 netbox/dcim/models/devices.py:1181 -#: netbox/dcim/models/racks.py:313 -#: netbox/virtualization/models/virtualmachines.py:131 +#: dcim/models/device_components.py:1268 dcim/models/devices.py:607 +#: dcim/models/devices.py:1181 dcim/models/racks.py:313 +#: virtualization/models/virtualmachines.py:131 msgid "serial number" msgstr "serienummer" -#: netbox/dcim/models/device_components.py:1276 -#: netbox/dcim/models/devices.py:615 netbox/dcim/models/devices.py:1188 -#: netbox/dcim/models/racks.py:320 +#: dcim/models/device_components.py:1276 dcim/models/devices.py:615 +#: dcim/models/devices.py:1188 dcim/models/racks.py:320 msgid "asset tag" msgstr "tag voor bedrijfsmiddelen" -#: netbox/dcim/models/device_components.py:1277 +#: dcim/models/device_components.py:1277 msgid "A unique tag used to identify this item" msgstr "Een unieke tag die wordt gebruikt om dit item te identificeren" -#: netbox/dcim/models/device_components.py:1280 +#: dcim/models/device_components.py:1280 msgid "discovered" msgstr "ontdekt" -#: netbox/dcim/models/device_components.py:1282 +#: dcim/models/device_components.py:1282 msgid "This item was automatically discovered" msgstr "Dit item is automatisch ontdekt" -#: netbox/dcim/models/device_components.py:1300 +#: dcim/models/device_components.py:1300 msgid "inventory item" msgstr "inventarisitem" -#: netbox/dcim/models/device_components.py:1301 +#: dcim/models/device_components.py:1301 msgid "inventory items" msgstr "inventarisartikelen" -#: netbox/dcim/models/device_components.py:1312 +#: dcim/models/device_components.py:1312 msgid "Cannot assign self as parent." msgstr "Kan zichzelf niet als ouder toewijzen." -#: netbox/dcim/models/device_components.py:1320 +#: dcim/models/device_components.py:1320 msgid "Parent inventory item does not belong to the same device." msgstr "" "Het item van de bovenliggende inventaris behoort niet tot hetzelfde " "apparaat." -#: netbox/dcim/models/device_components.py:1326 +#: dcim/models/device_components.py:1326 msgid "Cannot move an inventory item with dependent children" msgstr "Kan een inventarisitem met afhankelijke kinderen niet verplaatsen" -#: netbox/dcim/models/device_components.py:1334 +#: dcim/models/device_components.py:1334 msgid "Cannot assign inventory item to component on another device" msgstr "Kan inventarisitem niet toewijzen aan component op een ander apparaat" -#: netbox/dcim/models/devices.py:54 +#: dcim/models/devices.py:54 msgid "manufacturer" msgstr "fabrikant" -#: netbox/dcim/models/devices.py:55 +#: dcim/models/devices.py:55 msgid "manufacturers" msgstr "fabrikanten" -#: netbox/dcim/models/devices.py:82 netbox/dcim/models/devices.py:382 -#: netbox/dcim/models/racks.py:133 +#: dcim/models/devices.py:82 dcim/models/devices.py:382 +#: dcim/models/racks.py:133 msgid "model" msgstr "model-" -#: netbox/dcim/models/devices.py:95 +#: dcim/models/devices.py:95 msgid "default platform" msgstr "standaardplatform" -#: netbox/dcim/models/devices.py:98 netbox/dcim/models/devices.py:386 +#: dcim/models/devices.py:98 dcim/models/devices.py:386 msgid "part number" msgstr "onderdeelnummer" -#: netbox/dcim/models/devices.py:101 netbox/dcim/models/devices.py:389 +#: dcim/models/devices.py:101 dcim/models/devices.py:389 msgid "Discrete part number (optional)" msgstr "Discreet onderdeelnummer (optioneel)" -#: netbox/dcim/models/devices.py:107 netbox/dcim/models/racks.py:54 +#: dcim/models/devices.py:107 dcim/models/racks.py:54 msgid "height (U)" msgstr "hoogte (U)" -#: netbox/dcim/models/devices.py:111 +#: dcim/models/devices.py:111 msgid "exclude from utilization" msgstr "uitsluiten van gebruik" -#: netbox/dcim/models/devices.py:112 +#: dcim/models/devices.py:112 msgid "Devices of this type are excluded when calculating rack utilization." msgstr "" "Apparaten van dit type zijn uitgesloten bij de berekening van het " "rackgebruik." -#: netbox/dcim/models/devices.py:116 +#: dcim/models/devices.py:116 msgid "is full depth" msgstr "is volledig diep" -#: netbox/dcim/models/devices.py:117 +#: dcim/models/devices.py:117 msgid "Device consumes both front and rear rack faces." msgstr "" "Het apparaat verbruikt zowel de voorkant als de achterkant van het rack." -#: netbox/dcim/models/devices.py:123 +#: dcim/models/devices.py:123 msgid "parent/child status" msgstr "status van ouder/kind" -#: netbox/dcim/models/devices.py:124 +#: dcim/models/devices.py:124 msgid "" "Parent devices house child devices in device bays. Leave blank if this " "device type is neither a parent nor a child." @@ -5964,24 +5517,24 @@ msgstr "" "apparaatvakken. Laat dit veld leeg als dit apparaattype geen ouder of kind " "is." -#: netbox/dcim/models/devices.py:128 netbox/dcim/models/devices.py:392 -#: netbox/dcim/models/devices.py:659 netbox/dcim/models/racks.py:324 +#: dcim/models/devices.py:128 dcim/models/devices.py:392 +#: dcim/models/devices.py:659 dcim/models/racks.py:324 msgid "airflow" msgstr "luchtstroom" -#: netbox/dcim/models/devices.py:204 +#: dcim/models/devices.py:204 msgid "device type" msgstr "apparaattype" -#: netbox/dcim/models/devices.py:205 +#: dcim/models/devices.py:205 msgid "device types" msgstr "soorten apparaten" -#: netbox/dcim/models/devices.py:290 +#: dcim/models/devices.py:290 msgid "U height must be in increments of 0.5 rack units." msgstr "De U-hoogte moet in stappen van 0,5 rekeenheden zijn." -#: netbox/dcim/models/devices.py:307 +#: dcim/models/devices.py:307 #, python-brace-format msgid "" "Device {device} in rack {rack} does not have sufficient space to accommodate" @@ -5990,7 +5543,7 @@ msgstr "" "Apparaat {device} in een rek {rack} heeft niet voldoende ruimte voor een " "hoogte van {height}U" -#: netbox/dcim/models/devices.py:322 +#: dcim/models/devices.py:322 #, python-brace-format msgid "" "Unable to set 0U height: Found {racked_instance_count} " @@ -6000,7 +5553,7 @@ msgstr "" "href=\"{url}\">{racked_instance_count} instanties al in rekken " "gemonteerd." -#: netbox/dcim/models/devices.py:331 +#: dcim/models/devices.py:331 msgid "" "Must delete all device bay templates associated with this device before " "declassifying it as a parent device." @@ -6008,152 +5561,152 @@ msgstr "" "U moet alle sjablonen voor apparaatruimte verwijderen die aan dit apparaat " "zijn gekoppeld voordat u het als ouderapparaat declassificeert." -#: netbox/dcim/models/devices.py:337 +#: dcim/models/devices.py:337 msgid "Child device types must be 0U." msgstr "Apparaattypen voor kinderen moeten 0U zijn." -#: netbox/dcim/models/devices.py:411 +#: dcim/models/devices.py:411 msgid "module type" msgstr "moduletype" -#: netbox/dcim/models/devices.py:412 +#: dcim/models/devices.py:412 msgid "module types" msgstr "moduletypen" -#: netbox/dcim/models/devices.py:485 +#: dcim/models/devices.py:485 msgid "Virtual machines may be assigned to this role" msgstr "Virtuele machines kunnen aan deze rol worden toegewezen" -#: netbox/dcim/models/devices.py:497 +#: dcim/models/devices.py:497 msgid "device role" msgstr "rol van het apparaat" -#: netbox/dcim/models/devices.py:498 +#: dcim/models/devices.py:498 msgid "device roles" msgstr "rollen van het apparaat" -#: netbox/dcim/models/devices.py:515 +#: dcim/models/devices.py:515 msgid "Optionally limit this platform to devices of a certain manufacturer" msgstr "" "Beperk dit platform optioneel tot apparaten van een bepaalde fabrikant" -#: netbox/dcim/models/devices.py:527 +#: dcim/models/devices.py:527 msgid "platform" msgstr "platform" -#: netbox/dcim/models/devices.py:528 +#: dcim/models/devices.py:528 msgid "platforms" msgstr "platformen" -#: netbox/dcim/models/devices.py:576 +#: dcim/models/devices.py:576 msgid "The function this device serves" msgstr "De functie die dit apparaat dient" -#: netbox/dcim/models/devices.py:608 +#: dcim/models/devices.py:608 msgid "Chassis serial number, assigned by the manufacturer" msgstr "Serienummer van het chassis, toegekend door de fabrikant" -#: netbox/dcim/models/devices.py:616 netbox/dcim/models/devices.py:1189 +#: dcim/models/devices.py:616 dcim/models/devices.py:1189 msgid "A unique tag used to identify this device" msgstr "Een unieke tag die wordt gebruikt om dit apparaat te identificeren" -#: netbox/dcim/models/devices.py:643 +#: dcim/models/devices.py:643 msgid "position (U)" msgstr "positie (U)" -#: netbox/dcim/models/devices.py:650 +#: dcim/models/devices.py:650 msgid "rack face" msgstr "gezicht met een rekje" -#: netbox/dcim/models/devices.py:670 netbox/dcim/models/devices.py:1415 -#: netbox/virtualization/models/virtualmachines.py:100 +#: dcim/models/devices.py:670 dcim/models/devices.py:1415 +#: virtualization/models/virtualmachines.py:100 msgid "primary IPv4" msgstr "primaire IPv4" -#: netbox/dcim/models/devices.py:678 netbox/dcim/models/devices.py:1423 -#: netbox/virtualization/models/virtualmachines.py:108 +#: dcim/models/devices.py:678 dcim/models/devices.py:1423 +#: virtualization/models/virtualmachines.py:108 msgid "primary IPv6" msgstr "primaire IPv6" -#: netbox/dcim/models/devices.py:686 +#: dcim/models/devices.py:686 msgid "out-of-band IP" msgstr "IP-adres buiten de band" -#: netbox/dcim/models/devices.py:703 +#: dcim/models/devices.py:703 msgid "VC position" msgstr "VC-positie" -#: netbox/dcim/models/devices.py:706 +#: dcim/models/devices.py:706 msgid "Virtual chassis position" msgstr "Virtuele chassispositie" -#: netbox/dcim/models/devices.py:709 +#: dcim/models/devices.py:709 msgid "VC priority" msgstr "VC-prioriteit" -#: netbox/dcim/models/devices.py:713 +#: dcim/models/devices.py:713 msgid "Virtual chassis master election priority" msgstr "Verkiezingsprioriteit van het virtuele chassis" -#: netbox/dcim/models/devices.py:716 netbox/dcim/models/sites.py:207 +#: dcim/models/devices.py:716 dcim/models/sites.py:207 msgid "latitude" msgstr "breedtegraad" -#: netbox/dcim/models/devices.py:721 netbox/dcim/models/devices.py:729 -#: netbox/dcim/models/sites.py:212 netbox/dcim/models/sites.py:220 +#: dcim/models/devices.py:721 dcim/models/devices.py:729 +#: dcim/models/sites.py:212 dcim/models/sites.py:220 msgid "GPS coordinate in decimal format (xx.yyyyyy)" msgstr "GPS-coördinaat in decimaal formaat (xx.jjjjj)" -#: netbox/dcim/models/devices.py:724 netbox/dcim/models/sites.py:215 +#: dcim/models/devices.py:724 dcim/models/sites.py:215 msgid "longitude" msgstr "lengtegraad" -#: netbox/dcim/models/devices.py:797 +#: dcim/models/devices.py:797 msgid "Device name must be unique per site." msgstr "De apparaatnaam moet per site uniek zijn." -#: netbox/dcim/models/devices.py:808 netbox/ipam/models/services.py:75 +#: dcim/models/devices.py:808 ipam/models/services.py:75 msgid "device" msgstr "apparaat" -#: netbox/dcim/models/devices.py:809 +#: dcim/models/devices.py:809 msgid "devices" msgstr "apparaten" -#: netbox/dcim/models/devices.py:835 +#: dcim/models/devices.py:835 #, python-brace-format msgid "Rack {rack} does not belong to site {site}." msgstr "Rek {rack} hoort niet bij de site {site}." -#: netbox/dcim/models/devices.py:840 +#: dcim/models/devices.py:840 #, python-brace-format msgid "Location {location} does not belong to site {site}." msgstr "Locatie {location} hoort niet bij de site {site}." -#: netbox/dcim/models/devices.py:846 +#: dcim/models/devices.py:846 #, python-brace-format msgid "Rack {rack} does not belong to location {location}." msgstr "Rek {rack} hoort niet bij de locatie {location}." -#: netbox/dcim/models/devices.py:853 +#: dcim/models/devices.py:853 msgid "Cannot select a rack face without assigning a rack." msgstr "Kan geen rackface selecteren zonder een rack toe te wijzen." -#: netbox/dcim/models/devices.py:857 +#: dcim/models/devices.py:857 msgid "Cannot select a rack position without assigning a rack." msgstr "Kan geen rackpositie selecteren zonder een rack toe te wijzen." -#: netbox/dcim/models/devices.py:863 +#: dcim/models/devices.py:863 msgid "Position must be in increments of 0.5 rack units." msgstr "De positie moet in stappen van 0,5 rekeenheden zijn." -#: netbox/dcim/models/devices.py:867 +#: dcim/models/devices.py:867 msgid "Must specify rack face when defining rack position." msgstr "" "Bij het bepalen van de positie van het rek moet het oppervlak van het rack " "worden gespecificeerd." -#: netbox/dcim/models/devices.py:875 +#: dcim/models/devices.py:875 #, python-brace-format msgid "" "A 0U device type ({device_type}) cannot be assigned to a rack position." @@ -6161,7 +5714,7 @@ msgstr "" "Een 0U-apparaattype ({device_type}) kan niet worden toegewezen aan een " "rackpositie." -#: netbox/dcim/models/devices.py:886 +#: dcim/models/devices.py:886 msgid "" "Child device types cannot be assigned to a rack face. This is an attribute " "of the parent device." @@ -6169,7 +5722,7 @@ msgstr "" "Onderliggende apparaattypen kunnen niet aan een rackface worden toegewezen. " "Dit is een kenmerk van het ouderapparaat." -#: netbox/dcim/models/devices.py:893 +#: dcim/models/devices.py:893 msgid "" "Child device types cannot be assigned to a rack position. This is an " "attribute of the parent device." @@ -6177,7 +5730,7 @@ msgstr "" "Onderliggende apparaattypen kunnen niet worden toegewezen aan een " "rackpositie. Dit is een kenmerk van het ouderapparaat." -#: netbox/dcim/models/devices.py:907 +#: dcim/models/devices.py:907 #, python-brace-format msgid "" "U{position} is already occupied or does not have sufficient space to " @@ -6186,22 +5739,22 @@ msgstr "" "U{position} is al bezet of beschikt niet over voldoende ruimte voor dit " "apparaattype: {device_type} ({u_height}U)" -#: netbox/dcim/models/devices.py:922 +#: dcim/models/devices.py:922 #, python-brace-format msgid "{ip} is not an IPv4 address." msgstr "{ip} is geen IPv4-adres." -#: netbox/dcim/models/devices.py:931 netbox/dcim/models/devices.py:946 +#: dcim/models/devices.py:931 dcim/models/devices.py:946 #, python-brace-format msgid "The specified IP address ({ip}) is not assigned to this device." msgstr "Het opgegeven IP-adres ({ip}) is niet toegewezen aan dit apparaat." -#: netbox/dcim/models/devices.py:937 +#: dcim/models/devices.py:937 #, python-brace-format msgid "{ip} is not an IPv6 address." msgstr "{ip} is geen IPv6-adres." -#: netbox/dcim/models/devices.py:964 +#: dcim/models/devices.py:964 #, python-brace-format msgid "" "The assigned platform is limited to {platform_manufacturer} device types, " @@ -6211,18 +5764,18 @@ msgstr "" "apparaattypen, maar het type van dit apparaat behoort tot " "{devicetype_manufacturer}." -#: netbox/dcim/models/devices.py:975 +#: dcim/models/devices.py:975 #, python-brace-format msgid "The assigned cluster belongs to a different site ({site})" msgstr "Het toegewezen cluster behoort tot een andere site ({site})" -#: netbox/dcim/models/devices.py:983 +#: dcim/models/devices.py:983 msgid "A device assigned to a virtual chassis must have its position defined." msgstr "" "De positie van een apparaat dat aan een virtueel chassis is toegewezen, moet" " zijn positie hebben bepaald." -#: netbox/dcim/models/devices.py:988 +#: dcim/models/devices.py:988 #, python-brace-format msgid "" "Device cannot be removed from virtual chassis {virtual_chassis} because it " @@ -6231,15 +5784,15 @@ msgstr "" "Het apparaat kan niet van het virtuele chassis worden verwijderd " "{virtual_chassis} omdat het momenteel is aangewezen als zijn master." -#: netbox/dcim/models/devices.py:1196 +#: dcim/models/devices.py:1196 msgid "module" msgstr "module" -#: netbox/dcim/models/devices.py:1197 +#: dcim/models/devices.py:1197 msgid "modules" msgstr "modules" -#: netbox/dcim/models/devices.py:1213 +#: dcim/models/devices.py:1213 #, python-brace-format msgid "" "Module must be installed within a module bay belonging to the assigned " @@ -6248,15 +5801,15 @@ msgstr "" "De module moet worden geïnstalleerd in een modulecompartiment dat bij het " "toegewezen apparaat hoort ({device})." -#: netbox/dcim/models/devices.py:1334 +#: dcim/models/devices.py:1334 msgid "domain" msgstr "domein" -#: netbox/dcim/models/devices.py:1347 netbox/dcim/models/devices.py:1348 +#: dcim/models/devices.py:1347 dcim/models/devices.py:1348 msgid "virtual chassis" msgstr "virtueel chassis" -#: netbox/dcim/models/devices.py:1363 +#: dcim/models/devices.py:1363 #, python-brace-format msgid "" "The selected master ({master}) is not assigned to this virtual chassis." @@ -6264,7 +5817,7 @@ msgstr "" "De geselecteerde master ({master}) is niet toegewezen aan dit virtuele " "chassis." -#: netbox/dcim/models/devices.py:1379 +#: dcim/models/devices.py:1379 #, python-brace-format msgid "" "Unable to delete virtual chassis {self}. There are member interfaces which " @@ -6273,62 +5826,62 @@ msgstr "" "Kan het virtuele chassis niet verwijderen {self}. Er zijn lidinterfaces die " "een LAG-interface tussen chassis vormen." -#: netbox/dcim/models/devices.py:1404 netbox/vpn/models/l2vpn.py:37 +#: dcim/models/devices.py:1404 vpn/models/l2vpn.py:37 msgid "identifier" msgstr "-identificatiecode" -#: netbox/dcim/models/devices.py:1405 +#: dcim/models/devices.py:1405 msgid "Numeric identifier unique to the parent device" msgstr "Numerieke identificatie die uniek is voor het ouderapparaat" -#: netbox/dcim/models/devices.py:1433 netbox/extras/models/customfields.py:225 -#: netbox/extras/models/models.py:107 netbox/extras/models/models.py:694 -#: netbox/netbox/models/__init__.py:115 +#: dcim/models/devices.py:1433 extras/models/customfields.py:225 +#: extras/models/models.py:107 extras/models/models.py:694 +#: netbox/models/__init__.py:115 msgid "comments" msgstr "reacties" -#: netbox/dcim/models/devices.py:1449 +#: dcim/models/devices.py:1449 msgid "virtual device context" msgstr "context van het virtuele apparaat" -#: netbox/dcim/models/devices.py:1450 +#: dcim/models/devices.py:1450 msgid "virtual device contexts" msgstr "contexten van virtuele apparaten" -#: netbox/dcim/models/devices.py:1482 +#: dcim/models/devices.py:1482 #, python-brace-format msgid "{ip} is not an IPv{family} address." msgstr "{ip} is geen IPv{family} adres." -#: netbox/dcim/models/devices.py:1488 +#: dcim/models/devices.py:1488 msgid "Primary IP address must belong to an interface on the assigned device." msgstr "" "Het primaire IP-adres moet bij een interface op het toegewezen apparaat " "horen." -#: netbox/dcim/models/mixins.py:15 netbox/extras/models/configs.py:41 -#: netbox/extras/models/models.py:313 netbox/extras/models/models.py:522 -#: netbox/extras/models/search.py:48 netbox/ipam/models/ip.py:194 +#: dcim/models/mixins.py:15 extras/models/configs.py:41 +#: extras/models/models.py:313 extras/models/models.py:522 +#: extras/models/search.py:48 ipam/models/ip.py:194 msgid "weight" msgstr "gewicht" -#: netbox/dcim/models/mixins.py:22 +#: dcim/models/mixins.py:22 msgid "weight unit" msgstr "gewichtseenheid" -#: netbox/dcim/models/mixins.py:51 +#: dcim/models/mixins.py:51 msgid "Must specify a unit when setting a weight" msgstr "Moet een eenheid specificeren bij het instellen van een gewicht" -#: netbox/dcim/models/power.py:55 +#: dcim/models/power.py:55 msgid "power panel" msgstr "voedingspaneel" -#: netbox/dcim/models/power.py:56 +#: dcim/models/power.py:56 msgid "power panels" msgstr "elektriciteitspanelen" -#: netbox/dcim/models/power.py:70 +#: dcim/models/power.py:70 #, python-brace-format msgid "" "Location {location} ({location_site}) is in a different site than {site}" @@ -6336,43 +5889,43 @@ msgstr "" "Locatie {location} ({location_site}) bevindt zich op een andere site dan " "{site}" -#: netbox/dcim/models/power.py:108 +#: dcim/models/power.py:108 msgid "supply" msgstr "bevoorrading" -#: netbox/dcim/models/power.py:114 +#: dcim/models/power.py:114 msgid "phase" msgstr "fase" -#: netbox/dcim/models/power.py:120 +#: dcim/models/power.py:120 msgid "voltage" msgstr "spanning" -#: netbox/dcim/models/power.py:125 +#: dcim/models/power.py:125 msgid "amperage" msgstr "stroomsterkte" -#: netbox/dcim/models/power.py:130 +#: dcim/models/power.py:130 msgid "max utilization" msgstr "maximale benutting" -#: netbox/dcim/models/power.py:133 +#: dcim/models/power.py:133 msgid "Maximum permissible draw (percentage)" msgstr "Maximaal toelaatbare trekking (percentage)" -#: netbox/dcim/models/power.py:136 +#: dcim/models/power.py:136 msgid "available power" msgstr "beschikbaar vermogen" -#: netbox/dcim/models/power.py:164 +#: dcim/models/power.py:164 msgid "power feed" msgstr "voeding" -#: netbox/dcim/models/power.py:165 +#: dcim/models/power.py:165 msgid "power feeds" msgstr "voedingen" -#: netbox/dcim/models/power.py:179 +#: dcim/models/power.py:179 #, python-brace-format msgid "" "Rack {rack} ({rack_site}) and power panel {powerpanel} ({powerpanel_site}) " @@ -6381,63 +5934,63 @@ msgstr "" "Rek {rack} ({rack_site}) en voedingspaneel {powerpanel} ({powerpanel_site}) " "bevinden zich op verschillende locaties." -#: netbox/dcim/models/power.py:190 +#: dcim/models/power.py:190 msgid "Voltage cannot be negative for AC supply" msgstr "De spanning kan niet negatief zijn voor de AC-voeding" -#: netbox/dcim/models/racks.py:47 +#: dcim/models/racks.py:47 msgid "width" msgstr "breedte" -#: netbox/dcim/models/racks.py:48 +#: dcim/models/racks.py:48 msgid "Rail-to-rail width" msgstr "Breedte van spoor tot spoor" -#: netbox/dcim/models/racks.py:56 +#: dcim/models/racks.py:56 msgid "Height in rack units" msgstr "Hoogte in rekeenheden" -#: netbox/dcim/models/racks.py:60 +#: dcim/models/racks.py:60 msgid "starting unit" msgstr "starteenheid" -#: netbox/dcim/models/racks.py:62 +#: dcim/models/racks.py:62 msgid "Starting unit for rack" msgstr "Starteenheid voor rack" -#: netbox/dcim/models/racks.py:66 +#: dcim/models/racks.py:66 msgid "descending units" msgstr "aflopende eenheden" -#: netbox/dcim/models/racks.py:67 +#: dcim/models/racks.py:67 msgid "Units are numbered top-to-bottom" msgstr "Eenheden zijn van boven naar beneden genummerd" -#: netbox/dcim/models/racks.py:72 +#: dcim/models/racks.py:72 msgid "outer width" msgstr "buitenbreedte" -#: netbox/dcim/models/racks.py:75 +#: dcim/models/racks.py:75 msgid "Outer dimension of rack (width)" msgstr "Buitenafmeting van het rek (breedte)" -#: netbox/dcim/models/racks.py:78 +#: dcim/models/racks.py:78 msgid "outer depth" msgstr "buitendiepte" -#: netbox/dcim/models/racks.py:81 +#: dcim/models/racks.py:81 msgid "Outer dimension of rack (depth)" msgstr "Buitenafmeting van het rek (diepte)" -#: netbox/dcim/models/racks.py:84 +#: dcim/models/racks.py:84 msgid "outer unit" msgstr "buiteneenheid" -#: netbox/dcim/models/racks.py:90 +#: dcim/models/racks.py:90 msgid "mounting depth" msgstr "montagediepte" -#: netbox/dcim/models/racks.py:94 +#: dcim/models/racks.py:94 msgid "" "Maximum depth of a mounted device, in millimeters. For four-post racks, this" " is the distance between the front and rear rails." @@ -6445,77 +5998,76 @@ msgstr "" "Maximale diepte van een gemonteerd apparaat, in millimeters. Voor rekken met" " vier stijlen is dit de afstand tussen de voor- en achterrails." -#: netbox/dcim/models/racks.py:102 +#: dcim/models/racks.py:102 msgid "max weight" msgstr "maximaal gewicht" -#: netbox/dcim/models/racks.py:105 +#: dcim/models/racks.py:105 msgid "Maximum load capacity for the rack" msgstr "Maximaal draagvermogen voor het rack" -#: netbox/dcim/models/racks.py:125 netbox/dcim/models/racks.py:252 +#: dcim/models/racks.py:125 dcim/models/racks.py:252 msgid "form factor" msgstr "vormfactor" -#: netbox/dcim/models/racks.py:162 +#: dcim/models/racks.py:162 msgid "rack type" msgstr "type rek" -#: netbox/dcim/models/racks.py:163 +#: dcim/models/racks.py:163 msgid "rack types" msgstr "soorten rekken" -#: netbox/dcim/models/racks.py:180 netbox/dcim/models/racks.py:379 +#: dcim/models/racks.py:180 dcim/models/racks.py:379 msgid "Must specify a unit when setting an outer width/depth" msgstr "" "Moet een eenheid specificeren bij het instellen van een buitenbreedte/diepte" -#: netbox/dcim/models/racks.py:184 netbox/dcim/models/racks.py:383 +#: dcim/models/racks.py:184 dcim/models/racks.py:383 msgid "Must specify a unit when setting a maximum weight" msgstr "" "Moet een eenheid specificeren bij het instellen van een maximaal gewicht" -#: netbox/dcim/models/racks.py:230 +#: dcim/models/racks.py:230 msgid "rack role" msgstr "rack rol" -#: netbox/dcim/models/racks.py:231 +#: dcim/models/racks.py:231 msgid "rack roles" msgstr "rack rollen" -#: netbox/dcim/models/racks.py:274 +#: dcim/models/racks.py:274 msgid "facility ID" msgstr "ID van de faciliteit" -#: netbox/dcim/models/racks.py:275 +#: dcim/models/racks.py:275 msgid "Locally-assigned identifier" msgstr "Lokaal toegewezen identificatiecode" -#: netbox/dcim/models/racks.py:308 netbox/ipam/forms/bulk_import.py:201 -#: netbox/ipam/forms/bulk_import.py:266 netbox/ipam/forms/bulk_import.py:301 -#: netbox/ipam/forms/bulk_import.py:459 -#: netbox/virtualization/forms/bulk_import.py:112 +#: dcim/models/racks.py:308 ipam/forms/bulk_import.py:201 +#: ipam/forms/bulk_import.py:266 ipam/forms/bulk_import.py:301 +#: ipam/forms/bulk_import.py:459 virtualization/forms/bulk_import.py:112 msgid "Functional role" msgstr "Functionele rol" -#: netbox/dcim/models/racks.py:321 +#: dcim/models/racks.py:321 msgid "A unique tag used to identify this rack" msgstr "Een unieke tag die wordt gebruikt om dit rek te identificeren" -#: netbox/dcim/models/racks.py:359 +#: dcim/models/racks.py:359 msgid "rack" msgstr "rack" -#: netbox/dcim/models/racks.py:360 +#: dcim/models/racks.py:360 msgid "racks" msgstr "racks" -#: netbox/dcim/models/racks.py:375 +#: dcim/models/racks.py:375 #, python-brace-format msgid "Assigned location must belong to parent site ({site})." msgstr "De toegewezen locatie moet bij de bovenliggende site horen ({site})." -#: netbox/dcim/models/racks.py:393 +#: dcim/models/racks.py:393 #, python-brace-format msgid "" "Rack must be at least {min_height}U tall to house currently installed " @@ -6524,7 +6076,7 @@ msgstr "" "Het rek moet minimaal {min_height}Ik praat om de momenteel geïnstalleerde " "apparaten te huisvesten." -#: netbox/dcim/models/racks.py:400 +#: dcim/models/racks.py:400 #, python-brace-format msgid "" "Rack unit numbering must begin at {position} or less to house currently " @@ -6533,955 +6085,892 @@ msgstr "" "De nummering van de rackeenheid moet beginnen bij {position} of minder om " "momenteel geïnstalleerde apparaten te huisvesten." -#: netbox/dcim/models/racks.py:408 +#: dcim/models/racks.py:408 #, python-brace-format msgid "Location must be from the same site, {site}." msgstr "De locatie moet van dezelfde locatie zijn, {site}." -#: netbox/dcim/models/racks.py:670 +#: dcim/models/racks.py:670 msgid "units" msgstr "eenheden" -#: netbox/dcim/models/racks.py:696 +#: dcim/models/racks.py:696 msgid "rack reservation" msgstr "Reserveren van de baan" -#: netbox/dcim/models/racks.py:697 +#: dcim/models/racks.py:697 msgid "rack reservations" msgstr "Reserveringen volgen" -#: netbox/dcim/models/racks.py:714 +#: dcim/models/racks.py:714 #, python-brace-format msgid "Invalid unit(s) for {height}U rack: {unit_list}" msgstr "Ongeldige eenheid (en) voor {height}U-rail: {unit_list}" -#: netbox/dcim/models/racks.py:727 +#: dcim/models/racks.py:727 #, python-brace-format msgid "The following units have already been reserved: {unit_list}" msgstr "De volgende eenheden zijn al gereserveerd: {unit_list}" -#: netbox/dcim/models/sites.py:49 +#: dcim/models/sites.py:49 msgid "A top-level region with this name already exists." msgstr "Er bestaat al een regio op het hoogste niveau met deze naam." -#: netbox/dcim/models/sites.py:59 +#: dcim/models/sites.py:59 msgid "A top-level region with this slug already exists." msgstr "Er bestaat al een regio op het hoogste niveau met deze slug." -#: netbox/dcim/models/sites.py:62 +#: dcim/models/sites.py:62 msgid "region" msgstr "regio" -#: netbox/dcim/models/sites.py:63 +#: dcim/models/sites.py:63 msgid "regions" msgstr "regio's" -#: netbox/dcim/models/sites.py:102 +#: dcim/models/sites.py:102 msgid "A top-level site group with this name already exists." msgstr "Er bestaat al een sitegroep op het hoogste niveau met deze naam." -#: netbox/dcim/models/sites.py:112 +#: dcim/models/sites.py:112 msgid "A top-level site group with this slug already exists." msgstr "Er bestaat al een sitegroep op het hoogste niveau met deze slug." -#: netbox/dcim/models/sites.py:115 +#: dcim/models/sites.py:115 msgid "site group" msgstr "sitegroep" -#: netbox/dcim/models/sites.py:116 +#: dcim/models/sites.py:116 msgid "site groups" msgstr "sitegroepen" -#: netbox/dcim/models/sites.py:141 +#: dcim/models/sites.py:141 msgid "Full name of the site" msgstr "Volledige naam van de site" -#: netbox/dcim/models/sites.py:181 netbox/dcim/models/sites.py:279 +#: dcim/models/sites.py:181 dcim/models/sites.py:279 msgid "facility" msgstr "faciliteit" -#: netbox/dcim/models/sites.py:184 netbox/dcim/models/sites.py:282 +#: dcim/models/sites.py:184 dcim/models/sites.py:282 msgid "Local facility ID or description" msgstr "ID of beschrijving van de lokale faciliteit" -#: netbox/dcim/models/sites.py:195 +#: dcim/models/sites.py:195 msgid "physical address" msgstr "fysiek adres" -#: netbox/dcim/models/sites.py:198 +#: dcim/models/sites.py:198 msgid "Physical location of the building" msgstr "Fysieke locatie van het gebouw" -#: netbox/dcim/models/sites.py:201 +#: dcim/models/sites.py:201 msgid "shipping address" msgstr "verzendadres" -#: netbox/dcim/models/sites.py:204 +#: dcim/models/sites.py:204 msgid "If different from the physical address" msgstr "Indien anders dan het fysieke adres" -#: netbox/dcim/models/sites.py:238 +#: dcim/models/sites.py:238 msgid "site" msgstr "site" -#: netbox/dcim/models/sites.py:239 +#: dcim/models/sites.py:239 msgid "sites" msgstr "sites" -#: netbox/dcim/models/sites.py:309 +#: dcim/models/sites.py:309 msgid "A location with this name already exists within the specified site." msgstr "Er bestaat al een locatie met deze naam op de opgegeven site." -#: netbox/dcim/models/sites.py:319 +#: dcim/models/sites.py:319 msgid "A location with this slug already exists within the specified site." msgstr "Er bestaat al een locatie met deze slug binnen de opgegeven site." -#: netbox/dcim/models/sites.py:322 +#: dcim/models/sites.py:322 msgid "location" msgstr "locatie" -#: netbox/dcim/models/sites.py:323 +#: dcim/models/sites.py:323 msgid "locations" msgstr "locaties" -#: netbox/dcim/models/sites.py:337 +#: dcim/models/sites.py:337 #, python-brace-format msgid "Parent location ({parent}) must belong to the same site ({site})." msgstr "" "Locatie van de ouder ({parent}) moet tot dezelfde site behoren ({site})." -#: netbox/dcim/tables/cables.py:55 +#: dcim/tables/cables.py:55 msgid "Termination A" msgstr "Beëindiging A" -#: netbox/dcim/tables/cables.py:60 +#: dcim/tables/cables.py:60 msgid "Termination B" msgstr "Eindpunt B" -#: netbox/dcim/tables/cables.py:66 netbox/wireless/tables/wirelesslink.py:23 +#: dcim/tables/cables.py:66 wireless/tables/wirelesslink.py:23 msgid "Device A" msgstr "Apparaat A" -#: netbox/dcim/tables/cables.py:72 netbox/wireless/tables/wirelesslink.py:32 +#: dcim/tables/cables.py:72 wireless/tables/wirelesslink.py:32 msgid "Device B" msgstr "Apparaat B" -#: netbox/dcim/tables/cables.py:78 +#: dcim/tables/cables.py:78 msgid "Location A" msgstr "Locatie A" -#: netbox/dcim/tables/cables.py:84 +#: dcim/tables/cables.py:84 msgid "Location B" msgstr "Locatie B" -#: netbox/dcim/tables/cables.py:90 +#: dcim/tables/cables.py:90 msgid "Rack A" msgstr "Rek A" -#: netbox/dcim/tables/cables.py:96 +#: dcim/tables/cables.py:96 msgid "Rack B" msgstr "Rek B" -#: netbox/dcim/tables/cables.py:102 +#: dcim/tables/cables.py:102 msgid "Site A" msgstr "Site A" -#: netbox/dcim/tables/cables.py:108 +#: dcim/tables/cables.py:108 msgid "Site B" msgstr "Locatie B" -#: netbox/dcim/tables/connections.py:31 netbox/dcim/tables/connections.py:50 -#: netbox/dcim/tables/connections.py:71 -#: netbox/templates/dcim/inc/connection_endpoints.html:16 +#: dcim/tables/connections.py:31 dcim/tables/connections.py:50 +#: dcim/tables/connections.py:71 +#: templates/dcim/inc/connection_endpoints.html:16 msgid "Reachable" msgstr "Bereikbaar" -#: netbox/dcim/tables/devices.py:58 netbox/dcim/tables/devices.py:106 -#: netbox/dcim/tables/racks.py:150 netbox/dcim/tables/sites.py:105 -#: netbox/dcim/tables/sites.py:148 netbox/extras/tables/tables.py:545 -#: netbox/netbox/navigation/menu.py:69 netbox/netbox/navigation/menu.py:73 -#: netbox/netbox/navigation/menu.py:75 -#: netbox/virtualization/forms/model_forms.py:122 -#: netbox/virtualization/tables/clusters.py:83 -#: netbox/virtualization/views.py:206 +#: dcim/tables/devices.py:58 dcim/tables/devices.py:106 +#: dcim/tables/racks.py:150 dcim/tables/sites.py:105 dcim/tables/sites.py:148 +#: extras/tables/tables.py:545 netbox/navigation/menu.py:69 +#: netbox/navigation/menu.py:73 netbox/navigation/menu.py:75 +#: virtualization/forms/model_forms.py:122 +#: virtualization/tables/clusters.py:83 virtualization/views.py:206 msgid "Devices" msgstr "Apparaten" -#: netbox/dcim/tables/devices.py:63 netbox/dcim/tables/devices.py:111 -#: netbox/virtualization/tables/clusters.py:88 +#: dcim/tables/devices.py:63 dcim/tables/devices.py:111 +#: virtualization/tables/clusters.py:88 msgid "VMs" msgstr "VM's" -#: netbox/dcim/tables/devices.py:100 netbox/dcim/tables/devices.py:216 -#: netbox/extras/forms/model_forms.py:630 -#: netbox/templates/dcim/device.html:112 -#: netbox/templates/dcim/device/render_config.html:11 -#: netbox/templates/dcim/device/render_config.html:14 -#: netbox/templates/dcim/devicerole.html:44 -#: netbox/templates/dcim/platform.html:41 -#: netbox/templates/extras/configtemplate.html:10 -#: netbox/templates/virtualization/virtualmachine.html:48 -#: netbox/templates/virtualization/virtualmachine/render_config.html:11 -#: netbox/templates/virtualization/virtualmachine/render_config.html:14 -#: netbox/virtualization/tables/virtualmachines.py:107 +#: dcim/tables/devices.py:100 dcim/tables/devices.py:216 +#: extras/forms/model_forms.py:630 templates/dcim/device.html:112 +#: templates/dcim/device/render_config.html:11 +#: templates/dcim/device/render_config.html:14 +#: templates/dcim/devicerole.html:44 templates/dcim/platform.html:41 +#: templates/extras/configtemplate.html:10 +#: templates/virtualization/virtualmachine.html:48 +#: templates/virtualization/virtualmachine/render_config.html:11 +#: templates/virtualization/virtualmachine/render_config.html:14 +#: virtualization/tables/virtualmachines.py:107 msgid "Config Template" msgstr "Configuratiesjabloon" -#: netbox/dcim/tables/devices.py:150 netbox/templates/dcim/sitegroup.html:26 +#: dcim/tables/devices.py:150 templates/dcim/sitegroup.html:26 msgid "Site Group" msgstr "Sitegroep" -#: netbox/dcim/tables/devices.py:187 netbox/dcim/tables/devices.py:1068 -#: netbox/ipam/forms/bulk_import.py:503 netbox/ipam/forms/model_forms.py:306 -#: netbox/ipam/forms/model_forms.py:315 netbox/ipam/tables/ip.py:356 -#: netbox/ipam/tables/ip.py:423 netbox/ipam/tables/ip.py:446 -#: netbox/templates/ipam/ipaddress.html:11 -#: netbox/virtualization/tables/virtualmachines.py:95 +#: dcim/tables/devices.py:187 dcim/tables/devices.py:1068 +#: ipam/forms/bulk_import.py:503 ipam/forms/model_forms.py:306 +#: ipam/forms/model_forms.py:315 ipam/tables/ip.py:356 ipam/tables/ip.py:423 +#: ipam/tables/ip.py:446 templates/ipam/ipaddress.html:11 +#: virtualization/tables/virtualmachines.py:95 msgid "IP Address" msgstr "IP-adres" -#: netbox/dcim/tables/devices.py:191 netbox/dcim/tables/devices.py:1072 -#: netbox/virtualization/tables/virtualmachines.py:86 +#: dcim/tables/devices.py:191 dcim/tables/devices.py:1072 +#: virtualization/tables/virtualmachines.py:86 msgid "IPv4 Address" msgstr "IPv4-adres" -#: netbox/dcim/tables/devices.py:195 netbox/dcim/tables/devices.py:1076 -#: netbox/virtualization/tables/virtualmachines.py:90 +#: dcim/tables/devices.py:195 dcim/tables/devices.py:1076 +#: virtualization/tables/virtualmachines.py:90 msgid "IPv6 Address" msgstr "IPv6-adres" -#: netbox/dcim/tables/devices.py:210 +#: dcim/tables/devices.py:210 msgid "VC Position" msgstr "VC-positie" -#: netbox/dcim/tables/devices.py:213 +#: dcim/tables/devices.py:213 msgid "VC Priority" msgstr "VC-prioriteit" -#: netbox/dcim/tables/devices.py:220 netbox/templates/dcim/device_edit.html:38 -#: netbox/templates/dcim/devicebay_populate.html:16 +#: dcim/tables/devices.py:220 templates/dcim/device_edit.html:38 +#: templates/dcim/devicebay_populate.html:16 msgid "Parent Device" msgstr "Apparaat voor ouders" -#: netbox/dcim/tables/devices.py:225 +#: dcim/tables/devices.py:225 msgid "Position (Device Bay)" msgstr "Positie (apparaatvak)" -#: netbox/dcim/tables/devices.py:234 +#: dcim/tables/devices.py:234 msgid "Console ports" msgstr "Consolepoorten" -#: netbox/dcim/tables/devices.py:237 +#: dcim/tables/devices.py:237 msgid "Console server ports" msgstr "Serverpoorten voor de console" -#: netbox/dcim/tables/devices.py:240 +#: dcim/tables/devices.py:240 msgid "Power ports" msgstr "Voedingspoorten" -#: netbox/dcim/tables/devices.py:243 +#: dcim/tables/devices.py:243 msgid "Power outlets" msgstr "Stopcontacten" -#: netbox/dcim/tables/devices.py:246 netbox/dcim/tables/devices.py:1081 -#: netbox/dcim/tables/devicetypes.py:128 netbox/dcim/views.py:1042 -#: netbox/dcim/views.py:1281 netbox/dcim/views.py:1977 -#: netbox/netbox/navigation/menu.py:94 netbox/netbox/navigation/menu.py:250 -#: netbox/templates/dcim/device/base.html:37 -#: netbox/templates/dcim/device_list.html:43 -#: netbox/templates/dcim/devicetype/base.html:34 -#: netbox/templates/dcim/module.html:34 -#: netbox/templates/dcim/moduletype/base.html:34 -#: netbox/templates/dcim/virtualdevicecontext.html:61 -#: netbox/templates/dcim/virtualdevicecontext.html:81 -#: netbox/templates/virtualization/virtualmachine/base.html:27 -#: netbox/templates/virtualization/virtualmachine_list.html:14 -#: netbox/virtualization/tables/virtualmachines.py:101 -#: netbox/virtualization/views.py:366 netbox/wireless/tables/wirelesslan.py:55 +#: dcim/tables/devices.py:246 dcim/tables/devices.py:1081 +#: dcim/tables/devicetypes.py:128 dcim/views.py:1042 dcim/views.py:1281 +#: dcim/views.py:1977 netbox/navigation/menu.py:94 +#: netbox/navigation/menu.py:250 templates/dcim/device/base.html:37 +#: templates/dcim/device_list.html:43 templates/dcim/devicetype/base.html:34 +#: templates/dcim/inc/moduletype_buttons.html:25 templates/dcim/module.html:34 +#: templates/dcim/virtualdevicecontext.html:61 +#: templates/dcim/virtualdevicecontext.html:81 +#: templates/virtualization/virtualmachine/base.html:27 +#: templates/virtualization/virtualmachine_list.html:14 +#: virtualization/tables/virtualmachines.py:101 virtualization/views.py:366 +#: wireless/tables/wirelesslan.py:55 msgid "Interfaces" msgstr "Interfaces" -#: netbox/dcim/tables/devices.py:249 +#: dcim/tables/devices.py:249 msgid "Front ports" msgstr "Poorten vooraan" -#: netbox/dcim/tables/devices.py:255 +#: dcim/tables/devices.py:255 msgid "Device bays" msgstr "Toestelvakken" -#: netbox/dcim/tables/devices.py:258 +#: dcim/tables/devices.py:258 msgid "Module bays" msgstr "Modulebays" -#: netbox/dcim/tables/devices.py:261 +#: dcim/tables/devices.py:261 msgid "Inventory items" msgstr "Inventarisartikelen" -#: netbox/dcim/tables/devices.py:305 netbox/dcim/tables/modules.py:56 -#: netbox/templates/dcim/modulebay.html:17 +#: dcim/tables/devices.py:305 dcim/tables/modules.py:56 +#: templates/dcim/modulebay.html:17 msgid "Module Bay" msgstr "Modulebaai" -#: netbox/dcim/tables/devices.py:318 netbox/dcim/tables/devicetypes.py:47 -#: netbox/dcim/tables/devicetypes.py:143 netbox/dcim/views.py:1117 -#: netbox/dcim/views.py:2075 netbox/netbox/navigation/menu.py:103 -#: netbox/templates/dcim/device/base.html:52 -#: netbox/templates/dcim/device_list.html:71 -#: netbox/templates/dcim/devicetype/base.html:49 -#: netbox/templates/dcim/inc/panels/inventory_items.html:6 -#: netbox/templates/dcim/inventoryitemrole.html:32 +#: dcim/tables/devices.py:318 dcim/tables/devicetypes.py:47 +#: dcim/tables/devicetypes.py:143 dcim/views.py:1117 dcim/views.py:2075 +#: netbox/navigation/menu.py:103 templates/dcim/device/base.html:52 +#: templates/dcim/device_list.html:71 templates/dcim/devicetype/base.html:49 +#: templates/dcim/inc/panels/inventory_items.html:6 +#: templates/dcim/inventoryitemrole.html:32 msgid "Inventory Items" msgstr "Inventarisartikelen" -#: netbox/dcim/tables/devices.py:333 +#: dcim/tables/devices.py:333 msgid "Cable Color" msgstr "Kleur van de kabel" -#: netbox/dcim/tables/devices.py:339 +#: dcim/tables/devices.py:339 msgid "Link Peers" msgstr "Peers koppelen" -#: netbox/dcim/tables/devices.py:342 +#: dcim/tables/devices.py:342 msgid "Mark Connected" msgstr "Markeer Verbonden" -#: netbox/dcim/tables/devices.py:461 +#: dcim/tables/devices.py:461 msgid "Maximum draw (W)" msgstr "Maximale trekkracht (W)" -#: netbox/dcim/tables/devices.py:464 +#: dcim/tables/devices.py:464 msgid "Allocated draw (W)" msgstr "Toegewezen trekking (W)" -#: netbox/dcim/tables/devices.py:558 netbox/ipam/forms/model_forms.py:701 -#: netbox/ipam/tables/fhrp.py:28 netbox/ipam/views.py:596 -#: netbox/ipam/views.py:696 netbox/netbox/navigation/menu.py:158 -#: netbox/netbox/navigation/menu.py:160 -#: netbox/templates/dcim/interface.html:339 -#: netbox/templates/ipam/ipaddress_bulk_add.html:15 -#: netbox/templates/ipam/service.html:40 -#: netbox/templates/virtualization/vminterface.html:85 -#: netbox/vpn/tables/tunnels.py:98 +#: dcim/tables/devices.py:558 ipam/forms/model_forms.py:701 +#: ipam/tables/fhrp.py:28 ipam/views.py:596 ipam/views.py:696 +#: netbox/navigation/menu.py:158 netbox/navigation/menu.py:160 +#: templates/dcim/interface.html:339 templates/ipam/ipaddress_bulk_add.html:15 +#: templates/ipam/service.html:40 templates/virtualization/vminterface.html:85 +#: vpn/tables/tunnels.py:98 msgid "IP Addresses" msgstr "IP-adressen" -#: netbox/dcim/tables/devices.py:564 netbox/netbox/navigation/menu.py:202 -#: netbox/templates/ipam/inc/panels/fhrp_groups.html:6 +#: dcim/tables/devices.py:564 netbox/navigation/menu.py:202 +#: templates/ipam/inc/panels/fhrp_groups.html:6 msgid "FHRP Groups" msgstr "FHRP-groepen" -#: netbox/dcim/tables/devices.py:576 netbox/templates/dcim/interface.html:89 -#: netbox/templates/virtualization/vminterface.html:67 -#: netbox/templates/vpn/tunnel.html:18 -#: netbox/templates/vpn/tunneltermination.html:13 -#: netbox/vpn/forms/bulk_edit.py:76 netbox/vpn/forms/bulk_import.py:76 -#: netbox/vpn/forms/filtersets.py:42 netbox/vpn/forms/filtersets.py:82 -#: netbox/vpn/forms/model_forms.py:60 netbox/vpn/forms/model_forms.py:145 -#: netbox/vpn/tables/tunnels.py:78 +#: dcim/tables/devices.py:576 templates/dcim/interface.html:89 +#: templates/virtualization/vminterface.html:67 templates/vpn/tunnel.html:18 +#: templates/vpn/tunneltermination.html:13 vpn/forms/bulk_edit.py:76 +#: vpn/forms/bulk_import.py:76 vpn/forms/filtersets.py:42 +#: vpn/forms/filtersets.py:82 vpn/forms/model_forms.py:60 +#: vpn/forms/model_forms.py:145 vpn/tables/tunnels.py:78 msgid "Tunnel" msgstr "Tunnel" -#: netbox/dcim/tables/devices.py:604 netbox/dcim/tables/devicetypes.py:227 -#: netbox/templates/dcim/interface.html:65 +#: dcim/tables/devices.py:604 dcim/tables/devicetypes.py:227 +#: templates/dcim/interface.html:65 msgid "Management Only" msgstr "Alleen beheer" -#: netbox/dcim/tables/devices.py:623 +#: dcim/tables/devices.py:623 msgid "VDCs" msgstr "VDC's" -#: netbox/dcim/tables/devices.py:873 netbox/templates/dcim/modulebay.html:53 +#: dcim/tables/devices.py:873 templates/dcim/modulebay.html:53 msgid "Installed Module" msgstr "Geïnstalleerde module" -#: netbox/dcim/tables/devices.py:876 +#: dcim/tables/devices.py:876 msgid "Module Serial" msgstr "Seriële module" -#: netbox/dcim/tables/devices.py:880 +#: dcim/tables/devices.py:880 msgid "Module Asset Tag" msgstr "Tag voor module-bedrijfsmiddelen" -#: netbox/dcim/tables/devices.py:889 +#: dcim/tables/devices.py:889 msgid "Module Status" msgstr "Status van de module" -#: netbox/dcim/tables/devices.py:944 netbox/dcim/tables/devicetypes.py:312 -#: netbox/templates/dcim/inventoryitem.html:40 +#: dcim/tables/devices.py:944 dcim/tables/devicetypes.py:312 +#: templates/dcim/inventoryitem.html:40 msgid "Component" msgstr "Onderdeel" -#: netbox/dcim/tables/devices.py:1000 +#: dcim/tables/devices.py:1000 msgid "Items" msgstr "Artikelen" -#: netbox/dcim/tables/devicetypes.py:37 netbox/netbox/navigation/menu.py:84 -#: netbox/netbox/navigation/menu.py:86 +#: dcim/tables/devicetypes.py:37 netbox/navigation/menu.py:84 +#: netbox/navigation/menu.py:86 msgid "Device Types" msgstr "Apparaattypen" -#: netbox/dcim/tables/devicetypes.py:42 netbox/netbox/navigation/menu.py:87 +#: dcim/tables/devicetypes.py:42 netbox/navigation/menu.py:87 msgid "Module Types" msgstr "Moduletypen" -#: netbox/dcim/tables/devicetypes.py:52 netbox/extras/forms/filtersets.py:371 -#: netbox/extras/forms/model_forms.py:537 netbox/extras/tables/tables.py:540 -#: netbox/netbox/navigation/menu.py:78 +#: dcim/tables/devicetypes.py:52 extras/forms/filtersets.py:371 +#: extras/forms/model_forms.py:537 extras/tables/tables.py:540 +#: netbox/navigation/menu.py:78 msgid "Platforms" msgstr "Platformen" -#: netbox/dcim/tables/devicetypes.py:84 -#: netbox/templates/dcim/devicetype.html:29 +#: dcim/tables/devicetypes.py:84 templates/dcim/devicetype.html:29 msgid "Default Platform" msgstr "Standaardplatform" -#: netbox/dcim/tables/devicetypes.py:88 -#: netbox/templates/dcim/devicetype.html:45 +#: dcim/tables/devicetypes.py:88 templates/dcim/devicetype.html:45 msgid "Full Depth" msgstr "Volledige diepte" -#: netbox/dcim/tables/devicetypes.py:98 +#: dcim/tables/devicetypes.py:98 msgid "U Height" msgstr "U-hoogte" -#: netbox/dcim/tables/devicetypes.py:113 netbox/dcim/tables/modules.py:26 -#: netbox/dcim/tables/racks.py:89 +#: dcim/tables/devicetypes.py:113 dcim/tables/modules.py:26 +#: dcim/tables/racks.py:89 msgid "Instances" msgstr "Instanties" -#: netbox/dcim/tables/devicetypes.py:116 netbox/dcim/views.py:982 -#: netbox/dcim/views.py:1221 netbox/dcim/views.py:1913 -#: netbox/netbox/navigation/menu.py:97 -#: netbox/templates/dcim/device/base.html:25 -#: netbox/templates/dcim/device_list.html:15 -#: netbox/templates/dcim/devicetype/base.html:22 -#: netbox/templates/dcim/module.html:22 -#: netbox/templates/dcim/moduletype/base.html:22 +#: dcim/tables/devicetypes.py:116 dcim/views.py:982 dcim/views.py:1221 +#: dcim/views.py:1913 netbox/navigation/menu.py:97 +#: templates/dcim/device/base.html:25 templates/dcim/device_list.html:15 +#: templates/dcim/devicetype/base.html:22 +#: templates/dcim/inc/moduletype_buttons.html:13 templates/dcim/module.html:22 msgid "Console Ports" msgstr "Consolepoorten" -#: netbox/dcim/tables/devicetypes.py:119 netbox/dcim/views.py:997 -#: netbox/dcim/views.py:1236 netbox/dcim/views.py:1929 -#: netbox/netbox/navigation/menu.py:98 -#: netbox/templates/dcim/device/base.html:28 -#: netbox/templates/dcim/device_list.html:22 -#: netbox/templates/dcim/devicetype/base.html:25 -#: netbox/templates/dcim/module.html:25 -#: netbox/templates/dcim/moduletype/base.html:25 +#: dcim/tables/devicetypes.py:119 dcim/views.py:997 dcim/views.py:1236 +#: dcim/views.py:1929 netbox/navigation/menu.py:98 +#: templates/dcim/device/base.html:28 templates/dcim/device_list.html:22 +#: templates/dcim/devicetype/base.html:25 +#: templates/dcim/inc/moduletype_buttons.html:16 templates/dcim/module.html:25 msgid "Console Server Ports" msgstr "Serverpoorten voor de console" -#: netbox/dcim/tables/devicetypes.py:122 netbox/dcim/views.py:1012 -#: netbox/dcim/views.py:1251 netbox/dcim/views.py:1945 -#: netbox/netbox/navigation/menu.py:99 -#: netbox/templates/dcim/device/base.html:31 -#: netbox/templates/dcim/device_list.html:29 -#: netbox/templates/dcim/devicetype/base.html:28 -#: netbox/templates/dcim/module.html:28 -#: netbox/templates/dcim/moduletype/base.html:28 +#: dcim/tables/devicetypes.py:122 dcim/views.py:1012 dcim/views.py:1251 +#: dcim/views.py:1945 netbox/navigation/menu.py:99 +#: templates/dcim/device/base.html:31 templates/dcim/device_list.html:29 +#: templates/dcim/devicetype/base.html:28 +#: templates/dcim/inc/moduletype_buttons.html:19 templates/dcim/module.html:28 msgid "Power Ports" msgstr "Voedingspoorten" -#: netbox/dcim/tables/devicetypes.py:125 netbox/dcim/views.py:1027 -#: netbox/dcim/views.py:1266 netbox/dcim/views.py:1961 -#: netbox/netbox/navigation/menu.py:100 -#: netbox/templates/dcim/device/base.html:34 -#: netbox/templates/dcim/device_list.html:36 -#: netbox/templates/dcim/devicetype/base.html:31 -#: netbox/templates/dcim/module.html:31 -#: netbox/templates/dcim/moduletype/base.html:31 +#: dcim/tables/devicetypes.py:125 dcim/views.py:1027 dcim/views.py:1266 +#: dcim/views.py:1961 netbox/navigation/menu.py:100 +#: templates/dcim/device/base.html:34 templates/dcim/device_list.html:36 +#: templates/dcim/devicetype/base.html:31 +#: templates/dcim/inc/moduletype_buttons.html:22 templates/dcim/module.html:31 msgid "Power Outlets" msgstr "Stopcontacten" -#: netbox/dcim/tables/devicetypes.py:131 netbox/dcim/views.py:1057 -#: netbox/dcim/views.py:1296 netbox/dcim/views.py:1999 -#: netbox/netbox/navigation/menu.py:95 -#: netbox/templates/dcim/device/base.html:40 -#: netbox/templates/dcim/devicetype/base.html:37 -#: netbox/templates/dcim/module.html:37 -#: netbox/templates/dcim/moduletype/base.html:37 +#: dcim/tables/devicetypes.py:131 dcim/views.py:1057 dcim/views.py:1296 +#: dcim/views.py:1999 netbox/navigation/menu.py:95 +#: templates/dcim/device/base.html:40 templates/dcim/devicetype/base.html:37 +#: templates/dcim/inc/moduletype_buttons.html:28 templates/dcim/module.html:37 msgid "Front Ports" msgstr "Ports aan de voorkant" -#: netbox/dcim/tables/devicetypes.py:134 netbox/dcim/views.py:1072 -#: netbox/dcim/views.py:1311 netbox/dcim/views.py:2015 -#: netbox/netbox/navigation/menu.py:96 -#: netbox/templates/dcim/device/base.html:43 -#: netbox/templates/dcim/device_list.html:50 -#: netbox/templates/dcim/devicetype/base.html:40 -#: netbox/templates/dcim/module.html:40 -#: netbox/templates/dcim/moduletype/base.html:40 +#: dcim/tables/devicetypes.py:134 dcim/views.py:1072 dcim/views.py:1311 +#: dcim/views.py:2015 netbox/navigation/menu.py:96 +#: templates/dcim/device/base.html:43 templates/dcim/device_list.html:50 +#: templates/dcim/devicetype/base.html:40 +#: templates/dcim/inc/moduletype_buttons.html:31 templates/dcim/module.html:40 msgid "Rear Ports" msgstr "Poorten achteraan" -#: netbox/dcim/tables/devicetypes.py:137 netbox/dcim/views.py:1102 -#: netbox/dcim/views.py:2055 netbox/netbox/navigation/menu.py:102 -#: netbox/templates/dcim/device/base.html:49 -#: netbox/templates/dcim/device_list.html:57 -#: netbox/templates/dcim/devicetype/base.html:46 +#: dcim/tables/devicetypes.py:137 dcim/views.py:1102 dcim/views.py:2055 +#: netbox/navigation/menu.py:102 templates/dcim/device/base.html:49 +#: templates/dcim/device_list.html:57 templates/dcim/devicetype/base.html:46 msgid "Device Bays" msgstr "Apparaatvakken" -#: netbox/dcim/tables/devicetypes.py:140 netbox/dcim/views.py:1087 -#: netbox/dcim/views.py:1326 netbox/dcim/views.py:2035 -#: netbox/netbox/navigation/menu.py:101 -#: netbox/templates/dcim/device/base.html:46 -#: netbox/templates/dcim/device_list.html:64 -#: netbox/templates/dcim/devicetype/base.html:43 -#: netbox/templates/dcim/module.html:43 -#: netbox/templates/dcim/moduletype/base.html:43 +#: dcim/tables/devicetypes.py:140 dcim/views.py:1087 dcim/views.py:1326 +#: dcim/views.py:2035 netbox/navigation/menu.py:101 +#: templates/dcim/device/base.html:46 templates/dcim/device_list.html:64 +#: templates/dcim/devicetype/base.html:43 +#: templates/dcim/inc/moduletype_buttons.html:34 templates/dcim/module.html:43 msgid "Module Bays" msgstr "Modulebays" -#: netbox/dcim/tables/power.py:36 netbox/netbox/navigation/menu.py:297 -#: netbox/templates/dcim/powerpanel.html:51 +#: dcim/tables/power.py:36 netbox/navigation/menu.py:297 +#: templates/dcim/powerpanel.html:51 msgid "Power Feeds" msgstr "Stroomvoedingen" -#: netbox/dcim/tables/power.py:80 netbox/templates/dcim/powerfeed.html:99 +#: dcim/tables/power.py:80 templates/dcim/powerfeed.html:99 msgid "Max Utilization" msgstr "Maximaal gebruik" -#: netbox/dcim/tables/power.py:84 +#: dcim/tables/power.py:84 msgid "Available Power (VA)" msgstr "Beschikbaar vermogen (VA)" -#: netbox/dcim/tables/racks.py:30 netbox/dcim/tables/sites.py:143 -#: netbox/netbox/navigation/menu.py:43 netbox/netbox/navigation/menu.py:47 -#: netbox/netbox/navigation/menu.py:49 +#: dcim/tables/racks.py:30 dcim/tables/sites.py:143 +#: netbox/navigation/menu.py:43 netbox/navigation/menu.py:47 +#: netbox/navigation/menu.py:49 msgid "Racks" msgstr "Racks" -#: netbox/dcim/tables/racks.py:63 netbox/dcim/tables/racks.py:142 -#: netbox/templates/dcim/device.html:318 -#: netbox/templates/dcim/inc/panels/racktype_dimensions.html:14 +#: dcim/tables/racks.py:63 dcim/tables/racks.py:142 +#: templates/dcim/device.html:318 +#: templates/dcim/inc/panels/racktype_dimensions.html:14 msgid "Height" msgstr "Hoogte" -#: netbox/dcim/tables/racks.py:67 netbox/dcim/tables/racks.py:165 -#: netbox/templates/dcim/inc/panels/racktype_dimensions.html:18 +#: dcim/tables/racks.py:67 dcim/tables/racks.py:165 +#: templates/dcim/inc/panels/racktype_dimensions.html:18 msgid "Outer Width" msgstr "Buitenbreedte" -#: netbox/dcim/tables/racks.py:71 netbox/dcim/tables/racks.py:169 -#: netbox/templates/dcim/inc/panels/racktype_dimensions.html:28 +#: dcim/tables/racks.py:71 dcim/tables/racks.py:169 +#: templates/dcim/inc/panels/racktype_dimensions.html:28 msgid "Outer Depth" msgstr "Buitendiepte" -#: netbox/dcim/tables/racks.py:79 netbox/dcim/tables/racks.py:177 +#: dcim/tables/racks.py:79 dcim/tables/racks.py:177 msgid "Max Weight" msgstr "Maximaal gewicht" -#: netbox/dcim/tables/racks.py:154 +#: dcim/tables/racks.py:154 msgid "Space" msgstr "Ruimte" -#: netbox/dcim/tables/sites.py:30 netbox/dcim/tables/sites.py:57 -#: netbox/extras/forms/filtersets.py:351 -#: netbox/extras/forms/model_forms.py:517 netbox/ipam/forms/bulk_edit.py:130 -#: netbox/ipam/forms/model_forms.py:153 netbox/ipam/tables/asn.py:66 -#: netbox/netbox/navigation/menu.py:15 netbox/netbox/navigation/menu.py:17 +#: dcim/tables/sites.py:30 dcim/tables/sites.py:57 +#: extras/forms/filtersets.py:351 extras/forms/model_forms.py:517 +#: ipam/forms/bulk_edit.py:131 ipam/forms/model_forms.py:153 +#: ipam/tables/asn.py:66 netbox/navigation/menu.py:15 +#: netbox/navigation/menu.py:17 msgid "Sites" msgstr "Sites" -#: netbox/dcim/tests/test_api.py:47 +#: dcim/tests/test_api.py:47 msgid "Test case must set peer_termination_type" msgstr "De testcase moet peer_termination_type instellen" -#: netbox/dcim/views.py:140 +#: dcim/views.py:140 #, python-brace-format msgid "Disconnected {count} {type}" msgstr "Verbinding verbroken {count} {type}" -#: netbox/dcim/views.py:740 netbox/netbox/navigation/menu.py:51 +#: dcim/views.py:740 netbox/navigation/menu.py:51 msgid "Reservations" msgstr "Reserveringen" -#: netbox/dcim/views.py:759 netbox/templates/dcim/location.html:90 -#: netbox/templates/dcim/site.html:140 +#: dcim/views.py:759 templates/dcim/location.html:90 +#: templates/dcim/site.html:140 msgid "Non-Racked Devices" msgstr "Apparaten zonder rack" -#: netbox/dcim/views.py:2088 netbox/extras/forms/model_forms.py:577 -#: netbox/templates/extras/configcontext.html:10 -#: netbox/virtualization/forms/model_forms.py:225 -#: netbox/virtualization/views.py:407 +#: dcim/views.py:2088 extras/forms/model_forms.py:577 +#: templates/extras/configcontext.html:10 +#: virtualization/forms/model_forms.py:225 virtualization/views.py:407 msgid "Config Context" msgstr "Context van de configuratie" -#: netbox/dcim/views.py:2098 netbox/virtualization/views.py:417 +#: dcim/views.py:2098 virtualization/views.py:417 msgid "Render Config" msgstr "Render-configuratie" -#: netbox/dcim/views.py:2131 netbox/virtualization/views.py:450 +#: dcim/views.py:2131 virtualization/views.py:450 #, python-brace-format msgid "An error occurred while rendering the template: {error}" msgstr "" "Er is een fout opgetreden tijdens het renderen van de sjabloon: {error}" -#: netbox/dcim/views.py:2149 netbox/extras/tables/tables.py:550 -#: netbox/netbox/navigation/menu.py:247 netbox/netbox/navigation/menu.py:249 -#: netbox/virtualization/views.py:180 +#: dcim/views.py:2149 extras/tables/tables.py:550 +#: netbox/navigation/menu.py:247 netbox/navigation/menu.py:249 +#: virtualization/views.py:180 msgid "Virtual Machines" msgstr "Virtuele machines" -#: netbox/dcim/views.py:2897 +#: dcim/views.py:2897 #, python-brace-format msgid "Installed device {device} in bay {device_bay}." msgstr "Geïnstalleerd apparaat {device} in de baai {device_bay}." -#: netbox/dcim/views.py:2938 +#: dcim/views.py:2938 #, python-brace-format msgid "Removed device {device} from bay {device_bay}." msgstr "Apparaat verwijderd {device} van bay {device_bay}." -#: netbox/dcim/views.py:3044 netbox/ipam/tables/ip.py:234 +#: dcim/views.py:3044 ipam/tables/ip.py:234 msgid "Children" msgstr "Kinderen" -#: netbox/dcim/views.py:3510 +#: dcim/views.py:3510 #, python-brace-format msgid "Added member {device}" msgstr "Lid toegevoegd {device}" -#: netbox/dcim/views.py:3557 +#: dcim/views.py:3557 #, python-brace-format msgid "Unable to remove master device {device} from the virtual chassis." msgstr "" "Kan het masterapparaat niet verwijderen {device} vanaf het virtuele chassis." -#: netbox/dcim/views.py:3570 +#: dcim/views.py:3570 #, python-brace-format msgid "Removed {device} from virtual chassis {chassis}" msgstr "Verwijderd {device} vanaf een virtueel chassis {chassis}" -#: netbox/extras/api/customfields.py:89 +#: extras/api/customfields.py:89 #, python-brace-format msgid "Unknown related object(s): {name}" msgstr "Onbekende gerelateerde object (en): {name}" -#: netbox/extras/api/serializers_/customfields.py:73 +#: extras/api/serializers_/customfields.py:73 msgid "Changing the type of custom fields is not supported." msgstr "Het wijzigen van het type aangepaste velden wordt niet ondersteund." -#: netbox/extras/api/serializers_/scripts.py:70 -#: netbox/extras/api/serializers_/scripts.py:75 +#: extras/api/serializers_/scripts.py:70 extras/api/serializers_/scripts.py:75 msgid "Scheduling is not enabled for this script." msgstr "Planning is niet ingeschakeld voor dit script." -#: netbox/extras/choices.py:30 netbox/extras/forms/misc.py:14 +#: extras/choices.py:30 extras/forms/misc.py:14 msgid "Text" msgstr "Tekst" -#: netbox/extras/choices.py:31 +#: extras/choices.py:31 msgid "Text (long)" msgstr "Tekst (lang)" -#: netbox/extras/choices.py:32 +#: extras/choices.py:32 msgid "Integer" msgstr "Integer" -#: netbox/extras/choices.py:33 +#: extras/choices.py:33 msgid "Decimal" msgstr "Decimaal" -#: netbox/extras/choices.py:34 +#: extras/choices.py:34 msgid "Boolean (true/false)" msgstr "Booleaans (waar/onwaar)" -#: netbox/extras/choices.py:35 +#: extras/choices.py:35 msgid "Date" msgstr "Datum" -#: netbox/extras/choices.py:36 +#: extras/choices.py:36 msgid "Date & time" msgstr "Datum en tijd" -#: netbox/extras/choices.py:38 +#: extras/choices.py:38 msgid "JSON" msgstr "JSON" -#: netbox/extras/choices.py:39 +#: extras/choices.py:39 msgid "Selection" msgstr "Selectie" -#: netbox/extras/choices.py:40 +#: extras/choices.py:40 msgid "Multiple selection" msgstr "Meervoudige selectie" -#: netbox/extras/choices.py:42 +#: extras/choices.py:42 msgid "Multiple objects" msgstr "Meerdere objecten" -#: netbox/extras/choices.py:53 netbox/netbox/preferences.py:21 -#: netbox/templates/extras/customfield.html:78 netbox/vpn/choices.py:20 -#: netbox/wireless/choices.py:27 +#: extras/choices.py:53 netbox/preferences.py:21 +#: templates/extras/customfield.html:78 vpn/choices.py:20 +#: wireless/choices.py:27 msgid "Disabled" msgstr "Uitgeschakeld" -#: netbox/extras/choices.py:54 +#: extras/choices.py:54 msgid "Loose" msgstr "Los" -#: netbox/extras/choices.py:55 +#: extras/choices.py:55 msgid "Exact" msgstr "Exact" -#: netbox/extras/choices.py:66 +#: extras/choices.py:66 msgid "Always" msgstr "Altijd" -#: netbox/extras/choices.py:67 +#: extras/choices.py:67 msgid "If set" msgstr "Indien ingesteld" -#: netbox/extras/choices.py:68 netbox/extras/choices.py:81 +#: extras/choices.py:68 extras/choices.py:81 msgid "Hidden" msgstr "Verborgen" -#: netbox/extras/choices.py:79 +#: extras/choices.py:79 msgid "Yes" msgstr "Ja" -#: netbox/extras/choices.py:80 +#: extras/choices.py:80 msgid "No" msgstr "Nee" -#: netbox/extras/choices.py:108 netbox/templates/tenancy/contact.html:57 -#: netbox/tenancy/forms/bulk_edit.py:118 -#: netbox/wireless/forms/model_forms.py:168 +#: extras/choices.py:108 templates/tenancy/contact.html:57 +#: tenancy/forms/bulk_edit.py:118 wireless/forms/model_forms.py:168 msgid "Link" msgstr "Link" -#: netbox/extras/choices.py:124 +#: extras/choices.py:124 msgid "Newest" msgstr "Nieuwste" -#: netbox/extras/choices.py:125 +#: extras/choices.py:125 msgid "Oldest" msgstr "Oudste" -#: netbox/extras/choices.py:126 +#: extras/choices.py:126 msgid "Alphabetical (A-Z)" msgstr "Alfabetisch (A-Z)" -#: netbox/extras/choices.py:127 +#: extras/choices.py:127 msgid "Alphabetical (Z-A)" msgstr "Alfabetisch (Z-A)" -#: netbox/extras/choices.py:144 netbox/extras/choices.py:167 +#: extras/choices.py:144 extras/choices.py:167 msgid "Info" msgstr "Informatie" -#: netbox/extras/choices.py:145 netbox/extras/choices.py:168 +#: extras/choices.py:145 extras/choices.py:168 msgid "Success" msgstr "Succes" -#: netbox/extras/choices.py:146 netbox/extras/choices.py:169 +#: extras/choices.py:146 extras/choices.py:169 msgid "Warning" msgstr "Waarschuwing" -#: netbox/extras/choices.py:147 +#: extras/choices.py:147 msgid "Danger" msgstr "Gevaar" -#: netbox/extras/choices.py:165 +#: extras/choices.py:165 msgid "Debug" msgstr "Debuggen" -#: netbox/extras/choices.py:166 netbox/netbox/choices.py:101 +#: extras/choices.py:166 netbox/choices.py:101 msgid "Default" msgstr "Standaard" -#: netbox/extras/choices.py:170 +#: extras/choices.py:170 msgid "Failure" msgstr "Mislukking" -#: netbox/extras/choices.py:186 +#: extras/choices.py:186 msgid "Hourly" msgstr "Elk uur" -#: netbox/extras/choices.py:187 +#: extras/choices.py:187 msgid "12 hours" msgstr "12 uur" -#: netbox/extras/choices.py:188 +#: extras/choices.py:188 msgid "Daily" msgstr "Dagelijks" -#: netbox/extras/choices.py:189 +#: extras/choices.py:189 msgid "Weekly" msgstr "Wekelijks" -#: netbox/extras/choices.py:190 +#: extras/choices.py:190 msgid "30 days" msgstr "30 dagen" -#: netbox/extras/choices.py:226 -#: netbox/templates/dcim/virtualchassis_edit.html:107 -#: netbox/templates/generic/bulk_add_component.html:68 -#: netbox/templates/generic/object_edit.html:47 -#: netbox/templates/generic/object_edit.html:80 -#: netbox/templates/ipam/inc/ipaddress_edit_header.html:7 +#: extras/choices.py:226 templates/dcim/virtualchassis_edit.html:107 +#: templates/generic/bulk_add_component.html:68 +#: templates/generic/object_edit.html:47 templates/generic/object_edit.html:80 +#: templates/ipam/inc/ipaddress_edit_header.html:7 msgid "Create" msgstr "Creëren" -#: netbox/extras/choices.py:227 +#: extras/choices.py:227 msgid "Update" msgstr "Bijwerken" -#: netbox/extras/choices.py:228 -#: netbox/templates/circuits/inc/circuit_termination.html:23 -#: netbox/templates/dcim/inc/panels/inventory_items.html:37 -#: netbox/templates/dcim/moduletype/component_templates.html:23 -#: netbox/templates/dcim/powerpanel.html:66 -#: netbox/templates/extras/script_list.html:35 -#: netbox/templates/generic/bulk_delete.html:20 -#: netbox/templates/generic/bulk_delete.html:66 -#: netbox/templates/generic/object_delete.html:19 -#: netbox/templates/htmx/delete_form.html:57 -#: netbox/templates/ipam/inc/panels/fhrp_groups.html:48 -#: netbox/templates/users/objectpermission.html:46 -#: netbox/utilities/templates/buttons/delete.html:11 +#: extras/choices.py:228 templates/circuits/inc/circuit_termination.html:23 +#: templates/dcim/inc/panels/inventory_items.html:37 +#: templates/dcim/powerpanel.html:66 templates/extras/script_list.html:35 +#: templates/generic/bulk_delete.html:20 templates/generic/bulk_delete.html:66 +#: templates/generic/object_delete.html:19 templates/htmx/delete_form.html:57 +#: templates/ipam/inc/panels/fhrp_groups.html:48 +#: templates/users/objectpermission.html:46 +#: utilities/templates/buttons/delete.html:11 msgid "Delete" msgstr "Verwijderen" -#: netbox/extras/choices.py:252 netbox/netbox/choices.py:57 -#: netbox/netbox/choices.py:102 +#: extras/choices.py:252 netbox/choices.py:57 netbox/choices.py:102 msgid "Blue" msgstr "Blauw" -#: netbox/extras/choices.py:253 netbox/netbox/choices.py:56 -#: netbox/netbox/choices.py:103 +#: extras/choices.py:253 netbox/choices.py:56 netbox/choices.py:103 msgid "Indigo" msgstr "Indigo" -#: netbox/extras/choices.py:254 netbox/netbox/choices.py:54 -#: netbox/netbox/choices.py:104 +#: extras/choices.py:254 netbox/choices.py:54 netbox/choices.py:104 msgid "Purple" msgstr "Paars" -#: netbox/extras/choices.py:255 netbox/netbox/choices.py:51 -#: netbox/netbox/choices.py:105 +#: extras/choices.py:255 netbox/choices.py:51 netbox/choices.py:105 msgid "Pink" msgstr "Roze" -#: netbox/extras/choices.py:256 netbox/netbox/choices.py:50 -#: netbox/netbox/choices.py:106 +#: extras/choices.py:256 netbox/choices.py:50 netbox/choices.py:106 msgid "Red" msgstr "Rood" -#: netbox/extras/choices.py:257 netbox/netbox/choices.py:68 -#: netbox/netbox/choices.py:107 +#: extras/choices.py:257 netbox/choices.py:68 netbox/choices.py:107 msgid "Orange" msgstr "Oranje" -#: netbox/extras/choices.py:258 netbox/netbox/choices.py:66 -#: netbox/netbox/choices.py:108 +#: extras/choices.py:258 netbox/choices.py:66 netbox/choices.py:108 msgid "Yellow" msgstr "Geel" -#: netbox/extras/choices.py:259 netbox/netbox/choices.py:63 -#: netbox/netbox/choices.py:109 +#: extras/choices.py:259 netbox/choices.py:63 netbox/choices.py:109 msgid "Green" msgstr "Groen" -#: netbox/extras/choices.py:260 netbox/netbox/choices.py:60 -#: netbox/netbox/choices.py:110 +#: extras/choices.py:260 netbox/choices.py:60 netbox/choices.py:110 msgid "Teal" msgstr "Groenblauw" -#: netbox/extras/choices.py:261 netbox/netbox/choices.py:59 -#: netbox/netbox/choices.py:111 +#: extras/choices.py:261 netbox/choices.py:59 netbox/choices.py:111 msgid "Cyan" msgstr "Cyaan" -#: netbox/extras/choices.py:262 netbox/netbox/choices.py:112 +#: extras/choices.py:262 netbox/choices.py:112 msgid "Gray" msgstr "Grijs" -#: netbox/extras/choices.py:263 netbox/netbox/choices.py:74 -#: netbox/netbox/choices.py:113 +#: extras/choices.py:263 netbox/choices.py:74 netbox/choices.py:113 msgid "Black" msgstr "Zwart" -#: netbox/extras/choices.py:264 netbox/netbox/choices.py:75 -#: netbox/netbox/choices.py:114 +#: extras/choices.py:264 netbox/choices.py:75 netbox/choices.py:114 msgid "White" msgstr "Wit" -#: netbox/extras/choices.py:279 netbox/extras/forms/model_forms.py:353 -#: netbox/extras/forms/model_forms.py:430 -#: netbox/templates/extras/webhook.html:10 +#: extras/choices.py:279 extras/forms/model_forms.py:353 +#: extras/forms/model_forms.py:430 templates/extras/webhook.html:10 msgid "Webhook" msgstr "Webhook" -#: netbox/extras/choices.py:280 netbox/extras/forms/model_forms.py:418 -#: netbox/templates/extras/script/base.html:29 +#: extras/choices.py:280 extras/forms/model_forms.py:418 +#: templates/extras/script/base.html:29 msgid "Script" msgstr "Script" -#: netbox/extras/choices.py:281 +#: extras/choices.py:281 msgid "Notification" msgstr "Melding" -#: netbox/extras/conditions.py:54 +#: extras/conditions.py:54 #, python-brace-format msgid "Unknown operator: {op}. Must be one of: {operators}" msgstr "Onbekende operator: {op}. Moet een van de volgende zijn: {operators}" -#: netbox/extras/conditions.py:58 +#: extras/conditions.py:58 #, python-brace-format msgid "Unsupported value type: {value}" msgstr "Niet ondersteunende waardetype: {value}" -#: netbox/extras/conditions.py:60 +#: extras/conditions.py:60 #, python-brace-format msgid "Invalid type for {op} operation: {value}" msgstr "Ongeldig type voor {op} operatie: {value}" -#: netbox/extras/conditions.py:137 +#: extras/conditions.py:137 #, python-brace-format msgid "Ruleset must be a dictionary, not {ruleset}." msgstr "De regelset moet een woordenboek zijn, niet {ruleset}." -#: netbox/extras/conditions.py:142 +#: extras/conditions.py:142 msgid "Invalid logic type: must be 'AND' or 'OR'. Please check documentation." msgstr "" "Ongeldig logicatype: moet 'AND' of 'OR' zijn. Controleer de documentatie." -#: netbox/extras/conditions.py:154 +#: extras/conditions.py:154 msgid "Incorrect key(s) informed. Please check documentation." msgstr "" "Onjuiste sleutel (s) geïnformeerd. Controleer alstublieft de documentatie." -#: netbox/extras/dashboard/forms.py:38 +#: extras/dashboard/forms.py:38 msgid "Widget type" msgstr "Widgettype" -#: netbox/extras/dashboard/utils.py:36 +#: extras/dashboard/utils.py:36 #, python-brace-format msgid "Unregistered widget class: {name}" msgstr "Ongeregistreerde widgetklasse: {name}" -#: netbox/extras/dashboard/widgets.py:125 +#: extras/dashboard/widgets.py:125 #, python-brace-format msgid "{class_name} must define a render() method." msgstr "{class_name} moet een render () -methode definiëren." -#: netbox/extras/dashboard/widgets.py:144 +#: extras/dashboard/widgets.py:144 msgid "Note" msgstr "Opmerking" -#: netbox/extras/dashboard/widgets.py:145 +#: extras/dashboard/widgets.py:145 msgid "Display some arbitrary custom content. Markdown is supported." msgstr "Geef willekeurige aangepaste inhoud weer. Markdown wordt ondersteund." -#: netbox/extras/dashboard/widgets.py:158 +#: extras/dashboard/widgets.py:158 msgid "Object Counts" msgstr "Tellingen van objecten" -#: netbox/extras/dashboard/widgets.py:159 +#: extras/dashboard/widgets.py:159 msgid "" "Display a set of NetBox models and the number of objects created for each " "type." @@ -7489,294 +6978,272 @@ msgstr "" "Geef een set NetBox-modellen weer en het aantal objecten dat voor elk type " "is gemaakt." -#: netbox/extras/dashboard/widgets.py:169 +#: extras/dashboard/widgets.py:169 msgid "Filters to apply when counting the number of objects" msgstr "" "Filters die moeten worden toegepast bij het tellen van het aantal objecten" -#: netbox/extras/dashboard/widgets.py:177 +#: extras/dashboard/widgets.py:177 msgid "Invalid format. Object filters must be passed as a dictionary." msgstr "" "Ongeldig formaat. Objectfilters moeten als woordenboek worden doorgegeven." -#: netbox/extras/dashboard/widgets.py:208 +#: extras/dashboard/widgets.py:208 msgid "Object List" msgstr "Objectlijst" -#: netbox/extras/dashboard/widgets.py:209 +#: extras/dashboard/widgets.py:209 msgid "Display an arbitrary list of objects." msgstr "Geef een willekeurige lijst met objecten weer." -#: netbox/extras/dashboard/widgets.py:222 +#: extras/dashboard/widgets.py:222 msgid "The default number of objects to display" msgstr "Het standaardaantal objecten dat moet worden weergegeven" -#: netbox/extras/dashboard/widgets.py:234 +#: extras/dashboard/widgets.py:234 msgid "Invalid format. URL parameters must be passed as a dictionary." msgstr "" "Ongeldig formaat. URL-parameters moeten als woordenboek worden doorgegeven." -#: netbox/extras/dashboard/widgets.py:274 +#: extras/dashboard/widgets.py:274 msgid "RSS Feed" msgstr "RSS-feed" -#: netbox/extras/dashboard/widgets.py:279 +#: extras/dashboard/widgets.py:279 msgid "Embed an RSS feed from an external website." msgstr "Voeg een RSS-feed van een externe website in." -#: netbox/extras/dashboard/widgets.py:286 +#: extras/dashboard/widgets.py:286 msgid "Feed URL" msgstr "URL van de feed" -#: netbox/extras/dashboard/widgets.py:291 +#: extras/dashboard/widgets.py:291 msgid "The maximum number of objects to display" msgstr "Het maximale aantal objecten dat moet worden weergegeven" -#: netbox/extras/dashboard/widgets.py:296 +#: extras/dashboard/widgets.py:296 msgid "How long to stored the cached content (in seconds)" msgstr "Hoe lang moet de inhoud in de cache worden bewaard (in seconden)" -#: netbox/extras/dashboard/widgets.py:348 -#: netbox/templates/account/base.html:10 -#: netbox/templates/account/bookmarks.html:7 -#: netbox/templates/inc/user_menu.html:48 +#: extras/dashboard/widgets.py:348 templates/account/base.html:10 +#: templates/account/bookmarks.html:7 templates/inc/user_menu.html:48 msgid "Bookmarks" msgstr "Bladwijzers" -#: netbox/extras/dashboard/widgets.py:352 +#: extras/dashboard/widgets.py:352 msgid "Show your personal bookmarks" msgstr "Laat je persoonlijke bladwijzers zien" -#: netbox/extras/events.py:147 +#: extras/events.py:147 #, python-brace-format msgid "Unknown action type for an event rule: {action_type}" msgstr "Onbekend actietype voor een evenementregel: {action_type}" -#: netbox/extras/events.py:192 +#: extras/events.py:192 #, python-brace-format msgid "Cannot import events pipeline {name} error: {error}" msgstr "" "Kan de pijplijn voor gebeurtenissen niet importeren {name} fout: {error}" -#: netbox/extras/filtersets.py:45 +#: extras/filtersets.py:45 msgid "Script module (ID)" msgstr "Scriptmodule (ID)" -#: netbox/extras/filtersets.py:254 netbox/extras/filtersets.py:637 -#: netbox/extras/filtersets.py:665 +#: extras/filtersets.py:254 extras/filtersets.py:637 extras/filtersets.py:665 msgid "Data file (ID)" msgstr "Gegevensbestand (ID)" -#: netbox/extras/filtersets.py:370 netbox/users/filtersets.py:68 -#: netbox/users/filtersets.py:191 +#: extras/filtersets.py:370 users/filtersets.py:68 users/filtersets.py:191 msgid "Group (name)" msgstr "Groep (naam)" -#: netbox/extras/filtersets.py:574 -#: netbox/virtualization/forms/filtersets.py:118 +#: extras/filtersets.py:574 virtualization/forms/filtersets.py:118 msgid "Cluster type" msgstr "Clustertype" -#: netbox/extras/filtersets.py:580 netbox/virtualization/filtersets.py:95 -#: netbox/virtualization/filtersets.py:147 +#: extras/filtersets.py:580 virtualization/filtersets.py:95 +#: virtualization/filtersets.py:147 msgid "Cluster type (slug)" msgstr "Clustertype (slug)" -#: netbox/extras/filtersets.py:601 netbox/tenancy/forms/forms.py:16 -#: netbox/tenancy/forms/forms.py:39 +#: extras/filtersets.py:601 tenancy/forms/forms.py:16 +#: tenancy/forms/forms.py:39 msgid "Tenant group" msgstr "Tenant groep" -#: netbox/extras/filtersets.py:607 netbox/tenancy/filtersets.py:188 -#: netbox/tenancy/filtersets.py:208 +#: extras/filtersets.py:607 tenancy/filtersets.py:188 +#: tenancy/filtersets.py:208 msgid "Tenant group (slug)" msgstr "Tenant groep (slug)" -#: netbox/extras/filtersets.py:623 netbox/extras/forms/model_forms.py:495 -#: netbox/templates/extras/tag.html:11 +#: extras/filtersets.py:623 extras/forms/model_forms.py:495 +#: templates/extras/tag.html:11 msgid "Tag" msgstr "Tag" -#: netbox/extras/filtersets.py:629 +#: extras/filtersets.py:629 msgid "Tag (slug)" msgstr "Label (slug)" -#: netbox/extras/filtersets.py:689 netbox/extras/forms/filtersets.py:429 +#: extras/filtersets.py:689 extras/forms/filtersets.py:429 msgid "Has local config context data" msgstr "Heeft contextgegevens voor de lokale configuratie" -#: netbox/extras/forms/bulk_edit.py:35 netbox/extras/forms/filtersets.py:60 +#: extras/forms/bulk_edit.py:35 extras/forms/filtersets.py:60 msgid "Group name" msgstr "Groepsnaam" -#: netbox/extras/forms/bulk_edit.py:43 netbox/extras/forms/filtersets.py:68 -#: netbox/extras/tables/tables.py:65 -#: netbox/templates/extras/customfield.html:38 -#: netbox/templates/generic/bulk_import.html:118 +#: extras/forms/bulk_edit.py:43 extras/forms/filtersets.py:68 +#: extras/tables/tables.py:65 templates/extras/customfield.html:38 +#: templates/generic/bulk_import.html:118 msgid "Required" msgstr "Verplicht" -#: netbox/extras/forms/bulk_edit.py:48 netbox/extras/forms/filtersets.py:75 +#: extras/forms/bulk_edit.py:48 extras/forms/filtersets.py:75 msgid "Must be unique" msgstr "Moet uniek zijn" -#: netbox/extras/forms/bulk_edit.py:61 netbox/extras/forms/bulk_import.py:60 -#: netbox/extras/forms/filtersets.py:89 -#: netbox/extras/models/customfields.py:209 +#: extras/forms/bulk_edit.py:61 extras/forms/bulk_import.py:60 +#: extras/forms/filtersets.py:89 extras/models/customfields.py:209 msgid "UI visible" msgstr "UI zichtbaar" -#: netbox/extras/forms/bulk_edit.py:66 netbox/extras/forms/bulk_import.py:66 -#: netbox/extras/forms/filtersets.py:94 -#: netbox/extras/models/customfields.py:216 +#: extras/forms/bulk_edit.py:66 extras/forms/bulk_import.py:66 +#: extras/forms/filtersets.py:94 extras/models/customfields.py:216 msgid "UI editable" msgstr "UI bewerkbaar" -#: netbox/extras/forms/bulk_edit.py:71 netbox/extras/forms/filtersets.py:97 +#: extras/forms/bulk_edit.py:71 extras/forms/filtersets.py:97 msgid "Is cloneable" msgstr "Is kloonbaar" -#: netbox/extras/forms/bulk_edit.py:76 netbox/extras/forms/filtersets.py:104 +#: extras/forms/bulk_edit.py:76 extras/forms/filtersets.py:104 msgid "Minimum value" msgstr "Minimumwaarde" -#: netbox/extras/forms/bulk_edit.py:80 netbox/extras/forms/filtersets.py:108 +#: extras/forms/bulk_edit.py:80 extras/forms/filtersets.py:108 msgid "Maximum value" msgstr "Maximale waarde" -#: netbox/extras/forms/bulk_edit.py:84 netbox/extras/forms/filtersets.py:112 +#: extras/forms/bulk_edit.py:84 extras/forms/filtersets.py:112 msgid "Validation regex" msgstr "Validatieregex" -#: netbox/extras/forms/bulk_edit.py:91 netbox/extras/forms/filtersets.py:46 -#: netbox/extras/forms/model_forms.py:76 -#: netbox/templates/extras/customfield.html:70 +#: extras/forms/bulk_edit.py:91 extras/forms/filtersets.py:46 +#: extras/forms/model_forms.py:76 templates/extras/customfield.html:70 msgid "Behavior" msgstr "Gedrag" -#: netbox/extras/forms/bulk_edit.py:128 netbox/extras/forms/filtersets.py:149 +#: extras/forms/bulk_edit.py:128 extras/forms/filtersets.py:149 msgid "New window" msgstr "Nieuw venster" -#: netbox/extras/forms/bulk_edit.py:137 +#: extras/forms/bulk_edit.py:137 msgid "Button class" msgstr "Knopklasse" -#: netbox/extras/forms/bulk_edit.py:154 netbox/extras/forms/filtersets.py:187 -#: netbox/extras/models/models.py:409 +#: extras/forms/bulk_edit.py:154 extras/forms/filtersets.py:187 +#: extras/models/models.py:409 msgid "MIME type" msgstr "MIME-type" -#: netbox/extras/forms/bulk_edit.py:159 netbox/extras/forms/filtersets.py:190 +#: extras/forms/bulk_edit.py:159 extras/forms/filtersets.py:190 msgid "File extension" msgstr "bestandsextensie" -#: netbox/extras/forms/bulk_edit.py:164 netbox/extras/forms/filtersets.py:194 +#: extras/forms/bulk_edit.py:164 extras/forms/filtersets.py:194 msgid "As attachment" msgstr "Als bijlage" -#: netbox/extras/forms/bulk_edit.py:192 netbox/extras/forms/filtersets.py:236 -#: netbox/extras/tables/tables.py:256 -#: netbox/templates/extras/savedfilter.html:29 +#: extras/forms/bulk_edit.py:192 extras/forms/filtersets.py:236 +#: extras/tables/tables.py:256 templates/extras/savedfilter.html:29 msgid "Shared" msgstr "Gedeeld" -#: netbox/extras/forms/bulk_edit.py:215 netbox/extras/forms/filtersets.py:265 -#: netbox/extras/models/models.py:174 +#: extras/forms/bulk_edit.py:215 extras/forms/filtersets.py:265 +#: extras/models/models.py:174 msgid "HTTP method" msgstr "HTTP-methode" -#: netbox/extras/forms/bulk_edit.py:219 netbox/extras/forms/filtersets.py:259 -#: netbox/templates/extras/webhook.html:30 +#: extras/forms/bulk_edit.py:219 extras/forms/filtersets.py:259 +#: templates/extras/webhook.html:30 msgid "Payload URL" msgstr "URL van de payload" -#: netbox/extras/forms/bulk_edit.py:224 netbox/extras/models/models.py:214 +#: extras/forms/bulk_edit.py:224 extras/models/models.py:214 msgid "SSL verification" msgstr "SSL-verificatie" -#: netbox/extras/forms/bulk_edit.py:227 -#: netbox/templates/extras/webhook.html:38 +#: extras/forms/bulk_edit.py:227 templates/extras/webhook.html:38 msgid "Secret" msgstr "Geheim" -#: netbox/extras/forms/bulk_edit.py:232 +#: extras/forms/bulk_edit.py:232 msgid "CA file path" msgstr "CA-bestandspad" -#: netbox/extras/forms/bulk_edit.py:253 netbox/extras/forms/bulk_import.py:192 -#: netbox/extras/forms/model_forms.py:377 +#: extras/forms/bulk_edit.py:253 extras/forms/bulk_import.py:192 +#: extras/forms/model_forms.py:377 msgid "Event types" msgstr "Soorten evenementen" -#: netbox/extras/forms/bulk_edit.py:293 +#: extras/forms/bulk_edit.py:293 msgid "Is active" msgstr "Is actief" -#: netbox/extras/forms/bulk_import.py:37 -#: netbox/extras/forms/bulk_import.py:118 -#: netbox/extras/forms/bulk_import.py:139 -#: netbox/extras/forms/bulk_import.py:162 -#: netbox/extras/forms/bulk_import.py:186 -#: netbox/extras/forms/filtersets.py:137 netbox/extras/forms/filtersets.py:224 -#: netbox/extras/forms/model_forms.py:47 -#: netbox/extras/forms/model_forms.py:205 -#: netbox/extras/forms/model_forms.py:237 -#: netbox/extras/forms/model_forms.py:278 -#: netbox/extras/forms/model_forms.py:372 -#: netbox/extras/forms/model_forms.py:489 -#: netbox/users/forms/model_forms.py:276 +#: extras/forms/bulk_import.py:37 extras/forms/bulk_import.py:118 +#: extras/forms/bulk_import.py:139 extras/forms/bulk_import.py:162 +#: extras/forms/bulk_import.py:186 extras/forms/filtersets.py:137 +#: extras/forms/filtersets.py:224 extras/forms/model_forms.py:47 +#: extras/forms/model_forms.py:205 extras/forms/model_forms.py:237 +#: extras/forms/model_forms.py:278 extras/forms/model_forms.py:372 +#: extras/forms/model_forms.py:489 users/forms/model_forms.py:276 msgid "Object types" msgstr "Objecttypen" -#: netbox/extras/forms/bulk_import.py:39 -#: netbox/extras/forms/bulk_import.py:120 -#: netbox/extras/forms/bulk_import.py:141 -#: netbox/extras/forms/bulk_import.py:164 -#: netbox/extras/forms/bulk_import.py:188 -#: netbox/tenancy/forms/bulk_import.py:96 +#: extras/forms/bulk_import.py:39 extras/forms/bulk_import.py:120 +#: extras/forms/bulk_import.py:141 extras/forms/bulk_import.py:164 +#: extras/forms/bulk_import.py:188 tenancy/forms/bulk_import.py:96 msgid "One or more assigned object types" msgstr "Een of meer toegewezen objecttypen" -#: netbox/extras/forms/bulk_import.py:44 +#: extras/forms/bulk_import.py:44 msgid "Field data type (e.g. text, integer, etc.)" msgstr "Veldgegevenstype (bijv. tekst, geheel getal, enz.)" -#: netbox/extras/forms/bulk_import.py:47 netbox/extras/forms/filtersets.py:208 -#: netbox/extras/forms/filtersets.py:281 -#: netbox/extras/forms/model_forms.py:304 -#: netbox/extras/forms/model_forms.py:341 -#: netbox/tenancy/forms/filtersets.py:92 +#: extras/forms/bulk_import.py:47 extras/forms/filtersets.py:208 +#: extras/forms/filtersets.py:281 extras/forms/model_forms.py:304 +#: extras/forms/model_forms.py:341 tenancy/forms/filtersets.py:92 msgid "Object type" msgstr "Soort object" -#: netbox/extras/forms/bulk_import.py:50 +#: extras/forms/bulk_import.py:50 msgid "Object type (for object or multi-object fields)" msgstr "Objecttype (voor velden met objecten of velden met meerdere objecten)" -#: netbox/extras/forms/bulk_import.py:53 netbox/extras/forms/filtersets.py:84 +#: extras/forms/bulk_import.py:53 extras/forms/filtersets.py:84 msgid "Choice set" msgstr "Keuze set" -#: netbox/extras/forms/bulk_import.py:57 +#: extras/forms/bulk_import.py:57 msgid "Choice set (for selection fields)" msgstr "Keuzeset (voor selectievelden)" -#: netbox/extras/forms/bulk_import.py:63 +#: extras/forms/bulk_import.py:63 msgid "Whether the custom field is displayed in the UI" msgstr "Of het aangepaste veld wordt weergegeven in de gebruikersinterface" -#: netbox/extras/forms/bulk_import.py:69 +#: extras/forms/bulk_import.py:69 msgid "Whether the custom field is editable in the UI" msgstr "Of het aangepaste veld bewerkbaar is in de gebruikersinterface" -#: netbox/extras/forms/bulk_import.py:85 +#: extras/forms/bulk_import.py:85 msgid "The base set of predefined choices to use (if any)" msgstr "" "De basisset van vooraf gedefinieerde keuzes om te gebruiken (indien " "aanwezig)" -#: netbox/extras/forms/bulk_import.py:91 +#: extras/forms/bulk_import.py:91 msgid "" "Quoted string of comma-separated field choices with optional labels " "separated by colon: \"choice1:First Choice,choice2:Second Choice\"" @@ -7785,204 +7252,188 @@ msgstr "" "gescheiden door een dubbele punt: „Choice1:First Choice, Choice2:Second " "Choice”" -#: netbox/extras/forms/bulk_import.py:123 netbox/extras/models/models.py:323 +#: extras/forms/bulk_import.py:123 extras/models/models.py:323 msgid "button class" msgstr "knopklasse" -#: netbox/extras/forms/bulk_import.py:126 netbox/extras/models/models.py:327 +#: extras/forms/bulk_import.py:126 extras/models/models.py:327 msgid "" "The class of the first link in a group will be used for the dropdown button" msgstr "" "De klasse van de eerste link in een groep wordt gebruikt voor de dropdown-" "knop" -#: netbox/extras/forms/bulk_import.py:193 +#: extras/forms/bulk_import.py:193 msgid "The event type(s) which will trigger this rule" msgstr "Het (de) evenementtype (s) dat deze regel activeert" -#: netbox/extras/forms/bulk_import.py:196 +#: extras/forms/bulk_import.py:196 msgid "Action object" msgstr "Actieobject" -#: netbox/extras/forms/bulk_import.py:198 +#: extras/forms/bulk_import.py:198 msgid "Webhook name or script as dotted path module.Class" msgstr "Webhook-naam of script als stippelpad module.Class" -#: netbox/extras/forms/bulk_import.py:219 +#: extras/forms/bulk_import.py:219 #, python-brace-format msgid "Webhook {name} not found" msgstr "Webhook {name} niet gevonden" -#: netbox/extras/forms/bulk_import.py:228 +#: extras/forms/bulk_import.py:228 #, python-brace-format msgid "Script {name} not found" msgstr "Script {name} niet gevonden" -#: netbox/extras/forms/bulk_import.py:244 +#: extras/forms/bulk_import.py:244 msgid "Assigned object type" msgstr "Toegewezen objecttype" -#: netbox/extras/forms/bulk_import.py:249 +#: extras/forms/bulk_import.py:249 msgid "The classification of entry" msgstr "De classificatie van binnenkomst" -#: netbox/extras/forms/bulk_import.py:261 -#: netbox/extras/forms/model_forms.py:320 netbox/netbox/navigation/menu.py:390 -#: netbox/templates/extras/notificationgroup.html:41 -#: netbox/templates/users/group.html:29 netbox/users/forms/model_forms.py:236 -#: netbox/users/forms/model_forms.py:248 netbox/users/forms/model_forms.py:300 -#: netbox/users/tables.py:102 +#: extras/forms/bulk_import.py:261 extras/forms/model_forms.py:320 +#: netbox/navigation/menu.py:390 templates/extras/notificationgroup.html:41 +#: templates/users/group.html:29 users/forms/model_forms.py:236 +#: users/forms/model_forms.py:248 users/forms/model_forms.py:300 +#: users/tables.py:102 msgid "Users" msgstr "Gebruikers" -#: netbox/extras/forms/bulk_import.py:265 +#: extras/forms/bulk_import.py:265 msgid "User names separated by commas, encased with double quotes" msgstr "" "Gebruikersnamen gescheiden door komma's, tussen dubbele aanhalingstekens" -#: netbox/extras/forms/bulk_import.py:268 -#: netbox/extras/forms/model_forms.py:315 netbox/netbox/navigation/menu.py:410 -#: netbox/templates/extras/notificationgroup.html:31 -#: netbox/users/forms/model_forms.py:181 netbox/users/forms/model_forms.py:193 -#: netbox/users/forms/model_forms.py:305 netbox/users/tables.py:35 -#: netbox/users/tables.py:106 +#: extras/forms/bulk_import.py:268 extras/forms/model_forms.py:315 +#: netbox/navigation/menu.py:410 templates/extras/notificationgroup.html:31 +#: users/forms/model_forms.py:181 users/forms/model_forms.py:193 +#: users/forms/model_forms.py:305 users/tables.py:35 users/tables.py:106 msgid "Groups" msgstr "Groepen" -#: netbox/extras/forms/bulk_import.py:272 +#: extras/forms/bulk_import.py:272 msgid "Group names separated by commas, encased with double quotes" msgstr "Groepsnamen gescheiden door komma's, tussen dubbele aanhalingstekens" -#: netbox/extras/forms/filtersets.py:52 netbox/extras/forms/model_forms.py:56 +#: extras/forms/filtersets.py:52 extras/forms/model_forms.py:56 msgid "Related object type" msgstr "Gerelateerd objecttype" -#: netbox/extras/forms/filtersets.py:57 +#: extras/forms/filtersets.py:57 msgid "Field type" msgstr "Soort veld" -#: netbox/extras/forms/filtersets.py:120 -#: netbox/extras/forms/model_forms.py:157 netbox/extras/tables/tables.py:91 -#: netbox/templates/generic/bulk_import.html:154 +#: extras/forms/filtersets.py:120 extras/forms/model_forms.py:157 +#: extras/tables/tables.py:91 templates/generic/bulk_import.html:154 msgid "Choices" msgstr "Keuzes" -#: netbox/extras/forms/filtersets.py:164 netbox/extras/forms/filtersets.py:319 -#: netbox/extras/forms/filtersets.py:408 -#: netbox/extras/forms/model_forms.py:572 netbox/templates/core/job.html:96 -#: netbox/templates/extras/eventrule.html:84 +#: extras/forms/filtersets.py:164 extras/forms/filtersets.py:319 +#: extras/forms/filtersets.py:408 extras/forms/model_forms.py:572 +#: templates/core/job.html:96 templates/extras/eventrule.html:84 msgid "Data" msgstr "Gegevens" -#: netbox/extras/forms/filtersets.py:175 netbox/extras/forms/filtersets.py:333 -#: netbox/extras/forms/filtersets.py:418 netbox/netbox/choices.py:130 -#: netbox/utilities/forms/bulk_import.py:26 +#: extras/forms/filtersets.py:175 extras/forms/filtersets.py:333 +#: extras/forms/filtersets.py:418 netbox/choices.py:130 +#: utilities/forms/bulk_import.py:26 msgid "Data file" msgstr "Gegevensbestand" -#: netbox/extras/forms/filtersets.py:183 +#: extras/forms/filtersets.py:183 msgid "Content types" msgstr "Inhoudstypen" -#: netbox/extras/forms/filtersets.py:255 netbox/extras/models/models.py:179 +#: extras/forms/filtersets.py:255 extras/models/models.py:179 msgid "HTTP content type" msgstr "HTTP-inhoudstype" -#: netbox/extras/forms/filtersets.py:286 +#: extras/forms/filtersets.py:286 msgid "Event type" msgstr "Soort evenement" -#: netbox/extras/forms/filtersets.py:291 +#: extras/forms/filtersets.py:291 msgid "Action type" msgstr "Soort actie" -#: netbox/extras/forms/filtersets.py:307 +#: extras/forms/filtersets.py:307 msgid "Tagged object type" msgstr "Objecttype met tags" -#: netbox/extras/forms/filtersets.py:312 +#: extras/forms/filtersets.py:312 msgid "Allowed object type" msgstr "Toegestaan objecttype" -#: netbox/extras/forms/filtersets.py:341 -#: netbox/extras/forms/model_forms.py:507 netbox/netbox/navigation/menu.py:18 +#: extras/forms/filtersets.py:341 extras/forms/model_forms.py:507 +#: netbox/navigation/menu.py:18 msgid "Regions" msgstr "Regio's" -#: netbox/extras/forms/filtersets.py:346 -#: netbox/extras/forms/model_forms.py:512 +#: extras/forms/filtersets.py:346 extras/forms/model_forms.py:512 msgid "Site groups" msgstr "Sitegroepen" -#: netbox/extras/forms/filtersets.py:356 -#: netbox/extras/forms/model_forms.py:522 netbox/netbox/navigation/menu.py:20 -#: netbox/templates/dcim/site.html:127 +#: extras/forms/filtersets.py:356 extras/forms/model_forms.py:522 +#: netbox/navigation/menu.py:20 templates/dcim/site.html:127 msgid "Locations" msgstr "Locaties" -#: netbox/extras/forms/filtersets.py:361 -#: netbox/extras/forms/model_forms.py:527 +#: extras/forms/filtersets.py:361 extras/forms/model_forms.py:527 msgid "Device types" msgstr "Apparaattypes" -#: netbox/extras/forms/filtersets.py:366 -#: netbox/extras/forms/model_forms.py:532 +#: extras/forms/filtersets.py:366 extras/forms/model_forms.py:532 msgid "Roles" msgstr "Rollen" -#: netbox/extras/forms/filtersets.py:376 -#: netbox/extras/forms/model_forms.py:542 +#: extras/forms/filtersets.py:376 extras/forms/model_forms.py:542 msgid "Cluster types" msgstr "Clustertypen" -#: netbox/extras/forms/filtersets.py:381 -#: netbox/extras/forms/model_forms.py:547 +#: extras/forms/filtersets.py:381 extras/forms/model_forms.py:547 msgid "Cluster groups" msgstr "Clustergroepen" -#: netbox/extras/forms/filtersets.py:386 -#: netbox/extras/forms/model_forms.py:552 netbox/netbox/navigation/menu.py:255 -#: netbox/netbox/navigation/menu.py:257 -#: netbox/templates/virtualization/clustertype.html:30 -#: netbox/virtualization/tables/clusters.py:23 -#: netbox/virtualization/tables/clusters.py:45 +#: extras/forms/filtersets.py:386 extras/forms/model_forms.py:552 +#: netbox/navigation/menu.py:255 netbox/navigation/menu.py:257 +#: templates/virtualization/clustertype.html:30 +#: virtualization/tables/clusters.py:23 virtualization/tables/clusters.py:45 msgid "Clusters" msgstr "Clusters" -#: netbox/extras/forms/filtersets.py:391 -#: netbox/extras/forms/model_forms.py:557 +#: extras/forms/filtersets.py:391 extras/forms/model_forms.py:557 msgid "Tenant groups" msgstr "Tenant groepen" -#: netbox/extras/forms/model_forms.py:49 +#: extras/forms/model_forms.py:49 msgid "The type(s) of object that have this custom field" msgstr "Het (de) objecttype (s) dat dit aangepaste veld heeft" -#: netbox/extras/forms/model_forms.py:52 +#: extras/forms/model_forms.py:52 msgid "Default value" msgstr "Standaardwaarde" -#: netbox/extras/forms/model_forms.py:58 +#: extras/forms/model_forms.py:58 msgid "Type of the related object (for object/multi-object fields only)" msgstr "" "Type van het gerelateerde object (alleen voor velden met object/meerdere " "objecten)" -#: netbox/extras/forms/model_forms.py:61 -#: netbox/templates/extras/customfield.html:60 +#: extras/forms/model_forms.py:61 templates/extras/customfield.html:60 msgid "Related object filter" msgstr "Filter voor gerelateerde objecten" -#: netbox/extras/forms/model_forms.py:63 +#: extras/forms/model_forms.py:63 msgid "Specify query parameters as a JSON object." msgstr "Specificeer queryparameters als een JSON-object." -#: netbox/extras/forms/model_forms.py:73 -#: netbox/templates/extras/customfield.html:10 +#: extras/forms/model_forms.py:73 templates/extras/customfield.html:10 msgid "Custom Field" msgstr "Aangepast veld" -#: netbox/extras/forms/model_forms.py:85 +#: extras/forms/model_forms.py:85 msgid "" "The type of data stored in this field. For object/multi-object fields, " "select the related object type below." @@ -7990,7 +7441,7 @@ msgstr "" "Het type gegevens dat in dit veld is opgeslagen. Voor velden met " "object/meerdere objecten selecteert u hieronder het gerelateerde objecttype." -#: netbox/extras/forms/model_forms.py:88 +#: extras/forms/model_forms.py:88 msgid "" "This will be displayed as help text for the form field. Markdown is " "supported." @@ -7998,11 +7449,11 @@ msgstr "" "Dit wordt weergegeven als helptekst voor het formulierveld. Markdown wordt " "ondersteund." -#: netbox/extras/forms/model_forms.py:143 +#: extras/forms/model_forms.py:143 msgid "Related Object" msgstr "Gerelateerd object" -#: netbox/extras/forms/model_forms.py:169 +#: extras/forms/model_forms.py:169 msgid "" "Enter one choice per line. An optional label may be specified for each " "choice by appending it with a colon. Example:" @@ -8010,16 +7461,15 @@ msgstr "" "Voer één keuze per regel in. Voor elke keuze kan een optioneel label worden " "gespecificeerd door er een dubbele punt aan toe te voegen. Voorbeeld:" -#: netbox/extras/forms/model_forms.py:212 -#: netbox/templates/extras/customlink.html:10 +#: extras/forms/model_forms.py:212 templates/extras/customlink.html:10 msgid "Custom Link" msgstr "Aangepaste link" -#: netbox/extras/forms/model_forms.py:214 +#: extras/forms/model_forms.py:214 msgid "Templates" msgstr "Sjablonen" -#: netbox/extras/forms/model_forms.py:226 +#: extras/forms/model_forms.py:226 #, python-brace-format msgid "" "Jinja2 template code for the link text. Reference the object as {example}. " @@ -8029,68 +7479,62 @@ msgstr "" "{example}. Links die als lege tekst worden weergegeven, worden niet " "weergegeven." -#: netbox/extras/forms/model_forms.py:230 +#: extras/forms/model_forms.py:230 #, python-brace-format msgid "" "Jinja2 template code for the link URL. Reference the object as {example}." msgstr "" "Jinja2-sjablooncode voor de link-URL. Verwijs naar het object als {example}." -#: netbox/extras/forms/model_forms.py:241 -#: netbox/extras/forms/model_forms.py:624 +#: extras/forms/model_forms.py:241 extras/forms/model_forms.py:624 msgid "Template code" msgstr "Sjablooncode" -#: netbox/extras/forms/model_forms.py:247 -#: netbox/templates/extras/exporttemplate.html:12 +#: extras/forms/model_forms.py:247 templates/extras/exporttemplate.html:12 msgid "Export Template" msgstr "Sjabloon exporteren" -#: netbox/extras/forms/model_forms.py:249 +#: extras/forms/model_forms.py:249 msgid "Rendering" msgstr "Renderen" -#: netbox/extras/forms/model_forms.py:263 -#: netbox/extras/forms/model_forms.py:649 +#: extras/forms/model_forms.py:263 extras/forms/model_forms.py:649 msgid "Template content is populated from the remote source selected below." msgstr "" "De inhoud van de sjabloon wordt ingevuld via de externe bron die hieronder " "is geselecteerd." -#: netbox/extras/forms/model_forms.py:270 -#: netbox/extras/forms/model_forms.py:656 +#: extras/forms/model_forms.py:270 extras/forms/model_forms.py:656 msgid "Must specify either local content or a data file" msgstr "Moet lokale inhoud of een gegevensbestand specificeren" -#: netbox/extras/forms/model_forms.py:284 netbox/netbox/forms/mixins.py:70 -#: netbox/templates/extras/savedfilter.html:10 +#: extras/forms/model_forms.py:284 netbox/forms/mixins.py:70 +#: templates/extras/savedfilter.html:10 msgid "Saved Filter" msgstr "Opgeslagen filter" -#: netbox/extras/forms/model_forms.py:334 +#: extras/forms/model_forms.py:334 msgid "A notification group specify at least one user or group." msgstr "" "In een meldingsgroep wordt ten minste één gebruiker of groep gespecificeerd." -#: netbox/extras/forms/model_forms.py:356 -#: netbox/templates/extras/webhook.html:23 +#: extras/forms/model_forms.py:356 templates/extras/webhook.html:23 msgid "HTTP Request" msgstr "HTTP-aanvraag" -#: netbox/extras/forms/model_forms.py:358 -#: netbox/templates/extras/webhook.html:44 +#: extras/forms/model_forms.py:358 templates/extras/webhook.html:44 msgid "SSL" msgstr "SSL" -#: netbox/extras/forms/model_forms.py:380 +#: extras/forms/model_forms.py:380 msgid "Action choice" msgstr "Keuze van de actie" -#: netbox/extras/forms/model_forms.py:385 +#: extras/forms/model_forms.py:385 msgid "Enter conditions in JSON format." msgstr "Voer de voorwaarden in JSON formaat." -#: netbox/extras/forms/model_forms.py:389 +#: extras/forms/model_forms.py:389 msgid "" "Enter parameters to pass to the action in JSON format." @@ -8098,114 +7542,112 @@ msgstr "" "Voer parameters in om door te geven aan de actie JSON formaat." -#: netbox/extras/forms/model_forms.py:394 -#: netbox/templates/extras/eventrule.html:10 +#: extras/forms/model_forms.py:394 templates/extras/eventrule.html:10 msgid "Event Rule" msgstr "Regel voor evenementen" -#: netbox/extras/forms/model_forms.py:395 +#: extras/forms/model_forms.py:395 msgid "Triggers" msgstr "Triggers" -#: netbox/extras/forms/model_forms.py:442 +#: extras/forms/model_forms.py:442 msgid "Notification group" msgstr "Meldingsgroep" -#: netbox/extras/forms/model_forms.py:562 netbox/netbox/navigation/menu.py:26 -#: netbox/tenancy/tables/tenants.py:22 +#: extras/forms/model_forms.py:562 netbox/navigation/menu.py:26 +#: tenancy/tables/tenants.py:22 msgid "Tenants" msgstr "Tenant" -#: netbox/extras/forms/model_forms.py:606 +#: extras/forms/model_forms.py:606 msgid "Data is populated from the remote source selected below." msgstr "" "Gegevens worden ingevuld via de externe bron die hieronder is geselecteerd." -#: netbox/extras/forms/model_forms.py:612 +#: extras/forms/model_forms.py:612 msgid "Must specify either local data or a data file" msgstr "Moet lokale gegevens of een gegevensbestand specificeren" -#: netbox/extras/forms/model_forms.py:631 -#: netbox/templates/core/datafile.html:55 +#: extras/forms/model_forms.py:631 templates/core/datafile.html:55 msgid "Content" msgstr "Inhoud" -#: netbox/extras/forms/reports.py:17 netbox/extras/forms/scripts.py:23 +#: extras/forms/reports.py:17 extras/forms/scripts.py:23 msgid "Schedule at" msgstr "Schema op" -#: netbox/extras/forms/reports.py:18 +#: extras/forms/reports.py:18 msgid "Schedule execution of report to a set time" msgstr "Plan de uitvoering van het rapport op een vast tijdstip" -#: netbox/extras/forms/reports.py:23 netbox/extras/forms/scripts.py:29 +#: extras/forms/reports.py:23 extras/forms/scripts.py:29 msgid "Recurs every" msgstr "Gebeurd elke" -#: netbox/extras/forms/reports.py:27 +#: extras/forms/reports.py:27 msgid "Interval at which this report is re-run (in minutes)" msgstr "Interval waarop dit rapport opnieuw wordt uitgevoerd (in minuten)" -#: netbox/extras/forms/reports.py:35 netbox/extras/forms/scripts.py:41 +#: extras/forms/reports.py:35 extras/forms/scripts.py:41 #, python-brace-format msgid " (current time: {now})" msgstr " (huidige tijd: {now})" -#: netbox/extras/forms/reports.py:45 netbox/extras/forms/scripts.py:51 +#: extras/forms/reports.py:45 extras/forms/scripts.py:51 msgid "Scheduled time must be in the future." msgstr "De geplande tijd moet in de toekomst liggen." -#: netbox/extras/forms/scripts.py:17 +#: extras/forms/scripts.py:17 msgid "Commit changes" msgstr "Wijzigingen doorvoeren" -#: netbox/extras/forms/scripts.py:18 +#: extras/forms/scripts.py:18 msgid "Commit changes to the database (uncheck for a dry-run)" msgstr "" "Wijzigingen doorvoeren in de database (schakel het vinkje uit voor een " "oefening; een repetitie)" -#: netbox/extras/forms/scripts.py:24 +#: extras/forms/scripts.py:24 msgid "Schedule execution of script to a set time" msgstr "Plan de uitvoering van het script op een bepaald tijdstip" -#: netbox/extras/forms/scripts.py:33 +#: extras/forms/scripts.py:33 msgid "Interval at which this script is re-run (in minutes)" msgstr "Interval waarmee dit script opnieuw wordt uitgevoerd (in minuten)" -#: netbox/extras/jobs.py:49 +#: extras/jobs.py:49 msgid "Database changes have been reverted automatically." msgstr "Wijzigingen in de database zijn automatisch teruggedraaid." -#: netbox/extras/jobs.py:56 +#: extras/jobs.py:55 msgid "Script aborted with error: " msgstr "Script is met een fout afgebroken: " -#: netbox/extras/jobs.py:66 +#: extras/jobs.py:65 msgid "An exception occurred: " msgstr "Er deed zich een uitzondering voor: " -#: netbox/extras/jobs.py:71 +#: extras/jobs.py:70 msgid "Database changes have been reverted due to error." msgstr "Wijzigingen in de database zijn teruggedraaid vanwege een fout." -#: netbox/extras/management/commands/reindex.py:66 +#: extras/management/commands/reindex.py:66 msgid "No indexers found!" msgstr "Geen indexers gevonden!" -#: netbox/extras/models/configs.py:130 +#: extras/models/configs.py:130 msgid "config context" msgstr "context van de configuratie" -#: netbox/extras/models/configs.py:131 +#: extras/models/configs.py:131 msgid "config contexts" msgstr "contexten configureren" -#: netbox/extras/models/configs.py:149 netbox/extras/models/configs.py:205 +#: extras/models/configs.py:149 extras/models/configs.py:205 msgid "JSON data must be in object form. Example:" msgstr "JSON-gegevens moeten in objectvorm zijn. Voorbeeld:" -#: netbox/extras/models/configs.py:169 +#: extras/models/configs.py:169 msgid "" "Local config context data takes precedence over source contexts in the final" " rendered config context" @@ -8213,19 +7655,19 @@ msgstr "" "Contextgegevens van de lokale configuratie hebben voorrang op broncontexten " "in de uiteindelijke gerenderde configuratiecontext" -#: netbox/extras/models/configs.py:224 +#: extras/models/configs.py:224 msgid "template code" msgstr "sjablooncode" -#: netbox/extras/models/configs.py:225 +#: extras/models/configs.py:225 msgid "Jinja2 template code." msgstr "Jinja2-sjablooncode." -#: netbox/extras/models/configs.py:228 +#: extras/models/configs.py:228 msgid "environment parameters" msgstr "omgevingsparameters" -#: netbox/extras/models/configs.py:233 +#: extras/models/configs.py:233 msgid "" "Any additional" @@ -8235,42 +7677,42 @@ msgstr "" "href=\"https://jinja.palletsprojects.com/en/3.1.x/api/#jinja2.Environment\">aanvullende" " parameters om door te geven bij het bouwen van de Jinja2-omgeving." -#: netbox/extras/models/configs.py:240 +#: extras/models/configs.py:240 msgid "config template" msgstr "configuratiesjabloon" -#: netbox/extras/models/configs.py:241 +#: extras/models/configs.py:241 msgid "config templates" msgstr "configuratiesjablonen" -#: netbox/extras/models/customfields.py:75 +#: extras/models/customfields.py:75 msgid "The object(s) to which this field applies." msgstr "Het (de) object (en) waarop dit veld van toepassing is." -#: netbox/extras/models/customfields.py:82 +#: extras/models/customfields.py:82 msgid "The type of data this custom field holds" msgstr "Het type gegevens dat dit aangepaste veld bevat" -#: netbox/extras/models/customfields.py:89 +#: extras/models/customfields.py:89 msgid "The type of NetBox object this field maps to (for object fields)" msgstr "" "Het type NetBox-object waarnaar dit veld wordt toegewezen (voor " "objectvelden)" -#: netbox/extras/models/customfields.py:95 +#: extras/models/customfields.py:95 msgid "Internal field name" msgstr "Naam van het interne veld" -#: netbox/extras/models/customfields.py:99 +#: extras/models/customfields.py:99 msgid "Only alphanumeric characters and underscores are allowed." msgstr "Alleen alfanumerieke tekens en onderstrepingstekens zijn toegestaan." -#: netbox/extras/models/customfields.py:104 +#: extras/models/customfields.py:104 msgid "Double underscores are not permitted in custom field names." msgstr "" "Dubbele onderstrepingstekens zijn niet toegestaan in aangepaste veldnamen." -#: netbox/extras/models/customfields.py:115 +#: extras/models/customfields.py:115 msgid "" "Name of the field as displayed to users (if not provided, 'the field's name " "will be used)" @@ -8278,19 +7720,19 @@ msgstr "" "Naam van het veld zoals getoond aan gebruikers (indien niet opgegeven, wordt" " 'de veldnaam gebruikt)" -#: netbox/extras/models/customfields.py:119 netbox/extras/models/models.py:317 +#: extras/models/customfields.py:119 extras/models/models.py:317 msgid "group name" msgstr "naam van de groep" -#: netbox/extras/models/customfields.py:122 +#: extras/models/customfields.py:122 msgid "Custom fields within the same group will be displayed together" msgstr "Aangepaste velden binnen dezelfde groep worden samen weergegeven" -#: netbox/extras/models/customfields.py:130 +#: extras/models/customfields.py:130 msgid "required" msgstr "verplicht" -#: netbox/extras/models/customfields.py:132 +#: extras/models/customfields.py:132 msgid "" "This field is required when creating new objects or editing an existing " "object." @@ -8298,19 +7740,19 @@ msgstr "" "Dit veld is vereist wanneer u nieuwe objecten maakt of een bestaand object " "bewerkt." -#: netbox/extras/models/customfields.py:135 +#: extras/models/customfields.py:135 msgid "must be unique" msgstr "moet uniek zijn" -#: netbox/extras/models/customfields.py:137 +#: extras/models/customfields.py:137 msgid "The value of this field must be unique for the assigned object" msgstr "De waarde van dit veld moet uniek zijn voor het toegewezen object" -#: netbox/extras/models/customfields.py:140 +#: extras/models/customfields.py:140 msgid "search weight" msgstr "zoekgewicht" -#: netbox/extras/models/customfields.py:143 +#: extras/models/customfields.py:143 msgid "" "Weighting for search. Lower values are considered more important. Fields " "with a search weight of zero will be ignored." @@ -8318,11 +7760,11 @@ msgstr "" "Weging voor zoeken. Lagere waarden worden als belangrijker beschouwd. Velden" " met een zoekgewicht van nul worden genegeerd." -#: netbox/extras/models/customfields.py:148 +#: extras/models/customfields.py:148 msgid "filter logic" msgstr "filterlogica" -#: netbox/extras/models/customfields.py:152 +#: extras/models/customfields.py:152 msgid "" "Loose matches any instance of a given string; exact matches the entire " "field." @@ -8330,11 +7772,11 @@ msgstr "" "Loose komt overeen met elk exemplaar van een bepaalde tekenreeks; exact komt" " overeen met het hele veld." -#: netbox/extras/models/customfields.py:155 +#: extras/models/customfields.py:155 msgid "default" msgstr "standaard" -#: netbox/extras/models/customfields.py:159 +#: extras/models/customfields.py:159 msgid "" "Default value for the field (must be a JSON value). Encapsulate strings with" " double quotes (e.g. \"Foo\")." @@ -8342,7 +7784,7 @@ msgstr "" "Standaardwaarde voor het veld (moet een JSON-waarde zijn). Voeg tekenreeksen" " in met dubbele aanhalingstekens (bijvoorbeeld „Foo”)." -#: netbox/extras/models/customfields.py:166 +#: extras/models/customfields.py:166 msgid "" "Filter the object selection choices using a query_params dict (must be a " "JSON value).Encapsulate strings with double quotes (e.g. \"Foo\")." @@ -8351,36 +7793,36 @@ msgstr "" "dictaat (moet een JSON-waarde zijn) .Voeg tekenreeksen in met dubbele " "aanhalingstekens (bijvoorbeeld „Foo”)." -#: netbox/extras/models/customfields.py:172 +#: extras/models/customfields.py:172 msgid "display weight" msgstr "gewicht van het beeldscherm" -#: netbox/extras/models/customfields.py:173 +#: extras/models/customfields.py:173 msgid "Fields with higher weights appear lower in a form." msgstr "" "Velden met een hoger gewicht worden lager weergegeven in een formulier." -#: netbox/extras/models/customfields.py:178 +#: extras/models/customfields.py:178 msgid "minimum value" msgstr "minimumwaarde" -#: netbox/extras/models/customfields.py:179 +#: extras/models/customfields.py:179 msgid "Minimum allowed value (for numeric fields)" msgstr "Minimaal toegestane waarde (voor numerieke velden)" -#: netbox/extras/models/customfields.py:184 +#: extras/models/customfields.py:184 msgid "maximum value" msgstr "maximale waarde" -#: netbox/extras/models/customfields.py:185 +#: extras/models/customfields.py:185 msgid "Maximum allowed value (for numeric fields)" msgstr "Maximaal toegestane waarde (voor numerieke velden)" -#: netbox/extras/models/customfields.py:191 +#: extras/models/customfields.py:191 msgid "validation regex" msgstr "validatieregex" -#: netbox/extras/models/customfields.py:193 +#: extras/models/customfields.py:193 #, python-brace-format msgid "" "Regular expression to enforce on text field values. Use ^ and $ to force " @@ -8391,199 +7833,197 @@ msgstr "" "en $ om het matchen van de hele string te forceren. Bijvoorbeeld ^ " "[A-Z]{3}$ beperkt de waarden tot precies drie hoofdletters." -#: netbox/extras/models/customfields.py:201 +#: extras/models/customfields.py:201 msgid "choice set" msgstr "keuzeset" -#: netbox/extras/models/customfields.py:210 +#: extras/models/customfields.py:210 msgid "Specifies whether the custom field is displayed in the UI" msgstr "" "Specificeert of het aangepaste veld wordt weergegeven in de " "gebruikersinterface" -#: netbox/extras/models/customfields.py:217 +#: extras/models/customfields.py:217 msgid "Specifies whether the custom field value can be edited in the UI" msgstr "" "Specificeert of de aangepaste veldwaarde kan worden bewerkt in de " "gebruikersinterface" -#: netbox/extras/models/customfields.py:221 +#: extras/models/customfields.py:221 msgid "is cloneable" msgstr "is kloonbaar" -#: netbox/extras/models/customfields.py:222 +#: extras/models/customfields.py:222 msgid "Replicate this value when cloning objects" msgstr "Repliceer deze waarde bij het klonen van objecten" -#: netbox/extras/models/customfields.py:239 +#: extras/models/customfields.py:239 msgid "custom field" msgstr "aangepast veld" -#: netbox/extras/models/customfields.py:240 +#: extras/models/customfields.py:240 msgid "custom fields" msgstr "aangepaste velden" -#: netbox/extras/models/customfields.py:329 +#: extras/models/customfields.py:329 #, python-brace-format msgid "Invalid default value \"{value}\": {error}" msgstr "Ongeldige standaardwaarde”{value}„: {error}" -#: netbox/extras/models/customfields.py:336 +#: extras/models/customfields.py:336 msgid "A minimum value may be set only for numeric fields" msgstr "" "Er mag alleen een minimumwaarde worden ingesteld voor numerieke velden" -#: netbox/extras/models/customfields.py:338 +#: extras/models/customfields.py:338 msgid "A maximum value may be set only for numeric fields" msgstr "" "Er mag alleen een maximumwaarde worden ingesteld voor numerieke velden" -#: netbox/extras/models/customfields.py:348 +#: extras/models/customfields.py:348 msgid "" "Regular expression validation is supported only for text and URL fields" msgstr "" "Validatie van reguliere expressies wordt alleen ondersteund voor tekst- en " "URL-velden" -#: netbox/extras/models/customfields.py:354 +#: extras/models/customfields.py:354 msgid "Uniqueness cannot be enforced for boolean fields" msgstr "Uniciteit kan niet worden afgedwongen voor booleaanse velden" -#: netbox/extras/models/customfields.py:364 +#: extras/models/customfields.py:364 msgid "Selection fields must specify a set of choices." msgstr "Selectievelden moeten een reeks keuzes specificeren." -#: netbox/extras/models/customfields.py:368 +#: extras/models/customfields.py:368 msgid "Choices may be set only on selection fields." msgstr "Keuzes kunnen alleen worden ingesteld op selectievelden." -#: netbox/extras/models/customfields.py:375 +#: extras/models/customfields.py:375 msgid "Object fields must define an object type." msgstr "Objectvelden moeten een objecttype definiëren." -#: netbox/extras/models/customfields.py:379 +#: extras/models/customfields.py:379 #, python-brace-format msgid "{type} fields may not define an object type." msgstr "{type} velden definiëren mogelijk geen objecttype." -#: netbox/extras/models/customfields.py:386 +#: extras/models/customfields.py:386 msgid "A related object filter can be defined only for object fields." msgstr "" "Een gerelateerd objectfilter kan alleen voor objectvelden worden " "gedefinieerd." -#: netbox/extras/models/customfields.py:390 +#: extras/models/customfields.py:390 msgid "Filter must be defined as a dictionary mapping attributes to values." msgstr "" "Filter moet worden gedefinieerd als een woordenboek dat attributen aan " "waarden toewijst." -#: netbox/extras/models/customfields.py:469 +#: extras/models/customfields.py:469 msgid "True" msgstr "Waar" -#: netbox/extras/models/customfields.py:470 +#: extras/models/customfields.py:470 msgid "False" msgstr "Onwaar" -#: netbox/extras/models/customfields.py:560 +#: extras/models/customfields.py:560 #, python-brace-format msgid "Values must match this regex: {regex}" msgstr "Waarden moeten overeenkomen met deze regex: {regex}" -#: netbox/extras/models/customfields.py:654 +#: extras/models/customfields.py:654 msgid "Value must be a string." msgstr "De waarde moet een tekenreeks zijn." -#: netbox/extras/models/customfields.py:656 +#: extras/models/customfields.py:656 #, python-brace-format msgid "Value must match regex '{regex}'" msgstr "De waarde moet overeenkomen met regex '{regex}'" -#: netbox/extras/models/customfields.py:661 +#: extras/models/customfields.py:661 msgid "Value must be an integer." msgstr "De waarde moet een geheel getal zijn." -#: netbox/extras/models/customfields.py:664 -#: netbox/extras/models/customfields.py:679 +#: extras/models/customfields.py:664 extras/models/customfields.py:679 #, python-brace-format msgid "Value must be at least {minimum}" msgstr "De waarde moet minstens {minimum}" -#: netbox/extras/models/customfields.py:668 -#: netbox/extras/models/customfields.py:683 +#: extras/models/customfields.py:668 extras/models/customfields.py:683 #, python-brace-format msgid "Value must not exceed {maximum}" msgstr "De waarde mag niet hoger zijn dan {maximum}" -#: netbox/extras/models/customfields.py:676 +#: extras/models/customfields.py:676 msgid "Value must be a decimal." msgstr "De waarde moet een decimaal getal zijn." -#: netbox/extras/models/customfields.py:688 +#: extras/models/customfields.py:688 msgid "Value must be true or false." msgstr "De waarde moet waar of onwaar zijn." -#: netbox/extras/models/customfields.py:696 +#: extras/models/customfields.py:696 msgid "Date values must be in ISO 8601 format (YYYY-MM-DD)." msgstr "De datumwaarden moeten de indeling ISO 8601 hebben (JJJJ-MM-DD)." -#: netbox/extras/models/customfields.py:705 +#: extras/models/customfields.py:705 msgid "Date and time values must be in ISO 8601 format (YYYY-MM-DD HH:MM:SS)." msgstr "" "De datum- en tijdwaarden moeten de indeling ISO 8601 hebben (JJJJ-MM-DD " "H:MM:SS)." -#: netbox/extras/models/customfields.py:712 +#: extras/models/customfields.py:712 #, python-brace-format msgid "Invalid choice ({value}) for choice set {choiceset}." msgstr "Ongeldige keuze ({value}) voor keuzeset {choiceset}." -#: netbox/extras/models/customfields.py:722 +#: extras/models/customfields.py:722 #, python-brace-format msgid "Invalid choice(s) ({value}) for choice set {choiceset}." msgstr "Ongeldige keuze (s) ({value}) voor keuzeset {choiceset}." -#: netbox/extras/models/customfields.py:731 +#: extras/models/customfields.py:731 #, python-brace-format msgid "Value must be an object ID, not {type}" msgstr "De waarde moet een object-ID zijn, niet {type}" -#: netbox/extras/models/customfields.py:737 +#: extras/models/customfields.py:737 #, python-brace-format msgid "Value must be a list of object IDs, not {type}" msgstr "De waarde moet een lijst met object-ID's zijn, niet {type}" -#: netbox/extras/models/customfields.py:741 +#: extras/models/customfields.py:741 #, python-brace-format msgid "Found invalid object ID: {id}" msgstr "Ongeldige object-ID gevonden: {id}" -#: netbox/extras/models/customfields.py:744 +#: extras/models/customfields.py:744 msgid "Required field cannot be empty." msgstr "Het verplichte veld mag niet leeg zijn." -#: netbox/extras/models/customfields.py:763 +#: extras/models/customfields.py:763 msgid "Base set of predefined choices (optional)" msgstr "Basisset van vooraf gedefinieerde keuzes (optioneel)" -#: netbox/extras/models/customfields.py:775 +#: extras/models/customfields.py:775 msgid "Choices are automatically ordered alphabetically" msgstr "Keuzes worden automatisch alfabetisch gerangschikt" -#: netbox/extras/models/customfields.py:782 +#: extras/models/customfields.py:782 msgid "custom field choice set" msgstr "aangepaste veldkeuzeset" -#: netbox/extras/models/customfields.py:783 +#: extras/models/customfields.py:783 msgid "custom field choice sets" msgstr "aangepaste veldkeuzesets" -#: netbox/extras/models/customfields.py:825 +#: extras/models/customfields.py:825 msgid "Must define base or extra choices." msgstr "Moet basis- of extra keuzes definiëren." -#: netbox/extras/models/customfields.py:849 +#: extras/models/customfields.py:849 #, python-brace-format msgid "" "Cannot remove choice {choice} as there are {model} objects which reference " @@ -8592,60 +8032,60 @@ msgstr "" "Keuze kan niet worden verwijderd {choice} zoals er zijn {model} objecten die" " ernaar verwijzen." -#: netbox/extras/models/dashboard.py:18 +#: extras/models/dashboard.py:18 msgid "layout" msgstr "lay-out" -#: netbox/extras/models/dashboard.py:22 +#: extras/models/dashboard.py:22 msgid "config" msgstr "configuratie" -#: netbox/extras/models/dashboard.py:27 +#: extras/models/dashboard.py:27 msgid "dashboard" msgstr "dashboard" -#: netbox/extras/models/dashboard.py:28 +#: extras/models/dashboard.py:28 msgid "dashboards" msgstr "spatschermen" -#: netbox/extras/models/models.py:52 +#: extras/models/models.py:52 msgid "object types" msgstr "objecttypen" -#: netbox/extras/models/models.py:53 +#: extras/models/models.py:53 msgid "The object(s) to which this rule applies." msgstr "Het (de) object (en) waarop deze regel van toepassing is." -#: netbox/extras/models/models.py:67 +#: extras/models/models.py:67 msgid "The types of event which will trigger this rule." msgstr "De soorten gebeurtenissen die deze regel zullen activeren." -#: netbox/extras/models/models.py:74 +#: extras/models/models.py:74 msgid "conditions" msgstr "voorwaarden" -#: netbox/extras/models/models.py:77 +#: extras/models/models.py:77 msgid "" "A set of conditions which determine whether the event will be generated." msgstr "Een set voorwaarden die bepalen of de gebeurtenis wordt gegenereerd." -#: netbox/extras/models/models.py:85 +#: extras/models/models.py:85 msgid "action type" msgstr "actietype" -#: netbox/extras/models/models.py:104 +#: extras/models/models.py:104 msgid "Additional data to pass to the action object" msgstr "Aanvullende gegevens om door te geven aan het actieobject" -#: netbox/extras/models/models.py:116 +#: extras/models/models.py:116 msgid "event rule" msgstr "regel van het evenement" -#: netbox/extras/models/models.py:117 +#: extras/models/models.py:117 msgid "event rules" msgstr "regels voor evenementen" -#: netbox/extras/models/models.py:166 +#: extras/models/models.py:166 msgid "" "This URL will be called using the HTTP method defined when the webhook is " "called. Jinja2 template processing is supported with the same context as the" @@ -8656,7 +8096,7 @@ msgstr "" "Jinja2-sjablonen wordt ondersteund met dezelfde context als de hoofdtekst " "van het verzoek." -#: netbox/extras/models/models.py:181 +#: extras/models/models.py:181 msgid "" "The complete list of official content types is available hier." -#: netbox/extras/models/models.py:186 +#: extras/models/models.py:186 msgid "additional headers" msgstr "extra kopteksten" -#: netbox/extras/models/models.py:189 +#: extras/models/models.py:189 msgid "" "User-supplied HTTP headers to be sent with the request in addition to the " "HTTP content type. Headers should be defined in the format Name: " @@ -8683,11 +8123,11 @@ msgstr "" "Jinja2-sjablonen wordt ondersteund met dezelfde context als de hoofdtekst " "van het verzoek (hieronder)." -#: netbox/extras/models/models.py:195 +#: extras/models/models.py:195 msgid "body template" msgstr "sjabloon voor het lichaam" -#: netbox/extras/models/models.py:198 +#: extras/models/models.py:198 msgid "" "Jinja2 template for a custom request body. If blank, a JSON object " "representing the change will be included. Available context data includes: " @@ -8700,11 +8140,11 @@ msgstr "" "tijdstempel, gebruikersnaam, " "aanvraag_id, en gegevens." -#: netbox/extras/models/models.py:204 +#: extras/models/models.py:204 msgid "secret" msgstr "geheim" -#: netbox/extras/models/models.py:208 +#: extras/models/models.py:208 msgid "" "When provided, the request will include a X-Hook-Signature " "header containing a HMAC hex digest of the payload body using the secret as " @@ -8714,16 +8154,16 @@ msgstr "" "header met een HMAC-hex-samenvatting van de payload-body met het geheim als " "sleutel. Het geheim wordt niet in het verzoek doorgegeven." -#: netbox/extras/models/models.py:215 +#: extras/models/models.py:215 msgid "Enable SSL certificate verification. Disable with caution!" msgstr "" "Activeer de verificatie van SSL-certificaten. Voorzichtig uitschakelen!" -#: netbox/extras/models/models.py:221 netbox/templates/extras/webhook.html:51 +#: extras/models/models.py:221 templates/extras/webhook.html:51 msgid "CA File Path" msgstr "CA-bestandspad" -#: netbox/extras/models/models.py:223 +#: extras/models/models.py:223 msgid "" "The specific CA certificate file to use for SSL verification. Leave blank to" " use the system defaults." @@ -8732,64 +8172,64 @@ msgstr "" "verificatie. Laat dit veld leeg om de standaardinstellingen van het systeem " "te gebruiken." -#: netbox/extras/models/models.py:234 +#: extras/models/models.py:234 msgid "webhook" msgstr "webhook" -#: netbox/extras/models/models.py:235 +#: extras/models/models.py:235 msgid "webhooks" msgstr "webhooks" -#: netbox/extras/models/models.py:253 +#: extras/models/models.py:253 msgid "Do not specify a CA certificate file if SSL verification is disabled." msgstr "" "Geef geen CA-certificaatbestand op als SSL-verificatie is uitgeschakeld." -#: netbox/extras/models/models.py:293 +#: extras/models/models.py:293 msgid "The object type(s) to which this link applies." msgstr "Het (de) objecttype (s) waarop deze link van toepassing is." -#: netbox/extras/models/models.py:305 +#: extras/models/models.py:305 msgid "link text" msgstr "linktekst" -#: netbox/extras/models/models.py:306 +#: extras/models/models.py:306 msgid "Jinja2 template code for link text" msgstr "Jinja2-sjablooncode voor linktekst" -#: netbox/extras/models/models.py:309 +#: extras/models/models.py:309 msgid "link URL" msgstr "URL van de link" -#: netbox/extras/models/models.py:310 +#: extras/models/models.py:310 msgid "Jinja2 template code for link URL" msgstr "Jinja2-sjablooncode voor link-URL" -#: netbox/extras/models/models.py:320 +#: extras/models/models.py:320 msgid "Links with the same group will appear as a dropdown menu" msgstr "Links met dezelfde groep verschijnen als een dropdown-menu" -#: netbox/extras/models/models.py:330 +#: extras/models/models.py:330 msgid "new window" msgstr "nieuw venster" -#: netbox/extras/models/models.py:332 +#: extras/models/models.py:332 msgid "Force link to open in a new window" msgstr "Link forceren om in een nieuw venster te openen" -#: netbox/extras/models/models.py:341 +#: extras/models/models.py:341 msgid "custom link" msgstr "link op maat" -#: netbox/extras/models/models.py:342 +#: extras/models/models.py:342 msgid "custom links" msgstr "links op maat" -#: netbox/extras/models/models.py:389 +#: extras/models/models.py:389 msgid "The object type(s) to which this template applies." msgstr "Het (de) objecttype (s) waarop dit sjabloon van toepassing is." -#: netbox/extras/models/models.py:402 +#: extras/models/models.py:402 msgid "" "Jinja2 template code. The list of objects being exported is passed as a " "context variable named queryset." @@ -8797,1092 +8237,1057 @@ msgstr "" "Jinja2-sjablooncode. De lijst met objecten die worden geëxporteerd, wordt " "doorgegeven als een contextvariabele met de naam queryset." -#: netbox/extras/models/models.py:410 +#: extras/models/models.py:410 msgid "Defaults to text/plain; charset=utf-8" msgstr "Wordt standaard ingesteld op text/plain; charset=utf-8" -#: netbox/extras/models/models.py:413 +#: extras/models/models.py:413 msgid "file extension" msgstr "bestandsextensie" -#: netbox/extras/models/models.py:416 +#: extras/models/models.py:416 msgid "Extension to append to the rendered filename" msgstr "Uitbreiding om toe te voegen aan de gerenderde bestandsnaam" -#: netbox/extras/models/models.py:419 +#: extras/models/models.py:419 msgid "as attachment" msgstr "als bijlage" -#: netbox/extras/models/models.py:421 +#: extras/models/models.py:421 msgid "Download file as attachment" msgstr "Download het bestand als bijlage" -#: netbox/extras/models/models.py:430 +#: extras/models/models.py:430 msgid "export template" msgstr "sjabloon exporteren" -#: netbox/extras/models/models.py:431 +#: extras/models/models.py:431 msgid "export templates" msgstr "sjablonen exporteren" -#: netbox/extras/models/models.py:448 +#: extras/models/models.py:448 #, python-brace-format msgid "\"{name}\" is a reserved name. Please choose a different name." msgstr "„{name}„is een gereserveerde naam. Kies een andere naam." -#: netbox/extras/models/models.py:498 +#: extras/models/models.py:498 msgid "The object type(s) to which this filter applies." msgstr "Het (de) objecttype (s) waarop dit filter van toepassing is." -#: netbox/extras/models/models.py:530 +#: extras/models/models.py:530 msgid "shared" msgstr "gedeeld" -#: netbox/extras/models/models.py:543 +#: extras/models/models.py:543 msgid "saved filter" msgstr "opgeslagen filter" -#: netbox/extras/models/models.py:544 +#: extras/models/models.py:544 msgid "saved filters" msgstr "opgeslagen filters" -#: netbox/extras/models/models.py:562 +#: extras/models/models.py:562 msgid "Filter parameters must be stored as a dictionary of keyword arguments." msgstr "" "Filterparameters moeten worden opgeslagen als een woordenboek met " "trefwoordargumenten." -#: netbox/extras/models/models.py:590 +#: extras/models/models.py:590 msgid "image height" msgstr "hoogte van de afbeelding" -#: netbox/extras/models/models.py:593 +#: extras/models/models.py:593 msgid "image width" msgstr "breedte van de afbeelding" -#: netbox/extras/models/models.py:610 +#: extras/models/models.py:610 msgid "image attachment" msgstr "bijlage bij de afbeelding" -#: netbox/extras/models/models.py:611 +#: extras/models/models.py:611 msgid "image attachments" msgstr "bijlagen bij afbeeldingen" -#: netbox/extras/models/models.py:625 +#: extras/models/models.py:625 #, python-brace-format msgid "Image attachments cannot be assigned to this object type ({type})." msgstr "" "Afbeeldingsbijlagen kunnen niet aan dit objecttype worden toegewezen " "({type})." -#: netbox/extras/models/models.py:688 +#: extras/models/models.py:688 msgid "kind" msgstr "vriendelijk" -#: netbox/extras/models/models.py:702 +#: extras/models/models.py:702 msgid "journal entry" msgstr "journaalboeking" -#: netbox/extras/models/models.py:703 +#: extras/models/models.py:703 msgid "journal entries" msgstr "journaalboekingen" -#: netbox/extras/models/models.py:718 +#: extras/models/models.py:718 #, python-brace-format msgid "Journaling is not supported for this object type ({type})." msgstr "Journaling wordt niet ondersteund voor dit objecttype ({type})." -#: netbox/extras/models/models.py:760 +#: extras/models/models.py:760 msgid "bookmark" msgstr "bladwijzer" -#: netbox/extras/models/models.py:761 +#: extras/models/models.py:761 msgid "bookmarks" msgstr "bladwijzers" -#: netbox/extras/models/models.py:774 +#: extras/models/models.py:774 #, python-brace-format msgid "Bookmarks cannot be assigned to this object type ({type})." msgstr "" "Bladwijzers kunnen niet aan dit objecttype worden toegewezen ({type})." -#: netbox/extras/models/notifications.py:43 +#: extras/models/notifications.py:43 msgid "read" msgstr "lezen" -#: netbox/extras/models/notifications.py:66 +#: extras/models/notifications.py:66 msgid "event" msgstr "evenement" -#: netbox/extras/models/notifications.py:84 +#: extras/models/notifications.py:84 msgid "notification" msgstr "melding" -#: netbox/extras/models/notifications.py:85 +#: extras/models/notifications.py:85 msgid "notifications" msgstr "meldingen" -#: netbox/extras/models/notifications.py:99 -#: netbox/extras/models/notifications.py:234 +#: extras/models/notifications.py:99 extras/models/notifications.py:234 #, python-brace-format msgid "Objects of this type ({type}) do not support notifications." msgstr "Objecten van dit type ({type}) ondersteunen geen meldingen." -#: netbox/extras/models/notifications.py:137 netbox/users/models/users.py:58 -#: netbox/users/models/users.py:77 +#: extras/models/notifications.py:137 users/models/users.py:58 +#: users/models/users.py:77 msgid "groups" msgstr "groepen" -#: netbox/extras/models/notifications.py:143 netbox/users/models/users.py:93 +#: extras/models/notifications.py:143 users/models/users.py:93 msgid "users" msgstr "gebruikers" -#: netbox/extras/models/notifications.py:152 +#: extras/models/notifications.py:152 msgid "notification group" msgstr "meldingsgroep" -#: netbox/extras/models/notifications.py:153 +#: extras/models/notifications.py:153 msgid "notification groups" msgstr "meldingsgroepen" -#: netbox/extras/models/notifications.py:217 +#: extras/models/notifications.py:217 msgid "subscription" msgstr "abonnement" -#: netbox/extras/models/notifications.py:218 +#: extras/models/notifications.py:218 msgid "subscriptions" msgstr "abonnementen" -#: netbox/extras/models/scripts.py:42 +#: extras/models/scripts.py:42 msgid "is executable" msgstr "is uitvoerbaar" -#: netbox/extras/models/scripts.py:64 +#: extras/models/scripts.py:64 msgid "script" msgstr "script" -#: netbox/extras/models/scripts.py:65 +#: extras/models/scripts.py:65 msgid "scripts" msgstr "scripts" -#: netbox/extras/models/scripts.py:111 +#: extras/models/scripts.py:111 msgid "script module" msgstr "scriptmodule" -#: netbox/extras/models/scripts.py:112 +#: extras/models/scripts.py:112 msgid "script modules" msgstr "scriptmodules" -#: netbox/extras/models/search.py:22 +#: extras/models/search.py:22 msgid "timestamp" msgstr "tijdstempel" -#: netbox/extras/models/search.py:37 +#: extras/models/search.py:37 msgid "field" msgstr "veld" -#: netbox/extras/models/search.py:45 +#: extras/models/search.py:45 msgid "value" msgstr "waarde" -#: netbox/extras/models/search.py:56 +#: extras/models/search.py:56 msgid "cached value" msgstr "waarde in de cache" -#: netbox/extras/models/search.py:57 +#: extras/models/search.py:57 msgid "cached values" msgstr "waarden in de cache" -#: netbox/extras/models/staging.py:44 +#: extras/models/staging.py:44 msgid "branch" msgstr "filiaal" -#: netbox/extras/models/staging.py:45 +#: extras/models/staging.py:45 msgid "branches" msgstr "takken" -#: netbox/extras/models/staging.py:97 +#: extras/models/staging.py:97 msgid "staged change" msgstr "gefaseerde verandering" -#: netbox/extras/models/staging.py:98 +#: extras/models/staging.py:98 msgid "staged changes" msgstr "gefaseerde wijzigingen" -#: netbox/extras/models/tags.py:40 +#: extras/models/tags.py:40 msgid "The object type(s) to which this tag can be applied." msgstr "Het (de) objecttype (s) waarop deze tag kan worden toegepast." -#: netbox/extras/models/tags.py:49 +#: extras/models/tags.py:49 msgid "tag" msgstr "tag" -#: netbox/extras/models/tags.py:50 +#: extras/models/tags.py:50 msgid "tags" msgstr "labels" -#: netbox/extras/models/tags.py:78 +#: extras/models/tags.py:78 msgid "tagged item" msgstr "item met tags" -#: netbox/extras/models/tags.py:79 +#: extras/models/tags.py:79 msgid "tagged items" msgstr "getagde artikelen" -#: netbox/extras/scripts.py:429 +#: extras/scripts.py:429 msgid "Script Data" msgstr "Scriptgegevens" -#: netbox/extras/scripts.py:433 +#: extras/scripts.py:433 msgid "Script Execution Parameters" msgstr "Parameters voor uitvoering van scripts" -#: netbox/extras/tables/columns.py:12 -#: netbox/templates/htmx/notifications.html:18 +#: extras/tables/columns.py:12 templates/htmx/notifications.html:18 msgid "Dismiss" msgstr "Ontslaan" -#: netbox/extras/tables/tables.py:62 netbox/extras/tables/tables.py:159 -#: netbox/extras/tables/tables.py:184 netbox/extras/tables/tables.py:250 -#: netbox/extras/tables/tables.py:276 netbox/extras/tables/tables.py:412 -#: netbox/extras/tables/tables.py:446 -#: netbox/templates/extras/customfield.html:105 -#: netbox/templates/extras/eventrule.html:27 -#: netbox/templates/users/objectpermission.html:64 netbox/users/tables.py:80 +#: extras/tables/tables.py:62 extras/tables/tables.py:159 +#: extras/tables/tables.py:184 extras/tables/tables.py:250 +#: extras/tables/tables.py:276 extras/tables/tables.py:412 +#: extras/tables/tables.py:446 templates/extras/customfield.html:105 +#: templates/extras/eventrule.html:27 templates/users/objectpermission.html:64 +#: users/tables.py:80 msgid "Object Types" msgstr "Objecttypen" -#: netbox/extras/tables/tables.py:69 +#: extras/tables/tables.py:69 msgid "Validate Uniqueness" msgstr "Uniciteit valideren" -#: netbox/extras/tables/tables.py:73 +#: extras/tables/tables.py:73 msgid "Visible" msgstr "Zichtbaar" -#: netbox/extras/tables/tables.py:76 +#: extras/tables/tables.py:76 msgid "Editable" msgstr "Bewerkbaar" -#: netbox/extras/tables/tables.py:82 +#: extras/tables/tables.py:82 msgid "Related Object Type" msgstr "Gerelateerd objecttype" -#: netbox/extras/tables/tables.py:86 -#: netbox/templates/extras/customfield.html:51 +#: extras/tables/tables.py:86 templates/extras/customfield.html:51 msgid "Choice Set" msgstr "Keuzeset" -#: netbox/extras/tables/tables.py:94 +#: extras/tables/tables.py:94 msgid "Is Cloneable" msgstr "Is kloonbaar" -#: netbox/extras/tables/tables.py:98 -#: netbox/templates/extras/customfield.html:118 +#: extras/tables/tables.py:98 templates/extras/customfield.html:118 msgid "Minimum Value" msgstr "Minimumwaarde" -#: netbox/extras/tables/tables.py:101 -#: netbox/templates/extras/customfield.html:122 +#: extras/tables/tables.py:101 templates/extras/customfield.html:122 msgid "Maximum Value" msgstr "Maximale waarde" -#: netbox/extras/tables/tables.py:104 +#: extras/tables/tables.py:104 msgid "Validation Regex" msgstr "Validatie Regex" -#: netbox/extras/tables/tables.py:137 +#: extras/tables/tables.py:137 msgid "Count" msgstr "Tellen" -#: netbox/extras/tables/tables.py:140 +#: extras/tables/tables.py:140 msgid "Order Alphabetically" msgstr "Alfabetisch ordenen" -#: netbox/extras/tables/tables.py:165 -#: netbox/templates/extras/customlink.html:33 +#: extras/tables/tables.py:165 templates/extras/customlink.html:33 msgid "New Window" msgstr "Nieuw venster" -#: netbox/extras/tables/tables.py:187 +#: extras/tables/tables.py:187 msgid "As Attachment" msgstr "Als bijlage" -#: netbox/extras/tables/tables.py:195 netbox/extras/tables/tables.py:487 -#: netbox/extras/tables/tables.py:522 netbox/templates/core/datafile.html:24 -#: netbox/templates/dcim/device/render_config.html:22 -#: netbox/templates/extras/configcontext.html:39 -#: netbox/templates/extras/configtemplate.html:31 -#: netbox/templates/extras/exporttemplate.html:45 -#: netbox/templates/generic/bulk_import.html:35 -#: netbox/templates/virtualization/virtualmachine/render_config.html:22 +#: extras/tables/tables.py:195 extras/tables/tables.py:487 +#: extras/tables/tables.py:522 templates/core/datafile.html:24 +#: templates/dcim/device/render_config.html:22 +#: templates/extras/configcontext.html:39 +#: templates/extras/configtemplate.html:31 +#: templates/extras/exporttemplate.html:45 +#: templates/generic/bulk_import.html:35 +#: templates/virtualization/virtualmachine/render_config.html:22 msgid "Data File" msgstr "Gegevensbestand" -#: netbox/extras/tables/tables.py:200 netbox/extras/tables/tables.py:499 -#: netbox/extras/tables/tables.py:527 +#: extras/tables/tables.py:200 extras/tables/tables.py:499 +#: extras/tables/tables.py:527 msgid "Synced" msgstr "Gesynchroniseerd" -#: netbox/extras/tables/tables.py:227 +#: extras/tables/tables.py:227 msgid "Image" msgstr "Afbeelding" -#: netbox/extras/tables/tables.py:232 +#: extras/tables/tables.py:232 msgid "Size (Bytes)" msgstr "Grootte (bytes)" -#: netbox/extras/tables/tables.py:339 +#: extras/tables/tables.py:339 msgid "Read" msgstr "Lees" -#: netbox/extras/tables/tables.py:382 +#: extras/tables/tables.py:382 msgid "SSL Validation" msgstr "SSL-validatie" -#: netbox/extras/tables/tables.py:418 -#: netbox/templates/extras/eventrule.html:37 +#: extras/tables/tables.py:418 templates/extras/eventrule.html:37 msgid "Event Types" msgstr "Soorten evenementen" -#: netbox/extras/tables/tables.py:535 netbox/netbox/navigation/menu.py:77 -#: netbox/templates/dcim/devicerole.html:8 +#: extras/tables/tables.py:535 netbox/navigation/menu.py:77 +#: templates/dcim/devicerole.html:8 msgid "Device Roles" msgstr "Apparaat rollen" -#: netbox/extras/tables/tables.py:587 +#: extras/tables/tables.py:587 msgid "Comments (Short)" msgstr "Opmerkingen (kort)" -#: netbox/extras/tables/tables.py:606 netbox/extras/tables/tables.py:640 +#: extras/tables/tables.py:606 extras/tables/tables.py:640 msgid "Line" msgstr "Lijn" -#: netbox/extras/tables/tables.py:613 netbox/extras/tables/tables.py:650 +#: extras/tables/tables.py:613 extras/tables/tables.py:650 msgid "Level" msgstr "Niveau" -#: netbox/extras/tables/tables.py:619 netbox/extras/tables/tables.py:659 +#: extras/tables/tables.py:619 extras/tables/tables.py:659 msgid "Message" msgstr "Bericht" -#: netbox/extras/tables/tables.py:643 +#: extras/tables/tables.py:643 msgid "Method" msgstr "Methode" -#: netbox/extras/validators.py:15 +#: extras/validators.py:15 #, python-format msgid "Ensure this value is equal to %(limit_value)s." msgstr "Zorg ervoor dat deze waarde gelijk is aan %(limit_value)s." -#: netbox/extras/validators.py:26 +#: extras/validators.py:26 #, python-format msgid "Ensure this value does not equal %(limit_value)s." msgstr "Zorg ervoor dat deze waarde niet gelijk is %(limit_value)s." -#: netbox/extras/validators.py:37 +#: extras/validators.py:37 msgid "This field must be empty." msgstr "Dit veld moet leeg zijn." -#: netbox/extras/validators.py:52 +#: extras/validators.py:52 msgid "This field must not be empty." msgstr "Dit veld mag niet leeg zijn." -#: netbox/extras/validators.py:94 +#: extras/validators.py:94 msgid "Validation rules must be passed as a dictionary" msgstr "Validatieregels moeten als woordenboek worden doorgegeven" -#: netbox/extras/validators.py:119 +#: extras/validators.py:119 #, python-brace-format msgid "Custom validation failed for {attribute}: {exception}" msgstr "Aangepaste validatie is mislukt voor {attribute}: {exception}" -#: netbox/extras/validators.py:133 +#: extras/validators.py:133 #, python-brace-format msgid "Invalid attribute \"{name}\" for request" msgstr "Ongeldig kenmerk”{name}„op aanvraag" -#: netbox/extras/validators.py:150 +#: extras/validators.py:150 #, python-brace-format msgid "Invalid attribute \"{name}\" for {model}" msgstr "Ongeldig kenmerk”{name}„voor {model}" -#: netbox/extras/views.py:960 +#: extras/views.py:960 msgid "Your dashboard has been reset." msgstr "Je dashboard is opnieuw ingesteld." -#: netbox/extras/views.py:1006 +#: extras/views.py:1006 msgid "Added widget: " msgstr "Widget toegevoegd: " -#: netbox/extras/views.py:1047 +#: extras/views.py:1047 msgid "Updated widget: " msgstr "Bijgewerkte widget: " -#: netbox/extras/views.py:1083 +#: extras/views.py:1083 msgid "Deleted widget: " msgstr "Widget verwijderd: " -#: netbox/extras/views.py:1085 +#: extras/views.py:1085 msgid "Error deleting widget: " msgstr "Fout bij het verwijderen van de widget: " -#: netbox/extras/views.py:1172 +#: extras/views.py:1172 msgid "Unable to run script: RQ worker process not running." msgstr "Kan script niet uitvoeren: het RQ-werkproces wordt niet uitgevoerd." -#: netbox/ipam/api/field_serializers.py:17 +#: ipam/api/field_serializers.py:17 msgid "Enter a valid IPv4 or IPv6 address with optional mask." msgstr "Voer een geldig IPv4- of IPv6-adres in met optioneel masker." -#: netbox/ipam/api/field_serializers.py:24 +#: ipam/api/field_serializers.py:24 #, python-brace-format msgid "Invalid IP address format: {data}" msgstr "Ongeldig formaat van het IP-adres: {data}" -#: netbox/ipam/api/field_serializers.py:37 +#: ipam/api/field_serializers.py:37 msgid "Enter a valid IPv4 or IPv6 prefix and mask in CIDR notation." msgstr "" "Voer een geldig IPv4- of IPv6-voorvoegsel en masker in de CIDR-notatie in." -#: netbox/ipam/api/field_serializers.py:44 +#: ipam/api/field_serializers.py:44 #, python-brace-format msgid "Invalid IP prefix format: {data}" msgstr "Ongeldig formaat voor IP-prefix: {data}" -#: netbox/ipam/api/views.py:358 +#: ipam/api/views.py:358 msgid "" "Insufficient space is available to accommodate the requested prefix size(s)" msgstr "" "Er is onvoldoende ruimte beschikbaar voor de gevraagde prefixgrootte (s)" -#: netbox/ipam/choices.py:30 +#: ipam/choices.py:30 msgid "Container" msgstr "Container" -#: netbox/ipam/choices.py:72 +#: ipam/choices.py:72 msgid "DHCP" msgstr "DHCP" -#: netbox/ipam/choices.py:73 +#: ipam/choices.py:73 msgid "SLAAC" msgstr "SLAAC" -#: netbox/ipam/choices.py:89 +#: ipam/choices.py:89 msgid "Loopback" msgstr "Loopback" -#: netbox/ipam/choices.py:91 +#: ipam/choices.py:91 msgid "Anycast" msgstr "Anycast" -#: netbox/ipam/choices.py:115 +#: ipam/choices.py:115 msgid "Standard" msgstr "Standaard" -#: netbox/ipam/choices.py:120 +#: ipam/choices.py:120 msgid "CheckPoint" msgstr "CheckPoint" -#: netbox/ipam/choices.py:123 +#: ipam/choices.py:123 msgid "Cisco" msgstr "Cisco" -#: netbox/ipam/choices.py:137 +#: ipam/choices.py:137 msgid "Plaintext" msgstr "Platte tekst" -#: netbox/ipam/fields.py:36 +#: ipam/fields.py:36 #, python-brace-format msgid "Invalid IP address format: {address}" msgstr "Ongeldig formaat van het IP-adres: {address}" -#: netbox/ipam/filtersets.py:48 netbox/vpn/filtersets.py:304 +#: ipam/filtersets.py:48 vpn/filtersets.py:304 msgid "Import target" msgstr "Doel importeren" -#: netbox/ipam/filtersets.py:54 netbox/vpn/filtersets.py:310 +#: ipam/filtersets.py:54 vpn/filtersets.py:310 msgid "Import target (name)" msgstr "Importdoel (naam)" -#: netbox/ipam/filtersets.py:59 netbox/vpn/filtersets.py:315 +#: ipam/filtersets.py:59 vpn/filtersets.py:315 msgid "Export target" msgstr "Doel exporteren" -#: netbox/ipam/filtersets.py:65 netbox/vpn/filtersets.py:321 +#: ipam/filtersets.py:65 vpn/filtersets.py:321 msgid "Export target (name)" msgstr "Exportdoel (naam)" -#: netbox/ipam/filtersets.py:86 +#: ipam/filtersets.py:86 msgid "Importing VRF" msgstr "VRF importeren" -#: netbox/ipam/filtersets.py:92 +#: ipam/filtersets.py:92 msgid "Import VRF (RD)" msgstr "VRF (RD) importeren" -#: netbox/ipam/filtersets.py:97 +#: ipam/filtersets.py:97 msgid "Exporting VRF" msgstr "VRF exporteren" -#: netbox/ipam/filtersets.py:103 +#: ipam/filtersets.py:103 msgid "Export VRF (RD)" msgstr "VRF (RD) exporteren" -#: netbox/ipam/filtersets.py:108 +#: ipam/filtersets.py:108 msgid "Importing L2VPN" msgstr "L2VPN importeren" -#: netbox/ipam/filtersets.py:114 +#: ipam/filtersets.py:114 msgid "Importing L2VPN (identifier)" msgstr "L2VPN importeren (identifier)" -#: netbox/ipam/filtersets.py:119 +#: ipam/filtersets.py:119 msgid "Exporting L2VPN" msgstr "L2VPN exporteren" -#: netbox/ipam/filtersets.py:125 +#: ipam/filtersets.py:125 msgid "Exporting L2VPN (identifier)" msgstr "L2VPN exporteren (identifier)" -#: netbox/ipam/filtersets.py:155 netbox/ipam/filtersets.py:281 -#: netbox/ipam/forms/model_forms.py:229 netbox/ipam/tables/ip.py:212 -#: netbox/templates/ipam/prefix.html:12 +#: ipam/filtersets.py:155 ipam/filtersets.py:281 ipam/forms/model_forms.py:229 +#: ipam/tables/ip.py:212 templates/ipam/prefix.html:12 msgid "Prefix" msgstr "Voorvoegsel" -#: netbox/ipam/filtersets.py:159 netbox/ipam/filtersets.py:198 -#: netbox/ipam/filtersets.py:221 +#: ipam/filtersets.py:159 ipam/filtersets.py:198 ipam/filtersets.py:221 msgid "RIR (ID)" msgstr "RIR (ID)" -#: netbox/ipam/filtersets.py:165 netbox/ipam/filtersets.py:204 -#: netbox/ipam/filtersets.py:227 +#: ipam/filtersets.py:165 ipam/filtersets.py:204 ipam/filtersets.py:227 msgid "RIR (slug)" msgstr "RIR (slak)" -#: netbox/ipam/filtersets.py:285 +#: ipam/filtersets.py:285 msgid "Within prefix" msgstr "Binnen het voorvoegsel" -#: netbox/ipam/filtersets.py:289 +#: ipam/filtersets.py:289 msgid "Within and including prefix" msgstr "Binnen en inclusief voorvoegsel" -#: netbox/ipam/filtersets.py:293 +#: ipam/filtersets.py:293 msgid "Prefixes which contain this prefix or IP" msgstr "Prefixen die dit voorvoegsel of IP-adres bevatten" -#: netbox/ipam/filtersets.py:304 netbox/ipam/filtersets.py:572 -#: netbox/ipam/forms/bulk_edit.py:342 netbox/ipam/forms/filtersets.py:196 -#: netbox/ipam/forms/filtersets.py:331 +#: ipam/filtersets.py:304 ipam/filtersets.py:572 ipam/forms/bulk_edit.py:343 +#: ipam/forms/filtersets.py:196 ipam/forms/filtersets.py:331 msgid "Mask length" msgstr "Lengte van het masker" -#: netbox/ipam/filtersets.py:373 netbox/vpn/filtersets.py:427 +#: ipam/filtersets.py:373 vpn/filtersets.py:427 msgid "VLAN (ID)" msgstr "VLAN (ID)" -#: netbox/ipam/filtersets.py:377 netbox/vpn/filtersets.py:422 +#: ipam/filtersets.py:377 vpn/filtersets.py:422 msgid "VLAN number (1-4094)" msgstr "VLAN-nummer (1-4094)" -#: netbox/ipam/filtersets.py:471 netbox/ipam/filtersets.py:475 -#: netbox/ipam/filtersets.py:567 netbox/ipam/forms/model_forms.py:463 -#: netbox/templates/tenancy/contact.html:53 -#: netbox/tenancy/forms/bulk_edit.py:113 +#: ipam/filtersets.py:471 ipam/filtersets.py:475 ipam/filtersets.py:567 +#: ipam/forms/model_forms.py:463 templates/tenancy/contact.html:53 +#: tenancy/forms/bulk_edit.py:113 msgid "Address" msgstr "Adres" -#: netbox/ipam/filtersets.py:479 +#: ipam/filtersets.py:479 msgid "Ranges which contain this prefix or IP" msgstr "Bereiken die dit voorvoegsel of IP-adres bevatten" -#: netbox/ipam/filtersets.py:507 netbox/ipam/filtersets.py:563 +#: ipam/filtersets.py:507 ipam/filtersets.py:563 msgid "Parent prefix" msgstr "Oudervoorvoegsel" -#: netbox/ipam/filtersets.py:616 netbox/ipam/filtersets.py:856 -#: netbox/ipam/filtersets.py:1131 netbox/vpn/filtersets.py:385 +#: ipam/filtersets.py:616 ipam/filtersets.py:856 ipam/filtersets.py:1131 +#: vpn/filtersets.py:385 msgid "Virtual machine (name)" msgstr "Virtuele machine (naam)" -#: netbox/ipam/filtersets.py:621 netbox/ipam/filtersets.py:861 -#: netbox/ipam/filtersets.py:1125 netbox/virtualization/filtersets.py:282 -#: netbox/virtualization/filtersets.py:321 netbox/vpn/filtersets.py:390 +#: ipam/filtersets.py:621 ipam/filtersets.py:861 ipam/filtersets.py:1125 +#: virtualization/filtersets.py:282 virtualization/filtersets.py:321 +#: vpn/filtersets.py:390 msgid "Virtual machine (ID)" msgstr "Virtuele machine (ID)" -#: netbox/ipam/filtersets.py:627 netbox/vpn/filtersets.py:97 -#: netbox/vpn/filtersets.py:396 +#: ipam/filtersets.py:627 vpn/filtersets.py:97 vpn/filtersets.py:396 msgid "Interface (name)" msgstr "Interface (naam)" -#: netbox/ipam/filtersets.py:638 netbox/vpn/filtersets.py:108 -#: netbox/vpn/filtersets.py:407 +#: ipam/filtersets.py:638 vpn/filtersets.py:108 vpn/filtersets.py:407 msgid "VM interface (name)" msgstr "VM-interface (naam)" -#: netbox/ipam/filtersets.py:643 netbox/vpn/filtersets.py:113 +#: ipam/filtersets.py:643 vpn/filtersets.py:113 msgid "VM interface (ID)" msgstr "VM-interface (ID)" -#: netbox/ipam/filtersets.py:648 +#: ipam/filtersets.py:648 msgid "FHRP group (ID)" msgstr "FHRP-groep (ID)" -#: netbox/ipam/filtersets.py:652 +#: ipam/filtersets.py:652 msgid "Is assigned to an interface" msgstr "Is toegewezen aan een interface" -#: netbox/ipam/filtersets.py:656 +#: ipam/filtersets.py:656 msgid "Is assigned" msgstr "Is toegewezen" -#: netbox/ipam/filtersets.py:668 +#: ipam/filtersets.py:668 msgid "Service (ID)" msgstr "Service (ID)" -#: netbox/ipam/filtersets.py:673 +#: ipam/filtersets.py:673 msgid "NAT inside IP address (ID)" msgstr "NAT binnen IP-adres (ID)" -#: netbox/ipam/filtersets.py:1041 netbox/ipam/forms/bulk_import.py:322 +#: ipam/filtersets.py:1041 ipam/forms/bulk_import.py:322 msgid "Assigned interface" msgstr "Toegewezen interface" -#: netbox/ipam/filtersets.py:1046 +#: ipam/filtersets.py:1046 msgid "Assigned VM interface" msgstr "Toegewezen VM-interface" -#: netbox/ipam/filtersets.py:1136 +#: ipam/filtersets.py:1136 msgid "IP address (ID)" msgstr "IP-adres (ID)" -#: netbox/ipam/filtersets.py:1142 netbox/ipam/models/ip.py:788 +#: ipam/filtersets.py:1142 ipam/models/ip.py:788 msgid "IP address" msgstr "IP-adres" -#: netbox/ipam/filtersets.py:1167 +#: ipam/filtersets.py:1167 msgid "Primary IPv4 (ID)" msgstr "Primaire IPv4 (ID)" -#: netbox/ipam/filtersets.py:1172 +#: ipam/filtersets.py:1172 msgid "Primary IPv6 (ID)" msgstr "Primaire IPv6 (ID)" -#: netbox/ipam/formfields.py:14 +#: ipam/formfields.py:14 msgid "Enter a valid IPv4 or IPv6 address (without a mask)." msgstr "Voer een geldig IPv4- of IPv6-adres in (zonder masker)." -#: netbox/ipam/formfields.py:32 +#: ipam/formfields.py:32 #, python-brace-format msgid "Invalid IPv4/IPv6 address format: {address}" msgstr "Ongeldig IPv4/IPv6-adresformaat: {address}" -#: netbox/ipam/formfields.py:37 +#: ipam/formfields.py:37 msgid "This field requires an IP address without a mask." msgstr "Dit veld vereist een IP-adres zonder masker." -#: netbox/ipam/formfields.py:39 netbox/ipam/formfields.py:61 +#: ipam/formfields.py:39 ipam/formfields.py:61 msgid "Please specify a valid IPv4 or IPv6 address." msgstr "Geef een geldig IPv4- of IPv6-adres op." -#: netbox/ipam/formfields.py:44 +#: ipam/formfields.py:44 msgid "Enter a valid IPv4 or IPv6 address (with CIDR mask)." msgstr "Voer een geldig IPv4- of IPv6-adres in (met CIDR-masker)." -#: netbox/ipam/formfields.py:56 +#: ipam/formfields.py:56 msgid "CIDR mask (e.g. /24) is required." msgstr "Een CIDR-masker (bijv /24) is vereist." -#: netbox/ipam/forms/bulk_create.py:13 +#: ipam/forms/bulk_create.py:13 msgid "Address pattern" msgstr "Adrespatroon" -#: netbox/ipam/forms/bulk_edit.py:49 +#: ipam/forms/bulk_edit.py:50 msgid "Enforce unique space" msgstr "Zorg voor unieke ruimte" -#: netbox/ipam/forms/bulk_edit.py:87 +#: ipam/forms/bulk_edit.py:88 msgid "Is private" msgstr "Is privé" -#: netbox/ipam/forms/bulk_edit.py:108 netbox/ipam/forms/bulk_edit.py:137 -#: netbox/ipam/forms/bulk_edit.py:162 netbox/ipam/forms/bulk_import.py:89 -#: netbox/ipam/forms/bulk_import.py:109 netbox/ipam/forms/bulk_import.py:129 -#: netbox/ipam/forms/filtersets.py:110 netbox/ipam/forms/filtersets.py:125 -#: netbox/ipam/forms/filtersets.py:148 netbox/ipam/forms/model_forms.py:96 -#: netbox/ipam/forms/model_forms.py:109 netbox/ipam/forms/model_forms.py:131 -#: netbox/ipam/forms/model_forms.py:149 netbox/ipam/models/asns.py:31 -#: netbox/ipam/models/asns.py:103 netbox/ipam/models/ip.py:71 -#: netbox/ipam/models/ip.py:90 netbox/ipam/tables/asn.py:20 -#: netbox/ipam/tables/asn.py:45 netbox/templates/ipam/aggregate.html:18 -#: netbox/templates/ipam/asn.html:27 netbox/templates/ipam/asnrange.html:19 -#: netbox/templates/ipam/rir.html:19 +#: ipam/forms/bulk_edit.py:109 ipam/forms/bulk_edit.py:138 +#: ipam/forms/bulk_edit.py:163 ipam/forms/bulk_import.py:89 +#: ipam/forms/bulk_import.py:109 ipam/forms/bulk_import.py:129 +#: ipam/forms/filtersets.py:110 ipam/forms/filtersets.py:125 +#: ipam/forms/filtersets.py:148 ipam/forms/model_forms.py:96 +#: ipam/forms/model_forms.py:109 ipam/forms/model_forms.py:131 +#: ipam/forms/model_forms.py:149 ipam/models/asns.py:31 +#: ipam/models/asns.py:103 ipam/models/ip.py:71 ipam/models/ip.py:90 +#: ipam/tables/asn.py:20 ipam/tables/asn.py:45 +#: templates/ipam/aggregate.html:18 templates/ipam/asn.html:27 +#: templates/ipam/asnrange.html:19 templates/ipam/rir.html:19 msgid "RIR" msgstr "RIR" -#: netbox/ipam/forms/bulk_edit.py:170 +#: ipam/forms/bulk_edit.py:171 msgid "Date added" msgstr "Datum toegevoegd" -#: netbox/ipam/forms/bulk_edit.py:228 netbox/ipam/forms/model_forms.py:586 -#: netbox/ipam/forms/model_forms.py:633 netbox/ipam/tables/ip.py:251 -#: netbox/templates/ipam/vlan_edit.html:37 -#: netbox/templates/ipam/vlangroup.html:27 +#: ipam/forms/bulk_edit.py:229 ipam/forms/model_forms.py:586 +#: ipam/forms/model_forms.py:633 ipam/tables/ip.py:251 +#: templates/ipam/vlan_edit.html:37 templates/ipam/vlangroup.html:27 msgid "VLAN Group" msgstr "VLAN-groep" -#: netbox/ipam/forms/bulk_edit.py:233 netbox/ipam/forms/bulk_import.py:185 -#: netbox/ipam/forms/filtersets.py:256 netbox/ipam/forms/model_forms.py:218 -#: netbox/ipam/models/vlans.py:234 netbox/ipam/tables/ip.py:255 -#: netbox/templates/ipam/prefix.html:60 netbox/templates/ipam/vlan.html:12 -#: netbox/templates/ipam/vlan/base.html:6 -#: netbox/templates/ipam/vlan_edit.html:10 -#: netbox/templates/wireless/wirelesslan.html:30 -#: netbox/vpn/forms/bulk_import.py:304 netbox/vpn/forms/filtersets.py:284 -#: netbox/vpn/forms/model_forms.py:433 netbox/vpn/forms/model_forms.py:452 -#: netbox/wireless/forms/bulk_edit.py:55 -#: netbox/wireless/forms/bulk_import.py:48 -#: netbox/wireless/forms/model_forms.py:48 netbox/wireless/models.py:102 +#: ipam/forms/bulk_edit.py:234 ipam/forms/bulk_import.py:185 +#: ipam/forms/filtersets.py:256 ipam/forms/model_forms.py:218 +#: ipam/models/vlans.py:234 ipam/tables/ip.py:255 +#: templates/ipam/prefix.html:60 templates/ipam/vlan.html:12 +#: templates/ipam/vlan/base.html:6 templates/ipam/vlan_edit.html:10 +#: templates/wireless/wirelesslan.html:30 vpn/forms/bulk_import.py:304 +#: vpn/forms/filtersets.py:284 vpn/forms/model_forms.py:433 +#: vpn/forms/model_forms.py:452 wireless/forms/bulk_edit.py:55 +#: wireless/forms/bulk_import.py:48 wireless/forms/model_forms.py:48 +#: wireless/models.py:102 msgid "VLAN" msgstr "VLAN" -#: netbox/ipam/forms/bulk_edit.py:244 +#: ipam/forms/bulk_edit.py:245 msgid "Prefix length" msgstr "Lengte van het voorvoegsel" -#: netbox/ipam/forms/bulk_edit.py:267 netbox/ipam/forms/filtersets.py:241 -#: netbox/templates/ipam/prefix.html:85 +#: ipam/forms/bulk_edit.py:268 ipam/forms/filtersets.py:241 +#: templates/ipam/prefix.html:85 msgid "Is a pool" msgstr "Is een zwembad" -#: netbox/ipam/forms/bulk_edit.py:272 netbox/ipam/forms/bulk_edit.py:317 -#: netbox/ipam/forms/filtersets.py:248 netbox/ipam/forms/filtersets.py:293 -#: netbox/ipam/models/ip.py:272 netbox/ipam/models/ip.py:539 +#: ipam/forms/bulk_edit.py:273 ipam/forms/bulk_edit.py:318 +#: ipam/forms/filtersets.py:248 ipam/forms/filtersets.py:293 +#: ipam/models/ip.py:272 ipam/models/ip.py:539 msgid "Treat as fully utilized" msgstr "Behandel als volledig gebruikt" -#: netbox/ipam/forms/bulk_edit.py:286 netbox/ipam/forms/filtersets.py:171 +#: ipam/forms/bulk_edit.py:287 ipam/forms/filtersets.py:171 msgid "VLAN Assignment" msgstr "VLAN-toewijzing" -#: netbox/ipam/forms/bulk_edit.py:365 netbox/ipam/models/ip.py:772 +#: ipam/forms/bulk_edit.py:366 ipam/models/ip.py:772 msgid "DNS name" msgstr "DNS-naam" -#: netbox/ipam/forms/bulk_edit.py:386 netbox/ipam/forms/bulk_edit.py:579 -#: netbox/ipam/forms/bulk_import.py:394 netbox/ipam/forms/bulk_import.py:469 -#: netbox/ipam/forms/bulk_import.py:495 netbox/ipam/forms/filtersets.py:390 -#: netbox/ipam/forms/filtersets.py:530 netbox/templates/ipam/fhrpgroup.html:22 -#: netbox/templates/ipam/inc/panels/fhrp_groups.html:24 -#: netbox/templates/ipam/service.html:32 -#: netbox/templates/ipam/servicetemplate.html:19 +#: ipam/forms/bulk_edit.py:387 ipam/forms/bulk_edit.py:534 +#: ipam/forms/bulk_import.py:394 ipam/forms/bulk_import.py:469 +#: ipam/forms/bulk_import.py:495 ipam/forms/filtersets.py:390 +#: ipam/forms/filtersets.py:530 templates/ipam/fhrpgroup.html:22 +#: templates/ipam/inc/panels/fhrp_groups.html:24 +#: templates/ipam/service.html:32 templates/ipam/servicetemplate.html:19 msgid "Protocol" msgstr "Protocol" -#: netbox/ipam/forms/bulk_edit.py:393 netbox/ipam/forms/filtersets.py:397 -#: netbox/ipam/tables/fhrp.py:22 netbox/templates/ipam/fhrpgroup.html:26 +#: ipam/forms/bulk_edit.py:394 ipam/forms/filtersets.py:397 +#: ipam/tables/fhrp.py:22 templates/ipam/fhrpgroup.html:26 msgid "Group ID" msgstr "Groeps-ID" -#: netbox/ipam/forms/bulk_edit.py:398 netbox/ipam/forms/filtersets.py:402 -#: netbox/wireless/forms/bulk_edit.py:68 -#: netbox/wireless/forms/bulk_edit.py:115 -#: netbox/wireless/forms/bulk_import.py:62 -#: netbox/wireless/forms/bulk_import.py:65 -#: netbox/wireless/forms/bulk_import.py:104 -#: netbox/wireless/forms/bulk_import.py:107 -#: netbox/wireless/forms/filtersets.py:54 -#: netbox/wireless/forms/filtersets.py:88 +#: ipam/forms/bulk_edit.py:399 ipam/forms/filtersets.py:402 +#: wireless/forms/bulk_edit.py:68 wireless/forms/bulk_edit.py:115 +#: wireless/forms/bulk_import.py:62 wireless/forms/bulk_import.py:65 +#: wireless/forms/bulk_import.py:104 wireless/forms/bulk_import.py:107 +#: wireless/forms/filtersets.py:54 wireless/forms/filtersets.py:88 msgid "Authentication type" msgstr "Authenticatietype" -#: netbox/ipam/forms/bulk_edit.py:403 netbox/ipam/forms/filtersets.py:406 +#: ipam/forms/bulk_edit.py:404 ipam/forms/filtersets.py:406 msgid "Authentication key" msgstr "Verificatiesleutel" -#: netbox/ipam/forms/bulk_edit.py:420 netbox/ipam/forms/filtersets.py:383 -#: netbox/ipam/forms/model_forms.py:474 netbox/netbox/navigation/menu.py:386 -#: netbox/templates/ipam/fhrpgroup.html:49 -#: netbox/templates/wireless/inc/authentication_attrs.html:5 -#: netbox/wireless/forms/bulk_edit.py:91 -#: netbox/wireless/forms/bulk_edit.py:149 -#: netbox/wireless/forms/filtersets.py:36 -#: netbox/wireless/forms/filtersets.py:76 -#: netbox/wireless/forms/model_forms.py:55 -#: netbox/wireless/forms/model_forms.py:171 +#: ipam/forms/bulk_edit.py:421 ipam/forms/filtersets.py:383 +#: ipam/forms/model_forms.py:474 netbox/navigation/menu.py:386 +#: templates/ipam/fhrpgroup.html:49 +#: templates/wireless/inc/authentication_attrs.html:5 +#: wireless/forms/bulk_edit.py:91 wireless/forms/bulk_edit.py:149 +#: wireless/forms/filtersets.py:36 wireless/forms/filtersets.py:76 +#: wireless/forms/model_forms.py:55 wireless/forms/model_forms.py:171 msgid "Authentication" msgstr "Authentificatie" -#: netbox/ipam/forms/bulk_edit.py:432 netbox/ipam/forms/model_forms.py:575 +#: ipam/forms/bulk_edit.py:436 ipam/forms/model_forms.py:575 msgid "Scope type" msgstr "Soort bereik" -#: netbox/ipam/forms/bulk_edit.py:490 netbox/ipam/models/vlans.py:60 -msgid "VLAN ID ranges" -msgstr "VLAN-ID-bereiken" - -#: netbox/ipam/forms/bulk_edit.py:498 netbox/ipam/forms/model_forms.py:578 -#: netbox/ipam/forms/model_forms.py:588 netbox/ipam/tables/vlans.py:71 -#: netbox/templates/ipam/vlangroup.html:38 +#: ipam/forms/bulk_edit.py:439 ipam/forms/bulk_edit.py:453 +#: ipam/forms/model_forms.py:578 ipam/forms/model_forms.py:588 +#: ipam/tables/vlans.py:71 templates/ipam/vlangroup.html:38 msgid "Scope" msgstr "Toepassingsgebied" -#: netbox/ipam/forms/bulk_edit.py:570 +#: ipam/forms/bulk_edit.py:446 ipam/models/vlans.py:60 +msgid "VLAN ID ranges" +msgstr "VLAN-ID-bereiken" + +#: ipam/forms/bulk_edit.py:525 msgid "Site & Group" msgstr "Site en groep" -#: netbox/ipam/forms/bulk_edit.py:584 netbox/ipam/forms/model_forms.py:659 -#: netbox/ipam/forms/model_forms.py:691 netbox/ipam/tables/services.py:19 -#: netbox/ipam/tables/services.py:49 netbox/templates/ipam/service.html:36 -#: netbox/templates/ipam/servicetemplate.html:23 +#: ipam/forms/bulk_edit.py:539 ipam/forms/model_forms.py:659 +#: ipam/forms/model_forms.py:691 ipam/tables/services.py:19 +#: ipam/tables/services.py:49 templates/ipam/service.html:36 +#: templates/ipam/servicetemplate.html:23 msgid "Ports" msgstr "Poorten" -#: netbox/ipam/forms/bulk_import.py:48 +#: ipam/forms/bulk_import.py:48 msgid "Import route targets" msgstr "Routedoelen importeren" -#: netbox/ipam/forms/bulk_import.py:54 +#: ipam/forms/bulk_import.py:54 msgid "Export route targets" msgstr "Routedoelen exporteren" -#: netbox/ipam/forms/bulk_import.py:92 netbox/ipam/forms/bulk_import.py:112 -#: netbox/ipam/forms/bulk_import.py:132 +#: ipam/forms/bulk_import.py:92 ipam/forms/bulk_import.py:112 +#: ipam/forms/bulk_import.py:132 msgid "Assigned RIR" msgstr "Toegewezen RIR" -#: netbox/ipam/forms/bulk_import.py:182 +#: ipam/forms/bulk_import.py:182 msgid "VLAN's group (if any)" msgstr "VLAN-groep (indien aanwezig)" -#: netbox/ipam/forms/bulk_import.py:308 +#: ipam/forms/bulk_import.py:308 msgid "Parent device of assigned interface (if any)" msgstr "Ouderapparaat met toegewezen interface (indien aanwezig)" -#: netbox/ipam/forms/bulk_import.py:311 netbox/ipam/forms/bulk_import.py:488 -#: netbox/ipam/forms/model_forms.py:685 -#: netbox/virtualization/filtersets.py:288 -#: netbox/virtualization/filtersets.py:327 -#: netbox/virtualization/forms/bulk_edit.py:200 -#: netbox/virtualization/forms/bulk_edit.py:326 -#: netbox/virtualization/forms/bulk_import.py:146 -#: netbox/virtualization/forms/bulk_import.py:207 -#: netbox/virtualization/forms/filtersets.py:212 -#: netbox/virtualization/forms/filtersets.py:248 -#: netbox/virtualization/forms/model_forms.py:288 -#: netbox/vpn/forms/bulk_import.py:93 netbox/vpn/forms/bulk_import.py:290 +#: ipam/forms/bulk_import.py:311 ipam/forms/bulk_import.py:488 +#: ipam/forms/model_forms.py:685 virtualization/filtersets.py:288 +#: virtualization/filtersets.py:327 virtualization/forms/bulk_edit.py:200 +#: virtualization/forms/bulk_edit.py:326 +#: virtualization/forms/bulk_import.py:146 +#: virtualization/forms/bulk_import.py:207 +#: virtualization/forms/filtersets.py:212 +#: virtualization/forms/filtersets.py:248 +#: virtualization/forms/model_forms.py:288 vpn/forms/bulk_import.py:93 +#: vpn/forms/bulk_import.py:290 msgid "Virtual machine" msgstr "Virtuele machine" -#: netbox/ipam/forms/bulk_import.py:315 +#: ipam/forms/bulk_import.py:315 msgid "Parent VM of assigned interface (if any)" msgstr "Bovenliggende VM van de toegewezen interface (indien aanwezig)" -#: netbox/ipam/forms/bulk_import.py:325 +#: ipam/forms/bulk_import.py:325 msgid "Is primary" msgstr "Is primair" -#: netbox/ipam/forms/bulk_import.py:326 +#: ipam/forms/bulk_import.py:326 msgid "Make this the primary IP for the assigned device" msgstr "Maak dit het primaire IP-adres voor het toegewezen apparaat" -#: netbox/ipam/forms/bulk_import.py:365 +#: ipam/forms/bulk_import.py:365 msgid "No device or virtual machine specified; cannot set as primary IP" msgstr "" "Geen apparaat of virtuele machine gespecificeerd; kan niet worden ingesteld " "als primair IP-adres" -#: netbox/ipam/forms/bulk_import.py:369 +#: ipam/forms/bulk_import.py:369 msgid "No interface specified; cannot set as primary IP" msgstr "" "Geen interface gespecificeerd; kan niet worden ingesteld als primair IP-" "adres" -#: netbox/ipam/forms/bulk_import.py:398 +#: ipam/forms/bulk_import.py:398 msgid "Auth type" msgstr "Authenticatietype" -#: netbox/ipam/forms/bulk_import.py:413 +#: ipam/forms/bulk_import.py:413 msgid "Scope type (app & model)" msgstr "Soort bereik (app en model)" -#: netbox/ipam/forms/bulk_import.py:440 +#: ipam/forms/bulk_import.py:440 msgid "Assigned VLAN group" msgstr "Toegewezen VLAN-groep" -#: netbox/ipam/forms/bulk_import.py:471 netbox/ipam/forms/bulk_import.py:497 +#: ipam/forms/bulk_import.py:471 ipam/forms/bulk_import.py:497 msgid "IP protocol" msgstr "IP-protocol" -#: netbox/ipam/forms/bulk_import.py:485 +#: ipam/forms/bulk_import.py:485 msgid "Required if not assigned to a VM" msgstr "Vereist indien niet toegewezen aan een VM" -#: netbox/ipam/forms/bulk_import.py:492 +#: ipam/forms/bulk_import.py:492 msgid "Required if not assigned to a device" msgstr "Vereist indien niet toegewezen aan een apparaat" -#: netbox/ipam/forms/bulk_import.py:517 +#: ipam/forms/bulk_import.py:517 #, python-brace-format msgid "{ip} is not assigned to this device/VM." msgstr "{ip} is niet toegewezen aan dit apparaat/VM." -#: netbox/ipam/forms/filtersets.py:47 netbox/ipam/forms/model_forms.py:63 -#: netbox/netbox/navigation/menu.py:189 netbox/vpn/forms/model_forms.py:410 +#: ipam/forms/filtersets.py:47 ipam/forms/model_forms.py:63 +#: netbox/navigation/menu.py:189 vpn/forms/model_forms.py:410 msgid "Route Targets" msgstr "Routedoelen" -#: netbox/ipam/forms/filtersets.py:53 netbox/ipam/forms/model_forms.py:50 -#: netbox/vpn/forms/filtersets.py:224 netbox/vpn/forms/model_forms.py:397 +#: ipam/forms/filtersets.py:53 ipam/forms/model_forms.py:50 +#: vpn/forms/filtersets.py:224 vpn/forms/model_forms.py:397 msgid "Import targets" msgstr "Doelen importeren" -#: netbox/ipam/forms/filtersets.py:58 netbox/ipam/forms/model_forms.py:55 -#: netbox/vpn/forms/filtersets.py:229 netbox/vpn/forms/model_forms.py:402 +#: ipam/forms/filtersets.py:58 ipam/forms/model_forms.py:55 +#: vpn/forms/filtersets.py:229 vpn/forms/model_forms.py:402 msgid "Export targets" msgstr "Doelen exporteren" -#: netbox/ipam/forms/filtersets.py:73 +#: ipam/forms/filtersets.py:73 msgid "Imported by VRF" msgstr "Geïmporteerd door VRF" -#: netbox/ipam/forms/filtersets.py:78 +#: ipam/forms/filtersets.py:78 msgid "Exported by VRF" msgstr "Geëxporteerd door VRF" -#: netbox/ipam/forms/filtersets.py:87 netbox/ipam/tables/ip.py:89 -#: netbox/templates/ipam/rir.html:30 +#: ipam/forms/filtersets.py:87 ipam/tables/ip.py:89 templates/ipam/rir.html:30 msgid "Private" msgstr "Privé" -#: netbox/ipam/forms/filtersets.py:105 netbox/ipam/forms/filtersets.py:191 -#: netbox/ipam/forms/filtersets.py:272 netbox/ipam/forms/filtersets.py:326 +#: ipam/forms/filtersets.py:105 ipam/forms/filtersets.py:191 +#: ipam/forms/filtersets.py:272 ipam/forms/filtersets.py:326 msgid "Address family" msgstr "Adres familie" -#: netbox/ipam/forms/filtersets.py:119 netbox/templates/ipam/asnrange.html:25 +#: ipam/forms/filtersets.py:119 templates/ipam/asnrange.html:25 msgid "Range" msgstr "Assortiment" -#: netbox/ipam/forms/filtersets.py:128 +#: ipam/forms/filtersets.py:128 msgid "Start" msgstr "Begin" -#: netbox/ipam/forms/filtersets.py:132 +#: ipam/forms/filtersets.py:132 msgid "End" msgstr "Einde" -#: netbox/ipam/forms/filtersets.py:186 +#: ipam/forms/filtersets.py:186 msgid "Search within" msgstr "Zoek binnen" -#: netbox/ipam/forms/filtersets.py:207 netbox/ipam/forms/filtersets.py:342 +#: ipam/forms/filtersets.py:207 ipam/forms/filtersets.py:342 msgid "Present in VRF" msgstr "Aanwezig in VRF" -#: netbox/ipam/forms/filtersets.py:311 +#: ipam/forms/filtersets.py:311 msgid "Device/VM" msgstr "Apparaat/VM" -#: netbox/ipam/forms/filtersets.py:321 +#: ipam/forms/filtersets.py:321 msgid "Parent Prefix" msgstr "Voorvoegsel voor ouders" -#: netbox/ipam/forms/filtersets.py:347 +#: ipam/forms/filtersets.py:347 msgid "Assigned Device" msgstr "Toegewezen apparaat" -#: netbox/ipam/forms/filtersets.py:352 +#: ipam/forms/filtersets.py:352 msgid "Assigned VM" msgstr "Toegewezen VM" -#: netbox/ipam/forms/filtersets.py:366 +#: ipam/forms/filtersets.py:366 msgid "Assigned to an interface" msgstr "Toegewezen aan een interface" -#: netbox/ipam/forms/filtersets.py:373 netbox/templates/ipam/ipaddress.html:51 +#: ipam/forms/filtersets.py:373 templates/ipam/ipaddress.html:51 msgid "DNS Name" msgstr "DNS-naam" -#: netbox/ipam/forms/filtersets.py:416 netbox/ipam/models/vlans.py:235 -#: netbox/ipam/tables/ip.py:176 netbox/ipam/tables/vlans.py:82 -#: netbox/ipam/views.py:971 netbox/netbox/navigation/menu.py:193 -#: netbox/netbox/navigation/menu.py:195 +#: ipam/forms/filtersets.py:416 ipam/models/vlans.py:235 ipam/tables/ip.py:176 +#: ipam/tables/vlans.py:82 ipam/views.py:971 netbox/navigation/menu.py:193 +#: netbox/navigation/menu.py:195 msgid "VLANs" msgstr "VLAN's" -#: netbox/ipam/forms/filtersets.py:457 +#: ipam/forms/filtersets.py:457 msgid "Contains VLAN ID" msgstr "Bevat VLAN-ID" -#: netbox/ipam/forms/filtersets.py:513 netbox/ipam/models/vlans.py:176 -#: netbox/templates/ipam/vlan.html:31 +#: ipam/forms/filtersets.py:513 ipam/models/vlans.py:176 +#: templates/ipam/vlan.html:31 msgid "VLAN ID" msgstr "VLAN-ID" -#: netbox/ipam/forms/filtersets.py:556 netbox/ipam/forms/model_forms.py:320 -#: netbox/ipam/forms/model_forms.py:713 netbox/ipam/forms/model_forms.py:739 -#: netbox/ipam/tables/vlans.py:195 -#: netbox/templates/virtualization/virtualdisk.html:21 -#: netbox/templates/virtualization/virtualmachine.html:12 -#: netbox/templates/virtualization/vminterface.html:21 -#: netbox/templates/vpn/tunneltermination.html:25 -#: netbox/virtualization/forms/filtersets.py:197 -#: netbox/virtualization/forms/filtersets.py:242 -#: netbox/virtualization/forms/model_forms.py:220 -#: netbox/virtualization/tables/virtualmachines.py:135 -#: netbox/virtualization/tables/virtualmachines.py:190 -#: netbox/vpn/choices.py:45 netbox/vpn/forms/filtersets.py:293 -#: netbox/vpn/forms/model_forms.py:160 netbox/vpn/forms/model_forms.py:171 -#: netbox/vpn/forms/model_forms.py:273 netbox/vpn/forms/model_forms.py:454 +#: ipam/forms/filtersets.py:556 ipam/forms/model_forms.py:320 +#: ipam/forms/model_forms.py:713 ipam/forms/model_forms.py:739 +#: ipam/tables/vlans.py:195 templates/virtualization/virtualdisk.html:21 +#: templates/virtualization/virtualmachine.html:12 +#: templates/virtualization/vminterface.html:21 +#: templates/vpn/tunneltermination.html:25 +#: virtualization/forms/filtersets.py:197 +#: virtualization/forms/filtersets.py:242 +#: virtualization/forms/model_forms.py:220 +#: virtualization/tables/virtualmachines.py:135 +#: virtualization/tables/virtualmachines.py:190 vpn/choices.py:45 +#: vpn/forms/filtersets.py:293 vpn/forms/model_forms.py:160 +#: vpn/forms/model_forms.py:171 vpn/forms/model_forms.py:273 +#: vpn/forms/model_forms.py:454 msgid "Virtual Machine" msgstr "Virtuele machine" -#: netbox/ipam/forms/model_forms.py:80 -#: netbox/templates/ipam/routetarget.html:10 +#: ipam/forms/model_forms.py:80 templates/ipam/routetarget.html:10 msgid "Route Target" msgstr "Doel van de route" -#: netbox/ipam/forms/model_forms.py:114 netbox/ipam/tables/ip.py:117 -#: netbox/templates/ipam/aggregate.html:11 -#: netbox/templates/ipam/prefix.html:38 +#: ipam/forms/model_forms.py:114 ipam/tables/ip.py:117 +#: templates/ipam/aggregate.html:11 templates/ipam/prefix.html:38 msgid "Aggregate" msgstr "Aggregaat" -#: netbox/ipam/forms/model_forms.py:135 netbox/templates/ipam/asnrange.html:12 +#: ipam/forms/model_forms.py:135 templates/ipam/asnrange.html:12 msgid "ASN Range" msgstr "ASN-assortiment" -#: netbox/ipam/forms/model_forms.py:231 +#: ipam/forms/model_forms.py:231 msgid "Site/VLAN Assignment" msgstr "Site/VLAN-toewijzing" -#: netbox/ipam/forms/model_forms.py:259 netbox/templates/ipam/iprange.html:10 +#: ipam/forms/model_forms.py:259 templates/ipam/iprange.html:10 msgid "IP Range" msgstr "IP-bereik" -#: netbox/ipam/forms/model_forms.py:295 netbox/ipam/forms/model_forms.py:321 -#: netbox/ipam/forms/model_forms.py:473 -#: netbox/templates/ipam/fhrpgroup.html:19 +#: ipam/forms/model_forms.py:295 ipam/forms/model_forms.py:321 +#: ipam/forms/model_forms.py:473 templates/ipam/fhrpgroup.html:19 msgid "FHRP Group" msgstr "FHRP-groep" -#: netbox/ipam/forms/model_forms.py:310 +#: ipam/forms/model_forms.py:310 msgid "Make this the primary IP for the device/VM" msgstr "Maak dit het primaire IP-adres voor het apparaat/VM" -#: netbox/ipam/forms/model_forms.py:325 +#: ipam/forms/model_forms.py:325 msgid "NAT IP (Inside)" msgstr "NAT IP (binnenin)" -#: netbox/ipam/forms/model_forms.py:384 +#: ipam/forms/model_forms.py:384 msgid "An IP address can only be assigned to a single object." msgstr "Een IP-adres kan slechts aan één object worden toegewezen." -#: netbox/ipam/forms/model_forms.py:390 netbox/ipam/models/ip.py:897 +#: ipam/forms/model_forms.py:390 ipam/models/ip.py:897 msgid "" "Cannot reassign IP address while it is designated as the primary IP for the " "parent object" @@ -9890,31 +9295,30 @@ msgstr "" "Kan het IP-adres niet opnieuw toewijzen terwijl dit is aangewezen als het " "primaire IP-adres voor het bovenliggende object" -#: netbox/ipam/forms/model_forms.py:400 +#: ipam/forms/model_forms.py:400 msgid "" "Only IP addresses assigned to an interface can be designated as primary IPs." msgstr "" "Alleen IP-adressen die aan een interface zijn toegewezen, kunnen als " "primaire IP-adressen worden aangeduid." -#: netbox/ipam/forms/model_forms.py:475 +#: ipam/forms/model_forms.py:475 msgid "Virtual IP Address" msgstr "Virtueel IP-adres" -#: netbox/ipam/forms/model_forms.py:560 +#: ipam/forms/model_forms.py:560 msgid "Assignment already exists" msgstr "De opdracht bestaat al" -#: netbox/ipam/forms/model_forms.py:569 -#: netbox/templates/ipam/vlangroup.html:42 +#: ipam/forms/model_forms.py:569 templates/ipam/vlangroup.html:42 msgid "VLAN IDs" msgstr "VLAN-ID's" -#: netbox/ipam/forms/model_forms.py:587 +#: ipam/forms/model_forms.py:587 msgid "Child VLANs" msgstr "Kind-VLAN's" -#: netbox/ipam/forms/model_forms.py:664 netbox/ipam/forms/model_forms.py:696 +#: ipam/forms/model_forms.py:664 ipam/forms/model_forms.py:696 msgid "" "Comma-separated list of one or more port numbers. A range may be specified " "using a hyphen." @@ -9922,135 +9326,134 @@ msgstr "" "Door komma's gescheiden lijst van een of meer poortnummers. Een bereik kan " "worden gespecificeerd met een koppelteken." -#: netbox/ipam/forms/model_forms.py:669 -#: netbox/templates/ipam/servicetemplate.html:12 +#: ipam/forms/model_forms.py:669 templates/ipam/servicetemplate.html:12 msgid "Service Template" msgstr "Servicesjabloon" -#: netbox/ipam/forms/model_forms.py:716 +#: ipam/forms/model_forms.py:716 msgid "Port(s)" msgstr "Poort (en)" -#: netbox/ipam/forms/model_forms.py:717 netbox/ipam/forms/model_forms.py:745 -#: netbox/templates/ipam/service.html:21 +#: ipam/forms/model_forms.py:717 ipam/forms/model_forms.py:745 +#: templates/ipam/service.html:21 msgid "Service" msgstr "Service" -#: netbox/ipam/forms/model_forms.py:730 +#: ipam/forms/model_forms.py:730 msgid "Service template" msgstr "Servicesjabloon" -#: netbox/ipam/forms/model_forms.py:742 +#: ipam/forms/model_forms.py:742 msgid "From Template" msgstr "Van sjabloon" -#: netbox/ipam/forms/model_forms.py:743 +#: ipam/forms/model_forms.py:743 msgid "Custom" msgstr "Op maat" -#: netbox/ipam/forms/model_forms.py:773 +#: ipam/forms/model_forms.py:773 msgid "" "Must specify name, protocol, and port(s) if not using a service template." msgstr "" "U moet de naam, het protocol en de poort (en) opgeven als u geen " "servicesjabloon gebruikt." -#: netbox/ipam/models/asns.py:34 +#: ipam/models/asns.py:34 msgid "start" msgstr "begin" -#: netbox/ipam/models/asns.py:51 +#: ipam/models/asns.py:51 msgid "ASN range" msgstr "ASN-assortiment" -#: netbox/ipam/models/asns.py:52 +#: ipam/models/asns.py:52 msgid "ASN ranges" msgstr "ASN-reeksen" -#: netbox/ipam/models/asns.py:72 +#: ipam/models/asns.py:72 #, python-brace-format msgid "Starting ASN ({start}) must be lower than ending ASN ({end})." msgstr "ASN starten ({start}) moet lager zijn dan het einde van ASN ({end})." -#: netbox/ipam/models/asns.py:104 +#: ipam/models/asns.py:104 msgid "Regional Internet Registry responsible for this AS number space" msgstr "" "Regionaal internetregister dat verantwoordelijk is voor deze AS-nummerruimte" -#: netbox/ipam/models/asns.py:109 +#: ipam/models/asns.py:109 msgid "16- or 32-bit autonomous system number" msgstr "16- of 32-bits autonoom systeemnummer" -#: netbox/ipam/models/fhrp.py:22 +#: ipam/models/fhrp.py:22 msgid "group ID" msgstr "groeps-ID" -#: netbox/ipam/models/fhrp.py:30 netbox/ipam/models/services.py:22 +#: ipam/models/fhrp.py:30 ipam/models/services.py:22 msgid "protocol" msgstr "protocol" -#: netbox/ipam/models/fhrp.py:38 netbox/wireless/models.py:28 +#: ipam/models/fhrp.py:38 wireless/models.py:28 msgid "authentication type" msgstr "authenticatietype" -#: netbox/ipam/models/fhrp.py:43 +#: ipam/models/fhrp.py:43 msgid "authentication key" msgstr "authenticatiesleutel" -#: netbox/ipam/models/fhrp.py:56 +#: ipam/models/fhrp.py:56 msgid "FHRP group" msgstr "FHRP-groep" -#: netbox/ipam/models/fhrp.py:57 +#: ipam/models/fhrp.py:57 msgid "FHRP groups" msgstr "FHRP-groepen" -#: netbox/ipam/models/fhrp.py:113 +#: ipam/models/fhrp.py:113 msgid "FHRP group assignment" msgstr "FHRP-groepsopdracht" -#: netbox/ipam/models/fhrp.py:114 +#: ipam/models/fhrp.py:114 msgid "FHRP group assignments" msgstr "FHRP-groepstoewijzingen" -#: netbox/ipam/models/ip.py:65 +#: ipam/models/ip.py:65 msgid "private" msgstr "privé" -#: netbox/ipam/models/ip.py:66 +#: ipam/models/ip.py:66 msgid "IP space managed by this RIR is considered private" msgstr "IP-ruimte die door deze RIR wordt beheerd, wordt als privé beschouwd" -#: netbox/ipam/models/ip.py:72 netbox/netbox/navigation/menu.py:182 +#: ipam/models/ip.py:72 netbox/navigation/menu.py:182 msgid "RIRs" msgstr "RIR's" -#: netbox/ipam/models/ip.py:84 +#: ipam/models/ip.py:84 msgid "IPv4 or IPv6 network" msgstr "IPv4- of IPv6-netwerk" -#: netbox/ipam/models/ip.py:91 +#: ipam/models/ip.py:91 msgid "Regional Internet Registry responsible for this IP space" msgstr "" "Regionaal internetregister dat verantwoordelijk is voor deze IP-ruimte" -#: netbox/ipam/models/ip.py:101 +#: ipam/models/ip.py:101 msgid "date added" msgstr "datum toegevoegd" -#: netbox/ipam/models/ip.py:115 +#: ipam/models/ip.py:115 msgid "aggregate" msgstr "totaal" -#: netbox/ipam/models/ip.py:116 +#: ipam/models/ip.py:116 msgid "aggregates" msgstr "totalen" -#: netbox/ipam/models/ip.py:132 +#: ipam/models/ip.py:132 msgid "Cannot create aggregate with /0 mask." msgstr "Kan geen aggregaat maken met een masker /0." -#: netbox/ipam/models/ip.py:144 +#: ipam/models/ip.py:144 #, python-brace-format msgid "" "Aggregates cannot overlap. {prefix} is already covered by an existing " @@ -10059,7 +9462,7 @@ msgstr "" "Aggregaten kunnen elkaar niet overlappen. {prefix} is al gedekt door een " "bestaand aggregaat ({aggregate})." -#: netbox/ipam/models/ip.py:158 +#: ipam/models/ip.py:158 #, python-brace-format msgid "" "Prefixes cannot overlap aggregates. {prefix} covers an existing aggregate " @@ -10068,234 +9471,232 @@ msgstr "" "Voorvoegsels mogen aggregaten niet overlappen. {prefix} omvat een bestaand " "aggregaat ({aggregate})." -#: netbox/ipam/models/ip.py:200 netbox/ipam/models/ip.py:737 -#: netbox/vpn/models/tunnels.py:114 +#: ipam/models/ip.py:200 ipam/models/ip.py:737 vpn/models/tunnels.py:114 msgid "role" msgstr "functie" -#: netbox/ipam/models/ip.py:201 +#: ipam/models/ip.py:201 msgid "roles" msgstr "rollen" -#: netbox/ipam/models/ip.py:217 netbox/ipam/models/ip.py:293 +#: ipam/models/ip.py:217 ipam/models/ip.py:293 msgid "prefix" msgstr "voorvoegsel" -#: netbox/ipam/models/ip.py:218 +#: ipam/models/ip.py:218 msgid "IPv4 or IPv6 network with mask" msgstr "IPv4- of IPv6-netwerk met masker" -#: netbox/ipam/models/ip.py:254 +#: ipam/models/ip.py:254 msgid "Operational status of this prefix" msgstr "Operationele status van dit voorvoegsel" -#: netbox/ipam/models/ip.py:262 +#: ipam/models/ip.py:262 msgid "The primary function of this prefix" msgstr "De primaire functie van dit voorvoegsel" -#: netbox/ipam/models/ip.py:265 +#: ipam/models/ip.py:265 msgid "is a pool" msgstr "is een pool" -#: netbox/ipam/models/ip.py:267 +#: ipam/models/ip.py:267 msgid "All IP addresses within this prefix are considered usable" msgstr "" "Alle IP-adressen binnen dit voorvoegsel worden als bruikbaar beschouwd" -#: netbox/ipam/models/ip.py:270 netbox/ipam/models/ip.py:537 +#: ipam/models/ip.py:270 ipam/models/ip.py:537 msgid "mark utilized" msgstr "merk gebruikt" -#: netbox/ipam/models/ip.py:294 +#: ipam/models/ip.py:294 msgid "prefixes" msgstr "voorvoegsels" -#: netbox/ipam/models/ip.py:317 +#: ipam/models/ip.py:317 msgid "Cannot create prefix with /0 mask." msgstr "Kan geen voorvoegsel aanmaken met het masker /0." -#: netbox/ipam/models/ip.py:324 netbox/ipam/models/ip.py:874 +#: ipam/models/ip.py:324 ipam/models/ip.py:874 #, python-brace-format msgid "VRF {vrf}" msgstr "VRF {vrf}" -#: netbox/ipam/models/ip.py:324 netbox/ipam/models/ip.py:874 +#: ipam/models/ip.py:324 ipam/models/ip.py:874 msgid "global table" msgstr "globale tabel" -#: netbox/ipam/models/ip.py:326 +#: ipam/models/ip.py:326 #, python-brace-format msgid "Duplicate prefix found in {table}: {prefix}" msgstr "Duplicaat voorvoegsel gevonden in {table}: {prefix}" -#: netbox/ipam/models/ip.py:495 +#: ipam/models/ip.py:495 msgid "start address" msgstr "startadres" -#: netbox/ipam/models/ip.py:496 netbox/ipam/models/ip.py:500 -#: netbox/ipam/models/ip.py:712 +#: ipam/models/ip.py:496 ipam/models/ip.py:500 ipam/models/ip.py:712 msgid "IPv4 or IPv6 address (with mask)" msgstr "IPv4- of IPv6-adres (met masker)" -#: netbox/ipam/models/ip.py:499 +#: ipam/models/ip.py:499 msgid "end address" msgstr "eindadres" -#: netbox/ipam/models/ip.py:526 +#: ipam/models/ip.py:526 msgid "Operational status of this range" msgstr "Operationele status van deze serie" -#: netbox/ipam/models/ip.py:534 +#: ipam/models/ip.py:534 msgid "The primary function of this range" msgstr "De primaire functie van dit assortiment" -#: netbox/ipam/models/ip.py:548 +#: ipam/models/ip.py:548 msgid "IP range" msgstr "IP-bereik" -#: netbox/ipam/models/ip.py:549 +#: ipam/models/ip.py:549 msgid "IP ranges" msgstr "IP-bereiken" -#: netbox/ipam/models/ip.py:565 +#: ipam/models/ip.py:565 msgid "Starting and ending IP address versions must match" msgstr "" "De versies van het begin- en eindpunt van het IP-adres moeten overeenkomen" -#: netbox/ipam/models/ip.py:571 +#: ipam/models/ip.py:571 msgid "Starting and ending IP address masks must match" msgstr "De IP-adresmaskers voor het begin en einde moeten overeenkomen" -#: netbox/ipam/models/ip.py:578 +#: ipam/models/ip.py:578 #, python-brace-format msgid "" "Ending address must be greater than the starting address ({start_address})" msgstr "Het eindadres moet groter zijn dan het beginadres ({start_address})" -#: netbox/ipam/models/ip.py:590 +#: ipam/models/ip.py:590 #, python-brace-format msgid "Defined addresses overlap with range {overlapping_range} in VRF {vrf}" msgstr "" "Gedefinieerde adressen overlappen met het bereik {overlapping_range} in VRF " "{vrf}" -#: netbox/ipam/models/ip.py:599 +#: ipam/models/ip.py:599 #, python-brace-format msgid "Defined range exceeds maximum supported size ({max_size})" msgstr "" "Het gedefinieerde bereik overschrijdt de maximale ondersteunde grootte " "({max_size})" -#: netbox/ipam/models/ip.py:711 netbox/tenancy/models/contacts.py:82 +#: ipam/models/ip.py:711 tenancy/models/contacts.py:82 msgid "address" msgstr "adres" -#: netbox/ipam/models/ip.py:734 +#: ipam/models/ip.py:734 msgid "The operational status of this IP" msgstr "De operationele status van dit IP-adres" -#: netbox/ipam/models/ip.py:741 +#: ipam/models/ip.py:741 msgid "The functional role of this IP" msgstr "De functionele rol van dit IP-adres" -#: netbox/ipam/models/ip.py:765 netbox/templates/ipam/ipaddress.html:72 +#: ipam/models/ip.py:765 templates/ipam/ipaddress.html:72 msgid "NAT (inside)" msgstr "NAT (binnen)" -#: netbox/ipam/models/ip.py:766 +#: ipam/models/ip.py:766 msgid "The IP for which this address is the \"outside\" IP" msgstr "Het IP-adres waarvoor dit adres het „externe” IP-adres is" -#: netbox/ipam/models/ip.py:773 +#: ipam/models/ip.py:773 msgid "Hostname or FQDN (not case-sensitive)" msgstr "Hostnaam of FQDN (niet hoofdlettergevoelig)" -#: netbox/ipam/models/ip.py:789 netbox/ipam/models/services.py:94 +#: ipam/models/ip.py:789 ipam/models/services.py:94 msgid "IP addresses" msgstr "IP-adressen" -#: netbox/ipam/models/ip.py:845 +#: ipam/models/ip.py:845 msgid "Cannot create IP address with /0 mask." msgstr "Kan geen IP-adres aanmaken met een masker /0." -#: netbox/ipam/models/ip.py:851 +#: ipam/models/ip.py:851 #, python-brace-format msgid "{ip} is a network ID, which may not be assigned to an interface." msgstr "" "{ip} is een netwerk-ID, die mogelijk niet aan een interface is toegewezen." -#: netbox/ipam/models/ip.py:862 +#: ipam/models/ip.py:862 #, python-brace-format msgid "" "{ip} is a broadcast address, which may not be assigned to an interface." msgstr "" "{ip} is een uitzendadres dat mogelijk niet aan een interface is toegewezen." -#: netbox/ipam/models/ip.py:876 +#: ipam/models/ip.py:876 #, python-brace-format msgid "Duplicate IP address found in {table}: {ipaddress}" msgstr "Duplicaat IP-adres gevonden in {table}: {ipaddress}" -#: netbox/ipam/models/ip.py:903 +#: ipam/models/ip.py:903 msgid "Only IPv6 addresses can be assigned SLAAC status" msgstr "Alleen IPv6-adressen kunnen een SLAAC-status krijgen" -#: netbox/ipam/models/services.py:33 +#: ipam/models/services.py:33 msgid "port numbers" msgstr "poortnummers" -#: netbox/ipam/models/services.py:59 +#: ipam/models/services.py:59 msgid "service template" msgstr "servicesjabloon" -#: netbox/ipam/models/services.py:60 +#: ipam/models/services.py:60 msgid "service templates" msgstr "servicesjablonen" -#: netbox/ipam/models/services.py:95 +#: ipam/models/services.py:95 msgid "The specific IP addresses (if any) to which this service is bound" msgstr "" "De specifieke IP-adressen (indien aanwezig) waaraan deze service is " "gekoppeld" -#: netbox/ipam/models/services.py:102 +#: ipam/models/services.py:102 msgid "service" msgstr "service" -#: netbox/ipam/models/services.py:103 +#: ipam/models/services.py:103 msgid "services" msgstr "diensten" -#: netbox/ipam/models/services.py:117 +#: ipam/models/services.py:117 msgid "" "A service cannot be associated with both a device and a virtual machine." msgstr "" "Een service kan niet worden gekoppeld aan zowel een apparaat als een " "virtuele machine." -#: netbox/ipam/models/services.py:119 +#: ipam/models/services.py:119 msgid "" "A service must be associated with either a device or a virtual machine." msgstr "" "Een service moet gekoppeld zijn aan een apparaat of een virtuele machine." -#: netbox/ipam/models/vlans.py:85 +#: ipam/models/vlans.py:85 msgid "VLAN groups" msgstr "VLAN-groepen" -#: netbox/ipam/models/vlans.py:95 +#: ipam/models/vlans.py:95 msgid "Cannot set scope_type without scope_id." msgstr "Kan scope_type niet instellen zonder scope_id." -#: netbox/ipam/models/vlans.py:97 +#: ipam/models/vlans.py:97 msgid "Cannot set scope_id without scope_type." msgstr "Kan scope_id niet instellen zonder scope_type." -#: netbox/ipam/models/vlans.py:101 +#: ipam/models/vlans.py:101 msgid "Ranges cannot overlap." msgstr "Bereiken kunnen elkaar niet overlappen." -#: netbox/ipam/models/vlans.py:106 +#: ipam/models/vlans.py:106 #, python-brace-format msgid "" "Maximum child VID must be greater than or equal to minimum child VID " @@ -10304,27 +9705,27 @@ msgstr "" "De maximale VID voor kinderen moet groter zijn dan of gelijk zijn aan de " "minimale VID voor kinderen ({value})" -#: netbox/ipam/models/vlans.py:165 +#: ipam/models/vlans.py:165 msgid "The specific site to which this VLAN is assigned (if any)" msgstr "De specifieke site waaraan dit VLAN is toegewezen (indien aanwezig)" -#: netbox/ipam/models/vlans.py:173 +#: ipam/models/vlans.py:173 msgid "VLAN group (optional)" msgstr "VLAN-groep (optioneel)" -#: netbox/ipam/models/vlans.py:181 +#: ipam/models/vlans.py:181 msgid "Numeric VLAN ID (1-4094)" msgstr "Numerieke VLAN-id (1-4094)" -#: netbox/ipam/models/vlans.py:199 +#: ipam/models/vlans.py:199 msgid "Operational status of this VLAN" msgstr "Operationele status van dit VLAN" -#: netbox/ipam/models/vlans.py:207 +#: ipam/models/vlans.py:207 msgid "The primary function of this VLAN" msgstr "De primaire functie van dit VLAN" -#: netbox/ipam/models/vlans.py:250 +#: ipam/models/vlans.py:250 #, python-brace-format msgid "" "VLAN is assigned to group {group} (scope: {scope}); cannot also assign to " @@ -10333,171 +9734,169 @@ msgstr "" "VLAN is toegewezen aan de groep {group} (toepassingsgebied: {scope}); kan " "niet ook aan de site worden toegewezen {site}." -#: netbox/ipam/models/vlans.py:259 +#: ipam/models/vlans.py:259 #, python-brace-format msgid "VID must be in ranges {ranges} for VLANs in group {group}" msgstr "VID moet binnen bereik zijn {ranges} voor VLAN's in groep {group}" -#: netbox/ipam/models/vrfs.py:30 +#: ipam/models/vrfs.py:30 msgid "route distinguisher" msgstr "route-onderscheider" -#: netbox/ipam/models/vrfs.py:31 +#: ipam/models/vrfs.py:31 msgid "Unique route distinguisher (as defined in RFC 4364)" msgstr "Unieke routedifferentiator (zoals gedefinieerd in RFC 4364)" -#: netbox/ipam/models/vrfs.py:42 +#: ipam/models/vrfs.py:42 msgid "enforce unique space" msgstr "unieke ruimte afdwingen" -#: netbox/ipam/models/vrfs.py:43 +#: ipam/models/vrfs.py:43 msgid "Prevent duplicate prefixes/IP addresses within this VRF" msgstr "Voorkom dubbele voorvoegsels/IP-adressen in deze VRF" -#: netbox/ipam/models/vrfs.py:63 netbox/netbox/navigation/menu.py:186 -#: netbox/netbox/navigation/menu.py:188 +#: ipam/models/vrfs.py:63 netbox/navigation/menu.py:186 +#: netbox/navigation/menu.py:188 msgid "VRFs" msgstr "VRF's" -#: netbox/ipam/models/vrfs.py:82 +#: ipam/models/vrfs.py:82 msgid "Route target value (formatted in accordance with RFC 4360)" msgstr "" "Doelwaarde van de route (geformatteerd in overeenstemming met RFC 4360)" -#: netbox/ipam/models/vrfs.py:94 +#: ipam/models/vrfs.py:94 msgid "route target" msgstr "doel van de route" -#: netbox/ipam/models/vrfs.py:95 +#: ipam/models/vrfs.py:95 msgid "route targets" msgstr "routedoelen" -#: netbox/ipam/tables/asn.py:52 +#: ipam/tables/asn.py:52 msgid "ASDOT" msgstr "ASDOT" -#: netbox/ipam/tables/asn.py:57 +#: ipam/tables/asn.py:57 msgid "Site Count" msgstr "Aantal sites" -#: netbox/ipam/tables/asn.py:62 +#: ipam/tables/asn.py:62 msgid "Provider Count" msgstr "Aantal providers" -#: netbox/ipam/tables/ip.py:95 netbox/netbox/navigation/menu.py:179 -#: netbox/netbox/navigation/menu.py:181 +#: ipam/tables/ip.py:95 netbox/navigation/menu.py:179 +#: netbox/navigation/menu.py:181 msgid "Aggregates" msgstr "Totalen" -#: netbox/ipam/tables/ip.py:125 +#: ipam/tables/ip.py:125 msgid "Added" msgstr "Toegevoegd" -#: netbox/ipam/tables/ip.py:128 netbox/ipam/tables/ip.py:166 -#: netbox/ipam/tables/vlans.py:142 netbox/ipam/views.py:346 -#: netbox/netbox/navigation/menu.py:165 netbox/netbox/navigation/menu.py:167 -#: netbox/templates/ipam/vlan.html:84 +#: ipam/tables/ip.py:128 ipam/tables/ip.py:166 ipam/tables/vlans.py:142 +#: ipam/views.py:346 netbox/navigation/menu.py:165 +#: netbox/navigation/menu.py:167 templates/ipam/vlan.html:84 msgid "Prefixes" msgstr "Voorvoegsels" -#: netbox/ipam/tables/ip.py:131 netbox/ipam/tables/ip.py:270 -#: netbox/ipam/tables/ip.py:324 netbox/ipam/tables/vlans.py:86 -#: netbox/templates/dcim/device.html:260 -#: netbox/templates/ipam/aggregate.html:24 -#: netbox/templates/ipam/iprange.html:29 netbox/templates/ipam/prefix.html:106 +#: ipam/tables/ip.py:131 ipam/tables/ip.py:270 ipam/tables/ip.py:324 +#: ipam/tables/vlans.py:86 templates/dcim/device.html:260 +#: templates/ipam/aggregate.html:24 templates/ipam/iprange.html:29 +#: templates/ipam/prefix.html:106 msgid "Utilization" msgstr "Gebruik" -#: netbox/ipam/tables/ip.py:171 netbox/netbox/navigation/menu.py:161 +#: ipam/tables/ip.py:171 netbox/navigation/menu.py:161 msgid "IP Ranges" msgstr "IP-bereiken" -#: netbox/ipam/tables/ip.py:221 +#: ipam/tables/ip.py:221 msgid "Prefix (Flat)" msgstr "Voorvoegsel (plat)" -#: netbox/ipam/tables/ip.py:225 +#: ipam/tables/ip.py:225 msgid "Depth" msgstr "Diepte" -#: netbox/ipam/tables/ip.py:262 +#: ipam/tables/ip.py:262 msgid "Pool" msgstr "Pool" -#: netbox/ipam/tables/ip.py:266 netbox/ipam/tables/ip.py:320 +#: ipam/tables/ip.py:266 ipam/tables/ip.py:320 msgid "Marked Utilized" msgstr "Gemarkeerd als gebruikt" -#: netbox/ipam/tables/ip.py:304 +#: ipam/tables/ip.py:304 msgid "Start address" msgstr "Startadres" -#: netbox/ipam/tables/ip.py:383 +#: ipam/tables/ip.py:383 msgid "NAT (Inside)" msgstr "NAT (binnenkant)" -#: netbox/ipam/tables/ip.py:388 +#: ipam/tables/ip.py:388 msgid "NAT (Outside)" msgstr "NAT (buiten)" -#: netbox/ipam/tables/ip.py:393 +#: ipam/tables/ip.py:393 msgid "Assigned" msgstr "Toegewezen" -#: netbox/ipam/tables/ip.py:429 netbox/templates/vpn/l2vpntermination.html:16 -#: netbox/vpn/forms/filtersets.py:240 +#: ipam/tables/ip.py:429 templates/vpn/l2vpntermination.html:16 +#: vpn/forms/filtersets.py:240 msgid "Assigned Object" msgstr "Toegewezen object" -#: netbox/ipam/tables/vlans.py:68 +#: ipam/tables/vlans.py:68 msgid "Scope Type" msgstr "Soort toepassingsgebied" -#: netbox/ipam/tables/vlans.py:76 +#: ipam/tables/vlans.py:76 msgid "VID Ranges" msgstr "VID-reeksen" -#: netbox/ipam/tables/vlans.py:111 netbox/ipam/tables/vlans.py:214 -#: netbox/templates/dcim/inc/interface_vlans_table.html:4 +#: ipam/tables/vlans.py:111 ipam/tables/vlans.py:214 +#: templates/dcim/inc/interface_vlans_table.html:4 msgid "VID" msgstr "VID" -#: netbox/ipam/tables/vrfs.py:30 +#: ipam/tables/vrfs.py:30 msgid "RD" msgstr "RD" -#: netbox/ipam/tables/vrfs.py:33 +#: ipam/tables/vrfs.py:33 msgid "Unique" msgstr "Uniek" -#: netbox/ipam/tables/vrfs.py:37 netbox/vpn/tables/l2vpn.py:27 +#: ipam/tables/vrfs.py:37 vpn/tables/l2vpn.py:27 msgid "Import Targets" msgstr "Doelen importeren" -#: netbox/ipam/tables/vrfs.py:42 netbox/vpn/tables/l2vpn.py:32 +#: ipam/tables/vrfs.py:42 vpn/tables/l2vpn.py:32 msgid "Export Targets" msgstr "Doelen exporteren" -#: netbox/ipam/validators.py:9 +#: ipam/validators.py:9 #, python-brace-format msgid "{prefix} is not a valid prefix. Did you mean {suggested}?" msgstr "{prefix} is geen geldig voorvoegsel. Bedoelde je {suggested}?" -#: netbox/ipam/validators.py:16 +#: ipam/validators.py:16 #, python-format msgid "The prefix length must be less than or equal to %(limit_value)s." msgstr "" "De lengte van het voorvoegsel moet kleiner zijn dan of gelijk aan " "%(limit_value)s." -#: netbox/ipam/validators.py:24 +#: ipam/validators.py:24 #, python-format msgid "The prefix length must be greater than or equal to %(limit_value)s." msgstr "" "De lengte van het voorvoegsel moet groter zijn dan of gelijk zijn aan " "%(limit_value)s." -#: netbox/ipam/validators.py:33 +#: ipam/validators.py:33 msgid "" "Only alphanumeric characters, asterisks, hyphens, periods, and underscores " "are allowed in DNS names" @@ -10505,31 +9904,31 @@ msgstr "" "Alleen alfanumerieke tekens, sterretjes, koppeltekens, punten en " "onderstrepingstekens zijn toegestaan in DNS-namen" -#: netbox/ipam/views.py:533 +#: ipam/views.py:533 msgid "Child Prefixes" msgstr "Voorvoegsels voor kinderen" -#: netbox/ipam/views.py:569 +#: ipam/views.py:569 msgid "Child Ranges" msgstr "Ranges voor kinderen" -#: netbox/ipam/views.py:898 +#: ipam/views.py:898 msgid "Related IPs" msgstr "Gerelateerde IP's" -#: netbox/ipam/views.py:1127 +#: ipam/views.py:1127 msgid "Device Interfaces" msgstr "Interfaces voor apparaten" -#: netbox/ipam/views.py:1145 +#: ipam/views.py:1145 msgid "VM Interfaces" msgstr "VM-interfaces" -#: netbox/netbox/api/fields.py:65 +#: netbox/api/fields.py:65 msgid "This field may not be blank." msgstr "Dit veld is mogelijk niet leeg." -#: netbox/netbox/api/fields.py:70 +#: netbox/api/fields.py:70 msgid "" "Value must be passed directly (e.g. \"foo\": 123); do not use a dictionary " "or list." @@ -10537,344 +9936,331 @@ msgstr "" "De waarde moet rechtstreeks worden doorgegeven (bijvoorbeeld „foo”: 123); " "gebruik geen woordenboek of lijst." -#: netbox/netbox/api/fields.py:91 +#: netbox/api/fields.py:91 #, python-brace-format msgid "{value} is not a valid choice." msgstr "{value} is geen geldige keuze." -#: netbox/netbox/api/fields.py:104 +#: netbox/api/fields.py:104 #, python-brace-format msgid "Invalid content type: {content_type}" msgstr "Ongeldig inhoudstype: {content_type}" -#: netbox/netbox/api/fields.py:105 +#: netbox/api/fields.py:105 msgid "Invalid value. Specify a content type as '.'." msgstr "" "Ongeldige waarde. Specificeer een inhoudstype als " "'.'." -#: netbox/netbox/api/fields.py:167 +#: netbox/api/fields.py:167 msgid "Ranges must be specified in the form (lower, upper)." msgstr "" "Bereiken moeten in het formulier worden gespecificeerd (onder, boven)." -#: netbox/netbox/api/fields.py:169 +#: netbox/api/fields.py:169 msgid "Range boundaries must be defined as integers." msgstr "Bereikgrenzen moeten worden gedefinieerd als gehele getallen." -#: netbox/netbox/api/serializers/fields.py:40 +#: netbox/api/serializers/fields.py:40 #, python-brace-format msgid "{class_name} must implement get_view_name()" msgstr "{class_name} moet get_view_name () implementeren" -#: netbox/netbox/authentication/__init__.py:138 +#: netbox/authentication/__init__.py:138 #, python-brace-format msgid "Invalid permission {permission} for model {model}" msgstr "Ongeldige toestemming {permission} voor model {model}" -#: netbox/netbox/choices.py:49 +#: netbox/choices.py:49 msgid "Dark Red" msgstr "Donkerrood" -#: netbox/netbox/choices.py:52 +#: netbox/choices.py:52 msgid "Rose" msgstr "Roos" -#: netbox/netbox/choices.py:53 +#: netbox/choices.py:53 msgid "Fuchsia" msgstr "Fuchsia" -#: netbox/netbox/choices.py:55 +#: netbox/choices.py:55 msgid "Dark Purple" msgstr "Donkerpaars" -#: netbox/netbox/choices.py:58 +#: netbox/choices.py:58 msgid "Light Blue" msgstr "Lichtblauw" -#: netbox/netbox/choices.py:61 +#: netbox/choices.py:61 msgid "Aqua" msgstr "Aqua" -#: netbox/netbox/choices.py:62 +#: netbox/choices.py:62 msgid "Dark Green" msgstr "Donkergroen" -#: netbox/netbox/choices.py:64 +#: netbox/choices.py:64 msgid "Light Green" msgstr "Lichtgroen" -#: netbox/netbox/choices.py:65 +#: netbox/choices.py:65 msgid "Lime" msgstr "Limoen" -#: netbox/netbox/choices.py:67 +#: netbox/choices.py:67 msgid "Amber" msgstr "Amber" -#: netbox/netbox/choices.py:69 +#: netbox/choices.py:69 msgid "Dark Orange" msgstr "Donkeroranje" -#: netbox/netbox/choices.py:70 +#: netbox/choices.py:70 msgid "Brown" msgstr "Bruin" -#: netbox/netbox/choices.py:71 +#: netbox/choices.py:71 msgid "Light Grey" msgstr "Lichtgrijs" -#: netbox/netbox/choices.py:72 +#: netbox/choices.py:72 msgid "Grey" msgstr "Grijs" -#: netbox/netbox/choices.py:73 +#: netbox/choices.py:73 msgid "Dark Grey" msgstr "Donkergrijs" -#: netbox/netbox/choices.py:128 +#: netbox/choices.py:128 msgid "Direct" msgstr "Rechtstreeks" -#: netbox/netbox/choices.py:129 +#: netbox/choices.py:129 msgid "Upload" msgstr "Uploaden" -#: netbox/netbox/choices.py:141 netbox/netbox/choices.py:155 +#: netbox/choices.py:141 netbox/choices.py:155 msgid "Auto-detect" msgstr "Automatisch detecteren" -#: netbox/netbox/choices.py:156 +#: netbox/choices.py:156 msgid "Comma" msgstr "Komma" -#: netbox/netbox/choices.py:157 +#: netbox/choices.py:157 msgid "Semicolon" msgstr "Puntkomma" -#: netbox/netbox/choices.py:158 +#: netbox/choices.py:158 msgid "Tab" msgstr "Tab" -#: netbox/netbox/config/__init__.py:67 +#: netbox/config/__init__.py:67 #, python-brace-format msgid "Invalid configuration parameter: {item}" msgstr "Ongeldige configuratieparameter: {item}" -#: netbox/netbox/config/parameters.py:22 -#: netbox/templates/core/inc/config_data.html:62 +#: netbox/config/parameters.py:22 templates/core/inc/config_data.html:62 msgid "Login banner" msgstr "Banner voor inloggen" -#: netbox/netbox/config/parameters.py:24 +#: netbox/config/parameters.py:24 msgid "Additional content to display on the login page" msgstr "Aanvullende inhoud om weer te geven op de inlogpagina" -#: netbox/netbox/config/parameters.py:33 -#: netbox/templates/core/inc/config_data.html:66 +#: netbox/config/parameters.py:33 templates/core/inc/config_data.html:66 msgid "Maintenance banner" msgstr "Onderhoudsbanner" -#: netbox/netbox/config/parameters.py:35 +#: netbox/config/parameters.py:35 msgid "Additional content to display when in maintenance mode" msgstr "Aanvullende inhoud om weer te geven in de onderhoudsmodus" -#: netbox/netbox/config/parameters.py:44 -#: netbox/templates/core/inc/config_data.html:70 +#: netbox/config/parameters.py:44 templates/core/inc/config_data.html:70 msgid "Top banner" msgstr "Bovenste banner" -#: netbox/netbox/config/parameters.py:46 +#: netbox/config/parameters.py:46 msgid "Additional content to display at the top of every page" msgstr "Aanvullende inhoud om bovenaan elke pagina weer te geven" -#: netbox/netbox/config/parameters.py:55 -#: netbox/templates/core/inc/config_data.html:74 +#: netbox/config/parameters.py:55 templates/core/inc/config_data.html:74 msgid "Bottom banner" msgstr "Onderste banner" -#: netbox/netbox/config/parameters.py:57 +#: netbox/config/parameters.py:57 msgid "Additional content to display at the bottom of every page" msgstr "Aanvullende inhoud om onderaan elke pagina weer te geven" -#: netbox/netbox/config/parameters.py:68 +#: netbox/config/parameters.py:68 msgid "Globally unique IP space" msgstr "Wereldwijd unieke IP-ruimte" -#: netbox/netbox/config/parameters.py:70 +#: netbox/config/parameters.py:70 msgid "Enforce unique IP addressing within the global table" msgstr "Unieke IP-adressering binnen de globale tabel afdwingen" -#: netbox/netbox/config/parameters.py:75 -#: netbox/templates/core/inc/config_data.html:44 +#: netbox/config/parameters.py:75 templates/core/inc/config_data.html:44 msgid "Prefer IPv4" msgstr "Geef de voorkeur aan IPv4" -#: netbox/netbox/config/parameters.py:77 +#: netbox/config/parameters.py:77 msgid "Prefer IPv4 addresses over IPv6" msgstr "Geef de voorkeur aan IPv4-adressen boven IPv6" -#: netbox/netbox/config/parameters.py:84 +#: netbox/config/parameters.py:84 msgid "Rack unit height" msgstr "Hoogte van de rackeenheid" -#: netbox/netbox/config/parameters.py:86 +#: netbox/config/parameters.py:86 msgid "Default unit height for rendered rack elevations" msgstr "Standaardeenheidshoogte voor gerenderde rackverhogingen" -#: netbox/netbox/config/parameters.py:91 +#: netbox/config/parameters.py:91 msgid "Rack unit width" msgstr "Breedte van de rackunit" -#: netbox/netbox/config/parameters.py:93 +#: netbox/config/parameters.py:93 msgid "Default unit width for rendered rack elevations" msgstr "Standaardeenheidsbreedte voor gerenderde rackhoogtes" -#: netbox/netbox/config/parameters.py:100 +#: netbox/config/parameters.py:100 msgid "Powerfeed voltage" msgstr "Voedingsspanning" -#: netbox/netbox/config/parameters.py:102 +#: netbox/config/parameters.py:102 msgid "Default voltage for powerfeeds" msgstr "Standaardspanning voor voedingen" -#: netbox/netbox/config/parameters.py:107 +#: netbox/config/parameters.py:107 msgid "Powerfeed amperage" msgstr "Stroomsterkte van de voeding" -#: netbox/netbox/config/parameters.py:109 +#: netbox/config/parameters.py:109 msgid "Default amperage for powerfeeds" msgstr "Standaardstroomsterkte voor voedingen" -#: netbox/netbox/config/parameters.py:114 +#: netbox/config/parameters.py:114 msgid "Powerfeed max utilization" msgstr "Maximaal gebruik van Powerfeed" -#: netbox/netbox/config/parameters.py:116 +#: netbox/config/parameters.py:116 msgid "Default max utilization for powerfeeds" msgstr "Maximaal standaardgebruik voor powerfeeds" -#: netbox/netbox/config/parameters.py:123 -#: netbox/templates/core/inc/config_data.html:53 +#: netbox/config/parameters.py:123 templates/core/inc/config_data.html:53 msgid "Allowed URL schemes" msgstr "Toegestane URL-schema's" -#: netbox/netbox/config/parameters.py:128 +#: netbox/config/parameters.py:128 msgid "Permitted schemes for URLs in user-provided content" msgstr "Toegestane schema's voor URL's in door gebruikers aangeleverde inhoud" -#: netbox/netbox/config/parameters.py:136 +#: netbox/config/parameters.py:136 msgid "Default page size" msgstr "Standaard paginaformaat" -#: netbox/netbox/config/parameters.py:142 +#: netbox/config/parameters.py:142 msgid "Maximum page size" msgstr "Maximale paginagrootte" -#: netbox/netbox/config/parameters.py:150 -#: netbox/templates/core/inc/config_data.html:96 +#: netbox/config/parameters.py:150 templates/core/inc/config_data.html:96 msgid "Custom validators" msgstr "Eigen Validators" -#: netbox/netbox/config/parameters.py:152 +#: netbox/config/parameters.py:152 msgid "Custom validation rules (JSON)" msgstr "Aangepaste validatieregels (JSON)" -#: netbox/netbox/config/parameters.py:160 -#: netbox/templates/core/inc/config_data.html:104 +#: netbox/config/parameters.py:160 templates/core/inc/config_data.html:104 msgid "Protection rules" msgstr "Beschermingsregels" -#: netbox/netbox/config/parameters.py:162 +#: netbox/config/parameters.py:162 msgid "Deletion protection rules (JSON)" msgstr "Regels voor verwijderingsbeveiliging (JSON)" -#: netbox/netbox/config/parameters.py:172 -#: netbox/templates/core/inc/config_data.html:117 +#: netbox/config/parameters.py:172 templates/core/inc/config_data.html:117 msgid "Default preferences" msgstr "Standaardvoorkeuren" -#: netbox/netbox/config/parameters.py:174 +#: netbox/config/parameters.py:174 msgid "Default preferences for new users" msgstr "Standaardvoorkeuren voor nieuwe gebruikers" -#: netbox/netbox/config/parameters.py:181 -#: netbox/templates/core/inc/config_data.html:129 +#: netbox/config/parameters.py:181 templates/core/inc/config_data.html:129 msgid "Maintenance mode" msgstr "Onderhoudsmodus" -#: netbox/netbox/config/parameters.py:183 +#: netbox/config/parameters.py:183 msgid "Enable maintenance mode" msgstr "Onderhoudsmodus inschakelen" -#: netbox/netbox/config/parameters.py:188 -#: netbox/templates/core/inc/config_data.html:133 +#: netbox/config/parameters.py:188 templates/core/inc/config_data.html:133 msgid "GraphQL enabled" msgstr "GraphQL ingeschakeld" -#: netbox/netbox/config/parameters.py:190 +#: netbox/config/parameters.py:190 msgid "Enable the GraphQL API" msgstr "De GraphQL-API inschakelen" -#: netbox/netbox/config/parameters.py:195 -#: netbox/templates/core/inc/config_data.html:137 +#: netbox/config/parameters.py:195 templates/core/inc/config_data.html:137 msgid "Changelog retention" msgstr "Behoud van changelog" -#: netbox/netbox/config/parameters.py:197 +#: netbox/config/parameters.py:197 msgid "Days to retain changelog history (set to zero for unlimited)" msgstr "" "Dagen om de geschiedenis van het changelog te bewaren (ingesteld op nul voor" " onbeperkt)" -#: netbox/netbox/config/parameters.py:202 +#: netbox/config/parameters.py:202 msgid "Job result retention" msgstr "Behoud van werkresultaten" -#: netbox/netbox/config/parameters.py:204 +#: netbox/config/parameters.py:204 msgid "Days to retain job result history (set to zero for unlimited)" msgstr "" "Dagen om de geschiedenis van de taakresultaten bij te houden (op nul gezet " "voor een onbeperkt aantal)" -#: netbox/netbox/config/parameters.py:209 -#: netbox/templates/core/inc/config_data.html:145 +#: netbox/config/parameters.py:209 templates/core/inc/config_data.html:145 msgid "Maps URL" msgstr "URL van de kaart" -#: netbox/netbox/config/parameters.py:211 +#: netbox/config/parameters.py:211 msgid "Base URL for mapping geographic locations" msgstr "Basis-URL voor het in kaart brengen van geografische locaties" -#: netbox/netbox/forms/__init__.py:12 +#: netbox/forms/__init__.py:12 msgid "Partial match" msgstr "Gedeeltelijke match" -#: netbox/netbox/forms/__init__.py:13 +#: netbox/forms/__init__.py:13 msgid "Exact match" msgstr "Exacte overeenkomst" -#: netbox/netbox/forms/__init__.py:14 +#: netbox/forms/__init__.py:14 msgid "Starts with" msgstr "Begint met" -#: netbox/netbox/forms/__init__.py:15 +#: netbox/forms/__init__.py:15 msgid "Ends with" msgstr "Eindigt met" -#: netbox/netbox/forms/__init__.py:16 +#: netbox/forms/__init__.py:16 msgid "Regex" msgstr "Regex" -#: netbox/netbox/forms/__init__.py:34 +#: netbox/forms/__init__.py:34 msgid "Object type(s)" msgstr "Objecttype (s)" -#: netbox/netbox/forms/__init__.py:40 +#: netbox/forms/__init__.py:40 msgid "Lookup" msgstr "Opzoeken" -#: netbox/netbox/forms/base.py:90 +#: netbox/forms/base.py:90 msgid "" "Tag slugs separated by commas, encased with double quotes (e.g. " "\"tag1,tag2,tag3\")" @@ -10882,432 +10268,416 @@ msgstr "" "Tag-slugs gescheiden door komma's, tussen dubbele aanhalingstekens " "(bijvoorbeeld „tag1, tag2, tag3\")" -#: netbox/netbox/forms/base.py:120 +#: netbox/forms/base.py:120 msgid "Add tags" msgstr "Tags toevoegen" -#: netbox/netbox/forms/base.py:125 +#: netbox/forms/base.py:125 msgid "Remove tags" msgstr "Tags verwijderen" -#: netbox/netbox/forms/mixins.py:38 +#: netbox/forms/mixins.py:38 #, python-brace-format msgid "{class_name} must specify a model class." msgstr "{class_name} moet een modelklasse specificeren." -#: netbox/netbox/models/features.py:280 +#: netbox/models/features.py:280 #, python-brace-format msgid "Unknown field name '{name}' in custom field data." msgstr "Onbekende veldnaam '{name}'in aangepaste veldgegevens." -#: netbox/netbox/models/features.py:286 +#: netbox/models/features.py:286 #, python-brace-format msgid "Invalid value for custom field '{name}': {error}" msgstr "Ongeldige waarde voor aangepast veld '{name}': {error}" -#: netbox/netbox/models/features.py:295 +#: netbox/models/features.py:295 #, python-brace-format msgid "Custom field '{name}' must have a unique value." msgstr "Aangepast veld '{name}'moet een unieke waarde hebben." -#: netbox/netbox/models/features.py:302 +#: netbox/models/features.py:302 #, python-brace-format msgid "Missing required custom field '{name}'." msgstr "Ontbreekt het vereiste aangepaste veld '{name}'." -#: netbox/netbox/models/features.py:462 +#: netbox/models/features.py:462 msgid "Remote data source" msgstr "Externe gegevensbron" -#: netbox/netbox/models/features.py:472 +#: netbox/models/features.py:472 msgid "data path" msgstr "datapad" -#: netbox/netbox/models/features.py:476 +#: netbox/models/features.py:476 msgid "Path to remote file (relative to data source root)" msgstr "" "Pad naar extern bestand (ten opzichte van de root van de gegevensbron)" -#: netbox/netbox/models/features.py:479 +#: netbox/models/features.py:479 msgid "auto sync enabled" msgstr "automatische synchronisatie ingeschakeld" -#: netbox/netbox/models/features.py:481 +#: netbox/models/features.py:481 msgid "Enable automatic synchronization of data when the data file is updated" msgstr "" "Automatische synchronisatie van gegevens inschakelen wanneer het " "gegevensbestand wordt bijgewerkt" -#: netbox/netbox/models/features.py:484 +#: netbox/models/features.py:484 msgid "date synced" msgstr "datum gesynchroniseerd" -#: netbox/netbox/models/features.py:578 +#: netbox/models/features.py:578 #, python-brace-format msgid "{class_name} must implement a sync_data() method." msgstr "{class_name} moet een sync_data () -methode implementeren." -#: netbox/netbox/navigation/menu.py:11 +#: netbox/navigation/menu.py:11 msgid "Organization" msgstr "Organisatie" -#: netbox/netbox/navigation/menu.py:19 +#: netbox/navigation/menu.py:19 msgid "Site Groups" msgstr "Sitegroepen" -#: netbox/netbox/navigation/menu.py:27 +#: netbox/navigation/menu.py:27 msgid "Tenant Groups" msgstr "Tenant Groepen" -#: netbox/netbox/navigation/menu.py:34 +#: netbox/navigation/menu.py:34 msgid "Contact Groups" msgstr "Contactgroepen" -#: netbox/netbox/navigation/menu.py:35 -#: netbox/templates/tenancy/contactrole.html:8 +#: netbox/navigation/menu.py:35 templates/tenancy/contactrole.html:8 msgid "Contact Roles" msgstr "Rollen voor contactpersonen" -#: netbox/netbox/navigation/menu.py:36 +#: netbox/navigation/menu.py:36 msgid "Contact Assignments" msgstr "Contacttoewijzingen" -#: netbox/netbox/navigation/menu.py:50 +#: netbox/navigation/menu.py:50 msgid "Rack Roles" msgstr "Rack rollen" -#: netbox/netbox/navigation/menu.py:54 +#: netbox/navigation/menu.py:54 msgid "Elevations" msgstr "Verhogingen" -#: netbox/netbox/navigation/menu.py:60 netbox/netbox/navigation/menu.py:62 +#: netbox/navigation/menu.py:60 netbox/navigation/menu.py:62 msgid "Rack Types" msgstr "Soorten rekken" -#: netbox/netbox/navigation/menu.py:76 +#: netbox/navigation/menu.py:76 msgid "Modules" msgstr "Modules" -#: netbox/netbox/navigation/menu.py:80 netbox/templates/dcim/device.html:160 -#: netbox/templates/dcim/virtualdevicecontext.html:8 +#: netbox/navigation/menu.py:80 templates/dcim/device.html:160 +#: templates/dcim/virtualdevicecontext.html:8 msgid "Virtual Device Contexts" msgstr "Contexten van virtuele apparaten" -#: netbox/netbox/navigation/menu.py:88 +#: netbox/navigation/menu.py:88 msgid "Manufacturers" msgstr "Fabrikanten" -#: netbox/netbox/navigation/menu.py:92 +#: netbox/navigation/menu.py:92 msgid "Device Components" msgstr "Onderdelen van het apparaat" -#: netbox/netbox/navigation/menu.py:104 -#: netbox/templates/dcim/inventoryitemrole.html:8 +#: netbox/navigation/menu.py:104 templates/dcim/inventoryitemrole.html:8 msgid "Inventory Item Roles" msgstr "Rollen van inventarisitems" -#: netbox/netbox/navigation/menu.py:111 netbox/netbox/navigation/menu.py:115 +#: netbox/navigation/menu.py:111 netbox/navigation/menu.py:115 msgid "Connections" msgstr "Verbindingen" -#: netbox/netbox/navigation/menu.py:117 +#: netbox/navigation/menu.py:117 msgid "Cables" msgstr "Kabels" -#: netbox/netbox/navigation/menu.py:118 +#: netbox/navigation/menu.py:118 msgid "Wireless Links" msgstr "Draadloze links" -#: netbox/netbox/navigation/menu.py:121 +#: netbox/navigation/menu.py:121 msgid "Interface Connections" msgstr "Interface-aansluitingen" -#: netbox/netbox/navigation/menu.py:126 +#: netbox/navigation/menu.py:126 msgid "Console Connections" msgstr "Console-aansluitingen" -#: netbox/netbox/navigation/menu.py:131 +#: netbox/navigation/menu.py:131 msgid "Power Connections" msgstr "Stroomaansluitingen" -#: netbox/netbox/navigation/menu.py:147 +#: netbox/navigation/menu.py:147 msgid "Wireless LAN Groups" msgstr "Draadloze LAN-groepen" -#: netbox/netbox/navigation/menu.py:168 +#: netbox/navigation/menu.py:168 msgid "Prefix & VLAN Roles" msgstr "Prefix- en VLAN-rollen" -#: netbox/netbox/navigation/menu.py:174 +#: netbox/navigation/menu.py:174 msgid "ASN Ranges" msgstr "ASN-reeksen" -#: netbox/netbox/navigation/menu.py:196 +#: netbox/navigation/menu.py:196 msgid "VLAN Groups" msgstr "VLAN-groepen" -#: netbox/netbox/navigation/menu.py:203 +#: netbox/navigation/menu.py:203 msgid "Service Templates" msgstr "Servicesjablonen" -#: netbox/netbox/navigation/menu.py:204 netbox/templates/dcim/device.html:302 -#: netbox/templates/ipam/ipaddress.html:118 -#: netbox/templates/virtualization/virtualmachine.html:154 +#: netbox/navigation/menu.py:204 templates/dcim/device.html:302 +#: templates/ipam/ipaddress.html:118 +#: templates/virtualization/virtualmachine.html:154 msgid "Services" msgstr "Diensten" -#: netbox/netbox/navigation/menu.py:211 +#: netbox/navigation/menu.py:211 msgid "VPN" msgstr "VPN" -#: netbox/netbox/navigation/menu.py:215 netbox/netbox/navigation/menu.py:217 -#: netbox/vpn/tables/tunnels.py:24 +#: netbox/navigation/menu.py:215 netbox/navigation/menu.py:217 +#: vpn/tables/tunnels.py:24 msgid "Tunnels" msgstr "Tunnels" -#: netbox/netbox/navigation/menu.py:218 -#: netbox/templates/vpn/tunnelgroup.html:8 +#: netbox/navigation/menu.py:218 templates/vpn/tunnelgroup.html:8 msgid "Tunnel Groups" msgstr "Tunnelgroepen" -#: netbox/netbox/navigation/menu.py:219 +#: netbox/navigation/menu.py:219 msgid "Tunnel Terminations" msgstr "Tunnelafsluitingen" -#: netbox/netbox/navigation/menu.py:223 netbox/netbox/navigation/menu.py:225 -#: netbox/vpn/models/l2vpn.py:64 +#: netbox/navigation/menu.py:223 netbox/navigation/menu.py:225 +#: vpn/models/l2vpn.py:64 msgid "L2VPNs" msgstr "L2VPN's" -#: netbox/netbox/navigation/menu.py:226 netbox/templates/vpn/l2vpn.html:56 -#: netbox/templates/vpn/tunnel.html:72 netbox/vpn/tables/tunnels.py:58 +#: netbox/navigation/menu.py:226 templates/vpn/l2vpn.html:56 +#: templates/vpn/tunnel.html:72 vpn/tables/tunnels.py:58 msgid "Terminations" msgstr "Beëindigingen" -#: netbox/netbox/navigation/menu.py:232 +#: netbox/navigation/menu.py:232 msgid "IKE Proposals" msgstr "IKE-voorstellen" -#: netbox/netbox/navigation/menu.py:233 -#: netbox/templates/vpn/ikeproposal.html:41 +#: netbox/navigation/menu.py:233 templates/vpn/ikeproposal.html:41 msgid "IKE Policies" msgstr "IKE-beleid" -#: netbox/netbox/navigation/menu.py:234 +#: netbox/navigation/menu.py:234 msgid "IPSec Proposals" msgstr "IPsec-voorstellen" -#: netbox/netbox/navigation/menu.py:235 -#: netbox/templates/vpn/ipsecproposal.html:37 +#: netbox/navigation/menu.py:235 templates/vpn/ipsecproposal.html:37 msgid "IPSec Policies" msgstr "IPsec-beleid" -#: netbox/netbox/navigation/menu.py:236 netbox/templates/vpn/ikepolicy.html:38 -#: netbox/templates/vpn/ipsecpolicy.html:25 +#: netbox/navigation/menu.py:236 templates/vpn/ikepolicy.html:38 +#: templates/vpn/ipsecpolicy.html:25 msgid "IPSec Profiles" msgstr "IPsec-profielen" -#: netbox/netbox/navigation/menu.py:243 -#: netbox/templates/dcim/device_edit.html:78 +#: netbox/navigation/menu.py:243 templates/dcim/device_edit.html:78 msgid "Virtualization" msgstr "Virtualisatie" -#: netbox/netbox/navigation/menu.py:251 -#: netbox/templates/virtualization/virtualmachine.html:174 -#: netbox/templates/virtualization/virtualmachine/base.html:32 -#: netbox/templates/virtualization/virtualmachine_list.html:21 -#: netbox/virtualization/tables/virtualmachines.py:104 -#: netbox/virtualization/views.py:388 +#: netbox/navigation/menu.py:251 +#: templates/virtualization/virtualmachine.html:174 +#: templates/virtualization/virtualmachine/base.html:32 +#: templates/virtualization/virtualmachine_list.html:21 +#: virtualization/tables/virtualmachines.py:104 virtualization/views.py:388 msgid "Virtual Disks" msgstr "Virtuele schijven" -#: netbox/netbox/navigation/menu.py:258 +#: netbox/navigation/menu.py:258 msgid "Cluster Types" msgstr "Clustertypen" -#: netbox/netbox/navigation/menu.py:259 +#: netbox/navigation/menu.py:259 msgid "Cluster Groups" msgstr "Clustergroepen" -#: netbox/netbox/navigation/menu.py:273 +#: netbox/navigation/menu.py:273 msgid "Circuit Types" msgstr "Circuittypes" -#: netbox/netbox/navigation/menu.py:274 +#: netbox/navigation/menu.py:274 msgid "Circuit Groups" msgstr "Circuitgroepen" -#: netbox/netbox/navigation/menu.py:275 -#: netbox/templates/circuits/circuit.html:66 +#: netbox/navigation/menu.py:275 templates/circuits/circuit.html:66 msgid "Group Assignments" msgstr "Groepstoewijzingen" -#: netbox/netbox/navigation/menu.py:276 +#: netbox/navigation/menu.py:276 msgid "Circuit Terminations" msgstr "Circuitafsluitingen" -#: netbox/netbox/navigation/menu.py:280 netbox/netbox/navigation/menu.py:282 +#: netbox/navigation/menu.py:280 netbox/navigation/menu.py:282 msgid "Providers" msgstr "Providers" -#: netbox/netbox/navigation/menu.py:283 -#: netbox/templates/circuits/provider.html:51 +#: netbox/navigation/menu.py:283 templates/circuits/provider.html:51 msgid "Provider Accounts" msgstr "Accounts van providers" -#: netbox/netbox/navigation/menu.py:284 +#: netbox/navigation/menu.py:284 msgid "Provider Networks" msgstr "Netwerken van providers" -#: netbox/netbox/navigation/menu.py:298 +#: netbox/navigation/menu.py:298 msgid "Power Panels" msgstr "Voedingspanelen" -#: netbox/netbox/navigation/menu.py:309 +#: netbox/navigation/menu.py:309 msgid "Configurations" msgstr "Configuraties" -#: netbox/netbox/navigation/menu.py:311 +#: netbox/navigation/menu.py:311 msgid "Config Contexts" msgstr "Contexten configureren" -#: netbox/netbox/navigation/menu.py:312 +#: netbox/navigation/menu.py:312 msgid "Config Templates" msgstr "Configuratiesjablonen" -#: netbox/netbox/navigation/menu.py:319 netbox/netbox/navigation/menu.py:323 +#: netbox/navigation/menu.py:319 netbox/navigation/menu.py:323 msgid "Customization" msgstr "Aanpassing" -#: netbox/netbox/navigation/menu.py:325 -#: netbox/templates/dcim/device_edit.html:103 -#: netbox/templates/dcim/htmx/cable_edit.html:81 -#: netbox/templates/dcim/virtualchassis_add.html:31 -#: netbox/templates/dcim/virtualchassis_edit.html:40 -#: netbox/templates/generic/bulk_edit.html:76 -#: netbox/templates/htmx/form.html:19 netbox/templates/inc/filter_list.html:30 -#: netbox/templates/inc/panels/custom_fields.html:7 -#: netbox/templates/ipam/ipaddress_bulk_add.html:35 -#: netbox/templates/ipam/vlan_edit.html:59 +#: netbox/navigation/menu.py:325 templates/dcim/device_edit.html:103 +#: templates/dcim/htmx/cable_edit.html:81 +#: templates/dcim/virtualchassis_add.html:31 +#: templates/dcim/virtualchassis_edit.html:40 +#: templates/generic/bulk_edit.html:76 templates/htmx/form.html:19 +#: templates/inc/filter_list.html:30 templates/inc/panels/custom_fields.html:7 +#: templates/ipam/ipaddress_bulk_add.html:35 templates/ipam/vlan_edit.html:59 msgid "Custom Fields" msgstr "Aangepaste velden" -#: netbox/netbox/navigation/menu.py:326 +#: netbox/navigation/menu.py:326 msgid "Custom Field Choices" msgstr "Aangepaste veldkeuzes" -#: netbox/netbox/navigation/menu.py:327 +#: netbox/navigation/menu.py:327 msgid "Custom Links" msgstr "Aangepaste links" -#: netbox/netbox/navigation/menu.py:328 +#: netbox/navigation/menu.py:328 msgid "Export Templates" msgstr "Sjablonen exporteren" -#: netbox/netbox/navigation/menu.py:329 +#: netbox/navigation/menu.py:329 msgid "Saved Filters" msgstr "Opgeslagen filters" -#: netbox/netbox/navigation/menu.py:331 +#: netbox/navigation/menu.py:331 msgid "Image Attachments" msgstr "Afbeeldingsbijlagen" -#: netbox/netbox/navigation/menu.py:349 +#: netbox/navigation/menu.py:349 msgid "Operations" msgstr "Operaties" -#: netbox/netbox/navigation/menu.py:353 +#: netbox/navigation/menu.py:353 msgid "Integrations" msgstr "Integraties" -#: netbox/netbox/navigation/menu.py:355 +#: netbox/navigation/menu.py:355 msgid "Data Sources" msgstr "Gegevensbronnen" -#: netbox/netbox/navigation/menu.py:356 +#: netbox/navigation/menu.py:356 msgid "Event Rules" msgstr "Regels voor evenementen" -#: netbox/netbox/navigation/menu.py:357 +#: netbox/navigation/menu.py:357 msgid "Webhooks" msgstr "Webhooks" -#: netbox/netbox/navigation/menu.py:361 netbox/netbox/navigation/menu.py:365 -#: netbox/netbox/views/generic/feature_views.py:153 -#: netbox/templates/extras/report/base.html:37 -#: netbox/templates/extras/script/base.html:36 +#: netbox/navigation/menu.py:361 netbox/navigation/menu.py:365 +#: netbox/views/generic/feature_views.py:153 +#: templates/extras/report/base.html:37 templates/extras/script/base.html:36 msgid "Jobs" msgstr "Jobs" -#: netbox/netbox/navigation/menu.py:371 +#: netbox/navigation/menu.py:371 msgid "Logging" msgstr "Loggen" -#: netbox/netbox/navigation/menu.py:373 +#: netbox/navigation/menu.py:373 msgid "Notification Groups" msgstr "Meldingsgroepen" -#: netbox/netbox/navigation/menu.py:374 +#: netbox/navigation/menu.py:374 msgid "Journal Entries" msgstr "Journaalboekingen" -#: netbox/netbox/navigation/menu.py:375 -#: netbox/templates/core/objectchange.html:9 -#: netbox/templates/core/objectchange_list.html:4 +#: netbox/navigation/menu.py:375 templates/core/objectchange.html:9 +#: templates/core/objectchange_list.html:4 msgid "Change Log" msgstr "Logboek wijzigen" -#: netbox/netbox/navigation/menu.py:382 netbox/templates/inc/user_menu.html:29 +#: netbox/navigation/menu.py:382 templates/inc/user_menu.html:29 msgid "Admin" msgstr "beheerder" -#: netbox/netbox/navigation/menu.py:430 netbox/templates/account/base.html:27 -#: netbox/templates/inc/user_menu.html:57 +#: netbox/navigation/menu.py:430 templates/account/base.html:27 +#: templates/inc/user_menu.html:57 msgid "API Tokens" msgstr "API-tokens" -#: netbox/netbox/navigation/menu.py:437 netbox/users/forms/model_forms.py:187 -#: netbox/users/forms/model_forms.py:195 netbox/users/forms/model_forms.py:242 -#: netbox/users/forms/model_forms.py:249 +#: netbox/navigation/menu.py:437 users/forms/model_forms.py:187 +#: users/forms/model_forms.py:195 users/forms/model_forms.py:242 +#: users/forms/model_forms.py:249 msgid "Permissions" msgstr "Machtigingen" -#: netbox/netbox/navigation/menu.py:445 netbox/netbox/navigation/menu.py:449 -#: netbox/templates/core/system.html:7 +#: netbox/navigation/menu.py:445 netbox/navigation/menu.py:449 +#: templates/core/system.html:7 msgid "System" msgstr "Systeem" -#: netbox/netbox/navigation/menu.py:454 netbox/netbox/navigation/menu.py:502 -#: netbox/templates/500.html:35 netbox/templates/account/preferences.html:22 -#: netbox/templates/core/plugin.html:12 -#: netbox/templates/core/plugin_list.html:7 -#: netbox/templates/core/plugin_list.html:12 +#: netbox/navigation/menu.py:454 netbox/navigation/menu.py:502 +#: templates/500.html:35 templates/account/preferences.html:22 +#: templates/core/plugin.html:13 templates/core/plugin_list.html:7 +#: templates/core/plugin_list.html:12 msgid "Plugins" msgstr "Plug-ins" -#: netbox/netbox/navigation/menu.py:459 +#: netbox/navigation/menu.py:459 msgid "Configuration History" msgstr "Configuratiegeschiedenis" -#: netbox/netbox/navigation/menu.py:465 netbox/templates/core/rq_task.html:8 -#: netbox/templates/core/rq_task_list.html:22 +#: netbox/navigation/menu.py:465 templates/core/rq_task.html:8 +#: templates/core/rq_task_list.html:22 msgid "Background Tasks" msgstr "Achtergrondtaken" -#: netbox/netbox/plugins/navigation.py:47 -#: netbox/netbox/plugins/navigation.py:69 +#: netbox/plugins/navigation.py:47 netbox/plugins/navigation.py:69 msgid "Permissions must be passed as a tuple or list." msgstr "Machtigingen moeten worden doorgegeven als een tuple of lijst." -#: netbox/netbox/plugins/navigation.py:51 +#: netbox/plugins/navigation.py:51 msgid "Buttons must be passed as a tuple or list." msgstr "Knoppen moeten als een tuple of lijst worden doorgegeven." -#: netbox/netbox/plugins/navigation.py:73 +#: netbox/plugins/navigation.py:73 msgid "Button color must be a choice within ButtonColorChoices." msgstr "De kleur van de knop moet een keuze zijn binnen ButtonColorChoices." -#: netbox/netbox/plugins/registration.py:25 +#: netbox/plugins/registration.py:25 #, python-brace-format msgid "" "PluginTemplateExtension class {template_extension} was passed as an " @@ -11316,7 +10686,7 @@ msgstr "" "PluginTemplateExtension-klasse {template_extension} werd als voorbeeld " "aangenomen!" -#: netbox/netbox/plugins/registration.py:31 +#: netbox/plugins/registration.py:31 #, python-brace-format msgid "" "{template_extension} is not a subclass of " @@ -11325,197 +10695,196 @@ msgstr "" "{template_extension} is geen subklasse van de " "NetBox.Plugins.PluginTemplateExtension!" -#: netbox/netbox/plugins/registration.py:51 +#: netbox/plugins/registration.py:51 #, python-brace-format msgid "{item} must be an instance of netbox.plugins.PluginMenuItem" msgstr "{item} moet een exemplaar zijn van NetBox.Plugins.PluginMenuItem" -#: netbox/netbox/plugins/registration.py:62 +#: netbox/plugins/registration.py:62 #, python-brace-format msgid "{menu_link} must be an instance of netbox.plugins.PluginMenuItem" msgstr "{menu_link} moet een exemplaar zijn van NetBox.Plugins.PluginMenuItem" -#: netbox/netbox/plugins/registration.py:67 +#: netbox/plugins/registration.py:67 #, python-brace-format msgid "{button} must be an instance of netbox.plugins.PluginMenuButton" msgstr "{button} moet een exemplaar zijn van NetBox.Plugins.PluginMenuButton" -#: netbox/netbox/plugins/templates.py:37 +#: netbox/plugins/templates.py:37 msgid "extra_context must be a dictionary" msgstr "extra_context moet een woordenboek zijn" -#: netbox/netbox/preferences.py:19 +#: netbox/preferences.py:19 msgid "HTMX Navigation" msgstr "HTMX-navigatie" -#: netbox/netbox/preferences.py:24 +#: netbox/preferences.py:24 msgid "Enable dynamic UI navigation" msgstr "Dynamische UI-navigatie inschakelen" -#: netbox/netbox/preferences.py:26 +#: netbox/preferences.py:26 msgid "Experimental feature" msgstr "Experimentele functie" -#: netbox/netbox/preferences.py:29 +#: netbox/preferences.py:29 msgid "Language" msgstr "Taal" -#: netbox/netbox/preferences.py:34 +#: netbox/preferences.py:34 msgid "Forces UI translation to the specified language" msgstr "Forceert UI-vertaling naar de opgegeven taal" -#: netbox/netbox/preferences.py:36 +#: netbox/preferences.py:36 msgid "Support for translation has been disabled locally" msgstr "Ondersteuning voor vertaling is lokaal uitgeschakeld" -#: netbox/netbox/preferences.py:42 +#: netbox/preferences.py:42 msgid "Page length" msgstr "Lengte van de pagina" -#: netbox/netbox/preferences.py:44 +#: netbox/preferences.py:44 msgid "The default number of objects to display per page" msgstr "Het standaardaantal objecten dat per pagina moet worden weergegeven" -#: netbox/netbox/preferences.py:48 +#: netbox/preferences.py:48 msgid "Paginator placement" msgstr "Plaatsing van de paginator" -#: netbox/netbox/preferences.py:50 +#: netbox/preferences.py:50 msgid "Bottom" msgstr "Onderkant" -#: netbox/netbox/preferences.py:51 +#: netbox/preferences.py:51 msgid "Top" msgstr "Bovenkant" -#: netbox/netbox/preferences.py:52 +#: netbox/preferences.py:52 msgid "Both" msgstr "Allebei" -#: netbox/netbox/preferences.py:55 +#: netbox/preferences.py:55 msgid "Where the paginator controls will be displayed relative to a table" msgstr "" "Waar de bedieningselementen van de paginator worden weergegeven ten opzichte" " van een tabel" -#: netbox/netbox/preferences.py:60 +#: netbox/preferences.py:60 msgid "Data format" msgstr "Formaat van de gegevens" -#: netbox/netbox/preferences.py:65 +#: netbox/preferences.py:65 msgid "The preferred syntax for displaying generic data within the UI" msgstr "" "De voorkeurssyntaxis voor het weergeven van generieke gegevens in de " "gebruikersinterface" -#: netbox/netbox/registry.py:14 +#: netbox/registry.py:14 #, python-brace-format msgid "Invalid store: {key}" msgstr "Ongeldige winkel: {key}" -#: netbox/netbox/registry.py:17 +#: netbox/registry.py:17 msgid "Cannot add stores to registry after initialization" msgstr "Kan na initialisatie geen winkels aan het register toevoegen" -#: netbox/netbox/registry.py:20 +#: netbox/registry.py:20 msgid "Cannot delete stores from registry" msgstr "Kan winkels niet verwijderen uit het register" -#: netbox/netbox/settings.py:760 +#: netbox/settings.py:760 msgid "Czech" msgstr "Tsjechisch" -#: netbox/netbox/settings.py:761 +#: netbox/settings.py:761 msgid "Danish" msgstr "Deens" -#: netbox/netbox/settings.py:762 +#: netbox/settings.py:762 msgid "German" msgstr "Duits" -#: netbox/netbox/settings.py:763 +#: netbox/settings.py:763 msgid "English" msgstr "Engels" -#: netbox/netbox/settings.py:764 +#: netbox/settings.py:764 msgid "Spanish" msgstr "Spaans" -#: netbox/netbox/settings.py:765 +#: netbox/settings.py:765 msgid "French" msgstr "Frans" -#: netbox/netbox/settings.py:766 +#: netbox/settings.py:766 msgid "Italian" msgstr "Italiaans" -#: netbox/netbox/settings.py:767 +#: netbox/settings.py:767 msgid "Japanese" msgstr "Japans" -#: netbox/netbox/settings.py:768 +#: netbox/settings.py:768 msgid "Dutch" msgstr "Nederlands" -#: netbox/netbox/settings.py:769 +#: netbox/settings.py:769 msgid "Polish" msgstr "Pools" -#: netbox/netbox/settings.py:770 +#: netbox/settings.py:770 msgid "Portuguese" msgstr "Portugees" -#: netbox/netbox/settings.py:771 +#: netbox/settings.py:771 msgid "Russian" msgstr "Russisch" -#: netbox/netbox/settings.py:772 +#: netbox/settings.py:772 msgid "Turkish" msgstr "Turks" -#: netbox/netbox/settings.py:773 +#: netbox/settings.py:773 msgid "Ukrainian" msgstr "Oekraïens" -#: netbox/netbox/settings.py:774 +#: netbox/settings.py:774 msgid "Chinese" msgstr "Chinees" -#: netbox/netbox/tables/columns.py:176 +#: netbox/tables/columns.py:176 msgid "Select all" msgstr "Alles selecteren" -#: netbox/netbox/tables/columns.py:189 +#: netbox/tables/columns.py:189 msgid "Toggle all" msgstr "Alles omschakelen" -#: netbox/netbox/tables/columns.py:300 +#: netbox/tables/columns.py:300 msgid "Toggle Dropdown" msgstr "Dropdown in- en uitschakelen" -#: netbox/netbox/tables/columns.py:572 netbox/templates/core/job.html:53 +#: netbox/tables/columns.py:572 templates/core/job.html:53 msgid "Error" msgstr "Fout" -#: netbox/netbox/tables/tables.py:58 +#: netbox/tables/tables.py:58 #, python-brace-format msgid "No {model_name} found" msgstr "Nee {model_name} gevonden" -#: netbox/netbox/tables/tables.py:249 -#: netbox/templates/generic/bulk_import.html:117 +#: netbox/tables/tables.py:249 templates/generic/bulk_import.html:117 msgid "Field" msgstr "Veld" -#: netbox/netbox/tables/tables.py:252 +#: netbox/tables/tables.py:252 msgid "Value" msgstr "Waarde" -#: netbox/netbox/tests/dummy_plugin/navigation.py:29 +#: netbox/tests/dummy_plugin/navigation.py:29 msgid "Dummy Plugin" msgstr "Dummy-plug-in" -#: netbox/netbox/views/generic/bulk_views.py:114 +#: netbox/views/generic/bulk_views.py:114 #, python-brace-format msgid "" "There was an error rendering the selected export template ({template}): " @@ -11524,57 +10893,57 @@ msgstr "" "Er is een fout opgetreden bij het weergeven van de geselecteerde " "exportsjabloon ({template}): {error}" -#: netbox/netbox/views/generic/bulk_views.py:416 +#: netbox/views/generic/bulk_views.py:416 #, python-brace-format msgid "Row {i}: Object with ID {id} does not exist" msgstr "Rij {i}: Object met ID {id} bestaat niet" -#: netbox/netbox/views/generic/bulk_views.py:699 -#: netbox/netbox/views/generic/bulk_views.py:897 -#: netbox/netbox/views/generic/bulk_views.py:945 +#: netbox/views/generic/bulk_views.py:702 +#: netbox/views/generic/bulk_views.py:900 +#: netbox/views/generic/bulk_views.py:948 #, python-brace-format msgid "No {object_type} were selected." msgstr "Nee {object_type} zijn geselecteerd." -#: netbox/netbox/views/generic/bulk_views.py:779 +#: netbox/views/generic/bulk_views.py:782 #, python-brace-format msgid "Renamed {count} {object_type}" msgstr "Hernoemd {count} {object_type}" -#: netbox/netbox/views/generic/bulk_views.py:875 +#: netbox/views/generic/bulk_views.py:878 #, python-brace-format msgid "Deleted {count} {object_type}" msgstr "Verwijderd {count} {object_type}" -#: netbox/netbox/views/generic/feature_views.py:40 +#: netbox/views/generic/feature_views.py:40 msgid "Changelog" msgstr "Log met wijzigingen" -#: netbox/netbox/views/generic/feature_views.py:93 +#: netbox/views/generic/feature_views.py:93 msgid "Journal" msgstr "Tijdschrift" -#: netbox/netbox/views/generic/feature_views.py:207 +#: netbox/views/generic/feature_views.py:207 msgid "Unable to synchronize data: No data file set." msgstr "" "Kan gegevens niet synchroniseren: er is geen gegevensbestand ingesteld." -#: netbox/netbox/views/generic/feature_views.py:211 +#: netbox/views/generic/feature_views.py:211 #, python-brace-format msgid "Synchronized data for {object_type} {object}." msgstr "Gesynchroniseerde gegevens voor {object_type} {object}." -#: netbox/netbox/views/generic/feature_views.py:236 +#: netbox/views/generic/feature_views.py:236 #, python-brace-format msgid "Synced {count} {object_type}" msgstr "Gesynchroniseerd {count} {object_type}" -#: netbox/netbox/views/generic/object_views.py:108 +#: netbox/views/generic/object_views.py:108 #, python-brace-format msgid "{class_name} must implement get_children()" msgstr "{class_name} moet get_children () implementeren" -#: netbox/netbox/views/misc.py:44 +#: netbox/views/misc.py:44 msgid "" "There was an error loading the dashboard configuration. A default dashboard " "is in use." @@ -11582,750 +10951,705 @@ msgstr "" "Er is een fout opgetreden tijdens het laden van de dashboardconfiguratie. Er" " wordt een standaarddashboard gebruikt." -#: netbox/templates/403.html:4 +#: templates/403.html:4 msgid "Access Denied" msgstr "Toegang geweigerd" -#: netbox/templates/403.html:9 +#: templates/403.html:9 msgid "You do not have permission to access this page" msgstr "Je hebt geen toestemming om deze pagina te openen" -#: netbox/templates/404.html:4 +#: templates/404.html:4 msgid "Page Not Found" msgstr "Pagina niet gevonden" -#: netbox/templates/404.html:9 +#: templates/404.html:9 msgid "The requested page does not exist" msgstr "De opgevraagde pagina bestaat niet" -#: netbox/templates/500.html:7 netbox/templates/500.html:18 +#: templates/500.html:7 templates/500.html:18 msgid "Server Error" msgstr "Serverfout" -#: netbox/templates/500.html:23 +#: templates/500.html:23 msgid "There was a problem with your request. Please contact an administrator" msgstr "" "Er was een probleem met je aanvraag. Neem contact op met een beheerder" -#: netbox/templates/500.html:28 +#: templates/500.html:28 msgid "The complete exception is provided below" msgstr "De volledige uitzondering wordt hieronder gegeven" -#: netbox/templates/500.html:33 netbox/templates/core/system.html:40 +#: templates/500.html:33 templates/core/system.html:40 msgid "Python version" msgstr "Python-versie" -#: netbox/templates/500.html:34 +#: templates/500.html:34 msgid "NetBox version" msgstr "NetBox-versie" -#: netbox/templates/500.html:36 +#: templates/500.html:36 msgid "None installed" msgstr "Niet geïnstalleerd" -#: netbox/templates/500.html:39 +#: templates/500.html:39 msgid "If further assistance is required, please post to the" msgstr "Als er meer hulp nodig is, stuur dan een bericht naar de" -#: netbox/templates/500.html:39 +#: templates/500.html:39 msgid "NetBox discussion forum" msgstr "NetBox-discussieforum" -#: netbox/templates/500.html:39 +#: templates/500.html:39 msgid "on GitHub" msgstr "op GitHub" -#: netbox/templates/500.html:42 netbox/templates/base/40x.html:17 +#: templates/500.html:42 templates/base/40x.html:17 msgid "Home Page" msgstr "Startpagina" -#: netbox/templates/account/base.html:7 netbox/templates/inc/user_menu.html:45 -#: netbox/vpn/forms/bulk_edit.py:255 netbox/vpn/forms/filtersets.py:189 -#: netbox/vpn/forms/model_forms.py:379 +#: templates/account/base.html:7 templates/inc/user_menu.html:45 +#: vpn/forms/bulk_edit.py:255 vpn/forms/filtersets.py:189 +#: vpn/forms/model_forms.py:379 msgid "Profile" msgstr "Profiel" -#: netbox/templates/account/base.html:13 -#: netbox/templates/account/notifications.html:7 -#: netbox/templates/inc/user_menu.html:15 +#: templates/account/base.html:13 templates/account/notifications.html:7 +#: templates/inc/user_menu.html:15 msgid "Notifications" msgstr "Meldingen" -#: netbox/templates/account/base.html:16 -#: netbox/templates/account/subscriptions.html:7 -#: netbox/templates/inc/user_menu.html:51 +#: templates/account/base.html:16 templates/account/subscriptions.html:7 +#: templates/inc/user_menu.html:51 msgid "Subscriptions" msgstr "Abonnementen" -#: netbox/templates/account/base.html:19 -#: netbox/templates/inc/user_menu.html:54 +#: templates/account/base.html:19 templates/inc/user_menu.html:54 msgid "Preferences" msgstr "Voorkeuren" -#: netbox/templates/account/password.html:5 +#: templates/account/password.html:5 msgid "Change Password" msgstr "Wachtwoord wijzigen" -#: netbox/templates/account/password.html:19 -#: netbox/templates/account/preferences.html:77 -#: netbox/templates/core/configrevision_restore.html:63 -#: netbox/templates/dcim/devicebay_populate.html:34 -#: netbox/templates/dcim/virtualchassis_add_member.html:26 -#: netbox/templates/dcim/virtualchassis_edit.html:103 -#: netbox/templates/extras/object_journal.html:26 -#: netbox/templates/extras/script.html:38 -#: netbox/templates/generic/bulk_add_component.html:67 -#: netbox/templates/generic/bulk_delete.html:65 -#: netbox/templates/generic/bulk_edit.html:106 -#: netbox/templates/generic/bulk_import.html:56 -#: netbox/templates/generic/bulk_import.html:78 -#: netbox/templates/generic/bulk_import.html:100 -#: netbox/templates/generic/bulk_remove.html:62 -#: netbox/templates/generic/bulk_rename.html:63 -#: netbox/templates/generic/confirmation_form.html:19 -#: netbox/templates/generic/object_edit.html:72 -#: netbox/templates/htmx/delete_form.html:53 -#: netbox/templates/htmx/delete_form.html:55 -#: netbox/templates/ipam/ipaddress_assign.html:28 -#: netbox/templates/virtualization/cluster_add_devices.html:30 +#: templates/account/password.html:19 templates/account/preferences.html:77 +#: templates/core/configrevision_restore.html:63 +#: templates/dcim/devicebay_populate.html:34 +#: templates/dcim/virtualchassis_add_member.html:26 +#: templates/dcim/virtualchassis_edit.html:103 +#: templates/extras/object_journal.html:26 templates/extras/script.html:38 +#: templates/generic/bulk_add_component.html:67 +#: templates/generic/bulk_delete.html:65 templates/generic/bulk_edit.html:106 +#: templates/generic/bulk_import.html:56 templates/generic/bulk_import.html:78 +#: templates/generic/bulk_import.html:100 +#: templates/generic/bulk_remove.html:62 templates/generic/bulk_rename.html:63 +#: templates/generic/confirmation_form.html:19 +#: templates/generic/object_edit.html:72 templates/htmx/delete_form.html:53 +#: templates/htmx/delete_form.html:55 templates/ipam/ipaddress_assign.html:28 +#: templates/virtualization/cluster_add_devices.html:30 msgid "Cancel" msgstr "Annuleer" -#: netbox/templates/account/password.html:20 -#: netbox/templates/account/preferences.html:78 -#: netbox/templates/dcim/devicebay_populate.html:35 -#: netbox/templates/dcim/virtualchassis_add_member.html:28 -#: netbox/templates/dcim/virtualchassis_edit.html:105 -#: netbox/templates/extras/dashboard/widget_add.html:26 -#: netbox/templates/extras/dashboard/widget_config.html:19 -#: netbox/templates/extras/object_journal.html:27 -#: netbox/templates/generic/object_edit.html:75 -#: netbox/utilities/templates/helpers/applied_filters.html:16 -#: netbox/utilities/templates/helpers/table_config_form.html:40 +#: templates/account/password.html:20 templates/account/preferences.html:78 +#: templates/dcim/devicebay_populate.html:35 +#: templates/dcim/virtualchassis_add_member.html:28 +#: templates/dcim/virtualchassis_edit.html:105 +#: templates/extras/dashboard/widget_add.html:26 +#: templates/extras/dashboard/widget_config.html:19 +#: templates/extras/object_journal.html:27 +#: templates/generic/object_edit.html:75 +#: utilities/templates/helpers/applied_filters.html:16 +#: utilities/templates/helpers/table_config_form.html:40 msgid "Save" msgstr "Opslaan" -#: netbox/templates/account/preferences.html:34 +#: templates/account/preferences.html:34 msgid "Table Configurations" msgstr "Tabelconfiguraties" -#: netbox/templates/account/preferences.html:39 +#: templates/account/preferences.html:39 msgid "Clear table preferences" msgstr "Tabelvoorkeuren wissen" -#: netbox/templates/account/preferences.html:47 +#: templates/account/preferences.html:47 msgid "Toggle All" msgstr "Alles omschakelen" -#: netbox/templates/account/preferences.html:49 +#: templates/account/preferences.html:49 msgid "Table" msgstr "Tafel" -#: netbox/templates/account/preferences.html:50 +#: templates/account/preferences.html:50 msgid "Ordering" msgstr "Bestellen" -#: netbox/templates/account/preferences.html:51 +#: templates/account/preferences.html:51 msgid "Columns" msgstr "Kolommen" -#: netbox/templates/account/preferences.html:71 -#: netbox/templates/dcim/cable_trace.html:113 -#: netbox/templates/extras/object_configcontext.html:43 +#: templates/account/preferences.html:71 templates/dcim/cable_trace.html:113 +#: templates/extras/object_configcontext.html:43 msgid "None found" msgstr "Niets gevonden" -#: netbox/templates/account/profile.html:6 +#: templates/account/profile.html:6 msgid "User Profile" msgstr "Gebruikersprofiel" -#: netbox/templates/account/profile.html:12 +#: templates/account/profile.html:12 msgid "Account Details" msgstr "Accountgegevens" -#: netbox/templates/account/profile.html:29 -#: netbox/templates/tenancy/contact.html:43 -#: netbox/templates/users/user.html:25 netbox/tenancy/forms/bulk_edit.py:109 +#: templates/account/profile.html:29 templates/tenancy/contact.html:43 +#: templates/users/user.html:25 tenancy/forms/bulk_edit.py:109 msgid "Email" msgstr "Email" -#: netbox/templates/account/profile.html:33 -#: netbox/templates/users/user.html:29 +#: templates/account/profile.html:33 templates/users/user.html:29 msgid "Account Created" msgstr "Account aangemaakt" -#: netbox/templates/account/profile.html:37 -#: netbox/templates/users/user.html:33 +#: templates/account/profile.html:37 templates/users/user.html:33 msgid "Last Login" msgstr "Laatste aanmelding" -#: netbox/templates/account/profile.html:41 -#: netbox/templates/users/user.html:45 +#: templates/account/profile.html:41 templates/users/user.html:45 msgid "Superuser" msgstr "Superuser" -#: netbox/templates/account/profile.html:45 -#: netbox/templates/inc/user_menu.html:31 netbox/templates/users/user.html:41 +#: templates/account/profile.html:45 templates/inc/user_menu.html:31 +#: templates/users/user.html:41 msgid "Staff" msgstr "Staf" -#: netbox/templates/account/profile.html:53 -#: netbox/templates/users/objectpermission.html:82 -#: netbox/templates/users/user.html:53 +#: templates/account/profile.html:53 templates/users/objectpermission.html:82 +#: templates/users/user.html:53 msgid "Assigned Groups" msgstr "Toegewezen groepen" -#: netbox/templates/account/profile.html:58 -#: netbox/templates/circuits/circuit_terminations_swap.html:18 -#: netbox/templates/circuits/circuit_terminations_swap.html:26 -#: netbox/templates/circuits/circuittermination.html:34 -#: netbox/templates/circuits/inc/circuit_termination.html:68 -#: netbox/templates/core/objectchange.html:124 -#: netbox/templates/core/objectchange.html:142 -#: netbox/templates/dcim/devicebay.html:59 -#: netbox/templates/dcim/inc/panels/inventory_items.html:45 -#: netbox/templates/dcim/interface.html:296 -#: netbox/templates/dcim/modulebay.html:80 -#: netbox/templates/extras/configcontext.html:70 -#: netbox/templates/extras/eventrule.html:66 -#: netbox/templates/extras/htmx/script_result.html:60 -#: netbox/templates/extras/webhook.html:65 -#: netbox/templates/extras/webhook.html:75 -#: netbox/templates/inc/panel_table.html:13 -#: netbox/templates/inc/panels/comments.html:10 -#: netbox/templates/ipam/inc/panels/fhrp_groups.html:56 -#: netbox/templates/users/group.html:34 netbox/templates/users/group.html:44 -#: netbox/templates/users/objectpermission.html:77 -#: netbox/templates/users/objectpermission.html:87 -#: netbox/templates/users/user.html:58 netbox/templates/users/user.html:68 +#: templates/account/profile.html:58 +#: templates/circuits/circuit_terminations_swap.html:18 +#: templates/circuits/circuit_terminations_swap.html:26 +#: templates/circuits/circuittermination.html:34 +#: templates/circuits/inc/circuit_termination.html:68 +#: templates/core/objectchange.html:124 templates/core/objectchange.html:142 +#: templates/dcim/devicebay.html:59 +#: templates/dcim/inc/panels/inventory_items.html:45 +#: templates/dcim/interface.html:296 templates/dcim/modulebay.html:80 +#: templates/extras/configcontext.html:70 templates/extras/eventrule.html:66 +#: templates/extras/htmx/script_result.html:60 +#: templates/extras/webhook.html:65 templates/extras/webhook.html:75 +#: templates/inc/panel_table.html:13 templates/inc/panels/comments.html:10 +#: templates/ipam/inc/panels/fhrp_groups.html:56 templates/users/group.html:34 +#: templates/users/group.html:44 templates/users/objectpermission.html:77 +#: templates/users/objectpermission.html:87 templates/users/user.html:58 +#: templates/users/user.html:68 msgid "None" msgstr "Geen" -#: netbox/templates/account/profile.html:68 -#: netbox/templates/users/user.html:78 +#: templates/account/profile.html:68 templates/users/user.html:78 msgid "Recent Activity" msgstr "Recente activiteit" -#: netbox/templates/account/token.html:8 -#: netbox/templates/account/token_list.html:6 +#: templates/account/token.html:8 templates/account/token_list.html:6 msgid "My API Tokens" msgstr "Mijn API-tokens" -#: netbox/templates/account/token.html:11 -#: netbox/templates/account/token.html:19 netbox/templates/users/token.html:6 -#: netbox/templates/users/token.html:14 netbox/users/forms/filtersets.py:120 +#: templates/account/token.html:11 templates/account/token.html:19 +#: templates/users/token.html:6 templates/users/token.html:14 +#: users/forms/filtersets.py:120 msgid "Token" msgstr "Token" -#: netbox/templates/account/token.html:39 netbox/templates/users/token.html:31 -#: netbox/users/forms/bulk_edit.py:107 +#: templates/account/token.html:39 templates/users/token.html:31 +#: users/forms/bulk_edit.py:107 msgid "Write enabled" msgstr "Schrijven ingeschakeld" -#: netbox/templates/account/token.html:51 netbox/templates/users/token.html:43 +#: templates/account/token.html:51 templates/users/token.html:43 msgid "Last used" msgstr "Laatst gebruikt" -#: netbox/templates/account/token_list.html:12 +#: templates/account/token_list.html:12 msgid "Add a Token" msgstr "Een token toevoegen" -#: netbox/templates/base/base.html:22 netbox/templates/home.html:27 +#: templates/base/base.html:22 templates/home.html:27 msgid "Home" msgstr "Home" -#: netbox/templates/base/layout.html:25 +#: templates/base/layout.html:25 msgid "NetBox Motif" msgstr "NetBox-motief" -#: netbox/templates/base/layout.html:38 netbox/templates/base/layout.html:39 -#: netbox/templates/login.html:14 netbox/templates/login.html:15 +#: templates/base/layout.html:38 templates/base/layout.html:39 +#: templates/login.html:14 templates/login.html:15 msgid "NetBox Logo" msgstr "NetBox-logo" -#: netbox/templates/base/layout.html:150 netbox/templates/base/layout.html:151 +#: templates/base/layout.html:150 templates/base/layout.html:151 msgid "Docs" msgstr "Documenten" -#: netbox/templates/base/layout.html:156 netbox/templates/base/layout.html:157 -#: netbox/templates/rest_framework/api.html:10 +#: templates/base/layout.html:156 templates/base/layout.html:157 +#: templates/rest_framework/api.html:10 msgid "REST API" msgstr "REST API" -#: netbox/templates/base/layout.html:162 netbox/templates/base/layout.html:163 +#: templates/base/layout.html:162 templates/base/layout.html:163 msgid "REST API documentation" msgstr "REST API-documentatie" -#: netbox/templates/base/layout.html:169 netbox/templates/base/layout.html:170 +#: templates/base/layout.html:169 templates/base/layout.html:170 msgid "GraphQL API" msgstr "GraphQL-API" -#: netbox/templates/base/layout.html:185 netbox/templates/base/layout.html:186 +#: templates/base/layout.html:185 templates/base/layout.html:186 msgid "NetBox Labs Support" msgstr "Ondersteuning voor NetBox Labs" -#: netbox/templates/base/layout.html:194 netbox/templates/base/layout.html:195 +#: templates/base/layout.html:194 templates/base/layout.html:195 msgid "Source Code" msgstr "Broncode" -#: netbox/templates/base/layout.html:200 netbox/templates/base/layout.html:201 +#: templates/base/layout.html:200 templates/base/layout.html:201 msgid "Community" msgstr "Gemeenschap" -#: netbox/templates/circuits/circuit.html:47 +#: templates/circuits/circuit.html:47 msgid "Install Date" msgstr "Datum van installatie" -#: netbox/templates/circuits/circuit.html:51 +#: templates/circuits/circuit.html:51 msgid "Termination Date" msgstr "Beëindigingsdatum" -#: netbox/templates/circuits/circuit.html:70 -#: netbox/templates/ipam/inc/panels/fhrp_groups.html:15 +#: templates/circuits/circuit.html:70 +#: templates/ipam/inc/panels/fhrp_groups.html:15 msgid "Assign Group" msgstr "Groep toewijzen" -#: netbox/templates/circuits/circuit_terminations_swap.html:4 +#: templates/circuits/circuit_terminations_swap.html:4 msgid "Swap Circuit Terminations" msgstr "Swap Circuit-afsluitingen" -#: netbox/templates/circuits/circuit_terminations_swap.html:8 +#: templates/circuits/circuit_terminations_swap.html:8 #, python-format msgid "Swap these terminations for circuit %(circuit)s?" msgstr "Verwissel deze aansluitingen voor een circuit %(circuit)s?" -#: netbox/templates/circuits/circuit_terminations_swap.html:14 +#: templates/circuits/circuit_terminations_swap.html:14 msgid "A side" msgstr "A-kant" -#: netbox/templates/circuits/circuit_terminations_swap.html:22 +#: templates/circuits/circuit_terminations_swap.html:22 msgid "Z side" msgstr "Z-kant" -#: netbox/templates/circuits/circuitgroup.html:16 +#: templates/circuits/circuitgroup.html:16 msgid "Assign Circuit" msgstr "Circuit toewijzen" -#: netbox/templates/circuits/circuitgroupassignment.html:19 +#: templates/circuits/circuitgroupassignment.html:19 msgid "Circuit Group Assignment" msgstr "Circuitgroepopdracht" -#: netbox/templates/circuits/circuittype.html:10 +#: templates/circuits/circuittype.html:10 msgid "Add Circuit" msgstr "Circuit toevoegen" -#: netbox/templates/circuits/circuittype.html:19 +#: templates/circuits/circuittype.html:19 msgid "Circuit Type" msgstr "Circuittype" -#: netbox/templates/circuits/inc/circuit_termination.html:10 -#: netbox/templates/dcim/devicetype/component_templates.html:33 -#: netbox/templates/dcim/manufacturer.html:11 -#: netbox/templates/dcim/moduletype/component_templates.html:29 -#: netbox/templates/generic/bulk_add_component.html:22 -#: netbox/templates/users/objectpermission.html:38 -#: netbox/utilities/templates/buttons/add.html:4 -#: netbox/utilities/templates/helpers/table_config_form.html:20 +#: templates/circuits/inc/circuit_termination.html:10 +#: templates/dcim/manufacturer.html:11 +#: templates/generic/bulk_add_component.html:22 +#: templates/users/objectpermission.html:38 +#: utilities/templates/buttons/add.html:4 +#: utilities/templates/helpers/table_config_form.html:20 msgid "Add" msgstr "Toevoegen" -#: netbox/templates/circuits/inc/circuit_termination.html:15 -#: netbox/templates/circuits/inc/circuit_termination_fields.html:36 -#: netbox/templates/dcim/inc/panels/inventory_items.html:32 -#: netbox/templates/dcim/moduletype/component_templates.html:20 -#: netbox/templates/dcim/powerpanel.html:56 -#: netbox/templates/extras/script_list.html:30 -#: netbox/templates/generic/object_edit.html:47 -#: netbox/templates/ipam/inc/ipaddress_edit_header.html:7 -#: netbox/templates/ipam/inc/panels/fhrp_groups.html:43 -#: netbox/utilities/templates/buttons/edit.html:3 +#: templates/circuits/inc/circuit_termination.html:15 +#: templates/circuits/inc/circuit_termination_fields.html:36 +#: templates/dcim/inc/panels/inventory_items.html:32 +#: templates/dcim/powerpanel.html:56 templates/extras/script_list.html:30 +#: templates/generic/object_edit.html:47 +#: templates/ipam/inc/ipaddress_edit_header.html:7 +#: templates/ipam/inc/panels/fhrp_groups.html:43 +#: utilities/templates/buttons/edit.html:3 msgid "Edit" msgstr "Bewerken" -#: netbox/templates/circuits/inc/circuit_termination.html:18 +#: templates/circuits/inc/circuit_termination.html:18 msgid "Swap" msgstr "Ruil" -#: netbox/templates/circuits/inc/circuit_termination_fields.html:19 -#: netbox/templates/dcim/consoleport.html:59 -#: netbox/templates/dcim/consoleserverport.html:60 -#: netbox/templates/dcim/powerfeed.html:114 +#: templates/circuits/inc/circuit_termination_fields.html:19 +#: templates/dcim/consoleport.html:59 templates/dcim/consoleserverport.html:60 +#: templates/dcim/powerfeed.html:114 msgid "Marked as connected" msgstr "Gemarkeerd als verbonden" -#: netbox/templates/circuits/inc/circuit_termination_fields.html:21 +#: templates/circuits/inc/circuit_termination_fields.html:21 msgid "to" msgstr "naar" -#: netbox/templates/circuits/inc/circuit_termination_fields.html:31 -#: netbox/templates/circuits/inc/circuit_termination_fields.html:32 -#: netbox/templates/dcim/frontport.html:80 -#: netbox/templates/dcim/inc/connection_endpoints.html:7 -#: netbox/templates/dcim/interface.html:154 -#: netbox/templates/dcim/rearport.html:76 +#: templates/circuits/inc/circuit_termination_fields.html:31 +#: templates/circuits/inc/circuit_termination_fields.html:32 +#: templates/dcim/frontport.html:80 +#: templates/dcim/inc/connection_endpoints.html:7 +#: templates/dcim/interface.html:154 templates/dcim/rearport.html:76 msgid "Trace" msgstr "Spoor" -#: netbox/templates/circuits/inc/circuit_termination_fields.html:35 +#: templates/circuits/inc/circuit_termination_fields.html:35 msgid "Edit cable" msgstr "Kabel bewerken" -#: netbox/templates/circuits/inc/circuit_termination_fields.html:40 +#: templates/circuits/inc/circuit_termination_fields.html:40 msgid "Remove cable" msgstr "Kabel verwijderen" -#: netbox/templates/circuits/inc/circuit_termination_fields.html:41 -#: netbox/templates/dcim/bulk_disconnect.html:5 -#: netbox/templates/dcim/device/consoleports.html:12 -#: netbox/templates/dcim/device/consoleserverports.html:12 -#: netbox/templates/dcim/device/frontports.html:12 -#: netbox/templates/dcim/device/interfaces.html:16 -#: netbox/templates/dcim/device/poweroutlets.html:12 -#: netbox/templates/dcim/device/powerports.html:12 -#: netbox/templates/dcim/device/rearports.html:12 -#: netbox/templates/dcim/powerpanel.html:61 +#: templates/circuits/inc/circuit_termination_fields.html:41 +#: templates/dcim/bulk_disconnect.html:5 +#: templates/dcim/device/consoleports.html:12 +#: templates/dcim/device/consoleserverports.html:12 +#: templates/dcim/device/frontports.html:12 +#: templates/dcim/device/interfaces.html:16 +#: templates/dcim/device/poweroutlets.html:12 +#: templates/dcim/device/powerports.html:12 +#: templates/dcim/device/rearports.html:12 templates/dcim/powerpanel.html:61 msgid "Disconnect" msgstr "Verbinding verbreken" -#: netbox/templates/circuits/inc/circuit_termination_fields.html:48 -#: netbox/templates/dcim/consoleport.html:69 -#: netbox/templates/dcim/consoleserverport.html:70 -#: netbox/templates/dcim/frontport.html:102 -#: netbox/templates/dcim/interface.html:180 -#: netbox/templates/dcim/interface.html:200 -#: netbox/templates/dcim/powerfeed.html:127 -#: netbox/templates/dcim/poweroutlet.html:71 -#: netbox/templates/dcim/poweroutlet.html:72 -#: netbox/templates/dcim/powerport.html:73 -#: netbox/templates/dcim/rearport.html:98 +#: templates/circuits/inc/circuit_termination_fields.html:48 +#: templates/dcim/consoleport.html:69 templates/dcim/consoleserverport.html:70 +#: templates/dcim/frontport.html:102 templates/dcim/interface.html:180 +#: templates/dcim/interface.html:200 templates/dcim/powerfeed.html:127 +#: templates/dcim/poweroutlet.html:71 templates/dcim/poweroutlet.html:72 +#: templates/dcim/powerport.html:73 templates/dcim/rearport.html:98 msgid "Connect" msgstr "Verbind" -#: netbox/templates/circuits/inc/circuit_termination_fields.html:70 +#: templates/circuits/inc/circuit_termination_fields.html:70 msgid "Downstream" msgstr "Stroomafwaarts" -#: netbox/templates/circuits/inc/circuit_termination_fields.html:71 +#: templates/circuits/inc/circuit_termination_fields.html:71 msgid "Upstream" msgstr "Stroomopwaarts" -#: netbox/templates/circuits/inc/circuit_termination_fields.html:80 +#: templates/circuits/inc/circuit_termination_fields.html:80 msgid "Cross-Connect" msgstr "Cross-connect" -#: netbox/templates/circuits/inc/circuit_termination_fields.html:84 +#: templates/circuits/inc/circuit_termination_fields.html:84 msgid "Patch Panel/Port" msgstr "Patchpaneel/poort" -#: netbox/templates/circuits/provider.html:11 +#: templates/circuits/provider.html:11 msgid "Add circuit" msgstr "Circuit toevoegen" -#: netbox/templates/circuits/provideraccount.html:17 +#: templates/circuits/provideraccount.html:17 msgid "Provider Account" msgstr "Account van de provider" -#: netbox/templates/core/configrevision.html:35 +#: templates/core/configrevision.html:35 msgid "Configuration Data" msgstr "Configuratiegegevens" -#: netbox/templates/core/configrevision.html:40 +#: templates/core/configrevision.html:40 msgid "Comment" msgstr "Commentaar" -#: netbox/templates/core/configrevision_restore.html:8 -#: netbox/templates/core/configrevision_restore.html:25 -#: netbox/templates/core/configrevision_restore.html:64 +#: templates/core/configrevision_restore.html:8 +#: templates/core/configrevision_restore.html:25 +#: templates/core/configrevision_restore.html:64 msgid "Restore" msgstr "Herstellen" -#: netbox/templates/core/configrevision_restore.html:36 +#: templates/core/configrevision_restore.html:36 msgid "Parameter" msgstr "Parameter" -#: netbox/templates/core/configrevision_restore.html:37 +#: templates/core/configrevision_restore.html:37 msgid "Current Value" msgstr "Huidige waarde" -#: netbox/templates/core/configrevision_restore.html:38 +#: templates/core/configrevision_restore.html:38 msgid "New Value" msgstr "Nieuwe waarde" -#: netbox/templates/core/configrevision_restore.html:50 +#: templates/core/configrevision_restore.html:50 msgid "Changed" msgstr "Gewijzigd" -#: netbox/templates/core/datafile.html:42 -#: netbox/templates/ipam/iprange.html:25 -#: netbox/templates/virtualization/virtualdisk.html:29 -#: netbox/virtualization/tables/virtualmachines.py:198 +#: templates/core/datafile.html:42 templates/ipam/iprange.html:25 +#: templates/virtualization/virtualdisk.html:29 +#: virtualization/tables/virtualmachines.py:198 msgid "Size" msgstr "Grootte" -#: netbox/templates/core/datafile.html:43 +#: templates/core/datafile.html:43 msgid "bytes" msgstr "bytes" -#: netbox/templates/core/datafile.html:46 +#: templates/core/datafile.html:46 msgid "SHA256 Hash" msgstr "SHA256-hash" -#: netbox/templates/core/datasource.html:14 -#: netbox/templates/core/datasource.html:20 -#: netbox/utilities/templates/buttons/sync.html:5 +#: templates/core/datasource.html:14 templates/core/datasource.html:20 +#: utilities/templates/buttons/sync.html:5 msgid "Sync" msgstr "Synchroniseer" -#: netbox/templates/core/datasource.html:50 +#: templates/core/datasource.html:50 msgid "Last synced" msgstr "Laatst gesynchroniseerd" -#: netbox/templates/core/datasource.html:84 +#: templates/core/datasource.html:84 msgid "Backend" msgstr "Backend" -#: netbox/templates/core/datasource.html:99 +#: templates/core/datasource.html:99 msgid "No parameters defined" msgstr "Geen parameters gedefinieerd" -#: netbox/templates/core/datasource.html:114 +#: templates/core/datasource.html:114 msgid "Files" msgstr "bestanden" -#: netbox/templates/core/inc/config_data.html:7 +#: templates/core/inc/config_data.html:7 msgid "Rack elevations" msgstr "Rackverhogingen" -#: netbox/templates/core/inc/config_data.html:10 +#: templates/core/inc/config_data.html:10 msgid "Default unit height" msgstr "Standaardeenheidshoogte" -#: netbox/templates/core/inc/config_data.html:14 +#: templates/core/inc/config_data.html:14 msgid "Default unit width" msgstr "Breedte van de standaardeenheid" -#: netbox/templates/core/inc/config_data.html:20 +#: templates/core/inc/config_data.html:20 msgid "Power feeds" msgstr "Stroomvoedingen" -#: netbox/templates/core/inc/config_data.html:23 +#: templates/core/inc/config_data.html:23 msgid "Default voltage" msgstr "Standaardspanning" -#: netbox/templates/core/inc/config_data.html:27 +#: templates/core/inc/config_data.html:27 msgid "Default amperage" msgstr "Standaard stroomsterkte" -#: netbox/templates/core/inc/config_data.html:31 +#: templates/core/inc/config_data.html:31 msgid "Default max utilization" msgstr "Maximaal standaardgebruik" -#: netbox/templates/core/inc/config_data.html:40 +#: templates/core/inc/config_data.html:40 msgid "Enforce global unique" msgstr "Wereldwijd uniek afdwingen" -#: netbox/templates/core/inc/config_data.html:83 +#: templates/core/inc/config_data.html:83 msgid "Paginate count" msgstr "Aantal paginaten" -#: netbox/templates/core/inc/config_data.html:87 +#: templates/core/inc/config_data.html:87 msgid "Max page size" msgstr "Maximale paginagrootte" -#: netbox/templates/core/inc/config_data.html:114 +#: templates/core/inc/config_data.html:114 msgid "User preferences" msgstr "Gebruikersvoorkeuren" -#: netbox/templates/core/inc/config_data.html:141 +#: templates/core/inc/config_data.html:141 msgid "Job retention" msgstr "Behoud van een baan" -#: netbox/templates/core/job.html:35 netbox/templates/core/rq_task.html:12 -#: netbox/templates/core/rq_task.html:49 netbox/templates/core/rq_task.html:58 +#: templates/core/job.html:35 templates/core/rq_task.html:12 +#: templates/core/rq_task.html:49 templates/core/rq_task.html:58 msgid "Job" msgstr "Taak" -#: netbox/templates/core/job.html:58 -#: netbox/templates/extras/journalentry.html:26 +#: templates/core/job.html:58 templates/extras/journalentry.html:26 msgid "Created By" msgstr "Gemaakt door" -#: netbox/templates/core/job.html:66 +#: templates/core/job.html:66 msgid "Scheduling" msgstr "Planning" -#: netbox/templates/core/job.html:77 +#: templates/core/job.html:77 #, python-format msgid "every %(interval)s minutes" msgstr "elk %(interval)s minuten" -#: netbox/templates/core/objectchange.html:29 -#: netbox/templates/users/objectpermission.html:42 +#: templates/core/objectchange.html:29 +#: templates/users/objectpermission.html:42 msgid "Change" msgstr "Verandering" -#: netbox/templates/core/objectchange.html:79 +#: templates/core/objectchange.html:79 msgid "Difference" msgstr "Verschil" -#: netbox/templates/core/objectchange.html:82 +#: templates/core/objectchange.html:82 msgid "Previous" msgstr "Vorige" -#: netbox/templates/core/objectchange.html:85 +#: templates/core/objectchange.html:85 msgid "Next" msgstr "Volgende" -#: netbox/templates/core/objectchange.html:93 +#: templates/core/objectchange.html:93 msgid "Object Created" msgstr "Object gemaakt" -#: netbox/templates/core/objectchange.html:95 +#: templates/core/objectchange.html:95 msgid "Object Deleted" msgstr "Object verwijderd" -#: netbox/templates/core/objectchange.html:97 +#: templates/core/objectchange.html:97 msgid "No Changes" msgstr "Geen wijzigingen" -#: netbox/templates/core/objectchange.html:111 +#: templates/core/objectchange.html:111 msgid "Pre-Change Data" msgstr "Gegevens vóór de wijziging" -#: netbox/templates/core/objectchange.html:122 +#: templates/core/objectchange.html:122 msgid "Warning: Comparing non-atomic change to previous change record" msgstr "" "Waarschuwing: niet-atomaire wijzigingen vergelijken met eerdere " "wijzigingsrecords" -#: netbox/templates/core/objectchange.html:131 +#: templates/core/objectchange.html:131 msgid "Post-Change Data" msgstr "Gegevens na de wijziging" -#: netbox/templates/core/objectchange.html:162 +#: templates/core/objectchange.html:162 #, python-format msgid "See All %(count)s Changes" msgstr "Alles bekijken %(count)s Veranderingen" -#: netbox/templates/core/objectchange_list.html:9 -#: netbox/templates/extras/object_changelog.html:15 +#: templates/core/objectchange_list.html:9 +#: templates/extras/object_changelog.html:15 msgid "Change log retention" msgstr "Het bewaren van logboeken wijzigen" -#: netbox/templates/core/objectchange_list.html:9 -#: netbox/templates/extras/object_changelog.html:15 +#: templates/core/objectchange_list.html:9 +#: templates/extras/object_changelog.html:15 msgid "days" msgstr "dagen" -#: netbox/templates/core/objectchange_list.html:9 -#: netbox/templates/extras/object_changelog.html:15 +#: templates/core/objectchange_list.html:9 +#: templates/extras/object_changelog.html:15 msgid "Indefinite" msgstr "Onbepaald" -#: netbox/templates/core/plugin.html:21 +#: templates/core/plugin.html:22 msgid "Not installed" msgstr "Niet geïnstalleerd" -#: netbox/templates/core/plugin.html:32 +#: templates/core/plugin.html:33 msgid "Overview" msgstr "Overzicht" -#: netbox/templates/core/plugin.html:38 +#: templates/core/plugin.html:39 msgid "Install" msgstr "Installeren" -#: netbox/templates/core/plugin.html:50 +#: templates/core/plugin.html:51 msgid "Plugin Details" msgstr "Details van de plug-in" -#: netbox/templates/core/plugin.html:57 +#: templates/core/plugin.html:58 msgid "Summary" msgstr "Samenvatting" -#: netbox/templates/core/plugin.html:75 +#: templates/core/plugin.html:76 msgid "License" msgstr "Licentie" -#: netbox/templates/core/plugin.html:95 +#: templates/core/plugin.html:96 msgid "Version History" msgstr "Versiegeschiedenis" -#: netbox/templates/core/plugin.html:106 +#: templates/core/plugin.html:107 msgid "Local Installation Instructions" msgstr "Lokale installatie-instructies" -#: netbox/templates/core/rq_queue_list.html:5 -#: netbox/templates/core/rq_queue_list.html:13 -#: netbox/templates/core/rq_task_list.html:14 -#: netbox/templates/core/rq_worker.html:7 +#: templates/core/rq_queue_list.html:5 templates/core/rq_queue_list.html:13 +#: templates/core/rq_task_list.html:14 templates/core/rq_worker.html:7 msgid "Background Queues" msgstr "Achtergrondwachtrijen" -#: netbox/templates/core/rq_queue_list.html:24 -#: netbox/templates/core/rq_queue_list.html:25 -#: netbox/templates/core/rq_worker_list.html:49 -#: netbox/templates/core/rq_worker_list.html:50 -#: netbox/templates/extras/script_result.html:67 -#: netbox/templates/extras/script_result.html:69 -#: netbox/templates/inc/table_controls_htmx.html:30 -#: netbox/templates/inc/table_controls_htmx.html:33 +#: templates/core/rq_queue_list.html:24 templates/core/rq_queue_list.html:25 +#: templates/core/rq_worker_list.html:49 templates/core/rq_worker_list.html:50 +#: templates/extras/script_result.html:67 +#: templates/extras/script_result.html:69 +#: templates/inc/table_controls_htmx.html:30 +#: templates/inc/table_controls_htmx.html:33 msgid "Configure Table" msgstr "Tabel configureren" -#: netbox/templates/core/rq_task.html:29 +#: templates/core/rq_task.html:29 msgid "Stop" msgstr "Stop" -#: netbox/templates/core/rq_task.html:34 +#: templates/core/rq_task.html:34 msgid "Requeue" msgstr "Requeue" -#: netbox/templates/core/rq_task.html:39 +#: templates/core/rq_task.html:39 msgid "Enqueue" msgstr "In de wachtrij" -#: netbox/templates/core/rq_task.html:61 +#: templates/core/rq_task.html:61 msgid "Queue" msgstr "Wachtrij" -#: netbox/templates/core/rq_task.html:65 +#: templates/core/rq_task.html:65 msgid "Timeout" msgstr "Time-out" -#: netbox/templates/core/rq_task.html:69 +#: templates/core/rq_task.html:69 msgid "Result TTL" msgstr "Resultaat TTL" -#: netbox/templates/core/rq_task.html:89 +#: templates/core/rq_task.html:89 msgid "Meta" msgstr "Meta" -#: netbox/templates/core/rq_task.html:93 +#: templates/core/rq_task.html:93 msgid "Arguments" msgstr "Argumenten" -#: netbox/templates/core/rq_task.html:97 +#: templates/core/rq_task.html:97 msgid "Keyword Arguments" msgstr "Argumenten voor zoekwoorden" -#: netbox/templates/core/rq_task.html:103 +#: templates/core/rq_task.html:103 msgid "Depends on" msgstr "Hangt af van" -#: netbox/templates/core/rq_task.html:109 +#: templates/core/rq_task.html:109 msgid "Exception" msgstr "Uitzondering" -#: netbox/templates/core/rq_task_list.html:28 +#: templates/core/rq_task_list.html:28 msgid "tasks in " msgstr "taken in " -#: netbox/templates/core/rq_task_list.html:33 +#: templates/core/rq_task_list.html:33 msgid "Queued Jobs" msgstr "Opdrachten in de wachtrij" -#: netbox/templates/core/rq_task_list.html:64 -#: netbox/templates/extras/script_result.html:86 +#: templates/core/rq_task_list.html:64 templates/extras/script_result.html:86 #, python-format msgid "" "Select all %(count)s %(object_type_plural)s matching query" @@ -12333,399 +11657,384 @@ msgstr "" "Selecteer allemaal %(count)s %(object_type_plural)s " "overeenkomende vraag" -#: netbox/templates/core/rq_worker.html:10 +#: templates/core/rq_worker.html:10 msgid "Worker Info" msgstr "Informatie voor werknemers" -#: netbox/templates/core/rq_worker.html:31 -#: netbox/templates/core/rq_worker.html:40 +#: templates/core/rq_worker.html:31 templates/core/rq_worker.html:40 msgid "Worker" msgstr "Worker" -#: netbox/templates/core/rq_worker.html:55 +#: templates/core/rq_worker.html:55 msgid "Queues" msgstr "Wachtrijen" -#: netbox/templates/core/rq_worker.html:63 +#: templates/core/rq_worker.html:63 msgid "Curent Job" msgstr "Huidige baan" -#: netbox/templates/core/rq_worker.html:67 +#: templates/core/rq_worker.html:67 msgid "Successful job count" msgstr "Aantal succesvolle taken" -#: netbox/templates/core/rq_worker.html:71 +#: templates/core/rq_worker.html:71 msgid "Failed job count" msgstr "Aantal mislukte taken" -#: netbox/templates/core/rq_worker.html:75 +#: templates/core/rq_worker.html:75 msgid "Total working time" msgstr "Totale werktijd" -#: netbox/templates/core/rq_worker.html:76 +#: templates/core/rq_worker.html:76 msgid "seconds" msgstr "seconden" -#: netbox/templates/core/rq_worker_list.html:13 -#: netbox/templates/core/rq_worker_list.html:21 +#: templates/core/rq_worker_list.html:13 templates/core/rq_worker_list.html:21 msgid "Background Workers" msgstr "Achtergrondwerkers" -#: netbox/templates/core/rq_worker_list.html:29 +#: templates/core/rq_worker_list.html:29 #, python-format msgid "Workers in %(queue_name)s" msgstr "Werknemers in %(queue_name)s" -#: netbox/templates/core/system.html:11 -#: netbox/utilities/templates/buttons/export.html:4 +#: templates/core/system.html:11 utilities/templates/buttons/export.html:4 msgid "Export" msgstr "Exporteren" -#: netbox/templates/core/system.html:28 +#: templates/core/system.html:28 msgid "System Status" msgstr "Status van het systeem" -#: netbox/templates/core/system.html:31 +#: templates/core/system.html:31 msgid "NetBox release" msgstr "NetBox-release" -#: netbox/templates/core/system.html:44 +#: templates/core/system.html:44 msgid "Django version" msgstr "Django-versie" -#: netbox/templates/core/system.html:48 +#: templates/core/system.html:48 msgid "PostgreSQL version" msgstr "PostgreSQL-versie" -#: netbox/templates/core/system.html:52 +#: templates/core/system.html:52 msgid "Database name" msgstr "Databasenaam" -#: netbox/templates/core/system.html:56 +#: templates/core/system.html:56 msgid "Database size" msgstr "Grootte van de database" -#: netbox/templates/core/system.html:61 +#: templates/core/system.html:61 msgid "Unavailable" msgstr "Niet beschikbaar" -#: netbox/templates/core/system.html:66 +#: templates/core/system.html:66 msgid "RQ workers" msgstr "RQ-werknemers" -#: netbox/templates/core/system.html:69 +#: templates/core/system.html:69 msgid "default queue" msgstr "standaardwachtrij" -#: netbox/templates/core/system.html:73 +#: templates/core/system.html:73 msgid "System time" msgstr "Systeemtijd" -#: netbox/templates/core/system.html:85 +#: templates/core/system.html:85 msgid "Current Configuration" msgstr "Huidige configuratie" -#: netbox/templates/dcim/bulk_disconnect.html:9 +#: templates/dcim/bulk_disconnect.html:9 #, python-format msgid "" "Are you sure you want to disconnect these %(count)s %(obj_type_plural)s?" msgstr "" "Weet je zeker dat je deze wilt loskoppelen %(count)s %(obj_type_plural)s?" -#: netbox/templates/dcim/cable_trace.html:10 +#: templates/dcim/cable_trace.html:10 #, python-format msgid "Cable Trace for %(object_type)s %(object)s" msgstr "Cable Trace voor %(object_type)s %(object)s" -#: netbox/templates/dcim/cable_trace.html:24 -#: netbox/templates/dcim/inc/rack_elevation.html:7 +#: templates/dcim/cable_trace.html:24 templates/dcim/inc/rack_elevation.html:7 msgid "Download SVG" msgstr "SVG downloaden" -#: netbox/templates/dcim/cable_trace.html:30 +#: templates/dcim/cable_trace.html:30 msgid "Asymmetric Path" msgstr "Asymmetrisch pad" -#: netbox/templates/dcim/cable_trace.html:31 +#: templates/dcim/cable_trace.html:31 msgid "The nodes below have no links and result in an asymmetric path" msgstr "" "De knooppunten hieronder hebben geen links en resulteren in een asymmetrisch" " pad" -#: netbox/templates/dcim/cable_trace.html:38 +#: templates/dcim/cable_trace.html:38 msgid "Path split" msgstr "Pad gesplitst" -#: netbox/templates/dcim/cable_trace.html:39 +#: templates/dcim/cable_trace.html:39 msgid "Select a node below to continue" msgstr "Selecteer hieronder een knooppunt om door te gaan" -#: netbox/templates/dcim/cable_trace.html:55 +#: templates/dcim/cable_trace.html:55 msgid "Trace Completed" msgstr "Traceren voltooid" -#: netbox/templates/dcim/cable_trace.html:58 +#: templates/dcim/cable_trace.html:58 msgid "Total segments" msgstr "Totaal aantal segmenten" -#: netbox/templates/dcim/cable_trace.html:62 +#: templates/dcim/cable_trace.html:62 msgid "Total length" msgstr "Totale lengte" -#: netbox/templates/dcim/cable_trace.html:77 +#: templates/dcim/cable_trace.html:77 msgid "No paths found" msgstr "Geen paden gevonden" -#: netbox/templates/dcim/cable_trace.html:85 +#: templates/dcim/cable_trace.html:85 msgid "Related Paths" msgstr "Gerelateerde paden" -#: netbox/templates/dcim/cable_trace.html:89 +#: templates/dcim/cable_trace.html:89 msgid "Origin" msgstr "Herkomst" -#: netbox/templates/dcim/cable_trace.html:90 +#: templates/dcim/cable_trace.html:90 msgid "Destination" msgstr "Bestemming" -#: netbox/templates/dcim/cable_trace.html:91 +#: templates/dcim/cable_trace.html:91 msgid "Segments" msgstr "Segmenten" -#: netbox/templates/dcim/cable_trace.html:104 +#: templates/dcim/cable_trace.html:104 msgid "Incomplete" msgstr "Onvolledig" -#: netbox/templates/dcim/component_list.html:14 +#: templates/dcim/component_list.html:14 msgid "Rename Selected" msgstr "Geselecteerde naam wijzigen" -#: netbox/templates/dcim/consoleport.html:65 -#: netbox/templates/dcim/consoleserverport.html:66 -#: netbox/templates/dcim/frontport.html:98 -#: netbox/templates/dcim/interface.html:176 -#: netbox/templates/dcim/poweroutlet.html:69 -#: netbox/templates/dcim/powerport.html:69 +#: templates/dcim/consoleport.html:65 templates/dcim/consoleserverport.html:66 +#: templates/dcim/frontport.html:98 templates/dcim/interface.html:176 +#: templates/dcim/poweroutlet.html:69 templates/dcim/powerport.html:69 msgid "Not Connected" msgstr "Niet verbonden" -#: netbox/templates/dcim/device.html:34 +#: templates/dcim/device.html:34 msgid "Highlight device in rack" msgstr "Markeer het apparaat in het rack" -#: netbox/templates/dcim/device.html:55 +#: templates/dcim/device.html:55 msgid "Not racked" msgstr "Niet gehackt" -#: netbox/templates/dcim/device.html:62 netbox/templates/dcim/site.html:94 +#: templates/dcim/device.html:62 templates/dcim/site.html:94 msgid "GPS Coordinates" msgstr "GPS-coördinaten" -#: netbox/templates/dcim/device.html:68 netbox/templates/dcim/site.html:81 -#: netbox/templates/dcim/site.html:100 +#: templates/dcim/device.html:68 templates/dcim/site.html:81 +#: templates/dcim/site.html:100 msgid "Map" msgstr "Kaart" -#: netbox/templates/dcim/device.html:108 -#: netbox/templates/dcim/inventoryitem.html:56 -#: netbox/templates/dcim/module.html:81 -#: netbox/templates/dcim/modulebay.html:74 netbox/templates/dcim/rack.html:61 +#: templates/dcim/device.html:108 templates/dcim/inventoryitem.html:56 +#: templates/dcim/module.html:81 templates/dcim/modulebay.html:74 +#: templates/dcim/rack.html:61 msgid "Asset Tag" msgstr "Tag voor bedrijfsmiddelen" -#: netbox/templates/dcim/device.html:123 +#: templates/dcim/device.html:123 msgid "View Virtual Chassis" msgstr "Bekijk het virtuele chassis" -#: netbox/templates/dcim/device.html:164 +#: templates/dcim/device.html:164 msgid "Create VDC" msgstr "VDC aanmaken" -#: netbox/templates/dcim/device.html:175 -#: netbox/templates/dcim/device_edit.html:64 -#: netbox/virtualization/forms/model_forms.py:223 +#: templates/dcim/device.html:175 templates/dcim/device_edit.html:64 +#: virtualization/forms/model_forms.py:223 msgid "Management" msgstr "Beheer" -#: netbox/templates/dcim/device.html:195 netbox/templates/dcim/device.html:211 -#: netbox/templates/dcim/device.html:227 -#: netbox/templates/virtualization/virtualmachine.html:57 -#: netbox/templates/virtualization/virtualmachine.html:73 +#: templates/dcim/device.html:195 templates/dcim/device.html:211 +#: templates/dcim/device.html:227 +#: templates/virtualization/virtualmachine.html:57 +#: templates/virtualization/virtualmachine.html:73 msgid "NAT for" msgstr "NAT voor" -#: netbox/templates/dcim/device.html:197 netbox/templates/dcim/device.html:213 -#: netbox/templates/dcim/device.html:229 -#: netbox/templates/virtualization/virtualmachine.html:59 -#: netbox/templates/virtualization/virtualmachine.html:75 +#: templates/dcim/device.html:197 templates/dcim/device.html:213 +#: templates/dcim/device.html:229 +#: templates/virtualization/virtualmachine.html:59 +#: templates/virtualization/virtualmachine.html:75 msgid "NAT" msgstr "NAT" -#: netbox/templates/dcim/device.html:252 netbox/templates/dcim/rack.html:73 +#: templates/dcim/device.html:252 templates/dcim/rack.html:73 msgid "Power Utilization" msgstr "Energiegebruik" -#: netbox/templates/dcim/device.html:256 +#: templates/dcim/device.html:256 msgid "Input" msgstr "Invoer" -#: netbox/templates/dcim/device.html:257 +#: templates/dcim/device.html:257 msgid "Outlets" msgstr "Verkooppunten" -#: netbox/templates/dcim/device.html:258 +#: templates/dcim/device.html:258 msgid "Allocated" msgstr "Toegewezen" -#: netbox/templates/dcim/device.html:268 netbox/templates/dcim/device.html:270 -#: netbox/templates/dcim/device.html:286 -#: netbox/templates/dcim/powerfeed.html:67 +#: templates/dcim/device.html:268 templates/dcim/device.html:270 +#: templates/dcim/device.html:286 templates/dcim/powerfeed.html:67 msgid "VA" msgstr "VA" -#: netbox/templates/dcim/device.html:280 +#: templates/dcim/device.html:280 msgctxt "Leg of a power feed" msgid "Leg" msgstr "Leg" -#: netbox/templates/dcim/device.html:306 -#: netbox/templates/virtualization/virtualmachine.html:158 +#: templates/dcim/device.html:306 +#: templates/virtualization/virtualmachine.html:158 msgid "Add a service" msgstr "Een service toevoegen" -#: netbox/templates/dcim/device/base.html:21 -#: netbox/templates/dcim/device_list.html:9 -#: netbox/templates/dcim/devicetype/base.html:18 -#: netbox/templates/dcim/module.html:18 -#: netbox/templates/dcim/moduletype/base.html:18 -#: netbox/templates/virtualization/virtualmachine/base.html:22 -#: netbox/templates/virtualization/virtualmachine_list.html:8 +#: templates/dcim/device/base.html:21 templates/dcim/device_list.html:9 +#: templates/dcim/devicetype/base.html:18 +#: templates/dcim/inc/moduletype_buttons.html:9 templates/dcim/module.html:18 +#: templates/virtualization/virtualmachine/base.html:22 +#: templates/virtualization/virtualmachine_list.html:8 msgid "Add Components" msgstr "Componenten toevoegen" -#: netbox/templates/dcim/device/consoleports.html:24 +#: templates/dcim/device/consoleports.html:24 msgid "Add Console Ports" msgstr "Consolepoorten toevoegen" -#: netbox/templates/dcim/device/consoleserverports.html:24 +#: templates/dcim/device/consoleserverports.html:24 msgid "Add Console Server Ports" msgstr "Console Server-poorten toevoegen" -#: netbox/templates/dcim/device/devicebays.html:10 +#: templates/dcim/device/devicebays.html:10 msgid "Add Device Bays" msgstr "Apparaatbays toevoegen" -#: netbox/templates/dcim/device/frontports.html:24 +#: templates/dcim/device/frontports.html:24 msgid "Add Front Ports" msgstr "Poorten aan de voorkant toevoegen" -#: netbox/templates/dcim/device/inc/interface_table_controls.html:9 +#: templates/dcim/device/inc/interface_table_controls.html:9 msgid "Hide Enabled" msgstr "Verbergen ingeschakeld" -#: netbox/templates/dcim/device/inc/interface_table_controls.html:10 +#: templates/dcim/device/inc/interface_table_controls.html:10 msgid "Hide Disabled" msgstr "Verbergen Uitgeschakeld" -#: netbox/templates/dcim/device/inc/interface_table_controls.html:11 +#: templates/dcim/device/inc/interface_table_controls.html:11 msgid "Hide Virtual" msgstr "Virtueel verbergen" -#: netbox/templates/dcim/device/inc/interface_table_controls.html:12 +#: templates/dcim/device/inc/interface_table_controls.html:12 msgid "Hide Disconnected" msgstr "Verberg de verbinding verbroken" -#: netbox/templates/dcim/device/interfaces.html:27 +#: templates/dcim/device/interfaces.html:27 msgid "Add Interfaces" msgstr "Interfaces toevoegen" -#: netbox/templates/dcim/device/inventory.html:10 -#: netbox/templates/dcim/inc/panels/inventory_items.html:10 +#: templates/dcim/device/inventory.html:10 +#: templates/dcim/inc/panels/inventory_items.html:10 msgid "Add Inventory Item" msgstr "Inventarisitem toevoegen" -#: netbox/templates/dcim/device/modulebays.html:10 +#: templates/dcim/device/modulebays.html:10 msgid "Add Module Bays" msgstr "Modulebays toevoegen" -#: netbox/templates/dcim/device/poweroutlets.html:24 +#: templates/dcim/device/poweroutlets.html:24 msgid "Add Power Outlets" msgstr "Stopcontacten toevoegen" -#: netbox/templates/dcim/device/powerports.html:24 +#: templates/dcim/device/powerports.html:24 msgid "Add Power Port" msgstr "Voedingspoort toevoegen" -#: netbox/templates/dcim/device/rearports.html:24 +#: templates/dcim/device/rearports.html:24 msgid "Add Rear Ports" msgstr "Achterpoorten toevoegen" -#: netbox/templates/dcim/device/render_config.html:5 -#: netbox/templates/virtualization/virtualmachine/render_config.html:5 +#: templates/dcim/device/render_config.html:5 +#: templates/virtualization/virtualmachine/render_config.html:5 msgid "Config" msgstr "Configuratie" -#: netbox/templates/dcim/device/render_config.html:35 -#: netbox/templates/virtualization/virtualmachine/render_config.html:35 +#: templates/dcim/device/render_config.html:35 +#: templates/virtualization/virtualmachine/render_config.html:35 msgid "Context Data" msgstr "Contextgegevens" -#: netbox/templates/dcim/device/render_config.html:53 -#: netbox/templates/virtualization/virtualmachine/render_config.html:53 +#: templates/dcim/device/render_config.html:53 +#: templates/virtualization/virtualmachine/render_config.html:53 msgid "Rendered Config" msgstr "Gerenderde configuratie" -#: netbox/templates/dcim/device/render_config.html:55 -#: netbox/templates/virtualization/virtualmachine/render_config.html:55 +#: templates/dcim/device/render_config.html:55 +#: templates/virtualization/virtualmachine/render_config.html:55 msgid "Download" msgstr "Downloaden" -#: netbox/templates/dcim/device/render_config.html:61 -#: netbox/templates/virtualization/virtualmachine/render_config.html:61 +#: templates/dcim/device/render_config.html:61 +#: templates/virtualization/virtualmachine/render_config.html:61 msgid "No configuration template found" msgstr "Geen configuratiesjabloon gevonden" -#: netbox/templates/dcim/device_edit.html:44 +#: templates/dcim/device_edit.html:44 msgid "Parent Bay" msgstr "Parent Bay" -#: netbox/templates/dcim/device_edit.html:48 -#: netbox/utilities/templates/form_helpers/render_field.html:22 +#: templates/dcim/device_edit.html:48 +#: utilities/templates/form_helpers/render_field.html:22 msgid "Regenerate Slug" msgstr "Regenereer naaktslak" -#: netbox/templates/dcim/device_edit.html:49 -#: netbox/templates/generic/bulk_remove.html:21 -#: netbox/utilities/templates/helpers/table_config_form.html:23 +#: templates/dcim/device_edit.html:49 templates/generic/bulk_remove.html:21 +#: utilities/templates/helpers/table_config_form.html:23 msgid "Remove" msgstr "Verwijderen" -#: netbox/templates/dcim/device_edit.html:110 +#: templates/dcim/device_edit.html:110 msgid "Local Config Context Data" msgstr "Contextgegevens voor lokale configuratie" -#: netbox/templates/dcim/device_list.html:82 -#: netbox/templates/dcim/moduletype/component_templates.html:17 -#: netbox/templates/generic/bulk_rename.html:57 -#: netbox/templates/virtualization/virtualmachine/interfaces.html:11 -#: netbox/templates/virtualization/virtualmachine/virtual_disks.html:11 +#: templates/dcim/device_list.html:82 templates/generic/bulk_rename.html:57 +#: templates/virtualization/virtualmachine/interfaces.html:11 +#: templates/virtualization/virtualmachine/virtual_disks.html:11 msgid "Rename" msgstr "Hernoemen" -#: netbox/templates/dcim/devicebay.html:17 +#: templates/dcim/devicebay.html:17 msgid "Device Bay" msgstr "Apparaatvak" -#: netbox/templates/dcim/devicebay.html:43 +#: templates/dcim/devicebay.html:43 msgid "Installed Device" msgstr "Geïnstalleerd apparaat" -#: netbox/templates/dcim/devicebay_depopulate.html:6 +#: templates/dcim/devicebay_depopulate.html:6 #, python-format msgid "Remove %(device)s from %(device_bay)s?" msgstr "Verwijderen %(device)s uit %(device_bay)s?" -#: netbox/templates/dcim/devicebay_depopulate.html:13 +#: templates/dcim/devicebay_depopulate.html:13 #, python-format msgid "" "Are you sure you want to remove %(device)s from " @@ -12734,449 +12043,430 @@ msgstr "" "Weet je zeker dat je wilt verwijderen %(device)s uit " "%(device_bay)s?" -#: netbox/templates/dcim/devicebay_populate.html:13 +#: templates/dcim/devicebay_populate.html:13 msgid "Populate" msgstr "Bevolken" -#: netbox/templates/dcim/devicebay_populate.html:22 +#: templates/dcim/devicebay_populate.html:22 msgid "Bay" msgstr "Bay" -#: netbox/templates/dcim/devicerole.html:14 -#: netbox/templates/dcim/platform.html:17 +#: templates/dcim/devicerole.html:14 templates/dcim/platform.html:17 msgid "Add Device" msgstr "Apparaat toevoegen" -#: netbox/templates/dcim/devicerole.html:40 +#: templates/dcim/devicerole.html:40 msgid "VM Role" msgstr "VM-rol" -#: netbox/templates/dcim/devicetype.html:18 -#: netbox/templates/dcim/moduletype.html:18 +#: templates/dcim/devicetype.html:18 templates/dcim/moduletype.html:29 msgid "Model Name" msgstr "Naam van het model" -#: netbox/templates/dcim/devicetype.html:25 -#: netbox/templates/dcim/moduletype.html:22 +#: templates/dcim/devicetype.html:25 templates/dcim/moduletype.html:33 msgid "Part Number" msgstr "Onderdeelnummer" -#: netbox/templates/dcim/devicetype.html:41 +#: templates/dcim/devicetype.html:41 msgid "Exclude From Utilization" msgstr "Van gebruik uitsluiten" -#: netbox/templates/dcim/devicetype.html:59 +#: templates/dcim/devicetype.html:59 msgid "Parent/Child" msgstr "Ouder/kind" -#: netbox/templates/dcim/devicetype.html:71 +#: templates/dcim/devicetype.html:71 msgid "Front Image" msgstr "Afbeelding op de voorkant" -#: netbox/templates/dcim/devicetype.html:83 +#: templates/dcim/devicetype.html:83 msgid "Rear Image" msgstr "Afbeelding aan de achterkant" -#: netbox/templates/dcim/frontport.html:54 +#: templates/dcim/frontport.html:54 msgid "Rear Port Position" msgstr "Positie van de achterpoort" -#: netbox/templates/dcim/frontport.html:72 -#: netbox/templates/dcim/interface.html:144 -#: netbox/templates/dcim/poweroutlet.html:63 -#: netbox/templates/dcim/powerport.html:63 -#: netbox/templates/dcim/rearport.html:68 +#: templates/dcim/frontport.html:72 templates/dcim/interface.html:144 +#: templates/dcim/poweroutlet.html:63 templates/dcim/powerport.html:63 +#: templates/dcim/rearport.html:68 msgid "Marked as Connected" msgstr "Gemarkeerd als verbonden" -#: netbox/templates/dcim/frontport.html:86 -#: netbox/templates/dcim/rearport.html:82 +#: templates/dcim/frontport.html:86 templates/dcim/rearport.html:82 msgid "Connection Status" msgstr "Status van de verbinding" -#: netbox/templates/dcim/htmx/cable_edit.html:10 +#: templates/dcim/htmx/cable_edit.html:10 msgid "A Side" msgstr "A-kant" -#: netbox/templates/dcim/htmx/cable_edit.html:30 +#: templates/dcim/htmx/cable_edit.html:30 msgid "B Side" msgstr "B-kant" -#: netbox/templates/dcim/inc/cable_termination.html:65 +#: templates/dcim/inc/cable_termination.html:65 msgid "No termination" msgstr "Geen beëindiging" -#: netbox/templates/dcim/inc/cable_toggle_buttons.html:3 +#: templates/dcim/inc/cable_toggle_buttons.html:3 msgid "Mark Planned" msgstr "Mark Gepland" -#: netbox/templates/dcim/inc/cable_toggle_buttons.html:6 +#: templates/dcim/inc/cable_toggle_buttons.html:6 msgid "Mark Installed" msgstr "Markeer geïnstalleerd" -#: netbox/templates/dcim/inc/connection_endpoints.html:13 +#: templates/dcim/inc/connection_endpoints.html:13 msgid "Path Status" msgstr "Status van het pad" -#: netbox/templates/dcim/inc/connection_endpoints.html:18 +#: templates/dcim/inc/connection_endpoints.html:18 msgid "Not Reachable" msgstr "Niet bereikbaar" -#: netbox/templates/dcim/inc/connection_endpoints.html:23 +#: templates/dcim/inc/connection_endpoints.html:23 msgid "Path Endpoints" msgstr "Eindpunten van het pad" -#: netbox/templates/dcim/inc/endpoint_connection.html:8 -#: netbox/templates/dcim/powerfeed.html:120 -#: netbox/templates/dcim/rearport.html:94 +#: templates/dcim/inc/endpoint_connection.html:8 +#: templates/dcim/powerfeed.html:120 templates/dcim/rearport.html:94 msgid "Not connected" msgstr "Niet verbonden" -#: netbox/templates/dcim/inc/interface_vlans_table.html:6 +#: templates/dcim/inc/interface_vlans_table.html:6 msgid "Untagged" msgstr "Niet gelabeld" -#: netbox/templates/dcim/inc/interface_vlans_table.html:37 +#: templates/dcim/inc/interface_vlans_table.html:37 msgid "No VLANs Assigned" msgstr "Geen VLAN's toegewezen" -#: netbox/templates/dcim/inc/interface_vlans_table.html:44 -#: netbox/templates/ipam/prefix_list.html:16 -#: netbox/templates/ipam/prefix_list.html:33 +#: templates/dcim/inc/interface_vlans_table.html:44 +#: templates/ipam/prefix_list.html:16 templates/ipam/prefix_list.html:33 msgid "Clear" msgstr "Duidelijk" -#: netbox/templates/dcim/inc/interface_vlans_table.html:47 +#: templates/dcim/inc/interface_vlans_table.html:47 msgid "Clear All" msgstr "Alles wissen" -#: netbox/templates/dcim/inc/panels/racktype_dimensions.html:38 +#: templates/dcim/inc/panels/racktype_dimensions.html:38 msgid "Mounting Depth" msgstr "Montagediepte" -#: netbox/templates/dcim/inc/panels/racktype_numbering.html:6 +#: templates/dcim/inc/panels/racktype_numbering.html:6 msgid "Starting Unit" msgstr "Starteenheid" -#: netbox/templates/dcim/inc/panels/racktype_numbering.html:10 +#: templates/dcim/inc/panels/racktype_numbering.html:10 msgid "Descending Units" msgstr "Aflopende eenheden" -#: netbox/templates/dcim/inc/rack_elevation.html:3 +#: templates/dcim/inc/rack_elevation.html:3 msgid "Rack elevation" msgstr "Rackhoogte" -#: netbox/templates/dcim/interface.html:17 +#: templates/dcim/interface.html:17 msgid "Add Child Interface" msgstr "Kindinterface toevoegen" -#: netbox/templates/dcim/interface.html:50 +#: templates/dcim/interface.html:50 msgid "Speed/Duplex" msgstr "Snelheid/duplex" -#: netbox/templates/dcim/interface.html:73 +#: templates/dcim/interface.html:73 msgid "PoE Mode" msgstr "PoE-modus" -#: netbox/templates/dcim/interface.html:77 +#: templates/dcim/interface.html:77 msgid "PoE Type" msgstr "PoE-type" -#: netbox/templates/dcim/interface.html:81 -#: netbox/templates/virtualization/vminterface.html:63 +#: templates/dcim/interface.html:81 +#: templates/virtualization/vminterface.html:63 msgid "802.1Q Mode" msgstr "802.1Q-modus" -#: netbox/templates/dcim/interface.html:125 -#: netbox/templates/virtualization/vminterface.html:59 +#: templates/dcim/interface.html:125 +#: templates/virtualization/vminterface.html:59 msgid "MAC Address" msgstr "MAC-adres" -#: netbox/templates/dcim/interface.html:151 +#: templates/dcim/interface.html:151 msgid "Wireless Link" msgstr "Draadloze link" -#: netbox/templates/dcim/interface.html:218 netbox/vpn/choices.py:55 +#: templates/dcim/interface.html:218 vpn/choices.py:55 msgid "Peer" msgstr "Peer" -#: netbox/templates/dcim/interface.html:230 -#: netbox/templates/wireless/inc/wirelesslink_interface.html:26 +#: templates/dcim/interface.html:230 +#: templates/wireless/inc/wirelesslink_interface.html:26 msgid "Channel" msgstr "Kanaal" -#: netbox/templates/dcim/interface.html:239 -#: netbox/templates/wireless/inc/wirelesslink_interface.html:32 +#: templates/dcim/interface.html:239 +#: templates/wireless/inc/wirelesslink_interface.html:32 msgid "Channel Frequency" msgstr "Kanaalfrequentie" -#: netbox/templates/dcim/interface.html:242 -#: netbox/templates/dcim/interface.html:250 -#: netbox/templates/dcim/interface.html:261 -#: netbox/templates/dcim/interface.html:269 +#: templates/dcim/interface.html:242 templates/dcim/interface.html:250 +#: templates/dcim/interface.html:261 templates/dcim/interface.html:269 msgid "MHz" msgstr "MHz" -#: netbox/templates/dcim/interface.html:258 -#: netbox/templates/wireless/inc/wirelesslink_interface.html:42 +#: templates/dcim/interface.html:258 +#: templates/wireless/inc/wirelesslink_interface.html:42 msgid "Channel Width" msgstr "Kanaalbreedte" -#: netbox/templates/dcim/interface.html:285 -#: netbox/templates/wireless/wirelesslan.html:14 -#: netbox/templates/wireless/wirelesslink.html:21 -#: netbox/wireless/forms/bulk_edit.py:60 -#: netbox/wireless/forms/bulk_edit.py:102 -#: netbox/wireless/forms/filtersets.py:40 -#: netbox/wireless/forms/filtersets.py:80 netbox/wireless/models.py:82 -#: netbox/wireless/models.py:156 netbox/wireless/tables/wirelesslan.py:44 +#: templates/dcim/interface.html:285 templates/wireless/wirelesslan.html:14 +#: templates/wireless/wirelesslink.html:21 wireless/forms/bulk_edit.py:60 +#: wireless/forms/bulk_edit.py:102 wireless/forms/filtersets.py:40 +#: wireless/forms/filtersets.py:80 wireless/models.py:82 +#: wireless/models.py:156 wireless/tables/wirelesslan.py:44 msgid "SSID" msgstr "SSID" -#: netbox/templates/dcim/interface.html:305 +#: templates/dcim/interface.html:305 msgid "LAG Members" msgstr "LAG-leden" -#: netbox/templates/dcim/interface.html:323 +#: templates/dcim/interface.html:323 msgid "No member interfaces" msgstr "Geen interfaces voor leden" -#: netbox/templates/dcim/interface.html:343 -#: netbox/templates/ipam/fhrpgroup.html:73 -#: netbox/templates/ipam/iprange/ip_addresses.html:7 -#: netbox/templates/ipam/prefix/ip_addresses.html:7 -#: netbox/templates/virtualization/vminterface.html:89 +#: templates/dcim/interface.html:343 templates/ipam/fhrpgroup.html:73 +#: templates/ipam/iprange/ip_addresses.html:7 +#: templates/ipam/prefix/ip_addresses.html:7 +#: templates/virtualization/vminterface.html:89 msgid "Add IP Address" msgstr "IP-adres toevoegen" -#: netbox/templates/dcim/inventoryitem.html:24 +#: templates/dcim/inventoryitem.html:24 msgid "Parent Item" msgstr "Bovenliggend item" -#: netbox/templates/dcim/inventoryitem.html:48 +#: templates/dcim/inventoryitem.html:48 msgid "Part ID" msgstr "Onderdeel-ID" -#: netbox/templates/dcim/location.html:17 +#: templates/dcim/location.html:17 msgid "Add Child Location" msgstr "Locatie van het kind toevoegen" -#: netbox/templates/dcim/location.html:77 +#: templates/dcim/location.html:77 msgid "Child Locations" msgstr "Locaties voor kinderen" -#: netbox/templates/dcim/location.html:81 netbox/templates/dcim/site.html:131 +#: templates/dcim/location.html:81 templates/dcim/site.html:131 msgid "Add a Location" msgstr "Een locatie toevoegen" -#: netbox/templates/dcim/location.html:94 netbox/templates/dcim/site.html:144 +#: templates/dcim/location.html:94 templates/dcim/site.html:144 msgid "Add a Device" msgstr "Een apparaat toevoegen" -#: netbox/templates/dcim/manufacturer.html:16 +#: templates/dcim/manufacturer.html:16 msgid "Add Device Type" msgstr "Apparaattype toevoegen" -#: netbox/templates/dcim/manufacturer.html:21 +#: templates/dcim/manufacturer.html:21 msgid "Add Module Type" msgstr "Moduletype toevoegen" -#: netbox/templates/dcim/powerfeed.html:53 +#: templates/dcim/powerfeed.html:53 msgid "Connected Device" msgstr "Aangesloten apparaat" -#: netbox/templates/dcim/powerfeed.html:63 +#: templates/dcim/powerfeed.html:63 msgid "Utilization (Allocated" msgstr "Verbruik (toegewezen)" -#: netbox/templates/dcim/powerfeed.html:80 +#: templates/dcim/powerfeed.html:80 msgid "Electrical Characteristics" msgstr "Elektrische kenmerken" -#: netbox/templates/dcim/powerfeed.html:88 +#: templates/dcim/powerfeed.html:88 msgctxt "Abbreviation for volts" msgid "V" msgstr "V" -#: netbox/templates/dcim/powerfeed.html:92 +#: templates/dcim/powerfeed.html:92 msgctxt "Abbreviation for amperes" msgid "A" msgstr "A" -#: netbox/templates/dcim/poweroutlet.html:48 +#: templates/dcim/poweroutlet.html:48 msgid "Feed Leg" msgstr "Voer de poot in" -#: netbox/templates/dcim/powerpanel.html:72 +#: templates/dcim/powerpanel.html:72 msgid "Add Power Feeds" msgstr "Power Feeds toevoegen" -#: netbox/templates/dcim/powerport.html:44 +#: templates/dcim/powerport.html:44 msgid "Maximum Draw" msgstr "Maximaal aantal trekkingen" -#: netbox/templates/dcim/powerport.html:48 +#: templates/dcim/powerport.html:48 msgid "Allocated Draw" msgstr "Toegewezen gelijkspel" -#: netbox/templates/dcim/rack.html:69 +#: templates/dcim/rack.html:69 msgid "Space Utilization" msgstr "Ruimtegebruik" -#: netbox/templates/dcim/rack.html:84 netbox/templates/dcim/racktype.html:44 +#: templates/dcim/rack.html:84 templates/dcim/racktype.html:44 msgid "Rack Weight" msgstr "Gewicht van het rek" -#: netbox/templates/dcim/rack.html:94 netbox/templates/dcim/racktype.html:54 +#: templates/dcim/rack.html:94 templates/dcim/racktype.html:54 msgid "Maximum Weight" msgstr "Maximaal gewicht" -#: netbox/templates/dcim/rack.html:104 +#: templates/dcim/rack.html:104 msgid "Total Weight" msgstr "Totaal gewicht" -#: netbox/templates/dcim/rack.html:125 -#: netbox/templates/dcim/rack_elevation_list.html:15 +#: templates/dcim/rack.html:125 templates/dcim/rack_elevation_list.html:15 msgid "Images and Labels" msgstr "Afbeeldingen en labels" -#: netbox/templates/dcim/rack.html:126 -#: netbox/templates/dcim/rack_elevation_list.html:16 +#: templates/dcim/rack.html:126 templates/dcim/rack_elevation_list.html:16 msgid "Images only" msgstr "Alleen afbeeldingen" -#: netbox/templates/dcim/rack.html:127 -#: netbox/templates/dcim/rack_elevation_list.html:17 +#: templates/dcim/rack.html:127 templates/dcim/rack_elevation_list.html:17 msgid "Labels only" msgstr "Alleen labels" -#: netbox/templates/dcim/rack/reservations.html:8 +#: templates/dcim/rack/reservations.html:8 msgid "Add reservation" msgstr "Reservering toevoegen" -#: netbox/templates/dcim/rack_elevation_list.html:12 +#: templates/dcim/rack_elevation_list.html:12 msgid "View List" msgstr "Lijst bekijken" -#: netbox/templates/dcim/rack_elevation_list.html:14 +#: templates/dcim/rack_elevation_list.html:14 msgid "Select rack view" msgstr "Rack-weergave selecteren" -#: netbox/templates/dcim/rack_elevation_list.html:25 +#: templates/dcim/rack_elevation_list.html:25 msgid "Sort By" msgstr "Sorteer op" -#: netbox/templates/dcim/rack_elevation_list.html:74 +#: templates/dcim/rack_elevation_list.html:74 msgid "No Racks Found" msgstr "Geen rekken gevonden" -#: netbox/templates/dcim/rack_list.html:8 +#: templates/dcim/rack_list.html:8 msgid "View Elevations" msgstr "Bekijk de verhogingen" -#: netbox/templates/dcim/rackreservation.html:42 +#: templates/dcim/rackreservation.html:42 msgid "Reservation Details" msgstr "Reserveringsgegevens" -#: netbox/templates/dcim/rackrole.html:10 +#: templates/dcim/rackrole.html:10 msgid "Add Rack" msgstr "Rack toevoegen" -#: netbox/templates/dcim/rearport.html:50 +#: templates/dcim/rearport.html:50 msgid "Positions" msgstr "Posities" -#: netbox/templates/dcim/region.html:17 -#: netbox/templates/dcim/sitegroup.html:17 +#: templates/dcim/region.html:17 templates/dcim/sitegroup.html:17 msgid "Add Site" msgstr "Site toevoegen" -#: netbox/templates/dcim/region.html:55 +#: templates/dcim/region.html:55 msgid "Child Regions" msgstr "Kindgebieden" -#: netbox/templates/dcim/region.html:59 +#: templates/dcim/region.html:59 msgid "Add Region" msgstr "Regio toevoegen" -#: netbox/templates/dcim/site.html:64 +#: templates/dcim/site.html:64 msgid "Time Zone" msgstr "Tijdzone" -#: netbox/templates/dcim/site.html:67 +#: templates/dcim/site.html:67 msgid "UTC" msgstr "UTC" -#: netbox/templates/dcim/site.html:68 +#: templates/dcim/site.html:68 msgid "Site time" msgstr "Tijd op de site" -#: netbox/templates/dcim/site.html:75 +#: templates/dcim/site.html:75 msgid "Physical Address" msgstr "Fysiek adres" -#: netbox/templates/dcim/site.html:90 +#: templates/dcim/site.html:90 msgid "Shipping Address" msgstr "Verzendadres" -#: netbox/templates/dcim/sitegroup.html:55 -#: netbox/templates/tenancy/contactgroup.html:46 -#: netbox/templates/tenancy/tenantgroup.html:55 -#: netbox/templates/wireless/wirelesslangroup.html:55 +#: templates/dcim/sitegroup.html:55 templates/tenancy/contactgroup.html:46 +#: templates/tenancy/tenantgroup.html:55 +#: templates/wireless/wirelesslangroup.html:55 msgid "Child Groups" msgstr "Kindergroepen" -#: netbox/templates/dcim/sitegroup.html:59 +#: templates/dcim/sitegroup.html:59 msgid "Add Site Group" msgstr "Sitegroep toevoegen" -#: netbox/templates/dcim/trace/attachment.html:5 -#: netbox/templates/extras/exporttemplate.html:31 +#: templates/dcim/trace/attachment.html:5 +#: templates/extras/exporttemplate.html:31 msgid "Attachment" msgstr "Gehechtheid" -#: netbox/templates/dcim/virtualchassis.html:57 +#: templates/dcim/virtualchassis.html:57 msgid "Add Member" msgstr "Lid toevoegen" -#: netbox/templates/dcim/virtualchassis_add.html:18 +#: templates/dcim/virtualchassis_add.html:18 msgid "Member Devices" msgstr "Apparaten voor leden" -#: netbox/templates/dcim/virtualchassis_add_member.html:10 +#: templates/dcim/virtualchassis_add_member.html:10 #, python-format msgid "Add New Member to Virtual Chassis %(virtual_chassis)s" msgstr "Nieuw lid toevoegen aan virtueel chassis %(virtual_chassis)s" -#: netbox/templates/dcim/virtualchassis_add_member.html:19 +#: templates/dcim/virtualchassis_add_member.html:19 msgid "Add New Member" msgstr "Nieuw lid toevoegen" -#: netbox/templates/dcim/virtualchassis_add_member.html:27 -#: netbox/templates/generic/object_edit.html:78 -#: netbox/templates/users/objectpermission.html:31 -#: netbox/users/forms/filtersets.py:67 netbox/users/forms/model_forms.py:312 +#: templates/dcim/virtualchassis_add_member.html:27 +#: templates/generic/object_edit.html:78 +#: templates/users/objectpermission.html:31 users/forms/filtersets.py:67 +#: users/forms/model_forms.py:312 msgid "Actions" msgstr "Acties" -#: netbox/templates/dcim/virtualchassis_add_member.html:29 +#: templates/dcim/virtualchassis_add_member.html:29 msgid "Save & Add Another" msgstr "Opslaan en nog een toevoegen" -#: netbox/templates/dcim/virtualchassis_edit.html:7 +#: templates/dcim/virtualchassis_edit.html:7 #, python-format msgid "Editing Virtual Chassis %(name)s" msgstr "Virtueel chassis bewerken %(name)s" -#: netbox/templates/dcim/virtualchassis_edit.html:53 +#: templates/dcim/virtualchassis_edit.html:53 msgid "Rack/Unit" msgstr "Rack/eenheid" -#: netbox/templates/dcim/virtualchassis_remove_member.html:5 +#: templates/dcim/virtualchassis_remove_member.html:5 msgid "Remove Virtual Chassis Member" msgstr "Virtueel chassislid verwijderen" -#: netbox/templates/dcim/virtualchassis_remove_member.html:9 +#: templates/dcim/virtualchassis_remove_member.html:9 #, python-format msgid "" "Are you sure you want to remove %(device)s from virtual " @@ -13185,12 +12475,11 @@ msgstr "" "Weet je zeker dat je wilt verwijderen %(device)s vanaf een " "virtueel chassis %(name)s?" -#: netbox/templates/dcim/virtualdevicecontext.html:26 -#: netbox/templates/vpn/l2vpn.html:18 +#: templates/dcim/virtualdevicecontext.html:26 templates/vpn/l2vpn.html:18 msgid "Identifier" msgstr "Identificatie" -#: netbox/templates/exceptions/import_error.html:6 +#: templates/exceptions/import_error.html:6 msgid "" "A module import error occurred during this request. Common causes include " "the following:" @@ -13198,11 +12487,11 @@ msgstr "" "Tijdens dit verzoek is er een fout opgetreden bij het importeren van de " "module. Veelvoorkomende oorzaken zijn onder meer:" -#: netbox/templates/exceptions/import_error.html:10 +#: templates/exceptions/import_error.html:10 msgid "Missing required packages" msgstr "Vereiste pakketten ontbreken" -#: netbox/templates/exceptions/import_error.html:11 +#: templates/exceptions/import_error.html:11 msgid "" "This installation of NetBox might be missing one or more required Python " "packages. These packages are listed in requirements.txt and " @@ -13219,11 +12508,11 @@ msgstr "" "freeze vanaf de console en vergelijk de uitvoer met de lijst met " "vereiste pakketten." -#: netbox/templates/exceptions/import_error.html:20 +#: templates/exceptions/import_error.html:20 msgid "WSGI service not restarted after upgrade" msgstr "De WSGI-service is niet opnieuw gestart na de upgrade" -#: netbox/templates/exceptions/import_error.html:21 +#: templates/exceptions/import_error.html:21 msgid "" "If this installation has recently been upgraded, check that the WSGI service" " (e.g. gunicorn or uWSGI) has been restarted. This ensures that the new code" @@ -13233,7 +12522,7 @@ msgstr "" "service (bijvoorbeeld gunicorn of uWSGI) opnieuw is gestart. Dit zorgt " "ervoor dat de nieuwe code actief is." -#: netbox/templates/exceptions/permission_error.html:6 +#: templates/exceptions/permission_error.html:6 msgid "" "A file permission error was detected while processing this request. Common " "causes include the following:" @@ -13241,11 +12530,11 @@ msgstr "" "Tijdens de verwerking van dit verzoek is een fout in de bestandsrechten " "gedetecteerd. Veelvoorkomende oorzaken zijn onder meer:" -#: netbox/templates/exceptions/permission_error.html:10 +#: templates/exceptions/permission_error.html:10 msgid "Insufficient write permission to the media root" msgstr "Onvoldoende schrijfrechten naar de mediaroot" -#: netbox/templates/exceptions/permission_error.html:11 +#: templates/exceptions/permission_error.html:11 #, python-format msgid "" "The configured media root is %(media_root)s. Ensure that the " @@ -13256,7 +12545,7 @@ msgstr "" " de gebruiker NetBox toegang heeft om bestanden naar alle locaties binnen " "dit pad te schrijven." -#: netbox/templates/exceptions/programming_error.html:6 +#: templates/exceptions/programming_error.html:6 msgid "" "A database programming error was detected while processing this request. " "Common causes include the following:" @@ -13264,11 +12553,11 @@ msgstr "" "Er is een programmeerfout in de database gedetecteerd tijdens de verwerking " "van dit verzoek. Veelvoorkomende oorzaken zijn onder meer:" -#: netbox/templates/exceptions/programming_error.html:10 +#: templates/exceptions/programming_error.html:10 msgid "Database migrations missing" msgstr "Databasemigraties ontbreken" -#: netbox/templates/exceptions/programming_error.html:11 +#: templates/exceptions/programming_error.html:11 msgid "" "When upgrading to a new NetBox release, the upgrade script must be run to " "apply any new database migrations. You can run migrations manually by " @@ -13279,11 +12568,11 @@ msgstr "" "migraties handmatig uitvoeren door het uitvoeren van python3 manage.py" " migreren vanaf de command line." -#: netbox/templates/exceptions/programming_error.html:18 +#: templates/exceptions/programming_error.html:18 msgid "Unsupported PostgreSQL version" msgstr "Niet ondersteunde PostgreSQL-versie" -#: netbox/templates/exceptions/programming_error.html:19 +#: templates/exceptions/programming_error.html:19 msgid "" "Ensure that PostgreSQL version 12 or later is in use. You can check this by " "connecting to the database using NetBox's credentials and issuing a query " @@ -13294,102 +12583,99 @@ msgstr "" "inloggegevens van NetBox en een query uit te voeren voor SELECTEER " "VERSIE ()." -#: netbox/templates/extras/configcontext.html:45 -#: netbox/templates/extras/configtemplate.html:37 -#: netbox/templates/extras/exporttemplate.html:51 +#: templates/extras/configcontext.html:45 +#: templates/extras/configtemplate.html:37 +#: templates/extras/exporttemplate.html:51 msgid "The data file associated with this object has been deleted" msgstr "Het gegevensbestand dat aan dit object is gekoppeld, is verwijderd" -#: netbox/templates/extras/configcontext.html:54 -#: netbox/templates/extras/configtemplate.html:46 -#: netbox/templates/extras/exporttemplate.html:60 +#: templates/extras/configcontext.html:54 +#: templates/extras/configtemplate.html:46 +#: templates/extras/exporttemplate.html:60 msgid "Data Synced" msgstr "Gegevens gesynchroniseerd" -#: netbox/templates/extras/configcontext_list.html:7 -#: netbox/templates/extras/configtemplate_list.html:7 -#: netbox/templates/extras/exporttemplate_list.html:7 +#: templates/extras/configcontext_list.html:7 +#: templates/extras/configtemplate_list.html:7 +#: templates/extras/exporttemplate_list.html:7 msgid "Sync Data" msgstr "Gegevens synchroniseren" -#: netbox/templates/extras/configtemplate.html:56 +#: templates/extras/configtemplate.html:56 msgid "Environment Parameters" msgstr "Milieuparameters" -#: netbox/templates/extras/configtemplate.html:67 -#: netbox/templates/extras/exporttemplate.html:79 +#: templates/extras/configtemplate.html:67 +#: templates/extras/exporttemplate.html:79 msgid "Template" msgstr "Sjabloon" -#: netbox/templates/extras/customfield.html:30 -#: netbox/templates/extras/customlink.html:21 +#: templates/extras/customfield.html:30 templates/extras/customlink.html:21 msgid "Group Name" msgstr "Naam van de groep" -#: netbox/templates/extras/customfield.html:42 +#: templates/extras/customfield.html:42 msgid "Must be Unique" msgstr "Moet uniek zijn" -#: netbox/templates/extras/customfield.html:46 +#: templates/extras/customfield.html:46 msgid "Cloneable" msgstr "Kloonbaar" -#: netbox/templates/extras/customfield.html:56 +#: templates/extras/customfield.html:56 msgid "Default Value" msgstr "Standaardwaarde" -#: netbox/templates/extras/customfield.html:73 +#: templates/extras/customfield.html:73 msgid "Search Weight" msgstr "Zoekgewicht" -#: netbox/templates/extras/customfield.html:83 +#: templates/extras/customfield.html:83 msgid "Filter Logic" msgstr "Filterlogica" -#: netbox/templates/extras/customfield.html:87 +#: templates/extras/customfield.html:87 msgid "Display Weight" msgstr "Gewicht van het scherm" -#: netbox/templates/extras/customfield.html:91 +#: templates/extras/customfield.html:91 msgid "UI Visible" msgstr "UI zichtbaar" -#: netbox/templates/extras/customfield.html:95 +#: templates/extras/customfield.html:95 msgid "UI Editable" msgstr "UI bewerkbaar" -#: netbox/templates/extras/customfield.html:115 +#: templates/extras/customfield.html:115 msgid "Validation Rules" msgstr "Validatieregels" -#: netbox/templates/extras/customfield.html:126 +#: templates/extras/customfield.html:126 msgid "Regular Expression" msgstr "Reguliere expressie" -#: netbox/templates/extras/customlink.html:29 +#: templates/extras/customlink.html:29 msgid "Button Class" msgstr "Knopklasse" -#: netbox/templates/extras/customlink.html:39 -#: netbox/templates/extras/exporttemplate.html:66 -#: netbox/templates/extras/savedfilter.html:39 +#: templates/extras/customlink.html:39 templates/extras/exporttemplate.html:66 +#: templates/extras/savedfilter.html:39 msgid "Assigned Models" msgstr "Toegewezen modellen" -#: netbox/templates/extras/customlink.html:52 +#: templates/extras/customlink.html:52 msgid "Link Text" msgstr "Tekst koppelen" -#: netbox/templates/extras/customlink.html:58 +#: templates/extras/customlink.html:58 msgid "Link URL" msgstr "URL van de link" -#: netbox/templates/extras/dashboard/reset.html:4 -#: netbox/templates/home.html:66 +#: templates/extras/dashboard/reset.html:4 templates/home.html:66 msgid "Reset Dashboard" msgstr "Dashboard opnieuw instellen" -#: netbox/templates/extras/dashboard/reset.html:8 +#: templates/extras/dashboard/reset.html:8 msgid "" "This will remove all configured widgets and restore the " "default dashboard configuration." @@ -13397,7 +12683,7 @@ msgstr "" "Dit zal verwijderen allemaal geconfigureerde widgets en " "herstel de standaard dashboardconfiguratie." -#: netbox/templates/extras/dashboard/reset.html:13 +#: templates/extras/dashboard/reset.html:13 msgid "" "This change affects only your dashboard, and will not impact other " "users." @@ -13405,156 +12691,154 @@ msgstr "" "Deze wijziging is alleen van invloed jouw dashboard, en heeft geen " "invloed op andere gebruikers." -#: netbox/templates/extras/dashboard/widget.html:21 +#: templates/extras/dashboard/widget.html:21 msgid "widget configuration" msgstr "configuratie van de widget" -#: netbox/templates/extras/dashboard/widget.html:36 +#: templates/extras/dashboard/widget.html:36 msgid "Close widget" msgstr "Widget sluiten" -#: netbox/templates/extras/dashboard/widget_add.html:7 +#: templates/extras/dashboard/widget_add.html:7 msgid "Add a Widget" msgstr "Een widget toevoegen" -#: netbox/templates/extras/dashboard/widgets/bookmarks.html:14 +#: templates/extras/dashboard/widgets/bookmarks.html:14 msgid "No bookmarks have been added yet." msgstr "Er zijn nog geen bladwijzers toegevoegd." -#: netbox/templates/extras/dashboard/widgets/objectcounts.html:10 +#: templates/extras/dashboard/widgets/objectcounts.html:10 msgid "No permission" msgstr "Geen toestemming" -#: netbox/templates/extras/dashboard/widgets/objectlist.html:6 +#: templates/extras/dashboard/widgets/objectlist.html:6 msgid "No permission to view this content" msgstr "Geen toestemming om deze inhoud te bekijken" -#: netbox/templates/extras/dashboard/widgets/objectlist.html:10 +#: templates/extras/dashboard/widgets/objectlist.html:10 msgid "Unable to load content. Invalid view name" msgstr "Kan inhoud niet laden. Ongeldige weergavenaam" -#: netbox/templates/extras/dashboard/widgets/rssfeed.html:12 +#: templates/extras/dashboard/widgets/rssfeed.html:12 msgid "No content found" msgstr "Geen inhoud gevonden" -#: netbox/templates/extras/dashboard/widgets/rssfeed.html:18 +#: templates/extras/dashboard/widgets/rssfeed.html:18 msgid "There was a problem fetching the RSS feed" msgstr "Er is een probleem opgetreden bij het ophalen van de RSS-feed" -#: netbox/templates/extras/dashboard/widgets/rssfeed.html:21 +#: templates/extras/dashboard/widgets/rssfeed.html:21 msgid "HTTP" msgstr "HTTP" -#: netbox/templates/extras/eventrule.html:61 +#: templates/extras/eventrule.html:61 msgid "Conditions" msgstr "Voorwaarden" -#: netbox/templates/extras/exporttemplate.html:23 +#: templates/extras/exporttemplate.html:23 msgid "MIME Type" msgstr "MIME-type" -#: netbox/templates/extras/exporttemplate.html:27 +#: templates/extras/exporttemplate.html:27 msgid "File Extension" msgstr "bestandsextensie" -#: netbox/templates/extras/htmx/script_result.html:10 +#: templates/extras/htmx/script_result.html:10 msgid "Scheduled for" msgstr "Gepland voor" -#: netbox/templates/extras/htmx/script_result.html:15 +#: templates/extras/htmx/script_result.html:15 msgid "Duration" msgstr "Duur" -#: netbox/templates/extras/htmx/script_result.html:23 +#: templates/extras/htmx/script_result.html:23 msgid "Test Summary" msgstr "Samenvatting van de test" -#: netbox/templates/extras/htmx/script_result.html:43 +#: templates/extras/htmx/script_result.html:43 msgid "Log" msgstr "Logboek" -#: netbox/templates/extras/htmx/script_result.html:56 +#: templates/extras/htmx/script_result.html:56 msgid "Output" msgstr "Uitgang" -#: netbox/templates/extras/inc/result_pending.html:4 +#: templates/extras/inc/result_pending.html:4 msgid "Loading" msgstr "Aan het laden" -#: netbox/templates/extras/inc/result_pending.html:6 +#: templates/extras/inc/result_pending.html:6 msgid "Results pending" msgstr "Resultaten in behandeling" -#: netbox/templates/extras/journalentry.html:15 +#: templates/extras/journalentry.html:15 msgid "Journal Entry" msgstr "Dagboekinvoer" -#: netbox/templates/extras/notificationgroup.html:11 +#: templates/extras/notificationgroup.html:11 msgid "Notification Group" msgstr "Meldingsgroep" -#: netbox/templates/extras/notificationgroup.html:36 -#: netbox/templates/extras/notificationgroup.html:46 -#: netbox/utilities/templates/widgets/clearable_file_input.html:12 +#: templates/extras/notificationgroup.html:36 +#: templates/extras/notificationgroup.html:46 +#: utilities/templates/widgets/clearable_file_input.html:12 msgid "None assigned" msgstr "Geen toegewezen" -#: netbox/templates/extras/object_configcontext.html:19 +#: templates/extras/object_configcontext.html:19 msgid "The local config context overwrites all source contexts" msgstr "De lokale configuratiecontext overschrijft alle broncontexten" -#: netbox/templates/extras/object_configcontext.html:25 +#: templates/extras/object_configcontext.html:25 msgid "Source Contexts" msgstr "Broncontexten" -#: netbox/templates/extras/object_journal.html:17 +#: templates/extras/object_journal.html:17 msgid "New Journal Entry" msgstr "Nieuwe journaalpost" -#: netbox/templates/extras/report/base.html:30 +#: templates/extras/report/base.html:30 msgid "Report" msgstr "Rapporteren" -#: netbox/templates/extras/script.html:14 +#: templates/extras/script.html:14 msgid "You do not have permission to run scripts" msgstr "Je hebt geen toestemming om scripts uit te voeren" -#: netbox/templates/extras/script.html:41 -#: netbox/templates/extras/script.html:45 -#: netbox/templates/extras/script_list.html:86 +#: templates/extras/script.html:41 templates/extras/script.html:45 +#: templates/extras/script_list.html:86 msgid "Run Script" msgstr "Script uitvoeren" -#: netbox/templates/extras/script.html:51 -#: netbox/templates/extras/script/source.html:10 +#: templates/extras/script.html:51 templates/extras/script/source.html:10 msgid "Error loading script" msgstr "Fout bij laden van script" -#: netbox/templates/extras/script/jobs.html:16 +#: templates/extras/script/jobs.html:16 msgid "Script no longer exists in the source file." msgstr "Het script bestaat niet meer in het bronbestand." -#: netbox/templates/extras/script_list.html:46 +#: templates/extras/script_list.html:46 msgid "Last Run" msgstr "Laatste run" -#: netbox/templates/extras/script_list.html:61 +#: templates/extras/script_list.html:61 msgid "Script is no longer present in the source file" msgstr "Het script is niet langer aanwezig in het bronbestand" -#: netbox/templates/extras/script_list.html:74 +#: templates/extras/script_list.html:74 msgid "Never" msgstr "Nooit" -#: netbox/templates/extras/script_list.html:84 +#: templates/extras/script_list.html:84 msgid "Run Again" msgstr "Draai opnieuw" -#: netbox/templates/extras/script_list.html:138 +#: templates/extras/script_list.html:138 msgid "No Scripts Found" msgstr "Geen scripts gevonden" -#: netbox/templates/extras/script_list.html:141 +#: templates/extras/script_list.html:141 #, python-format msgid "" "Get started by creating a script from " @@ -13563,83 +12847,81 @@ msgstr "" "Ga aan de slag met een script maken " "van een geüpload bestand of een gegevensbron." -#: netbox/templates/extras/script_result.html:35 -#: netbox/templates/generic/object_list.html:50 -#: netbox/templates/search.html:13 +#: templates/extras/script_result.html:35 +#: templates/generic/object_list.html:50 templates/search.html:13 msgid "Results" msgstr "Resultaten" -#: netbox/templates/extras/script_result.html:46 +#: templates/extras/script_result.html:46 msgid "Log threshold" msgstr "Drempel voor loggen" -#: netbox/templates/extras/script_result.html:56 +#: templates/extras/script_result.html:56 msgid "All" msgstr "Alles" -#: netbox/templates/extras/tag.html:32 +#: templates/extras/tag.html:32 msgid "Tagged Items" msgstr "Getagde artikelen" -#: netbox/templates/extras/tag.html:43 +#: templates/extras/tag.html:43 msgid "Allowed Object Types" msgstr "Toegestane objecttypen" -#: netbox/templates/extras/tag.html:51 +#: templates/extras/tag.html:51 msgid "Any" msgstr "Elke" -#: netbox/templates/extras/tag.html:57 +#: templates/extras/tag.html:57 msgid "Tagged Item Types" msgstr "Typen artikelen met tags" -#: netbox/templates/extras/tag.html:81 +#: templates/extras/tag.html:81 msgid "Tagged Objects" msgstr "Getagde objecten" -#: netbox/templates/extras/webhook.html:26 +#: templates/extras/webhook.html:26 msgid "HTTP Method" msgstr "HTTP-methode" -#: netbox/templates/extras/webhook.html:34 +#: templates/extras/webhook.html:34 msgid "HTTP Content Type" msgstr "HTTP-inhoudstype" -#: netbox/templates/extras/webhook.html:47 +#: templates/extras/webhook.html:47 msgid "SSL Verification" msgstr "SSL-verificatie" -#: netbox/templates/extras/webhook.html:60 +#: templates/extras/webhook.html:60 msgid "Additional Headers" msgstr "Aanvullende kopteksten" -#: netbox/templates/extras/webhook.html:70 +#: templates/extras/webhook.html:70 msgid "Body Template" msgstr "Lichaamssjabloon" -#: netbox/templates/generic/bulk_add_component.html:29 +#: templates/generic/bulk_add_component.html:29 msgid "Bulk Creation" msgstr "Creatie in bulk" -#: netbox/templates/generic/bulk_add_component.html:34 -#: netbox/templates/generic/bulk_delete.html:32 -#: netbox/templates/generic/bulk_edit.html:33 +#: templates/generic/bulk_add_component.html:34 +#: templates/generic/bulk_delete.html:32 templates/generic/bulk_edit.html:33 msgid "Selected Objects" msgstr "Geselecteerde objecten" -#: netbox/templates/generic/bulk_add_component.html:58 +#: templates/generic/bulk_add_component.html:58 msgid "to Add" msgstr "om toe te voegen" -#: netbox/templates/generic/bulk_delete.html:27 +#: templates/generic/bulk_delete.html:27 msgid "Bulk Delete" msgstr "Bulk verwijderen" -#: netbox/templates/generic/bulk_delete.html:49 +#: templates/generic/bulk_delete.html:49 msgid "Confirm Bulk Deletion" msgstr "Bulkverwijdering bevestigen" -#: netbox/templates/generic/bulk_delete.html:50 +#: templates/generic/bulk_delete.html:50 #, python-format msgid "" "The following operation will delete %(count)s " @@ -13650,69 +12932,66 @@ msgstr "" "%(type_plural)s. Controleer de geselecteerde objecten zorgvuldig en bevestig" " deze actie." -#: netbox/templates/generic/bulk_edit.html:21 -#: netbox/templates/generic/object_edit.html:22 +#: templates/generic/bulk_edit.html:21 templates/generic/object_edit.html:22 msgid "Editing" msgstr "Bewerken" -#: netbox/templates/generic/bulk_edit.html:28 +#: templates/generic/bulk_edit.html:28 msgid "Bulk Edit" msgstr "Bulkbewerking" -#: netbox/templates/generic/bulk_edit.html:107 -#: netbox/templates/generic/bulk_rename.html:66 +#: templates/generic/bulk_edit.html:107 templates/generic/bulk_rename.html:66 msgid "Apply" msgstr "Toepassen" -#: netbox/templates/generic/bulk_import.html:19 +#: templates/generic/bulk_import.html:19 msgid "Bulk Import" msgstr "Importeren in bulk" -#: netbox/templates/generic/bulk_import.html:25 +#: templates/generic/bulk_import.html:25 msgid "Direct Import" msgstr "Rechtstreeks importeren" -#: netbox/templates/generic/bulk_import.html:30 +#: templates/generic/bulk_import.html:30 msgid "Upload File" msgstr "Bestand uploaden" -#: netbox/templates/generic/bulk_import.html:58 -#: netbox/templates/generic/bulk_import.html:80 -#: netbox/templates/generic/bulk_import.html:102 +#: templates/generic/bulk_import.html:58 templates/generic/bulk_import.html:80 +#: templates/generic/bulk_import.html:102 msgid "Submit" msgstr "Verzenden" -#: netbox/templates/generic/bulk_import.html:113 +#: templates/generic/bulk_import.html:113 msgid "Field Options" msgstr "Veldopties" -#: netbox/templates/generic/bulk_import.html:119 +#: templates/generic/bulk_import.html:119 msgid "Accessor" msgstr "Accessor" -#: netbox/templates/generic/bulk_import.html:148 +#: templates/generic/bulk_import.html:148 msgid "choices" msgstr "keuzes" -#: netbox/templates/generic/bulk_import.html:161 +#: templates/generic/bulk_import.html:161 msgid "Import Value" msgstr "Importwaarde" -#: netbox/templates/generic/bulk_import.html:181 +#: templates/generic/bulk_import.html:181 msgid "Format: YYYY-MM-DD" msgstr "Formaat: JJJJ-MM-DD" -#: netbox/templates/generic/bulk_import.html:183 +#: templates/generic/bulk_import.html:183 msgid "Specify true or false" msgstr "Specificeer waar of onwaar" -#: netbox/templates/generic/bulk_import.html:195 +#: templates/generic/bulk_import.html:195 msgid "Required fields must be specified for all objects." msgstr "" "Verplichte velden moeten voor alle objecten worden " "gespecificeerd." -#: netbox/templates/generic/bulk_import.html:201 +#: templates/generic/bulk_import.html:201 #, python-format msgid "" "Related objects may be referenced by any unique attribute. For example, " @@ -13722,15 +13001,15 @@ msgstr "" "Bijvoorbeeld %(example)s zou een VRF identificeren aan de hand " "van zijn route-identificator." -#: netbox/templates/generic/bulk_remove.html:28 +#: templates/generic/bulk_remove.html:28 msgid "Bulk Remove" msgstr "Bulk verwijderen" -#: netbox/templates/generic/bulk_remove.html:42 +#: templates/generic/bulk_remove.html:42 msgid "Confirm Bulk Removal" msgstr "Bulkverwijdering bevestigen" -#: netbox/templates/generic/bulk_remove.html:43 +#: templates/generic/bulk_remove.html:43 #, python-format msgid "" "The following operation will remove %(count)s %(obj_type_plural)s from " @@ -13741,72 +13020,72 @@ msgstr "" "%(parent_obj)s. Lees a.u.b. zorgvuldig de %(obj_type_plural)s om hieronder " "te worden verwijderd en te bevestigen." -#: netbox/templates/generic/bulk_remove.html:64 +#: templates/generic/bulk_remove.html:64 #, python-format msgid "Remove these %(count)s %(obj_type_plural)s" msgstr "Verwijder deze %(count)s %(obj_type_plural)s" -#: netbox/templates/generic/bulk_rename.html:20 +#: templates/generic/bulk_rename.html:20 msgid "Renaming" msgstr "Hernoemen" -#: netbox/templates/generic/bulk_rename.html:27 +#: templates/generic/bulk_rename.html:27 msgid "Bulk Rename" msgstr "Bulk hernoemen" -#: netbox/templates/generic/bulk_rename.html:39 +#: templates/generic/bulk_rename.html:39 msgid "Current Name" msgstr "Huidige naam" -#: netbox/templates/generic/bulk_rename.html:40 +#: templates/generic/bulk_rename.html:40 msgid "New Name" msgstr "Nieuwe naam" -#: netbox/templates/generic/bulk_rename.html:64 -#: netbox/utilities/templates/widgets/markdown_input.html:11 +#: templates/generic/bulk_rename.html:64 +#: utilities/templates/widgets/markdown_input.html:11 msgid "Preview" msgstr "Voorbeeld" -#: netbox/templates/generic/confirmation_form.html:16 +#: templates/generic/confirmation_form.html:16 msgid "Are you sure" msgstr "Weet je het zeker" -#: netbox/templates/generic/confirmation_form.html:20 +#: templates/generic/confirmation_form.html:20 msgid "Confirm" msgstr "Bevestigen" -#: netbox/templates/generic/object_children.html:47 -#: netbox/utilities/templates/buttons/bulk_edit.html:4 +#: templates/generic/object_children.html:47 +#: utilities/templates/buttons/bulk_edit.html:4 msgid "Edit Selected" msgstr "Geselecteerde bewerken" -#: netbox/templates/generic/object_children.html:61 -#: netbox/utilities/templates/buttons/bulk_delete.html:4 +#: templates/generic/object_children.html:61 +#: utilities/templates/buttons/bulk_delete.html:4 msgid "Delete Selected" msgstr "Geselecteerde verwijderen" -#: netbox/templates/generic/object_edit.html:24 +#: templates/generic/object_edit.html:24 #, python-format msgid "Add a new %(object_type)s" msgstr "Voeg een nieuwe toe %(object_type)s" -#: netbox/templates/generic/object_edit.html:35 +#: templates/generic/object_edit.html:35 msgid "View model documentation" msgstr "Modeldocumentatie bekijken" -#: netbox/templates/generic/object_edit.html:36 +#: templates/generic/object_edit.html:36 msgid "Help" msgstr "Help" -#: netbox/templates/generic/object_edit.html:83 +#: templates/generic/object_edit.html:83 msgid "Create & Add Another" msgstr "Nog een aanmaken en toevoegen" -#: netbox/templates/generic/object_list.html:57 +#: templates/generic/object_list.html:57 msgid "Filters" msgstr "Filters" -#: netbox/templates/generic/object_list.html:88 +#: templates/generic/object_list.html:88 #, python-format msgid "" "Select all %(count)s " @@ -13816,40 +13095,40 @@ msgstr "" "count\">%(count)s %(object_type_plural)s overeenkomende " "vraag" -#: netbox/templates/home.html:15 +#: templates/home.html:15 msgid "New Release Available" msgstr "Nieuwe release beschikbaar" -#: netbox/templates/home.html:16 +#: templates/home.html:16 msgid "is available" msgstr "is beschikbaar" -#: netbox/templates/home.html:18 +#: templates/home.html:18 msgctxt "Document title" msgid "Upgrade Instructions" msgstr "Instructies voor de upgrade" -#: netbox/templates/home.html:40 +#: templates/home.html:40 msgid "Unlock Dashboard" msgstr "Dashboard ontgrendelen" -#: netbox/templates/home.html:49 +#: templates/home.html:49 msgid "Lock Dashboard" msgstr "Dashboard vergrendelen" -#: netbox/templates/home.html:60 +#: templates/home.html:60 msgid "Add Widget" msgstr "Widget toevoegen" -#: netbox/templates/home.html:63 +#: templates/home.html:63 msgid "Save Layout" msgstr "Lay-out opslaan" -#: netbox/templates/htmx/delete_form.html:7 +#: templates/htmx/delete_form.html:7 msgid "Confirm Deletion" msgstr "Verwijdering bevestigen" -#: netbox/templates/htmx/delete_form.html:11 +#: templates/htmx/delete_form.html:11 #, python-format msgid "" "Are you sure you want to delete " @@ -13858,40 +13137,40 @@ msgstr "" "Weet je zeker dat je dat wilt verwijderen %(object_type)s %(object)s?" -#: netbox/templates/htmx/delete_form.html:17 +#: templates/htmx/delete_form.html:17 msgid "The following objects will be deleted as a result of this action." msgstr "Als gevolg van deze actie worden de volgende objecten verwijderd." -#: netbox/templates/htmx/notifications.html:15 +#: templates/htmx/notifications.html:15 msgid "ago" msgstr "geleden" -#: netbox/templates/htmx/notifications.html:26 +#: templates/htmx/notifications.html:26 msgid "No unread notifications" msgstr "Geen ongelezen meldingen" -#: netbox/templates/htmx/notifications.html:31 +#: templates/htmx/notifications.html:31 msgid "All notifications" msgstr "Alle meldingen" -#: netbox/templates/htmx/object_selector.html:5 +#: templates/htmx/object_selector.html:5 msgid "Select" msgstr "Selecteer" -#: netbox/templates/inc/filter_list.html:42 -#: netbox/utilities/templates/helpers/table_config_form.html:39 +#: templates/inc/filter_list.html:43 +#: utilities/templates/helpers/table_config_form.html:39 msgid "Reset" msgstr "Resetten" -#: netbox/templates/inc/light_toggle.html:4 +#: templates/inc/light_toggle.html:4 msgid "Enable dark mode" msgstr "Schakel de donkere modus in" -#: netbox/templates/inc/light_toggle.html:7 +#: templates/inc/light_toggle.html:7 msgid "Enable light mode" msgstr "Lichtmodus inschakelen" -#: netbox/templates/inc/missing_prerequisites.html:8 +#: templates/inc/missing_prerequisites.html:8 #, python-format msgid "" "Before you can add a %(model)s you must first create a " @@ -13900,283 +13179,281 @@ msgstr "" "Voordat je een kunt toevoegen %(model)s je moet eerst een aanmaken " "%(prerequisite_model)s." -#: netbox/templates/inc/paginator.html:15 +#: templates/inc/paginator.html:15 msgid "Page selection" msgstr "Paginaselectie" -#: netbox/templates/inc/paginator.html:75 +#: templates/inc/paginator.html:75 #, python-format msgid "Showing %(start)s-%(end)s of %(total)s" msgstr "bewijs %(start)s-%(end)s van %(total)s" -#: netbox/templates/inc/paginator.html:82 +#: templates/inc/paginator.html:82 msgid "Pagination options" msgstr "Pagineringsopties" -#: netbox/templates/inc/paginator.html:86 +#: templates/inc/paginator.html:86 msgid "Per Page" msgstr "Per pagina" -#: netbox/templates/inc/panels/image_attachments.html:10 +#: templates/inc/panels/image_attachments.html:10 msgid "Attach an image" msgstr "Een afbeelding bijvoegen" -#: netbox/templates/inc/panels/related_objects.html:5 +#: templates/inc/panels/related_objects.html:5 msgid "Related Objects" msgstr "Gerelateerde objecten" -#: netbox/templates/inc/panels/tags.html:11 +#: templates/inc/panels/tags.html:11 msgid "No tags assigned" msgstr "Geen tags toegewezen" -#: netbox/templates/inc/sync_warning.html:10 +#: templates/inc/sync_warning.html:10 msgid "Data is out of sync with upstream file" msgstr "Gegevens lopen niet synchroon met het upstream-bestand" -#: netbox/templates/inc/table_controls_htmx.html:7 +#: templates/inc/table_controls_htmx.html:7 msgid "Quick search" msgstr "Snel zoeken" -#: netbox/templates/inc/table_controls_htmx.html:20 +#: templates/inc/table_controls_htmx.html:20 msgid "Saved filter" msgstr "Opgeslagen filter" -#: netbox/templates/inc/table_htmx.html:18 +#: templates/inc/table_htmx.html:18 msgid "Clear ordering" msgstr "Duidelijke bestelling" -#: netbox/templates/inc/user_menu.html:6 +#: templates/inc/user_menu.html:6 msgid "Help center" msgstr "Helpcentrum" -#: netbox/templates/inc/user_menu.html:41 +#: templates/inc/user_menu.html:41 msgid "Django Admin" msgstr "Django-beheerder" -#: netbox/templates/inc/user_menu.html:61 +#: templates/inc/user_menu.html:61 msgid "Log Out" msgstr "Uitloggen" -#: netbox/templates/inc/user_menu.html:68 netbox/templates/login.html:38 +#: templates/inc/user_menu.html:68 templates/login.html:38 msgid "Log In" msgstr "Inloggen" -#: netbox/templates/ipam/aggregate.html:14 -#: netbox/templates/ipam/ipaddress.html:14 -#: netbox/templates/ipam/iprange.html:13 netbox/templates/ipam/prefix.html:15 +#: templates/ipam/aggregate.html:14 templates/ipam/ipaddress.html:14 +#: templates/ipam/iprange.html:13 templates/ipam/prefix.html:15 msgid "Family" msgstr "Familie" -#: netbox/templates/ipam/aggregate.html:39 +#: templates/ipam/aggregate.html:39 msgid "Date Added" msgstr "Datum toegevoegd" -#: netbox/templates/ipam/aggregate/prefixes.html:8 -#: netbox/templates/ipam/prefix/prefixes.html:8 -#: netbox/templates/ipam/role.html:10 +#: templates/ipam/aggregate/prefixes.html:8 +#: templates/ipam/prefix/prefixes.html:8 templates/ipam/role.html:10 msgid "Add Prefix" msgstr "Voorvoegsel toevoegen" -#: netbox/templates/ipam/asn.html:23 +#: templates/ipam/asn.html:23 msgid "AS Number" msgstr "AS-nummer" -#: netbox/templates/ipam/fhrpgroup.html:52 +#: templates/ipam/fhrpgroup.html:52 msgid "Authentication Type" msgstr "Authenticatietype" -#: netbox/templates/ipam/fhrpgroup.html:56 +#: templates/ipam/fhrpgroup.html:56 msgid "Authentication Key" msgstr "Verificatiesleutel" -#: netbox/templates/ipam/fhrpgroup.html:69 +#: templates/ipam/fhrpgroup.html:69 msgid "Virtual IP Addresses" msgstr "Virtuele IP-adressen" -#: netbox/templates/ipam/inc/ipaddress_edit_header.html:13 +#: templates/ipam/inc/ipaddress_edit_header.html:13 msgid "Assign IP" msgstr "IP toewijzen" -#: netbox/templates/ipam/inc/ipaddress_edit_header.html:19 +#: templates/ipam/inc/ipaddress_edit_header.html:19 msgid "Bulk Create" msgstr "Bulk aanmaken" -#: netbox/templates/ipam/inc/panels/fhrp_groups.html:10 +#: templates/ipam/inc/panels/fhrp_groups.html:10 msgid "Create Group" msgstr "Groep aanmaken" -#: netbox/templates/ipam/inc/panels/fhrp_groups.html:25 +#: templates/ipam/inc/panels/fhrp_groups.html:25 msgid "Virtual IPs" msgstr "Virtuele IP-adressen" -#: netbox/templates/ipam/inc/toggle_available.html:7 +#: templates/ipam/inc/toggle_available.html:7 msgid "Show Assigned" msgstr "Toegewezen weergeven" -#: netbox/templates/ipam/inc/toggle_available.html:10 +#: templates/ipam/inc/toggle_available.html:10 msgid "Show Available" msgstr "Beschikbaar weergeven" -#: netbox/templates/ipam/inc/toggle_available.html:13 +#: templates/ipam/inc/toggle_available.html:13 msgid "Show All" msgstr "Alles weergeven" -#: netbox/templates/ipam/ipaddress.html:23 -#: netbox/templates/ipam/iprange.html:45 netbox/templates/ipam/prefix.html:24 +#: templates/ipam/ipaddress.html:23 templates/ipam/iprange.html:45 +#: templates/ipam/prefix.html:24 msgid "Global" msgstr "Globaal" -#: netbox/templates/ipam/ipaddress.html:85 +#: templates/ipam/ipaddress.html:85 msgid "NAT (outside)" msgstr "NAT (buiten)" -#: netbox/templates/ipam/ipaddress_assign.html:8 +#: templates/ipam/ipaddress_assign.html:8 msgid "Assign an IP Address" msgstr "Een IP-adres toewijzen" -#: netbox/templates/ipam/ipaddress_assign.html:22 +#: templates/ipam/ipaddress_assign.html:22 msgid "Select IP Address" msgstr "IP-adres selecteren" -#: netbox/templates/ipam/ipaddress_assign.html:35 +#: templates/ipam/ipaddress_assign.html:35 msgid "Search Results" msgstr "Zoekresultaten" -#: netbox/templates/ipam/ipaddress_bulk_add.html:6 +#: templates/ipam/ipaddress_bulk_add.html:6 msgid "Bulk Add IP Addresses" msgstr "IP-adressen in bulk toevoegen" -#: netbox/templates/ipam/iprange.html:17 +#: templates/ipam/iprange.html:17 msgid "Starting Address" msgstr "Startadres" -#: netbox/templates/ipam/iprange.html:21 +#: templates/ipam/iprange.html:21 msgid "Ending Address" msgstr "Eindadres" -#: netbox/templates/ipam/iprange.html:33 netbox/templates/ipam/prefix.html:110 +#: templates/ipam/iprange.html:33 templates/ipam/prefix.html:110 msgid "Marked fully utilized" msgstr "Gemarkeerd als volledig gebruikt" -#: netbox/templates/ipam/prefix.html:99 +#: templates/ipam/prefix.html:99 msgid "Addressing Details" msgstr "Adresseringsgegevens" -#: netbox/templates/ipam/prefix.html:118 +#: templates/ipam/prefix.html:118 msgid "Child IPs" msgstr "IP's voor kinderen" -#: netbox/templates/ipam/prefix.html:126 +#: templates/ipam/prefix.html:126 msgid "Available IPs" msgstr "Beschikbare IP-adressen" -#: netbox/templates/ipam/prefix.html:138 +#: templates/ipam/prefix.html:138 msgid "First available IP" msgstr "Eerste beschikbare IP" -#: netbox/templates/ipam/prefix.html:179 +#: templates/ipam/prefix.html:179 msgid "Prefix Details" msgstr "Details van het voorvoegsel" -#: netbox/templates/ipam/prefix.html:185 +#: templates/ipam/prefix.html:185 msgid "Network Address" msgstr "Netwerkadres" -#: netbox/templates/ipam/prefix.html:189 +#: templates/ipam/prefix.html:189 msgid "Network Mask" msgstr "Netwerkmasker" -#: netbox/templates/ipam/prefix.html:193 +#: templates/ipam/prefix.html:193 msgid "Wildcard Mask" msgstr "Wildcard-masker" -#: netbox/templates/ipam/prefix.html:197 +#: templates/ipam/prefix.html:197 msgid "Broadcast Address" msgstr "Adres van de uitzending" -#: netbox/templates/ipam/prefix/ip_ranges.html:7 +#: templates/ipam/prefix/ip_ranges.html:7 msgid "Add IP Range" msgstr "IP-bereik toevoegen" -#: netbox/templates/ipam/prefix_list.html:7 +#: templates/ipam/prefix_list.html:7 msgid "Hide Depth Indicators" msgstr "Diepte-indicatoren verbergen" -#: netbox/templates/ipam/prefix_list.html:11 +#: templates/ipam/prefix_list.html:11 msgid "Max Depth" msgstr "Maximale diepte" -#: netbox/templates/ipam/prefix_list.html:28 +#: templates/ipam/prefix_list.html:28 msgid "Max Length" msgstr "Maximale lengte" -#: netbox/templates/ipam/rir.html:10 +#: templates/ipam/rir.html:10 msgid "Add Aggregate" msgstr "Aggregaat toevoegen" -#: netbox/templates/ipam/routetarget.html:38 +#: templates/ipam/routetarget.html:38 msgid "Importing VRFs" msgstr "VRF's importeren" -#: netbox/templates/ipam/routetarget.html:44 +#: templates/ipam/routetarget.html:44 msgid "Exporting VRFs" msgstr "VRF's exporteren" -#: netbox/templates/ipam/routetarget.html:52 +#: templates/ipam/routetarget.html:52 msgid "Importing L2VPNs" msgstr "L2VPN's importeren" -#: netbox/templates/ipam/routetarget.html:58 +#: templates/ipam/routetarget.html:58 msgid "Exporting L2VPNs" msgstr "L2VPN's exporteren" -#: netbox/templates/ipam/vlan.html:88 +#: templates/ipam/vlan.html:88 msgid "Add a Prefix" msgstr "Een voorvoegsel toevoegen" -#: netbox/templates/ipam/vlangroup.html:18 +#: templates/ipam/vlangroup.html:18 msgid "Add VLAN" msgstr "VLAN toevoegen" -#: netbox/templates/ipam/vrf.html:16 +#: templates/ipam/vrf.html:16 msgid "Route Distinguisher" msgstr "Routeherkenner" -#: netbox/templates/ipam/vrf.html:29 +#: templates/ipam/vrf.html:29 msgid "Unique IP Space" msgstr "Unieke IP-ruimte" -#: netbox/templates/login.html:29 -#: netbox/utilities/templates/form_helpers/render_errors.html:7 +#: templates/login.html:29 +#: utilities/templates/form_helpers/render_errors.html:7 msgid "Errors" msgstr "Fouten" -#: netbox/templates/login.html:69 +#: templates/login.html:69 msgid "Sign In" msgstr "Inloggen" -#: netbox/templates/login.html:77 +#: templates/login.html:77 msgctxt "Denotes an alternative option" msgid "Or" msgstr "Of" -#: netbox/templates/media_failure.html:7 +#: templates/media_failure.html:7 msgid "Static Media Failure - NetBox" msgstr "Statische mediafout - NetBox" -#: netbox/templates/media_failure.html:21 +#: templates/media_failure.html:21 msgid "Static Media Failure" msgstr "Statische mediafout" -#: netbox/templates/media_failure.html:23 +#: templates/media_failure.html:23 msgid "The following static media file failed to load" msgstr "Het volgende statische mediabestand kon niet worden geladen" -#: netbox/templates/media_failure.html:26 +#: templates/media_failure.html:26 msgid "Check the following" msgstr "Controleer het volgende" -#: netbox/templates/media_failure.html:29 +#: templates/media_failure.html:29 msgid "" "manage.py collectstatic was run during the most recent upgrade." " This installs the most recent iteration of each static file into the static" @@ -14186,7 +13463,7 @@ msgstr "" "recente upgrade. Hiermee wordt de meest recente iteratie van elk statisch " "bestand in het statische hoofdpad geïnstalleerd." -#: netbox/templates/media_failure.html:35 +#: templates/media_failure.html:35 #, python-format msgid "" "The HTTP service (e.g. nginx or Apache) is configured to serve files from " @@ -14198,7 +13475,7 @@ msgstr "" " href=\"%(docs_url)s\">de installatiedocumentatie voor verdere " "begeleiding." -#: netbox/templates/media_failure.html:47 +#: templates/media_failure.html:47 #, python-format msgid "" "The file %(filename)s exists in the static root directory and " @@ -14207,569 +13484,550 @@ msgstr "" "Het bestand %(filename)s bestaat in de statische hoofdmap en is" " leesbaar voor de HTTP-server." -#: netbox/templates/media_failure.html:55 +#: templates/media_failure.html:55 #, python-format msgid "Click here to attempt loading NetBox again." msgstr "" "Klik hier om te proberen NetBox opnieuw te " "laden." -#: netbox/templates/tenancy/contact.html:18 netbox/tenancy/filtersets.py:147 -#: netbox/tenancy/forms/bulk_edit.py:137 -#: netbox/tenancy/forms/filtersets.py:102 netbox/tenancy/forms/forms.py:56 -#: netbox/tenancy/forms/model_forms.py:106 -#: netbox/tenancy/forms/model_forms.py:130 -#: netbox/tenancy/tables/contacts.py:98 +#: templates/tenancy/contact.html:18 tenancy/filtersets.py:147 +#: tenancy/forms/bulk_edit.py:137 tenancy/forms/filtersets.py:102 +#: tenancy/forms/forms.py:56 tenancy/forms/model_forms.py:106 +#: tenancy/forms/model_forms.py:130 tenancy/tables/contacts.py:98 msgid "Contact" msgstr "Neem contact op" -#: netbox/templates/tenancy/contact.html:29 -#: netbox/tenancy/forms/bulk_edit.py:99 +#: templates/tenancy/contact.html:29 tenancy/forms/bulk_edit.py:99 msgid "Title" msgstr "Titel" -#: netbox/templates/tenancy/contact.html:33 -#: netbox/tenancy/forms/bulk_edit.py:104 netbox/tenancy/tables/contacts.py:64 +#: templates/tenancy/contact.html:33 tenancy/forms/bulk_edit.py:104 +#: tenancy/tables/contacts.py:64 msgid "Phone" msgstr "Telefoon" -#: netbox/templates/tenancy/contactgroup.html:18 -#: netbox/tenancy/forms/forms.py:66 netbox/tenancy/forms/model_forms.py:75 +#: templates/tenancy/contactgroup.html:18 tenancy/forms/forms.py:66 +#: tenancy/forms/model_forms.py:75 msgid "Contact Group" msgstr "Contactgroep" -#: netbox/templates/tenancy/contactgroup.html:50 +#: templates/tenancy/contactgroup.html:50 msgid "Add Contact Group" msgstr "Contactgroep toevoegen" -#: netbox/templates/tenancy/contactrole.html:15 -#: netbox/tenancy/filtersets.py:152 netbox/tenancy/forms/forms.py:61 -#: netbox/tenancy/forms/model_forms.py:87 +#: templates/tenancy/contactrole.html:15 tenancy/filtersets.py:152 +#: tenancy/forms/forms.py:61 tenancy/forms/model_forms.py:87 msgid "Contact Role" msgstr "Rol van contactpersoon" -#: netbox/templates/tenancy/object_contacts.html:9 +#: templates/tenancy/object_contacts.html:9 msgid "Add a contact" msgstr "Een contact toevoegen" -#: netbox/templates/tenancy/tenantgroup.html:17 +#: templates/tenancy/tenantgroup.html:17 msgid "Add Tenant" msgstr "Tenant toevoegen" -#: netbox/templates/tenancy/tenantgroup.html:26 -#: netbox/tenancy/forms/model_forms.py:32 netbox/tenancy/tables/columns.py:51 -#: netbox/tenancy/tables/columns.py:61 +#: templates/tenancy/tenantgroup.html:26 tenancy/forms/model_forms.py:32 +#: tenancy/tables/columns.py:51 tenancy/tables/columns.py:61 msgid "Tenant Group" msgstr "Tenant Groep" -#: netbox/templates/tenancy/tenantgroup.html:59 +#: templates/tenancy/tenantgroup.html:59 msgid "Add Tenant Group" msgstr "Tenant Groep toevoegen" -#: netbox/templates/users/group.html:39 netbox/templates/users/user.html:63 +#: templates/users/group.html:39 templates/users/user.html:63 msgid "Assigned Permissions" msgstr "Toegewezen machtigingen" -#: netbox/templates/users/objectpermission.html:6 -#: netbox/templates/users/objectpermission.html:14 -#: netbox/users/forms/filtersets.py:66 +#: templates/users/objectpermission.html:6 +#: templates/users/objectpermission.html:14 users/forms/filtersets.py:66 msgid "Permission" msgstr "Toestemming" -#: netbox/templates/users/objectpermission.html:34 +#: templates/users/objectpermission.html:34 msgid "View" msgstr "Bekijken" -#: netbox/templates/users/objectpermission.html:52 -#: netbox/users/forms/model_forms.py:315 +#: templates/users/objectpermission.html:52 users/forms/model_forms.py:315 msgid "Constraints" msgstr "Beperkingen" -#: netbox/templates/users/objectpermission.html:72 +#: templates/users/objectpermission.html:72 msgid "Assigned Users" msgstr "Toegewezen gebruikers" -#: netbox/templates/virtualization/cluster.html:52 +#: templates/virtualization/cluster.html:52 msgid "Allocated Resources" msgstr "Toegewezen middelen" -#: netbox/templates/virtualization/cluster.html:55 -#: netbox/templates/virtualization/virtualmachine.html:125 +#: templates/virtualization/cluster.html:55 +#: templates/virtualization/virtualmachine.html:125 msgid "Virtual CPUs" msgstr "Virtuele CPU's" -#: netbox/templates/virtualization/cluster.html:59 -#: netbox/templates/virtualization/virtualmachine.html:129 +#: templates/virtualization/cluster.html:59 +#: templates/virtualization/virtualmachine.html:129 msgid "Memory" msgstr "Geheugen" -#: netbox/templates/virtualization/cluster.html:69 -#: netbox/templates/virtualization/virtualmachine.html:140 +#: templates/virtualization/cluster.html:69 +#: templates/virtualization/virtualmachine.html:140 msgid "Disk Space" msgstr "Schijfruimte" -#: netbox/templates/virtualization/cluster/base.html:18 +#: templates/virtualization/cluster/base.html:18 msgid "Add Virtual Machine" msgstr "Virtuele machine toevoegen" -#: netbox/templates/virtualization/cluster/base.html:24 +#: templates/virtualization/cluster/base.html:24 msgid "Assign Device" msgstr "Apparaat toewijzen" -#: netbox/templates/virtualization/cluster/devices.html:10 +#: templates/virtualization/cluster/devices.html:10 msgid "Remove Selected" msgstr "Geselecteerde verwijderen" -#: netbox/templates/virtualization/cluster_add_devices.html:9 +#: templates/virtualization/cluster_add_devices.html:9 #, python-format msgid "Add Device to Cluster %(cluster)s" msgstr "Apparaat aan cluster toevoegen %(cluster)s" -#: netbox/templates/virtualization/cluster_add_devices.html:23 +#: templates/virtualization/cluster_add_devices.html:23 msgid "Device Selection" msgstr "Selectie van het apparaat" -#: netbox/templates/virtualization/cluster_add_devices.html:31 +#: templates/virtualization/cluster_add_devices.html:31 msgid "Add Devices" msgstr "Apparaten toevoegen" -#: netbox/templates/virtualization/clustergroup.html:10 -#: netbox/templates/virtualization/clustertype.html:10 +#: templates/virtualization/clustergroup.html:10 +#: templates/virtualization/clustertype.html:10 msgid "Add Cluster" msgstr "Cluster toevoegen" -#: netbox/templates/virtualization/clustergroup.html:19 -#: netbox/virtualization/forms/model_forms.py:50 +#: templates/virtualization/clustergroup.html:19 +#: virtualization/forms/model_forms.py:50 msgid "Cluster Group" msgstr "Clustergroep" -#: netbox/templates/virtualization/clustertype.html:19 -#: netbox/templates/virtualization/virtualmachine.html:110 -#: netbox/virtualization/forms/model_forms.py:36 +#: templates/virtualization/clustertype.html:19 +#: templates/virtualization/virtualmachine.html:110 +#: virtualization/forms/model_forms.py:36 msgid "Cluster Type" msgstr "Clustertype" -#: netbox/templates/virtualization/virtualdisk.html:18 +#: templates/virtualization/virtualdisk.html:18 msgid "Virtual Disk" msgstr "Virtuele schijf" -#: netbox/templates/virtualization/virtualmachine.html:122 -#: netbox/virtualization/forms/bulk_edit.py:190 -#: netbox/virtualization/forms/model_forms.py:224 +#: templates/virtualization/virtualmachine.html:122 +#: virtualization/forms/bulk_edit.py:190 +#: virtualization/forms/model_forms.py:224 msgid "Resources" msgstr "Hulpbronnen" -#: netbox/templates/virtualization/virtualmachine.html:178 +#: templates/virtualization/virtualmachine.html:178 msgid "Add Virtual Disk" msgstr "Virtuele schijf toevoegen" -#: netbox/templates/vpn/ikepolicy.html:10 -#: netbox/templates/vpn/ipsecprofile.html:33 netbox/vpn/tables/crypto.py:166 +#: templates/vpn/ikepolicy.html:10 templates/vpn/ipsecprofile.html:33 +#: vpn/tables/crypto.py:166 msgid "IKE Policy" msgstr "IKE-beleid" -#: netbox/templates/vpn/ikepolicy.html:21 +#: templates/vpn/ikepolicy.html:21 msgid "IKE Version" msgstr "IKE-versie" -#: netbox/templates/vpn/ikepolicy.html:29 +#: templates/vpn/ikepolicy.html:29 msgid "Pre-Shared Key" msgstr "Vooraf gedeelde sleutel" -#: netbox/templates/vpn/ikepolicy.html:33 -#: netbox/templates/wireless/inc/authentication_attrs.html:20 +#: templates/vpn/ikepolicy.html:33 +#: templates/wireless/inc/authentication_attrs.html:20 msgid "Show Secret" msgstr "Geheim tonen" -#: netbox/templates/vpn/ikepolicy.html:57 -#: netbox/templates/vpn/ipsecpolicy.html:45 -#: netbox/templates/vpn/ipsecprofile.html:52 -#: netbox/templates/vpn/ipsecprofile.html:77 -#: netbox/vpn/forms/model_forms.py:316 netbox/vpn/forms/model_forms.py:352 -#: netbox/vpn/tables/crypto.py:68 netbox/vpn/tables/crypto.py:134 +#: templates/vpn/ikepolicy.html:57 templates/vpn/ipsecpolicy.html:45 +#: templates/vpn/ipsecprofile.html:52 templates/vpn/ipsecprofile.html:77 +#: vpn/forms/model_forms.py:316 vpn/forms/model_forms.py:352 +#: vpn/tables/crypto.py:68 vpn/tables/crypto.py:134 msgid "Proposals" msgstr "Voorstellen" -#: netbox/templates/vpn/ikeproposal.html:10 +#: templates/vpn/ikeproposal.html:10 msgid "IKE Proposal" msgstr "IKE-voorstel" -#: netbox/templates/vpn/ikeproposal.html:21 netbox/vpn/forms/bulk_edit.py:97 -#: netbox/vpn/forms/bulk_import.py:145 netbox/vpn/forms/filtersets.py:101 +#: templates/vpn/ikeproposal.html:21 vpn/forms/bulk_edit.py:97 +#: vpn/forms/bulk_import.py:145 vpn/forms/filtersets.py:101 msgid "Authentication method" msgstr "Authenticatiemethode" -#: netbox/templates/vpn/ikeproposal.html:25 -#: netbox/templates/vpn/ipsecproposal.html:21 -#: netbox/vpn/forms/bulk_edit.py:102 netbox/vpn/forms/bulk_edit.py:172 -#: netbox/vpn/forms/bulk_import.py:149 netbox/vpn/forms/bulk_import.py:195 -#: netbox/vpn/forms/filtersets.py:106 netbox/vpn/forms/filtersets.py:154 +#: templates/vpn/ikeproposal.html:25 templates/vpn/ipsecproposal.html:21 +#: vpn/forms/bulk_edit.py:102 vpn/forms/bulk_edit.py:172 +#: vpn/forms/bulk_import.py:149 vpn/forms/bulk_import.py:195 +#: vpn/forms/filtersets.py:106 vpn/forms/filtersets.py:154 msgid "Encryption algorithm" msgstr "Encryptie-algoritme" -#: netbox/templates/vpn/ikeproposal.html:29 -#: netbox/templates/vpn/ipsecproposal.html:25 -#: netbox/vpn/forms/bulk_edit.py:107 netbox/vpn/forms/bulk_edit.py:177 -#: netbox/vpn/forms/bulk_import.py:153 netbox/vpn/forms/bulk_import.py:200 -#: netbox/vpn/forms/filtersets.py:111 netbox/vpn/forms/filtersets.py:159 +#: templates/vpn/ikeproposal.html:29 templates/vpn/ipsecproposal.html:25 +#: vpn/forms/bulk_edit.py:107 vpn/forms/bulk_edit.py:177 +#: vpn/forms/bulk_import.py:153 vpn/forms/bulk_import.py:200 +#: vpn/forms/filtersets.py:111 vpn/forms/filtersets.py:159 msgid "Authentication algorithm" msgstr "Authenticatie-algoritme" -#: netbox/templates/vpn/ikeproposal.html:33 +#: templates/vpn/ikeproposal.html:33 msgid "DH group" msgstr "DH-groep" -#: netbox/templates/vpn/ikeproposal.html:37 -#: netbox/templates/vpn/ipsecproposal.html:29 -#: netbox/vpn/forms/bulk_edit.py:182 netbox/vpn/models/crypto.py:146 +#: templates/vpn/ikeproposal.html:37 templates/vpn/ipsecproposal.html:29 +#: vpn/forms/bulk_edit.py:182 vpn/models/crypto.py:146 msgid "SA lifetime (seconds)" msgstr "Een leven lang (seconden)" -#: netbox/templates/vpn/ipsecpolicy.html:10 -#: netbox/templates/vpn/ipsecprofile.html:66 netbox/vpn/tables/crypto.py:170 +#: templates/vpn/ipsecpolicy.html:10 templates/vpn/ipsecprofile.html:66 +#: vpn/tables/crypto.py:170 msgid "IPSec Policy" msgstr "IPsec-beleid" -#: netbox/templates/vpn/ipsecpolicy.html:21 netbox/vpn/forms/bulk_edit.py:210 -#: netbox/vpn/models/crypto.py:193 +#: templates/vpn/ipsecpolicy.html:21 vpn/forms/bulk_edit.py:210 +#: vpn/models/crypto.py:193 msgid "PFS group" msgstr "PFS-groep" -#: netbox/templates/vpn/ipsecprofile.html:10 -#: netbox/vpn/forms/model_forms.py:54 +#: templates/vpn/ipsecprofile.html:10 vpn/forms/model_forms.py:54 msgid "IPSec Profile" msgstr "IPsec-profiel" -#: netbox/templates/vpn/ipsecprofile.html:89 netbox/vpn/tables/crypto.py:137 +#: templates/vpn/ipsecprofile.html:89 vpn/tables/crypto.py:137 msgid "PFS Group" msgstr "PFS-groep" -#: netbox/templates/vpn/ipsecproposal.html:10 +#: templates/vpn/ipsecproposal.html:10 msgid "IPSec Proposal" msgstr "IPsec-voorstel" -#: netbox/templates/vpn/ipsecproposal.html:33 -#: netbox/vpn/forms/bulk_edit.py:186 netbox/vpn/models/crypto.py:152 +#: templates/vpn/ipsecproposal.html:33 vpn/forms/bulk_edit.py:186 +#: vpn/models/crypto.py:152 msgid "SA lifetime (KB)" msgstr "Een leven lang (kB)" -#: netbox/templates/vpn/l2vpn.html:11 -#: netbox/templates/vpn/l2vpntermination.html:9 +#: templates/vpn/l2vpn.html:11 templates/vpn/l2vpntermination.html:9 msgid "L2VPN Attributes" msgstr "L2VPN-kenmerken" -#: netbox/templates/vpn/l2vpn.html:60 netbox/templates/vpn/tunnel.html:76 +#: templates/vpn/l2vpn.html:60 templates/vpn/tunnel.html:76 msgid "Add a Termination" msgstr "Een beëindiging toevoegen" -#: netbox/templates/vpn/tunnel.html:9 +#: templates/vpn/tunnel.html:9 msgid "Add Termination" msgstr "Beëindiging toevoegen" -#: netbox/templates/vpn/tunnel.html:37 netbox/vpn/forms/bulk_edit.py:49 -#: netbox/vpn/forms/bulk_import.py:48 netbox/vpn/forms/filtersets.py:57 +#: templates/vpn/tunnel.html:37 vpn/forms/bulk_edit.py:49 +#: vpn/forms/bulk_import.py:48 vpn/forms/filtersets.py:57 msgid "Encapsulation" msgstr "Inkapseling" -#: netbox/templates/vpn/tunnel.html:41 netbox/vpn/forms/bulk_edit.py:55 -#: netbox/vpn/forms/bulk_import.py:53 netbox/vpn/forms/filtersets.py:64 -#: netbox/vpn/models/crypto.py:250 netbox/vpn/tables/tunnels.py:51 +#: templates/vpn/tunnel.html:41 vpn/forms/bulk_edit.py:55 +#: vpn/forms/bulk_import.py:53 vpn/forms/filtersets.py:64 +#: vpn/models/crypto.py:250 vpn/tables/tunnels.py:51 msgid "IPSec profile" msgstr "IPsec-profiel" -#: netbox/templates/vpn/tunnel.html:45 netbox/vpn/forms/bulk_edit.py:69 -#: netbox/vpn/forms/filtersets.py:68 +#: templates/vpn/tunnel.html:45 vpn/forms/bulk_edit.py:69 +#: vpn/forms/filtersets.py:68 msgid "Tunnel ID" msgstr "Tunnel-ID" -#: netbox/templates/vpn/tunnelgroup.html:14 +#: templates/vpn/tunnelgroup.html:14 msgid "Add Tunnel" msgstr "Tunnel toevoegen" -#: netbox/templates/vpn/tunnelgroup.html:23 netbox/vpn/forms/model_forms.py:36 -#: netbox/vpn/forms/model_forms.py:49 +#: templates/vpn/tunnelgroup.html:23 vpn/forms/model_forms.py:36 +#: vpn/forms/model_forms.py:49 msgid "Tunnel Group" msgstr "Tunnelgroep" -#: netbox/templates/vpn/tunneltermination.html:10 +#: templates/vpn/tunneltermination.html:10 msgid "Tunnel Termination" msgstr "Afsluiting van de tunnel" -#: netbox/templates/vpn/tunneltermination.html:35 -#: netbox/vpn/forms/bulk_import.py:107 netbox/vpn/forms/model_forms.py:102 -#: netbox/vpn/forms/model_forms.py:138 netbox/vpn/forms/model_forms.py:247 -#: netbox/vpn/tables/tunnels.py:101 +#: templates/vpn/tunneltermination.html:35 vpn/forms/bulk_import.py:107 +#: vpn/forms/model_forms.py:102 vpn/forms/model_forms.py:138 +#: vpn/forms/model_forms.py:247 vpn/tables/tunnels.py:101 msgid "Outside IP" msgstr "Buiten IP" -#: netbox/templates/vpn/tunneltermination.html:51 +#: templates/vpn/tunneltermination.html:51 msgid "Peer Terminations" msgstr "Beëindigingen door collega's" -#: netbox/templates/wireless/inc/authentication_attrs.html:12 +#: templates/wireless/inc/authentication_attrs.html:12 msgid "Cipher" msgstr "Cijfer" -#: netbox/templates/wireless/inc/authentication_attrs.html:16 +#: templates/wireless/inc/authentication_attrs.html:16 msgid "PSK" msgstr "PSK" -#: netbox/templates/wireless/inc/wirelesslink_interface.html:35 -#: netbox/templates/wireless/inc/wirelesslink_interface.html:45 +#: templates/wireless/inc/wirelesslink_interface.html:35 +#: templates/wireless/inc/wirelesslink_interface.html:45 msgctxt "Abbreviation for megahertz" msgid "MHz" msgstr "MHz" -#: netbox/templates/wireless/wirelesslan.html:57 +#: templates/wireless/wirelesslan.html:57 msgid "Attached Interfaces" msgstr "Bijgevoegde interfaces" -#: netbox/templates/wireless/wirelesslangroup.html:17 +#: templates/wireless/wirelesslangroup.html:17 msgid "Add Wireless LAN" msgstr "Draadloos netwerk toevoegen" -#: netbox/templates/wireless/wirelesslangroup.html:26 -#: netbox/wireless/forms/model_forms.py:28 +#: templates/wireless/wirelesslangroup.html:26 +#: wireless/forms/model_forms.py:28 msgid "Wireless LAN Group" msgstr "Draadloze LAN-groep" -#: netbox/templates/wireless/wirelesslangroup.html:59 +#: templates/wireless/wirelesslangroup.html:59 msgid "Add Wireless LAN Group" msgstr "Draadloze LAN-groep toevoegen" -#: netbox/templates/wireless/wirelesslink.html:14 +#: templates/wireless/wirelesslink.html:14 msgid "Link Properties" msgstr "Eigenschappen van de link" -#: netbox/templates/wireless/wirelesslink.html:38 -#: netbox/wireless/forms/bulk_edit.py:129 -#: netbox/wireless/forms/filtersets.py:102 -#: netbox/wireless/forms/model_forms.py:165 +#: templates/wireless/wirelesslink.html:38 wireless/forms/bulk_edit.py:129 +#: wireless/forms/filtersets.py:102 wireless/forms/model_forms.py:165 msgid "Distance" msgstr "Afstand" -#: netbox/tenancy/filtersets.py:28 +#: tenancy/filtersets.py:28 msgid "Parent contact group (ID)" msgstr "Contactgroep voor ouders (ID)" -#: netbox/tenancy/filtersets.py:34 +#: tenancy/filtersets.py:34 msgid "Parent contact group (slug)" msgstr "Contactgroep voor ouders (slug)" -#: netbox/tenancy/filtersets.py:40 netbox/tenancy/filtersets.py:67 -#: netbox/tenancy/filtersets.py:110 +#: tenancy/filtersets.py:40 tenancy/filtersets.py:67 tenancy/filtersets.py:110 msgid "Contact group (ID)" msgstr "Contactgroep (ID)" -#: netbox/tenancy/filtersets.py:47 netbox/tenancy/filtersets.py:74 -#: netbox/tenancy/filtersets.py:117 +#: tenancy/filtersets.py:47 tenancy/filtersets.py:74 tenancy/filtersets.py:117 msgid "Contact group (slug)" msgstr "Contactgroep (slug)" -#: netbox/tenancy/filtersets.py:104 +#: tenancy/filtersets.py:104 msgid "Contact (ID)" msgstr "Contactpersoon (ID)" -#: netbox/tenancy/filtersets.py:121 +#: tenancy/filtersets.py:121 msgid "Contact role (ID)" msgstr "Rol van contactpersoon (ID)" -#: netbox/tenancy/filtersets.py:127 +#: tenancy/filtersets.py:127 msgid "Contact role (slug)" msgstr "Contactrol (slug)" -#: netbox/tenancy/filtersets.py:158 +#: tenancy/filtersets.py:158 msgid "Contact group" msgstr "Contactgroep" -#: netbox/tenancy/filtersets.py:169 +#: tenancy/filtersets.py:169 msgid "Parent tenant group (ID)" msgstr "Parent tenant groep (ID)" -#: netbox/tenancy/filtersets.py:175 +#: tenancy/filtersets.py:175 msgid "Parent tenant group (slug)" msgstr "Parent tenant groep (slug)" -#: netbox/tenancy/filtersets.py:181 netbox/tenancy/filtersets.py:201 +#: tenancy/filtersets.py:181 tenancy/filtersets.py:201 msgid "Tenant group (ID)" msgstr "Tenant groep (ID)" -#: netbox/tenancy/filtersets.py:234 +#: tenancy/filtersets.py:234 msgid "Tenant Group (ID)" msgstr "Tenant Groep (ID)" -#: netbox/tenancy/filtersets.py:241 +#: tenancy/filtersets.py:241 msgid "Tenant Group (slug)" msgstr "Tenant Groep (slug)" -#: netbox/tenancy/forms/bulk_edit.py:66 +#: tenancy/forms/bulk_edit.py:66 msgid "Desciption" msgstr "Beschrijving" -#: netbox/tenancy/forms/bulk_import.py:101 +#: tenancy/forms/bulk_import.py:101 msgid "Assigned contact" msgstr "Toegewezen contactpersoon" -#: netbox/tenancy/models/contacts.py:32 +#: tenancy/models/contacts.py:32 msgid "contact group" msgstr "contactgroep" -#: netbox/tenancy/models/contacts.py:33 +#: tenancy/models/contacts.py:33 msgid "contact groups" msgstr "contactgroepen" -#: netbox/tenancy/models/contacts.py:48 +#: tenancy/models/contacts.py:48 msgid "contact role" msgstr "contactrol" -#: netbox/tenancy/models/contacts.py:49 +#: tenancy/models/contacts.py:49 msgid "contact roles" msgstr "contactrollen" -#: netbox/tenancy/models/contacts.py:68 +#: tenancy/models/contacts.py:68 msgid "title" msgstr "noemen" -#: netbox/tenancy/models/contacts.py:73 +#: tenancy/models/contacts.py:73 msgid "phone" msgstr "telefoon" -#: netbox/tenancy/models/contacts.py:78 +#: tenancy/models/contacts.py:78 msgid "email" msgstr "e-mail" -#: netbox/tenancy/models/contacts.py:87 +#: tenancy/models/contacts.py:87 msgid "link" msgstr "verbinden" -#: netbox/tenancy/models/contacts.py:103 +#: tenancy/models/contacts.py:103 msgid "contact" msgstr "contact" -#: netbox/tenancy/models/contacts.py:104 +#: tenancy/models/contacts.py:104 msgid "contacts" msgstr "neemt contact op" -#: netbox/tenancy/models/contacts.py:153 +#: tenancy/models/contacts.py:153 msgid "contact assignment" msgstr "contactopdracht" -#: netbox/tenancy/models/contacts.py:154 +#: tenancy/models/contacts.py:154 msgid "contact assignments" msgstr "contacttoewijzingen" -#: netbox/tenancy/models/contacts.py:170 +#: tenancy/models/contacts.py:170 #, python-brace-format msgid "Contacts cannot be assigned to this object type ({type})." msgstr "" "Contactpersonen kunnen niet aan dit objecttype worden toegewezen ({type})." -#: netbox/tenancy/models/tenants.py:32 +#: tenancy/models/tenants.py:32 msgid "tenant group" msgstr "tenant groep" -#: netbox/tenancy/models/tenants.py:33 +#: tenancy/models/tenants.py:33 msgid "tenant groups" msgstr "tenant groepen" -#: netbox/tenancy/models/tenants.py:70 +#: tenancy/models/tenants.py:70 msgid "Tenant name must be unique per group." msgstr "De naam van de tenant moet per groep uniek zijn." -#: netbox/tenancy/models/tenants.py:80 +#: tenancy/models/tenants.py:80 msgid "Tenant slug must be unique per group." msgstr "De slug van de tentant moet per groep uniek zijn." -#: netbox/tenancy/models/tenants.py:88 +#: tenancy/models/tenants.py:88 msgid "tenant" msgstr "tenant" -#: netbox/tenancy/models/tenants.py:89 +#: tenancy/models/tenants.py:89 msgid "tenants" msgstr "tenants" -#: netbox/tenancy/tables/contacts.py:112 +#: tenancy/tables/contacts.py:112 msgid "Contact Title" msgstr "Titel van de contactpersoon" -#: netbox/tenancy/tables/contacts.py:116 +#: tenancy/tables/contacts.py:116 msgid "Contact Phone" msgstr "Telefoonnummer contact opnemen" -#: netbox/tenancy/tables/contacts.py:121 +#: tenancy/tables/contacts.py:121 msgid "Contact Email" msgstr "E-mailadres voor contact" -#: netbox/tenancy/tables/contacts.py:125 +#: tenancy/tables/contacts.py:125 msgid "Contact Address" msgstr "Contactadres" -#: netbox/tenancy/tables/contacts.py:129 +#: tenancy/tables/contacts.py:129 msgid "Contact Link" msgstr "Link contact opnemen" -#: netbox/tenancy/tables/contacts.py:133 +#: tenancy/tables/contacts.py:133 msgid "Contact Description" msgstr "Beschrijving van de contactpersoon" -#: netbox/users/filtersets.py:33 netbox/users/filtersets.py:73 +#: users/filtersets.py:33 users/filtersets.py:73 msgid "Permission (ID)" msgstr "Toestemming (ID)" -#: netbox/users/filtersets.py:38 netbox/users/filtersets.py:78 +#: users/filtersets.py:38 users/filtersets.py:78 msgid "Notification group (ID)" msgstr "Meldingsgroep (ID)" -#: netbox/users/forms/bulk_edit.py:26 +#: users/forms/bulk_edit.py:26 msgid "First name" msgstr "Voornaam" -#: netbox/users/forms/bulk_edit.py:31 +#: users/forms/bulk_edit.py:31 msgid "Last name" msgstr "Achternaam" -#: netbox/users/forms/bulk_edit.py:43 +#: users/forms/bulk_edit.py:43 msgid "Staff status" msgstr "Status van het personeel" -#: netbox/users/forms/bulk_edit.py:48 +#: users/forms/bulk_edit.py:48 msgid "Superuser status" msgstr "Status van superuser" -#: netbox/users/forms/bulk_import.py:41 +#: users/forms/bulk_import.py:41 msgid "If no key is provided, one will be generated automatically." msgstr "" "Als er geen sleutel wordt verstrekt, wordt er automatisch een gegenereerd." -#: netbox/users/forms/filtersets.py:51 netbox/users/tables.py:42 +#: users/forms/filtersets.py:51 users/tables.py:42 msgid "Is Staff" msgstr "Is personeel" -#: netbox/users/forms/filtersets.py:58 netbox/users/tables.py:45 +#: users/forms/filtersets.py:58 users/tables.py:45 msgid "Is Superuser" msgstr "Is Superuser" -#: netbox/users/forms/filtersets.py:91 netbox/users/tables.py:86 +#: users/forms/filtersets.py:91 users/tables.py:86 msgid "Can View" msgstr "Kan bekijken" -#: netbox/users/forms/filtersets.py:98 netbox/users/tables.py:89 +#: users/forms/filtersets.py:98 users/tables.py:89 msgid "Can Add" msgstr "Kan toevoegen" -#: netbox/users/forms/filtersets.py:105 netbox/users/tables.py:92 +#: users/forms/filtersets.py:105 users/tables.py:92 msgid "Can Change" msgstr "Kan veranderen" -#: netbox/users/forms/filtersets.py:112 netbox/users/tables.py:95 +#: users/forms/filtersets.py:112 users/tables.py:95 msgid "Can Delete" msgstr "Kan verwijderen" -#: netbox/users/forms/model_forms.py:62 +#: users/forms/model_forms.py:62 msgid "User Interface" msgstr "Gebruikersinterface" -#: netbox/users/forms/model_forms.py:114 +#: users/forms/model_forms.py:114 msgid "" "Keys must be at least 40 characters in length. Be sure to record " "your key prior to submitting this form, as it may no longer be " @@ -14779,7 +14037,7 @@ msgstr "" "sleutel opneemt
voordat dit formulier wordt verzonden, omdat het " "mogelijk niet meer toegankelijk is nadat het token is aangemaakt." -#: netbox/users/forms/model_forms.py:126 +#: users/forms/model_forms.py:126 msgid "" "Allowed IPv4/IPv6 networks from where the token can be used. Leave blank for" " no restrictions. Example: " @@ -14789,33 +14047,33 @@ msgstr "" "Laat dit veld leeg zodat er geen beperkingen zijn. Voorbeeld: " "10.1.1.0/24, 192.168.10.16/32,2001:db 8:1: :/64" -#: netbox/users/forms/model_forms.py:175 +#: users/forms/model_forms.py:175 msgid "Confirm password" msgstr "Wachtwoord bevestigen" -#: netbox/users/forms/model_forms.py:178 +#: users/forms/model_forms.py:178 msgid "Enter the same password as before, for verification." msgstr "Voer ter verificatie hetzelfde wachtwoord in als voorheen." -#: netbox/users/forms/model_forms.py:227 +#: users/forms/model_forms.py:227 msgid "Passwords do not match! Please check your input and try again." msgstr "" "Wachtwoorden komen niet overeen! Controleer uw invoer en probeer het " "opnieuw." -#: netbox/users/forms/model_forms.py:294 +#: users/forms/model_forms.py:294 msgid "Additional actions" msgstr "Aanvullende acties" -#: netbox/users/forms/model_forms.py:297 +#: users/forms/model_forms.py:297 msgid "Actions granted in addition to those listed above" msgstr "Acties die zijn toegekend in aanvulling op de hierboven genoemde" -#: netbox/users/forms/model_forms.py:313 +#: users/forms/model_forms.py:313 msgid "Objects" msgstr "Objecten" -#: netbox/users/forms/model_forms.py:325 +#: users/forms/model_forms.py:325 msgid "" "JSON expression of a queryset filter that will return only permitted " "objects. Leave null to match all objects of this type. A list of multiple " @@ -14826,80 +14084,80 @@ msgstr "" " Een lijst met meerdere objecten zal resulteren in een logische OR-" "bewerking." -#: netbox/users/forms/model_forms.py:364 +#: users/forms/model_forms.py:364 msgid "At least one action must be selected." msgstr "Er moet minstens één actie worden geselecteerd." -#: netbox/users/forms/model_forms.py:382 +#: users/forms/model_forms.py:382 #, python-brace-format msgid "Invalid filter for {model}: {error}" msgstr "Ongeldig filter voor {model}: {error}" -#: netbox/users/models/permissions.py:39 +#: users/models/permissions.py:39 msgid "The list of actions granted by this permission" msgstr "De lijst met acties die met deze toestemming zijn verleend" -#: netbox/users/models/permissions.py:44 +#: users/models/permissions.py:44 msgid "constraints" msgstr "verplichtingen" -#: netbox/users/models/permissions.py:45 +#: users/models/permissions.py:45 msgid "" "Queryset filter matching the applicable objects of the selected type(s)" msgstr "" "Querysetfilter dat overeenkomt met de toepasselijke objecten van het " "geselecteerde type (s)" -#: netbox/users/models/permissions.py:52 +#: users/models/permissions.py:52 msgid "permission" msgstr "toestemming" -#: netbox/users/models/permissions.py:53 netbox/users/models/users.py:47 +#: users/models/permissions.py:53 users/models/users.py:47 msgid "permissions" msgstr "toestemmingen" -#: netbox/users/models/preferences.py:29 netbox/users/models/preferences.py:30 +#: users/models/preferences.py:29 users/models/preferences.py:30 msgid "user preferences" msgstr "gebruikersvoorkeuren" -#: netbox/users/models/preferences.py:97 +#: users/models/preferences.py:97 #, python-brace-format msgid "Key '{path}' is a leaf node; cannot assign new keys" msgstr "" "Sleutel '{path}'is een bladknooppunt; kan geen nieuwe sleutels toewijzen" -#: netbox/users/models/preferences.py:109 +#: users/models/preferences.py:109 #, python-brace-format msgid "Key '{path}' is a dictionary; cannot assign a non-dictionary value" msgstr "" "Sleutel '{path}'is een woordenboek; kan geen waarde toekennen die niet uit " "het woordenboek bestaat" -#: netbox/users/models/tokens.py:36 +#: users/models/tokens.py:36 msgid "expires" msgstr "vervalt" -#: netbox/users/models/tokens.py:41 +#: users/models/tokens.py:41 msgid "last used" msgstr "laatst gebruikt" -#: netbox/users/models/tokens.py:46 +#: users/models/tokens.py:46 msgid "key" msgstr "sleutel" -#: netbox/users/models/tokens.py:52 +#: users/models/tokens.py:52 msgid "write enabled" msgstr "schrijven ingeschakeld" -#: netbox/users/models/tokens.py:54 +#: users/models/tokens.py:54 msgid "Permit create/update/delete operations using this key" msgstr "Bewerkingen aanmaken, bijwerken/verwijderen met deze sleutel toestaan" -#: netbox/users/models/tokens.py:65 +#: users/models/tokens.py:65 msgid "allowed IPs" msgstr "toegestane IP's" -#: netbox/users/models/tokens.py:67 +#: users/models/tokens.py:67 msgid "" "Allowed IPv4/IPv6 networks from where the token can be used. Leave blank for" " no restrictions. Ex: \"10.1.1.0/24, 192.168.10.16/32, 2001:DB8:1::/64\"" @@ -14908,43 +14166,43 @@ msgstr "" "Laat dit veld leeg zodat er geen beperkingen zijn. Bijvoorbeeld: " "„10.1.1.0/24, 192.168.10.16/32, 2001:DB 8:1: :/64\"" -#: netbox/users/models/tokens.py:75 +#: users/models/tokens.py:75 msgid "token" msgstr "blijk" -#: netbox/users/models/tokens.py:76 +#: users/models/tokens.py:76 msgid "tokens" msgstr "tokens" -#: netbox/users/models/users.py:57 netbox/vpn/models/crypto.py:42 +#: users/models/users.py:57 vpn/models/crypto.py:42 msgid "group" msgstr "groeperen" -#: netbox/users/models/users.py:92 +#: users/models/users.py:92 msgid "user" msgstr "gebruiker" -#: netbox/users/models/users.py:104 +#: users/models/users.py:104 msgid "A user with this username already exists." msgstr "Er bestaat al een gebruiker met deze gebruikersnaam." -#: netbox/users/tables.py:98 +#: users/tables.py:98 msgid "Custom Actions" msgstr "Acties op maat" -#: netbox/utilities/api.py:153 +#: utilities/api.py:153 #, python-brace-format msgid "Related object not found using the provided attributes: {params}" msgstr "" "Gerelateerd object niet gevonden met behulp van de opgegeven kenmerken: " "{params}" -#: netbox/utilities/api.py:156 +#: utilities/api.py:156 #, python-brace-format msgid "Multiple objects match the provided attributes: {params}" msgstr "Meerdere objecten komen overeen met de opgegeven kenmerken: {params}" -#: netbox/utilities/api.py:168 +#: utilities/api.py:168 #, python-brace-format msgid "" "Related objects must be referenced by numeric ID or by dictionary of " @@ -14953,42 +14211,42 @@ msgstr "" "Naar gerelateerde objecten moet worden verwezen met een numerieke ID of een " "woordenboek met attributen. Een niet-herkende waarde ontvangen: {value}" -#: netbox/utilities/api.py:177 +#: utilities/api.py:177 #, python-brace-format msgid "Related object not found using the provided numeric ID: {id}" msgstr "" "Het gerelateerde object is niet gevonden met de opgegeven numerieke ID: {id}" -#: netbox/utilities/choices.py:19 +#: utilities/choices.py:19 #, python-brace-format msgid "{name} has a key defined but CHOICES is not a list" msgstr "{name} heeft een sleutel gedefinieerd, maar CHOICES is geen lijst" -#: netbox/utilities/conversion.py:19 +#: utilities/conversion.py:19 msgid "Weight must be a positive number" msgstr "Gewicht moet een positief getal zijn" -#: netbox/utilities/conversion.py:21 +#: utilities/conversion.py:21 #, python-brace-format msgid "Invalid value '{weight}' for weight (must be a number)" msgstr "Ongeldige waarde '{weight}'voor gewicht (moet een getal zijn)" -#: netbox/utilities/conversion.py:32 netbox/utilities/conversion.py:62 +#: utilities/conversion.py:32 utilities/conversion.py:62 #, python-brace-format msgid "Unknown unit {unit}. Must be one of the following: {valid_units}" msgstr "" "Onbekende eenheid {unit}. Moet een van de volgende zijn: {valid_units}" -#: netbox/utilities/conversion.py:45 +#: utilities/conversion.py:45 msgid "Length must be a positive number" msgstr "De lengte moet een positief getal zijn" -#: netbox/utilities/conversion.py:47 +#: utilities/conversion.py:47 #, python-brace-format msgid "Invalid value '{length}' for length (must be a number)" msgstr "Ongeldige waarde '{length}'voor lengte (moet een getal zijn)" -#: netbox/utilities/error_handlers.py:31 +#: utilities/error_handlers.py:31 #, python-brace-format msgid "" "Unable to delete {objects}. {count} dependent objects were " @@ -14997,15 +14255,15 @@ msgstr "" "Kan niet verwijderen {objects}. {count} afhankelijke " "objecten zijn gevonden: " -#: netbox/utilities/error_handlers.py:33 +#: utilities/error_handlers.py:33 msgid "More than 50" msgstr "Meer dan 50" -#: netbox/utilities/fields.py:30 +#: utilities/fields.py:30 msgid "RGB color in hexadecimal. Example: " msgstr "RGB-kleur in hexadecimaal. Voorbeeld: " -#: netbox/utilities/fields.py:159 +#: utilities/fields.py:159 #, python-format msgid "" "%s(%r) is invalid. to_model parameter to CounterCacheField must be a string " @@ -15014,7 +14272,7 @@ msgstr "" "%s(%r) is ongeldig. De parameter to_model voor CounterCacheField moet een " "tekenreeks zijn in het formaat 'app.model'" -#: netbox/utilities/fields.py:169 +#: utilities/fields.py:169 #, python-format msgid "" "%s(%r) is invalid. to_field parameter to CounterCacheField must be a string " @@ -15023,39 +14281,39 @@ msgstr "" "%s(%r) is ongeldig. De parameter to_field voor CounterCacheField moet een " "tekenreeks zijn in de indeling 'field'" -#: netbox/utilities/forms/bulk_import.py:23 +#: utilities/forms/bulk_import.py:23 msgid "Enter object data in CSV, JSON or YAML format." msgstr "Voer objectgegevens in CSV-, JSON- of YAML-formaat in." -#: netbox/utilities/forms/bulk_import.py:36 +#: utilities/forms/bulk_import.py:36 msgid "CSV delimiter" msgstr "CSV-scheidingsteken" -#: netbox/utilities/forms/bulk_import.py:37 +#: utilities/forms/bulk_import.py:37 msgid "The character which delimits CSV fields. Applies only to CSV format." msgstr "" "Het teken dat CSV-velden afbakent. Alleen van toepassing op CSV-formaat." -#: netbox/utilities/forms/bulk_import.py:51 +#: utilities/forms/bulk_import.py:51 msgid "Form data must be empty when uploading/selecting a file." msgstr "" "Formuliergegevens moeten leeg zijn bij het uploaden/selecteren van een " "bestand." -#: netbox/utilities/forms/bulk_import.py:80 +#: utilities/forms/bulk_import.py:80 #, python-brace-format msgid "Unknown data format: {format}" msgstr "Onbekend gegevensformaat: {format}" -#: netbox/utilities/forms/bulk_import.py:100 +#: utilities/forms/bulk_import.py:100 msgid "Unable to detect data format. Please specify." msgstr "Kan het gegevensformaat niet detecteren. Specificeer alstublieft." -#: netbox/utilities/forms/bulk_import.py:123 +#: utilities/forms/bulk_import.py:123 msgid "Invalid CSV delimiter" msgstr "Ongeldig CSV-scheidingsteken" -#: netbox/utilities/forms/bulk_import.py:167 +#: utilities/forms/bulk_import.py:167 msgid "" "Invalid YAML data. Data must be in the form of multiple documents, or a " "single document comprising a list of dictionaries." @@ -15063,7 +14321,7 @@ msgstr "" "Ongeldige YAML-gegevens. De gegevens moeten de vorm hebben van meerdere " "documenten, of een enkel document dat een lijst met woordenboeken bevat." -#: netbox/utilities/forms/fields/array.py:20 +#: utilities/forms/fields/array.py:20 #, python-brace-format msgid "" "Invalid list ({value}). Must be numeric and ranges must be in ascending " @@ -15072,7 +14330,7 @@ msgstr "" "Ongeldige lijst ({value}). Moet numeriek zijn en reeksen moeten in oplopende" " volgorde staan." -#: netbox/utilities/forms/fields/array.py:40 +#: utilities/forms/fields/array.py:40 msgid "" "Specify one or more numeric ranges separated by commas. Example: " "1-5,20-30" @@ -15080,7 +14338,7 @@ msgstr "" "Geef een of meer numerieke reeksen op, gescheiden door komma's. Voorbeeld: " "1-5,20-30" -#: netbox/utilities/forms/fields/array.py:47 +#: utilities/forms/fields/array.py:47 #, python-brace-format msgid "" "Invalid ranges ({value}). Must be a range of integers in ascending order." @@ -15088,18 +14346,17 @@ msgstr "" "Ongeldige reeksen ({value}). Moet een reeks gehele getallen in oplopende " "volgorde zijn." -#: netbox/utilities/forms/fields/csv.py:44 +#: utilities/forms/fields/csv.py:44 #, python-brace-format msgid "Invalid value for a multiple choice field: {value}" msgstr "Ongeldige waarde voor een meerkeuzeveld: {value}" -#: netbox/utilities/forms/fields/csv.py:57 -#: netbox/utilities/forms/fields/csv.py:78 +#: utilities/forms/fields/csv.py:57 utilities/forms/fields/csv.py:78 #, python-format msgid "Object not found: %(value)s" msgstr "Object niet gevonden: %(value)s" -#: netbox/utilities/forms/fields/csv.py:65 +#: utilities/forms/fields/csv.py:65 #, python-brace-format msgid "" "\"{value}\" is not a unique value for this field; multiple objects were " @@ -15108,20 +14365,20 @@ msgstr "" "„{value}„is geen unieke waarde voor dit veld; er zijn meerdere objecten " "gevonden" -#: netbox/utilities/forms/fields/csv.py:69 +#: utilities/forms/fields/csv.py:69 #, python-brace-format msgid "\"{field_name}\" is an invalid accessor field name." msgstr "„{field_name}„is een ongeldige naam voor het accessorveld." -#: netbox/utilities/forms/fields/csv.py:101 +#: utilities/forms/fields/csv.py:101 msgid "Object type must be specified as \".\"" msgstr "Het objecttype moet worden gespecificeerd als”.„" -#: netbox/utilities/forms/fields/csv.py:105 +#: utilities/forms/fields/csv.py:105 msgid "Invalid object type" msgstr "Ongeldig objecttype" -#: netbox/utilities/forms/fields/expandable.py:25 +#: utilities/forms/fields/expandable.py:25 msgid "" "Alphanumeric ranges are supported for bulk creation. Mixed cases and types " "within a single range are not supported (example: " @@ -15131,7 +14388,7 @@ msgstr "" " en typen binnen één bereik worden niet ondersteund (bijvoorbeeld: " "[leeftijd, ex] -0/0/ [0-9])." -#: netbox/utilities/forms/fields/expandable.py:46 +#: utilities/forms/fields/expandable.py:46 msgid "" "Specify a numeric range to create multiple IPs.
Example: " "192.0.2.[1,5,100-254]/24" @@ -15139,7 +14396,7 @@ msgstr "" "Specificeer een numeriek bereik om meerdere IP-adressen te creëren.
Voorbeeld: 192.0.2. [1,5,100-254] /24" -#: netbox/utilities/forms/fields/fields.py:31 +#: utilities/forms/fields/fields.py:31 #, python-brace-format msgid "" " Markdown syntaxis wordt ondersteund" -#: netbox/utilities/forms/fields/fields.py:48 +#: utilities/forms/fields/fields.py:48 msgid "URL-friendly unique shorthand" msgstr "URL-vriendelijke unieke afkorting" -#: netbox/utilities/forms/fields/fields.py:101 +#: utilities/forms/fields/fields.py:101 msgid "Enter context data in JSON format." msgstr "Voer contextgegevens in JSON formaat." -#: netbox/utilities/forms/fields/fields.py:124 +#: utilities/forms/fields/fields.py:124 msgid "MAC address must be in EUI-48 format" msgstr "MAC-adres moet het EUI-48-formaat hebben" -#: netbox/utilities/forms/forms.py:52 +#: utilities/forms/forms.py:52 msgid "Use regular expressions" msgstr "Reguliere expressies gebruiken" -#: netbox/utilities/forms/forms.py:75 +#: utilities/forms/forms.py:75 msgid "" "Numeric ID of an existing object to update (if not creating a new object)" msgstr "" "Numerieke ID van een bestaand object dat moet worden bijgewerkt (als er geen" " nieuw object wordt aangemaakt)" -#: netbox/utilities/forms/forms.py:92 +#: utilities/forms/forms.py:92 #, python-brace-format msgid "Unrecognized header: {name}" msgstr "Koptekst niet herkend: {name}" -#: netbox/utilities/forms/forms.py:118 +#: utilities/forms/forms.py:118 msgid "Available Columns" msgstr "Beschikbare kolommen" -#: netbox/utilities/forms/forms.py:126 +#: utilities/forms/forms.py:126 msgid "Selected Columns" msgstr "Geselecteerde kolommen" -#: netbox/utilities/forms/mixins.py:44 +#: utilities/forms/mixins.py:44 msgid "" "This object has been modified since the form was rendered. Please consult " "the object's change log for details." @@ -15192,13 +14449,13 @@ msgstr "" "Dit object is gewijzigd sinds de weergave van het formulier. Raadpleeg het " "wijzigingslogboek van het object voor meer informatie." -#: netbox/utilities/forms/utils.py:42 netbox/utilities/forms/utils.py:68 -#: netbox/utilities/forms/utils.py:85 netbox/utilities/forms/utils.py:87 +#: utilities/forms/utils.py:42 utilities/forms/utils.py:68 +#: utilities/forms/utils.py:85 utilities/forms/utils.py:87 #, python-brace-format msgid "Range \"{value}\" is invalid." msgstr "Bereik”{value}„is ongeldig." -#: netbox/utilities/forms/utils.py:74 +#: utilities/forms/utils.py:74 #, python-brace-format msgid "" "Invalid range: Ending value ({end}) must be greater than beginning value " @@ -15207,68 +14464,68 @@ msgstr "" "Ongeldig bereik: eindwaarde ({end}) moet groter zijn dan de beginwaarde " "({begin})." -#: netbox/utilities/forms/utils.py:232 +#: utilities/forms/utils.py:232 #, python-brace-format msgid "Duplicate or conflicting column header for \"{field}\"" msgstr "Dubbele of conflicterende kolomkop voor”{field}„" -#: netbox/utilities/forms/utils.py:238 +#: utilities/forms/utils.py:238 #, python-brace-format msgid "Duplicate or conflicting column header for \"{header}\"" msgstr "Dubbele of conflicterende kolomkop voor”{header}„" -#: netbox/utilities/forms/utils.py:247 +#: utilities/forms/utils.py:247 #, python-brace-format msgid "Row {row}: Expected {count_expected} columns but found {count_found}" msgstr "" "Rij {row}: Verwacht {count_expected} columns maar gevonden {count_found}" -#: netbox/utilities/forms/utils.py:270 +#: utilities/forms/utils.py:270 #, python-brace-format msgid "Unexpected column header \"{field}\" found." msgstr "Onverwachte kolomkop”{field}„gevonden." -#: netbox/utilities/forms/utils.py:272 +#: utilities/forms/utils.py:272 #, python-brace-format msgid "Column \"{field}\" is not a related object; cannot use dots" msgstr "Kolom”{field}„is geen gerelateerd object; kan geen punten gebruiken" -#: netbox/utilities/forms/utils.py:276 +#: utilities/forms/utils.py:276 #, python-brace-format msgid "Invalid related object attribute for column \"{field}\": {to_field}" msgstr "Ongeldig gerelateerd objectkenmerk voor kolom”{field}„: {to_field}" -#: netbox/utilities/forms/utils.py:284 +#: utilities/forms/utils.py:284 #, python-brace-format msgid "Required column header \"{header}\" not found." msgstr "Vereiste kolomkop”{header}„niet gevonden." -#: netbox/utilities/forms/widgets/apiselect.py:124 +#: utilities/forms/widgets/apiselect.py:124 #, python-brace-format msgid "Missing required value for dynamic query param: '{dynamic_params}'" msgstr "" "Ontbrekende vereiste waarde voor dynamische queryparameter: " "'{dynamic_params}'" -#: netbox/utilities/forms/widgets/apiselect.py:141 +#: utilities/forms/widgets/apiselect.py:141 #, python-brace-format msgid "Missing required value for static query param: '{static_params}'" msgstr "" "Ontbrekende vereiste waarde voor statische queryparameter: '{static_params}'" -#: netbox/utilities/password_validation.py:13 +#: utilities/password_validation.py:13 msgid "Password must have at least one numeral." msgstr "Het wachtwoord moet minstens één cijfer bevatten." -#: netbox/utilities/password_validation.py:18 +#: utilities/password_validation.py:18 msgid "Password must have at least one uppercase letter." msgstr "Het wachtwoord moet minstens één hoofdletter bevatten." -#: netbox/utilities/password_validation.py:23 +#: utilities/password_validation.py:23 msgid "Password must have at least one lowercase letter." msgstr "Het wachtwoord moet minstens één kleine letter bevatten." -#: netbox/utilities/password_validation.py:27 +#: utilities/password_validation.py:27 msgid "" "Your password must contain at least one numeral, one uppercase letter and " "one lowercase letter." @@ -15276,7 +14533,7 @@ msgstr "" "Je wachtwoord moet minstens één cijfer, één hoofdletter en één kleine letter" " bevatten." -#: netbox/utilities/permissions.py:42 +#: utilities/permissions.py:42 #, python-brace-format msgid "" "Invalid permission name: {name}. Must be in the format " @@ -15285,127 +14542,127 @@ msgstr "" "Ongeldige toestemmingsnaam: {name}. Moet in het formaat zijn " "._" -#: netbox/utilities/permissions.py:60 +#: utilities/permissions.py:60 #, python-brace-format msgid "Unknown app_label/model_name for {name}" msgstr "Onbekende app_label/model_name voor {name}" -#: netbox/utilities/request.py:76 +#: utilities/request.py:76 #, python-brace-format msgid "Invalid IP address set for {header}: {ip}" msgstr "Ongeldig IP-adres ingesteld voor {header}: {ip}" -#: netbox/utilities/tables.py:47 +#: utilities/tables.py:47 #, python-brace-format msgid "A column named {name} is already defined for table {table_name}" msgstr "" "Een kolom met de naam {name} is al gedefinieerd voor de tabel {table_name}" -#: netbox/utilities/templates/builtins/customfield_value.html:30 +#: utilities/templates/builtins/customfield_value.html:30 msgid "Not defined" msgstr "Niet gedefinieerd" -#: netbox/utilities/templates/buttons/bookmark.html:9 +#: utilities/templates/buttons/bookmark.html:9 msgid "Unbookmark" msgstr "Bladwijzer uitzetten" -#: netbox/utilities/templates/buttons/bookmark.html:13 +#: utilities/templates/buttons/bookmark.html:13 msgid "Bookmark" msgstr "Bladwijzer" -#: netbox/utilities/templates/buttons/clone.html:4 +#: utilities/templates/buttons/clone.html:4 msgid "Clone" msgstr "Kloon" -#: netbox/utilities/templates/buttons/export.html:7 +#: utilities/templates/buttons/export.html:7 msgid "Current View" msgstr "Huidige weergave" -#: netbox/utilities/templates/buttons/export.html:8 +#: utilities/templates/buttons/export.html:8 msgid "All Data" msgstr "Alle gegevens" -#: netbox/utilities/templates/buttons/export.html:28 +#: utilities/templates/buttons/export.html:28 msgid "Add export template" msgstr "Exportsjabloon toevoegen" -#: netbox/utilities/templates/buttons/import.html:4 +#: utilities/templates/buttons/import.html:4 msgid "Import" msgstr "Importeren" -#: netbox/utilities/templates/buttons/subscribe.html:10 +#: utilities/templates/buttons/subscribe.html:10 msgid "Unsubscribe" msgstr "Afmelden" -#: netbox/utilities/templates/buttons/subscribe.html:14 +#: utilities/templates/buttons/subscribe.html:14 msgid "Subscribe" msgstr "Abonneer" -#: netbox/utilities/templates/form_helpers/render_field.html:41 +#: utilities/templates/form_helpers/render_field.html:41 msgid "Copy to clipboard" msgstr "Naar klembord kopiëren" -#: netbox/utilities/templates/form_helpers/render_field.html:57 +#: 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 +#: utilities/templates/form_helpers/render_field.html:70 msgid "Set Null" msgstr "Null instellen" -#: netbox/utilities/templates/helpers/applied_filters.html:11 +#: utilities/templates/helpers/applied_filters.html:11 msgid "Clear all" msgstr "Alles wissen" -#: netbox/utilities/templates/helpers/table_config_form.html:8 +#: utilities/templates/helpers/table_config_form.html:8 msgid "Table Configuration" msgstr "Tabelconfiguratie" -#: netbox/utilities/templates/helpers/table_config_form.html:31 +#: utilities/templates/helpers/table_config_form.html:31 msgid "Move Up" msgstr "Omhoog gaan" -#: netbox/utilities/templates/helpers/table_config_form.html:34 +#: utilities/templates/helpers/table_config_form.html:34 msgid "Move Down" msgstr "Naar beneden gaan" -#: netbox/utilities/templates/navigation/menu.html:14 +#: utilities/templates/navigation/menu.html:14 msgid "Search…" msgstr "Zoek..." -#: netbox/utilities/templates/navigation/menu.html:14 +#: utilities/templates/navigation/menu.html:14 msgid "Search NetBox" msgstr "Zoek in NetBox" -#: netbox/utilities/templates/widgets/apiselect.html:7 +#: utilities/templates/widgets/apiselect.html:7 msgid "Open selector" msgstr "Selector openen" -#: netbox/utilities/templates/widgets/markdown_input.html:6 +#: utilities/templates/widgets/markdown_input.html:6 msgid "Write" msgstr "Schrijf" -#: netbox/utilities/testing/views.py:632 +#: utilities/testing/views.py:632 msgid "The test must define csv_update_data." msgstr "De test moet csv_update_data definiëren." -#: netbox/utilities/validators.py:65 +#: utilities/validators.py:65 #, python-brace-format msgid "{value} is not a valid regular expression." msgstr "{value} is geen geldige reguliere expressie." -#: netbox/utilities/views.py:57 +#: utilities/views.py:57 #, python-brace-format msgid "{self.__class__.__name__} must implement get_required_permission()" msgstr "" "{self.__class__.__name__} moet get_required_permission () implementeren" -#: netbox/utilities/views.py:93 +#: utilities/views.py:93 #, python-brace-format msgid "{class_name} must implement get_required_permission()" msgstr "{class_name} moet get_required_permission () implementeren" -#: netbox/utilities/views.py:117 +#: utilities/views.py:117 #, python-brace-format msgid "" "{class_name} has no queryset defined. ObjectPermissionRequiredMixin may only" @@ -15414,63 +14671,61 @@ msgstr "" "{class_name} heeft geen queryset gedefinieerd. ObjectPermissionRequiredMixIn" " mag alleen worden gebruikt op views die een basisqueryset definiëren" -#: netbox/virtualization/filtersets.py:79 +#: virtualization/filtersets.py:79 msgid "Parent group (ID)" msgstr "Oudergroep (ID)" -#: netbox/virtualization/filtersets.py:85 +#: virtualization/filtersets.py:85 msgid "Parent group (slug)" msgstr "Oudergroep (slug)" -#: netbox/virtualization/filtersets.py:89 -#: netbox/virtualization/filtersets.py:141 +#: virtualization/filtersets.py:89 virtualization/filtersets.py:141 msgid "Cluster type (ID)" msgstr "Clustertype (ID)" -#: netbox/virtualization/filtersets.py:151 -#: netbox/virtualization/filtersets.py:271 +#: virtualization/filtersets.py:151 virtualization/filtersets.py:271 msgid "Cluster (ID)" msgstr "Cluster (ID)" -#: netbox/virtualization/forms/bulk_edit.py:166 -#: netbox/virtualization/models/virtualmachines.py:115 +#: virtualization/forms/bulk_edit.py:166 +#: virtualization/models/virtualmachines.py:115 msgid "vCPUs" msgstr "vCPU's" -#: netbox/virtualization/forms/bulk_edit.py:170 +#: virtualization/forms/bulk_edit.py:170 msgid "Memory (MB)" msgstr "Geheugen (MB)" -#: netbox/virtualization/forms/bulk_edit.py:174 +#: virtualization/forms/bulk_edit.py:174 msgid "Disk (GB)" msgstr "Schijf (GB)" -#: netbox/virtualization/forms/bulk_edit.py:334 -#: netbox/virtualization/forms/filtersets.py:251 +#: virtualization/forms/bulk_edit.py:334 +#: virtualization/forms/filtersets.py:251 msgid "Size (GB)" msgstr "Grootte (GB)" -#: netbox/virtualization/forms/bulk_import.py:44 +#: virtualization/forms/bulk_import.py:44 msgid "Type of cluster" msgstr "Soort cluster" -#: netbox/virtualization/forms/bulk_import.py:51 +#: virtualization/forms/bulk_import.py:51 msgid "Assigned cluster group" msgstr "Toegewezen clustergroep" -#: netbox/virtualization/forms/bulk_import.py:96 +#: virtualization/forms/bulk_import.py:96 msgid "Assigned cluster" msgstr "Toegewezen cluster" -#: netbox/virtualization/forms/bulk_import.py:103 +#: virtualization/forms/bulk_import.py:103 msgid "Assigned device within cluster" msgstr "Toegewezen apparaat binnen cluster" -#: netbox/virtualization/forms/filtersets.py:183 +#: virtualization/forms/filtersets.py:183 msgid "Serial number" msgstr "Serienummer" -#: netbox/virtualization/forms/model_forms.py:153 +#: virtualization/forms/model_forms.py:153 #, python-brace-format msgid "" "{device} belongs to a different site ({device_site}) than the cluster " @@ -15479,51 +14734,51 @@ msgstr "" "{device} behoort tot een andere site ({device_site}) dan het cluster " "({cluster_site})" -#: netbox/virtualization/forms/model_forms.py:192 +#: virtualization/forms/model_forms.py:192 msgid "Optionally pin this VM to a specific host device within the cluster" msgstr "" "Optioneel kan deze VM worden vastgezet op een specifiek hostapparaat binnen " "het cluster" -#: netbox/virtualization/forms/model_forms.py:221 +#: virtualization/forms/model_forms.py:221 msgid "Site/Cluster" msgstr "Site/cluster" -#: netbox/virtualization/forms/model_forms.py:244 +#: virtualization/forms/model_forms.py:244 msgid "Disk size is managed via the attachment of virtual disks." msgstr "" "De schijfgrootte wordt beheerd via de koppeling van virtuele schijven." -#: netbox/virtualization/forms/model_forms.py:372 -#: netbox/virtualization/tables/virtualmachines.py:111 +#: virtualization/forms/model_forms.py:372 +#: virtualization/tables/virtualmachines.py:111 msgid "Disk" msgstr "Schijf" -#: netbox/virtualization/models/clusters.py:25 +#: virtualization/models/clusters.py:25 msgid "cluster type" msgstr "clustertype" -#: netbox/virtualization/models/clusters.py:26 +#: virtualization/models/clusters.py:26 msgid "cluster types" msgstr "clustertypen" -#: netbox/virtualization/models/clusters.py:45 +#: virtualization/models/clusters.py:45 msgid "cluster group" msgstr "clustergroep" -#: netbox/virtualization/models/clusters.py:46 +#: virtualization/models/clusters.py:46 msgid "cluster groups" msgstr "clustergroepen" -#: netbox/virtualization/models/clusters.py:121 +#: virtualization/models/clusters.py:121 msgid "cluster" msgstr "cluster" -#: netbox/virtualization/models/clusters.py:122 +#: virtualization/models/clusters.py:122 msgid "clusters" msgstr "clusters" -#: netbox/virtualization/models/clusters.py:141 +#: virtualization/models/clusters.py:141 #, python-brace-format msgid "" "{count} devices are assigned as hosts for this cluster but are not in site " @@ -15532,32 +14787,32 @@ msgstr "" "{count} apparaten zijn toegewezen als hosts voor dit cluster, maar bevinden " "zich niet op de locatie {site}" -#: netbox/virtualization/models/virtualmachines.py:123 +#: virtualization/models/virtualmachines.py:123 msgid "memory (MB)" msgstr "geheugen (MB)" -#: netbox/virtualization/models/virtualmachines.py:128 +#: virtualization/models/virtualmachines.py:128 msgid "disk (MB)" msgstr "schijf (MB)" -#: netbox/virtualization/models/virtualmachines.py:166 +#: virtualization/models/virtualmachines.py:166 msgid "Virtual machine name must be unique per cluster." msgstr "De naam van de virtuele machine moet per cluster uniek zijn." -#: netbox/virtualization/models/virtualmachines.py:169 +#: virtualization/models/virtualmachines.py:169 msgid "virtual machine" msgstr "virtuele machine" -#: netbox/virtualization/models/virtualmachines.py:170 +#: virtualization/models/virtualmachines.py:170 msgid "virtual machines" msgstr "virtuele machines" -#: netbox/virtualization/models/virtualmachines.py:184 +#: virtualization/models/virtualmachines.py:184 msgid "A virtual machine must be assigned to a site and/or cluster." msgstr "" "Een virtuele machine moet worden toegewezen aan een site en/of cluster." -#: netbox/virtualization/models/virtualmachines.py:191 +#: virtualization/models/virtualmachines.py:191 #, python-brace-format msgid "" "The selected cluster ({cluster}) is not assigned to this site ({site})." @@ -15565,11 +14820,11 @@ msgstr "" "Het geselecteerde cluster ({cluster}) is niet toegewezen aan deze site " "({site})." -#: netbox/virtualization/models/virtualmachines.py:198 +#: virtualization/models/virtualmachines.py:198 msgid "Must specify a cluster when assigning a host device." msgstr "Moet een cluster specificeren bij het toewijzen van een hostapparaat." -#: netbox/virtualization/models/virtualmachines.py:203 +#: virtualization/models/virtualmachines.py:203 #, python-brace-format msgid "" "The selected device ({device}) is not assigned to this cluster ({cluster})." @@ -15577,7 +14832,7 @@ msgstr "" "Het geselecteerde apparaat ({device}) is niet toegewezen aan dit cluster " "({cluster})." -#: netbox/virtualization/models/virtualmachines.py:215 +#: virtualization/models/virtualmachines.py:215 #, python-brace-format msgid "" "The specified disk size ({size}) must match the aggregate size of assigned " @@ -15586,17 +14841,17 @@ msgstr "" "De opgegeven schijfgrootte ({size}) moet overeenkomen met de totale grootte " "van toegewezen virtuele schijven ({total_size})." -#: netbox/virtualization/models/virtualmachines.py:229 +#: virtualization/models/virtualmachines.py:229 #, python-brace-format msgid "Must be an IPv{family} address. ({ip} is an IPv{version} address.)" msgstr "Moet een IPv zijn{family} adres. ({ip} is een IPv{version} adres.)" -#: netbox/virtualization/models/virtualmachines.py:238 +#: virtualization/models/virtualmachines.py:238 #, python-brace-format msgid "The specified IP address ({ip}) is not assigned to this VM." msgstr "Het opgegeven IP-adres ({ip}) is niet toegewezen aan deze VM." -#: netbox/virtualization/models/virtualmachines.py:396 +#: virtualization/models/virtualmachines.py:396 #, python-brace-format msgid "" "The selected parent interface ({parent}) belongs to a different virtual " @@ -15605,7 +14860,7 @@ msgstr "" "De geselecteerde ouderinterface ({parent}) behoort tot een andere virtuele " "machine ({virtual_machine})." -#: netbox/virtualization/models/virtualmachines.py:411 +#: virtualization/models/virtualmachines.py:411 #, python-brace-format msgid "" "The selected bridge interface ({bridge}) belongs to a different virtual " @@ -15614,7 +14869,7 @@ msgstr "" "De geselecteerde bridge-interface ({bridge}) behoort tot een andere virtuele" " machine ({virtual_machine})." -#: netbox/virtualization/models/virtualmachines.py:422 +#: virtualization/models/virtualmachines.py:422 #, python-brace-format msgid "" "The untagged VLAN ({untagged_vlan}) must belong to the same site as the " @@ -15623,402 +14878,395 @@ msgstr "" "Het VLAN zonder label ({untagged_vlan}) moet tot dezelfde site behoren als " "de bovenliggende virtuele machine van de interface, of moet globaal zijn." -#: netbox/virtualization/models/virtualmachines.py:434 +#: virtualization/models/virtualmachines.py:434 msgid "size (MB)" msgstr "grootte (MB)" -#: netbox/virtualization/models/virtualmachines.py:438 +#: virtualization/models/virtualmachines.py:438 msgid "virtual disk" msgstr "virtuele schijf" -#: netbox/virtualization/models/virtualmachines.py:439 +#: virtualization/models/virtualmachines.py:439 msgid "virtual disks" msgstr "virtuele schijven" -#: netbox/virtualization/views.py:275 +#: virtualization/views.py:275 #, python-brace-format msgid "Added {count} devices to cluster {cluster}" msgstr "Toegevoegd {count} apparaten om te clusteren {cluster}" -#: netbox/virtualization/views.py:310 +#: virtualization/views.py:310 #, python-brace-format msgid "Removed {count} devices from cluster {cluster}" msgstr "Verwijderd {count} apparaten uit het cluster {cluster}" -#: netbox/vpn/choices.py:31 +#: vpn/choices.py:31 msgid "IPsec - Transport" msgstr "IPsec - Vervoer" -#: netbox/vpn/choices.py:32 +#: vpn/choices.py:32 msgid "IPsec - Tunnel" msgstr "IPsec - Tunnel" -#: netbox/vpn/choices.py:33 +#: vpn/choices.py:33 msgid "IP-in-IP" msgstr "IP-in-IP" -#: netbox/vpn/choices.py:34 +#: vpn/choices.py:34 msgid "GRE" msgstr "GRE" -#: netbox/vpn/choices.py:56 +#: vpn/choices.py:56 msgid "Hub" msgstr "Hub" -#: netbox/vpn/choices.py:57 +#: vpn/choices.py:57 msgid "Spoke" msgstr "Spoke" -#: netbox/vpn/choices.py:80 +#: vpn/choices.py:80 msgid "Aggressive" msgstr "Agressive" -#: netbox/vpn/choices.py:81 +#: vpn/choices.py:81 msgid "Main" msgstr "Main" -#: netbox/vpn/choices.py:92 +#: vpn/choices.py:92 msgid "Pre-shared keys" msgstr "Vooraf gedeelde sleutels" -#: netbox/vpn/choices.py:93 +#: vpn/choices.py:93 msgid "Certificates" msgstr "Certificaten" -#: netbox/vpn/choices.py:94 +#: vpn/choices.py:94 msgid "RSA signatures" msgstr "RSA-handtekeningen" -#: netbox/vpn/choices.py:95 +#: vpn/choices.py:95 msgid "DSA signatures" msgstr "DSA-handtekeningen" -#: netbox/vpn/choices.py:178 netbox/vpn/choices.py:179 -#: netbox/vpn/choices.py:180 netbox/vpn/choices.py:181 -#: netbox/vpn/choices.py:182 netbox/vpn/choices.py:183 -#: netbox/vpn/choices.py:184 netbox/vpn/choices.py:185 -#: netbox/vpn/choices.py:186 netbox/vpn/choices.py:187 -#: netbox/vpn/choices.py:188 netbox/vpn/choices.py:189 -#: netbox/vpn/choices.py:190 netbox/vpn/choices.py:191 -#: netbox/vpn/choices.py:192 netbox/vpn/choices.py:193 -#: netbox/vpn/choices.py:194 netbox/vpn/choices.py:195 -#: netbox/vpn/choices.py:196 netbox/vpn/choices.py:197 -#: netbox/vpn/choices.py:198 netbox/vpn/choices.py:199 -#: netbox/vpn/choices.py:200 netbox/vpn/choices.py:201 +#: vpn/choices.py:178 vpn/choices.py:179 vpn/choices.py:180 vpn/choices.py:181 +#: vpn/choices.py:182 vpn/choices.py:183 vpn/choices.py:184 vpn/choices.py:185 +#: vpn/choices.py:186 vpn/choices.py:187 vpn/choices.py:188 vpn/choices.py:189 +#: vpn/choices.py:190 vpn/choices.py:191 vpn/choices.py:192 vpn/choices.py:193 +#: vpn/choices.py:194 vpn/choices.py:195 vpn/choices.py:196 vpn/choices.py:197 +#: vpn/choices.py:198 vpn/choices.py:199 vpn/choices.py:200 vpn/choices.py:201 #, python-brace-format msgid "Group {n}" msgstr "groep {n}" -#: netbox/vpn/choices.py:243 +#: vpn/choices.py:243 msgid "Ethernet Private LAN" msgstr "Ethernet, privé-LAN" -#: netbox/vpn/choices.py:244 +#: vpn/choices.py:244 msgid "Ethernet Virtual Private LAN" msgstr "Virtueel privé-LAN via Ethernet" -#: netbox/vpn/choices.py:247 +#: vpn/choices.py:247 msgid "Ethernet Private Tree" msgstr "Ethernet Private Tree" -#: netbox/vpn/choices.py:248 +#: vpn/choices.py:248 msgid "Ethernet Virtual Private Tree" msgstr "Virtuele privéstructuur van Ethernet" -#: netbox/vpn/filtersets.py:41 +#: vpn/filtersets.py:41 msgid "Tunnel group (ID)" msgstr "Tunnelgroep (ID)" -#: netbox/vpn/filtersets.py:47 +#: vpn/filtersets.py:47 msgid "Tunnel group (slug)" msgstr "Tunnelgroep (slug)" -#: netbox/vpn/filtersets.py:54 +#: vpn/filtersets.py:54 msgid "IPSec profile (ID)" msgstr "IPsec-profiel (ID)" -#: netbox/vpn/filtersets.py:60 +#: vpn/filtersets.py:60 msgid "IPSec profile (name)" msgstr "IPsec-profiel (naam)" -#: netbox/vpn/filtersets.py:81 +#: vpn/filtersets.py:81 msgid "Tunnel (ID)" msgstr "Tunnel (ID)" -#: netbox/vpn/filtersets.py:87 +#: vpn/filtersets.py:87 msgid "Tunnel (name)" msgstr "Tunnel (naam)" -#: netbox/vpn/filtersets.py:118 +#: vpn/filtersets.py:118 msgid "Outside IP (ID)" msgstr "Buiten IP (ID)" -#: netbox/vpn/filtersets.py:130 netbox/vpn/filtersets.py:263 +#: vpn/filtersets.py:130 vpn/filtersets.py:263 msgid "IKE policy (ID)" msgstr "IKE-beleid (ID)" -#: netbox/vpn/filtersets.py:136 netbox/vpn/filtersets.py:269 +#: vpn/filtersets.py:136 vpn/filtersets.py:269 msgid "IKE policy (name)" msgstr "IKE-beleid (naam)" -#: netbox/vpn/filtersets.py:200 netbox/vpn/filtersets.py:273 +#: vpn/filtersets.py:200 vpn/filtersets.py:273 msgid "IPSec policy (ID)" msgstr "IPsec-beleid (ID)" -#: netbox/vpn/filtersets.py:206 netbox/vpn/filtersets.py:279 +#: vpn/filtersets.py:206 vpn/filtersets.py:279 msgid "IPSec policy (name)" msgstr "IPsec-beleid (naam)" -#: netbox/vpn/filtersets.py:348 +#: vpn/filtersets.py:348 msgid "L2VPN (slug)" msgstr "L2VPN (slug)" -#: netbox/vpn/filtersets.py:412 +#: vpn/filtersets.py:412 msgid "VM Interface (ID)" msgstr "VM-interface (ID)" -#: netbox/vpn/filtersets.py:418 +#: vpn/filtersets.py:418 msgid "VLAN (name)" msgstr "VLAN (naam)" -#: netbox/vpn/forms/bulk_edit.py:45 netbox/vpn/forms/bulk_import.py:42 -#: netbox/vpn/forms/filtersets.py:54 +#: vpn/forms/bulk_edit.py:45 vpn/forms/bulk_import.py:42 +#: vpn/forms/filtersets.py:54 msgid "Tunnel group" msgstr "Tunnelgroep" -#: netbox/vpn/forms/bulk_edit.py:117 netbox/vpn/models/crypto.py:47 +#: vpn/forms/bulk_edit.py:117 vpn/models/crypto.py:47 msgid "SA lifetime" msgstr "Een leven lang" -#: netbox/vpn/forms/bulk_edit.py:151 netbox/wireless/forms/bulk_edit.py:79 -#: netbox/wireless/forms/bulk_edit.py:126 -#: netbox/wireless/forms/filtersets.py:64 -#: netbox/wireless/forms/filtersets.py:98 +#: vpn/forms/bulk_edit.py:151 wireless/forms/bulk_edit.py:79 +#: wireless/forms/bulk_edit.py:126 wireless/forms/filtersets.py:64 +#: wireless/forms/filtersets.py:98 msgid "Pre-shared key" msgstr "Vooraf gedeelde sleutel" -#: netbox/vpn/forms/bulk_edit.py:237 netbox/vpn/forms/bulk_import.py:239 -#: netbox/vpn/forms/filtersets.py:199 netbox/vpn/forms/model_forms.py:370 -#: netbox/vpn/models/crypto.py:104 +#: vpn/forms/bulk_edit.py:237 vpn/forms/bulk_import.py:239 +#: vpn/forms/filtersets.py:199 vpn/forms/model_forms.py:370 +#: vpn/models/crypto.py:104 msgid "IKE policy" msgstr "IKE-beleid" -#: netbox/vpn/forms/bulk_edit.py:242 netbox/vpn/forms/bulk_import.py:244 -#: netbox/vpn/forms/filtersets.py:204 netbox/vpn/forms/model_forms.py:374 -#: netbox/vpn/models/crypto.py:209 +#: vpn/forms/bulk_edit.py:242 vpn/forms/bulk_import.py:244 +#: vpn/forms/filtersets.py:204 vpn/forms/model_forms.py:374 +#: vpn/models/crypto.py:209 msgid "IPSec policy" msgstr "IPsec-beleid" -#: netbox/vpn/forms/bulk_import.py:50 +#: vpn/forms/bulk_import.py:50 msgid "Tunnel encapsulation" msgstr "Inkapseling van tunnels" -#: netbox/vpn/forms/bulk_import.py:83 +#: vpn/forms/bulk_import.py:83 msgid "Operational role" msgstr "Operationele rol" -#: netbox/vpn/forms/bulk_import.py:90 +#: vpn/forms/bulk_import.py:90 msgid "Parent device of assigned interface" msgstr "Ouderapparaat met toegewezen interface" -#: netbox/vpn/forms/bulk_import.py:97 +#: vpn/forms/bulk_import.py:97 msgid "Parent VM of assigned interface" msgstr "Bovenliggende VM van de toegewezen interface" -#: netbox/vpn/forms/bulk_import.py:104 +#: vpn/forms/bulk_import.py:104 msgid "Device or virtual machine interface" msgstr "Interface voor apparaat of virtuele machine" -#: netbox/vpn/forms/bulk_import.py:183 +#: vpn/forms/bulk_import.py:183 msgid "IKE proposal(s)" msgstr "IKE-voorstel (en)" -#: netbox/vpn/forms/bulk_import.py:215 netbox/vpn/models/crypto.py:197 +#: vpn/forms/bulk_import.py:215 vpn/models/crypto.py:197 msgid "Diffie-Hellman group for Perfect Forward Secrecy" msgstr "Diffie-Hellman-groep voor Perfect Forward Secrecy" -#: netbox/vpn/forms/bulk_import.py:222 +#: vpn/forms/bulk_import.py:222 msgid "IPSec proposal(s)" msgstr "IPsec-voorstel (en)" -#: netbox/vpn/forms/bulk_import.py:236 +#: vpn/forms/bulk_import.py:236 msgid "IPSec protocol" msgstr "IPsec-protocol" -#: netbox/vpn/forms/bulk_import.py:266 +#: vpn/forms/bulk_import.py:266 msgid "L2VPN type" msgstr "L2VPN-type" -#: netbox/vpn/forms/bulk_import.py:287 +#: vpn/forms/bulk_import.py:287 msgid "Parent device (for interface)" msgstr "Ouderapparaat (voor interface)" -#: netbox/vpn/forms/bulk_import.py:294 +#: vpn/forms/bulk_import.py:294 msgid "Parent virtual machine (for interface)" msgstr "Virtuele bovenliggende machine (voor interface)" -#: netbox/vpn/forms/bulk_import.py:301 +#: vpn/forms/bulk_import.py:301 msgid "Assigned interface (device or VM)" msgstr "Toegewezen interface (apparaat of VM)" -#: netbox/vpn/forms/bulk_import.py:334 +#: vpn/forms/bulk_import.py:334 msgid "Cannot import device and VM interface terminations simultaneously." msgstr "" "Kan apparaat- en VM-interface-afsluitingen niet tegelijkertijd importeren." -#: netbox/vpn/forms/bulk_import.py:336 +#: vpn/forms/bulk_import.py:336 msgid "Each termination must specify either an interface or a VLAN." msgstr "Elke beëindiging moet een interface of een VLAN specificeren." -#: netbox/vpn/forms/bulk_import.py:338 +#: vpn/forms/bulk_import.py:338 msgid "Cannot assign both an interface and a VLAN." msgstr "Kan niet zowel een interface als een VLAN toewijzen." -#: netbox/vpn/forms/filtersets.py:130 +#: vpn/forms/filtersets.py:130 msgid "IKE version" msgstr "IKE-versie" -#: netbox/vpn/forms/filtersets.py:142 netbox/vpn/forms/filtersets.py:175 -#: netbox/vpn/forms/model_forms.py:298 netbox/vpn/forms/model_forms.py:334 +#: vpn/forms/filtersets.py:142 vpn/forms/filtersets.py:175 +#: vpn/forms/model_forms.py:298 vpn/forms/model_forms.py:334 msgid "Proposal" msgstr "Voorstel" -#: netbox/vpn/forms/filtersets.py:251 +#: vpn/forms/filtersets.py:251 msgid "Assigned Object Type" msgstr "Toegewezen objecttype" -#: netbox/vpn/forms/model_forms.py:95 netbox/vpn/forms/model_forms.py:130 -#: netbox/vpn/forms/model_forms.py:240 netbox/vpn/tables/tunnels.py:91 +#: vpn/forms/model_forms.py:95 vpn/forms/model_forms.py:130 +#: vpn/forms/model_forms.py:240 vpn/tables/tunnels.py:91 msgid "Tunnel interface" msgstr "Tunnelinterface" -#: netbox/vpn/forms/model_forms.py:150 +#: vpn/forms/model_forms.py:150 msgid "First Termination" msgstr "Eerste beëindiging" -#: netbox/vpn/forms/model_forms.py:153 +#: vpn/forms/model_forms.py:153 msgid "Second Termination" msgstr "Tweede beëindiging" -#: netbox/vpn/forms/model_forms.py:197 +#: vpn/forms/model_forms.py:197 msgid "This parameter is required when defining a termination." msgstr "Deze parameter is vereist voor het definiëren van een beëindiging." -#: netbox/vpn/forms/model_forms.py:320 netbox/vpn/forms/model_forms.py:356 +#: vpn/forms/model_forms.py:320 vpn/forms/model_forms.py:356 msgid "Policy" msgstr "Beleid" -#: netbox/vpn/forms/model_forms.py:487 +#: vpn/forms/model_forms.py:487 msgid "A termination must specify an interface or VLAN." msgstr "Een beëindiging moet een interface of VLAN specificeren." -#: netbox/vpn/forms/model_forms.py:489 +#: vpn/forms/model_forms.py:489 msgid "" "A termination can only have one terminating object (an interface or VLAN)." msgstr "" "Een beëindiging kan slechts één afsluitend object hebben (een interface of " "VLAN)." -#: netbox/vpn/models/crypto.py:33 +#: vpn/models/crypto.py:33 msgid "encryption algorithm" msgstr "coderingsalgoritme" -#: netbox/vpn/models/crypto.py:37 +#: vpn/models/crypto.py:37 msgid "authentication algorithm" msgstr "authenticatie-algoritme" -#: netbox/vpn/models/crypto.py:44 +#: vpn/models/crypto.py:44 msgid "Diffie-Hellman group ID" msgstr "Diffie-Hellman groeps-ID" -#: netbox/vpn/models/crypto.py:50 +#: vpn/models/crypto.py:50 msgid "Security association lifetime (in seconds)" msgstr "Levensduur van de beveiligingsvereniging (in seconden)" -#: netbox/vpn/models/crypto.py:59 +#: vpn/models/crypto.py:59 msgid "IKE proposal" msgstr "IKE-voorstel" -#: netbox/vpn/models/crypto.py:60 +#: vpn/models/crypto.py:60 msgid "IKE proposals" msgstr "IKE-voorstellen" -#: netbox/vpn/models/crypto.py:76 +#: vpn/models/crypto.py:76 msgid "version" msgstr "versie" -#: netbox/vpn/models/crypto.py:88 netbox/vpn/models/crypto.py:190 +#: vpn/models/crypto.py:88 vpn/models/crypto.py:190 msgid "proposals" msgstr "voorstellen" -#: netbox/vpn/models/crypto.py:91 netbox/wireless/models.py:39 +#: vpn/models/crypto.py:91 wireless/models.py:39 msgid "pre-shared key" msgstr "vooraf gedeelde sleutel" -#: netbox/vpn/models/crypto.py:105 +#: vpn/models/crypto.py:105 msgid "IKE policies" msgstr "IKE-beleid" -#: netbox/vpn/models/crypto.py:118 +#: vpn/models/crypto.py:118 msgid "Mode is required for selected IKE version" msgstr "Modus is vereist voor de geselecteerde IKE-versie" -#: netbox/vpn/models/crypto.py:122 +#: vpn/models/crypto.py:122 msgid "Mode cannot be used for selected IKE version" msgstr "De modus kan niet worden gebruikt voor de geselecteerde IKE-versie" -#: netbox/vpn/models/crypto.py:136 +#: vpn/models/crypto.py:136 msgid "encryption" msgstr "encryptie" -#: netbox/vpn/models/crypto.py:141 +#: vpn/models/crypto.py:141 msgid "authentication" msgstr "authenticatie" -#: netbox/vpn/models/crypto.py:149 +#: vpn/models/crypto.py:149 msgid "Security association lifetime (seconds)" msgstr "Levensduur van de beveiligingsvereniging (seconden)" -#: netbox/vpn/models/crypto.py:155 +#: vpn/models/crypto.py:155 msgid "Security association lifetime (in kilobytes)" msgstr "Levensduur van de veiligheidsorganisatie (in kilobytes)" -#: netbox/vpn/models/crypto.py:164 +#: vpn/models/crypto.py:164 msgid "IPSec proposal" msgstr "IPsec-voorstel" -#: netbox/vpn/models/crypto.py:165 +#: vpn/models/crypto.py:165 msgid "IPSec proposals" msgstr "IPsec-voorstellen" -#: netbox/vpn/models/crypto.py:178 +#: vpn/models/crypto.py:178 msgid "Encryption and/or authentication algorithm must be defined" msgstr "" "Het algoritme voor versleuteling en/of authenticatie moet worden " "gedefinieerd" -#: netbox/vpn/models/crypto.py:210 +#: vpn/models/crypto.py:210 msgid "IPSec policies" msgstr "IPsec-beleid" -#: netbox/vpn/models/crypto.py:251 +#: vpn/models/crypto.py:251 msgid "IPSec profiles" msgstr "IPsec-profielen" -#: netbox/vpn/models/l2vpn.py:116 +#: vpn/models/l2vpn.py:116 msgid "L2VPN termination" msgstr "L2VPN-beëindiging" -#: netbox/vpn/models/l2vpn.py:117 +#: vpn/models/l2vpn.py:117 msgid "L2VPN terminations" msgstr "L2VPN-beëindigingen" -#: netbox/vpn/models/l2vpn.py:135 +#: vpn/models/l2vpn.py:135 #, python-brace-format msgid "L2VPN Termination already assigned ({assigned_object})" msgstr "L2VPN Beëindiging is al toegewezen ({assigned_object})" -#: netbox/vpn/models/l2vpn.py:147 +#: vpn/models/l2vpn.py:147 #, python-brace-format msgid "" "{l2vpn_type} L2VPNs cannot have more than two terminations; found " @@ -16027,195 +15275,187 @@ msgstr "" "{l2vpn_type} L2VPN's kunnen niet meer dan twee beëindigingen hebben; " "gevonden {terminations_count} reeds gedefinieerd." -#: netbox/vpn/models/tunnels.py:26 +#: vpn/models/tunnels.py:26 msgid "tunnel group" msgstr "tunnelgroep" -#: netbox/vpn/models/tunnels.py:27 +#: vpn/models/tunnels.py:27 msgid "tunnel groups" msgstr "tunnelgroepen" -#: netbox/vpn/models/tunnels.py:53 +#: vpn/models/tunnels.py:53 msgid "encapsulation" msgstr "inkapseling" -#: netbox/vpn/models/tunnels.py:72 +#: vpn/models/tunnels.py:72 msgid "tunnel ID" msgstr "tunnel-ID" -#: netbox/vpn/models/tunnels.py:94 +#: vpn/models/tunnels.py:94 msgid "tunnel" msgstr "tunnel" -#: netbox/vpn/models/tunnels.py:95 +#: vpn/models/tunnels.py:95 msgid "tunnels" msgstr "tunnels" -#: netbox/vpn/models/tunnels.py:153 +#: vpn/models/tunnels.py:153 msgid "An object may be terminated to only one tunnel at a time." msgstr "Een object mag slechts in één tunnel tegelijk worden afgesloten." -#: netbox/vpn/models/tunnels.py:156 +#: vpn/models/tunnels.py:156 msgid "tunnel termination" msgstr "beëindiging van de tunnel" -#: netbox/vpn/models/tunnels.py:157 +#: vpn/models/tunnels.py:157 msgid "tunnel terminations" msgstr "tunnelafsluitingen" -#: netbox/vpn/models/tunnels.py:174 +#: vpn/models/tunnels.py:174 #, python-brace-format msgid "{name} is already attached to a tunnel ({tunnel})." msgstr "{name} is al bevestigd aan een tunnel ({tunnel})." -#: netbox/vpn/tables/crypto.py:22 +#: vpn/tables/crypto.py:22 msgid "Authentication Method" msgstr "Authenticatiemethode" -#: netbox/vpn/tables/crypto.py:25 netbox/vpn/tables/crypto.py:97 +#: vpn/tables/crypto.py:25 vpn/tables/crypto.py:97 msgid "Encryption Algorithm" msgstr "Encryptie-algoritme" -#: netbox/vpn/tables/crypto.py:28 netbox/vpn/tables/crypto.py:100 +#: vpn/tables/crypto.py:28 vpn/tables/crypto.py:100 msgid "Authentication Algorithm" msgstr "Authenticatie-algoritme" -#: netbox/vpn/tables/crypto.py:34 +#: vpn/tables/crypto.py:34 msgid "SA Lifetime" msgstr "Een leven lang" -#: netbox/vpn/tables/crypto.py:71 +#: vpn/tables/crypto.py:71 msgid "Pre-shared Key" msgstr "Vooraf gedeelde sleutel" -#: netbox/vpn/tables/crypto.py:103 +#: vpn/tables/crypto.py:103 msgid "SA Lifetime (Seconds)" msgstr "Een leven lang (seconden)" -#: netbox/vpn/tables/crypto.py:106 +#: vpn/tables/crypto.py:106 msgid "SA Lifetime (KB)" msgstr "SA-levensduur (KB)" -#: netbox/vpn/tables/l2vpn.py:69 +#: vpn/tables/l2vpn.py:69 msgid "Object Parent" msgstr "Voorwerp: ouder" -#: netbox/vpn/tables/l2vpn.py:74 +#: vpn/tables/l2vpn.py:74 msgid "Object Site" msgstr "Site van het object" -#: netbox/wireless/choices.py:11 +#: wireless/choices.py:11 msgid "Access point" msgstr "Toegangspunt" -#: netbox/wireless/choices.py:12 +#: wireless/choices.py:12 msgid "Station" msgstr "Station" -#: netbox/wireless/choices.py:467 +#: wireless/choices.py:467 msgid "Open" msgstr "Open" -#: netbox/wireless/choices.py:469 +#: wireless/choices.py:469 msgid "WPA Personal (PSK)" msgstr "WPA Personal (PSK)" -#: netbox/wireless/choices.py:470 +#: wireless/choices.py:470 msgid "WPA Enterprise" msgstr "WPA Enterprise" -#: netbox/wireless/forms/bulk_edit.py:73 -#: netbox/wireless/forms/bulk_edit.py:120 -#: netbox/wireless/forms/bulk_import.py:68 -#: netbox/wireless/forms/bulk_import.py:71 -#: netbox/wireless/forms/bulk_import.py:110 -#: netbox/wireless/forms/bulk_import.py:113 -#: netbox/wireless/forms/filtersets.py:59 -#: netbox/wireless/forms/filtersets.py:93 +#: wireless/forms/bulk_edit.py:73 wireless/forms/bulk_edit.py:120 +#: wireless/forms/bulk_import.py:68 wireless/forms/bulk_import.py:71 +#: wireless/forms/bulk_import.py:110 wireless/forms/bulk_import.py:113 +#: wireless/forms/filtersets.py:59 wireless/forms/filtersets.py:93 msgid "Authentication cipher" msgstr "Authenticatiecijfer" -#: netbox/wireless/forms/bulk_edit.py:134 -#: netbox/wireless/forms/bulk_import.py:116 -#: netbox/wireless/forms/bulk_import.py:119 -#: netbox/wireless/forms/filtersets.py:106 +#: wireless/forms/bulk_edit.py:134 wireless/forms/bulk_import.py:116 +#: wireless/forms/bulk_import.py:119 wireless/forms/filtersets.py:106 msgid "Distance unit" msgstr "Afstandseenheid" -#: netbox/wireless/forms/bulk_import.py:52 +#: wireless/forms/bulk_import.py:52 msgid "Bridged VLAN" msgstr "Overbrugd VLAN" -#: netbox/wireless/forms/bulk_import.py:89 -#: netbox/wireless/tables/wirelesslink.py:28 +#: wireless/forms/bulk_import.py:89 wireless/tables/wirelesslink.py:28 msgid "Interface A" msgstr "Interface A" -#: netbox/wireless/forms/bulk_import.py:93 -#: netbox/wireless/tables/wirelesslink.py:37 +#: wireless/forms/bulk_import.py:93 wireless/tables/wirelesslink.py:37 msgid "Interface B" msgstr "Interface B" -#: netbox/wireless/forms/model_forms.py:161 +#: wireless/forms/model_forms.py:161 msgid "Side B" msgstr "Kant B" -#: netbox/wireless/models.py:31 +#: wireless/models.py:31 msgid "authentication cipher" msgstr "authenticatiecijfer" -#: netbox/wireless/models.py:69 +#: wireless/models.py:69 msgid "wireless LAN group" msgstr "draadloze LAN-groep" -#: netbox/wireless/models.py:70 +#: wireless/models.py:70 msgid "wireless LAN groups" msgstr "draadloze LAN-groepen" -#: netbox/wireless/models.py:116 +#: wireless/models.py:116 msgid "wireless LAN" msgstr "draadloos LAN" -#: netbox/wireless/models.py:144 +#: wireless/models.py:144 msgid "interface A" msgstr "interface A" -#: netbox/wireless/models.py:151 +#: wireless/models.py:151 msgid "interface B" msgstr "interface B" -#: netbox/wireless/models.py:165 +#: wireless/models.py:165 msgid "distance" msgstr "afstand" -#: netbox/wireless/models.py:172 +#: wireless/models.py:172 msgid "distance unit" msgstr "afstandseenheid" -#: netbox/wireless/models.py:219 +#: wireless/models.py:219 msgid "wireless link" msgstr "draadloze link" -#: netbox/wireless/models.py:220 +#: wireless/models.py:220 msgid "wireless links" msgstr "draadloze verbindingen" -#: netbox/wireless/models.py:236 +#: wireless/models.py:236 msgid "Must specify a unit when setting a wireless distance" msgstr "" "Moet een eenheid specificeren bij het instellen van een draadloze afstand" -#: netbox/wireless/models.py:242 netbox/wireless/models.py:248 +#: wireless/models.py:242 wireless/models.py:248 #, python-brace-format msgid "{type} is not a wireless interface." msgstr "{type} is geen draadloze interface." -#: netbox/wireless/utils.py:16 +#: wireless/utils.py:16 #, python-brace-format msgid "Invalid channel value: {channel}" msgstr "Ongeldige kanaalwaarde: {channel}" -#: netbox/wireless/utils.py:26 +#: wireless/utils.py:26 #, python-brace-format msgid "Invalid channel attribute: {name}" msgstr "Ongeldig kanaalkenmerk: {name}" diff --git a/netbox/translations/pl/LC_MESSAGES/django.po b/netbox/translations/pl/LC_MESSAGES/django.po index c8ede3aca..50a8f6f40 100644 --- a/netbox/translations/pl/LC_MESSAGES/django.po +++ b/netbox/translations/pl/LC_MESSAGES/django.po @@ -6,17 +6,17 @@ # Translators: # Jeff Gehlbach, 2024 # Simplicity sp. z o.o., 2024 -# Grzegorz Szymaszek, 2024 # Jeremy Stretch, 2024 +# Grzegorz Szymaszek, 2024 # #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-12 05:02+0000\n" +"POT-Creation-Date: 2024-10-28 19:20+0000\n" "PO-Revision-Date: 2023-10-30 17:48+0000\n" -"Last-Translator: Jeremy Stretch, 2024\n" +"Last-Translator: Grzegorz Szymaszek, 2024\n" "Language-Team: Polish (https://app.transifex.com/netbox-community/teams/178115/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -24,3423 +24,3092 @@ msgstr "" "Language: pl\n" "Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" -#: netbox/account/tables.py:27 netbox/templates/account/token.html:22 -#: netbox/templates/users/token.html:17 netbox/users/forms/bulk_import.py:39 -#: netbox/users/forms/model_forms.py:112 +#: account/tables.py:27 templates/account/token.html:22 +#: templates/users/token.html:17 users/forms/bulk_import.py:39 +#: users/forms/model_forms.py:112 msgid "Key" msgstr "Klucz" -#: netbox/account/tables.py:31 netbox/users/forms/filtersets.py:132 +#: account/tables.py:31 users/forms/filtersets.py:132 msgid "Write Enabled" msgstr "Zapis włączony" -#: netbox/account/tables.py:35 netbox/core/choices.py:86 -#: netbox/core/tables/jobs.py:29 netbox/core/tables/tasks.py:79 -#: netbox/extras/tables/tables.py:335 netbox/extras/tables/tables.py:566 -#: netbox/templates/account/token.html:43 -#: netbox/templates/core/configrevision.html:26 -#: netbox/templates/core/configrevision_restore.html:12 -#: netbox/templates/core/job.html:69 netbox/templates/core/rq_task.html:16 -#: netbox/templates/core/rq_task.html:73 -#: netbox/templates/core/rq_worker.html:14 -#: netbox/templates/extras/htmx/script_result.html:12 -#: netbox/templates/extras/journalentry.html:22 -#: netbox/templates/generic/object.html:58 -#: netbox/templates/users/token.html:35 +#: account/tables.py:35 core/choices.py:86 core/tables/jobs.py:29 +#: core/tables/tasks.py:79 extras/tables/tables.py:335 +#: extras/tables/tables.py:566 templates/account/token.html:43 +#: templates/core/configrevision.html:26 +#: templates/core/configrevision_restore.html:12 templates/core/job.html:69 +#: templates/core/rq_task.html:16 templates/core/rq_task.html:73 +#: templates/core/rq_worker.html:14 +#: templates/extras/htmx/script_result.html:12 +#: templates/extras/journalentry.html:22 templates/generic/object.html:58 +#: templates/users/token.html:35 msgid "Created" msgstr "Utworzony" -#: netbox/account/tables.py:39 netbox/templates/account/token.html:47 -#: netbox/templates/users/token.html:39 netbox/users/forms/bulk_edit.py:117 -#: netbox/users/forms/filtersets.py:136 +#: account/tables.py:39 templates/account/token.html:47 +#: templates/users/token.html:39 users/forms/bulk_edit.py:117 +#: users/forms/filtersets.py:136 msgid "Expires" msgstr "Wygasa" -#: netbox/account/tables.py:42 netbox/users/forms/filtersets.py:141 +#: account/tables.py:42 users/forms/filtersets.py:141 msgid "Last Used" msgstr "Ostatnio używane" -#: netbox/account/tables.py:45 netbox/templates/account/token.html:55 -#: netbox/templates/users/token.html:47 netbox/users/forms/bulk_edit.py:122 -#: netbox/users/forms/model_forms.py:124 +#: account/tables.py:45 templates/account/token.html:55 +#: templates/users/token.html:47 users/forms/bulk_edit.py:122 +#: users/forms/model_forms.py:124 msgid "Allowed IPs" msgstr "Dozwolone adresy IP" -#: netbox/account/views.py:114 +#: account/views.py:114 #, python-brace-format msgid "Logged in as {user}." msgstr "Zaloguj się jako {user}." -#: netbox/account/views.py:164 +#: account/views.py:164 msgid "You have logged out." msgstr "Wylogowałeś się." -#: netbox/account/views.py:216 +#: account/views.py:216 msgid "Your preferences have been updated." msgstr "Twoje preferencje zostały zaktualizowane." -#: netbox/account/views.py:239 +#: account/views.py:239 msgid "LDAP-authenticated user credentials cannot be changed within NetBox." msgstr "" "Poświadczenia użytkownika uwierzytelnionego LDAP nie mogą być zmieniane w " "NetBox." -#: netbox/account/views.py:254 +#: account/views.py:254 msgid "Your password has been changed successfully." 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:185 -#: netbox/dcim/choices.py:237 netbox/dcim/choices.py:1530 -#: netbox/dcim/choices.py:1606 netbox/dcim/choices.py:1656 -#: netbox/virtualization/choices.py:20 netbox/virtualization/choices.py:45 -#: netbox/vpn/choices.py:18 +#: circuits/choices.py:21 dcim/choices.py:20 dcim/choices.py:102 +#: dcim/choices.py:185 dcim/choices.py:237 dcim/choices.py:1530 +#: dcim/choices.py:1606 dcim/choices.py:1656 virtualization/choices.py:20 +#: virtualization/choices.py:45 vpn/choices.py:18 msgid "Planned" msgstr "Planowane" -#: netbox/circuits/choices.py:22 netbox/netbox/navigation/menu.py:305 +#: circuits/choices.py:22 netbox/navigation/menu.py:305 msgid "Provisioning" msgstr "Zaopatrzenie" -#: netbox/circuits/choices.py:23 netbox/core/tables/tasks.py:22 -#: netbox/dcim/choices.py:22 netbox/dcim/choices.py:103 -#: netbox/dcim/choices.py:184 netbox/dcim/choices.py:236 -#: netbox/dcim/choices.py:1605 netbox/dcim/choices.py:1655 -#: netbox/extras/tables/tables.py:495 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:25 -#: netbox/templates/users/user.html:37 netbox/users/forms/bulk_edit.py:38 -#: netbox/virtualization/choices.py:22 netbox/virtualization/choices.py:44 -#: netbox/vpn/choices.py:19 netbox/wireless/choices.py:25 +#: circuits/choices.py:23 core/tables/tasks.py:22 dcim/choices.py:22 +#: dcim/choices.py:103 dcim/choices.py:184 dcim/choices.py:236 +#: dcim/choices.py:1605 dcim/choices.py:1655 extras/tables/tables.py:495 +#: ipam/choices.py:31 ipam/choices.py:49 ipam/choices.py:69 +#: ipam/choices.py:154 templates/extras/configcontext.html:25 +#: templates/users/user.html:37 users/forms/bulk_edit.py:38 +#: virtualization/choices.py:22 virtualization/choices.py:44 vpn/choices.py:19 +#: wireless/choices.py:25 msgid "Active" msgstr "Aktywny" -#: netbox/circuits/choices.py:24 netbox/dcim/choices.py:183 -#: netbox/dcim/choices.py:235 netbox/dcim/choices.py:1604 -#: netbox/dcim/choices.py:1657 netbox/virtualization/choices.py:24 -#: netbox/virtualization/choices.py:43 +#: circuits/choices.py:24 dcim/choices.py:183 dcim/choices.py:235 +#: dcim/choices.py:1604 dcim/choices.py:1657 virtualization/choices.py:24 +#: virtualization/choices.py:43 msgid "Offline" msgstr "Nieaktywne" -#: netbox/circuits/choices.py:25 +#: circuits/choices.py:25 msgid "Deprovisioning" msgstr "Odstąpienie od zaopatrzenia" -#: netbox/circuits/choices.py:26 +#: circuits/choices.py:26 msgid "Decommissioned" msgstr "Wycofane ze służby" -#: netbox/circuits/choices.py:90 netbox/dcim/choices.py:1617 -#: netbox/tenancy/choices.py:17 +#: circuits/choices.py:90 dcim/choices.py:1617 tenancy/choices.py:17 msgid "Primary" -msgstr "Podstawowy" +msgstr "Pierwszorzędny" -#: netbox/circuits/choices.py:91 netbox/ipam/choices.py:90 -#: netbox/tenancy/choices.py:18 +#: circuits/choices.py:91 ipam/choices.py:90 tenancy/choices.py:18 msgid "Secondary" -msgstr "Wtórny" +msgstr "Drugorzędny" -#: netbox/circuits/choices.py:92 netbox/tenancy/choices.py:19 +#: circuits/choices.py:92 tenancy/choices.py:19 msgid "Tertiary" -msgstr "Trzeciorzędowy" +msgstr "Trzeciorzędny" -#: netbox/circuits/choices.py:93 netbox/tenancy/choices.py:20 +#: circuits/choices.py:93 tenancy/choices.py:20 msgid "Inactive" msgstr "Nieaktywny" -#: netbox/circuits/filtersets.py:31 netbox/circuits/filtersets.py:198 -#: netbox/dcim/filtersets.py:98 netbox/dcim/filtersets.py:152 -#: netbox/dcim/filtersets.py:212 netbox/dcim/filtersets.py:333 -#: netbox/dcim/filtersets.py:464 netbox/dcim/filtersets.py:1021 -#: netbox/dcim/filtersets.py:1368 netbox/dcim/filtersets.py:1903 -#: netbox/dcim/filtersets.py:2146 netbox/dcim/filtersets.py:2204 -#: netbox/ipam/filtersets.py:339 netbox/ipam/filtersets.py:959 -#: netbox/virtualization/filtersets.py:45 -#: netbox/virtualization/filtersets.py:173 netbox/vpn/filtersets.py:358 +#: circuits/filtersets.py:31 circuits/filtersets.py:198 dcim/filtersets.py:98 +#: dcim/filtersets.py:152 dcim/filtersets.py:212 dcim/filtersets.py:333 +#: dcim/filtersets.py:464 dcim/filtersets.py:1021 dcim/filtersets.py:1368 +#: dcim/filtersets.py:1903 dcim/filtersets.py:2146 dcim/filtersets.py:2204 +#: ipam/filtersets.py:339 ipam/filtersets.py:959 +#: virtualization/filtersets.py:45 virtualization/filtersets.py:173 +#: vpn/filtersets.py:358 msgid "Region (ID)" msgstr "Region (ID)" -#: netbox/circuits/filtersets.py:38 netbox/circuits/filtersets.py:205 -#: netbox/dcim/filtersets.py:105 netbox/dcim/filtersets.py:158 -#: netbox/dcim/filtersets.py:219 netbox/dcim/filtersets.py:340 -#: netbox/dcim/filtersets.py:471 netbox/dcim/filtersets.py:1028 -#: netbox/dcim/filtersets.py:1375 netbox/dcim/filtersets.py:1910 -#: netbox/dcim/filtersets.py:2153 netbox/dcim/filtersets.py:2211 -#: netbox/extras/filtersets.py:509 netbox/ipam/filtersets.py:346 -#: netbox/ipam/filtersets.py:966 netbox/virtualization/filtersets.py:52 -#: netbox/virtualization/filtersets.py:180 netbox/vpn/filtersets.py:353 +#: circuits/filtersets.py:38 circuits/filtersets.py:205 dcim/filtersets.py:105 +#: dcim/filtersets.py:158 dcim/filtersets.py:219 dcim/filtersets.py:340 +#: dcim/filtersets.py:471 dcim/filtersets.py:1028 dcim/filtersets.py:1375 +#: dcim/filtersets.py:1910 dcim/filtersets.py:2153 dcim/filtersets.py:2211 +#: extras/filtersets.py:509 ipam/filtersets.py:346 ipam/filtersets.py:966 +#: virtualization/filtersets.py:52 virtualization/filtersets.py:180 +#: vpn/filtersets.py:353 msgid "Region (slug)" msgstr "Region (identyfikator)" -#: netbox/circuits/filtersets.py:44 netbox/circuits/filtersets.py:211 -#: netbox/dcim/filtersets.py:128 netbox/dcim/filtersets.py:225 -#: netbox/dcim/filtersets.py:346 netbox/dcim/filtersets.py:477 -#: netbox/dcim/filtersets.py:1034 netbox/dcim/filtersets.py:1381 -#: netbox/dcim/filtersets.py:1916 netbox/dcim/filtersets.py:2159 -#: netbox/dcim/filtersets.py:2217 netbox/ipam/filtersets.py:352 -#: netbox/ipam/filtersets.py:972 netbox/virtualization/filtersets.py:58 -#: netbox/virtualization/filtersets.py:186 +#: circuits/filtersets.py:44 circuits/filtersets.py:211 dcim/filtersets.py:128 +#: dcim/filtersets.py:225 dcim/filtersets.py:346 dcim/filtersets.py:477 +#: dcim/filtersets.py:1034 dcim/filtersets.py:1381 dcim/filtersets.py:1916 +#: dcim/filtersets.py:2159 dcim/filtersets.py:2217 ipam/filtersets.py:352 +#: ipam/filtersets.py:972 virtualization/filtersets.py:58 +#: virtualization/filtersets.py:186 msgid "Site group (ID)" msgstr "Grupa witryn (ID)" -#: netbox/circuits/filtersets.py:51 netbox/circuits/filtersets.py:218 -#: netbox/dcim/filtersets.py:135 netbox/dcim/filtersets.py:232 -#: netbox/dcim/filtersets.py:353 netbox/dcim/filtersets.py:484 -#: netbox/dcim/filtersets.py:1041 netbox/dcim/filtersets.py:1388 -#: netbox/dcim/filtersets.py:1923 netbox/dcim/filtersets.py:2166 -#: netbox/dcim/filtersets.py:2224 netbox/extras/filtersets.py:515 -#: netbox/ipam/filtersets.py:359 netbox/ipam/filtersets.py:979 -#: netbox/virtualization/filtersets.py:65 -#: netbox/virtualization/filtersets.py:193 +#: circuits/filtersets.py:51 circuits/filtersets.py:218 dcim/filtersets.py:135 +#: dcim/filtersets.py:232 dcim/filtersets.py:353 dcim/filtersets.py:484 +#: dcim/filtersets.py:1041 dcim/filtersets.py:1388 dcim/filtersets.py:1923 +#: dcim/filtersets.py:2166 dcim/filtersets.py:2224 extras/filtersets.py:515 +#: ipam/filtersets.py:359 ipam/filtersets.py:979 +#: virtualization/filtersets.py:65 virtualization/filtersets.py:193 msgid "Site group (slug)" msgstr "Grupa terenów (identyfikator)" -#: netbox/circuits/filtersets.py:56 netbox/circuits/forms/bulk_edit.py:188 -#: netbox/circuits/forms/bulk_edit.py:216 -#: netbox/circuits/forms/bulk_import.py:124 -#: netbox/circuits/forms/filtersets.py:51 -#: netbox/circuits/forms/filtersets.py:171 -#: netbox/circuits/forms/filtersets.py:209 -#: netbox/circuits/forms/model_forms.py:138 -#: netbox/circuits/forms/model_forms.py:154 -#: netbox/circuits/tables/circuits.py:113 netbox/dcim/forms/bulk_edit.py:168 -#: netbox/dcim/forms/bulk_edit.py:329 netbox/dcim/forms/bulk_edit.py:677 -#: netbox/dcim/forms/bulk_edit.py:873 netbox/dcim/forms/bulk_import.py:131 -#: netbox/dcim/forms/bulk_import.py:230 netbox/dcim/forms/bulk_import.py:309 -#: netbox/dcim/forms/bulk_import.py:540 netbox/dcim/forms/bulk_import.py:1311 -#: netbox/dcim/forms/bulk_import.py:1339 netbox/dcim/forms/filtersets.py:87 -#: netbox/dcim/forms/filtersets.py:225 netbox/dcim/forms/filtersets.py:342 -#: netbox/dcim/forms/filtersets.py:439 netbox/dcim/forms/filtersets.py:753 -#: netbox/dcim/forms/filtersets.py:997 netbox/dcim/forms/filtersets.py:1021 -#: netbox/dcim/forms/filtersets.py:1111 netbox/dcim/forms/filtersets.py:1149 -#: netbox/dcim/forms/filtersets.py:1584 netbox/dcim/forms/filtersets.py:1608 -#: netbox/dcim/forms/filtersets.py:1632 netbox/dcim/forms/model_forms.py:137 -#: netbox/dcim/forms/model_forms.py:165 netbox/dcim/forms/model_forms.py:238 -#: netbox/dcim/forms/model_forms.py:463 netbox/dcim/forms/model_forms.py:723 -#: netbox/dcim/forms/object_create.py:391 netbox/dcim/tables/devices.py:153 -#: netbox/dcim/tables/power.py:26 netbox/dcim/tables/power.py:93 -#: netbox/dcim/tables/racks.py:122 netbox/dcim/tables/racks.py:207 -#: netbox/dcim/tables/sites.py:134 netbox/extras/filtersets.py:525 -#: netbox/ipam/forms/bulk_edit.py:217 netbox/ipam/forms/bulk_edit.py:284 -#: netbox/ipam/forms/bulk_edit.py:451 netbox/ipam/forms/bulk_edit.py:529 -#: netbox/ipam/forms/bulk_import.py:171 netbox/ipam/forms/bulk_import.py:429 -#: netbox/ipam/forms/filtersets.py:153 netbox/ipam/forms/filtersets.py:231 -#: netbox/ipam/forms/filtersets.py:432 netbox/ipam/forms/filtersets.py:489 -#: netbox/ipam/forms/model_forms.py:205 netbox/ipam/forms/model_forms.py:636 -#: netbox/ipam/tables/ip.py:245 netbox/ipam/tables/vlans.py:118 -#: netbox/ipam/tables/vlans.py:221 -#: netbox/templates/circuits/inc/circuit_termination_fields.html:6 -#: netbox/templates/dcim/device.html:22 -#: netbox/templates/dcim/inc/cable_termination.html:8 -#: netbox/templates/dcim/inc/cable_termination.html:33 -#: netbox/templates/dcim/location.html:37 -#: netbox/templates/dcim/powerpanel.html:22 netbox/templates/dcim/rack.html:20 -#: netbox/templates/dcim/rackreservation.html:28 -#: netbox/templates/dcim/site.html:28 netbox/templates/ipam/prefix.html:56 -#: netbox/templates/ipam/vlan.html:23 netbox/templates/ipam/vlan_edit.html:40 -#: netbox/templates/virtualization/cluster.html:42 -#: netbox/templates/virtualization/virtualmachine.html:95 -#: netbox/virtualization/forms/bulk_edit.py:91 -#: netbox/virtualization/forms/bulk_edit.py:109 -#: netbox/virtualization/forms/bulk_edit.py:124 -#: netbox/virtualization/forms/bulk_import.py:59 -#: netbox/virtualization/forms/bulk_import.py:85 -#: netbox/virtualization/forms/filtersets.py:79 -#: netbox/virtualization/forms/filtersets.py:148 -#: netbox/virtualization/forms/model_forms.py:71 -#: netbox/virtualization/forms/model_forms.py:104 -#: netbox/virtualization/forms/model_forms.py:171 -#: netbox/virtualization/tables/clusters.py:77 -#: netbox/virtualization/tables/virtualmachines.py:63 -#: netbox/vpn/forms/filtersets.py:266 netbox/wireless/forms/model_forms.py:76 -#: netbox/wireless/forms/model_forms.py:118 +#: circuits/filtersets.py:56 circuits/forms/bulk_edit.py:188 +#: circuits/forms/bulk_edit.py:216 circuits/forms/bulk_import.py:124 +#: circuits/forms/filtersets.py:51 circuits/forms/filtersets.py:171 +#: circuits/forms/filtersets.py:209 circuits/forms/model_forms.py:138 +#: circuits/forms/model_forms.py:154 circuits/tables/circuits.py:113 +#: dcim/forms/bulk_edit.py:168 dcim/forms/bulk_edit.py:329 +#: dcim/forms/bulk_edit.py:677 dcim/forms/bulk_edit.py:873 +#: dcim/forms/bulk_import.py:131 dcim/forms/bulk_import.py:230 +#: dcim/forms/bulk_import.py:309 dcim/forms/bulk_import.py:540 +#: dcim/forms/bulk_import.py:1311 dcim/forms/bulk_import.py:1339 +#: dcim/forms/filtersets.py:87 dcim/forms/filtersets.py:225 +#: dcim/forms/filtersets.py:342 dcim/forms/filtersets.py:439 +#: dcim/forms/filtersets.py:753 dcim/forms/filtersets.py:997 +#: dcim/forms/filtersets.py:1021 dcim/forms/filtersets.py:1111 +#: dcim/forms/filtersets.py:1149 dcim/forms/filtersets.py:1584 +#: dcim/forms/filtersets.py:1608 dcim/forms/filtersets.py:1632 +#: dcim/forms/model_forms.py:137 dcim/forms/model_forms.py:165 +#: dcim/forms/model_forms.py:238 dcim/forms/model_forms.py:463 +#: dcim/forms/model_forms.py:723 dcim/forms/object_create.py:391 +#: dcim/tables/devices.py:153 dcim/tables/power.py:26 dcim/tables/power.py:93 +#: dcim/tables/racks.py:122 dcim/tables/racks.py:207 dcim/tables/sites.py:134 +#: extras/filtersets.py:525 ipam/forms/bulk_edit.py:218 +#: ipam/forms/bulk_edit.py:285 ipam/forms/bulk_edit.py:484 +#: ipam/forms/bulk_import.py:171 ipam/forms/bulk_import.py:429 +#: ipam/forms/filtersets.py:153 ipam/forms/filtersets.py:231 +#: ipam/forms/filtersets.py:432 ipam/forms/filtersets.py:489 +#: ipam/forms/model_forms.py:205 ipam/forms/model_forms.py:636 +#: ipam/tables/ip.py:245 ipam/tables/vlans.py:118 ipam/tables/vlans.py:221 +#: templates/circuits/inc/circuit_termination_fields.html:6 +#: templates/dcim/device.html:22 templates/dcim/inc/cable_termination.html:8 +#: templates/dcim/inc/cable_termination.html:33 +#: templates/dcim/location.html:37 templates/dcim/powerpanel.html:22 +#: templates/dcim/rack.html:20 templates/dcim/rackreservation.html:28 +#: templates/dcim/site.html:28 templates/ipam/prefix.html:56 +#: templates/ipam/vlan.html:23 templates/ipam/vlan_edit.html:40 +#: templates/virtualization/cluster.html:42 +#: templates/virtualization/virtualmachine.html:95 +#: virtualization/forms/bulk_edit.py:91 virtualization/forms/bulk_edit.py:109 +#: virtualization/forms/bulk_edit.py:124 +#: virtualization/forms/bulk_import.py:59 +#: virtualization/forms/bulk_import.py:85 +#: virtualization/forms/filtersets.py:79 +#: virtualization/forms/filtersets.py:148 +#: virtualization/forms/model_forms.py:71 +#: virtualization/forms/model_forms.py:104 +#: virtualization/forms/model_forms.py:171 +#: virtualization/tables/clusters.py:77 +#: virtualization/tables/virtualmachines.py:63 vpn/forms/filtersets.py:266 +#: wireless/forms/model_forms.py:76 wireless/forms/model_forms.py:118 msgid "Site" msgstr "Teren" -#: netbox/circuits/filtersets.py:62 netbox/circuits/filtersets.py:229 -#: netbox/circuits/filtersets.py:274 netbox/dcim/filtersets.py:242 -#: netbox/dcim/filtersets.py:363 netbox/dcim/filtersets.py:458 -#: netbox/extras/filtersets.py:531 netbox/ipam/filtersets.py:238 -#: netbox/ipam/filtersets.py:369 netbox/ipam/filtersets.py:989 -#: netbox/virtualization/filtersets.py:75 -#: netbox/virtualization/filtersets.py:203 netbox/vpn/filtersets.py:363 +#: circuits/filtersets.py:62 circuits/filtersets.py:229 +#: circuits/filtersets.py:274 dcim/filtersets.py:242 dcim/filtersets.py:363 +#: dcim/filtersets.py:458 extras/filtersets.py:531 ipam/filtersets.py:238 +#: ipam/filtersets.py:369 ipam/filtersets.py:989 +#: virtualization/filtersets.py:75 virtualization/filtersets.py:203 +#: vpn/filtersets.py:363 msgid "Site (slug)" msgstr "Teren (identyfikator)" -#: netbox/circuits/filtersets.py:67 +#: circuits/filtersets.py:67 msgid "ASN (ID)" msgstr "ASN (ID)" -#: netbox/circuits/filtersets.py:73 netbox/circuits/forms/filtersets.py:31 -#: netbox/ipam/forms/model_forms.py:159 netbox/ipam/models/asns.py:108 -#: netbox/ipam/models/asns.py:125 netbox/ipam/tables/asn.py:41 -#: netbox/templates/ipam/asn.html:20 +#: circuits/filtersets.py:73 circuits/forms/filtersets.py:31 +#: ipam/forms/model_forms.py:159 ipam/models/asns.py:108 +#: ipam/models/asns.py:125 ipam/tables/asn.py:41 templates/ipam/asn.html:20 msgid "ASN" msgstr "ASN" -#: netbox/circuits/filtersets.py:95 netbox/circuits/filtersets.py:122 -#: netbox/circuits/filtersets.py:156 netbox/circuits/filtersets.py:283 -#: netbox/circuits/filtersets.py:325 netbox/ipam/filtersets.py:243 +#: circuits/filtersets.py:95 circuits/filtersets.py:122 +#: circuits/filtersets.py:156 circuits/filtersets.py:283 +#: circuits/filtersets.py:325 ipam/filtersets.py:243 msgid "Provider (ID)" msgstr "Dostawca (ID)" -#: netbox/circuits/filtersets.py:101 netbox/circuits/filtersets.py:128 -#: netbox/circuits/filtersets.py:162 netbox/circuits/filtersets.py:289 -#: netbox/circuits/filtersets.py:331 netbox/ipam/filtersets.py:249 +#: circuits/filtersets.py:101 circuits/filtersets.py:128 +#: circuits/filtersets.py:162 circuits/filtersets.py:289 +#: circuits/filtersets.py:331 ipam/filtersets.py:249 msgid "Provider (slug)" msgstr "Dostawca (identyfikator)" -#: netbox/circuits/filtersets.py:167 +#: circuits/filtersets.py:167 msgid "Provider account (ID)" msgstr "Konto dostawcy (ID)" -#: netbox/circuits/filtersets.py:173 +#: circuits/filtersets.py:173 msgid "Provider account (account)" msgstr "Konto dostawcy (konto)" -#: netbox/circuits/filtersets.py:178 +#: circuits/filtersets.py:178 msgid "Provider network (ID)" msgstr "Sieć dostawcy (ID)" -#: netbox/circuits/filtersets.py:182 +#: circuits/filtersets.py:182 msgid "Circuit type (ID)" msgstr "Typ obwodu (ID)" -#: netbox/circuits/filtersets.py:188 +#: circuits/filtersets.py:188 msgid "Circuit type (slug)" msgstr "Typ obwodu (identyfikator)" -#: netbox/circuits/filtersets.py:223 netbox/circuits/filtersets.py:268 -#: netbox/dcim/filtersets.py:236 netbox/dcim/filtersets.py:357 -#: netbox/dcim/filtersets.py:452 netbox/dcim/filtersets.py:1045 -#: netbox/dcim/filtersets.py:1393 netbox/dcim/filtersets.py:1928 -#: netbox/dcim/filtersets.py:2170 netbox/dcim/filtersets.py:2229 -#: netbox/ipam/filtersets.py:232 netbox/ipam/filtersets.py:363 -#: netbox/ipam/filtersets.py:983 netbox/virtualization/filtersets.py:69 -#: netbox/virtualization/filtersets.py:197 netbox/vpn/filtersets.py:368 +#: circuits/filtersets.py:223 circuits/filtersets.py:268 +#: dcim/filtersets.py:236 dcim/filtersets.py:357 dcim/filtersets.py:452 +#: dcim/filtersets.py:1045 dcim/filtersets.py:1393 dcim/filtersets.py:1928 +#: dcim/filtersets.py:2170 dcim/filtersets.py:2229 ipam/filtersets.py:232 +#: ipam/filtersets.py:363 ipam/filtersets.py:983 +#: virtualization/filtersets.py:69 virtualization/filtersets.py:197 +#: vpn/filtersets.py:368 msgid "Site (ID)" msgstr "Teren (ID)" -#: netbox/circuits/filtersets.py:233 netbox/circuits/filtersets.py:237 +#: circuits/filtersets.py:233 circuits/filtersets.py:237 msgid "Termination A (ID)" msgstr "Wypowiedzenie A (ID)" -#: netbox/circuits/filtersets.py:260 netbox/circuits/filtersets.py:320 -#: netbox/core/filtersets.py:77 netbox/core/filtersets.py:136 -#: netbox/core/filtersets.py:173 netbox/dcim/filtersets.py:751 -#: netbox/dcim/filtersets.py:1362 netbox/dcim/filtersets.py:2277 -#: netbox/extras/filtersets.py:41 netbox/extras/filtersets.py:63 -#: netbox/extras/filtersets.py:92 netbox/extras/filtersets.py:132 -#: netbox/extras/filtersets.py:181 netbox/extras/filtersets.py:209 -#: netbox/extras/filtersets.py:239 netbox/extras/filtersets.py:276 -#: netbox/extras/filtersets.py:348 netbox/extras/filtersets.py:391 -#: netbox/extras/filtersets.py:438 netbox/extras/filtersets.py:498 -#: netbox/extras/filtersets.py:657 netbox/extras/filtersets.py:703 -#: netbox/ipam/forms/model_forms.py:449 netbox/netbox/filtersets.py:282 -#: netbox/netbox/forms/__init__.py:22 netbox/netbox/forms/base.py:167 -#: netbox/templates/htmx/object_selector.html:28 -#: netbox/templates/inc/filter_list.html:45 -#: netbox/templates/ipam/ipaddress_assign.html:29 -#: netbox/templates/search.html:7 netbox/templates/search.html:26 -#: netbox/tenancy/filtersets.py:99 netbox/users/filtersets.py:23 -#: netbox/users/filtersets.py:57 netbox/users/filtersets.py:102 -#: netbox/users/filtersets.py:150 netbox/utilities/forms/forms.py:104 -#: netbox/utilities/templates/navigation/menu.html:16 +#: circuits/filtersets.py:260 circuits/filtersets.py:320 core/filtersets.py:77 +#: core/filtersets.py:136 core/filtersets.py:173 dcim/filtersets.py:751 +#: dcim/filtersets.py:1362 dcim/filtersets.py:2277 extras/filtersets.py:41 +#: extras/filtersets.py:63 extras/filtersets.py:92 extras/filtersets.py:132 +#: extras/filtersets.py:181 extras/filtersets.py:209 extras/filtersets.py:239 +#: extras/filtersets.py:276 extras/filtersets.py:348 extras/filtersets.py:391 +#: extras/filtersets.py:438 extras/filtersets.py:498 extras/filtersets.py:657 +#: extras/filtersets.py:703 ipam/forms/model_forms.py:449 +#: netbox/filtersets.py:282 netbox/forms/__init__.py:22 +#: netbox/forms/base.py:167 templates/htmx/object_selector.html:28 +#: templates/inc/filter_list.html:46 templates/ipam/ipaddress_assign.html:29 +#: templates/search.html:7 templates/search.html:26 tenancy/filtersets.py:99 +#: users/filtersets.py:23 users/filtersets.py:57 users/filtersets.py:102 +#: users/filtersets.py:150 utilities/forms/forms.py:104 +#: utilities/templates/navigation/menu.html:16 msgid "Search" msgstr "Szukaj" -#: netbox/circuits/filtersets.py:264 netbox/circuits/forms/bulk_edit.py:172 -#: netbox/circuits/forms/bulk_edit.py:246 -#: netbox/circuits/forms/bulk_import.py:115 -#: netbox/circuits/forms/filtersets.py:198 -#: netbox/circuits/forms/filtersets.py:214 -#: netbox/circuits/forms/filtersets.py:260 -#: netbox/circuits/forms/model_forms.py:111 -#: netbox/circuits/forms/model_forms.py:133 -#: netbox/circuits/forms/model_forms.py:199 -#: netbox/circuits/tables/circuits.py:104 -#: netbox/circuits/tables/circuits.py:164 netbox/dcim/forms/connections.py:73 -#: netbox/templates/circuits/circuit.html:15 -#: netbox/templates/circuits/circuitgroupassignment.html:26 -#: netbox/templates/circuits/circuittermination.html:19 -#: netbox/templates/dcim/inc/cable_termination.html:55 -#: netbox/templates/dcim/trace/circuit.html:4 +#: circuits/filtersets.py:264 circuits/forms/bulk_edit.py:172 +#: circuits/forms/bulk_edit.py:246 circuits/forms/bulk_import.py:115 +#: circuits/forms/filtersets.py:198 circuits/forms/filtersets.py:214 +#: circuits/forms/filtersets.py:260 circuits/forms/model_forms.py:111 +#: circuits/forms/model_forms.py:133 circuits/forms/model_forms.py:199 +#: circuits/tables/circuits.py:104 circuits/tables/circuits.py:164 +#: dcim/forms/connections.py:73 templates/circuits/circuit.html:15 +#: templates/circuits/circuitgroupassignment.html:26 +#: templates/circuits/circuittermination.html:19 +#: templates/dcim/inc/cable_termination.html:55 +#: templates/dcim/trace/circuit.html:4 msgid "Circuit" msgstr "Obwód" -#: netbox/circuits/filtersets.py:278 +#: circuits/filtersets.py:278 msgid "ProviderNetwork (ID)" msgstr "Sieć dostawcy (ID)" -#: netbox/circuits/filtersets.py:335 +#: circuits/filtersets.py:335 msgid "Circuit (ID)" msgstr "Obwód (ID)" -#: netbox/circuits/filtersets.py:341 +#: circuits/filtersets.py:341 msgid "Circuit (CID)" msgstr "Obwód (CID)" -#: netbox/circuits/filtersets.py:345 +#: circuits/filtersets.py:345 msgid "Circuit group (ID)" msgstr "Grupa obwodów (ID)" -#: netbox/circuits/filtersets.py:351 +#: circuits/filtersets.py:351 msgid "Circuit group (slug)" msgstr "Grupa obwodów (identyfikator)" -#: netbox/circuits/forms/bulk_edit.py:30 -#: netbox/circuits/forms/filtersets.py:56 -#: netbox/circuits/forms/model_forms.py:29 -#: netbox/circuits/tables/providers.py:33 netbox/dcim/forms/bulk_edit.py:128 -#: netbox/dcim/forms/filtersets.py:195 netbox/dcim/forms/model_forms.py:123 -#: netbox/dcim/tables/sites.py:94 netbox/ipam/models/asns.py:126 -#: netbox/ipam/tables/asn.py:27 netbox/ipam/views.py:213 -#: netbox/netbox/navigation/menu.py:172 netbox/netbox/navigation/menu.py:175 -#: netbox/templates/circuits/provider.html:23 +#: circuits/forms/bulk_edit.py:30 circuits/forms/filtersets.py:56 +#: circuits/forms/model_forms.py:29 circuits/tables/providers.py:33 +#: dcim/forms/bulk_edit.py:128 dcim/forms/filtersets.py:195 +#: dcim/forms/model_forms.py:123 dcim/tables/sites.py:94 +#: ipam/models/asns.py:126 ipam/tables/asn.py:27 ipam/views.py:213 +#: netbox/navigation/menu.py:172 netbox/navigation/menu.py:175 +#: templates/circuits/provider.html:23 msgid "ASNs" msgstr "ASN" -#: netbox/circuits/forms/bulk_edit.py:34 netbox/circuits/forms/bulk_edit.py:56 -#: netbox/circuits/forms/bulk_edit.py:83 -#: netbox/circuits/forms/bulk_edit.py:104 -#: netbox/circuits/forms/bulk_edit.py:164 -#: netbox/circuits/forms/bulk_edit.py:183 -#: netbox/circuits/forms/bulk_edit.py:228 netbox/core/forms/bulk_edit.py:28 -#: netbox/dcim/forms/bulk_create.py:35 netbox/dcim/forms/bulk_edit.py:73 -#: netbox/dcim/forms/bulk_edit.py:92 netbox/dcim/forms/bulk_edit.py:151 -#: netbox/dcim/forms/bulk_edit.py:192 netbox/dcim/forms/bulk_edit.py:210 -#: netbox/dcim/forms/bulk_edit.py:288 netbox/dcim/forms/bulk_edit.py:432 -#: netbox/dcim/forms/bulk_edit.py:466 netbox/dcim/forms/bulk_edit.py:481 -#: netbox/dcim/forms/bulk_edit.py:540 netbox/dcim/forms/bulk_edit.py:584 -#: netbox/dcim/forms/bulk_edit.py:618 netbox/dcim/forms/bulk_edit.py:642 -#: netbox/dcim/forms/bulk_edit.py:715 netbox/dcim/forms/bulk_edit.py:767 -#: netbox/dcim/forms/bulk_edit.py:819 netbox/dcim/forms/bulk_edit.py:842 -#: netbox/dcim/forms/bulk_edit.py:890 netbox/dcim/forms/bulk_edit.py:960 -#: netbox/dcim/forms/bulk_edit.py:1013 netbox/dcim/forms/bulk_edit.py:1048 -#: netbox/dcim/forms/bulk_edit.py:1088 netbox/dcim/forms/bulk_edit.py:1132 -#: netbox/dcim/forms/bulk_edit.py:1177 netbox/dcim/forms/bulk_edit.py:1204 -#: netbox/dcim/forms/bulk_edit.py:1222 netbox/dcim/forms/bulk_edit.py:1240 -#: netbox/dcim/forms/bulk_edit.py:1258 netbox/dcim/forms/bulk_edit.py:1682 -#: netbox/extras/forms/bulk_edit.py:39 netbox/extras/forms/bulk_edit.py:149 -#: netbox/extras/forms/bulk_edit.py:178 netbox/extras/forms/bulk_edit.py:208 -#: netbox/extras/forms/bulk_edit.py:256 netbox/extras/forms/bulk_edit.py:274 -#: netbox/extras/forms/bulk_edit.py:298 netbox/extras/forms/bulk_edit.py:312 -#: netbox/extras/forms/bulk_edit.py:339 netbox/extras/tables/tables.py:79 -#: netbox/ipam/forms/bulk_edit.py:52 netbox/ipam/forms/bulk_edit.py:72 -#: netbox/ipam/forms/bulk_edit.py:92 netbox/ipam/forms/bulk_edit.py:116 -#: netbox/ipam/forms/bulk_edit.py:145 netbox/ipam/forms/bulk_edit.py:174 -#: netbox/ipam/forms/bulk_edit.py:193 netbox/ipam/forms/bulk_edit.py:275 -#: netbox/ipam/forms/bulk_edit.py:320 netbox/ipam/forms/bulk_edit.py:368 -#: netbox/ipam/forms/bulk_edit.py:411 netbox/ipam/forms/bulk_edit.py:427 -#: netbox/ipam/forms/bulk_edit.py:561 netbox/ipam/forms/bulk_edit.py:592 -#: netbox/templates/account/token.html:35 -#: netbox/templates/circuits/circuit.html:59 -#: netbox/templates/circuits/circuitgroup.html:32 -#: netbox/templates/circuits/circuittype.html:26 -#: netbox/templates/circuits/inc/circuit_termination_fields.html:88 -#: netbox/templates/circuits/provider.html:33 -#: netbox/templates/circuits/providernetwork.html:32 -#: netbox/templates/core/datasource.html:54 -#: netbox/templates/core/plugin.html:79 netbox/templates/dcim/cable.html:36 -#: netbox/templates/dcim/consoleport.html:44 -#: netbox/templates/dcim/consoleserverport.html:44 -#: netbox/templates/dcim/device.html:94 -#: netbox/templates/dcim/devicebay.html:32 -#: netbox/templates/dcim/devicerole.html:30 -#: netbox/templates/dcim/devicetype.html:33 -#: netbox/templates/dcim/frontport.html:58 -#: netbox/templates/dcim/interface.html:69 -#: netbox/templates/dcim/inventoryitem.html:60 -#: netbox/templates/dcim/inventoryitemrole.html:22 -#: netbox/templates/dcim/location.html:33 -#: netbox/templates/dcim/manufacturer.html:40 -#: netbox/templates/dcim/module.html:73 -#: netbox/templates/dcim/modulebay.html:42 -#: netbox/templates/dcim/moduletype.html:26 -#: netbox/templates/dcim/platform.html:33 -#: netbox/templates/dcim/powerfeed.html:40 -#: netbox/templates/dcim/poweroutlet.html:40 -#: netbox/templates/dcim/powerpanel.html:30 -#: netbox/templates/dcim/powerport.html:40 netbox/templates/dcim/rack.html:53 -#: netbox/templates/dcim/rackreservation.html:62 -#: netbox/templates/dcim/rackrole.html:26 -#: netbox/templates/dcim/racktype.html:24 -#: netbox/templates/dcim/rearport.html:54 netbox/templates/dcim/region.html:33 -#: netbox/templates/dcim/site.html:60 netbox/templates/dcim/sitegroup.html:33 -#: netbox/templates/dcim/virtualchassis.html:31 -#: netbox/templates/extras/configcontext.html:21 -#: netbox/templates/extras/configtemplate.html:17 -#: netbox/templates/extras/customfield.html:34 -#: netbox/templates/extras/dashboard/widget_add.html:14 -#: netbox/templates/extras/eventrule.html:21 -#: netbox/templates/extras/exporttemplate.html:19 -#: netbox/templates/extras/notificationgroup.html:20 -#: netbox/templates/extras/savedfilter.html:17 -#: netbox/templates/extras/script_list.html:45 -#: netbox/templates/extras/tag.html:20 netbox/templates/extras/webhook.html:17 -#: netbox/templates/generic/bulk_import.html:120 -#: netbox/templates/ipam/aggregate.html:43 netbox/templates/ipam/asn.html:42 -#: netbox/templates/ipam/asnrange.html:38 -#: netbox/templates/ipam/fhrpgroup.html:34 -#: netbox/templates/ipam/ipaddress.html:55 -#: netbox/templates/ipam/iprange.html:67 netbox/templates/ipam/prefix.html:81 -#: netbox/templates/ipam/rir.html:26 netbox/templates/ipam/role.html:26 -#: netbox/templates/ipam/routetarget.html:21 -#: netbox/templates/ipam/service.html:50 -#: netbox/templates/ipam/servicetemplate.html:27 -#: netbox/templates/ipam/vlan.html:62 netbox/templates/ipam/vlangroup.html:34 -#: netbox/templates/ipam/vrf.html:33 netbox/templates/tenancy/contact.html:67 -#: netbox/templates/tenancy/contactgroup.html:25 -#: netbox/templates/tenancy/contactrole.html:22 -#: netbox/templates/tenancy/tenant.html:24 -#: netbox/templates/tenancy/tenantgroup.html:33 -#: netbox/templates/users/group.html:21 -#: netbox/templates/users/objectpermission.html:21 -#: netbox/templates/users/token.html:27 -#: netbox/templates/virtualization/cluster.html:25 -#: netbox/templates/virtualization/clustergroup.html:26 -#: netbox/templates/virtualization/clustertype.html:26 -#: netbox/templates/virtualization/virtualdisk.html:39 -#: netbox/templates/virtualization/virtualmachine.html:31 -#: netbox/templates/virtualization/vminterface.html:51 -#: netbox/templates/vpn/ikepolicy.html:17 -#: netbox/templates/vpn/ikeproposal.html:17 -#: netbox/templates/vpn/ipsecpolicy.html:17 -#: netbox/templates/vpn/ipsecprofile.html:17 -#: netbox/templates/vpn/ipsecprofile.html:40 -#: netbox/templates/vpn/ipsecprofile.html:73 -#: netbox/templates/vpn/ipsecproposal.html:17 -#: netbox/templates/vpn/l2vpn.html:26 netbox/templates/vpn/tunnel.html:33 -#: netbox/templates/vpn/tunnelgroup.html:30 -#: netbox/templates/wireless/wirelesslan.html:26 -#: netbox/templates/wireless/wirelesslangroup.html:33 -#: netbox/templates/wireless/wirelesslink.html:34 -#: netbox/tenancy/forms/bulk_edit.py:32 netbox/tenancy/forms/bulk_edit.py:80 -#: netbox/tenancy/forms/bulk_edit.py:122 netbox/users/forms/bulk_edit.py:64 -#: netbox/users/forms/bulk_edit.py:82 netbox/users/forms/bulk_edit.py:112 -#: netbox/virtualization/forms/bulk_edit.py:32 -#: netbox/virtualization/forms/bulk_edit.py:46 -#: netbox/virtualization/forms/bulk_edit.py:100 -#: netbox/virtualization/forms/bulk_edit.py:177 -#: netbox/virtualization/forms/bulk_edit.py:228 -#: netbox/virtualization/forms/bulk_edit.py:337 -#: netbox/vpn/forms/bulk_edit.py:28 netbox/vpn/forms/bulk_edit.py:64 -#: netbox/vpn/forms/bulk_edit.py:121 netbox/vpn/forms/bulk_edit.py:155 -#: netbox/vpn/forms/bulk_edit.py:190 netbox/vpn/forms/bulk_edit.py:215 -#: netbox/vpn/forms/bulk_edit.py:247 netbox/vpn/forms/bulk_edit.py:274 -#: netbox/wireless/forms/bulk_edit.py:29 netbox/wireless/forms/bulk_edit.py:82 -#: netbox/wireless/forms/bulk_edit.py:140 +#: circuits/forms/bulk_edit.py:34 circuits/forms/bulk_edit.py:56 +#: circuits/forms/bulk_edit.py:83 circuits/forms/bulk_edit.py:104 +#: circuits/forms/bulk_edit.py:164 circuits/forms/bulk_edit.py:183 +#: circuits/forms/bulk_edit.py:228 core/forms/bulk_edit.py:28 +#: dcim/forms/bulk_create.py:35 dcim/forms/bulk_edit.py:73 +#: dcim/forms/bulk_edit.py:92 dcim/forms/bulk_edit.py:151 +#: dcim/forms/bulk_edit.py:192 dcim/forms/bulk_edit.py:210 +#: dcim/forms/bulk_edit.py:288 dcim/forms/bulk_edit.py:432 +#: dcim/forms/bulk_edit.py:466 dcim/forms/bulk_edit.py:481 +#: dcim/forms/bulk_edit.py:540 dcim/forms/bulk_edit.py:584 +#: dcim/forms/bulk_edit.py:618 dcim/forms/bulk_edit.py:642 +#: dcim/forms/bulk_edit.py:715 dcim/forms/bulk_edit.py:767 +#: dcim/forms/bulk_edit.py:819 dcim/forms/bulk_edit.py:842 +#: dcim/forms/bulk_edit.py:890 dcim/forms/bulk_edit.py:960 +#: dcim/forms/bulk_edit.py:1013 dcim/forms/bulk_edit.py:1048 +#: dcim/forms/bulk_edit.py:1088 dcim/forms/bulk_edit.py:1132 +#: dcim/forms/bulk_edit.py:1177 dcim/forms/bulk_edit.py:1204 +#: dcim/forms/bulk_edit.py:1222 dcim/forms/bulk_edit.py:1240 +#: dcim/forms/bulk_edit.py:1258 dcim/forms/bulk_edit.py:1682 +#: extras/forms/bulk_edit.py:39 extras/forms/bulk_edit.py:149 +#: extras/forms/bulk_edit.py:178 extras/forms/bulk_edit.py:208 +#: extras/forms/bulk_edit.py:256 extras/forms/bulk_edit.py:274 +#: extras/forms/bulk_edit.py:298 extras/forms/bulk_edit.py:312 +#: extras/forms/bulk_edit.py:339 extras/tables/tables.py:79 +#: ipam/forms/bulk_edit.py:53 ipam/forms/bulk_edit.py:73 +#: ipam/forms/bulk_edit.py:93 ipam/forms/bulk_edit.py:117 +#: ipam/forms/bulk_edit.py:146 ipam/forms/bulk_edit.py:175 +#: ipam/forms/bulk_edit.py:194 ipam/forms/bulk_edit.py:276 +#: ipam/forms/bulk_edit.py:321 ipam/forms/bulk_edit.py:369 +#: ipam/forms/bulk_edit.py:412 ipam/forms/bulk_edit.py:428 +#: ipam/forms/bulk_edit.py:516 ipam/forms/bulk_edit.py:547 +#: templates/account/token.html:35 templates/circuits/circuit.html:59 +#: templates/circuits/circuitgroup.html:32 +#: templates/circuits/circuittype.html:26 +#: templates/circuits/inc/circuit_termination_fields.html:88 +#: templates/circuits/provider.html:33 +#: templates/circuits/providernetwork.html:32 +#: templates/core/datasource.html:54 templates/core/plugin.html:80 +#: templates/dcim/cable.html:36 templates/dcim/consoleport.html:44 +#: templates/dcim/consoleserverport.html:44 templates/dcim/device.html:94 +#: templates/dcim/devicebay.html:32 templates/dcim/devicerole.html:30 +#: templates/dcim/devicetype.html:33 templates/dcim/frontport.html:58 +#: templates/dcim/interface.html:69 templates/dcim/inventoryitem.html:60 +#: templates/dcim/inventoryitemrole.html:22 templates/dcim/location.html:33 +#: templates/dcim/manufacturer.html:40 templates/dcim/module.html:73 +#: templates/dcim/modulebay.html:42 templates/dcim/moduletype.html:37 +#: templates/dcim/platform.html:33 templates/dcim/powerfeed.html:40 +#: templates/dcim/poweroutlet.html:40 templates/dcim/powerpanel.html:30 +#: templates/dcim/powerport.html:40 templates/dcim/rack.html:53 +#: templates/dcim/rackreservation.html:62 templates/dcim/rackrole.html:26 +#: templates/dcim/racktype.html:24 templates/dcim/rearport.html:54 +#: templates/dcim/region.html:33 templates/dcim/site.html:60 +#: templates/dcim/sitegroup.html:33 templates/dcim/virtualchassis.html:31 +#: templates/extras/configcontext.html:21 +#: templates/extras/configtemplate.html:17 +#: templates/extras/customfield.html:34 +#: templates/extras/dashboard/widget_add.html:14 +#: templates/extras/eventrule.html:21 templates/extras/exporttemplate.html:19 +#: templates/extras/notificationgroup.html:20 +#: templates/extras/savedfilter.html:17 templates/extras/script_list.html:45 +#: templates/extras/tag.html:20 templates/extras/webhook.html:17 +#: templates/generic/bulk_import.html:120 templates/ipam/aggregate.html:43 +#: templates/ipam/asn.html:42 templates/ipam/asnrange.html:38 +#: templates/ipam/fhrpgroup.html:34 templates/ipam/ipaddress.html:55 +#: templates/ipam/iprange.html:67 templates/ipam/prefix.html:81 +#: templates/ipam/rir.html:26 templates/ipam/role.html:26 +#: templates/ipam/routetarget.html:21 templates/ipam/service.html:50 +#: templates/ipam/servicetemplate.html:27 templates/ipam/vlan.html:62 +#: templates/ipam/vlangroup.html:34 templates/ipam/vrf.html:33 +#: templates/tenancy/contact.html:67 templates/tenancy/contactgroup.html:25 +#: templates/tenancy/contactrole.html:22 templates/tenancy/tenant.html:24 +#: templates/tenancy/tenantgroup.html:33 templates/users/group.html:21 +#: templates/users/objectpermission.html:21 templates/users/token.html:27 +#: templates/virtualization/cluster.html:25 +#: templates/virtualization/clustergroup.html:26 +#: templates/virtualization/clustertype.html:26 +#: templates/virtualization/virtualdisk.html:39 +#: templates/virtualization/virtualmachine.html:31 +#: templates/virtualization/vminterface.html:51 +#: templates/vpn/ikepolicy.html:17 templates/vpn/ikeproposal.html:17 +#: templates/vpn/ipsecpolicy.html:17 templates/vpn/ipsecprofile.html:17 +#: templates/vpn/ipsecprofile.html:40 templates/vpn/ipsecprofile.html:73 +#: templates/vpn/ipsecproposal.html:17 templates/vpn/l2vpn.html:26 +#: templates/vpn/tunnel.html:33 templates/vpn/tunnelgroup.html:30 +#: templates/wireless/wirelesslan.html:26 +#: templates/wireless/wirelesslangroup.html:33 +#: templates/wireless/wirelesslink.html:34 tenancy/forms/bulk_edit.py:32 +#: tenancy/forms/bulk_edit.py:80 tenancy/forms/bulk_edit.py:122 +#: users/forms/bulk_edit.py:64 users/forms/bulk_edit.py:82 +#: users/forms/bulk_edit.py:112 virtualization/forms/bulk_edit.py:32 +#: virtualization/forms/bulk_edit.py:46 virtualization/forms/bulk_edit.py:100 +#: virtualization/forms/bulk_edit.py:177 virtualization/forms/bulk_edit.py:228 +#: virtualization/forms/bulk_edit.py:337 vpn/forms/bulk_edit.py:28 +#: vpn/forms/bulk_edit.py:64 vpn/forms/bulk_edit.py:121 +#: vpn/forms/bulk_edit.py:155 vpn/forms/bulk_edit.py:190 +#: vpn/forms/bulk_edit.py:215 vpn/forms/bulk_edit.py:247 +#: vpn/forms/bulk_edit.py:274 wireless/forms/bulk_edit.py:29 +#: wireless/forms/bulk_edit.py:82 wireless/forms/bulk_edit.py:140 msgid "Description" msgstr "Opis" -#: netbox/circuits/forms/bulk_edit.py:51 netbox/circuits/forms/bulk_edit.py:73 -#: netbox/circuits/forms/bulk_edit.py:123 -#: netbox/circuits/forms/bulk_import.py:36 -#: netbox/circuits/forms/bulk_import.py:51 -#: netbox/circuits/forms/bulk_import.py:74 -#: netbox/circuits/forms/filtersets.py:70 -#: netbox/circuits/forms/filtersets.py:88 -#: netbox/circuits/forms/filtersets.py:116 -#: netbox/circuits/forms/filtersets.py:131 -#: netbox/circuits/forms/filtersets.py:199 -#: netbox/circuits/forms/filtersets.py:232 -#: netbox/circuits/forms/filtersets.py:255 -#: netbox/circuits/forms/model_forms.py:47 -#: netbox/circuits/forms/model_forms.py:61 -#: netbox/circuits/forms/model_forms.py:93 -#: netbox/circuits/tables/circuits.py:58 -#: netbox/circuits/tables/circuits.py:108 -#: netbox/circuits/tables/circuits.py:160 -#: netbox/circuits/tables/providers.py:72 -#: netbox/circuits/tables/providers.py:103 -#: netbox/templates/circuits/circuit.html:18 -#: netbox/templates/circuits/circuittermination.html:25 -#: netbox/templates/circuits/provider.html:20 -#: netbox/templates/circuits/provideraccount.html:20 -#: netbox/templates/circuits/providernetwork.html:20 -#: netbox/templates/dcim/inc/cable_termination.html:51 +#: circuits/forms/bulk_edit.py:51 circuits/forms/bulk_edit.py:73 +#: circuits/forms/bulk_edit.py:123 circuits/forms/bulk_import.py:36 +#: circuits/forms/bulk_import.py:51 circuits/forms/bulk_import.py:74 +#: circuits/forms/filtersets.py:70 circuits/forms/filtersets.py:88 +#: circuits/forms/filtersets.py:116 circuits/forms/filtersets.py:131 +#: circuits/forms/filtersets.py:199 circuits/forms/filtersets.py:232 +#: circuits/forms/filtersets.py:255 circuits/forms/model_forms.py:47 +#: circuits/forms/model_forms.py:61 circuits/forms/model_forms.py:93 +#: circuits/tables/circuits.py:58 circuits/tables/circuits.py:108 +#: circuits/tables/circuits.py:160 circuits/tables/providers.py:72 +#: circuits/tables/providers.py:103 templates/circuits/circuit.html:18 +#: templates/circuits/circuittermination.html:25 +#: templates/circuits/provider.html:20 +#: templates/circuits/provideraccount.html:20 +#: templates/circuits/providernetwork.html:20 +#: templates/dcim/inc/cable_termination.html:51 msgid "Provider" msgstr "Dostawca" -#: netbox/circuits/forms/bulk_edit.py:80 -#: netbox/circuits/forms/filtersets.py:91 -#: netbox/templates/circuits/providernetwork.html:28 +#: circuits/forms/bulk_edit.py:80 circuits/forms/filtersets.py:91 +#: templates/circuits/providernetwork.html:28 msgid "Service ID" msgstr "Identyfikator usługi" -#: netbox/circuits/forms/bulk_edit.py:100 -#: netbox/circuits/forms/filtersets.py:107 netbox/dcim/forms/bulk_edit.py:206 -#: netbox/dcim/forms/bulk_edit.py:604 netbox/dcim/forms/bulk_edit.py:804 -#: netbox/dcim/forms/bulk_edit.py:1173 netbox/dcim/forms/bulk_edit.py:1200 -#: netbox/dcim/forms/bulk_edit.py:1678 netbox/dcim/forms/filtersets.py:1064 -#: netbox/dcim/forms/filtersets.py:1455 netbox/dcim/forms/filtersets.py:1479 -#: netbox/dcim/tables/devices.py:704 netbox/dcim/tables/devices.py:761 -#: netbox/dcim/tables/devices.py:1003 netbox/dcim/tables/devicetypes.py:249 -#: netbox/dcim/tables/devicetypes.py:264 netbox/dcim/tables/racks.py:33 -#: netbox/extras/forms/bulk_edit.py:270 netbox/extras/tables/tables.py:443 -#: netbox/templates/circuits/circuittype.html:30 -#: netbox/templates/dcim/cable.html:40 -#: netbox/templates/dcim/devicerole.html:34 -#: netbox/templates/dcim/frontport.html:40 -#: netbox/templates/dcim/inventoryitemrole.html:26 -#: netbox/templates/dcim/rackrole.html:30 -#: netbox/templates/dcim/rearport.html:40 netbox/templates/extras/tag.html:26 +#: circuits/forms/bulk_edit.py:100 circuits/forms/filtersets.py:107 +#: dcim/forms/bulk_edit.py:206 dcim/forms/bulk_edit.py:604 +#: dcim/forms/bulk_edit.py:804 dcim/forms/bulk_edit.py:1173 +#: dcim/forms/bulk_edit.py:1200 dcim/forms/bulk_edit.py:1678 +#: dcim/forms/filtersets.py:1064 dcim/forms/filtersets.py:1455 +#: dcim/forms/filtersets.py:1479 dcim/tables/devices.py:704 +#: dcim/tables/devices.py:761 dcim/tables/devices.py:1003 +#: dcim/tables/devicetypes.py:249 dcim/tables/devicetypes.py:264 +#: dcim/tables/racks.py:33 extras/forms/bulk_edit.py:270 +#: extras/tables/tables.py:443 templates/circuits/circuittype.html:30 +#: templates/dcim/cable.html:40 templates/dcim/devicerole.html:34 +#: templates/dcim/frontport.html:40 templates/dcim/inventoryitemrole.html:26 +#: templates/dcim/rackrole.html:30 templates/dcim/rearport.html:40 +#: templates/extras/tag.html:26 msgid "Color" msgstr "Kolor" -#: netbox/circuits/forms/bulk_edit.py:118 -#: netbox/circuits/forms/bulk_import.py:87 -#: netbox/circuits/forms/filtersets.py:126 netbox/core/forms/bulk_edit.py:18 -#: netbox/core/forms/filtersets.py:33 netbox/core/tables/change_logging.py:32 -#: netbox/core/tables/data.py:20 netbox/core/tables/jobs.py:18 -#: netbox/dcim/forms/bulk_edit.py:782 netbox/dcim/forms/bulk_edit.py:921 -#: netbox/dcim/forms/bulk_edit.py:989 netbox/dcim/forms/bulk_edit.py:1008 -#: netbox/dcim/forms/bulk_edit.py:1031 netbox/dcim/forms/bulk_edit.py:1073 -#: netbox/dcim/forms/bulk_edit.py:1117 netbox/dcim/forms/bulk_edit.py:1168 -#: netbox/dcim/forms/bulk_edit.py:1195 netbox/dcim/forms/bulk_import.py:188 -#: netbox/dcim/forms/bulk_import.py:260 netbox/dcim/forms/bulk_import.py:708 -#: netbox/dcim/forms/bulk_import.py:734 netbox/dcim/forms/bulk_import.py:760 -#: netbox/dcim/forms/bulk_import.py:780 netbox/dcim/forms/bulk_import.py:863 -#: netbox/dcim/forms/bulk_import.py:957 netbox/dcim/forms/bulk_import.py:999 -#: netbox/dcim/forms/bulk_import.py:1213 netbox/dcim/forms/bulk_import.py:1376 -#: netbox/dcim/forms/filtersets.py:955 netbox/dcim/forms/filtersets.py:1054 -#: netbox/dcim/forms/filtersets.py:1175 netbox/dcim/forms/filtersets.py:1247 -#: netbox/dcim/forms/filtersets.py:1272 netbox/dcim/forms/filtersets.py:1296 -#: netbox/dcim/forms/filtersets.py:1316 netbox/dcim/forms/filtersets.py:1353 -#: netbox/dcim/forms/filtersets.py:1450 netbox/dcim/forms/filtersets.py:1474 -#: netbox/dcim/forms/model_forms.py:703 netbox/dcim/forms/model_forms.py:709 -#: netbox/dcim/forms/object_import.py:84 -#: netbox/dcim/forms/object_import.py:113 -#: netbox/dcim/forms/object_import.py:145 netbox/dcim/tables/devices.py:178 -#: netbox/dcim/tables/devices.py:814 netbox/dcim/tables/power.py:77 -#: netbox/dcim/tables/racks.py:138 netbox/extras/forms/bulk_import.py:42 -#: netbox/extras/tables/tables.py:405 netbox/extras/tables/tables.py:465 -#: netbox/netbox/tables/tables.py:240 -#: netbox/templates/circuits/circuit.html:30 -#: netbox/templates/core/datasource.html:38 -#: netbox/templates/dcim/cable.html:15 -#: netbox/templates/dcim/consoleport.html:36 -#: netbox/templates/dcim/consoleserverport.html:36 -#: netbox/templates/dcim/frontport.html:36 -#: netbox/templates/dcim/interface.html:46 -#: netbox/templates/dcim/interface.html:169 -#: netbox/templates/dcim/interface.html:311 -#: netbox/templates/dcim/powerfeed.html:32 -#: netbox/templates/dcim/poweroutlet.html:36 -#: netbox/templates/dcim/powerport.html:36 -#: netbox/templates/dcim/rearport.html:36 -#: netbox/templates/extras/eventrule.html:74 -#: netbox/templates/virtualization/cluster.html:17 -#: netbox/templates/vpn/l2vpn.html:22 -#: netbox/templates/wireless/inc/authentication_attrs.html:8 -#: netbox/templates/wireless/inc/wirelesslink_interface.html:14 -#: netbox/virtualization/forms/bulk_edit.py:60 -#: netbox/virtualization/forms/bulk_import.py:41 -#: netbox/virtualization/forms/filtersets.py:54 -#: netbox/virtualization/forms/model_forms.py:62 -#: netbox/virtualization/tables/clusters.py:66 -#: netbox/vpn/forms/bulk_edit.py:264 netbox/vpn/forms/bulk_import.py:264 -#: netbox/vpn/forms/filtersets.py:217 netbox/vpn/forms/model_forms.py:84 -#: netbox/vpn/forms/model_forms.py:119 netbox/vpn/forms/model_forms.py:231 +#: circuits/forms/bulk_edit.py:118 circuits/forms/bulk_import.py:87 +#: circuits/forms/filtersets.py:126 core/forms/bulk_edit.py:18 +#: core/forms/filtersets.py:33 core/tables/change_logging.py:32 +#: core/tables/data.py:20 core/tables/jobs.py:18 dcim/forms/bulk_edit.py:782 +#: dcim/forms/bulk_edit.py:921 dcim/forms/bulk_edit.py:989 +#: dcim/forms/bulk_edit.py:1008 dcim/forms/bulk_edit.py:1031 +#: dcim/forms/bulk_edit.py:1073 dcim/forms/bulk_edit.py:1117 +#: dcim/forms/bulk_edit.py:1168 dcim/forms/bulk_edit.py:1195 +#: dcim/forms/bulk_import.py:188 dcim/forms/bulk_import.py:260 +#: dcim/forms/bulk_import.py:708 dcim/forms/bulk_import.py:734 +#: dcim/forms/bulk_import.py:760 dcim/forms/bulk_import.py:780 +#: dcim/forms/bulk_import.py:863 dcim/forms/bulk_import.py:957 +#: dcim/forms/bulk_import.py:999 dcim/forms/bulk_import.py:1213 +#: dcim/forms/bulk_import.py:1376 dcim/forms/filtersets.py:955 +#: dcim/forms/filtersets.py:1054 dcim/forms/filtersets.py:1175 +#: dcim/forms/filtersets.py:1247 dcim/forms/filtersets.py:1272 +#: dcim/forms/filtersets.py:1296 dcim/forms/filtersets.py:1316 +#: dcim/forms/filtersets.py:1353 dcim/forms/filtersets.py:1450 +#: dcim/forms/filtersets.py:1474 dcim/forms/model_forms.py:703 +#: dcim/forms/model_forms.py:709 dcim/forms/object_import.py:84 +#: dcim/forms/object_import.py:113 dcim/forms/object_import.py:145 +#: dcim/tables/devices.py:178 dcim/tables/devices.py:814 +#: dcim/tables/power.py:77 dcim/tables/racks.py:138 +#: extras/forms/bulk_import.py:42 extras/tables/tables.py:405 +#: extras/tables/tables.py:465 netbox/tables/tables.py:240 +#: templates/circuits/circuit.html:30 templates/core/datasource.html:38 +#: templates/dcim/cable.html:15 templates/dcim/consoleport.html:36 +#: templates/dcim/consoleserverport.html:36 templates/dcim/frontport.html:36 +#: templates/dcim/interface.html:46 templates/dcim/interface.html:169 +#: templates/dcim/interface.html:311 templates/dcim/powerfeed.html:32 +#: templates/dcim/poweroutlet.html:36 templates/dcim/powerport.html:36 +#: templates/dcim/rearport.html:36 templates/extras/eventrule.html:74 +#: templates/virtualization/cluster.html:17 templates/vpn/l2vpn.html:22 +#: templates/wireless/inc/authentication_attrs.html:8 +#: templates/wireless/inc/wirelesslink_interface.html:14 +#: virtualization/forms/bulk_edit.py:60 virtualization/forms/bulk_import.py:41 +#: virtualization/forms/filtersets.py:54 +#: virtualization/forms/model_forms.py:62 virtualization/tables/clusters.py:66 +#: vpn/forms/bulk_edit.py:264 vpn/forms/bulk_import.py:264 +#: vpn/forms/filtersets.py:217 vpn/forms/model_forms.py:84 +#: vpn/forms/model_forms.py:119 vpn/forms/model_forms.py:231 msgid "Type" msgstr "Typ" -#: netbox/circuits/forms/bulk_edit.py:128 -#: netbox/circuits/forms/bulk_import.py:80 -#: netbox/circuits/forms/filtersets.py:139 -#: netbox/circuits/forms/model_forms.py:98 +#: circuits/forms/bulk_edit.py:128 circuits/forms/bulk_import.py:80 +#: circuits/forms/filtersets.py:139 circuits/forms/model_forms.py:98 msgid "Provider account" msgstr "Konto dostawcy" -#: netbox/circuits/forms/bulk_edit.py:136 -#: netbox/circuits/forms/bulk_import.py:93 -#: netbox/circuits/forms/filtersets.py:150 netbox/core/forms/filtersets.py:38 -#: netbox/core/forms/filtersets.py:79 netbox/core/tables/data.py:23 -#: netbox/core/tables/jobs.py:26 netbox/core/tables/tasks.py:88 -#: netbox/dcim/forms/bulk_edit.py:106 netbox/dcim/forms/bulk_edit.py:181 -#: netbox/dcim/forms/bulk_edit.py:351 netbox/dcim/forms/bulk_edit.py:700 -#: netbox/dcim/forms/bulk_edit.py:756 netbox/dcim/forms/bulk_edit.py:788 -#: netbox/dcim/forms/bulk_edit.py:915 netbox/dcim/forms/bulk_edit.py:1701 -#: netbox/dcim/forms/bulk_import.py:88 netbox/dcim/forms/bulk_import.py:147 -#: netbox/dcim/forms/bulk_import.py:248 netbox/dcim/forms/bulk_import.py:505 -#: netbox/dcim/forms/bulk_import.py:659 netbox/dcim/forms/bulk_import.py:1207 -#: netbox/dcim/forms/bulk_import.py:1371 netbox/dcim/forms/bulk_import.py:1435 -#: netbox/dcim/forms/filtersets.py:178 netbox/dcim/forms/filtersets.py:237 -#: netbox/dcim/forms/filtersets.py:359 netbox/dcim/forms/filtersets.py:799 -#: netbox/dcim/forms/filtersets.py:924 netbox/dcim/forms/filtersets.py:958 -#: netbox/dcim/forms/filtersets.py:1059 netbox/dcim/forms/filtersets.py:1170 -#: netbox/dcim/tables/devices.py:140 netbox/dcim/tables/devices.py:817 -#: netbox/dcim/tables/devices.py:1063 netbox/dcim/tables/modules.py:69 -#: netbox/dcim/tables/power.py:74 netbox/dcim/tables/racks.py:126 -#: netbox/dcim/tables/sites.py:82 netbox/dcim/tables/sites.py:138 -#: netbox/ipam/forms/bulk_edit.py:255 netbox/ipam/forms/bulk_edit.py:305 -#: netbox/ipam/forms/bulk_edit.py:353 netbox/ipam/forms/bulk_edit.py:551 -#: netbox/ipam/forms/bulk_import.py:192 netbox/ipam/forms/bulk_import.py:257 -#: netbox/ipam/forms/bulk_import.py:293 netbox/ipam/forms/bulk_import.py:450 -#: netbox/ipam/forms/filtersets.py:210 netbox/ipam/forms/filtersets.py:281 -#: netbox/ipam/forms/filtersets.py:355 netbox/ipam/forms/filtersets.py:501 -#: netbox/ipam/forms/model_forms.py:468 netbox/ipam/tables/ip.py:237 -#: netbox/ipam/tables/ip.py:312 netbox/ipam/tables/ip.py:363 -#: netbox/ipam/tables/ip.py:426 netbox/ipam/tables/ip.py:453 -#: netbox/ipam/tables/vlans.py:126 netbox/ipam/tables/vlans.py:232 -#: netbox/templates/circuits/circuit.html:34 -#: netbox/templates/core/datasource.html:46 netbox/templates/core/job.html:48 -#: netbox/templates/core/rq_task.html:81 netbox/templates/core/system.html:18 -#: netbox/templates/dcim/cable.html:19 netbox/templates/dcim/device.html:178 -#: netbox/templates/dcim/location.html:45 netbox/templates/dcim/module.html:69 -#: netbox/templates/dcim/powerfeed.html:36 netbox/templates/dcim/rack.html:41 -#: netbox/templates/dcim/site.html:43 -#: netbox/templates/extras/script_list.html:47 -#: netbox/templates/ipam/ipaddress.html:37 -#: netbox/templates/ipam/iprange.html:54 netbox/templates/ipam/prefix.html:73 -#: netbox/templates/ipam/vlan.html:48 -#: netbox/templates/virtualization/cluster.html:21 -#: netbox/templates/virtualization/virtualmachine.html:19 -#: netbox/templates/vpn/tunnel.html:25 -#: netbox/templates/wireless/wirelesslan.html:22 -#: netbox/templates/wireless/wirelesslink.html:17 -#: netbox/users/forms/filtersets.py:32 netbox/users/forms/model_forms.py:194 -#: netbox/virtualization/forms/bulk_edit.py:70 -#: netbox/virtualization/forms/bulk_edit.py:118 -#: netbox/virtualization/forms/bulk_import.py:54 -#: netbox/virtualization/forms/bulk_import.py:80 -#: netbox/virtualization/forms/filtersets.py:62 -#: netbox/virtualization/forms/filtersets.py:160 -#: netbox/virtualization/tables/clusters.py:74 -#: netbox/virtualization/tables/virtualmachines.py:60 -#: netbox/vpn/forms/bulk_edit.py:39 netbox/vpn/forms/bulk_import.py:37 -#: netbox/vpn/forms/filtersets.py:47 netbox/vpn/tables/tunnels.py:48 -#: netbox/wireless/forms/bulk_edit.py:43 -#: netbox/wireless/forms/bulk_edit.py:105 -#: netbox/wireless/forms/bulk_import.py:43 -#: netbox/wireless/forms/bulk_import.py:84 -#: netbox/wireless/forms/filtersets.py:49 -#: netbox/wireless/forms/filtersets.py:83 -#: netbox/wireless/tables/wirelesslan.py:52 -#: netbox/wireless/tables/wirelesslink.py:20 +#: circuits/forms/bulk_edit.py:136 circuits/forms/bulk_import.py:93 +#: circuits/forms/filtersets.py:150 core/forms/filtersets.py:38 +#: core/forms/filtersets.py:79 core/tables/data.py:23 core/tables/jobs.py:26 +#: core/tables/tasks.py:88 dcim/forms/bulk_edit.py:106 +#: dcim/forms/bulk_edit.py:181 dcim/forms/bulk_edit.py:351 +#: dcim/forms/bulk_edit.py:700 dcim/forms/bulk_edit.py:756 +#: dcim/forms/bulk_edit.py:788 dcim/forms/bulk_edit.py:915 +#: dcim/forms/bulk_edit.py:1701 dcim/forms/bulk_import.py:88 +#: dcim/forms/bulk_import.py:147 dcim/forms/bulk_import.py:248 +#: dcim/forms/bulk_import.py:505 dcim/forms/bulk_import.py:659 +#: dcim/forms/bulk_import.py:1207 dcim/forms/bulk_import.py:1371 +#: dcim/forms/bulk_import.py:1435 dcim/forms/filtersets.py:178 +#: dcim/forms/filtersets.py:237 dcim/forms/filtersets.py:359 +#: dcim/forms/filtersets.py:799 dcim/forms/filtersets.py:924 +#: dcim/forms/filtersets.py:958 dcim/forms/filtersets.py:1059 +#: dcim/forms/filtersets.py:1170 dcim/tables/devices.py:140 +#: dcim/tables/devices.py:817 dcim/tables/devices.py:1063 +#: dcim/tables/modules.py:69 dcim/tables/power.py:74 dcim/tables/racks.py:126 +#: dcim/tables/sites.py:82 dcim/tables/sites.py:138 +#: ipam/forms/bulk_edit.py:256 ipam/forms/bulk_edit.py:306 +#: ipam/forms/bulk_edit.py:354 ipam/forms/bulk_edit.py:506 +#: ipam/forms/bulk_import.py:192 ipam/forms/bulk_import.py:257 +#: ipam/forms/bulk_import.py:293 ipam/forms/bulk_import.py:450 +#: ipam/forms/filtersets.py:210 ipam/forms/filtersets.py:281 +#: ipam/forms/filtersets.py:355 ipam/forms/filtersets.py:501 +#: ipam/forms/model_forms.py:468 ipam/tables/ip.py:237 ipam/tables/ip.py:312 +#: ipam/tables/ip.py:363 ipam/tables/ip.py:426 ipam/tables/ip.py:453 +#: ipam/tables/vlans.py:126 ipam/tables/vlans.py:232 +#: templates/circuits/circuit.html:34 templates/core/datasource.html:46 +#: templates/core/job.html:48 templates/core/rq_task.html:81 +#: templates/core/system.html:18 templates/dcim/cable.html:19 +#: templates/dcim/device.html:178 templates/dcim/location.html:45 +#: templates/dcim/module.html:69 templates/dcim/powerfeed.html:36 +#: templates/dcim/rack.html:41 templates/dcim/site.html:43 +#: templates/extras/script_list.html:47 templates/ipam/ipaddress.html:37 +#: templates/ipam/iprange.html:54 templates/ipam/prefix.html:73 +#: templates/ipam/vlan.html:48 templates/virtualization/cluster.html:21 +#: templates/virtualization/virtualmachine.html:19 +#: templates/vpn/tunnel.html:25 templates/wireless/wirelesslan.html:22 +#: templates/wireless/wirelesslink.html:17 users/forms/filtersets.py:32 +#: users/forms/model_forms.py:194 virtualization/forms/bulk_edit.py:70 +#: virtualization/forms/bulk_edit.py:118 +#: virtualization/forms/bulk_import.py:54 +#: virtualization/forms/bulk_import.py:80 +#: virtualization/forms/filtersets.py:62 +#: virtualization/forms/filtersets.py:160 virtualization/tables/clusters.py:74 +#: virtualization/tables/virtualmachines.py:60 vpn/forms/bulk_edit.py:39 +#: vpn/forms/bulk_import.py:37 vpn/forms/filtersets.py:47 +#: vpn/tables/tunnels.py:48 wireless/forms/bulk_edit.py:43 +#: wireless/forms/bulk_edit.py:105 wireless/forms/bulk_import.py:43 +#: wireless/forms/bulk_import.py:84 wireless/forms/filtersets.py:49 +#: wireless/forms/filtersets.py:83 wireless/tables/wirelesslan.py:52 +#: wireless/tables/wirelesslink.py:20 msgid "Status" msgstr "Status" -#: netbox/circuits/forms/bulk_edit.py:142 -#: netbox/circuits/forms/bulk_edit.py:233 -#: netbox/circuits/forms/bulk_import.py:98 -#: netbox/circuits/forms/bulk_import.py:158 -#: netbox/circuits/forms/filtersets.py:119 -#: netbox/circuits/forms/filtersets.py:241 netbox/dcim/forms/bulk_edit.py:122 -#: netbox/dcim/forms/bulk_edit.py:187 netbox/dcim/forms/bulk_edit.py:346 -#: netbox/dcim/forms/bulk_edit.py:461 netbox/dcim/forms/bulk_edit.py:690 -#: netbox/dcim/forms/bulk_edit.py:794 netbox/dcim/forms/bulk_edit.py:1706 -#: netbox/dcim/forms/bulk_import.py:107 netbox/dcim/forms/bulk_import.py:152 -#: netbox/dcim/forms/bulk_import.py:241 netbox/dcim/forms/bulk_import.py:334 -#: netbox/dcim/forms/bulk_import.py:479 netbox/dcim/forms/bulk_import.py:1219 -#: netbox/dcim/forms/bulk_import.py:1428 netbox/dcim/forms/filtersets.py:173 -#: netbox/dcim/forms/filtersets.py:205 netbox/dcim/forms/filtersets.py:323 -#: netbox/dcim/forms/filtersets.py:399 netbox/dcim/forms/filtersets.py:420 -#: netbox/dcim/forms/filtersets.py:722 netbox/dcim/forms/filtersets.py:916 -#: netbox/dcim/forms/filtersets.py:978 netbox/dcim/forms/filtersets.py:1008 -#: netbox/dcim/forms/filtersets.py:1130 netbox/dcim/tables/power.py:88 -#: netbox/extras/filtersets.py:612 netbox/extras/forms/filtersets.py:323 -#: netbox/extras/forms/filtersets.py:396 netbox/ipam/forms/bulk_edit.py:42 -#: netbox/ipam/forms/bulk_edit.py:67 netbox/ipam/forms/bulk_edit.py:111 -#: netbox/ipam/forms/bulk_edit.py:140 netbox/ipam/forms/bulk_edit.py:165 -#: netbox/ipam/forms/bulk_edit.py:250 netbox/ipam/forms/bulk_edit.py:300 -#: netbox/ipam/forms/bulk_edit.py:348 netbox/ipam/forms/bulk_edit.py:546 -#: netbox/ipam/forms/bulk_import.py:38 netbox/ipam/forms/bulk_import.py:67 -#: netbox/ipam/forms/bulk_import.py:95 netbox/ipam/forms/bulk_import.py:115 -#: netbox/ipam/forms/bulk_import.py:135 netbox/ipam/forms/bulk_import.py:164 -#: netbox/ipam/forms/bulk_import.py:250 netbox/ipam/forms/bulk_import.py:286 -#: netbox/ipam/forms/bulk_import.py:443 netbox/ipam/forms/filtersets.py:48 -#: netbox/ipam/forms/filtersets.py:68 netbox/ipam/forms/filtersets.py:100 -#: netbox/ipam/forms/filtersets.py:120 netbox/ipam/forms/filtersets.py:143 -#: netbox/ipam/forms/filtersets.py:174 netbox/ipam/forms/filtersets.py:267 -#: netbox/ipam/forms/filtersets.py:310 netbox/ipam/forms/filtersets.py:469 -#: netbox/ipam/tables/ip.py:456 netbox/ipam/tables/vlans.py:229 -#: netbox/templates/circuits/circuit.html:38 -#: netbox/templates/circuits/circuitgroup.html:36 -#: netbox/templates/dcim/cable.html:23 netbox/templates/dcim/device.html:79 -#: netbox/templates/dcim/location.html:49 -#: netbox/templates/dcim/powerfeed.html:44 netbox/templates/dcim/rack.html:32 -#: netbox/templates/dcim/rackreservation.html:49 -#: netbox/templates/dcim/site.html:47 -#: netbox/templates/dcim/virtualdevicecontext.html:52 -#: netbox/templates/ipam/aggregate.html:30 netbox/templates/ipam/asn.html:33 -#: netbox/templates/ipam/asnrange.html:29 -#: netbox/templates/ipam/ipaddress.html:28 -#: netbox/templates/ipam/iprange.html:58 netbox/templates/ipam/prefix.html:29 -#: netbox/templates/ipam/routetarget.html:17 -#: netbox/templates/ipam/vlan.html:39 netbox/templates/ipam/vrf.html:20 -#: netbox/templates/tenancy/tenant.html:17 -#: netbox/templates/virtualization/cluster.html:33 -#: netbox/templates/virtualization/virtualmachine.html:39 -#: netbox/templates/vpn/l2vpn.html:30 netbox/templates/vpn/tunnel.html:49 -#: netbox/templates/wireless/wirelesslan.html:34 -#: netbox/templates/wireless/wirelesslink.html:25 -#: netbox/tenancy/forms/forms.py:25 netbox/tenancy/forms/forms.py:48 -#: netbox/tenancy/forms/model_forms.py:52 netbox/tenancy/tables/columns.py:64 -#: netbox/virtualization/forms/bulk_edit.py:76 -#: netbox/virtualization/forms/bulk_edit.py:155 -#: netbox/virtualization/forms/bulk_import.py:66 -#: netbox/virtualization/forms/bulk_import.py:115 -#: netbox/virtualization/forms/filtersets.py:47 -#: netbox/virtualization/forms/filtersets.py:105 -#: netbox/vpn/forms/bulk_edit.py:59 netbox/vpn/forms/bulk_edit.py:269 -#: netbox/vpn/forms/bulk_import.py:59 netbox/vpn/forms/bulk_import.py:258 -#: netbox/vpn/forms/filtersets.py:214 netbox/wireless/forms/bulk_edit.py:63 -#: netbox/wireless/forms/bulk_edit.py:110 -#: netbox/wireless/forms/bulk_import.py:55 -#: netbox/wireless/forms/bulk_import.py:97 -#: netbox/wireless/forms/filtersets.py:35 -#: netbox/wireless/forms/filtersets.py:75 +#: circuits/forms/bulk_edit.py:142 circuits/forms/bulk_edit.py:233 +#: circuits/forms/bulk_import.py:98 circuits/forms/bulk_import.py:158 +#: circuits/forms/filtersets.py:119 circuits/forms/filtersets.py:241 +#: dcim/forms/bulk_edit.py:122 dcim/forms/bulk_edit.py:187 +#: dcim/forms/bulk_edit.py:346 dcim/forms/bulk_edit.py:461 +#: dcim/forms/bulk_edit.py:690 dcim/forms/bulk_edit.py:794 +#: dcim/forms/bulk_edit.py:1706 dcim/forms/bulk_import.py:107 +#: dcim/forms/bulk_import.py:152 dcim/forms/bulk_import.py:241 +#: dcim/forms/bulk_import.py:334 dcim/forms/bulk_import.py:479 +#: dcim/forms/bulk_import.py:1219 dcim/forms/bulk_import.py:1428 +#: dcim/forms/filtersets.py:173 dcim/forms/filtersets.py:205 +#: dcim/forms/filtersets.py:323 dcim/forms/filtersets.py:399 +#: dcim/forms/filtersets.py:420 dcim/forms/filtersets.py:722 +#: dcim/forms/filtersets.py:916 dcim/forms/filtersets.py:978 +#: dcim/forms/filtersets.py:1008 dcim/forms/filtersets.py:1130 +#: dcim/tables/power.py:88 extras/filtersets.py:612 +#: extras/forms/filtersets.py:323 extras/forms/filtersets.py:396 +#: ipam/forms/bulk_edit.py:43 ipam/forms/bulk_edit.py:68 +#: ipam/forms/bulk_edit.py:112 ipam/forms/bulk_edit.py:141 +#: ipam/forms/bulk_edit.py:166 ipam/forms/bulk_edit.py:251 +#: ipam/forms/bulk_edit.py:301 ipam/forms/bulk_edit.py:349 +#: ipam/forms/bulk_edit.py:501 ipam/forms/bulk_import.py:38 +#: ipam/forms/bulk_import.py:67 ipam/forms/bulk_import.py:95 +#: ipam/forms/bulk_import.py:115 ipam/forms/bulk_import.py:135 +#: ipam/forms/bulk_import.py:164 ipam/forms/bulk_import.py:250 +#: ipam/forms/bulk_import.py:286 ipam/forms/bulk_import.py:443 +#: ipam/forms/filtersets.py:48 ipam/forms/filtersets.py:68 +#: ipam/forms/filtersets.py:100 ipam/forms/filtersets.py:120 +#: ipam/forms/filtersets.py:143 ipam/forms/filtersets.py:174 +#: ipam/forms/filtersets.py:267 ipam/forms/filtersets.py:310 +#: ipam/forms/filtersets.py:469 ipam/tables/ip.py:456 ipam/tables/vlans.py:229 +#: templates/circuits/circuit.html:38 templates/circuits/circuitgroup.html:36 +#: templates/dcim/cable.html:23 templates/dcim/device.html:79 +#: templates/dcim/location.html:49 templates/dcim/powerfeed.html:44 +#: templates/dcim/rack.html:32 templates/dcim/rackreservation.html:49 +#: templates/dcim/site.html:47 templates/dcim/virtualdevicecontext.html:52 +#: templates/ipam/aggregate.html:30 templates/ipam/asn.html:33 +#: templates/ipam/asnrange.html:29 templates/ipam/ipaddress.html:28 +#: templates/ipam/iprange.html:58 templates/ipam/prefix.html:29 +#: templates/ipam/routetarget.html:17 templates/ipam/vlan.html:39 +#: templates/ipam/vrf.html:20 templates/tenancy/tenant.html:17 +#: templates/virtualization/cluster.html:33 +#: templates/virtualization/virtualmachine.html:39 templates/vpn/l2vpn.html:30 +#: templates/vpn/tunnel.html:49 templates/wireless/wirelesslan.html:34 +#: templates/wireless/wirelesslink.html:25 tenancy/forms/forms.py:25 +#: tenancy/forms/forms.py:48 tenancy/forms/model_forms.py:52 +#: tenancy/tables/columns.py:64 virtualization/forms/bulk_edit.py:76 +#: virtualization/forms/bulk_edit.py:155 +#: virtualization/forms/bulk_import.py:66 +#: virtualization/forms/bulk_import.py:115 +#: virtualization/forms/filtersets.py:47 +#: virtualization/forms/filtersets.py:105 vpn/forms/bulk_edit.py:59 +#: vpn/forms/bulk_edit.py:269 vpn/forms/bulk_import.py:59 +#: vpn/forms/bulk_import.py:258 vpn/forms/filtersets.py:214 +#: wireless/forms/bulk_edit.py:63 wireless/forms/bulk_edit.py:110 +#: wireless/forms/bulk_import.py:55 wireless/forms/bulk_import.py:97 +#: wireless/forms/filtersets.py:35 wireless/forms/filtersets.py:75 msgid "Tenant" msgstr "Najemca" -#: netbox/circuits/forms/bulk_edit.py:147 -#: netbox/circuits/forms/filtersets.py:174 +#: circuits/forms/bulk_edit.py:147 circuits/forms/filtersets.py:174 msgid "Install date" msgstr "Data instalacji" -#: netbox/circuits/forms/bulk_edit.py:152 -#: netbox/circuits/forms/filtersets.py:179 +#: circuits/forms/bulk_edit.py:152 circuits/forms/filtersets.py:179 msgid "Termination date" msgstr "Data wypowiedzenia" -#: netbox/circuits/forms/bulk_edit.py:158 -#: netbox/circuits/forms/filtersets.py:186 +#: circuits/forms/bulk_edit.py:158 circuits/forms/filtersets.py:186 msgid "Commit rate (Kbps)" msgstr "Szybkość zatwierdzania (Kbps)" -#: netbox/circuits/forms/bulk_edit.py:173 -#: netbox/circuits/forms/model_forms.py:112 +#: circuits/forms/bulk_edit.py:173 circuits/forms/model_forms.py:112 msgid "Service Parameters" msgstr "Parametry serwisowe" -#: netbox/circuits/forms/bulk_edit.py:174 -#: netbox/circuits/forms/model_forms.py:113 -#: netbox/circuits/forms/model_forms.py:183 -#: netbox/dcim/forms/model_forms.py:139 netbox/dcim/forms/model_forms.py:181 -#: netbox/dcim/forms/model_forms.py:266 netbox/dcim/forms/model_forms.py:323 -#: netbox/dcim/forms/model_forms.py:768 netbox/dcim/forms/model_forms.py:1692 -#: netbox/ipam/forms/model_forms.py:64 netbox/ipam/forms/model_forms.py:81 -#: netbox/ipam/forms/model_forms.py:115 netbox/ipam/forms/model_forms.py:136 -#: netbox/ipam/forms/model_forms.py:160 netbox/ipam/forms/model_forms.py:232 -#: netbox/ipam/forms/model_forms.py:261 netbox/ipam/forms/model_forms.py:316 -#: netbox/netbox/navigation/menu.py:24 -#: netbox/templates/dcim/device_edit.html:85 -#: netbox/templates/dcim/htmx/cable_edit.html:72 -#: netbox/templates/ipam/ipaddress_bulk_add.html:27 -#: netbox/templates/ipam/vlan_edit.html:22 -#: netbox/virtualization/forms/model_forms.py:80 -#: netbox/virtualization/forms/model_forms.py:222 -#: netbox/vpn/forms/bulk_edit.py:78 netbox/vpn/forms/filtersets.py:44 -#: netbox/vpn/forms/model_forms.py:62 netbox/vpn/forms/model_forms.py:147 -#: netbox/vpn/forms/model_forms.py:411 netbox/wireless/forms/model_forms.py:54 -#: netbox/wireless/forms/model_forms.py:170 +#: circuits/forms/bulk_edit.py:174 circuits/forms/model_forms.py:113 +#: circuits/forms/model_forms.py:183 dcim/forms/model_forms.py:139 +#: dcim/forms/model_forms.py:181 dcim/forms/model_forms.py:266 +#: dcim/forms/model_forms.py:323 dcim/forms/model_forms.py:768 +#: dcim/forms/model_forms.py:1692 ipam/forms/model_forms.py:64 +#: ipam/forms/model_forms.py:81 ipam/forms/model_forms.py:115 +#: ipam/forms/model_forms.py:136 ipam/forms/model_forms.py:160 +#: ipam/forms/model_forms.py:232 ipam/forms/model_forms.py:261 +#: ipam/forms/model_forms.py:316 netbox/navigation/menu.py:24 +#: templates/dcim/device_edit.html:85 templates/dcim/htmx/cable_edit.html:72 +#: templates/ipam/ipaddress_bulk_add.html:27 templates/ipam/vlan_edit.html:22 +#: virtualization/forms/model_forms.py:80 +#: virtualization/forms/model_forms.py:222 vpn/forms/bulk_edit.py:78 +#: vpn/forms/filtersets.py:44 vpn/forms/model_forms.py:62 +#: vpn/forms/model_forms.py:147 vpn/forms/model_forms.py:411 +#: wireless/forms/model_forms.py:54 wireless/forms/model_forms.py:170 msgid "Tenancy" msgstr "Najem" -#: netbox/circuits/forms/bulk_edit.py:193 -#: netbox/circuits/forms/bulk_edit.py:217 -#: netbox/circuits/forms/model_forms.py:155 -#: netbox/circuits/tables/circuits.py:117 -#: netbox/templates/circuits/inc/circuit_termination_fields.html:62 -#: netbox/templates/circuits/providernetwork.html:17 +#: circuits/forms/bulk_edit.py:193 circuits/forms/bulk_edit.py:217 +#: circuits/forms/model_forms.py:155 circuits/tables/circuits.py:117 +#: templates/circuits/inc/circuit_termination_fields.html:62 +#: templates/circuits/providernetwork.html:17 msgid "Provider Network" msgstr "Sieć dostawców" -#: netbox/circuits/forms/bulk_edit.py:199 +#: circuits/forms/bulk_edit.py:199 msgid "Port speed (Kbps)" msgstr "Prędkość portu (Kbps)" -#: netbox/circuits/forms/bulk_edit.py:203 +#: circuits/forms/bulk_edit.py:203 msgid "Upstream speed (Kbps)" msgstr "Prędkość od klienta do serwera (Kbps)" -#: netbox/circuits/forms/bulk_edit.py:206 netbox/dcim/forms/bulk_edit.py:951 -#: netbox/dcim/forms/bulk_edit.py:1315 netbox/dcim/forms/bulk_edit.py:1332 -#: netbox/dcim/forms/bulk_edit.py:1349 netbox/dcim/forms/bulk_edit.py:1367 -#: netbox/dcim/forms/bulk_edit.py:1455 netbox/dcim/forms/bulk_edit.py:1594 -#: netbox/dcim/forms/bulk_edit.py:1611 +#: circuits/forms/bulk_edit.py:206 dcim/forms/bulk_edit.py:951 +#: dcim/forms/bulk_edit.py:1315 dcim/forms/bulk_edit.py:1332 +#: dcim/forms/bulk_edit.py:1349 dcim/forms/bulk_edit.py:1367 +#: dcim/forms/bulk_edit.py:1455 dcim/forms/bulk_edit.py:1594 +#: dcim/forms/bulk_edit.py:1611 msgid "Mark connected" msgstr "Oznacz podłączony" -#: netbox/circuits/forms/bulk_edit.py:219 -#: netbox/circuits/forms/model_forms.py:157 -#: netbox/templates/circuits/inc/circuit_termination_fields.html:54 -#: netbox/templates/dcim/frontport.html:121 -#: netbox/templates/dcim/interface.html:193 -#: netbox/templates/dcim/rearport.html:111 +#: circuits/forms/bulk_edit.py:219 circuits/forms/model_forms.py:157 +#: templates/circuits/inc/circuit_termination_fields.html:54 +#: templates/dcim/frontport.html:121 templates/dcim/interface.html:193 +#: templates/dcim/rearport.html:111 msgid "Circuit Termination" msgstr "Zakończenie obwodu" -#: netbox/circuits/forms/bulk_edit.py:221 -#: netbox/circuits/forms/model_forms.py:159 +#: circuits/forms/bulk_edit.py:221 circuits/forms/model_forms.py:159 msgid "Termination Details" msgstr "Szczegóły wypowiedzenia" -#: netbox/circuits/forms/bulk_edit.py:251 -#: netbox/circuits/forms/filtersets.py:268 -#: netbox/circuits/tables/circuits.py:168 netbox/dcim/forms/model_forms.py:551 -#: netbox/templates/circuits/circuitgroupassignment.html:30 -#: netbox/templates/dcim/device.html:133 -#: netbox/templates/dcim/virtualchassis.html:68 -#: netbox/templates/dcim/virtualchassis_edit.html:56 -#: netbox/templates/ipam/inc/panels/fhrp_groups.html:26 -#: netbox/tenancy/forms/bulk_edit.py:147 -#: netbox/tenancy/forms/filtersets.py:110 +#: circuits/forms/bulk_edit.py:251 circuits/forms/filtersets.py:268 +#: circuits/tables/circuits.py:168 dcim/forms/model_forms.py:551 +#: templates/circuits/circuitgroupassignment.html:30 +#: templates/dcim/device.html:133 templates/dcim/virtualchassis.html:68 +#: templates/dcim/virtualchassis_edit.html:56 +#: templates/ipam/inc/panels/fhrp_groups.html:26 +#: tenancy/forms/bulk_edit.py:147 tenancy/forms/filtersets.py:110 msgid "Priority" msgstr "Priorytet" -#: netbox/circuits/forms/bulk_import.py:39 -#: netbox/circuits/forms/bulk_import.py:54 -#: netbox/circuits/forms/bulk_import.py:77 +#: circuits/forms/bulk_import.py:39 circuits/forms/bulk_import.py:54 +#: circuits/forms/bulk_import.py:77 msgid "Assigned provider" msgstr "Przydzielony dostawca" -#: netbox/circuits/forms/bulk_import.py:83 +#: circuits/forms/bulk_import.py:83 msgid "Assigned provider account" msgstr "Przydzielone konto dostawcy" -#: netbox/circuits/forms/bulk_import.py:90 +#: circuits/forms/bulk_import.py:90 msgid "Type of circuit" msgstr "Rodzaj obwodu" -#: netbox/circuits/forms/bulk_import.py:95 netbox/dcim/forms/bulk_import.py:90 -#: netbox/dcim/forms/bulk_import.py:149 netbox/dcim/forms/bulk_import.py:250 -#: netbox/dcim/forms/bulk_import.py:507 netbox/dcim/forms/bulk_import.py:661 -#: netbox/dcim/forms/bulk_import.py:1373 netbox/ipam/forms/bulk_import.py:194 -#: netbox/ipam/forms/bulk_import.py:259 netbox/ipam/forms/bulk_import.py:295 -#: netbox/ipam/forms/bulk_import.py:452 -#: netbox/virtualization/forms/bulk_import.py:56 -#: netbox/virtualization/forms/bulk_import.py:82 -#: netbox/vpn/forms/bulk_import.py:39 netbox/wireless/forms/bulk_import.py:45 +#: circuits/forms/bulk_import.py:95 dcim/forms/bulk_import.py:90 +#: dcim/forms/bulk_import.py:149 dcim/forms/bulk_import.py:250 +#: dcim/forms/bulk_import.py:507 dcim/forms/bulk_import.py:661 +#: dcim/forms/bulk_import.py:1373 ipam/forms/bulk_import.py:194 +#: ipam/forms/bulk_import.py:259 ipam/forms/bulk_import.py:295 +#: ipam/forms/bulk_import.py:452 virtualization/forms/bulk_import.py:56 +#: virtualization/forms/bulk_import.py:82 vpn/forms/bulk_import.py:39 +#: wireless/forms/bulk_import.py:45 msgid "Operational status" msgstr "Status operacyjny" -#: netbox/circuits/forms/bulk_import.py:102 -#: netbox/circuits/forms/bulk_import.py:162 -#: netbox/dcim/forms/bulk_import.py:111 netbox/dcim/forms/bulk_import.py:156 -#: netbox/dcim/forms/bulk_import.py:338 netbox/dcim/forms/bulk_import.py:483 -#: netbox/dcim/forms/bulk_import.py:1223 netbox/dcim/forms/bulk_import.py:1368 -#: netbox/dcim/forms/bulk_import.py:1432 netbox/ipam/forms/bulk_import.py:42 -#: netbox/ipam/forms/bulk_import.py:71 netbox/ipam/forms/bulk_import.py:99 -#: netbox/ipam/forms/bulk_import.py:119 netbox/ipam/forms/bulk_import.py:139 -#: netbox/ipam/forms/bulk_import.py:168 netbox/ipam/forms/bulk_import.py:254 -#: netbox/ipam/forms/bulk_import.py:290 netbox/ipam/forms/bulk_import.py:447 -#: netbox/virtualization/forms/bulk_import.py:70 -#: netbox/virtualization/forms/bulk_import.py:119 -#: netbox/vpn/forms/bulk_import.py:63 netbox/wireless/forms/bulk_import.py:59 -#: netbox/wireless/forms/bulk_import.py:101 +#: circuits/forms/bulk_import.py:102 circuits/forms/bulk_import.py:162 +#: dcim/forms/bulk_import.py:111 dcim/forms/bulk_import.py:156 +#: dcim/forms/bulk_import.py:338 dcim/forms/bulk_import.py:483 +#: dcim/forms/bulk_import.py:1223 dcim/forms/bulk_import.py:1368 +#: dcim/forms/bulk_import.py:1432 ipam/forms/bulk_import.py:42 +#: ipam/forms/bulk_import.py:71 ipam/forms/bulk_import.py:99 +#: ipam/forms/bulk_import.py:119 ipam/forms/bulk_import.py:139 +#: ipam/forms/bulk_import.py:168 ipam/forms/bulk_import.py:254 +#: ipam/forms/bulk_import.py:290 ipam/forms/bulk_import.py:447 +#: virtualization/forms/bulk_import.py:70 +#: virtualization/forms/bulk_import.py:119 vpn/forms/bulk_import.py:63 +#: wireless/forms/bulk_import.py:59 wireless/forms/bulk_import.py:101 msgid "Assigned tenant" msgstr "Przydzielony najemca" -#: netbox/circuits/forms/bulk_import.py:120 -#: netbox/templates/circuits/inc/circuit_termination.html:6 -#: netbox/templates/circuits/inc/circuit_termination_fields.html:15 -#: netbox/templates/dcim/cable.html:68 netbox/templates/dcim/cable.html:72 -#: netbox/vpn/forms/bulk_import.py:100 netbox/vpn/forms/filtersets.py:77 +#: circuits/forms/bulk_import.py:120 +#: templates/circuits/inc/circuit_termination.html:6 +#: templates/circuits/inc/circuit_termination_fields.html:15 +#: templates/dcim/cable.html:68 templates/dcim/cable.html:72 +#: vpn/forms/bulk_import.py:100 vpn/forms/filtersets.py:77 msgid "Termination" msgstr "Wypowiedzenie" -#: netbox/circuits/forms/bulk_import.py:130 -#: netbox/circuits/forms/filtersets.py:147 -#: netbox/circuits/forms/filtersets.py:227 -#: netbox/circuits/forms/model_forms.py:144 +#: circuits/forms/bulk_import.py:130 circuits/forms/filtersets.py:147 +#: circuits/forms/filtersets.py:227 circuits/forms/model_forms.py:144 msgid "Provider network" msgstr "Sieć dostawców" -#: netbox/circuits/forms/filtersets.py:30 -#: netbox/circuits/forms/filtersets.py:118 -#: netbox/circuits/forms/filtersets.py:200 netbox/dcim/forms/bulk_edit.py:338 -#: netbox/dcim/forms/bulk_edit.py:441 netbox/dcim/forms/bulk_edit.py:682 -#: netbox/dcim/forms/bulk_edit.py:729 netbox/dcim/forms/bulk_edit.py:882 -#: netbox/dcim/forms/bulk_import.py:235 netbox/dcim/forms/bulk_import.py:315 -#: netbox/dcim/forms/bulk_import.py:546 netbox/dcim/forms/bulk_import.py:1317 -#: netbox/dcim/forms/bulk_import.py:1351 netbox/dcim/forms/filtersets.py:95 -#: netbox/dcim/forms/filtersets.py:322 netbox/dcim/forms/filtersets.py:356 -#: netbox/dcim/forms/filtersets.py:396 netbox/dcim/forms/filtersets.py:447 -#: netbox/dcim/forms/filtersets.py:719 netbox/dcim/forms/filtersets.py:762 -#: netbox/dcim/forms/filtersets.py:977 netbox/dcim/forms/filtersets.py:1006 -#: netbox/dcim/forms/filtersets.py:1026 netbox/dcim/forms/filtersets.py:1090 -#: netbox/dcim/forms/filtersets.py:1120 netbox/dcim/forms/filtersets.py:1129 -#: netbox/dcim/forms/filtersets.py:1240 netbox/dcim/forms/filtersets.py:1264 -#: netbox/dcim/forms/filtersets.py:1289 netbox/dcim/forms/filtersets.py:1308 -#: netbox/dcim/forms/filtersets.py:1331 netbox/dcim/forms/filtersets.py:1442 -#: netbox/dcim/forms/filtersets.py:1466 netbox/dcim/forms/filtersets.py:1490 -#: netbox/dcim/forms/filtersets.py:1508 netbox/dcim/forms/filtersets.py:1525 -#: netbox/dcim/forms/model_forms.py:180 netbox/dcim/forms/model_forms.py:243 -#: netbox/dcim/forms/model_forms.py:468 netbox/dcim/forms/model_forms.py:728 -#: netbox/dcim/tables/devices.py:157 netbox/dcim/tables/power.py:30 -#: netbox/dcim/tables/racks.py:118 netbox/dcim/tables/racks.py:212 -#: netbox/extras/filtersets.py:536 netbox/extras/forms/filtersets.py:320 -#: netbox/ipam/forms/bulk_edit.py:460 netbox/ipam/forms/filtersets.py:173 -#: netbox/ipam/forms/filtersets.py:414 netbox/ipam/forms/filtersets.py:437 -#: netbox/ipam/forms/filtersets.py:467 netbox/templates/dcim/device.html:26 -#: netbox/templates/dcim/device_edit.html:30 -#: netbox/templates/dcim/inc/cable_termination.html:12 -#: netbox/templates/dcim/location.html:26 -#: netbox/templates/dcim/powerpanel.html:26 netbox/templates/dcim/rack.html:24 -#: netbox/templates/dcim/rackreservation.html:32 -#: netbox/virtualization/forms/filtersets.py:46 -#: netbox/virtualization/forms/filtersets.py:100 -#: netbox/wireless/forms/model_forms.py:87 -#: netbox/wireless/forms/model_forms.py:129 +#: circuits/forms/filtersets.py:30 circuits/forms/filtersets.py:118 +#: circuits/forms/filtersets.py:200 dcim/forms/bulk_edit.py:338 +#: dcim/forms/bulk_edit.py:441 dcim/forms/bulk_edit.py:682 +#: dcim/forms/bulk_edit.py:729 dcim/forms/bulk_edit.py:882 +#: dcim/forms/bulk_import.py:235 dcim/forms/bulk_import.py:315 +#: dcim/forms/bulk_import.py:546 dcim/forms/bulk_import.py:1317 +#: dcim/forms/bulk_import.py:1351 dcim/forms/filtersets.py:95 +#: dcim/forms/filtersets.py:322 dcim/forms/filtersets.py:356 +#: dcim/forms/filtersets.py:396 dcim/forms/filtersets.py:447 +#: dcim/forms/filtersets.py:719 dcim/forms/filtersets.py:762 +#: dcim/forms/filtersets.py:977 dcim/forms/filtersets.py:1006 +#: dcim/forms/filtersets.py:1026 dcim/forms/filtersets.py:1090 +#: dcim/forms/filtersets.py:1120 dcim/forms/filtersets.py:1129 +#: dcim/forms/filtersets.py:1240 dcim/forms/filtersets.py:1264 +#: dcim/forms/filtersets.py:1289 dcim/forms/filtersets.py:1308 +#: dcim/forms/filtersets.py:1331 dcim/forms/filtersets.py:1442 +#: dcim/forms/filtersets.py:1466 dcim/forms/filtersets.py:1490 +#: dcim/forms/filtersets.py:1508 dcim/forms/filtersets.py:1525 +#: dcim/forms/model_forms.py:180 dcim/forms/model_forms.py:243 +#: dcim/forms/model_forms.py:468 dcim/forms/model_forms.py:728 +#: dcim/tables/devices.py:157 dcim/tables/power.py:30 dcim/tables/racks.py:118 +#: dcim/tables/racks.py:212 extras/filtersets.py:536 +#: extras/forms/filtersets.py:320 ipam/forms/filtersets.py:173 +#: ipam/forms/filtersets.py:414 ipam/forms/filtersets.py:437 +#: ipam/forms/filtersets.py:467 templates/dcim/device.html:26 +#: templates/dcim/device_edit.html:30 +#: templates/dcim/inc/cable_termination.html:12 +#: templates/dcim/location.html:26 templates/dcim/powerpanel.html:26 +#: templates/dcim/rack.html:24 templates/dcim/rackreservation.html:32 +#: virtualization/forms/filtersets.py:46 +#: virtualization/forms/filtersets.py:100 wireless/forms/model_forms.py:87 +#: wireless/forms/model_forms.py:129 msgid "Location" msgstr "Lokalizacja" -#: netbox/circuits/forms/filtersets.py:32 -#: netbox/circuits/forms/filtersets.py:120 netbox/dcim/forms/filtersets.py:144 -#: netbox/dcim/forms/filtersets.py:158 netbox/dcim/forms/filtersets.py:174 -#: netbox/dcim/forms/filtersets.py:206 netbox/dcim/forms/filtersets.py:328 -#: netbox/dcim/forms/filtersets.py:400 netbox/dcim/forms/filtersets.py:471 -#: netbox/dcim/forms/filtersets.py:723 netbox/dcim/forms/filtersets.py:1091 -#: netbox/netbox/navigation/menu.py:31 netbox/netbox/navigation/menu.py:33 -#: netbox/tenancy/forms/filtersets.py:42 netbox/tenancy/tables/columns.py:70 -#: netbox/tenancy/tables/contacts.py:25 netbox/tenancy/views.py:19 -#: netbox/virtualization/forms/filtersets.py:37 -#: netbox/virtualization/forms/filtersets.py:48 -#: netbox/virtualization/forms/filtersets.py:106 +#: circuits/forms/filtersets.py:32 circuits/forms/filtersets.py:120 +#: dcim/forms/filtersets.py:144 dcim/forms/filtersets.py:158 +#: dcim/forms/filtersets.py:174 dcim/forms/filtersets.py:206 +#: dcim/forms/filtersets.py:328 dcim/forms/filtersets.py:400 +#: dcim/forms/filtersets.py:471 dcim/forms/filtersets.py:723 +#: dcim/forms/filtersets.py:1091 netbox/navigation/menu.py:31 +#: netbox/navigation/menu.py:33 tenancy/forms/filtersets.py:42 +#: tenancy/tables/columns.py:70 tenancy/tables/contacts.py:25 +#: tenancy/views.py:19 virtualization/forms/filtersets.py:37 +#: virtualization/forms/filtersets.py:48 +#: virtualization/forms/filtersets.py:106 msgid "Contacts" msgstr "Łączność" -#: netbox/circuits/forms/filtersets.py:37 -#: netbox/circuits/forms/filtersets.py:157 netbox/dcim/forms/bulk_edit.py:112 -#: netbox/dcim/forms/bulk_edit.py:313 netbox/dcim/forms/bulk_edit.py:857 -#: netbox/dcim/forms/bulk_import.py:93 netbox/dcim/forms/filtersets.py:73 -#: netbox/dcim/forms/filtersets.py:185 netbox/dcim/forms/filtersets.py:211 -#: netbox/dcim/forms/filtersets.py:334 netbox/dcim/forms/filtersets.py:425 -#: netbox/dcim/forms/filtersets.py:739 netbox/dcim/forms/filtersets.py:983 -#: netbox/dcim/forms/filtersets.py:1013 netbox/dcim/forms/filtersets.py:1097 -#: netbox/dcim/forms/filtersets.py:1136 netbox/dcim/forms/filtersets.py:1576 -#: netbox/dcim/forms/filtersets.py:1600 netbox/dcim/forms/filtersets.py:1624 -#: netbox/dcim/forms/model_forms.py:112 netbox/dcim/forms/object_create.py:375 -#: netbox/dcim/tables/devices.py:143 netbox/dcim/tables/sites.py:85 -#: netbox/extras/filtersets.py:503 netbox/ipam/forms/bulk_edit.py:207 -#: netbox/ipam/forms/bulk_edit.py:441 netbox/ipam/forms/bulk_edit.py:519 -#: netbox/ipam/forms/filtersets.py:217 netbox/ipam/forms/filtersets.py:422 -#: netbox/ipam/forms/filtersets.py:475 netbox/templates/dcim/device.html:18 -#: netbox/templates/dcim/rack.html:16 -#: netbox/templates/dcim/rackreservation.html:22 -#: netbox/templates/dcim/region.html:26 netbox/templates/dcim/site.html:31 -#: netbox/templates/ipam/prefix.html:49 netbox/templates/ipam/vlan.html:16 -#: netbox/virtualization/forms/bulk_edit.py:81 -#: netbox/virtualization/forms/filtersets.py:59 -#: netbox/virtualization/forms/filtersets.py:133 -#: netbox/virtualization/forms/model_forms.py:92 -#: netbox/vpn/forms/filtersets.py:257 +#: circuits/forms/filtersets.py:37 circuits/forms/filtersets.py:157 +#: dcim/forms/bulk_edit.py:112 dcim/forms/bulk_edit.py:313 +#: dcim/forms/bulk_edit.py:857 dcim/forms/bulk_import.py:93 +#: dcim/forms/filtersets.py:73 dcim/forms/filtersets.py:185 +#: dcim/forms/filtersets.py:211 dcim/forms/filtersets.py:334 +#: dcim/forms/filtersets.py:425 dcim/forms/filtersets.py:739 +#: dcim/forms/filtersets.py:983 dcim/forms/filtersets.py:1013 +#: dcim/forms/filtersets.py:1097 dcim/forms/filtersets.py:1136 +#: dcim/forms/filtersets.py:1576 dcim/forms/filtersets.py:1600 +#: dcim/forms/filtersets.py:1624 dcim/forms/model_forms.py:112 +#: dcim/forms/object_create.py:375 dcim/tables/devices.py:143 +#: dcim/tables/sites.py:85 extras/filtersets.py:503 +#: ipam/forms/bulk_edit.py:208 ipam/forms/bulk_edit.py:474 +#: ipam/forms/filtersets.py:217 ipam/forms/filtersets.py:422 +#: ipam/forms/filtersets.py:475 templates/dcim/device.html:18 +#: templates/dcim/rack.html:16 templates/dcim/rackreservation.html:22 +#: templates/dcim/region.html:26 templates/dcim/site.html:31 +#: templates/ipam/prefix.html:49 templates/ipam/vlan.html:16 +#: virtualization/forms/bulk_edit.py:81 virtualization/forms/filtersets.py:59 +#: virtualization/forms/filtersets.py:133 +#: virtualization/forms/model_forms.py:92 vpn/forms/filtersets.py:257 msgid "Region" msgstr "Region" -#: netbox/circuits/forms/filtersets.py:42 -#: netbox/circuits/forms/filtersets.py:162 netbox/dcim/forms/bulk_edit.py:321 -#: netbox/dcim/forms/bulk_edit.py:865 netbox/dcim/forms/filtersets.py:78 -#: netbox/dcim/forms/filtersets.py:190 netbox/dcim/forms/filtersets.py:216 -#: netbox/dcim/forms/filtersets.py:347 netbox/dcim/forms/filtersets.py:430 -#: netbox/dcim/forms/filtersets.py:744 netbox/dcim/forms/filtersets.py:988 -#: netbox/dcim/forms/filtersets.py:1102 netbox/dcim/forms/filtersets.py:1141 -#: netbox/dcim/forms/object_create.py:383 netbox/extras/filtersets.py:520 -#: netbox/ipam/forms/bulk_edit.py:212 netbox/ipam/forms/bulk_edit.py:448 -#: netbox/ipam/forms/bulk_edit.py:524 netbox/ipam/forms/filtersets.py:222 -#: netbox/ipam/forms/filtersets.py:427 netbox/ipam/forms/filtersets.py:480 -#: netbox/virtualization/forms/bulk_edit.py:86 -#: netbox/virtualization/forms/filtersets.py:69 -#: netbox/virtualization/forms/filtersets.py:138 -#: netbox/virtualization/forms/model_forms.py:98 +#: circuits/forms/filtersets.py:42 circuits/forms/filtersets.py:162 +#: dcim/forms/bulk_edit.py:321 dcim/forms/bulk_edit.py:865 +#: dcim/forms/filtersets.py:78 dcim/forms/filtersets.py:190 +#: dcim/forms/filtersets.py:216 dcim/forms/filtersets.py:347 +#: dcim/forms/filtersets.py:430 dcim/forms/filtersets.py:744 +#: dcim/forms/filtersets.py:988 dcim/forms/filtersets.py:1102 +#: dcim/forms/filtersets.py:1141 dcim/forms/object_create.py:383 +#: extras/filtersets.py:520 ipam/forms/bulk_edit.py:213 +#: ipam/forms/bulk_edit.py:479 ipam/forms/filtersets.py:222 +#: ipam/forms/filtersets.py:427 ipam/forms/filtersets.py:480 +#: virtualization/forms/bulk_edit.py:86 virtualization/forms/filtersets.py:69 +#: virtualization/forms/filtersets.py:138 +#: virtualization/forms/model_forms.py:98 msgid "Site group" msgstr "Grupa terenów" -#: netbox/circuits/forms/filtersets.py:65 -#: netbox/circuits/forms/filtersets.py:83 -#: netbox/circuits/forms/filtersets.py:102 -#: netbox/circuits/forms/filtersets.py:117 netbox/core/forms/filtersets.py:67 -#: netbox/core/forms/filtersets.py:135 netbox/dcim/forms/bulk_edit.py:828 -#: netbox/dcim/forms/filtersets.py:172 netbox/dcim/forms/filtersets.py:204 -#: netbox/dcim/forms/filtersets.py:915 netbox/dcim/forms/filtersets.py:1007 -#: netbox/dcim/forms/filtersets.py:1131 netbox/dcim/forms/filtersets.py:1239 -#: netbox/dcim/forms/filtersets.py:1263 netbox/dcim/forms/filtersets.py:1288 -#: netbox/dcim/forms/filtersets.py:1307 netbox/dcim/forms/filtersets.py:1327 -#: netbox/dcim/forms/filtersets.py:1441 netbox/dcim/forms/filtersets.py:1465 -#: netbox/dcim/forms/filtersets.py:1489 netbox/dcim/forms/filtersets.py:1507 -#: netbox/dcim/forms/filtersets.py:1523 netbox/extras/forms/bulk_edit.py:90 -#: netbox/extras/forms/filtersets.py:44 netbox/extras/forms/filtersets.py:134 -#: netbox/extras/forms/filtersets.py:165 netbox/extras/forms/filtersets.py:205 -#: netbox/extras/forms/filtersets.py:221 netbox/extras/forms/filtersets.py:252 -#: netbox/extras/forms/filtersets.py:276 netbox/extras/forms/filtersets.py:441 -#: netbox/ipam/forms/filtersets.py:99 netbox/ipam/forms/filtersets.py:266 -#: netbox/ipam/forms/filtersets.py:307 netbox/ipam/forms/filtersets.py:382 -#: netbox/ipam/forms/filtersets.py:468 netbox/ipam/forms/filtersets.py:527 -#: netbox/ipam/forms/filtersets.py:545 netbox/netbox/tables/tables.py:256 -#: netbox/virtualization/forms/filtersets.py:45 -#: netbox/virtualization/forms/filtersets.py:103 -#: netbox/virtualization/forms/filtersets.py:198 -#: netbox/virtualization/forms/filtersets.py:243 -#: netbox/vpn/forms/filtersets.py:213 netbox/wireless/forms/bulk_edit.py:150 -#: netbox/wireless/forms/filtersets.py:34 -#: netbox/wireless/forms/filtersets.py:74 +#: circuits/forms/filtersets.py:65 circuits/forms/filtersets.py:83 +#: circuits/forms/filtersets.py:102 circuits/forms/filtersets.py:117 +#: core/forms/filtersets.py:67 core/forms/filtersets.py:135 +#: dcim/forms/bulk_edit.py:828 dcim/forms/filtersets.py:172 +#: dcim/forms/filtersets.py:204 dcim/forms/filtersets.py:915 +#: dcim/forms/filtersets.py:1007 dcim/forms/filtersets.py:1131 +#: dcim/forms/filtersets.py:1239 dcim/forms/filtersets.py:1263 +#: dcim/forms/filtersets.py:1288 dcim/forms/filtersets.py:1307 +#: dcim/forms/filtersets.py:1327 dcim/forms/filtersets.py:1441 +#: dcim/forms/filtersets.py:1465 dcim/forms/filtersets.py:1489 +#: dcim/forms/filtersets.py:1507 dcim/forms/filtersets.py:1523 +#: extras/forms/bulk_edit.py:90 extras/forms/filtersets.py:44 +#: extras/forms/filtersets.py:134 extras/forms/filtersets.py:165 +#: extras/forms/filtersets.py:205 extras/forms/filtersets.py:221 +#: extras/forms/filtersets.py:252 extras/forms/filtersets.py:276 +#: extras/forms/filtersets.py:441 ipam/forms/filtersets.py:99 +#: ipam/forms/filtersets.py:266 ipam/forms/filtersets.py:307 +#: ipam/forms/filtersets.py:382 ipam/forms/filtersets.py:468 +#: ipam/forms/filtersets.py:527 ipam/forms/filtersets.py:545 +#: netbox/tables/tables.py:256 virtualization/forms/filtersets.py:45 +#: virtualization/forms/filtersets.py:103 +#: virtualization/forms/filtersets.py:198 +#: virtualization/forms/filtersets.py:243 vpn/forms/filtersets.py:213 +#: wireless/forms/bulk_edit.py:150 wireless/forms/filtersets.py:34 +#: wireless/forms/filtersets.py:74 msgid "Attributes" msgstr "Atrybuty" -#: netbox/circuits/forms/filtersets.py:73 -#: netbox/circuits/tables/circuits.py:63 -#: netbox/circuits/tables/providers.py:66 -#: netbox/templates/circuits/circuit.html:22 -#: netbox/templates/circuits/provideraccount.html:24 +#: circuits/forms/filtersets.py:73 circuits/tables/circuits.py:63 +#: circuits/tables/providers.py:66 templates/circuits/circuit.html:22 +#: templates/circuits/provideraccount.html:24 msgid "Account" msgstr "Konto" -#: netbox/circuits/forms/filtersets.py:217 +#: circuits/forms/filtersets.py:217 msgid "Term Side" msgstr "Strona terminowa" -#: netbox/circuits/forms/filtersets.py:250 -#: netbox/extras/forms/model_forms.py:582 netbox/ipam/forms/filtersets.py:142 -#: netbox/ipam/forms/filtersets.py:546 netbox/ipam/forms/model_forms.py:323 -#: netbox/templates/extras/configcontext.html:60 -#: netbox/templates/ipam/ipaddress.html:59 -#: netbox/templates/ipam/vlan_edit.html:30 -#: netbox/tenancy/forms/filtersets.py:87 netbox/users/forms/model_forms.py:314 +#: circuits/forms/filtersets.py:250 extras/forms/model_forms.py:582 +#: ipam/forms/filtersets.py:142 ipam/forms/filtersets.py:546 +#: ipam/forms/model_forms.py:323 templates/extras/configcontext.html:60 +#: templates/ipam/ipaddress.html:59 templates/ipam/vlan_edit.html:30 +#: tenancy/forms/filtersets.py:87 users/forms/model_forms.py:314 msgid "Assignment" msgstr "Zlecenie" -#: netbox/circuits/forms/filtersets.py:265 -#: netbox/circuits/forms/model_forms.py:195 -#: netbox/circuits/tables/circuits.py:155 netbox/dcim/forms/bulk_edit.py:117 -#: netbox/dcim/forms/bulk_import.py:100 netbox/dcim/forms/model_forms.py:117 -#: netbox/dcim/tables/sites.py:89 netbox/extras/forms/filtersets.py:480 -#: netbox/ipam/filtersets.py:999 netbox/ipam/forms/bulk_edit.py:538 -#: netbox/ipam/forms/bulk_import.py:436 netbox/ipam/forms/model_forms.py:528 -#: netbox/ipam/tables/fhrp.py:67 netbox/ipam/tables/vlans.py:122 -#: netbox/ipam/tables/vlans.py:226 -#: netbox/templates/circuits/circuitgroupassignment.html:22 -#: netbox/templates/dcim/interface.html:284 netbox/templates/dcim/site.html:37 -#: netbox/templates/ipam/inc/panels/fhrp_groups.html:23 -#: netbox/templates/ipam/vlan.html:27 netbox/templates/tenancy/contact.html:21 -#: netbox/templates/tenancy/tenant.html:20 netbox/templates/users/group.html:6 -#: netbox/templates/users/group.html:14 -#: netbox/templates/virtualization/cluster.html:29 -#: netbox/templates/vpn/tunnel.html:29 -#: netbox/templates/wireless/wirelesslan.html:18 -#: netbox/tenancy/forms/bulk_edit.py:43 netbox/tenancy/forms/bulk_edit.py:94 -#: netbox/tenancy/forms/bulk_import.py:40 -#: netbox/tenancy/forms/bulk_import.py:81 -#: netbox/tenancy/forms/filtersets.py:48 netbox/tenancy/forms/filtersets.py:78 -#: netbox/tenancy/forms/filtersets.py:97 -#: netbox/tenancy/forms/model_forms.py:45 -#: netbox/tenancy/forms/model_forms.py:97 -#: netbox/tenancy/forms/model_forms.py:122 -#: netbox/tenancy/tables/contacts.py:60 netbox/tenancy/tables/contacts.py:107 -#: netbox/tenancy/tables/tenants.py:42 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 -#: netbox/virtualization/forms/bulk_edit.py:65 -#: netbox/virtualization/forms/bulk_import.py:47 -#: netbox/virtualization/forms/filtersets.py:85 -#: netbox/virtualization/forms/model_forms.py:66 -#: netbox/virtualization/tables/clusters.py:70 -#: netbox/vpn/forms/bulk_edit.py:112 netbox/vpn/forms/bulk_import.py:158 -#: netbox/vpn/forms/filtersets.py:116 netbox/vpn/tables/crypto.py:31 -#: netbox/vpn/tables/tunnels.py:44 netbox/wireless/forms/bulk_edit.py:48 -#: netbox/wireless/forms/bulk_import.py:36 -#: netbox/wireless/forms/filtersets.py:46 -#: netbox/wireless/forms/model_forms.py:40 -#: netbox/wireless/tables/wirelesslan.py:48 +#: circuits/forms/filtersets.py:265 circuits/forms/model_forms.py:195 +#: circuits/tables/circuits.py:155 dcim/forms/bulk_edit.py:117 +#: dcim/forms/bulk_import.py:100 dcim/forms/model_forms.py:117 +#: dcim/tables/sites.py:89 extras/forms/filtersets.py:480 +#: ipam/filtersets.py:999 ipam/forms/bulk_edit.py:493 +#: ipam/forms/bulk_import.py:436 ipam/forms/model_forms.py:528 +#: ipam/tables/fhrp.py:67 ipam/tables/vlans.py:122 ipam/tables/vlans.py:226 +#: templates/circuits/circuitgroupassignment.html:22 +#: templates/dcim/interface.html:284 templates/dcim/site.html:37 +#: templates/ipam/inc/panels/fhrp_groups.html:23 templates/ipam/vlan.html:27 +#: templates/tenancy/contact.html:21 templates/tenancy/tenant.html:20 +#: templates/users/group.html:6 templates/users/group.html:14 +#: templates/virtualization/cluster.html:29 templates/vpn/tunnel.html:29 +#: templates/wireless/wirelesslan.html:18 tenancy/forms/bulk_edit.py:43 +#: tenancy/forms/bulk_edit.py:94 tenancy/forms/bulk_import.py:40 +#: tenancy/forms/bulk_import.py:81 tenancy/forms/filtersets.py:48 +#: tenancy/forms/filtersets.py:78 tenancy/forms/filtersets.py:97 +#: tenancy/forms/model_forms.py:45 tenancy/forms/model_forms.py:97 +#: tenancy/forms/model_forms.py:122 tenancy/tables/contacts.py:60 +#: tenancy/tables/contacts.py:107 tenancy/tables/tenants.py:42 +#: users/filtersets.py:62 users/filtersets.py:185 users/forms/filtersets.py:31 +#: users/forms/filtersets.py:37 users/forms/filtersets.py:79 +#: virtualization/forms/bulk_edit.py:65 virtualization/forms/bulk_import.py:47 +#: virtualization/forms/filtersets.py:85 +#: virtualization/forms/model_forms.py:66 virtualization/tables/clusters.py:70 +#: vpn/forms/bulk_edit.py:112 vpn/forms/bulk_import.py:158 +#: vpn/forms/filtersets.py:116 vpn/tables/crypto.py:31 +#: vpn/tables/tunnels.py:44 wireless/forms/bulk_edit.py:48 +#: wireless/forms/bulk_import.py:36 wireless/forms/filtersets.py:46 +#: wireless/forms/model_forms.py:40 wireless/tables/wirelesslan.py:48 msgid "Group" msgstr "Grupa" -#: netbox/circuits/forms/model_forms.py:182 -#: netbox/templates/circuits/circuitgroup.html:25 +#: circuits/forms/model_forms.py:182 templates/circuits/circuitgroup.html:25 msgid "Circuit Group" msgstr "Grupa obwodów" -#: netbox/circuits/models/circuits.py:27 netbox/dcim/models/cables.py:67 -#: netbox/dcim/models/device_component_templates.py:517 -#: netbox/dcim/models/device_component_templates.py:617 -#: netbox/dcim/models/device_components.py:975 -#: netbox/dcim/models/device_components.py:1049 -#: netbox/dcim/models/device_components.py:1204 -#: netbox/dcim/models/devices.py:479 netbox/dcim/models/racks.py:224 -#: netbox/extras/models/tags.py:28 +#: circuits/models/circuits.py:27 dcim/models/cables.py:67 +#: dcim/models/device_component_templates.py:517 +#: dcim/models/device_component_templates.py:617 +#: dcim/models/device_components.py:975 dcim/models/device_components.py:1049 +#: dcim/models/device_components.py:1204 dcim/models/devices.py:479 +#: dcim/models/racks.py:224 extras/models/tags.py:28 msgid "color" msgstr "kolor" -#: netbox/circuits/models/circuits.py:36 +#: circuits/models/circuits.py:36 msgid "circuit type" msgstr "typ obwodu" -#: netbox/circuits/models/circuits.py:37 +#: circuits/models/circuits.py:37 msgid "circuit types" msgstr "typy obwodów" -#: netbox/circuits/models/circuits.py:48 +#: circuits/models/circuits.py:48 msgid "circuit ID" msgstr "ID obwodu" -#: netbox/circuits/models/circuits.py:49 +#: circuits/models/circuits.py:49 msgid "Unique circuit ID" msgstr "Unikalny identyfikator obwodu" -#: netbox/circuits/models/circuits.py:69 netbox/core/models/data.py:52 -#: netbox/core/models/jobs.py:84 netbox/dcim/models/cables.py:49 -#: netbox/dcim/models/devices.py:653 netbox/dcim/models/devices.py:1173 -#: netbox/dcim/models/devices.py:1399 netbox/dcim/models/power.py:96 -#: netbox/dcim/models/racks.py:297 netbox/dcim/models/sites.py:154 -#: netbox/dcim/models/sites.py:266 netbox/ipam/models/ip.py:253 -#: netbox/ipam/models/ip.py:522 netbox/ipam/models/ip.py:730 -#: netbox/ipam/models/vlans.py:195 netbox/virtualization/models/clusters.py:74 -#: netbox/virtualization/models/virtualmachines.py:84 -#: netbox/vpn/models/tunnels.py:40 netbox/wireless/models.py:95 -#: netbox/wireless/models.py:159 +#: circuits/models/circuits.py:69 core/models/data.py:52 +#: core/models/jobs.py:84 dcim/models/cables.py:49 dcim/models/devices.py:653 +#: dcim/models/devices.py:1173 dcim/models/devices.py:1399 +#: dcim/models/power.py:96 dcim/models/racks.py:297 dcim/models/sites.py:154 +#: dcim/models/sites.py:266 ipam/models/ip.py:253 ipam/models/ip.py:522 +#: ipam/models/ip.py:730 ipam/models/vlans.py:195 +#: virtualization/models/clusters.py:74 +#: virtualization/models/virtualmachines.py:84 vpn/models/tunnels.py:40 +#: wireless/models.py:95 wireless/models.py:159 msgid "status" msgstr "status" -#: netbox/circuits/models/circuits.py:84 netbox/templates/core/plugin.html:19 +#: circuits/models/circuits.py:84 templates/core/plugin.html:20 msgid "installed" msgstr "zainstalowany" -#: netbox/circuits/models/circuits.py:89 +#: circuits/models/circuits.py:89 msgid "terminates" msgstr "kończy się" -#: netbox/circuits/models/circuits.py:94 +#: circuits/models/circuits.py:94 msgid "commit rate (Kbps)" msgstr "szybkość zatwierdzania (Kbps)" -#: netbox/circuits/models/circuits.py:95 +#: circuits/models/circuits.py:95 msgid "Committed rate" msgstr "Stopa zobowiązań" -#: netbox/circuits/models/circuits.py:137 +#: circuits/models/circuits.py:137 msgid "circuit" msgstr "obwód" -#: netbox/circuits/models/circuits.py:138 +#: circuits/models/circuits.py:138 msgid "circuits" msgstr "obwodów" -#: netbox/circuits/models/circuits.py:170 +#: circuits/models/circuits.py:170 msgid "circuit group" msgstr "grupa obwodów" -#: netbox/circuits/models/circuits.py:171 +#: circuits/models/circuits.py:171 msgid "circuit groups" msgstr "grupy obwodów" -#: netbox/circuits/models/circuits.py:195 netbox/ipam/models/fhrp.py:93 -#: netbox/tenancy/models/contacts.py:134 +#: circuits/models/circuits.py:195 ipam/models/fhrp.py:93 +#: tenancy/models/contacts.py:134 msgid "priority" msgstr "priorytet" -#: netbox/circuits/models/circuits.py:213 +#: circuits/models/circuits.py:213 msgid "Circuit group assignment" msgstr "Przypisanie grupy obwodów" -#: netbox/circuits/models/circuits.py:214 +#: circuits/models/circuits.py:214 msgid "Circuit group assignments" msgstr "Przydziały grup obwodowych" -#: netbox/circuits/models/circuits.py:240 +#: circuits/models/circuits.py:240 msgid "termination" msgstr "wypowiedzenie" -#: netbox/circuits/models/circuits.py:257 +#: circuits/models/circuits.py:257 msgid "port speed (Kbps)" msgstr "Prędkość portu (Kbps)" -#: netbox/circuits/models/circuits.py:260 +#: circuits/models/circuits.py:260 msgid "Physical circuit speed" msgstr "Prędkość obwodu fizycznego" -#: netbox/circuits/models/circuits.py:265 +#: circuits/models/circuits.py:265 msgid "upstream speed (Kbps)" msgstr "prędkość przed strumieniem (Kbps)" -#: netbox/circuits/models/circuits.py:266 +#: circuits/models/circuits.py:266 msgid "Upstream speed, if different from port speed" msgstr "Prędkość poprzedzająca, jeśli różni się od prędkości portu" -#: netbox/circuits/models/circuits.py:271 +#: circuits/models/circuits.py:271 msgid "cross-connect ID" msgstr "identyfikator połączenia krzyżowego" -#: netbox/circuits/models/circuits.py:272 +#: circuits/models/circuits.py:272 msgid "ID of the local cross-connect" msgstr "Identyfikator lokalnego połączenia krzyżowego" -#: netbox/circuits/models/circuits.py:277 +#: circuits/models/circuits.py:277 msgid "patch panel/port(s)" msgstr "panel krosowy/port (y)" -#: netbox/circuits/models/circuits.py:278 +#: circuits/models/circuits.py:278 msgid "Patch panel ID and port number(s)" msgstr "Identyfikator panelu krosowego i numer (y) portu" -#: netbox/circuits/models/circuits.py:281 -#: netbox/dcim/models/device_component_templates.py:61 -#: netbox/dcim/models/device_components.py:68 netbox/dcim/models/racks.py:685 -#: netbox/extras/models/configs.py:45 netbox/extras/models/configs.py:219 -#: netbox/extras/models/customfields.py:125 netbox/extras/models/models.py:61 -#: netbox/extras/models/models.py:158 netbox/extras/models/models.py:396 -#: netbox/extras/models/models.py:511 -#: netbox/extras/models/notifications.py:131 -#: netbox/extras/models/staging.py:31 netbox/extras/models/tags.py:32 -#: netbox/netbox/models/__init__.py:110 netbox/netbox/models/__init__.py:145 -#: netbox/netbox/models/__init__.py:191 netbox/users/models/permissions.py:24 -#: netbox/users/models/tokens.py:57 netbox/users/models/users.py:33 -#: netbox/virtualization/models/virtualmachines.py:289 +#: circuits/models/circuits.py:281 +#: dcim/models/device_component_templates.py:61 +#: dcim/models/device_components.py:68 dcim/models/racks.py:685 +#: extras/models/configs.py:45 extras/models/configs.py:219 +#: extras/models/customfields.py:125 extras/models/models.py:61 +#: extras/models/models.py:158 extras/models/models.py:396 +#: extras/models/models.py:511 extras/models/notifications.py:131 +#: extras/models/staging.py:31 extras/models/tags.py:32 +#: netbox/models/__init__.py:110 netbox/models/__init__.py:145 +#: netbox/models/__init__.py:191 users/models/permissions.py:24 +#: users/models/tokens.py:57 users/models/users.py:33 +#: virtualization/models/virtualmachines.py:289 msgid "description" msgstr "opis" -#: netbox/circuits/models/circuits.py:294 +#: circuits/models/circuits.py:294 msgid "circuit termination" msgstr "zakończenie obwodu" -#: netbox/circuits/models/circuits.py:295 +#: circuits/models/circuits.py:295 msgid "circuit terminations" msgstr "zakończenia obwodu" -#: netbox/circuits/models/circuits.py:308 +#: circuits/models/circuits.py:308 msgid "" "A circuit termination must attach to either a site or a provider network." msgstr "Zakończenie obwodu musi być podłączone do witryny lub sieci dostawcy." -#: netbox/circuits/models/circuits.py:310 +#: circuits/models/circuits.py:310 msgid "" "A circuit termination cannot attach to both a site and a provider network." msgstr "" "Zakończenie obwodu nie może połączyć się zarówno z witryną, jak i siecią " "dostawcy." -#: netbox/circuits/models/providers.py:22 -#: netbox/circuits/models/providers.py:66 -#: netbox/circuits/models/providers.py:104 netbox/core/models/data.py:39 -#: netbox/core/models/jobs.py:45 -#: netbox/dcim/models/device_component_templates.py:43 -#: netbox/dcim/models/device_components.py:53 -#: netbox/dcim/models/devices.py:593 netbox/dcim/models/devices.py:1330 -#: netbox/dcim/models/devices.py:1395 netbox/dcim/models/power.py:39 -#: netbox/dcim/models/power.py:92 netbox/dcim/models/racks.py:262 -#: netbox/dcim/models/sites.py:138 netbox/extras/models/configs.py:36 -#: netbox/extras/models/configs.py:215 netbox/extras/models/customfields.py:92 -#: netbox/extras/models/models.py:56 netbox/extras/models/models.py:153 -#: netbox/extras/models/models.py:296 netbox/extras/models/models.py:392 -#: netbox/extras/models/models.py:501 netbox/extras/models/models.py:596 -#: netbox/extras/models/notifications.py:126 -#: netbox/extras/models/scripts.py:30 netbox/extras/models/staging.py:26 -#: netbox/ipam/models/asns.py:18 netbox/ipam/models/fhrp.py:25 -#: netbox/ipam/models/services.py:52 netbox/ipam/models/services.py:88 -#: netbox/ipam/models/vlans.py:36 netbox/ipam/models/vlans.py:184 -#: netbox/ipam/models/vrfs.py:22 netbox/ipam/models/vrfs.py:79 -#: netbox/netbox/models/__init__.py:137 netbox/netbox/models/__init__.py:181 -#: netbox/tenancy/models/contacts.py:64 netbox/tenancy/models/tenants.py:20 -#: netbox/tenancy/models/tenants.py:45 netbox/users/models/permissions.py:20 -#: netbox/users/models/users.py:28 netbox/virtualization/models/clusters.py:57 -#: netbox/virtualization/models/virtualmachines.py:72 -#: netbox/virtualization/models/virtualmachines.py:279 -#: netbox/vpn/models/crypto.py:24 netbox/vpn/models/crypto.py:71 -#: netbox/vpn/models/crypto.py:131 netbox/vpn/models/crypto.py:183 -#: netbox/vpn/models/crypto.py:221 netbox/vpn/models/l2vpn.py:22 -#: netbox/vpn/models/tunnels.py:35 netbox/wireless/models.py:51 +#: circuits/models/providers.py:22 circuits/models/providers.py:66 +#: circuits/models/providers.py:104 core/models/data.py:39 +#: core/models/jobs.py:45 dcim/models/device_component_templates.py:43 +#: dcim/models/device_components.py:53 dcim/models/devices.py:593 +#: dcim/models/devices.py:1330 dcim/models/devices.py:1395 +#: dcim/models/power.py:39 dcim/models/power.py:92 dcim/models/racks.py:262 +#: dcim/models/sites.py:138 extras/models/configs.py:36 +#: extras/models/configs.py:215 extras/models/customfields.py:92 +#: extras/models/models.py:56 extras/models/models.py:153 +#: extras/models/models.py:296 extras/models/models.py:392 +#: extras/models/models.py:501 extras/models/models.py:596 +#: extras/models/notifications.py:126 extras/models/scripts.py:30 +#: extras/models/staging.py:26 ipam/models/asns.py:18 ipam/models/fhrp.py:25 +#: ipam/models/services.py:52 ipam/models/services.py:88 +#: ipam/models/vlans.py:36 ipam/models/vlans.py:184 ipam/models/vrfs.py:22 +#: ipam/models/vrfs.py:79 netbox/models/__init__.py:137 +#: netbox/models/__init__.py:181 tenancy/models/contacts.py:64 +#: tenancy/models/tenants.py:20 tenancy/models/tenants.py:45 +#: users/models/permissions.py:20 users/models/users.py:28 +#: virtualization/models/clusters.py:57 +#: virtualization/models/virtualmachines.py:72 +#: virtualization/models/virtualmachines.py:279 vpn/models/crypto.py:24 +#: vpn/models/crypto.py:71 vpn/models/crypto.py:131 vpn/models/crypto.py:183 +#: vpn/models/crypto.py:221 vpn/models/l2vpn.py:22 vpn/models/tunnels.py:35 +#: wireless/models.py:51 msgid "name" msgstr "nazwa" -#: netbox/circuits/models/providers.py:25 +#: circuits/models/providers.py:25 msgid "Full name of the provider" msgstr "Pełna nazwa dostawcy" -#: netbox/circuits/models/providers.py:28 netbox/dcim/models/devices.py:86 -#: netbox/dcim/models/racks.py:137 netbox/dcim/models/sites.py:149 -#: netbox/extras/models/models.py:506 netbox/ipam/models/asns.py:23 -#: netbox/ipam/models/vlans.py:40 netbox/netbox/models/__init__.py:141 -#: netbox/netbox/models/__init__.py:186 netbox/tenancy/models/tenants.py:25 -#: netbox/tenancy/models/tenants.py:49 netbox/vpn/models/l2vpn.py:27 -#: netbox/wireless/models.py:56 +#: circuits/models/providers.py:28 dcim/models/devices.py:86 +#: dcim/models/racks.py:137 dcim/models/sites.py:149 +#: extras/models/models.py:506 ipam/models/asns.py:23 ipam/models/vlans.py:40 +#: netbox/models/__init__.py:141 netbox/models/__init__.py:186 +#: tenancy/models/tenants.py:25 tenancy/models/tenants.py:49 +#: vpn/models/l2vpn.py:27 wireless/models.py:56 msgid "slug" msgstr "identyfikator" -#: netbox/circuits/models/providers.py:42 +#: circuits/models/providers.py:42 msgid "provider" msgstr "dostawca" -#: netbox/circuits/models/providers.py:43 +#: circuits/models/providers.py:43 msgid "providers" msgstr "dostawcy" -#: netbox/circuits/models/providers.py:63 +#: circuits/models/providers.py:63 msgid "account ID" msgstr "Identyfikator konta" -#: netbox/circuits/models/providers.py:86 +#: circuits/models/providers.py:86 msgid "provider account" msgstr "konto dostawcy" -#: netbox/circuits/models/providers.py:87 +#: circuits/models/providers.py:87 msgid "provider accounts" msgstr "konta dostawcy" -#: netbox/circuits/models/providers.py:115 +#: circuits/models/providers.py:115 msgid "service ID" msgstr "Identyfikator usługi" -#: netbox/circuits/models/providers.py:126 +#: circuits/models/providers.py:126 msgid "provider network" msgstr "sieć dostawców" -#: netbox/circuits/models/providers.py:127 +#: circuits/models/providers.py:127 msgid "provider networks" msgstr "sieci dostawców" -#: netbox/circuits/tables/circuits.py:32 -#: netbox/circuits/tables/circuits.py:132 -#: netbox/circuits/tables/providers.py:18 -#: netbox/circuits/tables/providers.py:69 -#: netbox/circuits/tables/providers.py:99 netbox/core/tables/data.py:16 -#: netbox/core/tables/jobs.py:14 netbox/core/tables/plugins.py:44 -#: netbox/core/tables/tasks.py:11 netbox/core/tables/tasks.py:115 -#: netbox/dcim/forms/filtersets.py:63 netbox/dcim/forms/object_create.py:43 -#: netbox/dcim/tables/devices.py:52 netbox/dcim/tables/devices.py:92 -#: netbox/dcim/tables/devices.py:134 netbox/dcim/tables/devices.py:289 -#: netbox/dcim/tables/devices.py:392 netbox/dcim/tables/devices.py:433 -#: netbox/dcim/tables/devices.py:482 netbox/dcim/tables/devices.py:531 -#: netbox/dcim/tables/devices.py:648 netbox/dcim/tables/devices.py:731 -#: netbox/dcim/tables/devices.py:778 netbox/dcim/tables/devices.py:841 -#: netbox/dcim/tables/devices.py:911 netbox/dcim/tables/devices.py:974 -#: netbox/dcim/tables/devices.py:994 netbox/dcim/tables/devices.py:1023 -#: netbox/dcim/tables/devices.py:1053 netbox/dcim/tables/devicetypes.py:31 -#: netbox/dcim/tables/power.py:22 netbox/dcim/tables/power.py:62 -#: netbox/dcim/tables/racks.py:24 netbox/dcim/tables/racks.py:113 -#: netbox/dcim/tables/sites.py:24 netbox/dcim/tables/sites.py:51 -#: netbox/dcim/tables/sites.py:78 netbox/dcim/tables/sites.py:130 -#: netbox/extras/forms/filtersets.py:213 netbox/extras/tables/tables.py:58 -#: netbox/extras/tables/tables.py:122 netbox/extras/tables/tables.py:155 -#: netbox/extras/tables/tables.py:180 netbox/extras/tables/tables.py:246 -#: netbox/extras/tables/tables.py:361 netbox/extras/tables/tables.py:378 -#: netbox/extras/tables/tables.py:401 netbox/extras/tables/tables.py:439 -#: netbox/extras/tables/tables.py:491 netbox/extras/tables/tables.py:514 -#: netbox/ipam/forms/bulk_edit.py:406 netbox/ipam/forms/filtersets.py:386 -#: netbox/ipam/tables/asn.py:16 netbox/ipam/tables/ip.py:85 -#: netbox/ipam/tables/ip.py:160 netbox/ipam/tables/services.py:15 -#: netbox/ipam/tables/services.py:40 netbox/ipam/tables/vlans.py:64 -#: netbox/ipam/tables/vlans.py:114 netbox/ipam/tables/vrfs.py:26 -#: netbox/ipam/tables/vrfs.py:68 -#: netbox/templates/circuits/circuitgroup.html:28 -#: netbox/templates/circuits/circuittype.html:22 -#: netbox/templates/circuits/provideraccount.html:28 -#: netbox/templates/circuits/providernetwork.html:24 -#: netbox/templates/core/datasource.html:34 netbox/templates/core/job.html:44 -#: netbox/templates/core/plugin.html:53 -#: netbox/templates/core/rq_worker.html:43 -#: netbox/templates/dcim/consoleport.html:28 -#: netbox/templates/dcim/consoleserverport.html:28 -#: netbox/templates/dcim/devicebay.html:24 -#: netbox/templates/dcim/devicerole.html:26 -#: netbox/templates/dcim/frontport.html:28 -#: netbox/templates/dcim/inc/interface_vlans_table.html:5 -#: netbox/templates/dcim/inc/panels/inventory_items.html:18 -#: netbox/templates/dcim/interface.html:38 -#: netbox/templates/dcim/interface.html:165 -#: netbox/templates/dcim/inventoryitem.html:28 -#: netbox/templates/dcim/inventoryitemrole.html:18 -#: netbox/templates/dcim/location.html:29 -#: netbox/templates/dcim/manufacturer.html:36 -#: netbox/templates/dcim/modulebay.html:30 -#: netbox/templates/dcim/platform.html:29 -#: netbox/templates/dcim/poweroutlet.html:28 -#: netbox/templates/dcim/powerport.html:28 -#: netbox/templates/dcim/rackrole.html:22 -#: netbox/templates/dcim/rearport.html:28 netbox/templates/dcim/region.html:29 -#: netbox/templates/dcim/sitegroup.html:29 -#: netbox/templates/dcim/virtualdevicecontext.html:18 -#: netbox/templates/extras/configcontext.html:13 -#: netbox/templates/extras/configtemplate.html:13 -#: netbox/templates/extras/customfield.html:13 -#: netbox/templates/extras/customlink.html:13 -#: netbox/templates/extras/eventrule.html:13 -#: netbox/templates/extras/exporttemplate.html:15 -#: netbox/templates/extras/notificationgroup.html:14 -#: netbox/templates/extras/savedfilter.html:13 -#: netbox/templates/extras/script_list.html:44 -#: netbox/templates/extras/tag.html:14 netbox/templates/extras/webhook.html:13 -#: netbox/templates/ipam/asnrange.html:15 -#: netbox/templates/ipam/fhrpgroup.html:30 netbox/templates/ipam/rir.html:22 -#: netbox/templates/ipam/role.html:22 -#: netbox/templates/ipam/routetarget.html:13 -#: netbox/templates/ipam/service.html:24 -#: netbox/templates/ipam/servicetemplate.html:15 -#: netbox/templates/ipam/vlan.html:35 netbox/templates/ipam/vlangroup.html:30 -#: netbox/templates/tenancy/contact.html:25 -#: netbox/templates/tenancy/contactgroup.html:21 -#: netbox/templates/tenancy/contactrole.html:18 -#: netbox/templates/tenancy/tenantgroup.html:29 -#: netbox/templates/users/group.html:17 -#: netbox/templates/users/objectpermission.html:17 -#: netbox/templates/virtualization/cluster.html:13 -#: netbox/templates/virtualization/clustergroup.html:22 -#: netbox/templates/virtualization/clustertype.html:22 -#: netbox/templates/virtualization/virtualdisk.html:25 -#: netbox/templates/virtualization/virtualmachine.html:15 -#: netbox/templates/virtualization/vminterface.html:25 -#: netbox/templates/vpn/ikepolicy.html:13 -#: netbox/templates/vpn/ikeproposal.html:13 -#: netbox/templates/vpn/ipsecpolicy.html:13 -#: netbox/templates/vpn/ipsecprofile.html:13 -#: netbox/templates/vpn/ipsecprofile.html:36 -#: netbox/templates/vpn/ipsecprofile.html:69 -#: netbox/templates/vpn/ipsecproposal.html:13 -#: netbox/templates/vpn/l2vpn.html:14 netbox/templates/vpn/tunnel.html:21 -#: netbox/templates/vpn/tunnelgroup.html:26 -#: netbox/templates/wireless/wirelesslangroup.html:29 -#: netbox/tenancy/tables/contacts.py:19 netbox/tenancy/tables/contacts.py:41 -#: netbox/tenancy/tables/contacts.py:56 netbox/tenancy/tables/tenants.py:16 -#: netbox/tenancy/tables/tenants.py:38 netbox/users/tables.py:62 -#: netbox/users/tables.py:76 netbox/virtualization/forms/bulk_create.py:20 -#: netbox/virtualization/forms/object_create.py:13 -#: netbox/virtualization/forms/object_create.py:23 -#: netbox/virtualization/tables/clusters.py:17 -#: netbox/virtualization/tables/clusters.py:39 -#: netbox/virtualization/tables/clusters.py:62 -#: netbox/virtualization/tables/virtualmachines.py:55 -#: netbox/virtualization/tables/virtualmachines.py:139 -#: netbox/virtualization/tables/virtualmachines.py:194 -#: netbox/vpn/tables/crypto.py:18 netbox/vpn/tables/crypto.py:57 -#: netbox/vpn/tables/crypto.py:93 netbox/vpn/tables/crypto.py:129 -#: netbox/vpn/tables/crypto.py:158 netbox/vpn/tables/l2vpn.py:23 -#: netbox/vpn/tables/tunnels.py:18 netbox/vpn/tables/tunnels.py:40 -#: netbox/wireless/tables/wirelesslan.py:18 -#: netbox/wireless/tables/wirelesslan.py:79 +#: circuits/tables/circuits.py:32 circuits/tables/circuits.py:132 +#: circuits/tables/providers.py:18 circuits/tables/providers.py:69 +#: circuits/tables/providers.py:99 core/tables/data.py:16 +#: core/tables/jobs.py:14 core/tables/plugins.py:44 core/tables/tasks.py:11 +#: core/tables/tasks.py:115 dcim/forms/filtersets.py:63 +#: dcim/forms/object_create.py:43 dcim/tables/devices.py:52 +#: dcim/tables/devices.py:92 dcim/tables/devices.py:134 +#: dcim/tables/devices.py:289 dcim/tables/devices.py:392 +#: dcim/tables/devices.py:433 dcim/tables/devices.py:482 +#: dcim/tables/devices.py:531 dcim/tables/devices.py:648 +#: dcim/tables/devices.py:731 dcim/tables/devices.py:778 +#: dcim/tables/devices.py:841 dcim/tables/devices.py:911 +#: dcim/tables/devices.py:974 dcim/tables/devices.py:994 +#: dcim/tables/devices.py:1023 dcim/tables/devices.py:1053 +#: dcim/tables/devicetypes.py:31 dcim/tables/power.py:22 +#: dcim/tables/power.py:62 dcim/tables/racks.py:24 dcim/tables/racks.py:113 +#: dcim/tables/sites.py:24 dcim/tables/sites.py:51 dcim/tables/sites.py:78 +#: dcim/tables/sites.py:130 extras/forms/filtersets.py:213 +#: extras/tables/tables.py:58 extras/tables/tables.py:122 +#: extras/tables/tables.py:155 extras/tables/tables.py:180 +#: extras/tables/tables.py:246 extras/tables/tables.py:361 +#: extras/tables/tables.py:378 extras/tables/tables.py:401 +#: extras/tables/tables.py:439 extras/tables/tables.py:491 +#: extras/tables/tables.py:514 ipam/forms/bulk_edit.py:407 +#: ipam/forms/filtersets.py:386 ipam/tables/asn.py:16 ipam/tables/ip.py:85 +#: ipam/tables/ip.py:160 ipam/tables/services.py:15 ipam/tables/services.py:40 +#: ipam/tables/vlans.py:64 ipam/tables/vlans.py:114 ipam/tables/vrfs.py:26 +#: ipam/tables/vrfs.py:68 templates/circuits/circuitgroup.html:28 +#: templates/circuits/circuittype.html:22 +#: templates/circuits/provideraccount.html:28 +#: templates/circuits/providernetwork.html:24 +#: templates/core/datasource.html:34 templates/core/job.html:44 +#: templates/core/plugin.html:54 templates/core/rq_worker.html:43 +#: templates/dcim/consoleport.html:28 templates/dcim/consoleserverport.html:28 +#: templates/dcim/devicebay.html:24 templates/dcim/devicerole.html:26 +#: templates/dcim/frontport.html:28 +#: templates/dcim/inc/interface_vlans_table.html:5 +#: templates/dcim/inc/panels/inventory_items.html:18 +#: templates/dcim/interface.html:38 templates/dcim/interface.html:165 +#: templates/dcim/inventoryitem.html:28 +#: templates/dcim/inventoryitemrole.html:18 templates/dcim/location.html:29 +#: templates/dcim/manufacturer.html:36 templates/dcim/modulebay.html:30 +#: templates/dcim/platform.html:29 templates/dcim/poweroutlet.html:28 +#: templates/dcim/powerport.html:28 templates/dcim/rackrole.html:22 +#: templates/dcim/rearport.html:28 templates/dcim/region.html:29 +#: templates/dcim/sitegroup.html:29 +#: templates/dcim/virtualdevicecontext.html:18 +#: templates/extras/configcontext.html:13 +#: templates/extras/configtemplate.html:13 +#: templates/extras/customfield.html:13 templates/extras/customlink.html:13 +#: templates/extras/eventrule.html:13 templates/extras/exporttemplate.html:15 +#: templates/extras/notificationgroup.html:14 +#: templates/extras/savedfilter.html:13 templates/extras/script_list.html:44 +#: templates/extras/tag.html:14 templates/extras/webhook.html:13 +#: templates/ipam/asnrange.html:15 templates/ipam/fhrpgroup.html:30 +#: templates/ipam/rir.html:22 templates/ipam/role.html:22 +#: templates/ipam/routetarget.html:13 templates/ipam/service.html:24 +#: templates/ipam/servicetemplate.html:15 templates/ipam/vlan.html:35 +#: templates/ipam/vlangroup.html:30 templates/tenancy/contact.html:25 +#: templates/tenancy/contactgroup.html:21 +#: templates/tenancy/contactrole.html:18 templates/tenancy/tenantgroup.html:29 +#: templates/users/group.html:17 templates/users/objectpermission.html:17 +#: templates/virtualization/cluster.html:13 +#: templates/virtualization/clustergroup.html:22 +#: templates/virtualization/clustertype.html:22 +#: templates/virtualization/virtualdisk.html:25 +#: templates/virtualization/virtualmachine.html:15 +#: templates/virtualization/vminterface.html:25 +#: templates/vpn/ikepolicy.html:13 templates/vpn/ikeproposal.html:13 +#: templates/vpn/ipsecpolicy.html:13 templates/vpn/ipsecprofile.html:13 +#: templates/vpn/ipsecprofile.html:36 templates/vpn/ipsecprofile.html:69 +#: templates/vpn/ipsecproposal.html:13 templates/vpn/l2vpn.html:14 +#: templates/vpn/tunnel.html:21 templates/vpn/tunnelgroup.html:26 +#: templates/wireless/wirelesslangroup.html:29 tenancy/tables/contacts.py:19 +#: tenancy/tables/contacts.py:41 tenancy/tables/contacts.py:56 +#: tenancy/tables/tenants.py:16 tenancy/tables/tenants.py:38 +#: users/tables.py:62 users/tables.py:76 +#: virtualization/forms/bulk_create.py:20 +#: virtualization/forms/object_create.py:13 +#: virtualization/forms/object_create.py:23 +#: virtualization/tables/clusters.py:17 virtualization/tables/clusters.py:39 +#: virtualization/tables/clusters.py:62 +#: virtualization/tables/virtualmachines.py:55 +#: virtualization/tables/virtualmachines.py:139 +#: virtualization/tables/virtualmachines.py:194 vpn/tables/crypto.py:18 +#: vpn/tables/crypto.py:57 vpn/tables/crypto.py:93 vpn/tables/crypto.py:129 +#: vpn/tables/crypto.py:158 vpn/tables/l2vpn.py:23 vpn/tables/tunnels.py:18 +#: vpn/tables/tunnels.py:40 wireless/tables/wirelesslan.py:18 +#: wireless/tables/wirelesslan.py:79 msgid "Name" msgstr "Nazwa" -#: netbox/circuits/tables/circuits.py:41 -#: netbox/circuits/tables/circuits.py:138 -#: netbox/circuits/tables/providers.py:45 -#: netbox/circuits/tables/providers.py:79 netbox/netbox/navigation/menu.py:266 -#: netbox/netbox/navigation/menu.py:270 netbox/netbox/navigation/menu.py:272 -#: netbox/templates/circuits/provider.html:57 -#: netbox/templates/circuits/provideraccount.html:44 -#: netbox/templates/circuits/providernetwork.html:50 +#: circuits/tables/circuits.py:41 circuits/tables/circuits.py:138 +#: circuits/tables/providers.py:45 circuits/tables/providers.py:79 +#: netbox/navigation/menu.py:266 netbox/navigation/menu.py:270 +#: netbox/navigation/menu.py:272 templates/circuits/provider.html:57 +#: templates/circuits/provideraccount.html:44 +#: templates/circuits/providernetwork.html:50 msgid "Circuits" msgstr "Obwody" -#: netbox/circuits/tables/circuits.py:55 -#: netbox/templates/circuits/circuit.html:26 +#: circuits/tables/circuits.py:55 templates/circuits/circuit.html:26 msgid "Circuit ID" msgstr "Identyfikator obwodu" -#: netbox/circuits/tables/circuits.py:69 -#: netbox/wireless/forms/model_forms.py:160 +#: circuits/tables/circuits.py:69 wireless/forms/model_forms.py:160 msgid "Side A" msgstr "Strona A" -#: netbox/circuits/tables/circuits.py:74 +#: circuits/tables/circuits.py:74 msgid "Side Z" msgstr "Strona Z" -#: netbox/circuits/tables/circuits.py:77 -#: netbox/templates/circuits/circuit.html:55 +#: circuits/tables/circuits.py:77 templates/circuits/circuit.html:55 msgid "Commit Rate" msgstr "Współczynnik zatwierdzania" -#: netbox/circuits/tables/circuits.py:80 -#: netbox/circuits/tables/providers.py:48 -#: netbox/circuits/tables/providers.py:82 -#: netbox/circuits/tables/providers.py:107 netbox/dcim/tables/devices.py:1036 -#: netbox/dcim/tables/devicetypes.py:92 netbox/dcim/tables/modules.py:29 -#: netbox/dcim/tables/modules.py:72 netbox/dcim/tables/power.py:39 -#: netbox/dcim/tables/power.py:96 netbox/dcim/tables/racks.py:84 -#: netbox/dcim/tables/racks.py:145 netbox/dcim/tables/racks.py:225 -#: netbox/dcim/tables/sites.py:108 netbox/extras/tables/tables.py:582 -#: netbox/ipam/tables/asn.py:69 netbox/ipam/tables/fhrp.py:34 -#: netbox/ipam/tables/ip.py:136 netbox/ipam/tables/ip.py:275 -#: netbox/ipam/tables/ip.py:329 netbox/ipam/tables/ip.py:397 -#: netbox/ipam/tables/services.py:24 netbox/ipam/tables/services.py:54 -#: netbox/ipam/tables/vlans.py:145 netbox/ipam/tables/vrfs.py:47 -#: netbox/ipam/tables/vrfs.py:72 netbox/templates/dcim/htmx/cable_edit.html:89 -#: netbox/templates/generic/bulk_edit.html:86 -#: netbox/templates/inc/panels/comments.html:5 -#: netbox/tenancy/tables/contacts.py:68 netbox/tenancy/tables/tenants.py:46 -#: netbox/utilities/forms/fields/fields.py:29 -#: netbox/virtualization/tables/clusters.py:91 -#: netbox/virtualization/tables/virtualmachines.py:82 -#: netbox/vpn/tables/crypto.py:37 netbox/vpn/tables/crypto.py:74 -#: netbox/vpn/tables/crypto.py:109 netbox/vpn/tables/crypto.py:140 -#: netbox/vpn/tables/crypto.py:173 netbox/vpn/tables/l2vpn.py:37 -#: netbox/vpn/tables/tunnels.py:61 netbox/wireless/tables/wirelesslan.py:27 -#: netbox/wireless/tables/wirelesslan.py:58 +#: circuits/tables/circuits.py:80 circuits/tables/providers.py:48 +#: circuits/tables/providers.py:82 circuits/tables/providers.py:107 +#: dcim/tables/devices.py:1036 dcim/tables/devicetypes.py:92 +#: dcim/tables/modules.py:29 dcim/tables/modules.py:72 dcim/tables/power.py:39 +#: dcim/tables/power.py:96 dcim/tables/racks.py:84 dcim/tables/racks.py:145 +#: dcim/tables/racks.py:225 dcim/tables/sites.py:108 +#: extras/tables/tables.py:582 ipam/tables/asn.py:69 ipam/tables/fhrp.py:34 +#: ipam/tables/ip.py:136 ipam/tables/ip.py:275 ipam/tables/ip.py:329 +#: ipam/tables/ip.py:397 ipam/tables/services.py:24 ipam/tables/services.py:54 +#: ipam/tables/vlans.py:145 ipam/tables/vrfs.py:47 ipam/tables/vrfs.py:72 +#: templates/dcim/htmx/cable_edit.html:89 templates/generic/bulk_edit.html:86 +#: templates/inc/panels/comments.html:5 tenancy/tables/contacts.py:68 +#: tenancy/tables/tenants.py:46 utilities/forms/fields/fields.py:29 +#: virtualization/tables/clusters.py:91 +#: virtualization/tables/virtualmachines.py:82 vpn/tables/crypto.py:37 +#: vpn/tables/crypto.py:74 vpn/tables/crypto.py:109 vpn/tables/crypto.py:140 +#: vpn/tables/crypto.py:173 vpn/tables/l2vpn.py:37 vpn/tables/tunnels.py:61 +#: wireless/tables/wirelesslan.py:27 wireless/tables/wirelesslan.py:58 msgid "Comments" msgstr "Komentarze" -#: netbox/circuits/tables/circuits.py:86 -#: netbox/templates/tenancy/contact.html:84 -#: netbox/tenancy/tables/contacts.py:73 +#: circuits/tables/circuits.py:86 templates/tenancy/contact.html:84 +#: tenancy/tables/contacts.py:73 msgid "Assignments" msgstr "Zadania" -#: netbox/circuits/tables/providers.py:23 +#: circuits/tables/providers.py:23 msgid "Accounts" msgstr "Konta" -#: netbox/circuits/tables/providers.py:29 +#: circuits/tables/providers.py:29 msgid "Account Count" msgstr "Liczba kont" -#: netbox/circuits/tables/providers.py:39 netbox/dcim/tables/sites.py:100 +#: circuits/tables/providers.py:39 dcim/tables/sites.py:100 msgid "ASN Count" msgstr "Liczba ASN" -#: netbox/circuits/views.py:331 +#: circuits/views.py:331 #, python-brace-format msgid "No terminations have been defined for circuit {circuit}." msgstr "Nie zdefiniowano zakończeń dla obwodu {circuit}." -#: netbox/circuits/views.py:380 +#: circuits/views.py:380 #, python-brace-format msgid "Swapped terminations for circuit {circuit}." msgstr "Wymienione zakończenia na obwód {circuit}." -#: netbox/core/api/views.py:39 +#: core/api/views.py:39 msgid "This user does not have permission to synchronize this data source." msgstr "Ten użytkownik nie ma uprawnień do synchronizacji tego źródła danych." -#: netbox/core/choices.py:18 +#: core/choices.py:18 msgid "New" msgstr "Nowość" -#: netbox/core/choices.py:19 netbox/core/constants.py:18 -#: netbox/core/tables/tasks.py:15 netbox/templates/core/rq_task.html:77 +#: core/choices.py:19 core/constants.py:18 core/tables/tasks.py:15 +#: templates/core/rq_task.html:77 msgid "Queued" msgstr "W kolejce" -#: netbox/core/choices.py:20 +#: core/choices.py:20 msgid "Syncing" msgstr "Synchronizacja" -#: netbox/core/choices.py:21 netbox/core/choices.py:57 -#: netbox/core/tables/jobs.py:41 netbox/templates/core/job.html:86 +#: core/choices.py:21 core/choices.py:57 core/tables/jobs.py:41 +#: templates/core/job.html:86 msgid "Completed" msgstr "Zakończone" -#: netbox/core/choices.py:22 netbox/core/choices.py:59 -#: netbox/core/constants.py:20 netbox/core/tables/tasks.py:34 -#: netbox/dcim/choices.py:187 netbox/dcim/choices.py:239 -#: netbox/dcim/choices.py:1607 netbox/virtualization/choices.py:47 +#: core/choices.py:22 core/choices.py:59 core/constants.py:20 +#: core/tables/tasks.py:34 dcim/choices.py:187 dcim/choices.py:239 +#: dcim/choices.py:1607 virtualization/choices.py:47 msgid "Failed" msgstr "Nie powiodło się" -#: netbox/core/choices.py:35 netbox/netbox/navigation/menu.py:335 -#: netbox/netbox/navigation/menu.py:339 -#: netbox/templates/extras/script/base.html:14 -#: netbox/templates/extras/script_list.html:7 -#: netbox/templates/extras/script_list.html:12 -#: netbox/templates/extras/script_result.html:17 +#: core/choices.py:35 netbox/navigation/menu.py:335 +#: netbox/navigation/menu.py:339 templates/extras/script/base.html:14 +#: templates/extras/script_list.html:7 templates/extras/script_list.html:12 +#: templates/extras/script_result.html:17 msgid "Scripts" msgstr "Skrypty" -#: netbox/core/choices.py:36 netbox/templates/extras/report/base.html:13 +#: core/choices.py:36 templates/extras/report/base.html:13 msgid "Reports" msgstr "Raporty" -#: netbox/core/choices.py:54 +#: core/choices.py:54 msgid "Pending" msgstr "Oczekiwane" -#: netbox/core/choices.py:55 netbox/core/constants.py:23 -#: netbox/core/tables/jobs.py:32 netbox/core/tables/tasks.py:38 -#: netbox/templates/core/job.html:73 +#: core/choices.py:55 core/constants.py:23 core/tables/jobs.py:32 +#: core/tables/tasks.py:38 templates/core/job.html:73 msgid "Scheduled" msgstr "Zaplanowane" -#: netbox/core/choices.py:56 +#: core/choices.py:56 msgid "Running" msgstr "Uruchomione" -#: netbox/core/choices.py:58 +#: core/choices.py:58 msgid "Errored" msgstr "Zakończone z błędem" -#: netbox/core/choices.py:87 netbox/core/tables/plugins.py:63 -#: netbox/templates/generic/object.html:61 +#: core/choices.py:87 core/tables/plugins.py:63 +#: templates/generic/object.html:61 msgid "Updated" msgstr "Zaktualizowano" -#: netbox/core/choices.py:88 +#: core/choices.py:88 msgid "Deleted" msgstr "Usunięte" -#: netbox/core/constants.py:19 netbox/core/tables/tasks.py:30 +#: core/constants.py:19 core/tables/tasks.py:30 msgid "Finished" msgstr "Zakończone" -#: netbox/core/constants.py:21 netbox/core/tables/jobs.py:38 -#: netbox/templates/core/job.html:82 -#: netbox/templates/extras/htmx/script_result.html:8 +#: core/constants.py:21 core/tables/jobs.py:38 templates/core/job.html:82 +#: templates/extras/htmx/script_result.html:8 msgid "Started" msgstr "Rozpoczęte" -#: netbox/core/constants.py:22 netbox/core/tables/tasks.py:26 +#: core/constants.py:22 core/tables/tasks.py:26 msgid "Deferred" msgstr "Odroczone" -#: netbox/core/constants.py:24 +#: core/constants.py:24 msgid "Stopped" msgstr "Zatrzymane" -#: netbox/core/constants.py:25 +#: core/constants.py:25 msgid "Cancelled" msgstr "Anulowane" -#: netbox/core/data_backends.py:32 netbox/core/tables/plugins.py:51 -#: netbox/templates/core/plugin.html:87 -#: netbox/templates/dcim/interface.html:216 +#: core/data_backends.py:32 core/tables/plugins.py:51 +#: templates/core/plugin.html:88 templates/dcim/interface.html:216 msgid "Local" msgstr "Lokalne" -#: netbox/core/data_backends.py:50 netbox/core/tables/change_logging.py:20 -#: netbox/templates/account/profile.html:15 -#: netbox/templates/users/user.html:17 netbox/users/tables.py:31 +#: core/data_backends.py:50 core/tables/change_logging.py:20 +#: templates/account/profile.html:15 templates/users/user.html:17 +#: users/tables.py:31 msgid "Username" msgstr "Nazwa użytkownika" -#: netbox/core/data_backends.py:52 netbox/core/data_backends.py:58 +#: core/data_backends.py:52 core/data_backends.py:58 msgid "Only used for cloning with HTTP(S)" msgstr "Tylko używane do klonowania poprzez HTTP(S)" -#: netbox/core/data_backends.py:56 netbox/templates/account/base.html:23 -#: netbox/templates/account/password.html:12 -#: netbox/users/forms/model_forms.py:170 +#: core/data_backends.py:56 templates/account/base.html:23 +#: templates/account/password.html:12 users/forms/model_forms.py:170 msgid "Password" msgstr "Hasło" -#: netbox/core/data_backends.py:62 +#: core/data_backends.py:62 msgid "Branch" msgstr "gałąź" -#: netbox/core/data_backends.py:120 +#: core/data_backends.py:120 #, python-brace-format msgid "Fetching remote data failed ({name}): {error}" msgstr "Pobieranie zdalnych danych nie powiodło się ({name}): {error}" -#: netbox/core/data_backends.py:133 +#: core/data_backends.py:133 msgid "AWS access key ID" msgstr "Identyfikator klucza dostępu AWS" -#: netbox/core/data_backends.py:137 +#: core/data_backends.py:137 msgid "AWS secret access key" msgstr "Tajny klucz dostępu AWS" -#: netbox/core/events.py:27 +#: core/events.py:27 msgid "Object created" msgstr "Utworzony obiekt" -#: netbox/core/events.py:28 +#: core/events.py:28 msgid "Object updated" msgstr "Obiekt zaktualizowany" -#: netbox/core/events.py:29 +#: core/events.py:29 msgid "Object deleted" msgstr "Obiekt usunięty" -#: netbox/core/events.py:30 +#: core/events.py:30 msgid "Job started" msgstr "Praca rozpoczęta" -#: netbox/core/events.py:31 +#: core/events.py:31 msgid "Job completed" msgstr "Praca zakończona" -#: netbox/core/events.py:32 +#: core/events.py:32 msgid "Job failed" msgstr "Zadanie nie powiodło się" -#: netbox/core/events.py:33 +#: core/events.py:33 msgid "Job errored" msgstr "Błąd pracy" -#: netbox/core/filtersets.py:53 netbox/extras/filtersets.py:250 -#: netbox/extras/filtersets.py:633 netbox/extras/filtersets.py:661 +#: core/filtersets.py:53 extras/filtersets.py:250 extras/filtersets.py:633 +#: extras/filtersets.py:661 msgid "Data source (ID)" msgstr "Źródło danych (ID)" -#: netbox/core/filtersets.py:59 +#: core/filtersets.py:59 msgid "Data source (name)" msgstr "Źródło danych (nazwa)" -#: netbox/core/filtersets.py:145 netbox/dcim/filtersets.py:501 -#: netbox/extras/filtersets.py:287 netbox/extras/filtersets.py:331 -#: netbox/extras/filtersets.py:353 netbox/extras/filtersets.py:413 -#: netbox/users/filtersets.py:28 +#: core/filtersets.py:145 dcim/filtersets.py:501 extras/filtersets.py:287 +#: extras/filtersets.py:331 extras/filtersets.py:353 extras/filtersets.py:413 +#: users/filtersets.py:28 msgid "User (ID)" msgstr "Użytkownik (ID)" -#: netbox/core/filtersets.py:151 +#: core/filtersets.py:151 msgid "User name" msgstr "Nazwa użytkownika" -#: netbox/core/forms/bulk_edit.py:25 netbox/core/forms/filtersets.py:43 -#: netbox/core/tables/data.py:26 netbox/dcim/forms/bulk_edit.py:1122 -#: netbox/dcim/forms/bulk_edit.py:1400 netbox/dcim/forms/filtersets.py:1370 -#: netbox/dcim/tables/devices.py:553 netbox/dcim/tables/devicetypes.py:224 -#: netbox/extras/forms/bulk_edit.py:123 netbox/extras/forms/bulk_edit.py:187 -#: netbox/extras/forms/bulk_edit.py:246 netbox/extras/forms/filtersets.py:142 -#: netbox/extras/forms/filtersets.py:229 netbox/extras/forms/filtersets.py:294 -#: netbox/extras/tables/tables.py:162 netbox/extras/tables/tables.py:253 -#: netbox/extras/tables/tables.py:415 netbox/netbox/preferences.py:22 -#: netbox/templates/core/datasource.html:42 -#: netbox/templates/dcim/interface.html:61 -#: netbox/templates/extras/customlink.html:17 -#: netbox/templates/extras/eventrule.html:17 -#: netbox/templates/extras/savedfilter.html:25 -#: netbox/templates/users/objectpermission.html:25 -#: netbox/templates/virtualization/vminterface.html:29 -#: netbox/users/forms/bulk_edit.py:89 netbox/users/forms/filtersets.py:70 -#: netbox/users/tables.py:83 netbox/virtualization/forms/bulk_edit.py:217 -#: netbox/virtualization/forms/filtersets.py:215 +#: core/forms/bulk_edit.py:25 core/forms/filtersets.py:43 +#: core/tables/data.py:26 dcim/forms/bulk_edit.py:1122 +#: dcim/forms/bulk_edit.py:1400 dcim/forms/filtersets.py:1370 +#: dcim/tables/devices.py:553 dcim/tables/devicetypes.py:224 +#: extras/forms/bulk_edit.py:123 extras/forms/bulk_edit.py:187 +#: extras/forms/bulk_edit.py:246 extras/forms/filtersets.py:142 +#: extras/forms/filtersets.py:229 extras/forms/filtersets.py:294 +#: extras/tables/tables.py:162 extras/tables/tables.py:253 +#: extras/tables/tables.py:415 netbox/preferences.py:22 +#: templates/core/datasource.html:42 templates/dcim/interface.html:61 +#: templates/extras/customlink.html:17 templates/extras/eventrule.html:17 +#: templates/extras/savedfilter.html:25 +#: templates/users/objectpermission.html:25 +#: templates/virtualization/vminterface.html:29 users/forms/bulk_edit.py:89 +#: users/forms/filtersets.py:70 users/tables.py:83 +#: virtualization/forms/bulk_edit.py:217 +#: virtualization/forms/filtersets.py:215 msgid "Enabled" msgstr "Włączone" -#: netbox/core/forms/bulk_edit.py:34 netbox/extras/forms/model_forms.py:285 -#: netbox/templates/extras/savedfilter.html:52 -#: netbox/vpn/forms/filtersets.py:97 netbox/vpn/forms/filtersets.py:127 -#: netbox/vpn/forms/filtersets.py:151 netbox/vpn/forms/filtersets.py:170 -#: netbox/vpn/forms/model_forms.py:301 netbox/vpn/forms/model_forms.py:321 -#: netbox/vpn/forms/model_forms.py:337 netbox/vpn/forms/model_forms.py:357 -#: netbox/vpn/forms/model_forms.py:380 +#: core/forms/bulk_edit.py:34 extras/forms/model_forms.py:285 +#: templates/extras/savedfilter.html:52 vpn/forms/filtersets.py:97 +#: vpn/forms/filtersets.py:127 vpn/forms/filtersets.py:151 +#: vpn/forms/filtersets.py:170 vpn/forms/model_forms.py:301 +#: vpn/forms/model_forms.py:321 vpn/forms/model_forms.py:337 +#: vpn/forms/model_forms.py:357 vpn/forms/model_forms.py:380 msgid "Parameters" msgstr "Parametry" -#: netbox/core/forms/bulk_edit.py:38 netbox/templates/core/datasource.html:68 +#: core/forms/bulk_edit.py:38 templates/core/datasource.html:68 msgid "Ignore rules" msgstr "Ignoruj reguły" -#: netbox/core/forms/filtersets.py:30 netbox/core/forms/model_forms.py:97 -#: netbox/extras/forms/model_forms.py:248 -#: netbox/extras/forms/model_forms.py:578 -#: netbox/extras/forms/model_forms.py:632 netbox/extras/tables/tables.py:191 -#: netbox/extras/tables/tables.py:483 netbox/extras/tables/tables.py:518 -#: netbox/templates/core/datasource.html:31 -#: netbox/templates/dcim/device/render_config.html:18 -#: netbox/templates/extras/configcontext.html:29 -#: netbox/templates/extras/configtemplate.html:21 -#: netbox/templates/extras/exporttemplate.html:35 -#: netbox/templates/virtualization/virtualmachine/render_config.html:18 +#: core/forms/filtersets.py:30 core/forms/model_forms.py:97 +#: extras/forms/model_forms.py:248 extras/forms/model_forms.py:578 +#: extras/forms/model_forms.py:632 extras/tables/tables.py:191 +#: extras/tables/tables.py:483 extras/tables/tables.py:518 +#: templates/core/datasource.html:31 +#: templates/dcim/device/render_config.html:18 +#: templates/extras/configcontext.html:29 +#: templates/extras/configtemplate.html:21 +#: templates/extras/exporttemplate.html:35 +#: templates/virtualization/virtualmachine/render_config.html:18 msgid "Data Source" msgstr "Źródło danych" -#: netbox/core/forms/filtersets.py:55 netbox/core/forms/mixins.py:21 +#: core/forms/filtersets.py:55 core/forms/mixins.py:21 msgid "File" msgstr "Plik" -#: netbox/core/forms/filtersets.py:60 netbox/core/forms/mixins.py:16 -#: netbox/extras/forms/filtersets.py:170 netbox/extras/forms/filtersets.py:328 -#: netbox/extras/forms/filtersets.py:413 +#: core/forms/filtersets.py:60 core/forms/mixins.py:16 +#: extras/forms/filtersets.py:170 extras/forms/filtersets.py:328 +#: extras/forms/filtersets.py:413 msgid "Data source" msgstr "Źródło danych" -#: netbox/core/forms/filtersets.py:70 netbox/extras/forms/filtersets.py:440 +#: core/forms/filtersets.py:70 extras/forms/filtersets.py:440 msgid "Creation" msgstr "Stworzenie" -#: netbox/core/forms/filtersets.py:74 netbox/core/forms/filtersets.py:160 -#: netbox/extras/forms/filtersets.py:461 netbox/extras/tables/tables.py:220 -#: netbox/extras/tables/tables.py:294 netbox/extras/tables/tables.py:326 -#: netbox/extras/tables/tables.py:571 netbox/templates/core/job.html:38 -#: netbox/templates/core/objectchange.html:52 -#: netbox/tenancy/tables/contacts.py:90 netbox/vpn/tables/l2vpn.py:59 +#: core/forms/filtersets.py:74 core/forms/filtersets.py:160 +#: extras/forms/filtersets.py:461 extras/tables/tables.py:220 +#: extras/tables/tables.py:294 extras/tables/tables.py:326 +#: extras/tables/tables.py:571 templates/core/job.html:38 +#: templates/core/objectchange.html:52 tenancy/tables/contacts.py:90 +#: vpn/tables/l2vpn.py:59 msgid "Object Type" msgstr "Typ obiektu" -#: netbox/core/forms/filtersets.py:84 +#: core/forms/filtersets.py:84 msgid "Created after" msgstr "Utworzone po" -#: netbox/core/forms/filtersets.py:89 +#: core/forms/filtersets.py:89 msgid "Created before" msgstr "Utworzone przed" -#: netbox/core/forms/filtersets.py:94 +#: core/forms/filtersets.py:94 msgid "Scheduled after" msgstr "Zaplanowane po" -#: netbox/core/forms/filtersets.py:99 +#: core/forms/filtersets.py:99 msgid "Scheduled before" msgstr "Zaplanowane przed" -#: netbox/core/forms/filtersets.py:104 +#: core/forms/filtersets.py:104 msgid "Started after" msgstr "Rozpoczęte po" -#: netbox/core/forms/filtersets.py:109 +#: core/forms/filtersets.py:109 msgid "Started before" msgstr "Rozpoczęte przed" -#: netbox/core/forms/filtersets.py:114 +#: core/forms/filtersets.py:114 msgid "Completed after" msgstr "Zakończone po" -#: netbox/core/forms/filtersets.py:119 +#: core/forms/filtersets.py:119 msgid "Completed before" msgstr "Zakończone przed" -#: netbox/core/forms/filtersets.py:126 netbox/core/forms/filtersets.py:155 -#: netbox/dcim/forms/bulk_edit.py:456 netbox/dcim/forms/filtersets.py:418 -#: netbox/dcim/forms/filtersets.py:462 netbox/dcim/forms/model_forms.py:316 -#: netbox/extras/forms/filtersets.py:456 netbox/extras/forms/filtersets.py:475 -#: netbox/extras/tables/tables.py:302 netbox/extras/tables/tables.py:342 -#: netbox/templates/core/objectchange.html:36 -#: netbox/templates/dcim/rackreservation.html:58 -#: netbox/templates/extras/savedfilter.html:21 -#: netbox/templates/inc/user_menu.html:33 netbox/templates/users/token.html:21 -#: netbox/templates/users/user.html:6 netbox/templates/users/user.html:14 -#: netbox/users/filtersets.py:107 netbox/users/filtersets.py:174 -#: netbox/users/forms/filtersets.py:84 netbox/users/forms/filtersets.py:125 -#: netbox/users/forms/model_forms.py:155 netbox/users/forms/model_forms.py:192 -#: netbox/users/tables.py:19 +#: core/forms/filtersets.py:126 core/forms/filtersets.py:155 +#: dcim/forms/bulk_edit.py:456 dcim/forms/filtersets.py:418 +#: dcim/forms/filtersets.py:462 dcim/forms/model_forms.py:316 +#: extras/forms/filtersets.py:456 extras/forms/filtersets.py:475 +#: extras/tables/tables.py:302 extras/tables/tables.py:342 +#: templates/core/objectchange.html:36 templates/dcim/rackreservation.html:58 +#: templates/extras/savedfilter.html:21 templates/inc/user_menu.html:33 +#: templates/users/token.html:21 templates/users/user.html:6 +#: templates/users/user.html:14 users/filtersets.py:107 +#: users/filtersets.py:174 users/forms/filtersets.py:84 +#: users/forms/filtersets.py:125 users/forms/model_forms.py:155 +#: users/forms/model_forms.py:192 users/tables.py:19 msgid "User" msgstr "Użytkownik" -#: netbox/core/forms/filtersets.py:134 netbox/core/tables/change_logging.py:15 -#: netbox/extras/tables/tables.py:609 netbox/extras/tables/tables.py:646 -#: netbox/templates/core/objectchange.html:32 +#: core/forms/filtersets.py:134 core/tables/change_logging.py:15 +#: extras/tables/tables.py:609 extras/tables/tables.py:646 +#: templates/core/objectchange.html:32 msgid "Time" msgstr "Czas" -#: netbox/core/forms/filtersets.py:139 netbox/extras/forms/filtersets.py:445 +#: core/forms/filtersets.py:139 extras/forms/filtersets.py:445 msgid "After" msgstr "Po" -#: netbox/core/forms/filtersets.py:144 netbox/extras/forms/filtersets.py:450 +#: core/forms/filtersets.py:144 extras/forms/filtersets.py:450 msgid "Before" msgstr "Wcześniej" -#: netbox/core/forms/filtersets.py:148 netbox/core/tables/change_logging.py:29 -#: netbox/extras/forms/model_forms.py:396 -#: netbox/templates/core/objectchange.html:46 -#: netbox/templates/extras/eventrule.html:71 +#: core/forms/filtersets.py:148 core/tables/change_logging.py:29 +#: extras/forms/model_forms.py:396 templates/core/objectchange.html:46 +#: templates/extras/eventrule.html:71 msgid "Action" msgstr "Działanie" -#: netbox/core/forms/model_forms.py:54 netbox/core/tables/data.py:46 -#: netbox/templates/core/datafile.html:27 -#: netbox/templates/extras/report/base.html:33 -#: netbox/templates/extras/script/base.html:32 +#: core/forms/model_forms.py:54 core/tables/data.py:46 +#: templates/core/datafile.html:27 templates/extras/report/base.html:33 +#: templates/extras/script/base.html:32 msgid "Source" msgstr "Źródło" -#: netbox/core/forms/model_forms.py:58 +#: core/forms/model_forms.py:58 msgid "Backend Parameters" msgstr "Parametry zaplecza" -#: netbox/core/forms/model_forms.py:96 +#: core/forms/model_forms.py:96 msgid "File Upload" msgstr "Przesyłanie plików" -#: netbox/core/forms/model_forms.py:108 +#: core/forms/model_forms.py:108 msgid "Cannot upload a file and sync from an existing file" msgstr "Nie można przesłać pliku i zsynchronizować z istniejącym plikiem" -#: netbox/core/forms/model_forms.py:110 +#: core/forms/model_forms.py:110 msgid "Must upload a file or select a data file to sync" msgstr "Musisz przesłać plik lub wybrać plik danych do synchronizacji" -#: netbox/core/forms/model_forms.py:153 -#: netbox/templates/dcim/rack_elevation_list.html:6 +#: core/forms/model_forms.py:153 templates/dcim/rack_elevation_list.html:6 msgid "Rack Elevations" msgstr "Elewacje szaf" -#: netbox/core/forms/model_forms.py:157 netbox/dcim/choices.py:1518 -#: netbox/dcim/forms/bulk_edit.py:969 netbox/dcim/forms/bulk_edit.py:1357 -#: netbox/dcim/forms/bulk_edit.py:1375 netbox/dcim/tables/racks.py:158 -#: netbox/netbox/navigation/menu.py:291 netbox/netbox/navigation/menu.py:295 +#: core/forms/model_forms.py:157 dcim/choices.py:1518 +#: dcim/forms/bulk_edit.py:969 dcim/forms/bulk_edit.py:1357 +#: dcim/forms/bulk_edit.py:1375 dcim/tables/racks.py:158 +#: netbox/navigation/menu.py:291 netbox/navigation/menu.py:295 msgid "Power" msgstr "Moc" -#: netbox/core/forms/model_forms.py:159 netbox/netbox/navigation/menu.py:154 -#: netbox/templates/core/inc/config_data.html:37 +#: core/forms/model_forms.py:159 netbox/navigation/menu.py:154 +#: templates/core/inc/config_data.html:37 msgid "IPAM" msgstr "IPAM" -#: netbox/core/forms/model_forms.py:160 netbox/netbox/navigation/menu.py:230 -#: netbox/templates/core/inc/config_data.html:50 -#: netbox/vpn/forms/bulk_edit.py:77 netbox/vpn/forms/filtersets.py:43 -#: netbox/vpn/forms/model_forms.py:61 netbox/vpn/forms/model_forms.py:146 +#: core/forms/model_forms.py:160 netbox/navigation/menu.py:230 +#: templates/core/inc/config_data.html:50 vpn/forms/bulk_edit.py:77 +#: vpn/forms/filtersets.py:43 vpn/forms/model_forms.py:61 +#: vpn/forms/model_forms.py:146 msgid "Security" msgstr "Bezpieczeństwo" -#: netbox/core/forms/model_forms.py:161 -#: netbox/templates/core/inc/config_data.html:59 +#: core/forms/model_forms.py:161 templates/core/inc/config_data.html:59 msgid "Banners" msgstr "Banery" -#: netbox/core/forms/model_forms.py:162 -#: netbox/templates/core/inc/config_data.html:80 +#: core/forms/model_forms.py:162 templates/core/inc/config_data.html:80 msgid "Pagination" msgstr "Paginacja" -#: netbox/core/forms/model_forms.py:163 netbox/extras/forms/bulk_edit.py:92 -#: netbox/extras/forms/filtersets.py:47 netbox/extras/forms/model_forms.py:116 -#: netbox/extras/forms/model_forms.py:129 -#: netbox/templates/core/inc/config_data.html:93 +#: core/forms/model_forms.py:163 extras/forms/bulk_edit.py:92 +#: extras/forms/filtersets.py:47 extras/forms/model_forms.py:116 +#: extras/forms/model_forms.py:129 templates/core/inc/config_data.html:93 msgid "Validation" msgstr "Walidacja" -#: netbox/core/forms/model_forms.py:164 -#: netbox/templates/account/preferences.html:6 +#: core/forms/model_forms.py:164 templates/account/preferences.html:6 msgid "User Preferences" msgstr "Preferencje użytkownika" -#: netbox/core/forms/model_forms.py:167 netbox/dcim/forms/filtersets.py:732 -#: netbox/templates/core/inc/config_data.html:127 -#: netbox/users/forms/model_forms.py:64 +#: core/forms/model_forms.py:167 dcim/forms/filtersets.py:732 +#: templates/core/inc/config_data.html:127 users/forms/model_forms.py:64 msgid "Miscellaneous" msgstr "Różne" -#: netbox/core/forms/model_forms.py:169 +#: core/forms/model_forms.py:169 msgid "Config Revision" msgstr "Zmiana konfiguracji" -#: netbox/core/forms/model_forms.py:208 +#: core/forms/model_forms.py:208 msgid "This parameter has been defined statically and cannot be modified." msgstr "" "Ten parametr został zdefiniowany statycznie i nie można go modyfikować." -#: netbox/core/forms/model_forms.py:216 +#: core/forms/model_forms.py:216 #, python-brace-format msgid "Current value: {value}" msgstr "Bieżąca wartość: {value}" -#: netbox/core/forms/model_forms.py:218 +#: core/forms/model_forms.py:218 msgid " (default)" msgstr " (domyślnie)" -#: netbox/core/models/change_logging.py:29 +#: core/models/change_logging.py:29 msgid "time" msgstr "czas" -#: netbox/core/models/change_logging.py:42 +#: core/models/change_logging.py:42 msgid "user name" msgstr "nazwa użytkownika" -#: netbox/core/models/change_logging.py:47 +#: core/models/change_logging.py:47 msgid "request ID" msgstr "Identyfikator żądania" -#: netbox/core/models/change_logging.py:52 netbox/extras/models/staging.py:69 +#: core/models/change_logging.py:52 extras/models/staging.py:69 msgid "action" msgstr "działanie" -#: netbox/core/models/change_logging.py:86 +#: core/models/change_logging.py:86 msgid "pre-change data" msgstr "dane wstępnej zmiany" -#: netbox/core/models/change_logging.py:92 +#: core/models/change_logging.py:92 msgid "post-change data" msgstr "dane po zmianie" -#: netbox/core/models/change_logging.py:106 +#: core/models/change_logging.py:106 msgid "object change" msgstr "zmiana obiektu" -#: netbox/core/models/change_logging.py:107 +#: core/models/change_logging.py:107 msgid "object changes" msgstr "zmiany obiektu" -#: netbox/core/models/change_logging.py:123 +#: core/models/change_logging.py:123 #, python-brace-format msgid "Change logging is not supported for this object type ({type})." msgstr "" "Rejestracja zmian nie jest obsługiwana dla tego typu obiektu ({type})." -#: netbox/core/models/config.py:18 netbox/core/models/data.py:266 -#: netbox/core/models/files.py:27 netbox/core/models/jobs.py:49 -#: netbox/extras/models/models.py:730 netbox/extras/models/notifications.py:39 -#: netbox/extras/models/notifications.py:186 -#: netbox/netbox/models/features.py:53 netbox/users/models/tokens.py:32 +#: core/models/config.py:18 core/models/data.py:266 core/models/files.py:27 +#: core/models/jobs.py:49 extras/models/models.py:730 +#: extras/models/notifications.py:39 extras/models/notifications.py:186 +#: netbox/models/features.py:53 users/models/tokens.py:32 msgid "created" msgstr "utworzony" -#: netbox/core/models/config.py:22 +#: core/models/config.py:22 msgid "comment" msgstr "komentarz" -#: netbox/core/models/config.py:29 +#: core/models/config.py:29 msgid "configuration data" msgstr "dane konfiguracyjne" -#: netbox/core/models/config.py:36 +#: core/models/config.py:36 msgid "config revision" msgstr "wersja konfiguracji" -#: netbox/core/models/config.py:37 +#: core/models/config.py:37 msgid "config revisions" msgstr "poprawki konfiguracji" -#: netbox/core/models/config.py:41 +#: core/models/config.py:41 msgid "Default configuration" msgstr "Domyślna konfiguracja" -#: netbox/core/models/config.py:43 +#: core/models/config.py:43 msgid "Current configuration" msgstr "Bieżąca konfiguracja" -#: netbox/core/models/config.py:44 +#: core/models/config.py:44 #, python-brace-format msgid "Config revision #{id}" msgstr "Wersja konfiguracji #{id}" -#: netbox/core/models/data.py:44 netbox/dcim/models/cables.py:43 -#: netbox/dcim/models/device_component_templates.py:203 -#: netbox/dcim/models/device_component_templates.py:237 -#: netbox/dcim/models/device_component_templates.py:272 -#: netbox/dcim/models/device_component_templates.py:334 -#: netbox/dcim/models/device_component_templates.py:413 -#: netbox/dcim/models/device_component_templates.py:512 -#: netbox/dcim/models/device_component_templates.py:612 -#: netbox/dcim/models/device_components.py:283 -#: netbox/dcim/models/device_components.py:312 -#: netbox/dcim/models/device_components.py:345 -#: netbox/dcim/models/device_components.py:463 -#: netbox/dcim/models/device_components.py:605 -#: netbox/dcim/models/device_components.py:970 -#: netbox/dcim/models/device_components.py:1044 -#: netbox/dcim/models/power.py:102 netbox/extras/models/customfields.py:78 -#: netbox/extras/models/search.py:41 -#: netbox/virtualization/models/clusters.py:61 netbox/vpn/models/l2vpn.py:32 +#: core/models/data.py:44 dcim/models/cables.py:43 +#: dcim/models/device_component_templates.py:203 +#: dcim/models/device_component_templates.py:237 +#: dcim/models/device_component_templates.py:272 +#: dcim/models/device_component_templates.py:334 +#: dcim/models/device_component_templates.py:413 +#: dcim/models/device_component_templates.py:512 +#: dcim/models/device_component_templates.py:612 +#: dcim/models/device_components.py:283 dcim/models/device_components.py:312 +#: dcim/models/device_components.py:345 dcim/models/device_components.py:463 +#: dcim/models/device_components.py:605 dcim/models/device_components.py:970 +#: dcim/models/device_components.py:1044 dcim/models/power.py:102 +#: extras/models/customfields.py:78 extras/models/search.py:41 +#: virtualization/models/clusters.py:61 vpn/models/l2vpn.py:32 msgid "type" msgstr "typ" -#: netbox/core/models/data.py:49 netbox/extras/choices.py:37 -#: netbox/extras/models/models.py:164 netbox/extras/tables/tables.py:656 -#: netbox/templates/core/datasource.html:58 -#: netbox/templates/core/plugin.html:65 +#: core/models/data.py:49 extras/choices.py:37 extras/models/models.py:164 +#: extras/tables/tables.py:656 templates/core/datasource.html:58 +#: templates/core/plugin.html:66 msgid "URL" msgstr "URL" -#: netbox/core/models/data.py:59 -#: netbox/dcim/models/device_component_templates.py:418 -#: netbox/dcim/models/device_components.py:512 -#: netbox/extras/models/models.py:70 netbox/extras/models/models.py:301 -#: netbox/extras/models/models.py:526 netbox/users/models/permissions.py:29 +#: core/models/data.py:59 dcim/models/device_component_templates.py:418 +#: dcim/models/device_components.py:512 extras/models/models.py:70 +#: extras/models/models.py:301 extras/models/models.py:526 +#: users/models/permissions.py:29 msgid "enabled" msgstr "włączone" -#: netbox/core/models/data.py:63 +#: core/models/data.py:63 msgid "ignore rules" msgstr "ignoruj zasady" -#: netbox/core/models/data.py:65 +#: core/models/data.py:65 msgid "Patterns (one per line) matching files to ignore when syncing" msgstr "" "Wzory (jeden na wiersz) pasujące do plików do zignorowania podczas " "synchronizacji" -#: netbox/core/models/data.py:68 netbox/extras/models/models.py:534 +#: core/models/data.py:68 extras/models/models.py:534 msgid "parameters" msgstr "parametry" -#: netbox/core/models/data.py:73 +#: core/models/data.py:73 msgid "last synced" msgstr "ostatnio zsynchronizowane" -#: netbox/core/models/data.py:81 +#: core/models/data.py:81 msgid "data source" msgstr "źródło danych" -#: netbox/core/models/data.py:82 +#: core/models/data.py:82 msgid "data sources" msgstr "źródła danych" -#: netbox/core/models/data.py:122 +#: core/models/data.py:122 #, python-brace-format msgid "Unknown backend type: {type}" msgstr "Nieznany typ zaplecza: {type}" -#: netbox/core/models/data.py:164 +#: core/models/data.py:164 msgid "Cannot initiate sync; syncing already in progress." msgstr "Nie można zainicjować synchronizacji; synchronizacja jest już w toku." -#: netbox/core/models/data.py:177 +#: core/models/data.py:177 msgid "" "There was an error initializing the backend. A dependency needs to be " "installed: " msgstr "" "Wystąpił błąd podczas inicjowania zaplecza. Należy zainstalować zależność: " -#: netbox/core/models/data.py:270 netbox/core/models/files.py:31 -#: netbox/netbox/models/features.py:59 +#: core/models/data.py:270 core/models/files.py:31 +#: netbox/models/features.py:59 msgid "last updated" msgstr "Ostatnia aktualizacja" -#: netbox/core/models/data.py:280 netbox/dcim/models/cables.py:444 +#: core/models/data.py:280 dcim/models/cables.py:444 msgid "path" msgstr "ścieżka" -#: netbox/core/models/data.py:283 +#: core/models/data.py:283 msgid "File path relative to the data source's root" msgstr "Ścieżka pliku względem katalogu głównego źródła danych" -#: netbox/core/models/data.py:287 netbox/ipam/models/ip.py:503 +#: core/models/data.py:287 ipam/models/ip.py:503 msgid "size" msgstr "rozmiar" -#: netbox/core/models/data.py:290 +#: core/models/data.py:290 msgid "hash" msgstr "haszysz" -#: netbox/core/models/data.py:294 +#: core/models/data.py:294 msgid "Length must be 64 hexadecimal characters." msgstr "Długość musi wynosić 64 znaki szesnastkowe." -#: netbox/core/models/data.py:296 +#: core/models/data.py:296 msgid "SHA256 hash of the file data" msgstr "Skrót danych pliku SHA256" -#: netbox/core/models/data.py:313 +#: core/models/data.py:313 msgid "data file" msgstr "plik danych" -#: netbox/core/models/data.py:314 +#: core/models/data.py:314 msgid "data files" msgstr "pliki danych" -#: netbox/core/models/data.py:401 +#: core/models/data.py:401 msgid "auto sync record" msgstr "zapis automatycznej synchronizacji" -#: netbox/core/models/data.py:402 +#: core/models/data.py:402 msgid "auto sync records" msgstr "automatyczna synchronizacja rekordów" -#: netbox/core/models/files.py:37 +#: core/models/files.py:37 msgid "file root" msgstr "root pliku" -#: netbox/core/models/files.py:42 +#: core/models/files.py:42 msgid "file path" msgstr "ścieżka pliku" -#: netbox/core/models/files.py:44 +#: core/models/files.py:44 msgid "File path relative to the designated root path" msgstr "Ścieżka pliku względem wyznaczonej ścieżki głównej" -#: netbox/core/models/files.py:61 +#: core/models/files.py:61 msgid "managed file" msgstr "plik zarządzany" -#: netbox/core/models/files.py:62 +#: core/models/files.py:62 msgid "managed files" msgstr "zarządzane pliki" -#: netbox/core/models/jobs.py:53 +#: core/models/jobs.py:53 msgid "scheduled" msgstr "planowy" -#: netbox/core/models/jobs.py:58 +#: core/models/jobs.py:58 msgid "interval" msgstr "interwał" -#: netbox/core/models/jobs.py:64 +#: core/models/jobs.py:64 msgid "Recurrence interval (in minutes)" msgstr "Odstęp nawrotów (w minutach)" -#: netbox/core/models/jobs.py:67 +#: core/models/jobs.py:67 msgid "started" msgstr "rozpoczął się" -#: netbox/core/models/jobs.py:72 +#: core/models/jobs.py:72 msgid "completed" msgstr "ukończony" -#: netbox/core/models/jobs.py:90 netbox/extras/models/models.py:101 -#: netbox/extras/models/staging.py:87 +#: core/models/jobs.py:90 extras/models/models.py:101 +#: extras/models/staging.py:87 msgid "data" msgstr "dane" -#: netbox/core/models/jobs.py:95 +#: core/models/jobs.py:95 msgid "error" msgstr "błąd" -#: netbox/core/models/jobs.py:100 +#: core/models/jobs.py:100 msgid "job ID" msgstr "ID pracy" -#: netbox/core/models/jobs.py:111 +#: core/models/jobs.py:111 msgid "job" msgstr "pracy" -#: netbox/core/models/jobs.py:112 +#: core/models/jobs.py:112 msgid "jobs" msgstr "prace" -#: netbox/core/models/jobs.py:135 +#: core/models/jobs.py:135 #, python-brace-format msgid "Jobs cannot be assigned to this object type ({type})." msgstr "Zadania nie mogą być przypisane do tego typu obiektu ({type})." -#: netbox/core/models/jobs.py:185 +#: core/models/jobs.py:185 #, python-brace-format msgid "Invalid status for job termination. Choices are: {choices}" msgstr "Nieprawidłowy status zakończenia pracy. Wybory to: {choices}" -#: netbox/core/models/jobs.py:216 +#: core/models/jobs.py:216 msgid "" "enqueue() cannot be called with values for both schedule_at and immediate." msgstr "" "enqueue () nie można wywołać z wartościami zarówno dla schedule_at, jak i " "natychmiastowego." -#: netbox/core/signals.py:126 +#: core/signals.py:126 #, python-brace-format msgid "Deletion is prevented by a protection rule: {message}" msgstr "Usuwanie jest zapobiegane przez regułę ochrony: {message}" -#: netbox/core/tables/change_logging.py:25 -#: netbox/templates/account/profile.html:19 -#: netbox/templates/users/user.html:21 +#: core/tables/change_logging.py:25 templates/account/profile.html:19 +#: templates/users/user.html:21 msgid "Full Name" msgstr "Pełne imię i nazwisko" -#: netbox/core/tables/change_logging.py:37 netbox/core/tables/jobs.py:21 -#: netbox/extras/choices.py:41 netbox/extras/tables/tables.py:279 -#: netbox/extras/tables/tables.py:297 netbox/extras/tables/tables.py:329 -#: netbox/extras/tables/tables.py:409 netbox/extras/tables/tables.py:470 -#: netbox/extras/tables/tables.py:576 netbox/extras/tables/tables.py:616 -#: netbox/extras/tables/tables.py:653 netbox/netbox/tables/tables.py:244 -#: netbox/templates/core/objectchange.html:58 -#: netbox/templates/extras/eventrule.html:78 -#: netbox/templates/extras/journalentry.html:18 -#: netbox/tenancy/tables/contacts.py:93 netbox/vpn/tables/l2vpn.py:64 +#: core/tables/change_logging.py:37 core/tables/jobs.py:21 +#: extras/choices.py:41 extras/tables/tables.py:279 +#: extras/tables/tables.py:297 extras/tables/tables.py:329 +#: extras/tables/tables.py:409 extras/tables/tables.py:470 +#: extras/tables/tables.py:576 extras/tables/tables.py:616 +#: extras/tables/tables.py:653 netbox/tables/tables.py:244 +#: templates/core/objectchange.html:58 templates/extras/eventrule.html:78 +#: templates/extras/journalentry.html:18 tenancy/tables/contacts.py:93 +#: vpn/tables/l2vpn.py:64 msgid "Object" msgstr "Przedmiot" -#: netbox/core/tables/change_logging.py:42 -#: netbox/templates/core/objectchange.html:68 +#: core/tables/change_logging.py:42 templates/core/objectchange.html:68 msgid "Request ID" msgstr "Identyfikator żądania" -#: netbox/core/tables/config.py:21 netbox/users/forms/filtersets.py:44 -#: netbox/users/tables.py:39 +#: core/tables/config.py:21 users/forms/filtersets.py:44 users/tables.py:39 msgid "Is Active" msgstr "Jest aktywny" -#: netbox/core/tables/data.py:50 netbox/templates/core/datafile.html:31 +#: core/tables/data.py:50 templates/core/datafile.html:31 msgid "Path" msgstr "Ścieżka" -#: netbox/core/tables/data.py:54 -#: netbox/templates/extras/inc/result_pending.html:7 +#: core/tables/data.py:54 templates/extras/inc/result_pending.html:7 msgid "Last updated" msgstr "Ostatnia aktualizacja" -#: netbox/core/tables/jobs.py:10 netbox/core/tables/tasks.py:76 -#: netbox/dcim/tables/devicetypes.py:164 netbox/extras/tables/tables.py:216 -#: netbox/extras/tables/tables.py:460 netbox/netbox/tables/tables.py:189 -#: netbox/templates/dcim/virtualchassis_edit.html:52 -#: netbox/utilities/forms/forms.py:73 -#: netbox/wireless/tables/wirelesslink.py:17 +#: core/tables/jobs.py:10 core/tables/tasks.py:76 +#: dcim/tables/devicetypes.py:164 extras/tables/tables.py:216 +#: extras/tables/tables.py:460 netbox/tables/tables.py:189 +#: templates/dcim/virtualchassis_edit.html:52 utilities/forms/forms.py:73 +#: wireless/tables/wirelesslink.py:17 msgid "ID" msgstr "IDENTYFIKATOR" -#: netbox/core/tables/jobs.py:35 +#: core/tables/jobs.py:35 msgid "Interval" msgstr "Przedział" -#: netbox/core/tables/plugins.py:14 netbox/templates/vpn/ipsecprofile.html:44 -#: netbox/vpn/forms/bulk_edit.py:141 netbox/vpn/forms/bulk_import.py:172 -#: netbox/vpn/tables/crypto.py:61 +#: core/tables/plugins.py:14 templates/vpn/ipsecprofile.html:44 +#: vpn/forms/bulk_edit.py:141 vpn/forms/bulk_import.py:172 +#: vpn/tables/crypto.py:61 msgid "Version" msgstr "Wersja" -#: netbox/core/tables/plugins.py:19 netbox/templates/core/datafile.html:38 +#: core/tables/plugins.py:19 templates/core/datafile.html:38 msgid "Last Updated" msgstr "Ostatnia aktualizacja" -#: netbox/core/tables/plugins.py:23 +#: core/tables/plugins.py:23 msgid "Minimum NetBox Version" msgstr "Minimalna wersja NetBox" -#: netbox/core/tables/plugins.py:27 +#: core/tables/plugins.py:27 msgid "Maximum NetBox Version" msgstr "Maksymalna wersja NetBox" -#: netbox/core/tables/plugins.py:31 netbox/core/tables/plugins.py:74 +#: core/tables/plugins.py:31 core/tables/plugins.py:74 msgid "No plugin data found" msgstr "Nie znaleziono danych wtyczki" -#: netbox/core/tables/plugins.py:48 netbox/templates/core/plugin.html:61 +#: core/tables/plugins.py:48 templates/core/plugin.html:62 msgid "Author" msgstr "Autor" -#: netbox/core/tables/plugins.py:54 +#: core/tables/plugins.py:54 msgid "Installed" msgstr "Zainstalowany" -#: netbox/core/tables/plugins.py:57 netbox/templates/core/plugin.html:83 +#: core/tables/plugins.py:57 templates/core/plugin.html:84 msgid "Certified" msgstr "Certyfikowany" -#: netbox/core/tables/plugins.py:60 +#: core/tables/plugins.py:60 msgid "Published" msgstr "Opublikowano" -#: netbox/core/tables/plugins.py:66 +#: core/tables/plugins.py:66 msgid "Installed Version" msgstr "Zainstalowana wersja" -#: netbox/core/tables/plugins.py:70 +#: core/tables/plugins.py:70 msgid "Latest Version" msgstr "Najnowsza wersja" -#: netbox/core/tables/tasks.py:18 +#: core/tables/tasks.py:18 msgid "Oldest Task" msgstr "Najstarsze zadanie" -#: netbox/core/tables/tasks.py:42 netbox/templates/core/rq_worker_list.html:39 +#: core/tables/tasks.py:42 templates/core/rq_worker_list.html:39 msgid "Workers" msgstr "Pracownicy" -#: netbox/core/tables/tasks.py:46 netbox/vpn/tables/tunnels.py:88 +#: core/tables/tasks.py:46 vpn/tables/tunnels.py:88 msgid "Host" msgstr "Gospodarz" -#: netbox/core/tables/tasks.py:50 netbox/ipam/forms/filtersets.py:535 +#: core/tables/tasks.py:50 ipam/forms/filtersets.py:535 msgid "Port" msgstr "Port" -#: netbox/core/tables/tasks.py:54 +#: core/tables/tasks.py:54 msgid "DB" msgstr "DB" -#: netbox/core/tables/tasks.py:58 +#: core/tables/tasks.py:58 msgid "Scheduler PID" msgstr "Harmonogram PID" -#: netbox/core/tables/tasks.py:62 +#: core/tables/tasks.py:62 msgid "No queues found" msgstr "Nie znaleziono kolejek" -#: netbox/core/tables/tasks.py:82 +#: core/tables/tasks.py:82 msgid "Enqueued" msgstr "W kolejce" -#: netbox/core/tables/tasks.py:85 +#: core/tables/tasks.py:85 msgid "Ended" msgstr "Zakończony" -#: netbox/core/tables/tasks.py:93 netbox/templates/core/rq_task.html:85 +#: core/tables/tasks.py:93 templates/core/rq_task.html:85 msgid "Callable" msgstr "Możliwość wywołania" -#: netbox/core/tables/tasks.py:97 +#: core/tables/tasks.py:97 msgid "No tasks found" msgstr "Nie znaleziono zadań" -#: netbox/core/tables/tasks.py:118 netbox/templates/core/rq_worker.html:47 +#: core/tables/tasks.py:118 templates/core/rq_worker.html:47 msgid "State" msgstr "Stan" -#: netbox/core/tables/tasks.py:121 netbox/templates/core/rq_worker.html:51 +#: core/tables/tasks.py:121 templates/core/rq_worker.html:51 msgid "Birth" msgstr "Narodziny" -#: netbox/core/tables/tasks.py:124 netbox/templates/core/rq_worker.html:59 +#: core/tables/tasks.py:124 templates/core/rq_worker.html:59 msgid "PID" msgstr "PID" -#: netbox/core/tables/tasks.py:128 +#: core/tables/tasks.py:128 msgid "No workers found" msgstr "Nie znaleziono pracowników" -#: netbox/core/views.py:90 +#: core/views.py:90 #, python-brace-format msgid "Queued job #{id} to sync {datasource}" msgstr "Zadanie w kolejce #{id} zsynchronizować {datasource}" -#: netbox/core/views.py:319 +#: core/views.py:319 #, python-brace-format msgid "Restored configuration revision #{id}" msgstr "Przywrócona wersja konfiguracji #{id}" -#: netbox/core/views.py:412 netbox/core/views.py:455 netbox/core/views.py:531 +#: core/views.py:412 core/views.py:455 core/views.py:531 #, python-brace-format msgid "Job {job_id} not found" msgstr "Praca {job_id} nie znaleziono" -#: netbox/core/views.py:463 +#: core/views.py:463 #, python-brace-format msgid "Job {id} has been deleted." msgstr "Praca {id} został usunięty." -#: netbox/core/views.py:465 +#: core/views.py:465 #, python-brace-format msgid "Error deleting job {id}: {error}" msgstr "Błąd usuwania zadania {id}: {error}" -#: netbox/core/views.py:478 netbox/core/views.py:496 +#: core/views.py:478 core/views.py:496 #, python-brace-format msgid "Job {id} not found." msgstr "Praca {id} nie znaleziono." -#: netbox/core/views.py:484 +#: core/views.py:484 #, python-brace-format msgid "Job {id} has been re-enqueued." msgstr "Praca {id} został ponownie ustawiony w kolejce." -#: netbox/core/views.py:519 +#: core/views.py:519 #, python-brace-format msgid "Job {id} has been enqueued." msgstr "Praca {id} został ustawiony w kolejce." -#: netbox/core/views.py:538 +#: core/views.py:538 #, python-brace-format msgid "Job {id} has been stopped." msgstr "Praca {id} został zatrzymany." -#: netbox/core/views.py:540 +#: core/views.py:540 #, python-brace-format msgid "Failed to stop job {id}" msgstr "Nie udało się zatrzymać zadania {id}" -#: netbox/core/views.py:678 +#: core/views.py:678 msgid "Plugins catalog could not be loaded" msgstr "Nie można załadować katalogu wtyczek" -#: netbox/core/views.py:712 +#: core/views.py:712 #, python-brace-format msgid "Plugin {name} not found" msgstr "Wtyczka {name} nie znaleziono" -#: netbox/dcim/api/serializers_/devices.py:49 -#: netbox/dcim/api/serializers_/devicetypes.py:25 +#: dcim/api/serializers_/devices.py:49 dcim/api/serializers_/devicetypes.py:25 msgid "Position (U)" msgstr "Pozycja (U)" -#: netbox/dcim/api/serializers_/racks.py:112 -#: netbox/templates/dcim/rack.html:28 +#: dcim/api/serializers_/racks.py:112 templates/dcim/rack.html:28 msgid "Facility ID" msgstr "Identyfikator obiektu" -#: netbox/dcim/choices.py:21 netbox/virtualization/choices.py:21 +#: dcim/choices.py:21 virtualization/choices.py:21 msgid "Staging" msgstr "Inscenizacja" -#: netbox/dcim/choices.py:23 netbox/dcim/choices.py:189 -#: netbox/dcim/choices.py:240 netbox/dcim/choices.py:1531 -#: netbox/virtualization/choices.py:23 netbox/virtualization/choices.py:48 +#: dcim/choices.py:23 dcim/choices.py:189 dcim/choices.py:240 +#: dcim/choices.py:1531 virtualization/choices.py:23 +#: virtualization/choices.py:48 msgid "Decommissioning" msgstr "Wycofanie z eksploatacji" -#: netbox/dcim/choices.py:24 +#: dcim/choices.py:24 msgid "Retired" msgstr "Emerytowany" -#: netbox/dcim/choices.py:65 +#: dcim/choices.py:65 msgid "2-post frame" msgstr "Rama 2-słupkowa" -#: netbox/dcim/choices.py:66 +#: dcim/choices.py:66 msgid "4-post frame" msgstr "Rama 4-słupkowa" -#: netbox/dcim/choices.py:67 +#: dcim/choices.py:67 msgid "4-post cabinet" msgstr "Szafka 4-słupkowa" -#: netbox/dcim/choices.py:68 +#: dcim/choices.py:68 msgid "Wall-mounted frame" msgstr "Rama naścienna" -#: netbox/dcim/choices.py:69 +#: dcim/choices.py:69 msgid "Wall-mounted frame (vertical)" msgstr "Rama naścienna (pionowa)" -#: netbox/dcim/choices.py:70 +#: dcim/choices.py:70 msgid "Wall-mounted cabinet" msgstr "Szafka naścienna" -#: netbox/dcim/choices.py:71 +#: dcim/choices.py:71 msgid "Wall-mounted cabinet (vertical)" msgstr "Szafka naścienna (pionowa)" -#: netbox/dcim/choices.py:83 netbox/dcim/choices.py:84 -#: netbox/dcim/choices.py:85 netbox/dcim/choices.py:86 +#: dcim/choices.py:83 dcim/choices.py:84 dcim/choices.py:85 dcim/choices.py:86 #, python-brace-format msgid "{n} inches" msgstr "{n} cale" -#: netbox/dcim/choices.py:100 netbox/ipam/choices.py:32 -#: netbox/ipam/choices.py:50 netbox/ipam/choices.py:70 -#: netbox/ipam/choices.py:155 netbox/wireless/choices.py:26 +#: dcim/choices.py:100 ipam/choices.py:32 ipam/choices.py:50 +#: ipam/choices.py:70 ipam/choices.py:155 wireless/choices.py:26 msgid "Reserved" msgstr "Zastrzeżone" -#: netbox/dcim/choices.py:101 netbox/templates/dcim/device.html:259 +#: dcim/choices.py:101 templates/dcim/device.html:259 msgid "Available" msgstr "Dostępny" -#: netbox/dcim/choices.py:104 netbox/ipam/choices.py:33 -#: netbox/ipam/choices.py:51 netbox/ipam/choices.py:71 -#: netbox/ipam/choices.py:156 netbox/wireless/choices.py:28 +#: dcim/choices.py:104 ipam/choices.py:33 ipam/choices.py:51 +#: ipam/choices.py:71 ipam/choices.py:156 wireless/choices.py:28 msgid "Deprecated" msgstr "Przestarzałe" -#: netbox/dcim/choices.py:114 -#: netbox/templates/dcim/inc/panels/racktype_dimensions.html:41 +#: dcim/choices.py:114 templates/dcim/inc/panels/racktype_dimensions.html:41 msgid "Millimeters" msgstr "Milimetrów" -#: netbox/dcim/choices.py:115 netbox/dcim/choices.py:1553 +#: dcim/choices.py:115 dcim/choices.py:1553 msgid "Inches" msgstr "Cale" -#: netbox/dcim/choices.py:136 netbox/dcim/choices.py:207 -#: netbox/dcim/choices.py:254 +#: dcim/choices.py:136 dcim/choices.py:207 dcim/choices.py:254 msgid "Front to rear" msgstr "Przód do tyłu" -#: netbox/dcim/choices.py:137 netbox/dcim/choices.py:208 -#: netbox/dcim/choices.py:255 +#: dcim/choices.py:137 dcim/choices.py:208 dcim/choices.py:255 msgid "Rear to front" msgstr "Tył do przodu" -#: netbox/dcim/choices.py:151 netbox/dcim/forms/bulk_edit.py:68 -#: netbox/dcim/forms/bulk_edit.py:87 netbox/dcim/forms/bulk_edit.py:173 -#: netbox/dcim/forms/bulk_edit.py:1405 netbox/dcim/forms/bulk_import.py:60 -#: netbox/dcim/forms/bulk_import.py:74 netbox/dcim/forms/bulk_import.py:137 -#: netbox/dcim/forms/bulk_import.py:566 netbox/dcim/forms/bulk_import.py:833 -#: netbox/dcim/forms/bulk_import.py:1088 netbox/dcim/forms/filtersets.py:234 -#: netbox/dcim/forms/model_forms.py:74 netbox/dcim/forms/model_forms.py:93 -#: netbox/dcim/forms/model_forms.py:170 netbox/dcim/forms/model_forms.py:1062 -#: netbox/dcim/forms/model_forms.py:1502 -#: netbox/dcim/forms/object_import.py:176 netbox/dcim/tables/devices.py:656 -#: netbox/dcim/tables/devices.py:869 netbox/dcim/tables/devices.py:954 -#: netbox/extras/tables/tables.py:223 netbox/ipam/tables/fhrp.py:59 -#: netbox/ipam/tables/ip.py:378 netbox/ipam/tables/services.py:44 -#: netbox/templates/dcim/interface.html:102 -#: netbox/templates/dcim/interface.html:309 -#: netbox/templates/dcim/location.html:41 netbox/templates/dcim/region.html:37 -#: netbox/templates/dcim/sitegroup.html:37 -#: netbox/templates/ipam/service.html:28 -#: netbox/templates/tenancy/contactgroup.html:29 -#: netbox/templates/tenancy/tenantgroup.html:37 -#: netbox/templates/virtualization/vminterface.html:39 -#: netbox/templates/wireless/wirelesslangroup.html:37 -#: netbox/tenancy/forms/bulk_edit.py:27 netbox/tenancy/forms/bulk_edit.py:61 -#: netbox/tenancy/forms/bulk_import.py:24 -#: netbox/tenancy/forms/bulk_import.py:58 -#: netbox/tenancy/forms/model_forms.py:25 -#: netbox/tenancy/forms/model_forms.py:68 -#: netbox/virtualization/forms/bulk_edit.py:207 -#: netbox/virtualization/forms/bulk_import.py:151 -#: netbox/virtualization/tables/virtualmachines.py:162 -#: netbox/wireless/forms/bulk_edit.py:24 -#: netbox/wireless/forms/bulk_import.py:21 -#: netbox/wireless/forms/model_forms.py:21 +#: dcim/choices.py:151 dcim/forms/bulk_edit.py:68 dcim/forms/bulk_edit.py:87 +#: dcim/forms/bulk_edit.py:173 dcim/forms/bulk_edit.py:1405 +#: dcim/forms/bulk_import.py:60 dcim/forms/bulk_import.py:74 +#: dcim/forms/bulk_import.py:137 dcim/forms/bulk_import.py:566 +#: dcim/forms/bulk_import.py:833 dcim/forms/bulk_import.py:1088 +#: dcim/forms/filtersets.py:234 dcim/forms/model_forms.py:74 +#: dcim/forms/model_forms.py:93 dcim/forms/model_forms.py:170 +#: dcim/forms/model_forms.py:1062 dcim/forms/model_forms.py:1502 +#: dcim/forms/object_import.py:176 dcim/tables/devices.py:656 +#: dcim/tables/devices.py:869 dcim/tables/devices.py:954 +#: extras/tables/tables.py:223 ipam/tables/fhrp.py:59 ipam/tables/ip.py:378 +#: ipam/tables/services.py:44 templates/dcim/interface.html:102 +#: templates/dcim/interface.html:309 templates/dcim/location.html:41 +#: templates/dcim/region.html:37 templates/dcim/sitegroup.html:37 +#: templates/ipam/service.html:28 templates/tenancy/contactgroup.html:29 +#: templates/tenancy/tenantgroup.html:37 +#: templates/virtualization/vminterface.html:39 +#: templates/wireless/wirelesslangroup.html:37 tenancy/forms/bulk_edit.py:27 +#: tenancy/forms/bulk_edit.py:61 tenancy/forms/bulk_import.py:24 +#: tenancy/forms/bulk_import.py:58 tenancy/forms/model_forms.py:25 +#: tenancy/forms/model_forms.py:68 virtualization/forms/bulk_edit.py:207 +#: virtualization/forms/bulk_import.py:151 +#: virtualization/tables/virtualmachines.py:162 wireless/forms/bulk_edit.py:24 +#: wireless/forms/bulk_import.py:21 wireless/forms/model_forms.py:21 msgid "Parent" msgstr "Rodzic" -#: netbox/dcim/choices.py:152 +#: dcim/choices.py:152 msgid "Child" msgstr "Dziecko" -#: netbox/dcim/choices.py:166 netbox/templates/dcim/device.html:340 -#: netbox/templates/dcim/rack.html:133 -#: netbox/templates/dcim/rack_elevation_list.html:20 -#: netbox/templates/dcim/rackreservation.html:76 +#: dcim/choices.py:166 templates/dcim/device.html:340 +#: templates/dcim/rack.html:133 templates/dcim/rack_elevation_list.html:20 +#: templates/dcim/rackreservation.html:76 msgid "Front" msgstr "Przód" -#: netbox/dcim/choices.py:167 netbox/templates/dcim/device.html:346 -#: netbox/templates/dcim/rack.html:139 -#: netbox/templates/dcim/rack_elevation_list.html:21 -#: netbox/templates/dcim/rackreservation.html:82 +#: dcim/choices.py:167 templates/dcim/device.html:346 +#: templates/dcim/rack.html:139 templates/dcim/rack_elevation_list.html:21 +#: templates/dcim/rackreservation.html:82 msgid "Rear" msgstr "Tył" -#: netbox/dcim/choices.py:186 netbox/dcim/choices.py:238 -#: netbox/virtualization/choices.py:46 +#: dcim/choices.py:186 dcim/choices.py:238 virtualization/choices.py:46 msgid "Staged" msgstr "Inscenizowane" -#: netbox/dcim/choices.py:188 +#: dcim/choices.py:188 msgid "Inventory" msgstr "Inwentaryzacja" -#: netbox/dcim/choices.py:209 netbox/dcim/choices.py:256 +#: dcim/choices.py:209 dcim/choices.py:256 msgid "Left to right" msgstr "Od lewej do prawej" -#: netbox/dcim/choices.py:210 netbox/dcim/choices.py:257 +#: dcim/choices.py:210 dcim/choices.py:257 msgid "Right to left" msgstr "Od prawej do lewej" -#: netbox/dcim/choices.py:211 netbox/dcim/choices.py:258 +#: dcim/choices.py:211 dcim/choices.py:258 msgid "Side to rear" msgstr "Z boku do tyłu" -#: netbox/dcim/choices.py:212 +#: dcim/choices.py:212 msgid "Rear to side" msgstr "Tył na bok" -#: netbox/dcim/choices.py:213 +#: dcim/choices.py:213 msgid "Bottom to top" msgstr "Od dołu do góry" -#: netbox/dcim/choices.py:214 +#: dcim/choices.py:214 msgid "Top to bottom" msgstr "Od góry do dołu" -#: netbox/dcim/choices.py:215 netbox/dcim/choices.py:259 -#: netbox/dcim/choices.py:1303 +#: dcim/choices.py:215 dcim/choices.py:259 dcim/choices.py:1303 msgid "Passive" msgstr "Pasywny" -#: netbox/dcim/choices.py:216 +#: dcim/choices.py:216 msgid "Mixed" msgstr "Mieszane" -#: netbox/dcim/choices.py:484 netbox/dcim/choices.py:733 +#: dcim/choices.py:484 dcim/choices.py:733 msgid "NEMA (Non-locking)" msgstr "NEMA (bez blokowania)" -#: netbox/dcim/choices.py:506 netbox/dcim/choices.py:755 +#: dcim/choices.py:506 dcim/choices.py:755 msgid "NEMA (Locking)" msgstr "NEMA (Blokowanie)" -#: netbox/dcim/choices.py:530 netbox/dcim/choices.py:779 +#: dcim/choices.py:530 dcim/choices.py:779 msgid "California Style" msgstr "Styl kalifornijski" -#: netbox/dcim/choices.py:538 +#: dcim/choices.py:538 msgid "International/ITA" msgstr "Międzynarodowy/ITA" -#: netbox/dcim/choices.py:573 netbox/dcim/choices.py:814 +#: dcim/choices.py:573 dcim/choices.py:814 msgid "Proprietary" -msgstr "Zastrzeżone" +msgstr "Własnościowy" -#: netbox/dcim/choices.py:581 netbox/dcim/choices.py:824 -#: netbox/dcim/choices.py:1219 netbox/dcim/choices.py:1221 -#: netbox/dcim/choices.py:1447 netbox/dcim/choices.py:1449 -#: netbox/netbox/navigation/menu.py:200 +#: dcim/choices.py:581 dcim/choices.py:824 dcim/choices.py:1219 +#: dcim/choices.py:1221 dcim/choices.py:1447 dcim/choices.py:1449 +#: netbox/navigation/menu.py:200 msgid "Other" msgstr "Pozostałe" -#: netbox/dcim/choices.py:787 +#: dcim/choices.py:787 msgid "ITA/International" msgstr "ITA/Międzynarodowy" -#: netbox/dcim/choices.py:854 +#: dcim/choices.py:854 msgid "Physical" msgstr "Fizyczne" -#: netbox/dcim/choices.py:855 netbox/dcim/choices.py:1023 +#: dcim/choices.py:855 dcim/choices.py:1023 msgid "Virtual" msgstr "Wirtualny" -#: netbox/dcim/choices.py:856 netbox/dcim/choices.py:1097 -#: netbox/dcim/forms/bulk_edit.py:1515 netbox/dcim/forms/filtersets.py:1330 -#: netbox/dcim/forms/model_forms.py:988 netbox/dcim/forms/model_forms.py:1397 -#: netbox/netbox/navigation/menu.py:140 netbox/netbox/navigation/menu.py:144 -#: netbox/templates/dcim/interface.html:210 +#: dcim/choices.py:856 dcim/choices.py:1097 dcim/forms/bulk_edit.py:1515 +#: dcim/forms/filtersets.py:1330 dcim/forms/model_forms.py:988 +#: dcim/forms/model_forms.py:1397 netbox/navigation/menu.py:140 +#: netbox/navigation/menu.py:144 templates/dcim/interface.html:210 msgid "Wireless" msgstr "Bezprzewodowy" -#: netbox/dcim/choices.py:1021 +#: dcim/choices.py:1021 msgid "Virtual interfaces" msgstr "Interfejsy wirtualne" -#: netbox/dcim/choices.py:1024 netbox/dcim/forms/bulk_edit.py:1410 -#: netbox/dcim/forms/bulk_import.py:840 netbox/dcim/forms/model_forms.py:974 -#: netbox/dcim/tables/devices.py:660 netbox/templates/dcim/interface.html:106 -#: netbox/templates/virtualization/vminterface.html:43 -#: netbox/virtualization/forms/bulk_edit.py:212 -#: netbox/virtualization/forms/bulk_import.py:158 -#: netbox/virtualization/tables/virtualmachines.py:166 +#: dcim/choices.py:1024 dcim/forms/bulk_edit.py:1410 +#: dcim/forms/bulk_import.py:840 dcim/forms/model_forms.py:974 +#: dcim/tables/devices.py:660 templates/dcim/interface.html:106 +#: templates/virtualization/vminterface.html:43 +#: virtualization/forms/bulk_edit.py:212 +#: virtualization/forms/bulk_import.py:158 +#: virtualization/tables/virtualmachines.py:166 msgid "Bridge" msgstr "Most" -#: netbox/dcim/choices.py:1025 +#: dcim/choices.py:1025 msgid "Link Aggregation Group (LAG)" msgstr "Grupa agregacji linków (LGD)" -#: netbox/dcim/choices.py:1029 +#: dcim/choices.py:1029 msgid "Ethernet (fixed)" msgstr "Ethernet (stały)" -#: netbox/dcim/choices.py:1044 +#: dcim/choices.py:1044 msgid "Ethernet (modular)" msgstr "Ethernet (modułowy)" -#: netbox/dcim/choices.py:1081 +#: dcim/choices.py:1081 msgid "Ethernet (backplane)" msgstr "Ethernet (płaszczyzna tylna)" -#: netbox/dcim/choices.py:1113 +#: dcim/choices.py:1113 msgid "Cellular" msgstr "Komórkowy" -#: netbox/dcim/choices.py:1165 netbox/dcim/forms/filtersets.py:383 -#: netbox/dcim/forms/filtersets.py:809 netbox/dcim/forms/filtersets.py:963 -#: netbox/dcim/forms/filtersets.py:1542 -#: netbox/templates/dcim/inventoryitem.html:52 -#: netbox/templates/dcim/virtualchassis_edit.html:54 +#: dcim/choices.py:1165 dcim/forms/filtersets.py:383 +#: dcim/forms/filtersets.py:809 dcim/forms/filtersets.py:963 +#: dcim/forms/filtersets.py:1542 templates/dcim/inventoryitem.html:52 +#: templates/dcim/virtualchassis_edit.html:54 msgid "Serial" msgstr "Seryjny" -#: netbox/dcim/choices.py:1180 +#: dcim/choices.py:1180 msgid "Coaxial" msgstr "koncentryczny" -#: netbox/dcim/choices.py:1200 +#: dcim/choices.py:1200 msgid "Stacking" msgstr "Układanie" -#: netbox/dcim/choices.py:1250 +#: dcim/choices.py:1250 msgid "Half" msgstr "Połowa" -#: netbox/dcim/choices.py:1251 +#: dcim/choices.py:1251 msgid "Full" msgstr "Pełny" -#: netbox/dcim/choices.py:1252 netbox/netbox/preferences.py:31 -#: netbox/wireless/choices.py:480 +#: dcim/choices.py:1252 netbox/preferences.py:31 wireless/choices.py:480 msgid "Auto" msgstr "Automatyczny" -#: netbox/dcim/choices.py:1263 +#: dcim/choices.py:1263 msgid "Access" msgstr "Dostęp" -#: netbox/dcim/choices.py:1264 netbox/ipam/tables/vlans.py:172 -#: netbox/ipam/tables/vlans.py:217 -#: netbox/templates/dcim/inc/interface_vlans_table.html:7 +#: dcim/choices.py:1264 ipam/tables/vlans.py:172 ipam/tables/vlans.py:217 +#: templates/dcim/inc/interface_vlans_table.html:7 msgid "Tagged" msgstr "Oznaczone" -#: netbox/dcim/choices.py:1265 +#: dcim/choices.py:1265 msgid "Tagged (All)" msgstr "Oznaczone (Wszystkie)" -#: netbox/dcim/choices.py:1294 +#: dcim/choices.py:1294 msgid "IEEE Standard" msgstr "Standard IEEE" -#: netbox/dcim/choices.py:1305 +#: dcim/choices.py:1305 msgid "Passive 24V (2-pair)" msgstr "Pasywny 24V (2 pary)" -#: netbox/dcim/choices.py:1306 +#: dcim/choices.py:1306 msgid "Passive 24V (4-pair)" msgstr "Pasywny 24V (4-parowy)" -#: netbox/dcim/choices.py:1307 +#: dcim/choices.py:1307 msgid "Passive 48V (2-pair)" msgstr "Pasywny 48V (2 pary)" -#: netbox/dcim/choices.py:1308 +#: dcim/choices.py:1308 msgid "Passive 48V (4-pair)" msgstr "Pasywny 48V (4 pary)" -#: netbox/dcim/choices.py:1378 netbox/dcim/choices.py:1488 +#: dcim/choices.py:1378 dcim/choices.py:1488 msgid "Copper" msgstr "Miedź" -#: netbox/dcim/choices.py:1401 +#: dcim/choices.py:1401 msgid "Fiber Optic" msgstr "Światłowód" -#: netbox/dcim/choices.py:1434 netbox/dcim/choices.py:1517 +#: dcim/choices.py:1434 dcim/choices.py:1517 msgid "USB" msgstr "USB" -#: netbox/dcim/choices.py:1504 +#: dcim/choices.py:1504 msgid "Fiber" msgstr "Włókno" -#: netbox/dcim/choices.py:1529 netbox/dcim/forms/filtersets.py:1227 +#: dcim/choices.py:1529 dcim/forms/filtersets.py:1227 msgid "Connected" msgstr "Połączony" -#: netbox/dcim/choices.py:1548 netbox/wireless/choices.py:497 +#: dcim/choices.py:1548 wireless/choices.py:497 msgid "Kilometers" msgstr "Kilometry" -#: netbox/dcim/choices.py:1549 netbox/templates/dcim/cable_trace.html:65 -#: netbox/wireless/choices.py:498 +#: dcim/choices.py:1549 templates/dcim/cable_trace.html:65 +#: wireless/choices.py:498 msgid "Meters" msgstr "Mierniki" -#: netbox/dcim/choices.py:1550 +#: dcim/choices.py:1550 msgid "Centimeters" msgstr "Centymetry" -#: netbox/dcim/choices.py:1551 netbox/wireless/choices.py:499 +#: dcim/choices.py:1551 wireless/choices.py:499 msgid "Miles" msgstr "Mile" -#: netbox/dcim/choices.py:1552 netbox/templates/dcim/cable_trace.html:66 -#: netbox/wireless/choices.py:500 +#: dcim/choices.py:1552 templates/dcim/cable_trace.html:66 +#: wireless/choices.py:500 msgid "Feet" msgstr "Stopy" -#: netbox/dcim/choices.py:1568 netbox/templates/dcim/device.html:327 -#: netbox/templates/dcim/rack.html:107 +#: dcim/choices.py:1568 templates/dcim/device.html:327 +#: templates/dcim/rack.html:107 msgid "Kilograms" msgstr "Kilogramy" -#: netbox/dcim/choices.py:1569 +#: dcim/choices.py:1569 msgid "Grams" msgstr "Gramy" -#: netbox/dcim/choices.py:1570 netbox/templates/dcim/device.html:328 -#: netbox/templates/dcim/rack.html:108 +#: dcim/choices.py:1570 templates/dcim/device.html:328 +#: templates/dcim/rack.html:108 msgid "Pounds" msgstr "funty" -#: netbox/dcim/choices.py:1571 +#: dcim/choices.py:1571 msgid "Ounces" msgstr "Uncja" -#: netbox/dcim/choices.py:1618 +#: dcim/choices.py:1618 msgid "Redundant" msgstr "Nadmiarowy" -#: netbox/dcim/choices.py:1639 +#: dcim/choices.py:1639 msgid "Single phase" msgstr "Jednofazowy" -#: netbox/dcim/choices.py:1640 +#: dcim/choices.py:1640 msgid "Three-phase" msgstr "Trójfazowy" -#: netbox/dcim/fields.py:45 +#: dcim/fields.py:45 #, python-brace-format msgid "Invalid MAC address format: {value}" msgstr "Nieprawidłowy format adresu MAC: {value}" -#: netbox/dcim/fields.py:71 +#: dcim/fields.py:71 #, python-brace-format msgid "Invalid WWN format: {value}" msgstr "Nieprawidłowy format WWN: {value}" -#: netbox/dcim/filtersets.py:86 +#: dcim/filtersets.py:86 msgid "Parent region (ID)" msgstr "Region macierzysty (ID)" -#: netbox/dcim/filtersets.py:92 +#: dcim/filtersets.py:92 msgid "Parent region (slug)" msgstr "Region macierzysty (identyfikator)" -#: netbox/dcim/filtersets.py:116 +#: dcim/filtersets.py:116 msgid "Parent site group (ID)" msgstr "Nadrzędna grupa witryn (ID)" -#: netbox/dcim/filtersets.py:122 +#: dcim/filtersets.py:122 msgid "Parent site group (slug)" msgstr "Nadrzędna grupa terenów (identyfikator)" -#: netbox/dcim/filtersets.py:164 netbox/extras/filtersets.py:364 -#: netbox/ipam/filtersets.py:841 netbox/ipam/filtersets.py:993 +#: dcim/filtersets.py:164 extras/filtersets.py:364 ipam/filtersets.py:841 +#: ipam/filtersets.py:993 msgid "Group (ID)" msgstr "Grupa (ID)" -#: netbox/dcim/filtersets.py:170 +#: dcim/filtersets.py:170 msgid "Group (slug)" msgstr "Grupa (identyfikator)" -#: netbox/dcim/filtersets.py:176 netbox/dcim/filtersets.py:181 +#: dcim/filtersets.py:176 dcim/filtersets.py:181 msgid "AS (ID)" msgstr "JAKO (ID)" -#: netbox/dcim/filtersets.py:246 +#: dcim/filtersets.py:246 msgid "Parent location (ID)" msgstr "Lokalizacja nadrzędna (ID)" -#: netbox/dcim/filtersets.py:252 +#: dcim/filtersets.py:252 msgid "Parent location (slug)" msgstr "Lokalizacja nadrzędna (identyfikator)" -#: netbox/dcim/filtersets.py:258 netbox/dcim/filtersets.py:369 -#: netbox/dcim/filtersets.py:490 netbox/dcim/filtersets.py:1057 -#: netbox/dcim/filtersets.py:1404 netbox/dcim/filtersets.py:2182 +#: dcim/filtersets.py:258 dcim/filtersets.py:369 dcim/filtersets.py:490 +#: dcim/filtersets.py:1057 dcim/filtersets.py:1404 dcim/filtersets.py:2182 msgid "Location (ID)" msgstr "Lokalizacja (ID)" -#: netbox/dcim/filtersets.py:265 netbox/dcim/filtersets.py:376 -#: netbox/dcim/filtersets.py:497 netbox/dcim/filtersets.py:1410 -#: netbox/extras/filtersets.py:542 +#: dcim/filtersets.py:265 dcim/filtersets.py:376 dcim/filtersets.py:497 +#: dcim/filtersets.py:1410 extras/filtersets.py:542 msgid "Location (slug)" msgstr "Lokalizacja (identyfikator)" -#: netbox/dcim/filtersets.py:296 netbox/dcim/filtersets.py:381 -#: netbox/dcim/filtersets.py:539 netbox/dcim/filtersets.py:678 -#: netbox/dcim/filtersets.py:882 netbox/dcim/filtersets.py:933 -#: netbox/dcim/filtersets.py:973 netbox/dcim/filtersets.py:1306 -#: netbox/dcim/filtersets.py:1840 +#: dcim/filtersets.py:296 dcim/filtersets.py:381 dcim/filtersets.py:539 +#: dcim/filtersets.py:678 dcim/filtersets.py:882 dcim/filtersets.py:933 +#: dcim/filtersets.py:973 dcim/filtersets.py:1306 dcim/filtersets.py:1840 msgid "Manufacturer (ID)" msgstr "Producent (ID)" -#: netbox/dcim/filtersets.py:302 netbox/dcim/filtersets.py:387 -#: netbox/dcim/filtersets.py:545 netbox/dcim/filtersets.py:684 -#: netbox/dcim/filtersets.py:888 netbox/dcim/filtersets.py:939 -#: netbox/dcim/filtersets.py:979 netbox/dcim/filtersets.py:1312 -#: netbox/dcim/filtersets.py:1846 +#: dcim/filtersets.py:302 dcim/filtersets.py:387 dcim/filtersets.py:545 +#: dcim/filtersets.py:684 dcim/filtersets.py:888 dcim/filtersets.py:939 +#: dcim/filtersets.py:979 dcim/filtersets.py:1312 dcim/filtersets.py:1846 msgid "Manufacturer (slug)" msgstr "Producent (identyfikator)" -#: netbox/dcim/filtersets.py:393 +#: dcim/filtersets.py:393 msgid "Rack type (slug)" msgstr "Typ szafy (identyfikator)" -#: netbox/dcim/filtersets.py:397 +#: dcim/filtersets.py:397 msgid "Rack type (ID)" msgstr "Typ szafy (numer identyfikacyjny)" -#: netbox/dcim/filtersets.py:411 netbox/dcim/filtersets.py:892 -#: netbox/dcim/filtersets.py:994 netbox/dcim/filtersets.py:1850 -#: netbox/ipam/filtersets.py:381 netbox/ipam/filtersets.py:493 -#: netbox/ipam/filtersets.py:1003 netbox/virtualization/filtersets.py:210 +#: dcim/filtersets.py:411 dcim/filtersets.py:892 dcim/filtersets.py:994 +#: dcim/filtersets.py:1850 ipam/filtersets.py:381 ipam/filtersets.py:493 +#: ipam/filtersets.py:1003 virtualization/filtersets.py:210 msgid "Role (ID)" msgstr "Rola (ID)" -#: netbox/dcim/filtersets.py:417 netbox/dcim/filtersets.py:898 -#: netbox/dcim/filtersets.py:1000 netbox/dcim/filtersets.py:1856 -#: netbox/extras/filtersets.py:558 netbox/ipam/filtersets.py:387 -#: netbox/ipam/filtersets.py:499 netbox/ipam/filtersets.py:1009 -#: netbox/virtualization/filtersets.py:216 +#: dcim/filtersets.py:417 dcim/filtersets.py:898 dcim/filtersets.py:1000 +#: dcim/filtersets.py:1856 extras/filtersets.py:558 ipam/filtersets.py:387 +#: ipam/filtersets.py:499 ipam/filtersets.py:1009 +#: virtualization/filtersets.py:216 msgid "Role (slug)" msgstr "Rola (identyfikator)" -#: netbox/dcim/filtersets.py:447 netbox/dcim/filtersets.py:1062 -#: netbox/dcim/filtersets.py:1415 netbox/dcim/filtersets.py:2244 +#: dcim/filtersets.py:447 dcim/filtersets.py:1062 dcim/filtersets.py:1415 +#: dcim/filtersets.py:2244 msgid "Rack (ID)" msgstr "Szafa (numer identyfikacyjny)" -#: netbox/dcim/filtersets.py:507 netbox/extras/filtersets.py:293 -#: netbox/extras/filtersets.py:337 netbox/extras/filtersets.py:359 -#: netbox/extras/filtersets.py:419 netbox/users/filtersets.py:113 -#: netbox/users/filtersets.py:180 +#: dcim/filtersets.py:507 extras/filtersets.py:293 extras/filtersets.py:337 +#: extras/filtersets.py:359 extras/filtersets.py:419 users/filtersets.py:113 +#: users/filtersets.py:180 msgid "User (name)" msgstr "Użytkownik (nazwa)" -#: netbox/dcim/filtersets.py:549 +#: dcim/filtersets.py:549 msgid "Default platform (ID)" msgstr "Domyślna platforma (ID)" -#: netbox/dcim/filtersets.py:555 +#: dcim/filtersets.py:555 msgid "Default platform (slug)" msgstr "Domyślna platforma (identyfikator)" -#: netbox/dcim/filtersets.py:558 netbox/dcim/forms/filtersets.py:517 +#: dcim/filtersets.py:558 dcim/forms/filtersets.py:517 msgid "Has a front image" msgstr "Posiada obraz z przodu" -#: netbox/dcim/filtersets.py:562 netbox/dcim/forms/filtersets.py:524 +#: dcim/filtersets.py:562 dcim/forms/filtersets.py:524 msgid "Has a rear image" msgstr "Posiada tylny obraz" -#: netbox/dcim/filtersets.py:567 netbox/dcim/filtersets.py:688 -#: netbox/dcim/filtersets.py:1131 netbox/dcim/forms/filtersets.py:531 -#: netbox/dcim/forms/filtersets.py:627 netbox/dcim/forms/filtersets.py:848 +#: dcim/filtersets.py:567 dcim/filtersets.py:688 dcim/filtersets.py:1131 +#: dcim/forms/filtersets.py:531 dcim/forms/filtersets.py:627 +#: dcim/forms/filtersets.py:848 msgid "Has console ports" msgstr "Posiada porty konsoli" -#: netbox/dcim/filtersets.py:571 netbox/dcim/filtersets.py:692 -#: netbox/dcim/filtersets.py:1135 netbox/dcim/forms/filtersets.py:538 -#: netbox/dcim/forms/filtersets.py:634 netbox/dcim/forms/filtersets.py:855 +#: dcim/filtersets.py:571 dcim/filtersets.py:692 dcim/filtersets.py:1135 +#: dcim/forms/filtersets.py:538 dcim/forms/filtersets.py:634 +#: dcim/forms/filtersets.py:855 msgid "Has console server ports" msgstr "Posiada porty serwera konsoli" -#: netbox/dcim/filtersets.py:575 netbox/dcim/filtersets.py:696 -#: netbox/dcim/filtersets.py:1139 netbox/dcim/forms/filtersets.py:545 -#: netbox/dcim/forms/filtersets.py:641 netbox/dcim/forms/filtersets.py:862 +#: dcim/filtersets.py:575 dcim/filtersets.py:696 dcim/filtersets.py:1139 +#: dcim/forms/filtersets.py:545 dcim/forms/filtersets.py:641 +#: dcim/forms/filtersets.py:862 msgid "Has power ports" msgstr "Posiada porty zasilania" -#: netbox/dcim/filtersets.py:579 netbox/dcim/filtersets.py:700 -#: netbox/dcim/filtersets.py:1143 netbox/dcim/forms/filtersets.py:552 -#: netbox/dcim/forms/filtersets.py:648 netbox/dcim/forms/filtersets.py:869 +#: dcim/filtersets.py:579 dcim/filtersets.py:700 dcim/filtersets.py:1143 +#: dcim/forms/filtersets.py:552 dcim/forms/filtersets.py:648 +#: dcim/forms/filtersets.py:869 msgid "Has power outlets" msgstr "Posiada gniazdka elektryczne" -#: netbox/dcim/filtersets.py:583 netbox/dcim/filtersets.py:704 -#: netbox/dcim/filtersets.py:1147 netbox/dcim/forms/filtersets.py:559 -#: netbox/dcim/forms/filtersets.py:655 netbox/dcim/forms/filtersets.py:876 +#: dcim/filtersets.py:583 dcim/filtersets.py:704 dcim/filtersets.py:1147 +#: dcim/forms/filtersets.py:559 dcim/forms/filtersets.py:655 +#: dcim/forms/filtersets.py:876 msgid "Has interfaces" msgstr "Posiada interfejsy" -#: netbox/dcim/filtersets.py:587 netbox/dcim/filtersets.py:708 -#: netbox/dcim/filtersets.py:1151 netbox/dcim/forms/filtersets.py:566 -#: netbox/dcim/forms/filtersets.py:662 netbox/dcim/forms/filtersets.py:883 +#: dcim/filtersets.py:587 dcim/filtersets.py:708 dcim/filtersets.py:1151 +#: dcim/forms/filtersets.py:566 dcim/forms/filtersets.py:662 +#: dcim/forms/filtersets.py:883 msgid "Has pass-through ports" msgstr "Posiada porty przelotowe" -#: netbox/dcim/filtersets.py:591 netbox/dcim/filtersets.py:1155 -#: netbox/dcim/forms/filtersets.py:580 +#: dcim/filtersets.py:591 dcim/filtersets.py:1155 dcim/forms/filtersets.py:580 msgid "Has module bays" msgstr "Posiada kieszenie modułowe" -#: netbox/dcim/filtersets.py:595 netbox/dcim/filtersets.py:1159 -#: netbox/dcim/forms/filtersets.py:573 +#: dcim/filtersets.py:595 dcim/filtersets.py:1159 dcim/forms/filtersets.py:573 msgid "Has device bays" msgstr "Posiada zatoki na urządzenia" -#: netbox/dcim/filtersets.py:599 netbox/dcim/forms/filtersets.py:587 +#: dcim/filtersets.py:599 dcim/forms/filtersets.py:587 msgid "Has inventory items" msgstr "Posiada pozycje inwentaryzacyjne" -#: netbox/dcim/filtersets.py:756 netbox/dcim/filtersets.py:989 -#: netbox/dcim/filtersets.py:1436 +#: dcim/filtersets.py:756 dcim/filtersets.py:989 dcim/filtersets.py:1436 msgid "Device type (ID)" msgstr "Typ urządzenia (ID)" -#: netbox/dcim/filtersets.py:772 netbox/dcim/filtersets.py:1317 +#: dcim/filtersets.py:772 dcim/filtersets.py:1317 msgid "Module type (ID)" msgstr "Typ modułu (ID)" -#: netbox/dcim/filtersets.py:804 netbox/dcim/filtersets.py:1591 +#: dcim/filtersets.py:804 dcim/filtersets.py:1591 msgid "Power port (ID)" msgstr "Port zasilania (ID)" -#: netbox/dcim/filtersets.py:878 netbox/dcim/filtersets.py:1836 +#: dcim/filtersets.py:878 dcim/filtersets.py:1836 msgid "Parent inventory item (ID)" msgstr "Nadrzędny element zapasów (ID)" -#: netbox/dcim/filtersets.py:921 netbox/dcim/filtersets.py:947 -#: netbox/dcim/filtersets.py:1127 netbox/virtualization/filtersets.py:238 +#: dcim/filtersets.py:921 dcim/filtersets.py:947 dcim/filtersets.py:1127 +#: virtualization/filtersets.py:238 msgid "Config template (ID)" msgstr "Szablon konfiguracji (ID)" -#: netbox/dcim/filtersets.py:985 +#: dcim/filtersets.py:985 msgid "Device type (slug)" msgstr "Typ urządzenia (identyfikator)" -#: netbox/dcim/filtersets.py:1005 +#: dcim/filtersets.py:1005 msgid "Parent Device (ID)" msgstr "Urządzenie nadrzędne (ID)" -#: netbox/dcim/filtersets.py:1009 netbox/virtualization/filtersets.py:220 +#: dcim/filtersets.py:1009 virtualization/filtersets.py:220 msgid "Platform (ID)" msgstr "Platforma (ID)" -#: netbox/dcim/filtersets.py:1015 netbox/extras/filtersets.py:569 -#: netbox/virtualization/filtersets.py:226 +#: dcim/filtersets.py:1015 extras/filtersets.py:569 +#: virtualization/filtersets.py:226 msgid "Platform (slug)" msgstr "Platforma (identyfikator)" -#: netbox/dcim/filtersets.py:1051 netbox/dcim/filtersets.py:1399 -#: netbox/dcim/filtersets.py:1934 netbox/dcim/filtersets.py:2176 -#: netbox/dcim/filtersets.py:2235 +#: dcim/filtersets.py:1051 dcim/filtersets.py:1399 dcim/filtersets.py:1934 +#: dcim/filtersets.py:2176 dcim/filtersets.py:2235 msgid "Site name (slug)" msgstr "Nazwa terenu (identyfikator)" -#: netbox/dcim/filtersets.py:1067 +#: dcim/filtersets.py:1067 msgid "Parent bay (ID)" msgstr "Zatoka macierzysta (ID)" -#: netbox/dcim/filtersets.py:1071 +#: dcim/filtersets.py:1071 msgid "VM cluster (ID)" msgstr "Klaster maszyn wirtualnych (ID)" -#: netbox/dcim/filtersets.py:1077 netbox/extras/filtersets.py:591 -#: netbox/virtualization/filtersets.py:136 +#: dcim/filtersets.py:1077 extras/filtersets.py:591 +#: virtualization/filtersets.py:136 msgid "Cluster group (slug)" msgstr "Grupa klastra (identyfikator)" -#: netbox/dcim/filtersets.py:1082 netbox/virtualization/filtersets.py:130 +#: dcim/filtersets.py:1082 virtualization/filtersets.py:130 msgid "Cluster group (ID)" msgstr "Grupa klastra (ID)" -#: netbox/dcim/filtersets.py:1088 +#: dcim/filtersets.py:1088 msgid "Device model (slug)" msgstr "Model urządzenia (identyfikator)" -#: netbox/dcim/filtersets.py:1099 netbox/dcim/forms/bulk_edit.py:516 +#: dcim/filtersets.py:1099 dcim/forms/bulk_edit.py:516 msgid "Is full depth" msgstr "Jest pełna głębokość" -#: netbox/dcim/filtersets.py:1103 netbox/dcim/forms/common.py:18 -#: netbox/dcim/forms/filtersets.py:818 netbox/dcim/forms/filtersets.py:1385 -#: netbox/dcim/models/device_components.py:518 -#: netbox/virtualization/filtersets.py:230 -#: netbox/virtualization/filtersets.py:301 -#: netbox/virtualization/forms/filtersets.py:172 -#: netbox/virtualization/forms/filtersets.py:223 +#: dcim/filtersets.py:1103 dcim/forms/common.py:18 +#: dcim/forms/filtersets.py:818 dcim/forms/filtersets.py:1385 +#: dcim/models/device_components.py:518 virtualization/filtersets.py:230 +#: virtualization/filtersets.py:301 virtualization/forms/filtersets.py:172 +#: virtualization/forms/filtersets.py:223 msgid "MAC address" msgstr "Adres MAC" -#: netbox/dcim/filtersets.py:1110 netbox/dcim/filtersets.py:1274 -#: netbox/dcim/forms/filtersets.py:827 netbox/dcim/forms/filtersets.py:930 -#: netbox/virtualization/filtersets.py:234 -#: netbox/virtualization/forms/filtersets.py:176 +#: dcim/filtersets.py:1110 dcim/filtersets.py:1274 +#: dcim/forms/filtersets.py:827 dcim/forms/filtersets.py:930 +#: virtualization/filtersets.py:234 virtualization/forms/filtersets.py:176 msgid "Has a primary IP" msgstr "Posiada podstawowy adres IP" -#: netbox/dcim/filtersets.py:1114 +#: dcim/filtersets.py:1114 msgid "Has an out-of-band IP" msgstr "Posiada adres IP poza pasmem" -#: netbox/dcim/filtersets.py:1119 +#: dcim/filtersets.py:1119 msgid "Virtual chassis (ID)" msgstr "Wirtualne podwozie (ID)" -#: netbox/dcim/filtersets.py:1123 +#: dcim/filtersets.py:1123 msgid "Is a virtual chassis member" msgstr "Jest członkiem wirtualnego podwozia" -#: netbox/dcim/filtersets.py:1164 +#: dcim/filtersets.py:1164 msgid "OOB IP (ID)" msgstr "OOB IP (ID)" -#: netbox/dcim/filtersets.py:1168 +#: dcim/filtersets.py:1168 msgid "Has virtual device context" msgstr "Posiada kontekst urządzenia wirtualnego" -#: netbox/dcim/filtersets.py:1257 +#: dcim/filtersets.py:1257 msgid "VDC (ID)" msgstr "VDC (ID)" -#: netbox/dcim/filtersets.py:1262 +#: dcim/filtersets.py:1262 msgid "Device model" msgstr "Model urządzenia" -#: netbox/dcim/filtersets.py:1267 netbox/ipam/filtersets.py:632 -#: netbox/vpn/filtersets.py:102 netbox/vpn/filtersets.py:401 +#: dcim/filtersets.py:1267 ipam/filtersets.py:632 vpn/filtersets.py:102 +#: vpn/filtersets.py:401 msgid "Interface (ID)" msgstr "Interfejs (ID)" -#: netbox/dcim/filtersets.py:1323 +#: dcim/filtersets.py:1323 msgid "Module type (model)" msgstr "Typ modułu (model)" -#: netbox/dcim/filtersets.py:1329 +#: dcim/filtersets.py:1329 msgid "Module bay (ID)" msgstr "Osłona modułu (ID)" -#: netbox/dcim/filtersets.py:1333 netbox/dcim/filtersets.py:1425 -#: netbox/ipam/filtersets.py:611 netbox/ipam/filtersets.py:851 -#: netbox/ipam/filtersets.py:1115 netbox/virtualization/filtersets.py:161 -#: netbox/vpn/filtersets.py:379 +#: dcim/filtersets.py:1333 dcim/filtersets.py:1425 ipam/filtersets.py:611 +#: ipam/filtersets.py:851 ipam/filtersets.py:1115 +#: virtualization/filtersets.py:161 vpn/filtersets.py:379 msgid "Device (ID)" msgstr "Urządzenie (ID)" -#: netbox/dcim/filtersets.py:1421 +#: dcim/filtersets.py:1421 msgid "Rack (name)" msgstr "Szafa (nazwa)" -#: netbox/dcim/filtersets.py:1431 netbox/ipam/filtersets.py:606 -#: netbox/ipam/filtersets.py:846 netbox/ipam/filtersets.py:1121 -#: netbox/vpn/filtersets.py:374 +#: dcim/filtersets.py:1431 ipam/filtersets.py:606 ipam/filtersets.py:846 +#: ipam/filtersets.py:1121 vpn/filtersets.py:374 msgid "Device (name)" msgstr "Urządzenie (nazwa)" -#: netbox/dcim/filtersets.py:1442 +#: dcim/filtersets.py:1442 msgid "Device type (model)" msgstr "Typ urządzenia (model)" -#: netbox/dcim/filtersets.py:1447 +#: dcim/filtersets.py:1447 msgid "Device role (ID)" msgstr "Rola urządzenia (ID)" -#: netbox/dcim/filtersets.py:1453 +#: dcim/filtersets.py:1453 msgid "Device role (slug)" msgstr "Rola urządzenia (identyfikator)" -#: netbox/dcim/filtersets.py:1458 +#: dcim/filtersets.py:1458 msgid "Virtual Chassis (ID)" msgstr "Wirtualne podwozie (ID)" -#: netbox/dcim/filtersets.py:1464 netbox/dcim/forms/filtersets.py:109 -#: netbox/dcim/tables/devices.py:206 netbox/netbox/navigation/menu.py:79 -#: netbox/templates/dcim/device.html:120 -#: netbox/templates/dcim/device_edit.html:93 -#: netbox/templates/dcim/virtualchassis.html:20 -#: netbox/templates/dcim/virtualchassis_add.html:8 -#: netbox/templates/dcim/virtualchassis_edit.html:24 +#: dcim/filtersets.py:1464 dcim/forms/filtersets.py:109 +#: dcim/tables/devices.py:206 netbox/navigation/menu.py:79 +#: templates/dcim/device.html:120 templates/dcim/device_edit.html:93 +#: templates/dcim/virtualchassis.html:20 +#: templates/dcim/virtualchassis_add.html:8 +#: templates/dcim/virtualchassis_edit.html:24 msgid "Virtual Chassis" msgstr "Wirtualne podwozie" -#: netbox/dcim/filtersets.py:1488 +#: dcim/filtersets.py:1488 msgid "Module (ID)" msgstr "Moduł (ID)" -#: netbox/dcim/filtersets.py:1495 +#: dcim/filtersets.py:1495 msgid "Cable (ID)" msgstr "Kabel (ID)" -#: netbox/dcim/filtersets.py:1604 netbox/ipam/forms/bulk_import.py:189 -#: netbox/vpn/forms/bulk_import.py:308 +#: dcim/filtersets.py:1604 ipam/forms/bulk_import.py:189 +#: vpn/forms/bulk_import.py:308 msgid "Assigned VLAN" msgstr "Przypisana sieć VLAN" -#: netbox/dcim/filtersets.py:1608 +#: dcim/filtersets.py:1608 msgid "Assigned VID" msgstr "Przypisany VID" -#: netbox/dcim/filtersets.py:1613 netbox/dcim/forms/bulk_edit.py:1489 -#: netbox/dcim/forms/bulk_import.py:891 netbox/dcim/forms/filtersets.py:1428 -#: netbox/dcim/forms/model_forms.py:1378 -#: netbox/dcim/models/device_components.py:711 -#: netbox/dcim/tables/devices.py:626 netbox/ipam/filtersets.py:316 -#: netbox/ipam/filtersets.py:327 netbox/ipam/filtersets.py:483 -#: netbox/ipam/filtersets.py:584 netbox/ipam/filtersets.py:595 -#: netbox/ipam/forms/bulk_edit.py:241 netbox/ipam/forms/bulk_edit.py:297 -#: netbox/ipam/forms/bulk_edit.py:339 netbox/ipam/forms/bulk_import.py:157 -#: netbox/ipam/forms/bulk_import.py:243 netbox/ipam/forms/bulk_import.py:279 -#: netbox/ipam/forms/filtersets.py:67 netbox/ipam/forms/filtersets.py:172 -#: netbox/ipam/forms/filtersets.py:309 netbox/ipam/forms/model_forms.py:62 -#: netbox/ipam/forms/model_forms.py:202 netbox/ipam/forms/model_forms.py:247 -#: netbox/ipam/forms/model_forms.py:300 netbox/ipam/forms/model_forms.py:431 -#: netbox/ipam/forms/model_forms.py:445 netbox/ipam/forms/model_forms.py:459 -#: netbox/ipam/models/ip.py:233 netbox/ipam/models/ip.py:512 -#: netbox/ipam/models/ip.py:720 netbox/ipam/models/vrfs.py:62 -#: netbox/ipam/tables/ip.py:242 netbox/ipam/tables/ip.py:309 -#: netbox/ipam/tables/ip.py:360 netbox/ipam/tables/ip.py:450 -#: netbox/templates/dcim/interface.html:133 -#: netbox/templates/ipam/ipaddress.html:18 -#: netbox/templates/ipam/iprange.html:40 netbox/templates/ipam/prefix.html:19 -#: netbox/templates/ipam/vrf.html:7 netbox/templates/ipam/vrf.html:13 -#: netbox/templates/virtualization/vminterface.html:47 -#: netbox/virtualization/forms/bulk_edit.py:261 -#: netbox/virtualization/forms/bulk_import.py:171 -#: netbox/virtualization/forms/filtersets.py:228 -#: netbox/virtualization/forms/model_forms.py:344 -#: netbox/virtualization/models/virtualmachines.py:355 -#: netbox/virtualization/tables/virtualmachines.py:143 +#: dcim/filtersets.py:1613 dcim/forms/bulk_edit.py:1489 +#: dcim/forms/bulk_import.py:891 dcim/forms/filtersets.py:1428 +#: dcim/forms/model_forms.py:1378 dcim/models/device_components.py:711 +#: dcim/tables/devices.py:626 ipam/filtersets.py:316 ipam/filtersets.py:327 +#: ipam/filtersets.py:483 ipam/filtersets.py:584 ipam/filtersets.py:595 +#: ipam/forms/bulk_edit.py:242 ipam/forms/bulk_edit.py:298 +#: ipam/forms/bulk_edit.py:340 ipam/forms/bulk_import.py:157 +#: ipam/forms/bulk_import.py:243 ipam/forms/bulk_import.py:279 +#: ipam/forms/filtersets.py:67 ipam/forms/filtersets.py:172 +#: ipam/forms/filtersets.py:309 ipam/forms/model_forms.py:62 +#: ipam/forms/model_forms.py:202 ipam/forms/model_forms.py:247 +#: ipam/forms/model_forms.py:300 ipam/forms/model_forms.py:431 +#: ipam/forms/model_forms.py:445 ipam/forms/model_forms.py:459 +#: ipam/models/ip.py:233 ipam/models/ip.py:512 ipam/models/ip.py:720 +#: ipam/models/vrfs.py:62 ipam/tables/ip.py:242 ipam/tables/ip.py:309 +#: ipam/tables/ip.py:360 ipam/tables/ip.py:450 +#: templates/dcim/interface.html:133 templates/ipam/ipaddress.html:18 +#: templates/ipam/iprange.html:40 templates/ipam/prefix.html:19 +#: templates/ipam/vrf.html:7 templates/ipam/vrf.html:13 +#: templates/virtualization/vminterface.html:47 +#: virtualization/forms/bulk_edit.py:261 +#: virtualization/forms/bulk_import.py:171 +#: virtualization/forms/filtersets.py:228 +#: virtualization/forms/model_forms.py:344 +#: virtualization/models/virtualmachines.py:355 +#: virtualization/tables/virtualmachines.py:143 msgid "VRF" msgstr "VRF" -#: netbox/dcim/filtersets.py:1619 netbox/ipam/filtersets.py:322 -#: netbox/ipam/filtersets.py:333 netbox/ipam/filtersets.py:489 -#: netbox/ipam/filtersets.py:590 netbox/ipam/filtersets.py:601 +#: dcim/filtersets.py:1619 ipam/filtersets.py:322 ipam/filtersets.py:333 +#: ipam/filtersets.py:489 ipam/filtersets.py:590 ipam/filtersets.py:601 msgid "VRF (RD)" msgstr "VRF (RD)" -#: netbox/dcim/filtersets.py:1624 netbox/ipam/filtersets.py:1030 -#: netbox/vpn/filtersets.py:342 +#: dcim/filtersets.py:1624 ipam/filtersets.py:1030 vpn/filtersets.py:342 msgid "L2VPN (ID)" msgstr "L2VPN (ID)" -#: netbox/dcim/filtersets.py:1630 netbox/dcim/forms/filtersets.py:1433 -#: netbox/dcim/tables/devices.py:570 netbox/ipam/filtersets.py:1036 -#: netbox/ipam/forms/filtersets.py:518 netbox/ipam/tables/vlans.py:137 -#: netbox/templates/dcim/interface.html:93 netbox/templates/ipam/vlan.html:66 -#: netbox/templates/vpn/l2vpntermination.html:12 -#: netbox/virtualization/forms/filtersets.py:233 -#: netbox/vpn/forms/bulk_import.py:280 netbox/vpn/forms/filtersets.py:246 -#: netbox/vpn/forms/model_forms.py:409 netbox/vpn/forms/model_forms.py:427 -#: netbox/vpn/models/l2vpn.py:63 netbox/vpn/tables/l2vpn.py:55 +#: dcim/filtersets.py:1630 dcim/forms/filtersets.py:1433 +#: dcim/tables/devices.py:570 ipam/filtersets.py:1036 +#: ipam/forms/filtersets.py:518 ipam/tables/vlans.py:137 +#: templates/dcim/interface.html:93 templates/ipam/vlan.html:66 +#: templates/vpn/l2vpntermination.html:12 +#: virtualization/forms/filtersets.py:233 vpn/forms/bulk_import.py:280 +#: vpn/forms/filtersets.py:246 vpn/forms/model_forms.py:409 +#: vpn/forms/model_forms.py:427 vpn/models/l2vpn.py:63 vpn/tables/l2vpn.py:55 msgid "L2VPN" msgstr "L2VPN" -#: netbox/dcim/filtersets.py:1662 +#: dcim/filtersets.py:1662 msgid "Virtual Chassis Interfaces for Device" msgstr "Interfejsy wirtualnej obudowy dla urządzenia" -#: netbox/dcim/filtersets.py:1667 +#: dcim/filtersets.py:1667 msgid "Virtual Chassis Interfaces for Device (ID)" msgstr "Interfejsy wirtualnej obudowy dla urządzenia (ID)" -#: netbox/dcim/filtersets.py:1671 +#: dcim/filtersets.py:1671 msgid "Kind of interface" msgstr "Rodzaj interfejsu" -#: netbox/dcim/filtersets.py:1676 netbox/virtualization/filtersets.py:293 +#: dcim/filtersets.py:1676 virtualization/filtersets.py:293 msgid "Parent interface (ID)" msgstr "Interfejs nadrzędny (ID)" -#: netbox/dcim/filtersets.py:1681 netbox/virtualization/filtersets.py:298 +#: dcim/filtersets.py:1681 virtualization/filtersets.py:298 msgid "Bridged interface (ID)" msgstr "Interfejs mostkowy (ID)" -#: netbox/dcim/filtersets.py:1686 +#: dcim/filtersets.py:1686 msgid "LAG interface (ID)" msgstr "Interfejs LAG (ID)" -#: netbox/dcim/filtersets.py:1713 netbox/dcim/filtersets.py:1725 -#: netbox/dcim/forms/filtersets.py:1345 netbox/dcim/forms/model_forms.py:1690 -#: netbox/templates/dcim/virtualdevicecontext.html:15 +#: dcim/filtersets.py:1713 dcim/filtersets.py:1725 +#: dcim/forms/filtersets.py:1345 dcim/forms/model_forms.py:1690 +#: templates/dcim/virtualdevicecontext.html:15 msgid "Virtual Device Context" msgstr "Kontekst urządzenia wirtualnego" -#: netbox/dcim/filtersets.py:1719 +#: dcim/filtersets.py:1719 msgid "Virtual Device Context (Identifier)" msgstr "Kontekst urządzenia wirtualnego (identyfikator)" -#: netbox/dcim/filtersets.py:1730 -#: netbox/templates/wireless/wirelesslan.html:11 -#: netbox/wireless/forms/model_forms.py:53 +#: dcim/filtersets.py:1730 templates/wireless/wirelesslan.html:11 +#: wireless/forms/model_forms.py:53 msgid "Wireless LAN" msgstr "Bezprzewodowa sieć LAN" -#: netbox/dcim/filtersets.py:1734 netbox/dcim/tables/devices.py:613 +#: dcim/filtersets.py:1734 dcim/tables/devices.py:613 msgid "Wireless link" msgstr "Połączenie bezprzewodowe" -#: netbox/dcim/filtersets.py:1803 +#: dcim/filtersets.py:1803 msgid "Parent module bay (ID)" msgstr "Osłona modułu nadrzędnego (ID)" -#: netbox/dcim/filtersets.py:1808 +#: dcim/filtersets.py:1808 msgid "Installed module (ID)" msgstr "Zainstalowany moduł (ID)" -#: netbox/dcim/filtersets.py:1819 +#: dcim/filtersets.py:1819 msgid "Installed device (ID)" msgstr "Zainstalowane urządzenie (ID)" -#: netbox/dcim/filtersets.py:1825 +#: dcim/filtersets.py:1825 msgid "Installed device (name)" msgstr "Zainstalowane urządzenie (nazwa)" -#: netbox/dcim/filtersets.py:1891 +#: dcim/filtersets.py:1891 msgid "Master (ID)" msgstr "Mistrz (ID)" -#: netbox/dcim/filtersets.py:1897 +#: dcim/filtersets.py:1897 msgid "Master (name)" msgstr "Mistrz (imię)" -#: netbox/dcim/filtersets.py:1939 netbox/tenancy/filtersets.py:245 +#: dcim/filtersets.py:1939 tenancy/filtersets.py:245 msgid "Tenant (ID)" msgstr "Najemca (ID)" -#: netbox/dcim/filtersets.py:1945 netbox/extras/filtersets.py:618 -#: netbox/tenancy/filtersets.py:251 +#: dcim/filtersets.py:1945 extras/filtersets.py:618 tenancy/filtersets.py:251 msgid "Tenant (slug)" msgstr "Najemca (identyfikator)" -#: netbox/dcim/filtersets.py:1981 netbox/dcim/forms/filtersets.py:1077 +#: dcim/filtersets.py:1981 dcim/forms/filtersets.py:1077 msgid "Unterminated" msgstr "Nieskończony" -#: netbox/dcim/filtersets.py:2239 +#: dcim/filtersets.py:2239 msgid "Power panel (ID)" msgstr "Panel zasilania (ID)" -#: netbox/dcim/forms/bulk_create.py:40 netbox/extras/forms/filtersets.py:401 -#: netbox/extras/forms/model_forms.py:567 -#: netbox/extras/forms/model_forms.py:619 netbox/netbox/forms/base.py:86 -#: netbox/netbox/forms/mixins.py:81 netbox/netbox/tables/columns.py:478 -#: netbox/templates/circuits/inc/circuit_termination.html:32 -#: netbox/templates/generic/bulk_edit.html:65 -#: netbox/templates/inc/panels/tags.html:5 -#: netbox/utilities/forms/fields/fields.py:81 +#: dcim/forms/bulk_create.py:40 extras/forms/filtersets.py:401 +#: extras/forms/model_forms.py:567 extras/forms/model_forms.py:619 +#: netbox/forms/base.py:86 netbox/forms/mixins.py:81 +#: netbox/tables/columns.py:478 +#: templates/circuits/inc/circuit_termination.html:32 +#: templates/generic/bulk_edit.html:65 templates/inc/panels/tags.html:5 +#: utilities/forms/fields/fields.py:81 msgid "Tags" msgstr "Tagi" -#: netbox/dcim/forms/bulk_create.py:112 netbox/dcim/forms/filtersets.py:1498 -#: netbox/dcim/forms/model_forms.py:488 netbox/dcim/forms/model_forms.py:546 -#: netbox/dcim/forms/object_create.py:197 -#: netbox/dcim/forms/object_create.py:353 netbox/dcim/tables/devices.py:165 -#: netbox/dcim/tables/devices.py:707 netbox/dcim/tables/devicetypes.py:246 -#: netbox/templates/dcim/device.html:43 netbox/templates/dcim/device.html:131 -#: netbox/templates/dcim/modulebay.html:38 -#: netbox/templates/dcim/virtualchassis.html:66 -#: netbox/templates/dcim/virtualchassis_edit.html:55 +#: dcim/forms/bulk_create.py:112 dcim/forms/filtersets.py:1498 +#: dcim/forms/model_forms.py:488 dcim/forms/model_forms.py:546 +#: dcim/forms/object_create.py:197 dcim/forms/object_create.py:353 +#: dcim/tables/devices.py:165 dcim/tables/devices.py:707 +#: dcim/tables/devicetypes.py:246 templates/dcim/device.html:43 +#: templates/dcim/device.html:131 templates/dcim/modulebay.html:38 +#: templates/dcim/virtualchassis.html:66 +#: templates/dcim/virtualchassis_edit.html:55 msgid "Position" msgstr "Pozycja" -#: netbox/dcim/forms/bulk_create.py:114 +#: dcim/forms/bulk_create.py:114 msgid "" "Alphanumeric ranges are supported. (Must match the number of names being " "created.)" @@ -3448,887 +3117,825 @@ msgstr "" "Obsługiwane są zakresy alfanumeryczne. (Musi odpowiadać liczbie tworzonych " "nazw.)" -#: netbox/dcim/forms/bulk_edit.py:132 +#: dcim/forms/bulk_edit.py:132 msgid "Contact name" msgstr "Nazwa kontaktu" -#: netbox/dcim/forms/bulk_edit.py:137 +#: dcim/forms/bulk_edit.py:137 msgid "Contact phone" msgstr "Telefon kontaktowy" -#: netbox/dcim/forms/bulk_edit.py:143 +#: dcim/forms/bulk_edit.py:143 msgid "Contact E-mail" msgstr "Kontakt E-mail" -#: netbox/dcim/forms/bulk_edit.py:146 netbox/dcim/forms/bulk_import.py:123 -#: netbox/dcim/forms/model_forms.py:128 +#: dcim/forms/bulk_edit.py:146 dcim/forms/bulk_import.py:123 +#: dcim/forms/model_forms.py:128 msgid "Time zone" msgstr "Strefa czasowa" -#: netbox/dcim/forms/bulk_edit.py:224 netbox/dcim/forms/bulk_edit.py:495 -#: netbox/dcim/forms/bulk_edit.py:559 netbox/dcim/forms/bulk_edit.py:632 -#: netbox/dcim/forms/bulk_edit.py:656 netbox/dcim/forms/bulk_edit.py:740 -#: netbox/dcim/forms/bulk_edit.py:1267 netbox/dcim/forms/bulk_edit.py:1660 -#: netbox/dcim/forms/bulk_import.py:182 netbox/dcim/forms/bulk_import.py:371 -#: netbox/dcim/forms/bulk_import.py:405 netbox/dcim/forms/bulk_import.py:450 -#: netbox/dcim/forms/bulk_import.py:486 netbox/dcim/forms/bulk_import.py:1082 -#: netbox/dcim/forms/filtersets.py:313 netbox/dcim/forms/filtersets.py:372 -#: netbox/dcim/forms/filtersets.py:494 netbox/dcim/forms/filtersets.py:619 -#: netbox/dcim/forms/filtersets.py:700 netbox/dcim/forms/filtersets.py:782 -#: netbox/dcim/forms/filtersets.py:947 netbox/dcim/forms/filtersets.py:1539 -#: netbox/dcim/forms/model_forms.py:207 netbox/dcim/forms/model_forms.py:337 -#: netbox/dcim/forms/model_forms.py:349 netbox/dcim/forms/model_forms.py:395 -#: netbox/dcim/forms/model_forms.py:436 netbox/dcim/forms/model_forms.py:1075 -#: netbox/dcim/forms/model_forms.py:1515 -#: netbox/dcim/forms/object_import.py:187 netbox/dcim/tables/devices.py:96 -#: netbox/dcim/tables/devices.py:172 netbox/dcim/tables/devices.py:940 -#: netbox/dcim/tables/devicetypes.py:80 netbox/dcim/tables/devicetypes.py:308 -#: netbox/dcim/tables/modules.py:20 netbox/dcim/tables/modules.py:60 -#: netbox/dcim/tables/racks.py:58 netbox/dcim/tables/racks.py:132 -#: netbox/templates/dcim/devicetype.html:14 -#: netbox/templates/dcim/inventoryitem.html:44 -#: netbox/templates/dcim/manufacturer.html:33 -#: netbox/templates/dcim/modulebay.html:62 -#: netbox/templates/dcim/moduletype.html:14 -#: netbox/templates/dcim/platform.html:37 -#: netbox/templates/dcim/racktype.html:16 +#: dcim/forms/bulk_edit.py:224 dcim/forms/bulk_edit.py:495 +#: dcim/forms/bulk_edit.py:559 dcim/forms/bulk_edit.py:632 +#: dcim/forms/bulk_edit.py:656 dcim/forms/bulk_edit.py:740 +#: dcim/forms/bulk_edit.py:1267 dcim/forms/bulk_edit.py:1660 +#: dcim/forms/bulk_import.py:182 dcim/forms/bulk_import.py:371 +#: dcim/forms/bulk_import.py:405 dcim/forms/bulk_import.py:450 +#: dcim/forms/bulk_import.py:486 dcim/forms/bulk_import.py:1082 +#: dcim/forms/filtersets.py:313 dcim/forms/filtersets.py:372 +#: dcim/forms/filtersets.py:494 dcim/forms/filtersets.py:619 +#: dcim/forms/filtersets.py:700 dcim/forms/filtersets.py:782 +#: dcim/forms/filtersets.py:947 dcim/forms/filtersets.py:1539 +#: dcim/forms/model_forms.py:207 dcim/forms/model_forms.py:337 +#: dcim/forms/model_forms.py:349 dcim/forms/model_forms.py:395 +#: dcim/forms/model_forms.py:436 dcim/forms/model_forms.py:1075 +#: dcim/forms/model_forms.py:1515 dcim/forms/object_import.py:187 +#: dcim/tables/devices.py:96 dcim/tables/devices.py:172 +#: dcim/tables/devices.py:940 dcim/tables/devicetypes.py:80 +#: dcim/tables/devicetypes.py:308 dcim/tables/modules.py:20 +#: dcim/tables/modules.py:60 dcim/tables/racks.py:58 dcim/tables/racks.py:132 +#: templates/dcim/devicetype.html:14 templates/dcim/inventoryitem.html:44 +#: templates/dcim/manufacturer.html:33 templates/dcim/modulebay.html:62 +#: templates/dcim/moduletype.html:25 templates/dcim/platform.html:37 +#: templates/dcim/racktype.html:16 msgid "Manufacturer" msgstr "Producent" -#: netbox/dcim/forms/bulk_edit.py:229 netbox/dcim/forms/bulk_edit.py:372 -#: netbox/dcim/forms/bulk_import.py:191 netbox/dcim/forms/bulk_import.py:263 -#: netbox/dcim/forms/filtersets.py:255 -#: netbox/templates/dcim/inc/panels/racktype_dimensions.html:6 +#: dcim/forms/bulk_edit.py:229 dcim/forms/bulk_edit.py:372 +#: dcim/forms/bulk_import.py:191 dcim/forms/bulk_import.py:263 +#: dcim/forms/filtersets.py:255 +#: templates/dcim/inc/panels/racktype_dimensions.html:6 msgid "Form factor" msgstr "Współczynnik kształtu" -#: netbox/dcim/forms/bulk_edit.py:234 netbox/dcim/forms/bulk_edit.py:377 -#: netbox/dcim/forms/bulk_import.py:199 netbox/dcim/forms/bulk_import.py:266 -#: netbox/dcim/forms/filtersets.py:260 -#: netbox/templates/dcim/inc/panels/racktype_dimensions.html:10 +#: dcim/forms/bulk_edit.py:234 dcim/forms/bulk_edit.py:377 +#: dcim/forms/bulk_import.py:199 dcim/forms/bulk_import.py:266 +#: dcim/forms/filtersets.py:260 +#: templates/dcim/inc/panels/racktype_dimensions.html:10 msgid "Width" msgstr "Szerokość" -#: netbox/dcim/forms/bulk_edit.py:240 netbox/dcim/forms/bulk_edit.py:383 -#: netbox/templates/dcim/devicetype.html:37 +#: dcim/forms/bulk_edit.py:240 dcim/forms/bulk_edit.py:383 +#: templates/dcim/devicetype.html:37 msgid "Height (U)" msgstr "Wysokość (U)" -#: netbox/dcim/forms/bulk_edit.py:249 netbox/dcim/forms/bulk_edit.py:388 -#: netbox/dcim/forms/filtersets.py:274 +#: dcim/forms/bulk_edit.py:249 dcim/forms/bulk_edit.py:388 +#: dcim/forms/filtersets.py:274 msgid "Descending units" msgstr "Jednostki malejące" -#: netbox/dcim/forms/bulk_edit.py:252 netbox/dcim/forms/bulk_edit.py:391 +#: dcim/forms/bulk_edit.py:252 dcim/forms/bulk_edit.py:391 msgid "Outer width" msgstr "Szerokość zewnętrzna" -#: netbox/dcim/forms/bulk_edit.py:257 netbox/dcim/forms/bulk_edit.py:396 +#: dcim/forms/bulk_edit.py:257 dcim/forms/bulk_edit.py:396 msgid "Outer depth" msgstr "Głębokość zewnętrzna" -#: netbox/dcim/forms/bulk_edit.py:262 netbox/dcim/forms/bulk_edit.py:401 -#: netbox/dcim/forms/bulk_import.py:204 netbox/dcim/forms/bulk_import.py:271 +#: dcim/forms/bulk_edit.py:262 dcim/forms/bulk_edit.py:401 +#: dcim/forms/bulk_import.py:204 dcim/forms/bulk_import.py:271 msgid "Outer unit" msgstr "Jednostka zewnętrzna" -#: netbox/dcim/forms/bulk_edit.py:267 netbox/dcim/forms/bulk_edit.py:406 +#: dcim/forms/bulk_edit.py:267 dcim/forms/bulk_edit.py:406 msgid "Mounting depth" msgstr "Głębokość montażu" -#: netbox/dcim/forms/bulk_edit.py:272 netbox/dcim/forms/bulk_edit.py:299 -#: netbox/dcim/forms/bulk_edit.py:416 netbox/dcim/forms/bulk_edit.py:446 -#: netbox/dcim/forms/bulk_edit.py:529 netbox/dcim/forms/bulk_edit.py:552 -#: netbox/dcim/forms/bulk_edit.py:573 netbox/dcim/forms/bulk_edit.py:595 -#: netbox/dcim/forms/bulk_import.py:384 netbox/dcim/forms/bulk_import.py:416 -#: netbox/dcim/forms/filtersets.py:285 netbox/dcim/forms/filtersets.py:307 -#: netbox/dcim/forms/filtersets.py:327 netbox/dcim/forms/filtersets.py:401 -#: netbox/dcim/forms/filtersets.py:488 netbox/dcim/forms/filtersets.py:594 -#: netbox/dcim/forms/filtersets.py:613 netbox/dcim/forms/filtersets.py:674 -#: netbox/dcim/forms/model_forms.py:221 netbox/dcim/forms/model_forms.py:298 -#: netbox/dcim/tables/devicetypes.py:106 netbox/dcim/tables/modules.py:35 -#: netbox/dcim/tables/racks.py:74 netbox/dcim/tables/racks.py:172 -#: netbox/extras/forms/bulk_edit.py:53 netbox/extras/forms/bulk_edit.py:133 -#: netbox/extras/forms/bulk_edit.py:183 netbox/extras/forms/bulk_edit.py:288 -#: netbox/extras/forms/filtersets.py:64 netbox/extras/forms/filtersets.py:156 -#: netbox/extras/forms/filtersets.py:243 netbox/ipam/forms/bulk_edit.py:189 -#: netbox/templates/dcim/device.html:324 -#: netbox/templates/dcim/devicetype.html:49 -#: netbox/templates/dcim/moduletype.html:34 netbox/templates/dcim/rack.html:81 -#: netbox/templates/dcim/racktype.html:41 -#: netbox/templates/extras/configcontext.html:17 -#: netbox/templates/extras/customlink.html:25 -#: netbox/templates/extras/savedfilter.html:33 -#: netbox/templates/ipam/role.html:30 +#: dcim/forms/bulk_edit.py:272 dcim/forms/bulk_edit.py:299 +#: dcim/forms/bulk_edit.py:416 dcim/forms/bulk_edit.py:446 +#: dcim/forms/bulk_edit.py:529 dcim/forms/bulk_edit.py:552 +#: dcim/forms/bulk_edit.py:573 dcim/forms/bulk_edit.py:595 +#: dcim/forms/bulk_import.py:384 dcim/forms/bulk_import.py:416 +#: dcim/forms/filtersets.py:285 dcim/forms/filtersets.py:307 +#: dcim/forms/filtersets.py:327 dcim/forms/filtersets.py:401 +#: dcim/forms/filtersets.py:488 dcim/forms/filtersets.py:594 +#: dcim/forms/filtersets.py:613 dcim/forms/filtersets.py:674 +#: dcim/forms/model_forms.py:221 dcim/forms/model_forms.py:298 +#: dcim/tables/devicetypes.py:106 dcim/tables/modules.py:35 +#: dcim/tables/racks.py:74 dcim/tables/racks.py:172 +#: extras/forms/bulk_edit.py:53 extras/forms/bulk_edit.py:133 +#: extras/forms/bulk_edit.py:183 extras/forms/bulk_edit.py:288 +#: extras/forms/filtersets.py:64 extras/forms/filtersets.py:156 +#: extras/forms/filtersets.py:243 ipam/forms/bulk_edit.py:190 +#: templates/dcim/device.html:324 templates/dcim/devicetype.html:49 +#: templates/dcim/moduletype.html:45 templates/dcim/rack.html:81 +#: templates/dcim/racktype.html:41 templates/extras/configcontext.html:17 +#: templates/extras/customlink.html:25 templates/extras/savedfilter.html:33 +#: templates/ipam/role.html:30 msgid "Weight" msgstr "Waga" -#: netbox/dcim/forms/bulk_edit.py:277 netbox/dcim/forms/bulk_edit.py:421 -#: netbox/dcim/forms/filtersets.py:290 +#: dcim/forms/bulk_edit.py:277 dcim/forms/bulk_edit.py:421 +#: dcim/forms/filtersets.py:290 msgid "Max weight" msgstr "Maksymalna waga" -#: netbox/dcim/forms/bulk_edit.py:282 netbox/dcim/forms/bulk_edit.py:426 -#: netbox/dcim/forms/bulk_edit.py:534 netbox/dcim/forms/bulk_edit.py:578 -#: netbox/dcim/forms/bulk_import.py:210 netbox/dcim/forms/bulk_import.py:283 -#: netbox/dcim/forms/bulk_import.py:389 netbox/dcim/forms/bulk_import.py:421 -#: netbox/dcim/forms/filtersets.py:295 netbox/dcim/forms/filtersets.py:598 -#: netbox/dcim/forms/filtersets.py:678 +#: dcim/forms/bulk_edit.py:282 dcim/forms/bulk_edit.py:426 +#: dcim/forms/bulk_edit.py:534 dcim/forms/bulk_edit.py:578 +#: dcim/forms/bulk_import.py:210 dcim/forms/bulk_import.py:283 +#: dcim/forms/bulk_import.py:389 dcim/forms/bulk_import.py:421 +#: dcim/forms/filtersets.py:295 dcim/forms/filtersets.py:598 +#: dcim/forms/filtersets.py:678 msgid "Weight unit" msgstr "Jednostka wagowa" -#: netbox/dcim/forms/bulk_edit.py:296 netbox/dcim/forms/filtersets.py:305 -#: netbox/dcim/forms/model_forms.py:217 netbox/dcim/forms/model_forms.py:256 -#: netbox/templates/dcim/rack.html:45 netbox/templates/dcim/racktype.html:13 +#: dcim/forms/bulk_edit.py:296 dcim/forms/filtersets.py:305 +#: dcim/forms/model_forms.py:217 dcim/forms/model_forms.py:256 +#: templates/dcim/rack.html:45 templates/dcim/racktype.html:13 msgid "Rack Type" msgstr "Typ szafy" -#: netbox/dcim/forms/bulk_edit.py:298 netbox/dcim/forms/model_forms.py:220 -#: netbox/dcim/forms/model_forms.py:297 +#: dcim/forms/bulk_edit.py:298 dcim/forms/model_forms.py:220 +#: dcim/forms/model_forms.py:297 msgid "Outer Dimensions" msgstr "Wymiary zewnętrzne" -#: netbox/dcim/forms/bulk_edit.py:301 netbox/dcim/forms/model_forms.py:222 -#: netbox/dcim/forms/model_forms.py:299 netbox/templates/dcim/device.html:315 -#: netbox/templates/dcim/inc/panels/racktype_dimensions.html:3 +#: dcim/forms/bulk_edit.py:301 dcim/forms/model_forms.py:222 +#: dcim/forms/model_forms.py:299 templates/dcim/device.html:315 +#: templates/dcim/inc/panels/racktype_dimensions.html:3 msgid "Dimensions" msgstr "Wymiary" -#: netbox/dcim/forms/bulk_edit.py:303 netbox/dcim/forms/filtersets.py:306 -#: netbox/dcim/forms/filtersets.py:326 netbox/dcim/forms/model_forms.py:224 -#: netbox/templates/dcim/inc/panels/racktype_numbering.html:3 +#: dcim/forms/bulk_edit.py:303 dcim/forms/filtersets.py:306 +#: dcim/forms/filtersets.py:326 dcim/forms/model_forms.py:224 +#: templates/dcim/inc/panels/racktype_numbering.html:3 msgid "Numbering" msgstr "Numeracja" -#: netbox/dcim/forms/bulk_edit.py:357 netbox/dcim/forms/bulk_edit.py:1262 -#: netbox/dcim/forms/bulk_edit.py:1655 netbox/dcim/forms/bulk_import.py:253 -#: netbox/dcim/forms/bulk_import.py:1076 netbox/dcim/forms/filtersets.py:367 -#: netbox/dcim/forms/filtersets.py:777 netbox/dcim/forms/filtersets.py:1534 -#: netbox/dcim/forms/model_forms.py:251 netbox/dcim/forms/model_forms.py:1070 -#: netbox/dcim/forms/model_forms.py:1510 -#: netbox/dcim/forms/object_import.py:181 netbox/dcim/tables/devices.py:169 -#: netbox/dcim/tables/devices.py:809 netbox/dcim/tables/devices.py:937 -#: netbox/dcim/tables/devicetypes.py:304 netbox/dcim/tables/racks.py:129 -#: netbox/extras/filtersets.py:552 netbox/ipam/forms/bulk_edit.py:260 -#: netbox/ipam/forms/bulk_edit.py:310 netbox/ipam/forms/bulk_edit.py:358 -#: netbox/ipam/forms/bulk_edit.py:556 netbox/ipam/forms/bulk_import.py:197 -#: netbox/ipam/forms/bulk_import.py:262 netbox/ipam/forms/bulk_import.py:298 -#: netbox/ipam/forms/bulk_import.py:455 netbox/ipam/forms/filtersets.py:237 -#: netbox/ipam/forms/filtersets.py:289 netbox/ipam/forms/filtersets.py:360 -#: netbox/ipam/forms/filtersets.py:509 netbox/ipam/forms/model_forms.py:188 -#: netbox/ipam/forms/model_forms.py:221 netbox/ipam/forms/model_forms.py:250 -#: netbox/ipam/forms/model_forms.py:643 netbox/ipam/tables/ip.py:258 -#: netbox/ipam/tables/ip.py:316 netbox/ipam/tables/ip.py:367 -#: netbox/ipam/tables/vlans.py:130 netbox/ipam/tables/vlans.py:235 -#: netbox/templates/dcim/device.html:182 -#: netbox/templates/dcim/inc/panels/inventory_items.html:20 -#: netbox/templates/dcim/interface.html:223 -#: netbox/templates/dcim/inventoryitem.html:36 -#: netbox/templates/dcim/rack.html:49 netbox/templates/ipam/ipaddress.html:41 -#: netbox/templates/ipam/iprange.html:50 netbox/templates/ipam/prefix.html:77 -#: netbox/templates/ipam/role.html:19 netbox/templates/ipam/vlan.html:52 -#: netbox/templates/virtualization/virtualmachine.html:23 -#: netbox/templates/vpn/tunneltermination.html:17 -#: netbox/templates/wireless/inc/wirelesslink_interface.html:20 -#: netbox/tenancy/forms/bulk_edit.py:142 -#: netbox/tenancy/forms/filtersets.py:107 -#: netbox/tenancy/forms/model_forms.py:137 -#: netbox/tenancy/tables/contacts.py:102 -#: netbox/virtualization/forms/bulk_edit.py:145 -#: netbox/virtualization/forms/bulk_import.py:106 -#: netbox/virtualization/forms/filtersets.py:157 -#: netbox/virtualization/forms/model_forms.py:195 -#: netbox/virtualization/tables/virtualmachines.py:75 -#: netbox/vpn/forms/bulk_edit.py:87 netbox/vpn/forms/bulk_import.py:81 -#: netbox/vpn/forms/filtersets.py:85 netbox/vpn/forms/model_forms.py:78 -#: netbox/vpn/forms/model_forms.py:113 netbox/vpn/tables/tunnels.py:82 +#: dcim/forms/bulk_edit.py:357 dcim/forms/bulk_edit.py:1262 +#: dcim/forms/bulk_edit.py:1655 dcim/forms/bulk_import.py:253 +#: dcim/forms/bulk_import.py:1076 dcim/forms/filtersets.py:367 +#: dcim/forms/filtersets.py:777 dcim/forms/filtersets.py:1534 +#: dcim/forms/model_forms.py:251 dcim/forms/model_forms.py:1070 +#: dcim/forms/model_forms.py:1510 dcim/forms/object_import.py:181 +#: dcim/tables/devices.py:169 dcim/tables/devices.py:809 +#: dcim/tables/devices.py:937 dcim/tables/devicetypes.py:304 +#: dcim/tables/racks.py:129 extras/filtersets.py:552 +#: ipam/forms/bulk_edit.py:261 ipam/forms/bulk_edit.py:311 +#: ipam/forms/bulk_edit.py:359 ipam/forms/bulk_edit.py:511 +#: ipam/forms/bulk_import.py:197 ipam/forms/bulk_import.py:262 +#: ipam/forms/bulk_import.py:298 ipam/forms/bulk_import.py:455 +#: ipam/forms/filtersets.py:237 ipam/forms/filtersets.py:289 +#: ipam/forms/filtersets.py:360 ipam/forms/filtersets.py:509 +#: ipam/forms/model_forms.py:188 ipam/forms/model_forms.py:221 +#: ipam/forms/model_forms.py:250 ipam/forms/model_forms.py:643 +#: ipam/tables/ip.py:258 ipam/tables/ip.py:316 ipam/tables/ip.py:367 +#: ipam/tables/vlans.py:130 ipam/tables/vlans.py:235 +#: templates/dcim/device.html:182 +#: templates/dcim/inc/panels/inventory_items.html:20 +#: templates/dcim/interface.html:223 templates/dcim/inventoryitem.html:36 +#: templates/dcim/rack.html:49 templates/ipam/ipaddress.html:41 +#: templates/ipam/iprange.html:50 templates/ipam/prefix.html:77 +#: templates/ipam/role.html:19 templates/ipam/vlan.html:52 +#: templates/virtualization/virtualmachine.html:23 +#: templates/vpn/tunneltermination.html:17 +#: templates/wireless/inc/wirelesslink_interface.html:20 +#: tenancy/forms/bulk_edit.py:142 tenancy/forms/filtersets.py:107 +#: tenancy/forms/model_forms.py:137 tenancy/tables/contacts.py:102 +#: virtualization/forms/bulk_edit.py:145 +#: virtualization/forms/bulk_import.py:106 +#: virtualization/forms/filtersets.py:157 +#: virtualization/forms/model_forms.py:195 +#: virtualization/tables/virtualmachines.py:75 vpn/forms/bulk_edit.py:87 +#: vpn/forms/bulk_import.py:81 vpn/forms/filtersets.py:85 +#: vpn/forms/model_forms.py:78 vpn/forms/model_forms.py:113 +#: vpn/tables/tunnels.py:82 msgid "Role" msgstr "Rola" -#: netbox/dcim/forms/bulk_edit.py:364 netbox/dcim/forms/bulk_edit.py:712 -#: netbox/dcim/forms/bulk_edit.py:764 netbox/templates/dcim/device.html:104 -#: netbox/templates/dcim/module.html:77 -#: netbox/templates/dcim/modulebay.html:70 netbox/templates/dcim/rack.html:57 -#: netbox/templates/virtualization/virtualmachine.html:35 +#: dcim/forms/bulk_edit.py:364 dcim/forms/bulk_edit.py:712 +#: dcim/forms/bulk_edit.py:764 templates/dcim/device.html:104 +#: templates/dcim/module.html:77 templates/dcim/modulebay.html:70 +#: templates/dcim/rack.html:57 templates/virtualization/virtualmachine.html:35 msgid "Serial Number" msgstr "Numer seryjny" -#: netbox/dcim/forms/bulk_edit.py:367 netbox/dcim/forms/filtersets.py:387 -#: netbox/dcim/forms/filtersets.py:813 netbox/dcim/forms/filtersets.py:967 -#: netbox/dcim/forms/filtersets.py:1546 +#: dcim/forms/bulk_edit.py:367 dcim/forms/filtersets.py:387 +#: dcim/forms/filtersets.py:813 dcim/forms/filtersets.py:967 +#: dcim/forms/filtersets.py:1546 msgid "Asset tag" msgstr "Etykieta zasobu" -#: netbox/dcim/forms/bulk_edit.py:411 netbox/dcim/forms/bulk_edit.py:524 -#: netbox/dcim/forms/bulk_edit.py:568 netbox/dcim/forms/bulk_edit.py:705 -#: netbox/dcim/forms/bulk_import.py:277 netbox/dcim/forms/bulk_import.py:410 -#: netbox/dcim/forms/bulk_import.py:580 netbox/dcim/forms/filtersets.py:280 -#: netbox/dcim/forms/filtersets.py:511 netbox/dcim/forms/filtersets.py:669 -#: netbox/dcim/forms/filtersets.py:804 netbox/templates/dcim/device.html:98 -#: netbox/templates/dcim/devicetype.html:65 -#: netbox/templates/dcim/moduletype.html:30 netbox/templates/dcim/rack.html:65 -#: netbox/templates/dcim/racktype.html:28 +#: dcim/forms/bulk_edit.py:411 dcim/forms/bulk_edit.py:524 +#: dcim/forms/bulk_edit.py:568 dcim/forms/bulk_edit.py:705 +#: dcim/forms/bulk_import.py:277 dcim/forms/bulk_import.py:410 +#: dcim/forms/bulk_import.py:580 dcim/forms/filtersets.py:280 +#: dcim/forms/filtersets.py:511 dcim/forms/filtersets.py:669 +#: dcim/forms/filtersets.py:804 templates/dcim/device.html:98 +#: templates/dcim/devicetype.html:65 templates/dcim/moduletype.html:41 +#: templates/dcim/rack.html:65 templates/dcim/racktype.html:28 msgid "Airflow" msgstr "Przepływ powietrza" -#: netbox/dcim/forms/bulk_edit.py:440 netbox/dcim/forms/bulk_edit.py:910 -#: netbox/dcim/forms/bulk_import.py:322 netbox/dcim/forms/bulk_import.py:325 -#: netbox/dcim/forms/bulk_import.py:553 netbox/dcim/forms/bulk_import.py:1358 -#: netbox/dcim/forms/bulk_import.py:1362 netbox/dcim/forms/filtersets.py:104 -#: netbox/dcim/forms/filtersets.py:324 netbox/dcim/forms/filtersets.py:405 -#: netbox/dcim/forms/filtersets.py:419 netbox/dcim/forms/filtersets.py:457 -#: netbox/dcim/forms/filtersets.py:772 netbox/dcim/forms/filtersets.py:1035 -#: netbox/dcim/forms/filtersets.py:1167 netbox/dcim/forms/model_forms.py:264 -#: netbox/dcim/forms/model_forms.py:306 netbox/dcim/forms/model_forms.py:479 -#: netbox/dcim/forms/model_forms.py:755 netbox/dcim/forms/object_create.py:400 -#: netbox/dcim/tables/devices.py:161 netbox/dcim/tables/power.py:70 -#: netbox/dcim/tables/racks.py:217 netbox/ipam/forms/bulk_edit.py:468 -#: netbox/ipam/forms/filtersets.py:442 netbox/templates/dcim/device.html:30 -#: netbox/templates/dcim/inc/cable_termination.html:16 -#: netbox/templates/dcim/powerfeed.html:28 netbox/templates/dcim/rack.html:13 -#: netbox/templates/dcim/rack/base.html:4 -#: netbox/templates/dcim/rackreservation.html:19 -#: netbox/templates/dcim/rackreservation.html:36 -#: netbox/virtualization/forms/model_forms.py:113 +#: dcim/forms/bulk_edit.py:440 dcim/forms/bulk_edit.py:910 +#: dcim/forms/bulk_import.py:322 dcim/forms/bulk_import.py:325 +#: dcim/forms/bulk_import.py:553 dcim/forms/bulk_import.py:1358 +#: dcim/forms/bulk_import.py:1362 dcim/forms/filtersets.py:104 +#: dcim/forms/filtersets.py:324 dcim/forms/filtersets.py:405 +#: dcim/forms/filtersets.py:419 dcim/forms/filtersets.py:457 +#: dcim/forms/filtersets.py:772 dcim/forms/filtersets.py:1035 +#: dcim/forms/filtersets.py:1167 dcim/forms/model_forms.py:264 +#: dcim/forms/model_forms.py:306 dcim/forms/model_forms.py:479 +#: dcim/forms/model_forms.py:755 dcim/forms/object_create.py:400 +#: dcim/tables/devices.py:161 dcim/tables/power.py:70 dcim/tables/racks.py:217 +#: ipam/forms/filtersets.py:442 templates/dcim/device.html:30 +#: templates/dcim/inc/cable_termination.html:16 +#: templates/dcim/powerfeed.html:28 templates/dcim/rack.html:13 +#: templates/dcim/rack/base.html:4 templates/dcim/rackreservation.html:19 +#: templates/dcim/rackreservation.html:36 +#: virtualization/forms/model_forms.py:113 msgid "Rack" msgstr "Szafa" -#: netbox/dcim/forms/bulk_edit.py:444 netbox/dcim/forms/bulk_edit.py:730 -#: netbox/dcim/forms/filtersets.py:325 netbox/dcim/forms/filtersets.py:398 -#: netbox/dcim/forms/filtersets.py:481 netbox/dcim/forms/filtersets.py:608 -#: netbox/dcim/forms/filtersets.py:721 netbox/dcim/forms/filtersets.py:942 -#: netbox/dcim/forms/model_forms.py:670 netbox/dcim/forms/model_forms.py:1580 -#: netbox/templates/dcim/device_edit.html:20 +#: dcim/forms/bulk_edit.py:444 dcim/forms/bulk_edit.py:730 +#: dcim/forms/filtersets.py:325 dcim/forms/filtersets.py:398 +#: dcim/forms/filtersets.py:481 dcim/forms/filtersets.py:608 +#: dcim/forms/filtersets.py:721 dcim/forms/filtersets.py:942 +#: dcim/forms/model_forms.py:670 dcim/forms/model_forms.py:1580 +#: templates/dcim/device_edit.html:20 msgid "Hardware" msgstr "Sprzęt" -#: netbox/dcim/forms/bulk_edit.py:500 netbox/dcim/forms/bulk_import.py:377 -#: netbox/dcim/forms/filtersets.py:499 netbox/dcim/forms/model_forms.py:353 +#: dcim/forms/bulk_edit.py:500 dcim/forms/bulk_import.py:377 +#: dcim/forms/filtersets.py:499 dcim/forms/model_forms.py:353 msgid "Default platform" msgstr "Domyślna platforma" -#: netbox/dcim/forms/bulk_edit.py:505 netbox/dcim/forms/bulk_edit.py:564 -#: netbox/dcim/forms/filtersets.py:502 netbox/dcim/forms/filtersets.py:622 +#: dcim/forms/bulk_edit.py:505 dcim/forms/bulk_edit.py:564 +#: dcim/forms/filtersets.py:502 dcim/forms/filtersets.py:622 msgid "Part number" msgstr "Numer części" -#: netbox/dcim/forms/bulk_edit.py:509 +#: dcim/forms/bulk_edit.py:509 msgid "U height" msgstr "Wysokość U" -#: netbox/dcim/forms/bulk_edit.py:521 netbox/dcim/tables/devicetypes.py:102 +#: dcim/forms/bulk_edit.py:521 dcim/tables/devicetypes.py:102 msgid "Exclude from utilization" msgstr "Wyklucz z wykorzystania" -#: netbox/dcim/forms/bulk_edit.py:550 netbox/dcim/forms/model_forms.py:368 -#: netbox/dcim/tables/devicetypes.py:77 netbox/templates/dcim/device.html:88 -#: netbox/templates/dcim/devicebay.html:52 -#: netbox/templates/dcim/module.html:61 +#: dcim/forms/bulk_edit.py:550 dcim/forms/model_forms.py:368 +#: dcim/tables/devicetypes.py:77 templates/dcim/device.html:88 +#: templates/dcim/devicebay.html:52 templates/dcim/module.html:61 msgid "Device Type" msgstr "Typ urządzenia" -#: netbox/dcim/forms/bulk_edit.py:592 netbox/dcim/forms/model_forms.py:401 -#: netbox/dcim/tables/modules.py:17 netbox/dcim/tables/modules.py:65 -#: netbox/templates/dcim/module.html:65 -#: netbox/templates/dcim/modulebay.html:66 -#: netbox/templates/dcim/moduletype.html:11 +#: dcim/forms/bulk_edit.py:592 dcim/forms/model_forms.py:401 +#: dcim/tables/modules.py:17 dcim/tables/modules.py:65 +#: templates/dcim/module.html:65 templates/dcim/modulebay.html:66 +#: templates/dcim/moduletype.html:22 msgid "Module Type" msgstr "Typ modułu" -#: netbox/dcim/forms/bulk_edit.py:596 netbox/dcim/forms/model_forms.py:371 -#: netbox/dcim/forms/model_forms.py:402 -#: netbox/templates/dcim/devicetype.html:11 +#: dcim/forms/bulk_edit.py:596 dcim/forms/model_forms.py:371 +#: dcim/forms/model_forms.py:402 templates/dcim/devicetype.html:11 msgid "Chassis" msgstr "Podwozie" -#: netbox/dcim/forms/bulk_edit.py:610 netbox/dcim/models/devices.py:484 -#: netbox/dcim/tables/devices.py:67 +#: dcim/forms/bulk_edit.py:610 dcim/models/devices.py:484 +#: dcim/tables/devices.py:67 msgid "VM role" msgstr "Rola maszyny wirtualnej" -#: netbox/dcim/forms/bulk_edit.py:613 netbox/dcim/forms/bulk_edit.py:637 -#: netbox/dcim/forms/bulk_edit.py:720 netbox/dcim/forms/bulk_import.py:434 -#: netbox/dcim/forms/bulk_import.py:438 netbox/dcim/forms/bulk_import.py:457 -#: netbox/dcim/forms/bulk_import.py:461 netbox/dcim/forms/bulk_import.py:586 -#: netbox/dcim/forms/bulk_import.py:590 netbox/dcim/forms/filtersets.py:689 -#: netbox/dcim/forms/filtersets.py:705 netbox/dcim/forms/filtersets.py:823 -#: netbox/dcim/forms/model_forms.py:415 netbox/dcim/forms/model_forms.py:441 -#: netbox/dcim/forms/model_forms.py:555 -#: netbox/virtualization/forms/bulk_import.py:132 -#: netbox/virtualization/forms/bulk_import.py:133 -#: netbox/virtualization/forms/filtersets.py:188 -#: netbox/virtualization/forms/model_forms.py:215 +#: dcim/forms/bulk_edit.py:613 dcim/forms/bulk_edit.py:637 +#: dcim/forms/bulk_edit.py:720 dcim/forms/bulk_import.py:434 +#: dcim/forms/bulk_import.py:438 dcim/forms/bulk_import.py:457 +#: dcim/forms/bulk_import.py:461 dcim/forms/bulk_import.py:586 +#: dcim/forms/bulk_import.py:590 dcim/forms/filtersets.py:689 +#: dcim/forms/filtersets.py:705 dcim/forms/filtersets.py:823 +#: dcim/forms/model_forms.py:415 dcim/forms/model_forms.py:441 +#: dcim/forms/model_forms.py:555 virtualization/forms/bulk_import.py:132 +#: virtualization/forms/bulk_import.py:133 +#: virtualization/forms/filtersets.py:188 +#: virtualization/forms/model_forms.py:215 msgid "Config template" msgstr "Szablon konfiguracji" -#: netbox/dcim/forms/bulk_edit.py:661 netbox/dcim/forms/bulk_edit.py:1061 -#: netbox/dcim/forms/bulk_import.py:492 netbox/dcim/forms/filtersets.py:114 -#: netbox/dcim/forms/model_forms.py:501 netbox/dcim/forms/model_forms.py:872 -#: netbox/dcim/forms/model_forms.py:889 netbox/extras/filtersets.py:547 +#: dcim/forms/bulk_edit.py:661 dcim/forms/bulk_edit.py:1061 +#: dcim/forms/bulk_import.py:492 dcim/forms/filtersets.py:114 +#: dcim/forms/model_forms.py:501 dcim/forms/model_forms.py:872 +#: dcim/forms/model_forms.py:889 extras/filtersets.py:547 msgid "Device type" msgstr "Typ urządzenia" -#: netbox/dcim/forms/bulk_edit.py:672 netbox/dcim/forms/bulk_import.py:473 -#: netbox/dcim/forms/filtersets.py:119 netbox/dcim/forms/model_forms.py:509 +#: dcim/forms/bulk_edit.py:672 dcim/forms/bulk_import.py:473 +#: dcim/forms/filtersets.py:119 dcim/forms/model_forms.py:509 msgid "Device role" msgstr "Rola urządzenia" -#: netbox/dcim/forms/bulk_edit.py:695 netbox/dcim/forms/bulk_import.py:498 -#: netbox/dcim/forms/filtersets.py:796 netbox/dcim/forms/model_forms.py:451 -#: netbox/dcim/forms/model_forms.py:513 netbox/dcim/tables/devices.py:182 -#: netbox/extras/filtersets.py:563 netbox/templates/dcim/device.html:186 -#: netbox/templates/dcim/platform.html:26 -#: netbox/templates/virtualization/virtualmachine.html:27 -#: netbox/virtualization/forms/bulk_edit.py:160 -#: netbox/virtualization/forms/bulk_import.py:122 -#: netbox/virtualization/forms/filtersets.py:168 -#: netbox/virtualization/forms/model_forms.py:203 -#: netbox/virtualization/tables/virtualmachines.py:79 +#: dcim/forms/bulk_edit.py:695 dcim/forms/bulk_import.py:498 +#: dcim/forms/filtersets.py:796 dcim/forms/model_forms.py:451 +#: dcim/forms/model_forms.py:513 dcim/tables/devices.py:182 +#: extras/filtersets.py:563 templates/dcim/device.html:186 +#: templates/dcim/platform.html:26 +#: templates/virtualization/virtualmachine.html:27 +#: virtualization/forms/bulk_edit.py:160 +#: virtualization/forms/bulk_import.py:122 +#: virtualization/forms/filtersets.py:168 +#: virtualization/forms/model_forms.py:203 +#: virtualization/tables/virtualmachines.py:79 msgid "Platform" msgstr "Platforma" -#: netbox/dcim/forms/bulk_edit.py:728 netbox/dcim/forms/bulk_edit.py:1281 -#: netbox/dcim/forms/bulk_edit.py:1650 netbox/dcim/forms/bulk_edit.py:1696 -#: netbox/dcim/forms/bulk_import.py:641 netbox/dcim/forms/bulk_import.py:703 -#: netbox/dcim/forms/bulk_import.py:729 netbox/dcim/forms/bulk_import.py:755 -#: netbox/dcim/forms/bulk_import.py:775 netbox/dcim/forms/bulk_import.py:828 -#: netbox/dcim/forms/bulk_import.py:946 netbox/dcim/forms/bulk_import.py:994 -#: netbox/dcim/forms/bulk_import.py:1011 netbox/dcim/forms/bulk_import.py:1023 -#: netbox/dcim/forms/bulk_import.py:1071 netbox/dcim/forms/bulk_import.py:1422 -#: netbox/dcim/forms/connections.py:24 netbox/dcim/forms/filtersets.py:131 -#: netbox/dcim/forms/filtersets.py:921 netbox/dcim/forms/filtersets.py:1051 -#: netbox/dcim/forms/filtersets.py:1242 netbox/dcim/forms/filtersets.py:1267 -#: netbox/dcim/forms/filtersets.py:1291 netbox/dcim/forms/filtersets.py:1311 -#: netbox/dcim/forms/filtersets.py:1334 netbox/dcim/forms/filtersets.py:1444 -#: netbox/dcim/forms/filtersets.py:1469 netbox/dcim/forms/filtersets.py:1493 -#: netbox/dcim/forms/filtersets.py:1511 netbox/dcim/forms/filtersets.py:1528 -#: netbox/dcim/forms/filtersets.py:1592 netbox/dcim/forms/filtersets.py:1616 -#: netbox/dcim/forms/filtersets.py:1640 netbox/dcim/forms/model_forms.py:633 -#: netbox/dcim/forms/model_forms.py:849 netbox/dcim/forms/model_forms.py:1208 -#: netbox/dcim/forms/model_forms.py:1664 -#: netbox/dcim/forms/object_create.py:257 netbox/dcim/tables/connections.py:22 -#: netbox/dcim/tables/connections.py:41 netbox/dcim/tables/connections.py:60 -#: netbox/dcim/tables/devices.py:285 netbox/dcim/tables/devices.py:371 -#: netbox/dcim/tables/devices.py:412 netbox/dcim/tables/devices.py:454 -#: netbox/dcim/tables/devices.py:505 netbox/dcim/tables/devices.py:597 -#: netbox/dcim/tables/devices.py:697 netbox/dcim/tables/devices.py:754 -#: netbox/dcim/tables/devices.py:801 netbox/dcim/tables/devices.py:861 -#: netbox/dcim/tables/devices.py:930 netbox/dcim/tables/devices.py:1057 -#: netbox/dcim/tables/modules.py:52 netbox/extras/forms/filtersets.py:321 -#: netbox/ipam/forms/bulk_import.py:304 netbox/ipam/forms/bulk_import.py:481 -#: netbox/ipam/forms/filtersets.py:551 netbox/ipam/forms/model_forms.py:319 -#: netbox/ipam/forms/model_forms.py:679 netbox/ipam/forms/model_forms.py:712 -#: netbox/ipam/forms/model_forms.py:738 netbox/ipam/tables/vlans.py:180 -#: netbox/templates/dcim/consoleport.html:20 -#: netbox/templates/dcim/consoleserverport.html:20 -#: netbox/templates/dcim/device.html:15 netbox/templates/dcim/device.html:130 -#: netbox/templates/dcim/device_edit.html:10 -#: netbox/templates/dcim/devicebay.html:20 -#: netbox/templates/dcim/devicebay.html:48 -#: netbox/templates/dcim/frontport.html:20 -#: netbox/templates/dcim/interface.html:30 -#: netbox/templates/dcim/interface.html:161 -#: netbox/templates/dcim/inventoryitem.html:20 -#: netbox/templates/dcim/module.html:57 -#: netbox/templates/dcim/modulebay.html:20 -#: netbox/templates/dcim/poweroutlet.html:20 -#: netbox/templates/dcim/powerport.html:20 -#: netbox/templates/dcim/rearport.html:20 -#: netbox/templates/dcim/virtualchassis.html:65 -#: netbox/templates/dcim/virtualchassis_edit.html:51 -#: netbox/templates/dcim/virtualdevicecontext.html:22 -#: netbox/templates/virtualization/virtualmachine.html:114 -#: netbox/templates/vpn/tunneltermination.html:23 -#: netbox/templates/wireless/inc/wirelesslink_interface.html:6 -#: netbox/virtualization/filtersets.py:167 -#: netbox/virtualization/forms/bulk_edit.py:137 -#: netbox/virtualization/forms/bulk_import.py:99 -#: netbox/virtualization/forms/filtersets.py:128 -#: netbox/virtualization/forms/model_forms.py:185 -#: netbox/virtualization/tables/virtualmachines.py:71 netbox/vpn/choices.py:44 -#: netbox/vpn/forms/bulk_import.py:86 netbox/vpn/forms/bulk_import.py:283 -#: netbox/vpn/forms/filtersets.py:275 netbox/vpn/forms/model_forms.py:90 -#: netbox/vpn/forms/model_forms.py:125 netbox/vpn/forms/model_forms.py:236 -#: netbox/vpn/forms/model_forms.py:453 netbox/wireless/forms/model_forms.py:99 -#: netbox/wireless/forms/model_forms.py:141 -#: netbox/wireless/tables/wirelesslan.py:75 +#: dcim/forms/bulk_edit.py:728 dcim/forms/bulk_edit.py:1281 +#: dcim/forms/bulk_edit.py:1650 dcim/forms/bulk_edit.py:1696 +#: dcim/forms/bulk_import.py:641 dcim/forms/bulk_import.py:703 +#: dcim/forms/bulk_import.py:729 dcim/forms/bulk_import.py:755 +#: dcim/forms/bulk_import.py:775 dcim/forms/bulk_import.py:828 +#: dcim/forms/bulk_import.py:946 dcim/forms/bulk_import.py:994 +#: dcim/forms/bulk_import.py:1011 dcim/forms/bulk_import.py:1023 +#: dcim/forms/bulk_import.py:1071 dcim/forms/bulk_import.py:1422 +#: dcim/forms/connections.py:24 dcim/forms/filtersets.py:131 +#: dcim/forms/filtersets.py:921 dcim/forms/filtersets.py:1051 +#: dcim/forms/filtersets.py:1242 dcim/forms/filtersets.py:1267 +#: dcim/forms/filtersets.py:1291 dcim/forms/filtersets.py:1311 +#: dcim/forms/filtersets.py:1334 dcim/forms/filtersets.py:1444 +#: dcim/forms/filtersets.py:1469 dcim/forms/filtersets.py:1493 +#: dcim/forms/filtersets.py:1511 dcim/forms/filtersets.py:1528 +#: dcim/forms/filtersets.py:1592 dcim/forms/filtersets.py:1616 +#: dcim/forms/filtersets.py:1640 dcim/forms/model_forms.py:633 +#: dcim/forms/model_forms.py:849 dcim/forms/model_forms.py:1208 +#: dcim/forms/model_forms.py:1664 dcim/forms/object_create.py:257 +#: dcim/tables/connections.py:22 dcim/tables/connections.py:41 +#: dcim/tables/connections.py:60 dcim/tables/devices.py:285 +#: dcim/tables/devices.py:371 dcim/tables/devices.py:412 +#: dcim/tables/devices.py:454 dcim/tables/devices.py:505 +#: dcim/tables/devices.py:597 dcim/tables/devices.py:697 +#: dcim/tables/devices.py:754 dcim/tables/devices.py:801 +#: dcim/tables/devices.py:861 dcim/tables/devices.py:930 +#: dcim/tables/devices.py:1057 dcim/tables/modules.py:52 +#: extras/forms/filtersets.py:321 ipam/forms/bulk_import.py:304 +#: ipam/forms/bulk_import.py:481 ipam/forms/filtersets.py:551 +#: ipam/forms/model_forms.py:319 ipam/forms/model_forms.py:679 +#: ipam/forms/model_forms.py:712 ipam/forms/model_forms.py:738 +#: ipam/tables/vlans.py:180 templates/dcim/consoleport.html:20 +#: templates/dcim/consoleserverport.html:20 templates/dcim/device.html:15 +#: templates/dcim/device.html:130 templates/dcim/device_edit.html:10 +#: templates/dcim/devicebay.html:20 templates/dcim/devicebay.html:48 +#: templates/dcim/frontport.html:20 templates/dcim/interface.html:30 +#: templates/dcim/interface.html:161 templates/dcim/inventoryitem.html:20 +#: templates/dcim/module.html:57 templates/dcim/modulebay.html:20 +#: templates/dcim/poweroutlet.html:20 templates/dcim/powerport.html:20 +#: templates/dcim/rearport.html:20 templates/dcim/virtualchassis.html:65 +#: templates/dcim/virtualchassis_edit.html:51 +#: templates/dcim/virtualdevicecontext.html:22 +#: templates/virtualization/virtualmachine.html:114 +#: templates/vpn/tunneltermination.html:23 +#: templates/wireless/inc/wirelesslink_interface.html:6 +#: virtualization/filtersets.py:167 virtualization/forms/bulk_edit.py:137 +#: virtualization/forms/bulk_import.py:99 +#: virtualization/forms/filtersets.py:128 +#: virtualization/forms/model_forms.py:185 +#: virtualization/tables/virtualmachines.py:71 vpn/choices.py:44 +#: vpn/forms/bulk_import.py:86 vpn/forms/bulk_import.py:283 +#: vpn/forms/filtersets.py:275 vpn/forms/model_forms.py:90 +#: vpn/forms/model_forms.py:125 vpn/forms/model_forms.py:236 +#: vpn/forms/model_forms.py:453 wireless/forms/model_forms.py:99 +#: wireless/forms/model_forms.py:141 wireless/tables/wirelesslan.py:75 msgid "Device" msgstr "Urządzenie" -#: netbox/dcim/forms/bulk_edit.py:731 -#: netbox/templates/extras/dashboard/widget_config.html:7 -#: netbox/virtualization/forms/bulk_edit.py:191 +#: dcim/forms/bulk_edit.py:731 templates/extras/dashboard/widget_config.html:7 +#: virtualization/forms/bulk_edit.py:191 msgid "Configuration" msgstr "Konfiguracja" -#: netbox/dcim/forms/bulk_edit.py:745 netbox/dcim/forms/bulk_import.py:653 -#: netbox/dcim/forms/model_forms.py:647 netbox/dcim/forms/model_forms.py:897 +#: dcim/forms/bulk_edit.py:745 dcim/forms/bulk_import.py:653 +#: dcim/forms/model_forms.py:647 dcim/forms/model_forms.py:897 msgid "Module type" msgstr "Rodzaj modułu" -#: netbox/dcim/forms/bulk_edit.py:799 netbox/dcim/forms/bulk_edit.py:984 -#: netbox/dcim/forms/bulk_edit.py:1003 netbox/dcim/forms/bulk_edit.py:1026 -#: netbox/dcim/forms/bulk_edit.py:1068 netbox/dcim/forms/bulk_edit.py:1112 -#: netbox/dcim/forms/bulk_edit.py:1163 netbox/dcim/forms/bulk_edit.py:1190 -#: netbox/dcim/forms/bulk_edit.py:1217 netbox/dcim/forms/bulk_edit.py:1235 -#: netbox/dcim/forms/bulk_edit.py:1253 netbox/dcim/forms/filtersets.py:67 -#: netbox/dcim/forms/object_create.py:46 netbox/templates/dcim/cable.html:32 -#: netbox/templates/dcim/consoleport.html:32 -#: netbox/templates/dcim/consoleserverport.html:32 -#: netbox/templates/dcim/devicebay.html:28 -#: netbox/templates/dcim/frontport.html:32 -#: netbox/templates/dcim/inc/panels/inventory_items.html:19 -#: netbox/templates/dcim/interface.html:42 -#: netbox/templates/dcim/inventoryitem.html:32 -#: netbox/templates/dcim/modulebay.html:34 -#: netbox/templates/dcim/poweroutlet.html:32 -#: netbox/templates/dcim/powerport.html:32 -#: netbox/templates/dcim/rearport.html:32 -#: netbox/templates/extras/customfield.html:26 -#: netbox/templates/generic/bulk_import.html:162 +#: dcim/forms/bulk_edit.py:799 dcim/forms/bulk_edit.py:984 +#: dcim/forms/bulk_edit.py:1003 dcim/forms/bulk_edit.py:1026 +#: dcim/forms/bulk_edit.py:1068 dcim/forms/bulk_edit.py:1112 +#: dcim/forms/bulk_edit.py:1163 dcim/forms/bulk_edit.py:1190 +#: dcim/forms/bulk_edit.py:1217 dcim/forms/bulk_edit.py:1235 +#: dcim/forms/bulk_edit.py:1253 dcim/forms/filtersets.py:67 +#: dcim/forms/object_create.py:46 templates/dcim/cable.html:32 +#: templates/dcim/consoleport.html:32 templates/dcim/consoleserverport.html:32 +#: templates/dcim/devicebay.html:28 templates/dcim/frontport.html:32 +#: templates/dcim/inc/panels/inventory_items.html:19 +#: templates/dcim/interface.html:42 templates/dcim/inventoryitem.html:32 +#: templates/dcim/modulebay.html:34 templates/dcim/poweroutlet.html:32 +#: templates/dcim/powerport.html:32 templates/dcim/rearport.html:32 +#: templates/extras/customfield.html:26 templates/generic/bulk_import.html:162 msgid "Label" msgstr "Etykieta" -#: netbox/dcim/forms/bulk_edit.py:808 netbox/dcim/forms/filtersets.py:1068 -#: netbox/templates/dcim/cable.html:50 +#: dcim/forms/bulk_edit.py:808 dcim/forms/filtersets.py:1068 +#: templates/dcim/cable.html:50 msgid "Length" msgstr "Długość" -#: netbox/dcim/forms/bulk_edit.py:813 netbox/dcim/forms/bulk_import.py:1226 -#: netbox/dcim/forms/bulk_import.py:1229 netbox/dcim/forms/filtersets.py:1072 +#: dcim/forms/bulk_edit.py:813 dcim/forms/bulk_import.py:1226 +#: dcim/forms/bulk_import.py:1229 dcim/forms/filtersets.py:1072 msgid "Length unit" msgstr "Jednostka długości" -#: netbox/dcim/forms/bulk_edit.py:837 -#: netbox/templates/dcim/virtualchassis.html:23 +#: dcim/forms/bulk_edit.py:837 templates/dcim/virtualchassis.html:23 msgid "Domain" msgstr "Domena" -#: netbox/dcim/forms/bulk_edit.py:905 netbox/dcim/forms/bulk_import.py:1345 -#: netbox/dcim/forms/filtersets.py:1158 netbox/dcim/forms/model_forms.py:750 +#: dcim/forms/bulk_edit.py:905 dcim/forms/bulk_import.py:1345 +#: dcim/forms/filtersets.py:1158 dcim/forms/model_forms.py:750 msgid "Power panel" msgstr "Panel zasilania" -#: netbox/dcim/forms/bulk_edit.py:927 netbox/dcim/forms/bulk_import.py:1381 -#: netbox/dcim/forms/filtersets.py:1180 -#: netbox/templates/dcim/powerfeed.html:83 +#: dcim/forms/bulk_edit.py:927 dcim/forms/bulk_import.py:1381 +#: dcim/forms/filtersets.py:1180 templates/dcim/powerfeed.html:83 msgid "Supply" msgstr "Dostawa" -#: netbox/dcim/forms/bulk_edit.py:933 netbox/dcim/forms/bulk_import.py:1386 -#: netbox/dcim/forms/filtersets.py:1185 -#: netbox/templates/dcim/powerfeed.html:95 +#: dcim/forms/bulk_edit.py:933 dcim/forms/bulk_import.py:1386 +#: dcim/forms/filtersets.py:1185 templates/dcim/powerfeed.html:95 msgid "Phase" msgstr "Faza" -#: netbox/dcim/forms/bulk_edit.py:939 netbox/dcim/forms/filtersets.py:1190 -#: netbox/templates/dcim/powerfeed.html:87 +#: dcim/forms/bulk_edit.py:939 dcim/forms/filtersets.py:1190 +#: templates/dcim/powerfeed.html:87 msgid "Voltage" msgstr "Napięcie" -#: netbox/dcim/forms/bulk_edit.py:943 netbox/dcim/forms/filtersets.py:1194 -#: netbox/templates/dcim/powerfeed.html:91 +#: dcim/forms/bulk_edit.py:943 dcim/forms/filtersets.py:1194 +#: templates/dcim/powerfeed.html:91 msgid "Amperage" msgstr "Natężenie prądu" -#: netbox/dcim/forms/bulk_edit.py:947 netbox/dcim/forms/filtersets.py:1198 +#: dcim/forms/bulk_edit.py:947 dcim/forms/filtersets.py:1198 msgid "Max utilization" msgstr "Maksymalne wykorzystanie" -#: netbox/dcim/forms/bulk_edit.py:1036 +#: dcim/forms/bulk_edit.py:1036 msgid "Maximum draw" msgstr "Maksymalne losowanie" -#: netbox/dcim/forms/bulk_edit.py:1039 -#: netbox/dcim/models/device_component_templates.py:282 -#: netbox/dcim/models/device_components.py:356 +#: dcim/forms/bulk_edit.py:1039 dcim/models/device_component_templates.py:282 +#: dcim/models/device_components.py:356 msgid "Maximum power draw (watts)" msgstr "Maksymalny pobór mocy (waty)" -#: netbox/dcim/forms/bulk_edit.py:1042 +#: dcim/forms/bulk_edit.py:1042 msgid "Allocated draw" msgstr "Przydzielone losowanie" -#: netbox/dcim/forms/bulk_edit.py:1045 -#: netbox/dcim/models/device_component_templates.py:289 -#: netbox/dcim/models/device_components.py:363 +#: dcim/forms/bulk_edit.py:1045 dcim/models/device_component_templates.py:289 +#: dcim/models/device_components.py:363 msgid "Allocated power draw (watts)" msgstr "Przydzielony pobór mocy (waty)" -#: netbox/dcim/forms/bulk_edit.py:1078 netbox/dcim/forms/bulk_import.py:786 -#: netbox/dcim/forms/model_forms.py:953 netbox/dcim/forms/model_forms.py:1278 -#: netbox/dcim/forms/model_forms.py:1567 netbox/dcim/forms/object_import.py:55 +#: dcim/forms/bulk_edit.py:1078 dcim/forms/bulk_import.py:786 +#: dcim/forms/model_forms.py:953 dcim/forms/model_forms.py:1278 +#: dcim/forms/model_forms.py:1567 dcim/forms/object_import.py:55 msgid "Power port" msgstr "Port zasilania" -#: netbox/dcim/forms/bulk_edit.py:1083 netbox/dcim/forms/bulk_import.py:793 +#: dcim/forms/bulk_edit.py:1083 dcim/forms/bulk_import.py:793 msgid "Feed leg" msgstr "Noga do karmienia" -#: netbox/dcim/forms/bulk_edit.py:1129 netbox/dcim/forms/bulk_edit.py:1440 +#: dcim/forms/bulk_edit.py:1129 dcim/forms/bulk_edit.py:1440 msgid "Management only" msgstr "Tylko zarządzanie" -#: netbox/dcim/forms/bulk_edit.py:1139 netbox/dcim/forms/bulk_edit.py:1446 -#: netbox/dcim/forms/bulk_import.py:876 netbox/dcim/forms/filtersets.py:1394 -#: netbox/dcim/forms/object_import.py:90 -#: netbox/dcim/models/device_component_templates.py:437 -#: netbox/dcim/models/device_components.py:670 +#: dcim/forms/bulk_edit.py:1139 dcim/forms/bulk_edit.py:1446 +#: dcim/forms/bulk_import.py:876 dcim/forms/filtersets.py:1394 +#: dcim/forms/object_import.py:90 +#: dcim/models/device_component_templates.py:437 +#: dcim/models/device_components.py:670 msgid "PoE mode" msgstr "Tryb PoE" -#: netbox/dcim/forms/bulk_edit.py:1145 netbox/dcim/forms/bulk_edit.py:1452 -#: netbox/dcim/forms/bulk_import.py:882 netbox/dcim/forms/filtersets.py:1399 -#: netbox/dcim/forms/object_import.py:95 -#: netbox/dcim/models/device_component_templates.py:443 -#: netbox/dcim/models/device_components.py:676 +#: dcim/forms/bulk_edit.py:1145 dcim/forms/bulk_edit.py:1452 +#: dcim/forms/bulk_import.py:882 dcim/forms/filtersets.py:1399 +#: dcim/forms/object_import.py:95 +#: dcim/models/device_component_templates.py:443 +#: dcim/models/device_components.py:676 msgid "PoE type" msgstr "Typ PoE" -#: netbox/dcim/forms/bulk_edit.py:1151 netbox/dcim/forms/filtersets.py:1404 -#: netbox/dcim/forms/object_import.py:100 +#: dcim/forms/bulk_edit.py:1151 dcim/forms/filtersets.py:1404 +#: dcim/forms/object_import.py:100 msgid "Wireless role" msgstr "Rola sieci bezprzewodowej" -#: netbox/dcim/forms/bulk_edit.py:1288 netbox/dcim/forms/model_forms.py:669 -#: netbox/dcim/forms/model_forms.py:1223 netbox/dcim/tables/devices.py:313 -#: netbox/templates/dcim/consoleport.html:24 -#: netbox/templates/dcim/consoleserverport.html:24 -#: netbox/templates/dcim/frontport.html:24 -#: netbox/templates/dcim/interface.html:34 -#: netbox/templates/dcim/module.html:54 -#: netbox/templates/dcim/modulebay.html:26 -#: netbox/templates/dcim/modulebay.html:58 -#: netbox/templates/dcim/poweroutlet.html:24 -#: netbox/templates/dcim/powerport.html:24 -#: netbox/templates/dcim/rearport.html:24 +#: dcim/forms/bulk_edit.py:1288 dcim/forms/model_forms.py:669 +#: dcim/forms/model_forms.py:1223 dcim/tables/devices.py:313 +#: templates/dcim/consoleport.html:24 templates/dcim/consoleserverport.html:24 +#: templates/dcim/frontport.html:24 templates/dcim/interface.html:34 +#: templates/dcim/module.html:54 templates/dcim/modulebay.html:26 +#: templates/dcim/modulebay.html:58 templates/dcim/poweroutlet.html:24 +#: templates/dcim/powerport.html:24 templates/dcim/rearport.html:24 msgid "Module" msgstr "Moduł" -#: netbox/dcim/forms/bulk_edit.py:1420 netbox/dcim/tables/devices.py:665 -#: netbox/templates/dcim/interface.html:110 +#: dcim/forms/bulk_edit.py:1420 dcim/tables/devices.py:665 +#: templates/dcim/interface.html:110 msgid "LAG" msgstr "OPÓŹNIENIE" -#: netbox/dcim/forms/bulk_edit.py:1425 netbox/dcim/forms/model_forms.py:1305 +#: dcim/forms/bulk_edit.py:1425 dcim/forms/model_forms.py:1305 msgid "Virtual device contexts" msgstr "Konteksty urządzeń wirtualnych" -#: netbox/dcim/forms/bulk_edit.py:1431 netbox/dcim/forms/bulk_import.py:714 -#: netbox/dcim/forms/bulk_import.py:740 netbox/dcim/forms/filtersets.py:1252 -#: netbox/dcim/forms/filtersets.py:1277 netbox/dcim/forms/filtersets.py:1358 -#: netbox/dcim/tables/devices.py:610 -#: netbox/templates/circuits/inc/circuit_termination_fields.html:67 -#: netbox/templates/dcim/consoleport.html:40 -#: netbox/templates/dcim/consoleserverport.html:40 +#: dcim/forms/bulk_edit.py:1431 dcim/forms/bulk_import.py:714 +#: dcim/forms/bulk_import.py:740 dcim/forms/filtersets.py:1252 +#: dcim/forms/filtersets.py:1277 dcim/forms/filtersets.py:1358 +#: dcim/tables/devices.py:610 +#: templates/circuits/inc/circuit_termination_fields.html:67 +#: templates/dcim/consoleport.html:40 templates/dcim/consoleserverport.html:40 msgid "Speed" msgstr "Prędkość" -#: netbox/dcim/forms/bulk_edit.py:1460 netbox/dcim/forms/bulk_import.py:885 -#: netbox/templates/vpn/ikepolicy.html:25 -#: netbox/templates/vpn/ipsecprofile.html:21 -#: netbox/templates/vpn/ipsecprofile.html:48 -#: netbox/virtualization/forms/bulk_edit.py:233 -#: netbox/virtualization/forms/bulk_import.py:165 -#: netbox/vpn/forms/bulk_edit.py:146 netbox/vpn/forms/bulk_edit.py:232 -#: netbox/vpn/forms/bulk_import.py:176 netbox/vpn/forms/bulk_import.py:234 -#: netbox/vpn/forms/filtersets.py:135 netbox/vpn/forms/filtersets.py:178 -#: netbox/vpn/forms/filtersets.py:192 netbox/vpn/tables/crypto.py:64 -#: netbox/vpn/tables/crypto.py:162 +#: dcim/forms/bulk_edit.py:1460 dcim/forms/bulk_import.py:885 +#: templates/vpn/ikepolicy.html:25 templates/vpn/ipsecprofile.html:21 +#: templates/vpn/ipsecprofile.html:48 virtualization/forms/bulk_edit.py:233 +#: virtualization/forms/bulk_import.py:165 vpn/forms/bulk_edit.py:146 +#: vpn/forms/bulk_edit.py:232 vpn/forms/bulk_import.py:176 +#: vpn/forms/bulk_import.py:234 vpn/forms/filtersets.py:135 +#: vpn/forms/filtersets.py:178 vpn/forms/filtersets.py:192 +#: vpn/tables/crypto.py:64 vpn/tables/crypto.py:162 msgid "Mode" msgstr "Tryb" -#: netbox/dcim/forms/bulk_edit.py:1468 netbox/dcim/forms/model_forms.py:1354 -#: netbox/ipam/forms/bulk_import.py:178 netbox/ipam/forms/filtersets.py:498 -#: netbox/ipam/models/vlans.py:84 netbox/virtualization/forms/bulk_edit.py:240 -#: netbox/virtualization/forms/model_forms.py:321 +#: dcim/forms/bulk_edit.py:1468 dcim/forms/model_forms.py:1354 +#: ipam/forms/bulk_import.py:178 ipam/forms/filtersets.py:498 +#: ipam/models/vlans.py:84 virtualization/forms/bulk_edit.py:240 +#: virtualization/forms/model_forms.py:321 msgid "VLAN group" msgstr "Grupa VLAN" -#: netbox/dcim/forms/bulk_edit.py:1476 netbox/dcim/forms/model_forms.py:1360 -#: netbox/dcim/tables/devices.py:579 -#: netbox/virtualization/forms/bulk_edit.py:248 -#: netbox/virtualization/forms/model_forms.py:326 +#: dcim/forms/bulk_edit.py:1476 dcim/forms/model_forms.py:1360 +#: dcim/tables/devices.py:579 virtualization/forms/bulk_edit.py:248 +#: virtualization/forms/model_forms.py:326 msgid "Untagged VLAN" msgstr "Nieoznaczone sieci VLAN" -#: netbox/dcim/forms/bulk_edit.py:1484 netbox/dcim/forms/model_forms.py:1369 -#: netbox/dcim/tables/devices.py:585 -#: netbox/virtualization/forms/bulk_edit.py:256 -#: netbox/virtualization/forms/model_forms.py:335 +#: dcim/forms/bulk_edit.py:1484 dcim/forms/model_forms.py:1369 +#: dcim/tables/devices.py:585 virtualization/forms/bulk_edit.py:256 +#: virtualization/forms/model_forms.py:335 msgid "Tagged VLANs" msgstr "Oznaczone sieci VLAN" -#: netbox/dcim/forms/bulk_edit.py:1494 netbox/dcim/forms/model_forms.py:1341 +#: dcim/forms/bulk_edit.py:1494 dcim/forms/model_forms.py:1341 msgid "Wireless LAN group" msgstr "Grupa sieci bezprzewodowej sieci LAN" -#: netbox/dcim/forms/bulk_edit.py:1499 netbox/dcim/forms/model_forms.py:1346 -#: netbox/dcim/tables/devices.py:619 netbox/netbox/navigation/menu.py:146 -#: netbox/templates/dcim/interface.html:280 -#: netbox/wireless/tables/wirelesslan.py:24 +#: dcim/forms/bulk_edit.py:1499 dcim/forms/model_forms.py:1346 +#: dcim/tables/devices.py:619 netbox/navigation/menu.py:146 +#: templates/dcim/interface.html:280 wireless/tables/wirelesslan.py:24 msgid "Wireless LANs" msgstr "Bezprzewodowe sieci LAN" -#: netbox/dcim/forms/bulk_edit.py:1508 netbox/dcim/forms/filtersets.py:1328 -#: netbox/dcim/forms/model_forms.py:1390 netbox/ipam/forms/bulk_edit.py:285 -#: netbox/ipam/forms/bulk_edit.py:377 netbox/ipam/forms/filtersets.py:169 -#: netbox/templates/dcim/interface.html:122 -#: netbox/templates/ipam/prefix.html:95 -#: netbox/virtualization/forms/model_forms.py:349 +#: dcim/forms/bulk_edit.py:1508 dcim/forms/filtersets.py:1328 +#: dcim/forms/model_forms.py:1390 ipam/forms/bulk_edit.py:286 +#: ipam/forms/bulk_edit.py:378 ipam/forms/filtersets.py:169 +#: templates/dcim/interface.html:122 templates/ipam/prefix.html:95 +#: virtualization/forms/model_forms.py:349 msgid "Addressing" msgstr "Adresowanie" -#: netbox/dcim/forms/bulk_edit.py:1509 netbox/dcim/forms/filtersets.py:720 -#: netbox/dcim/forms/model_forms.py:1391 -#: netbox/virtualization/forms/model_forms.py:350 +#: dcim/forms/bulk_edit.py:1509 dcim/forms/filtersets.py:720 +#: dcim/forms/model_forms.py:1391 virtualization/forms/model_forms.py:350 msgid "Operation" msgstr "Operacja" -#: netbox/dcim/forms/bulk_edit.py:1510 netbox/dcim/forms/filtersets.py:1329 -#: netbox/dcim/forms/model_forms.py:987 netbox/dcim/forms/model_forms.py:1393 +#: dcim/forms/bulk_edit.py:1510 dcim/forms/filtersets.py:1329 +#: dcim/forms/model_forms.py:987 dcim/forms/model_forms.py:1393 msgid "PoE" msgstr "PoE" -#: netbox/dcim/forms/bulk_edit.py:1511 netbox/dcim/forms/model_forms.py:1392 -#: netbox/templates/dcim/interface.html:99 -#: netbox/virtualization/forms/bulk_edit.py:267 -#: netbox/virtualization/forms/model_forms.py:351 +#: dcim/forms/bulk_edit.py:1511 dcim/forms/model_forms.py:1392 +#: templates/dcim/interface.html:99 virtualization/forms/bulk_edit.py:267 +#: virtualization/forms/model_forms.py:351 msgid "Related Interfaces" msgstr "Powiązane interfejsy" -#: netbox/dcim/forms/bulk_edit.py:1512 netbox/dcim/forms/model_forms.py:1394 -#: netbox/virtualization/forms/bulk_edit.py:268 -#: netbox/virtualization/forms/model_forms.py:352 +#: dcim/forms/bulk_edit.py:1512 dcim/forms/model_forms.py:1394 +#: virtualization/forms/bulk_edit.py:268 +#: virtualization/forms/model_forms.py:352 msgid "802.1Q Switching" msgstr "Przełączanie 802.1Q" -#: netbox/dcim/forms/bulk_edit.py:1574 netbox/dcim/forms/bulk_edit.py:1576 +#: dcim/forms/bulk_edit.py:1574 dcim/forms/bulk_edit.py:1576 msgid "Interface mode must be specified to assign VLANs" msgstr "Tryb interfejsu musi być określony, aby przypisać sieci VLAN" -#: netbox/dcim/forms/bulk_edit.py:1581 netbox/dcim/forms/common.py:50 +#: dcim/forms/bulk_edit.py:1581 dcim/forms/common.py:50 msgid "An access interface cannot have tagged VLANs assigned." msgstr "Interfejs dostępu nie może mieć przypisanych oznakowanych sieci VLAN." -#: netbox/dcim/forms/bulk_import.py:64 +#: dcim/forms/bulk_import.py:64 msgid "Name of parent region" msgstr "Nazwa regionu macierzystego" -#: netbox/dcim/forms/bulk_import.py:78 +#: dcim/forms/bulk_import.py:78 msgid "Name of parent site group" msgstr "Nazwa nadrzędnej grupy witryn" -#: netbox/dcim/forms/bulk_import.py:97 +#: dcim/forms/bulk_import.py:97 msgid "Assigned region" msgstr "Przypisany region" -#: netbox/dcim/forms/bulk_import.py:104 netbox/tenancy/forms/bulk_import.py:44 -#: netbox/tenancy/forms/bulk_import.py:85 -#: netbox/wireless/forms/bulk_import.py:40 +#: dcim/forms/bulk_import.py:104 tenancy/forms/bulk_import.py:44 +#: tenancy/forms/bulk_import.py:85 wireless/forms/bulk_import.py:40 msgid "Assigned group" msgstr "Przydzielona grupa" -#: netbox/dcim/forms/bulk_import.py:123 +#: dcim/forms/bulk_import.py:123 msgid "available options" msgstr "dostępne opcje" -#: netbox/dcim/forms/bulk_import.py:134 netbox/dcim/forms/bulk_import.py:543 -#: netbox/dcim/forms/bulk_import.py:1342 netbox/ipam/forms/bulk_import.py:175 -#: netbox/ipam/forms/bulk_import.py:433 -#: netbox/virtualization/forms/bulk_import.py:63 -#: netbox/virtualization/forms/bulk_import.py:89 +#: dcim/forms/bulk_import.py:134 dcim/forms/bulk_import.py:543 +#: dcim/forms/bulk_import.py:1342 ipam/forms/bulk_import.py:175 +#: ipam/forms/bulk_import.py:433 virtualization/forms/bulk_import.py:63 +#: virtualization/forms/bulk_import.py:89 msgid "Assigned site" msgstr "Przydzielona witryna" -#: netbox/dcim/forms/bulk_import.py:141 +#: dcim/forms/bulk_import.py:141 msgid "Parent location" msgstr "Lokalizacja nadrzędna" -#: netbox/dcim/forms/bulk_import.py:143 +#: dcim/forms/bulk_import.py:143 msgid "Location not found." msgstr "Lokalizacja nie została znaleziona." -#: netbox/dcim/forms/bulk_import.py:185 +#: dcim/forms/bulk_import.py:185 msgid "The manufacturer of this rack type" msgstr "Producent tego typu szaf" -#: netbox/dcim/forms/bulk_import.py:196 +#: dcim/forms/bulk_import.py:196 msgid "The lowest-numbered position in the rack" msgstr "Najniższy numer pozycji w szafie" -#: netbox/dcim/forms/bulk_import.py:201 netbox/dcim/forms/bulk_import.py:268 +#: dcim/forms/bulk_import.py:201 dcim/forms/bulk_import.py:268 msgid "Rail-to-rail width (in inches)" msgstr "Szerokość szyny do szyny (w calach)" -#: netbox/dcim/forms/bulk_import.py:207 netbox/dcim/forms/bulk_import.py:274 +#: dcim/forms/bulk_import.py:207 dcim/forms/bulk_import.py:274 msgid "Unit for outer dimensions" msgstr "Jednostka do wymiarów zewnętrznych" -#: netbox/dcim/forms/bulk_import.py:213 netbox/dcim/forms/bulk_import.py:286 +#: dcim/forms/bulk_import.py:213 dcim/forms/bulk_import.py:286 msgid "Unit for rack weights" msgstr "Jednostka masy w szafach" -#: netbox/dcim/forms/bulk_import.py:245 +#: dcim/forms/bulk_import.py:245 msgid "Name of assigned tenant" msgstr "Nazwa przydzielonego najemcy" -#: netbox/dcim/forms/bulk_import.py:257 +#: dcim/forms/bulk_import.py:257 msgid "Name of assigned role" msgstr "Nazwa przypisanej roli" -#: netbox/dcim/forms/bulk_import.py:280 netbox/dcim/forms/bulk_import.py:413 -#: netbox/dcim/forms/bulk_import.py:583 +#: dcim/forms/bulk_import.py:280 dcim/forms/bulk_import.py:413 +#: dcim/forms/bulk_import.py:583 msgid "Airflow direction" msgstr "Kierunek przepływu powietrza" -#: netbox/dcim/forms/bulk_import.py:312 +#: dcim/forms/bulk_import.py:312 msgid "Parent site" msgstr "Witryna nadrzędna" -#: netbox/dcim/forms/bulk_import.py:319 netbox/dcim/forms/bulk_import.py:1355 +#: dcim/forms/bulk_import.py:319 dcim/forms/bulk_import.py:1355 msgid "Rack's location (if any)" msgstr "Lokalizacja szafy (jeśli określona)" -#: netbox/dcim/forms/bulk_import.py:328 netbox/dcim/forms/model_forms.py:311 -#: netbox/dcim/tables/racks.py:222 -#: netbox/templates/dcim/rackreservation.html:12 -#: netbox/templates/dcim/rackreservation.html:45 +#: dcim/forms/bulk_import.py:328 dcim/forms/model_forms.py:311 +#: dcim/tables/racks.py:222 templates/dcim/rackreservation.html:12 +#: templates/dcim/rackreservation.html:45 msgid "Units" msgstr "Jednostki" -#: netbox/dcim/forms/bulk_import.py:331 +#: dcim/forms/bulk_import.py:331 msgid "Comma-separated list of individual unit numbers" msgstr "Lista poszczególnych numerów jednostek oddzielona przecinkami" -#: netbox/dcim/forms/bulk_import.py:374 +#: dcim/forms/bulk_import.py:374 msgid "The manufacturer which produces this device type" msgstr "Producent, który produkuje ten typ urządzenia" -#: netbox/dcim/forms/bulk_import.py:381 +#: dcim/forms/bulk_import.py:381 msgid "The default platform for devices of this type (optional)" msgstr "Domyślna platforma dla urządzeń tego typu (opcjonalnie)" -#: netbox/dcim/forms/bulk_import.py:386 +#: dcim/forms/bulk_import.py:386 msgid "Device weight" msgstr "Waga urządzenia" -#: netbox/dcim/forms/bulk_import.py:392 +#: dcim/forms/bulk_import.py:392 msgid "Unit for device weight" msgstr "Jednostka do wagi urządzenia" -#: netbox/dcim/forms/bulk_import.py:418 +#: dcim/forms/bulk_import.py:418 msgid "Module weight" msgstr "Waga modułu" -#: netbox/dcim/forms/bulk_import.py:424 +#: dcim/forms/bulk_import.py:424 msgid "Unit for module weight" msgstr "Jednostka do ciężaru modułu" -#: netbox/dcim/forms/bulk_import.py:454 +#: dcim/forms/bulk_import.py:454 msgid "Limit platform assignments to this manufacturer" msgstr "Ogranicz przypisania platformy do tego producenta" -#: netbox/dcim/forms/bulk_import.py:476 netbox/dcim/forms/bulk_import.py:1425 -#: netbox/tenancy/forms/bulk_import.py:106 +#: dcim/forms/bulk_import.py:476 dcim/forms/bulk_import.py:1425 +#: tenancy/forms/bulk_import.py:106 msgid "Assigned role" msgstr "Przypisana rola" -#: netbox/dcim/forms/bulk_import.py:489 +#: dcim/forms/bulk_import.py:489 msgid "Device type manufacturer" msgstr "Producent typu urządzenia" -#: netbox/dcim/forms/bulk_import.py:495 +#: dcim/forms/bulk_import.py:495 msgid "Device type model" msgstr "Model typu urządzenia" -#: netbox/dcim/forms/bulk_import.py:502 -#: netbox/virtualization/forms/bulk_import.py:126 +#: dcim/forms/bulk_import.py:502 virtualization/forms/bulk_import.py:126 msgid "Assigned platform" msgstr "Przydzielona platforma" -#: netbox/dcim/forms/bulk_import.py:510 netbox/dcim/forms/bulk_import.py:514 -#: netbox/dcim/forms/model_forms.py:536 +#: dcim/forms/bulk_import.py:510 dcim/forms/bulk_import.py:514 +#: dcim/forms/model_forms.py:536 msgid "Virtual chassis" msgstr "Wirtualne podwozie" -#: netbox/dcim/forms/bulk_import.py:517 netbox/dcim/forms/filtersets.py:728 -#: netbox/dcim/forms/filtersets.py:898 netbox/dcim/forms/model_forms.py:522 -#: netbox/dcim/tables/devices.py:202 netbox/extras/filtersets.py:596 -#: netbox/extras/forms/filtersets.py:322 netbox/ipam/forms/bulk_edit.py:482 -#: netbox/ipam/forms/filtersets.py:415 netbox/ipam/forms/filtersets.py:447 -#: netbox/templates/dcim/device.html:239 -#: netbox/templates/virtualization/cluster.html:10 -#: netbox/templates/virtualization/virtualmachine.html:92 -#: netbox/templates/virtualization/virtualmachine.html:101 -#: netbox/virtualization/filtersets.py:157 -#: netbox/virtualization/filtersets.py:277 -#: netbox/virtualization/forms/bulk_edit.py:129 -#: netbox/virtualization/forms/bulk_import.py:92 -#: netbox/virtualization/forms/filtersets.py:99 -#: netbox/virtualization/forms/filtersets.py:123 -#: netbox/virtualization/forms/filtersets.py:204 -#: netbox/virtualization/forms/model_forms.py:79 -#: netbox/virtualization/forms/model_forms.py:176 -#: netbox/virtualization/tables/virtualmachines.py:67 +#: dcim/forms/bulk_import.py:517 dcim/forms/filtersets.py:728 +#: dcim/forms/filtersets.py:898 dcim/forms/model_forms.py:522 +#: dcim/tables/devices.py:202 extras/filtersets.py:596 +#: extras/forms/filtersets.py:322 ipam/forms/filtersets.py:415 +#: ipam/forms/filtersets.py:447 templates/dcim/device.html:239 +#: templates/virtualization/cluster.html:10 +#: templates/virtualization/virtualmachine.html:92 +#: templates/virtualization/virtualmachine.html:101 +#: virtualization/filtersets.py:157 virtualization/filtersets.py:277 +#: virtualization/forms/bulk_edit.py:129 +#: virtualization/forms/bulk_import.py:92 +#: virtualization/forms/filtersets.py:99 +#: virtualization/forms/filtersets.py:123 +#: virtualization/forms/filtersets.py:204 +#: virtualization/forms/model_forms.py:79 +#: virtualization/forms/model_forms.py:176 +#: virtualization/tables/virtualmachines.py:67 msgid "Cluster" msgstr "Klaster" -#: netbox/dcim/forms/bulk_import.py:521 +#: dcim/forms/bulk_import.py:521 msgid "Virtualization cluster" msgstr "Klaster wirtualizacji" -#: netbox/dcim/forms/bulk_import.py:550 +#: dcim/forms/bulk_import.py:550 msgid "Assigned location (if any)" msgstr "Przypisana lokalizacja (jeśli istnieje)" -#: netbox/dcim/forms/bulk_import.py:557 +#: dcim/forms/bulk_import.py:557 msgid "Assigned rack (if any)" msgstr "Przypisana szafa (jeśli określona)" -#: netbox/dcim/forms/bulk_import.py:560 +#: dcim/forms/bulk_import.py:560 msgid "Face" msgstr "Twarz" -#: netbox/dcim/forms/bulk_import.py:563 +#: dcim/forms/bulk_import.py:563 msgid "Mounted rack face" msgstr "Powierzchnia montażu w szafie" -#: netbox/dcim/forms/bulk_import.py:570 +#: dcim/forms/bulk_import.py:570 msgid "Parent device (for child devices)" msgstr "Urządzenie nadrzędne (dla urządzeń podrzędnych)" -#: netbox/dcim/forms/bulk_import.py:573 +#: dcim/forms/bulk_import.py:573 msgid "Device bay" msgstr "Osłona urządzenia" -#: netbox/dcim/forms/bulk_import.py:577 +#: dcim/forms/bulk_import.py:577 msgid "Device bay in which this device is installed (for child devices)" msgstr "" "Osłona urządzenia, w której to urządzenie jest zainstalowane (dla urządzeń " "podrzędnych)" -#: netbox/dcim/forms/bulk_import.py:644 +#: dcim/forms/bulk_import.py:644 msgid "The device in which this module is installed" msgstr "Urządzenie, w którym zainstalowany jest ten moduł" -#: netbox/dcim/forms/bulk_import.py:647 netbox/dcim/forms/model_forms.py:640 +#: dcim/forms/bulk_import.py:647 dcim/forms/model_forms.py:640 msgid "Module bay" msgstr "Wnęka modułu" -#: netbox/dcim/forms/bulk_import.py:650 +#: dcim/forms/bulk_import.py:650 msgid "The module bay in which this module is installed" msgstr "Wnęka modułu, w której ten moduł jest zainstalowany" -#: netbox/dcim/forms/bulk_import.py:656 +#: dcim/forms/bulk_import.py:656 msgid "The type of module" msgstr "Rodzaj modułu" -#: netbox/dcim/forms/bulk_import.py:664 netbox/dcim/forms/model_forms.py:656 +#: dcim/forms/bulk_import.py:664 dcim/forms/model_forms.py:656 msgid "Replicate components" msgstr "Replikacja komponentów" -#: netbox/dcim/forms/bulk_import.py:666 +#: dcim/forms/bulk_import.py:666 msgid "" "Automatically populate components associated with this module type (enabled " "by default)" @@ -4336,271 +3943,264 @@ msgstr "" "Automatyczne wypełnianie komponentów powiązanych z tym typem modułu " "(domyślnie włączone)" -#: netbox/dcim/forms/bulk_import.py:669 netbox/dcim/forms/model_forms.py:662 +#: dcim/forms/bulk_import.py:669 dcim/forms/model_forms.py:662 msgid "Adopt components" msgstr "Zastosuj komponenty" -#: netbox/dcim/forms/bulk_import.py:671 netbox/dcim/forms/model_forms.py:665 +#: dcim/forms/bulk_import.py:671 dcim/forms/model_forms.py:665 msgid "Adopt already existing components" msgstr "Zastosuj już istniejące komponenty" -#: netbox/dcim/forms/bulk_import.py:711 netbox/dcim/forms/bulk_import.py:737 -#: netbox/dcim/forms/bulk_import.py:763 +#: dcim/forms/bulk_import.py:711 dcim/forms/bulk_import.py:737 +#: dcim/forms/bulk_import.py:763 msgid "Port type" msgstr "Typ portu" -#: netbox/dcim/forms/bulk_import.py:719 netbox/dcim/forms/bulk_import.py:745 +#: dcim/forms/bulk_import.py:719 dcim/forms/bulk_import.py:745 msgid "Port speed in bps" msgstr "Prędkość portu w bps" -#: netbox/dcim/forms/bulk_import.py:783 +#: dcim/forms/bulk_import.py:783 msgid "Outlet type" msgstr "Rodzaj wylotu" -#: netbox/dcim/forms/bulk_import.py:790 +#: dcim/forms/bulk_import.py:790 msgid "Local power port which feeds this outlet" msgstr "Lokalny port zasilania zasilający to gniazdko" -#: netbox/dcim/forms/bulk_import.py:796 +#: dcim/forms/bulk_import.py:796 msgid "Electrical phase (for three-phase circuits)" msgstr "Faza elektryczna (dla obwodów trójfazowych)" -#: netbox/dcim/forms/bulk_import.py:837 netbox/dcim/forms/model_forms.py:1316 -#: netbox/virtualization/forms/bulk_import.py:155 -#: netbox/virtualization/forms/model_forms.py:305 +#: dcim/forms/bulk_import.py:837 dcim/forms/model_forms.py:1316 +#: virtualization/forms/bulk_import.py:155 +#: virtualization/forms/model_forms.py:305 msgid "Parent interface" msgstr "Interfejs nadrzędny" -#: netbox/dcim/forms/bulk_import.py:844 netbox/dcim/forms/model_forms.py:1324 -#: netbox/virtualization/forms/bulk_import.py:162 -#: netbox/virtualization/forms/model_forms.py:313 +#: dcim/forms/bulk_import.py:844 dcim/forms/model_forms.py:1324 +#: virtualization/forms/bulk_import.py:162 +#: virtualization/forms/model_forms.py:313 msgid "Bridged interface" msgstr "Interfejs mostkowy" -#: netbox/dcim/forms/bulk_import.py:847 +#: dcim/forms/bulk_import.py:847 msgid "Lag" msgstr "Opóźnienie" -#: netbox/dcim/forms/bulk_import.py:851 +#: dcim/forms/bulk_import.py:851 msgid "Parent LAG interface" msgstr "Nadrzędny interfejs LAG" -#: netbox/dcim/forms/bulk_import.py:854 +#: dcim/forms/bulk_import.py:854 msgid "Vdcs" msgstr "Vdc" -#: netbox/dcim/forms/bulk_import.py:859 +#: dcim/forms/bulk_import.py:859 msgid "VDC names separated by commas, encased with double quotes. Example:" msgstr "" "Nazwy VDC oddzielone przecinkami, otoczone podwójnymi cudzysłowami. " "Przykład:" -#: netbox/dcim/forms/bulk_import.py:865 +#: dcim/forms/bulk_import.py:865 msgid "Physical medium" msgstr "Medium fizyczne" -#: netbox/dcim/forms/bulk_import.py:868 netbox/dcim/forms/filtersets.py:1365 +#: dcim/forms/bulk_import.py:868 dcim/forms/filtersets.py:1365 msgid "Duplex" msgstr "Dwupoziomowy" -#: netbox/dcim/forms/bulk_import.py:873 +#: dcim/forms/bulk_import.py:873 msgid "Poe mode" msgstr "Tryb PoE" -#: netbox/dcim/forms/bulk_import.py:879 +#: dcim/forms/bulk_import.py:879 msgid "Poe type" msgstr "Typ PoE" -#: netbox/dcim/forms/bulk_import.py:888 -#: netbox/virtualization/forms/bulk_import.py:168 +#: dcim/forms/bulk_import.py:888 virtualization/forms/bulk_import.py:168 msgid "IEEE 802.1Q operational mode (for L2 interfaces)" msgstr "Tryb pracy IEEE 802.1Q (dla interfejsów L2)" -#: netbox/dcim/forms/bulk_import.py:895 netbox/ipam/forms/bulk_import.py:161 -#: netbox/ipam/forms/bulk_import.py:247 netbox/ipam/forms/bulk_import.py:283 -#: netbox/ipam/forms/filtersets.py:201 netbox/ipam/forms/filtersets.py:277 -#: netbox/ipam/forms/filtersets.py:336 -#: netbox/virtualization/forms/bulk_import.py:175 +#: dcim/forms/bulk_import.py:895 ipam/forms/bulk_import.py:161 +#: ipam/forms/bulk_import.py:247 ipam/forms/bulk_import.py:283 +#: ipam/forms/filtersets.py:201 ipam/forms/filtersets.py:277 +#: ipam/forms/filtersets.py:336 virtualization/forms/bulk_import.py:175 msgid "Assigned VRF" msgstr "Przypisany VRF" -#: netbox/dcim/forms/bulk_import.py:898 +#: dcim/forms/bulk_import.py:898 msgid "Rf role" msgstr "Rola Rf" -#: netbox/dcim/forms/bulk_import.py:901 +#: dcim/forms/bulk_import.py:901 msgid "Wireless role (AP/station)" msgstr "Rola bezprzewodowa (AP/stacja)" -#: netbox/dcim/forms/bulk_import.py:937 +#: dcim/forms/bulk_import.py:937 #, python-brace-format msgid "VDC {vdc} is not assigned to device {device}" msgstr "VDC {vdc} nie jest przypisany do urządzenia {device}" -#: netbox/dcim/forms/bulk_import.py:951 netbox/dcim/forms/model_forms.py:1000 -#: netbox/dcim/forms/model_forms.py:1575 -#: netbox/dcim/forms/object_import.py:117 +#: dcim/forms/bulk_import.py:951 dcim/forms/model_forms.py:1000 +#: dcim/forms/model_forms.py:1575 dcim/forms/object_import.py:117 msgid "Rear port" msgstr "Tylny port" -#: netbox/dcim/forms/bulk_import.py:954 +#: dcim/forms/bulk_import.py:954 msgid "Corresponding rear port" msgstr "Odpowiedni tylny port" -#: netbox/dcim/forms/bulk_import.py:959 netbox/dcim/forms/bulk_import.py:1000 -#: netbox/dcim/forms/bulk_import.py:1216 +#: dcim/forms/bulk_import.py:959 dcim/forms/bulk_import.py:1000 +#: dcim/forms/bulk_import.py:1216 msgid "Physical medium classification" msgstr "Klasyfikacja medium fizycznego" -#: netbox/dcim/forms/bulk_import.py:1028 netbox/dcim/tables/devices.py:822 +#: dcim/forms/bulk_import.py:1028 dcim/tables/devices.py:822 msgid "Installed device" msgstr "Zainstalowane urządzenie" -#: netbox/dcim/forms/bulk_import.py:1032 +#: dcim/forms/bulk_import.py:1032 msgid "Child device installed within this bay" msgstr "Urządzenie dziecięce zainstalowane w tej wnęce" -#: netbox/dcim/forms/bulk_import.py:1034 +#: dcim/forms/bulk_import.py:1034 msgid "Child device not found." msgstr "Nie znaleziono urządzenia dziecięcego." -#: netbox/dcim/forms/bulk_import.py:1092 +#: dcim/forms/bulk_import.py:1092 msgid "Parent inventory item" msgstr "Nadrzędny element zapasów" -#: netbox/dcim/forms/bulk_import.py:1095 +#: dcim/forms/bulk_import.py:1095 msgid "Component type" msgstr "Typ komponentu" -#: netbox/dcim/forms/bulk_import.py:1099 +#: dcim/forms/bulk_import.py:1099 msgid "Component Type" msgstr "Typ komponentu" -#: netbox/dcim/forms/bulk_import.py:1102 +#: dcim/forms/bulk_import.py:1102 msgid "Compnent name" msgstr "Nazwa firmy" -#: netbox/dcim/forms/bulk_import.py:1104 +#: dcim/forms/bulk_import.py:1104 msgid "Component Name" msgstr "Nazwa komponentu" -#: netbox/dcim/forms/bulk_import.py:1146 +#: dcim/forms/bulk_import.py:1146 #, python-brace-format msgid "Component not found: {device} - {component_name}" msgstr "Nie znaleziono komponentu: {device} - {component_name}" -#: netbox/dcim/forms/bulk_import.py:1171 +#: dcim/forms/bulk_import.py:1171 msgid "Side A device" msgstr "Urządzenie boczne A" -#: netbox/dcim/forms/bulk_import.py:1174 netbox/dcim/forms/bulk_import.py:1192 +#: dcim/forms/bulk_import.py:1174 dcim/forms/bulk_import.py:1192 msgid "Device name" msgstr "Nazwa urządzenia" -#: netbox/dcim/forms/bulk_import.py:1177 +#: dcim/forms/bulk_import.py:1177 msgid "Side A type" msgstr "Typ strony A" -#: netbox/dcim/forms/bulk_import.py:1180 netbox/dcim/forms/bulk_import.py:1198 +#: dcim/forms/bulk_import.py:1180 dcim/forms/bulk_import.py:1198 msgid "Termination type" msgstr "Typ zakończenia" -#: netbox/dcim/forms/bulk_import.py:1183 +#: dcim/forms/bulk_import.py:1183 msgid "Side A name" msgstr "Nazwa strony A" -#: netbox/dcim/forms/bulk_import.py:1184 netbox/dcim/forms/bulk_import.py:1202 +#: dcim/forms/bulk_import.py:1184 dcim/forms/bulk_import.py:1202 msgid "Termination name" msgstr "Nazwa zakończenia" -#: netbox/dcim/forms/bulk_import.py:1189 +#: dcim/forms/bulk_import.py:1189 msgid "Side B device" msgstr "Urządzenie boczne B" -#: netbox/dcim/forms/bulk_import.py:1195 +#: dcim/forms/bulk_import.py:1195 msgid "Side B type" msgstr "Strona typu B" -#: netbox/dcim/forms/bulk_import.py:1201 +#: dcim/forms/bulk_import.py:1201 msgid "Side B name" msgstr "Nazwa strony B" -#: netbox/dcim/forms/bulk_import.py:1210 -#: netbox/wireless/forms/bulk_import.py:86 +#: dcim/forms/bulk_import.py:1210 wireless/forms/bulk_import.py:86 msgid "Connection status" msgstr "Status połączenia" -#: netbox/dcim/forms/bulk_import.py:1262 +#: dcim/forms/bulk_import.py:1262 #, python-brace-format msgid "Side {side_upper}: {device} {termination_object} is already connected" msgstr "Bok {side_upper}: {device} {termination_object} jest już połączony" -#: netbox/dcim/forms/bulk_import.py:1268 +#: dcim/forms/bulk_import.py:1268 #, python-brace-format msgid "{side_upper} side termination not found: {device} {name}" msgstr "{side_upper} Nie znaleziono zakończenia bocznego: {device} {name}" -#: netbox/dcim/forms/bulk_import.py:1293 netbox/dcim/forms/model_forms.py:785 -#: netbox/dcim/tables/devices.py:1027 netbox/templates/dcim/device.html:132 -#: netbox/templates/dcim/virtualchassis.html:27 -#: netbox/templates/dcim/virtualchassis.html:67 +#: dcim/forms/bulk_import.py:1293 dcim/forms/model_forms.py:785 +#: dcim/tables/devices.py:1027 templates/dcim/device.html:132 +#: templates/dcim/virtualchassis.html:27 templates/dcim/virtualchassis.html:67 msgid "Master" msgstr "Mistrzu" -#: netbox/dcim/forms/bulk_import.py:1297 +#: dcim/forms/bulk_import.py:1297 msgid "Master device" msgstr "Urządzenie główne" -#: netbox/dcim/forms/bulk_import.py:1314 +#: dcim/forms/bulk_import.py:1314 msgid "Name of parent site" msgstr "Nazwa witryny nadrzędnej" -#: netbox/dcim/forms/bulk_import.py:1348 +#: dcim/forms/bulk_import.py:1348 msgid "Upstream power panel" msgstr "Panel zasilania przed strumieniem" -#: netbox/dcim/forms/bulk_import.py:1378 +#: dcim/forms/bulk_import.py:1378 msgid "Primary or redundant" msgstr "Podstawowy lub nadmiarowy" -#: netbox/dcim/forms/bulk_import.py:1383 +#: dcim/forms/bulk_import.py:1383 msgid "Supply type (AC/DC)" msgstr "Rodzaj zasilania (AC/DC)" -#: netbox/dcim/forms/bulk_import.py:1388 +#: dcim/forms/bulk_import.py:1388 msgid "Single or three-phase" msgstr "Pojedynczy lub trójfazowy" -#: netbox/dcim/forms/bulk_import.py:1439 netbox/dcim/forms/model_forms.py:1670 -#: netbox/templates/dcim/device.html:190 -#: netbox/templates/dcim/virtualdevicecontext.html:30 -#: netbox/templates/virtualization/virtualmachine.html:52 +#: dcim/forms/bulk_import.py:1439 dcim/forms/model_forms.py:1670 +#: templates/dcim/device.html:190 templates/dcim/virtualdevicecontext.html:30 +#: templates/virtualization/virtualmachine.html:52 msgid "Primary IPv4" msgstr "Podstawowy IPv4" -#: netbox/dcim/forms/bulk_import.py:1443 +#: dcim/forms/bulk_import.py:1443 msgid "IPv4 address with mask, e.g. 1.2.3.4/24" msgstr "Adres IPv4 z maską, np. 1.2.3.4/24" -#: netbox/dcim/forms/bulk_import.py:1446 netbox/dcim/forms/model_forms.py:1679 -#: netbox/templates/dcim/device.html:206 -#: netbox/templates/dcim/virtualdevicecontext.html:41 -#: netbox/templates/virtualization/virtualmachine.html:68 +#: dcim/forms/bulk_import.py:1446 dcim/forms/model_forms.py:1679 +#: templates/dcim/device.html:206 templates/dcim/virtualdevicecontext.html:41 +#: templates/virtualization/virtualmachine.html:68 msgid "Primary IPv6" msgstr "Podstawowy IPv6" -#: netbox/dcim/forms/bulk_import.py:1450 +#: dcim/forms/bulk_import.py:1450 msgid "IPv6 address with prefix length, e.g. 2001:db8::1/64" -msgstr "Adres IPv6 z przedrostkiem, np. 2001:db8: :1/64" +msgstr "Adres IPv6 z prefiksem, np. 2001:db8::1/64" -#: netbox/dcim/forms/common.py:24 netbox/dcim/models/device_components.py:527 -#: netbox/templates/dcim/interface.html:57 -#: netbox/templates/virtualization/vminterface.html:55 -#: netbox/virtualization/forms/bulk_edit.py:225 +#: dcim/forms/common.py:24 dcim/models/device_components.py:527 +#: templates/dcim/interface.html:57 +#: templates/virtualization/vminterface.html:55 +#: virtualization/forms/bulk_edit.py:225 msgid "MTU" msgstr "MTU" -#: netbox/dcim/forms/common.py:65 +#: dcim/forms/common.py:65 #, python-brace-format msgid "" "The tagged VLANs ({vlans}) must belong to the same site as the interface's " @@ -4609,7 +4209,7 @@ msgstr "" "Oznaczone sieci VLAN ({vlans}) muszą należeć do tej samej witryny co " "urządzenie nadrzędne/maszyna wirtualna interfejsu lub muszą być globalne" -#: netbox/dcim/forms/common.py:126 +#: dcim/forms/common.py:126 msgid "" "Cannot install module with placeholder values in a module bay with no " "position defined." @@ -4617,7 +4217,7 @@ msgstr "" "Nie można zainstalować modułu z wartościami zastępczymi w kieszeni modułu " "bez zdefiniowanej pozycji." -#: netbox/dcim/forms/common.py:131 +#: dcim/forms/common.py:131 #, python-brace-format msgid "" "Cannot install module with placeholder values in a module bay tree {level} " @@ -4626,202 +4226,187 @@ msgstr "" "Nie można zainstalować modułu z wartościami zastępczymi w drzewie laurowym " "modułu {level} na drzewie, ale {tokens} podane symbole zastępcze." -#: netbox/dcim/forms/common.py:144 +#: dcim/forms/common.py:144 #, python-brace-format msgid "Cannot adopt {model} {name} as it already belongs to a module" msgstr "Nie można adoptować {model} {name} ponieważ już należy do modułu" -#: netbox/dcim/forms/common.py:153 +#: dcim/forms/common.py:153 #, python-brace-format msgid "A {model} named {name} already exists" msgstr "A {model} o nazwie {name} już istnieje" -#: netbox/dcim/forms/connections.py:49 netbox/dcim/forms/model_forms.py:738 -#: netbox/dcim/tables/power.py:66 -#: netbox/templates/dcim/inc/cable_termination.html:37 -#: netbox/templates/dcim/powerfeed.html:24 -#: netbox/templates/dcim/powerpanel.html:19 -#: netbox/templates/dcim/trace/powerpanel.html:4 +#: dcim/forms/connections.py:49 dcim/forms/model_forms.py:738 +#: dcim/tables/power.py:66 templates/dcim/inc/cable_termination.html:37 +#: templates/dcim/powerfeed.html:24 templates/dcim/powerpanel.html:19 +#: templates/dcim/trace/powerpanel.html:4 msgid "Power Panel" msgstr "Panel zasilania" -#: netbox/dcim/forms/connections.py:58 netbox/dcim/forms/model_forms.py:765 -#: netbox/templates/dcim/powerfeed.html:21 -#: netbox/templates/dcim/powerport.html:80 +#: dcim/forms/connections.py:58 dcim/forms/model_forms.py:765 +#: templates/dcim/powerfeed.html:21 templates/dcim/powerport.html:80 msgid "Power Feed" msgstr "Zasilanie zasilania" -#: netbox/dcim/forms/connections.py:81 +#: dcim/forms/connections.py:81 msgid "Side" msgstr "Bok" -#: netbox/dcim/forms/filtersets.py:136 netbox/dcim/tables/devices.py:295 +#: dcim/forms/filtersets.py:136 dcim/tables/devices.py:295 msgid "Device Status" msgstr "Status urządzenia" -#: netbox/dcim/forms/filtersets.py:149 +#: dcim/forms/filtersets.py:149 msgid "Parent region" msgstr "Region macierzysty" -#: netbox/dcim/forms/filtersets.py:163 netbox/tenancy/forms/bulk_import.py:28 -#: netbox/tenancy/forms/bulk_import.py:62 -#: netbox/tenancy/forms/filtersets.py:33 netbox/tenancy/forms/filtersets.py:62 -#: netbox/wireless/forms/bulk_import.py:25 -#: netbox/wireless/forms/filtersets.py:25 +#: dcim/forms/filtersets.py:163 tenancy/forms/bulk_import.py:28 +#: tenancy/forms/bulk_import.py:62 tenancy/forms/filtersets.py:33 +#: tenancy/forms/filtersets.py:62 wireless/forms/bulk_import.py:25 +#: wireless/forms/filtersets.py:25 msgid "Parent group" msgstr "Grupa nadrzędna" -#: netbox/dcim/forms/filtersets.py:242 netbox/templates/dcim/location.html:58 -#: netbox/templates/dcim/site.html:56 +#: dcim/forms/filtersets.py:242 templates/dcim/location.html:58 +#: templates/dcim/site.html:56 msgid "Facility" msgstr "Obiekty" -#: netbox/dcim/forms/filtersets.py:380 +#: dcim/forms/filtersets.py:380 msgid "Rack type" msgstr "Typ szafy" -#: netbox/dcim/forms/filtersets.py:397 +#: dcim/forms/filtersets.py:397 msgid "Function" msgstr "Funkcja" -#: netbox/dcim/forms/filtersets.py:483 netbox/dcim/forms/model_forms.py:373 -#: netbox/templates/inc/panels/image_attachments.html:6 +#: dcim/forms/filtersets.py:483 dcim/forms/model_forms.py:373 +#: templates/inc/panels/image_attachments.html:6 msgid "Images" msgstr "Obrazy" -#: netbox/dcim/forms/filtersets.py:486 netbox/dcim/forms/filtersets.py:611 -#: netbox/dcim/forms/filtersets.py:726 +#: dcim/forms/filtersets.py:486 dcim/forms/filtersets.py:611 +#: dcim/forms/filtersets.py:726 msgid "Components" msgstr "Komponenty" -#: netbox/dcim/forms/filtersets.py:506 +#: dcim/forms/filtersets.py:506 msgid "Subdevice role" msgstr "Rola urządzenia podrzędnego" -#: netbox/dcim/forms/filtersets.py:790 netbox/dcim/tables/racks.py:54 -#: netbox/templates/dcim/racktype.html:20 +#: dcim/forms/filtersets.py:790 dcim/tables/racks.py:54 +#: templates/dcim/racktype.html:20 msgid "Model" msgstr "Model" -#: netbox/dcim/forms/filtersets.py:834 +#: dcim/forms/filtersets.py:834 msgid "Has an OOB IP" msgstr "Posiada adres IP OOB" -#: netbox/dcim/forms/filtersets.py:841 +#: dcim/forms/filtersets.py:841 msgid "Virtual chassis member" msgstr "Wirtualny element podwozia" -#: netbox/dcim/forms/filtersets.py:890 +#: dcim/forms/filtersets.py:890 msgid "Has virtual device contexts" msgstr "Posiada konteksty urządzeń wirtualnych" -#: netbox/dcim/forms/filtersets.py:903 netbox/extras/filtersets.py:585 -#: netbox/ipam/forms/bulk_edit.py:479 netbox/ipam/forms/filtersets.py:452 -#: netbox/virtualization/forms/filtersets.py:112 +#: dcim/forms/filtersets.py:903 extras/filtersets.py:585 +#: ipam/forms/filtersets.py:452 virtualization/forms/filtersets.py:112 msgid "Cluster group" msgstr "Grupa klastra" -#: netbox/dcim/forms/filtersets.py:1210 +#: dcim/forms/filtersets.py:1210 msgid "Cabled" msgstr "Okablowany" -#: netbox/dcim/forms/filtersets.py:1217 +#: dcim/forms/filtersets.py:1217 msgid "Occupied" msgstr "Zajęty" -#: netbox/dcim/forms/filtersets.py:1244 netbox/dcim/forms/filtersets.py:1269 -#: netbox/dcim/forms/filtersets.py:1293 netbox/dcim/forms/filtersets.py:1313 -#: netbox/dcim/forms/filtersets.py:1336 netbox/dcim/tables/devices.py:364 -#: netbox/templates/dcim/consoleport.html:55 -#: netbox/templates/dcim/consoleserverport.html:55 -#: netbox/templates/dcim/frontport.html:69 -#: netbox/templates/dcim/interface.html:140 -#: netbox/templates/dcim/powerfeed.html:110 -#: netbox/templates/dcim/poweroutlet.html:59 -#: netbox/templates/dcim/powerport.html:59 -#: netbox/templates/dcim/rearport.html:65 +#: dcim/forms/filtersets.py:1244 dcim/forms/filtersets.py:1269 +#: dcim/forms/filtersets.py:1293 dcim/forms/filtersets.py:1313 +#: dcim/forms/filtersets.py:1336 dcim/tables/devices.py:364 +#: templates/dcim/consoleport.html:55 templates/dcim/consoleserverport.html:55 +#: templates/dcim/frontport.html:69 templates/dcim/interface.html:140 +#: templates/dcim/powerfeed.html:110 templates/dcim/poweroutlet.html:59 +#: templates/dcim/powerport.html:59 templates/dcim/rearport.html:65 msgid "Connection" msgstr "Połączenie" -#: netbox/dcim/forms/filtersets.py:1348 netbox/extras/forms/bulk_edit.py:326 -#: netbox/extras/forms/bulk_import.py:247 -#: netbox/extras/forms/filtersets.py:464 -#: netbox/extras/forms/model_forms.py:675 netbox/extras/tables/tables.py:579 -#: netbox/templates/extras/journalentry.html:30 +#: dcim/forms/filtersets.py:1348 extras/forms/bulk_edit.py:326 +#: extras/forms/bulk_import.py:247 extras/forms/filtersets.py:464 +#: extras/forms/model_forms.py:675 extras/tables/tables.py:579 +#: templates/extras/journalentry.html:30 msgid "Kind" msgstr "Uprzejmy" -#: netbox/dcim/forms/filtersets.py:1377 +#: dcim/forms/filtersets.py:1377 msgid "Mgmt only" msgstr "Tylko MGMT" -#: netbox/dcim/forms/filtersets.py:1389 netbox/dcim/forms/model_forms.py:1383 -#: netbox/dcim/models/device_components.py:629 -#: netbox/templates/dcim/interface.html:129 +#: dcim/forms/filtersets.py:1389 dcim/forms/model_forms.py:1383 +#: dcim/models/device_components.py:629 templates/dcim/interface.html:129 msgid "WWN" msgstr "WWN" -#: netbox/dcim/forms/filtersets.py:1409 +#: dcim/forms/filtersets.py:1409 msgid "Wireless channel" msgstr "Kanał bezprzewodowy" -#: netbox/dcim/forms/filtersets.py:1413 +#: dcim/forms/filtersets.py:1413 msgid "Channel frequency (MHz)" msgstr "Częstotliwość kanału (MHz)" -#: netbox/dcim/forms/filtersets.py:1417 +#: dcim/forms/filtersets.py:1417 msgid "Channel width (MHz)" msgstr "Szerokość kanału (MHz)" -#: netbox/dcim/forms/filtersets.py:1421 -#: netbox/templates/dcim/interface.html:85 +#: dcim/forms/filtersets.py:1421 templates/dcim/interface.html:85 msgid "Transmit power (dBm)" msgstr "Moc transmisji (dBm)" -#: netbox/dcim/forms/filtersets.py:1446 netbox/dcim/forms/filtersets.py:1471 -#: netbox/dcim/tables/devices.py:327 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:50 -#: netbox/templates/dcim/inc/connection_endpoints.html:4 -#: netbox/templates/dcim/rearport.html:73 -#: netbox/templates/dcim/trace/cable.html:7 +#: dcim/forms/filtersets.py:1446 dcim/forms/filtersets.py:1471 +#: dcim/tables/devices.py:327 templates/dcim/cable.html:12 +#: templates/dcim/cable_trace.html:46 templates/dcim/frontport.html:77 +#: templates/dcim/htmx/cable_edit.html:50 +#: templates/dcim/inc/connection_endpoints.html:4 +#: templates/dcim/rearport.html:73 templates/dcim/trace/cable.html:7 msgid "Cable" msgstr "Kabel" -#: netbox/dcim/forms/filtersets.py:1550 netbox/dcim/tables/devices.py:949 +#: dcim/forms/filtersets.py:1550 dcim/tables/devices.py:949 msgid "Discovered" msgstr "Odkryte" -#: netbox/dcim/forms/formsets.py:20 +#: dcim/forms/formsets.py:20 #, python-brace-format msgid "A virtual chassis member already exists in position {vc_position}." msgstr "Wirtualny element podwozia istnieje już na pozycji {vc_position}." -#: netbox/dcim/forms/model_forms.py:140 +#: dcim/forms/model_forms.py:140 msgid "Contact Info" msgstr "Dane kontaktowe" -#: netbox/dcim/forms/model_forms.py:195 netbox/templates/dcim/rackrole.html:19 +#: dcim/forms/model_forms.py:195 templates/dcim/rackrole.html:19 msgid "Rack Role" msgstr "Rola szafy" -#: netbox/dcim/forms/model_forms.py:212 netbox/dcim/forms/model_forms.py:362 -#: netbox/dcim/forms/model_forms.py:446 -#: netbox/utilities/forms/fields/fields.py:47 +#: dcim/forms/model_forms.py:212 dcim/forms/model_forms.py:362 +#: dcim/forms/model_forms.py:446 utilities/forms/fields/fields.py:47 msgid "Slug" msgstr "Identyfikator" -#: netbox/dcim/forms/model_forms.py:259 +#: dcim/forms/model_forms.py:259 msgid "Select a pre-defined rack type, or set physical characteristics below." msgstr "" "Wybierz predefiniowany typ szafy lub ustaw parametry fizyczne poniżej." -#: netbox/dcim/forms/model_forms.py:265 +#: dcim/forms/model_forms.py:265 msgid "Inventory Control" msgstr "Kontrola zapasów" -#: netbox/dcim/forms/model_forms.py:313 +#: dcim/forms/model_forms.py:313 msgid "" "Comma-separated list of numeric unit IDs. A range may be specified using a " "hyphen." @@ -4829,162 +4414,145 @@ msgstr "" "Lista numerycznych identyfikatorów jednostek oddzielonych przecinkami. " "Zakres można określić za pomocą myślnika." -#: netbox/dcim/forms/model_forms.py:322 netbox/dcim/tables/racks.py:202 +#: dcim/forms/model_forms.py:322 dcim/tables/racks.py:202 msgid "Reservation" msgstr "Rezerwacje" -#: netbox/dcim/forms/model_forms.py:423 -#: netbox/templates/dcim/devicerole.html:23 +#: dcim/forms/model_forms.py:423 templates/dcim/devicerole.html:23 msgid "Device Role" msgstr "Rola urządzenia" -#: netbox/dcim/forms/model_forms.py:490 netbox/dcim/models/devices.py:644 +#: dcim/forms/model_forms.py:490 dcim/models/devices.py:644 msgid "The lowest-numbered unit occupied by the device" msgstr "Jednostka o najniższej liczbie zajmowana przez urządzenie" -#: netbox/dcim/forms/model_forms.py:547 +#: dcim/forms/model_forms.py:547 msgid "The position in the virtual chassis this device is identified by" msgstr "" "Pozycja w wirtualnej obudowie tego urządzenia jest identyfikowana przez" -#: netbox/dcim/forms/model_forms.py:552 +#: dcim/forms/model_forms.py:552 msgid "The priority of the device in the virtual chassis" msgstr "Priorytet urządzenia w wirtualnej obudowie" -#: netbox/dcim/forms/model_forms.py:659 +#: dcim/forms/model_forms.py:659 msgid "Automatically populate components associated with this module type" msgstr "Automatyczne wypełnianie komponentów powiązanych z tym typem modułu" -#: netbox/dcim/forms/model_forms.py:767 +#: dcim/forms/model_forms.py:767 msgid "Characteristics" msgstr "Charakterystyka" -#: netbox/dcim/forms/model_forms.py:1087 +#: dcim/forms/model_forms.py:1087 msgid "Console port template" msgstr "Szablon portu konsoli" -#: netbox/dcim/forms/model_forms.py:1095 +#: dcim/forms/model_forms.py:1095 msgid "Console server port template" msgstr "Szablon portu serwera konsoli" -#: netbox/dcim/forms/model_forms.py:1103 +#: dcim/forms/model_forms.py:1103 msgid "Front port template" msgstr "Szablon portu przedniego" -#: netbox/dcim/forms/model_forms.py:1111 +#: dcim/forms/model_forms.py:1111 msgid "Interface template" msgstr "Szablon interfejsu" -#: netbox/dcim/forms/model_forms.py:1119 +#: dcim/forms/model_forms.py:1119 msgid "Power outlet template" msgstr "Szablon gniazdka elektrycznego" -#: netbox/dcim/forms/model_forms.py:1127 +#: dcim/forms/model_forms.py:1127 msgid "Power port template" msgstr "Szablon portu zasilania" -#: netbox/dcim/forms/model_forms.py:1135 +#: dcim/forms/model_forms.py:1135 msgid "Rear port template" msgstr "Szablon tylnego portu" -#: netbox/dcim/forms/model_forms.py:1144 netbox/dcim/forms/model_forms.py:1388 -#: netbox/dcim/forms/model_forms.py:1551 netbox/dcim/forms/model_forms.py:1583 -#: netbox/dcim/tables/connections.py:65 netbox/ipam/forms/bulk_import.py:318 -#: netbox/ipam/forms/model_forms.py:280 netbox/ipam/forms/model_forms.py:289 -#: netbox/ipam/tables/fhrp.py:64 netbox/ipam/tables/ip.py:372 -#: netbox/ipam/tables/vlans.py:169 -#: netbox/templates/circuits/inc/circuit_termination_fields.html:51 -#: netbox/templates/dcim/frontport.html:106 -#: netbox/templates/dcim/interface.html:27 -#: netbox/templates/dcim/interface.html:184 -#: netbox/templates/dcim/interface.html:310 -#: netbox/templates/dcim/rearport.html:102 -#: netbox/templates/virtualization/vminterface.html:18 -#: netbox/templates/vpn/tunneltermination.html:31 -#: netbox/templates/wireless/inc/wirelesslink_interface.html:10 -#: netbox/templates/wireless/wirelesslink.html:10 -#: netbox/templates/wireless/wirelesslink.html:55 -#: netbox/virtualization/forms/model_forms.py:348 -#: netbox/vpn/forms/bulk_import.py:297 netbox/vpn/forms/model_forms.py:436 -#: netbox/vpn/forms/model_forms.py:445 -#: netbox/wireless/forms/model_forms.py:113 -#: netbox/wireless/forms/model_forms.py:155 +#: dcim/forms/model_forms.py:1144 dcim/forms/model_forms.py:1388 +#: dcim/forms/model_forms.py:1551 dcim/forms/model_forms.py:1583 +#: dcim/tables/connections.py:65 ipam/forms/bulk_import.py:318 +#: ipam/forms/model_forms.py:280 ipam/forms/model_forms.py:289 +#: ipam/tables/fhrp.py:64 ipam/tables/ip.py:372 ipam/tables/vlans.py:169 +#: templates/circuits/inc/circuit_termination_fields.html:51 +#: templates/dcim/frontport.html:106 templates/dcim/interface.html:27 +#: templates/dcim/interface.html:184 templates/dcim/interface.html:310 +#: templates/dcim/rearport.html:102 +#: templates/virtualization/vminterface.html:18 +#: templates/vpn/tunneltermination.html:31 +#: templates/wireless/inc/wirelesslink_interface.html:10 +#: templates/wireless/wirelesslink.html:10 +#: templates/wireless/wirelesslink.html:55 +#: virtualization/forms/model_forms.py:348 vpn/forms/bulk_import.py:297 +#: vpn/forms/model_forms.py:436 vpn/forms/model_forms.py:445 +#: wireless/forms/model_forms.py:113 wireless/forms/model_forms.py:155 msgid "Interface" msgstr "Interfejs" -#: netbox/dcim/forms/model_forms.py:1145 netbox/dcim/forms/model_forms.py:1584 -#: netbox/dcim/tables/connections.py:27 -#: netbox/templates/dcim/consoleport.html:17 -#: netbox/templates/dcim/consoleserverport.html:74 -#: netbox/templates/dcim/frontport.html:112 +#: dcim/forms/model_forms.py:1145 dcim/forms/model_forms.py:1584 +#: dcim/tables/connections.py:27 templates/dcim/consoleport.html:17 +#: templates/dcim/consoleserverport.html:74 templates/dcim/frontport.html:112 msgid "Console Port" msgstr "Port konsoli" -#: netbox/dcim/forms/model_forms.py:1146 netbox/dcim/forms/model_forms.py:1585 -#: netbox/templates/dcim/consoleport.html:73 -#: netbox/templates/dcim/consoleserverport.html:17 -#: netbox/templates/dcim/frontport.html:109 +#: dcim/forms/model_forms.py:1146 dcim/forms/model_forms.py:1585 +#: templates/dcim/consoleport.html:73 templates/dcim/consoleserverport.html:17 +#: templates/dcim/frontport.html:109 msgid "Console Server Port" msgstr "Port serwera konsoli" -#: netbox/dcim/forms/model_forms.py:1147 netbox/dcim/forms/model_forms.py:1586 -#: netbox/templates/circuits/inc/circuit_termination_fields.html:52 -#: netbox/templates/dcim/consoleport.html:76 -#: netbox/templates/dcim/consoleserverport.html:77 -#: netbox/templates/dcim/frontport.html:17 -#: netbox/templates/dcim/frontport.html:115 -#: netbox/templates/dcim/interface.html:187 -#: netbox/templates/dcim/rearport.html:105 +#: dcim/forms/model_forms.py:1147 dcim/forms/model_forms.py:1586 +#: templates/circuits/inc/circuit_termination_fields.html:52 +#: templates/dcim/consoleport.html:76 templates/dcim/consoleserverport.html:77 +#: templates/dcim/frontport.html:17 templates/dcim/frontport.html:115 +#: templates/dcim/interface.html:187 templates/dcim/rearport.html:105 msgid "Front Port" msgstr "Port przedni" -#: netbox/dcim/forms/model_forms.py:1148 netbox/dcim/forms/model_forms.py:1587 -#: netbox/dcim/tables/devices.py:710 -#: netbox/templates/circuits/inc/circuit_termination_fields.html:53 -#: netbox/templates/dcim/consoleport.html:79 -#: netbox/templates/dcim/consoleserverport.html:80 -#: netbox/templates/dcim/frontport.html:50 -#: netbox/templates/dcim/frontport.html:118 -#: netbox/templates/dcim/interface.html:190 -#: netbox/templates/dcim/rearport.html:17 -#: netbox/templates/dcim/rearport.html:108 +#: dcim/forms/model_forms.py:1148 dcim/forms/model_forms.py:1587 +#: dcim/tables/devices.py:710 +#: templates/circuits/inc/circuit_termination_fields.html:53 +#: templates/dcim/consoleport.html:79 templates/dcim/consoleserverport.html:80 +#: templates/dcim/frontport.html:50 templates/dcim/frontport.html:118 +#: templates/dcim/interface.html:190 templates/dcim/rearport.html:17 +#: templates/dcim/rearport.html:108 msgid "Rear Port" msgstr "Tylny port" -#: netbox/dcim/forms/model_forms.py:1149 netbox/dcim/forms/model_forms.py:1588 -#: netbox/dcim/tables/connections.py:46 netbox/dcim/tables/devices.py:512 -#: netbox/templates/dcim/poweroutlet.html:44 -#: netbox/templates/dcim/powerport.html:17 +#: dcim/forms/model_forms.py:1149 dcim/forms/model_forms.py:1588 +#: dcim/tables/connections.py:46 dcim/tables/devices.py:512 +#: templates/dcim/poweroutlet.html:44 templates/dcim/powerport.html:17 msgid "Power Port" msgstr "Port zasilania" -#: netbox/dcim/forms/model_forms.py:1150 netbox/dcim/forms/model_forms.py:1589 -#: netbox/templates/dcim/poweroutlet.html:17 -#: netbox/templates/dcim/powerport.html:77 +#: dcim/forms/model_forms.py:1150 dcim/forms/model_forms.py:1589 +#: templates/dcim/poweroutlet.html:17 templates/dcim/powerport.html:77 msgid "Power Outlet" msgstr "Gniazdo zasilania" -#: netbox/dcim/forms/model_forms.py:1152 netbox/dcim/forms/model_forms.py:1591 +#: dcim/forms/model_forms.py:1152 dcim/forms/model_forms.py:1591 msgid "Component Assignment" msgstr "Przypisywanie komponentów" -#: netbox/dcim/forms/model_forms.py:1195 netbox/dcim/forms/model_forms.py:1638 +#: dcim/forms/model_forms.py:1195 dcim/forms/model_forms.py:1638 msgid "An InventoryItem can only be assigned to a single component." msgstr "InventoryItem można przypisać tylko do pojedynczego komponentu." -#: netbox/dcim/forms/model_forms.py:1332 +#: dcim/forms/model_forms.py:1332 msgid "LAG interface" msgstr "Interfejs LAG" -#: netbox/dcim/forms/model_forms.py:1355 +#: dcim/forms/model_forms.py:1355 msgid "Filter VLANs available for assignment by group." msgstr "Filtruj sieci VLAN dostępne do przypisania według grup." -#: netbox/dcim/forms/model_forms.py:1484 +#: dcim/forms/model_forms.py:1484 msgid "Child Device" msgstr "Urządzenie dziecięce" -#: netbox/dcim/forms/model_forms.py:1485 +#: dcim/forms/model_forms.py:1485 msgid "" "Child devices must first be created and assigned to the site and rack of the" " parent device." @@ -4992,35 +4560,32 @@ msgstr "" "Urządzenia podrzędne muszą być najpierw utworzone i przypisane do terenu " "i szafy urządzenia nadrzędnego." -#: netbox/dcim/forms/model_forms.py:1527 +#: dcim/forms/model_forms.py:1527 msgid "Console port" msgstr "Port konsoli" -#: netbox/dcim/forms/model_forms.py:1535 +#: dcim/forms/model_forms.py:1535 msgid "Console server port" msgstr "Port serwera konsoli" -#: netbox/dcim/forms/model_forms.py:1543 +#: dcim/forms/model_forms.py:1543 msgid "Front port" msgstr "Port przedni" -#: netbox/dcim/forms/model_forms.py:1559 +#: dcim/forms/model_forms.py:1559 msgid "Power outlet" msgstr "Gniazdo zasilania" -#: netbox/dcim/forms/model_forms.py:1579 -#: netbox/templates/dcim/inventoryitem.html:17 +#: dcim/forms/model_forms.py:1579 templates/dcim/inventoryitem.html:17 msgid "Inventory Item" msgstr "Przedmiot zapasów" -#: netbox/dcim/forms/model_forms.py:1652 -#: netbox/templates/dcim/inventoryitemrole.html:15 +#: dcim/forms/model_forms.py:1652 templates/dcim/inventoryitemrole.html:15 msgid "Inventory Item Role" msgstr "Rola pozycji zapasów" -#: netbox/dcim/forms/object_create.py:48 -#: netbox/dcim/forms/object_create.py:199 -#: netbox/dcim/forms/object_create.py:355 +#: dcim/forms/object_create.py:48 dcim/forms/object_create.py:199 +#: dcim/forms/object_create.py:355 msgid "" "Alphanumeric ranges are supported. (Must match the number of objects being " "created.)" @@ -5028,7 +4593,7 @@ msgstr "" "Obsługiwane są zakresy alfanumeryczne. (Muszą odpowiadać liczbie tworzonych " "obiektów.)" -#: netbox/dcim/forms/object_create.py:68 +#: dcim/forms/object_create.py:68 #, python-brace-format msgid "" "The provided pattern specifies {value_count} values, but {pattern_count} are" @@ -5037,19 +4602,18 @@ msgstr "" "Podany wzór określa {value_count} wartości, ale {pattern_count} są " "oczekiwane." -#: netbox/dcim/forms/object_create.py:110 -#: netbox/dcim/forms/object_create.py:271 netbox/dcim/tables/devices.py:252 +#: dcim/forms/object_create.py:110 dcim/forms/object_create.py:271 +#: dcim/tables/devices.py:252 msgid "Rear ports" msgstr "Tylne porty" -#: netbox/dcim/forms/object_create.py:111 -#: netbox/dcim/forms/object_create.py:272 +#: dcim/forms/object_create.py:111 dcim/forms/object_create.py:272 msgid "Select one rear port assignment for each front port being created." msgstr "" "Wybierz jedno przypisanie portu tylnego dla każdego tworzonego portu " "przedniego." -#: netbox/dcim/forms/object_create.py:164 +#: dcim/forms/object_create.py:164 #, python-brace-format msgid "" "The number of front port templates to be created ({frontport_count}) must " @@ -5058,7 +4622,7 @@ msgstr "" "Liczba szablonów portów przednich do utworzenia ({frontport_count}) musi " "odpowiadać wybranej liczbie pozycji tylnych portów ({rearport_count})." -#: netbox/dcim/forms/object_create.py:251 +#: dcim/forms/object_create.py:251 #, python-brace-format msgid "" "The string {module} will be replaced with the position of the " @@ -5067,7 +4631,7 @@ msgstr "" "Sznurek {module} zostanie zastąpiony pozycją przypisanego " "modułu, jeśli istnieje." -#: netbox/dcim/forms/object_create.py:320 +#: dcim/forms/object_create.py:320 #, python-brace-format msgid "" "The number of front ports to be created ({frontport_count}) must match the " @@ -5076,18 +4640,17 @@ 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:409 netbox/dcim/tables/devices.py:1033 -#: netbox/ipam/tables/fhrp.py:31 netbox/templates/dcim/virtualchassis.html:53 -#: netbox/templates/dcim/virtualchassis_edit.html:47 -#: netbox/templates/ipam/fhrpgroup.html:38 +#: dcim/forms/object_create.py:409 dcim/tables/devices.py:1033 +#: ipam/tables/fhrp.py:31 templates/dcim/virtualchassis.html:53 +#: templates/dcim/virtualchassis_edit.html:47 templates/ipam/fhrpgroup.html:38 msgid "Members" msgstr "Członkowie" -#: netbox/dcim/forms/object_create.py:418 +#: dcim/forms/object_create.py:418 msgid "Initial position" msgstr "Pozycja początkowa" -#: netbox/dcim/forms/object_create.py:421 +#: dcim/forms/object_create.py:421 msgid "" "Position of the first member device. Increases by one for each additional " "member." @@ -5095,68 +4658,66 @@ msgstr "" "Położenie pierwszego urządzenia członkowskiego. Zwiększa się o jeden dla " "każdego dodatkowego członka." -#: netbox/dcim/forms/object_create.py:435 +#: dcim/forms/object_create.py:435 msgid "A position must be specified for the first VC member." msgstr "Pozycja musi być określona dla pierwszego członka VC." -#: netbox/dcim/models/cables.py:62 -#: netbox/dcim/models/device_component_templates.py:55 -#: netbox/dcim/models/device_components.py:62 -#: netbox/extras/models/customfields.py:111 +#: dcim/models/cables.py:62 dcim/models/device_component_templates.py:55 +#: dcim/models/device_components.py:62 extras/models/customfields.py:111 msgid "label" msgstr "marka" -#: netbox/dcim/models/cables.py:71 +#: dcim/models/cables.py:71 msgid "length" msgstr "długość" -#: netbox/dcim/models/cables.py:78 +#: dcim/models/cables.py:78 msgid "length unit" msgstr "jednostka długości" -#: netbox/dcim/models/cables.py:95 +#: dcim/models/cables.py:95 msgid "cable" msgstr "kabel" -#: netbox/dcim/models/cables.py:96 +#: dcim/models/cables.py:96 msgid "cables" msgstr "linki" -#: netbox/dcim/models/cables.py:165 +#: dcim/models/cables.py:165 msgid "Must specify a unit when setting a cable length" msgstr "Należy określić jednostkę podczas ustawiania długości kabla" -#: netbox/dcim/models/cables.py:168 +#: dcim/models/cables.py:168 msgid "Must define A and B terminations when creating a new cable." msgstr "Musi zdefiniować zakończenia A i B podczas tworzenia nowego kabla." -#: netbox/dcim/models/cables.py:175 +#: dcim/models/cables.py:175 msgid "Cannot connect different termination types to same end of cable." msgstr "" "Nie można podłączyć różnych typów zakończeń do tego samego końca kabla." -#: netbox/dcim/models/cables.py:183 +#: dcim/models/cables.py:183 #, python-brace-format msgid "Incompatible termination types: {type_a} and {type_b}" msgstr "Niekompatybilne typy zakończeń: {type_a} a {type_b}" -#: netbox/dcim/models/cables.py:193 +#: dcim/models/cables.py:193 msgid "A and B terminations cannot connect to the same object." msgstr "Zakończenia A i B nie mogą łączyć się z tym samym obiektem." -#: netbox/dcim/models/cables.py:260 netbox/ipam/models/asns.py:37 +#: dcim/models/cables.py:260 ipam/models/asns.py:37 msgid "end" msgstr "zakończyć" -#: netbox/dcim/models/cables.py:313 +#: dcim/models/cables.py:313 msgid "cable termination" msgstr "zakończenie kabla" -#: netbox/dcim/models/cables.py:314 +#: dcim/models/cables.py:314 msgid "cable terminations" msgstr "zakończenia kabli" -#: netbox/dcim/models/cables.py:333 +#: dcim/models/cables.py:333 #, python-brace-format msgid "" "Duplicate termination found for {app_label}.{model} {termination_id}: cable " @@ -5165,37 +4726,37 @@ msgstr "" "Znaleziono duplikat zakończenia {app_label}.{model} {termination_id}: kabel " "{cable_pk}" -#: netbox/dcim/models/cables.py:343 +#: dcim/models/cables.py:343 #, python-brace-format msgid "Cables cannot be terminated to {type_display} interfaces" msgstr "Kable nie mogą być zakończone {type_display} interfejsy" -#: netbox/dcim/models/cables.py:350 +#: dcim/models/cables.py:350 msgid "Circuit terminations attached to a provider network may not be cabled." msgstr "" "Zakończenia obwodów podłączone do sieci dostawcy nie mogą być okablowane." -#: netbox/dcim/models/cables.py:448 netbox/extras/models/configs.py:50 +#: dcim/models/cables.py:448 extras/models/configs.py:50 msgid "is active" msgstr "jest aktywny" -#: netbox/dcim/models/cables.py:452 +#: dcim/models/cables.py:452 msgid "is complete" msgstr "jest kompletny" -#: netbox/dcim/models/cables.py:456 +#: dcim/models/cables.py:456 msgid "is split" msgstr "jest podzielony" -#: netbox/dcim/models/cables.py:464 +#: dcim/models/cables.py:464 msgid "cable path" msgstr "ścieżka kabla" -#: netbox/dcim/models/cables.py:465 +#: dcim/models/cables.py:465 msgid "cable paths" msgstr "ścieżki kablowe" -#: netbox/dcim/models/device_component_templates.py:46 +#: dcim/models/device_component_templates.py:46 #, python-brace-format msgid "" "{module} is accepted as a substitution for the module bay position when " @@ -5204,17 +4765,17 @@ msgstr "" "{module} jest akceptowany jako substytucja położenia wnęki modułu po " "dołączeniu do typu modułu." -#: netbox/dcim/models/device_component_templates.py:58 -#: netbox/dcim/models/device_components.py:65 +#: dcim/models/device_component_templates.py:58 +#: dcim/models/device_components.py:65 msgid "Physical label" msgstr "Etykieta fizyczna" -#: netbox/dcim/models/device_component_templates.py:103 +#: dcim/models/device_component_templates.py:103 msgid "Component templates cannot be moved to a different device type." msgstr "" "Szablony komponentów nie mogą być przenoszone do innego typu urządzenia." -#: netbox/dcim/models/device_component_templates.py:154 +#: dcim/models/device_component_templates.py:154 msgid "" "A component template cannot be associated with both a device type and a " "module type." @@ -5222,146 +4783,146 @@ msgstr "" "Szablonu komponentu nie można skojarzyć zarówno z typem urządzenia, jak i " "typem modułu." -#: netbox/dcim/models/device_component_templates.py:158 +#: dcim/models/device_component_templates.py:158 msgid "" "A component template must be associated with either a device type or a " "module type." msgstr "" "Szablon komponentu musi być skojarzony z typem urządzenia lub typem modułu." -#: netbox/dcim/models/device_component_templates.py:212 +#: dcim/models/device_component_templates.py:212 msgid "console port template" msgstr "szablon portu konsoli" -#: netbox/dcim/models/device_component_templates.py:213 +#: dcim/models/device_component_templates.py:213 msgid "console port templates" msgstr "szablony portów konsoli" -#: netbox/dcim/models/device_component_templates.py:246 +#: dcim/models/device_component_templates.py:246 msgid "console server port template" msgstr "szablon portu serwera konsoli" -#: netbox/dcim/models/device_component_templates.py:247 +#: dcim/models/device_component_templates.py:247 msgid "console server port templates" msgstr "szablony portów serwera konsoli" -#: netbox/dcim/models/device_component_templates.py:278 -#: netbox/dcim/models/device_components.py:352 +#: dcim/models/device_component_templates.py:278 +#: dcim/models/device_components.py:352 msgid "maximum draw" msgstr "maksymalne losowanie" -#: netbox/dcim/models/device_component_templates.py:285 -#: netbox/dcim/models/device_components.py:359 +#: dcim/models/device_component_templates.py:285 +#: dcim/models/device_components.py:359 msgid "allocated draw" msgstr "przydzielone losowanie" -#: netbox/dcim/models/device_component_templates.py:295 +#: dcim/models/device_component_templates.py:295 msgid "power port template" msgstr "szablon portu zasilania" -#: netbox/dcim/models/device_component_templates.py:296 +#: dcim/models/device_component_templates.py:296 msgid "power port templates" msgstr "szablony portów zasilania" -#: netbox/dcim/models/device_component_templates.py:315 -#: netbox/dcim/models/device_components.py:382 +#: dcim/models/device_component_templates.py:315 +#: dcim/models/device_components.py:382 #, python-brace-format msgid "Allocated draw cannot exceed the maximum draw ({maximum_draw}W)." msgstr "" "Przydzielone losowanie nie może przekroczyć maksymalnego losowania " "({maximum_draw}W)." -#: netbox/dcim/models/device_component_templates.py:347 -#: netbox/dcim/models/device_components.py:477 +#: dcim/models/device_component_templates.py:347 +#: dcim/models/device_components.py:477 msgid "feed leg" msgstr "noga karmiąca" -#: netbox/dcim/models/device_component_templates.py:351 -#: netbox/dcim/models/device_components.py:481 +#: dcim/models/device_component_templates.py:351 +#: dcim/models/device_components.py:481 msgid "Phase (for three-phase feeds)" msgstr "Faza (dla zasilania trójfazowego)" -#: netbox/dcim/models/device_component_templates.py:357 +#: dcim/models/device_component_templates.py:357 msgid "power outlet template" msgstr "szablon gniazdka elektrycznego" -#: netbox/dcim/models/device_component_templates.py:358 +#: dcim/models/device_component_templates.py:358 msgid "power outlet templates" msgstr "szablony gniazdek elektrycznych" -#: netbox/dcim/models/device_component_templates.py:367 +#: dcim/models/device_component_templates.py:367 #, python-brace-format msgid "Parent power port ({power_port}) must belong to the same device type" msgstr "" "Nadrzędny port zasilania ({power_port}) musi należeć do tego samego typu " "urządzenia" -#: netbox/dcim/models/device_component_templates.py:371 +#: dcim/models/device_component_templates.py:371 #, python-brace-format msgid "Parent power port ({power_port}) must belong to the same module type" msgstr "" "Nadrzędny port zasilania ({power_port}) musi należeć do tego samego typu " "modułu" -#: netbox/dcim/models/device_component_templates.py:423 -#: netbox/dcim/models/device_components.py:611 +#: dcim/models/device_component_templates.py:423 +#: dcim/models/device_components.py:611 msgid "management only" msgstr "Tylko zarządzanie" -#: netbox/dcim/models/device_component_templates.py:431 -#: netbox/dcim/models/device_components.py:550 +#: dcim/models/device_component_templates.py:431 +#: dcim/models/device_components.py:550 msgid "bridge interface" msgstr "interfejs mostka" -#: netbox/dcim/models/device_component_templates.py:449 -#: netbox/dcim/models/device_components.py:636 +#: dcim/models/device_component_templates.py:449 +#: dcim/models/device_components.py:636 msgid "wireless role" msgstr "rola bezprzewodowa" -#: netbox/dcim/models/device_component_templates.py:455 +#: dcim/models/device_component_templates.py:455 msgid "interface template" msgstr "szablon interfejsu" -#: netbox/dcim/models/device_component_templates.py:456 +#: dcim/models/device_component_templates.py:456 msgid "interface templates" msgstr "szablony interfejsu" -#: netbox/dcim/models/device_component_templates.py:463 -#: netbox/dcim/models/device_components.py:804 -#: netbox/virtualization/models/virtualmachines.py:405 +#: dcim/models/device_component_templates.py:463 +#: dcim/models/device_components.py:804 +#: virtualization/models/virtualmachines.py:405 msgid "An interface cannot be bridged to itself." msgstr "Interfejs nie może być połączony z samym sobą." -#: netbox/dcim/models/device_component_templates.py:466 +#: dcim/models/device_component_templates.py:466 #, python-brace-format msgid "Bridge interface ({bridge}) must belong to the same device type" msgstr "" "Interfejs mostka ({bridge}) musi należeć do tego samego typu urządzenia" -#: netbox/dcim/models/device_component_templates.py:470 +#: dcim/models/device_component_templates.py:470 #, python-brace-format msgid "Bridge interface ({bridge}) must belong to the same module type" msgstr "Interfejs mostka ({bridge}) musi należeć do tego samego typu modułu" -#: netbox/dcim/models/device_component_templates.py:526 -#: netbox/dcim/models/device_components.py:984 +#: dcim/models/device_component_templates.py:526 +#: dcim/models/device_components.py:984 msgid "rear port position" msgstr "pozycja tylnego portu" -#: netbox/dcim/models/device_component_templates.py:551 +#: dcim/models/device_component_templates.py:551 msgid "front port template" msgstr "szablon portu przedniego" -#: netbox/dcim/models/device_component_templates.py:552 +#: dcim/models/device_component_templates.py:552 msgid "front port templates" msgstr "szablony portów przednich" -#: netbox/dcim/models/device_component_templates.py:562 +#: dcim/models/device_component_templates.py:562 #, python-brace-format msgid "Rear port ({name}) must belong to the same device type" msgstr "Tylny port ({name}) musi należeć do tego samego typu urządzenia" -#: netbox/dcim/models/device_component_templates.py:568 +#: dcim/models/device_component_templates.py:568 #, python-brace-format msgid "" "Invalid rear port position ({position}); rear port {name} has only {count} " @@ -5370,48 +4931,48 @@ msgstr "" "Nieprawidłowa pozycja tylnego portu ({position}); tylny port {name} ma tylko" " {count} położenia" -#: netbox/dcim/models/device_component_templates.py:621 -#: netbox/dcim/models/device_components.py:1053 +#: dcim/models/device_component_templates.py:621 +#: dcim/models/device_components.py:1053 msgid "positions" msgstr "położenia" -#: netbox/dcim/models/device_component_templates.py:632 +#: dcim/models/device_component_templates.py:632 msgid "rear port template" msgstr "szablon tylnego portu" -#: netbox/dcim/models/device_component_templates.py:633 +#: dcim/models/device_component_templates.py:633 msgid "rear port templates" msgstr "szablony tylnych portów" -#: netbox/dcim/models/device_component_templates.py:662 -#: netbox/dcim/models/device_components.py:1103 +#: dcim/models/device_component_templates.py:662 +#: dcim/models/device_components.py:1103 msgid "position" msgstr "położenie" -#: netbox/dcim/models/device_component_templates.py:665 -#: netbox/dcim/models/device_components.py:1106 +#: dcim/models/device_component_templates.py:665 +#: dcim/models/device_components.py:1106 msgid "Identifier to reference when renaming installed components" msgstr "" "Identyfikator, do którego należy odwołać się podczas zmiany nazwy " "zainstalowanych komponentów" -#: netbox/dcim/models/device_component_templates.py:671 +#: dcim/models/device_component_templates.py:671 msgid "module bay template" msgstr "szablon modułu wnęki" -#: netbox/dcim/models/device_component_templates.py:672 +#: dcim/models/device_component_templates.py:672 msgid "module bay templates" msgstr "szablony modułów" -#: netbox/dcim/models/device_component_templates.py:699 +#: dcim/models/device_component_templates.py:699 msgid "device bay template" msgstr "szablon kieszeni urządzenia" -#: netbox/dcim/models/device_component_templates.py:700 +#: dcim/models/device_component_templates.py:700 msgid "device bay templates" msgstr "szablony kieszeni urządzeń" -#: netbox/dcim/models/device_component_templates.py:713 +#: dcim/models/device_component_templates.py:713 #, python-brace-format msgid "" "Subdevice role of device type ({device_type}) must be set to \"parent\" to " @@ -5420,207 +4981,202 @@ msgstr "" "Rola podurządzenia typu urządzenia ({device_type}) musi być ustawiony na " "„rodzic”, aby zezwolić na gniazda urządzeń." -#: netbox/dcim/models/device_component_templates.py:768 -#: netbox/dcim/models/device_components.py:1262 +#: dcim/models/device_component_templates.py:768 +#: dcim/models/device_components.py:1262 msgid "part ID" msgstr "ID części" -#: netbox/dcim/models/device_component_templates.py:770 -#: netbox/dcim/models/device_components.py:1264 +#: dcim/models/device_component_templates.py:770 +#: dcim/models/device_components.py:1264 msgid "Manufacturer-assigned part identifier" msgstr "Identyfikator części przypisany przez producenta" -#: netbox/dcim/models/device_component_templates.py:787 +#: dcim/models/device_component_templates.py:787 msgid "inventory item template" msgstr "szablon pozycji inwentaryzacji" -#: netbox/dcim/models/device_component_templates.py:788 +#: dcim/models/device_component_templates.py:788 msgid "inventory item templates" msgstr "szablony pozycji inwentaryzacji" -#: netbox/dcim/models/device_components.py:105 +#: dcim/models/device_components.py:105 msgid "Components cannot be moved to a different device." msgstr "Komponentów nie można przenieść na inne urządzenie." -#: netbox/dcim/models/device_components.py:144 +#: dcim/models/device_components.py:144 msgid "cable end" msgstr "koniec kabla" -#: netbox/dcim/models/device_components.py:150 +#: dcim/models/device_components.py:150 msgid "mark connected" msgstr "znak połączony" -#: netbox/dcim/models/device_components.py:152 +#: dcim/models/device_components.py:152 msgid "Treat as if a cable is connected" msgstr "Traktuj tak, jakby kabel był podłączony" -#: netbox/dcim/models/device_components.py:170 +#: dcim/models/device_components.py:170 msgid "Must specify cable end (A or B) when attaching a cable." msgstr "Należy określić koniec kabla (A lub B) podczas mocowania kabla." -#: netbox/dcim/models/device_components.py:174 +#: dcim/models/device_components.py:174 msgid "Cable end must not be set without a cable." msgstr "Końcówka kabla nie może być ustawiona bez kabla." -#: netbox/dcim/models/device_components.py:178 +#: dcim/models/device_components.py:178 msgid "Cannot mark as connected with a cable attached." msgstr "Nie można oznaczyć jako podłączonego za pomocą podłączonego kabla." -#: netbox/dcim/models/device_components.py:202 +#: dcim/models/device_components.py:202 #, python-brace-format msgid "{class_name} models must declare a parent_object property" msgstr "{class_name} modele muszą zadeklarować właściwość parent_object" -#: netbox/dcim/models/device_components.py:287 -#: netbox/dcim/models/device_components.py:316 -#: netbox/dcim/models/device_components.py:349 -#: netbox/dcim/models/device_components.py:467 +#: dcim/models/device_components.py:287 dcim/models/device_components.py:316 +#: dcim/models/device_components.py:349 dcim/models/device_components.py:467 msgid "Physical port type" msgstr "Typ portu fizycznego" -#: netbox/dcim/models/device_components.py:290 -#: netbox/dcim/models/device_components.py:319 +#: dcim/models/device_components.py:290 dcim/models/device_components.py:319 msgid "speed" msgstr "prędkość" -#: netbox/dcim/models/device_components.py:294 -#: netbox/dcim/models/device_components.py:323 +#: dcim/models/device_components.py:294 dcim/models/device_components.py:323 msgid "Port speed in bits per second" msgstr "Prędkość portu w bitach na sekundę" -#: netbox/dcim/models/device_components.py:300 +#: dcim/models/device_components.py:300 msgid "console port" msgstr "port konsoli" -#: netbox/dcim/models/device_components.py:301 +#: dcim/models/device_components.py:301 msgid "console ports" msgstr "porty konsoli" -#: netbox/dcim/models/device_components.py:329 +#: dcim/models/device_components.py:329 msgid "console server port" msgstr "port serwera konsoli" -#: netbox/dcim/models/device_components.py:330 +#: dcim/models/device_components.py:330 msgid "console server ports" msgstr "porty serwera konsoli" -#: netbox/dcim/models/device_components.py:369 +#: dcim/models/device_components.py:369 msgid "power port" msgstr "port zasilania" -#: netbox/dcim/models/device_components.py:370 +#: dcim/models/device_components.py:370 msgid "power ports" msgstr "porty zasilania" -#: netbox/dcim/models/device_components.py:487 +#: dcim/models/device_components.py:487 msgid "power outlet" msgstr "gniazdo zasilania" -#: netbox/dcim/models/device_components.py:488 +#: dcim/models/device_components.py:488 msgid "power outlets" msgstr "gniazdka elektryczne" -#: netbox/dcim/models/device_components.py:499 +#: dcim/models/device_components.py:499 #, python-brace-format msgid "Parent power port ({power_port}) must belong to the same device" msgstr "" "Nadrzędny port zasilania ({power_port}) musi należeć do tego samego " "urządzenia" -#: netbox/dcim/models/device_components.py:530 netbox/vpn/models/crypto.py:81 -#: netbox/vpn/models/crypto.py:226 +#: dcim/models/device_components.py:530 vpn/models/crypto.py:81 +#: vpn/models/crypto.py:226 msgid "mode" msgstr "tryb" -#: netbox/dcim/models/device_components.py:534 +#: dcim/models/device_components.py:534 msgid "IEEE 802.1Q tagging strategy" msgstr "Strategia tagowania IEEE 802.1Q" -#: netbox/dcim/models/device_components.py:542 +#: dcim/models/device_components.py:542 msgid "parent interface" msgstr "interfejs macierzysty" -#: netbox/dcim/models/device_components.py:602 +#: dcim/models/device_components.py:602 msgid "parent LAG" msgstr "macierzysta LGD" -#: netbox/dcim/models/device_components.py:612 +#: dcim/models/device_components.py:612 msgid "This interface is used only for out-of-band management" msgstr "Ten interfejs jest używany tylko do zarządzania poza pasmem" -#: netbox/dcim/models/device_components.py:617 +#: dcim/models/device_components.py:617 msgid "speed (Kbps)" msgstr "Prędkość (Kbps)" -#: netbox/dcim/models/device_components.py:620 +#: dcim/models/device_components.py:620 msgid "duplex" msgstr "dupleks" -#: netbox/dcim/models/device_components.py:630 +#: dcim/models/device_components.py:630 msgid "64-bit World Wide Name" msgstr "64-bitowa nazwa światowa" -#: netbox/dcim/models/device_components.py:642 +#: dcim/models/device_components.py:642 msgid "wireless channel" msgstr "kanał bezprzewodowy" -#: netbox/dcim/models/device_components.py:649 +#: dcim/models/device_components.py:649 msgid "channel frequency (MHz)" msgstr "częstotliwość kanału (MHz)" -#: netbox/dcim/models/device_components.py:650 -#: netbox/dcim/models/device_components.py:658 +#: dcim/models/device_components.py:650 dcim/models/device_components.py:658 msgid "Populated by selected channel (if set)" msgstr "Wypełnione przez wybrany kanał (jeśli ustawiony)" -#: netbox/dcim/models/device_components.py:664 +#: dcim/models/device_components.py:664 msgid "transmit power (dBm)" msgstr "moc nadawania (dBm)" -#: netbox/dcim/models/device_components.py:689 netbox/wireless/models.py:117 +#: dcim/models/device_components.py:689 wireless/models.py:117 msgid "wireless LANs" msgstr "bezprzewodowe sieci LAN" -#: netbox/dcim/models/device_components.py:697 -#: netbox/virtualization/models/virtualmachines.py:335 +#: dcim/models/device_components.py:697 +#: virtualization/models/virtualmachines.py:335 msgid "untagged VLAN" msgstr "nieoznaczone sieci VLAN" -#: netbox/dcim/models/device_components.py:703 -#: netbox/virtualization/models/virtualmachines.py:341 +#: dcim/models/device_components.py:703 +#: virtualization/models/virtualmachines.py:341 msgid "tagged VLANs" msgstr "oznaczone sieci VLAN" -#: netbox/dcim/models/device_components.py:745 -#: netbox/virtualization/models/virtualmachines.py:377 +#: dcim/models/device_components.py:745 +#: virtualization/models/virtualmachines.py:377 msgid "interface" msgstr "interfejs" -#: netbox/dcim/models/device_components.py:746 -#: netbox/virtualization/models/virtualmachines.py:378 +#: dcim/models/device_components.py:746 +#: virtualization/models/virtualmachines.py:378 msgid "interfaces" msgstr "interfejsy" -#: netbox/dcim/models/device_components.py:757 +#: dcim/models/device_components.py:757 #, python-brace-format msgid "{display_type} interfaces cannot have a cable attached." msgstr "{display_type} Interfejsy nie mogą mieć podłączonego kabla." -#: netbox/dcim/models/device_components.py:765 +#: dcim/models/device_components.py:765 #, python-brace-format msgid "{display_type} interfaces cannot be marked as connected." msgstr "{display_type} interfejsów nie można oznaczyć jako połączonych." -#: netbox/dcim/models/device_components.py:774 -#: netbox/virtualization/models/virtualmachines.py:390 +#: dcim/models/device_components.py:774 +#: virtualization/models/virtualmachines.py:390 msgid "An interface cannot be its own parent." msgstr "Interfejs nie może być własnym rodzicem." -#: netbox/dcim/models/device_components.py:778 +#: dcim/models/device_components.py:778 msgid "Only virtual interfaces may be assigned to a parent interface." msgstr "Do interfejsu nadrzędnego można przypisać tylko interfejsy wirtualne." -#: netbox/dcim/models/device_components.py:785 +#: dcim/models/device_components.py:785 #, python-brace-format msgid "" "The selected parent interface ({interface}) belongs to a different device " @@ -5629,7 +5185,7 @@ msgstr "" "Wybrany interfejs nadrzędny ({interface}) należy do innego urządzenia " "({device})" -#: netbox/dcim/models/device_components.py:791 +#: dcim/models/device_components.py:791 #, python-brace-format msgid "" "The selected parent interface ({interface}) belongs to {device}, which is " @@ -5638,7 +5194,7 @@ msgstr "" "Wybrany interfejs nadrzędny ({interface}) należy do {device}, która nie jest" " częścią wirtualnej obudowy {virtual_chassis}." -#: netbox/dcim/models/device_components.py:811 +#: dcim/models/device_components.py:811 #, python-brace-format msgid "" "The selected bridge interface ({bridge}) belongs to a different device " @@ -5646,7 +5202,7 @@ msgid "" msgstr "" "Wybrany interfejs mostu ({bridge}) należy do innego urządzenia ({device})." -#: netbox/dcim/models/device_components.py:817 +#: dcim/models/device_components.py:817 #, python-brace-format msgid "" "The selected bridge interface ({interface}) belongs to {device}, which is " @@ -5655,21 +5211,21 @@ msgstr "" "Wybrany interfejs mostu ({interface}) należy do {device}, która nie jest " "częścią wirtualnej obudowy {virtual_chassis}." -#: netbox/dcim/models/device_components.py:828 +#: dcim/models/device_components.py:828 msgid "Virtual interfaces cannot have a parent LAG interface." msgstr "Interfejsy wirtualne nie mogą mieć nadrzędnego interfejsu LAG." -#: netbox/dcim/models/device_components.py:832 +#: dcim/models/device_components.py:832 msgid "A LAG interface cannot be its own parent." msgstr "Interfejs LAG nie może być własnym rodzicem." -#: netbox/dcim/models/device_components.py:839 +#: dcim/models/device_components.py:839 #, python-brace-format msgid "" "The selected LAG interface ({lag}) belongs to a different device ({device})." msgstr "Wybrany interfejs LAG ({lag}) należy do innego urządzenia ({device})." -#: netbox/dcim/models/device_components.py:845 +#: dcim/models/device_components.py:845 #, python-brace-format msgid "" "The selected LAG interface ({lag}) belongs to {device}, which is not part of" @@ -5678,49 +5234,49 @@ msgstr "" "Wybrany interfejs LAG ({lag}) należy do {device}, która nie jest częścią " "wirtualnej obudowy {virtual_chassis}." -#: netbox/dcim/models/device_components.py:856 +#: dcim/models/device_components.py:856 msgid "Virtual interfaces cannot have a PoE mode." msgstr "Interfejsy wirtualne nie mogą mieć trybu PoE." -#: netbox/dcim/models/device_components.py:860 +#: dcim/models/device_components.py:860 msgid "Virtual interfaces cannot have a PoE type." msgstr "Interfejsy wirtualne nie mogą mieć typu PoE." -#: netbox/dcim/models/device_components.py:866 +#: dcim/models/device_components.py:866 msgid "Must specify PoE mode when designating a PoE type." msgstr "Musi określić tryb PoE podczas wyznaczania typu PoE." -#: netbox/dcim/models/device_components.py:873 +#: dcim/models/device_components.py:873 msgid "Wireless role may be set only on wireless interfaces." msgstr "" "Rola sieci bezprzewodowej może być ustawiona tylko na interfejsach " "bezprzewodowych." -#: netbox/dcim/models/device_components.py:875 +#: dcim/models/device_components.py:875 msgid "Channel may be set only on wireless interfaces." msgstr "Kanał można ustawić tylko na interfejsach bezprzewodowych." -#: netbox/dcim/models/device_components.py:881 +#: dcim/models/device_components.py:881 msgid "Channel frequency may be set only on wireless interfaces." msgstr "" "Częstotliwość kanału może być ustawiona tylko na interfejsach " "bezprzewodowych." -#: netbox/dcim/models/device_components.py:885 +#: dcim/models/device_components.py:885 msgid "Cannot specify custom frequency with channel selected." msgstr "Nie można określić niestandardowej częstotliwości z wybranym kanałem." -#: netbox/dcim/models/device_components.py:891 +#: dcim/models/device_components.py:891 msgid "Channel width may be set only on wireless interfaces." msgstr "" "Szerokość kanału może być ustawiona tylko na interfejsach bezprzewodowych." -#: netbox/dcim/models/device_components.py:893 +#: dcim/models/device_components.py:893 msgid "Cannot specify custom width with channel selected." msgstr "" "Nie można określić niestandardowej szerokości przy zaznaczonym kanale." -#: netbox/dcim/models/device_components.py:901 +#: dcim/models/device_components.py:901 #, python-brace-format msgid "" "The untagged VLAN ({untagged_vlan}) must belong to the same site as the " @@ -5729,24 +5285,24 @@ msgstr "" "Nieoznaczona sieć VLAN ({untagged_vlan}) musi należeć do tej samej witryny " "co urządzenie nadrzędne interfejsu lub musi być globalne." -#: netbox/dcim/models/device_components.py:990 +#: dcim/models/device_components.py:990 msgid "Mapped position on corresponding rear port" msgstr "Zmapowana pozycja na odpowiednim tylnym porcie" -#: netbox/dcim/models/device_components.py:1006 +#: dcim/models/device_components.py:1006 msgid "front port" msgstr "port przedni" -#: netbox/dcim/models/device_components.py:1007 +#: dcim/models/device_components.py:1007 msgid "front ports" msgstr "porty przednie" -#: netbox/dcim/models/device_components.py:1021 +#: dcim/models/device_components.py:1021 #, python-brace-format msgid "Rear port ({rear_port}) must belong to the same device" msgstr "Tylny port ({rear_port}) musi należeć do tego samego urządzenia" -#: netbox/dcim/models/device_components.py:1029 +#: dcim/models/device_components.py:1029 #, python-brace-format msgid "" "Invalid rear port position ({rear_port_position}): Rear port {name} has only" @@ -5755,19 +5311,19 @@ msgstr "" "Nieprawidłowa pozycja tylnego portu ({rear_port_position}): Tylny port " "{name} ma tylko {positions} pozycje." -#: netbox/dcim/models/device_components.py:1059 +#: dcim/models/device_components.py:1059 msgid "Number of front ports which may be mapped" msgstr "Liczba portów przednich, które mogą być mapowane" -#: netbox/dcim/models/device_components.py:1064 +#: dcim/models/device_components.py:1064 msgid "rear port" msgstr "tylny port" -#: netbox/dcim/models/device_components.py:1065 +#: dcim/models/device_components.py:1065 msgid "rear ports" msgstr "tylne porty" -#: netbox/dcim/models/device_components.py:1079 +#: dcim/models/device_components.py:1079 #, python-brace-format msgid "" "The number of positions cannot be less than the number of mapped front ports" @@ -5776,37 +5332,36 @@ msgstr "" "Liczba pozycji nie może być mniejsza niż liczba zmapowanych portów przednich" " ({frontport_count})" -#: netbox/dcim/models/device_components.py:1120 +#: dcim/models/device_components.py:1120 msgid "module bay" msgstr "wnęka modułu" -#: netbox/dcim/models/device_components.py:1121 +#: dcim/models/device_components.py:1121 msgid "module bays" msgstr "kieszenie modułowe" -#: netbox/dcim/models/device_components.py:1138 -#: netbox/dcim/models/devices.py:1224 +#: dcim/models/device_components.py:1138 dcim/models/devices.py:1224 msgid "A module bay cannot belong to a module installed within it." msgstr "Wnęka modułu nie może należeć do zainstalowanego w nim modułu." -#: netbox/dcim/models/device_components.py:1164 +#: dcim/models/device_components.py:1164 msgid "device bay" msgstr "wnęka urządzenia" -#: netbox/dcim/models/device_components.py:1165 +#: dcim/models/device_components.py:1165 msgid "device bays" msgstr "kieszenie na urządzenia" -#: netbox/dcim/models/device_components.py:1175 +#: dcim/models/device_components.py:1175 #, python-brace-format msgid "This type of device ({device_type}) does not support device bays." msgstr "Ten typ urządzenia ({device_type}) nie obsługuje wnęk na urządzenia." -#: netbox/dcim/models/device_components.py:1181 +#: dcim/models/device_components.py:1181 msgid "Cannot install a device into itself." msgstr "Nie można zainstalować urządzenia w sobie." -#: netbox/dcim/models/device_components.py:1189 +#: dcim/models/device_components.py:1189 #, python-brace-format msgid "" "Cannot install the specified device; device is already installed in {bay}." @@ -5814,116 +5369,114 @@ msgstr "" "Nie można zainstalować określonego urządzenia; urządzenie jest już " "zainstalowane w {bay}." -#: netbox/dcim/models/device_components.py:1210 +#: dcim/models/device_components.py:1210 msgid "inventory item role" msgstr "rola pozycji zapasów" -#: netbox/dcim/models/device_components.py:1211 +#: dcim/models/device_components.py:1211 msgid "inventory item roles" msgstr "role pozycji zapasów" -#: netbox/dcim/models/device_components.py:1268 -#: netbox/dcim/models/devices.py:607 netbox/dcim/models/devices.py:1181 -#: netbox/dcim/models/racks.py:313 -#: netbox/virtualization/models/virtualmachines.py:131 +#: dcim/models/device_components.py:1268 dcim/models/devices.py:607 +#: dcim/models/devices.py:1181 dcim/models/racks.py:313 +#: virtualization/models/virtualmachines.py:131 msgid "serial number" msgstr "numer seryjny" -#: netbox/dcim/models/device_components.py:1276 -#: netbox/dcim/models/devices.py:615 netbox/dcim/models/devices.py:1188 -#: netbox/dcim/models/racks.py:320 +#: dcim/models/device_components.py:1276 dcim/models/devices.py:615 +#: dcim/models/devices.py:1188 dcim/models/racks.py:320 msgid "asset tag" msgstr "znacznik zasobu" -#: netbox/dcim/models/device_components.py:1277 +#: dcim/models/device_components.py:1277 msgid "A unique tag used to identify this item" msgstr "Unikalny znacznik używany do identyfikacji tego elementu" -#: netbox/dcim/models/device_components.py:1280 +#: dcim/models/device_components.py:1280 msgid "discovered" msgstr "odkryty" -#: netbox/dcim/models/device_components.py:1282 +#: dcim/models/device_components.py:1282 msgid "This item was automatically discovered" msgstr "Ten przedmiot został automatycznie wykryty" -#: netbox/dcim/models/device_components.py:1300 +#: dcim/models/device_components.py:1300 msgid "inventory item" msgstr "pozycja inwentaryzacyjna" -#: netbox/dcim/models/device_components.py:1301 +#: dcim/models/device_components.py:1301 msgid "inventory items" msgstr "pozycje inwentaryzacyjne" -#: netbox/dcim/models/device_components.py:1312 +#: dcim/models/device_components.py:1312 msgid "Cannot assign self as parent." msgstr "Nie można przypisać siebie jako rodzica." -#: netbox/dcim/models/device_components.py:1320 +#: dcim/models/device_components.py:1320 msgid "Parent inventory item does not belong to the same device." msgstr "Nadrzędny element ekwipunku nie należy do tego samego urządzenia." -#: netbox/dcim/models/device_components.py:1326 +#: dcim/models/device_components.py:1326 msgid "Cannot move an inventory item with dependent children" msgstr "" "Nie można przenieść pozycji inwentarza z pozostałymi dziećmi na utrzymaniu" -#: netbox/dcim/models/device_components.py:1334 +#: dcim/models/device_components.py:1334 msgid "Cannot assign inventory item to component on another device" msgstr "" "Nie można przypisać elementu zapasów do komponentu na innym urządzeniu" -#: netbox/dcim/models/devices.py:54 +#: dcim/models/devices.py:54 msgid "manufacturer" msgstr "producenta" -#: netbox/dcim/models/devices.py:55 +#: dcim/models/devices.py:55 msgid "manufacturers" msgstr "producentów" -#: netbox/dcim/models/devices.py:82 netbox/dcim/models/devices.py:382 -#: netbox/dcim/models/racks.py:133 +#: dcim/models/devices.py:82 dcim/models/devices.py:382 +#: dcim/models/racks.py:133 msgid "model" msgstr "model" -#: netbox/dcim/models/devices.py:95 +#: dcim/models/devices.py:95 msgid "default platform" msgstr "domyślna platforma" -#: netbox/dcim/models/devices.py:98 netbox/dcim/models/devices.py:386 +#: dcim/models/devices.py:98 dcim/models/devices.py:386 msgid "part number" msgstr "numer części" -#: netbox/dcim/models/devices.py:101 netbox/dcim/models/devices.py:389 +#: dcim/models/devices.py:101 dcim/models/devices.py:389 msgid "Discrete part number (optional)" msgstr "Dyskretny numer części (opcjonalnie)" -#: netbox/dcim/models/devices.py:107 netbox/dcim/models/racks.py:54 +#: dcim/models/devices.py:107 dcim/models/racks.py:54 msgid "height (U)" msgstr "wysokość (U)" -#: netbox/dcim/models/devices.py:111 +#: dcim/models/devices.py:111 msgid "exclude from utilization" msgstr "wykluczyć z wykorzystania" -#: netbox/dcim/models/devices.py:112 +#: dcim/models/devices.py:112 msgid "Devices of this type are excluded when calculating rack utilization." msgstr "" "Urządzenia tego typu są wykluczone przy obliczaniu wykorzystania szafy." -#: netbox/dcim/models/devices.py:116 +#: dcim/models/devices.py:116 msgid "is full depth" msgstr "jest pełna głębokość" -#: netbox/dcim/models/devices.py:117 +#: dcim/models/devices.py:117 msgid "Device consumes both front and rear rack faces." msgstr "Urządzenie zajmuje zarówno przednią, jak i tylną powierzchnię szafy." -#: netbox/dcim/models/devices.py:123 +#: dcim/models/devices.py:123 msgid "parent/child status" msgstr "status rodzica/dziecka" -#: netbox/dcim/models/devices.py:124 +#: dcim/models/devices.py:124 msgid "" "Parent devices house child devices in device bays. Leave blank if this " "device type is neither a parent nor a child." @@ -5932,24 +5485,24 @@ msgstr "" " Pozostaw puste, jeśli ten typ urządzenia nie jest ani rodzicem, ani " "dzieckiem." -#: netbox/dcim/models/devices.py:128 netbox/dcim/models/devices.py:392 -#: netbox/dcim/models/devices.py:659 netbox/dcim/models/racks.py:324 +#: dcim/models/devices.py:128 dcim/models/devices.py:392 +#: dcim/models/devices.py:659 dcim/models/racks.py:324 msgid "airflow" msgstr "przepływ powietrza" -#: netbox/dcim/models/devices.py:204 +#: dcim/models/devices.py:204 msgid "device type" msgstr "typ urządzenia" -#: netbox/dcim/models/devices.py:205 +#: dcim/models/devices.py:205 msgid "device types" msgstr "typy urządzeń" -#: netbox/dcim/models/devices.py:290 +#: dcim/models/devices.py:290 msgid "U height must be in increments of 0.5 rack units." msgstr "Wysokość U musi być w odstępach co 0,5 jednostki szafy." -#: netbox/dcim/models/devices.py:307 +#: dcim/models/devices.py:307 #, python-brace-format msgid "" "Device {device} in rack {rack} does not have sufficient space to accommodate" @@ -5958,7 +5511,7 @@ msgstr "" "Urządzenie {device} w szafie {rack} nie ma wystarczającej ilości miejsca, " "aby pomieścić wysokość {height}U" -#: netbox/dcim/models/devices.py:322 +#: dcim/models/devices.py:322 #, python-brace-format msgid "" "Unable to set 0U height: Found {racked_instance_count} " @@ -5968,7 +5521,7 @@ msgstr "" "href=\"{url}\">{racked_instance_count} instancji już zamontowanych " "w szafach." -#: netbox/dcim/models/devices.py:331 +#: dcim/models/devices.py:331 msgid "" "Must delete all device bay templates associated with this device before " "declassifying it as a parent device." @@ -5976,157 +5529,157 @@ msgstr "" "Przed odtajnieniem go jako urządzenia nadrzędnego należy usunąć wszystkie " "szablony kieszeni urządzeń powiązane z tym urządzeniem." -#: netbox/dcim/models/devices.py:337 +#: dcim/models/devices.py:337 msgid "Child device types must be 0U." msgstr "Typy urządzeń podrzędnych muszą mieć wartość 0U." -#: netbox/dcim/models/devices.py:411 +#: dcim/models/devices.py:411 msgid "module type" msgstr "typ modułu" -#: netbox/dcim/models/devices.py:412 +#: dcim/models/devices.py:412 msgid "module types" msgstr "typy modułów" -#: netbox/dcim/models/devices.py:485 +#: dcim/models/devices.py:485 msgid "Virtual machines may be assigned to this role" msgstr "Maszyny wirtualne mogą być przypisane do tej roli" -#: netbox/dcim/models/devices.py:497 +#: dcim/models/devices.py:497 msgid "device role" msgstr "rola urządzenia" -#: netbox/dcim/models/devices.py:498 +#: dcim/models/devices.py:498 msgid "device roles" msgstr "role urządzenia" -#: netbox/dcim/models/devices.py:515 +#: dcim/models/devices.py:515 msgid "Optionally limit this platform to devices of a certain manufacturer" msgstr "Opcjonalnie ogranicz tę platformę do urządzeń określonego producenta" -#: netbox/dcim/models/devices.py:527 +#: dcim/models/devices.py:527 msgid "platform" msgstr "platforma" -#: netbox/dcim/models/devices.py:528 +#: dcim/models/devices.py:528 msgid "platforms" msgstr "platformy" -#: netbox/dcim/models/devices.py:576 +#: dcim/models/devices.py:576 msgid "The function this device serves" msgstr "Funkcja, jaką spełnia to urządzenie" -#: netbox/dcim/models/devices.py:608 +#: dcim/models/devices.py:608 msgid "Chassis serial number, assigned by the manufacturer" msgstr "Numer seryjny podwozia, przypisany przez producenta" -#: netbox/dcim/models/devices.py:616 netbox/dcim/models/devices.py:1189 +#: dcim/models/devices.py:616 dcim/models/devices.py:1189 msgid "A unique tag used to identify this device" msgstr "Unikalny znacznik używany do identyfikacji tego urządzenia" -#: netbox/dcim/models/devices.py:643 +#: dcim/models/devices.py:643 msgid "position (U)" msgstr "pozycja (U)" -#: netbox/dcim/models/devices.py:650 +#: dcim/models/devices.py:650 msgid "rack face" msgstr "powierzchnia szafy" -#: netbox/dcim/models/devices.py:670 netbox/dcim/models/devices.py:1415 -#: netbox/virtualization/models/virtualmachines.py:100 +#: dcim/models/devices.py:670 dcim/models/devices.py:1415 +#: virtualization/models/virtualmachines.py:100 msgid "primary IPv4" msgstr "podstawowy IPv4" -#: netbox/dcim/models/devices.py:678 netbox/dcim/models/devices.py:1423 -#: netbox/virtualization/models/virtualmachines.py:108 +#: dcim/models/devices.py:678 dcim/models/devices.py:1423 +#: virtualization/models/virtualmachines.py:108 msgid "primary IPv6" msgstr "podstawowy IPv6" -#: netbox/dcim/models/devices.py:686 +#: dcim/models/devices.py:686 msgid "out-of-band IP" msgstr "Poza pasmem IP" -#: netbox/dcim/models/devices.py:703 +#: dcim/models/devices.py:703 msgid "VC position" msgstr "Pozycja VC" -#: netbox/dcim/models/devices.py:706 +#: dcim/models/devices.py:706 msgid "Virtual chassis position" msgstr "Wirtualna pozycja podwozia" -#: netbox/dcim/models/devices.py:709 +#: dcim/models/devices.py:709 msgid "VC priority" msgstr "Priorytet VC" -#: netbox/dcim/models/devices.py:713 +#: dcim/models/devices.py:713 msgid "Virtual chassis master election priority" msgstr "Priorytet wyboru głównego wirtualnego podwozia" -#: netbox/dcim/models/devices.py:716 netbox/dcim/models/sites.py:207 +#: dcim/models/devices.py:716 dcim/models/sites.py:207 msgid "latitude" msgstr "swoboda" -#: netbox/dcim/models/devices.py:721 netbox/dcim/models/devices.py:729 -#: netbox/dcim/models/sites.py:212 netbox/dcim/models/sites.py:220 +#: dcim/models/devices.py:721 dcim/models/devices.py:729 +#: dcim/models/sites.py:212 dcim/models/sites.py:220 msgid "GPS coordinate in decimal format (xx.yyyyyy)" msgstr "Współrzędne GPS w formacie dziesiętnym (xx.rrrr)" -#: netbox/dcim/models/devices.py:724 netbox/dcim/models/sites.py:215 +#: dcim/models/devices.py:724 dcim/models/sites.py:215 msgid "longitude" msgstr "długość geograficzna" -#: netbox/dcim/models/devices.py:797 +#: dcim/models/devices.py:797 msgid "Device name must be unique per site." msgstr "Nazwa urządzenia musi być niepowtarzalna dla każdej witryny." -#: netbox/dcim/models/devices.py:808 netbox/ipam/models/services.py:75 +#: dcim/models/devices.py:808 ipam/models/services.py:75 msgid "device" msgstr "urządzenie" -#: netbox/dcim/models/devices.py:809 +#: dcim/models/devices.py:809 msgid "devices" msgstr "urządzenia" -#: netbox/dcim/models/devices.py:835 +#: dcim/models/devices.py:835 #, python-brace-format msgid "Rack {rack} does not belong to site {site}." msgstr "Szafa {rack} nie należy do terenu {site}." -#: netbox/dcim/models/devices.py:840 +#: dcim/models/devices.py:840 #, python-brace-format msgid "Location {location} does not belong to site {site}." msgstr "Lokalizacja {location} nie należy do strony {site}." -#: netbox/dcim/models/devices.py:846 +#: dcim/models/devices.py:846 #, python-brace-format msgid "Rack {rack} does not belong to location {location}." msgstr "Szafa {rack} nie należy do lokalizacji {location}." -#: netbox/dcim/models/devices.py:853 +#: dcim/models/devices.py:853 msgid "Cannot select a rack face without assigning a rack." msgstr "Nie można wybrać powierzchni szafy bez przypisania szafy." -#: netbox/dcim/models/devices.py:857 +#: dcim/models/devices.py:857 msgid "Cannot select a rack position without assigning a rack." msgstr "Nie można wybrać pozycji w szafie bez przypisania szafy." -#: netbox/dcim/models/devices.py:863 +#: dcim/models/devices.py:863 msgid "Position must be in increments of 0.5 rack units." msgstr "Pozycja musi być w odstępach co 0,5 jednostek regałowych." -#: netbox/dcim/models/devices.py:867 +#: dcim/models/devices.py:867 msgid "Must specify rack face when defining rack position." msgstr "" "Należy określić powierzchnię szafy podczas definiowania pozycji w szafie." -#: netbox/dcim/models/devices.py:875 +#: dcim/models/devices.py:875 #, python-brace-format msgid "" "A 0U device type ({device_type}) cannot be assigned to a rack position." msgstr "" "Typ urządzenia 0U ({device_type}) nie może być przypisany do pozycji szafy." -#: netbox/dcim/models/devices.py:886 +#: dcim/models/devices.py:886 msgid "" "Child device types cannot be assigned to a rack face. This is an attribute " "of the parent device." @@ -6134,7 +5687,7 @@ msgstr "" "Typy urządzeń podrzędnych nie mogą być przypisane do powierzchni szafy. Jest" " to atrybut urządzenia nadrzędnego." -#: netbox/dcim/models/devices.py:893 +#: dcim/models/devices.py:893 msgid "" "Child device types cannot be assigned to a rack position. This is an " "attribute of the parent device." @@ -6142,7 +5695,7 @@ msgstr "" "Typy urządzeń podrzędnych nie mogą być przypisane do pozycji szafy. Jest to " "atrybut urządzenia nadrzędnego." -#: netbox/dcim/models/devices.py:907 +#: dcim/models/devices.py:907 #, python-brace-format msgid "" "U{position} is already occupied or does not have sufficient space to " @@ -6151,22 +5704,22 @@ msgstr "" "U{position} jest już zajęty lub nie ma wystarczającej ilości miejsca, aby " "pomieścić ten typ urządzenia: {device_type} ({u_height}U)" -#: netbox/dcim/models/devices.py:922 +#: dcim/models/devices.py:922 #, python-brace-format msgid "{ip} is not an IPv4 address." msgstr "{ip} nie jest adresem IPv4." -#: netbox/dcim/models/devices.py:931 netbox/dcim/models/devices.py:946 +#: dcim/models/devices.py:931 dcim/models/devices.py:946 #, python-brace-format msgid "The specified IP address ({ip}) is not assigned to this device." msgstr "Podany adres IP ({ip}) nie jest przypisany do tego urządzenia." -#: netbox/dcim/models/devices.py:937 +#: dcim/models/devices.py:937 #, python-brace-format msgid "{ip} is not an IPv6 address." msgstr "{ip} nie jest adresem IPv6." -#: netbox/dcim/models/devices.py:964 +#: dcim/models/devices.py:964 #, python-brace-format msgid "" "The assigned platform is limited to {platform_manufacturer} device types, " @@ -6175,18 +5728,18 @@ msgstr "" "Przydzielona platforma jest ograniczona do {platform_manufacturer} typy " "urządzeń, ale typ tego urządzenia należy do {devicetype_manufacturer}." -#: netbox/dcim/models/devices.py:975 +#: dcim/models/devices.py:975 #, python-brace-format msgid "The assigned cluster belongs to a different site ({site})" msgstr "Przypisany klaster należy do innej lokalizacji ({site})" -#: netbox/dcim/models/devices.py:983 +#: dcim/models/devices.py:983 msgid "A device assigned to a virtual chassis must have its position defined." msgstr "" "Urządzenie przypisane do wirtualnej obudowy musi mieć zdefiniowane " "położenie." -#: netbox/dcim/models/devices.py:988 +#: dcim/models/devices.py:988 #, python-brace-format msgid "" "Device cannot be removed from virtual chassis {virtual_chassis} because it " @@ -6195,15 +5748,15 @@ msgstr "" "Nie można usunąć urządzenia z wirtualnej obudowy {virtual_chassis} ponieważ " "jest obecnie wyznaczony jako jego mistrz." -#: netbox/dcim/models/devices.py:1196 +#: dcim/models/devices.py:1196 msgid "module" msgstr "moduł" -#: netbox/dcim/models/devices.py:1197 +#: dcim/models/devices.py:1197 msgid "modules" msgstr "modułów" -#: netbox/dcim/models/devices.py:1213 +#: dcim/models/devices.py:1213 #, python-brace-format msgid "" "Module must be installed within a module bay belonging to the assigned " @@ -6212,22 +5765,22 @@ msgstr "" "Moduł musi być zainstalowany w wnęce modułowej należącej do przypisanego " "urządzenia ({device})." -#: netbox/dcim/models/devices.py:1334 +#: dcim/models/devices.py:1334 msgid "domain" msgstr "domena" -#: netbox/dcim/models/devices.py:1347 netbox/dcim/models/devices.py:1348 +#: dcim/models/devices.py:1347 dcim/models/devices.py:1348 msgid "virtual chassis" msgstr "wirtualne podwozie" -#: netbox/dcim/models/devices.py:1363 +#: dcim/models/devices.py:1363 #, python-brace-format msgid "" "The selected master ({master}) is not assigned to this virtual chassis." msgstr "" "Wybrany mistrz ({master}) nie jest przypisany do tej wirtualnej obudowy." -#: netbox/dcim/models/devices.py:1379 +#: dcim/models/devices.py:1379 #, python-brace-format msgid "" "Unable to delete virtual chassis {self}. There are member interfaces which " @@ -6236,61 +5789,61 @@ msgstr "" "Nie można usunąć wirtualnej obudowy {self}. Istnieją interfejsy członów, " "które tworzą interfejsy LAG między podwoziami." -#: netbox/dcim/models/devices.py:1404 netbox/vpn/models/l2vpn.py:37 +#: dcim/models/devices.py:1404 vpn/models/l2vpn.py:37 msgid "identifier" msgstr "identyfikator" -#: netbox/dcim/models/devices.py:1405 +#: dcim/models/devices.py:1405 msgid "Numeric identifier unique to the parent device" msgstr "Identyfikator numeryczny unikalny dla urządzenia nadrzędnego" -#: netbox/dcim/models/devices.py:1433 netbox/extras/models/customfields.py:225 -#: netbox/extras/models/models.py:107 netbox/extras/models/models.py:694 -#: netbox/netbox/models/__init__.py:115 +#: dcim/models/devices.py:1433 extras/models/customfields.py:225 +#: extras/models/models.py:107 extras/models/models.py:694 +#: netbox/models/__init__.py:115 msgid "comments" msgstr "komentarzy" -#: netbox/dcim/models/devices.py:1449 +#: dcim/models/devices.py:1449 msgid "virtual device context" msgstr "kontekst urządzenia wirtualnego" -#: netbox/dcim/models/devices.py:1450 +#: dcim/models/devices.py:1450 msgid "virtual device contexts" msgstr "konteksty urządzeń wirtualnych" -#: netbox/dcim/models/devices.py:1482 +#: dcim/models/devices.py:1482 #, python-brace-format msgid "{ip} is not an IPv{family} address." msgstr "{ip} nie jest IPV{family} adres." -#: netbox/dcim/models/devices.py:1488 +#: dcim/models/devices.py:1488 msgid "Primary IP address must belong to an interface on the assigned device." msgstr "" "Podstawowy adres IP musi należeć do interfejsu na przypisanym urządzeniu." -#: netbox/dcim/models/mixins.py:15 netbox/extras/models/configs.py:41 -#: netbox/extras/models/models.py:313 netbox/extras/models/models.py:522 -#: netbox/extras/models/search.py:48 netbox/ipam/models/ip.py:194 +#: dcim/models/mixins.py:15 extras/models/configs.py:41 +#: extras/models/models.py:313 extras/models/models.py:522 +#: extras/models/search.py:48 ipam/models/ip.py:194 msgid "weight" msgstr "waga" -#: netbox/dcim/models/mixins.py:22 +#: dcim/models/mixins.py:22 msgid "weight unit" msgstr "jednostka wagowa" -#: netbox/dcim/models/mixins.py:51 +#: dcim/models/mixins.py:51 msgid "Must specify a unit when setting a weight" msgstr "Należy określić jednostkę podczas ustawiania wagi" -#: netbox/dcim/models/power.py:55 +#: dcim/models/power.py:55 msgid "power panel" msgstr "panel zasilania" -#: netbox/dcim/models/power.py:56 +#: dcim/models/power.py:56 msgid "power panels" msgstr "panele zasilające" -#: netbox/dcim/models/power.py:70 +#: dcim/models/power.py:70 #, python-brace-format msgid "" "Location {location} ({location_site}) is in a different site than {site}" @@ -6298,43 +5851,43 @@ msgstr "" "Lokalizacja {location} ({location_site}) znajduje się w innej witrynie niż " "{site}" -#: netbox/dcim/models/power.py:108 +#: dcim/models/power.py:108 msgid "supply" msgstr "zapas" -#: netbox/dcim/models/power.py:114 +#: dcim/models/power.py:114 msgid "phase" msgstr "etap" -#: netbox/dcim/models/power.py:120 +#: dcim/models/power.py:120 msgid "voltage" msgstr "napięcie" -#: netbox/dcim/models/power.py:125 +#: dcim/models/power.py:125 msgid "amperage" msgstr "natężenie prądu" -#: netbox/dcim/models/power.py:130 +#: dcim/models/power.py:130 msgid "max utilization" msgstr "maksymalne wykorzystanie" -#: netbox/dcim/models/power.py:133 +#: dcim/models/power.py:133 msgid "Maximum permissible draw (percentage)" msgstr "Maksymalne dopuszczalne losowanie (procent)" -#: netbox/dcim/models/power.py:136 +#: dcim/models/power.py:136 msgid "available power" msgstr "dostępna moc" -#: netbox/dcim/models/power.py:164 +#: dcim/models/power.py:164 msgid "power feed" msgstr "zasilanie" -#: netbox/dcim/models/power.py:165 +#: dcim/models/power.py:165 msgid "power feeds" msgstr "zasilanie" -#: netbox/dcim/models/power.py:179 +#: dcim/models/power.py:179 #, python-brace-format msgid "" "Rack {rack} ({rack_site}) and power panel {powerpanel} ({powerpanel_site}) " @@ -6343,63 +5896,63 @@ msgstr "" "Szafa {rack} ({rack_site}) i panel zasilania {powerpanel} " "({powerpanel_site}) znajdują się na różnych terenach." -#: netbox/dcim/models/power.py:190 +#: dcim/models/power.py:190 msgid "Voltage cannot be negative for AC supply" msgstr "Napięcie nie może być ujemne dla zasilania prądem przemiennym" -#: netbox/dcim/models/racks.py:47 +#: dcim/models/racks.py:47 msgid "width" msgstr "szerokość" -#: netbox/dcim/models/racks.py:48 +#: dcim/models/racks.py:48 msgid "Rail-to-rail width" msgstr "Szerokość szyny do szyny" -#: netbox/dcim/models/racks.py:56 +#: dcim/models/racks.py:56 msgid "Height in rack units" msgstr "Wysokość w jednostkach szafy" -#: netbox/dcim/models/racks.py:60 +#: dcim/models/racks.py:60 msgid "starting unit" msgstr "jednostka startowa" -#: netbox/dcim/models/racks.py:62 +#: dcim/models/racks.py:62 msgid "Starting unit for rack" msgstr "Jednostka początkowa szafy" -#: netbox/dcim/models/racks.py:66 +#: dcim/models/racks.py:66 msgid "descending units" msgstr "jednostki malejące" -#: netbox/dcim/models/racks.py:67 +#: dcim/models/racks.py:67 msgid "Units are numbered top-to-bottom" msgstr "Jednostki są ponumerowane od góry do dołu" -#: netbox/dcim/models/racks.py:72 +#: dcim/models/racks.py:72 msgid "outer width" msgstr "szerokość zewnętrzna" -#: netbox/dcim/models/racks.py:75 +#: dcim/models/racks.py:75 msgid "Outer dimension of rack (width)" msgstr "Wymiar zewnętrzny szafy (szerokość)" -#: netbox/dcim/models/racks.py:78 +#: dcim/models/racks.py:78 msgid "outer depth" msgstr "głębokość zewnętrzna" -#: netbox/dcim/models/racks.py:81 +#: dcim/models/racks.py:81 msgid "Outer dimension of rack (depth)" msgstr "Wymiar zewnętrzny szafy (głębokość)" -#: netbox/dcim/models/racks.py:84 +#: dcim/models/racks.py:84 msgid "outer unit" msgstr "jednostka zewnętrzna" -#: netbox/dcim/models/racks.py:90 +#: dcim/models/racks.py:90 msgid "mounting depth" msgstr "głębokość montażu" -#: netbox/dcim/models/racks.py:94 +#: dcim/models/racks.py:94 msgid "" "Maximum depth of a mounted device, in millimeters. For four-post racks, this" " is the distance between the front and rear rails." @@ -6407,77 +5960,76 @@ msgstr "" "Maksymalna głębokość zamontowanego urządzenia w milimetrach. W przypadku " "stojaków czterosłupkowych jest to odległość między przednią i tylną szyną." -#: netbox/dcim/models/racks.py:102 +#: dcim/models/racks.py:102 msgid "max weight" msgstr "maksymalna waga" -#: netbox/dcim/models/racks.py:105 +#: dcim/models/racks.py:105 msgid "Maximum load capacity for the rack" msgstr "Maksymalna nośność regału" -#: netbox/dcim/models/racks.py:125 netbox/dcim/models/racks.py:252 +#: dcim/models/racks.py:125 dcim/models/racks.py:252 msgid "form factor" msgstr "współczynnik kształtu" -#: netbox/dcim/models/racks.py:162 +#: dcim/models/racks.py:162 msgid "rack type" msgstr "typ szafy" -#: netbox/dcim/models/racks.py:163 +#: dcim/models/racks.py:163 msgid "rack types" msgstr "typy szaf" -#: netbox/dcim/models/racks.py:180 netbox/dcim/models/racks.py:379 +#: dcim/models/racks.py:180 dcim/models/racks.py:379 msgid "Must specify a unit when setting an outer width/depth" msgstr "" "Należy określić jednostkę podczas ustawiania szerokości/głębokości " "zewnętrznej" -#: netbox/dcim/models/racks.py:184 netbox/dcim/models/racks.py:383 +#: dcim/models/racks.py:184 dcim/models/racks.py:383 msgid "Must specify a unit when setting a maximum weight" msgstr "Należy określić jednostkę podczas ustawiania maksymalnej wagi" -#: netbox/dcim/models/racks.py:230 +#: dcim/models/racks.py:230 msgid "rack role" msgstr "rola szafy" -#: netbox/dcim/models/racks.py:231 +#: dcim/models/racks.py:231 msgid "rack roles" msgstr "role szafy" -#: netbox/dcim/models/racks.py:274 +#: dcim/models/racks.py:274 msgid "facility ID" msgstr "Identyfikator obiektu" -#: netbox/dcim/models/racks.py:275 +#: dcim/models/racks.py:275 msgid "Locally-assigned identifier" msgstr "Lokalnie przypisany identyfikator" -#: netbox/dcim/models/racks.py:308 netbox/ipam/forms/bulk_import.py:201 -#: netbox/ipam/forms/bulk_import.py:266 netbox/ipam/forms/bulk_import.py:301 -#: netbox/ipam/forms/bulk_import.py:459 -#: netbox/virtualization/forms/bulk_import.py:112 +#: dcim/models/racks.py:308 ipam/forms/bulk_import.py:201 +#: ipam/forms/bulk_import.py:266 ipam/forms/bulk_import.py:301 +#: ipam/forms/bulk_import.py:459 virtualization/forms/bulk_import.py:112 msgid "Functional role" msgstr "Funkcjonalna rola" -#: netbox/dcim/models/racks.py:321 +#: dcim/models/racks.py:321 msgid "A unique tag used to identify this rack" msgstr "Unikalny tag używany do identyfikacji tej szafy" -#: netbox/dcim/models/racks.py:359 +#: dcim/models/racks.py:359 msgid "rack" msgstr "szafa" -#: netbox/dcim/models/racks.py:360 +#: dcim/models/racks.py:360 msgid "racks" msgstr "szafy" -#: netbox/dcim/models/racks.py:375 +#: dcim/models/racks.py:375 #, python-brace-format msgid "Assigned location must belong to parent site ({site})." msgstr "Przypisana lokalizacja musi należeć do witryny nadrzędnej ({site})." -#: netbox/dcim/models/racks.py:393 +#: dcim/models/racks.py:393 #, python-brace-format msgid "" "Rack must be at least {min_height}U tall to house currently installed " @@ -6486,7 +6038,7 @@ msgstr "" "Szafa musi być mieć najmniej {min_height}U wysokości aby pomieścić aktualnie" " zainstalowane urządzeń." -#: netbox/dcim/models/racks.py:400 +#: dcim/models/racks.py:400 #, python-brace-format msgid "" "Rack unit numbering must begin at {position} or less to house currently " @@ -6495,954 +6047,891 @@ msgstr "" "Numeracja jednostek szafy musi rozpoczynać się od {position} lub mniej, aby " "pomieścić aktualnie zainstalowane urządzenia." -#: netbox/dcim/models/racks.py:408 +#: dcim/models/racks.py:408 #, python-brace-format msgid "Location must be from the same site, {site}." msgstr "Lokalizacja musi pochodzić z tego samego miejsca, {site}." -#: netbox/dcim/models/racks.py:670 +#: dcim/models/racks.py:670 msgid "units" msgstr "jednostki" -#: netbox/dcim/models/racks.py:696 +#: dcim/models/racks.py:696 msgid "rack reservation" msgstr "rezerwacja szafy" -#: netbox/dcim/models/racks.py:697 +#: dcim/models/racks.py:697 msgid "rack reservations" msgstr "rezerwacje szafy" -#: netbox/dcim/models/racks.py:714 +#: dcim/models/racks.py:714 #, python-brace-format msgid "Invalid unit(s) for {height}U rack: {unit_list}" msgstr "Nieprawidłowa jednostka (jednostki) dla szafy {height}U: {unit_list}" -#: netbox/dcim/models/racks.py:727 +#: dcim/models/racks.py:727 #, python-brace-format msgid "The following units have already been reserved: {unit_list}" msgstr "Następujące jednostki zostały już zarezerwowane: {unit_list}" -#: netbox/dcim/models/sites.py:49 +#: dcim/models/sites.py:49 msgid "A top-level region with this name already exists." msgstr "Region najwyższego poziomu o tej nazwie już istnieje." -#: netbox/dcim/models/sites.py:59 +#: dcim/models/sites.py:59 msgid "A top-level region with this slug already exists." msgstr "Region najwyższego poziomu z tym identyfikatorem już istnieje." -#: netbox/dcim/models/sites.py:62 +#: dcim/models/sites.py:62 msgid "region" msgstr "regionu" -#: netbox/dcim/models/sites.py:63 +#: dcim/models/sites.py:63 msgid "regions" msgstr "regionów" -#: netbox/dcim/models/sites.py:102 +#: dcim/models/sites.py:102 msgid "A top-level site group with this name already exists." msgstr "Grupa witryn najwyższego poziomu o tej nazwie już istnieje." -#: netbox/dcim/models/sites.py:112 +#: dcim/models/sites.py:112 msgid "A top-level site group with this slug already exists." msgstr "Grupa terenów najwyższego poziomu z tym identyfikatorem już istnieje." -#: netbox/dcim/models/sites.py:115 +#: dcim/models/sites.py:115 msgid "site group" msgstr "grupa witryn" -#: netbox/dcim/models/sites.py:116 +#: dcim/models/sites.py:116 msgid "site groups" msgstr "grupy witryn" -#: netbox/dcim/models/sites.py:141 +#: dcim/models/sites.py:141 msgid "Full name of the site" msgstr "Pełna nazwa strony" -#: netbox/dcim/models/sites.py:181 netbox/dcim/models/sites.py:279 +#: dcim/models/sites.py:181 dcim/models/sites.py:279 msgid "facility" msgstr "obiekt" -#: netbox/dcim/models/sites.py:184 netbox/dcim/models/sites.py:282 +#: dcim/models/sites.py:184 dcim/models/sites.py:282 msgid "Local facility ID or description" msgstr "Identyfikator lub opis lokalnego obiektu" -#: netbox/dcim/models/sites.py:195 +#: dcim/models/sites.py:195 msgid "physical address" msgstr "adres fizyczny" -#: netbox/dcim/models/sites.py:198 +#: dcim/models/sites.py:198 msgid "Physical location of the building" msgstr "Fizyczne położenie budynku" -#: netbox/dcim/models/sites.py:201 +#: dcim/models/sites.py:201 msgid "shipping address" msgstr "adres wysyłki" -#: netbox/dcim/models/sites.py:204 +#: dcim/models/sites.py:204 msgid "If different from the physical address" msgstr "Jeśli różni się od adresu fizycznego" -#: netbox/dcim/models/sites.py:238 +#: dcim/models/sites.py:238 msgid "site" msgstr "miejsce" -#: netbox/dcim/models/sites.py:239 +#: dcim/models/sites.py:239 msgid "sites" msgstr "witryny" -#: netbox/dcim/models/sites.py:309 +#: dcim/models/sites.py:309 msgid "A location with this name already exists within the specified site." msgstr "Lokalizacja o tej nazwie istnieje już w określonej witrynie." -#: netbox/dcim/models/sites.py:319 +#: dcim/models/sites.py:319 msgid "A location with this slug already exists within the specified site." msgstr "Lokalizacja z tym identyfikatorem już istnieje na określonym terenie." -#: netbox/dcim/models/sites.py:322 +#: dcim/models/sites.py:322 msgid "location" msgstr "lokalizacja" -#: netbox/dcim/models/sites.py:323 +#: dcim/models/sites.py:323 msgid "locations" msgstr "lokalizacje" -#: netbox/dcim/models/sites.py:337 +#: dcim/models/sites.py:337 #, python-brace-format msgid "Parent location ({parent}) must belong to the same site ({site})." msgstr "" "Lokalizacja macierzysta ({parent}) musi należeć do tej samej witryny " "({site})." -#: netbox/dcim/tables/cables.py:55 +#: dcim/tables/cables.py:55 msgid "Termination A" msgstr "Wypowiedzenie A" -#: netbox/dcim/tables/cables.py:60 +#: dcim/tables/cables.py:60 msgid "Termination B" msgstr "Wypowiedzenie B" -#: netbox/dcim/tables/cables.py:66 netbox/wireless/tables/wirelesslink.py:23 +#: dcim/tables/cables.py:66 wireless/tables/wirelesslink.py:23 msgid "Device A" msgstr "Urządzenie A" -#: netbox/dcim/tables/cables.py:72 netbox/wireless/tables/wirelesslink.py:32 +#: dcim/tables/cables.py:72 wireless/tables/wirelesslink.py:32 msgid "Device B" msgstr "Urządzenie B" -#: netbox/dcim/tables/cables.py:78 +#: dcim/tables/cables.py:78 msgid "Location A" msgstr "Lokalizacja A" -#: netbox/dcim/tables/cables.py:84 +#: dcim/tables/cables.py:84 msgid "Location B" msgstr "Lokalizacja B" -#: netbox/dcim/tables/cables.py:90 +#: dcim/tables/cables.py:90 msgid "Rack A" msgstr "Szafa A" -#: netbox/dcim/tables/cables.py:96 +#: dcim/tables/cables.py:96 msgid "Rack B" msgstr "Szafa B" -#: netbox/dcim/tables/cables.py:102 +#: dcim/tables/cables.py:102 msgid "Site A" msgstr "Strona A" -#: netbox/dcim/tables/cables.py:108 +#: dcim/tables/cables.py:108 msgid "Site B" msgstr "Strona B" -#: netbox/dcim/tables/connections.py:31 netbox/dcim/tables/connections.py:50 -#: netbox/dcim/tables/connections.py:71 -#: netbox/templates/dcim/inc/connection_endpoints.html:16 +#: dcim/tables/connections.py:31 dcim/tables/connections.py:50 +#: dcim/tables/connections.py:71 +#: templates/dcim/inc/connection_endpoints.html:16 msgid "Reachable" msgstr "Osiągnięty" -#: netbox/dcim/tables/devices.py:58 netbox/dcim/tables/devices.py:106 -#: netbox/dcim/tables/racks.py:150 netbox/dcim/tables/sites.py:105 -#: netbox/dcim/tables/sites.py:148 netbox/extras/tables/tables.py:545 -#: netbox/netbox/navigation/menu.py:69 netbox/netbox/navigation/menu.py:73 -#: netbox/netbox/navigation/menu.py:75 -#: netbox/virtualization/forms/model_forms.py:122 -#: netbox/virtualization/tables/clusters.py:83 -#: netbox/virtualization/views.py:206 +#: dcim/tables/devices.py:58 dcim/tables/devices.py:106 +#: dcim/tables/racks.py:150 dcim/tables/sites.py:105 dcim/tables/sites.py:148 +#: extras/tables/tables.py:545 netbox/navigation/menu.py:69 +#: netbox/navigation/menu.py:73 netbox/navigation/menu.py:75 +#: virtualization/forms/model_forms.py:122 +#: virtualization/tables/clusters.py:83 virtualization/views.py:206 msgid "Devices" msgstr "Urządzenia" -#: netbox/dcim/tables/devices.py:63 netbox/dcim/tables/devices.py:111 -#: netbox/virtualization/tables/clusters.py:88 +#: dcim/tables/devices.py:63 dcim/tables/devices.py:111 +#: virtualization/tables/clusters.py:88 msgid "VMs" msgstr "maszyny wirtualne" -#: netbox/dcim/tables/devices.py:100 netbox/dcim/tables/devices.py:216 -#: netbox/extras/forms/model_forms.py:630 -#: netbox/templates/dcim/device.html:112 -#: netbox/templates/dcim/device/render_config.html:11 -#: netbox/templates/dcim/device/render_config.html:14 -#: netbox/templates/dcim/devicerole.html:44 -#: netbox/templates/dcim/platform.html:41 -#: netbox/templates/extras/configtemplate.html:10 -#: netbox/templates/virtualization/virtualmachine.html:48 -#: netbox/templates/virtualization/virtualmachine/render_config.html:11 -#: netbox/templates/virtualization/virtualmachine/render_config.html:14 -#: netbox/virtualization/tables/virtualmachines.py:107 +#: dcim/tables/devices.py:100 dcim/tables/devices.py:216 +#: extras/forms/model_forms.py:630 templates/dcim/device.html:112 +#: templates/dcim/device/render_config.html:11 +#: templates/dcim/device/render_config.html:14 +#: templates/dcim/devicerole.html:44 templates/dcim/platform.html:41 +#: templates/extras/configtemplate.html:10 +#: templates/virtualization/virtualmachine.html:48 +#: templates/virtualization/virtualmachine/render_config.html:11 +#: templates/virtualization/virtualmachine/render_config.html:14 +#: virtualization/tables/virtualmachines.py:107 msgid "Config Template" msgstr "Szablon konfiguracji" -#: netbox/dcim/tables/devices.py:150 netbox/templates/dcim/sitegroup.html:26 +#: dcim/tables/devices.py:150 templates/dcim/sitegroup.html:26 msgid "Site Group" msgstr "Grupa witryn" -#: netbox/dcim/tables/devices.py:187 netbox/dcim/tables/devices.py:1068 -#: netbox/ipam/forms/bulk_import.py:503 netbox/ipam/forms/model_forms.py:306 -#: netbox/ipam/forms/model_forms.py:315 netbox/ipam/tables/ip.py:356 -#: netbox/ipam/tables/ip.py:423 netbox/ipam/tables/ip.py:446 -#: netbox/templates/ipam/ipaddress.html:11 -#: netbox/virtualization/tables/virtualmachines.py:95 +#: dcim/tables/devices.py:187 dcim/tables/devices.py:1068 +#: ipam/forms/bulk_import.py:503 ipam/forms/model_forms.py:306 +#: ipam/forms/model_forms.py:315 ipam/tables/ip.py:356 ipam/tables/ip.py:423 +#: ipam/tables/ip.py:446 templates/ipam/ipaddress.html:11 +#: virtualization/tables/virtualmachines.py:95 msgid "IP Address" msgstr "Adres IP" -#: netbox/dcim/tables/devices.py:191 netbox/dcim/tables/devices.py:1072 -#: netbox/virtualization/tables/virtualmachines.py:86 +#: dcim/tables/devices.py:191 dcim/tables/devices.py:1072 +#: virtualization/tables/virtualmachines.py:86 msgid "IPv4 Address" msgstr "Adres IPv4" -#: netbox/dcim/tables/devices.py:195 netbox/dcim/tables/devices.py:1076 -#: netbox/virtualization/tables/virtualmachines.py:90 +#: dcim/tables/devices.py:195 dcim/tables/devices.py:1076 +#: virtualization/tables/virtualmachines.py:90 msgid "IPv6 Address" msgstr "Adres IPv6" -#: netbox/dcim/tables/devices.py:210 +#: dcim/tables/devices.py:210 msgid "VC Position" msgstr "Pozycja VC" -#: netbox/dcim/tables/devices.py:213 +#: dcim/tables/devices.py:213 msgid "VC Priority" msgstr "Priorytet VC" -#: netbox/dcim/tables/devices.py:220 netbox/templates/dcim/device_edit.html:38 -#: netbox/templates/dcim/devicebay_populate.html:16 +#: dcim/tables/devices.py:220 templates/dcim/device_edit.html:38 +#: templates/dcim/devicebay_populate.html:16 msgid "Parent Device" msgstr "Urządzenie nadrzędne" -#: netbox/dcim/tables/devices.py:225 +#: dcim/tables/devices.py:225 msgid "Position (Device Bay)" msgstr "Pozycja (gniazdo urządzenia)" -#: netbox/dcim/tables/devices.py:234 +#: dcim/tables/devices.py:234 msgid "Console ports" msgstr "Porty konsoli" -#: netbox/dcim/tables/devices.py:237 +#: dcim/tables/devices.py:237 msgid "Console server ports" msgstr "Porty serwera konsoli" -#: netbox/dcim/tables/devices.py:240 +#: dcim/tables/devices.py:240 msgid "Power ports" msgstr "Porty zasilania" -#: netbox/dcim/tables/devices.py:243 +#: dcim/tables/devices.py:243 msgid "Power outlets" msgstr "Gniazdka elektryczne" -#: netbox/dcim/tables/devices.py:246 netbox/dcim/tables/devices.py:1081 -#: netbox/dcim/tables/devicetypes.py:128 netbox/dcim/views.py:1042 -#: netbox/dcim/views.py:1281 netbox/dcim/views.py:1977 -#: netbox/netbox/navigation/menu.py:94 netbox/netbox/navigation/menu.py:250 -#: netbox/templates/dcim/device/base.html:37 -#: netbox/templates/dcim/device_list.html:43 -#: netbox/templates/dcim/devicetype/base.html:34 -#: netbox/templates/dcim/module.html:34 -#: netbox/templates/dcim/moduletype/base.html:34 -#: netbox/templates/dcim/virtualdevicecontext.html:61 -#: netbox/templates/dcim/virtualdevicecontext.html:81 -#: netbox/templates/virtualization/virtualmachine/base.html:27 -#: netbox/templates/virtualization/virtualmachine_list.html:14 -#: netbox/virtualization/tables/virtualmachines.py:101 -#: netbox/virtualization/views.py:366 netbox/wireless/tables/wirelesslan.py:55 +#: dcim/tables/devices.py:246 dcim/tables/devices.py:1081 +#: dcim/tables/devicetypes.py:128 dcim/views.py:1042 dcim/views.py:1281 +#: dcim/views.py:1977 netbox/navigation/menu.py:94 +#: netbox/navigation/menu.py:250 templates/dcim/device/base.html:37 +#: templates/dcim/device_list.html:43 templates/dcim/devicetype/base.html:34 +#: templates/dcim/inc/moduletype_buttons.html:25 templates/dcim/module.html:34 +#: templates/dcim/virtualdevicecontext.html:61 +#: templates/dcim/virtualdevicecontext.html:81 +#: templates/virtualization/virtualmachine/base.html:27 +#: templates/virtualization/virtualmachine_list.html:14 +#: virtualization/tables/virtualmachines.py:101 virtualization/views.py:366 +#: wireless/tables/wirelesslan.py:55 msgid "Interfaces" msgstr "Interfejsy" -#: netbox/dcim/tables/devices.py:249 +#: dcim/tables/devices.py:249 msgid "Front ports" msgstr "Porty przednie" -#: netbox/dcim/tables/devices.py:255 +#: dcim/tables/devices.py:255 msgid "Device bays" msgstr "Wnęsy na urządzenia" -#: netbox/dcim/tables/devices.py:258 +#: dcim/tables/devices.py:258 msgid "Module bays" msgstr "Wnęsy modułowe" -#: netbox/dcim/tables/devices.py:261 +#: dcim/tables/devices.py:261 msgid "Inventory items" msgstr "Elementy inwentaryzacyjne" -#: netbox/dcim/tables/devices.py:305 netbox/dcim/tables/modules.py:56 -#: netbox/templates/dcim/modulebay.html:17 +#: dcim/tables/devices.py:305 dcim/tables/modules.py:56 +#: templates/dcim/modulebay.html:17 msgid "Module Bay" msgstr "Moduł Bay" -#: netbox/dcim/tables/devices.py:318 netbox/dcim/tables/devicetypes.py:47 -#: netbox/dcim/tables/devicetypes.py:143 netbox/dcim/views.py:1117 -#: netbox/dcim/views.py:2075 netbox/netbox/navigation/menu.py:103 -#: netbox/templates/dcim/device/base.html:52 -#: netbox/templates/dcim/device_list.html:71 -#: netbox/templates/dcim/devicetype/base.html:49 -#: netbox/templates/dcim/inc/panels/inventory_items.html:6 -#: netbox/templates/dcim/inventoryitemrole.html:32 +#: dcim/tables/devices.py:318 dcim/tables/devicetypes.py:47 +#: dcim/tables/devicetypes.py:143 dcim/views.py:1117 dcim/views.py:2075 +#: netbox/navigation/menu.py:103 templates/dcim/device/base.html:52 +#: templates/dcim/device_list.html:71 templates/dcim/devicetype/base.html:49 +#: templates/dcim/inc/panels/inventory_items.html:6 +#: templates/dcim/inventoryitemrole.html:32 msgid "Inventory Items" msgstr "Przedmioty magazynowe" -#: netbox/dcim/tables/devices.py:333 +#: dcim/tables/devices.py:333 msgid "Cable Color" msgstr "Kolor kabla" -#: netbox/dcim/tables/devices.py:339 +#: dcim/tables/devices.py:339 msgid "Link Peers" msgstr "Łącz rówieśników" -#: netbox/dcim/tables/devices.py:342 +#: dcim/tables/devices.py:342 msgid "Mark Connected" msgstr "Oznacz Połączony" -#: netbox/dcim/tables/devices.py:461 +#: dcim/tables/devices.py:461 msgid "Maximum draw (W)" msgstr "Maksymalne wyciąganie (W)" -#: netbox/dcim/tables/devices.py:464 +#: dcim/tables/devices.py:464 msgid "Allocated draw (W)" msgstr "Przydzielone losowanie (W)" -#: netbox/dcim/tables/devices.py:558 netbox/ipam/forms/model_forms.py:701 -#: netbox/ipam/tables/fhrp.py:28 netbox/ipam/views.py:596 -#: netbox/ipam/views.py:696 netbox/netbox/navigation/menu.py:158 -#: netbox/netbox/navigation/menu.py:160 -#: netbox/templates/dcim/interface.html:339 -#: netbox/templates/ipam/ipaddress_bulk_add.html:15 -#: netbox/templates/ipam/service.html:40 -#: netbox/templates/virtualization/vminterface.html:85 -#: netbox/vpn/tables/tunnels.py:98 +#: dcim/tables/devices.py:558 ipam/forms/model_forms.py:701 +#: ipam/tables/fhrp.py:28 ipam/views.py:596 ipam/views.py:696 +#: netbox/navigation/menu.py:158 netbox/navigation/menu.py:160 +#: templates/dcim/interface.html:339 templates/ipam/ipaddress_bulk_add.html:15 +#: templates/ipam/service.html:40 templates/virtualization/vminterface.html:85 +#: vpn/tables/tunnels.py:98 msgid "IP Addresses" msgstr "Adresy IP" -#: netbox/dcim/tables/devices.py:564 netbox/netbox/navigation/menu.py:202 -#: netbox/templates/ipam/inc/panels/fhrp_groups.html:6 +#: dcim/tables/devices.py:564 netbox/navigation/menu.py:202 +#: templates/ipam/inc/panels/fhrp_groups.html:6 msgid "FHRP Groups" msgstr "Grupy FHRP" -#: netbox/dcim/tables/devices.py:576 netbox/templates/dcim/interface.html:89 -#: netbox/templates/virtualization/vminterface.html:67 -#: netbox/templates/vpn/tunnel.html:18 -#: netbox/templates/vpn/tunneltermination.html:13 -#: netbox/vpn/forms/bulk_edit.py:76 netbox/vpn/forms/bulk_import.py:76 -#: netbox/vpn/forms/filtersets.py:42 netbox/vpn/forms/filtersets.py:82 -#: netbox/vpn/forms/model_forms.py:60 netbox/vpn/forms/model_forms.py:145 -#: netbox/vpn/tables/tunnels.py:78 +#: dcim/tables/devices.py:576 templates/dcim/interface.html:89 +#: templates/virtualization/vminterface.html:67 templates/vpn/tunnel.html:18 +#: templates/vpn/tunneltermination.html:13 vpn/forms/bulk_edit.py:76 +#: vpn/forms/bulk_import.py:76 vpn/forms/filtersets.py:42 +#: vpn/forms/filtersets.py:82 vpn/forms/model_forms.py:60 +#: vpn/forms/model_forms.py:145 vpn/tables/tunnels.py:78 msgid "Tunnel" msgstr "Tunel" -#: netbox/dcim/tables/devices.py:604 netbox/dcim/tables/devicetypes.py:227 -#: netbox/templates/dcim/interface.html:65 +#: dcim/tables/devices.py:604 dcim/tables/devicetypes.py:227 +#: templates/dcim/interface.html:65 msgid "Management Only" msgstr "Tylko zarządzanie" -#: netbox/dcim/tables/devices.py:623 +#: dcim/tables/devices.py:623 msgid "VDCs" msgstr "VDC" -#: netbox/dcim/tables/devices.py:873 netbox/templates/dcim/modulebay.html:53 +#: dcim/tables/devices.py:873 templates/dcim/modulebay.html:53 msgid "Installed Module" msgstr "Zainstalowany moduł" -#: netbox/dcim/tables/devices.py:876 +#: dcim/tables/devices.py:876 msgid "Module Serial" msgstr "Moduł szeregowy" -#: netbox/dcim/tables/devices.py:880 +#: dcim/tables/devices.py:880 msgid "Module Asset Tag" msgstr "Etykietka zasobów modułu" -#: netbox/dcim/tables/devices.py:889 +#: dcim/tables/devices.py:889 msgid "Module Status" msgstr "Status modułu" -#: netbox/dcim/tables/devices.py:944 netbox/dcim/tables/devicetypes.py:312 -#: netbox/templates/dcim/inventoryitem.html:40 +#: dcim/tables/devices.py:944 dcim/tables/devicetypes.py:312 +#: templates/dcim/inventoryitem.html:40 msgid "Component" msgstr "Komponent" -#: netbox/dcim/tables/devices.py:1000 +#: dcim/tables/devices.py:1000 msgid "Items" msgstr "Przedmioty" -#: netbox/dcim/tables/devicetypes.py:37 netbox/netbox/navigation/menu.py:84 -#: netbox/netbox/navigation/menu.py:86 +#: dcim/tables/devicetypes.py:37 netbox/navigation/menu.py:84 +#: netbox/navigation/menu.py:86 msgid "Device Types" msgstr "Rodzaje urządzeń" -#: netbox/dcim/tables/devicetypes.py:42 netbox/netbox/navigation/menu.py:87 +#: dcim/tables/devicetypes.py:42 netbox/navigation/menu.py:87 msgid "Module Types" msgstr "Rodzaje modułów" -#: netbox/dcim/tables/devicetypes.py:52 netbox/extras/forms/filtersets.py:371 -#: netbox/extras/forms/model_forms.py:537 netbox/extras/tables/tables.py:540 -#: netbox/netbox/navigation/menu.py:78 +#: dcim/tables/devicetypes.py:52 extras/forms/filtersets.py:371 +#: extras/forms/model_forms.py:537 extras/tables/tables.py:540 +#: netbox/navigation/menu.py:78 msgid "Platforms" msgstr "Platformy" -#: netbox/dcim/tables/devicetypes.py:84 -#: netbox/templates/dcim/devicetype.html:29 +#: dcim/tables/devicetypes.py:84 templates/dcim/devicetype.html:29 msgid "Default Platform" msgstr "Domyślna platforma" -#: netbox/dcim/tables/devicetypes.py:88 -#: netbox/templates/dcim/devicetype.html:45 +#: dcim/tables/devicetypes.py:88 templates/dcim/devicetype.html:45 msgid "Full Depth" msgstr "Pełna głębokość" -#: netbox/dcim/tables/devicetypes.py:98 +#: dcim/tables/devicetypes.py:98 msgid "U Height" msgstr "Wysokość U" -#: netbox/dcim/tables/devicetypes.py:113 netbox/dcim/tables/modules.py:26 -#: netbox/dcim/tables/racks.py:89 +#: dcim/tables/devicetypes.py:113 dcim/tables/modules.py:26 +#: dcim/tables/racks.py:89 msgid "Instances" msgstr "Instancje" -#: netbox/dcim/tables/devicetypes.py:116 netbox/dcim/views.py:982 -#: netbox/dcim/views.py:1221 netbox/dcim/views.py:1913 -#: netbox/netbox/navigation/menu.py:97 -#: netbox/templates/dcim/device/base.html:25 -#: netbox/templates/dcim/device_list.html:15 -#: netbox/templates/dcim/devicetype/base.html:22 -#: netbox/templates/dcim/module.html:22 -#: netbox/templates/dcim/moduletype/base.html:22 +#: dcim/tables/devicetypes.py:116 dcim/views.py:982 dcim/views.py:1221 +#: dcim/views.py:1913 netbox/navigation/menu.py:97 +#: templates/dcim/device/base.html:25 templates/dcim/device_list.html:15 +#: templates/dcim/devicetype/base.html:22 +#: templates/dcim/inc/moduletype_buttons.html:13 templates/dcim/module.html:22 msgid "Console Ports" msgstr "Porty konsoli" -#: netbox/dcim/tables/devicetypes.py:119 netbox/dcim/views.py:997 -#: netbox/dcim/views.py:1236 netbox/dcim/views.py:1929 -#: netbox/netbox/navigation/menu.py:98 -#: netbox/templates/dcim/device/base.html:28 -#: netbox/templates/dcim/device_list.html:22 -#: netbox/templates/dcim/devicetype/base.html:25 -#: netbox/templates/dcim/module.html:25 -#: netbox/templates/dcim/moduletype/base.html:25 +#: dcim/tables/devicetypes.py:119 dcim/views.py:997 dcim/views.py:1236 +#: dcim/views.py:1929 netbox/navigation/menu.py:98 +#: templates/dcim/device/base.html:28 templates/dcim/device_list.html:22 +#: templates/dcim/devicetype/base.html:25 +#: templates/dcim/inc/moduletype_buttons.html:16 templates/dcim/module.html:25 msgid "Console Server Ports" msgstr "Porty serwera konsoli" -#: netbox/dcim/tables/devicetypes.py:122 netbox/dcim/views.py:1012 -#: netbox/dcim/views.py:1251 netbox/dcim/views.py:1945 -#: netbox/netbox/navigation/menu.py:99 -#: netbox/templates/dcim/device/base.html:31 -#: netbox/templates/dcim/device_list.html:29 -#: netbox/templates/dcim/devicetype/base.html:28 -#: netbox/templates/dcim/module.html:28 -#: netbox/templates/dcim/moduletype/base.html:28 +#: dcim/tables/devicetypes.py:122 dcim/views.py:1012 dcim/views.py:1251 +#: dcim/views.py:1945 netbox/navigation/menu.py:99 +#: templates/dcim/device/base.html:31 templates/dcim/device_list.html:29 +#: templates/dcim/devicetype/base.html:28 +#: templates/dcim/inc/moduletype_buttons.html:19 templates/dcim/module.html:28 msgid "Power Ports" msgstr "Porty zasilania" -#: netbox/dcim/tables/devicetypes.py:125 netbox/dcim/views.py:1027 -#: netbox/dcim/views.py:1266 netbox/dcim/views.py:1961 -#: netbox/netbox/navigation/menu.py:100 -#: netbox/templates/dcim/device/base.html:34 -#: netbox/templates/dcim/device_list.html:36 -#: netbox/templates/dcim/devicetype/base.html:31 -#: netbox/templates/dcim/module.html:31 -#: netbox/templates/dcim/moduletype/base.html:31 +#: dcim/tables/devicetypes.py:125 dcim/views.py:1027 dcim/views.py:1266 +#: dcim/views.py:1961 netbox/navigation/menu.py:100 +#: templates/dcim/device/base.html:34 templates/dcim/device_list.html:36 +#: templates/dcim/devicetype/base.html:31 +#: templates/dcim/inc/moduletype_buttons.html:22 templates/dcim/module.html:31 msgid "Power Outlets" msgstr "Gniazdka elektryczne" -#: netbox/dcim/tables/devicetypes.py:131 netbox/dcim/views.py:1057 -#: netbox/dcim/views.py:1296 netbox/dcim/views.py:1999 -#: netbox/netbox/navigation/menu.py:95 -#: netbox/templates/dcim/device/base.html:40 -#: netbox/templates/dcim/devicetype/base.html:37 -#: netbox/templates/dcim/module.html:37 -#: netbox/templates/dcim/moduletype/base.html:37 +#: dcim/tables/devicetypes.py:131 dcim/views.py:1057 dcim/views.py:1296 +#: dcim/views.py:1999 netbox/navigation/menu.py:95 +#: templates/dcim/device/base.html:40 templates/dcim/devicetype/base.html:37 +#: templates/dcim/inc/moduletype_buttons.html:28 templates/dcim/module.html:37 msgid "Front Ports" msgstr "Porty przednie" -#: netbox/dcim/tables/devicetypes.py:134 netbox/dcim/views.py:1072 -#: netbox/dcim/views.py:1311 netbox/dcim/views.py:2015 -#: netbox/netbox/navigation/menu.py:96 -#: netbox/templates/dcim/device/base.html:43 -#: netbox/templates/dcim/device_list.html:50 -#: netbox/templates/dcim/devicetype/base.html:40 -#: netbox/templates/dcim/module.html:40 -#: netbox/templates/dcim/moduletype/base.html:40 +#: dcim/tables/devicetypes.py:134 dcim/views.py:1072 dcim/views.py:1311 +#: dcim/views.py:2015 netbox/navigation/menu.py:96 +#: templates/dcim/device/base.html:43 templates/dcim/device_list.html:50 +#: templates/dcim/devicetype/base.html:40 +#: templates/dcim/inc/moduletype_buttons.html:31 templates/dcim/module.html:40 msgid "Rear Ports" msgstr "Tylne porty" -#: netbox/dcim/tables/devicetypes.py:137 netbox/dcim/views.py:1102 -#: netbox/dcim/views.py:2055 netbox/netbox/navigation/menu.py:102 -#: netbox/templates/dcim/device/base.html:49 -#: netbox/templates/dcim/device_list.html:57 -#: netbox/templates/dcim/devicetype/base.html:46 +#: dcim/tables/devicetypes.py:137 dcim/views.py:1102 dcim/views.py:2055 +#: netbox/navigation/menu.py:102 templates/dcim/device/base.html:49 +#: templates/dcim/device_list.html:57 templates/dcim/devicetype/base.html:46 msgid "Device Bays" msgstr "Wnęsy na urządzenia" -#: netbox/dcim/tables/devicetypes.py:140 netbox/dcim/views.py:1087 -#: netbox/dcim/views.py:1326 netbox/dcim/views.py:2035 -#: netbox/netbox/navigation/menu.py:101 -#: netbox/templates/dcim/device/base.html:46 -#: netbox/templates/dcim/device_list.html:64 -#: netbox/templates/dcim/devicetype/base.html:43 -#: netbox/templates/dcim/module.html:43 -#: netbox/templates/dcim/moduletype/base.html:43 +#: dcim/tables/devicetypes.py:140 dcim/views.py:1087 dcim/views.py:1326 +#: dcim/views.py:2035 netbox/navigation/menu.py:101 +#: templates/dcim/device/base.html:46 templates/dcim/device_list.html:64 +#: templates/dcim/devicetype/base.html:43 +#: templates/dcim/inc/moduletype_buttons.html:34 templates/dcim/module.html:43 msgid "Module Bays" msgstr "Wnęsy modułowe" -#: netbox/dcim/tables/power.py:36 netbox/netbox/navigation/menu.py:297 -#: netbox/templates/dcim/powerpanel.html:51 +#: dcim/tables/power.py:36 netbox/navigation/menu.py:297 +#: templates/dcim/powerpanel.html:51 msgid "Power Feeds" msgstr "Zasilanie zasilania" -#: netbox/dcim/tables/power.py:80 netbox/templates/dcim/powerfeed.html:99 +#: dcim/tables/power.py:80 templates/dcim/powerfeed.html:99 msgid "Max Utilization" msgstr "Maksymalne wykorzystanie" -#: netbox/dcim/tables/power.py:84 +#: dcim/tables/power.py:84 msgid "Available Power (VA)" msgstr "Dostępna moc (VA)" -#: netbox/dcim/tables/racks.py:30 netbox/dcim/tables/sites.py:143 -#: netbox/netbox/navigation/menu.py:43 netbox/netbox/navigation/menu.py:47 -#: netbox/netbox/navigation/menu.py:49 +#: dcim/tables/racks.py:30 dcim/tables/sites.py:143 +#: netbox/navigation/menu.py:43 netbox/navigation/menu.py:47 +#: netbox/navigation/menu.py:49 msgid "Racks" msgstr "Szafy" -#: netbox/dcim/tables/racks.py:63 netbox/dcim/tables/racks.py:142 -#: netbox/templates/dcim/device.html:318 -#: netbox/templates/dcim/inc/panels/racktype_dimensions.html:14 +#: dcim/tables/racks.py:63 dcim/tables/racks.py:142 +#: templates/dcim/device.html:318 +#: templates/dcim/inc/panels/racktype_dimensions.html:14 msgid "Height" msgstr "Wysokość" -#: netbox/dcim/tables/racks.py:67 netbox/dcim/tables/racks.py:165 -#: netbox/templates/dcim/inc/panels/racktype_dimensions.html:18 +#: dcim/tables/racks.py:67 dcim/tables/racks.py:165 +#: templates/dcim/inc/panels/racktype_dimensions.html:18 msgid "Outer Width" msgstr "Szerokość zewnętrzna" -#: netbox/dcim/tables/racks.py:71 netbox/dcim/tables/racks.py:169 -#: netbox/templates/dcim/inc/panels/racktype_dimensions.html:28 +#: dcim/tables/racks.py:71 dcim/tables/racks.py:169 +#: templates/dcim/inc/panels/racktype_dimensions.html:28 msgid "Outer Depth" msgstr "Głębokość zewnętrzna" -#: netbox/dcim/tables/racks.py:79 netbox/dcim/tables/racks.py:177 +#: dcim/tables/racks.py:79 dcim/tables/racks.py:177 msgid "Max Weight" msgstr "Maksymalna waga" -#: netbox/dcim/tables/racks.py:154 +#: dcim/tables/racks.py:154 msgid "Space" msgstr "Przestrzeń" -#: netbox/dcim/tables/sites.py:30 netbox/dcim/tables/sites.py:57 -#: netbox/extras/forms/filtersets.py:351 -#: netbox/extras/forms/model_forms.py:517 netbox/ipam/forms/bulk_edit.py:130 -#: netbox/ipam/forms/model_forms.py:153 netbox/ipam/tables/asn.py:66 -#: netbox/netbox/navigation/menu.py:15 netbox/netbox/navigation/menu.py:17 +#: dcim/tables/sites.py:30 dcim/tables/sites.py:57 +#: extras/forms/filtersets.py:351 extras/forms/model_forms.py:517 +#: ipam/forms/bulk_edit.py:131 ipam/forms/model_forms.py:153 +#: ipam/tables/asn.py:66 netbox/navigation/menu.py:15 +#: netbox/navigation/menu.py:17 msgid "Sites" msgstr "Witryny" -#: netbox/dcim/tests/test_api.py:47 +#: dcim/tests/test_api.py:47 msgid "Test case must set peer_termination_type" msgstr "Przypadek testowy musi ustawić peer_termination_type" -#: netbox/dcim/views.py:140 +#: dcim/views.py:140 #, python-brace-format msgid "Disconnected {count} {type}" msgstr "Odłączony {count} {type}" -#: netbox/dcim/views.py:740 netbox/netbox/navigation/menu.py:51 +#: dcim/views.py:740 netbox/navigation/menu.py:51 msgid "Reservations" msgstr "Rezerwacje" -#: netbox/dcim/views.py:759 netbox/templates/dcim/location.html:90 -#: netbox/templates/dcim/site.html:140 +#: dcim/views.py:759 templates/dcim/location.html:90 +#: templates/dcim/site.html:140 msgid "Non-Racked Devices" msgstr "Urządzenia poza szafami" -#: netbox/dcim/views.py:2088 netbox/extras/forms/model_forms.py:577 -#: netbox/templates/extras/configcontext.html:10 -#: netbox/virtualization/forms/model_forms.py:225 -#: netbox/virtualization/views.py:407 +#: dcim/views.py:2088 extras/forms/model_forms.py:577 +#: templates/extras/configcontext.html:10 +#: virtualization/forms/model_forms.py:225 virtualization/views.py:407 msgid "Config Context" msgstr "Kontekst konfiguracji" -#: netbox/dcim/views.py:2098 netbox/virtualization/views.py:417 +#: dcim/views.py:2098 virtualization/views.py:417 msgid "Render Config" msgstr "Konfiguracja renderowania" -#: netbox/dcim/views.py:2131 netbox/virtualization/views.py:450 +#: dcim/views.py:2131 virtualization/views.py:450 #, python-brace-format msgid "An error occurred while rendering the template: {error}" msgstr "Wystąpił błąd podczas renderowania szablonu: {error}" -#: netbox/dcim/views.py:2149 netbox/extras/tables/tables.py:550 -#: netbox/netbox/navigation/menu.py:247 netbox/netbox/navigation/menu.py:249 -#: netbox/virtualization/views.py:180 +#: dcim/views.py:2149 extras/tables/tables.py:550 +#: netbox/navigation/menu.py:247 netbox/navigation/menu.py:249 +#: virtualization/views.py:180 msgid "Virtual Machines" msgstr "Maszyny wirtualne" -#: netbox/dcim/views.py:2897 +#: dcim/views.py:2897 #, python-brace-format msgid "Installed device {device} in bay {device_bay}." msgstr "Zainstalowane urządzenie {device} w zatoce {device_bay}." -#: netbox/dcim/views.py:2938 +#: dcim/views.py:2938 #, python-brace-format msgid "Removed device {device} from bay {device_bay}." msgstr "Usunięte urządzenie {device} z zatoki {device_bay}." -#: netbox/dcim/views.py:3044 netbox/ipam/tables/ip.py:234 +#: dcim/views.py:3044 ipam/tables/ip.py:234 msgid "Children" msgstr "Dzieci" -#: netbox/dcim/views.py:3510 +#: dcim/views.py:3510 #, python-brace-format msgid "Added member {device}" msgstr "Dodano członka {device}" -#: netbox/dcim/views.py:3557 +#: dcim/views.py:3557 #, python-brace-format msgid "Unable to remove master device {device} from the virtual chassis." msgstr "Nie można usunąć urządzenia głównego {device} z wirtualnego podwozia." -#: netbox/dcim/views.py:3570 +#: dcim/views.py:3570 #, python-brace-format msgid "Removed {device} from virtual chassis {chassis}" msgstr "Usunięto {device} z wirtualnego podwozia {chassis}" -#: netbox/extras/api/customfields.py:89 +#: extras/api/customfields.py:89 #, python-brace-format msgid "Unknown related object(s): {name}" msgstr "Nieznany obiekt (y) powiązany (y): {name}" -#: netbox/extras/api/serializers_/customfields.py:73 +#: extras/api/serializers_/customfields.py:73 msgid "Changing the type of custom fields is not supported." msgstr "Zmiana typu pól niestandardowych nie jest obsługiwana." -#: netbox/extras/api/serializers_/scripts.py:70 -#: netbox/extras/api/serializers_/scripts.py:75 +#: extras/api/serializers_/scripts.py:70 extras/api/serializers_/scripts.py:75 msgid "Scheduling is not enabled for this script." msgstr "Planowanie nie jest włączone dla tego skryptu." -#: netbox/extras/choices.py:30 netbox/extras/forms/misc.py:14 +#: extras/choices.py:30 extras/forms/misc.py:14 msgid "Text" msgstr "Tekst" -#: netbox/extras/choices.py:31 +#: extras/choices.py:31 msgid "Text (long)" msgstr "Tekst (długi)" -#: netbox/extras/choices.py:32 +#: extras/choices.py:32 msgid "Integer" msgstr "Liczba całkowita" -#: netbox/extras/choices.py:33 +#: extras/choices.py:33 msgid "Decimal" msgstr "Dziesiętny" -#: netbox/extras/choices.py:34 +#: extras/choices.py:34 msgid "Boolean (true/false)" msgstr "Boolean (prawda/fałsz)" -#: netbox/extras/choices.py:35 +#: extras/choices.py:35 msgid "Date" msgstr "Data" -#: netbox/extras/choices.py:36 +#: extras/choices.py:36 msgid "Date & time" msgstr "Data i godzina" -#: netbox/extras/choices.py:38 +#: extras/choices.py:38 msgid "JSON" msgstr "JSON" -#: netbox/extras/choices.py:39 +#: extras/choices.py:39 msgid "Selection" msgstr "Wybór" -#: netbox/extras/choices.py:40 +#: extras/choices.py:40 msgid "Multiple selection" msgstr "Wielokrotny wybór" -#: netbox/extras/choices.py:42 +#: extras/choices.py:42 msgid "Multiple objects" msgstr "Wiele obiektów" -#: netbox/extras/choices.py:53 netbox/netbox/preferences.py:21 -#: netbox/templates/extras/customfield.html:78 netbox/vpn/choices.py:20 -#: netbox/wireless/choices.py:27 +#: extras/choices.py:53 netbox/preferences.py:21 +#: templates/extras/customfield.html:78 vpn/choices.py:20 +#: wireless/choices.py:27 msgid "Disabled" msgstr "Niepełnosprawny" -#: netbox/extras/choices.py:54 +#: extras/choices.py:54 msgid "Loose" msgstr "Luźne" -#: netbox/extras/choices.py:55 +#: extras/choices.py:55 msgid "Exact" msgstr "Dokładny" -#: netbox/extras/choices.py:66 +#: extras/choices.py:66 msgid "Always" msgstr "Zawsze" -#: netbox/extras/choices.py:67 +#: extras/choices.py:67 msgid "If set" msgstr "Jeśli ustawiony" -#: netbox/extras/choices.py:68 netbox/extras/choices.py:81 +#: extras/choices.py:68 extras/choices.py:81 msgid "Hidden" msgstr "Ukryte" -#: netbox/extras/choices.py:79 +#: extras/choices.py:79 msgid "Yes" msgstr "tak" -#: netbox/extras/choices.py:80 +#: extras/choices.py:80 msgid "No" msgstr "Nie" -#: netbox/extras/choices.py:108 netbox/templates/tenancy/contact.html:57 -#: netbox/tenancy/forms/bulk_edit.py:118 -#: netbox/wireless/forms/model_forms.py:168 +#: extras/choices.py:108 templates/tenancy/contact.html:57 +#: tenancy/forms/bulk_edit.py:118 wireless/forms/model_forms.py:168 msgid "Link" msgstr "Link" -#: netbox/extras/choices.py:124 +#: extras/choices.py:124 msgid "Newest" msgstr "Najnowszy" -#: netbox/extras/choices.py:125 +#: extras/choices.py:125 msgid "Oldest" msgstr "Najstarszy" -#: netbox/extras/choices.py:126 +#: extras/choices.py:126 msgid "Alphabetical (A-Z)" msgstr "Alfabetycznie (A-Z)" -#: netbox/extras/choices.py:127 +#: extras/choices.py:127 msgid "Alphabetical (Z-A)" msgstr "Alfabetycznie (Z-A)" -#: netbox/extras/choices.py:144 netbox/extras/choices.py:167 +#: extras/choices.py:144 extras/choices.py:167 msgid "Info" msgstr "Informacja" -#: netbox/extras/choices.py:145 netbox/extras/choices.py:168 +#: extras/choices.py:145 extras/choices.py:168 msgid "Success" msgstr "Sukces" -#: netbox/extras/choices.py:146 netbox/extras/choices.py:169 +#: extras/choices.py:146 extras/choices.py:169 msgid "Warning" msgstr "Ostrzeżenie" -#: netbox/extras/choices.py:147 +#: extras/choices.py:147 msgid "Danger" msgstr "Niebezpieczeństwo" -#: netbox/extras/choices.py:165 +#: extras/choices.py:165 msgid "Debug" msgstr "Debugowanie" -#: netbox/extras/choices.py:166 netbox/netbox/choices.py:101 +#: extras/choices.py:166 netbox/choices.py:101 msgid "Default" msgstr "Domyślnie" -#: netbox/extras/choices.py:170 +#: extras/choices.py:170 msgid "Failure" msgstr "Niepowodzenie" -#: netbox/extras/choices.py:186 +#: extras/choices.py:186 msgid "Hourly" msgstr "Godzinowe" -#: netbox/extras/choices.py:187 +#: extras/choices.py:187 msgid "12 hours" msgstr "12 godzin" -#: netbox/extras/choices.py:188 +#: extras/choices.py:188 msgid "Daily" msgstr "Codziennie" -#: netbox/extras/choices.py:189 +#: extras/choices.py:189 msgid "Weekly" msgstr "Tygodniowy" -#: netbox/extras/choices.py:190 +#: extras/choices.py:190 msgid "30 days" msgstr "30 dni" -#: netbox/extras/choices.py:226 -#: netbox/templates/dcim/virtualchassis_edit.html:107 -#: netbox/templates/generic/bulk_add_component.html:68 -#: netbox/templates/generic/object_edit.html:47 -#: netbox/templates/generic/object_edit.html:80 -#: netbox/templates/ipam/inc/ipaddress_edit_header.html:7 +#: extras/choices.py:226 templates/dcim/virtualchassis_edit.html:107 +#: templates/generic/bulk_add_component.html:68 +#: templates/generic/object_edit.html:47 templates/generic/object_edit.html:80 +#: templates/ipam/inc/ipaddress_edit_header.html:7 msgid "Create" msgstr "Utwórz" -#: netbox/extras/choices.py:227 +#: extras/choices.py:227 msgid "Update" msgstr "Aktualizacja" -#: netbox/extras/choices.py:228 -#: netbox/templates/circuits/inc/circuit_termination.html:23 -#: netbox/templates/dcim/inc/panels/inventory_items.html:37 -#: netbox/templates/dcim/moduletype/component_templates.html:23 -#: netbox/templates/dcim/powerpanel.html:66 -#: netbox/templates/extras/script_list.html:35 -#: netbox/templates/generic/bulk_delete.html:20 -#: netbox/templates/generic/bulk_delete.html:66 -#: netbox/templates/generic/object_delete.html:19 -#: netbox/templates/htmx/delete_form.html:57 -#: netbox/templates/ipam/inc/panels/fhrp_groups.html:48 -#: netbox/templates/users/objectpermission.html:46 -#: netbox/utilities/templates/buttons/delete.html:11 +#: extras/choices.py:228 templates/circuits/inc/circuit_termination.html:23 +#: templates/dcim/inc/panels/inventory_items.html:37 +#: templates/dcim/powerpanel.html:66 templates/extras/script_list.html:35 +#: templates/generic/bulk_delete.html:20 templates/generic/bulk_delete.html:66 +#: templates/generic/object_delete.html:19 templates/htmx/delete_form.html:57 +#: templates/ipam/inc/panels/fhrp_groups.html:48 +#: templates/users/objectpermission.html:46 +#: utilities/templates/buttons/delete.html:11 msgid "Delete" msgstr "Usuń" -#: netbox/extras/choices.py:252 netbox/netbox/choices.py:57 -#: netbox/netbox/choices.py:102 +#: extras/choices.py:252 netbox/choices.py:57 netbox/choices.py:102 msgid "Blue" msgstr "Niebieska" -#: netbox/extras/choices.py:253 netbox/netbox/choices.py:56 -#: netbox/netbox/choices.py:103 +#: extras/choices.py:253 netbox/choices.py:56 netbox/choices.py:103 msgid "Indigo" msgstr "Indygo" -#: netbox/extras/choices.py:254 netbox/netbox/choices.py:54 -#: netbox/netbox/choices.py:104 +#: extras/choices.py:254 netbox/choices.py:54 netbox/choices.py:104 msgid "Purple" msgstr "Fioletowy" -#: netbox/extras/choices.py:255 netbox/netbox/choices.py:51 -#: netbox/netbox/choices.py:105 +#: extras/choices.py:255 netbox/choices.py:51 netbox/choices.py:105 msgid "Pink" msgstr "Różowy" -#: netbox/extras/choices.py:256 netbox/netbox/choices.py:50 -#: netbox/netbox/choices.py:106 +#: extras/choices.py:256 netbox/choices.py:50 netbox/choices.py:106 msgid "Red" msgstr "Czerwony" -#: netbox/extras/choices.py:257 netbox/netbox/choices.py:68 -#: netbox/netbox/choices.py:107 +#: extras/choices.py:257 netbox/choices.py:68 netbox/choices.py:107 msgid "Orange" msgstr "Pomarańczowy" -#: netbox/extras/choices.py:258 netbox/netbox/choices.py:66 -#: netbox/netbox/choices.py:108 +#: extras/choices.py:258 netbox/choices.py:66 netbox/choices.py:108 msgid "Yellow" msgstr "Żółty" -#: netbox/extras/choices.py:259 netbox/netbox/choices.py:63 -#: netbox/netbox/choices.py:109 +#: extras/choices.py:259 netbox/choices.py:63 netbox/choices.py:109 msgid "Green" msgstr "Zielony" -#: netbox/extras/choices.py:260 netbox/netbox/choices.py:60 -#: netbox/netbox/choices.py:110 +#: extras/choices.py:260 netbox/choices.py:60 netbox/choices.py:110 msgid "Teal" msgstr "Cyraneczka" -#: netbox/extras/choices.py:261 netbox/netbox/choices.py:59 -#: netbox/netbox/choices.py:111 +#: extras/choices.py:261 netbox/choices.py:59 netbox/choices.py:111 msgid "Cyan" msgstr "Niebieski" -#: netbox/extras/choices.py:262 netbox/netbox/choices.py:112 +#: extras/choices.py:262 netbox/choices.py:112 msgid "Gray" msgstr "Szary" -#: netbox/extras/choices.py:263 netbox/netbox/choices.py:74 -#: netbox/netbox/choices.py:113 +#: extras/choices.py:263 netbox/choices.py:74 netbox/choices.py:113 msgid "Black" msgstr "Czarny" -#: netbox/extras/choices.py:264 netbox/netbox/choices.py:75 -#: netbox/netbox/choices.py:114 +#: extras/choices.py:264 netbox/choices.py:75 netbox/choices.py:114 msgid "White" msgstr "Biały" -#: netbox/extras/choices.py:279 netbox/extras/forms/model_forms.py:353 -#: netbox/extras/forms/model_forms.py:430 -#: netbox/templates/extras/webhook.html:10 +#: extras/choices.py:279 extras/forms/model_forms.py:353 +#: extras/forms/model_forms.py:430 templates/extras/webhook.html:10 msgid "Webhook" msgstr "Hook internetowy" -#: netbox/extras/choices.py:280 netbox/extras/forms/model_forms.py:418 -#: netbox/templates/extras/script/base.html:29 +#: extras/choices.py:280 extras/forms/model_forms.py:418 +#: templates/extras/script/base.html:29 msgid "Script" msgstr "Skrypt" -#: netbox/extras/choices.py:281 +#: extras/choices.py:281 msgid "Notification" msgstr "Powiadomienie" -#: netbox/extras/conditions.py:54 +#: extras/conditions.py:54 #, python-brace-format msgid "Unknown operator: {op}. Must be one of: {operators}" msgstr "Nieznany operator: {op}. Musi być jednym z: {operators}" -#: netbox/extras/conditions.py:58 +#: extras/conditions.py:58 #, python-brace-format msgid "Unsupported value type: {value}" msgstr "Nieobsługiwany typ wartości: {value}" -#: netbox/extras/conditions.py:60 +#: extras/conditions.py:60 #, python-brace-format msgid "Invalid type for {op} operation: {value}" msgstr "Nieprawidłowy typ {op} operacja: {value}" -#: netbox/extras/conditions.py:137 +#: extras/conditions.py:137 #, python-brace-format msgid "Ruleset must be a dictionary, not {ruleset}." -msgstr "Zestaw reguł musi być słownikiem, a nie {ruleset}." +msgstr "Zestaw reguł musi być słownikiem, a nie {ruleset}." -#: netbox/extras/conditions.py:142 +#: extras/conditions.py:142 msgid "Invalid logic type: must be 'AND' or 'OR'. Please check documentation." msgstr "" "Nieprawidłowy typ logiki: musi być „AND” lub „OR”. Proszę sprawdzić " "dokumentację." -#: netbox/extras/conditions.py:154 +#: extras/conditions.py:154 msgid "Incorrect key(s) informed. Please check documentation." msgstr "Zgłoszono nieprawidłowy klucz (y). Proszę sprawdzić dokumentację." -#: netbox/extras/dashboard/forms.py:38 +#: extras/dashboard/forms.py:38 msgid "Widget type" msgstr "Typ widżetu" -#: netbox/extras/dashboard/utils.py:36 +#: extras/dashboard/utils.py:36 #, python-brace-format msgid "Unregistered widget class: {name}" msgstr "Niezarejestrowana klasa widgetów: {name}" -#: netbox/extras/dashboard/widgets.py:125 +#: extras/dashboard/widgets.py:125 #, python-brace-format msgid "{class_name} must define a render() method." msgstr "{class_name} musi zdefiniować metodę render ()." -#: netbox/extras/dashboard/widgets.py:144 +#: extras/dashboard/widgets.py:144 msgid "Note" msgstr "Uwaga" -#: netbox/extras/dashboard/widgets.py:145 +#: extras/dashboard/widgets.py:145 msgid "Display some arbitrary custom content. Markdown is supported." msgstr "Wyświetl dowolną niestandardową zawartość. Markdown jest obsługiwany." -#: netbox/extras/dashboard/widgets.py:158 +#: extras/dashboard/widgets.py:158 msgid "Object Counts" msgstr "Liczenie obiektów" -#: netbox/extras/dashboard/widgets.py:159 +#: extras/dashboard/widgets.py:159 msgid "" "Display a set of NetBox models and the number of objects created for each " "type." @@ -7450,291 +6939,269 @@ msgstr "" "Wyświetla zestaw modeli NetBox i liczbę obiektów utworzonych dla każdego " "typu." -#: netbox/extras/dashboard/widgets.py:169 +#: extras/dashboard/widgets.py:169 msgid "Filters to apply when counting the number of objects" msgstr "Filtry do zastosowania przy liczeniu liczby obiektów" -#: netbox/extras/dashboard/widgets.py:177 +#: extras/dashboard/widgets.py:177 msgid "Invalid format. Object filters must be passed as a dictionary." msgstr "" "Nieprawidłowy format. Filtry obiektów muszą być przekazywane jako słownik." -#: netbox/extras/dashboard/widgets.py:208 +#: extras/dashboard/widgets.py:208 msgid "Object List" msgstr "Lista obiektów" -#: netbox/extras/dashboard/widgets.py:209 +#: extras/dashboard/widgets.py:209 msgid "Display an arbitrary list of objects." msgstr "Wyświetla dowolną listę obiektów." -#: netbox/extras/dashboard/widgets.py:222 +#: extras/dashboard/widgets.py:222 msgid "The default number of objects to display" msgstr "Domyślna liczba obiektów do wyświetlenia" -#: netbox/extras/dashboard/widgets.py:234 +#: extras/dashboard/widgets.py:234 msgid "Invalid format. URL parameters must be passed as a dictionary." msgstr "" "Nieprawidłowy format. Parametry adresu URL muszą być przekazywane jako " "słownik." -#: netbox/extras/dashboard/widgets.py:274 +#: extras/dashboard/widgets.py:274 msgid "RSS Feed" msgstr "Kanał RSS" -#: netbox/extras/dashboard/widgets.py:279 +#: extras/dashboard/widgets.py:279 msgid "Embed an RSS feed from an external website." msgstr "Osadź kanał RSS z zewnętrznej strony internetowej." -#: netbox/extras/dashboard/widgets.py:286 +#: extras/dashboard/widgets.py:286 msgid "Feed URL" msgstr "Adres URL kanału" -#: netbox/extras/dashboard/widgets.py:291 +#: extras/dashboard/widgets.py:291 msgid "The maximum number of objects to display" msgstr "Maksymalna liczba obiektów do wyświetlenia" -#: netbox/extras/dashboard/widgets.py:296 +#: extras/dashboard/widgets.py:296 msgid "How long to stored the cached content (in seconds)" msgstr "Jak długo przechowywać zawartość w pamięci podręcznej (w sekundach)" -#: netbox/extras/dashboard/widgets.py:348 -#: netbox/templates/account/base.html:10 -#: netbox/templates/account/bookmarks.html:7 -#: netbox/templates/inc/user_menu.html:48 +#: extras/dashboard/widgets.py:348 templates/account/base.html:10 +#: templates/account/bookmarks.html:7 templates/inc/user_menu.html:48 msgid "Bookmarks" msgstr "Zakładki" -#: netbox/extras/dashboard/widgets.py:352 +#: extras/dashboard/widgets.py:352 msgid "Show your personal bookmarks" msgstr "Pokaż swoje osobiste zakładki" -#: netbox/extras/events.py:147 +#: extras/events.py:147 #, python-brace-format msgid "Unknown action type for an event rule: {action_type}" msgstr "Nieznany typ akcji dla reguły zdarzenia: {action_type}" -#: netbox/extras/events.py:192 +#: extras/events.py:192 #, python-brace-format msgid "Cannot import events pipeline {name} error: {error}" msgstr "Nie można importować pociągu zdarzeń {name} błąd: {error}" -#: netbox/extras/filtersets.py:45 +#: extras/filtersets.py:45 msgid "Script module (ID)" msgstr "Moduł skryptu (ID)" -#: netbox/extras/filtersets.py:254 netbox/extras/filtersets.py:637 -#: netbox/extras/filtersets.py:665 +#: extras/filtersets.py:254 extras/filtersets.py:637 extras/filtersets.py:665 msgid "Data file (ID)" msgstr "Plik danych (ID)" -#: netbox/extras/filtersets.py:370 netbox/users/filtersets.py:68 -#: netbox/users/filtersets.py:191 +#: extras/filtersets.py:370 users/filtersets.py:68 users/filtersets.py:191 msgid "Group (name)" msgstr "Grupa (nazwa)" -#: netbox/extras/filtersets.py:574 -#: netbox/virtualization/forms/filtersets.py:118 +#: extras/filtersets.py:574 virtualization/forms/filtersets.py:118 msgid "Cluster type" msgstr "Typ klastra" -#: netbox/extras/filtersets.py:580 netbox/virtualization/filtersets.py:95 -#: netbox/virtualization/filtersets.py:147 +#: extras/filtersets.py:580 virtualization/filtersets.py:95 +#: virtualization/filtersets.py:147 msgid "Cluster type (slug)" msgstr "Typ klastra (identyfikator)" -#: netbox/extras/filtersets.py:601 netbox/tenancy/forms/forms.py:16 -#: netbox/tenancy/forms/forms.py:39 +#: extras/filtersets.py:601 tenancy/forms/forms.py:16 +#: tenancy/forms/forms.py:39 msgid "Tenant group" msgstr "Grupa najemców" -#: netbox/extras/filtersets.py:607 netbox/tenancy/filtersets.py:188 -#: netbox/tenancy/filtersets.py:208 +#: extras/filtersets.py:607 tenancy/filtersets.py:188 +#: tenancy/filtersets.py:208 msgid "Tenant group (slug)" msgstr "Grupa najemców (identyfikator)" -#: netbox/extras/filtersets.py:623 netbox/extras/forms/model_forms.py:495 -#: netbox/templates/extras/tag.html:11 +#: extras/filtersets.py:623 extras/forms/model_forms.py:495 +#: templates/extras/tag.html:11 msgid "Tag" msgstr "Etykietka" -#: netbox/extras/filtersets.py:629 +#: extras/filtersets.py:629 msgid "Tag (slug)" msgstr "Tag (identyfikator)" -#: netbox/extras/filtersets.py:689 netbox/extras/forms/filtersets.py:429 +#: extras/filtersets.py:689 extras/forms/filtersets.py:429 msgid "Has local config context data" msgstr "Posiada lokalne dane kontekstowe konfiguracji" -#: netbox/extras/forms/bulk_edit.py:35 netbox/extras/forms/filtersets.py:60 +#: extras/forms/bulk_edit.py:35 extras/forms/filtersets.py:60 msgid "Group name" msgstr "Nazwa grupy" -#: netbox/extras/forms/bulk_edit.py:43 netbox/extras/forms/filtersets.py:68 -#: netbox/extras/tables/tables.py:65 -#: netbox/templates/extras/customfield.html:38 -#: netbox/templates/generic/bulk_import.html:118 +#: extras/forms/bulk_edit.py:43 extras/forms/filtersets.py:68 +#: extras/tables/tables.py:65 templates/extras/customfield.html:38 +#: templates/generic/bulk_import.html:118 msgid "Required" msgstr "Wymagane" -#: netbox/extras/forms/bulk_edit.py:48 netbox/extras/forms/filtersets.py:75 +#: extras/forms/bulk_edit.py:48 extras/forms/filtersets.py:75 msgid "Must be unique" msgstr "Musi być wyjątkowy" -#: netbox/extras/forms/bulk_edit.py:61 netbox/extras/forms/bulk_import.py:60 -#: netbox/extras/forms/filtersets.py:89 -#: netbox/extras/models/customfields.py:209 +#: extras/forms/bulk_edit.py:61 extras/forms/bulk_import.py:60 +#: extras/forms/filtersets.py:89 extras/models/customfields.py:209 msgid "UI visible" msgstr "Widoczny interfejs użytkownika" -#: netbox/extras/forms/bulk_edit.py:66 netbox/extras/forms/bulk_import.py:66 -#: netbox/extras/forms/filtersets.py:94 -#: netbox/extras/models/customfields.py:216 +#: extras/forms/bulk_edit.py:66 extras/forms/bulk_import.py:66 +#: extras/forms/filtersets.py:94 extras/models/customfields.py:216 msgid "UI editable" msgstr "Edytowalny interfejs użytkownika" -#: netbox/extras/forms/bulk_edit.py:71 netbox/extras/forms/filtersets.py:97 +#: extras/forms/bulk_edit.py:71 extras/forms/filtersets.py:97 msgid "Is cloneable" msgstr "Jest klonowalny" -#: netbox/extras/forms/bulk_edit.py:76 netbox/extras/forms/filtersets.py:104 +#: extras/forms/bulk_edit.py:76 extras/forms/filtersets.py:104 msgid "Minimum value" msgstr "Minimalna wartość" -#: netbox/extras/forms/bulk_edit.py:80 netbox/extras/forms/filtersets.py:108 +#: extras/forms/bulk_edit.py:80 extras/forms/filtersets.py:108 msgid "Maximum value" msgstr "Maksymalna wartość" -#: netbox/extras/forms/bulk_edit.py:84 netbox/extras/forms/filtersets.py:112 +#: extras/forms/bulk_edit.py:84 extras/forms/filtersets.py:112 msgid "Validation regex" msgstr "Walidacja regex" -#: netbox/extras/forms/bulk_edit.py:91 netbox/extras/forms/filtersets.py:46 -#: netbox/extras/forms/model_forms.py:76 -#: netbox/templates/extras/customfield.html:70 +#: extras/forms/bulk_edit.py:91 extras/forms/filtersets.py:46 +#: extras/forms/model_forms.py:76 templates/extras/customfield.html:70 msgid "Behavior" msgstr "Zachowanie" -#: netbox/extras/forms/bulk_edit.py:128 netbox/extras/forms/filtersets.py:149 +#: extras/forms/bulk_edit.py:128 extras/forms/filtersets.py:149 msgid "New window" msgstr "Nowe okno" -#: netbox/extras/forms/bulk_edit.py:137 +#: extras/forms/bulk_edit.py:137 msgid "Button class" msgstr "Klasa przycisków" -#: netbox/extras/forms/bulk_edit.py:154 netbox/extras/forms/filtersets.py:187 -#: netbox/extras/models/models.py:409 +#: extras/forms/bulk_edit.py:154 extras/forms/filtersets.py:187 +#: extras/models/models.py:409 msgid "MIME type" msgstr "Typ MIME" -#: netbox/extras/forms/bulk_edit.py:159 netbox/extras/forms/filtersets.py:190 +#: extras/forms/bulk_edit.py:159 extras/forms/filtersets.py:190 msgid "File extension" msgstr "Rozszerzenie pliku" -#: netbox/extras/forms/bulk_edit.py:164 netbox/extras/forms/filtersets.py:194 +#: extras/forms/bulk_edit.py:164 extras/forms/filtersets.py:194 msgid "As attachment" msgstr "Jako załącznik" -#: netbox/extras/forms/bulk_edit.py:192 netbox/extras/forms/filtersets.py:236 -#: netbox/extras/tables/tables.py:256 -#: netbox/templates/extras/savedfilter.html:29 +#: extras/forms/bulk_edit.py:192 extras/forms/filtersets.py:236 +#: extras/tables/tables.py:256 templates/extras/savedfilter.html:29 msgid "Shared" msgstr "Udostępnione" -#: netbox/extras/forms/bulk_edit.py:215 netbox/extras/forms/filtersets.py:265 -#: netbox/extras/models/models.py:174 +#: extras/forms/bulk_edit.py:215 extras/forms/filtersets.py:265 +#: extras/models/models.py:174 msgid "HTTP method" msgstr "Metoda HTTP" -#: netbox/extras/forms/bulk_edit.py:219 netbox/extras/forms/filtersets.py:259 -#: netbox/templates/extras/webhook.html:30 +#: extras/forms/bulk_edit.py:219 extras/forms/filtersets.py:259 +#: templates/extras/webhook.html:30 msgid "Payload URL" msgstr "Adres URL ładunku" -#: netbox/extras/forms/bulk_edit.py:224 netbox/extras/models/models.py:214 +#: extras/forms/bulk_edit.py:224 extras/models/models.py:214 msgid "SSL verification" msgstr "Weryfikacja SSL" -#: netbox/extras/forms/bulk_edit.py:227 -#: netbox/templates/extras/webhook.html:38 +#: extras/forms/bulk_edit.py:227 templates/extras/webhook.html:38 msgid "Secret" msgstr "Tajemnica" -#: netbox/extras/forms/bulk_edit.py:232 +#: extras/forms/bulk_edit.py:232 msgid "CA file path" msgstr "Ścieżka pliku CA" -#: netbox/extras/forms/bulk_edit.py:253 netbox/extras/forms/bulk_import.py:192 -#: netbox/extras/forms/model_forms.py:377 +#: extras/forms/bulk_edit.py:253 extras/forms/bulk_import.py:192 +#: extras/forms/model_forms.py:377 msgid "Event types" msgstr "Rodzaje zdarzeń" -#: netbox/extras/forms/bulk_edit.py:293 +#: extras/forms/bulk_edit.py:293 msgid "Is active" msgstr "Jest aktywny" -#: netbox/extras/forms/bulk_import.py:37 -#: netbox/extras/forms/bulk_import.py:118 -#: netbox/extras/forms/bulk_import.py:139 -#: netbox/extras/forms/bulk_import.py:162 -#: netbox/extras/forms/bulk_import.py:186 -#: netbox/extras/forms/filtersets.py:137 netbox/extras/forms/filtersets.py:224 -#: netbox/extras/forms/model_forms.py:47 -#: netbox/extras/forms/model_forms.py:205 -#: netbox/extras/forms/model_forms.py:237 -#: netbox/extras/forms/model_forms.py:278 -#: netbox/extras/forms/model_forms.py:372 -#: netbox/extras/forms/model_forms.py:489 -#: netbox/users/forms/model_forms.py:276 +#: extras/forms/bulk_import.py:37 extras/forms/bulk_import.py:118 +#: extras/forms/bulk_import.py:139 extras/forms/bulk_import.py:162 +#: extras/forms/bulk_import.py:186 extras/forms/filtersets.py:137 +#: extras/forms/filtersets.py:224 extras/forms/model_forms.py:47 +#: extras/forms/model_forms.py:205 extras/forms/model_forms.py:237 +#: extras/forms/model_forms.py:278 extras/forms/model_forms.py:372 +#: extras/forms/model_forms.py:489 users/forms/model_forms.py:276 msgid "Object types" msgstr "Typy obiektów" -#: netbox/extras/forms/bulk_import.py:39 -#: netbox/extras/forms/bulk_import.py:120 -#: netbox/extras/forms/bulk_import.py:141 -#: netbox/extras/forms/bulk_import.py:164 -#: netbox/extras/forms/bulk_import.py:188 -#: netbox/tenancy/forms/bulk_import.py:96 +#: extras/forms/bulk_import.py:39 extras/forms/bulk_import.py:120 +#: extras/forms/bulk_import.py:141 extras/forms/bulk_import.py:164 +#: extras/forms/bulk_import.py:188 tenancy/forms/bulk_import.py:96 msgid "One or more assigned object types" msgstr "Jeden lub więcej przypisanych typów obiektów" -#: netbox/extras/forms/bulk_import.py:44 +#: extras/forms/bulk_import.py:44 msgid "Field data type (e.g. text, integer, etc.)" msgstr "Typ danych pola (np. tekst, liczba całkowita itp.)" -#: netbox/extras/forms/bulk_import.py:47 netbox/extras/forms/filtersets.py:208 -#: netbox/extras/forms/filtersets.py:281 -#: netbox/extras/forms/model_forms.py:304 -#: netbox/extras/forms/model_forms.py:341 -#: netbox/tenancy/forms/filtersets.py:92 +#: extras/forms/bulk_import.py:47 extras/forms/filtersets.py:208 +#: extras/forms/filtersets.py:281 extras/forms/model_forms.py:304 +#: extras/forms/model_forms.py:341 tenancy/forms/filtersets.py:92 msgid "Object type" msgstr "Typ obiektu" -#: netbox/extras/forms/bulk_import.py:50 +#: extras/forms/bulk_import.py:50 msgid "Object type (for object or multi-object fields)" msgstr "Typ obiektu (dla pól obiektu lub wielu obiektów)" -#: netbox/extras/forms/bulk_import.py:53 netbox/extras/forms/filtersets.py:84 +#: extras/forms/bulk_import.py:53 extras/forms/filtersets.py:84 msgid "Choice set" msgstr "Zestaw do wyboru" -#: netbox/extras/forms/bulk_import.py:57 +#: extras/forms/bulk_import.py:57 msgid "Choice set (for selection fields)" msgstr "Zestaw wyboru (dla pól wyboru)" -#: netbox/extras/forms/bulk_import.py:63 +#: extras/forms/bulk_import.py:63 msgid "Whether the custom field is displayed in the UI" msgstr "Czy pole niestandardowe jest wyświetlane w interfejsie użytkownika" -#: netbox/extras/forms/bulk_import.py:69 +#: extras/forms/bulk_import.py:69 msgid "Whether the custom field is editable in the UI" msgstr "Czy pole niestandardowe można edytować w interfejsie użytkownika" -#: netbox/extras/forms/bulk_import.py:85 +#: extras/forms/bulk_import.py:85 msgid "The base set of predefined choices to use (if any)" msgstr "Podstawowy zestaw predefiniowanych opcji do użycia (jeśli istnieje)" -#: netbox/extras/forms/bulk_import.py:91 +#: extras/forms/bulk_import.py:91 msgid "" "Quoted string of comma-separated field choices with optional labels " "separated by colon: \"choice1:First Choice,choice2:Second Choice\"" @@ -7742,201 +7209,185 @@ msgstr "" "Cytowany ciąg opcji pól oddzielonych przecinkami z opcjonalnymi etykietami " "oddzielonymi dwukropkiem: „Choice1:First Choice, Choice2:Second Choice”" -#: netbox/extras/forms/bulk_import.py:123 netbox/extras/models/models.py:323 +#: extras/forms/bulk_import.py:123 extras/models/models.py:323 msgid "button class" msgstr "klasa przycisków" -#: netbox/extras/forms/bulk_import.py:126 netbox/extras/models/models.py:327 +#: extras/forms/bulk_import.py:126 extras/models/models.py:327 msgid "" "The class of the first link in a group will be used for the dropdown button" msgstr "" "Klasa pierwszego łącza w grupie zostanie użyta dla rozwijanego przycisku" -#: netbox/extras/forms/bulk_import.py:193 +#: extras/forms/bulk_import.py:193 msgid "The event type(s) which will trigger this rule" msgstr "Typy zdarzeń, które wyzwalają tę regułę" -#: netbox/extras/forms/bulk_import.py:196 +#: extras/forms/bulk_import.py:196 msgid "Action object" msgstr "Obiekt akcji" -#: netbox/extras/forms/bulk_import.py:198 +#: extras/forms/bulk_import.py:198 msgid "Webhook name or script as dotted path module.Class" msgstr "Nazwa lub skrypt Webhook jako ścieżka kropkowana module.Class" -#: netbox/extras/forms/bulk_import.py:219 +#: extras/forms/bulk_import.py:219 #, python-brace-format msgid "Webhook {name} not found" msgstr "Hook internetowy {name} nie znaleziono" -#: netbox/extras/forms/bulk_import.py:228 +#: extras/forms/bulk_import.py:228 #, python-brace-format msgid "Script {name} not found" msgstr "Skrypt {name} nie znaleziono" -#: netbox/extras/forms/bulk_import.py:244 +#: extras/forms/bulk_import.py:244 msgid "Assigned object type" msgstr "Przypisany typ obiektu" -#: netbox/extras/forms/bulk_import.py:249 +#: extras/forms/bulk_import.py:249 msgid "The classification of entry" msgstr "Klasyfikacja wpisu" -#: netbox/extras/forms/bulk_import.py:261 -#: netbox/extras/forms/model_forms.py:320 netbox/netbox/navigation/menu.py:390 -#: netbox/templates/extras/notificationgroup.html:41 -#: netbox/templates/users/group.html:29 netbox/users/forms/model_forms.py:236 -#: netbox/users/forms/model_forms.py:248 netbox/users/forms/model_forms.py:300 -#: netbox/users/tables.py:102 +#: extras/forms/bulk_import.py:261 extras/forms/model_forms.py:320 +#: netbox/navigation/menu.py:390 templates/extras/notificationgroup.html:41 +#: templates/users/group.html:29 users/forms/model_forms.py:236 +#: users/forms/model_forms.py:248 users/forms/model_forms.py:300 +#: users/tables.py:102 msgid "Users" msgstr "Użytkownicy" -#: netbox/extras/forms/bulk_import.py:265 +#: extras/forms/bulk_import.py:265 msgid "User names separated by commas, encased with double quotes" msgstr "" "Nazwy użytkowników oddzielone przecinkami, otoczone podwójnymi cudzysłowami" -#: netbox/extras/forms/bulk_import.py:268 -#: netbox/extras/forms/model_forms.py:315 netbox/netbox/navigation/menu.py:410 -#: netbox/templates/extras/notificationgroup.html:31 -#: netbox/users/forms/model_forms.py:181 netbox/users/forms/model_forms.py:193 -#: netbox/users/forms/model_forms.py:305 netbox/users/tables.py:35 -#: netbox/users/tables.py:106 +#: extras/forms/bulk_import.py:268 extras/forms/model_forms.py:315 +#: netbox/navigation/menu.py:410 templates/extras/notificationgroup.html:31 +#: users/forms/model_forms.py:181 users/forms/model_forms.py:193 +#: users/forms/model_forms.py:305 users/tables.py:35 users/tables.py:106 msgid "Groups" msgstr "Grupy" -#: netbox/extras/forms/bulk_import.py:272 +#: extras/forms/bulk_import.py:272 msgid "Group names separated by commas, encased with double quotes" msgstr "Nazwy grup oddzielone przecinkami, otoczone podwójnymi cudzysłowami" -#: netbox/extras/forms/filtersets.py:52 netbox/extras/forms/model_forms.py:56 +#: extras/forms/filtersets.py:52 extras/forms/model_forms.py:56 msgid "Related object type" msgstr "Powiązany typ obiektu" -#: netbox/extras/forms/filtersets.py:57 +#: extras/forms/filtersets.py:57 msgid "Field type" msgstr "Typ pola" -#: netbox/extras/forms/filtersets.py:120 -#: netbox/extras/forms/model_forms.py:157 netbox/extras/tables/tables.py:91 -#: netbox/templates/generic/bulk_import.html:154 +#: extras/forms/filtersets.py:120 extras/forms/model_forms.py:157 +#: extras/tables/tables.py:91 templates/generic/bulk_import.html:154 msgid "Choices" msgstr "Wybory" -#: netbox/extras/forms/filtersets.py:164 netbox/extras/forms/filtersets.py:319 -#: netbox/extras/forms/filtersets.py:408 -#: netbox/extras/forms/model_forms.py:572 netbox/templates/core/job.html:96 -#: netbox/templates/extras/eventrule.html:84 +#: extras/forms/filtersets.py:164 extras/forms/filtersets.py:319 +#: extras/forms/filtersets.py:408 extras/forms/model_forms.py:572 +#: templates/core/job.html:96 templates/extras/eventrule.html:84 msgid "Data" msgstr "Dane" -#: netbox/extras/forms/filtersets.py:175 netbox/extras/forms/filtersets.py:333 -#: netbox/extras/forms/filtersets.py:418 netbox/netbox/choices.py:130 -#: netbox/utilities/forms/bulk_import.py:26 +#: extras/forms/filtersets.py:175 extras/forms/filtersets.py:333 +#: extras/forms/filtersets.py:418 netbox/choices.py:130 +#: utilities/forms/bulk_import.py:26 msgid "Data file" msgstr "Plik danych" -#: netbox/extras/forms/filtersets.py:183 +#: extras/forms/filtersets.py:183 msgid "Content types" msgstr "Typy treści" -#: netbox/extras/forms/filtersets.py:255 netbox/extras/models/models.py:179 +#: extras/forms/filtersets.py:255 extras/models/models.py:179 msgid "HTTP content type" msgstr "Typ zawartości HTTP" -#: netbox/extras/forms/filtersets.py:286 +#: extras/forms/filtersets.py:286 msgid "Event type" msgstr "Typ zdarzenia" -#: netbox/extras/forms/filtersets.py:291 +#: extras/forms/filtersets.py:291 msgid "Action type" msgstr "Rodzaj akcji" -#: netbox/extras/forms/filtersets.py:307 +#: extras/forms/filtersets.py:307 msgid "Tagged object type" msgstr "Typ obiektu oznaczonego" -#: netbox/extras/forms/filtersets.py:312 +#: extras/forms/filtersets.py:312 msgid "Allowed object type" msgstr "Dozwolony typ obiektu" -#: netbox/extras/forms/filtersets.py:341 -#: netbox/extras/forms/model_forms.py:507 netbox/netbox/navigation/menu.py:18 +#: extras/forms/filtersets.py:341 extras/forms/model_forms.py:507 +#: netbox/navigation/menu.py:18 msgid "Regions" msgstr "Regiony" -#: netbox/extras/forms/filtersets.py:346 -#: netbox/extras/forms/model_forms.py:512 +#: extras/forms/filtersets.py:346 extras/forms/model_forms.py:512 msgid "Site groups" msgstr "Grupy witryn" -#: netbox/extras/forms/filtersets.py:356 -#: netbox/extras/forms/model_forms.py:522 netbox/netbox/navigation/menu.py:20 -#: netbox/templates/dcim/site.html:127 +#: extras/forms/filtersets.py:356 extras/forms/model_forms.py:522 +#: netbox/navigation/menu.py:20 templates/dcim/site.html:127 msgid "Locations" msgstr "Lokalizacje" -#: netbox/extras/forms/filtersets.py:361 -#: netbox/extras/forms/model_forms.py:527 +#: extras/forms/filtersets.py:361 extras/forms/model_forms.py:527 msgid "Device types" msgstr "Rodzaje urządzeń" -#: netbox/extras/forms/filtersets.py:366 -#: netbox/extras/forms/model_forms.py:532 +#: extras/forms/filtersets.py:366 extras/forms/model_forms.py:532 msgid "Roles" msgstr "Role" -#: netbox/extras/forms/filtersets.py:376 -#: netbox/extras/forms/model_forms.py:542 +#: extras/forms/filtersets.py:376 extras/forms/model_forms.py:542 msgid "Cluster types" msgstr "Typy klastrów" -#: netbox/extras/forms/filtersets.py:381 -#: netbox/extras/forms/model_forms.py:547 +#: extras/forms/filtersets.py:381 extras/forms/model_forms.py:547 msgid "Cluster groups" msgstr "Grupy klastrów" -#: netbox/extras/forms/filtersets.py:386 -#: netbox/extras/forms/model_forms.py:552 netbox/netbox/navigation/menu.py:255 -#: netbox/netbox/navigation/menu.py:257 -#: netbox/templates/virtualization/clustertype.html:30 -#: netbox/virtualization/tables/clusters.py:23 -#: netbox/virtualization/tables/clusters.py:45 +#: extras/forms/filtersets.py:386 extras/forms/model_forms.py:552 +#: netbox/navigation/menu.py:255 netbox/navigation/menu.py:257 +#: templates/virtualization/clustertype.html:30 +#: virtualization/tables/clusters.py:23 virtualization/tables/clusters.py:45 msgid "Clusters" msgstr "Klastry" -#: netbox/extras/forms/filtersets.py:391 -#: netbox/extras/forms/model_forms.py:557 +#: extras/forms/filtersets.py:391 extras/forms/model_forms.py:557 msgid "Tenant groups" msgstr "Grupy najemców" -#: netbox/extras/forms/model_forms.py:49 +#: extras/forms/model_forms.py:49 msgid "The type(s) of object that have this custom field" msgstr "Typ (y) obiektu, który ma to pole niestandardowe" -#: netbox/extras/forms/model_forms.py:52 +#: extras/forms/model_forms.py:52 msgid "Default value" msgstr "Wartość domyślna" -#: netbox/extras/forms/model_forms.py:58 +#: extras/forms/model_forms.py:58 msgid "Type of the related object (for object/multi-object fields only)" msgstr "Typ powiązanego obiektu (tylko dla pól obiektu/wielu obiektów)" -#: netbox/extras/forms/model_forms.py:61 -#: netbox/templates/extras/customfield.html:60 +#: extras/forms/model_forms.py:61 templates/extras/customfield.html:60 msgid "Related object filter" msgstr "Powiązany filtr obiektów" -#: netbox/extras/forms/model_forms.py:63 +#: extras/forms/model_forms.py:63 msgid "Specify query parameters as a JSON object." msgstr "Określ parametry zapytania jako obiekt JSON." -#: netbox/extras/forms/model_forms.py:73 -#: netbox/templates/extras/customfield.html:10 +#: extras/forms/model_forms.py:73 templates/extras/customfield.html:10 msgid "Custom Field" msgstr "Pole niestandardowe" -#: netbox/extras/forms/model_forms.py:85 +#: extras/forms/model_forms.py:85 msgid "" "The type of data stored in this field. For object/multi-object fields, " "select the related object type below." @@ -7944,7 +7395,7 @@ msgstr "" "Rodzaj danych przechowywanych w tym polu. W przypadku pól obiektu/wielu " "obiektów wybierz powiązany typ obiektu poniżej." -#: netbox/extras/forms/model_forms.py:88 +#: extras/forms/model_forms.py:88 msgid "" "This will be displayed as help text for the form field. Markdown is " "supported." @@ -7952,11 +7403,11 @@ msgstr "" "Zostanie wyświetlony jako tekst pomocy dla pola formularza. Markdown jest " "obsługiwany." -#: netbox/extras/forms/model_forms.py:143 +#: extras/forms/model_forms.py:143 msgid "Related Object" msgstr "Powiązany obiekt" -#: netbox/extras/forms/model_forms.py:169 +#: extras/forms/model_forms.py:169 msgid "" "Enter one choice per line. An optional label may be specified for each " "choice by appending it with a colon. Example:" @@ -7964,16 +7415,15 @@ msgstr "" "Wprowadź jeden wybór na linię. Opcjonalną etykietę można określić dla " "każdego wyboru, dodając ją dwukropkiem. Przykład:" -#: netbox/extras/forms/model_forms.py:212 -#: netbox/templates/extras/customlink.html:10 +#: extras/forms/model_forms.py:212 templates/extras/customlink.html:10 msgid "Custom Link" msgstr "Niestandardowe łącze" -#: netbox/extras/forms/model_forms.py:214 +#: extras/forms/model_forms.py:214 msgid "Templates" msgstr "Szablony" -#: netbox/extras/forms/model_forms.py:226 +#: extras/forms/model_forms.py:226 #, python-brace-format msgid "" "Jinja2 template code for the link text. Reference the object as {example}. " @@ -7982,66 +7432,60 @@ msgstr "" "Kod szablonu Jinja2 dla tekstu łącza. Odwołaj obiekt jako {example}. Linki " "renderowane jako pusty tekst nie będą wyświetlane." -#: netbox/extras/forms/model_forms.py:230 +#: extras/forms/model_forms.py:230 #, python-brace-format msgid "" "Jinja2 template code for the link URL. Reference the object as {example}." msgstr "" "Kod szablonu Jinja2 dla adresu URL linku. Odwołaj obiekt jako {example}." -#: netbox/extras/forms/model_forms.py:241 -#: netbox/extras/forms/model_forms.py:624 +#: extras/forms/model_forms.py:241 extras/forms/model_forms.py:624 msgid "Template code" msgstr "Kod szablonu" -#: netbox/extras/forms/model_forms.py:247 -#: netbox/templates/extras/exporttemplate.html:12 +#: extras/forms/model_forms.py:247 templates/extras/exporttemplate.html:12 msgid "Export Template" msgstr "Szablon eksportu" -#: netbox/extras/forms/model_forms.py:249 +#: extras/forms/model_forms.py:249 msgid "Rendering" msgstr "Renderowanie" -#: netbox/extras/forms/model_forms.py:263 -#: netbox/extras/forms/model_forms.py:649 +#: extras/forms/model_forms.py:263 extras/forms/model_forms.py:649 msgid "Template content is populated from the remote source selected below." msgstr "" "Zawartość szablonu jest wypełniana ze zdalnego źródła wybranego poniżej." -#: netbox/extras/forms/model_forms.py:270 -#: netbox/extras/forms/model_forms.py:656 +#: extras/forms/model_forms.py:270 extras/forms/model_forms.py:656 msgid "Must specify either local content or a data file" msgstr "Musi określić zawartość lokalną lub plik danych" -#: netbox/extras/forms/model_forms.py:284 netbox/netbox/forms/mixins.py:70 -#: netbox/templates/extras/savedfilter.html:10 +#: extras/forms/model_forms.py:284 netbox/forms/mixins.py:70 +#: templates/extras/savedfilter.html:10 msgid "Saved Filter" msgstr "Zapisany filtr" -#: netbox/extras/forms/model_forms.py:334 +#: extras/forms/model_forms.py:334 msgid "A notification group specify at least one user or group." msgstr "Grupa powiadomień określa co najmniej jednego użytkownika lub grupę." -#: netbox/extras/forms/model_forms.py:356 -#: netbox/templates/extras/webhook.html:23 +#: extras/forms/model_forms.py:356 templates/extras/webhook.html:23 msgid "HTTP Request" msgstr "Żądanie HTTP" -#: netbox/extras/forms/model_forms.py:358 -#: netbox/templates/extras/webhook.html:44 +#: extras/forms/model_forms.py:358 templates/extras/webhook.html:44 msgid "SSL" msgstr "SSL" -#: netbox/extras/forms/model_forms.py:380 +#: extras/forms/model_forms.py:380 msgid "Action choice" msgstr "Wybór działania" -#: netbox/extras/forms/model_forms.py:385 +#: extras/forms/model_forms.py:385 msgid "Enter conditions in JSON format." msgstr "Wprowadź warunki w JSON format." -#: netbox/extras/forms/model_forms.py:389 +#: extras/forms/model_forms.py:389 msgid "" "Enter parameters to pass to the action in JSON format." @@ -8049,112 +7493,110 @@ msgstr "" "Wprowadź parametry, które mają zostać przekazane do akcji w JSON format." -#: netbox/extras/forms/model_forms.py:394 -#: netbox/templates/extras/eventrule.html:10 +#: extras/forms/model_forms.py:394 templates/extras/eventrule.html:10 msgid "Event Rule" msgstr "Reguła zdarzenia" -#: netbox/extras/forms/model_forms.py:395 +#: extras/forms/model_forms.py:395 msgid "Triggers" msgstr "Wyzwalacze" -#: netbox/extras/forms/model_forms.py:442 +#: extras/forms/model_forms.py:442 msgid "Notification group" msgstr "Grupa powiadomień" -#: netbox/extras/forms/model_forms.py:562 netbox/netbox/navigation/menu.py:26 -#: netbox/tenancy/tables/tenants.py:22 +#: extras/forms/model_forms.py:562 netbox/navigation/menu.py:26 +#: tenancy/tables/tenants.py:22 msgid "Tenants" msgstr "Najemcy" -#: netbox/extras/forms/model_forms.py:606 +#: extras/forms/model_forms.py:606 msgid "Data is populated from the remote source selected below." msgstr "Dane są wypełniane ze zdalnego źródła wybranego poniżej." -#: netbox/extras/forms/model_forms.py:612 +#: extras/forms/model_forms.py:612 msgid "Must specify either local data or a data file" msgstr "Musi określić dane lokalne lub plik danych" -#: netbox/extras/forms/model_forms.py:631 -#: netbox/templates/core/datafile.html:55 +#: extras/forms/model_forms.py:631 templates/core/datafile.html:55 msgid "Content" msgstr "Zawartość" -#: netbox/extras/forms/reports.py:17 netbox/extras/forms/scripts.py:23 +#: extras/forms/reports.py:17 extras/forms/scripts.py:23 msgid "Schedule at" msgstr "Zaplanuj pod adresem" -#: netbox/extras/forms/reports.py:18 +#: extras/forms/reports.py:18 msgid "Schedule execution of report to a set time" msgstr "Zaplanuj wykonanie raportu na określony czas" -#: netbox/extras/forms/reports.py:23 netbox/extras/forms/scripts.py:29 +#: extras/forms/reports.py:23 extras/forms/scripts.py:29 msgid "Recurs every" msgstr "Powtarza się co" -#: netbox/extras/forms/reports.py:27 +#: extras/forms/reports.py:27 msgid "Interval at which this report is re-run (in minutes)" msgstr "Przedział, w którym raport jest ponownie uruchamiany (w minutach)" -#: netbox/extras/forms/reports.py:35 netbox/extras/forms/scripts.py:41 +#: extras/forms/reports.py:35 extras/forms/scripts.py:41 #, python-brace-format msgid " (current time: {now})" msgstr " (aktualny czas: {now})" -#: netbox/extras/forms/reports.py:45 netbox/extras/forms/scripts.py:51 +#: extras/forms/reports.py:45 extras/forms/scripts.py:51 msgid "Scheduled time must be in the future." msgstr "Zaplanowany czas musi być w przyszłości." -#: netbox/extras/forms/scripts.py:17 +#: extras/forms/scripts.py:17 msgid "Commit changes" msgstr "Zatwierdź zmiany" -#: netbox/extras/forms/scripts.py:18 +#: extras/forms/scripts.py:18 msgid "Commit changes to the database (uncheck for a dry-run)" msgstr "" "Zatwierdź zmiany w bazie danych (usuń zaznaczenie dla suchego uruchomienia)" -#: netbox/extras/forms/scripts.py:24 +#: extras/forms/scripts.py:24 msgid "Schedule execution of script to a set time" msgstr "Zaplanuj wykonanie skryptu na określony czas" -#: netbox/extras/forms/scripts.py:33 +#: extras/forms/scripts.py:33 msgid "Interval at which this script is re-run (in minutes)" msgstr "Interwał, w którym ten skrypt jest ponownie uruchamiany (w minutach)" -#: netbox/extras/jobs.py:49 +#: extras/jobs.py:49 msgid "Database changes have been reverted automatically." msgstr "Zmiany w bazie danych zostały wycofane automatycznie." -#: netbox/extras/jobs.py:56 +#: extras/jobs.py:55 msgid "Script aborted with error: " msgstr "Skrypt przerwany z błędem: " -#: netbox/extras/jobs.py:66 +#: extras/jobs.py:65 msgid "An exception occurred: " msgstr "Wystąpił wyjątek: " -#: netbox/extras/jobs.py:71 +#: extras/jobs.py:70 msgid "Database changes have been reverted due to error." msgstr "Zmiany bazy danych zostały cofnięte z powodu błędu." -#: netbox/extras/management/commands/reindex.py:66 +#: extras/management/commands/reindex.py:66 msgid "No indexers found!" msgstr "Nie znaleziono indeksatorów!" -#: netbox/extras/models/configs.py:130 +#: extras/models/configs.py:130 msgid "config context" msgstr "Kontekst konfiguracji" -#: netbox/extras/models/configs.py:131 +#: extras/models/configs.py:131 msgid "config contexts" msgstr "Konteksty konfiguracji" -#: netbox/extras/models/configs.py:149 netbox/extras/models/configs.py:205 +#: extras/models/configs.py:149 extras/models/configs.py:205 msgid "JSON data must be in object form. Example:" msgstr "Dane JSON muszą być w formie obiektu. Przykład:" -#: netbox/extras/models/configs.py:169 +#: extras/models/configs.py:169 msgid "" "Local config context data takes precedence over source contexts in the final" " rendered config context" @@ -8162,19 +7604,19 @@ msgstr "" "Lokalne dane kontekstowe konfiguracji mają pierwszeństwo przed kontekstami " "źródłowymi w ostatecznym renderowanym kontekście konfiguracji" -#: netbox/extras/models/configs.py:224 +#: extras/models/configs.py:224 msgid "template code" msgstr "kod szablonu" -#: netbox/extras/models/configs.py:225 +#: extras/models/configs.py:225 msgid "Jinja2 template code." msgstr "Kod szablonu Jinja2." -#: netbox/extras/models/configs.py:228 +#: extras/models/configs.py:228 msgid "environment parameters" msgstr "parametry środowiska" -#: netbox/extras/models/configs.py:233 +#: extras/models/configs.py:233 msgid "" "Any additional" @@ -8184,40 +7626,40 @@ msgstr "" "href=\"https://jinja.palletsprojects.com/en/3.1.x/api/#jinja2.Environment\">dodatkowe" " parametry do przejścia podczas konstruowania środowiska Jinja2." -#: netbox/extras/models/configs.py:240 +#: extras/models/configs.py:240 msgid "config template" msgstr "szablon konfiguracji" -#: netbox/extras/models/configs.py:241 +#: extras/models/configs.py:241 msgid "config templates" msgstr "szablony konfiguracji" -#: netbox/extras/models/customfields.py:75 +#: extras/models/customfields.py:75 msgid "The object(s) to which this field applies." msgstr "Obiekt (-y), do którego dotyczy to pole." -#: netbox/extras/models/customfields.py:82 +#: extras/models/customfields.py:82 msgid "The type of data this custom field holds" msgstr "Typ danych przechowywanych w tym polu niestandardowym" -#: netbox/extras/models/customfields.py:89 +#: extras/models/customfields.py:89 msgid "The type of NetBox object this field maps to (for object fields)" msgstr "Typ obiektu NetBox, do którego mapuje to pole (dla pól obiektowych)" -#: netbox/extras/models/customfields.py:95 +#: extras/models/customfields.py:95 msgid "Internal field name" msgstr "Nazwa pola wewnętrznego" -#: netbox/extras/models/customfields.py:99 +#: extras/models/customfields.py:99 msgid "Only alphanumeric characters and underscores are allowed." msgstr "Dozwolone są tylko znaki alfanumeryczne i podkreślenia." -#: netbox/extras/models/customfields.py:104 +#: extras/models/customfields.py:104 msgid "Double underscores are not permitted in custom field names." msgstr "" "Podwójne podkreślenia nie są dozwolone w niestandardowych nazwach pól." -#: netbox/extras/models/customfields.py:115 +#: extras/models/customfields.py:115 msgid "" "Name of the field as displayed to users (if not provided, 'the field's name " "will be used)" @@ -8225,19 +7667,19 @@ msgstr "" "Nazwa pola wyświetlana użytkownikom (jeśli nie zostanie podana, zostanie " "użyta nazwa pola)" -#: netbox/extras/models/customfields.py:119 netbox/extras/models/models.py:317 +#: extras/models/customfields.py:119 extras/models/models.py:317 msgid "group name" msgstr "nazwa grupy" -#: netbox/extras/models/customfields.py:122 +#: extras/models/customfields.py:122 msgid "Custom fields within the same group will be displayed together" msgstr "Pola niestandardowe w tej samej grupie będą wyświetlane razem" -#: netbox/extras/models/customfields.py:130 +#: extras/models/customfields.py:130 msgid "required" msgstr "wymagane" -#: netbox/extras/models/customfields.py:132 +#: extras/models/customfields.py:132 msgid "" "This field is required when creating new objects or editing an existing " "object." @@ -8245,19 +7687,19 @@ msgstr "" "To pole jest wymagane podczas tworzenia nowych obiektów lub edycji " "istniejącego obiektu." -#: netbox/extras/models/customfields.py:135 +#: extras/models/customfields.py:135 msgid "must be unique" msgstr "musi być wyjątkowy" -#: netbox/extras/models/customfields.py:137 +#: extras/models/customfields.py:137 msgid "The value of this field must be unique for the assigned object" msgstr "Wartość tego pola musi być niepowtarzalna dla przypisanego obiektu" -#: netbox/extras/models/customfields.py:140 +#: extras/models/customfields.py:140 msgid "search weight" msgstr "waga wyszukiwania" -#: netbox/extras/models/customfields.py:143 +#: extras/models/customfields.py:143 msgid "" "Weighting for search. Lower values are considered more important. Fields " "with a search weight of zero will be ignored." @@ -8265,11 +7707,11 @@ msgstr "" "Ważenie do wyszukiwania. Niższe wartości są uważane za ważniejsze. Pola o " "wadze wyszukiwania równej zero zostaną zignorowane." -#: netbox/extras/models/customfields.py:148 +#: extras/models/customfields.py:148 msgid "filter logic" msgstr "logika filtra" -#: netbox/extras/models/customfields.py:152 +#: extras/models/customfields.py:152 msgid "" "Loose matches any instance of a given string; exact matches the entire " "field." @@ -8277,11 +7719,11 @@ msgstr "" "Luźna pasuje do dowolnego wystąpienia danego ciągu; dokładnie pasuje do " "całego pola." -#: netbox/extras/models/customfields.py:155 +#: extras/models/customfields.py:155 msgid "default" msgstr "domyślny" -#: netbox/extras/models/customfields.py:159 +#: extras/models/customfields.py:159 msgid "" "Default value for the field (must be a JSON value). Encapsulate strings with" " double quotes (e.g. \"Foo\")." @@ -8289,7 +7731,7 @@ msgstr "" "Wartość domyślna dla pola (musi być wartością JSON). Enkapsuluj ciągi z " "podwójnymi cudzysłowami (np. „Foo”)." -#: netbox/extras/models/customfields.py:166 +#: extras/models/customfields.py:166 msgid "" "Filter the object selection choices using a query_params dict (must be a " "JSON value).Encapsulate strings with double quotes (e.g. \"Foo\")." @@ -8298,35 +7740,35 @@ msgstr "" "wartością JSON). Enkapsuluj ciągi znaków z podwójnymi cudzysłowami (np. " "„Foo”)." -#: netbox/extras/models/customfields.py:172 +#: extras/models/customfields.py:172 msgid "display weight" msgstr "waga wyświetlacza" -#: netbox/extras/models/customfields.py:173 +#: extras/models/customfields.py:173 msgid "Fields with higher weights appear lower in a form." msgstr "Pola o większej wadze wydają się niższe w formularzu." -#: netbox/extras/models/customfields.py:178 +#: extras/models/customfields.py:178 msgid "minimum value" msgstr "wartość minimalna" -#: netbox/extras/models/customfields.py:179 +#: extras/models/customfields.py:179 msgid "Minimum allowed value (for numeric fields)" msgstr "Minimalna dopuszczalna wartość (dla pól numerycznych)" -#: netbox/extras/models/customfields.py:184 +#: extras/models/customfields.py:184 msgid "maximum value" msgstr "maksymalna wartość" -#: netbox/extras/models/customfields.py:185 +#: extras/models/customfields.py:185 msgid "Maximum allowed value (for numeric fields)" msgstr "Maksymalna dopuszczalna wartość (dla pól numerycznych)" -#: netbox/extras/models/customfields.py:191 +#: extras/models/customfields.py:191 msgid "validation regex" msgstr "walidacja regex" -#: netbox/extras/models/customfields.py:193 +#: extras/models/customfields.py:193 #, python-brace-format msgid "" "Regular expression to enforce on text field values. Use ^ and $ to force " @@ -8337,193 +7779,191 @@ msgstr "" "wymusić dopasowanie całego ciągu. Na przykład, ^ [A-Z]{3}$ " "ograniczy wartości do dokładnie trzech wielkich liter." -#: netbox/extras/models/customfields.py:201 +#: extras/models/customfields.py:201 msgid "choice set" msgstr "zestaw wyboru" -#: netbox/extras/models/customfields.py:210 +#: extras/models/customfields.py:210 msgid "Specifies whether the custom field is displayed in the UI" msgstr "" "Określa, czy pole niestandardowe jest wyświetlane w interfejsie użytkownika" -#: netbox/extras/models/customfields.py:217 +#: extras/models/customfields.py:217 msgid "Specifies whether the custom field value can be edited in the UI" msgstr "" "Określa, czy wartość pola niestandardowego może być edytowana w interfejsie " "użytkownika" -#: netbox/extras/models/customfields.py:221 +#: extras/models/customfields.py:221 msgid "is cloneable" msgstr "jest klonowalny" -#: netbox/extras/models/customfields.py:222 +#: extras/models/customfields.py:222 msgid "Replicate this value when cloning objects" msgstr "Powtórz tę wartość podczas klonowania obiektów" -#: netbox/extras/models/customfields.py:239 +#: extras/models/customfields.py:239 msgid "custom field" msgstr "pole niestandardowe" -#: netbox/extras/models/customfields.py:240 +#: extras/models/customfields.py:240 msgid "custom fields" msgstr "pola niestandardowe" -#: netbox/extras/models/customfields.py:329 +#: extras/models/customfields.py:329 #, python-brace-format msgid "Invalid default value \"{value}\": {error}" msgstr "Nieprawidłowa wartość domyślna”{value}„: {error}" -#: netbox/extras/models/customfields.py:336 +#: extras/models/customfields.py:336 msgid "A minimum value may be set only for numeric fields" msgstr "Wartość minimalna może być ustawiona tylko dla pól numerycznych" -#: netbox/extras/models/customfields.py:338 +#: extras/models/customfields.py:338 msgid "A maximum value may be set only for numeric fields" msgstr "Maksymalna wartość może być ustawiona tylko dla pól liczbowych" -#: netbox/extras/models/customfields.py:348 +#: extras/models/customfields.py:348 msgid "" "Regular expression validation is supported only for text and URL fields" msgstr "" "Walidacja wyrażeń regularnych jest obsługiwana tylko dla pól tekstowych i " "URL" -#: netbox/extras/models/customfields.py:354 +#: extras/models/customfields.py:354 msgid "Uniqueness cannot be enforced for boolean fields" msgstr "Unikalność nie może być egzekwowana dla pól logicznych" -#: netbox/extras/models/customfields.py:364 +#: extras/models/customfields.py:364 msgid "Selection fields must specify a set of choices." msgstr "Pola wyboru muszą określać zestaw opcji." -#: netbox/extras/models/customfields.py:368 +#: extras/models/customfields.py:368 msgid "Choices may be set only on selection fields." msgstr "Opcje można ustawić tylko w polach wyboru." -#: netbox/extras/models/customfields.py:375 +#: extras/models/customfields.py:375 msgid "Object fields must define an object type." msgstr "Pola obiektu muszą definiować typ obiektu." -#: netbox/extras/models/customfields.py:379 +#: extras/models/customfields.py:379 #, python-brace-format msgid "{type} fields may not define an object type." msgstr "{type} pola mogą nie definiować typu obiektu." -#: netbox/extras/models/customfields.py:386 +#: extras/models/customfields.py:386 msgid "A related object filter can be defined only for object fields." msgstr "Powiązany filtr obiektów można zdefiniować tylko dla pól obiektu." -#: netbox/extras/models/customfields.py:390 +#: extras/models/customfields.py:390 msgid "Filter must be defined as a dictionary mapping attributes to values." msgstr "" "Filtr musi być zdefiniowany jako słownik mapowania atrybutów do wartości." -#: netbox/extras/models/customfields.py:469 +#: extras/models/customfields.py:469 msgid "True" msgstr "Prawda" -#: netbox/extras/models/customfields.py:470 +#: extras/models/customfields.py:470 msgid "False" msgstr "Fałszywe" -#: netbox/extras/models/customfields.py:560 +#: extras/models/customfields.py:560 #, python-brace-format msgid "Values must match this regex: {regex}" msgstr "Wartości muszą być zgodne z tym regex: {regex}" -#: netbox/extras/models/customfields.py:654 +#: extras/models/customfields.py:654 msgid "Value must be a string." msgstr "Wartość musi być ciągiem." -#: netbox/extras/models/customfields.py:656 +#: extras/models/customfields.py:656 #, python-brace-format msgid "Value must match regex '{regex}'" msgstr "Wartość musi być zgodna z regex '{regex}”" -#: netbox/extras/models/customfields.py:661 +#: extras/models/customfields.py:661 msgid "Value must be an integer." msgstr "Wartość musi być liczbą całkowitą." -#: netbox/extras/models/customfields.py:664 -#: netbox/extras/models/customfields.py:679 +#: extras/models/customfields.py:664 extras/models/customfields.py:679 #, python-brace-format msgid "Value must be at least {minimum}" msgstr "Wartość musi być co najmniej {minimum}" -#: netbox/extras/models/customfields.py:668 -#: netbox/extras/models/customfields.py:683 +#: extras/models/customfields.py:668 extras/models/customfields.py:683 #, python-brace-format msgid "Value must not exceed {maximum}" msgstr "Wartość nie może przekraczać {maximum}" -#: netbox/extras/models/customfields.py:676 +#: extras/models/customfields.py:676 msgid "Value must be a decimal." msgstr "Wartość musi być dziesiętna." -#: netbox/extras/models/customfields.py:688 +#: extras/models/customfields.py:688 msgid "Value must be true or false." msgstr "Wartość musi być prawdziwa lub fałszywa." -#: netbox/extras/models/customfields.py:696 +#: extras/models/customfields.py:696 msgid "Date values must be in ISO 8601 format (YYYY-MM-DD)." msgstr "Wartości dat muszą być w formacie ISO 8601 (RRRR-MM-DD)." -#: netbox/extras/models/customfields.py:705 +#: extras/models/customfields.py:705 msgid "Date and time values must be in ISO 8601 format (YYYY-MM-DD HH:MM:SS)." msgstr "" "Wartości daty i godziny muszą być zgodne z normą ISO 8601 (RRRR-MM-DD " "HH:MM:SS)." -#: netbox/extras/models/customfields.py:712 +#: extras/models/customfields.py:712 #, python-brace-format msgid "Invalid choice ({value}) for choice set {choiceset}." msgstr "Nieprawidłowy wybór ({value}) do wyboru zestawu {choiceset}." -#: netbox/extras/models/customfields.py:722 +#: extras/models/customfields.py:722 #, python-brace-format msgid "Invalid choice(s) ({value}) for choice set {choiceset}." msgstr "Nieprawidłowy wybór (y) ({value}) do wyboru zestawu {choiceset}." -#: netbox/extras/models/customfields.py:731 +#: extras/models/customfields.py:731 #, python-brace-format msgid "Value must be an object ID, not {type}" msgstr "Wartość musi być identyfikatorem obiektu, a nie {type}" -#: netbox/extras/models/customfields.py:737 +#: extras/models/customfields.py:737 #, python-brace-format msgid "Value must be a list of object IDs, not {type}" msgstr "Wartość musi być listą identyfikatorów obiektów, a nie {type}" -#: netbox/extras/models/customfields.py:741 +#: extras/models/customfields.py:741 #, python-brace-format msgid "Found invalid object ID: {id}" msgstr "Znaleziono nieprawidłowy identyfikator obiektu: {id}" -#: netbox/extras/models/customfields.py:744 +#: extras/models/customfields.py:744 msgid "Required field cannot be empty." msgstr "Pole wymagane nie może być puste." -#: netbox/extras/models/customfields.py:763 +#: extras/models/customfields.py:763 msgid "Base set of predefined choices (optional)" msgstr "Podstawowy zestaw predefiniowanych opcji (opcjonalnie)" -#: netbox/extras/models/customfields.py:775 +#: extras/models/customfields.py:775 msgid "Choices are automatically ordered alphabetically" msgstr "Wybory są automatycznie uporządkowane alfabetycznie" -#: netbox/extras/models/customfields.py:782 +#: extras/models/customfields.py:782 msgid "custom field choice set" msgstr "niestandardowy zestaw wyboru pola" -#: netbox/extras/models/customfields.py:783 +#: extras/models/customfields.py:783 msgid "custom field choice sets" msgstr "niestandardowe zestawy wyboru pól" -#: netbox/extras/models/customfields.py:825 +#: extras/models/customfields.py:825 msgid "Must define base or extra choices." msgstr "Musi zdefiniować opcje bazowe lub dodatkowe." -#: netbox/extras/models/customfields.py:849 +#: extras/models/customfields.py:849 #, python-brace-format msgid "" "Cannot remove choice {choice} as there are {model} objects which reference " @@ -8532,61 +7972,61 @@ msgstr "" "Nie można usunąć wyboru {choice} tak jak są {model} Obiekty, które się do " "niego odnoszą." -#: netbox/extras/models/dashboard.py:18 +#: extras/models/dashboard.py:18 msgid "layout" msgstr "układ" -#: netbox/extras/models/dashboard.py:22 +#: extras/models/dashboard.py:22 msgid "config" msgstr "konfiguruj" -#: netbox/extras/models/dashboard.py:27 +#: extras/models/dashboard.py:27 msgid "dashboard" msgstr "deska rozdzielcza" -#: netbox/extras/models/dashboard.py:28 +#: extras/models/dashboard.py:28 msgid "dashboards" msgstr "pulpity nawigacyjne" -#: netbox/extras/models/models.py:52 +#: extras/models/models.py:52 msgid "object types" msgstr "typy obiektów" -#: netbox/extras/models/models.py:53 +#: extras/models/models.py:53 msgid "The object(s) to which this rule applies." msgstr "Obiekt (-y), do którego ma zastosowanie ta reguła." -#: netbox/extras/models/models.py:67 +#: extras/models/models.py:67 msgid "The types of event which will trigger this rule." msgstr "Rodzaje zdarzeń, które wyzwalają tę regułę." -#: netbox/extras/models/models.py:74 +#: extras/models/models.py:74 msgid "conditions" msgstr "warunki" -#: netbox/extras/models/models.py:77 +#: extras/models/models.py:77 msgid "" "A set of conditions which determine whether the event will be generated." msgstr "" "Zestaw warunków decydujących o tym, czy zdarzenie zostanie wygenerowane." -#: netbox/extras/models/models.py:85 +#: extras/models/models.py:85 msgid "action type" msgstr "typ działania" -#: netbox/extras/models/models.py:104 +#: extras/models/models.py:104 msgid "Additional data to pass to the action object" msgstr "Dodatkowe dane do przekazania do obiektu akcji" -#: netbox/extras/models/models.py:116 +#: extras/models/models.py:116 msgid "event rule" msgstr "reguła zdarzenia" -#: netbox/extras/models/models.py:117 +#: extras/models/models.py:117 msgid "event rules" msgstr "zasady zdarzeń" -#: netbox/extras/models/models.py:166 +#: extras/models/models.py:166 msgid "" "This URL will be called using the HTTP method defined when the webhook is " "called. Jinja2 template processing is supported with the same context as the" @@ -8596,7 +8036,7 @@ msgstr "" "podczas wywołania webhook. Przetwarzanie szablonu Jinja2 jest obsługiwane w " "tym samym kontekście co treść żądania." -#: netbox/extras/models/models.py:181 +#: extras/models/models.py:181 msgid "" "The complete list of official content types is available tutaj." -#: netbox/extras/models/models.py:186 +#: extras/models/models.py:186 msgid "additional headers" msgstr "dodatkowe nagłówki" -#: netbox/extras/models/models.py:189 +#: extras/models/models.py:189 msgid "" "User-supplied HTTP headers to be sent with the request in addition to the " "HTTP content type. Headers should be defined in the format Name: " @@ -8622,11 +8062,11 @@ msgstr "" "formacie Nazwa: Value. Przetwarzanie szablonu Jinja2 jest " "obsługiwane w tym samym kontekście co treść żądania (poniżej)." -#: netbox/extras/models/models.py:195 +#: extras/models/models.py:195 msgid "body template" msgstr "szablon ciała" -#: netbox/extras/models/models.py:198 +#: extras/models/models.py:198 msgid "" "Jinja2 template for a custom request body. If blank, a JSON object " "representing the change will be included. Available context data includes: " @@ -8639,11 +8079,11 @@ msgstr "" "znacznik czasu, nazwa użytkownika, " "Identyfikator żądania, i dane." -#: netbox/extras/models/models.py:204 +#: extras/models/models.py:204 msgid "secret" msgstr "tajemnica" -#: netbox/extras/models/models.py:208 +#: extras/models/models.py:208 msgid "" "When provided, the request will include a X-Hook-Signature " "header containing a HMAC hex digest of the payload body using the secret as " @@ -8653,15 +8093,15 @@ msgstr "" "zawierający podsumowanie heksadecymalne HMAC korpusu ładunku użytkowego " "używającego sekretu jako klucza. Tajemnica nie jest przekazywana w żądaniu." -#: netbox/extras/models/models.py:215 +#: extras/models/models.py:215 msgid "Enable SSL certificate verification. Disable with caution!" msgstr "Włącz weryfikację certyfikatu SSL. Wyłącz ostrożnie!" -#: netbox/extras/models/models.py:221 netbox/templates/extras/webhook.html:51 +#: extras/models/models.py:221 templates/extras/webhook.html:51 msgid "CA File Path" msgstr "Ścieżka pliku CA" -#: netbox/extras/models/models.py:223 +#: extras/models/models.py:223 msgid "" "The specific CA certificate file to use for SSL verification. Leave blank to" " use the system defaults." @@ -8669,64 +8109,64 @@ msgstr "" "Określony plik certyfikatu CA, który ma być używany do weryfikacji SSL. " "Pozostaw puste miejsce, aby użyć ustawień domyślnych systemu." -#: netbox/extras/models/models.py:234 +#: extras/models/models.py:234 msgid "webhook" msgstr "haczyk internetowy" -#: netbox/extras/models/models.py:235 +#: extras/models/models.py:235 msgid "webhooks" msgstr "haczyki internetowe" -#: netbox/extras/models/models.py:253 +#: extras/models/models.py:253 msgid "Do not specify a CA certificate file if SSL verification is disabled." msgstr "" "Nie określaj pliku certyfikatu CA, jeśli weryfikacja SSL jest wyłączona." -#: netbox/extras/models/models.py:293 +#: extras/models/models.py:293 msgid "The object type(s) to which this link applies." msgstr "Typ obiektu (-y), do którego dotyczy to łącze." -#: netbox/extras/models/models.py:305 +#: extras/models/models.py:305 msgid "link text" msgstr "tekst linku" -#: netbox/extras/models/models.py:306 +#: extras/models/models.py:306 msgid "Jinja2 template code for link text" msgstr "Kod szablonu Jinja2 dla tekstu linku" -#: netbox/extras/models/models.py:309 +#: extras/models/models.py:309 msgid "link URL" msgstr "URL linku" -#: netbox/extras/models/models.py:310 +#: extras/models/models.py:310 msgid "Jinja2 template code for link URL" msgstr "Kod szablonu Jinja2 dla adresu URL linku" -#: netbox/extras/models/models.py:320 +#: extras/models/models.py:320 msgid "Links with the same group will appear as a dropdown menu" msgstr "Linki z tą samą grupą pojawią się jako menu rozwijane" -#: netbox/extras/models/models.py:330 +#: extras/models/models.py:330 msgid "new window" msgstr "nowe okno" -#: netbox/extras/models/models.py:332 +#: extras/models/models.py:332 msgid "Force link to open in a new window" msgstr "Wymuś otwarcie łącza w nowym oknie" -#: netbox/extras/models/models.py:341 +#: extras/models/models.py:341 msgid "custom link" msgstr "niestandardowy link" -#: netbox/extras/models/models.py:342 +#: extras/models/models.py:342 msgid "custom links" msgstr "niestandardowe linki" -#: netbox/extras/models/models.py:389 +#: extras/models/models.py:389 msgid "The object type(s) to which this template applies." msgstr "Typ obiektu, do którego ma zastosowanie ten szablon." -#: netbox/extras/models/models.py:402 +#: extras/models/models.py:402 msgid "" "Jinja2 template code. The list of objects being exported is passed as a " "context variable named queryset." @@ -8734,1089 +8174,1054 @@ msgstr "" "Kod szablonu Jinja2. Lista eksportowanych obiektów jest przekazywana jako " "zmienna kontekstowa o nazwie zestaw zapytań." -#: netbox/extras/models/models.py:410 +#: extras/models/models.py:410 msgid "Defaults to text/plain; charset=utf-8" msgstr "Domyślnie tekst/zwykły; charset = utf-8" -#: netbox/extras/models/models.py:413 +#: extras/models/models.py:413 msgid "file extension" msgstr "rozszerzenie pliku" -#: netbox/extras/models/models.py:416 +#: extras/models/models.py:416 msgid "Extension to append to the rendered filename" msgstr "Rozszerzenie do dołączenia do renderowanej nazwy pliku" -#: netbox/extras/models/models.py:419 +#: extras/models/models.py:419 msgid "as attachment" msgstr "jako załącznik" -#: netbox/extras/models/models.py:421 +#: extras/models/models.py:421 msgid "Download file as attachment" msgstr "Pobierz plik jako załącznik" -#: netbox/extras/models/models.py:430 +#: extras/models/models.py:430 msgid "export template" msgstr "szablon eksportu" -#: netbox/extras/models/models.py:431 +#: extras/models/models.py:431 msgid "export templates" msgstr "szablony eksportu" -#: netbox/extras/models/models.py:448 +#: extras/models/models.py:448 #, python-brace-format msgid "\"{name}\" is a reserved name. Please choose a different name." msgstr "„{name}„jest zastrzeżoną nazwą. Proszę wybrać inną nazwę." -#: netbox/extras/models/models.py:498 +#: extras/models/models.py:498 msgid "The object type(s) to which this filter applies." msgstr "Typ obiektu (-y), do którego ma zastosowanie ten filtr." -#: netbox/extras/models/models.py:530 +#: extras/models/models.py:530 msgid "shared" msgstr "wspólne" -#: netbox/extras/models/models.py:543 +#: extras/models/models.py:543 msgid "saved filter" msgstr "zapisany filtr" -#: netbox/extras/models/models.py:544 +#: extras/models/models.py:544 msgid "saved filters" msgstr "zapisane filtry" -#: netbox/extras/models/models.py:562 +#: extras/models/models.py:562 msgid "Filter parameters must be stored as a dictionary of keyword arguments." msgstr "" "Parametry filtra muszą być przechowywane jako słownik argumentów słów " "kluczowych." -#: netbox/extras/models/models.py:590 +#: extras/models/models.py:590 msgid "image height" msgstr "wysokość obrazu" -#: netbox/extras/models/models.py:593 +#: extras/models/models.py:593 msgid "image width" msgstr "szerokość obrazu" -#: netbox/extras/models/models.py:610 +#: extras/models/models.py:610 msgid "image attachment" msgstr "załącznik do obrazu" -#: netbox/extras/models/models.py:611 +#: extras/models/models.py:611 msgid "image attachments" msgstr "załączniki do obrazów" -#: netbox/extras/models/models.py:625 +#: extras/models/models.py:625 #, python-brace-format msgid "Image attachments cannot be assigned to this object type ({type})." msgstr "" "Załączniki obrazów nie mogą być przypisane do tego typu obiektu ({type})." -#: netbox/extras/models/models.py:688 +#: extras/models/models.py:688 msgid "kind" msgstr "rodzaj" -#: netbox/extras/models/models.py:702 +#: extras/models/models.py:702 msgid "journal entry" msgstr "wpis do dziennika" -#: netbox/extras/models/models.py:703 +#: extras/models/models.py:703 msgid "journal entries" msgstr "wpisy do dziennika" -#: netbox/extras/models/models.py:718 +#: extras/models/models.py:718 #, python-brace-format msgid "Journaling is not supported for this object type ({type})." msgstr "Rejestracja nie jest obsługiwana dla tego typu obiektu ({type})." -#: netbox/extras/models/models.py:760 +#: extras/models/models.py:760 msgid "bookmark" msgstr "zakładka" -#: netbox/extras/models/models.py:761 +#: extras/models/models.py:761 msgid "bookmarks" msgstr "zakładki" -#: netbox/extras/models/models.py:774 +#: extras/models/models.py:774 #, python-brace-format msgid "Bookmarks cannot be assigned to this object type ({type})." msgstr "Zakładki nie mogą być przypisane do tego typu obiektu ({type})." -#: netbox/extras/models/notifications.py:43 +#: extras/models/notifications.py:43 msgid "read" msgstr "przeczytać" -#: netbox/extras/models/notifications.py:66 +#: extras/models/notifications.py:66 msgid "event" msgstr "zdarzenie" -#: netbox/extras/models/notifications.py:84 +#: extras/models/notifications.py:84 msgid "notification" msgstr "powiadomienie" -#: netbox/extras/models/notifications.py:85 +#: extras/models/notifications.py:85 msgid "notifications" msgstr "powiadomienia" -#: netbox/extras/models/notifications.py:99 -#: netbox/extras/models/notifications.py:234 +#: extras/models/notifications.py:99 extras/models/notifications.py:234 #, python-brace-format msgid "Objects of this type ({type}) do not support notifications." msgstr "Obiekty tego typu ({type}) nie obsługują powiadomień." -#: netbox/extras/models/notifications.py:137 netbox/users/models/users.py:58 -#: netbox/users/models/users.py:77 +#: extras/models/notifications.py:137 users/models/users.py:58 +#: users/models/users.py:77 msgid "groups" msgstr "grupy" -#: netbox/extras/models/notifications.py:143 netbox/users/models/users.py:93 +#: extras/models/notifications.py:143 users/models/users.py:93 msgid "users" msgstr "użytkownicy" -#: netbox/extras/models/notifications.py:152 +#: extras/models/notifications.py:152 msgid "notification group" msgstr "grupa powiadomień" -#: netbox/extras/models/notifications.py:153 +#: extras/models/notifications.py:153 msgid "notification groups" msgstr "grupy powiadomień" -#: netbox/extras/models/notifications.py:217 +#: extras/models/notifications.py:217 msgid "subscription" msgstr "subskrypcja" -#: netbox/extras/models/notifications.py:218 +#: extras/models/notifications.py:218 msgid "subscriptions" msgstr "subskrypcje" -#: netbox/extras/models/scripts.py:42 +#: extras/models/scripts.py:42 msgid "is executable" msgstr "jest wykonywalny" -#: netbox/extras/models/scripts.py:64 +#: extras/models/scripts.py:64 msgid "script" msgstr "scenariusz" -#: netbox/extras/models/scripts.py:65 +#: extras/models/scripts.py:65 msgid "scripts" msgstr "scenariusze" -#: netbox/extras/models/scripts.py:111 +#: extras/models/scripts.py:111 msgid "script module" msgstr "moduł skryptu" -#: netbox/extras/models/scripts.py:112 +#: extras/models/scripts.py:112 msgid "script modules" msgstr "moduły skryptowe" -#: netbox/extras/models/search.py:22 +#: extras/models/search.py:22 msgid "timestamp" msgstr "znacznik czasu" -#: netbox/extras/models/search.py:37 +#: extras/models/search.py:37 msgid "field" msgstr "pole" -#: netbox/extras/models/search.py:45 +#: extras/models/search.py:45 msgid "value" msgstr "wartość" -#: netbox/extras/models/search.py:56 +#: extras/models/search.py:56 msgid "cached value" msgstr "wartość buforowana" -#: netbox/extras/models/search.py:57 +#: extras/models/search.py:57 msgid "cached values" msgstr "wartości buforowane" -#: netbox/extras/models/staging.py:44 +#: extras/models/staging.py:44 msgid "branch" msgstr "oddział" -#: netbox/extras/models/staging.py:45 +#: extras/models/staging.py:45 msgid "branches" msgstr "oddziałów" -#: netbox/extras/models/staging.py:97 +#: extras/models/staging.py:97 msgid "staged change" msgstr "zmiana etapowa" -#: netbox/extras/models/staging.py:98 +#: extras/models/staging.py:98 msgid "staged changes" msgstr "zmiany etapowe" -#: netbox/extras/models/tags.py:40 +#: extras/models/tags.py:40 msgid "The object type(s) to which this tag can be applied." msgstr "Typ obiektu, do którego można zastosować ten znacznik." -#: netbox/extras/models/tags.py:49 +#: extras/models/tags.py:49 msgid "tag" msgstr "metka" -#: netbox/extras/models/tags.py:50 +#: extras/models/tags.py:50 msgid "tags" msgstr "znakuje" -#: netbox/extras/models/tags.py:78 +#: extras/models/tags.py:78 msgid "tagged item" msgstr "przedmiot oznaczony" -#: netbox/extras/models/tags.py:79 +#: extras/models/tags.py:79 msgid "tagged items" msgstr "przedmioty oznaczone" -#: netbox/extras/scripts.py:429 +#: extras/scripts.py:429 msgid "Script Data" msgstr "Dane skryptu" -#: netbox/extras/scripts.py:433 +#: extras/scripts.py:433 msgid "Script Execution Parameters" msgstr "Parametry wykonywania skryptów" -#: netbox/extras/tables/columns.py:12 -#: netbox/templates/htmx/notifications.html:18 +#: extras/tables/columns.py:12 templates/htmx/notifications.html:18 msgid "Dismiss" msgstr "Odrzucić" -#: netbox/extras/tables/tables.py:62 netbox/extras/tables/tables.py:159 -#: netbox/extras/tables/tables.py:184 netbox/extras/tables/tables.py:250 -#: netbox/extras/tables/tables.py:276 netbox/extras/tables/tables.py:412 -#: netbox/extras/tables/tables.py:446 -#: netbox/templates/extras/customfield.html:105 -#: netbox/templates/extras/eventrule.html:27 -#: netbox/templates/users/objectpermission.html:64 netbox/users/tables.py:80 +#: extras/tables/tables.py:62 extras/tables/tables.py:159 +#: extras/tables/tables.py:184 extras/tables/tables.py:250 +#: extras/tables/tables.py:276 extras/tables/tables.py:412 +#: extras/tables/tables.py:446 templates/extras/customfield.html:105 +#: templates/extras/eventrule.html:27 templates/users/objectpermission.html:64 +#: users/tables.py:80 msgid "Object Types" msgstr "Typy obiektów" -#: netbox/extras/tables/tables.py:69 +#: extras/tables/tables.py:69 msgid "Validate Uniqueness" msgstr "Potwierdź wyjątkowość" -#: netbox/extras/tables/tables.py:73 +#: extras/tables/tables.py:73 msgid "Visible" msgstr "Widoczne" -#: netbox/extras/tables/tables.py:76 +#: extras/tables/tables.py:76 msgid "Editable" msgstr "Edytowalny" -#: netbox/extras/tables/tables.py:82 +#: extras/tables/tables.py:82 msgid "Related Object Type" msgstr "Powiązany typ obiektu" -#: netbox/extras/tables/tables.py:86 -#: netbox/templates/extras/customfield.html:51 +#: extras/tables/tables.py:86 templates/extras/customfield.html:51 msgid "Choice Set" msgstr "Zestaw wyboru" -#: netbox/extras/tables/tables.py:94 +#: extras/tables/tables.py:94 msgid "Is Cloneable" msgstr "Jest klonowalny" -#: netbox/extras/tables/tables.py:98 -#: netbox/templates/extras/customfield.html:118 +#: extras/tables/tables.py:98 templates/extras/customfield.html:118 msgid "Minimum Value" msgstr "Minimalna wartość" -#: netbox/extras/tables/tables.py:101 -#: netbox/templates/extras/customfield.html:122 +#: extras/tables/tables.py:101 templates/extras/customfield.html:122 msgid "Maximum Value" msgstr "Maksymalna wartość" -#: netbox/extras/tables/tables.py:104 +#: extras/tables/tables.py:104 msgid "Validation Regex" msgstr "Walidacja Regex" -#: netbox/extras/tables/tables.py:137 +#: extras/tables/tables.py:137 msgid "Count" msgstr "Policz" -#: netbox/extras/tables/tables.py:140 +#: extras/tables/tables.py:140 msgid "Order Alphabetically" msgstr "Uporządkuj alfabetycznie" -#: netbox/extras/tables/tables.py:165 -#: netbox/templates/extras/customlink.html:33 +#: extras/tables/tables.py:165 templates/extras/customlink.html:33 msgid "New Window" msgstr "Nowe okno" -#: netbox/extras/tables/tables.py:187 +#: extras/tables/tables.py:187 msgid "As Attachment" msgstr "Jako załącznik" -#: netbox/extras/tables/tables.py:195 netbox/extras/tables/tables.py:487 -#: netbox/extras/tables/tables.py:522 netbox/templates/core/datafile.html:24 -#: netbox/templates/dcim/device/render_config.html:22 -#: netbox/templates/extras/configcontext.html:39 -#: netbox/templates/extras/configtemplate.html:31 -#: netbox/templates/extras/exporttemplate.html:45 -#: netbox/templates/generic/bulk_import.html:35 -#: netbox/templates/virtualization/virtualmachine/render_config.html:22 +#: extras/tables/tables.py:195 extras/tables/tables.py:487 +#: extras/tables/tables.py:522 templates/core/datafile.html:24 +#: templates/dcim/device/render_config.html:22 +#: templates/extras/configcontext.html:39 +#: templates/extras/configtemplate.html:31 +#: templates/extras/exporttemplate.html:45 +#: templates/generic/bulk_import.html:35 +#: templates/virtualization/virtualmachine/render_config.html:22 msgid "Data File" msgstr "Plik danych" -#: netbox/extras/tables/tables.py:200 netbox/extras/tables/tables.py:499 -#: netbox/extras/tables/tables.py:527 +#: extras/tables/tables.py:200 extras/tables/tables.py:499 +#: extras/tables/tables.py:527 msgid "Synced" msgstr "Zsynchronizowane" -#: netbox/extras/tables/tables.py:227 +#: extras/tables/tables.py:227 msgid "Image" msgstr "Obraz" -#: netbox/extras/tables/tables.py:232 +#: extras/tables/tables.py:232 msgid "Size (Bytes)" msgstr "Rozmiar (bajty)" -#: netbox/extras/tables/tables.py:339 +#: extras/tables/tables.py:339 msgid "Read" msgstr "Przeczytaj" -#: netbox/extras/tables/tables.py:382 +#: extras/tables/tables.py:382 msgid "SSL Validation" msgstr "Walidacja SSL" -#: netbox/extras/tables/tables.py:418 -#: netbox/templates/extras/eventrule.html:37 +#: extras/tables/tables.py:418 templates/extras/eventrule.html:37 msgid "Event Types" msgstr "Rodzaje zdarzeń" -#: netbox/extras/tables/tables.py:535 netbox/netbox/navigation/menu.py:77 -#: netbox/templates/dcim/devicerole.html:8 +#: extras/tables/tables.py:535 netbox/navigation/menu.py:77 +#: templates/dcim/devicerole.html:8 msgid "Device Roles" msgstr "Role urządzenia" -#: netbox/extras/tables/tables.py:587 +#: extras/tables/tables.py:587 msgid "Comments (Short)" msgstr "Komentarze (krótkie)" -#: netbox/extras/tables/tables.py:606 netbox/extras/tables/tables.py:640 +#: extras/tables/tables.py:606 extras/tables/tables.py:640 msgid "Line" msgstr "Linia" -#: netbox/extras/tables/tables.py:613 netbox/extras/tables/tables.py:650 +#: extras/tables/tables.py:613 extras/tables/tables.py:650 msgid "Level" msgstr "Poziom" -#: netbox/extras/tables/tables.py:619 netbox/extras/tables/tables.py:659 +#: extras/tables/tables.py:619 extras/tables/tables.py:659 msgid "Message" msgstr "Wiadomość" -#: netbox/extras/tables/tables.py:643 +#: extras/tables/tables.py:643 msgid "Method" msgstr "Metoda" -#: netbox/extras/validators.py:15 +#: extras/validators.py:15 #, python-format msgid "Ensure this value is equal to %(limit_value)s." msgstr "Upewnij się, że ta wartość jest równa %(limit_value)s." -#: netbox/extras/validators.py:26 +#: extras/validators.py:26 #, python-format msgid "Ensure this value does not equal %(limit_value)s." msgstr "Upewnij się, że ta wartość nie jest równa %(limit_value)s." -#: netbox/extras/validators.py:37 +#: extras/validators.py:37 msgid "This field must be empty." msgstr "To pole musi być puste." -#: netbox/extras/validators.py:52 +#: extras/validators.py:52 msgid "This field must not be empty." msgstr "To pole nie może być puste." -#: netbox/extras/validators.py:94 +#: extras/validators.py:94 msgid "Validation rules must be passed as a dictionary" msgstr "Reguły walidacji muszą być przekazane jako słownik" -#: netbox/extras/validators.py:119 +#: extras/validators.py:119 #, python-brace-format msgid "Custom validation failed for {attribute}: {exception}" msgstr "Niestandardowa walidacja nie powiodła się {attribute}: {exception}" -#: netbox/extras/validators.py:133 +#: extras/validators.py:133 #, python-brace-format msgid "Invalid attribute \"{name}\" for request" msgstr "Nieprawidłowy atrybut”{name}„na żądanie" -#: netbox/extras/validators.py:150 +#: extras/validators.py:150 #, python-brace-format msgid "Invalid attribute \"{name}\" for {model}" msgstr "Nieprawidłowy atrybut”{name}„dla {model}" -#: netbox/extras/views.py:960 +#: extras/views.py:960 msgid "Your dashboard has been reset." msgstr "Twój pulpit nawigacyjny został zresetowany." -#: netbox/extras/views.py:1006 +#: extras/views.py:1006 msgid "Added widget: " msgstr "Dodano widżet: " -#: netbox/extras/views.py:1047 +#: extras/views.py:1047 msgid "Updated widget: " msgstr "Zaktualizowano widżet: " -#: netbox/extras/views.py:1083 +#: extras/views.py:1083 msgid "Deleted widget: " msgstr "Usunięty widget: " -#: netbox/extras/views.py:1085 +#: extras/views.py:1085 msgid "Error deleting widget: " msgstr "Błąd usuwania widżetu: " -#: netbox/extras/views.py:1172 +#: extras/views.py:1172 msgid "Unable to run script: RQ worker process not running." msgstr "Nie można uruchomić skryptu: proces roboczy RQ nie działa." -#: netbox/ipam/api/field_serializers.py:17 +#: ipam/api/field_serializers.py:17 msgid "Enter a valid IPv4 or IPv6 address with optional mask." msgstr "Wprowadź prawidłowy adres IPv4 lub IPv6 z opcjonalną maską." -#: netbox/ipam/api/field_serializers.py:24 +#: ipam/api/field_serializers.py:24 #, python-brace-format msgid "Invalid IP address format: {data}" msgstr "Nieprawidłowy format adresu IP: {data}" -#: netbox/ipam/api/field_serializers.py:37 +#: ipam/api/field_serializers.py:37 msgid "Enter a valid IPv4 or IPv6 prefix and mask in CIDR notation." -msgstr "Wprowadź prawidłowy prefiks IPv4 lub IPv6 i maskę w notacji CIDR." +msgstr "Wprowadź prawidłowy prefiks IPv4 lub IPv6 i maskę w notacji CIDR." -#: netbox/ipam/api/field_serializers.py:44 +#: ipam/api/field_serializers.py:44 #, python-brace-format msgid "Invalid IP prefix format: {data}" msgstr "Nieprawidłowy format prefiksu IP: {data}" -#: netbox/ipam/api/views.py:358 +#: ipam/api/views.py:358 msgid "" "Insufficient space is available to accommodate the requested prefix size(s)" msgstr "" -"Dostępna jest niewystarczająca ilość miejsca, aby pomieścić żądany rozmiar " -"(-y) prefiksu" +"Nie jest dostępna jest wystarczająca ilość miejsca, aby pomieścić żądany " +"rozmiar prefiksu (prefiksów)" -#: netbox/ipam/choices.py:30 +#: ipam/choices.py:30 msgid "Container" msgstr "Pojemnik" -#: netbox/ipam/choices.py:72 +#: ipam/choices.py:72 msgid "DHCP" msgstr "DHCP" -#: netbox/ipam/choices.py:73 +#: ipam/choices.py:73 msgid "SLAAC" msgstr "SLACK" -#: netbox/ipam/choices.py:89 +#: ipam/choices.py:89 msgid "Loopback" msgstr "Pętla zwrotna" -#: netbox/ipam/choices.py:91 +#: ipam/choices.py:91 msgid "Anycast" msgstr "Anycast" -#: netbox/ipam/choices.py:115 +#: ipam/choices.py:115 msgid "Standard" msgstr "Standardowy" -#: netbox/ipam/choices.py:120 +#: ipam/choices.py:120 msgid "CheckPoint" msgstr "Punkt kontrolny" -#: netbox/ipam/choices.py:123 +#: ipam/choices.py:123 msgid "Cisco" msgstr "Cisco" -#: netbox/ipam/choices.py:137 +#: ipam/choices.py:137 msgid "Plaintext" msgstr "Zwykły tekst" -#: netbox/ipam/fields.py:36 +#: ipam/fields.py:36 #, python-brace-format msgid "Invalid IP address format: {address}" msgstr "Nieprawidłowy format adresu IP: {address}" -#: netbox/ipam/filtersets.py:48 netbox/vpn/filtersets.py:304 +#: ipam/filtersets.py:48 vpn/filtersets.py:304 msgid "Import target" msgstr "Importuj cel" -#: netbox/ipam/filtersets.py:54 netbox/vpn/filtersets.py:310 +#: ipam/filtersets.py:54 vpn/filtersets.py:310 msgid "Import target (name)" msgstr "Import docelowy (nazwa)" -#: netbox/ipam/filtersets.py:59 netbox/vpn/filtersets.py:315 +#: ipam/filtersets.py:59 vpn/filtersets.py:315 msgid "Export target" msgstr "Cel eksportu" -#: netbox/ipam/filtersets.py:65 netbox/vpn/filtersets.py:321 +#: ipam/filtersets.py:65 vpn/filtersets.py:321 msgid "Export target (name)" msgstr "Eksportuj cel (nazwa)" -#: netbox/ipam/filtersets.py:86 +#: ipam/filtersets.py:86 msgid "Importing VRF" msgstr "Importowanie VRF" -#: netbox/ipam/filtersets.py:92 +#: ipam/filtersets.py:92 msgid "Import VRF (RD)" msgstr "Import VRF (RD)" -#: netbox/ipam/filtersets.py:97 +#: ipam/filtersets.py:97 msgid "Exporting VRF" msgstr "Eksportowanie VRF" -#: netbox/ipam/filtersets.py:103 +#: ipam/filtersets.py:103 msgid "Export VRF (RD)" msgstr "Eksportuj VRF (RD)" -#: netbox/ipam/filtersets.py:108 +#: ipam/filtersets.py:108 msgid "Importing L2VPN" msgstr "Importowanie L2VPN" -#: netbox/ipam/filtersets.py:114 +#: ipam/filtersets.py:114 msgid "Importing L2VPN (identifier)" msgstr "Importowanie L2VPN (identyfikator)" -#: netbox/ipam/filtersets.py:119 +#: ipam/filtersets.py:119 msgid "Exporting L2VPN" msgstr "Eksportowanie L2VPN" -#: netbox/ipam/filtersets.py:125 +#: ipam/filtersets.py:125 msgid "Exporting L2VPN (identifier)" msgstr "Eksportowanie L2VPN (identyfikator)" -#: netbox/ipam/filtersets.py:155 netbox/ipam/filtersets.py:281 -#: netbox/ipam/forms/model_forms.py:229 netbox/ipam/tables/ip.py:212 -#: netbox/templates/ipam/prefix.html:12 +#: ipam/filtersets.py:155 ipam/filtersets.py:281 ipam/forms/model_forms.py:229 +#: ipam/tables/ip.py:212 templates/ipam/prefix.html:12 msgid "Prefix" msgstr "Prefiks" -#: netbox/ipam/filtersets.py:159 netbox/ipam/filtersets.py:198 -#: netbox/ipam/filtersets.py:221 +#: ipam/filtersets.py:159 ipam/filtersets.py:198 ipam/filtersets.py:221 msgid "RIR (ID)" msgstr "RIR (ID)" -#: netbox/ipam/filtersets.py:165 netbox/ipam/filtersets.py:204 -#: netbox/ipam/filtersets.py:227 +#: ipam/filtersets.py:165 ipam/filtersets.py:204 ipam/filtersets.py:227 msgid "RIR (slug)" msgstr "RIR (identyfikator)" -#: netbox/ipam/filtersets.py:285 +#: ipam/filtersets.py:285 msgid "Within prefix" -msgstr "W przedrostku" +msgstr "W prefiksie" -#: netbox/ipam/filtersets.py:289 +#: ipam/filtersets.py:289 msgid "Within and including prefix" -msgstr "Wewnątrz i włącznie z prefiksem" +msgstr "W i włącznie z prefiksem" -#: netbox/ipam/filtersets.py:293 +#: ipam/filtersets.py:293 msgid "Prefixes which contain this prefix or IP" msgstr "Prefiksy zawierające ten prefiks lub adres IP" -#: netbox/ipam/filtersets.py:304 netbox/ipam/filtersets.py:572 -#: netbox/ipam/forms/bulk_edit.py:342 netbox/ipam/forms/filtersets.py:196 -#: netbox/ipam/forms/filtersets.py:331 +#: ipam/filtersets.py:304 ipam/filtersets.py:572 ipam/forms/bulk_edit.py:343 +#: ipam/forms/filtersets.py:196 ipam/forms/filtersets.py:331 msgid "Mask length" msgstr "Długość maski" -#: netbox/ipam/filtersets.py:373 netbox/vpn/filtersets.py:427 +#: ipam/filtersets.py:373 vpn/filtersets.py:427 msgid "VLAN (ID)" msgstr "VLAN (ID)" -#: netbox/ipam/filtersets.py:377 netbox/vpn/filtersets.py:422 +#: ipam/filtersets.py:377 vpn/filtersets.py:422 msgid "VLAN number (1-4094)" msgstr "Numer VLAN (1-4094)" -#: netbox/ipam/filtersets.py:471 netbox/ipam/filtersets.py:475 -#: netbox/ipam/filtersets.py:567 netbox/ipam/forms/model_forms.py:463 -#: netbox/templates/tenancy/contact.html:53 -#: netbox/tenancy/forms/bulk_edit.py:113 +#: ipam/filtersets.py:471 ipam/filtersets.py:475 ipam/filtersets.py:567 +#: ipam/forms/model_forms.py:463 templates/tenancy/contact.html:53 +#: tenancy/forms/bulk_edit.py:113 msgid "Address" msgstr "Adres" -#: netbox/ipam/filtersets.py:479 +#: ipam/filtersets.py:479 msgid "Ranges which contain this prefix or IP" msgstr "Zakresy zawierające ten prefiks lub adres IP" -#: netbox/ipam/filtersets.py:507 netbox/ipam/filtersets.py:563 +#: ipam/filtersets.py:507 ipam/filtersets.py:563 msgid "Parent prefix" msgstr "Prefiks nadrzędny" -#: netbox/ipam/filtersets.py:616 netbox/ipam/filtersets.py:856 -#: netbox/ipam/filtersets.py:1131 netbox/vpn/filtersets.py:385 +#: ipam/filtersets.py:616 ipam/filtersets.py:856 ipam/filtersets.py:1131 +#: vpn/filtersets.py:385 msgid "Virtual machine (name)" msgstr "Maszyna wirtualna (nazwa)" -#: netbox/ipam/filtersets.py:621 netbox/ipam/filtersets.py:861 -#: netbox/ipam/filtersets.py:1125 netbox/virtualization/filtersets.py:282 -#: netbox/virtualization/filtersets.py:321 netbox/vpn/filtersets.py:390 +#: ipam/filtersets.py:621 ipam/filtersets.py:861 ipam/filtersets.py:1125 +#: virtualization/filtersets.py:282 virtualization/filtersets.py:321 +#: vpn/filtersets.py:390 msgid "Virtual machine (ID)" msgstr "Maszyna wirtualna (ID)" -#: netbox/ipam/filtersets.py:627 netbox/vpn/filtersets.py:97 -#: netbox/vpn/filtersets.py:396 +#: ipam/filtersets.py:627 vpn/filtersets.py:97 vpn/filtersets.py:396 msgid "Interface (name)" msgstr "Interfejs (nazwa)" -#: netbox/ipam/filtersets.py:638 netbox/vpn/filtersets.py:108 -#: netbox/vpn/filtersets.py:407 +#: ipam/filtersets.py:638 vpn/filtersets.py:108 vpn/filtersets.py:407 msgid "VM interface (name)" msgstr "Interfejs maszyny wirtualnej (nazwa)" -#: netbox/ipam/filtersets.py:643 netbox/vpn/filtersets.py:113 +#: ipam/filtersets.py:643 vpn/filtersets.py:113 msgid "VM interface (ID)" msgstr "Interfejs maszyny wirtualnej (ID)" -#: netbox/ipam/filtersets.py:648 +#: ipam/filtersets.py:648 msgid "FHRP group (ID)" msgstr "Grupa FHRP (ID)" -#: netbox/ipam/filtersets.py:652 +#: ipam/filtersets.py:652 msgid "Is assigned to an interface" msgstr "Jest przypisany do interfejsu" -#: netbox/ipam/filtersets.py:656 +#: ipam/filtersets.py:656 msgid "Is assigned" msgstr "Jest przypisany" -#: netbox/ipam/filtersets.py:668 +#: ipam/filtersets.py:668 msgid "Service (ID)" msgstr "Usługa (ID)" -#: netbox/ipam/filtersets.py:673 +#: ipam/filtersets.py:673 msgid "NAT inside IP address (ID)" msgstr "NAT wewnątrz adresu IP (ID)" -#: netbox/ipam/filtersets.py:1041 netbox/ipam/forms/bulk_import.py:322 +#: ipam/filtersets.py:1041 ipam/forms/bulk_import.py:322 msgid "Assigned interface" msgstr "Przypisany interfejs" -#: netbox/ipam/filtersets.py:1046 +#: ipam/filtersets.py:1046 msgid "Assigned VM interface" msgstr "Przypisany interfejs maszyny wirtualnej" -#: netbox/ipam/filtersets.py:1136 +#: ipam/filtersets.py:1136 msgid "IP address (ID)" msgstr "Adres IP (ID)" -#: netbox/ipam/filtersets.py:1142 netbox/ipam/models/ip.py:788 +#: ipam/filtersets.py:1142 ipam/models/ip.py:788 msgid "IP address" msgstr "Adres IP" -#: netbox/ipam/filtersets.py:1167 +#: ipam/filtersets.py:1167 msgid "Primary IPv4 (ID)" msgstr "Podstawowy IPv4 (ID)" -#: netbox/ipam/filtersets.py:1172 +#: ipam/filtersets.py:1172 msgid "Primary IPv6 (ID)" -msgstr "Podstawowy protokół IPv6 (ID)" +msgstr "Podstawowy IPv6 (ID)" -#: netbox/ipam/formfields.py:14 +#: ipam/formfields.py:14 msgid "Enter a valid IPv4 or IPv6 address (without a mask)." msgstr "Wprowadź prawidłowy adres IPv4 lub IPv6 (bez maski)." -#: netbox/ipam/formfields.py:32 +#: ipam/formfields.py:32 #, python-brace-format msgid "Invalid IPv4/IPv6 address format: {address}" msgstr "Nieprawidłowy format adresu IPv4/IPv6: {address}" -#: netbox/ipam/formfields.py:37 +#: ipam/formfields.py:37 msgid "This field requires an IP address without a mask." msgstr "To pole wymaga adresu IP bez maski." -#: netbox/ipam/formfields.py:39 netbox/ipam/formfields.py:61 +#: ipam/formfields.py:39 ipam/formfields.py:61 msgid "Please specify a valid IPv4 or IPv6 address." msgstr "Proszę podać prawidłowy adres IPv4 lub IPv6." -#: netbox/ipam/formfields.py:44 +#: ipam/formfields.py:44 msgid "Enter a valid IPv4 or IPv6 address (with CIDR mask)." msgstr "Wprowadź prawidłowy adres IPv4 lub IPv6 (z maską CIDR)." -#: netbox/ipam/formfields.py:56 +#: ipam/formfields.py:56 msgid "CIDR mask (e.g. /24) is required." msgstr "Wymagana jest maska CIDR (np. /24)." -#: netbox/ipam/forms/bulk_create.py:13 +#: ipam/forms/bulk_create.py:13 msgid "Address pattern" msgstr "Wzór adresu" -#: netbox/ipam/forms/bulk_edit.py:49 +#: ipam/forms/bulk_edit.py:50 msgid "Enforce unique space" msgstr "Wymuszaj unikalną przestrzeń" -#: netbox/ipam/forms/bulk_edit.py:87 +#: ipam/forms/bulk_edit.py:88 msgid "Is private" msgstr "Jest prywatny" -#: netbox/ipam/forms/bulk_edit.py:108 netbox/ipam/forms/bulk_edit.py:137 -#: netbox/ipam/forms/bulk_edit.py:162 netbox/ipam/forms/bulk_import.py:89 -#: netbox/ipam/forms/bulk_import.py:109 netbox/ipam/forms/bulk_import.py:129 -#: netbox/ipam/forms/filtersets.py:110 netbox/ipam/forms/filtersets.py:125 -#: netbox/ipam/forms/filtersets.py:148 netbox/ipam/forms/model_forms.py:96 -#: netbox/ipam/forms/model_forms.py:109 netbox/ipam/forms/model_forms.py:131 -#: netbox/ipam/forms/model_forms.py:149 netbox/ipam/models/asns.py:31 -#: netbox/ipam/models/asns.py:103 netbox/ipam/models/ip.py:71 -#: netbox/ipam/models/ip.py:90 netbox/ipam/tables/asn.py:20 -#: netbox/ipam/tables/asn.py:45 netbox/templates/ipam/aggregate.html:18 -#: netbox/templates/ipam/asn.html:27 netbox/templates/ipam/asnrange.html:19 -#: netbox/templates/ipam/rir.html:19 +#: ipam/forms/bulk_edit.py:109 ipam/forms/bulk_edit.py:138 +#: ipam/forms/bulk_edit.py:163 ipam/forms/bulk_import.py:89 +#: ipam/forms/bulk_import.py:109 ipam/forms/bulk_import.py:129 +#: ipam/forms/filtersets.py:110 ipam/forms/filtersets.py:125 +#: ipam/forms/filtersets.py:148 ipam/forms/model_forms.py:96 +#: ipam/forms/model_forms.py:109 ipam/forms/model_forms.py:131 +#: ipam/forms/model_forms.py:149 ipam/models/asns.py:31 +#: ipam/models/asns.py:103 ipam/models/ip.py:71 ipam/models/ip.py:90 +#: ipam/tables/asn.py:20 ipam/tables/asn.py:45 +#: templates/ipam/aggregate.html:18 templates/ipam/asn.html:27 +#: templates/ipam/asnrange.html:19 templates/ipam/rir.html:19 msgid "RIR" msgstr "WRZUCIĆ" -#: netbox/ipam/forms/bulk_edit.py:170 +#: ipam/forms/bulk_edit.py:171 msgid "Date added" msgstr "Data dodania" -#: netbox/ipam/forms/bulk_edit.py:228 netbox/ipam/forms/model_forms.py:586 -#: netbox/ipam/forms/model_forms.py:633 netbox/ipam/tables/ip.py:251 -#: netbox/templates/ipam/vlan_edit.html:37 -#: netbox/templates/ipam/vlangroup.html:27 +#: ipam/forms/bulk_edit.py:229 ipam/forms/model_forms.py:586 +#: ipam/forms/model_forms.py:633 ipam/tables/ip.py:251 +#: templates/ipam/vlan_edit.html:37 templates/ipam/vlangroup.html:27 msgid "VLAN Group" msgstr "Grupa VLAN" -#: netbox/ipam/forms/bulk_edit.py:233 netbox/ipam/forms/bulk_import.py:185 -#: netbox/ipam/forms/filtersets.py:256 netbox/ipam/forms/model_forms.py:218 -#: netbox/ipam/models/vlans.py:234 netbox/ipam/tables/ip.py:255 -#: netbox/templates/ipam/prefix.html:60 netbox/templates/ipam/vlan.html:12 -#: netbox/templates/ipam/vlan/base.html:6 -#: netbox/templates/ipam/vlan_edit.html:10 -#: netbox/templates/wireless/wirelesslan.html:30 -#: netbox/vpn/forms/bulk_import.py:304 netbox/vpn/forms/filtersets.py:284 -#: netbox/vpn/forms/model_forms.py:433 netbox/vpn/forms/model_forms.py:452 -#: netbox/wireless/forms/bulk_edit.py:55 -#: netbox/wireless/forms/bulk_import.py:48 -#: netbox/wireless/forms/model_forms.py:48 netbox/wireless/models.py:102 +#: ipam/forms/bulk_edit.py:234 ipam/forms/bulk_import.py:185 +#: ipam/forms/filtersets.py:256 ipam/forms/model_forms.py:218 +#: ipam/models/vlans.py:234 ipam/tables/ip.py:255 +#: templates/ipam/prefix.html:60 templates/ipam/vlan.html:12 +#: templates/ipam/vlan/base.html:6 templates/ipam/vlan_edit.html:10 +#: templates/wireless/wirelesslan.html:30 vpn/forms/bulk_import.py:304 +#: vpn/forms/filtersets.py:284 vpn/forms/model_forms.py:433 +#: vpn/forms/model_forms.py:452 wireless/forms/bulk_edit.py:55 +#: wireless/forms/bulk_import.py:48 wireless/forms/model_forms.py:48 +#: wireless/models.py:102 msgid "VLAN" msgstr "VLAN" -#: netbox/ipam/forms/bulk_edit.py:244 +#: ipam/forms/bulk_edit.py:245 msgid "Prefix length" -msgstr "Długość przedrostka" +msgstr "Długość prefiksu" -#: netbox/ipam/forms/bulk_edit.py:267 netbox/ipam/forms/filtersets.py:241 -#: netbox/templates/ipam/prefix.html:85 +#: ipam/forms/bulk_edit.py:268 ipam/forms/filtersets.py:241 +#: templates/ipam/prefix.html:85 msgid "Is a pool" msgstr "Jest basenem" -#: netbox/ipam/forms/bulk_edit.py:272 netbox/ipam/forms/bulk_edit.py:317 -#: netbox/ipam/forms/filtersets.py:248 netbox/ipam/forms/filtersets.py:293 -#: netbox/ipam/models/ip.py:272 netbox/ipam/models/ip.py:539 +#: ipam/forms/bulk_edit.py:273 ipam/forms/bulk_edit.py:318 +#: ipam/forms/filtersets.py:248 ipam/forms/filtersets.py:293 +#: ipam/models/ip.py:272 ipam/models/ip.py:539 msgid "Treat as fully utilized" msgstr "Traktuj jako w pełni wykorzystany" -#: netbox/ipam/forms/bulk_edit.py:286 netbox/ipam/forms/filtersets.py:171 +#: ipam/forms/bulk_edit.py:287 ipam/forms/filtersets.py:171 msgid "VLAN Assignment" msgstr "Przypisanie sieci VLAN" -#: netbox/ipam/forms/bulk_edit.py:365 netbox/ipam/models/ip.py:772 +#: ipam/forms/bulk_edit.py:366 ipam/models/ip.py:772 msgid "DNS name" msgstr "Nazwa DNS" -#: netbox/ipam/forms/bulk_edit.py:386 netbox/ipam/forms/bulk_edit.py:579 -#: netbox/ipam/forms/bulk_import.py:394 netbox/ipam/forms/bulk_import.py:469 -#: netbox/ipam/forms/bulk_import.py:495 netbox/ipam/forms/filtersets.py:390 -#: netbox/ipam/forms/filtersets.py:530 netbox/templates/ipam/fhrpgroup.html:22 -#: netbox/templates/ipam/inc/panels/fhrp_groups.html:24 -#: netbox/templates/ipam/service.html:32 -#: netbox/templates/ipam/servicetemplate.html:19 +#: ipam/forms/bulk_edit.py:387 ipam/forms/bulk_edit.py:534 +#: ipam/forms/bulk_import.py:394 ipam/forms/bulk_import.py:469 +#: ipam/forms/bulk_import.py:495 ipam/forms/filtersets.py:390 +#: ipam/forms/filtersets.py:530 templates/ipam/fhrpgroup.html:22 +#: templates/ipam/inc/panels/fhrp_groups.html:24 +#: templates/ipam/service.html:32 templates/ipam/servicetemplate.html:19 msgid "Protocol" msgstr "Protokół" -#: netbox/ipam/forms/bulk_edit.py:393 netbox/ipam/forms/filtersets.py:397 -#: netbox/ipam/tables/fhrp.py:22 netbox/templates/ipam/fhrpgroup.html:26 +#: ipam/forms/bulk_edit.py:394 ipam/forms/filtersets.py:397 +#: ipam/tables/fhrp.py:22 templates/ipam/fhrpgroup.html:26 msgid "Group ID" msgstr "Identyfikator grupy" -#: netbox/ipam/forms/bulk_edit.py:398 netbox/ipam/forms/filtersets.py:402 -#: netbox/wireless/forms/bulk_edit.py:68 -#: netbox/wireless/forms/bulk_edit.py:115 -#: netbox/wireless/forms/bulk_import.py:62 -#: netbox/wireless/forms/bulk_import.py:65 -#: netbox/wireless/forms/bulk_import.py:104 -#: netbox/wireless/forms/bulk_import.py:107 -#: netbox/wireless/forms/filtersets.py:54 -#: netbox/wireless/forms/filtersets.py:88 +#: ipam/forms/bulk_edit.py:399 ipam/forms/filtersets.py:402 +#: wireless/forms/bulk_edit.py:68 wireless/forms/bulk_edit.py:115 +#: wireless/forms/bulk_import.py:62 wireless/forms/bulk_import.py:65 +#: wireless/forms/bulk_import.py:104 wireless/forms/bulk_import.py:107 +#: wireless/forms/filtersets.py:54 wireless/forms/filtersets.py:88 msgid "Authentication type" msgstr "Typ uwierzytelniania" -#: netbox/ipam/forms/bulk_edit.py:403 netbox/ipam/forms/filtersets.py:406 +#: ipam/forms/bulk_edit.py:404 ipam/forms/filtersets.py:406 msgid "Authentication key" msgstr "klucz uwierzytelniania" -#: netbox/ipam/forms/bulk_edit.py:420 netbox/ipam/forms/filtersets.py:383 -#: netbox/ipam/forms/model_forms.py:474 netbox/netbox/navigation/menu.py:386 -#: netbox/templates/ipam/fhrpgroup.html:49 -#: netbox/templates/wireless/inc/authentication_attrs.html:5 -#: netbox/wireless/forms/bulk_edit.py:91 -#: netbox/wireless/forms/bulk_edit.py:149 -#: netbox/wireless/forms/filtersets.py:36 -#: netbox/wireless/forms/filtersets.py:76 -#: netbox/wireless/forms/model_forms.py:55 -#: netbox/wireless/forms/model_forms.py:171 +#: ipam/forms/bulk_edit.py:421 ipam/forms/filtersets.py:383 +#: ipam/forms/model_forms.py:474 netbox/navigation/menu.py:386 +#: templates/ipam/fhrpgroup.html:49 +#: templates/wireless/inc/authentication_attrs.html:5 +#: wireless/forms/bulk_edit.py:91 wireless/forms/bulk_edit.py:149 +#: wireless/forms/filtersets.py:36 wireless/forms/filtersets.py:76 +#: wireless/forms/model_forms.py:55 wireless/forms/model_forms.py:171 msgid "Authentication" msgstr "Uwierzytelnienie" -#: netbox/ipam/forms/bulk_edit.py:432 netbox/ipam/forms/model_forms.py:575 +#: ipam/forms/bulk_edit.py:436 ipam/forms/model_forms.py:575 msgid "Scope type" msgstr "Rodzaj zakresu" -#: netbox/ipam/forms/bulk_edit.py:490 netbox/ipam/models/vlans.py:60 -msgid "VLAN ID ranges" -msgstr "Zakresy identyfikatorów VLAN" - -#: netbox/ipam/forms/bulk_edit.py:498 netbox/ipam/forms/model_forms.py:578 -#: netbox/ipam/forms/model_forms.py:588 netbox/ipam/tables/vlans.py:71 -#: netbox/templates/ipam/vlangroup.html:38 +#: ipam/forms/bulk_edit.py:439 ipam/forms/bulk_edit.py:453 +#: ipam/forms/model_forms.py:578 ipam/forms/model_forms.py:588 +#: ipam/tables/vlans.py:71 templates/ipam/vlangroup.html:38 msgid "Scope" msgstr "Zakres" -#: netbox/ipam/forms/bulk_edit.py:570 +#: ipam/forms/bulk_edit.py:446 ipam/models/vlans.py:60 +msgid "VLAN ID ranges" +msgstr "Zakresy identyfikatorów VLAN" + +#: ipam/forms/bulk_edit.py:525 msgid "Site & Group" msgstr "Strona & Grupa" -#: netbox/ipam/forms/bulk_edit.py:584 netbox/ipam/forms/model_forms.py:659 -#: netbox/ipam/forms/model_forms.py:691 netbox/ipam/tables/services.py:19 -#: netbox/ipam/tables/services.py:49 netbox/templates/ipam/service.html:36 -#: netbox/templates/ipam/servicetemplate.html:23 +#: ipam/forms/bulk_edit.py:539 ipam/forms/model_forms.py:659 +#: ipam/forms/model_forms.py:691 ipam/tables/services.py:19 +#: ipam/tables/services.py:49 templates/ipam/service.html:36 +#: templates/ipam/servicetemplate.html:23 msgid "Ports" msgstr "Porty" -#: netbox/ipam/forms/bulk_import.py:48 +#: ipam/forms/bulk_import.py:48 msgid "Import route targets" msgstr "Importuj cele trasy" -#: netbox/ipam/forms/bulk_import.py:54 +#: ipam/forms/bulk_import.py:54 msgid "Export route targets" msgstr "Cele trasy eksportu" -#: netbox/ipam/forms/bulk_import.py:92 netbox/ipam/forms/bulk_import.py:112 -#: netbox/ipam/forms/bulk_import.py:132 +#: ipam/forms/bulk_import.py:92 ipam/forms/bulk_import.py:112 +#: ipam/forms/bulk_import.py:132 msgid "Assigned RIR" msgstr "Przypisany RIR" -#: netbox/ipam/forms/bulk_import.py:182 +#: ipam/forms/bulk_import.py:182 msgid "VLAN's group (if any)" msgstr "Grupa sieci VLAN (jeśli istnieje)" -#: netbox/ipam/forms/bulk_import.py:308 +#: ipam/forms/bulk_import.py:308 msgid "Parent device of assigned interface (if any)" msgstr "Urządzenie nadrzędne przypisanego interfejsu (jeśli istnieje)" -#: netbox/ipam/forms/bulk_import.py:311 netbox/ipam/forms/bulk_import.py:488 -#: netbox/ipam/forms/model_forms.py:685 -#: netbox/virtualization/filtersets.py:288 -#: netbox/virtualization/filtersets.py:327 -#: netbox/virtualization/forms/bulk_edit.py:200 -#: netbox/virtualization/forms/bulk_edit.py:326 -#: netbox/virtualization/forms/bulk_import.py:146 -#: netbox/virtualization/forms/bulk_import.py:207 -#: netbox/virtualization/forms/filtersets.py:212 -#: netbox/virtualization/forms/filtersets.py:248 -#: netbox/virtualization/forms/model_forms.py:288 -#: netbox/vpn/forms/bulk_import.py:93 netbox/vpn/forms/bulk_import.py:290 +#: ipam/forms/bulk_import.py:311 ipam/forms/bulk_import.py:488 +#: ipam/forms/model_forms.py:685 virtualization/filtersets.py:288 +#: virtualization/filtersets.py:327 virtualization/forms/bulk_edit.py:200 +#: virtualization/forms/bulk_edit.py:326 +#: virtualization/forms/bulk_import.py:146 +#: virtualization/forms/bulk_import.py:207 +#: virtualization/forms/filtersets.py:212 +#: virtualization/forms/filtersets.py:248 +#: virtualization/forms/model_forms.py:288 vpn/forms/bulk_import.py:93 +#: vpn/forms/bulk_import.py:290 msgid "Virtual machine" msgstr "Maszyna wirtualna" -#: netbox/ipam/forms/bulk_import.py:315 +#: ipam/forms/bulk_import.py:315 msgid "Parent VM of assigned interface (if any)" msgstr "Nadrzędna maszyna wirtualna przypisanego interfejsu (jeśli istnieje)" -#: netbox/ipam/forms/bulk_import.py:325 +#: ipam/forms/bulk_import.py:325 msgid "Is primary" msgstr "Jest podstawowy" -#: netbox/ipam/forms/bulk_import.py:326 +#: ipam/forms/bulk_import.py:326 msgid "Make this the primary IP for the assigned device" msgstr "Ustaw to podstawowy adres IP przypisanego urządzenia" -#: netbox/ipam/forms/bulk_import.py:365 +#: ipam/forms/bulk_import.py:365 msgid "No device or virtual machine specified; cannot set as primary IP" msgstr "" "Nie określono urządzenia ani maszyny wirtualnej; nie można ustawić jako " "podstawowego adresu IP" -#: netbox/ipam/forms/bulk_import.py:369 +#: ipam/forms/bulk_import.py:369 msgid "No interface specified; cannot set as primary IP" msgstr "" "Nie określono interfejsu; nie można ustawić jako podstawowego adresu IP" -#: netbox/ipam/forms/bulk_import.py:398 +#: ipam/forms/bulk_import.py:398 msgid "Auth type" msgstr "Rodzaj auth" -#: netbox/ipam/forms/bulk_import.py:413 +#: ipam/forms/bulk_import.py:413 msgid "Scope type (app & model)" msgstr "Typ zakresu (aplikacja i model)" -#: netbox/ipam/forms/bulk_import.py:440 +#: ipam/forms/bulk_import.py:440 msgid "Assigned VLAN group" msgstr "Przypisana grupa VLAN" -#: netbox/ipam/forms/bulk_import.py:471 netbox/ipam/forms/bulk_import.py:497 +#: ipam/forms/bulk_import.py:471 ipam/forms/bulk_import.py:497 msgid "IP protocol" msgstr "protokół IP" -#: netbox/ipam/forms/bulk_import.py:485 +#: ipam/forms/bulk_import.py:485 msgid "Required if not assigned to a VM" msgstr "Wymagane, jeśli nie jest przypisane do maszyny wirtualnej" -#: netbox/ipam/forms/bulk_import.py:492 +#: ipam/forms/bulk_import.py:492 msgid "Required if not assigned to a device" msgstr "Wymagane, jeśli nie jest przypisane do urządzenia" -#: netbox/ipam/forms/bulk_import.py:517 +#: ipam/forms/bulk_import.py:517 #, python-brace-format msgid "{ip} is not assigned to this device/VM." msgstr "{ip} nie jest przypisany do tego urządzenia/maszyny wirtualnej." -#: netbox/ipam/forms/filtersets.py:47 netbox/ipam/forms/model_forms.py:63 -#: netbox/netbox/navigation/menu.py:189 netbox/vpn/forms/model_forms.py:410 +#: ipam/forms/filtersets.py:47 ipam/forms/model_forms.py:63 +#: netbox/navigation/menu.py:189 vpn/forms/model_forms.py:410 msgid "Route Targets" msgstr "Cele trasy" -#: netbox/ipam/forms/filtersets.py:53 netbox/ipam/forms/model_forms.py:50 -#: netbox/vpn/forms/filtersets.py:224 netbox/vpn/forms/model_forms.py:397 +#: ipam/forms/filtersets.py:53 ipam/forms/model_forms.py:50 +#: vpn/forms/filtersets.py:224 vpn/forms/model_forms.py:397 msgid "Import targets" msgstr "Importuj cele" -#: netbox/ipam/forms/filtersets.py:58 netbox/ipam/forms/model_forms.py:55 -#: netbox/vpn/forms/filtersets.py:229 netbox/vpn/forms/model_forms.py:402 +#: ipam/forms/filtersets.py:58 ipam/forms/model_forms.py:55 +#: vpn/forms/filtersets.py:229 vpn/forms/model_forms.py:402 msgid "Export targets" msgstr "Cele eksportowe" -#: netbox/ipam/forms/filtersets.py:73 +#: ipam/forms/filtersets.py:73 msgid "Imported by VRF" msgstr "Importowane przez VRF" -#: netbox/ipam/forms/filtersets.py:78 +#: ipam/forms/filtersets.py:78 msgid "Exported by VRF" msgstr "Eksportowane przez VRF" -#: netbox/ipam/forms/filtersets.py:87 netbox/ipam/tables/ip.py:89 -#: netbox/templates/ipam/rir.html:30 +#: ipam/forms/filtersets.py:87 ipam/tables/ip.py:89 templates/ipam/rir.html:30 msgid "Private" msgstr "Prywatny" -#: netbox/ipam/forms/filtersets.py:105 netbox/ipam/forms/filtersets.py:191 -#: netbox/ipam/forms/filtersets.py:272 netbox/ipam/forms/filtersets.py:326 +#: ipam/forms/filtersets.py:105 ipam/forms/filtersets.py:191 +#: ipam/forms/filtersets.py:272 ipam/forms/filtersets.py:326 msgid "Address family" msgstr "Rodzina adresu" -#: netbox/ipam/forms/filtersets.py:119 netbox/templates/ipam/asnrange.html:25 +#: ipam/forms/filtersets.py:119 templates/ipam/asnrange.html:25 msgid "Range" msgstr "Zasięg" -#: netbox/ipam/forms/filtersets.py:128 +#: ipam/forms/filtersets.py:128 msgid "Start" msgstr "Rozpocznij" -#: netbox/ipam/forms/filtersets.py:132 +#: ipam/forms/filtersets.py:132 msgid "End" msgstr "Koniec" -#: netbox/ipam/forms/filtersets.py:186 +#: ipam/forms/filtersets.py:186 msgid "Search within" msgstr "Szukaj w obrębie" -#: netbox/ipam/forms/filtersets.py:207 netbox/ipam/forms/filtersets.py:342 +#: ipam/forms/filtersets.py:207 ipam/forms/filtersets.py:342 msgid "Present in VRF" msgstr "Obecny w VRF" -#: netbox/ipam/forms/filtersets.py:311 +#: ipam/forms/filtersets.py:311 msgid "Device/VM" msgstr "Urządzenie/VM" -#: netbox/ipam/forms/filtersets.py:321 +#: ipam/forms/filtersets.py:321 msgid "Parent Prefix" msgstr "Prefiks nadrzędny" -#: netbox/ipam/forms/filtersets.py:347 +#: ipam/forms/filtersets.py:347 msgid "Assigned Device" msgstr "Przypisane urządzenie" -#: netbox/ipam/forms/filtersets.py:352 +#: ipam/forms/filtersets.py:352 msgid "Assigned VM" msgstr "Przypisana maszyna maszynowa" -#: netbox/ipam/forms/filtersets.py:366 +#: ipam/forms/filtersets.py:366 msgid "Assigned to an interface" msgstr "Przypisany do interfejsu" -#: netbox/ipam/forms/filtersets.py:373 netbox/templates/ipam/ipaddress.html:51 +#: ipam/forms/filtersets.py:373 templates/ipam/ipaddress.html:51 msgid "DNS Name" msgstr "Nazwa DNS" -#: netbox/ipam/forms/filtersets.py:416 netbox/ipam/models/vlans.py:235 -#: netbox/ipam/tables/ip.py:176 netbox/ipam/tables/vlans.py:82 -#: netbox/ipam/views.py:971 netbox/netbox/navigation/menu.py:193 -#: netbox/netbox/navigation/menu.py:195 +#: ipam/forms/filtersets.py:416 ipam/models/vlans.py:235 ipam/tables/ip.py:176 +#: ipam/tables/vlans.py:82 ipam/views.py:971 netbox/navigation/menu.py:193 +#: netbox/navigation/menu.py:195 msgid "VLANs" msgstr "sieci VLAN" -#: netbox/ipam/forms/filtersets.py:457 +#: ipam/forms/filtersets.py:457 msgid "Contains VLAN ID" msgstr "Zawiera identyfikator VLAN" -#: netbox/ipam/forms/filtersets.py:513 netbox/ipam/models/vlans.py:176 -#: netbox/templates/ipam/vlan.html:31 +#: ipam/forms/filtersets.py:513 ipam/models/vlans.py:176 +#: templates/ipam/vlan.html:31 msgid "VLAN ID" msgstr "IDENTYFIKATOR VLAN" -#: netbox/ipam/forms/filtersets.py:556 netbox/ipam/forms/model_forms.py:320 -#: netbox/ipam/forms/model_forms.py:713 netbox/ipam/forms/model_forms.py:739 -#: netbox/ipam/tables/vlans.py:195 -#: netbox/templates/virtualization/virtualdisk.html:21 -#: netbox/templates/virtualization/virtualmachine.html:12 -#: netbox/templates/virtualization/vminterface.html:21 -#: netbox/templates/vpn/tunneltermination.html:25 -#: netbox/virtualization/forms/filtersets.py:197 -#: netbox/virtualization/forms/filtersets.py:242 -#: netbox/virtualization/forms/model_forms.py:220 -#: netbox/virtualization/tables/virtualmachines.py:135 -#: netbox/virtualization/tables/virtualmachines.py:190 -#: netbox/vpn/choices.py:45 netbox/vpn/forms/filtersets.py:293 -#: netbox/vpn/forms/model_forms.py:160 netbox/vpn/forms/model_forms.py:171 -#: netbox/vpn/forms/model_forms.py:273 netbox/vpn/forms/model_forms.py:454 +#: ipam/forms/filtersets.py:556 ipam/forms/model_forms.py:320 +#: ipam/forms/model_forms.py:713 ipam/forms/model_forms.py:739 +#: ipam/tables/vlans.py:195 templates/virtualization/virtualdisk.html:21 +#: templates/virtualization/virtualmachine.html:12 +#: templates/virtualization/vminterface.html:21 +#: templates/vpn/tunneltermination.html:25 +#: virtualization/forms/filtersets.py:197 +#: virtualization/forms/filtersets.py:242 +#: virtualization/forms/model_forms.py:220 +#: virtualization/tables/virtualmachines.py:135 +#: virtualization/tables/virtualmachines.py:190 vpn/choices.py:45 +#: vpn/forms/filtersets.py:293 vpn/forms/model_forms.py:160 +#: vpn/forms/model_forms.py:171 vpn/forms/model_forms.py:273 +#: vpn/forms/model_forms.py:454 msgid "Virtual Machine" msgstr "Maszyna wirtualna" -#: netbox/ipam/forms/model_forms.py:80 -#: netbox/templates/ipam/routetarget.html:10 +#: ipam/forms/model_forms.py:80 templates/ipam/routetarget.html:10 msgid "Route Target" msgstr "Cel trasy" -#: netbox/ipam/forms/model_forms.py:114 netbox/ipam/tables/ip.py:117 -#: netbox/templates/ipam/aggregate.html:11 -#: netbox/templates/ipam/prefix.html:38 +#: ipam/forms/model_forms.py:114 ipam/tables/ip.py:117 +#: templates/ipam/aggregate.html:11 templates/ipam/prefix.html:38 msgid "Aggregate" msgstr "agregat" -#: netbox/ipam/forms/model_forms.py:135 netbox/templates/ipam/asnrange.html:12 +#: ipam/forms/model_forms.py:135 templates/ipam/asnrange.html:12 msgid "ASN Range" msgstr "Zakres ASN" -#: netbox/ipam/forms/model_forms.py:231 +#: ipam/forms/model_forms.py:231 msgid "Site/VLAN Assignment" msgstr "Przypisanie witryny/sieci VLAN" -#: netbox/ipam/forms/model_forms.py:259 netbox/templates/ipam/iprange.html:10 +#: ipam/forms/model_forms.py:259 templates/ipam/iprange.html:10 msgid "IP Range" msgstr "Zakres IP" -#: netbox/ipam/forms/model_forms.py:295 netbox/ipam/forms/model_forms.py:321 -#: netbox/ipam/forms/model_forms.py:473 -#: netbox/templates/ipam/fhrpgroup.html:19 +#: ipam/forms/model_forms.py:295 ipam/forms/model_forms.py:321 +#: ipam/forms/model_forms.py:473 templates/ipam/fhrpgroup.html:19 msgid "FHRP Group" msgstr "Grupa FHRP" -#: netbox/ipam/forms/model_forms.py:310 +#: ipam/forms/model_forms.py:310 msgid "Make this the primary IP for the device/VM" msgstr "Ustaw to podstawowy adres IP urządzenia/maszyny wirtualnej" -#: netbox/ipam/forms/model_forms.py:325 +#: ipam/forms/model_forms.py:325 msgid "NAT IP (Inside)" msgstr "NAT IP (wewnątrz)" -#: netbox/ipam/forms/model_forms.py:384 +#: ipam/forms/model_forms.py:384 msgid "An IP address can only be assigned to a single object." msgstr "Adres IP może być przypisany tylko do jednego obiektu." -#: netbox/ipam/forms/model_forms.py:390 netbox/ipam/models/ip.py:897 +#: ipam/forms/model_forms.py:390 ipam/models/ip.py:897 msgid "" "Cannot reassign IP address while it is designated as the primary IP for the " "parent object" @@ -9824,31 +9229,30 @@ msgstr "" "Nie można ponownie przypisać adresu IP, gdy jest on wyznaczony jako główny " "adres IP dla obiektu nadrzędnego" -#: netbox/ipam/forms/model_forms.py:400 +#: ipam/forms/model_forms.py:400 msgid "" "Only IP addresses assigned to an interface can be designated as primary IPs." msgstr "" "Tylko adresy IP przypisane do interfejsu mogą być oznaczone jako podstawowe " "adresy IP." -#: netbox/ipam/forms/model_forms.py:475 +#: ipam/forms/model_forms.py:475 msgid "Virtual IP Address" msgstr "Wirtualny adres IP" -#: netbox/ipam/forms/model_forms.py:560 +#: ipam/forms/model_forms.py:560 msgid "Assignment already exists" msgstr "Przydział już istnieje" -#: netbox/ipam/forms/model_forms.py:569 -#: netbox/templates/ipam/vlangroup.html:42 +#: ipam/forms/model_forms.py:569 templates/ipam/vlangroup.html:42 msgid "VLAN IDs" msgstr "Identyfikatory sieci VLAN" -#: netbox/ipam/forms/model_forms.py:587 +#: ipam/forms/model_forms.py:587 msgid "Child VLANs" msgstr "Dziecięce sieci VLAN" -#: netbox/ipam/forms/model_forms.py:664 netbox/ipam/forms/model_forms.py:696 +#: ipam/forms/model_forms.py:664 ipam/forms/model_forms.py:696 msgid "" "Comma-separated list of one or more port numbers. A range may be specified " "using a hyphen." @@ -9856,134 +9260,133 @@ msgstr "" "Oddzielona przecinkami lista jednego lub więcej numerów portów. Zakres można" " określić za pomocą myślnika." -#: netbox/ipam/forms/model_forms.py:669 -#: netbox/templates/ipam/servicetemplate.html:12 +#: ipam/forms/model_forms.py:669 templates/ipam/servicetemplate.html:12 msgid "Service Template" msgstr "Szablon usługi" -#: netbox/ipam/forms/model_forms.py:716 +#: ipam/forms/model_forms.py:716 msgid "Port(s)" msgstr "Port (y)" -#: netbox/ipam/forms/model_forms.py:717 netbox/ipam/forms/model_forms.py:745 -#: netbox/templates/ipam/service.html:21 +#: ipam/forms/model_forms.py:717 ipam/forms/model_forms.py:745 +#: templates/ipam/service.html:21 msgid "Service" msgstr "Serwis" -#: netbox/ipam/forms/model_forms.py:730 +#: ipam/forms/model_forms.py:730 msgid "Service template" msgstr "Szablon usługi" -#: netbox/ipam/forms/model_forms.py:742 +#: ipam/forms/model_forms.py:742 msgid "From Template" msgstr "Z szablonu" -#: netbox/ipam/forms/model_forms.py:743 +#: ipam/forms/model_forms.py:743 msgid "Custom" msgstr "Niestandardowe" -#: netbox/ipam/forms/model_forms.py:773 +#: ipam/forms/model_forms.py:773 msgid "" "Must specify name, protocol, and port(s) if not using a service template." msgstr "" "Musi podać nazwę, protokół i port (y), jeśli nie używasz szablonu usługi." -#: netbox/ipam/models/asns.py:34 +#: ipam/models/asns.py:34 msgid "start" msgstr "start" -#: netbox/ipam/models/asns.py:51 +#: ipam/models/asns.py:51 msgid "ASN range" msgstr "Zakres ASN" -#: netbox/ipam/models/asns.py:52 +#: ipam/models/asns.py:52 msgid "ASN ranges" msgstr "Zakresy ASN" -#: netbox/ipam/models/asns.py:72 +#: ipam/models/asns.py:72 #, python-brace-format msgid "Starting ASN ({start}) must be lower than ending ASN ({end})." msgstr "" "Rozpoczęcie ASN ({start}) musi być niższy niż kończący się ASN ({end})." -#: netbox/ipam/models/asns.py:104 +#: ipam/models/asns.py:104 msgid "Regional Internet Registry responsible for this AS number space" msgstr "" "Regionalny Rejestr Internetowy odpowiedzialny za tę przestrzeń numeryczną AS" -#: netbox/ipam/models/asns.py:109 +#: ipam/models/asns.py:109 msgid "16- or 32-bit autonomous system number" msgstr "16- lub 32-bitowy autonomiczny numer systemu" -#: netbox/ipam/models/fhrp.py:22 +#: ipam/models/fhrp.py:22 msgid "group ID" msgstr "ID grupy" -#: netbox/ipam/models/fhrp.py:30 netbox/ipam/models/services.py:22 +#: ipam/models/fhrp.py:30 ipam/models/services.py:22 msgid "protocol" msgstr "protokół" -#: netbox/ipam/models/fhrp.py:38 netbox/wireless/models.py:28 +#: ipam/models/fhrp.py:38 wireless/models.py:28 msgid "authentication type" msgstr "typ uwierzytelniania" -#: netbox/ipam/models/fhrp.py:43 +#: ipam/models/fhrp.py:43 msgid "authentication key" msgstr "klucz uwierzytelniania" -#: netbox/ipam/models/fhrp.py:56 +#: ipam/models/fhrp.py:56 msgid "FHRP group" msgstr "Grupa FHRP" -#: netbox/ipam/models/fhrp.py:57 +#: ipam/models/fhrp.py:57 msgid "FHRP groups" msgstr "Grupy FHRP" -#: netbox/ipam/models/fhrp.py:113 +#: ipam/models/fhrp.py:113 msgid "FHRP group assignment" msgstr "Przydział grupy FHRP" -#: netbox/ipam/models/fhrp.py:114 +#: ipam/models/fhrp.py:114 msgid "FHRP group assignments" msgstr "Zadania grupowe FHRP" -#: netbox/ipam/models/ip.py:65 +#: ipam/models/ip.py:65 msgid "private" msgstr "prywatny" -#: netbox/ipam/models/ip.py:66 +#: ipam/models/ip.py:66 msgid "IP space managed by this RIR is considered private" msgstr "Przestrzeń IP zarządzana przez ten RIR jest uważana za prywatną" -#: netbox/ipam/models/ip.py:72 netbox/netbox/navigation/menu.py:182 +#: ipam/models/ip.py:72 netbox/navigation/menu.py:182 msgid "RIRs" msgstr "RIR" -#: netbox/ipam/models/ip.py:84 +#: ipam/models/ip.py:84 msgid "IPv4 or IPv6 network" msgstr "Sieć IPv4 lub IPv6" -#: netbox/ipam/models/ip.py:91 +#: ipam/models/ip.py:91 msgid "Regional Internet Registry responsible for this IP space" msgstr "Regionalny Rejestr Internetowy odpowiedzialny za tę przestrzeń IP" -#: netbox/ipam/models/ip.py:101 +#: ipam/models/ip.py:101 msgid "date added" msgstr "data dodania" -#: netbox/ipam/models/ip.py:115 +#: ipam/models/ip.py:115 msgid "aggregate" msgstr "agregat" -#: netbox/ipam/models/ip.py:116 +#: ipam/models/ip.py:116 msgid "aggregates" msgstr "agregaty" -#: netbox/ipam/models/ip.py:132 +#: ipam/models/ip.py:132 msgid "Cannot create aggregate with /0 mask." msgstr "Nie można utworzyć agregatu z maską /0." -#: netbox/ipam/models/ip.py:144 +#: ipam/models/ip.py:144 #, python-brace-format msgid "" "Aggregates cannot overlap. {prefix} is already covered by an existing " @@ -9992,7 +9395,7 @@ msgstr "" "Agregaty nie mogą się nakładać. {prefix} jest już objęty istniejącym " "agregatem ({aggregate})." -#: netbox/ipam/models/ip.py:158 +#: ipam/models/ip.py:158 #, python-brace-format msgid "" "Prefixes cannot overlap aggregates. {prefix} covers an existing aggregate " @@ -10001,229 +9404,227 @@ msgstr "" "Prefiksy nie mogą nakładać się na agregaty. {prefix} obejmuje istniejące " "kruszywo ({aggregate})." -#: netbox/ipam/models/ip.py:200 netbox/ipam/models/ip.py:737 -#: netbox/vpn/models/tunnels.py:114 +#: ipam/models/ip.py:200 ipam/models/ip.py:737 vpn/models/tunnels.py:114 msgid "role" msgstr "roli" -#: netbox/ipam/models/ip.py:201 +#: ipam/models/ip.py:201 msgid "roles" msgstr "ról" -#: netbox/ipam/models/ip.py:217 netbox/ipam/models/ip.py:293 +#: ipam/models/ip.py:217 ipam/models/ip.py:293 msgid "prefix" msgstr "prefiks" -#: netbox/ipam/models/ip.py:218 +#: ipam/models/ip.py:218 msgid "IPv4 or IPv6 network with mask" msgstr "Sieć IPv4 lub IPv6 z maską" -#: netbox/ipam/models/ip.py:254 +#: ipam/models/ip.py:254 msgid "Operational status of this prefix" msgstr "Status operacyjny tego prefiksu" -#: netbox/ipam/models/ip.py:262 +#: ipam/models/ip.py:262 msgid "The primary function of this prefix" -msgstr "Podstawowa funkcja tego przedrostka" +msgstr "Podstawowa funkcja tego prefiksu" -#: netbox/ipam/models/ip.py:265 +#: ipam/models/ip.py:265 msgid "is a pool" msgstr "jest basenem" -#: netbox/ipam/models/ip.py:267 +#: ipam/models/ip.py:267 msgid "All IP addresses within this prefix are considered usable" -msgstr "Wszystkie adresy IP w tym prefiksie są uważane za użyteczne" +msgstr "Wszystkie adresy IP w tym prefiksie są uważane za użyteczne" -#: netbox/ipam/models/ip.py:270 netbox/ipam/models/ip.py:537 +#: ipam/models/ip.py:270 ipam/models/ip.py:537 msgid "mark utilized" msgstr "użyty znak" -#: netbox/ipam/models/ip.py:294 +#: ipam/models/ip.py:294 msgid "prefixes" -msgstr "przedrostki" +msgstr "prefiksy" -#: netbox/ipam/models/ip.py:317 +#: ipam/models/ip.py:317 msgid "Cannot create prefix with /0 mask." msgstr "Nie można utworzyć prefiksu z maską /0." -#: netbox/ipam/models/ip.py:324 netbox/ipam/models/ip.py:874 +#: ipam/models/ip.py:324 ipam/models/ip.py:874 #, python-brace-format msgid "VRF {vrf}" msgstr "VRF {vrf}" -#: netbox/ipam/models/ip.py:324 netbox/ipam/models/ip.py:874 +#: ipam/models/ip.py:324 ipam/models/ip.py:874 msgid "global table" msgstr "tabela globalna" -#: netbox/ipam/models/ip.py:326 +#: ipam/models/ip.py:326 #, python-brace-format msgid "Duplicate prefix found in {table}: {prefix}" -msgstr "Zduplikowany prefiks znaleziony w {table}: {prefix}" +msgstr "Zduplikowany prefiks znaleziony w {table}: {prefix}" -#: netbox/ipam/models/ip.py:495 +#: ipam/models/ip.py:495 msgid "start address" msgstr "adres początkowy" -#: netbox/ipam/models/ip.py:496 netbox/ipam/models/ip.py:500 -#: netbox/ipam/models/ip.py:712 +#: ipam/models/ip.py:496 ipam/models/ip.py:500 ipam/models/ip.py:712 msgid "IPv4 or IPv6 address (with mask)" msgstr "Adres IPv4 lub IPv6 (z maską)" -#: netbox/ipam/models/ip.py:499 +#: ipam/models/ip.py:499 msgid "end address" msgstr "adres końcowy" -#: netbox/ipam/models/ip.py:526 +#: ipam/models/ip.py:526 msgid "Operational status of this range" msgstr "Stan operacyjny tego zakresu" -#: netbox/ipam/models/ip.py:534 +#: ipam/models/ip.py:534 msgid "The primary function of this range" msgstr "Podstawowa funkcja tego zakresu" -#: netbox/ipam/models/ip.py:548 +#: ipam/models/ip.py:548 msgid "IP range" msgstr "Zakres IP" -#: netbox/ipam/models/ip.py:549 +#: ipam/models/ip.py:549 msgid "IP ranges" msgstr "Zakresy IP" -#: netbox/ipam/models/ip.py:565 +#: ipam/models/ip.py:565 msgid "Starting and ending IP address versions must match" msgstr "Początkowe i kończące wersje adresu IP muszą być zgodne" -#: netbox/ipam/models/ip.py:571 +#: ipam/models/ip.py:571 msgid "Starting and ending IP address masks must match" msgstr "Początkowe i kończące maski adresów IP muszą być zgodne" -#: netbox/ipam/models/ip.py:578 +#: ipam/models/ip.py:578 #, python-brace-format msgid "" "Ending address must be greater than the starting address ({start_address})" msgstr "Adres końcowy musi być większy niż adres początkowy ({start_address})" -#: netbox/ipam/models/ip.py:590 +#: ipam/models/ip.py:590 #, python-brace-format msgid "Defined addresses overlap with range {overlapping_range} in VRF {vrf}" msgstr "" "Zdefiniowane adresy pokrywają się z zakresem {overlapping_range} w VRF {vrf}" -#: netbox/ipam/models/ip.py:599 +#: ipam/models/ip.py:599 #, python-brace-format msgid "Defined range exceeds maximum supported size ({max_size})" msgstr "" "Zdefiniowany zakres przekracza maksymalny obsługiwany rozmiar ({max_size})" -#: netbox/ipam/models/ip.py:711 netbox/tenancy/models/contacts.py:82 +#: ipam/models/ip.py:711 tenancy/models/contacts.py:82 msgid "address" msgstr "przemawiać" -#: netbox/ipam/models/ip.py:734 +#: ipam/models/ip.py:734 msgid "The operational status of this IP" msgstr "Status operacyjny niniejszego IP" -#: netbox/ipam/models/ip.py:741 +#: ipam/models/ip.py:741 msgid "The functional role of this IP" msgstr "Funkcjonalna rola tego IP" -#: netbox/ipam/models/ip.py:765 netbox/templates/ipam/ipaddress.html:72 +#: ipam/models/ip.py:765 templates/ipam/ipaddress.html:72 msgid "NAT (inside)" msgstr "NAT (wewnątrz)" -#: netbox/ipam/models/ip.py:766 +#: ipam/models/ip.py:766 msgid "The IP for which this address is the \"outside\" IP" msgstr "IP, dla którego ten adres jest „zewnętrznym” adresem IP" -#: netbox/ipam/models/ip.py:773 +#: ipam/models/ip.py:773 msgid "Hostname or FQDN (not case-sensitive)" msgstr "Nazwa hosta lub FQDN (nie rozróżnia wielkości liter)" -#: netbox/ipam/models/ip.py:789 netbox/ipam/models/services.py:94 +#: ipam/models/ip.py:789 ipam/models/services.py:94 msgid "IP addresses" msgstr "Adresy IP" -#: netbox/ipam/models/ip.py:845 +#: ipam/models/ip.py:845 msgid "Cannot create IP address with /0 mask." msgstr "Nie można utworzyć adresu IP z maską /0." -#: netbox/ipam/models/ip.py:851 +#: ipam/models/ip.py:851 #, python-brace-format msgid "{ip} is a network ID, which may not be assigned to an interface." msgstr "" "{ip} jest identyfikatorem sieci, który może nie być przypisany do " "interfejsu." -#: netbox/ipam/models/ip.py:862 +#: ipam/models/ip.py:862 #, python-brace-format msgid "" "{ip} is a broadcast address, which may not be assigned to an interface." msgstr "" "{ip} jest adresem nadawczym, który nie może być przypisany do interfejsu." -#: netbox/ipam/models/ip.py:876 +#: ipam/models/ip.py:876 #, python-brace-format msgid "Duplicate IP address found in {table}: {ipaddress}" msgstr "Zduplikowany adres IP znaleziony w {table}: {ipaddress}" -#: netbox/ipam/models/ip.py:903 +#: ipam/models/ip.py:903 msgid "Only IPv6 addresses can be assigned SLAAC status" msgstr "Tylko adresy IPv6 mogą mieć przypisany status SLAAC" -#: netbox/ipam/models/services.py:33 +#: ipam/models/services.py:33 msgid "port numbers" msgstr "numery portów" -#: netbox/ipam/models/services.py:59 +#: ipam/models/services.py:59 msgid "service template" msgstr "szablon usługi" -#: netbox/ipam/models/services.py:60 +#: ipam/models/services.py:60 msgid "service templates" msgstr "szablony usług" -#: netbox/ipam/models/services.py:95 +#: ipam/models/services.py:95 msgid "The specific IP addresses (if any) to which this service is bound" msgstr "" "Konkretne adresy IP (jeśli istnieją), z którymi ta usługa jest związana" -#: netbox/ipam/models/services.py:102 +#: ipam/models/services.py:102 msgid "service" msgstr "usługi" -#: netbox/ipam/models/services.py:103 +#: ipam/models/services.py:103 msgid "services" msgstr "usług" -#: netbox/ipam/models/services.py:117 +#: ipam/models/services.py:117 msgid "" "A service cannot be associated with both a device and a virtual machine." msgstr "" "Usługa nie może być powiązana zarówno z urządzeniem, jak i maszyną " "wirtualną." -#: netbox/ipam/models/services.py:119 +#: ipam/models/services.py:119 msgid "" "A service must be associated with either a device or a virtual machine." msgstr "Usługa musi być powiązana z urządzeniem lub maszyną wirtualną." -#: netbox/ipam/models/vlans.py:85 +#: ipam/models/vlans.py:85 msgid "VLAN groups" msgstr "Grupy VLAN" -#: netbox/ipam/models/vlans.py:95 +#: ipam/models/vlans.py:95 msgid "Cannot set scope_type without scope_id." msgstr "Nie można ustawić typu skope_bez identyfikatora scope_id." -#: netbox/ipam/models/vlans.py:97 +#: ipam/models/vlans.py:97 msgid "Cannot set scope_id without scope_type." msgstr "Nie można ustawić scope_id bez scope_type." -#: netbox/ipam/models/vlans.py:101 +#: ipam/models/vlans.py:101 msgid "Ranges cannot overlap." msgstr "Zakresy nie mogą się nakładać." -#: netbox/ipam/models/vlans.py:106 +#: ipam/models/vlans.py:106 #, python-brace-format msgid "" "Maximum child VID must be greater than or equal to minimum child VID " @@ -10232,28 +9633,28 @@ msgstr "" "Maksymalny VID dziecka musi być większy lub równy minimalnej wartości VID " "dziecka ({value})" -#: netbox/ipam/models/vlans.py:165 +#: ipam/models/vlans.py:165 msgid "The specific site to which this VLAN is assigned (if any)" msgstr "" "Określona strona, do której przypisana jest ta sieć VLAN (jeśli istnieje)" -#: netbox/ipam/models/vlans.py:173 +#: ipam/models/vlans.py:173 msgid "VLAN group (optional)" msgstr "Grupa VLAN (opcjonalnie)" -#: netbox/ipam/models/vlans.py:181 +#: ipam/models/vlans.py:181 msgid "Numeric VLAN ID (1-4094)" msgstr "Numeryczny identyfikator sieci VLAN (1-4094)" -#: netbox/ipam/models/vlans.py:199 +#: ipam/models/vlans.py:199 msgid "Operational status of this VLAN" msgstr "Stan operacyjny tej sieci VLAN" -#: netbox/ipam/models/vlans.py:207 +#: ipam/models/vlans.py:207 msgid "The primary function of this VLAN" -msgstr "Podstawowa funkcja tej sieci VLAN" +msgstr "Podstawowa funkcja tej VLAN" -#: netbox/ipam/models/vlans.py:250 +#: ipam/models/vlans.py:250 #, python-brace-format msgid "" "VLAN is assigned to group {group} (scope: {scope}); cannot also assign to " @@ -10262,167 +9663,165 @@ msgstr "" "VLAN jest przypisana do grupy {group} (zakres: {scope}); nie można również " "przypisać do witryny {site}." -#: netbox/ipam/models/vlans.py:259 +#: ipam/models/vlans.py:259 #, python-brace-format msgid "VID must be in ranges {ranges} for VLANs in group {group}" msgstr "VID musi być w zakresach {ranges} dla sieci VLAN w grupie {group}" -#: netbox/ipam/models/vrfs.py:30 +#: ipam/models/vrfs.py:30 msgid "route distinguisher" msgstr "rozróżniacz trasy" -#: netbox/ipam/models/vrfs.py:31 +#: ipam/models/vrfs.py:31 msgid "Unique route distinguisher (as defined in RFC 4364)" msgstr "Unikalny rozróżniacz trasy (zgodnie z definicją w RFC 4364)" -#: netbox/ipam/models/vrfs.py:42 +#: ipam/models/vrfs.py:42 msgid "enforce unique space" msgstr "egzekwuj unikalną przestrzeń" -#: netbox/ipam/models/vrfs.py:43 +#: ipam/models/vrfs.py:43 msgid "Prevent duplicate prefixes/IP addresses within this VRF" -msgstr "Zapobiegaj zduplikowaniu prefiks/adresów IP w tym VRF" +msgstr "Zapobiegaj duplikowaniu prefiksów / adresów IP w tym VRF" -#: netbox/ipam/models/vrfs.py:63 netbox/netbox/navigation/menu.py:186 -#: netbox/netbox/navigation/menu.py:188 +#: ipam/models/vrfs.py:63 netbox/navigation/menu.py:186 +#: netbox/navigation/menu.py:188 msgid "VRFs" msgstr "VRF" -#: netbox/ipam/models/vrfs.py:82 +#: ipam/models/vrfs.py:82 msgid "Route target value (formatted in accordance with RFC 4360)" msgstr "Wartość docelowa trasy (sformatowana zgodnie z RFC 4360)" -#: netbox/ipam/models/vrfs.py:94 +#: ipam/models/vrfs.py:94 msgid "route target" msgstr "cel trasy" -#: netbox/ipam/models/vrfs.py:95 +#: ipam/models/vrfs.py:95 msgid "route targets" msgstr "cele trasy" -#: netbox/ipam/tables/asn.py:52 +#: ipam/tables/asn.py:52 msgid "ASDOT" msgstr "ASDOT" -#: netbox/ipam/tables/asn.py:57 +#: ipam/tables/asn.py:57 msgid "Site Count" msgstr "Liczba witryn" -#: netbox/ipam/tables/asn.py:62 +#: ipam/tables/asn.py:62 msgid "Provider Count" msgstr "Liczba dostawców" -#: netbox/ipam/tables/ip.py:95 netbox/netbox/navigation/menu.py:179 -#: netbox/netbox/navigation/menu.py:181 +#: ipam/tables/ip.py:95 netbox/navigation/menu.py:179 +#: netbox/navigation/menu.py:181 msgid "Aggregates" msgstr "Agregaty" -#: netbox/ipam/tables/ip.py:125 +#: ipam/tables/ip.py:125 msgid "Added" msgstr "Dodano" -#: netbox/ipam/tables/ip.py:128 netbox/ipam/tables/ip.py:166 -#: netbox/ipam/tables/vlans.py:142 netbox/ipam/views.py:346 -#: netbox/netbox/navigation/menu.py:165 netbox/netbox/navigation/menu.py:167 -#: netbox/templates/ipam/vlan.html:84 +#: ipam/tables/ip.py:128 ipam/tables/ip.py:166 ipam/tables/vlans.py:142 +#: ipam/views.py:346 netbox/navigation/menu.py:165 +#: netbox/navigation/menu.py:167 templates/ipam/vlan.html:84 msgid "Prefixes" msgstr "Prefiksy" -#: netbox/ipam/tables/ip.py:131 netbox/ipam/tables/ip.py:270 -#: netbox/ipam/tables/ip.py:324 netbox/ipam/tables/vlans.py:86 -#: netbox/templates/dcim/device.html:260 -#: netbox/templates/ipam/aggregate.html:24 -#: netbox/templates/ipam/iprange.html:29 netbox/templates/ipam/prefix.html:106 +#: ipam/tables/ip.py:131 ipam/tables/ip.py:270 ipam/tables/ip.py:324 +#: ipam/tables/vlans.py:86 templates/dcim/device.html:260 +#: templates/ipam/aggregate.html:24 templates/ipam/iprange.html:29 +#: templates/ipam/prefix.html:106 msgid "Utilization" msgstr "Wykorzystanie" -#: netbox/ipam/tables/ip.py:171 netbox/netbox/navigation/menu.py:161 +#: ipam/tables/ip.py:171 netbox/navigation/menu.py:161 msgid "IP Ranges" msgstr "Zakresy IP" -#: netbox/ipam/tables/ip.py:221 +#: ipam/tables/ip.py:221 msgid "Prefix (Flat)" msgstr "Prefiks (płaski)" -#: netbox/ipam/tables/ip.py:225 +#: ipam/tables/ip.py:225 msgid "Depth" msgstr "Głębokość" -#: netbox/ipam/tables/ip.py:262 +#: ipam/tables/ip.py:262 msgid "Pool" msgstr "Basen" -#: netbox/ipam/tables/ip.py:266 netbox/ipam/tables/ip.py:320 +#: ipam/tables/ip.py:266 ipam/tables/ip.py:320 msgid "Marked Utilized" msgstr "Oznaczone Używane" -#: netbox/ipam/tables/ip.py:304 +#: ipam/tables/ip.py:304 msgid "Start address" msgstr "Adres początkowy" -#: netbox/ipam/tables/ip.py:383 +#: ipam/tables/ip.py:383 msgid "NAT (Inside)" msgstr "NAT (Wewnątrz)" -#: netbox/ipam/tables/ip.py:388 +#: ipam/tables/ip.py:388 msgid "NAT (Outside)" msgstr "NAT (na zewnątrz)" -#: netbox/ipam/tables/ip.py:393 +#: ipam/tables/ip.py:393 msgid "Assigned" msgstr "Przypisany" -#: netbox/ipam/tables/ip.py:429 netbox/templates/vpn/l2vpntermination.html:16 -#: netbox/vpn/forms/filtersets.py:240 +#: ipam/tables/ip.py:429 templates/vpn/l2vpntermination.html:16 +#: vpn/forms/filtersets.py:240 msgid "Assigned Object" msgstr "Przypisany obiekt" -#: netbox/ipam/tables/vlans.py:68 +#: ipam/tables/vlans.py:68 msgid "Scope Type" msgstr "Rodzaj zakresu" -#: netbox/ipam/tables/vlans.py:76 +#: ipam/tables/vlans.py:76 msgid "VID Ranges" msgstr "Zakresy VID" -#: netbox/ipam/tables/vlans.py:111 netbox/ipam/tables/vlans.py:214 -#: netbox/templates/dcim/inc/interface_vlans_table.html:4 +#: ipam/tables/vlans.py:111 ipam/tables/vlans.py:214 +#: templates/dcim/inc/interface_vlans_table.html:4 msgid "VID" msgstr "VIDEO" -#: netbox/ipam/tables/vrfs.py:30 +#: ipam/tables/vrfs.py:30 msgid "RD" msgstr "RD." -#: netbox/ipam/tables/vrfs.py:33 +#: ipam/tables/vrfs.py:33 msgid "Unique" msgstr "Wyjątkowy" -#: netbox/ipam/tables/vrfs.py:37 netbox/vpn/tables/l2vpn.py:27 +#: ipam/tables/vrfs.py:37 vpn/tables/l2vpn.py:27 msgid "Import Targets" msgstr "Importuj cele" -#: netbox/ipam/tables/vrfs.py:42 netbox/vpn/tables/l2vpn.py:32 +#: ipam/tables/vrfs.py:42 vpn/tables/l2vpn.py:32 msgid "Export Targets" msgstr "Cele eksportu" -#: netbox/ipam/validators.py:9 +#: ipam/validators.py:9 #, python-brace-format msgid "{prefix} is not a valid prefix. Did you mean {suggested}?" msgstr "" -"{prefix} nie jest prawidłowym prefiksem. Czy chodziło ci o to {suggested}?" +"{prefix} nie jest prawidłowym prefiksem. Czy chodziło Ci o {suggested}?" -#: netbox/ipam/validators.py:16 +#: ipam/validators.py:16 #, python-format msgid "The prefix length must be less than or equal to %(limit_value)s." -msgstr "Długość przedrostka musi być mniejsza lub równa %(limit_value)s." +msgstr "Długość przedrostka musi być mniejsza niż lub równa %(limit_value)s." -#: netbox/ipam/validators.py:24 +#: ipam/validators.py:24 #, python-format msgid "The prefix length must be greater than or equal to %(limit_value)s." -msgstr "Długość przedrostka musi być większa lub równa %(limit_value)s." +msgstr "Długość przedrostka musi być większa niż lub równa %(limit_value)s." -#: netbox/ipam/validators.py:33 +#: ipam/validators.py:33 msgid "" "Only alphanumeric characters, asterisks, hyphens, periods, and underscores " "are allowed in DNS names" @@ -10430,31 +9829,31 @@ msgstr "" "W nazwach DNS dozwolone są tylko znaki alfanumeryczne, gwiazdki, łączniki, " "kropki i podkreślenia" -#: netbox/ipam/views.py:533 +#: ipam/views.py:533 msgid "Child Prefixes" -msgstr "Przedrostki dziecięce" +msgstr "Prefiksy podrzędne" -#: netbox/ipam/views.py:569 +#: ipam/views.py:569 msgid "Child Ranges" msgstr "Zakresy dla dzieci" -#: netbox/ipam/views.py:898 +#: ipam/views.py:898 msgid "Related IPs" msgstr "Powiązane adresy IP" -#: netbox/ipam/views.py:1127 +#: ipam/views.py:1127 msgid "Device Interfaces" msgstr "Interfejsy urządzeń" -#: netbox/ipam/views.py:1145 +#: ipam/views.py:1145 msgid "VM Interfaces" msgstr "Interfejsy VM" -#: netbox/netbox/api/fields.py:65 +#: netbox/api/fields.py:65 msgid "This field may not be blank." msgstr "To pole może nie być puste." -#: netbox/netbox/api/fields.py:70 +#: netbox/api/fields.py:70 msgid "" "Value must be passed directly (e.g. \"foo\": 123); do not use a dictionary " "or list." @@ -10462,344 +9861,331 @@ msgstr "" "Wartość musi być przekazana bezpośrednio (np. „foo”: 123); nie używaj " "słownika ani listy." -#: netbox/netbox/api/fields.py:91 +#: netbox/api/fields.py:91 #, python-brace-format msgid "{value} is not a valid choice." msgstr "{value} Nie jest ważnym wyborem." -#: netbox/netbox/api/fields.py:104 +#: netbox/api/fields.py:104 #, python-brace-format msgid "Invalid content type: {content_type}" msgstr "Nieprawidłowy typ zawartości: {content_type}" -#: netbox/netbox/api/fields.py:105 +#: netbox/api/fields.py:105 msgid "Invalid value. Specify a content type as '.'." msgstr "" "Nieprawidłowa wartość. Określ typ zawartości jako " "'.”." -#: netbox/netbox/api/fields.py:167 +#: netbox/api/fields.py:167 msgid "Ranges must be specified in the form (lower, upper)." msgstr "Zakresy muszą być określone w formularzu (dolny, górny)." -#: netbox/netbox/api/fields.py:169 +#: netbox/api/fields.py:169 msgid "Range boundaries must be defined as integers." msgstr "Granice zakresu muszą być zdefiniowane jako liczby całkowite." -#: netbox/netbox/api/serializers/fields.py:40 +#: netbox/api/serializers/fields.py:40 #, python-brace-format msgid "{class_name} must implement get_view_name()" msgstr "{class_name} musi zaimplementować get_view_name ()" -#: netbox/netbox/authentication/__init__.py:138 +#: netbox/authentication/__init__.py:138 #, python-brace-format msgid "Invalid permission {permission} for model {model}" msgstr "Nieprawidłowe uprawnienia {permission} dla modelu {model}" -#: netbox/netbox/choices.py:49 +#: netbox/choices.py:49 msgid "Dark Red" msgstr "Ciemny czerwony" -#: netbox/netbox/choices.py:52 +#: netbox/choices.py:52 msgid "Rose" msgstr "Róża" -#: netbox/netbox/choices.py:53 +#: netbox/choices.py:53 msgid "Fuchsia" msgstr "Fuksja" -#: netbox/netbox/choices.py:55 +#: netbox/choices.py:55 msgid "Dark Purple" msgstr "Ciemnofioletowy" -#: netbox/netbox/choices.py:58 +#: netbox/choices.py:58 msgid "Light Blue" msgstr "Jasnoniebieski" -#: netbox/netbox/choices.py:61 +#: netbox/choices.py:61 msgid "Aqua" msgstr "wodny" -#: netbox/netbox/choices.py:62 +#: netbox/choices.py:62 msgid "Dark Green" msgstr "Ciemnozielony" -#: netbox/netbox/choices.py:64 +#: netbox/choices.py:64 msgid "Light Green" msgstr "Jasnozielony" -#: netbox/netbox/choices.py:65 +#: netbox/choices.py:65 msgid "Lime" msgstr "Wapno" -#: netbox/netbox/choices.py:67 +#: netbox/choices.py:67 msgid "Amber" msgstr "Amber" -#: netbox/netbox/choices.py:69 +#: netbox/choices.py:69 msgid "Dark Orange" msgstr "Ciemny Pomarańczowy" -#: netbox/netbox/choices.py:70 +#: netbox/choices.py:70 msgid "Brown" msgstr "Brązowy" -#: netbox/netbox/choices.py:71 +#: netbox/choices.py:71 msgid "Light Grey" msgstr "Jasnoszary" -#: netbox/netbox/choices.py:72 +#: netbox/choices.py:72 msgid "Grey" msgstr "Szary" -#: netbox/netbox/choices.py:73 +#: netbox/choices.py:73 msgid "Dark Grey" msgstr "Ciemny szary" -#: netbox/netbox/choices.py:128 +#: netbox/choices.py:128 msgid "Direct" msgstr "Bezpośredni" -#: netbox/netbox/choices.py:129 +#: netbox/choices.py:129 msgid "Upload" msgstr "Przesyłanie" -#: netbox/netbox/choices.py:141 netbox/netbox/choices.py:155 +#: netbox/choices.py:141 netbox/choices.py:155 msgid "Auto-detect" msgstr "Automatyczne wykrywanie" -#: netbox/netbox/choices.py:156 +#: netbox/choices.py:156 msgid "Comma" msgstr "przecinek" -#: netbox/netbox/choices.py:157 +#: netbox/choices.py:157 msgid "Semicolon" msgstr "Średnik" -#: netbox/netbox/choices.py:158 +#: netbox/choices.py:158 msgid "Tab" msgstr "Zakładka" -#: netbox/netbox/config/__init__.py:67 +#: netbox/config/__init__.py:67 #, python-brace-format msgid "Invalid configuration parameter: {item}" msgstr "Nieprawidłowy parametr konfiguracyjny: {item}" -#: netbox/netbox/config/parameters.py:22 -#: netbox/templates/core/inc/config_data.html:62 +#: netbox/config/parameters.py:22 templates/core/inc/config_data.html:62 msgid "Login banner" msgstr "Baner logowania" -#: netbox/netbox/config/parameters.py:24 +#: netbox/config/parameters.py:24 msgid "Additional content to display on the login page" msgstr "Dodatkowe treści do wyświetlenia na stronie logowania" -#: netbox/netbox/config/parameters.py:33 -#: netbox/templates/core/inc/config_data.html:66 +#: netbox/config/parameters.py:33 templates/core/inc/config_data.html:66 msgid "Maintenance banner" msgstr "Baner konserwacyjny" -#: netbox/netbox/config/parameters.py:35 +#: netbox/config/parameters.py:35 msgid "Additional content to display when in maintenance mode" msgstr "Dodatkowa zawartość do wyświetlania w trybie konserwacji" -#: netbox/netbox/config/parameters.py:44 -#: netbox/templates/core/inc/config_data.html:70 +#: netbox/config/parameters.py:44 templates/core/inc/config_data.html:70 msgid "Top banner" msgstr "Górny baner" -#: netbox/netbox/config/parameters.py:46 +#: netbox/config/parameters.py:46 msgid "Additional content to display at the top of every page" msgstr "Dodatkowe treści do wyświetlenia na górze każdej strony" -#: netbox/netbox/config/parameters.py:55 -#: netbox/templates/core/inc/config_data.html:74 +#: netbox/config/parameters.py:55 templates/core/inc/config_data.html:74 msgid "Bottom banner" msgstr "Dolny baner" -#: netbox/netbox/config/parameters.py:57 +#: netbox/config/parameters.py:57 msgid "Additional content to display at the bottom of every page" msgstr "Dodatkowe treści do wyświetlenia na dole każdej strony" -#: netbox/netbox/config/parameters.py:68 +#: netbox/config/parameters.py:68 msgid "Globally unique IP space" msgstr "Unikalna na całym świecie przestrzeń IP" -#: netbox/netbox/config/parameters.py:70 +#: netbox/config/parameters.py:70 msgid "Enforce unique IP addressing within the global table" msgstr "Wymuszanie unikalnego adresowania IP w tabeli globalnej" -#: netbox/netbox/config/parameters.py:75 -#: netbox/templates/core/inc/config_data.html:44 +#: netbox/config/parameters.py:75 templates/core/inc/config_data.html:44 msgid "Prefer IPv4" msgstr "Preferuj IPv4" -#: netbox/netbox/config/parameters.py:77 +#: netbox/config/parameters.py:77 msgid "Prefer IPv4 addresses over IPv6" msgstr "Preferuj adresy IPv4 niż IPv6" -#: netbox/netbox/config/parameters.py:84 +#: netbox/config/parameters.py:84 msgid "Rack unit height" msgstr "Wysokość jednostki szafy" -#: netbox/netbox/config/parameters.py:86 +#: netbox/config/parameters.py:86 msgid "Default unit height for rendered rack elevations" msgstr "Domyślna wysokość jednostki dla renderowanych elewacji szafy" -#: netbox/netbox/config/parameters.py:91 +#: netbox/config/parameters.py:91 msgid "Rack unit width" msgstr "Szerokość jednostki szafy" -#: netbox/netbox/config/parameters.py:93 +#: netbox/config/parameters.py:93 msgid "Default unit width for rendered rack elevations" msgstr "Domyślna szerokość jednostki dla renderowanych elewacji szafy" -#: netbox/netbox/config/parameters.py:100 +#: netbox/config/parameters.py:100 msgid "Powerfeed voltage" msgstr "Napięcie zasilania" -#: netbox/netbox/config/parameters.py:102 +#: netbox/config/parameters.py:102 msgid "Default voltage for powerfeeds" msgstr "Domyślne napięcie zasilania" -#: netbox/netbox/config/parameters.py:107 +#: netbox/config/parameters.py:107 msgid "Powerfeed amperage" msgstr "Natężenie prądu zasilającego" -#: netbox/netbox/config/parameters.py:109 +#: netbox/config/parameters.py:109 msgid "Default amperage for powerfeeds" msgstr "Domyślne natężenie prądu zasilania" -#: netbox/netbox/config/parameters.py:114 +#: netbox/config/parameters.py:114 msgid "Powerfeed max utilization" msgstr "Maksymalne wykorzystanie zasilania" -#: netbox/netbox/config/parameters.py:116 +#: netbox/config/parameters.py:116 msgid "Default max utilization for powerfeeds" msgstr "Domyślne maksymalne wykorzystanie zasilaczy" -#: netbox/netbox/config/parameters.py:123 -#: netbox/templates/core/inc/config_data.html:53 +#: netbox/config/parameters.py:123 templates/core/inc/config_data.html:53 msgid "Allowed URL schemes" msgstr "Dozwolone schematy adresów URL" -#: netbox/netbox/config/parameters.py:128 +#: netbox/config/parameters.py:128 msgid "Permitted schemes for URLs in user-provided content" msgstr "" "Dozwolone schematy adresów URL w treści dostarczonych przez użytkownika" -#: netbox/netbox/config/parameters.py:136 +#: netbox/config/parameters.py:136 msgid "Default page size" msgstr "Domyślny rozmiar strony" -#: netbox/netbox/config/parameters.py:142 +#: netbox/config/parameters.py:142 msgid "Maximum page size" msgstr "Maksymalny rozmiar strony" -#: netbox/netbox/config/parameters.py:150 -#: netbox/templates/core/inc/config_data.html:96 +#: netbox/config/parameters.py:150 templates/core/inc/config_data.html:96 msgid "Custom validators" msgstr "Niestandardowe walidatory" -#: netbox/netbox/config/parameters.py:152 +#: netbox/config/parameters.py:152 msgid "Custom validation rules (JSON)" msgstr "Niestandardowe reguły walidacji (JSON)" -#: netbox/netbox/config/parameters.py:160 -#: netbox/templates/core/inc/config_data.html:104 +#: netbox/config/parameters.py:160 templates/core/inc/config_data.html:104 msgid "Protection rules" msgstr "Zasady ochrony" -#: netbox/netbox/config/parameters.py:162 +#: netbox/config/parameters.py:162 msgid "Deletion protection rules (JSON)" msgstr "Reguły ochrony przed usunięciem (JSON)" -#: netbox/netbox/config/parameters.py:172 -#: netbox/templates/core/inc/config_data.html:117 +#: netbox/config/parameters.py:172 templates/core/inc/config_data.html:117 msgid "Default preferences" msgstr "Preferencje domyślne" -#: netbox/netbox/config/parameters.py:174 +#: netbox/config/parameters.py:174 msgid "Default preferences for new users" msgstr "Domyślne preferencje dla nowych użytkowników" -#: netbox/netbox/config/parameters.py:181 -#: netbox/templates/core/inc/config_data.html:129 +#: netbox/config/parameters.py:181 templates/core/inc/config_data.html:129 msgid "Maintenance mode" msgstr "Tryb konserwacji" -#: netbox/netbox/config/parameters.py:183 +#: netbox/config/parameters.py:183 msgid "Enable maintenance mode" msgstr "Włącz tryb konserwacji" -#: netbox/netbox/config/parameters.py:188 -#: netbox/templates/core/inc/config_data.html:133 +#: netbox/config/parameters.py:188 templates/core/inc/config_data.html:133 msgid "GraphQL enabled" msgstr "GraphQL włączony" -#: netbox/netbox/config/parameters.py:190 +#: netbox/config/parameters.py:190 msgid "Enable the GraphQL API" msgstr "Włącz interfejs API GraphQL" -#: netbox/netbox/config/parameters.py:195 -#: netbox/templates/core/inc/config_data.html:137 +#: netbox/config/parameters.py:195 templates/core/inc/config_data.html:137 msgid "Changelog retention" msgstr "Przechowywanie dziennika zmian" -#: netbox/netbox/config/parameters.py:197 +#: netbox/config/parameters.py:197 msgid "Days to retain changelog history (set to zero for unlimited)" msgstr "" "Dni na zachowanie historii dziennika zmian (ustawione na zero dla " "nieograniczonego)" -#: netbox/netbox/config/parameters.py:202 +#: netbox/config/parameters.py:202 msgid "Job result retention" msgstr "Zachowanie wyników pracy" -#: netbox/netbox/config/parameters.py:204 +#: netbox/config/parameters.py:204 msgid "Days to retain job result history (set to zero for unlimited)" msgstr "" "Dni na zachowanie historii wyników pracy (ustawione na zero dla " "nieograniczonej liczby)" -#: netbox/netbox/config/parameters.py:209 -#: netbox/templates/core/inc/config_data.html:145 +#: netbox/config/parameters.py:209 templates/core/inc/config_data.html:145 msgid "Maps URL" msgstr "Adres URL map" -#: netbox/netbox/config/parameters.py:211 +#: netbox/config/parameters.py:211 msgid "Base URL for mapping geographic locations" msgstr "Podstawowy adres URL do mapowania lokalizacji geograficznych" -#: netbox/netbox/forms/__init__.py:12 +#: netbox/forms/__init__.py:12 msgid "Partial match" msgstr "Mecz częściowy" -#: netbox/netbox/forms/__init__.py:13 +#: netbox/forms/__init__.py:13 msgid "Exact match" msgstr "Dokładne dopasowanie" -#: netbox/netbox/forms/__init__.py:14 +#: netbox/forms/__init__.py:14 msgid "Starts with" msgstr "Zaczyna się od" -#: netbox/netbox/forms/__init__.py:15 +#: netbox/forms/__init__.py:15 msgid "Ends with" msgstr "Kończy się z" -#: netbox/netbox/forms/__init__.py:16 +#: netbox/forms/__init__.py:16 msgid "Regex" msgstr "Regex" -#: netbox/netbox/forms/__init__.py:34 +#: netbox/forms/__init__.py:34 msgid "Object type(s)" msgstr "Typ (y) obiektu" -#: netbox/netbox/forms/__init__.py:40 +#: netbox/forms/__init__.py:40 msgid "Lookup" msgstr "Wyszukiwanie" -#: netbox/netbox/forms/base.py:90 +#: netbox/forms/base.py:90 msgid "" "Tag slugs separated by commas, encased with double quotes (e.g. " "\"tag1,tag2,tag3\")" @@ -10807,429 +10193,413 @@ msgstr "" "Identyfikatory tagów oddzielone przecinkami, otoczone podwójnymi " "cudzysłowami (np. \"tag1,tag2,tag3\")" -#: netbox/netbox/forms/base.py:120 +#: netbox/forms/base.py:120 msgid "Add tags" msgstr "Dodawanie tagów" -#: netbox/netbox/forms/base.py:125 +#: netbox/forms/base.py:125 msgid "Remove tags" msgstr "Usuń tagi" -#: netbox/netbox/forms/mixins.py:38 +#: netbox/forms/mixins.py:38 #, python-brace-format msgid "{class_name} must specify a model class." msgstr "{class_name} musi określić klasę modelu." -#: netbox/netbox/models/features.py:280 +#: netbox/models/features.py:280 #, python-brace-format msgid "Unknown field name '{name}' in custom field data." msgstr "Nieznana nazwa pola '{name}'w danych pola niestandardowego." -#: netbox/netbox/models/features.py:286 +#: netbox/models/features.py:286 #, python-brace-format msgid "Invalid value for custom field '{name}': {error}" msgstr "Nieprawidłowa wartość pola niestandardowego '{name}”: {error}" -#: netbox/netbox/models/features.py:295 +#: netbox/models/features.py:295 #, python-brace-format msgid "Custom field '{name}' must have a unique value." msgstr "Pole niestandardowe '{name}„musi mieć unikalną wartość." -#: netbox/netbox/models/features.py:302 +#: netbox/models/features.py:302 #, python-brace-format msgid "Missing required custom field '{name}'." msgstr "Brakujące wymagane pole niestandardowe '{name}”." -#: netbox/netbox/models/features.py:462 +#: netbox/models/features.py:462 msgid "Remote data source" msgstr "Zdalne źródło danych" -#: netbox/netbox/models/features.py:472 +#: netbox/models/features.py:472 msgid "data path" msgstr "ścieżka danych" -#: netbox/netbox/models/features.py:476 +#: netbox/models/features.py:476 msgid "Path to remote file (relative to data source root)" msgstr "Ścieżka do pliku zdalnego (względem katalogu głównego źródła danych)" -#: netbox/netbox/models/features.py:479 +#: netbox/models/features.py:479 msgid "auto sync enabled" msgstr "włączona automatyczna synchronizacja" -#: netbox/netbox/models/features.py:481 +#: netbox/models/features.py:481 msgid "Enable automatic synchronization of data when the data file is updated" msgstr "Włącz automatyczną synchronizację danych po aktualizacji pliku danych" -#: netbox/netbox/models/features.py:484 +#: netbox/models/features.py:484 msgid "date synced" msgstr "data zsynchronizowana" -#: netbox/netbox/models/features.py:578 +#: netbox/models/features.py:578 #, python-brace-format msgid "{class_name} must implement a sync_data() method." msgstr "{class_name} musi wdrożyć metodę sync_data ()." -#: netbox/netbox/navigation/menu.py:11 +#: netbox/navigation/menu.py:11 msgid "Organization" msgstr "Organizacja" -#: netbox/netbox/navigation/menu.py:19 +#: netbox/navigation/menu.py:19 msgid "Site Groups" msgstr "Grupy witryn" -#: netbox/netbox/navigation/menu.py:27 +#: netbox/navigation/menu.py:27 msgid "Tenant Groups" msgstr "Grupy najemców" -#: netbox/netbox/navigation/menu.py:34 +#: netbox/navigation/menu.py:34 msgid "Contact Groups" msgstr "Grupy kontaktowe" -#: netbox/netbox/navigation/menu.py:35 -#: netbox/templates/tenancy/contactrole.html:8 +#: netbox/navigation/menu.py:35 templates/tenancy/contactrole.html:8 msgid "Contact Roles" msgstr "Role kontaktowe" -#: netbox/netbox/navigation/menu.py:36 +#: netbox/navigation/menu.py:36 msgid "Contact Assignments" msgstr "Zadania kontaktowe" -#: netbox/netbox/navigation/menu.py:50 +#: netbox/navigation/menu.py:50 msgid "Rack Roles" msgstr "Role szafy" -#: netbox/netbox/navigation/menu.py:54 +#: netbox/navigation/menu.py:54 msgid "Elevations" msgstr "Elewacje" -#: netbox/netbox/navigation/menu.py:60 netbox/netbox/navigation/menu.py:62 +#: netbox/navigation/menu.py:60 netbox/navigation/menu.py:62 msgid "Rack Types" msgstr "Rodzaje szaf" -#: netbox/netbox/navigation/menu.py:76 +#: netbox/navigation/menu.py:76 msgid "Modules" msgstr "Moduły" -#: netbox/netbox/navigation/menu.py:80 netbox/templates/dcim/device.html:160 -#: netbox/templates/dcim/virtualdevicecontext.html:8 +#: netbox/navigation/menu.py:80 templates/dcim/device.html:160 +#: templates/dcim/virtualdevicecontext.html:8 msgid "Virtual Device Contexts" msgstr "Konteksty urządzeń wirtualnych" -#: netbox/netbox/navigation/menu.py:88 +#: netbox/navigation/menu.py:88 msgid "Manufacturers" msgstr "Producenci" -#: netbox/netbox/navigation/menu.py:92 +#: netbox/navigation/menu.py:92 msgid "Device Components" msgstr "Komponenty urządzenia" -#: netbox/netbox/navigation/menu.py:104 -#: netbox/templates/dcim/inventoryitemrole.html:8 +#: netbox/navigation/menu.py:104 templates/dcim/inventoryitemrole.html:8 msgid "Inventory Item Roles" msgstr "Role pozycji zapasów" -#: netbox/netbox/navigation/menu.py:111 netbox/netbox/navigation/menu.py:115 +#: netbox/navigation/menu.py:111 netbox/navigation/menu.py:115 msgid "Connections" msgstr "Połączenia" -#: netbox/netbox/navigation/menu.py:117 +#: netbox/navigation/menu.py:117 msgid "Cables" msgstr "Kable" -#: netbox/netbox/navigation/menu.py:118 +#: netbox/navigation/menu.py:118 msgid "Wireless Links" msgstr "Linki bezprzewodowe" -#: netbox/netbox/navigation/menu.py:121 +#: netbox/navigation/menu.py:121 msgid "Interface Connections" msgstr "Połączenia interfejsu" -#: netbox/netbox/navigation/menu.py:126 +#: netbox/navigation/menu.py:126 msgid "Console Connections" msgstr "Połączenia konsoli" -#: netbox/netbox/navigation/menu.py:131 +#: netbox/navigation/menu.py:131 msgid "Power Connections" msgstr "Połączenia zasilania" -#: netbox/netbox/navigation/menu.py:147 +#: netbox/navigation/menu.py:147 msgid "Wireless LAN Groups" msgstr "Grupy sieci bezprzewodowej sieci LAN" -#: netbox/netbox/navigation/menu.py:168 +#: netbox/navigation/menu.py:168 msgid "Prefix & VLAN Roles" -msgstr "Role prefiksów i sieci VLAN" +msgstr "Role prefiksów i VLAN" -#: netbox/netbox/navigation/menu.py:174 +#: netbox/navigation/menu.py:174 msgid "ASN Ranges" msgstr "Zakresy ASN" -#: netbox/netbox/navigation/menu.py:196 +#: netbox/navigation/menu.py:196 msgid "VLAN Groups" msgstr "Grupy VLAN" -#: netbox/netbox/navigation/menu.py:203 +#: netbox/navigation/menu.py:203 msgid "Service Templates" msgstr "Szablony usług" -#: netbox/netbox/navigation/menu.py:204 netbox/templates/dcim/device.html:302 -#: netbox/templates/ipam/ipaddress.html:118 -#: netbox/templates/virtualization/virtualmachine.html:154 +#: netbox/navigation/menu.py:204 templates/dcim/device.html:302 +#: templates/ipam/ipaddress.html:118 +#: templates/virtualization/virtualmachine.html:154 msgid "Services" msgstr "Usługi" -#: netbox/netbox/navigation/menu.py:211 +#: netbox/navigation/menu.py:211 msgid "VPN" msgstr "VPN" -#: netbox/netbox/navigation/menu.py:215 netbox/netbox/navigation/menu.py:217 -#: netbox/vpn/tables/tunnels.py:24 +#: netbox/navigation/menu.py:215 netbox/navigation/menu.py:217 +#: vpn/tables/tunnels.py:24 msgid "Tunnels" msgstr "Tunele" -#: netbox/netbox/navigation/menu.py:218 -#: netbox/templates/vpn/tunnelgroup.html:8 +#: netbox/navigation/menu.py:218 templates/vpn/tunnelgroup.html:8 msgid "Tunnel Groups" msgstr "Grupy tuneli" -#: netbox/netbox/navigation/menu.py:219 +#: netbox/navigation/menu.py:219 msgid "Tunnel Terminations" msgstr "Zakończenia tunelu" -#: netbox/netbox/navigation/menu.py:223 netbox/netbox/navigation/menu.py:225 -#: netbox/vpn/models/l2vpn.py:64 +#: netbox/navigation/menu.py:223 netbox/navigation/menu.py:225 +#: vpn/models/l2vpn.py:64 msgid "L2VPNs" msgstr "L2VPN" -#: netbox/netbox/navigation/menu.py:226 netbox/templates/vpn/l2vpn.html:56 -#: netbox/templates/vpn/tunnel.html:72 netbox/vpn/tables/tunnels.py:58 +#: netbox/navigation/menu.py:226 templates/vpn/l2vpn.html:56 +#: templates/vpn/tunnel.html:72 vpn/tables/tunnels.py:58 msgid "Terminations" msgstr "Zakończenia" -#: netbox/netbox/navigation/menu.py:232 +#: netbox/navigation/menu.py:232 msgid "IKE Proposals" msgstr "Propozycje IKE" -#: netbox/netbox/navigation/menu.py:233 -#: netbox/templates/vpn/ikeproposal.html:41 +#: netbox/navigation/menu.py:233 templates/vpn/ikeproposal.html:41 msgid "IKE Policies" msgstr "IKE Zasady działalności" -#: netbox/netbox/navigation/menu.py:234 +#: netbox/navigation/menu.py:234 msgid "IPSec Proposals" msgstr "Propozycje IPsec" -#: netbox/netbox/navigation/menu.py:235 -#: netbox/templates/vpn/ipsecproposal.html:37 +#: netbox/navigation/menu.py:235 templates/vpn/ipsecproposal.html:37 msgid "IPSec Policies" msgstr "Zasady IPsec" -#: netbox/netbox/navigation/menu.py:236 netbox/templates/vpn/ikepolicy.html:38 -#: netbox/templates/vpn/ipsecpolicy.html:25 +#: netbox/navigation/menu.py:236 templates/vpn/ikepolicy.html:38 +#: templates/vpn/ipsecpolicy.html:25 msgid "IPSec Profiles" msgstr "Profile IPsec" -#: netbox/netbox/navigation/menu.py:243 -#: netbox/templates/dcim/device_edit.html:78 +#: netbox/navigation/menu.py:243 templates/dcim/device_edit.html:78 msgid "Virtualization" msgstr "Wirtualizacja" -#: netbox/netbox/navigation/menu.py:251 -#: netbox/templates/virtualization/virtualmachine.html:174 -#: netbox/templates/virtualization/virtualmachine/base.html:32 -#: netbox/templates/virtualization/virtualmachine_list.html:21 -#: netbox/virtualization/tables/virtualmachines.py:104 -#: netbox/virtualization/views.py:388 +#: netbox/navigation/menu.py:251 +#: templates/virtualization/virtualmachine.html:174 +#: templates/virtualization/virtualmachine/base.html:32 +#: templates/virtualization/virtualmachine_list.html:21 +#: virtualization/tables/virtualmachines.py:104 virtualization/views.py:388 msgid "Virtual Disks" msgstr "Wirtualne dyski" -#: netbox/netbox/navigation/menu.py:258 +#: netbox/navigation/menu.py:258 msgid "Cluster Types" msgstr "Typy klastrów" -#: netbox/netbox/navigation/menu.py:259 +#: netbox/navigation/menu.py:259 msgid "Cluster Groups" msgstr "Grupy klastrów" -#: netbox/netbox/navigation/menu.py:273 +#: netbox/navigation/menu.py:273 msgid "Circuit Types" msgstr "Typy obwodów" -#: netbox/netbox/navigation/menu.py:274 +#: netbox/navigation/menu.py:274 msgid "Circuit Groups" msgstr "Grupy obwodów" -#: netbox/netbox/navigation/menu.py:275 -#: netbox/templates/circuits/circuit.html:66 +#: netbox/navigation/menu.py:275 templates/circuits/circuit.html:66 msgid "Group Assignments" msgstr "Zadania grupowe" -#: netbox/netbox/navigation/menu.py:276 +#: netbox/navigation/menu.py:276 msgid "Circuit Terminations" msgstr "Zakończenia obwodów" -#: netbox/netbox/navigation/menu.py:280 netbox/netbox/navigation/menu.py:282 +#: netbox/navigation/menu.py:280 netbox/navigation/menu.py:282 msgid "Providers" msgstr "Dostawcy" -#: netbox/netbox/navigation/menu.py:283 -#: netbox/templates/circuits/provider.html:51 +#: netbox/navigation/menu.py:283 templates/circuits/provider.html:51 msgid "Provider Accounts" msgstr "Konta dostawców" -#: netbox/netbox/navigation/menu.py:284 +#: netbox/navigation/menu.py:284 msgid "Provider Networks" msgstr "Sieci dostawców" -#: netbox/netbox/navigation/menu.py:298 +#: netbox/navigation/menu.py:298 msgid "Power Panels" msgstr "Panele zasilające" -#: netbox/netbox/navigation/menu.py:309 +#: netbox/navigation/menu.py:309 msgid "Configurations" msgstr "Konfiguracje" -#: netbox/netbox/navigation/menu.py:311 +#: netbox/navigation/menu.py:311 msgid "Config Contexts" msgstr "Konteksty konfiguracji" -#: netbox/netbox/navigation/menu.py:312 +#: netbox/navigation/menu.py:312 msgid "Config Templates" msgstr "Szablony konfiguracji" -#: netbox/netbox/navigation/menu.py:319 netbox/netbox/navigation/menu.py:323 +#: netbox/navigation/menu.py:319 netbox/navigation/menu.py:323 msgid "Customization" msgstr "Dostosowywanie" -#: netbox/netbox/navigation/menu.py:325 -#: netbox/templates/dcim/device_edit.html:103 -#: netbox/templates/dcim/htmx/cable_edit.html:81 -#: netbox/templates/dcim/virtualchassis_add.html:31 -#: netbox/templates/dcim/virtualchassis_edit.html:40 -#: netbox/templates/generic/bulk_edit.html:76 -#: netbox/templates/htmx/form.html:19 netbox/templates/inc/filter_list.html:30 -#: netbox/templates/inc/panels/custom_fields.html:7 -#: netbox/templates/ipam/ipaddress_bulk_add.html:35 -#: netbox/templates/ipam/vlan_edit.html:59 +#: netbox/navigation/menu.py:325 templates/dcim/device_edit.html:103 +#: templates/dcim/htmx/cable_edit.html:81 +#: templates/dcim/virtualchassis_add.html:31 +#: templates/dcim/virtualchassis_edit.html:40 +#: templates/generic/bulk_edit.html:76 templates/htmx/form.html:19 +#: templates/inc/filter_list.html:30 templates/inc/panels/custom_fields.html:7 +#: templates/ipam/ipaddress_bulk_add.html:35 templates/ipam/vlan_edit.html:59 msgid "Custom Fields" msgstr "Pola niestandardowe" -#: netbox/netbox/navigation/menu.py:326 +#: netbox/navigation/menu.py:326 msgid "Custom Field Choices" msgstr "Niestandardowe opcje pól" -#: netbox/netbox/navigation/menu.py:327 +#: netbox/navigation/menu.py:327 msgid "Custom Links" msgstr "Linki niestandardowe" -#: netbox/netbox/navigation/menu.py:328 +#: netbox/navigation/menu.py:328 msgid "Export Templates" msgstr "Szablony eksportu" -#: netbox/netbox/navigation/menu.py:329 +#: netbox/navigation/menu.py:329 msgid "Saved Filters" msgstr "Zapisane filtry" -#: netbox/netbox/navigation/menu.py:331 +#: netbox/navigation/menu.py:331 msgid "Image Attachments" msgstr "Załączniki do obrazów" -#: netbox/netbox/navigation/menu.py:349 +#: netbox/navigation/menu.py:349 msgid "Operations" msgstr "Operacje" -#: netbox/netbox/navigation/menu.py:353 +#: netbox/navigation/menu.py:353 msgid "Integrations" msgstr "Integracje" -#: netbox/netbox/navigation/menu.py:355 +#: netbox/navigation/menu.py:355 msgid "Data Sources" msgstr "Źródła danych" -#: netbox/netbox/navigation/menu.py:356 +#: netbox/navigation/menu.py:356 msgid "Event Rules" msgstr "Zasady zdarzeń" -#: netbox/netbox/navigation/menu.py:357 +#: netbox/navigation/menu.py:357 msgid "Webhooks" msgstr "Haczyki internetowe" -#: netbox/netbox/navigation/menu.py:361 netbox/netbox/navigation/menu.py:365 -#: netbox/netbox/views/generic/feature_views.py:153 -#: netbox/templates/extras/report/base.html:37 -#: netbox/templates/extras/script/base.html:36 +#: netbox/navigation/menu.py:361 netbox/navigation/menu.py:365 +#: netbox/views/generic/feature_views.py:153 +#: templates/extras/report/base.html:37 templates/extras/script/base.html:36 msgid "Jobs" msgstr "Oferty pracy" -#: netbox/netbox/navigation/menu.py:371 +#: netbox/navigation/menu.py:371 msgid "Logging" msgstr "Rejestracja" -#: netbox/netbox/navigation/menu.py:373 +#: netbox/navigation/menu.py:373 msgid "Notification Groups" msgstr "Grupy powiadomień" -#: netbox/netbox/navigation/menu.py:374 +#: netbox/navigation/menu.py:374 msgid "Journal Entries" msgstr "Wpisy do czasopism" -#: netbox/netbox/navigation/menu.py:375 -#: netbox/templates/core/objectchange.html:9 -#: netbox/templates/core/objectchange_list.html:4 +#: netbox/navigation/menu.py:375 templates/core/objectchange.html:9 +#: templates/core/objectchange_list.html:4 msgid "Change Log" msgstr "Dziennik zmian" -#: netbox/netbox/navigation/menu.py:382 netbox/templates/inc/user_menu.html:29 +#: netbox/navigation/menu.py:382 templates/inc/user_menu.html:29 msgid "Admin" msgstr "Administrator" -#: netbox/netbox/navigation/menu.py:430 netbox/templates/account/base.html:27 -#: netbox/templates/inc/user_menu.html:57 +#: netbox/navigation/menu.py:430 templates/account/base.html:27 +#: templates/inc/user_menu.html:57 msgid "API Tokens" msgstr "Tokeny API" -#: netbox/netbox/navigation/menu.py:437 netbox/users/forms/model_forms.py:187 -#: netbox/users/forms/model_forms.py:195 netbox/users/forms/model_forms.py:242 -#: netbox/users/forms/model_forms.py:249 +#: netbox/navigation/menu.py:437 users/forms/model_forms.py:187 +#: users/forms/model_forms.py:195 users/forms/model_forms.py:242 +#: users/forms/model_forms.py:249 msgid "Permissions" msgstr "Uprawnienia" -#: netbox/netbox/navigation/menu.py:445 netbox/netbox/navigation/menu.py:449 -#: netbox/templates/core/system.html:7 +#: netbox/navigation/menu.py:445 netbox/navigation/menu.py:449 +#: templates/core/system.html:7 msgid "System" msgstr "System" -#: netbox/netbox/navigation/menu.py:454 netbox/netbox/navigation/menu.py:502 -#: netbox/templates/500.html:35 netbox/templates/account/preferences.html:22 -#: netbox/templates/core/plugin.html:12 -#: netbox/templates/core/plugin_list.html:7 -#: netbox/templates/core/plugin_list.html:12 +#: netbox/navigation/menu.py:454 netbox/navigation/menu.py:502 +#: templates/500.html:35 templates/account/preferences.html:22 +#: templates/core/plugin.html:13 templates/core/plugin_list.html:7 +#: templates/core/plugin_list.html:12 msgid "Plugins" msgstr "Wtyczki" -#: netbox/netbox/navigation/menu.py:459 +#: netbox/navigation/menu.py:459 msgid "Configuration History" msgstr "Historia konfiguracji" -#: netbox/netbox/navigation/menu.py:465 netbox/templates/core/rq_task.html:8 -#: netbox/templates/core/rq_task_list.html:22 +#: netbox/navigation/menu.py:465 templates/core/rq_task.html:8 +#: templates/core/rq_task_list.html:22 msgid "Background Tasks" msgstr "Zadania w tle" -#: netbox/netbox/plugins/navigation.py:47 -#: netbox/netbox/plugins/navigation.py:69 +#: netbox/plugins/navigation.py:47 netbox/plugins/navigation.py:69 msgid "Permissions must be passed as a tuple or list." msgstr "Uprawnienia muszą być przekazywane jako kropka lub lista." -#: netbox/netbox/plugins/navigation.py:51 +#: netbox/plugins/navigation.py:51 msgid "Buttons must be passed as a tuple or list." msgstr "Przyciski muszą być przekazywane jako kółka lub lista." -#: netbox/netbox/plugins/navigation.py:73 +#: netbox/plugins/navigation.py:73 msgid "Button color must be a choice within ButtonColorChoices." msgstr "Kolor przycisku musi być wybrany w ButtonColorChoices." -#: netbox/netbox/plugins/registration.py:25 +#: netbox/plugins/registration.py:25 #, python-brace-format msgid "" "PluginTemplateExtension class {template_extension} was passed as an " @@ -11238,7 +10608,7 @@ msgstr "" "PluginTemplateExtension class {template_extension} Został przekazany jako " "przykład!" -#: netbox/netbox/plugins/registration.py:31 +#: netbox/plugins/registration.py:31 #, python-brace-format msgid "" "{template_extension} is not a subclass of " @@ -11247,197 +10617,196 @@ msgstr "" "{template_extension} nie jest podklasą " "Netbox.Plugins.Plugins.PluginTemplateExtension!" -#: netbox/netbox/plugins/registration.py:51 +#: netbox/plugins/registration.py:51 #, python-brace-format msgid "{item} must be an instance of netbox.plugins.PluginMenuItem" msgstr "{item} musi być wystąpieniem Netbox.Plugins.Plugins.PluginMenuItem" -#: netbox/netbox/plugins/registration.py:62 +#: netbox/plugins/registration.py:62 #, python-brace-format msgid "{menu_link} must be an instance of netbox.plugins.PluginMenuItem" msgstr "" "{menu_link} musi być wystąpieniem Netbox.Plugins.Plugins.PluginMenuItem" -#: netbox/netbox/plugins/registration.py:67 +#: netbox/plugins/registration.py:67 #, python-brace-format msgid "{button} must be an instance of netbox.plugins.PluginMenuButton" msgstr "" "{button} musi być wystąpieniem Netbox.Plugins.Plugins.PluginMenuButton" -#: netbox/netbox/plugins/templates.py:37 +#: netbox/plugins/templates.py:37 msgid "extra_context must be a dictionary" msgstr "extra_context musi być słownikiem" -#: netbox/netbox/preferences.py:19 +#: netbox/preferences.py:19 msgid "HTMX Navigation" msgstr "Nawigacja HTMX" -#: netbox/netbox/preferences.py:24 +#: netbox/preferences.py:24 msgid "Enable dynamic UI navigation" msgstr "Włącz dynamiczną nawigację interfejsu użytkownika" -#: netbox/netbox/preferences.py:26 +#: netbox/preferences.py:26 msgid "Experimental feature" msgstr "Funkcja eksperymentalna" -#: netbox/netbox/preferences.py:29 +#: netbox/preferences.py:29 msgid "Language" msgstr "Język" -#: netbox/netbox/preferences.py:34 +#: netbox/preferences.py:34 msgid "Forces UI translation to the specified language" msgstr "Wymusza tłumaczenie interfejsu użytkownika na określony język" -#: netbox/netbox/preferences.py:36 +#: netbox/preferences.py:36 msgid "Support for translation has been disabled locally" msgstr "Obsługa tłumaczeń została wyłączona lokalnie" -#: netbox/netbox/preferences.py:42 +#: netbox/preferences.py:42 msgid "Page length" msgstr "Długość strony" -#: netbox/netbox/preferences.py:44 +#: netbox/preferences.py:44 msgid "The default number of objects to display per page" msgstr "Domyślna liczba obiektów do wyświetlenia na stronie" -#: netbox/netbox/preferences.py:48 +#: netbox/preferences.py:48 msgid "Paginator placement" msgstr "Umieszczenie paginatora" -#: netbox/netbox/preferences.py:50 +#: netbox/preferences.py:50 msgid "Bottom" msgstr "Dół" -#: netbox/netbox/preferences.py:51 +#: netbox/preferences.py:51 msgid "Top" msgstr "Top" -#: netbox/netbox/preferences.py:52 +#: netbox/preferences.py:52 msgid "Both" msgstr "Obie" -#: netbox/netbox/preferences.py:55 +#: netbox/preferences.py:55 msgid "Where the paginator controls will be displayed relative to a table" msgstr "Gdzie elementy sterujące paginatora będą wyświetlane względem tabeli" -#: netbox/netbox/preferences.py:60 +#: netbox/preferences.py:60 msgid "Data format" msgstr "Format danych" -#: netbox/netbox/preferences.py:65 +#: netbox/preferences.py:65 msgid "The preferred syntax for displaying generic data within the UI" msgstr "" "Preferowana składnia do wyświetlania ogólnych danych w interfejsie " "użytkownika" -#: netbox/netbox/registry.py:14 +#: netbox/registry.py:14 #, python-brace-format msgid "Invalid store: {key}" msgstr "Nieprawidłowy sklep: {key}" -#: netbox/netbox/registry.py:17 +#: netbox/registry.py:17 msgid "Cannot add stores to registry after initialization" msgstr "Nie można dodać sklepów do rejestru po zainicjowaniu" -#: netbox/netbox/registry.py:20 +#: netbox/registry.py:20 msgid "Cannot delete stores from registry" msgstr "Nie można usunąć sklepów z rejestru" -#: netbox/netbox/settings.py:760 +#: netbox/settings.py:760 msgid "Czech" msgstr "czeski" -#: netbox/netbox/settings.py:761 +#: netbox/settings.py:761 msgid "Danish" msgstr "duński" -#: netbox/netbox/settings.py:762 +#: netbox/settings.py:762 msgid "German" msgstr "niemiecki" -#: netbox/netbox/settings.py:763 +#: netbox/settings.py:763 msgid "English" msgstr "angielski" -#: netbox/netbox/settings.py:764 +#: netbox/settings.py:764 msgid "Spanish" msgstr "hiszpański" -#: netbox/netbox/settings.py:765 +#: netbox/settings.py:765 msgid "French" msgstr "francuski" -#: netbox/netbox/settings.py:766 +#: netbox/settings.py:766 msgid "Italian" msgstr "włoski" -#: netbox/netbox/settings.py:767 +#: netbox/settings.py:767 msgid "Japanese" msgstr "japoński" -#: netbox/netbox/settings.py:768 +#: netbox/settings.py:768 msgid "Dutch" msgstr "holenderski" -#: netbox/netbox/settings.py:769 +#: netbox/settings.py:769 msgid "Polish" msgstr "polski" -#: netbox/netbox/settings.py:770 +#: netbox/settings.py:770 msgid "Portuguese" msgstr "portugalski" -#: netbox/netbox/settings.py:771 +#: netbox/settings.py:771 msgid "Russian" msgstr "rosyjski" -#: netbox/netbox/settings.py:772 +#: netbox/settings.py:772 msgid "Turkish" msgstr "turecki" -#: netbox/netbox/settings.py:773 +#: netbox/settings.py:773 msgid "Ukrainian" msgstr "ukraiński" -#: netbox/netbox/settings.py:774 +#: netbox/settings.py:774 msgid "Chinese" msgstr "chiński" -#: netbox/netbox/tables/columns.py:176 +#: netbox/tables/columns.py:176 msgid "Select all" msgstr "Zaznacz wszystko" -#: netbox/netbox/tables/columns.py:189 +#: netbox/tables/columns.py:189 msgid "Toggle all" msgstr "Przełącz wszystko" -#: netbox/netbox/tables/columns.py:300 +#: netbox/tables/columns.py:300 msgid "Toggle Dropdown" msgstr "Przełącz menu rozwijane" -#: netbox/netbox/tables/columns.py:572 netbox/templates/core/job.html:53 +#: netbox/tables/columns.py:572 templates/core/job.html:53 msgid "Error" msgstr "Błąd" -#: netbox/netbox/tables/tables.py:58 +#: netbox/tables/tables.py:58 #, python-brace-format msgid "No {model_name} found" msgstr "Nie znaleziono {model_name} " -#: netbox/netbox/tables/tables.py:249 -#: netbox/templates/generic/bulk_import.html:117 +#: netbox/tables/tables.py:249 templates/generic/bulk_import.html:117 msgid "Field" msgstr "Pole" -#: netbox/netbox/tables/tables.py:252 +#: netbox/tables/tables.py:252 msgid "Value" msgstr "Wartość" -#: netbox/netbox/tests/dummy_plugin/navigation.py:29 +#: netbox/tests/dummy_plugin/navigation.py:29 msgid "Dummy Plugin" msgstr "Wtyczka Dummy" -#: netbox/netbox/views/generic/bulk_views.py:114 +#: netbox/views/generic/bulk_views.py:114 #, python-brace-format msgid "" "There was an error rendering the selected export template ({template}): " @@ -11445,56 +10814,56 @@ msgid "" msgstr "" "Wystąpił błąd renderowania wybranego szablonu eksportu ({template}): {error}" -#: netbox/netbox/views/generic/bulk_views.py:416 +#: netbox/views/generic/bulk_views.py:416 #, python-brace-format msgid "Row {i}: Object with ID {id} does not exist" msgstr "Wiersz {i}: Obiekt z identyfikatorem {id} nie istnieje" -#: netbox/netbox/views/generic/bulk_views.py:699 -#: netbox/netbox/views/generic/bulk_views.py:897 -#: netbox/netbox/views/generic/bulk_views.py:945 +#: netbox/views/generic/bulk_views.py:702 +#: netbox/views/generic/bulk_views.py:900 +#: netbox/views/generic/bulk_views.py:948 #, python-brace-format msgid "No {object_type} were selected." msgstr "Nie {object_type} zostały wybrane." -#: netbox/netbox/views/generic/bulk_views.py:779 +#: netbox/views/generic/bulk_views.py:782 #, python-brace-format msgid "Renamed {count} {object_type}" msgstr "Zmiana nazwy {count} {object_type}" -#: netbox/netbox/views/generic/bulk_views.py:875 +#: netbox/views/generic/bulk_views.py:878 #, python-brace-format msgid "Deleted {count} {object_type}" msgstr "Usunięte {count} {object_type}" -#: netbox/netbox/views/generic/feature_views.py:40 +#: netbox/views/generic/feature_views.py:40 msgid "Changelog" msgstr "Dziennik zmian" -#: netbox/netbox/views/generic/feature_views.py:93 +#: netbox/views/generic/feature_views.py:93 msgid "Journal" msgstr "Dziennik" -#: netbox/netbox/views/generic/feature_views.py:207 +#: netbox/views/generic/feature_views.py:207 msgid "Unable to synchronize data: No data file set." msgstr "Nie można zsynchronizować danych: Brak zestawu plików danych." -#: netbox/netbox/views/generic/feature_views.py:211 +#: netbox/views/generic/feature_views.py:211 #, python-brace-format msgid "Synchronized data for {object_type} {object}." msgstr "Zsynchronizowane dane dla {object_type} {object}." -#: netbox/netbox/views/generic/feature_views.py:236 +#: netbox/views/generic/feature_views.py:236 #, python-brace-format msgid "Synced {count} {object_type}" msgstr "Zsynchronizowane {count} {object_type}" -#: netbox/netbox/views/generic/object_views.py:108 +#: netbox/views/generic/object_views.py:108 #, python-brace-format msgid "{class_name} must implement get_children()" msgstr "{class_name} musi zaimplementować get_children ()" -#: netbox/netbox/views/misc.py:44 +#: netbox/views/misc.py:44 msgid "" "There was an error loading the dashboard configuration. A default dashboard " "is in use." @@ -11502,748 +10871,703 @@ msgstr "" "Wystąpił błąd podczas ładowania konfiguracji deski rozdzielczej. Używany " "jest domyślny pulpit nawigacyjny." -#: netbox/templates/403.html:4 +#: templates/403.html:4 msgid "Access Denied" msgstr "Odmowa dostępu" -#: netbox/templates/403.html:9 +#: templates/403.html:9 msgid "You do not have permission to access this page" msgstr "Nie masz dostępu do tej strony" -#: netbox/templates/404.html:4 +#: templates/404.html:4 msgid "Page Not Found" msgstr "Strona nie znaleziona" -#: netbox/templates/404.html:9 +#: templates/404.html:9 msgid "The requested page does not exist" msgstr "Żądana strona nie istnieje" -#: netbox/templates/500.html:7 netbox/templates/500.html:18 +#: templates/500.html:7 templates/500.html:18 msgid "Server Error" msgstr "Błąd serwera" -#: netbox/templates/500.html:23 +#: templates/500.html:23 msgid "There was a problem with your request. Please contact an administrator" msgstr "Wystąpił problem z twoją prośbą. Skontaktuj się z administratorem" -#: netbox/templates/500.html:28 +#: templates/500.html:28 msgid "The complete exception is provided below" msgstr "Pełny wyjątek znajduje się poniżej" -#: netbox/templates/500.html:33 netbox/templates/core/system.html:40 +#: templates/500.html:33 templates/core/system.html:40 msgid "Python version" msgstr "Wersja Pythona" -#: netbox/templates/500.html:34 +#: templates/500.html:34 msgid "NetBox version" msgstr "Wersja NetBox" -#: netbox/templates/500.html:36 +#: templates/500.html:36 msgid "None installed" msgstr "Brak zainstalowanego" -#: netbox/templates/500.html:39 +#: templates/500.html:39 msgid "If further assistance is required, please post to the" msgstr "Jeśli wymagana jest dalsza pomoc, prosimy o przesłanie do" -#: netbox/templates/500.html:39 +#: templates/500.html:39 msgid "NetBox discussion forum" msgstr "Forum dyskusyjne NetBox" -#: netbox/templates/500.html:39 +#: templates/500.html:39 msgid "on GitHub" msgstr "na GitHub" -#: netbox/templates/500.html:42 netbox/templates/base/40x.html:17 +#: templates/500.html:42 templates/base/40x.html:17 msgid "Home Page" msgstr "Strona główna" -#: netbox/templates/account/base.html:7 netbox/templates/inc/user_menu.html:45 -#: netbox/vpn/forms/bulk_edit.py:255 netbox/vpn/forms/filtersets.py:189 -#: netbox/vpn/forms/model_forms.py:379 +#: templates/account/base.html:7 templates/inc/user_menu.html:45 +#: vpn/forms/bulk_edit.py:255 vpn/forms/filtersets.py:189 +#: vpn/forms/model_forms.py:379 msgid "Profile" msgstr "Profil" -#: netbox/templates/account/base.html:13 -#: netbox/templates/account/notifications.html:7 -#: netbox/templates/inc/user_menu.html:15 +#: templates/account/base.html:13 templates/account/notifications.html:7 +#: templates/inc/user_menu.html:15 msgid "Notifications" msgstr "Powiadomienia" -#: netbox/templates/account/base.html:16 -#: netbox/templates/account/subscriptions.html:7 -#: netbox/templates/inc/user_menu.html:51 +#: templates/account/base.html:16 templates/account/subscriptions.html:7 +#: templates/inc/user_menu.html:51 msgid "Subscriptions" msgstr "Subskrypcje" -#: netbox/templates/account/base.html:19 -#: netbox/templates/inc/user_menu.html:54 +#: templates/account/base.html:19 templates/inc/user_menu.html:54 msgid "Preferences" msgstr "Preferencje" -#: netbox/templates/account/password.html:5 +#: templates/account/password.html:5 msgid "Change Password" msgstr "Zmień hasło" -#: netbox/templates/account/password.html:19 -#: netbox/templates/account/preferences.html:77 -#: netbox/templates/core/configrevision_restore.html:63 -#: netbox/templates/dcim/devicebay_populate.html:34 -#: netbox/templates/dcim/virtualchassis_add_member.html:26 -#: netbox/templates/dcim/virtualchassis_edit.html:103 -#: netbox/templates/extras/object_journal.html:26 -#: netbox/templates/extras/script.html:38 -#: netbox/templates/generic/bulk_add_component.html:67 -#: netbox/templates/generic/bulk_delete.html:65 -#: netbox/templates/generic/bulk_edit.html:106 -#: netbox/templates/generic/bulk_import.html:56 -#: netbox/templates/generic/bulk_import.html:78 -#: netbox/templates/generic/bulk_import.html:100 -#: netbox/templates/generic/bulk_remove.html:62 -#: netbox/templates/generic/bulk_rename.html:63 -#: netbox/templates/generic/confirmation_form.html:19 -#: netbox/templates/generic/object_edit.html:72 -#: netbox/templates/htmx/delete_form.html:53 -#: netbox/templates/htmx/delete_form.html:55 -#: netbox/templates/ipam/ipaddress_assign.html:28 -#: netbox/templates/virtualization/cluster_add_devices.html:30 +#: templates/account/password.html:19 templates/account/preferences.html:77 +#: templates/core/configrevision_restore.html:63 +#: templates/dcim/devicebay_populate.html:34 +#: templates/dcim/virtualchassis_add_member.html:26 +#: templates/dcim/virtualchassis_edit.html:103 +#: templates/extras/object_journal.html:26 templates/extras/script.html:38 +#: templates/generic/bulk_add_component.html:67 +#: templates/generic/bulk_delete.html:65 templates/generic/bulk_edit.html:106 +#: templates/generic/bulk_import.html:56 templates/generic/bulk_import.html:78 +#: templates/generic/bulk_import.html:100 +#: templates/generic/bulk_remove.html:62 templates/generic/bulk_rename.html:63 +#: templates/generic/confirmation_form.html:19 +#: templates/generic/object_edit.html:72 templates/htmx/delete_form.html:53 +#: templates/htmx/delete_form.html:55 templates/ipam/ipaddress_assign.html:28 +#: templates/virtualization/cluster_add_devices.html:30 msgid "Cancel" msgstr "Anuluj" -#: netbox/templates/account/password.html:20 -#: netbox/templates/account/preferences.html:78 -#: netbox/templates/dcim/devicebay_populate.html:35 -#: netbox/templates/dcim/virtualchassis_add_member.html:28 -#: netbox/templates/dcim/virtualchassis_edit.html:105 -#: netbox/templates/extras/dashboard/widget_add.html:26 -#: netbox/templates/extras/dashboard/widget_config.html:19 -#: netbox/templates/extras/object_journal.html:27 -#: netbox/templates/generic/object_edit.html:75 -#: netbox/utilities/templates/helpers/applied_filters.html:16 -#: netbox/utilities/templates/helpers/table_config_form.html:40 +#: templates/account/password.html:20 templates/account/preferences.html:78 +#: templates/dcim/devicebay_populate.html:35 +#: templates/dcim/virtualchassis_add_member.html:28 +#: templates/dcim/virtualchassis_edit.html:105 +#: templates/extras/dashboard/widget_add.html:26 +#: templates/extras/dashboard/widget_config.html:19 +#: templates/extras/object_journal.html:27 +#: templates/generic/object_edit.html:75 +#: utilities/templates/helpers/applied_filters.html:16 +#: utilities/templates/helpers/table_config_form.html:40 msgid "Save" msgstr "Zapisz" -#: netbox/templates/account/preferences.html:34 +#: templates/account/preferences.html:34 msgid "Table Configurations" msgstr "Konfiguracje tabel" -#: netbox/templates/account/preferences.html:39 +#: templates/account/preferences.html:39 msgid "Clear table preferences" msgstr "Wyczyść preferencje tabeli" -#: netbox/templates/account/preferences.html:47 +#: templates/account/preferences.html:47 msgid "Toggle All" msgstr "Przełącz wszystko" -#: netbox/templates/account/preferences.html:49 +#: templates/account/preferences.html:49 msgid "Table" msgstr "Tabela" -#: netbox/templates/account/preferences.html:50 +#: templates/account/preferences.html:50 msgid "Ordering" msgstr "Zamawianie" -#: netbox/templates/account/preferences.html:51 +#: templates/account/preferences.html:51 msgid "Columns" msgstr "Kolumny" -#: netbox/templates/account/preferences.html:71 -#: netbox/templates/dcim/cable_trace.html:113 -#: netbox/templates/extras/object_configcontext.html:43 +#: templates/account/preferences.html:71 templates/dcim/cable_trace.html:113 +#: templates/extras/object_configcontext.html:43 msgid "None found" msgstr "Nie znaleziono" -#: netbox/templates/account/profile.html:6 +#: templates/account/profile.html:6 msgid "User Profile" msgstr "Profil użytkownika" -#: netbox/templates/account/profile.html:12 +#: templates/account/profile.html:12 msgid "Account Details" msgstr "Szczegóły konta" -#: netbox/templates/account/profile.html:29 -#: netbox/templates/tenancy/contact.html:43 -#: netbox/templates/users/user.html:25 netbox/tenancy/forms/bulk_edit.py:109 +#: templates/account/profile.html:29 templates/tenancy/contact.html:43 +#: templates/users/user.html:25 tenancy/forms/bulk_edit.py:109 msgid "Email" msgstr "E-mail" -#: netbox/templates/account/profile.html:33 -#: netbox/templates/users/user.html:29 +#: templates/account/profile.html:33 templates/users/user.html:29 msgid "Account Created" msgstr "Konto utworzone" -#: netbox/templates/account/profile.html:37 -#: netbox/templates/users/user.html:33 +#: templates/account/profile.html:37 templates/users/user.html:33 msgid "Last Login" msgstr "Ostatnie logowanie" -#: netbox/templates/account/profile.html:41 -#: netbox/templates/users/user.html:45 +#: templates/account/profile.html:41 templates/users/user.html:45 msgid "Superuser" msgstr "Superuser" -#: netbox/templates/account/profile.html:45 -#: netbox/templates/inc/user_menu.html:31 netbox/templates/users/user.html:41 +#: templates/account/profile.html:45 templates/inc/user_menu.html:31 +#: templates/users/user.html:41 msgid "Staff" msgstr "Personel" -#: netbox/templates/account/profile.html:53 -#: netbox/templates/users/objectpermission.html:82 -#: netbox/templates/users/user.html:53 +#: templates/account/profile.html:53 templates/users/objectpermission.html:82 +#: templates/users/user.html:53 msgid "Assigned Groups" msgstr "Przydzielone grupy" -#: netbox/templates/account/profile.html:58 -#: netbox/templates/circuits/circuit_terminations_swap.html:18 -#: netbox/templates/circuits/circuit_terminations_swap.html:26 -#: netbox/templates/circuits/circuittermination.html:34 -#: netbox/templates/circuits/inc/circuit_termination.html:68 -#: netbox/templates/core/objectchange.html:124 -#: netbox/templates/core/objectchange.html:142 -#: netbox/templates/dcim/devicebay.html:59 -#: netbox/templates/dcim/inc/panels/inventory_items.html:45 -#: netbox/templates/dcim/interface.html:296 -#: netbox/templates/dcim/modulebay.html:80 -#: netbox/templates/extras/configcontext.html:70 -#: netbox/templates/extras/eventrule.html:66 -#: netbox/templates/extras/htmx/script_result.html:60 -#: netbox/templates/extras/webhook.html:65 -#: netbox/templates/extras/webhook.html:75 -#: netbox/templates/inc/panel_table.html:13 -#: netbox/templates/inc/panels/comments.html:10 -#: netbox/templates/ipam/inc/panels/fhrp_groups.html:56 -#: netbox/templates/users/group.html:34 netbox/templates/users/group.html:44 -#: netbox/templates/users/objectpermission.html:77 -#: netbox/templates/users/objectpermission.html:87 -#: netbox/templates/users/user.html:58 netbox/templates/users/user.html:68 +#: templates/account/profile.html:58 +#: templates/circuits/circuit_terminations_swap.html:18 +#: templates/circuits/circuit_terminations_swap.html:26 +#: templates/circuits/circuittermination.html:34 +#: templates/circuits/inc/circuit_termination.html:68 +#: templates/core/objectchange.html:124 templates/core/objectchange.html:142 +#: templates/dcim/devicebay.html:59 +#: templates/dcim/inc/panels/inventory_items.html:45 +#: templates/dcim/interface.html:296 templates/dcim/modulebay.html:80 +#: templates/extras/configcontext.html:70 templates/extras/eventrule.html:66 +#: templates/extras/htmx/script_result.html:60 +#: templates/extras/webhook.html:65 templates/extras/webhook.html:75 +#: templates/inc/panel_table.html:13 templates/inc/panels/comments.html:10 +#: templates/ipam/inc/panels/fhrp_groups.html:56 templates/users/group.html:34 +#: templates/users/group.html:44 templates/users/objectpermission.html:77 +#: templates/users/objectpermission.html:87 templates/users/user.html:58 +#: templates/users/user.html:68 msgid "None" msgstr "Żaden" -#: netbox/templates/account/profile.html:68 -#: netbox/templates/users/user.html:78 +#: templates/account/profile.html:68 templates/users/user.html:78 msgid "Recent Activity" msgstr "Ostatnia aktywność" -#: netbox/templates/account/token.html:8 -#: netbox/templates/account/token_list.html:6 +#: templates/account/token.html:8 templates/account/token_list.html:6 msgid "My API Tokens" msgstr "Moje tokeny API" -#: netbox/templates/account/token.html:11 -#: netbox/templates/account/token.html:19 netbox/templates/users/token.html:6 -#: netbox/templates/users/token.html:14 netbox/users/forms/filtersets.py:120 +#: templates/account/token.html:11 templates/account/token.html:19 +#: templates/users/token.html:6 templates/users/token.html:14 +#: users/forms/filtersets.py:120 msgid "Token" msgstr "Token" -#: netbox/templates/account/token.html:39 netbox/templates/users/token.html:31 -#: netbox/users/forms/bulk_edit.py:107 +#: templates/account/token.html:39 templates/users/token.html:31 +#: users/forms/bulk_edit.py:107 msgid "Write enabled" msgstr "Zapis włączony" -#: netbox/templates/account/token.html:51 netbox/templates/users/token.html:43 +#: templates/account/token.html:51 templates/users/token.html:43 msgid "Last used" msgstr "Ostatnio używane" -#: netbox/templates/account/token_list.html:12 +#: templates/account/token_list.html:12 msgid "Add a Token" msgstr "Dodaj token" -#: netbox/templates/base/base.html:22 netbox/templates/home.html:27 +#: templates/base/base.html:22 templates/home.html:27 msgid "Home" msgstr "Strona główna" -#: netbox/templates/base/layout.html:25 +#: templates/base/layout.html:25 msgid "NetBox Motif" msgstr "Motyw NetBox" -#: netbox/templates/base/layout.html:38 netbox/templates/base/layout.html:39 -#: netbox/templates/login.html:14 netbox/templates/login.html:15 +#: templates/base/layout.html:38 templates/base/layout.html:39 +#: templates/login.html:14 templates/login.html:15 msgid "NetBox Logo" msgstr "Logo NetBox" -#: netbox/templates/base/layout.html:150 netbox/templates/base/layout.html:151 +#: templates/base/layout.html:150 templates/base/layout.html:151 msgid "Docs" msgstr "Dokumenty" -#: netbox/templates/base/layout.html:156 netbox/templates/base/layout.html:157 -#: netbox/templates/rest_framework/api.html:10 +#: templates/base/layout.html:156 templates/base/layout.html:157 +#: templates/rest_framework/api.html:10 msgid "REST API" msgstr "REST API" -#: netbox/templates/base/layout.html:162 netbox/templates/base/layout.html:163 +#: templates/base/layout.html:162 templates/base/layout.html:163 msgid "REST API documentation" msgstr "Dokumentacja REST API" -#: netbox/templates/base/layout.html:169 netbox/templates/base/layout.html:170 +#: templates/base/layout.html:169 templates/base/layout.html:170 msgid "GraphQL API" msgstr "Interfejs API GraphQL" -#: netbox/templates/base/layout.html:185 netbox/templates/base/layout.html:186 +#: templates/base/layout.html:185 templates/base/layout.html:186 msgid "NetBox Labs Support" msgstr "Wsparcie NetBox Labs" -#: netbox/templates/base/layout.html:194 netbox/templates/base/layout.html:195 +#: templates/base/layout.html:194 templates/base/layout.html:195 msgid "Source Code" msgstr "Kod źródłowy" -#: netbox/templates/base/layout.html:200 netbox/templates/base/layout.html:201 +#: templates/base/layout.html:200 templates/base/layout.html:201 msgid "Community" msgstr "Społeczność" -#: netbox/templates/circuits/circuit.html:47 +#: templates/circuits/circuit.html:47 msgid "Install Date" msgstr "Data instalacji" -#: netbox/templates/circuits/circuit.html:51 +#: templates/circuits/circuit.html:51 msgid "Termination Date" msgstr "Data wypowiedzenia" -#: netbox/templates/circuits/circuit.html:70 -#: netbox/templates/ipam/inc/panels/fhrp_groups.html:15 +#: templates/circuits/circuit.html:70 +#: templates/ipam/inc/panels/fhrp_groups.html:15 msgid "Assign Group" msgstr "Przypisz grupę" -#: netbox/templates/circuits/circuit_terminations_swap.html:4 +#: templates/circuits/circuit_terminations_swap.html:4 msgid "Swap Circuit Terminations" msgstr "Zamknięcia obwodu zamiennego" -#: netbox/templates/circuits/circuit_terminations_swap.html:8 +#: templates/circuits/circuit_terminations_swap.html:8 #, python-format msgid "Swap these terminations for circuit %(circuit)s?" msgstr "Zamień te zakończenia na obwód %(circuit)s?" -#: netbox/templates/circuits/circuit_terminations_swap.html:14 +#: templates/circuits/circuit_terminations_swap.html:14 msgid "A side" msgstr "Strona A" -#: netbox/templates/circuits/circuit_terminations_swap.html:22 +#: templates/circuits/circuit_terminations_swap.html:22 msgid "Z side" msgstr "Strona Z" -#: netbox/templates/circuits/circuitgroup.html:16 +#: templates/circuits/circuitgroup.html:16 msgid "Assign Circuit" msgstr "Przypisz obwód" -#: netbox/templates/circuits/circuitgroupassignment.html:19 +#: templates/circuits/circuitgroupassignment.html:19 msgid "Circuit Group Assignment" msgstr "Przypisanie grupy obwodów" -#: netbox/templates/circuits/circuittype.html:10 +#: templates/circuits/circuittype.html:10 msgid "Add Circuit" msgstr "Dodaj obwód" -#: netbox/templates/circuits/circuittype.html:19 +#: templates/circuits/circuittype.html:19 msgid "Circuit Type" msgstr "Typ obwodu" -#: netbox/templates/circuits/inc/circuit_termination.html:10 -#: netbox/templates/dcim/devicetype/component_templates.html:33 -#: netbox/templates/dcim/manufacturer.html:11 -#: netbox/templates/dcim/moduletype/component_templates.html:29 -#: netbox/templates/generic/bulk_add_component.html:22 -#: netbox/templates/users/objectpermission.html:38 -#: netbox/utilities/templates/buttons/add.html:4 -#: netbox/utilities/templates/helpers/table_config_form.html:20 +#: templates/circuits/inc/circuit_termination.html:10 +#: templates/dcim/manufacturer.html:11 +#: templates/generic/bulk_add_component.html:22 +#: templates/users/objectpermission.html:38 +#: utilities/templates/buttons/add.html:4 +#: utilities/templates/helpers/table_config_form.html:20 msgid "Add" msgstr "Dodaj" -#: netbox/templates/circuits/inc/circuit_termination.html:15 -#: netbox/templates/circuits/inc/circuit_termination_fields.html:36 -#: netbox/templates/dcim/inc/panels/inventory_items.html:32 -#: netbox/templates/dcim/moduletype/component_templates.html:20 -#: netbox/templates/dcim/powerpanel.html:56 -#: netbox/templates/extras/script_list.html:30 -#: netbox/templates/generic/object_edit.html:47 -#: netbox/templates/ipam/inc/ipaddress_edit_header.html:7 -#: netbox/templates/ipam/inc/panels/fhrp_groups.html:43 -#: netbox/utilities/templates/buttons/edit.html:3 +#: templates/circuits/inc/circuit_termination.html:15 +#: templates/circuits/inc/circuit_termination_fields.html:36 +#: templates/dcim/inc/panels/inventory_items.html:32 +#: templates/dcim/powerpanel.html:56 templates/extras/script_list.html:30 +#: templates/generic/object_edit.html:47 +#: templates/ipam/inc/ipaddress_edit_header.html:7 +#: templates/ipam/inc/panels/fhrp_groups.html:43 +#: utilities/templates/buttons/edit.html:3 msgid "Edit" msgstr "Edytuj" -#: netbox/templates/circuits/inc/circuit_termination.html:18 +#: templates/circuits/inc/circuit_termination.html:18 msgid "Swap" msgstr "Zamień" -#: netbox/templates/circuits/inc/circuit_termination_fields.html:19 -#: netbox/templates/dcim/consoleport.html:59 -#: netbox/templates/dcim/consoleserverport.html:60 -#: netbox/templates/dcim/powerfeed.html:114 +#: templates/circuits/inc/circuit_termination_fields.html:19 +#: templates/dcim/consoleport.html:59 templates/dcim/consoleserverport.html:60 +#: templates/dcim/powerfeed.html:114 msgid "Marked as connected" msgstr "Oznaczony jako połączony" -#: netbox/templates/circuits/inc/circuit_termination_fields.html:21 +#: templates/circuits/inc/circuit_termination_fields.html:21 msgid "to" msgstr "do" -#: netbox/templates/circuits/inc/circuit_termination_fields.html:31 -#: netbox/templates/circuits/inc/circuit_termination_fields.html:32 -#: netbox/templates/dcim/frontport.html:80 -#: netbox/templates/dcim/inc/connection_endpoints.html:7 -#: netbox/templates/dcim/interface.html:154 -#: netbox/templates/dcim/rearport.html:76 +#: templates/circuits/inc/circuit_termination_fields.html:31 +#: templates/circuits/inc/circuit_termination_fields.html:32 +#: templates/dcim/frontport.html:80 +#: templates/dcim/inc/connection_endpoints.html:7 +#: templates/dcim/interface.html:154 templates/dcim/rearport.html:76 msgid "Trace" msgstr "Ślad" -#: netbox/templates/circuits/inc/circuit_termination_fields.html:35 +#: templates/circuits/inc/circuit_termination_fields.html:35 msgid "Edit cable" msgstr "Edytuj kabel" -#: netbox/templates/circuits/inc/circuit_termination_fields.html:40 +#: templates/circuits/inc/circuit_termination_fields.html:40 msgid "Remove cable" msgstr "Wyjmij kabel" -#: netbox/templates/circuits/inc/circuit_termination_fields.html:41 -#: netbox/templates/dcim/bulk_disconnect.html:5 -#: netbox/templates/dcim/device/consoleports.html:12 -#: netbox/templates/dcim/device/consoleserverports.html:12 -#: netbox/templates/dcim/device/frontports.html:12 -#: netbox/templates/dcim/device/interfaces.html:16 -#: netbox/templates/dcim/device/poweroutlets.html:12 -#: netbox/templates/dcim/device/powerports.html:12 -#: netbox/templates/dcim/device/rearports.html:12 -#: netbox/templates/dcim/powerpanel.html:61 +#: templates/circuits/inc/circuit_termination_fields.html:41 +#: templates/dcim/bulk_disconnect.html:5 +#: templates/dcim/device/consoleports.html:12 +#: templates/dcim/device/consoleserverports.html:12 +#: templates/dcim/device/frontports.html:12 +#: templates/dcim/device/interfaces.html:16 +#: templates/dcim/device/poweroutlets.html:12 +#: templates/dcim/device/powerports.html:12 +#: templates/dcim/device/rearports.html:12 templates/dcim/powerpanel.html:61 msgid "Disconnect" msgstr "Odłącz" -#: netbox/templates/circuits/inc/circuit_termination_fields.html:48 -#: netbox/templates/dcim/consoleport.html:69 -#: netbox/templates/dcim/consoleserverport.html:70 -#: netbox/templates/dcim/frontport.html:102 -#: netbox/templates/dcim/interface.html:180 -#: netbox/templates/dcim/interface.html:200 -#: netbox/templates/dcim/powerfeed.html:127 -#: netbox/templates/dcim/poweroutlet.html:71 -#: netbox/templates/dcim/poweroutlet.html:72 -#: netbox/templates/dcim/powerport.html:73 -#: netbox/templates/dcim/rearport.html:98 +#: templates/circuits/inc/circuit_termination_fields.html:48 +#: templates/dcim/consoleport.html:69 templates/dcim/consoleserverport.html:70 +#: templates/dcim/frontport.html:102 templates/dcim/interface.html:180 +#: templates/dcim/interface.html:200 templates/dcim/powerfeed.html:127 +#: templates/dcim/poweroutlet.html:71 templates/dcim/poweroutlet.html:72 +#: templates/dcim/powerport.html:73 templates/dcim/rearport.html:98 msgid "Connect" msgstr "Połącz" -#: netbox/templates/circuits/inc/circuit_termination_fields.html:70 +#: templates/circuits/inc/circuit_termination_fields.html:70 msgid "Downstream" msgstr "W dalszej części" -#: netbox/templates/circuits/inc/circuit_termination_fields.html:71 +#: templates/circuits/inc/circuit_termination_fields.html:71 msgid "Upstream" msgstr "W górę rzeki" -#: netbox/templates/circuits/inc/circuit_termination_fields.html:80 +#: templates/circuits/inc/circuit_termination_fields.html:80 msgid "Cross-Connect" msgstr "Połączenie krzyżowe" -#: netbox/templates/circuits/inc/circuit_termination_fields.html:84 +#: templates/circuits/inc/circuit_termination_fields.html:84 msgid "Patch Panel/Port" msgstr "Panel krosowy/port" -#: netbox/templates/circuits/provider.html:11 +#: templates/circuits/provider.html:11 msgid "Add circuit" msgstr "Dodaj obwód" -#: netbox/templates/circuits/provideraccount.html:17 +#: templates/circuits/provideraccount.html:17 msgid "Provider Account" msgstr "Konto dostawcy" -#: netbox/templates/core/configrevision.html:35 +#: templates/core/configrevision.html:35 msgid "Configuration Data" msgstr "Dane konfiguracyjne" -#: netbox/templates/core/configrevision.html:40 +#: templates/core/configrevision.html:40 msgid "Comment" msgstr "Komentarz" -#: netbox/templates/core/configrevision_restore.html:8 -#: netbox/templates/core/configrevision_restore.html:25 -#: netbox/templates/core/configrevision_restore.html:64 +#: templates/core/configrevision_restore.html:8 +#: templates/core/configrevision_restore.html:25 +#: templates/core/configrevision_restore.html:64 msgid "Restore" msgstr "Przywróć" -#: netbox/templates/core/configrevision_restore.html:36 +#: templates/core/configrevision_restore.html:36 msgid "Parameter" msgstr "Parametr" -#: netbox/templates/core/configrevision_restore.html:37 +#: templates/core/configrevision_restore.html:37 msgid "Current Value" msgstr "Bieżąca wartość" -#: netbox/templates/core/configrevision_restore.html:38 +#: templates/core/configrevision_restore.html:38 msgid "New Value" msgstr "Nowa wartość" -#: netbox/templates/core/configrevision_restore.html:50 +#: templates/core/configrevision_restore.html:50 msgid "Changed" msgstr "Zmieniono" -#: netbox/templates/core/datafile.html:42 -#: netbox/templates/ipam/iprange.html:25 -#: netbox/templates/virtualization/virtualdisk.html:29 -#: netbox/virtualization/tables/virtualmachines.py:198 +#: templates/core/datafile.html:42 templates/ipam/iprange.html:25 +#: templates/virtualization/virtualdisk.html:29 +#: virtualization/tables/virtualmachines.py:198 msgid "Size" msgstr "Rozmiar" -#: netbox/templates/core/datafile.html:43 +#: templates/core/datafile.html:43 msgid "bytes" msgstr "bajty" -#: netbox/templates/core/datafile.html:46 +#: templates/core/datafile.html:46 msgid "SHA256 Hash" msgstr "SHA256 Hash" -#: netbox/templates/core/datasource.html:14 -#: netbox/templates/core/datasource.html:20 -#: netbox/utilities/templates/buttons/sync.html:5 +#: templates/core/datasource.html:14 templates/core/datasource.html:20 +#: utilities/templates/buttons/sync.html:5 msgid "Sync" msgstr "Synchronizacja" -#: netbox/templates/core/datasource.html:50 +#: templates/core/datasource.html:50 msgid "Last synced" msgstr "Ostatnia synchronizacja" -#: netbox/templates/core/datasource.html:84 +#: templates/core/datasource.html:84 msgid "Backend" msgstr "Backend" -#: netbox/templates/core/datasource.html:99 +#: templates/core/datasource.html:99 msgid "No parameters defined" msgstr "Brak zdefiniowanych parametrów" -#: netbox/templates/core/datasource.html:114 +#: templates/core/datasource.html:114 msgid "Files" msgstr "Pliki" -#: netbox/templates/core/inc/config_data.html:7 +#: templates/core/inc/config_data.html:7 msgid "Rack elevations" msgstr "Elewacje szaf" -#: netbox/templates/core/inc/config_data.html:10 +#: templates/core/inc/config_data.html:10 msgid "Default unit height" msgstr "Domyślna wysokość jednostki" -#: netbox/templates/core/inc/config_data.html:14 +#: templates/core/inc/config_data.html:14 msgid "Default unit width" msgstr "Domyślna szerokość jednostki" -#: netbox/templates/core/inc/config_data.html:20 +#: templates/core/inc/config_data.html:20 msgid "Power feeds" msgstr "Zasilanie zasilania" -#: netbox/templates/core/inc/config_data.html:23 +#: templates/core/inc/config_data.html:23 msgid "Default voltage" msgstr "Domyślne napięcie" -#: netbox/templates/core/inc/config_data.html:27 +#: templates/core/inc/config_data.html:27 msgid "Default amperage" msgstr "Domyślne natężenie prądu" -#: netbox/templates/core/inc/config_data.html:31 +#: templates/core/inc/config_data.html:31 msgid "Default max utilization" msgstr "Domyślne maksymalne wykorzystanie" -#: netbox/templates/core/inc/config_data.html:40 +#: templates/core/inc/config_data.html:40 msgid "Enforce global unique" msgstr "Egzekwuj globalny unikalny" -#: netbox/templates/core/inc/config_data.html:83 +#: templates/core/inc/config_data.html:83 msgid "Paginate count" msgstr "Liczba stron" -#: netbox/templates/core/inc/config_data.html:87 +#: templates/core/inc/config_data.html:87 msgid "Max page size" msgstr "Maksymalny rozmiar strony" -#: netbox/templates/core/inc/config_data.html:114 +#: templates/core/inc/config_data.html:114 msgid "User preferences" msgstr "Preferencje użytkownika" -#: netbox/templates/core/inc/config_data.html:141 +#: templates/core/inc/config_data.html:141 msgid "Job retention" msgstr "Zatrzymanie pracy" -#: netbox/templates/core/job.html:35 netbox/templates/core/rq_task.html:12 -#: netbox/templates/core/rq_task.html:49 netbox/templates/core/rq_task.html:58 +#: templates/core/job.html:35 templates/core/rq_task.html:12 +#: templates/core/rq_task.html:49 templates/core/rq_task.html:58 msgid "Job" msgstr "Praca" -#: netbox/templates/core/job.html:58 -#: netbox/templates/extras/journalentry.html:26 +#: templates/core/job.html:58 templates/extras/journalentry.html:26 msgid "Created By" msgstr "Utworzony przez" -#: netbox/templates/core/job.html:66 +#: templates/core/job.html:66 msgid "Scheduling" msgstr "Planowanie" -#: netbox/templates/core/job.html:77 +#: templates/core/job.html:77 #, python-format msgid "every %(interval)s minutes" msgstr "co %(interval)s minut(ę/y)" -#: netbox/templates/core/objectchange.html:29 -#: netbox/templates/users/objectpermission.html:42 +#: templates/core/objectchange.html:29 +#: templates/users/objectpermission.html:42 msgid "Change" msgstr "Zmień" -#: netbox/templates/core/objectchange.html:79 +#: templates/core/objectchange.html:79 msgid "Difference" msgstr "Różnica" -#: netbox/templates/core/objectchange.html:82 +#: templates/core/objectchange.html:82 msgid "Previous" msgstr "Poprzednie" -#: netbox/templates/core/objectchange.html:85 +#: templates/core/objectchange.html:85 msgid "Next" msgstr "Kolejny" -#: netbox/templates/core/objectchange.html:93 +#: templates/core/objectchange.html:93 msgid "Object Created" msgstr "Utworzony obiekt" -#: netbox/templates/core/objectchange.html:95 +#: templates/core/objectchange.html:95 msgid "Object Deleted" msgstr "Obiekt usunięty" -#: netbox/templates/core/objectchange.html:97 +#: templates/core/objectchange.html:97 msgid "No Changes" msgstr "Brak zmian" -#: netbox/templates/core/objectchange.html:111 +#: templates/core/objectchange.html:111 msgid "Pre-Change Data" msgstr "Wstępna zmiana danych" -#: netbox/templates/core/objectchange.html:122 +#: templates/core/objectchange.html:122 msgid "Warning: Comparing non-atomic change to previous change record" msgstr "" "Ostrzeżenie: Porównywanie zmian nieatomowych z poprzednim rekordem zmian" -#: netbox/templates/core/objectchange.html:131 +#: templates/core/objectchange.html:131 msgid "Post-Change Data" msgstr "Dane po zmianie" -#: netbox/templates/core/objectchange.html:162 +#: templates/core/objectchange.html:162 #, python-format msgid "See All %(count)s Changes" msgstr "Zobacz wszystko %(count)s Zmiany" -#: netbox/templates/core/objectchange_list.html:9 -#: netbox/templates/extras/object_changelog.html:15 +#: templates/core/objectchange_list.html:9 +#: templates/extras/object_changelog.html:15 msgid "Change log retention" msgstr "Zmień przechowywanie dziennika" -#: netbox/templates/core/objectchange_list.html:9 -#: netbox/templates/extras/object_changelog.html:15 +#: templates/core/objectchange_list.html:9 +#: templates/extras/object_changelog.html:15 msgid "days" msgstr "dni" -#: netbox/templates/core/objectchange_list.html:9 -#: netbox/templates/extras/object_changelog.html:15 +#: templates/core/objectchange_list.html:9 +#: templates/extras/object_changelog.html:15 msgid "Indefinite" msgstr "Nieokreślony" -#: netbox/templates/core/plugin.html:21 +#: templates/core/plugin.html:22 msgid "Not installed" msgstr "Nie zainstalowany" -#: netbox/templates/core/plugin.html:32 +#: templates/core/plugin.html:33 msgid "Overview" msgstr "Przegląd" -#: netbox/templates/core/plugin.html:38 +#: templates/core/plugin.html:39 msgid "Install" msgstr "Zainstaluj" -#: netbox/templates/core/plugin.html:50 +#: templates/core/plugin.html:51 msgid "Plugin Details" msgstr "Szczegóły wtyczki" -#: netbox/templates/core/plugin.html:57 +#: templates/core/plugin.html:58 msgid "Summary" msgstr "Podsumowanie" -#: netbox/templates/core/plugin.html:75 +#: templates/core/plugin.html:76 msgid "License" msgstr "Licencja" -#: netbox/templates/core/plugin.html:95 +#: templates/core/plugin.html:96 msgid "Version History" msgstr "Historia wersji" -#: netbox/templates/core/plugin.html:106 +#: templates/core/plugin.html:107 msgid "Local Installation Instructions" msgstr "Lokalne instrukcje instalacji" -#: netbox/templates/core/rq_queue_list.html:5 -#: netbox/templates/core/rq_queue_list.html:13 -#: netbox/templates/core/rq_task_list.html:14 -#: netbox/templates/core/rq_worker.html:7 +#: templates/core/rq_queue_list.html:5 templates/core/rq_queue_list.html:13 +#: templates/core/rq_task_list.html:14 templates/core/rq_worker.html:7 msgid "Background Queues" msgstr "Kolejki tła" -#: netbox/templates/core/rq_queue_list.html:24 -#: netbox/templates/core/rq_queue_list.html:25 -#: netbox/templates/core/rq_worker_list.html:49 -#: netbox/templates/core/rq_worker_list.html:50 -#: netbox/templates/extras/script_result.html:67 -#: netbox/templates/extras/script_result.html:69 -#: netbox/templates/inc/table_controls_htmx.html:30 -#: netbox/templates/inc/table_controls_htmx.html:33 +#: templates/core/rq_queue_list.html:24 templates/core/rq_queue_list.html:25 +#: templates/core/rq_worker_list.html:49 templates/core/rq_worker_list.html:50 +#: templates/extras/script_result.html:67 +#: templates/extras/script_result.html:69 +#: templates/inc/table_controls_htmx.html:30 +#: templates/inc/table_controls_htmx.html:33 msgid "Configure Table" msgstr "Skonfiguruj tabelę" -#: netbox/templates/core/rq_task.html:29 +#: templates/core/rq_task.html:29 msgid "Stop" msgstr "Przestań" -#: netbox/templates/core/rq_task.html:34 +#: templates/core/rq_task.html:34 msgid "Requeue" msgstr "Request" -#: netbox/templates/core/rq_task.html:39 +#: templates/core/rq_task.html:39 msgid "Enqueue" msgstr "Zaciągnij kolejkę" -#: netbox/templates/core/rq_task.html:61 +#: templates/core/rq_task.html:61 msgid "Queue" msgstr "Kolejka" -#: netbox/templates/core/rq_task.html:65 +#: templates/core/rq_task.html:65 msgid "Timeout" msgstr "Limit czasu" -#: netbox/templates/core/rq_task.html:69 +#: templates/core/rq_task.html:69 msgid "Result TTL" msgstr "Wynik TTL" -#: netbox/templates/core/rq_task.html:89 +#: templates/core/rq_task.html:89 msgid "Meta" msgstr "Meta" -#: netbox/templates/core/rq_task.html:93 +#: templates/core/rq_task.html:93 msgid "Arguments" msgstr "Argumenty" -#: netbox/templates/core/rq_task.html:97 +#: templates/core/rq_task.html:97 msgid "Keyword Arguments" msgstr "Argumenty słów kluczowych" -#: netbox/templates/core/rq_task.html:103 +#: templates/core/rq_task.html:103 msgid "Depends on" msgstr "Zależy od" -#: netbox/templates/core/rq_task.html:109 +#: templates/core/rq_task.html:109 msgid "Exception" msgstr "Wyjątek" -#: netbox/templates/core/rq_task_list.html:28 +#: templates/core/rq_task_list.html:28 msgid "tasks in " msgstr "zadania w " -#: netbox/templates/core/rq_task_list.html:33 +#: templates/core/rq_task_list.html:33 msgid "Queued Jobs" msgstr "Zlecenia w kolejce" -#: netbox/templates/core/rq_task_list.html:64 -#: netbox/templates/extras/script_result.html:86 +#: templates/core/rq_task_list.html:64 templates/extras/script_result.html:86 #, python-format msgid "" "Select all %(count)s %(object_type_plural)s matching query" @@ -12251,396 +11575,381 @@ msgstr "" "Wybierz wszyscy %(count)s %(object_type_plural)s pasujące " "zapytanie" -#: netbox/templates/core/rq_worker.html:10 +#: templates/core/rq_worker.html:10 msgid "Worker Info" msgstr "Informacje o pracowniku" -#: netbox/templates/core/rq_worker.html:31 -#: netbox/templates/core/rq_worker.html:40 +#: templates/core/rq_worker.html:31 templates/core/rq_worker.html:40 msgid "Worker" msgstr "Pracownik" -#: netbox/templates/core/rq_worker.html:55 +#: templates/core/rq_worker.html:55 msgid "Queues" msgstr "Kolejki" -#: netbox/templates/core/rq_worker.html:63 +#: templates/core/rq_worker.html:63 msgid "Curent Job" msgstr "Bieżąca praca" -#: netbox/templates/core/rq_worker.html:67 +#: templates/core/rq_worker.html:67 msgid "Successful job count" msgstr "Liczba udanych miejsc pracy" -#: netbox/templates/core/rq_worker.html:71 +#: templates/core/rq_worker.html:71 msgid "Failed job count" msgstr "Liczba nieudanych zadań" -#: netbox/templates/core/rq_worker.html:75 +#: templates/core/rq_worker.html:75 msgid "Total working time" msgstr "Całkowity czas pracy" -#: netbox/templates/core/rq_worker.html:76 +#: templates/core/rq_worker.html:76 msgid "seconds" msgstr "sekundy" -#: netbox/templates/core/rq_worker_list.html:13 -#: netbox/templates/core/rq_worker_list.html:21 +#: templates/core/rq_worker_list.html:13 templates/core/rq_worker_list.html:21 msgid "Background Workers" msgstr "Pracownicy w tle" -#: netbox/templates/core/rq_worker_list.html:29 +#: templates/core/rq_worker_list.html:29 #, python-format msgid "Workers in %(queue_name)s" msgstr "Pracownicy w %(queue_name)s" -#: netbox/templates/core/system.html:11 -#: netbox/utilities/templates/buttons/export.html:4 +#: templates/core/system.html:11 utilities/templates/buttons/export.html:4 msgid "Export" msgstr "Eksportuj" -#: netbox/templates/core/system.html:28 +#: templates/core/system.html:28 msgid "System Status" msgstr "Status systemu" -#: netbox/templates/core/system.html:31 +#: templates/core/system.html:31 msgid "NetBox release" msgstr "Wydanie NetBox" -#: netbox/templates/core/system.html:44 +#: templates/core/system.html:44 msgid "Django version" msgstr "Wersja Django" -#: netbox/templates/core/system.html:48 +#: templates/core/system.html:48 msgid "PostgreSQL version" msgstr "Wersja PostgreSQL" -#: netbox/templates/core/system.html:52 +#: templates/core/system.html:52 msgid "Database name" msgstr "Nazwa bazy danych" -#: netbox/templates/core/system.html:56 +#: templates/core/system.html:56 msgid "Database size" msgstr "Wielkość bazy danych" -#: netbox/templates/core/system.html:61 +#: templates/core/system.html:61 msgid "Unavailable" msgstr "Niedostępne" -#: netbox/templates/core/system.html:66 +#: templates/core/system.html:66 msgid "RQ workers" msgstr "Pracownicy RQ" -#: netbox/templates/core/system.html:69 +#: templates/core/system.html:69 msgid "default queue" msgstr "domyślna kolejka" -#: netbox/templates/core/system.html:73 +#: templates/core/system.html:73 msgid "System time" msgstr "Czas systemu" -#: netbox/templates/core/system.html:85 +#: templates/core/system.html:85 msgid "Current Configuration" msgstr "Bieżąca konfiguracja" -#: netbox/templates/dcim/bulk_disconnect.html:9 +#: templates/dcim/bulk_disconnect.html:9 #, python-format msgid "" "Are you sure you want to disconnect these %(count)s %(obj_type_plural)s?" msgstr "Czy na pewno chcesz je odłączyć %(count)s %(obj_type_plural)s?" -#: netbox/templates/dcim/cable_trace.html:10 +#: templates/dcim/cable_trace.html:10 #, python-format msgid "Cable Trace for %(object_type)s %(object)s" msgstr "Śledzenie kabli dla %(object_type)s %(object)s" -#: netbox/templates/dcim/cable_trace.html:24 -#: netbox/templates/dcim/inc/rack_elevation.html:7 +#: templates/dcim/cable_trace.html:24 templates/dcim/inc/rack_elevation.html:7 msgid "Download SVG" msgstr "Pobierz SVG" -#: netbox/templates/dcim/cable_trace.html:30 +#: templates/dcim/cable_trace.html:30 msgid "Asymmetric Path" msgstr "Ścieżka asymetryczna" -#: netbox/templates/dcim/cable_trace.html:31 +#: templates/dcim/cable_trace.html:31 msgid "The nodes below have no links and result in an asymmetric path" msgstr "Poniższe węzły nie mają linków i powodują asymetryczną ścieżkę" -#: netbox/templates/dcim/cable_trace.html:38 +#: templates/dcim/cable_trace.html:38 msgid "Path split" msgstr "Podział ścieżki" -#: netbox/templates/dcim/cable_trace.html:39 +#: templates/dcim/cable_trace.html:39 msgid "Select a node below to continue" msgstr "Wybierz węzeł poniżej, aby kontynuować" -#: netbox/templates/dcim/cable_trace.html:55 +#: templates/dcim/cable_trace.html:55 msgid "Trace Completed" msgstr "Śledzenie zakończone" -#: netbox/templates/dcim/cable_trace.html:58 +#: templates/dcim/cable_trace.html:58 msgid "Total segments" msgstr "Segmenty ogółem" -#: netbox/templates/dcim/cable_trace.html:62 +#: templates/dcim/cable_trace.html:62 msgid "Total length" msgstr "Całkowita długość" -#: netbox/templates/dcim/cable_trace.html:77 +#: templates/dcim/cable_trace.html:77 msgid "No paths found" msgstr "Nie znaleziono ścieżek" -#: netbox/templates/dcim/cable_trace.html:85 +#: templates/dcim/cable_trace.html:85 msgid "Related Paths" msgstr "Powiązane ścieżki" -#: netbox/templates/dcim/cable_trace.html:89 +#: templates/dcim/cable_trace.html:89 msgid "Origin" msgstr "Pochodzenie" -#: netbox/templates/dcim/cable_trace.html:90 +#: templates/dcim/cable_trace.html:90 msgid "Destination" msgstr "Miejsce docelowe" -#: netbox/templates/dcim/cable_trace.html:91 +#: templates/dcim/cable_trace.html:91 msgid "Segments" msgstr "Segmenty" -#: netbox/templates/dcim/cable_trace.html:104 +#: templates/dcim/cable_trace.html:104 msgid "Incomplete" msgstr "Niekompletny" -#: netbox/templates/dcim/component_list.html:14 +#: templates/dcim/component_list.html:14 msgid "Rename Selected" msgstr "Zmień nazwę Wybrano" -#: netbox/templates/dcim/consoleport.html:65 -#: netbox/templates/dcim/consoleserverport.html:66 -#: netbox/templates/dcim/frontport.html:98 -#: netbox/templates/dcim/interface.html:176 -#: netbox/templates/dcim/poweroutlet.html:69 -#: netbox/templates/dcim/powerport.html:69 +#: templates/dcim/consoleport.html:65 templates/dcim/consoleserverport.html:66 +#: templates/dcim/frontport.html:98 templates/dcim/interface.html:176 +#: templates/dcim/poweroutlet.html:69 templates/dcim/powerport.html:69 msgid "Not Connected" msgstr "Nie jest połączony" -#: netbox/templates/dcim/device.html:34 +#: templates/dcim/device.html:34 msgid "Highlight device in rack" msgstr "Podświetl urządzenie w szafie" -#: netbox/templates/dcim/device.html:55 +#: templates/dcim/device.html:55 msgid "Not racked" msgstr "Poza szafą" -#: netbox/templates/dcim/device.html:62 netbox/templates/dcim/site.html:94 +#: templates/dcim/device.html:62 templates/dcim/site.html:94 msgid "GPS Coordinates" msgstr "Współrzędne GPS" -#: netbox/templates/dcim/device.html:68 netbox/templates/dcim/site.html:81 -#: netbox/templates/dcim/site.html:100 +#: templates/dcim/device.html:68 templates/dcim/site.html:81 +#: templates/dcim/site.html:100 msgid "Map" msgstr "Mapa" -#: netbox/templates/dcim/device.html:108 -#: netbox/templates/dcim/inventoryitem.html:56 -#: netbox/templates/dcim/module.html:81 -#: netbox/templates/dcim/modulebay.html:74 netbox/templates/dcim/rack.html:61 +#: templates/dcim/device.html:108 templates/dcim/inventoryitem.html:56 +#: templates/dcim/module.html:81 templates/dcim/modulebay.html:74 +#: templates/dcim/rack.html:61 msgid "Asset Tag" msgstr "Etykietka zasobów" -#: netbox/templates/dcim/device.html:123 +#: templates/dcim/device.html:123 msgid "View Virtual Chassis" msgstr "Wyświetl wirtualne podwozie" -#: netbox/templates/dcim/device.html:164 +#: templates/dcim/device.html:164 msgid "Create VDC" msgstr "Utwórz VDC" -#: netbox/templates/dcim/device.html:175 -#: netbox/templates/dcim/device_edit.html:64 -#: netbox/virtualization/forms/model_forms.py:223 +#: templates/dcim/device.html:175 templates/dcim/device_edit.html:64 +#: virtualization/forms/model_forms.py:223 msgid "Management" msgstr "Zarządzanie" -#: netbox/templates/dcim/device.html:195 netbox/templates/dcim/device.html:211 -#: netbox/templates/dcim/device.html:227 -#: netbox/templates/virtualization/virtualmachine.html:57 -#: netbox/templates/virtualization/virtualmachine.html:73 +#: templates/dcim/device.html:195 templates/dcim/device.html:211 +#: templates/dcim/device.html:227 +#: templates/virtualization/virtualmachine.html:57 +#: templates/virtualization/virtualmachine.html:73 msgid "NAT for" msgstr "NAT dla" -#: netbox/templates/dcim/device.html:197 netbox/templates/dcim/device.html:213 -#: netbox/templates/dcim/device.html:229 -#: netbox/templates/virtualization/virtualmachine.html:59 -#: netbox/templates/virtualization/virtualmachine.html:75 +#: templates/dcim/device.html:197 templates/dcim/device.html:213 +#: templates/dcim/device.html:229 +#: templates/virtualization/virtualmachine.html:59 +#: templates/virtualization/virtualmachine.html:75 msgid "NAT" msgstr "NAT" -#: netbox/templates/dcim/device.html:252 netbox/templates/dcim/rack.html:73 +#: templates/dcim/device.html:252 templates/dcim/rack.html:73 msgid "Power Utilization" msgstr "Wykorzystanie mocy" -#: netbox/templates/dcim/device.html:256 +#: templates/dcim/device.html:256 msgid "Input" msgstr "Wejście" -#: netbox/templates/dcim/device.html:257 +#: templates/dcim/device.html:257 msgid "Outlets" msgstr "Punkty sprzedaży" -#: netbox/templates/dcim/device.html:258 +#: templates/dcim/device.html:258 msgid "Allocated" msgstr "Przydzielony" -#: netbox/templates/dcim/device.html:268 netbox/templates/dcim/device.html:270 -#: netbox/templates/dcim/device.html:286 -#: netbox/templates/dcim/powerfeed.html:67 +#: templates/dcim/device.html:268 templates/dcim/device.html:270 +#: templates/dcim/device.html:286 templates/dcim/powerfeed.html:67 msgid "VA" msgstr "VA" -#: netbox/templates/dcim/device.html:280 +#: templates/dcim/device.html:280 msgctxt "Leg of a power feed" msgid "Leg" msgstr "Noga" -#: netbox/templates/dcim/device.html:306 -#: netbox/templates/virtualization/virtualmachine.html:158 +#: templates/dcim/device.html:306 +#: templates/virtualization/virtualmachine.html:158 msgid "Add a service" msgstr "Dodawanie usługi" -#: netbox/templates/dcim/device/base.html:21 -#: netbox/templates/dcim/device_list.html:9 -#: netbox/templates/dcim/devicetype/base.html:18 -#: netbox/templates/dcim/module.html:18 -#: netbox/templates/dcim/moduletype/base.html:18 -#: netbox/templates/virtualization/virtualmachine/base.html:22 -#: netbox/templates/virtualization/virtualmachine_list.html:8 +#: templates/dcim/device/base.html:21 templates/dcim/device_list.html:9 +#: templates/dcim/devicetype/base.html:18 +#: templates/dcim/inc/moduletype_buttons.html:9 templates/dcim/module.html:18 +#: templates/virtualization/virtualmachine/base.html:22 +#: templates/virtualization/virtualmachine_list.html:8 msgid "Add Components" msgstr "Dodawanie komponentów" -#: netbox/templates/dcim/device/consoleports.html:24 +#: templates/dcim/device/consoleports.html:24 msgid "Add Console Ports" msgstr "Dodaj porty konsoli" -#: netbox/templates/dcim/device/consoleserverports.html:24 +#: templates/dcim/device/consoleserverports.html:24 msgid "Add Console Server Ports" msgstr "Dodaj porty serwera konsoli" -#: netbox/templates/dcim/device/devicebays.html:10 +#: templates/dcim/device/devicebays.html:10 msgid "Add Device Bays" msgstr "Dodaj kieszenie na urządzenia" -#: netbox/templates/dcim/device/frontports.html:24 +#: templates/dcim/device/frontports.html:24 msgid "Add Front Ports" msgstr "Dodaj przednie porty" -#: netbox/templates/dcim/device/inc/interface_table_controls.html:9 +#: templates/dcim/device/inc/interface_table_controls.html:9 msgid "Hide Enabled" msgstr "Ukryj włączone" -#: netbox/templates/dcim/device/inc/interface_table_controls.html:10 +#: templates/dcim/device/inc/interface_table_controls.html:10 msgid "Hide Disabled" msgstr "Ukryj wyłączone" -#: netbox/templates/dcim/device/inc/interface_table_controls.html:11 +#: templates/dcim/device/inc/interface_table_controls.html:11 msgid "Hide Virtual" msgstr "Ukryj wirtualny" -#: netbox/templates/dcim/device/inc/interface_table_controls.html:12 +#: templates/dcim/device/inc/interface_table_controls.html:12 msgid "Hide Disconnected" msgstr "Ukryj odłączony" -#: netbox/templates/dcim/device/interfaces.html:27 +#: templates/dcim/device/interfaces.html:27 msgid "Add Interfaces" msgstr "Dodaj interfejsy" -#: netbox/templates/dcim/device/inventory.html:10 -#: netbox/templates/dcim/inc/panels/inventory_items.html:10 +#: templates/dcim/device/inventory.html:10 +#: templates/dcim/inc/panels/inventory_items.html:10 msgid "Add Inventory Item" msgstr "Dodaj przedmiot zapasów" -#: netbox/templates/dcim/device/modulebays.html:10 +#: templates/dcim/device/modulebays.html:10 msgid "Add Module Bays" msgstr "Dodaj kieszenie modułowe" -#: netbox/templates/dcim/device/poweroutlets.html:24 +#: templates/dcim/device/poweroutlets.html:24 msgid "Add Power Outlets" msgstr "Dodaj gniazdka elektryczne" -#: netbox/templates/dcim/device/powerports.html:24 +#: templates/dcim/device/powerports.html:24 msgid "Add Power Port" msgstr "Dodaj port zasilania" -#: netbox/templates/dcim/device/rearports.html:24 +#: templates/dcim/device/rearports.html:24 msgid "Add Rear Ports" msgstr "Dodaj tylne porty" -#: netbox/templates/dcim/device/render_config.html:5 -#: netbox/templates/virtualization/virtualmachine/render_config.html:5 +#: templates/dcim/device/render_config.html:5 +#: templates/virtualization/virtualmachine/render_config.html:5 msgid "Config" msgstr "Konfiguracja" -#: netbox/templates/dcim/device/render_config.html:35 -#: netbox/templates/virtualization/virtualmachine/render_config.html:35 +#: templates/dcim/device/render_config.html:35 +#: templates/virtualization/virtualmachine/render_config.html:35 msgid "Context Data" msgstr "Dane kontekstowe" -#: netbox/templates/dcim/device/render_config.html:53 -#: netbox/templates/virtualization/virtualmachine/render_config.html:53 +#: templates/dcim/device/render_config.html:53 +#: templates/virtualization/virtualmachine/render_config.html:53 msgid "Rendered Config" msgstr "Wyrenderowana konfiguracja" -#: netbox/templates/dcim/device/render_config.html:55 -#: netbox/templates/virtualization/virtualmachine/render_config.html:55 +#: templates/dcim/device/render_config.html:55 +#: templates/virtualization/virtualmachine/render_config.html:55 msgid "Download" msgstr "Ściągnij" -#: netbox/templates/dcim/device/render_config.html:61 -#: netbox/templates/virtualization/virtualmachine/render_config.html:61 +#: templates/dcim/device/render_config.html:61 +#: templates/virtualization/virtualmachine/render_config.html:61 msgid "No configuration template found" msgstr "Nie znaleziono szablonu konfiguracji" -#: netbox/templates/dcim/device_edit.html:44 +#: templates/dcim/device_edit.html:44 msgid "Parent Bay" msgstr "Zatoka Parent" -#: netbox/templates/dcim/device_edit.html:48 -#: netbox/utilities/templates/form_helpers/render_field.html:22 +#: templates/dcim/device_edit.html:48 +#: utilities/templates/form_helpers/render_field.html:22 msgid "Regenerate Slug" msgstr "Regeneruj identyfikator" -#: netbox/templates/dcim/device_edit.html:49 -#: netbox/templates/generic/bulk_remove.html:21 -#: netbox/utilities/templates/helpers/table_config_form.html:23 +#: templates/dcim/device_edit.html:49 templates/generic/bulk_remove.html:21 +#: utilities/templates/helpers/table_config_form.html:23 msgid "Remove" msgstr "Usuń" -#: netbox/templates/dcim/device_edit.html:110 +#: templates/dcim/device_edit.html:110 msgid "Local Config Context Data" msgstr "Dane kontekstowe konfiguracji lokalnej" -#: netbox/templates/dcim/device_list.html:82 -#: netbox/templates/dcim/moduletype/component_templates.html:17 -#: netbox/templates/generic/bulk_rename.html:57 -#: netbox/templates/virtualization/virtualmachine/interfaces.html:11 -#: netbox/templates/virtualization/virtualmachine/virtual_disks.html:11 +#: templates/dcim/device_list.html:82 templates/generic/bulk_rename.html:57 +#: templates/virtualization/virtualmachine/interfaces.html:11 +#: templates/virtualization/virtualmachine/virtual_disks.html:11 msgid "Rename" msgstr "Przemianować" -#: netbox/templates/dcim/devicebay.html:17 +#: templates/dcim/devicebay.html:17 msgid "Device Bay" msgstr "Zatoka na urządzenia" -#: netbox/templates/dcim/devicebay.html:43 +#: templates/dcim/devicebay.html:43 msgid "Installed Device" msgstr "Zainstalowane urządzenie" -#: netbox/templates/dcim/devicebay_depopulate.html:6 +#: templates/dcim/devicebay_depopulate.html:6 #, python-format msgid "Remove %(device)s from %(device_bay)s?" msgstr "Usuń %(device)s od %(device_bay)s?" -#: netbox/templates/dcim/devicebay_depopulate.html:13 +#: templates/dcim/devicebay_depopulate.html:13 #, python-format msgid "" "Are you sure you want to remove %(device)s from " @@ -12649,449 +11958,430 @@ msgstr "" "Czy na pewno chcesz usunąć %(device)s od " "%(device_bay)s?" -#: netbox/templates/dcim/devicebay_populate.html:13 +#: templates/dcim/devicebay_populate.html:13 msgid "Populate" msgstr "Wypełnić" -#: netbox/templates/dcim/devicebay_populate.html:22 +#: templates/dcim/devicebay_populate.html:22 msgid "Bay" msgstr "Zatoka" -#: netbox/templates/dcim/devicerole.html:14 -#: netbox/templates/dcim/platform.html:17 +#: templates/dcim/devicerole.html:14 templates/dcim/platform.html:17 msgid "Add Device" msgstr "Dodaj urządzenie" -#: netbox/templates/dcim/devicerole.html:40 +#: templates/dcim/devicerole.html:40 msgid "VM Role" msgstr "Rola maszyny wirtualnej" -#: netbox/templates/dcim/devicetype.html:18 -#: netbox/templates/dcim/moduletype.html:18 +#: templates/dcim/devicetype.html:18 templates/dcim/moduletype.html:29 msgid "Model Name" msgstr "Nazwa modelu" -#: netbox/templates/dcim/devicetype.html:25 -#: netbox/templates/dcim/moduletype.html:22 +#: templates/dcim/devicetype.html:25 templates/dcim/moduletype.html:33 msgid "Part Number" msgstr "Numer części" -#: netbox/templates/dcim/devicetype.html:41 +#: templates/dcim/devicetype.html:41 msgid "Exclude From Utilization" msgstr "Wyklucz z użytkowania" -#: netbox/templates/dcim/devicetype.html:59 +#: templates/dcim/devicetype.html:59 msgid "Parent/Child" msgstr "Rodzic/Dziecko" -#: netbox/templates/dcim/devicetype.html:71 +#: templates/dcim/devicetype.html:71 msgid "Front Image" msgstr "Obraz z przodu" -#: netbox/templates/dcim/devicetype.html:83 +#: templates/dcim/devicetype.html:83 msgid "Rear Image" msgstr "Obraz z tyłu" -#: netbox/templates/dcim/frontport.html:54 +#: templates/dcim/frontport.html:54 msgid "Rear Port Position" msgstr "Pozycja tylnego portu" -#: netbox/templates/dcim/frontport.html:72 -#: netbox/templates/dcim/interface.html:144 -#: netbox/templates/dcim/poweroutlet.html:63 -#: netbox/templates/dcim/powerport.html:63 -#: netbox/templates/dcim/rearport.html:68 +#: templates/dcim/frontport.html:72 templates/dcim/interface.html:144 +#: templates/dcim/poweroutlet.html:63 templates/dcim/powerport.html:63 +#: templates/dcim/rearport.html:68 msgid "Marked as Connected" msgstr "Oznaczone jako połączone" -#: netbox/templates/dcim/frontport.html:86 -#: netbox/templates/dcim/rearport.html:82 +#: templates/dcim/frontport.html:86 templates/dcim/rearport.html:82 msgid "Connection Status" msgstr "Status połączenia" -#: netbox/templates/dcim/htmx/cable_edit.html:10 +#: templates/dcim/htmx/cable_edit.html:10 msgid "A Side" msgstr "Strona" -#: netbox/templates/dcim/htmx/cable_edit.html:30 +#: templates/dcim/htmx/cable_edit.html:30 msgid "B Side" msgstr "Strona B" -#: netbox/templates/dcim/inc/cable_termination.html:65 +#: templates/dcim/inc/cable_termination.html:65 msgid "No termination" msgstr "Brak wypowiedzenia" -#: netbox/templates/dcim/inc/cable_toggle_buttons.html:3 +#: templates/dcim/inc/cable_toggle_buttons.html:3 msgid "Mark Planned" msgstr "Oznacz zaplanowane" -#: netbox/templates/dcim/inc/cable_toggle_buttons.html:6 +#: templates/dcim/inc/cable_toggle_buttons.html:6 msgid "Mark Installed" msgstr "Oznacz zainstalowany" -#: netbox/templates/dcim/inc/connection_endpoints.html:13 +#: templates/dcim/inc/connection_endpoints.html:13 msgid "Path Status" msgstr "Status ścieżki" -#: netbox/templates/dcim/inc/connection_endpoints.html:18 +#: templates/dcim/inc/connection_endpoints.html:18 msgid "Not Reachable" msgstr "Nieosiągalny" -#: netbox/templates/dcim/inc/connection_endpoints.html:23 +#: templates/dcim/inc/connection_endpoints.html:23 msgid "Path Endpoints" msgstr "Punkty końcowe ścieżki" -#: netbox/templates/dcim/inc/endpoint_connection.html:8 -#: netbox/templates/dcim/powerfeed.html:120 -#: netbox/templates/dcim/rearport.html:94 +#: templates/dcim/inc/endpoint_connection.html:8 +#: templates/dcim/powerfeed.html:120 templates/dcim/rearport.html:94 msgid "Not connected" msgstr "Nie podłączony" -#: netbox/templates/dcim/inc/interface_vlans_table.html:6 +#: templates/dcim/inc/interface_vlans_table.html:6 msgid "Untagged" msgstr "Bez oznakowania" -#: netbox/templates/dcim/inc/interface_vlans_table.html:37 +#: templates/dcim/inc/interface_vlans_table.html:37 msgid "No VLANs Assigned" msgstr "Brak przypisanych sieci VLAN" -#: netbox/templates/dcim/inc/interface_vlans_table.html:44 -#: netbox/templates/ipam/prefix_list.html:16 -#: netbox/templates/ipam/prefix_list.html:33 +#: templates/dcim/inc/interface_vlans_table.html:44 +#: templates/ipam/prefix_list.html:16 templates/ipam/prefix_list.html:33 msgid "Clear" msgstr "Wyczyść" -#: netbox/templates/dcim/inc/interface_vlans_table.html:47 +#: templates/dcim/inc/interface_vlans_table.html:47 msgid "Clear All" msgstr "Wyczyść wszystko" -#: netbox/templates/dcim/inc/panels/racktype_dimensions.html:38 +#: templates/dcim/inc/panels/racktype_dimensions.html:38 msgid "Mounting Depth" msgstr "Głębokość montażu" -#: netbox/templates/dcim/inc/panels/racktype_numbering.html:6 +#: templates/dcim/inc/panels/racktype_numbering.html:6 msgid "Starting Unit" msgstr "Jednostka startowa" -#: netbox/templates/dcim/inc/panels/racktype_numbering.html:10 +#: templates/dcim/inc/panels/racktype_numbering.html:10 msgid "Descending Units" msgstr "Jednostki malejące" -#: netbox/templates/dcim/inc/rack_elevation.html:3 +#: templates/dcim/inc/rack_elevation.html:3 msgid "Rack elevation" msgstr "Elewacja szafy" -#: netbox/templates/dcim/interface.html:17 +#: templates/dcim/interface.html:17 msgid "Add Child Interface" msgstr "Dodaj interfejs podrzędny" -#: netbox/templates/dcim/interface.html:50 +#: templates/dcim/interface.html:50 msgid "Speed/Duplex" msgstr "Prędkości/Duplex" -#: netbox/templates/dcim/interface.html:73 +#: templates/dcim/interface.html:73 msgid "PoE Mode" msgstr "Tryb PoE" -#: netbox/templates/dcim/interface.html:77 +#: templates/dcim/interface.html:77 msgid "PoE Type" msgstr "Typ PoE" -#: netbox/templates/dcim/interface.html:81 -#: netbox/templates/virtualization/vminterface.html:63 +#: templates/dcim/interface.html:81 +#: templates/virtualization/vminterface.html:63 msgid "802.1Q Mode" msgstr "Tryb 802.1Q" -#: netbox/templates/dcim/interface.html:125 -#: netbox/templates/virtualization/vminterface.html:59 +#: templates/dcim/interface.html:125 +#: templates/virtualization/vminterface.html:59 msgid "MAC Address" msgstr "Adres MAC" -#: netbox/templates/dcim/interface.html:151 +#: templates/dcim/interface.html:151 msgid "Wireless Link" msgstr "Bezprzewodowe łącze" -#: netbox/templates/dcim/interface.html:218 netbox/vpn/choices.py:55 +#: templates/dcim/interface.html:218 vpn/choices.py:55 msgid "Peer" msgstr "Peer" -#: netbox/templates/dcim/interface.html:230 -#: netbox/templates/wireless/inc/wirelesslink_interface.html:26 +#: templates/dcim/interface.html:230 +#: templates/wireless/inc/wirelesslink_interface.html:26 msgid "Channel" msgstr "Kanał" -#: netbox/templates/dcim/interface.html:239 -#: netbox/templates/wireless/inc/wirelesslink_interface.html:32 +#: templates/dcim/interface.html:239 +#: templates/wireless/inc/wirelesslink_interface.html:32 msgid "Channel Frequency" msgstr "Częstotliwość kanału" -#: netbox/templates/dcim/interface.html:242 -#: netbox/templates/dcim/interface.html:250 -#: netbox/templates/dcim/interface.html:261 -#: netbox/templates/dcim/interface.html:269 +#: templates/dcim/interface.html:242 templates/dcim/interface.html:250 +#: templates/dcim/interface.html:261 templates/dcim/interface.html:269 msgid "MHz" msgstr "MHz" -#: netbox/templates/dcim/interface.html:258 -#: netbox/templates/wireless/inc/wirelesslink_interface.html:42 +#: templates/dcim/interface.html:258 +#: templates/wireless/inc/wirelesslink_interface.html:42 msgid "Channel Width" msgstr "Szerokość kanału" -#: netbox/templates/dcim/interface.html:285 -#: netbox/templates/wireless/wirelesslan.html:14 -#: netbox/templates/wireless/wirelesslink.html:21 -#: netbox/wireless/forms/bulk_edit.py:60 -#: netbox/wireless/forms/bulk_edit.py:102 -#: netbox/wireless/forms/filtersets.py:40 -#: netbox/wireless/forms/filtersets.py:80 netbox/wireless/models.py:82 -#: netbox/wireless/models.py:156 netbox/wireless/tables/wirelesslan.py:44 +#: templates/dcim/interface.html:285 templates/wireless/wirelesslan.html:14 +#: templates/wireless/wirelesslink.html:21 wireless/forms/bulk_edit.py:60 +#: wireless/forms/bulk_edit.py:102 wireless/forms/filtersets.py:40 +#: wireless/forms/filtersets.py:80 wireless/models.py:82 +#: wireless/models.py:156 wireless/tables/wirelesslan.py:44 msgid "SSID" msgstr "SSID" -#: netbox/templates/dcim/interface.html:305 +#: templates/dcim/interface.html:305 msgid "LAG Members" msgstr "Członkowie LGD" -#: netbox/templates/dcim/interface.html:323 +#: templates/dcim/interface.html:323 msgid "No member interfaces" msgstr "Brak interfejsów członka" -#: netbox/templates/dcim/interface.html:343 -#: netbox/templates/ipam/fhrpgroup.html:73 -#: netbox/templates/ipam/iprange/ip_addresses.html:7 -#: netbox/templates/ipam/prefix/ip_addresses.html:7 -#: netbox/templates/virtualization/vminterface.html:89 +#: templates/dcim/interface.html:343 templates/ipam/fhrpgroup.html:73 +#: templates/ipam/iprange/ip_addresses.html:7 +#: templates/ipam/prefix/ip_addresses.html:7 +#: templates/virtualization/vminterface.html:89 msgid "Add IP Address" msgstr "Dodaj adres IP" -#: netbox/templates/dcim/inventoryitem.html:24 +#: templates/dcim/inventoryitem.html:24 msgid "Parent Item" msgstr "Element nadrzędny" -#: netbox/templates/dcim/inventoryitem.html:48 +#: templates/dcim/inventoryitem.html:48 msgid "Part ID" msgstr "Identyfikator części" -#: netbox/templates/dcim/location.html:17 +#: templates/dcim/location.html:17 msgid "Add Child Location" msgstr "Dodaj lokalizację dziecka" -#: netbox/templates/dcim/location.html:77 +#: templates/dcim/location.html:77 msgid "Child Locations" msgstr "Lokalizacje dzieci" -#: netbox/templates/dcim/location.html:81 netbox/templates/dcim/site.html:131 +#: templates/dcim/location.html:81 templates/dcim/site.html:131 msgid "Add a Location" msgstr "Dodawanie lokalizacji" -#: netbox/templates/dcim/location.html:94 netbox/templates/dcim/site.html:144 +#: templates/dcim/location.html:94 templates/dcim/site.html:144 msgid "Add a Device" msgstr "Dodawanie urządzenia" -#: netbox/templates/dcim/manufacturer.html:16 +#: templates/dcim/manufacturer.html:16 msgid "Add Device Type" msgstr "Dodaj typ urządzenia" -#: netbox/templates/dcim/manufacturer.html:21 +#: templates/dcim/manufacturer.html:21 msgid "Add Module Type" msgstr "Dodaj typ modułu" -#: netbox/templates/dcim/powerfeed.html:53 +#: templates/dcim/powerfeed.html:53 msgid "Connected Device" msgstr "Podłączone urządzenie" -#: netbox/templates/dcim/powerfeed.html:63 +#: templates/dcim/powerfeed.html:63 msgid "Utilization (Allocated" msgstr "Wykorzystanie (przydzielone" -#: netbox/templates/dcim/powerfeed.html:80 +#: templates/dcim/powerfeed.html:80 msgid "Electrical Characteristics" msgstr "Charakterystyka elektryczna" -#: netbox/templates/dcim/powerfeed.html:88 +#: templates/dcim/powerfeed.html:88 msgctxt "Abbreviation for volts" msgid "V" msgstr "V" -#: netbox/templates/dcim/powerfeed.html:92 +#: templates/dcim/powerfeed.html:92 msgctxt "Abbreviation for amperes" msgid "A" msgstr "A" -#: netbox/templates/dcim/poweroutlet.html:48 +#: templates/dcim/poweroutlet.html:48 msgid "Feed Leg" msgstr "Noga karmienia" -#: netbox/templates/dcim/powerpanel.html:72 +#: templates/dcim/powerpanel.html:72 msgid "Add Power Feeds" msgstr "Dodaj źródła zasilania" -#: netbox/templates/dcim/powerport.html:44 +#: templates/dcim/powerport.html:44 msgid "Maximum Draw" msgstr "Maksymalne losowanie" -#: netbox/templates/dcim/powerport.html:48 +#: templates/dcim/powerport.html:48 msgid "Allocated Draw" msgstr "Przydzielone losowanie" -#: netbox/templates/dcim/rack.html:69 +#: templates/dcim/rack.html:69 msgid "Space Utilization" msgstr "Wykorzystanie przestrzeni" -#: netbox/templates/dcim/rack.html:84 netbox/templates/dcim/racktype.html:44 +#: templates/dcim/rack.html:84 templates/dcim/racktype.html:44 msgid "Rack Weight" msgstr "Waga szafy" -#: netbox/templates/dcim/rack.html:94 netbox/templates/dcim/racktype.html:54 +#: templates/dcim/rack.html:94 templates/dcim/racktype.html:54 msgid "Maximum Weight" msgstr "Maksymalna waga" -#: netbox/templates/dcim/rack.html:104 +#: templates/dcim/rack.html:104 msgid "Total Weight" msgstr "Całkowita waga" -#: netbox/templates/dcim/rack.html:125 -#: netbox/templates/dcim/rack_elevation_list.html:15 +#: templates/dcim/rack.html:125 templates/dcim/rack_elevation_list.html:15 msgid "Images and Labels" msgstr "Obrazy i etykiety" -#: netbox/templates/dcim/rack.html:126 -#: netbox/templates/dcim/rack_elevation_list.html:16 +#: templates/dcim/rack.html:126 templates/dcim/rack_elevation_list.html:16 msgid "Images only" msgstr "Tylko obrazy" -#: netbox/templates/dcim/rack.html:127 -#: netbox/templates/dcim/rack_elevation_list.html:17 +#: templates/dcim/rack.html:127 templates/dcim/rack_elevation_list.html:17 msgid "Labels only" msgstr "Tylko etykiety" -#: netbox/templates/dcim/rack/reservations.html:8 +#: templates/dcim/rack/reservations.html:8 msgid "Add reservation" msgstr "Dodaj rezerwację" -#: netbox/templates/dcim/rack_elevation_list.html:12 +#: templates/dcim/rack_elevation_list.html:12 msgid "View List" msgstr "Wyświetl listę" -#: netbox/templates/dcim/rack_elevation_list.html:14 +#: templates/dcim/rack_elevation_list.html:14 msgid "Select rack view" msgstr "Wybierz widok szafy" -#: netbox/templates/dcim/rack_elevation_list.html:25 +#: templates/dcim/rack_elevation_list.html:25 msgid "Sort By" msgstr "Sortuj wg" -#: netbox/templates/dcim/rack_elevation_list.html:74 +#: templates/dcim/rack_elevation_list.html:74 msgid "No Racks Found" msgstr "Nie znaleziono szaf" -#: netbox/templates/dcim/rack_list.html:8 +#: templates/dcim/rack_list.html:8 msgid "View Elevations" msgstr "Wyświetl elewacje" -#: netbox/templates/dcim/rackreservation.html:42 +#: templates/dcim/rackreservation.html:42 msgid "Reservation Details" msgstr "Szczegóły rezerwacji" -#: netbox/templates/dcim/rackrole.html:10 +#: templates/dcim/rackrole.html:10 msgid "Add Rack" msgstr "Dodaj szafę" -#: netbox/templates/dcim/rearport.html:50 +#: templates/dcim/rearport.html:50 msgid "Positions" msgstr "Pozycje" -#: netbox/templates/dcim/region.html:17 -#: netbox/templates/dcim/sitegroup.html:17 +#: templates/dcim/region.html:17 templates/dcim/sitegroup.html:17 msgid "Add Site" msgstr "Dodaj witrynę" -#: netbox/templates/dcim/region.html:55 +#: templates/dcim/region.html:55 msgid "Child Regions" msgstr "Regiony dziecięce" -#: netbox/templates/dcim/region.html:59 +#: templates/dcim/region.html:59 msgid "Add Region" msgstr "Dodaj region" -#: netbox/templates/dcim/site.html:64 +#: templates/dcim/site.html:64 msgid "Time Zone" msgstr "Strefa czasowa" -#: netbox/templates/dcim/site.html:67 +#: templates/dcim/site.html:67 msgid "UTC" msgstr "UTC" -#: netbox/templates/dcim/site.html:68 +#: templates/dcim/site.html:68 msgid "Site time" msgstr "Czas na stronie" -#: netbox/templates/dcim/site.html:75 +#: templates/dcim/site.html:75 msgid "Physical Address" msgstr "Adres fizyczny" -#: netbox/templates/dcim/site.html:90 +#: templates/dcim/site.html:90 msgid "Shipping Address" msgstr "Adres wysyłki" -#: netbox/templates/dcim/sitegroup.html:55 -#: netbox/templates/tenancy/contactgroup.html:46 -#: netbox/templates/tenancy/tenantgroup.html:55 -#: netbox/templates/wireless/wirelesslangroup.html:55 +#: templates/dcim/sitegroup.html:55 templates/tenancy/contactgroup.html:46 +#: templates/tenancy/tenantgroup.html:55 +#: templates/wireless/wirelesslangroup.html:55 msgid "Child Groups" msgstr "Grupy dzieci" -#: netbox/templates/dcim/sitegroup.html:59 +#: templates/dcim/sitegroup.html:59 msgid "Add Site Group" msgstr "Dodaj grupę witryn" -#: netbox/templates/dcim/trace/attachment.html:5 -#: netbox/templates/extras/exporttemplate.html:31 +#: templates/dcim/trace/attachment.html:5 +#: templates/extras/exporttemplate.html:31 msgid "Attachment" msgstr "Załącznik" -#: netbox/templates/dcim/virtualchassis.html:57 +#: templates/dcim/virtualchassis.html:57 msgid "Add Member" msgstr "Dodaj członka" -#: netbox/templates/dcim/virtualchassis_add.html:18 +#: templates/dcim/virtualchassis_add.html:18 msgid "Member Devices" msgstr "Urządzenia członkowskie" -#: netbox/templates/dcim/virtualchassis_add_member.html:10 +#: templates/dcim/virtualchassis_add_member.html:10 #, python-format msgid "Add New Member to Virtual Chassis %(virtual_chassis)s" msgstr "Dodaj nowego członka do wirtualnej obudowy %(virtual_chassis)s" -#: netbox/templates/dcim/virtualchassis_add_member.html:19 +#: templates/dcim/virtualchassis_add_member.html:19 msgid "Add New Member" msgstr "Dodaj nowego członka" -#: netbox/templates/dcim/virtualchassis_add_member.html:27 -#: netbox/templates/generic/object_edit.html:78 -#: netbox/templates/users/objectpermission.html:31 -#: netbox/users/forms/filtersets.py:67 netbox/users/forms/model_forms.py:312 +#: templates/dcim/virtualchassis_add_member.html:27 +#: templates/generic/object_edit.html:78 +#: templates/users/objectpermission.html:31 users/forms/filtersets.py:67 +#: users/forms/model_forms.py:312 msgid "Actions" msgstr "Działania" -#: netbox/templates/dcim/virtualchassis_add_member.html:29 +#: templates/dcim/virtualchassis_add_member.html:29 msgid "Save & Add Another" msgstr "Zapisz i dodaj kolejny" -#: netbox/templates/dcim/virtualchassis_edit.html:7 +#: templates/dcim/virtualchassis_edit.html:7 #, python-format msgid "Editing Virtual Chassis %(name)s" msgstr "Edycja wirtualnej obudowy %(name)s" -#: netbox/templates/dcim/virtualchassis_edit.html:53 +#: templates/dcim/virtualchassis_edit.html:53 msgid "Rack/Unit" msgstr "Szafa/jednostka" -#: netbox/templates/dcim/virtualchassis_remove_member.html:5 +#: templates/dcim/virtualchassis_remove_member.html:5 msgid "Remove Virtual Chassis Member" msgstr "Usuń członek wirtualnej obudowy" -#: netbox/templates/dcim/virtualchassis_remove_member.html:9 +#: templates/dcim/virtualchassis_remove_member.html:9 #, python-format msgid "" "Are you sure you want to remove %(device)s from virtual " @@ -13100,12 +12390,11 @@ msgstr "" "Czy na pewno chcesz usunąć %(device)s z wirtualnego " "podwozia %(name)s?" -#: netbox/templates/dcim/virtualdevicecontext.html:26 -#: netbox/templates/vpn/l2vpn.html:18 +#: templates/dcim/virtualdevicecontext.html:26 templates/vpn/l2vpn.html:18 msgid "Identifier" msgstr "Identyfikator" -#: netbox/templates/exceptions/import_error.html:6 +#: templates/exceptions/import_error.html:6 msgid "" "A module import error occurred during this request. Common causes include " "the following:" @@ -13113,11 +12402,11 @@ msgstr "" "Podczas tego żądania wystąpił błąd importu modułu. Typowe przyczyny " "obejmują:" -#: netbox/templates/exceptions/import_error.html:10 +#: templates/exceptions/import_error.html:10 msgid "Missing required packages" msgstr "Brakujące wymagane pakiety" -#: netbox/templates/exceptions/import_error.html:11 +#: templates/exceptions/import_error.html:11 msgid "" "This installation of NetBox might be missing one or more required Python " "packages. These packages are listed in requirements.txt and " @@ -13133,11 +12422,11 @@ msgstr "" " uruchom zamrażanie pip z konsoli i porównaj dane wyjściowe z " "listą wymaganych pakietów." -#: netbox/templates/exceptions/import_error.html:20 +#: templates/exceptions/import_error.html:20 msgid "WSGI service not restarted after upgrade" msgstr "Usługa WSGI nie została ponownie uruchomiona po aktualizacji" -#: netbox/templates/exceptions/import_error.html:21 +#: templates/exceptions/import_error.html:21 msgid "" "If this installation has recently been upgraded, check that the WSGI service" " (e.g. gunicorn or uWSGI) has been restarted. This ensures that the new code" @@ -13147,7 +12436,7 @@ msgstr "" "WSGI (np. gunicorn lub uwsGI) została ponownie uruchomiona. Zapewnia to " "uruchomienie nowego kodu." -#: netbox/templates/exceptions/permission_error.html:6 +#: templates/exceptions/permission_error.html:6 msgid "" "A file permission error was detected while processing this request. Common " "causes include the following:" @@ -13155,11 +12444,11 @@ msgstr "" "Podczas przetwarzania tego żądania wykryto błąd uprawnień do pliku. Typowe " "przyczyny obejmują:" -#: netbox/templates/exceptions/permission_error.html:10 +#: templates/exceptions/permission_error.html:10 msgid "Insufficient write permission to the media root" msgstr "Niewystarczające uprawnienia do zapisu do katalogu głównego nośnika" -#: netbox/templates/exceptions/permission_error.html:11 +#: templates/exceptions/permission_error.html:11 #, python-format msgid "" "The configured media root is %(media_root)s. Ensure that the " @@ -13170,7 +12459,7 @@ msgstr "" "się, że użytkownik NetBox działa tak, jak ma dostęp do zapisu plików we " "wszystkich lokalizacjach w tej ścieżce." -#: netbox/templates/exceptions/programming_error.html:6 +#: templates/exceptions/programming_error.html:6 msgid "" "A database programming error was detected while processing this request. " "Common causes include the following:" @@ -13178,11 +12467,11 @@ msgstr "" "Podczas przetwarzania tego żądania wykryto błąd programowania bazy danych. " "Typowe przyczyny obejmują:" -#: netbox/templates/exceptions/programming_error.html:10 +#: templates/exceptions/programming_error.html:10 msgid "Database migrations missing" msgstr "Brak migracji baz danych" -#: netbox/templates/exceptions/programming_error.html:11 +#: templates/exceptions/programming_error.html:11 msgid "" "When upgrading to a new NetBox release, the upgrade script must be run to " "apply any new database migrations. You can run migrations manually by " @@ -13193,11 +12482,11 @@ msgstr "" "Migracje można uruchamiać ręcznie, wykonując migracja python3 " "manage.py z wiersza poleceń." -#: netbox/templates/exceptions/programming_error.html:18 +#: templates/exceptions/programming_error.html:18 msgid "Unsupported PostgreSQL version" msgstr "Nieobsługiwana wersja PostgreSQL" -#: netbox/templates/exceptions/programming_error.html:19 +#: templates/exceptions/programming_error.html:19 msgid "" "Ensure that PostgreSQL version 12 or later is in use. You can check this by " "connecting to the database using NetBox's credentials and issuing a query " @@ -13207,102 +12496,99 @@ msgstr "" "sprawdzić, łącząc się z bazą danych za pomocą poświadczeń NetBox i wydając " "zapytanie dotyczące WYBIERZ WERSJĘ ()." -#: netbox/templates/extras/configcontext.html:45 -#: netbox/templates/extras/configtemplate.html:37 -#: netbox/templates/extras/exporttemplate.html:51 +#: templates/extras/configcontext.html:45 +#: templates/extras/configtemplate.html:37 +#: templates/extras/exporttemplate.html:51 msgid "The data file associated with this object has been deleted" msgstr "Plik danych powiązany z tym obiektem został usunięty" -#: netbox/templates/extras/configcontext.html:54 -#: netbox/templates/extras/configtemplate.html:46 -#: netbox/templates/extras/exporttemplate.html:60 +#: templates/extras/configcontext.html:54 +#: templates/extras/configtemplate.html:46 +#: templates/extras/exporttemplate.html:60 msgid "Data Synced" msgstr "Zsynchronizowane dane" -#: netbox/templates/extras/configcontext_list.html:7 -#: netbox/templates/extras/configtemplate_list.html:7 -#: netbox/templates/extras/exporttemplate_list.html:7 +#: templates/extras/configcontext_list.html:7 +#: templates/extras/configtemplate_list.html:7 +#: templates/extras/exporttemplate_list.html:7 msgid "Sync Data" msgstr "Synchronizuj dane" -#: netbox/templates/extras/configtemplate.html:56 +#: templates/extras/configtemplate.html:56 msgid "Environment Parameters" msgstr "Parametry środowiska" -#: netbox/templates/extras/configtemplate.html:67 -#: netbox/templates/extras/exporttemplate.html:79 +#: templates/extras/configtemplate.html:67 +#: templates/extras/exporttemplate.html:79 msgid "Template" msgstr "Szablon" -#: netbox/templates/extras/customfield.html:30 -#: netbox/templates/extras/customlink.html:21 +#: templates/extras/customfield.html:30 templates/extras/customlink.html:21 msgid "Group Name" msgstr "Nazwa grupy" -#: netbox/templates/extras/customfield.html:42 +#: templates/extras/customfield.html:42 msgid "Must be Unique" msgstr "Musi być wyjątkowy" -#: netbox/templates/extras/customfield.html:46 +#: templates/extras/customfield.html:46 msgid "Cloneable" msgstr "Klonowalne" -#: netbox/templates/extras/customfield.html:56 +#: templates/extras/customfield.html:56 msgid "Default Value" msgstr "Wartość domyślna" -#: netbox/templates/extras/customfield.html:73 +#: templates/extras/customfield.html:73 msgid "Search Weight" msgstr "Szukaj wagi" -#: netbox/templates/extras/customfield.html:83 +#: templates/extras/customfield.html:83 msgid "Filter Logic" msgstr "Filtruj logikę" -#: netbox/templates/extras/customfield.html:87 +#: templates/extras/customfield.html:87 msgid "Display Weight" msgstr "Waga wyświetlacza" -#: netbox/templates/extras/customfield.html:91 +#: templates/extras/customfield.html:91 msgid "UI Visible" msgstr "Widoczny interfejs użytkownika" -#: netbox/templates/extras/customfield.html:95 +#: templates/extras/customfield.html:95 msgid "UI Editable" msgstr "Edytowalny interfejs użytkownika" -#: netbox/templates/extras/customfield.html:115 +#: templates/extras/customfield.html:115 msgid "Validation Rules" msgstr "Reguły walidacji" -#: netbox/templates/extras/customfield.html:126 +#: templates/extras/customfield.html:126 msgid "Regular Expression" msgstr "Wyrażenie regularne" -#: netbox/templates/extras/customlink.html:29 +#: templates/extras/customlink.html:29 msgid "Button Class" msgstr "Klasa przycisków" -#: netbox/templates/extras/customlink.html:39 -#: netbox/templates/extras/exporttemplate.html:66 -#: netbox/templates/extras/savedfilter.html:39 +#: templates/extras/customlink.html:39 templates/extras/exporttemplate.html:66 +#: templates/extras/savedfilter.html:39 msgid "Assigned Models" msgstr "Przypisane modele" -#: netbox/templates/extras/customlink.html:52 +#: templates/extras/customlink.html:52 msgid "Link Text" msgstr "Tekst linku" -#: netbox/templates/extras/customlink.html:58 +#: templates/extras/customlink.html:58 msgid "Link URL" msgstr "Adres URL łącza" -#: netbox/templates/extras/dashboard/reset.html:4 -#: netbox/templates/home.html:66 +#: templates/extras/dashboard/reset.html:4 templates/home.html:66 msgid "Reset Dashboard" msgstr "Resetuj pulpit" -#: netbox/templates/extras/dashboard/reset.html:8 +#: templates/extras/dashboard/reset.html:8 msgid "" "This will remove all configured widgets and restore the " "default dashboard configuration." @@ -13310,7 +12596,7 @@ msgstr "" "Spowoduje to usunięcie wszyscy skonfigurowane widżety i " "przywrócenie domyślnej konfiguracji pulpitu nawigacyjnego." -#: netbox/templates/extras/dashboard/reset.html:13 +#: templates/extras/dashboard/reset.html:13 msgid "" "This change affects only your dashboard, and will not impact other " "users." @@ -13318,156 +12604,154 @@ msgstr "" "Ta zmiana dotyczy tylko twój pulpit nawigacyjny i nie wpłynie na " "innych użytkowników." -#: netbox/templates/extras/dashboard/widget.html:21 +#: templates/extras/dashboard/widget.html:21 msgid "widget configuration" msgstr "konfiguracja widżetu" -#: netbox/templates/extras/dashboard/widget.html:36 +#: templates/extras/dashboard/widget.html:36 msgid "Close widget" msgstr "Zamknij widżet" -#: netbox/templates/extras/dashboard/widget_add.html:7 +#: templates/extras/dashboard/widget_add.html:7 msgid "Add a Widget" msgstr "Dodawanie widżetu" -#: netbox/templates/extras/dashboard/widgets/bookmarks.html:14 +#: templates/extras/dashboard/widgets/bookmarks.html:14 msgid "No bookmarks have been added yet." msgstr "Nie dodano jeszcze żadnych zakładek." -#: netbox/templates/extras/dashboard/widgets/objectcounts.html:10 +#: templates/extras/dashboard/widgets/objectcounts.html:10 msgid "No permission" msgstr "Bez pozwolenia" -#: netbox/templates/extras/dashboard/widgets/objectlist.html:6 +#: templates/extras/dashboard/widgets/objectlist.html:6 msgid "No permission to view this content" msgstr "Brak uprawnień do przeglądania tych treści" -#: netbox/templates/extras/dashboard/widgets/objectlist.html:10 +#: templates/extras/dashboard/widgets/objectlist.html:10 msgid "Unable to load content. Invalid view name" msgstr "Nie można załadować treści. Nieprawidłowa nazwa widoku" -#: netbox/templates/extras/dashboard/widgets/rssfeed.html:12 +#: templates/extras/dashboard/widgets/rssfeed.html:12 msgid "No content found" msgstr "Nie znaleziono treści" -#: netbox/templates/extras/dashboard/widgets/rssfeed.html:18 +#: templates/extras/dashboard/widgets/rssfeed.html:18 msgid "There was a problem fetching the RSS feed" msgstr "Wystąpił problem z pobieraniem kanału RSS" -#: netbox/templates/extras/dashboard/widgets/rssfeed.html:21 +#: templates/extras/dashboard/widgets/rssfeed.html:21 msgid "HTTP" msgstr "HTTP" -#: netbox/templates/extras/eventrule.html:61 +#: templates/extras/eventrule.html:61 msgid "Conditions" msgstr "Warunki" -#: netbox/templates/extras/exporttemplate.html:23 +#: templates/extras/exporttemplate.html:23 msgid "MIME Type" msgstr "Typ MIME" -#: netbox/templates/extras/exporttemplate.html:27 +#: templates/extras/exporttemplate.html:27 msgid "File Extension" msgstr "Rozszerzenie pliku" -#: netbox/templates/extras/htmx/script_result.html:10 +#: templates/extras/htmx/script_result.html:10 msgid "Scheduled for" msgstr "Zaplanowane na" -#: netbox/templates/extras/htmx/script_result.html:15 +#: templates/extras/htmx/script_result.html:15 msgid "Duration" msgstr "Czas trwania" -#: netbox/templates/extras/htmx/script_result.html:23 +#: templates/extras/htmx/script_result.html:23 msgid "Test Summary" msgstr "Podsumowanie testu" -#: netbox/templates/extras/htmx/script_result.html:43 +#: templates/extras/htmx/script_result.html:43 msgid "Log" msgstr "Dziennik" -#: netbox/templates/extras/htmx/script_result.html:56 +#: templates/extras/htmx/script_result.html:56 msgid "Output" msgstr "Wyjście" -#: netbox/templates/extras/inc/result_pending.html:4 +#: templates/extras/inc/result_pending.html:4 msgid "Loading" msgstr "Ładowanie" -#: netbox/templates/extras/inc/result_pending.html:6 +#: templates/extras/inc/result_pending.html:6 msgid "Results pending" msgstr "Wyniki oczekujące" -#: netbox/templates/extras/journalentry.html:15 +#: templates/extras/journalentry.html:15 msgid "Journal Entry" msgstr "Wpis do dziennika" -#: netbox/templates/extras/notificationgroup.html:11 +#: templates/extras/notificationgroup.html:11 msgid "Notification Group" msgstr "Grupa powiadomień" -#: netbox/templates/extras/notificationgroup.html:36 -#: netbox/templates/extras/notificationgroup.html:46 -#: netbox/utilities/templates/widgets/clearable_file_input.html:12 +#: templates/extras/notificationgroup.html:36 +#: templates/extras/notificationgroup.html:46 +#: utilities/templates/widgets/clearable_file_input.html:12 msgid "None assigned" msgstr "Brak przypisanych" -#: netbox/templates/extras/object_configcontext.html:19 +#: templates/extras/object_configcontext.html:19 msgid "The local config context overwrites all source contexts" msgstr "Kontekst konfiguracji lokalnej zastępuje wszystkie konteksty źródłowe" -#: netbox/templates/extras/object_configcontext.html:25 +#: templates/extras/object_configcontext.html:25 msgid "Source Contexts" msgstr "Konteksty źródłowe" -#: netbox/templates/extras/object_journal.html:17 +#: templates/extras/object_journal.html:17 msgid "New Journal Entry" msgstr "Nowy wpis do dziennika" -#: netbox/templates/extras/report/base.html:30 +#: templates/extras/report/base.html:30 msgid "Report" msgstr "Zgłoś" -#: netbox/templates/extras/script.html:14 +#: templates/extras/script.html:14 msgid "You do not have permission to run scripts" msgstr "Nie masz uprawnień do uruchamiania skryptów" -#: netbox/templates/extras/script.html:41 -#: netbox/templates/extras/script.html:45 -#: netbox/templates/extras/script_list.html:86 +#: templates/extras/script.html:41 templates/extras/script.html:45 +#: templates/extras/script_list.html:86 msgid "Run Script" msgstr "Uruchom skrypt" -#: netbox/templates/extras/script.html:51 -#: netbox/templates/extras/script/source.html:10 +#: templates/extras/script.html:51 templates/extras/script/source.html:10 msgid "Error loading script" msgstr "Błąd ładowania skryptu" -#: netbox/templates/extras/script/jobs.html:16 +#: templates/extras/script/jobs.html:16 msgid "Script no longer exists in the source file." msgstr "Skrypt nie istnieje już w pliku źródłowym." -#: netbox/templates/extras/script_list.html:46 +#: templates/extras/script_list.html:46 msgid "Last Run" msgstr "Ostatni bieg" -#: netbox/templates/extras/script_list.html:61 +#: templates/extras/script_list.html:61 msgid "Script is no longer present in the source file" msgstr "Skrypt nie jest już obecny w pliku źródłowym" -#: netbox/templates/extras/script_list.html:74 +#: templates/extras/script_list.html:74 msgid "Never" msgstr "Nigdy" -#: netbox/templates/extras/script_list.html:84 +#: templates/extras/script_list.html:84 msgid "Run Again" msgstr "Uruchom ponownie" -#: netbox/templates/extras/script_list.html:138 +#: templates/extras/script_list.html:138 msgid "No Scripts Found" msgstr "Nie znaleziono skryptów" -#: netbox/templates/extras/script_list.html:141 +#: templates/extras/script_list.html:141 #, python-format msgid "" "Get started by creating a script from " @@ -13476,83 +12760,81 @@ msgstr "" "Zacznij od utworzenia skryptu " "z przesłanego pliku lub źródła danych." -#: netbox/templates/extras/script_result.html:35 -#: netbox/templates/generic/object_list.html:50 -#: netbox/templates/search.html:13 +#: templates/extras/script_result.html:35 +#: templates/generic/object_list.html:50 templates/search.html:13 msgid "Results" msgstr "Wyniki" -#: netbox/templates/extras/script_result.html:46 +#: templates/extras/script_result.html:46 msgid "Log threshold" msgstr "Próg dziennika" -#: netbox/templates/extras/script_result.html:56 +#: templates/extras/script_result.html:56 msgid "All" msgstr "Wszystko" -#: netbox/templates/extras/tag.html:32 +#: templates/extras/tag.html:32 msgid "Tagged Items" msgstr "Oznaczone przedmioty" -#: netbox/templates/extras/tag.html:43 +#: templates/extras/tag.html:43 msgid "Allowed Object Types" msgstr "Dozwolone typy obiektów" -#: netbox/templates/extras/tag.html:51 +#: templates/extras/tag.html:51 msgid "Any" msgstr "Dowolny" -#: netbox/templates/extras/tag.html:57 +#: templates/extras/tag.html:57 msgid "Tagged Item Types" msgstr "Oznaczone typy przedmiotów" -#: netbox/templates/extras/tag.html:81 +#: templates/extras/tag.html:81 msgid "Tagged Objects" msgstr "Oznaczone obiekty" -#: netbox/templates/extras/webhook.html:26 +#: templates/extras/webhook.html:26 msgid "HTTP Method" msgstr "Metoda HTTP" -#: netbox/templates/extras/webhook.html:34 +#: templates/extras/webhook.html:34 msgid "HTTP Content Type" msgstr "Typ zawartości HTTP" -#: netbox/templates/extras/webhook.html:47 +#: templates/extras/webhook.html:47 msgid "SSL Verification" msgstr "Weryfikacja SSL" -#: netbox/templates/extras/webhook.html:60 +#: templates/extras/webhook.html:60 msgid "Additional Headers" msgstr "Dodatkowe nagłówki" -#: netbox/templates/extras/webhook.html:70 +#: templates/extras/webhook.html:70 msgid "Body Template" msgstr "Szablon ciała" -#: netbox/templates/generic/bulk_add_component.html:29 +#: templates/generic/bulk_add_component.html:29 msgid "Bulk Creation" msgstr "Tworzenie zbiorcze" -#: netbox/templates/generic/bulk_add_component.html:34 -#: netbox/templates/generic/bulk_delete.html:32 -#: netbox/templates/generic/bulk_edit.html:33 +#: templates/generic/bulk_add_component.html:34 +#: templates/generic/bulk_delete.html:32 templates/generic/bulk_edit.html:33 msgid "Selected Objects" msgstr "Wybrane obiekty" -#: netbox/templates/generic/bulk_add_component.html:58 +#: templates/generic/bulk_add_component.html:58 msgid "to Add" msgstr "Dodać" -#: netbox/templates/generic/bulk_delete.html:27 +#: templates/generic/bulk_delete.html:27 msgid "Bulk Delete" msgstr "Usuwanie zbiorcze" -#: netbox/templates/generic/bulk_delete.html:49 +#: templates/generic/bulk_delete.html:49 msgid "Confirm Bulk Deletion" msgstr "Potwierdź masowe usuwanie" -#: netbox/templates/generic/bulk_delete.html:50 +#: templates/generic/bulk_delete.html:50 #, python-format msgid "" "The following operation will delete %(count)s " @@ -13563,68 +12845,65 @@ msgstr "" "%(type_plural)s. Proszę dokładnie przejrzeć wybrane obiekty i potwierdzić tę" " akcję." -#: netbox/templates/generic/bulk_edit.html:21 -#: netbox/templates/generic/object_edit.html:22 +#: templates/generic/bulk_edit.html:21 templates/generic/object_edit.html:22 msgid "Editing" msgstr "Edycja" -#: netbox/templates/generic/bulk_edit.html:28 +#: templates/generic/bulk_edit.html:28 msgid "Bulk Edit" msgstr "Edycja zbiorcza" -#: netbox/templates/generic/bulk_edit.html:107 -#: netbox/templates/generic/bulk_rename.html:66 +#: templates/generic/bulk_edit.html:107 templates/generic/bulk_rename.html:66 msgid "Apply" msgstr "Zastosuj" -#: netbox/templates/generic/bulk_import.html:19 +#: templates/generic/bulk_import.html:19 msgid "Bulk Import" msgstr "Import zbiorczy" -#: netbox/templates/generic/bulk_import.html:25 +#: templates/generic/bulk_import.html:25 msgid "Direct Import" msgstr "Import bezpośredni" -#: netbox/templates/generic/bulk_import.html:30 +#: templates/generic/bulk_import.html:30 msgid "Upload File" msgstr "Prześlij plik" -#: netbox/templates/generic/bulk_import.html:58 -#: netbox/templates/generic/bulk_import.html:80 -#: netbox/templates/generic/bulk_import.html:102 +#: templates/generic/bulk_import.html:58 templates/generic/bulk_import.html:80 +#: templates/generic/bulk_import.html:102 msgid "Submit" msgstr "Zatwierdź" -#: netbox/templates/generic/bulk_import.html:113 +#: templates/generic/bulk_import.html:113 msgid "Field Options" msgstr "Opcje pola" -#: netbox/templates/generic/bulk_import.html:119 +#: templates/generic/bulk_import.html:119 msgid "Accessor" msgstr "Akcesoria" -#: netbox/templates/generic/bulk_import.html:148 +#: templates/generic/bulk_import.html:148 msgid "choices" msgstr "wyborów" -#: netbox/templates/generic/bulk_import.html:161 +#: templates/generic/bulk_import.html:161 msgid "Import Value" msgstr "Wartość importu" -#: netbox/templates/generic/bulk_import.html:181 +#: templates/generic/bulk_import.html:181 msgid "Format: YYYY-MM-DD" msgstr "Format: RRRR-MM-DD" -#: netbox/templates/generic/bulk_import.html:183 +#: templates/generic/bulk_import.html:183 msgid "Specify true or false" msgstr "Określ prawdę lub fałsz" -#: netbox/templates/generic/bulk_import.html:195 +#: templates/generic/bulk_import.html:195 msgid "Required fields must be specified for all objects." msgstr "" "Wymagane pola musi być określony dla wszystkich obiektów." -#: netbox/templates/generic/bulk_import.html:201 +#: templates/generic/bulk_import.html:201 #, python-format msgid "" "Related objects may be referenced by any unique attribute. For example, " @@ -13634,15 +12913,15 @@ msgstr "" "przykład, %(example)s zidentyfikowałby VRF za pomocą " "rozróżniacza trasy." -#: netbox/templates/generic/bulk_remove.html:28 +#: templates/generic/bulk_remove.html:28 msgid "Bulk Remove" msgstr "Usuwanie zbiorcze" -#: netbox/templates/generic/bulk_remove.html:42 +#: templates/generic/bulk_remove.html:42 msgid "Confirm Bulk Removal" msgstr "Potwierdź usuwanie zbiorcze" -#: netbox/templates/generic/bulk_remove.html:43 +#: templates/generic/bulk_remove.html:43 #, python-format msgid "" "The following operation will remove %(count)s %(obj_type_plural)s from " @@ -13653,72 +12932,72 @@ msgstr "" "%(parent_obj)s. Proszę dokładnie zapoznać się z %(obj_type_plural)s do " "usunięcia i potwierdzenia poniżej." -#: netbox/templates/generic/bulk_remove.html:64 +#: templates/generic/bulk_remove.html:64 #, python-format msgid "Remove these %(count)s %(obj_type_plural)s" msgstr "Usuń te %(count)s %(obj_type_plural)s" -#: netbox/templates/generic/bulk_rename.html:20 +#: templates/generic/bulk_rename.html:20 msgid "Renaming" msgstr "Zmiana nazwy" -#: netbox/templates/generic/bulk_rename.html:27 +#: templates/generic/bulk_rename.html:27 msgid "Bulk Rename" msgstr "Zbiorcza zmiana nazwy" -#: netbox/templates/generic/bulk_rename.html:39 +#: templates/generic/bulk_rename.html:39 msgid "Current Name" msgstr "Obecna nazwa" -#: netbox/templates/generic/bulk_rename.html:40 +#: templates/generic/bulk_rename.html:40 msgid "New Name" msgstr "Nowa nazwa" -#: netbox/templates/generic/bulk_rename.html:64 -#: netbox/utilities/templates/widgets/markdown_input.html:11 +#: templates/generic/bulk_rename.html:64 +#: utilities/templates/widgets/markdown_input.html:11 msgid "Preview" msgstr "Podgląd" -#: netbox/templates/generic/confirmation_form.html:16 +#: templates/generic/confirmation_form.html:16 msgid "Are you sure" msgstr "Jesteś pewien" -#: netbox/templates/generic/confirmation_form.html:20 +#: templates/generic/confirmation_form.html:20 msgid "Confirm" msgstr "Potwierdź" -#: netbox/templates/generic/object_children.html:47 -#: netbox/utilities/templates/buttons/bulk_edit.html:4 +#: templates/generic/object_children.html:47 +#: utilities/templates/buttons/bulk_edit.html:4 msgid "Edit Selected" msgstr "Edytuj wybrane" -#: netbox/templates/generic/object_children.html:61 -#: netbox/utilities/templates/buttons/bulk_delete.html:4 +#: templates/generic/object_children.html:61 +#: utilities/templates/buttons/bulk_delete.html:4 msgid "Delete Selected" msgstr "Usuń zaznaczone" -#: netbox/templates/generic/object_edit.html:24 +#: templates/generic/object_edit.html:24 #, python-format msgid "Add a new %(object_type)s" msgstr "Dodaj nowy %(object_type)s" -#: netbox/templates/generic/object_edit.html:35 +#: templates/generic/object_edit.html:35 msgid "View model documentation" msgstr "Wyświetl dokumentację modelu" -#: netbox/templates/generic/object_edit.html:36 +#: templates/generic/object_edit.html:36 msgid "Help" msgstr "Pomoc" -#: netbox/templates/generic/object_edit.html:83 +#: templates/generic/object_edit.html:83 msgid "Create & Add Another" msgstr "Utwórz i dodaj kolejny" -#: netbox/templates/generic/object_list.html:57 +#: templates/generic/object_list.html:57 msgid "Filters" msgstr "Filtry" -#: netbox/templates/generic/object_list.html:88 +#: templates/generic/object_list.html:88 #, python-format msgid "" "Select all %(count)s " @@ -13727,40 +13006,40 @@ msgstr "" "Wybierz wszyscy %(count)s " "%(object_type_plural)s pasujące zapytanie" -#: netbox/templates/home.html:15 +#: templates/home.html:15 msgid "New Release Available" msgstr "Dostępne nowe wydanie" -#: netbox/templates/home.html:16 +#: templates/home.html:16 msgid "is available" msgstr "jest dostępny" -#: netbox/templates/home.html:18 +#: templates/home.html:18 msgctxt "Document title" msgid "Upgrade Instructions" msgstr "Instrukcje uaktualnienia" -#: netbox/templates/home.html:40 +#: templates/home.html:40 msgid "Unlock Dashboard" msgstr "Odblokuj pulpit" -#: netbox/templates/home.html:49 +#: templates/home.html:49 msgid "Lock Dashboard" msgstr "Zablokuj pulpit" -#: netbox/templates/home.html:60 +#: templates/home.html:60 msgid "Add Widget" msgstr "Dodaj widżet" -#: netbox/templates/home.html:63 +#: templates/home.html:63 msgid "Save Layout" msgstr "Zapisz układ" -#: netbox/templates/htmx/delete_form.html:7 +#: templates/htmx/delete_form.html:7 msgid "Confirm Deletion" msgstr "Potwierdź usunięcie" -#: netbox/templates/htmx/delete_form.html:11 +#: templates/htmx/delete_form.html:11 #, python-format msgid "" "Are you sure you want to delete " @@ -13769,40 +13048,40 @@ msgstr "" "Jesteś pewien, że chcesz usunąć " "%(object_type)s %(object)s?" -#: netbox/templates/htmx/delete_form.html:17 +#: templates/htmx/delete_form.html:17 msgid "The following objects will be deleted as a result of this action." msgstr "Następujące obiekty zostaną usunięte w wyniku tej akcji." -#: netbox/templates/htmx/notifications.html:15 +#: templates/htmx/notifications.html:15 msgid "ago" msgstr "temu" -#: netbox/templates/htmx/notifications.html:26 +#: templates/htmx/notifications.html:26 msgid "No unread notifications" msgstr "Brak nieprzeczytanych powiadomień" -#: netbox/templates/htmx/notifications.html:31 +#: templates/htmx/notifications.html:31 msgid "All notifications" msgstr "Wszystkie powiadomienia" -#: netbox/templates/htmx/object_selector.html:5 +#: templates/htmx/object_selector.html:5 msgid "Select" msgstr "Wybierz" -#: netbox/templates/inc/filter_list.html:42 -#: netbox/utilities/templates/helpers/table_config_form.html:39 +#: templates/inc/filter_list.html:43 +#: utilities/templates/helpers/table_config_form.html:39 msgid "Reset" msgstr "Resetuj" -#: netbox/templates/inc/light_toggle.html:4 +#: templates/inc/light_toggle.html:4 msgid "Enable dark mode" msgstr "Włącz tryb ciemny" -#: netbox/templates/inc/light_toggle.html:7 +#: templates/inc/light_toggle.html:7 msgid "Enable light mode" msgstr "Włącz tryb oświetlenia" -#: netbox/templates/inc/missing_prerequisites.html:8 +#: templates/inc/missing_prerequisites.html:8 #, python-format msgid "" "Before you can add a %(model)s you must first create a " @@ -13811,284 +13090,282 @@ msgstr "" "Zanim będziesz mógł dodać %(model)s musisz najpierw utworzyć " "%(prerequisite_model)s." -#: netbox/templates/inc/paginator.html:15 +#: templates/inc/paginator.html:15 msgid "Page selection" msgstr "Wybór strony" -#: netbox/templates/inc/paginator.html:75 +#: templates/inc/paginator.html:75 #, python-format msgid "Showing %(start)s-%(end)s of %(total)s" msgstr "Pokazują %(start)s-%(end)s z %(total)s" -#: netbox/templates/inc/paginator.html:82 +#: templates/inc/paginator.html:82 msgid "Pagination options" msgstr "Opcje stronicowania" -#: netbox/templates/inc/paginator.html:86 +#: templates/inc/paginator.html:86 msgid "Per Page" msgstr "Na stronę" -#: netbox/templates/inc/panels/image_attachments.html:10 +#: templates/inc/panels/image_attachments.html:10 msgid "Attach an image" msgstr "Dołącz obraz" -#: netbox/templates/inc/panels/related_objects.html:5 +#: templates/inc/panels/related_objects.html:5 msgid "Related Objects" msgstr "Powiązane obiekty" -#: netbox/templates/inc/panels/tags.html:11 +#: templates/inc/panels/tags.html:11 msgid "No tags assigned" msgstr "Brak przypisanych tagów" -#: netbox/templates/inc/sync_warning.html:10 +#: templates/inc/sync_warning.html:10 msgid "Data is out of sync with upstream file" msgstr "Dane nie są zsynchronizowane z plikiem poprzedzającym" -#: netbox/templates/inc/table_controls_htmx.html:7 +#: templates/inc/table_controls_htmx.html:7 msgid "Quick search" msgstr "Szybkie wyszukiwanie" -#: netbox/templates/inc/table_controls_htmx.html:20 +#: templates/inc/table_controls_htmx.html:20 msgid "Saved filter" msgstr "Zapisany filtr" -#: netbox/templates/inc/table_htmx.html:18 +#: templates/inc/table_htmx.html:18 msgid "Clear ordering" msgstr "Wyraźne zamawianie" -#: netbox/templates/inc/user_menu.html:6 +#: templates/inc/user_menu.html:6 msgid "Help center" msgstr "Centrum pomocy" -#: netbox/templates/inc/user_menu.html:41 +#: templates/inc/user_menu.html:41 msgid "Django Admin" msgstr "Administrator Django" -#: netbox/templates/inc/user_menu.html:61 +#: templates/inc/user_menu.html:61 msgid "Log Out" msgstr "Wyloguj się" -#: netbox/templates/inc/user_menu.html:68 netbox/templates/login.html:38 +#: templates/inc/user_menu.html:68 templates/login.html:38 msgid "Log In" msgstr "Zaloguj się" -#: netbox/templates/ipam/aggregate.html:14 -#: netbox/templates/ipam/ipaddress.html:14 -#: netbox/templates/ipam/iprange.html:13 netbox/templates/ipam/prefix.html:15 +#: templates/ipam/aggregate.html:14 templates/ipam/ipaddress.html:14 +#: templates/ipam/iprange.html:13 templates/ipam/prefix.html:15 msgid "Family" msgstr "Rodzina" -#: netbox/templates/ipam/aggregate.html:39 +#: templates/ipam/aggregate.html:39 msgid "Date Added" msgstr "Data dodania" -#: netbox/templates/ipam/aggregate/prefixes.html:8 -#: netbox/templates/ipam/prefix/prefixes.html:8 -#: netbox/templates/ipam/role.html:10 +#: templates/ipam/aggregate/prefixes.html:8 +#: templates/ipam/prefix/prefixes.html:8 templates/ipam/role.html:10 msgid "Add Prefix" msgstr "Dodaj prefiks" -#: netbox/templates/ipam/asn.html:23 +#: templates/ipam/asn.html:23 msgid "AS Number" msgstr "Numer AS" -#: netbox/templates/ipam/fhrpgroup.html:52 +#: templates/ipam/fhrpgroup.html:52 msgid "Authentication Type" msgstr "Typ uwierzytelniania" -#: netbox/templates/ipam/fhrpgroup.html:56 +#: templates/ipam/fhrpgroup.html:56 msgid "Authentication Key" msgstr "klucz uwierzytelniania" -#: netbox/templates/ipam/fhrpgroup.html:69 +#: templates/ipam/fhrpgroup.html:69 msgid "Virtual IP Addresses" msgstr "Wirtualne adresy IP" -#: netbox/templates/ipam/inc/ipaddress_edit_header.html:13 +#: templates/ipam/inc/ipaddress_edit_header.html:13 msgid "Assign IP" msgstr "Przypisz adres IP" -#: netbox/templates/ipam/inc/ipaddress_edit_header.html:19 +#: templates/ipam/inc/ipaddress_edit_header.html:19 msgid "Bulk Create" msgstr "Tworzenie zbiorcze" -#: netbox/templates/ipam/inc/panels/fhrp_groups.html:10 +#: templates/ipam/inc/panels/fhrp_groups.html:10 msgid "Create Group" msgstr "Utwórz grupę" -#: netbox/templates/ipam/inc/panels/fhrp_groups.html:25 +#: templates/ipam/inc/panels/fhrp_groups.html:25 msgid "Virtual IPs" msgstr "Wirtualne adresy IP" -#: netbox/templates/ipam/inc/toggle_available.html:7 +#: templates/ipam/inc/toggle_available.html:7 msgid "Show Assigned" msgstr "Pokaż przypisane" -#: netbox/templates/ipam/inc/toggle_available.html:10 +#: templates/ipam/inc/toggle_available.html:10 msgid "Show Available" msgstr "Pokaż dostępne" -#: netbox/templates/ipam/inc/toggle_available.html:13 +#: templates/ipam/inc/toggle_available.html:13 msgid "Show All" msgstr "Pokaż wszystko" -#: netbox/templates/ipam/ipaddress.html:23 -#: netbox/templates/ipam/iprange.html:45 netbox/templates/ipam/prefix.html:24 +#: templates/ipam/ipaddress.html:23 templates/ipam/iprange.html:45 +#: templates/ipam/prefix.html:24 msgid "Global" msgstr "Globalny" -#: netbox/templates/ipam/ipaddress.html:85 +#: templates/ipam/ipaddress.html:85 msgid "NAT (outside)" msgstr "NAT (na zewnątrz)" -#: netbox/templates/ipam/ipaddress_assign.html:8 +#: templates/ipam/ipaddress_assign.html:8 msgid "Assign an IP Address" msgstr "Przypisanie adresu IP" -#: netbox/templates/ipam/ipaddress_assign.html:22 +#: templates/ipam/ipaddress_assign.html:22 msgid "Select IP Address" msgstr "Wybierz adres IP" -#: netbox/templates/ipam/ipaddress_assign.html:35 +#: templates/ipam/ipaddress_assign.html:35 msgid "Search Results" msgstr "Wyniki wyszukiwania" -#: netbox/templates/ipam/ipaddress_bulk_add.html:6 +#: templates/ipam/ipaddress_bulk_add.html:6 msgid "Bulk Add IP Addresses" msgstr "Masowe dodawanie adresów IP" -#: netbox/templates/ipam/iprange.html:17 +#: templates/ipam/iprange.html:17 msgid "Starting Address" msgstr "Adres początkowy" -#: netbox/templates/ipam/iprange.html:21 +#: templates/ipam/iprange.html:21 msgid "Ending Address" msgstr "Adres końcowy" -#: netbox/templates/ipam/iprange.html:33 netbox/templates/ipam/prefix.html:110 +#: templates/ipam/iprange.html:33 templates/ipam/prefix.html:110 msgid "Marked fully utilized" msgstr "Oznaczone w pełni wykorzystane" -#: netbox/templates/ipam/prefix.html:99 +#: templates/ipam/prefix.html:99 msgid "Addressing Details" msgstr "Szczegóły adresowania" -#: netbox/templates/ipam/prefix.html:118 +#: templates/ipam/prefix.html:118 msgid "Child IPs" msgstr "Adresy IP dla dzieci" -#: netbox/templates/ipam/prefix.html:126 +#: templates/ipam/prefix.html:126 msgid "Available IPs" msgstr "Dostępne adresy IP" -#: netbox/templates/ipam/prefix.html:138 +#: templates/ipam/prefix.html:138 msgid "First available IP" msgstr "Pierwszy dostępny adres IP" -#: netbox/templates/ipam/prefix.html:179 +#: templates/ipam/prefix.html:179 msgid "Prefix Details" -msgstr "Szczegóły przedrostka" +msgstr "Szczegóły prefiksu" -#: netbox/templates/ipam/prefix.html:185 +#: templates/ipam/prefix.html:185 msgid "Network Address" msgstr "Adres sieciowy" -#: netbox/templates/ipam/prefix.html:189 +#: templates/ipam/prefix.html:189 msgid "Network Mask" msgstr "Maska sieciowa" -#: netbox/templates/ipam/prefix.html:193 +#: templates/ipam/prefix.html:193 msgid "Wildcard Mask" msgstr "Maska wieloznaczna" -#: netbox/templates/ipam/prefix.html:197 +#: templates/ipam/prefix.html:197 msgid "Broadcast Address" msgstr "Adres transmisji" -#: netbox/templates/ipam/prefix/ip_ranges.html:7 +#: templates/ipam/prefix/ip_ranges.html:7 msgid "Add IP Range" msgstr "Dodaj zakres IP" -#: netbox/templates/ipam/prefix_list.html:7 +#: templates/ipam/prefix_list.html:7 msgid "Hide Depth Indicators" msgstr "Ukryj wskaźniki głębokości" -#: netbox/templates/ipam/prefix_list.html:11 +#: templates/ipam/prefix_list.html:11 msgid "Max Depth" msgstr "Maksymalna głębokość" -#: netbox/templates/ipam/prefix_list.html:28 +#: templates/ipam/prefix_list.html:28 msgid "Max Length" msgstr "Maksymalna długość" -#: netbox/templates/ipam/rir.html:10 +#: templates/ipam/rir.html:10 msgid "Add Aggregate" msgstr "Dodaj agregat" -#: netbox/templates/ipam/routetarget.html:38 +#: templates/ipam/routetarget.html:38 msgid "Importing VRFs" msgstr "Importowanie plików VRF" -#: netbox/templates/ipam/routetarget.html:44 +#: templates/ipam/routetarget.html:44 msgid "Exporting VRFs" msgstr "Eksportowanie plików VRF" -#: netbox/templates/ipam/routetarget.html:52 +#: templates/ipam/routetarget.html:52 msgid "Importing L2VPNs" msgstr "Importowanie L2VPN" -#: netbox/templates/ipam/routetarget.html:58 +#: templates/ipam/routetarget.html:58 msgid "Exporting L2VPNs" msgstr "Eksportowanie L2VPN" -#: netbox/templates/ipam/vlan.html:88 +#: templates/ipam/vlan.html:88 msgid "Add a Prefix" -msgstr "Dodawanie prefiksu" +msgstr "Dodaj prefiks" -#: netbox/templates/ipam/vlangroup.html:18 +#: templates/ipam/vlangroup.html:18 msgid "Add VLAN" msgstr "Dodaj VLAN" -#: netbox/templates/ipam/vrf.html:16 +#: templates/ipam/vrf.html:16 msgid "Route Distinguisher" msgstr "Rozróżniacz trasy" -#: netbox/templates/ipam/vrf.html:29 +#: templates/ipam/vrf.html:29 msgid "Unique IP Space" msgstr "Unikalna przestrzeń IP" -#: netbox/templates/login.html:29 -#: netbox/utilities/templates/form_helpers/render_errors.html:7 +#: templates/login.html:29 +#: utilities/templates/form_helpers/render_errors.html:7 msgid "Errors" msgstr "Błędy" -#: netbox/templates/login.html:69 +#: templates/login.html:69 msgid "Sign In" msgstr "Zaloguj się" -#: netbox/templates/login.html:77 +#: templates/login.html:77 msgctxt "Denotes an alternative option" msgid "Or" msgstr "Lub" -#: netbox/templates/media_failure.html:7 +#: templates/media_failure.html:7 msgid "Static Media Failure - NetBox" msgstr "Awaria nośnika statycznego - NetBox" -#: netbox/templates/media_failure.html:21 +#: templates/media_failure.html:21 msgid "Static Media Failure" msgstr "Awaria nośnika statycznego" -#: netbox/templates/media_failure.html:23 +#: templates/media_failure.html:23 msgid "The following static media file failed to load" msgstr "" "Nie udało się załadować następującego statycznego pliku multimedialnego" -#: netbox/templates/media_failure.html:26 +#: templates/media_failure.html:26 msgid "Check the following" msgstr "Sprawdź następujące" -#: netbox/templates/media_failure.html:29 +#: templates/media_failure.html:29 msgid "" "manage.py collectstatic was run during the most recent upgrade." " This installs the most recent iteration of each static file into the static" @@ -14098,7 +13375,7 @@ msgstr "" "aktualizacji. Spowoduje to zainstalowanie najnowszej iteracji każdego pliku " "statycznego do statycznej ścieżki głównej." -#: netbox/templates/media_failure.html:35 +#: templates/media_failure.html:35 #, python-format msgid "" "The HTTP service (e.g. nginx or Apache) is configured to serve files from " @@ -14109,7 +13386,7 @@ msgstr "" "STATYCZNY KORZEŃ ścieżka. Zapoznaj się z dokumentacja instalacji dalszych wskazówek." -#: netbox/templates/media_failure.html:47 +#: templates/media_failure.html:47 #, python-format msgid "" "The file %(filename)s exists in the static root directory and " @@ -14118,567 +13395,548 @@ msgstr "" "Plik %(filename)s istnieje w statycznym katalogu głównym i jest" " czytelny przez serwer HTTP." -#: netbox/templates/media_failure.html:55 +#: templates/media_failure.html:55 #, python-format msgid "Click here to attempt loading NetBox again." msgstr "" "Kliknij tutaj aby spróbować ponownie załadować " "NetBox." -#: netbox/templates/tenancy/contact.html:18 netbox/tenancy/filtersets.py:147 -#: netbox/tenancy/forms/bulk_edit.py:137 -#: netbox/tenancy/forms/filtersets.py:102 netbox/tenancy/forms/forms.py:56 -#: netbox/tenancy/forms/model_forms.py:106 -#: netbox/tenancy/forms/model_forms.py:130 -#: netbox/tenancy/tables/contacts.py:98 +#: templates/tenancy/contact.html:18 tenancy/filtersets.py:147 +#: tenancy/forms/bulk_edit.py:137 tenancy/forms/filtersets.py:102 +#: tenancy/forms/forms.py:56 tenancy/forms/model_forms.py:106 +#: tenancy/forms/model_forms.py:130 tenancy/tables/contacts.py:98 msgid "Contact" msgstr "Kontakt" -#: netbox/templates/tenancy/contact.html:29 -#: netbox/tenancy/forms/bulk_edit.py:99 +#: templates/tenancy/contact.html:29 tenancy/forms/bulk_edit.py:99 msgid "Title" msgstr "Tytuł" -#: netbox/templates/tenancy/contact.html:33 -#: netbox/tenancy/forms/bulk_edit.py:104 netbox/tenancy/tables/contacts.py:64 +#: templates/tenancy/contact.html:33 tenancy/forms/bulk_edit.py:104 +#: tenancy/tables/contacts.py:64 msgid "Phone" msgstr "Telefon" -#: netbox/templates/tenancy/contactgroup.html:18 -#: netbox/tenancy/forms/forms.py:66 netbox/tenancy/forms/model_forms.py:75 +#: templates/tenancy/contactgroup.html:18 tenancy/forms/forms.py:66 +#: tenancy/forms/model_forms.py:75 msgid "Contact Group" msgstr "Grupa kontaktowa" -#: netbox/templates/tenancy/contactgroup.html:50 +#: templates/tenancy/contactgroup.html:50 msgid "Add Contact Group" msgstr "Dodaj grupę kontaktów" -#: netbox/templates/tenancy/contactrole.html:15 -#: netbox/tenancy/filtersets.py:152 netbox/tenancy/forms/forms.py:61 -#: netbox/tenancy/forms/model_forms.py:87 +#: templates/tenancy/contactrole.html:15 tenancy/filtersets.py:152 +#: tenancy/forms/forms.py:61 tenancy/forms/model_forms.py:87 msgid "Contact Role" msgstr "Rola kontaktowa" -#: netbox/templates/tenancy/object_contacts.html:9 +#: templates/tenancy/object_contacts.html:9 msgid "Add a contact" msgstr "Dodawanie kontaktu" -#: netbox/templates/tenancy/tenantgroup.html:17 +#: templates/tenancy/tenantgroup.html:17 msgid "Add Tenant" msgstr "Dodaj najemcę" -#: netbox/templates/tenancy/tenantgroup.html:26 -#: netbox/tenancy/forms/model_forms.py:32 netbox/tenancy/tables/columns.py:51 -#: netbox/tenancy/tables/columns.py:61 +#: templates/tenancy/tenantgroup.html:26 tenancy/forms/model_forms.py:32 +#: tenancy/tables/columns.py:51 tenancy/tables/columns.py:61 msgid "Tenant Group" msgstr "Grupa Najemców" -#: netbox/templates/tenancy/tenantgroup.html:59 +#: templates/tenancy/tenantgroup.html:59 msgid "Add Tenant Group" msgstr "Dodaj grupę najemców" -#: netbox/templates/users/group.html:39 netbox/templates/users/user.html:63 +#: templates/users/group.html:39 templates/users/user.html:63 msgid "Assigned Permissions" msgstr "Przypisane uprawnienia" -#: netbox/templates/users/objectpermission.html:6 -#: netbox/templates/users/objectpermission.html:14 -#: netbox/users/forms/filtersets.py:66 +#: templates/users/objectpermission.html:6 +#: templates/users/objectpermission.html:14 users/forms/filtersets.py:66 msgid "Permission" msgstr "Pozwolenie" -#: netbox/templates/users/objectpermission.html:34 +#: templates/users/objectpermission.html:34 msgid "View" msgstr "Widok" -#: netbox/templates/users/objectpermission.html:52 -#: netbox/users/forms/model_forms.py:315 +#: templates/users/objectpermission.html:52 users/forms/model_forms.py:315 msgid "Constraints" msgstr "Ograniczenia" -#: netbox/templates/users/objectpermission.html:72 +#: templates/users/objectpermission.html:72 msgid "Assigned Users" msgstr "Przydzieleni użytkownicy" -#: netbox/templates/virtualization/cluster.html:52 +#: templates/virtualization/cluster.html:52 msgid "Allocated Resources" msgstr "Przydzielone zasoby" -#: netbox/templates/virtualization/cluster.html:55 -#: netbox/templates/virtualization/virtualmachine.html:125 +#: templates/virtualization/cluster.html:55 +#: templates/virtualization/virtualmachine.html:125 msgid "Virtual CPUs" msgstr "Wirtualne procesory" -#: netbox/templates/virtualization/cluster.html:59 -#: netbox/templates/virtualization/virtualmachine.html:129 +#: templates/virtualization/cluster.html:59 +#: templates/virtualization/virtualmachine.html:129 msgid "Memory" msgstr "Pamięć" -#: netbox/templates/virtualization/cluster.html:69 -#: netbox/templates/virtualization/virtualmachine.html:140 +#: templates/virtualization/cluster.html:69 +#: templates/virtualization/virtualmachine.html:140 msgid "Disk Space" msgstr "Miejsce na dysku" -#: netbox/templates/virtualization/cluster/base.html:18 +#: templates/virtualization/cluster/base.html:18 msgid "Add Virtual Machine" msgstr "Dodaj maszynę wirtualną" -#: netbox/templates/virtualization/cluster/base.html:24 +#: templates/virtualization/cluster/base.html:24 msgid "Assign Device" msgstr "Przypisz urządzenie" -#: netbox/templates/virtualization/cluster/devices.html:10 +#: templates/virtualization/cluster/devices.html:10 msgid "Remove Selected" msgstr "Usuń zaznaczone" -#: netbox/templates/virtualization/cluster_add_devices.html:9 +#: templates/virtualization/cluster_add_devices.html:9 #, python-format msgid "Add Device to Cluster %(cluster)s" msgstr "Dodaj urządzenie do klastra %(cluster)s" -#: netbox/templates/virtualization/cluster_add_devices.html:23 +#: templates/virtualization/cluster_add_devices.html:23 msgid "Device Selection" msgstr "Wybór urządzenia" -#: netbox/templates/virtualization/cluster_add_devices.html:31 +#: templates/virtualization/cluster_add_devices.html:31 msgid "Add Devices" msgstr "Dodawanie urządzeń" -#: netbox/templates/virtualization/clustergroup.html:10 -#: netbox/templates/virtualization/clustertype.html:10 +#: templates/virtualization/clustergroup.html:10 +#: templates/virtualization/clustertype.html:10 msgid "Add Cluster" msgstr "Dodaj klaster" -#: netbox/templates/virtualization/clustergroup.html:19 -#: netbox/virtualization/forms/model_forms.py:50 +#: templates/virtualization/clustergroup.html:19 +#: virtualization/forms/model_forms.py:50 msgid "Cluster Group" msgstr "Grupa klastrów" -#: netbox/templates/virtualization/clustertype.html:19 -#: netbox/templates/virtualization/virtualmachine.html:110 -#: netbox/virtualization/forms/model_forms.py:36 +#: templates/virtualization/clustertype.html:19 +#: templates/virtualization/virtualmachine.html:110 +#: virtualization/forms/model_forms.py:36 msgid "Cluster Type" msgstr "Typ klastra" -#: netbox/templates/virtualization/virtualdisk.html:18 +#: templates/virtualization/virtualdisk.html:18 msgid "Virtual Disk" msgstr "Wirtualny dysk" -#: netbox/templates/virtualization/virtualmachine.html:122 -#: netbox/virtualization/forms/bulk_edit.py:190 -#: netbox/virtualization/forms/model_forms.py:224 +#: templates/virtualization/virtualmachine.html:122 +#: virtualization/forms/bulk_edit.py:190 +#: virtualization/forms/model_forms.py:224 msgid "Resources" msgstr "Zasoby" -#: netbox/templates/virtualization/virtualmachine.html:178 +#: templates/virtualization/virtualmachine.html:178 msgid "Add Virtual Disk" msgstr "Dodaj dysk wirtualny" -#: netbox/templates/vpn/ikepolicy.html:10 -#: netbox/templates/vpn/ipsecprofile.html:33 netbox/vpn/tables/crypto.py:166 +#: templates/vpn/ikepolicy.html:10 templates/vpn/ipsecprofile.html:33 +#: vpn/tables/crypto.py:166 msgid "IKE Policy" msgstr "Polityka IKE" -#: netbox/templates/vpn/ikepolicy.html:21 +#: templates/vpn/ikepolicy.html:21 msgid "IKE Version" msgstr "Wersja IKE" -#: netbox/templates/vpn/ikepolicy.html:29 +#: templates/vpn/ikepolicy.html:29 msgid "Pre-Shared Key" msgstr "Klucz wstępnie udostępniony" -#: netbox/templates/vpn/ikepolicy.html:33 -#: netbox/templates/wireless/inc/authentication_attrs.html:20 +#: templates/vpn/ikepolicy.html:33 +#: templates/wireless/inc/authentication_attrs.html:20 msgid "Show Secret" msgstr "Pokaż sekret" -#: netbox/templates/vpn/ikepolicy.html:57 -#: netbox/templates/vpn/ipsecpolicy.html:45 -#: netbox/templates/vpn/ipsecprofile.html:52 -#: netbox/templates/vpn/ipsecprofile.html:77 -#: netbox/vpn/forms/model_forms.py:316 netbox/vpn/forms/model_forms.py:352 -#: netbox/vpn/tables/crypto.py:68 netbox/vpn/tables/crypto.py:134 +#: templates/vpn/ikepolicy.html:57 templates/vpn/ipsecpolicy.html:45 +#: templates/vpn/ipsecprofile.html:52 templates/vpn/ipsecprofile.html:77 +#: vpn/forms/model_forms.py:316 vpn/forms/model_forms.py:352 +#: vpn/tables/crypto.py:68 vpn/tables/crypto.py:134 msgid "Proposals" msgstr "Propozycje" -#: netbox/templates/vpn/ikeproposal.html:10 +#: templates/vpn/ikeproposal.html:10 msgid "IKE Proposal" msgstr "Propozycja IKE" -#: netbox/templates/vpn/ikeproposal.html:21 netbox/vpn/forms/bulk_edit.py:97 -#: netbox/vpn/forms/bulk_import.py:145 netbox/vpn/forms/filtersets.py:101 +#: templates/vpn/ikeproposal.html:21 vpn/forms/bulk_edit.py:97 +#: vpn/forms/bulk_import.py:145 vpn/forms/filtersets.py:101 msgid "Authentication method" msgstr "Metoda uwierzytelniania" -#: netbox/templates/vpn/ikeproposal.html:25 -#: netbox/templates/vpn/ipsecproposal.html:21 -#: netbox/vpn/forms/bulk_edit.py:102 netbox/vpn/forms/bulk_edit.py:172 -#: netbox/vpn/forms/bulk_import.py:149 netbox/vpn/forms/bulk_import.py:195 -#: netbox/vpn/forms/filtersets.py:106 netbox/vpn/forms/filtersets.py:154 +#: templates/vpn/ikeproposal.html:25 templates/vpn/ipsecproposal.html:21 +#: vpn/forms/bulk_edit.py:102 vpn/forms/bulk_edit.py:172 +#: vpn/forms/bulk_import.py:149 vpn/forms/bulk_import.py:195 +#: vpn/forms/filtersets.py:106 vpn/forms/filtersets.py:154 msgid "Encryption algorithm" msgstr "Algorytm szyfrowania" -#: netbox/templates/vpn/ikeproposal.html:29 -#: netbox/templates/vpn/ipsecproposal.html:25 -#: netbox/vpn/forms/bulk_edit.py:107 netbox/vpn/forms/bulk_edit.py:177 -#: netbox/vpn/forms/bulk_import.py:153 netbox/vpn/forms/bulk_import.py:200 -#: netbox/vpn/forms/filtersets.py:111 netbox/vpn/forms/filtersets.py:159 +#: templates/vpn/ikeproposal.html:29 templates/vpn/ipsecproposal.html:25 +#: vpn/forms/bulk_edit.py:107 vpn/forms/bulk_edit.py:177 +#: vpn/forms/bulk_import.py:153 vpn/forms/bulk_import.py:200 +#: vpn/forms/filtersets.py:111 vpn/forms/filtersets.py:159 msgid "Authentication algorithm" msgstr "Algorytm autoryzacji" -#: netbox/templates/vpn/ikeproposal.html:33 +#: templates/vpn/ikeproposal.html:33 msgid "DH group" msgstr "Grupa DH" -#: netbox/templates/vpn/ikeproposal.html:37 -#: netbox/templates/vpn/ipsecproposal.html:29 -#: netbox/vpn/forms/bulk_edit.py:182 netbox/vpn/models/crypto.py:146 +#: templates/vpn/ikeproposal.html:37 templates/vpn/ipsecproposal.html:29 +#: vpn/forms/bulk_edit.py:182 vpn/models/crypto.py:146 msgid "SA lifetime (seconds)" msgstr "Żywotność SA (sekundy)" -#: netbox/templates/vpn/ipsecpolicy.html:10 -#: netbox/templates/vpn/ipsecprofile.html:66 netbox/vpn/tables/crypto.py:170 +#: templates/vpn/ipsecpolicy.html:10 templates/vpn/ipsecprofile.html:66 +#: vpn/tables/crypto.py:170 msgid "IPSec Policy" msgstr "Polityka IPsec" -#: netbox/templates/vpn/ipsecpolicy.html:21 netbox/vpn/forms/bulk_edit.py:210 -#: netbox/vpn/models/crypto.py:193 +#: templates/vpn/ipsecpolicy.html:21 vpn/forms/bulk_edit.py:210 +#: vpn/models/crypto.py:193 msgid "PFS group" msgstr "Grupa PFS" -#: netbox/templates/vpn/ipsecprofile.html:10 -#: netbox/vpn/forms/model_forms.py:54 +#: templates/vpn/ipsecprofile.html:10 vpn/forms/model_forms.py:54 msgid "IPSec Profile" msgstr "Profil IPsec" -#: netbox/templates/vpn/ipsecprofile.html:89 netbox/vpn/tables/crypto.py:137 +#: templates/vpn/ipsecprofile.html:89 vpn/tables/crypto.py:137 msgid "PFS Group" msgstr "Grupa PFS" -#: netbox/templates/vpn/ipsecproposal.html:10 +#: templates/vpn/ipsecproposal.html:10 msgid "IPSec Proposal" msgstr "Propozycja IPsec" -#: netbox/templates/vpn/ipsecproposal.html:33 -#: netbox/vpn/forms/bulk_edit.py:186 netbox/vpn/models/crypto.py:152 +#: templates/vpn/ipsecproposal.html:33 vpn/forms/bulk_edit.py:186 +#: vpn/models/crypto.py:152 msgid "SA lifetime (KB)" msgstr "Żywotność SA (KB)" -#: netbox/templates/vpn/l2vpn.html:11 -#: netbox/templates/vpn/l2vpntermination.html:9 +#: templates/vpn/l2vpn.html:11 templates/vpn/l2vpntermination.html:9 msgid "L2VPN Attributes" msgstr "L2VPN Atrybuty" -#: netbox/templates/vpn/l2vpn.html:60 netbox/templates/vpn/tunnel.html:76 +#: templates/vpn/l2vpn.html:60 templates/vpn/tunnel.html:76 msgid "Add a Termination" msgstr "Dodaj zakończenie" -#: netbox/templates/vpn/tunnel.html:9 +#: templates/vpn/tunnel.html:9 msgid "Add Termination" msgstr "Dodaj zakończenie" -#: netbox/templates/vpn/tunnel.html:37 netbox/vpn/forms/bulk_edit.py:49 -#: netbox/vpn/forms/bulk_import.py:48 netbox/vpn/forms/filtersets.py:57 +#: templates/vpn/tunnel.html:37 vpn/forms/bulk_edit.py:49 +#: vpn/forms/bulk_import.py:48 vpn/forms/filtersets.py:57 msgid "Encapsulation" msgstr "Enkapsulacja" -#: netbox/templates/vpn/tunnel.html:41 netbox/vpn/forms/bulk_edit.py:55 -#: netbox/vpn/forms/bulk_import.py:53 netbox/vpn/forms/filtersets.py:64 -#: netbox/vpn/models/crypto.py:250 netbox/vpn/tables/tunnels.py:51 +#: templates/vpn/tunnel.html:41 vpn/forms/bulk_edit.py:55 +#: vpn/forms/bulk_import.py:53 vpn/forms/filtersets.py:64 +#: vpn/models/crypto.py:250 vpn/tables/tunnels.py:51 msgid "IPSec profile" msgstr "Profil IPsec" -#: netbox/templates/vpn/tunnel.html:45 netbox/vpn/forms/bulk_edit.py:69 -#: netbox/vpn/forms/filtersets.py:68 +#: templates/vpn/tunnel.html:45 vpn/forms/bulk_edit.py:69 +#: vpn/forms/filtersets.py:68 msgid "Tunnel ID" msgstr "Identyfikator tunelu" -#: netbox/templates/vpn/tunnelgroup.html:14 +#: templates/vpn/tunnelgroup.html:14 msgid "Add Tunnel" msgstr "Dodaj tunel" -#: netbox/templates/vpn/tunnelgroup.html:23 netbox/vpn/forms/model_forms.py:36 -#: netbox/vpn/forms/model_forms.py:49 +#: templates/vpn/tunnelgroup.html:23 vpn/forms/model_forms.py:36 +#: vpn/forms/model_forms.py:49 msgid "Tunnel Group" msgstr "Grupa tuneli" -#: netbox/templates/vpn/tunneltermination.html:10 +#: templates/vpn/tunneltermination.html:10 msgid "Tunnel Termination" msgstr "Zakończenie tunelu" -#: netbox/templates/vpn/tunneltermination.html:35 -#: netbox/vpn/forms/bulk_import.py:107 netbox/vpn/forms/model_forms.py:102 -#: netbox/vpn/forms/model_forms.py:138 netbox/vpn/forms/model_forms.py:247 -#: netbox/vpn/tables/tunnels.py:101 +#: templates/vpn/tunneltermination.html:35 vpn/forms/bulk_import.py:107 +#: vpn/forms/model_forms.py:102 vpn/forms/model_forms.py:138 +#: vpn/forms/model_forms.py:247 vpn/tables/tunnels.py:101 msgid "Outside IP" msgstr "Zewnętrzny adres IP" -#: netbox/templates/vpn/tunneltermination.html:51 +#: templates/vpn/tunneltermination.html:51 msgid "Peer Terminations" msgstr "Zakończenia rówieśników" -#: netbox/templates/wireless/inc/authentication_attrs.html:12 +#: templates/wireless/inc/authentication_attrs.html:12 msgid "Cipher" msgstr "Szyfr" -#: netbox/templates/wireless/inc/authentication_attrs.html:16 +#: templates/wireless/inc/authentication_attrs.html:16 msgid "PSK" msgstr "PSK" -#: netbox/templates/wireless/inc/wirelesslink_interface.html:35 -#: netbox/templates/wireless/inc/wirelesslink_interface.html:45 +#: templates/wireless/inc/wirelesslink_interface.html:35 +#: templates/wireless/inc/wirelesslink_interface.html:45 msgctxt "Abbreviation for megahertz" msgid "MHz" msgstr "MHz" -#: netbox/templates/wireless/wirelesslan.html:57 +#: templates/wireless/wirelesslan.html:57 msgid "Attached Interfaces" msgstr "Dołączone interfejsy" -#: netbox/templates/wireless/wirelesslangroup.html:17 +#: templates/wireless/wirelesslangroup.html:17 msgid "Add Wireless LAN" msgstr "Dodaj bezprzewodową sieć LAN" -#: netbox/templates/wireless/wirelesslangroup.html:26 -#: netbox/wireless/forms/model_forms.py:28 +#: templates/wireless/wirelesslangroup.html:26 +#: wireless/forms/model_forms.py:28 msgid "Wireless LAN Group" msgstr "Grupa sieci bezprzewodowej sieci LAN" -#: netbox/templates/wireless/wirelesslangroup.html:59 +#: templates/wireless/wirelesslangroup.html:59 msgid "Add Wireless LAN Group" msgstr "Dodaj grupę sieci bezprzewodowej sieci LAN" -#: netbox/templates/wireless/wirelesslink.html:14 +#: templates/wireless/wirelesslink.html:14 msgid "Link Properties" msgstr "Właściwości łącza" -#: netbox/templates/wireless/wirelesslink.html:38 -#: netbox/wireless/forms/bulk_edit.py:129 -#: netbox/wireless/forms/filtersets.py:102 -#: netbox/wireless/forms/model_forms.py:165 +#: templates/wireless/wirelesslink.html:38 wireless/forms/bulk_edit.py:129 +#: wireless/forms/filtersets.py:102 wireless/forms/model_forms.py:165 msgid "Distance" msgstr "Dystans" -#: netbox/tenancy/filtersets.py:28 +#: tenancy/filtersets.py:28 msgid "Parent contact group (ID)" msgstr "Nadrzędna grupa kontaktów (ID)" -#: netbox/tenancy/filtersets.py:34 +#: tenancy/filtersets.py:34 msgid "Parent contact group (slug)" msgstr "Nadrzędna grupa kontaktów (identyfikator)" -#: netbox/tenancy/filtersets.py:40 netbox/tenancy/filtersets.py:67 -#: netbox/tenancy/filtersets.py:110 +#: tenancy/filtersets.py:40 tenancy/filtersets.py:67 tenancy/filtersets.py:110 msgid "Contact group (ID)" msgstr "Grupa kontaktowa (ID)" -#: netbox/tenancy/filtersets.py:47 netbox/tenancy/filtersets.py:74 -#: netbox/tenancy/filtersets.py:117 +#: tenancy/filtersets.py:47 tenancy/filtersets.py:74 tenancy/filtersets.py:117 msgid "Contact group (slug)" msgstr "Grupa kontaktów (identyfikator)" -#: netbox/tenancy/filtersets.py:104 +#: tenancy/filtersets.py:104 msgid "Contact (ID)" msgstr "Kontakt (ID)" -#: netbox/tenancy/filtersets.py:121 +#: tenancy/filtersets.py:121 msgid "Contact role (ID)" msgstr "Rola kontaktowa (ID)" -#: netbox/tenancy/filtersets.py:127 +#: tenancy/filtersets.py:127 msgid "Contact role (slug)" msgstr "Rola kontaktu (identyfikator)" -#: netbox/tenancy/filtersets.py:158 +#: tenancy/filtersets.py:158 msgid "Contact group" msgstr "Grupa kontaktowa" -#: netbox/tenancy/filtersets.py:169 +#: tenancy/filtersets.py:169 msgid "Parent tenant group (ID)" msgstr "Grupa nadrzędnych najemców (ID)" -#: netbox/tenancy/filtersets.py:175 +#: tenancy/filtersets.py:175 msgid "Parent tenant group (slug)" msgstr "Nadrzędna grupa najemców (identyfikator)" -#: netbox/tenancy/filtersets.py:181 netbox/tenancy/filtersets.py:201 +#: tenancy/filtersets.py:181 tenancy/filtersets.py:201 msgid "Tenant group (ID)" msgstr "Grupa najemców (ID)" -#: netbox/tenancy/filtersets.py:234 +#: tenancy/filtersets.py:234 msgid "Tenant Group (ID)" msgstr "Grupa najemców (ID)" -#: netbox/tenancy/filtersets.py:241 +#: tenancy/filtersets.py:241 msgid "Tenant Group (slug)" msgstr "Grupa najemców (identyfikator)" -#: netbox/tenancy/forms/bulk_edit.py:66 +#: tenancy/forms/bulk_edit.py:66 msgid "Desciption" msgstr "Opisanie" -#: netbox/tenancy/forms/bulk_import.py:101 +#: tenancy/forms/bulk_import.py:101 msgid "Assigned contact" msgstr "Przypisany kontakt" -#: netbox/tenancy/models/contacts.py:32 +#: tenancy/models/contacts.py:32 msgid "contact group" msgstr "grupa kontaktowa" -#: netbox/tenancy/models/contacts.py:33 +#: tenancy/models/contacts.py:33 msgid "contact groups" msgstr "grupy kontaktowe" -#: netbox/tenancy/models/contacts.py:48 +#: tenancy/models/contacts.py:48 msgid "contact role" msgstr "rola kontaktowa" -#: netbox/tenancy/models/contacts.py:49 +#: tenancy/models/contacts.py:49 msgid "contact roles" msgstr "role kontaktowe" -#: netbox/tenancy/models/contacts.py:68 +#: tenancy/models/contacts.py:68 msgid "title" msgstr "tytuł" -#: netbox/tenancy/models/contacts.py:73 +#: tenancy/models/contacts.py:73 msgid "phone" msgstr "telefon" -#: netbox/tenancy/models/contacts.py:78 +#: tenancy/models/contacts.py:78 msgid "email" msgstr "e-mail" -#: netbox/tenancy/models/contacts.py:87 +#: tenancy/models/contacts.py:87 msgid "link" msgstr "link" -#: netbox/tenancy/models/contacts.py:103 +#: tenancy/models/contacts.py:103 msgid "contact" msgstr "kontakt" -#: netbox/tenancy/models/contacts.py:104 +#: tenancy/models/contacts.py:104 msgid "contacts" msgstr "łączność" -#: netbox/tenancy/models/contacts.py:153 +#: tenancy/models/contacts.py:153 msgid "contact assignment" msgstr "przypisanie kontaktu" -#: netbox/tenancy/models/contacts.py:154 +#: tenancy/models/contacts.py:154 msgid "contact assignments" msgstr "zadania kontaktowe" -#: netbox/tenancy/models/contacts.py:170 +#: tenancy/models/contacts.py:170 #, python-brace-format msgid "Contacts cannot be assigned to this object type ({type})." msgstr "Kontakty nie mogą być przypisane do tego typu obiektu ({type})." -#: netbox/tenancy/models/tenants.py:32 +#: tenancy/models/tenants.py:32 msgid "tenant group" msgstr "grupa najemców" -#: netbox/tenancy/models/tenants.py:33 +#: tenancy/models/tenants.py:33 msgid "tenant groups" msgstr "grupy najemców" -#: netbox/tenancy/models/tenants.py:70 +#: tenancy/models/tenants.py:70 msgid "Tenant name must be unique per group." msgstr "Nazwa najemcy musi być niepowtarzalna dla każdej grupy." -#: netbox/tenancy/models/tenants.py:80 +#: tenancy/models/tenants.py:80 msgid "Tenant slug must be unique per group." msgstr "Identyfikator najemcy musi być unikalny dla każdej grupy." -#: netbox/tenancy/models/tenants.py:88 +#: tenancy/models/tenants.py:88 msgid "tenant" msgstr "najemcy" -#: netbox/tenancy/models/tenants.py:89 +#: tenancy/models/tenants.py:89 msgid "tenants" msgstr "najemcy" -#: netbox/tenancy/tables/contacts.py:112 +#: tenancy/tables/contacts.py:112 msgid "Contact Title" msgstr "Tytuł kontaktu" -#: netbox/tenancy/tables/contacts.py:116 +#: tenancy/tables/contacts.py:116 msgid "Contact Phone" msgstr "Telefon kontaktowy" -#: netbox/tenancy/tables/contacts.py:121 +#: tenancy/tables/contacts.py:121 msgid "Contact Email" msgstr "Kontakt e-mail" -#: netbox/tenancy/tables/contacts.py:125 +#: tenancy/tables/contacts.py:125 msgid "Contact Address" msgstr "Adres kontaktowy" -#: netbox/tenancy/tables/contacts.py:129 +#: tenancy/tables/contacts.py:129 msgid "Contact Link" msgstr "Link do kontaktu" -#: netbox/tenancy/tables/contacts.py:133 +#: tenancy/tables/contacts.py:133 msgid "Contact Description" msgstr "Opis kontaktu" -#: netbox/users/filtersets.py:33 netbox/users/filtersets.py:73 +#: users/filtersets.py:33 users/filtersets.py:73 msgid "Permission (ID)" msgstr "Zezwolenie (ID)" -#: netbox/users/filtersets.py:38 netbox/users/filtersets.py:78 +#: users/filtersets.py:38 users/filtersets.py:78 msgid "Notification group (ID)" msgstr "Grupa powiadomień (ID)" -#: netbox/users/forms/bulk_edit.py:26 +#: users/forms/bulk_edit.py:26 msgid "First name" msgstr "Imię" -#: netbox/users/forms/bulk_edit.py:31 +#: users/forms/bulk_edit.py:31 msgid "Last name" msgstr "Nazwisko" -#: netbox/users/forms/bulk_edit.py:43 +#: users/forms/bulk_edit.py:43 msgid "Staff status" msgstr "Status personelu" -#: netbox/users/forms/bulk_edit.py:48 +#: users/forms/bulk_edit.py:48 msgid "Superuser status" msgstr "Status superużytkownika" -#: netbox/users/forms/bulk_import.py:41 +#: users/forms/bulk_import.py:41 msgid "If no key is provided, one will be generated automatically." msgstr "Jeśli klucz nie zostanie podany, zostanie wygenerowany automatycznie." -#: netbox/users/forms/filtersets.py:51 netbox/users/tables.py:42 +#: users/forms/filtersets.py:51 users/tables.py:42 msgid "Is Staff" msgstr "Jest personelem" -#: netbox/users/forms/filtersets.py:58 netbox/users/tables.py:45 +#: users/forms/filtersets.py:58 users/tables.py:45 msgid "Is Superuser" msgstr "Jest superużytkownikiem" -#: netbox/users/forms/filtersets.py:91 netbox/users/tables.py:86 +#: users/forms/filtersets.py:91 users/tables.py:86 msgid "Can View" msgstr "Można wyświetlić" -#: netbox/users/forms/filtersets.py:98 netbox/users/tables.py:89 +#: users/forms/filtersets.py:98 users/tables.py:89 msgid "Can Add" msgstr "Można dodać" -#: netbox/users/forms/filtersets.py:105 netbox/users/tables.py:92 +#: users/forms/filtersets.py:105 users/tables.py:92 msgid "Can Change" msgstr "Może się zmienić" -#: netbox/users/forms/filtersets.py:112 netbox/users/tables.py:95 +#: users/forms/filtersets.py:112 users/tables.py:95 msgid "Can Delete" msgstr "Można usunąć" -#: netbox/users/forms/model_forms.py:62 +#: users/forms/model_forms.py:62 msgid "User Interface" msgstr "Interfejs użytkownika" -#: netbox/users/forms/model_forms.py:114 +#: users/forms/model_forms.py:114 msgid "" "Keys must be at least 40 characters in length. Be sure to record " "your key prior to submitting this form, as it may no longer be " @@ -14688,7 +13946,7 @@ msgstr "" "zapisać swój klucz przed przesłaniem tego formularza, ponieważ może" " nie być już dostępny po utworzeniu tokena." -#: netbox/users/forms/model_forms.py:126 +#: users/forms/model_forms.py:126 msgid "" "Allowed IPv4/IPv6 networks from where the token can be used. Leave blank for" " no restrictions. Example: " @@ -14698,31 +13956,31 @@ msgstr "" " ograniczeń. Przykład: 10.1.1.0/24,192.168.10.16/32,2001: db 8:1: " ":/64" -#: netbox/users/forms/model_forms.py:175 +#: users/forms/model_forms.py:175 msgid "Confirm password" msgstr "Potwierdź hasło" -#: netbox/users/forms/model_forms.py:178 +#: users/forms/model_forms.py:178 msgid "Enter the same password as before, for verification." msgstr "Wprowadź to samo hasło, co poprzednio, w celu weryfikacji." -#: netbox/users/forms/model_forms.py:227 +#: users/forms/model_forms.py:227 msgid "Passwords do not match! Please check your input and try again." msgstr "Hasła nie pasują! Sprawdź dane wejściowe i spróbuj ponownie." -#: netbox/users/forms/model_forms.py:294 +#: users/forms/model_forms.py:294 msgid "Additional actions" msgstr "Dodatkowe działania" -#: netbox/users/forms/model_forms.py:297 +#: users/forms/model_forms.py:297 msgid "Actions granted in addition to those listed above" msgstr "Działania udzielone w uzupełnieniu do wymienionych powyżej" -#: netbox/users/forms/model_forms.py:313 +#: users/forms/model_forms.py:313 msgid "Objects" msgstr "Obiekty" -#: netbox/users/forms/model_forms.py:325 +#: users/forms/model_forms.py:325 msgid "" "JSON expression of a queryset filter that will return only permitted " "objects. Leave null to match all objects of this type. A list of multiple " @@ -14732,79 +13990,79 @@ msgstr "" "Pozostaw wartość null, aby pasowała do wszystkich obiektów tego typu. Lista " "wielu obiektów spowoduje logiczną operację OR." -#: netbox/users/forms/model_forms.py:364 +#: users/forms/model_forms.py:364 msgid "At least one action must be selected." msgstr "Należy wybrać co najmniej jedną akcję." -#: netbox/users/forms/model_forms.py:382 +#: users/forms/model_forms.py:382 #, python-brace-format msgid "Invalid filter for {model}: {error}" msgstr "Nieprawidłowy filtr dla {model}: {error}" -#: netbox/users/models/permissions.py:39 +#: users/models/permissions.py:39 msgid "The list of actions granted by this permission" msgstr "Wykaz działań udzielonych niniejszym zezwoleniem" -#: netbox/users/models/permissions.py:44 +#: users/models/permissions.py:44 msgid "constraints" msgstr "ograniczenia" -#: netbox/users/models/permissions.py:45 +#: users/models/permissions.py:45 msgid "" "Queryset filter matching the applicable objects of the selected type(s)" msgstr "" "Filtr Queryset pasujący do odpowiednich obiektów wybranego typu (typów)" -#: netbox/users/models/permissions.py:52 +#: users/models/permissions.py:52 msgid "permission" msgstr "pozwolenie" -#: netbox/users/models/permissions.py:53 netbox/users/models/users.py:47 +#: users/models/permissions.py:53 users/models/users.py:47 msgid "permissions" msgstr "zezwolenia" -#: netbox/users/models/preferences.py:29 netbox/users/models/preferences.py:30 +#: users/models/preferences.py:29 users/models/preferences.py:30 msgid "user preferences" msgstr "preferencje użytkownika" -#: netbox/users/models/preferences.py:97 +#: users/models/preferences.py:97 #, python-brace-format msgid "Key '{path}' is a leaf node; cannot assign new keys" msgstr "Klucz '{path}'jest węzłem liścia; nie można przypisać nowych kluczy" -#: netbox/users/models/preferences.py:109 +#: users/models/preferences.py:109 #, python-brace-format msgid "Key '{path}' is a dictionary; cannot assign a non-dictionary value" msgstr "" "Klucz '{path}'jest słownikiem; nie może przypisać wartości innej niż słownik" -#: netbox/users/models/tokens.py:36 +#: users/models/tokens.py:36 msgid "expires" msgstr "wygasa" -#: netbox/users/models/tokens.py:41 +#: users/models/tokens.py:41 msgid "last used" msgstr "ostatnio używane" -#: netbox/users/models/tokens.py:46 +#: users/models/tokens.py:46 msgid "key" msgstr "przycisk" -#: netbox/users/models/tokens.py:52 +#: users/models/tokens.py:52 msgid "write enabled" msgstr "włączony zapis" -#: netbox/users/models/tokens.py:54 +#: users/models/tokens.py:54 msgid "Permit create/update/delete operations using this key" msgstr "" "Zezwalaj na operacje tworzenia/aktualizowania/usuwania przy użyciu tego " "klucza" -#: netbox/users/models/tokens.py:65 +#: users/models/tokens.py:65 msgid "allowed IPs" msgstr "dozwolone adresy IP" -#: netbox/users/models/tokens.py:67 +#: users/models/tokens.py:67 msgid "" "Allowed IPv4/IPv6 networks from where the token can be used. Leave blank for" " no restrictions. Ex: \"10.1.1.0/24, 192.168.10.16/32, 2001:DB8:1::/64\"" @@ -14813,43 +14071,43 @@ msgstr "" " ograniczeń. Na przykład: „10.1.1.0/24, 192.168.10.16/32, 2001: DB 8:1: " ":/64”" -#: netbox/users/models/tokens.py:75 +#: users/models/tokens.py:75 msgid "token" msgstr "żeton" -#: netbox/users/models/tokens.py:76 +#: users/models/tokens.py:76 msgid "tokens" msgstr "tokeny" -#: netbox/users/models/users.py:57 netbox/vpn/models/crypto.py:42 +#: users/models/users.py:57 vpn/models/crypto.py:42 msgid "group" msgstr "grupa" -#: netbox/users/models/users.py:92 +#: users/models/users.py:92 msgid "user" msgstr "użytkownika" -#: netbox/users/models/users.py:104 +#: users/models/users.py:104 msgid "A user with this username already exists." msgstr "Użytkownik z tą nazwą użytkownika już istnieje." -#: netbox/users/tables.py:98 +#: users/tables.py:98 msgid "Custom Actions" msgstr "Akcje niestandardowe" -#: netbox/utilities/api.py:153 +#: utilities/api.py:153 #, python-brace-format msgid "Related object not found using the provided attributes: {params}" msgstr "" "Powiązany obiekt nie został znaleziony przy użyciu podanych atrybutów: " "{params}" -#: netbox/utilities/api.py:156 +#: utilities/api.py:156 #, python-brace-format msgid "Multiple objects match the provided attributes: {params}" msgstr "Wiele obiektów pasuje do podanych atrybutów: {params}" -#: netbox/utilities/api.py:168 +#: utilities/api.py:168 #, python-brace-format msgid "" "Related objects must be referenced by numeric ID or by dictionary of " @@ -14859,44 +14117,44 @@ msgstr "" "numerycznego lub słownika atrybutów. Otrzymała nierozpoznaną wartość: " "{value}" -#: netbox/utilities/api.py:177 +#: utilities/api.py:177 #, python-brace-format msgid "Related object not found using the provided numeric ID: {id}" msgstr "" "Powiązany obiekt nie został znaleziony przy użyciu podanego identyfikatora " "numerycznego: {id}" -#: netbox/utilities/choices.py:19 +#: utilities/choices.py:19 #, python-brace-format msgid "{name} has a key defined but CHOICES is not a list" msgstr "{name} ma zdefiniowany klucz, ale CHOICES nie jest listą" -#: netbox/utilities/conversion.py:19 +#: utilities/conversion.py:19 msgid "Weight must be a positive number" msgstr "Waga musi być liczbą dodatnią" -#: netbox/utilities/conversion.py:21 +#: utilities/conversion.py:21 #, python-brace-format msgid "Invalid value '{weight}' for weight (must be a number)" msgstr "Nieprawidłowa wartość '{weight}„dla wagi (musi być liczbą)" -#: netbox/utilities/conversion.py:32 netbox/utilities/conversion.py:62 +#: utilities/conversion.py:32 utilities/conversion.py:62 #, python-brace-format msgid "Unknown unit {unit}. Must be one of the following: {valid_units}" msgstr "" "Nieznana jednostka {unit}. Musi być jednym z następujących elementów: " "{valid_units}" -#: netbox/utilities/conversion.py:45 +#: utilities/conversion.py:45 msgid "Length must be a positive number" msgstr "Długość musi być liczbą dodatnią" -#: netbox/utilities/conversion.py:47 +#: utilities/conversion.py:47 #, python-brace-format msgid "Invalid value '{length}' for length (must be a number)" msgstr "Nieprawidłowa wartość '{length}„dla długości (musi być liczbą)" -#: netbox/utilities/error_handlers.py:31 +#: utilities/error_handlers.py:31 #, python-brace-format msgid "" "Unable to delete {objects}. {count} dependent objects were " @@ -14905,15 +14163,15 @@ msgstr "" "Nie można usunąć {objects}. {count} Znaleziono obiekty " "zależne: " -#: netbox/utilities/error_handlers.py:33 +#: utilities/error_handlers.py:33 msgid "More than 50" msgstr "Ponad 50" -#: netbox/utilities/fields.py:30 +#: utilities/fields.py:30 msgid "RGB color in hexadecimal. Example: " msgstr "Kolor RGB w wersji szesnastkowej. Przykład: " -#: netbox/utilities/fields.py:159 +#: utilities/fields.py:159 #, python-format msgid "" "%s(%r) is invalid. to_model parameter to CounterCacheField must be a string " @@ -14922,7 +14180,7 @@ msgstr "" "%s(%r) jest nieprawidłowy. parametr to_model do CounterCacheField musi być " "ciągiem w formacie „app.model”" -#: netbox/utilities/fields.py:169 +#: utilities/fields.py:169 #, python-format msgid "" "%s(%r) is invalid. to_field parameter to CounterCacheField must be a string " @@ -14931,36 +14189,36 @@ msgstr "" "%s(%r) jest nieprawidłowy. parametr to_field do CounterCacheField musi być " "ciągiem w formacie „field”" -#: netbox/utilities/forms/bulk_import.py:23 +#: utilities/forms/bulk_import.py:23 msgid "Enter object data in CSV, JSON or YAML format." msgstr "Wprowadź dane obiektu w formacie CSV, JSON lub YAML." -#: netbox/utilities/forms/bulk_import.py:36 +#: utilities/forms/bulk_import.py:36 msgid "CSV delimiter" msgstr "Ogranicznik CSV" -#: netbox/utilities/forms/bulk_import.py:37 +#: utilities/forms/bulk_import.py:37 msgid "The character which delimits CSV fields. Applies only to CSV format." msgstr "Znak oddzielający pola CSV. Dotyczy tylko formatu CSV." -#: netbox/utilities/forms/bulk_import.py:51 +#: utilities/forms/bulk_import.py:51 msgid "Form data must be empty when uploading/selecting a file." msgstr "Dane formularza muszą być puste podczas przesyłania/wybierania pliku." -#: netbox/utilities/forms/bulk_import.py:80 +#: utilities/forms/bulk_import.py:80 #, python-brace-format msgid "Unknown data format: {format}" msgstr "Nieznany format danych: {format}" -#: netbox/utilities/forms/bulk_import.py:100 +#: utilities/forms/bulk_import.py:100 msgid "Unable to detect data format. Please specify." msgstr "Nie można wykryć formatu danych. Proszę określić." -#: netbox/utilities/forms/bulk_import.py:123 +#: utilities/forms/bulk_import.py:123 msgid "Invalid CSV delimiter" msgstr "Nieprawidłowy separator CSV" -#: netbox/utilities/forms/bulk_import.py:167 +#: utilities/forms/bulk_import.py:167 msgid "" "Invalid YAML data. Data must be in the form of multiple documents, or a " "single document comprising a list of dictionaries." @@ -14968,7 +14226,7 @@ msgstr "" "Nieprawidłowe dane YAML. Dane muszą mieć formę wielu dokumentów lub jednego " "dokumentu zawierającego listę słowników." -#: netbox/utilities/forms/fields/array.py:20 +#: utilities/forms/fields/array.py:20 #, python-brace-format msgid "" "Invalid list ({value}). Must be numeric and ranges must be in ascending " @@ -14977,7 +14235,7 @@ msgstr "" "Nieprawidłowa lista ({value}). Musi być numeryczny, a zakresy muszą być w " "kolejności rosnącej." -#: netbox/utilities/forms/fields/array.py:40 +#: utilities/forms/fields/array.py:40 msgid "" "Specify one or more numeric ranges separated by commas. Example: " "1-5,20-30" @@ -14985,7 +14243,7 @@ msgstr "" "Określ jeden lub więcej zakresów liczbowych oddzielonych przecinkami. " "Przykład: 1-5.20-30" -#: netbox/utilities/forms/fields/array.py:47 +#: utilities/forms/fields/array.py:47 #, python-brace-format msgid "" "Invalid ranges ({value}). Must be a range of integers in ascending order." @@ -14993,18 +14251,17 @@ msgstr "" "Nieprawidłowe zakresy ({value}). Musi być zakresem liczb całkowitych w " "kolejności rosnącej." -#: netbox/utilities/forms/fields/csv.py:44 +#: utilities/forms/fields/csv.py:44 #, python-brace-format msgid "Invalid value for a multiple choice field: {value}" msgstr "Nieprawidłowa wartość pola wyboru wielokrotnego wyboru: {value}" -#: netbox/utilities/forms/fields/csv.py:57 -#: netbox/utilities/forms/fields/csv.py:78 +#: utilities/forms/fields/csv.py:57 utilities/forms/fields/csv.py:78 #, python-format msgid "Object not found: %(value)s" msgstr "Obiekt nie został znaleziony: %(value)s" -#: netbox/utilities/forms/fields/csv.py:65 +#: utilities/forms/fields/csv.py:65 #, python-brace-format msgid "" "\"{value}\" is not a unique value for this field; multiple objects were " @@ -15013,20 +14270,20 @@ msgstr "" "„{value}„nie jest unikalną wartością dla tego pola; znaleziono wiele " "obiektów" -#: netbox/utilities/forms/fields/csv.py:69 +#: utilities/forms/fields/csv.py:69 #, python-brace-format msgid "\"{field_name}\" is an invalid accessor field name." msgstr "„{field_name}„jest nieprawidłową nazwą pola dostępu." -#: netbox/utilities/forms/fields/csv.py:101 +#: utilities/forms/fields/csv.py:101 msgid "Object type must be specified as \".\"" msgstr "Typ obiektu musi być określony jako”.„" -#: netbox/utilities/forms/fields/csv.py:105 +#: utilities/forms/fields/csv.py:105 msgid "Invalid object type" msgstr "Nieprawidłowy typ obiektu" -#: netbox/utilities/forms/fields/expandable.py:25 +#: utilities/forms/fields/expandable.py:25 msgid "" "Alphanumeric ranges are supported for bulk creation. Mixed cases and types " "within a single range are not supported (example: " @@ -15036,7 +14293,7 @@ msgstr "" "przypadki i typy w jednym zakresie nie są obsługiwane (przykład: [ge, " "xe] -0/0/ [0-9])." -#: netbox/utilities/forms/fields/expandable.py:46 +#: utilities/forms/fields/expandable.py:46 msgid "" "Specify a numeric range to create multiple IPs.
Example: " "192.0.2.[1,5,100-254]/24" @@ -15044,7 +14301,7 @@ msgstr "" "Określ zakres numeryczny, aby utworzyć wiele adresów IP.
Przykład: " "192.0.2.[1,5,100-254]/24" -#: netbox/utilities/forms/fields/fields.py:31 +#: utilities/forms/fields/fields.py:31 #, python-brace-format msgid "" " Markdown składnia jest obsługiwana" -#: netbox/utilities/forms/fields/fields.py:48 +#: utilities/forms/fields/fields.py:48 msgid "URL-friendly unique shorthand" msgstr "Przyjazny dla adresów URL unikatowy skrót" -#: netbox/utilities/forms/fields/fields.py:101 +#: utilities/forms/fields/fields.py:101 msgid "Enter context data in JSON format." msgstr "" "Wprowadź dane kontekstowe w JSON format." -#: netbox/utilities/forms/fields/fields.py:124 +#: utilities/forms/fields/fields.py:124 msgid "MAC address must be in EUI-48 format" msgstr "Adres MAC musi być w formacie EUI-48" -#: netbox/utilities/forms/forms.py:52 +#: utilities/forms/forms.py:52 msgid "Use regular expressions" msgstr "Używanie wyrażeń regularnych" -#: netbox/utilities/forms/forms.py:75 +#: utilities/forms/forms.py:75 msgid "" "Numeric ID of an existing object to update (if not creating a new object)" msgstr "" "Numeryczny identyfikator istniejącego obiektu do aktualizacji (jeśli nie " "zostanie utworzony nowy obiekt)" -#: netbox/utilities/forms/forms.py:92 +#: utilities/forms/forms.py:92 #, python-brace-format msgid "Unrecognized header: {name}" msgstr "Nierozpoznany nagłówek: {name}" -#: netbox/utilities/forms/forms.py:118 +#: utilities/forms/forms.py:118 msgid "Available Columns" msgstr "Dostępne kolumny" -#: netbox/utilities/forms/forms.py:126 +#: utilities/forms/forms.py:126 msgid "Selected Columns" msgstr "Wybrane kolumny" -#: netbox/utilities/forms/mixins.py:44 +#: utilities/forms/mixins.py:44 msgid "" "This object has been modified since the form was rendered. Please consult " "the object's change log for details." @@ -15098,13 +14355,13 @@ msgstr "" "Ten obiekt został zmodyfikowany od czasu renderowania formularza. " "Szczegółowe informacje można znaleźć w dzienniku zmian obiektu." -#: netbox/utilities/forms/utils.py:42 netbox/utilities/forms/utils.py:68 -#: netbox/utilities/forms/utils.py:85 netbox/utilities/forms/utils.py:87 +#: utilities/forms/utils.py:42 utilities/forms/utils.py:68 +#: utilities/forms/utils.py:85 utilities/forms/utils.py:87 #, python-brace-format msgid "Range \"{value}\" is invalid." msgstr "Zasięg”{value}„jest nieważny." -#: netbox/utilities/forms/utils.py:74 +#: utilities/forms/utils.py:74 #, python-brace-format msgid "" "Invalid range: Ending value ({end}) must be greater than beginning value " @@ -15113,71 +14370,71 @@ msgstr "" "Nieprawidłowy zakres: wartość końcowa ({end}) musi być większa niż wartość " "początkowa ({begin})." -#: netbox/utilities/forms/utils.py:232 +#: utilities/forms/utils.py:232 #, python-brace-format msgid "Duplicate or conflicting column header for \"{field}\"" msgstr "Zduplikowany lub sprzeczny nagłówek kolumny dla”{field}„" -#: netbox/utilities/forms/utils.py:238 +#: utilities/forms/utils.py:238 #, python-brace-format msgid "Duplicate or conflicting column header for \"{header}\"" msgstr "Zduplikowany lub sprzeczny nagłówek kolumny dla”{header}„" -#: netbox/utilities/forms/utils.py:247 +#: utilities/forms/utils.py:247 #, python-brace-format msgid "Row {row}: Expected {count_expected} columns but found {count_found}" msgstr "" "Wiersz {row}: Oczekiwane {count_expected} kolumny, ale znalezione " "{count_found}" -#: netbox/utilities/forms/utils.py:270 +#: utilities/forms/utils.py:270 #, python-brace-format msgid "Unexpected column header \"{field}\" found." msgstr "Nieoczekiwany nagłówek kolumny”{field}„znaleziono." -#: netbox/utilities/forms/utils.py:272 +#: utilities/forms/utils.py:272 #, python-brace-format msgid "Column \"{field}\" is not a related object; cannot use dots" msgstr "Kolumna”{field}„nie jest obiektem powiązanym; nie może używać kropek" -#: netbox/utilities/forms/utils.py:276 +#: utilities/forms/utils.py:276 #, python-brace-format msgid "Invalid related object attribute for column \"{field}\": {to_field}" msgstr "" "Nieprawidłowy atrybut obiektu powiązanego dla kolumny”{field}„: {to_field}" -#: netbox/utilities/forms/utils.py:284 +#: utilities/forms/utils.py:284 #, python-brace-format msgid "Required column header \"{header}\" not found." msgstr "Wymagany nagłówek kolumny”{header}„Nie znaleziono." -#: netbox/utilities/forms/widgets/apiselect.py:124 +#: utilities/forms/widgets/apiselect.py:124 #, python-brace-format msgid "Missing required value for dynamic query param: '{dynamic_params}'" msgstr "" "Brak wymaganej wartości dla parametru zapytania dynamicznego: " "'{dynamic_params}”" -#: netbox/utilities/forms/widgets/apiselect.py:141 +#: utilities/forms/widgets/apiselect.py:141 #, python-brace-format msgid "Missing required value for static query param: '{static_params}'" msgstr "" "Brak wymaganej wartości dla parametru zapytania statycznego: " "'{static_params}”" -#: netbox/utilities/password_validation.py:13 +#: utilities/password_validation.py:13 msgid "Password must have at least one numeral." msgstr "Hasło musi zawierać co najmniej jedną cyfrę." -#: netbox/utilities/password_validation.py:18 +#: utilities/password_validation.py:18 msgid "Password must have at least one uppercase letter." msgstr "Hasło musi mieć co najmniej jedną wielką literę." -#: netbox/utilities/password_validation.py:23 +#: utilities/password_validation.py:23 msgid "Password must have at least one lowercase letter." msgstr "Hasło musi zawierać co najmniej jedną małą literę." -#: netbox/utilities/password_validation.py:27 +#: utilities/password_validation.py:27 msgid "" "Your password must contain at least one numeral, one uppercase letter and " "one lowercase letter." @@ -15185,7 +14442,7 @@ msgstr "" "Twoje hasło musi zawierać co najmniej jedną cyfrę, jedną wielką literę i " "jedną małą literę." -#: netbox/utilities/permissions.py:42 +#: utilities/permissions.py:42 #, python-brace-format msgid "" "Invalid permission name: {name}. Must be in the format " @@ -15194,125 +14451,125 @@ msgstr "" "Nieprawidłowa nazwa uprawnienia: {name}. Musi być w formacie " "._" -#: netbox/utilities/permissions.py:60 +#: utilities/permissions.py:60 #, python-brace-format msgid "Unknown app_label/model_name for {name}" msgstr "Nieznany app_label/model_name dla {name}" -#: netbox/utilities/request.py:76 +#: utilities/request.py:76 #, python-brace-format msgid "Invalid IP address set for {header}: {ip}" msgstr "Nieprawidłowy adres IP ustawiony dla {header}: {ip}" -#: netbox/utilities/tables.py:47 +#: utilities/tables.py:47 #, python-brace-format msgid "A column named {name} is already defined for table {table_name}" msgstr "Kolumna o nazwie {name} jest już zdefiniowany dla tabeli {table_name}" -#: netbox/utilities/templates/builtins/customfield_value.html:30 +#: utilities/templates/builtins/customfield_value.html:30 msgid "Not defined" msgstr "Niezdefiniowane" -#: netbox/utilities/templates/buttons/bookmark.html:9 +#: utilities/templates/buttons/bookmark.html:9 msgid "Unbookmark" msgstr "Usuń zakładkę" -#: netbox/utilities/templates/buttons/bookmark.html:13 +#: utilities/templates/buttons/bookmark.html:13 msgid "Bookmark" msgstr "Zakładka" -#: netbox/utilities/templates/buttons/clone.html:4 +#: utilities/templates/buttons/clone.html:4 msgid "Clone" msgstr "Klonowanie" -#: netbox/utilities/templates/buttons/export.html:7 +#: utilities/templates/buttons/export.html:7 msgid "Current View" msgstr "Bieżący widok" -#: netbox/utilities/templates/buttons/export.html:8 +#: utilities/templates/buttons/export.html:8 msgid "All Data" msgstr "Wszystkie dane" -#: netbox/utilities/templates/buttons/export.html:28 +#: utilities/templates/buttons/export.html:28 msgid "Add export template" msgstr "Dodaj szablon eksportu" -#: netbox/utilities/templates/buttons/import.html:4 +#: utilities/templates/buttons/import.html:4 msgid "Import" msgstr "Import" -#: netbox/utilities/templates/buttons/subscribe.html:10 +#: utilities/templates/buttons/subscribe.html:10 msgid "Unsubscribe" msgstr "Anuluj subskrypcję" -#: netbox/utilities/templates/buttons/subscribe.html:14 +#: utilities/templates/buttons/subscribe.html:14 msgid "Subscribe" msgstr "Subskrybuj" -#: netbox/utilities/templates/form_helpers/render_field.html:41 +#: utilities/templates/form_helpers/render_field.html:41 msgid "Copy to clipboard" msgstr "Kopiuj do schowka" -#: netbox/utilities/templates/form_helpers/render_field.html:57 +#: 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 +#: utilities/templates/form_helpers/render_field.html:70 msgid "Set Null" msgstr "Ustaw Null" -#: netbox/utilities/templates/helpers/applied_filters.html:11 +#: utilities/templates/helpers/applied_filters.html:11 msgid "Clear all" msgstr "Wyczyść wszystko" -#: netbox/utilities/templates/helpers/table_config_form.html:8 +#: utilities/templates/helpers/table_config_form.html:8 msgid "Table Configuration" msgstr "Konfiguracja tabeli" -#: netbox/utilities/templates/helpers/table_config_form.html:31 +#: utilities/templates/helpers/table_config_form.html:31 msgid "Move Up" msgstr "Przesuń w górę" -#: netbox/utilities/templates/helpers/table_config_form.html:34 +#: utilities/templates/helpers/table_config_form.html:34 msgid "Move Down" msgstr "Przesuń w dół" -#: netbox/utilities/templates/navigation/menu.html:14 +#: utilities/templates/navigation/menu.html:14 msgid "Search…" msgstr "Szukaj..." -#: netbox/utilities/templates/navigation/menu.html:14 +#: utilities/templates/navigation/menu.html:14 msgid "Search NetBox" msgstr "Szukaj NetBox" -#: netbox/utilities/templates/widgets/apiselect.html:7 +#: utilities/templates/widgets/apiselect.html:7 msgid "Open selector" msgstr "Otwórz selektor" -#: netbox/utilities/templates/widgets/markdown_input.html:6 +#: utilities/templates/widgets/markdown_input.html:6 msgid "Write" msgstr "Napisz" -#: netbox/utilities/testing/views.py:632 +#: utilities/testing/views.py:632 msgid "The test must define csv_update_data." msgstr "Test musi zdefiniować csv_update_data." -#: netbox/utilities/validators.py:65 +#: utilities/validators.py:65 #, python-brace-format msgid "{value} is not a valid regular expression." msgstr "{value} nie jest prawidłowym wyrażeniem regularnym." -#: netbox/utilities/views.py:57 +#: utilities/views.py:57 #, python-brace-format msgid "{self.__class__.__name__} must implement get_required_permission()" msgstr "{self.__class__.__name__} musi zaimplementować get_required_permit ()" -#: netbox/utilities/views.py:93 +#: utilities/views.py:93 #, python-brace-format msgid "{class_name} must implement get_required_permission()" msgstr "{class_name} musi zaimplementować get_required_permit ()" -#: netbox/utilities/views.py:117 +#: utilities/views.py:117 #, python-brace-format msgid "" "{class_name} has no queryset defined. ObjectPermissionRequiredMixin may only" @@ -15322,63 +14579,61 @@ msgstr "" "ObjectPermissionRequiredMixIn może być używany tylko w widokach, które " "definiują podstawowy zestaw zapytań" -#: netbox/virtualization/filtersets.py:79 +#: virtualization/filtersets.py:79 msgid "Parent group (ID)" msgstr "Grupa nadrzędna (ID)" -#: netbox/virtualization/filtersets.py:85 +#: virtualization/filtersets.py:85 msgid "Parent group (slug)" msgstr "Grupa nadrzędna (identyfikator)" -#: netbox/virtualization/filtersets.py:89 -#: netbox/virtualization/filtersets.py:141 +#: virtualization/filtersets.py:89 virtualization/filtersets.py:141 msgid "Cluster type (ID)" msgstr "Typ klastra (ID)" -#: netbox/virtualization/filtersets.py:151 -#: netbox/virtualization/filtersets.py:271 +#: virtualization/filtersets.py:151 virtualization/filtersets.py:271 msgid "Cluster (ID)" msgstr "Klaster (ID)" -#: netbox/virtualization/forms/bulk_edit.py:166 -#: netbox/virtualization/models/virtualmachines.py:115 +#: virtualization/forms/bulk_edit.py:166 +#: virtualization/models/virtualmachines.py:115 msgid "vCPUs" msgstr "VCPU" -#: netbox/virtualization/forms/bulk_edit.py:170 +#: virtualization/forms/bulk_edit.py:170 msgid "Memory (MB)" msgstr "Pamięć (MB)" -#: netbox/virtualization/forms/bulk_edit.py:174 +#: virtualization/forms/bulk_edit.py:174 msgid "Disk (GB)" msgstr "Dysk (GB)" -#: netbox/virtualization/forms/bulk_edit.py:334 -#: netbox/virtualization/forms/filtersets.py:251 +#: virtualization/forms/bulk_edit.py:334 +#: virtualization/forms/filtersets.py:251 msgid "Size (GB)" msgstr "Rozmiar (GB)" -#: netbox/virtualization/forms/bulk_import.py:44 +#: virtualization/forms/bulk_import.py:44 msgid "Type of cluster" msgstr "Rodzaj klastra" -#: netbox/virtualization/forms/bulk_import.py:51 +#: virtualization/forms/bulk_import.py:51 msgid "Assigned cluster group" msgstr "Przypisana grupa klastrów" -#: netbox/virtualization/forms/bulk_import.py:96 +#: virtualization/forms/bulk_import.py:96 msgid "Assigned cluster" msgstr "Przypisany klaster" -#: netbox/virtualization/forms/bulk_import.py:103 +#: virtualization/forms/bulk_import.py:103 msgid "Assigned device within cluster" msgstr "Przypisane urządzenie w klastrze" -#: netbox/virtualization/forms/filtersets.py:183 +#: virtualization/forms/filtersets.py:183 msgid "Serial number" msgstr "Numer seryjny" -#: netbox/virtualization/forms/model_forms.py:153 +#: virtualization/forms/model_forms.py:153 #, python-brace-format msgid "" "{device} belongs to a different site ({device_site}) than the cluster " @@ -15386,50 +14641,50 @@ msgid "" msgstr "" "{device} należy do innej strony ({device_site}) niż klaster ({cluster_site})" -#: netbox/virtualization/forms/model_forms.py:192 +#: virtualization/forms/model_forms.py:192 msgid "Optionally pin this VM to a specific host device within the cluster" msgstr "" "Opcjonalnie przypiąć tę maszynę wirtualną do określonego urządzenia hosta w " "klastrze" -#: netbox/virtualization/forms/model_forms.py:221 +#: virtualization/forms/model_forms.py:221 msgid "Site/Cluster" msgstr "Witryna/Klaster" -#: netbox/virtualization/forms/model_forms.py:244 +#: virtualization/forms/model_forms.py:244 msgid "Disk size is managed via the attachment of virtual disks." msgstr "Rozmiar dysku jest zarządzany poprzez załączenie dysków wirtualnych." -#: netbox/virtualization/forms/model_forms.py:372 -#: netbox/virtualization/tables/virtualmachines.py:111 +#: virtualization/forms/model_forms.py:372 +#: virtualization/tables/virtualmachines.py:111 msgid "Disk" msgstr "Dysk" -#: netbox/virtualization/models/clusters.py:25 +#: virtualization/models/clusters.py:25 msgid "cluster type" msgstr "typ klastra" -#: netbox/virtualization/models/clusters.py:26 +#: virtualization/models/clusters.py:26 msgid "cluster types" msgstr "typy klastrów" -#: netbox/virtualization/models/clusters.py:45 +#: virtualization/models/clusters.py:45 msgid "cluster group" msgstr "grupa klastra" -#: netbox/virtualization/models/clusters.py:46 +#: virtualization/models/clusters.py:46 msgid "cluster groups" msgstr "grupy klastrów" -#: netbox/virtualization/models/clusters.py:121 +#: virtualization/models/clusters.py:121 msgid "cluster" msgstr "klastra" -#: netbox/virtualization/models/clusters.py:122 +#: virtualization/models/clusters.py:122 msgid "clusters" msgstr "gromady" -#: netbox/virtualization/models/clusters.py:141 +#: virtualization/models/clusters.py:141 #, python-brace-format msgid "" "{count} devices are assigned as hosts for this cluster but are not in site " @@ -15438,42 +14693,42 @@ msgstr "" "{count} urządzenia są przypisane jako hosty dla tego klastra, ale nie są w " "witrynie {site}" -#: netbox/virtualization/models/virtualmachines.py:123 +#: virtualization/models/virtualmachines.py:123 msgid "memory (MB)" msgstr "pamięć (MB)" -#: netbox/virtualization/models/virtualmachines.py:128 +#: virtualization/models/virtualmachines.py:128 msgid "disk (MB)" msgstr "dysk (MB)" -#: netbox/virtualization/models/virtualmachines.py:166 +#: virtualization/models/virtualmachines.py:166 msgid "Virtual machine name must be unique per cluster." msgstr "Nazwa maszyny wirtualnej musi być unikatowa dla każdego klastra." -#: netbox/virtualization/models/virtualmachines.py:169 +#: virtualization/models/virtualmachines.py:169 msgid "virtual machine" msgstr "maszyna wirtualna" -#: netbox/virtualization/models/virtualmachines.py:170 +#: virtualization/models/virtualmachines.py:170 msgid "virtual machines" msgstr "maszyny wirtualne" -#: netbox/virtualization/models/virtualmachines.py:184 +#: virtualization/models/virtualmachines.py:184 msgid "A virtual machine must be assigned to a site and/or cluster." msgstr "Maszyna wirtualna musi być przypisana do witryny i/lub klastra." -#: netbox/virtualization/models/virtualmachines.py:191 +#: virtualization/models/virtualmachines.py:191 #, python-brace-format msgid "" "The selected cluster ({cluster}) is not assigned to this site ({site})." msgstr "" "Wybrany klaster ({cluster}) nie jest przypisany do tej witryny ({site})." -#: netbox/virtualization/models/virtualmachines.py:198 +#: virtualization/models/virtualmachines.py:198 msgid "Must specify a cluster when assigning a host device." msgstr "Musi określić klaster podczas przypisywania urządzenia hosta." -#: netbox/virtualization/models/virtualmachines.py:203 +#: virtualization/models/virtualmachines.py:203 #, python-brace-format msgid "" "The selected device ({device}) is not assigned to this cluster ({cluster})." @@ -15481,7 +14736,7 @@ msgstr "" "Wybrane urządzenie ({device}) nie jest przypisany do tego klastra " "({cluster})." -#: netbox/virtualization/models/virtualmachines.py:215 +#: virtualization/models/virtualmachines.py:215 #, python-brace-format msgid "" "The specified disk size ({size}) must match the aggregate size of assigned " @@ -15490,17 +14745,17 @@ msgstr "" "Określony rozmiar dysku ({size}) musi odpowiadać zagregowanemu rozmiarowi " "przypisanych dysków wirtualnych ({total_size})." -#: netbox/virtualization/models/virtualmachines.py:229 +#: virtualization/models/virtualmachines.py:229 #, python-brace-format msgid "Must be an IPv{family} address. ({ip} is an IPv{version} address.)" msgstr "Musi być IPV{family} adres. ({ip} jest IPV{version} adres.)" -#: netbox/virtualization/models/virtualmachines.py:238 +#: virtualization/models/virtualmachines.py:238 #, python-brace-format msgid "The specified IP address ({ip}) is not assigned to this VM." msgstr "Podany adres IP ({ip}) nie jest przypisany do tej maszyny wirtualnej." -#: netbox/virtualization/models/virtualmachines.py:396 +#: virtualization/models/virtualmachines.py:396 #, python-brace-format msgid "" "The selected parent interface ({parent}) belongs to a different virtual " @@ -15509,7 +14764,7 @@ msgstr "" "Wybrany interfejs nadrzędny ({parent}) należy do innej maszyny wirtualnej " "({virtual_machine})." -#: netbox/virtualization/models/virtualmachines.py:411 +#: virtualization/models/virtualmachines.py:411 #, python-brace-format msgid "" "The selected bridge interface ({bridge}) belongs to a different virtual " @@ -15518,7 +14773,7 @@ msgstr "" "Wybrany interfejs mostu ({bridge}) należy do innej maszyny wirtualnej " "({virtual_machine})." -#: netbox/virtualization/models/virtualmachines.py:422 +#: virtualization/models/virtualmachines.py:422 #, python-brace-format msgid "" "The untagged VLAN ({untagged_vlan}) must belong to the same site as the " @@ -15527,400 +14782,393 @@ msgstr "" "Nieoznaczona sieć VLAN ({untagged_vlan}) musi należeć do tej samej witryny " "co macierzysta maszyna wirtualna interfejsu lub musi być globalna." -#: netbox/virtualization/models/virtualmachines.py:434 +#: virtualization/models/virtualmachines.py:434 msgid "size (MB)" msgstr "rozmiar (MB)" -#: netbox/virtualization/models/virtualmachines.py:438 +#: virtualization/models/virtualmachines.py:438 msgid "virtual disk" msgstr "dysk wirtualny" -#: netbox/virtualization/models/virtualmachines.py:439 +#: virtualization/models/virtualmachines.py:439 msgid "virtual disks" msgstr "dyski wirtualne" -#: netbox/virtualization/views.py:275 +#: virtualization/views.py:275 #, python-brace-format msgid "Added {count} devices to cluster {cluster}" msgstr "Dodano {count} urządzenia do klastrowania {cluster}" -#: netbox/virtualization/views.py:310 +#: virtualization/views.py:310 #, python-brace-format msgid "Removed {count} devices from cluster {cluster}" msgstr "Usunięto {count} urządzenia z klastra {cluster}" -#: netbox/vpn/choices.py:31 +#: vpn/choices.py:31 msgid "IPsec - Transport" msgstr "IPsec - Transport" -#: netbox/vpn/choices.py:32 +#: vpn/choices.py:32 msgid "IPsec - Tunnel" msgstr "IPsec - Tunel" -#: netbox/vpn/choices.py:33 +#: vpn/choices.py:33 msgid "IP-in-IP" msgstr "IP w IP" -#: netbox/vpn/choices.py:34 +#: vpn/choices.py:34 msgid "GRE" msgstr "GREE" -#: netbox/vpn/choices.py:56 +#: vpn/choices.py:56 msgid "Hub" msgstr "Piasta" -#: netbox/vpn/choices.py:57 +#: vpn/choices.py:57 msgid "Spoke" msgstr "Mówił" -#: netbox/vpn/choices.py:80 +#: vpn/choices.py:80 msgid "Aggressive" msgstr "Agresywny" -#: netbox/vpn/choices.py:81 +#: vpn/choices.py:81 msgid "Main" msgstr "Główny" -#: netbox/vpn/choices.py:92 +#: vpn/choices.py:92 msgid "Pre-shared keys" msgstr "Wstępnie udostępnione klucze" -#: netbox/vpn/choices.py:93 +#: vpn/choices.py:93 msgid "Certificates" msgstr "Certyfikaty" -#: netbox/vpn/choices.py:94 +#: vpn/choices.py:94 msgid "RSA signatures" msgstr "Podpisy RSA" -#: netbox/vpn/choices.py:95 +#: vpn/choices.py:95 msgid "DSA signatures" msgstr "Podpisy DSA" -#: netbox/vpn/choices.py:178 netbox/vpn/choices.py:179 -#: netbox/vpn/choices.py:180 netbox/vpn/choices.py:181 -#: netbox/vpn/choices.py:182 netbox/vpn/choices.py:183 -#: netbox/vpn/choices.py:184 netbox/vpn/choices.py:185 -#: netbox/vpn/choices.py:186 netbox/vpn/choices.py:187 -#: netbox/vpn/choices.py:188 netbox/vpn/choices.py:189 -#: netbox/vpn/choices.py:190 netbox/vpn/choices.py:191 -#: netbox/vpn/choices.py:192 netbox/vpn/choices.py:193 -#: netbox/vpn/choices.py:194 netbox/vpn/choices.py:195 -#: netbox/vpn/choices.py:196 netbox/vpn/choices.py:197 -#: netbox/vpn/choices.py:198 netbox/vpn/choices.py:199 -#: netbox/vpn/choices.py:200 netbox/vpn/choices.py:201 +#: vpn/choices.py:178 vpn/choices.py:179 vpn/choices.py:180 vpn/choices.py:181 +#: vpn/choices.py:182 vpn/choices.py:183 vpn/choices.py:184 vpn/choices.py:185 +#: vpn/choices.py:186 vpn/choices.py:187 vpn/choices.py:188 vpn/choices.py:189 +#: vpn/choices.py:190 vpn/choices.py:191 vpn/choices.py:192 vpn/choices.py:193 +#: vpn/choices.py:194 vpn/choices.py:195 vpn/choices.py:196 vpn/choices.py:197 +#: vpn/choices.py:198 vpn/choices.py:199 vpn/choices.py:200 vpn/choices.py:201 #, python-brace-format msgid "Group {n}" msgstr "Grupa {n}" -#: netbox/vpn/choices.py:243 +#: vpn/choices.py:243 msgid "Ethernet Private LAN" msgstr "Prywatna sieć LAN Ethernet" -#: netbox/vpn/choices.py:244 +#: vpn/choices.py:244 msgid "Ethernet Virtual Private LAN" msgstr "Wirtualna prywatna sieć LAN Ethernet" -#: netbox/vpn/choices.py:247 +#: vpn/choices.py:247 msgid "Ethernet Private Tree" msgstr "Prywatne drzewo Ethernet" -#: netbox/vpn/choices.py:248 +#: vpn/choices.py:248 msgid "Ethernet Virtual Private Tree" msgstr "Wirtualne prywatne drzewo Ethernet" -#: netbox/vpn/filtersets.py:41 +#: vpn/filtersets.py:41 msgid "Tunnel group (ID)" msgstr "Grupa tuneli (ID)" -#: netbox/vpn/filtersets.py:47 +#: vpn/filtersets.py:47 msgid "Tunnel group (slug)" msgstr "Grupa tunelowa (ślimak)" -#: netbox/vpn/filtersets.py:54 +#: vpn/filtersets.py:54 msgid "IPSec profile (ID)" msgstr "Profil IPsec (ID)" -#: netbox/vpn/filtersets.py:60 +#: vpn/filtersets.py:60 msgid "IPSec profile (name)" msgstr "Profil IPsec (nazwa)" -#: netbox/vpn/filtersets.py:81 +#: vpn/filtersets.py:81 msgid "Tunnel (ID)" msgstr "Tunel (ID)" -#: netbox/vpn/filtersets.py:87 +#: vpn/filtersets.py:87 msgid "Tunnel (name)" msgstr "Tunel (nazwa)" -#: netbox/vpn/filtersets.py:118 +#: vpn/filtersets.py:118 msgid "Outside IP (ID)" msgstr "Zewnętrzny adres IP (ID)" -#: netbox/vpn/filtersets.py:130 netbox/vpn/filtersets.py:263 +#: vpn/filtersets.py:130 vpn/filtersets.py:263 msgid "IKE policy (ID)" msgstr "Polityka IKE (ID)" -#: netbox/vpn/filtersets.py:136 netbox/vpn/filtersets.py:269 +#: vpn/filtersets.py:136 vpn/filtersets.py:269 msgid "IKE policy (name)" msgstr "Polityka IKE (nazwa)" -#: netbox/vpn/filtersets.py:200 netbox/vpn/filtersets.py:273 +#: vpn/filtersets.py:200 vpn/filtersets.py:273 msgid "IPSec policy (ID)" msgstr "Polityka IPsec (ID)" -#: netbox/vpn/filtersets.py:206 netbox/vpn/filtersets.py:279 +#: vpn/filtersets.py:206 vpn/filtersets.py:279 msgid "IPSec policy (name)" msgstr "Polityka IPsec (nazwa)" -#: netbox/vpn/filtersets.py:348 +#: vpn/filtersets.py:348 msgid "L2VPN (slug)" msgstr "L2VPN (identyfikator)" -#: netbox/vpn/filtersets.py:412 +#: vpn/filtersets.py:412 msgid "VM Interface (ID)" msgstr "Interfejs maszyny wirtualnej (ID)" -#: netbox/vpn/filtersets.py:418 +#: vpn/filtersets.py:418 msgid "VLAN (name)" msgstr "VLAN (nazwa)" -#: netbox/vpn/forms/bulk_edit.py:45 netbox/vpn/forms/bulk_import.py:42 -#: netbox/vpn/forms/filtersets.py:54 +#: vpn/forms/bulk_edit.py:45 vpn/forms/bulk_import.py:42 +#: vpn/forms/filtersets.py:54 msgid "Tunnel group" msgstr "Grupa tuneli" -#: netbox/vpn/forms/bulk_edit.py:117 netbox/vpn/models/crypto.py:47 +#: vpn/forms/bulk_edit.py:117 vpn/models/crypto.py:47 msgid "SA lifetime" msgstr "Żywotność SA" -#: netbox/vpn/forms/bulk_edit.py:151 netbox/wireless/forms/bulk_edit.py:79 -#: netbox/wireless/forms/bulk_edit.py:126 -#: netbox/wireless/forms/filtersets.py:64 -#: netbox/wireless/forms/filtersets.py:98 +#: vpn/forms/bulk_edit.py:151 wireless/forms/bulk_edit.py:79 +#: wireless/forms/bulk_edit.py:126 wireless/forms/filtersets.py:64 +#: wireless/forms/filtersets.py:98 msgid "Pre-shared key" msgstr "Klucz wstępnie udostępniony" -#: netbox/vpn/forms/bulk_edit.py:237 netbox/vpn/forms/bulk_import.py:239 -#: netbox/vpn/forms/filtersets.py:199 netbox/vpn/forms/model_forms.py:370 -#: netbox/vpn/models/crypto.py:104 +#: vpn/forms/bulk_edit.py:237 vpn/forms/bulk_import.py:239 +#: vpn/forms/filtersets.py:199 vpn/forms/model_forms.py:370 +#: vpn/models/crypto.py:104 msgid "IKE policy" msgstr "Polityka IKE" -#: netbox/vpn/forms/bulk_edit.py:242 netbox/vpn/forms/bulk_import.py:244 -#: netbox/vpn/forms/filtersets.py:204 netbox/vpn/forms/model_forms.py:374 -#: netbox/vpn/models/crypto.py:209 +#: vpn/forms/bulk_edit.py:242 vpn/forms/bulk_import.py:244 +#: vpn/forms/filtersets.py:204 vpn/forms/model_forms.py:374 +#: vpn/models/crypto.py:209 msgid "IPSec policy" msgstr "Polityka IPsec" -#: netbox/vpn/forms/bulk_import.py:50 +#: vpn/forms/bulk_import.py:50 msgid "Tunnel encapsulation" msgstr "Enkapsulacja tunelu" -#: netbox/vpn/forms/bulk_import.py:83 +#: vpn/forms/bulk_import.py:83 msgid "Operational role" msgstr "Rola operacyjna" -#: netbox/vpn/forms/bulk_import.py:90 +#: vpn/forms/bulk_import.py:90 msgid "Parent device of assigned interface" msgstr "Urządzenie nadrzędne przypisanego interfejsu" -#: netbox/vpn/forms/bulk_import.py:97 +#: vpn/forms/bulk_import.py:97 msgid "Parent VM of assigned interface" msgstr "Nadrzędna maszyna wirtualna przypisanego interfejsu" -#: netbox/vpn/forms/bulk_import.py:104 +#: vpn/forms/bulk_import.py:104 msgid "Device or virtual machine interface" msgstr "Interfejs urządzenia lub maszyny wirtualnej" -#: netbox/vpn/forms/bulk_import.py:183 +#: vpn/forms/bulk_import.py:183 msgid "IKE proposal(s)" msgstr "Propozycje IKE" -#: netbox/vpn/forms/bulk_import.py:215 netbox/vpn/models/crypto.py:197 +#: vpn/forms/bulk_import.py:215 vpn/models/crypto.py:197 msgid "Diffie-Hellman group for Perfect Forward Secrecy" msgstr "Grupa Diffie-Hellman dla Perfect Forward Secretary" -#: netbox/vpn/forms/bulk_import.py:222 +#: vpn/forms/bulk_import.py:222 msgid "IPSec proposal(s)" msgstr "Propozycje IPsec" -#: netbox/vpn/forms/bulk_import.py:236 +#: vpn/forms/bulk_import.py:236 msgid "IPSec protocol" msgstr "Protokół IPsec" -#: netbox/vpn/forms/bulk_import.py:266 +#: vpn/forms/bulk_import.py:266 msgid "L2VPN type" msgstr "Typ L2VPN" -#: netbox/vpn/forms/bulk_import.py:287 +#: vpn/forms/bulk_import.py:287 msgid "Parent device (for interface)" msgstr "Urządzenie nadrzędne (dla interfejsu)" -#: netbox/vpn/forms/bulk_import.py:294 +#: vpn/forms/bulk_import.py:294 msgid "Parent virtual machine (for interface)" msgstr "Nadrzędna maszyna wirtualna (dla interfejsu)" -#: netbox/vpn/forms/bulk_import.py:301 +#: vpn/forms/bulk_import.py:301 msgid "Assigned interface (device or VM)" msgstr "Przypisany interfejs (urządzenie lub maszyna wirtualna)" -#: netbox/vpn/forms/bulk_import.py:334 +#: vpn/forms/bulk_import.py:334 msgid "Cannot import device and VM interface terminations simultaneously." msgstr "" "Nie można jednocześnie importować zakończeń interfejsu urządzenia i maszyny " "wirtualnej." -#: netbox/vpn/forms/bulk_import.py:336 +#: vpn/forms/bulk_import.py:336 msgid "Each termination must specify either an interface or a VLAN." msgstr "Każde zakończenie musi określać interfejs lub sieć VLAN." -#: netbox/vpn/forms/bulk_import.py:338 +#: vpn/forms/bulk_import.py:338 msgid "Cannot assign both an interface and a VLAN." msgstr "Nie można przypisać zarówno interfejsu, jak i sieci VLAN." -#: netbox/vpn/forms/filtersets.py:130 +#: vpn/forms/filtersets.py:130 msgid "IKE version" msgstr "Wersja IKE" -#: netbox/vpn/forms/filtersets.py:142 netbox/vpn/forms/filtersets.py:175 -#: netbox/vpn/forms/model_forms.py:298 netbox/vpn/forms/model_forms.py:334 +#: vpn/forms/filtersets.py:142 vpn/forms/filtersets.py:175 +#: vpn/forms/model_forms.py:298 vpn/forms/model_forms.py:334 msgid "Proposal" msgstr "Propozycja" -#: netbox/vpn/forms/filtersets.py:251 +#: vpn/forms/filtersets.py:251 msgid "Assigned Object Type" msgstr "Przypisany typ obiektu" -#: netbox/vpn/forms/model_forms.py:95 netbox/vpn/forms/model_forms.py:130 -#: netbox/vpn/forms/model_forms.py:240 netbox/vpn/tables/tunnels.py:91 +#: vpn/forms/model_forms.py:95 vpn/forms/model_forms.py:130 +#: vpn/forms/model_forms.py:240 vpn/tables/tunnels.py:91 msgid "Tunnel interface" msgstr "Interfejs tunelu" -#: netbox/vpn/forms/model_forms.py:150 +#: vpn/forms/model_forms.py:150 msgid "First Termination" msgstr "Pierwsze zakończenie" -#: netbox/vpn/forms/model_forms.py:153 +#: vpn/forms/model_forms.py:153 msgid "Second Termination" msgstr "Drugie zakończenie" -#: netbox/vpn/forms/model_forms.py:197 +#: vpn/forms/model_forms.py:197 msgid "This parameter is required when defining a termination." msgstr "Ten parametr jest wymagany przy definiowaniu zakończenia." -#: netbox/vpn/forms/model_forms.py:320 netbox/vpn/forms/model_forms.py:356 +#: vpn/forms/model_forms.py:320 vpn/forms/model_forms.py:356 msgid "Policy" msgstr "Polityka" -#: netbox/vpn/forms/model_forms.py:487 +#: vpn/forms/model_forms.py:487 msgid "A termination must specify an interface or VLAN." msgstr "Zakończenie musi określać interfejs lub sieć VLAN." -#: netbox/vpn/forms/model_forms.py:489 +#: vpn/forms/model_forms.py:489 msgid "" "A termination can only have one terminating object (an interface or VLAN)." msgstr "" "Zakończenie może mieć tylko jeden obiekt końcowy (interfejs lub sieć VLAN)." -#: netbox/vpn/models/crypto.py:33 +#: vpn/models/crypto.py:33 msgid "encryption algorithm" msgstr "algorytm szyfrowania" -#: netbox/vpn/models/crypto.py:37 +#: vpn/models/crypto.py:37 msgid "authentication algorithm" msgstr "algoritm uwierzytelniania" -#: netbox/vpn/models/crypto.py:44 +#: vpn/models/crypto.py:44 msgid "Diffie-Hellman group ID" msgstr "Identyfikator grupy Diffie-Hellman" -#: netbox/vpn/models/crypto.py:50 +#: vpn/models/crypto.py:50 msgid "Security association lifetime (in seconds)" msgstr "Żywotność skojarzenia zabezpieczeń (w sekundach)" -#: netbox/vpn/models/crypto.py:59 +#: vpn/models/crypto.py:59 msgid "IKE proposal" msgstr "Propozycja IKE" -#: netbox/vpn/models/crypto.py:60 +#: vpn/models/crypto.py:60 msgid "IKE proposals" msgstr "Propozycje IKE" -#: netbox/vpn/models/crypto.py:76 +#: vpn/models/crypto.py:76 msgid "version" msgstr "wersji" -#: netbox/vpn/models/crypto.py:88 netbox/vpn/models/crypto.py:190 +#: vpn/models/crypto.py:88 vpn/models/crypto.py:190 msgid "proposals" msgstr "oferty" -#: netbox/vpn/models/crypto.py:91 netbox/wireless/models.py:39 +#: vpn/models/crypto.py:91 wireless/models.py:39 msgid "pre-shared key" msgstr "klucz wstępnie udostępniony" -#: netbox/vpn/models/crypto.py:105 +#: vpn/models/crypto.py:105 msgid "IKE policies" msgstr "Zasady IKE" -#: netbox/vpn/models/crypto.py:118 +#: vpn/models/crypto.py:118 msgid "Mode is required for selected IKE version" msgstr "Tryb jest wymagany dla wybranej wersji IKE" -#: netbox/vpn/models/crypto.py:122 +#: vpn/models/crypto.py:122 msgid "Mode cannot be used for selected IKE version" msgstr "Tryb nie może być używany dla wybranej wersji IKE" -#: netbox/vpn/models/crypto.py:136 +#: vpn/models/crypto.py:136 msgid "encryption" msgstr "szyfrowanie" -#: netbox/vpn/models/crypto.py:141 +#: vpn/models/crypto.py:141 msgid "authentication" msgstr "poświadczenie" -#: netbox/vpn/models/crypto.py:149 +#: vpn/models/crypto.py:149 msgid "Security association lifetime (seconds)" msgstr "Żywotność skojarzenia zabezpieczeń (sekundy)" -#: netbox/vpn/models/crypto.py:155 +#: vpn/models/crypto.py:155 msgid "Security association lifetime (in kilobytes)" msgstr "Żywotność skojarzenia zabezpieczeń (w kilobajtach)" -#: netbox/vpn/models/crypto.py:164 +#: vpn/models/crypto.py:164 msgid "IPSec proposal" msgstr "Propozycja IPsec" -#: netbox/vpn/models/crypto.py:165 +#: vpn/models/crypto.py:165 msgid "IPSec proposals" msgstr "Propozycje IPsec" -#: netbox/vpn/models/crypto.py:178 +#: vpn/models/crypto.py:178 msgid "Encryption and/or authentication algorithm must be defined" msgstr "Należy zdefiniować algorytm szyfrowania i/lub uwierzytelniania" -#: netbox/vpn/models/crypto.py:210 +#: vpn/models/crypto.py:210 msgid "IPSec policies" msgstr "Zasady IPsec" -#: netbox/vpn/models/crypto.py:251 +#: vpn/models/crypto.py:251 msgid "IPSec profiles" msgstr "Profile IPsec" -#: netbox/vpn/models/l2vpn.py:116 +#: vpn/models/l2vpn.py:116 msgid "L2VPN termination" msgstr "Zakończenie L2VPN" -#: netbox/vpn/models/l2vpn.py:117 +#: vpn/models/l2vpn.py:117 msgid "L2VPN terminations" msgstr "Zakończenia L2VPN" -#: netbox/vpn/models/l2vpn.py:135 +#: vpn/models/l2vpn.py:135 #, python-brace-format msgid "L2VPN Termination already assigned ({assigned_object})" msgstr "Zakończenie L2VPN już przypisane ({assigned_object})" -#: netbox/vpn/models/l2vpn.py:147 +#: vpn/models/l2vpn.py:147 #, python-brace-format msgid "" "{l2vpn_type} L2VPNs cannot have more than two terminations; found " @@ -15929,195 +15177,187 @@ msgstr "" "{l2vpn_type} L2VPN nie mogą mieć więcej niż dwóch terminów; znaleziono " "{terminations_count} już zdefiniowane." -#: netbox/vpn/models/tunnels.py:26 +#: vpn/models/tunnels.py:26 msgid "tunnel group" msgstr "grupa tuneli" -#: netbox/vpn/models/tunnels.py:27 +#: vpn/models/tunnels.py:27 msgid "tunnel groups" msgstr "grupy tuneli" -#: netbox/vpn/models/tunnels.py:53 +#: vpn/models/tunnels.py:53 msgid "encapsulation" msgstr "hermetyzacja" -#: netbox/vpn/models/tunnels.py:72 +#: vpn/models/tunnels.py:72 msgid "tunnel ID" msgstr "Identyfikator tunelu" -#: netbox/vpn/models/tunnels.py:94 +#: vpn/models/tunnels.py:94 msgid "tunnel" msgstr "tunel" -#: netbox/vpn/models/tunnels.py:95 +#: vpn/models/tunnels.py:95 msgid "tunnels" msgstr "tunele" -#: netbox/vpn/models/tunnels.py:153 +#: vpn/models/tunnels.py:153 msgid "An object may be terminated to only one tunnel at a time." msgstr "Obiekt może zostać zakończony tylko jednym tunelem naraz." -#: netbox/vpn/models/tunnels.py:156 +#: vpn/models/tunnels.py:156 msgid "tunnel termination" msgstr "zakończenie tunelu" -#: netbox/vpn/models/tunnels.py:157 +#: vpn/models/tunnels.py:157 msgid "tunnel terminations" msgstr "zakończenia tunelu" -#: netbox/vpn/models/tunnels.py:174 +#: vpn/models/tunnels.py:174 #, python-brace-format msgid "{name} is already attached to a tunnel ({tunnel})." msgstr "{name} jest już przymocowany do tunelu ({tunnel})." -#: netbox/vpn/tables/crypto.py:22 +#: vpn/tables/crypto.py:22 msgid "Authentication Method" msgstr "Metoda uwierzytelniania" -#: netbox/vpn/tables/crypto.py:25 netbox/vpn/tables/crypto.py:97 +#: vpn/tables/crypto.py:25 vpn/tables/crypto.py:97 msgid "Encryption Algorithm" msgstr "Algorytm szyfrowania" -#: netbox/vpn/tables/crypto.py:28 netbox/vpn/tables/crypto.py:100 +#: vpn/tables/crypto.py:28 vpn/tables/crypto.py:100 msgid "Authentication Algorithm" msgstr "Algorytm autoryzacji" -#: netbox/vpn/tables/crypto.py:34 +#: vpn/tables/crypto.py:34 msgid "SA Lifetime" msgstr "Żywotność SA" -#: netbox/vpn/tables/crypto.py:71 +#: vpn/tables/crypto.py:71 msgid "Pre-shared Key" msgstr "Klucz wstępnie udostępniony" -#: netbox/vpn/tables/crypto.py:103 +#: vpn/tables/crypto.py:103 msgid "SA Lifetime (Seconds)" msgstr "Żywotność SA (sekundy)" -#: netbox/vpn/tables/crypto.py:106 +#: vpn/tables/crypto.py:106 msgid "SA Lifetime (KB)" msgstr "Żywotność SA (KB)" -#: netbox/vpn/tables/l2vpn.py:69 +#: vpn/tables/l2vpn.py:69 msgid "Object Parent" msgstr "Nadrzędny obiekt" -#: netbox/vpn/tables/l2vpn.py:74 +#: vpn/tables/l2vpn.py:74 msgid "Object Site" msgstr "Strona obiektu" -#: netbox/wireless/choices.py:11 +#: wireless/choices.py:11 msgid "Access point" msgstr "Punkt dostępu" -#: netbox/wireless/choices.py:12 +#: wireless/choices.py:12 msgid "Station" msgstr "Stacja" -#: netbox/wireless/choices.py:467 +#: wireless/choices.py:467 msgid "Open" msgstr "Otwórz" -#: netbox/wireless/choices.py:469 +#: wireless/choices.py:469 msgid "WPA Personal (PSK)" msgstr "WPA Personal (PSK)" -#: netbox/wireless/choices.py:470 +#: wireless/choices.py:470 msgid "WPA Enterprise" msgstr "WPA Przedsiębiorstwo" -#: netbox/wireless/forms/bulk_edit.py:73 -#: netbox/wireless/forms/bulk_edit.py:120 -#: netbox/wireless/forms/bulk_import.py:68 -#: netbox/wireless/forms/bulk_import.py:71 -#: netbox/wireless/forms/bulk_import.py:110 -#: netbox/wireless/forms/bulk_import.py:113 -#: netbox/wireless/forms/filtersets.py:59 -#: netbox/wireless/forms/filtersets.py:93 +#: wireless/forms/bulk_edit.py:73 wireless/forms/bulk_edit.py:120 +#: wireless/forms/bulk_import.py:68 wireless/forms/bulk_import.py:71 +#: wireless/forms/bulk_import.py:110 wireless/forms/bulk_import.py:113 +#: wireless/forms/filtersets.py:59 wireless/forms/filtersets.py:93 msgid "Authentication cipher" msgstr "Szyfr uwierzytelniania" -#: netbox/wireless/forms/bulk_edit.py:134 -#: netbox/wireless/forms/bulk_import.py:116 -#: netbox/wireless/forms/bulk_import.py:119 -#: netbox/wireless/forms/filtersets.py:106 +#: wireless/forms/bulk_edit.py:134 wireless/forms/bulk_import.py:116 +#: wireless/forms/bulk_import.py:119 wireless/forms/filtersets.py:106 msgid "Distance unit" msgstr "Jednostka odległości" -#: netbox/wireless/forms/bulk_import.py:52 +#: wireless/forms/bulk_import.py:52 msgid "Bridged VLAN" msgstr "Zmostkowana sieć VLAN" -#: netbox/wireless/forms/bulk_import.py:89 -#: netbox/wireless/tables/wirelesslink.py:28 +#: wireless/forms/bulk_import.py:89 wireless/tables/wirelesslink.py:28 msgid "Interface A" msgstr "Interfejs A" -#: netbox/wireless/forms/bulk_import.py:93 -#: netbox/wireless/tables/wirelesslink.py:37 +#: wireless/forms/bulk_import.py:93 wireless/tables/wirelesslink.py:37 msgid "Interface B" msgstr "Interfejs B" -#: netbox/wireless/forms/model_forms.py:161 +#: wireless/forms/model_forms.py:161 msgid "Side B" msgstr "Strona B" -#: netbox/wireless/models.py:31 +#: wireless/models.py:31 msgid "authentication cipher" msgstr "szyfr uwierzytelniania" -#: netbox/wireless/models.py:69 +#: wireless/models.py:69 msgid "wireless LAN group" msgstr "grupa sieci bezprzewodowej LAN" -#: netbox/wireless/models.py:70 +#: wireless/models.py:70 msgid "wireless LAN groups" msgstr "grupy sieci bezprzewodowej LAN" -#: netbox/wireless/models.py:116 +#: wireless/models.py:116 msgid "wireless LAN" msgstr "bezprzewodowa sieć LAN" -#: netbox/wireless/models.py:144 +#: wireless/models.py:144 msgid "interface A" msgstr "interfejs A" -#: netbox/wireless/models.py:151 +#: wireless/models.py:151 msgid "interface B" msgstr "interfejs B" -#: netbox/wireless/models.py:165 +#: wireless/models.py:165 msgid "distance" msgstr "odstęp" -#: netbox/wireless/models.py:172 +#: wireless/models.py:172 msgid "distance unit" msgstr "jednostka odległości" -#: netbox/wireless/models.py:219 +#: wireless/models.py:219 msgid "wireless link" msgstr "łącze bezprzewodowe" -#: netbox/wireless/models.py:220 +#: wireless/models.py:220 msgid "wireless links" msgstr "łącza bezprzewodowe" -#: netbox/wireless/models.py:236 +#: wireless/models.py:236 msgid "Must specify a unit when setting a wireless distance" msgstr "" "Należy określić jednostkę podczas ustawiania odległości bezprzewodowej" -#: netbox/wireless/models.py:242 netbox/wireless/models.py:248 +#: wireless/models.py:242 wireless/models.py:248 #, python-brace-format msgid "{type} is not a wireless interface." msgstr "{type} nie jest interfejsem bezprzewodowym." -#: netbox/wireless/utils.py:16 +#: wireless/utils.py:16 #, python-brace-format msgid "Invalid channel value: {channel}" msgstr "Nieprawidłowa wartość kanału: {channel}" -#: netbox/wireless/utils.py:26 +#: wireless/utils.py:26 #, python-brace-format msgid "Invalid channel attribute: {name}" msgstr "Nieprawidłowy atrybut kanału: {name}" diff --git a/netbox/translations/pt/LC_MESSAGES/django.po b/netbox/translations/pt/LC_MESSAGES/django.po index ecc4eb05e..72135959b 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: 2024-10-12 05:02+0000\n" +"POT-Creation-Date: 2024-10-28 19:20+0000\n" "PO-Revision-Date: 2023-10-30 17:48+0000\n" "Last-Translator: Jeremy Stretch, 2024\n" "Language-Team: Portuguese (https://app.transifex.com/netbox-community/teams/178115/pt/)\n" @@ -24,2145 +24,1876 @@ msgstr "" "Language: pt\n" "Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" -#: netbox/account/tables.py:27 netbox/templates/account/token.html:22 -#: netbox/templates/users/token.html:17 netbox/users/forms/bulk_import.py:39 -#: netbox/users/forms/model_forms.py:112 +#: account/tables.py:27 templates/account/token.html:22 +#: templates/users/token.html:17 users/forms/bulk_import.py:39 +#: users/forms/model_forms.py:112 msgid "Key" msgstr "Chave" -#: netbox/account/tables.py:31 netbox/users/forms/filtersets.py:132 +#: account/tables.py:31 users/forms/filtersets.py:132 msgid "Write Enabled" msgstr "Permissão de Escrita" -#: netbox/account/tables.py:35 netbox/core/choices.py:86 -#: netbox/core/tables/jobs.py:29 netbox/core/tables/tasks.py:79 -#: netbox/extras/tables/tables.py:335 netbox/extras/tables/tables.py:566 -#: netbox/templates/account/token.html:43 -#: netbox/templates/core/configrevision.html:26 -#: netbox/templates/core/configrevision_restore.html:12 -#: netbox/templates/core/job.html:69 netbox/templates/core/rq_task.html:16 -#: netbox/templates/core/rq_task.html:73 -#: netbox/templates/core/rq_worker.html:14 -#: netbox/templates/extras/htmx/script_result.html:12 -#: netbox/templates/extras/journalentry.html:22 -#: netbox/templates/generic/object.html:58 -#: netbox/templates/users/token.html:35 +#: account/tables.py:35 core/choices.py:86 core/tables/jobs.py:29 +#: core/tables/tasks.py:79 extras/tables/tables.py:335 +#: extras/tables/tables.py:566 templates/account/token.html:43 +#: templates/core/configrevision.html:26 +#: templates/core/configrevision_restore.html:12 templates/core/job.html:69 +#: templates/core/rq_task.html:16 templates/core/rq_task.html:73 +#: templates/core/rq_worker.html:14 +#: templates/extras/htmx/script_result.html:12 +#: templates/extras/journalentry.html:22 templates/generic/object.html:58 +#: templates/users/token.html:35 msgid "Created" msgstr "Criado" -#: netbox/account/tables.py:39 netbox/templates/account/token.html:47 -#: netbox/templates/users/token.html:39 netbox/users/forms/bulk_edit.py:117 -#: netbox/users/forms/filtersets.py:136 +#: account/tables.py:39 templates/account/token.html:47 +#: templates/users/token.html:39 users/forms/bulk_edit.py:117 +#: users/forms/filtersets.py:136 msgid "Expires" msgstr "Expira" -#: netbox/account/tables.py:42 netbox/users/forms/filtersets.py:141 +#: account/tables.py:42 users/forms/filtersets.py:141 msgid "Last Used" msgstr "Usado pela Última Vez" -#: netbox/account/tables.py:45 netbox/templates/account/token.html:55 -#: netbox/templates/users/token.html:47 netbox/users/forms/bulk_edit.py:122 -#: netbox/users/forms/model_forms.py:124 +#: account/tables.py:45 templates/account/token.html:55 +#: templates/users/token.html:47 users/forms/bulk_edit.py:122 +#: users/forms/model_forms.py:124 msgid "Allowed IPs" msgstr "IPs Permitidos" -#: netbox/account/views.py:114 +#: account/views.py:114 #, python-brace-format msgid "Logged in as {user}." msgstr "Logado como {user}." -#: netbox/account/views.py:164 +#: account/views.py:164 msgid "You have logged out." msgstr "Você se desconectou." -#: netbox/account/views.py:216 +#: account/views.py:216 msgid "Your preferences have been updated." msgstr "Suas preferências foram atualizadas." -#: netbox/account/views.py:239 +#: account/views.py:239 msgid "LDAP-authenticated user credentials cannot be changed within NetBox." msgstr "" "As credenciais de usuário autenticadas pelo LDAP não podem ser alteradas no " "NetBox." -#: netbox/account/views.py:254 +#: account/views.py:254 msgid "Your password has been changed successfully." 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:185 -#: netbox/dcim/choices.py:237 netbox/dcim/choices.py:1530 -#: netbox/dcim/choices.py:1606 netbox/dcim/choices.py:1656 -#: netbox/virtualization/choices.py:20 netbox/virtualization/choices.py:45 -#: netbox/vpn/choices.py:18 +#: circuits/choices.py:21 dcim/choices.py:20 dcim/choices.py:102 +#: dcim/choices.py:185 dcim/choices.py:237 dcim/choices.py:1530 +#: dcim/choices.py:1606 dcim/choices.py:1656 virtualization/choices.py:20 +#: virtualization/choices.py:45 vpn/choices.py:18 msgid "Planned" msgstr "Planejado" -#: netbox/circuits/choices.py:22 netbox/netbox/navigation/menu.py:305 +#: circuits/choices.py:22 netbox/navigation/menu.py:305 msgid "Provisioning" msgstr "Provisionamento" -#: netbox/circuits/choices.py:23 netbox/core/tables/tasks.py:22 -#: netbox/dcim/choices.py:22 netbox/dcim/choices.py:103 -#: netbox/dcim/choices.py:184 netbox/dcim/choices.py:236 -#: netbox/dcim/choices.py:1605 netbox/dcim/choices.py:1655 -#: netbox/extras/tables/tables.py:495 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:25 -#: netbox/templates/users/user.html:37 netbox/users/forms/bulk_edit.py:38 -#: netbox/virtualization/choices.py:22 netbox/virtualization/choices.py:44 -#: netbox/vpn/choices.py:19 netbox/wireless/choices.py:25 +#: circuits/choices.py:23 core/tables/tasks.py:22 dcim/choices.py:22 +#: dcim/choices.py:103 dcim/choices.py:184 dcim/choices.py:236 +#: dcim/choices.py:1605 dcim/choices.py:1655 extras/tables/tables.py:495 +#: ipam/choices.py:31 ipam/choices.py:49 ipam/choices.py:69 +#: ipam/choices.py:154 templates/extras/configcontext.html:25 +#: templates/users/user.html:37 users/forms/bulk_edit.py:38 +#: virtualization/choices.py:22 virtualization/choices.py:44 vpn/choices.py:19 +#: wireless/choices.py:25 msgid "Active" msgstr "Ativo" -#: netbox/circuits/choices.py:24 netbox/dcim/choices.py:183 -#: netbox/dcim/choices.py:235 netbox/dcim/choices.py:1604 -#: netbox/dcim/choices.py:1657 netbox/virtualization/choices.py:24 -#: netbox/virtualization/choices.py:43 +#: circuits/choices.py:24 dcim/choices.py:183 dcim/choices.py:235 +#: dcim/choices.py:1604 dcim/choices.py:1657 virtualization/choices.py:24 +#: virtualization/choices.py:43 msgid "Offline" msgstr "Offline" -#: netbox/circuits/choices.py:25 +#: circuits/choices.py:25 msgid "Deprovisioning" msgstr "Em Desprovisionamento" -#: netbox/circuits/choices.py:26 +#: circuits/choices.py:26 msgid "Decommissioned" msgstr "Descomissionado" -#: netbox/circuits/choices.py:90 netbox/dcim/choices.py:1617 -#: netbox/tenancy/choices.py:17 +#: circuits/choices.py:90 dcim/choices.py:1617 tenancy/choices.py:17 msgid "Primary" msgstr "Primário" -#: netbox/circuits/choices.py:91 netbox/ipam/choices.py:90 -#: netbox/tenancy/choices.py:18 +#: circuits/choices.py:91 ipam/choices.py:90 tenancy/choices.py:18 msgid "Secondary" msgstr "Secundário" -#: netbox/circuits/choices.py:92 netbox/tenancy/choices.py:19 +#: circuits/choices.py:92 tenancy/choices.py:19 msgid "Tertiary" msgstr "Terciário" -#: netbox/circuits/choices.py:93 netbox/tenancy/choices.py:20 +#: circuits/choices.py:93 tenancy/choices.py:20 msgid "Inactive" msgstr "Inativo" -#: netbox/circuits/filtersets.py:31 netbox/circuits/filtersets.py:198 -#: netbox/dcim/filtersets.py:98 netbox/dcim/filtersets.py:152 -#: netbox/dcim/filtersets.py:212 netbox/dcim/filtersets.py:333 -#: netbox/dcim/filtersets.py:464 netbox/dcim/filtersets.py:1021 -#: netbox/dcim/filtersets.py:1368 netbox/dcim/filtersets.py:1903 -#: netbox/dcim/filtersets.py:2146 netbox/dcim/filtersets.py:2204 -#: netbox/ipam/filtersets.py:339 netbox/ipam/filtersets.py:959 -#: netbox/virtualization/filtersets.py:45 -#: netbox/virtualization/filtersets.py:173 netbox/vpn/filtersets.py:358 +#: circuits/filtersets.py:31 circuits/filtersets.py:198 dcim/filtersets.py:98 +#: dcim/filtersets.py:152 dcim/filtersets.py:212 dcim/filtersets.py:333 +#: dcim/filtersets.py:464 dcim/filtersets.py:1021 dcim/filtersets.py:1368 +#: dcim/filtersets.py:1903 dcim/filtersets.py:2146 dcim/filtersets.py:2204 +#: ipam/filtersets.py:339 ipam/filtersets.py:959 +#: virtualization/filtersets.py:45 virtualization/filtersets.py:173 +#: vpn/filtersets.py:358 msgid "Region (ID)" msgstr "Região (ID)" -#: netbox/circuits/filtersets.py:38 netbox/circuits/filtersets.py:205 -#: netbox/dcim/filtersets.py:105 netbox/dcim/filtersets.py:158 -#: netbox/dcim/filtersets.py:219 netbox/dcim/filtersets.py:340 -#: netbox/dcim/filtersets.py:471 netbox/dcim/filtersets.py:1028 -#: netbox/dcim/filtersets.py:1375 netbox/dcim/filtersets.py:1910 -#: netbox/dcim/filtersets.py:2153 netbox/dcim/filtersets.py:2211 -#: netbox/extras/filtersets.py:509 netbox/ipam/filtersets.py:346 -#: netbox/ipam/filtersets.py:966 netbox/virtualization/filtersets.py:52 -#: netbox/virtualization/filtersets.py:180 netbox/vpn/filtersets.py:353 +#: circuits/filtersets.py:38 circuits/filtersets.py:205 dcim/filtersets.py:105 +#: dcim/filtersets.py:158 dcim/filtersets.py:219 dcim/filtersets.py:340 +#: dcim/filtersets.py:471 dcim/filtersets.py:1028 dcim/filtersets.py:1375 +#: dcim/filtersets.py:1910 dcim/filtersets.py:2153 dcim/filtersets.py:2211 +#: extras/filtersets.py:509 ipam/filtersets.py:346 ipam/filtersets.py:966 +#: virtualization/filtersets.py:52 virtualization/filtersets.py:180 +#: vpn/filtersets.py:353 msgid "Region (slug)" msgstr "Região (slug)" -#: netbox/circuits/filtersets.py:44 netbox/circuits/filtersets.py:211 -#: netbox/dcim/filtersets.py:128 netbox/dcim/filtersets.py:225 -#: netbox/dcim/filtersets.py:346 netbox/dcim/filtersets.py:477 -#: netbox/dcim/filtersets.py:1034 netbox/dcim/filtersets.py:1381 -#: netbox/dcim/filtersets.py:1916 netbox/dcim/filtersets.py:2159 -#: netbox/dcim/filtersets.py:2217 netbox/ipam/filtersets.py:352 -#: netbox/ipam/filtersets.py:972 netbox/virtualization/filtersets.py:58 -#: netbox/virtualization/filtersets.py:186 +#: circuits/filtersets.py:44 circuits/filtersets.py:211 dcim/filtersets.py:128 +#: dcim/filtersets.py:225 dcim/filtersets.py:346 dcim/filtersets.py:477 +#: dcim/filtersets.py:1034 dcim/filtersets.py:1381 dcim/filtersets.py:1916 +#: dcim/filtersets.py:2159 dcim/filtersets.py:2217 ipam/filtersets.py:352 +#: ipam/filtersets.py:972 virtualization/filtersets.py:58 +#: virtualization/filtersets.py:186 msgid "Site group (ID)" msgstr "Grupo de sites (ID)" -#: netbox/circuits/filtersets.py:51 netbox/circuits/filtersets.py:218 -#: netbox/dcim/filtersets.py:135 netbox/dcim/filtersets.py:232 -#: netbox/dcim/filtersets.py:353 netbox/dcim/filtersets.py:484 -#: netbox/dcim/filtersets.py:1041 netbox/dcim/filtersets.py:1388 -#: netbox/dcim/filtersets.py:1923 netbox/dcim/filtersets.py:2166 -#: netbox/dcim/filtersets.py:2224 netbox/extras/filtersets.py:515 -#: netbox/ipam/filtersets.py:359 netbox/ipam/filtersets.py:979 -#: netbox/virtualization/filtersets.py:65 -#: netbox/virtualization/filtersets.py:193 +#: circuits/filtersets.py:51 circuits/filtersets.py:218 dcim/filtersets.py:135 +#: dcim/filtersets.py:232 dcim/filtersets.py:353 dcim/filtersets.py:484 +#: dcim/filtersets.py:1041 dcim/filtersets.py:1388 dcim/filtersets.py:1923 +#: dcim/filtersets.py:2166 dcim/filtersets.py:2224 extras/filtersets.py:515 +#: ipam/filtersets.py:359 ipam/filtersets.py:979 +#: virtualization/filtersets.py:65 virtualization/filtersets.py:193 msgid "Site group (slug)" msgstr "Grupo de sites (slug)" -#: netbox/circuits/filtersets.py:56 netbox/circuits/forms/bulk_edit.py:188 -#: netbox/circuits/forms/bulk_edit.py:216 -#: netbox/circuits/forms/bulk_import.py:124 -#: netbox/circuits/forms/filtersets.py:51 -#: netbox/circuits/forms/filtersets.py:171 -#: netbox/circuits/forms/filtersets.py:209 -#: netbox/circuits/forms/model_forms.py:138 -#: netbox/circuits/forms/model_forms.py:154 -#: netbox/circuits/tables/circuits.py:113 netbox/dcim/forms/bulk_edit.py:168 -#: netbox/dcim/forms/bulk_edit.py:329 netbox/dcim/forms/bulk_edit.py:677 -#: netbox/dcim/forms/bulk_edit.py:873 netbox/dcim/forms/bulk_import.py:131 -#: netbox/dcim/forms/bulk_import.py:230 netbox/dcim/forms/bulk_import.py:309 -#: netbox/dcim/forms/bulk_import.py:540 netbox/dcim/forms/bulk_import.py:1311 -#: netbox/dcim/forms/bulk_import.py:1339 netbox/dcim/forms/filtersets.py:87 -#: netbox/dcim/forms/filtersets.py:225 netbox/dcim/forms/filtersets.py:342 -#: netbox/dcim/forms/filtersets.py:439 netbox/dcim/forms/filtersets.py:753 -#: netbox/dcim/forms/filtersets.py:997 netbox/dcim/forms/filtersets.py:1021 -#: netbox/dcim/forms/filtersets.py:1111 netbox/dcim/forms/filtersets.py:1149 -#: netbox/dcim/forms/filtersets.py:1584 netbox/dcim/forms/filtersets.py:1608 -#: netbox/dcim/forms/filtersets.py:1632 netbox/dcim/forms/model_forms.py:137 -#: netbox/dcim/forms/model_forms.py:165 netbox/dcim/forms/model_forms.py:238 -#: netbox/dcim/forms/model_forms.py:463 netbox/dcim/forms/model_forms.py:723 -#: netbox/dcim/forms/object_create.py:391 netbox/dcim/tables/devices.py:153 -#: netbox/dcim/tables/power.py:26 netbox/dcim/tables/power.py:93 -#: netbox/dcim/tables/racks.py:122 netbox/dcim/tables/racks.py:207 -#: netbox/dcim/tables/sites.py:134 netbox/extras/filtersets.py:525 -#: netbox/ipam/forms/bulk_edit.py:217 netbox/ipam/forms/bulk_edit.py:284 -#: netbox/ipam/forms/bulk_edit.py:451 netbox/ipam/forms/bulk_edit.py:529 -#: netbox/ipam/forms/bulk_import.py:171 netbox/ipam/forms/bulk_import.py:429 -#: netbox/ipam/forms/filtersets.py:153 netbox/ipam/forms/filtersets.py:231 -#: netbox/ipam/forms/filtersets.py:432 netbox/ipam/forms/filtersets.py:489 -#: netbox/ipam/forms/model_forms.py:205 netbox/ipam/forms/model_forms.py:636 -#: netbox/ipam/tables/ip.py:245 netbox/ipam/tables/vlans.py:118 -#: netbox/ipam/tables/vlans.py:221 -#: netbox/templates/circuits/inc/circuit_termination_fields.html:6 -#: netbox/templates/dcim/device.html:22 -#: netbox/templates/dcim/inc/cable_termination.html:8 -#: netbox/templates/dcim/inc/cable_termination.html:33 -#: netbox/templates/dcim/location.html:37 -#: netbox/templates/dcim/powerpanel.html:22 netbox/templates/dcim/rack.html:20 -#: netbox/templates/dcim/rackreservation.html:28 -#: netbox/templates/dcim/site.html:28 netbox/templates/ipam/prefix.html:56 -#: netbox/templates/ipam/vlan.html:23 netbox/templates/ipam/vlan_edit.html:40 -#: netbox/templates/virtualization/cluster.html:42 -#: netbox/templates/virtualization/virtualmachine.html:95 -#: netbox/virtualization/forms/bulk_edit.py:91 -#: netbox/virtualization/forms/bulk_edit.py:109 -#: netbox/virtualization/forms/bulk_edit.py:124 -#: netbox/virtualization/forms/bulk_import.py:59 -#: netbox/virtualization/forms/bulk_import.py:85 -#: netbox/virtualization/forms/filtersets.py:79 -#: netbox/virtualization/forms/filtersets.py:148 -#: netbox/virtualization/forms/model_forms.py:71 -#: netbox/virtualization/forms/model_forms.py:104 -#: netbox/virtualization/forms/model_forms.py:171 -#: netbox/virtualization/tables/clusters.py:77 -#: netbox/virtualization/tables/virtualmachines.py:63 -#: netbox/vpn/forms/filtersets.py:266 netbox/wireless/forms/model_forms.py:76 -#: netbox/wireless/forms/model_forms.py:118 +#: circuits/filtersets.py:56 circuits/forms/bulk_edit.py:188 +#: circuits/forms/bulk_edit.py:216 circuits/forms/bulk_import.py:124 +#: circuits/forms/filtersets.py:51 circuits/forms/filtersets.py:171 +#: circuits/forms/filtersets.py:209 circuits/forms/model_forms.py:138 +#: circuits/forms/model_forms.py:154 circuits/tables/circuits.py:113 +#: dcim/forms/bulk_edit.py:168 dcim/forms/bulk_edit.py:329 +#: dcim/forms/bulk_edit.py:677 dcim/forms/bulk_edit.py:873 +#: dcim/forms/bulk_import.py:131 dcim/forms/bulk_import.py:230 +#: dcim/forms/bulk_import.py:309 dcim/forms/bulk_import.py:540 +#: dcim/forms/bulk_import.py:1311 dcim/forms/bulk_import.py:1339 +#: dcim/forms/filtersets.py:87 dcim/forms/filtersets.py:225 +#: dcim/forms/filtersets.py:342 dcim/forms/filtersets.py:439 +#: dcim/forms/filtersets.py:753 dcim/forms/filtersets.py:997 +#: dcim/forms/filtersets.py:1021 dcim/forms/filtersets.py:1111 +#: dcim/forms/filtersets.py:1149 dcim/forms/filtersets.py:1584 +#: dcim/forms/filtersets.py:1608 dcim/forms/filtersets.py:1632 +#: dcim/forms/model_forms.py:137 dcim/forms/model_forms.py:165 +#: dcim/forms/model_forms.py:238 dcim/forms/model_forms.py:463 +#: dcim/forms/model_forms.py:723 dcim/forms/object_create.py:391 +#: dcim/tables/devices.py:153 dcim/tables/power.py:26 dcim/tables/power.py:93 +#: dcim/tables/racks.py:122 dcim/tables/racks.py:207 dcim/tables/sites.py:134 +#: extras/filtersets.py:525 ipam/forms/bulk_edit.py:218 +#: ipam/forms/bulk_edit.py:285 ipam/forms/bulk_edit.py:484 +#: ipam/forms/bulk_import.py:171 ipam/forms/bulk_import.py:429 +#: ipam/forms/filtersets.py:153 ipam/forms/filtersets.py:231 +#: ipam/forms/filtersets.py:432 ipam/forms/filtersets.py:489 +#: ipam/forms/model_forms.py:205 ipam/forms/model_forms.py:636 +#: ipam/tables/ip.py:245 ipam/tables/vlans.py:118 ipam/tables/vlans.py:221 +#: templates/circuits/inc/circuit_termination_fields.html:6 +#: templates/dcim/device.html:22 templates/dcim/inc/cable_termination.html:8 +#: templates/dcim/inc/cable_termination.html:33 +#: templates/dcim/location.html:37 templates/dcim/powerpanel.html:22 +#: templates/dcim/rack.html:20 templates/dcim/rackreservation.html:28 +#: templates/dcim/site.html:28 templates/ipam/prefix.html:56 +#: templates/ipam/vlan.html:23 templates/ipam/vlan_edit.html:40 +#: templates/virtualization/cluster.html:42 +#: templates/virtualization/virtualmachine.html:95 +#: virtualization/forms/bulk_edit.py:91 virtualization/forms/bulk_edit.py:109 +#: virtualization/forms/bulk_edit.py:124 +#: virtualization/forms/bulk_import.py:59 +#: virtualization/forms/bulk_import.py:85 +#: virtualization/forms/filtersets.py:79 +#: virtualization/forms/filtersets.py:148 +#: virtualization/forms/model_forms.py:71 +#: virtualization/forms/model_forms.py:104 +#: virtualization/forms/model_forms.py:171 +#: virtualization/tables/clusters.py:77 +#: virtualization/tables/virtualmachines.py:63 vpn/forms/filtersets.py:266 +#: wireless/forms/model_forms.py:76 wireless/forms/model_forms.py:118 msgid "Site" msgstr "Site" -#: netbox/circuits/filtersets.py:62 netbox/circuits/filtersets.py:229 -#: netbox/circuits/filtersets.py:274 netbox/dcim/filtersets.py:242 -#: netbox/dcim/filtersets.py:363 netbox/dcim/filtersets.py:458 -#: netbox/extras/filtersets.py:531 netbox/ipam/filtersets.py:238 -#: netbox/ipam/filtersets.py:369 netbox/ipam/filtersets.py:989 -#: netbox/virtualization/filtersets.py:75 -#: netbox/virtualization/filtersets.py:203 netbox/vpn/filtersets.py:363 +#: circuits/filtersets.py:62 circuits/filtersets.py:229 +#: circuits/filtersets.py:274 dcim/filtersets.py:242 dcim/filtersets.py:363 +#: dcim/filtersets.py:458 extras/filtersets.py:531 ipam/filtersets.py:238 +#: ipam/filtersets.py:369 ipam/filtersets.py:989 +#: virtualization/filtersets.py:75 virtualization/filtersets.py:203 +#: vpn/filtersets.py:363 msgid "Site (slug)" msgstr "Site (slug)" -#: netbox/circuits/filtersets.py:67 +#: circuits/filtersets.py:67 msgid "ASN (ID)" msgstr "ASN (ID)" -#: netbox/circuits/filtersets.py:73 netbox/circuits/forms/filtersets.py:31 -#: netbox/ipam/forms/model_forms.py:159 netbox/ipam/models/asns.py:108 -#: netbox/ipam/models/asns.py:125 netbox/ipam/tables/asn.py:41 -#: netbox/templates/ipam/asn.html:20 +#: circuits/filtersets.py:73 circuits/forms/filtersets.py:31 +#: ipam/forms/model_forms.py:159 ipam/models/asns.py:108 +#: ipam/models/asns.py:125 ipam/tables/asn.py:41 templates/ipam/asn.html:20 msgid "ASN" msgstr "ASN" -#: netbox/circuits/filtersets.py:95 netbox/circuits/filtersets.py:122 -#: netbox/circuits/filtersets.py:156 netbox/circuits/filtersets.py:283 -#: netbox/circuits/filtersets.py:325 netbox/ipam/filtersets.py:243 +#: circuits/filtersets.py:95 circuits/filtersets.py:122 +#: circuits/filtersets.py:156 circuits/filtersets.py:283 +#: circuits/filtersets.py:325 ipam/filtersets.py:243 msgid "Provider (ID)" msgstr "Provedor (ID)" -#: netbox/circuits/filtersets.py:101 netbox/circuits/filtersets.py:128 -#: netbox/circuits/filtersets.py:162 netbox/circuits/filtersets.py:289 -#: netbox/circuits/filtersets.py:331 netbox/ipam/filtersets.py:249 +#: circuits/filtersets.py:101 circuits/filtersets.py:128 +#: circuits/filtersets.py:162 circuits/filtersets.py:289 +#: circuits/filtersets.py:331 ipam/filtersets.py:249 msgid "Provider (slug)" msgstr "Provedor (slug)" -#: netbox/circuits/filtersets.py:167 +#: circuits/filtersets.py:167 msgid "Provider account (ID)" msgstr "Conta do provedor (ID)" -#: netbox/circuits/filtersets.py:173 +#: circuits/filtersets.py:173 msgid "Provider account (account)" msgstr "Conta do provedor (conta)" -#: netbox/circuits/filtersets.py:178 +#: circuits/filtersets.py:178 msgid "Provider network (ID)" msgstr "Rede do provedor (ID)" -#: netbox/circuits/filtersets.py:182 +#: circuits/filtersets.py:182 msgid "Circuit type (ID)" msgstr "Tipo de circuito (ID)" -#: netbox/circuits/filtersets.py:188 +#: circuits/filtersets.py:188 msgid "Circuit type (slug)" msgstr "Tipo de circuito (slug)" -#: netbox/circuits/filtersets.py:223 netbox/circuits/filtersets.py:268 -#: netbox/dcim/filtersets.py:236 netbox/dcim/filtersets.py:357 -#: netbox/dcim/filtersets.py:452 netbox/dcim/filtersets.py:1045 -#: netbox/dcim/filtersets.py:1393 netbox/dcim/filtersets.py:1928 -#: netbox/dcim/filtersets.py:2170 netbox/dcim/filtersets.py:2229 -#: netbox/ipam/filtersets.py:232 netbox/ipam/filtersets.py:363 -#: netbox/ipam/filtersets.py:983 netbox/virtualization/filtersets.py:69 -#: netbox/virtualization/filtersets.py:197 netbox/vpn/filtersets.py:368 +#: circuits/filtersets.py:223 circuits/filtersets.py:268 +#: dcim/filtersets.py:236 dcim/filtersets.py:357 dcim/filtersets.py:452 +#: dcim/filtersets.py:1045 dcim/filtersets.py:1393 dcim/filtersets.py:1928 +#: dcim/filtersets.py:2170 dcim/filtersets.py:2229 ipam/filtersets.py:232 +#: ipam/filtersets.py:363 ipam/filtersets.py:983 +#: virtualization/filtersets.py:69 virtualization/filtersets.py:197 +#: vpn/filtersets.py:368 msgid "Site (ID)" msgstr "Site (ID)" -#: netbox/circuits/filtersets.py:233 netbox/circuits/filtersets.py:237 +#: circuits/filtersets.py:233 circuits/filtersets.py:237 msgid "Termination A (ID)" msgstr "Terminação A (ID)" -#: netbox/circuits/filtersets.py:260 netbox/circuits/filtersets.py:320 -#: netbox/core/filtersets.py:77 netbox/core/filtersets.py:136 -#: netbox/core/filtersets.py:173 netbox/dcim/filtersets.py:751 -#: netbox/dcim/filtersets.py:1362 netbox/dcim/filtersets.py:2277 -#: netbox/extras/filtersets.py:41 netbox/extras/filtersets.py:63 -#: netbox/extras/filtersets.py:92 netbox/extras/filtersets.py:132 -#: netbox/extras/filtersets.py:181 netbox/extras/filtersets.py:209 -#: netbox/extras/filtersets.py:239 netbox/extras/filtersets.py:276 -#: netbox/extras/filtersets.py:348 netbox/extras/filtersets.py:391 -#: netbox/extras/filtersets.py:438 netbox/extras/filtersets.py:498 -#: netbox/extras/filtersets.py:657 netbox/extras/filtersets.py:703 -#: netbox/ipam/forms/model_forms.py:449 netbox/netbox/filtersets.py:282 -#: netbox/netbox/forms/__init__.py:22 netbox/netbox/forms/base.py:167 -#: netbox/templates/htmx/object_selector.html:28 -#: netbox/templates/inc/filter_list.html:45 -#: netbox/templates/ipam/ipaddress_assign.html:29 -#: netbox/templates/search.html:7 netbox/templates/search.html:26 -#: netbox/tenancy/filtersets.py:99 netbox/users/filtersets.py:23 -#: netbox/users/filtersets.py:57 netbox/users/filtersets.py:102 -#: netbox/users/filtersets.py:150 netbox/utilities/forms/forms.py:104 -#: netbox/utilities/templates/navigation/menu.html:16 +#: circuits/filtersets.py:260 circuits/filtersets.py:320 core/filtersets.py:77 +#: core/filtersets.py:136 core/filtersets.py:173 dcim/filtersets.py:751 +#: dcim/filtersets.py:1362 dcim/filtersets.py:2277 extras/filtersets.py:41 +#: extras/filtersets.py:63 extras/filtersets.py:92 extras/filtersets.py:132 +#: extras/filtersets.py:181 extras/filtersets.py:209 extras/filtersets.py:239 +#: extras/filtersets.py:276 extras/filtersets.py:348 extras/filtersets.py:391 +#: extras/filtersets.py:438 extras/filtersets.py:498 extras/filtersets.py:657 +#: extras/filtersets.py:703 ipam/forms/model_forms.py:449 +#: netbox/filtersets.py:282 netbox/forms/__init__.py:22 +#: netbox/forms/base.py:167 templates/htmx/object_selector.html:28 +#: templates/inc/filter_list.html:46 templates/ipam/ipaddress_assign.html:29 +#: templates/search.html:7 templates/search.html:26 tenancy/filtersets.py:99 +#: users/filtersets.py:23 users/filtersets.py:57 users/filtersets.py:102 +#: users/filtersets.py:150 utilities/forms/forms.py:104 +#: utilities/templates/navigation/menu.html:16 msgid "Search" msgstr "Busca" -#: netbox/circuits/filtersets.py:264 netbox/circuits/forms/bulk_edit.py:172 -#: netbox/circuits/forms/bulk_edit.py:246 -#: netbox/circuits/forms/bulk_import.py:115 -#: netbox/circuits/forms/filtersets.py:198 -#: netbox/circuits/forms/filtersets.py:214 -#: netbox/circuits/forms/filtersets.py:260 -#: netbox/circuits/forms/model_forms.py:111 -#: netbox/circuits/forms/model_forms.py:133 -#: netbox/circuits/forms/model_forms.py:199 -#: netbox/circuits/tables/circuits.py:104 -#: netbox/circuits/tables/circuits.py:164 netbox/dcim/forms/connections.py:73 -#: netbox/templates/circuits/circuit.html:15 -#: netbox/templates/circuits/circuitgroupassignment.html:26 -#: netbox/templates/circuits/circuittermination.html:19 -#: netbox/templates/dcim/inc/cable_termination.html:55 -#: netbox/templates/dcim/trace/circuit.html:4 +#: circuits/filtersets.py:264 circuits/forms/bulk_edit.py:172 +#: circuits/forms/bulk_edit.py:246 circuits/forms/bulk_import.py:115 +#: circuits/forms/filtersets.py:198 circuits/forms/filtersets.py:214 +#: circuits/forms/filtersets.py:260 circuits/forms/model_forms.py:111 +#: circuits/forms/model_forms.py:133 circuits/forms/model_forms.py:199 +#: circuits/tables/circuits.py:104 circuits/tables/circuits.py:164 +#: dcim/forms/connections.py:73 templates/circuits/circuit.html:15 +#: templates/circuits/circuitgroupassignment.html:26 +#: templates/circuits/circuittermination.html:19 +#: templates/dcim/inc/cable_termination.html:55 +#: templates/dcim/trace/circuit.html:4 msgid "Circuit" msgstr "Circuito" -#: netbox/circuits/filtersets.py:278 +#: circuits/filtersets.py:278 msgid "ProviderNetwork (ID)" msgstr "Rede do provedor (ID)" -#: netbox/circuits/filtersets.py:335 +#: circuits/filtersets.py:335 msgid "Circuit (ID)" msgstr "Circuito (ID)" -#: netbox/circuits/filtersets.py:341 +#: circuits/filtersets.py:341 msgid "Circuit (CID)" msgstr "Circuito (CID)" -#: netbox/circuits/filtersets.py:345 +#: circuits/filtersets.py:345 msgid "Circuit group (ID)" msgstr "Grupo de circuitos (ID)" -#: netbox/circuits/filtersets.py:351 +#: circuits/filtersets.py:351 msgid "Circuit group (slug)" msgstr "Grupo de circuitos (slug)" -#: netbox/circuits/forms/bulk_edit.py:30 -#: netbox/circuits/forms/filtersets.py:56 -#: netbox/circuits/forms/model_forms.py:29 -#: netbox/circuits/tables/providers.py:33 netbox/dcim/forms/bulk_edit.py:128 -#: netbox/dcim/forms/filtersets.py:195 netbox/dcim/forms/model_forms.py:123 -#: netbox/dcim/tables/sites.py:94 netbox/ipam/models/asns.py:126 -#: netbox/ipam/tables/asn.py:27 netbox/ipam/views.py:213 -#: netbox/netbox/navigation/menu.py:172 netbox/netbox/navigation/menu.py:175 -#: netbox/templates/circuits/provider.html:23 +#: circuits/forms/bulk_edit.py:30 circuits/forms/filtersets.py:56 +#: circuits/forms/model_forms.py:29 circuits/tables/providers.py:33 +#: dcim/forms/bulk_edit.py:128 dcim/forms/filtersets.py:195 +#: dcim/forms/model_forms.py:123 dcim/tables/sites.py:94 +#: ipam/models/asns.py:126 ipam/tables/asn.py:27 ipam/views.py:213 +#: netbox/navigation/menu.py:172 netbox/navigation/menu.py:175 +#: templates/circuits/provider.html:23 msgid "ASNs" msgstr "ASNs" -#: netbox/circuits/forms/bulk_edit.py:34 netbox/circuits/forms/bulk_edit.py:56 -#: netbox/circuits/forms/bulk_edit.py:83 -#: netbox/circuits/forms/bulk_edit.py:104 -#: netbox/circuits/forms/bulk_edit.py:164 -#: netbox/circuits/forms/bulk_edit.py:183 -#: netbox/circuits/forms/bulk_edit.py:228 netbox/core/forms/bulk_edit.py:28 -#: netbox/dcim/forms/bulk_create.py:35 netbox/dcim/forms/bulk_edit.py:73 -#: netbox/dcim/forms/bulk_edit.py:92 netbox/dcim/forms/bulk_edit.py:151 -#: netbox/dcim/forms/bulk_edit.py:192 netbox/dcim/forms/bulk_edit.py:210 -#: netbox/dcim/forms/bulk_edit.py:288 netbox/dcim/forms/bulk_edit.py:432 -#: netbox/dcim/forms/bulk_edit.py:466 netbox/dcim/forms/bulk_edit.py:481 -#: netbox/dcim/forms/bulk_edit.py:540 netbox/dcim/forms/bulk_edit.py:584 -#: netbox/dcim/forms/bulk_edit.py:618 netbox/dcim/forms/bulk_edit.py:642 -#: netbox/dcim/forms/bulk_edit.py:715 netbox/dcim/forms/bulk_edit.py:767 -#: netbox/dcim/forms/bulk_edit.py:819 netbox/dcim/forms/bulk_edit.py:842 -#: netbox/dcim/forms/bulk_edit.py:890 netbox/dcim/forms/bulk_edit.py:960 -#: netbox/dcim/forms/bulk_edit.py:1013 netbox/dcim/forms/bulk_edit.py:1048 -#: netbox/dcim/forms/bulk_edit.py:1088 netbox/dcim/forms/bulk_edit.py:1132 -#: netbox/dcim/forms/bulk_edit.py:1177 netbox/dcim/forms/bulk_edit.py:1204 -#: netbox/dcim/forms/bulk_edit.py:1222 netbox/dcim/forms/bulk_edit.py:1240 -#: netbox/dcim/forms/bulk_edit.py:1258 netbox/dcim/forms/bulk_edit.py:1682 -#: netbox/extras/forms/bulk_edit.py:39 netbox/extras/forms/bulk_edit.py:149 -#: netbox/extras/forms/bulk_edit.py:178 netbox/extras/forms/bulk_edit.py:208 -#: netbox/extras/forms/bulk_edit.py:256 netbox/extras/forms/bulk_edit.py:274 -#: netbox/extras/forms/bulk_edit.py:298 netbox/extras/forms/bulk_edit.py:312 -#: netbox/extras/forms/bulk_edit.py:339 netbox/extras/tables/tables.py:79 -#: netbox/ipam/forms/bulk_edit.py:52 netbox/ipam/forms/bulk_edit.py:72 -#: netbox/ipam/forms/bulk_edit.py:92 netbox/ipam/forms/bulk_edit.py:116 -#: netbox/ipam/forms/bulk_edit.py:145 netbox/ipam/forms/bulk_edit.py:174 -#: netbox/ipam/forms/bulk_edit.py:193 netbox/ipam/forms/bulk_edit.py:275 -#: netbox/ipam/forms/bulk_edit.py:320 netbox/ipam/forms/bulk_edit.py:368 -#: netbox/ipam/forms/bulk_edit.py:411 netbox/ipam/forms/bulk_edit.py:427 -#: netbox/ipam/forms/bulk_edit.py:561 netbox/ipam/forms/bulk_edit.py:592 -#: netbox/templates/account/token.html:35 -#: netbox/templates/circuits/circuit.html:59 -#: netbox/templates/circuits/circuitgroup.html:32 -#: netbox/templates/circuits/circuittype.html:26 -#: netbox/templates/circuits/inc/circuit_termination_fields.html:88 -#: netbox/templates/circuits/provider.html:33 -#: netbox/templates/circuits/providernetwork.html:32 -#: netbox/templates/core/datasource.html:54 -#: netbox/templates/core/plugin.html:79 netbox/templates/dcim/cable.html:36 -#: netbox/templates/dcim/consoleport.html:44 -#: netbox/templates/dcim/consoleserverport.html:44 -#: netbox/templates/dcim/device.html:94 -#: netbox/templates/dcim/devicebay.html:32 -#: netbox/templates/dcim/devicerole.html:30 -#: netbox/templates/dcim/devicetype.html:33 -#: netbox/templates/dcim/frontport.html:58 -#: netbox/templates/dcim/interface.html:69 -#: netbox/templates/dcim/inventoryitem.html:60 -#: netbox/templates/dcim/inventoryitemrole.html:22 -#: netbox/templates/dcim/location.html:33 -#: netbox/templates/dcim/manufacturer.html:40 -#: netbox/templates/dcim/module.html:73 -#: netbox/templates/dcim/modulebay.html:42 -#: netbox/templates/dcim/moduletype.html:26 -#: netbox/templates/dcim/platform.html:33 -#: netbox/templates/dcim/powerfeed.html:40 -#: netbox/templates/dcim/poweroutlet.html:40 -#: netbox/templates/dcim/powerpanel.html:30 -#: netbox/templates/dcim/powerport.html:40 netbox/templates/dcim/rack.html:53 -#: netbox/templates/dcim/rackreservation.html:62 -#: netbox/templates/dcim/rackrole.html:26 -#: netbox/templates/dcim/racktype.html:24 -#: netbox/templates/dcim/rearport.html:54 netbox/templates/dcim/region.html:33 -#: netbox/templates/dcim/site.html:60 netbox/templates/dcim/sitegroup.html:33 -#: netbox/templates/dcim/virtualchassis.html:31 -#: netbox/templates/extras/configcontext.html:21 -#: netbox/templates/extras/configtemplate.html:17 -#: netbox/templates/extras/customfield.html:34 -#: netbox/templates/extras/dashboard/widget_add.html:14 -#: netbox/templates/extras/eventrule.html:21 -#: netbox/templates/extras/exporttemplate.html:19 -#: netbox/templates/extras/notificationgroup.html:20 -#: netbox/templates/extras/savedfilter.html:17 -#: netbox/templates/extras/script_list.html:45 -#: netbox/templates/extras/tag.html:20 netbox/templates/extras/webhook.html:17 -#: netbox/templates/generic/bulk_import.html:120 -#: netbox/templates/ipam/aggregate.html:43 netbox/templates/ipam/asn.html:42 -#: netbox/templates/ipam/asnrange.html:38 -#: netbox/templates/ipam/fhrpgroup.html:34 -#: netbox/templates/ipam/ipaddress.html:55 -#: netbox/templates/ipam/iprange.html:67 netbox/templates/ipam/prefix.html:81 -#: netbox/templates/ipam/rir.html:26 netbox/templates/ipam/role.html:26 -#: netbox/templates/ipam/routetarget.html:21 -#: netbox/templates/ipam/service.html:50 -#: netbox/templates/ipam/servicetemplate.html:27 -#: netbox/templates/ipam/vlan.html:62 netbox/templates/ipam/vlangroup.html:34 -#: netbox/templates/ipam/vrf.html:33 netbox/templates/tenancy/contact.html:67 -#: netbox/templates/tenancy/contactgroup.html:25 -#: netbox/templates/tenancy/contactrole.html:22 -#: netbox/templates/tenancy/tenant.html:24 -#: netbox/templates/tenancy/tenantgroup.html:33 -#: netbox/templates/users/group.html:21 -#: netbox/templates/users/objectpermission.html:21 -#: netbox/templates/users/token.html:27 -#: netbox/templates/virtualization/cluster.html:25 -#: netbox/templates/virtualization/clustergroup.html:26 -#: netbox/templates/virtualization/clustertype.html:26 -#: netbox/templates/virtualization/virtualdisk.html:39 -#: netbox/templates/virtualization/virtualmachine.html:31 -#: netbox/templates/virtualization/vminterface.html:51 -#: netbox/templates/vpn/ikepolicy.html:17 -#: netbox/templates/vpn/ikeproposal.html:17 -#: netbox/templates/vpn/ipsecpolicy.html:17 -#: netbox/templates/vpn/ipsecprofile.html:17 -#: netbox/templates/vpn/ipsecprofile.html:40 -#: netbox/templates/vpn/ipsecprofile.html:73 -#: netbox/templates/vpn/ipsecproposal.html:17 -#: netbox/templates/vpn/l2vpn.html:26 netbox/templates/vpn/tunnel.html:33 -#: netbox/templates/vpn/tunnelgroup.html:30 -#: netbox/templates/wireless/wirelesslan.html:26 -#: netbox/templates/wireless/wirelesslangroup.html:33 -#: netbox/templates/wireless/wirelesslink.html:34 -#: netbox/tenancy/forms/bulk_edit.py:32 netbox/tenancy/forms/bulk_edit.py:80 -#: netbox/tenancy/forms/bulk_edit.py:122 netbox/users/forms/bulk_edit.py:64 -#: netbox/users/forms/bulk_edit.py:82 netbox/users/forms/bulk_edit.py:112 -#: netbox/virtualization/forms/bulk_edit.py:32 -#: netbox/virtualization/forms/bulk_edit.py:46 -#: netbox/virtualization/forms/bulk_edit.py:100 -#: netbox/virtualization/forms/bulk_edit.py:177 -#: netbox/virtualization/forms/bulk_edit.py:228 -#: netbox/virtualization/forms/bulk_edit.py:337 -#: netbox/vpn/forms/bulk_edit.py:28 netbox/vpn/forms/bulk_edit.py:64 -#: netbox/vpn/forms/bulk_edit.py:121 netbox/vpn/forms/bulk_edit.py:155 -#: netbox/vpn/forms/bulk_edit.py:190 netbox/vpn/forms/bulk_edit.py:215 -#: netbox/vpn/forms/bulk_edit.py:247 netbox/vpn/forms/bulk_edit.py:274 -#: netbox/wireless/forms/bulk_edit.py:29 netbox/wireless/forms/bulk_edit.py:82 -#: netbox/wireless/forms/bulk_edit.py:140 +#: circuits/forms/bulk_edit.py:34 circuits/forms/bulk_edit.py:56 +#: circuits/forms/bulk_edit.py:83 circuits/forms/bulk_edit.py:104 +#: circuits/forms/bulk_edit.py:164 circuits/forms/bulk_edit.py:183 +#: circuits/forms/bulk_edit.py:228 core/forms/bulk_edit.py:28 +#: dcim/forms/bulk_create.py:35 dcim/forms/bulk_edit.py:73 +#: dcim/forms/bulk_edit.py:92 dcim/forms/bulk_edit.py:151 +#: dcim/forms/bulk_edit.py:192 dcim/forms/bulk_edit.py:210 +#: dcim/forms/bulk_edit.py:288 dcim/forms/bulk_edit.py:432 +#: dcim/forms/bulk_edit.py:466 dcim/forms/bulk_edit.py:481 +#: dcim/forms/bulk_edit.py:540 dcim/forms/bulk_edit.py:584 +#: dcim/forms/bulk_edit.py:618 dcim/forms/bulk_edit.py:642 +#: dcim/forms/bulk_edit.py:715 dcim/forms/bulk_edit.py:767 +#: dcim/forms/bulk_edit.py:819 dcim/forms/bulk_edit.py:842 +#: dcim/forms/bulk_edit.py:890 dcim/forms/bulk_edit.py:960 +#: dcim/forms/bulk_edit.py:1013 dcim/forms/bulk_edit.py:1048 +#: dcim/forms/bulk_edit.py:1088 dcim/forms/bulk_edit.py:1132 +#: dcim/forms/bulk_edit.py:1177 dcim/forms/bulk_edit.py:1204 +#: dcim/forms/bulk_edit.py:1222 dcim/forms/bulk_edit.py:1240 +#: dcim/forms/bulk_edit.py:1258 dcim/forms/bulk_edit.py:1682 +#: extras/forms/bulk_edit.py:39 extras/forms/bulk_edit.py:149 +#: extras/forms/bulk_edit.py:178 extras/forms/bulk_edit.py:208 +#: extras/forms/bulk_edit.py:256 extras/forms/bulk_edit.py:274 +#: extras/forms/bulk_edit.py:298 extras/forms/bulk_edit.py:312 +#: extras/forms/bulk_edit.py:339 extras/tables/tables.py:79 +#: ipam/forms/bulk_edit.py:53 ipam/forms/bulk_edit.py:73 +#: ipam/forms/bulk_edit.py:93 ipam/forms/bulk_edit.py:117 +#: ipam/forms/bulk_edit.py:146 ipam/forms/bulk_edit.py:175 +#: ipam/forms/bulk_edit.py:194 ipam/forms/bulk_edit.py:276 +#: ipam/forms/bulk_edit.py:321 ipam/forms/bulk_edit.py:369 +#: ipam/forms/bulk_edit.py:412 ipam/forms/bulk_edit.py:428 +#: ipam/forms/bulk_edit.py:516 ipam/forms/bulk_edit.py:547 +#: templates/account/token.html:35 templates/circuits/circuit.html:59 +#: templates/circuits/circuitgroup.html:32 +#: templates/circuits/circuittype.html:26 +#: templates/circuits/inc/circuit_termination_fields.html:88 +#: templates/circuits/provider.html:33 +#: templates/circuits/providernetwork.html:32 +#: templates/core/datasource.html:54 templates/core/plugin.html:80 +#: templates/dcim/cable.html:36 templates/dcim/consoleport.html:44 +#: templates/dcim/consoleserverport.html:44 templates/dcim/device.html:94 +#: templates/dcim/devicebay.html:32 templates/dcim/devicerole.html:30 +#: templates/dcim/devicetype.html:33 templates/dcim/frontport.html:58 +#: templates/dcim/interface.html:69 templates/dcim/inventoryitem.html:60 +#: templates/dcim/inventoryitemrole.html:22 templates/dcim/location.html:33 +#: templates/dcim/manufacturer.html:40 templates/dcim/module.html:73 +#: templates/dcim/modulebay.html:42 templates/dcim/moduletype.html:37 +#: templates/dcim/platform.html:33 templates/dcim/powerfeed.html:40 +#: templates/dcim/poweroutlet.html:40 templates/dcim/powerpanel.html:30 +#: templates/dcim/powerport.html:40 templates/dcim/rack.html:53 +#: templates/dcim/rackreservation.html:62 templates/dcim/rackrole.html:26 +#: templates/dcim/racktype.html:24 templates/dcim/rearport.html:54 +#: templates/dcim/region.html:33 templates/dcim/site.html:60 +#: templates/dcim/sitegroup.html:33 templates/dcim/virtualchassis.html:31 +#: templates/extras/configcontext.html:21 +#: templates/extras/configtemplate.html:17 +#: templates/extras/customfield.html:34 +#: templates/extras/dashboard/widget_add.html:14 +#: templates/extras/eventrule.html:21 templates/extras/exporttemplate.html:19 +#: templates/extras/notificationgroup.html:20 +#: templates/extras/savedfilter.html:17 templates/extras/script_list.html:45 +#: templates/extras/tag.html:20 templates/extras/webhook.html:17 +#: templates/generic/bulk_import.html:120 templates/ipam/aggregate.html:43 +#: templates/ipam/asn.html:42 templates/ipam/asnrange.html:38 +#: templates/ipam/fhrpgroup.html:34 templates/ipam/ipaddress.html:55 +#: templates/ipam/iprange.html:67 templates/ipam/prefix.html:81 +#: templates/ipam/rir.html:26 templates/ipam/role.html:26 +#: templates/ipam/routetarget.html:21 templates/ipam/service.html:50 +#: templates/ipam/servicetemplate.html:27 templates/ipam/vlan.html:62 +#: templates/ipam/vlangroup.html:34 templates/ipam/vrf.html:33 +#: templates/tenancy/contact.html:67 templates/tenancy/contactgroup.html:25 +#: templates/tenancy/contactrole.html:22 templates/tenancy/tenant.html:24 +#: templates/tenancy/tenantgroup.html:33 templates/users/group.html:21 +#: templates/users/objectpermission.html:21 templates/users/token.html:27 +#: templates/virtualization/cluster.html:25 +#: templates/virtualization/clustergroup.html:26 +#: templates/virtualization/clustertype.html:26 +#: templates/virtualization/virtualdisk.html:39 +#: templates/virtualization/virtualmachine.html:31 +#: templates/virtualization/vminterface.html:51 +#: templates/vpn/ikepolicy.html:17 templates/vpn/ikeproposal.html:17 +#: templates/vpn/ipsecpolicy.html:17 templates/vpn/ipsecprofile.html:17 +#: templates/vpn/ipsecprofile.html:40 templates/vpn/ipsecprofile.html:73 +#: templates/vpn/ipsecproposal.html:17 templates/vpn/l2vpn.html:26 +#: templates/vpn/tunnel.html:33 templates/vpn/tunnelgroup.html:30 +#: templates/wireless/wirelesslan.html:26 +#: templates/wireless/wirelesslangroup.html:33 +#: templates/wireless/wirelesslink.html:34 tenancy/forms/bulk_edit.py:32 +#: tenancy/forms/bulk_edit.py:80 tenancy/forms/bulk_edit.py:122 +#: users/forms/bulk_edit.py:64 users/forms/bulk_edit.py:82 +#: users/forms/bulk_edit.py:112 virtualization/forms/bulk_edit.py:32 +#: virtualization/forms/bulk_edit.py:46 virtualization/forms/bulk_edit.py:100 +#: virtualization/forms/bulk_edit.py:177 virtualization/forms/bulk_edit.py:228 +#: virtualization/forms/bulk_edit.py:337 vpn/forms/bulk_edit.py:28 +#: vpn/forms/bulk_edit.py:64 vpn/forms/bulk_edit.py:121 +#: vpn/forms/bulk_edit.py:155 vpn/forms/bulk_edit.py:190 +#: vpn/forms/bulk_edit.py:215 vpn/forms/bulk_edit.py:247 +#: vpn/forms/bulk_edit.py:274 wireless/forms/bulk_edit.py:29 +#: wireless/forms/bulk_edit.py:82 wireless/forms/bulk_edit.py:140 msgid "Description" msgstr "Descrição" -#: netbox/circuits/forms/bulk_edit.py:51 netbox/circuits/forms/bulk_edit.py:73 -#: netbox/circuits/forms/bulk_edit.py:123 -#: netbox/circuits/forms/bulk_import.py:36 -#: netbox/circuits/forms/bulk_import.py:51 -#: netbox/circuits/forms/bulk_import.py:74 -#: netbox/circuits/forms/filtersets.py:70 -#: netbox/circuits/forms/filtersets.py:88 -#: netbox/circuits/forms/filtersets.py:116 -#: netbox/circuits/forms/filtersets.py:131 -#: netbox/circuits/forms/filtersets.py:199 -#: netbox/circuits/forms/filtersets.py:232 -#: netbox/circuits/forms/filtersets.py:255 -#: netbox/circuits/forms/model_forms.py:47 -#: netbox/circuits/forms/model_forms.py:61 -#: netbox/circuits/forms/model_forms.py:93 -#: netbox/circuits/tables/circuits.py:58 -#: netbox/circuits/tables/circuits.py:108 -#: netbox/circuits/tables/circuits.py:160 -#: netbox/circuits/tables/providers.py:72 -#: netbox/circuits/tables/providers.py:103 -#: netbox/templates/circuits/circuit.html:18 -#: netbox/templates/circuits/circuittermination.html:25 -#: netbox/templates/circuits/provider.html:20 -#: netbox/templates/circuits/provideraccount.html:20 -#: netbox/templates/circuits/providernetwork.html:20 -#: netbox/templates/dcim/inc/cable_termination.html:51 +#: circuits/forms/bulk_edit.py:51 circuits/forms/bulk_edit.py:73 +#: circuits/forms/bulk_edit.py:123 circuits/forms/bulk_import.py:36 +#: circuits/forms/bulk_import.py:51 circuits/forms/bulk_import.py:74 +#: circuits/forms/filtersets.py:70 circuits/forms/filtersets.py:88 +#: circuits/forms/filtersets.py:116 circuits/forms/filtersets.py:131 +#: circuits/forms/filtersets.py:199 circuits/forms/filtersets.py:232 +#: circuits/forms/filtersets.py:255 circuits/forms/model_forms.py:47 +#: circuits/forms/model_forms.py:61 circuits/forms/model_forms.py:93 +#: circuits/tables/circuits.py:58 circuits/tables/circuits.py:108 +#: circuits/tables/circuits.py:160 circuits/tables/providers.py:72 +#: circuits/tables/providers.py:103 templates/circuits/circuit.html:18 +#: templates/circuits/circuittermination.html:25 +#: templates/circuits/provider.html:20 +#: templates/circuits/provideraccount.html:20 +#: templates/circuits/providernetwork.html:20 +#: templates/dcim/inc/cable_termination.html:51 msgid "Provider" msgstr "Provedor" -#: netbox/circuits/forms/bulk_edit.py:80 -#: netbox/circuits/forms/filtersets.py:91 -#: netbox/templates/circuits/providernetwork.html:28 +#: circuits/forms/bulk_edit.py:80 circuits/forms/filtersets.py:91 +#: templates/circuits/providernetwork.html:28 msgid "Service ID" msgstr "ID do serviço" -#: netbox/circuits/forms/bulk_edit.py:100 -#: netbox/circuits/forms/filtersets.py:107 netbox/dcim/forms/bulk_edit.py:206 -#: netbox/dcim/forms/bulk_edit.py:604 netbox/dcim/forms/bulk_edit.py:804 -#: netbox/dcim/forms/bulk_edit.py:1173 netbox/dcim/forms/bulk_edit.py:1200 -#: netbox/dcim/forms/bulk_edit.py:1678 netbox/dcim/forms/filtersets.py:1064 -#: netbox/dcim/forms/filtersets.py:1455 netbox/dcim/forms/filtersets.py:1479 -#: netbox/dcim/tables/devices.py:704 netbox/dcim/tables/devices.py:761 -#: netbox/dcim/tables/devices.py:1003 netbox/dcim/tables/devicetypes.py:249 -#: netbox/dcim/tables/devicetypes.py:264 netbox/dcim/tables/racks.py:33 -#: netbox/extras/forms/bulk_edit.py:270 netbox/extras/tables/tables.py:443 -#: netbox/templates/circuits/circuittype.html:30 -#: netbox/templates/dcim/cable.html:40 -#: netbox/templates/dcim/devicerole.html:34 -#: netbox/templates/dcim/frontport.html:40 -#: netbox/templates/dcim/inventoryitemrole.html:26 -#: netbox/templates/dcim/rackrole.html:30 -#: netbox/templates/dcim/rearport.html:40 netbox/templates/extras/tag.html:26 +#: circuits/forms/bulk_edit.py:100 circuits/forms/filtersets.py:107 +#: dcim/forms/bulk_edit.py:206 dcim/forms/bulk_edit.py:604 +#: dcim/forms/bulk_edit.py:804 dcim/forms/bulk_edit.py:1173 +#: dcim/forms/bulk_edit.py:1200 dcim/forms/bulk_edit.py:1678 +#: dcim/forms/filtersets.py:1064 dcim/forms/filtersets.py:1455 +#: dcim/forms/filtersets.py:1479 dcim/tables/devices.py:704 +#: dcim/tables/devices.py:761 dcim/tables/devices.py:1003 +#: dcim/tables/devicetypes.py:249 dcim/tables/devicetypes.py:264 +#: dcim/tables/racks.py:33 extras/forms/bulk_edit.py:270 +#: extras/tables/tables.py:443 templates/circuits/circuittype.html:30 +#: templates/dcim/cable.html:40 templates/dcim/devicerole.html:34 +#: templates/dcim/frontport.html:40 templates/dcim/inventoryitemrole.html:26 +#: templates/dcim/rackrole.html:30 templates/dcim/rearport.html:40 +#: templates/extras/tag.html:26 msgid "Color" msgstr "Cor" -#: netbox/circuits/forms/bulk_edit.py:118 -#: netbox/circuits/forms/bulk_import.py:87 -#: netbox/circuits/forms/filtersets.py:126 netbox/core/forms/bulk_edit.py:18 -#: netbox/core/forms/filtersets.py:33 netbox/core/tables/change_logging.py:32 -#: netbox/core/tables/data.py:20 netbox/core/tables/jobs.py:18 -#: netbox/dcim/forms/bulk_edit.py:782 netbox/dcim/forms/bulk_edit.py:921 -#: netbox/dcim/forms/bulk_edit.py:989 netbox/dcim/forms/bulk_edit.py:1008 -#: netbox/dcim/forms/bulk_edit.py:1031 netbox/dcim/forms/bulk_edit.py:1073 -#: netbox/dcim/forms/bulk_edit.py:1117 netbox/dcim/forms/bulk_edit.py:1168 -#: netbox/dcim/forms/bulk_edit.py:1195 netbox/dcim/forms/bulk_import.py:188 -#: netbox/dcim/forms/bulk_import.py:260 netbox/dcim/forms/bulk_import.py:708 -#: netbox/dcim/forms/bulk_import.py:734 netbox/dcim/forms/bulk_import.py:760 -#: netbox/dcim/forms/bulk_import.py:780 netbox/dcim/forms/bulk_import.py:863 -#: netbox/dcim/forms/bulk_import.py:957 netbox/dcim/forms/bulk_import.py:999 -#: netbox/dcim/forms/bulk_import.py:1213 netbox/dcim/forms/bulk_import.py:1376 -#: netbox/dcim/forms/filtersets.py:955 netbox/dcim/forms/filtersets.py:1054 -#: netbox/dcim/forms/filtersets.py:1175 netbox/dcim/forms/filtersets.py:1247 -#: netbox/dcim/forms/filtersets.py:1272 netbox/dcim/forms/filtersets.py:1296 -#: netbox/dcim/forms/filtersets.py:1316 netbox/dcim/forms/filtersets.py:1353 -#: netbox/dcim/forms/filtersets.py:1450 netbox/dcim/forms/filtersets.py:1474 -#: netbox/dcim/forms/model_forms.py:703 netbox/dcim/forms/model_forms.py:709 -#: netbox/dcim/forms/object_import.py:84 -#: netbox/dcim/forms/object_import.py:113 -#: netbox/dcim/forms/object_import.py:145 netbox/dcim/tables/devices.py:178 -#: netbox/dcim/tables/devices.py:814 netbox/dcim/tables/power.py:77 -#: netbox/dcim/tables/racks.py:138 netbox/extras/forms/bulk_import.py:42 -#: netbox/extras/tables/tables.py:405 netbox/extras/tables/tables.py:465 -#: netbox/netbox/tables/tables.py:240 -#: netbox/templates/circuits/circuit.html:30 -#: netbox/templates/core/datasource.html:38 -#: netbox/templates/dcim/cable.html:15 -#: netbox/templates/dcim/consoleport.html:36 -#: netbox/templates/dcim/consoleserverport.html:36 -#: netbox/templates/dcim/frontport.html:36 -#: netbox/templates/dcim/interface.html:46 -#: netbox/templates/dcim/interface.html:169 -#: netbox/templates/dcim/interface.html:311 -#: netbox/templates/dcim/powerfeed.html:32 -#: netbox/templates/dcim/poweroutlet.html:36 -#: netbox/templates/dcim/powerport.html:36 -#: netbox/templates/dcim/rearport.html:36 -#: netbox/templates/extras/eventrule.html:74 -#: netbox/templates/virtualization/cluster.html:17 -#: netbox/templates/vpn/l2vpn.html:22 -#: netbox/templates/wireless/inc/authentication_attrs.html:8 -#: netbox/templates/wireless/inc/wirelesslink_interface.html:14 -#: netbox/virtualization/forms/bulk_edit.py:60 -#: netbox/virtualization/forms/bulk_import.py:41 -#: netbox/virtualization/forms/filtersets.py:54 -#: netbox/virtualization/forms/model_forms.py:62 -#: netbox/virtualization/tables/clusters.py:66 -#: netbox/vpn/forms/bulk_edit.py:264 netbox/vpn/forms/bulk_import.py:264 -#: netbox/vpn/forms/filtersets.py:217 netbox/vpn/forms/model_forms.py:84 -#: netbox/vpn/forms/model_forms.py:119 netbox/vpn/forms/model_forms.py:231 +#: circuits/forms/bulk_edit.py:118 circuits/forms/bulk_import.py:87 +#: circuits/forms/filtersets.py:126 core/forms/bulk_edit.py:18 +#: core/forms/filtersets.py:33 core/tables/change_logging.py:32 +#: core/tables/data.py:20 core/tables/jobs.py:18 dcim/forms/bulk_edit.py:782 +#: dcim/forms/bulk_edit.py:921 dcim/forms/bulk_edit.py:989 +#: dcim/forms/bulk_edit.py:1008 dcim/forms/bulk_edit.py:1031 +#: dcim/forms/bulk_edit.py:1073 dcim/forms/bulk_edit.py:1117 +#: dcim/forms/bulk_edit.py:1168 dcim/forms/bulk_edit.py:1195 +#: dcim/forms/bulk_import.py:188 dcim/forms/bulk_import.py:260 +#: dcim/forms/bulk_import.py:708 dcim/forms/bulk_import.py:734 +#: dcim/forms/bulk_import.py:760 dcim/forms/bulk_import.py:780 +#: dcim/forms/bulk_import.py:863 dcim/forms/bulk_import.py:957 +#: dcim/forms/bulk_import.py:999 dcim/forms/bulk_import.py:1213 +#: dcim/forms/bulk_import.py:1376 dcim/forms/filtersets.py:955 +#: dcim/forms/filtersets.py:1054 dcim/forms/filtersets.py:1175 +#: dcim/forms/filtersets.py:1247 dcim/forms/filtersets.py:1272 +#: dcim/forms/filtersets.py:1296 dcim/forms/filtersets.py:1316 +#: dcim/forms/filtersets.py:1353 dcim/forms/filtersets.py:1450 +#: dcim/forms/filtersets.py:1474 dcim/forms/model_forms.py:703 +#: dcim/forms/model_forms.py:709 dcim/forms/object_import.py:84 +#: dcim/forms/object_import.py:113 dcim/forms/object_import.py:145 +#: dcim/tables/devices.py:178 dcim/tables/devices.py:814 +#: dcim/tables/power.py:77 dcim/tables/racks.py:138 +#: extras/forms/bulk_import.py:42 extras/tables/tables.py:405 +#: extras/tables/tables.py:465 netbox/tables/tables.py:240 +#: templates/circuits/circuit.html:30 templates/core/datasource.html:38 +#: templates/dcim/cable.html:15 templates/dcim/consoleport.html:36 +#: templates/dcim/consoleserverport.html:36 templates/dcim/frontport.html:36 +#: templates/dcim/interface.html:46 templates/dcim/interface.html:169 +#: templates/dcim/interface.html:311 templates/dcim/powerfeed.html:32 +#: templates/dcim/poweroutlet.html:36 templates/dcim/powerport.html:36 +#: templates/dcim/rearport.html:36 templates/extras/eventrule.html:74 +#: templates/virtualization/cluster.html:17 templates/vpn/l2vpn.html:22 +#: templates/wireless/inc/authentication_attrs.html:8 +#: templates/wireless/inc/wirelesslink_interface.html:14 +#: virtualization/forms/bulk_edit.py:60 virtualization/forms/bulk_import.py:41 +#: virtualization/forms/filtersets.py:54 +#: virtualization/forms/model_forms.py:62 virtualization/tables/clusters.py:66 +#: vpn/forms/bulk_edit.py:264 vpn/forms/bulk_import.py:264 +#: vpn/forms/filtersets.py:217 vpn/forms/model_forms.py:84 +#: vpn/forms/model_forms.py:119 vpn/forms/model_forms.py:231 msgid "Type" msgstr "Tipo" -#: netbox/circuits/forms/bulk_edit.py:128 -#: netbox/circuits/forms/bulk_import.py:80 -#: netbox/circuits/forms/filtersets.py:139 -#: netbox/circuits/forms/model_forms.py:98 +#: circuits/forms/bulk_edit.py:128 circuits/forms/bulk_import.py:80 +#: circuits/forms/filtersets.py:139 circuits/forms/model_forms.py:98 msgid "Provider account" msgstr "Conta do provedor" -#: netbox/circuits/forms/bulk_edit.py:136 -#: netbox/circuits/forms/bulk_import.py:93 -#: netbox/circuits/forms/filtersets.py:150 netbox/core/forms/filtersets.py:38 -#: netbox/core/forms/filtersets.py:79 netbox/core/tables/data.py:23 -#: netbox/core/tables/jobs.py:26 netbox/core/tables/tasks.py:88 -#: netbox/dcim/forms/bulk_edit.py:106 netbox/dcim/forms/bulk_edit.py:181 -#: netbox/dcim/forms/bulk_edit.py:351 netbox/dcim/forms/bulk_edit.py:700 -#: netbox/dcim/forms/bulk_edit.py:756 netbox/dcim/forms/bulk_edit.py:788 -#: netbox/dcim/forms/bulk_edit.py:915 netbox/dcim/forms/bulk_edit.py:1701 -#: netbox/dcim/forms/bulk_import.py:88 netbox/dcim/forms/bulk_import.py:147 -#: netbox/dcim/forms/bulk_import.py:248 netbox/dcim/forms/bulk_import.py:505 -#: netbox/dcim/forms/bulk_import.py:659 netbox/dcim/forms/bulk_import.py:1207 -#: netbox/dcim/forms/bulk_import.py:1371 netbox/dcim/forms/bulk_import.py:1435 -#: netbox/dcim/forms/filtersets.py:178 netbox/dcim/forms/filtersets.py:237 -#: netbox/dcim/forms/filtersets.py:359 netbox/dcim/forms/filtersets.py:799 -#: netbox/dcim/forms/filtersets.py:924 netbox/dcim/forms/filtersets.py:958 -#: netbox/dcim/forms/filtersets.py:1059 netbox/dcim/forms/filtersets.py:1170 -#: netbox/dcim/tables/devices.py:140 netbox/dcim/tables/devices.py:817 -#: netbox/dcim/tables/devices.py:1063 netbox/dcim/tables/modules.py:69 -#: netbox/dcim/tables/power.py:74 netbox/dcim/tables/racks.py:126 -#: netbox/dcim/tables/sites.py:82 netbox/dcim/tables/sites.py:138 -#: netbox/ipam/forms/bulk_edit.py:255 netbox/ipam/forms/bulk_edit.py:305 -#: netbox/ipam/forms/bulk_edit.py:353 netbox/ipam/forms/bulk_edit.py:551 -#: netbox/ipam/forms/bulk_import.py:192 netbox/ipam/forms/bulk_import.py:257 -#: netbox/ipam/forms/bulk_import.py:293 netbox/ipam/forms/bulk_import.py:450 -#: netbox/ipam/forms/filtersets.py:210 netbox/ipam/forms/filtersets.py:281 -#: netbox/ipam/forms/filtersets.py:355 netbox/ipam/forms/filtersets.py:501 -#: netbox/ipam/forms/model_forms.py:468 netbox/ipam/tables/ip.py:237 -#: netbox/ipam/tables/ip.py:312 netbox/ipam/tables/ip.py:363 -#: netbox/ipam/tables/ip.py:426 netbox/ipam/tables/ip.py:453 -#: netbox/ipam/tables/vlans.py:126 netbox/ipam/tables/vlans.py:232 -#: netbox/templates/circuits/circuit.html:34 -#: netbox/templates/core/datasource.html:46 netbox/templates/core/job.html:48 -#: netbox/templates/core/rq_task.html:81 netbox/templates/core/system.html:18 -#: netbox/templates/dcim/cable.html:19 netbox/templates/dcim/device.html:178 -#: netbox/templates/dcim/location.html:45 netbox/templates/dcim/module.html:69 -#: netbox/templates/dcim/powerfeed.html:36 netbox/templates/dcim/rack.html:41 -#: netbox/templates/dcim/site.html:43 -#: netbox/templates/extras/script_list.html:47 -#: netbox/templates/ipam/ipaddress.html:37 -#: netbox/templates/ipam/iprange.html:54 netbox/templates/ipam/prefix.html:73 -#: netbox/templates/ipam/vlan.html:48 -#: netbox/templates/virtualization/cluster.html:21 -#: netbox/templates/virtualization/virtualmachine.html:19 -#: netbox/templates/vpn/tunnel.html:25 -#: netbox/templates/wireless/wirelesslan.html:22 -#: netbox/templates/wireless/wirelesslink.html:17 -#: netbox/users/forms/filtersets.py:32 netbox/users/forms/model_forms.py:194 -#: netbox/virtualization/forms/bulk_edit.py:70 -#: netbox/virtualization/forms/bulk_edit.py:118 -#: netbox/virtualization/forms/bulk_import.py:54 -#: netbox/virtualization/forms/bulk_import.py:80 -#: netbox/virtualization/forms/filtersets.py:62 -#: netbox/virtualization/forms/filtersets.py:160 -#: netbox/virtualization/tables/clusters.py:74 -#: netbox/virtualization/tables/virtualmachines.py:60 -#: netbox/vpn/forms/bulk_edit.py:39 netbox/vpn/forms/bulk_import.py:37 -#: netbox/vpn/forms/filtersets.py:47 netbox/vpn/tables/tunnels.py:48 -#: netbox/wireless/forms/bulk_edit.py:43 -#: netbox/wireless/forms/bulk_edit.py:105 -#: netbox/wireless/forms/bulk_import.py:43 -#: netbox/wireless/forms/bulk_import.py:84 -#: netbox/wireless/forms/filtersets.py:49 -#: netbox/wireless/forms/filtersets.py:83 -#: netbox/wireless/tables/wirelesslan.py:52 -#: netbox/wireless/tables/wirelesslink.py:20 +#: circuits/forms/bulk_edit.py:136 circuits/forms/bulk_import.py:93 +#: circuits/forms/filtersets.py:150 core/forms/filtersets.py:38 +#: core/forms/filtersets.py:79 core/tables/data.py:23 core/tables/jobs.py:26 +#: core/tables/tasks.py:88 dcim/forms/bulk_edit.py:106 +#: dcim/forms/bulk_edit.py:181 dcim/forms/bulk_edit.py:351 +#: dcim/forms/bulk_edit.py:700 dcim/forms/bulk_edit.py:756 +#: dcim/forms/bulk_edit.py:788 dcim/forms/bulk_edit.py:915 +#: dcim/forms/bulk_edit.py:1701 dcim/forms/bulk_import.py:88 +#: dcim/forms/bulk_import.py:147 dcim/forms/bulk_import.py:248 +#: dcim/forms/bulk_import.py:505 dcim/forms/bulk_import.py:659 +#: dcim/forms/bulk_import.py:1207 dcim/forms/bulk_import.py:1371 +#: dcim/forms/bulk_import.py:1435 dcim/forms/filtersets.py:178 +#: dcim/forms/filtersets.py:237 dcim/forms/filtersets.py:359 +#: dcim/forms/filtersets.py:799 dcim/forms/filtersets.py:924 +#: dcim/forms/filtersets.py:958 dcim/forms/filtersets.py:1059 +#: dcim/forms/filtersets.py:1170 dcim/tables/devices.py:140 +#: dcim/tables/devices.py:817 dcim/tables/devices.py:1063 +#: dcim/tables/modules.py:69 dcim/tables/power.py:74 dcim/tables/racks.py:126 +#: dcim/tables/sites.py:82 dcim/tables/sites.py:138 +#: ipam/forms/bulk_edit.py:256 ipam/forms/bulk_edit.py:306 +#: ipam/forms/bulk_edit.py:354 ipam/forms/bulk_edit.py:506 +#: ipam/forms/bulk_import.py:192 ipam/forms/bulk_import.py:257 +#: ipam/forms/bulk_import.py:293 ipam/forms/bulk_import.py:450 +#: ipam/forms/filtersets.py:210 ipam/forms/filtersets.py:281 +#: ipam/forms/filtersets.py:355 ipam/forms/filtersets.py:501 +#: ipam/forms/model_forms.py:468 ipam/tables/ip.py:237 ipam/tables/ip.py:312 +#: ipam/tables/ip.py:363 ipam/tables/ip.py:426 ipam/tables/ip.py:453 +#: ipam/tables/vlans.py:126 ipam/tables/vlans.py:232 +#: templates/circuits/circuit.html:34 templates/core/datasource.html:46 +#: templates/core/job.html:48 templates/core/rq_task.html:81 +#: templates/core/system.html:18 templates/dcim/cable.html:19 +#: templates/dcim/device.html:178 templates/dcim/location.html:45 +#: templates/dcim/module.html:69 templates/dcim/powerfeed.html:36 +#: templates/dcim/rack.html:41 templates/dcim/site.html:43 +#: templates/extras/script_list.html:47 templates/ipam/ipaddress.html:37 +#: templates/ipam/iprange.html:54 templates/ipam/prefix.html:73 +#: templates/ipam/vlan.html:48 templates/virtualization/cluster.html:21 +#: templates/virtualization/virtualmachine.html:19 +#: templates/vpn/tunnel.html:25 templates/wireless/wirelesslan.html:22 +#: templates/wireless/wirelesslink.html:17 users/forms/filtersets.py:32 +#: users/forms/model_forms.py:194 virtualization/forms/bulk_edit.py:70 +#: virtualization/forms/bulk_edit.py:118 +#: virtualization/forms/bulk_import.py:54 +#: virtualization/forms/bulk_import.py:80 +#: virtualization/forms/filtersets.py:62 +#: virtualization/forms/filtersets.py:160 virtualization/tables/clusters.py:74 +#: virtualization/tables/virtualmachines.py:60 vpn/forms/bulk_edit.py:39 +#: vpn/forms/bulk_import.py:37 vpn/forms/filtersets.py:47 +#: vpn/tables/tunnels.py:48 wireless/forms/bulk_edit.py:43 +#: wireless/forms/bulk_edit.py:105 wireless/forms/bulk_import.py:43 +#: wireless/forms/bulk_import.py:84 wireless/forms/filtersets.py:49 +#: wireless/forms/filtersets.py:83 wireless/tables/wirelesslan.py:52 +#: wireless/tables/wirelesslink.py:20 msgid "Status" msgstr "Status" -#: netbox/circuits/forms/bulk_edit.py:142 -#: netbox/circuits/forms/bulk_edit.py:233 -#: netbox/circuits/forms/bulk_import.py:98 -#: netbox/circuits/forms/bulk_import.py:158 -#: netbox/circuits/forms/filtersets.py:119 -#: netbox/circuits/forms/filtersets.py:241 netbox/dcim/forms/bulk_edit.py:122 -#: netbox/dcim/forms/bulk_edit.py:187 netbox/dcim/forms/bulk_edit.py:346 -#: netbox/dcim/forms/bulk_edit.py:461 netbox/dcim/forms/bulk_edit.py:690 -#: netbox/dcim/forms/bulk_edit.py:794 netbox/dcim/forms/bulk_edit.py:1706 -#: netbox/dcim/forms/bulk_import.py:107 netbox/dcim/forms/bulk_import.py:152 -#: netbox/dcim/forms/bulk_import.py:241 netbox/dcim/forms/bulk_import.py:334 -#: netbox/dcim/forms/bulk_import.py:479 netbox/dcim/forms/bulk_import.py:1219 -#: netbox/dcim/forms/bulk_import.py:1428 netbox/dcim/forms/filtersets.py:173 -#: netbox/dcim/forms/filtersets.py:205 netbox/dcim/forms/filtersets.py:323 -#: netbox/dcim/forms/filtersets.py:399 netbox/dcim/forms/filtersets.py:420 -#: netbox/dcim/forms/filtersets.py:722 netbox/dcim/forms/filtersets.py:916 -#: netbox/dcim/forms/filtersets.py:978 netbox/dcim/forms/filtersets.py:1008 -#: netbox/dcim/forms/filtersets.py:1130 netbox/dcim/tables/power.py:88 -#: netbox/extras/filtersets.py:612 netbox/extras/forms/filtersets.py:323 -#: netbox/extras/forms/filtersets.py:396 netbox/ipam/forms/bulk_edit.py:42 -#: netbox/ipam/forms/bulk_edit.py:67 netbox/ipam/forms/bulk_edit.py:111 -#: netbox/ipam/forms/bulk_edit.py:140 netbox/ipam/forms/bulk_edit.py:165 -#: netbox/ipam/forms/bulk_edit.py:250 netbox/ipam/forms/bulk_edit.py:300 -#: netbox/ipam/forms/bulk_edit.py:348 netbox/ipam/forms/bulk_edit.py:546 -#: netbox/ipam/forms/bulk_import.py:38 netbox/ipam/forms/bulk_import.py:67 -#: netbox/ipam/forms/bulk_import.py:95 netbox/ipam/forms/bulk_import.py:115 -#: netbox/ipam/forms/bulk_import.py:135 netbox/ipam/forms/bulk_import.py:164 -#: netbox/ipam/forms/bulk_import.py:250 netbox/ipam/forms/bulk_import.py:286 -#: netbox/ipam/forms/bulk_import.py:443 netbox/ipam/forms/filtersets.py:48 -#: netbox/ipam/forms/filtersets.py:68 netbox/ipam/forms/filtersets.py:100 -#: netbox/ipam/forms/filtersets.py:120 netbox/ipam/forms/filtersets.py:143 -#: netbox/ipam/forms/filtersets.py:174 netbox/ipam/forms/filtersets.py:267 -#: netbox/ipam/forms/filtersets.py:310 netbox/ipam/forms/filtersets.py:469 -#: netbox/ipam/tables/ip.py:456 netbox/ipam/tables/vlans.py:229 -#: netbox/templates/circuits/circuit.html:38 -#: netbox/templates/circuits/circuitgroup.html:36 -#: netbox/templates/dcim/cable.html:23 netbox/templates/dcim/device.html:79 -#: netbox/templates/dcim/location.html:49 -#: netbox/templates/dcim/powerfeed.html:44 netbox/templates/dcim/rack.html:32 -#: netbox/templates/dcim/rackreservation.html:49 -#: netbox/templates/dcim/site.html:47 -#: netbox/templates/dcim/virtualdevicecontext.html:52 -#: netbox/templates/ipam/aggregate.html:30 netbox/templates/ipam/asn.html:33 -#: netbox/templates/ipam/asnrange.html:29 -#: netbox/templates/ipam/ipaddress.html:28 -#: netbox/templates/ipam/iprange.html:58 netbox/templates/ipam/prefix.html:29 -#: netbox/templates/ipam/routetarget.html:17 -#: netbox/templates/ipam/vlan.html:39 netbox/templates/ipam/vrf.html:20 -#: netbox/templates/tenancy/tenant.html:17 -#: netbox/templates/virtualization/cluster.html:33 -#: netbox/templates/virtualization/virtualmachine.html:39 -#: netbox/templates/vpn/l2vpn.html:30 netbox/templates/vpn/tunnel.html:49 -#: netbox/templates/wireless/wirelesslan.html:34 -#: netbox/templates/wireless/wirelesslink.html:25 -#: netbox/tenancy/forms/forms.py:25 netbox/tenancy/forms/forms.py:48 -#: netbox/tenancy/forms/model_forms.py:52 netbox/tenancy/tables/columns.py:64 -#: netbox/virtualization/forms/bulk_edit.py:76 -#: netbox/virtualization/forms/bulk_edit.py:155 -#: netbox/virtualization/forms/bulk_import.py:66 -#: netbox/virtualization/forms/bulk_import.py:115 -#: netbox/virtualization/forms/filtersets.py:47 -#: netbox/virtualization/forms/filtersets.py:105 -#: netbox/vpn/forms/bulk_edit.py:59 netbox/vpn/forms/bulk_edit.py:269 -#: netbox/vpn/forms/bulk_import.py:59 netbox/vpn/forms/bulk_import.py:258 -#: netbox/vpn/forms/filtersets.py:214 netbox/wireless/forms/bulk_edit.py:63 -#: netbox/wireless/forms/bulk_edit.py:110 -#: netbox/wireless/forms/bulk_import.py:55 -#: netbox/wireless/forms/bulk_import.py:97 -#: netbox/wireless/forms/filtersets.py:35 -#: netbox/wireless/forms/filtersets.py:75 +#: circuits/forms/bulk_edit.py:142 circuits/forms/bulk_edit.py:233 +#: circuits/forms/bulk_import.py:98 circuits/forms/bulk_import.py:158 +#: circuits/forms/filtersets.py:119 circuits/forms/filtersets.py:241 +#: dcim/forms/bulk_edit.py:122 dcim/forms/bulk_edit.py:187 +#: dcim/forms/bulk_edit.py:346 dcim/forms/bulk_edit.py:461 +#: dcim/forms/bulk_edit.py:690 dcim/forms/bulk_edit.py:794 +#: dcim/forms/bulk_edit.py:1706 dcim/forms/bulk_import.py:107 +#: dcim/forms/bulk_import.py:152 dcim/forms/bulk_import.py:241 +#: dcim/forms/bulk_import.py:334 dcim/forms/bulk_import.py:479 +#: dcim/forms/bulk_import.py:1219 dcim/forms/bulk_import.py:1428 +#: dcim/forms/filtersets.py:173 dcim/forms/filtersets.py:205 +#: dcim/forms/filtersets.py:323 dcim/forms/filtersets.py:399 +#: dcim/forms/filtersets.py:420 dcim/forms/filtersets.py:722 +#: dcim/forms/filtersets.py:916 dcim/forms/filtersets.py:978 +#: dcim/forms/filtersets.py:1008 dcim/forms/filtersets.py:1130 +#: dcim/tables/power.py:88 extras/filtersets.py:612 +#: extras/forms/filtersets.py:323 extras/forms/filtersets.py:396 +#: ipam/forms/bulk_edit.py:43 ipam/forms/bulk_edit.py:68 +#: ipam/forms/bulk_edit.py:112 ipam/forms/bulk_edit.py:141 +#: ipam/forms/bulk_edit.py:166 ipam/forms/bulk_edit.py:251 +#: ipam/forms/bulk_edit.py:301 ipam/forms/bulk_edit.py:349 +#: ipam/forms/bulk_edit.py:501 ipam/forms/bulk_import.py:38 +#: ipam/forms/bulk_import.py:67 ipam/forms/bulk_import.py:95 +#: ipam/forms/bulk_import.py:115 ipam/forms/bulk_import.py:135 +#: ipam/forms/bulk_import.py:164 ipam/forms/bulk_import.py:250 +#: ipam/forms/bulk_import.py:286 ipam/forms/bulk_import.py:443 +#: ipam/forms/filtersets.py:48 ipam/forms/filtersets.py:68 +#: ipam/forms/filtersets.py:100 ipam/forms/filtersets.py:120 +#: ipam/forms/filtersets.py:143 ipam/forms/filtersets.py:174 +#: ipam/forms/filtersets.py:267 ipam/forms/filtersets.py:310 +#: ipam/forms/filtersets.py:469 ipam/tables/ip.py:456 ipam/tables/vlans.py:229 +#: templates/circuits/circuit.html:38 templates/circuits/circuitgroup.html:36 +#: templates/dcim/cable.html:23 templates/dcim/device.html:79 +#: templates/dcim/location.html:49 templates/dcim/powerfeed.html:44 +#: templates/dcim/rack.html:32 templates/dcim/rackreservation.html:49 +#: templates/dcim/site.html:47 templates/dcim/virtualdevicecontext.html:52 +#: templates/ipam/aggregate.html:30 templates/ipam/asn.html:33 +#: templates/ipam/asnrange.html:29 templates/ipam/ipaddress.html:28 +#: templates/ipam/iprange.html:58 templates/ipam/prefix.html:29 +#: templates/ipam/routetarget.html:17 templates/ipam/vlan.html:39 +#: templates/ipam/vrf.html:20 templates/tenancy/tenant.html:17 +#: templates/virtualization/cluster.html:33 +#: templates/virtualization/virtualmachine.html:39 templates/vpn/l2vpn.html:30 +#: templates/vpn/tunnel.html:49 templates/wireless/wirelesslan.html:34 +#: templates/wireless/wirelesslink.html:25 tenancy/forms/forms.py:25 +#: tenancy/forms/forms.py:48 tenancy/forms/model_forms.py:52 +#: tenancy/tables/columns.py:64 virtualization/forms/bulk_edit.py:76 +#: virtualization/forms/bulk_edit.py:155 +#: virtualization/forms/bulk_import.py:66 +#: virtualization/forms/bulk_import.py:115 +#: virtualization/forms/filtersets.py:47 +#: virtualization/forms/filtersets.py:105 vpn/forms/bulk_edit.py:59 +#: vpn/forms/bulk_edit.py:269 vpn/forms/bulk_import.py:59 +#: vpn/forms/bulk_import.py:258 vpn/forms/filtersets.py:214 +#: wireless/forms/bulk_edit.py:63 wireless/forms/bulk_edit.py:110 +#: wireless/forms/bulk_import.py:55 wireless/forms/bulk_import.py:97 +#: wireless/forms/filtersets.py:35 wireless/forms/filtersets.py:75 msgid "Tenant" msgstr "Inquilino" -#: netbox/circuits/forms/bulk_edit.py:147 -#: netbox/circuits/forms/filtersets.py:174 +#: circuits/forms/bulk_edit.py:147 circuits/forms/filtersets.py:174 msgid "Install date" msgstr "Data de ativação" -#: netbox/circuits/forms/bulk_edit.py:152 -#: netbox/circuits/forms/filtersets.py:179 +#: circuits/forms/bulk_edit.py:152 circuits/forms/filtersets.py:179 msgid "Termination date" msgstr "Data de desativação" -#: netbox/circuits/forms/bulk_edit.py:158 -#: netbox/circuits/forms/filtersets.py:186 +#: circuits/forms/bulk_edit.py:158 circuits/forms/filtersets.py:186 msgid "Commit rate (Kbps)" msgstr "Taxa garantida (Kbps)" -#: netbox/circuits/forms/bulk_edit.py:173 -#: netbox/circuits/forms/model_forms.py:112 +#: circuits/forms/bulk_edit.py:173 circuits/forms/model_forms.py:112 msgid "Service Parameters" msgstr "Parâmetros do serviço" -#: netbox/circuits/forms/bulk_edit.py:174 -#: netbox/circuits/forms/model_forms.py:113 -#: netbox/circuits/forms/model_forms.py:183 -#: netbox/dcim/forms/model_forms.py:139 netbox/dcim/forms/model_forms.py:181 -#: netbox/dcim/forms/model_forms.py:266 netbox/dcim/forms/model_forms.py:323 -#: netbox/dcim/forms/model_forms.py:768 netbox/dcim/forms/model_forms.py:1692 -#: netbox/ipam/forms/model_forms.py:64 netbox/ipam/forms/model_forms.py:81 -#: netbox/ipam/forms/model_forms.py:115 netbox/ipam/forms/model_forms.py:136 -#: netbox/ipam/forms/model_forms.py:160 netbox/ipam/forms/model_forms.py:232 -#: netbox/ipam/forms/model_forms.py:261 netbox/ipam/forms/model_forms.py:316 -#: netbox/netbox/navigation/menu.py:24 -#: netbox/templates/dcim/device_edit.html:85 -#: netbox/templates/dcim/htmx/cable_edit.html:72 -#: netbox/templates/ipam/ipaddress_bulk_add.html:27 -#: netbox/templates/ipam/vlan_edit.html:22 -#: netbox/virtualization/forms/model_forms.py:80 -#: netbox/virtualization/forms/model_forms.py:222 -#: netbox/vpn/forms/bulk_edit.py:78 netbox/vpn/forms/filtersets.py:44 -#: netbox/vpn/forms/model_forms.py:62 netbox/vpn/forms/model_forms.py:147 -#: netbox/vpn/forms/model_forms.py:411 netbox/wireless/forms/model_forms.py:54 -#: netbox/wireless/forms/model_forms.py:170 +#: circuits/forms/bulk_edit.py:174 circuits/forms/model_forms.py:113 +#: circuits/forms/model_forms.py:183 dcim/forms/model_forms.py:139 +#: dcim/forms/model_forms.py:181 dcim/forms/model_forms.py:266 +#: dcim/forms/model_forms.py:323 dcim/forms/model_forms.py:768 +#: dcim/forms/model_forms.py:1692 ipam/forms/model_forms.py:64 +#: ipam/forms/model_forms.py:81 ipam/forms/model_forms.py:115 +#: ipam/forms/model_forms.py:136 ipam/forms/model_forms.py:160 +#: ipam/forms/model_forms.py:232 ipam/forms/model_forms.py:261 +#: ipam/forms/model_forms.py:316 netbox/navigation/menu.py:24 +#: templates/dcim/device_edit.html:85 templates/dcim/htmx/cable_edit.html:72 +#: templates/ipam/ipaddress_bulk_add.html:27 templates/ipam/vlan_edit.html:22 +#: virtualization/forms/model_forms.py:80 +#: virtualization/forms/model_forms.py:222 vpn/forms/bulk_edit.py:78 +#: vpn/forms/filtersets.py:44 vpn/forms/model_forms.py:62 +#: vpn/forms/model_forms.py:147 vpn/forms/model_forms.py:411 +#: wireless/forms/model_forms.py:54 wireless/forms/model_forms.py:170 msgid "Tenancy" msgstr "Locação" -#: netbox/circuits/forms/bulk_edit.py:193 -#: netbox/circuits/forms/bulk_edit.py:217 -#: netbox/circuits/forms/model_forms.py:155 -#: netbox/circuits/tables/circuits.py:117 -#: netbox/templates/circuits/inc/circuit_termination_fields.html:62 -#: netbox/templates/circuits/providernetwork.html:17 +#: circuits/forms/bulk_edit.py:193 circuits/forms/bulk_edit.py:217 +#: circuits/forms/model_forms.py:155 circuits/tables/circuits.py:117 +#: templates/circuits/inc/circuit_termination_fields.html:62 +#: templates/circuits/providernetwork.html:17 msgid "Provider Network" msgstr "Rede do Provedor" -#: netbox/circuits/forms/bulk_edit.py:199 +#: circuits/forms/bulk_edit.py:199 msgid "Port speed (Kbps)" msgstr "Velocidade da porta (Kbps)" -#: netbox/circuits/forms/bulk_edit.py:203 +#: circuits/forms/bulk_edit.py:203 msgid "Upstream speed (Kbps)" msgstr "Velocidade de upstream (Kbps)" -#: netbox/circuits/forms/bulk_edit.py:206 netbox/dcim/forms/bulk_edit.py:951 -#: netbox/dcim/forms/bulk_edit.py:1315 netbox/dcim/forms/bulk_edit.py:1332 -#: netbox/dcim/forms/bulk_edit.py:1349 netbox/dcim/forms/bulk_edit.py:1367 -#: netbox/dcim/forms/bulk_edit.py:1455 netbox/dcim/forms/bulk_edit.py:1594 -#: netbox/dcim/forms/bulk_edit.py:1611 +#: circuits/forms/bulk_edit.py:206 dcim/forms/bulk_edit.py:951 +#: dcim/forms/bulk_edit.py:1315 dcim/forms/bulk_edit.py:1332 +#: dcim/forms/bulk_edit.py:1349 dcim/forms/bulk_edit.py:1367 +#: dcim/forms/bulk_edit.py:1455 dcim/forms/bulk_edit.py:1594 +#: dcim/forms/bulk_edit.py:1611 msgid "Mark connected" msgstr "Marcar como conectado" -#: netbox/circuits/forms/bulk_edit.py:219 -#: netbox/circuits/forms/model_forms.py:157 -#: netbox/templates/circuits/inc/circuit_termination_fields.html:54 -#: netbox/templates/dcim/frontport.html:121 -#: netbox/templates/dcim/interface.html:193 -#: netbox/templates/dcim/rearport.html:111 +#: circuits/forms/bulk_edit.py:219 circuits/forms/model_forms.py:157 +#: templates/circuits/inc/circuit_termination_fields.html:54 +#: templates/dcim/frontport.html:121 templates/dcim/interface.html:193 +#: templates/dcim/rearport.html:111 msgid "Circuit Termination" msgstr "Terminação do Circuito" -#: netbox/circuits/forms/bulk_edit.py:221 -#: netbox/circuits/forms/model_forms.py:159 +#: circuits/forms/bulk_edit.py:221 circuits/forms/model_forms.py:159 msgid "Termination Details" msgstr "Detalhes da Terminação" -#: netbox/circuits/forms/bulk_edit.py:251 -#: netbox/circuits/forms/filtersets.py:268 -#: netbox/circuits/tables/circuits.py:168 netbox/dcim/forms/model_forms.py:551 -#: netbox/templates/circuits/circuitgroupassignment.html:30 -#: netbox/templates/dcim/device.html:133 -#: netbox/templates/dcim/virtualchassis.html:68 -#: netbox/templates/dcim/virtualchassis_edit.html:56 -#: netbox/templates/ipam/inc/panels/fhrp_groups.html:26 -#: netbox/tenancy/forms/bulk_edit.py:147 -#: netbox/tenancy/forms/filtersets.py:110 +#: circuits/forms/bulk_edit.py:251 circuits/forms/filtersets.py:268 +#: circuits/tables/circuits.py:168 dcim/forms/model_forms.py:551 +#: templates/circuits/circuitgroupassignment.html:30 +#: templates/dcim/device.html:133 templates/dcim/virtualchassis.html:68 +#: templates/dcim/virtualchassis_edit.html:56 +#: templates/ipam/inc/panels/fhrp_groups.html:26 +#: tenancy/forms/bulk_edit.py:147 tenancy/forms/filtersets.py:110 msgid "Priority" msgstr "Prioridade" -#: netbox/circuits/forms/bulk_import.py:39 -#: netbox/circuits/forms/bulk_import.py:54 -#: netbox/circuits/forms/bulk_import.py:77 +#: circuits/forms/bulk_import.py:39 circuits/forms/bulk_import.py:54 +#: circuits/forms/bulk_import.py:77 msgid "Assigned provider" msgstr "Provedor designado" -#: netbox/circuits/forms/bulk_import.py:83 +#: circuits/forms/bulk_import.py:83 msgid "Assigned provider account" msgstr "Conta de provedor designada" -#: netbox/circuits/forms/bulk_import.py:90 +#: circuits/forms/bulk_import.py:90 msgid "Type of circuit" msgstr "Tipo de circuito" -#: netbox/circuits/forms/bulk_import.py:95 netbox/dcim/forms/bulk_import.py:90 -#: netbox/dcim/forms/bulk_import.py:149 netbox/dcim/forms/bulk_import.py:250 -#: netbox/dcim/forms/bulk_import.py:507 netbox/dcim/forms/bulk_import.py:661 -#: netbox/dcim/forms/bulk_import.py:1373 netbox/ipam/forms/bulk_import.py:194 -#: netbox/ipam/forms/bulk_import.py:259 netbox/ipam/forms/bulk_import.py:295 -#: netbox/ipam/forms/bulk_import.py:452 -#: netbox/virtualization/forms/bulk_import.py:56 -#: netbox/virtualization/forms/bulk_import.py:82 -#: netbox/vpn/forms/bulk_import.py:39 netbox/wireless/forms/bulk_import.py:45 +#: circuits/forms/bulk_import.py:95 dcim/forms/bulk_import.py:90 +#: dcim/forms/bulk_import.py:149 dcim/forms/bulk_import.py:250 +#: dcim/forms/bulk_import.py:507 dcim/forms/bulk_import.py:661 +#: dcim/forms/bulk_import.py:1373 ipam/forms/bulk_import.py:194 +#: ipam/forms/bulk_import.py:259 ipam/forms/bulk_import.py:295 +#: ipam/forms/bulk_import.py:452 virtualization/forms/bulk_import.py:56 +#: virtualization/forms/bulk_import.py:82 vpn/forms/bulk_import.py:39 +#: wireless/forms/bulk_import.py:45 msgid "Operational status" msgstr "Status operacional" -#: netbox/circuits/forms/bulk_import.py:102 -#: netbox/circuits/forms/bulk_import.py:162 -#: netbox/dcim/forms/bulk_import.py:111 netbox/dcim/forms/bulk_import.py:156 -#: netbox/dcim/forms/bulk_import.py:338 netbox/dcim/forms/bulk_import.py:483 -#: netbox/dcim/forms/bulk_import.py:1223 netbox/dcim/forms/bulk_import.py:1368 -#: netbox/dcim/forms/bulk_import.py:1432 netbox/ipam/forms/bulk_import.py:42 -#: netbox/ipam/forms/bulk_import.py:71 netbox/ipam/forms/bulk_import.py:99 -#: netbox/ipam/forms/bulk_import.py:119 netbox/ipam/forms/bulk_import.py:139 -#: netbox/ipam/forms/bulk_import.py:168 netbox/ipam/forms/bulk_import.py:254 -#: netbox/ipam/forms/bulk_import.py:290 netbox/ipam/forms/bulk_import.py:447 -#: netbox/virtualization/forms/bulk_import.py:70 -#: netbox/virtualization/forms/bulk_import.py:119 -#: netbox/vpn/forms/bulk_import.py:63 netbox/wireless/forms/bulk_import.py:59 -#: netbox/wireless/forms/bulk_import.py:101 +#: circuits/forms/bulk_import.py:102 circuits/forms/bulk_import.py:162 +#: dcim/forms/bulk_import.py:111 dcim/forms/bulk_import.py:156 +#: dcim/forms/bulk_import.py:338 dcim/forms/bulk_import.py:483 +#: dcim/forms/bulk_import.py:1223 dcim/forms/bulk_import.py:1368 +#: dcim/forms/bulk_import.py:1432 ipam/forms/bulk_import.py:42 +#: ipam/forms/bulk_import.py:71 ipam/forms/bulk_import.py:99 +#: ipam/forms/bulk_import.py:119 ipam/forms/bulk_import.py:139 +#: ipam/forms/bulk_import.py:168 ipam/forms/bulk_import.py:254 +#: ipam/forms/bulk_import.py:290 ipam/forms/bulk_import.py:447 +#: virtualization/forms/bulk_import.py:70 +#: virtualization/forms/bulk_import.py:119 vpn/forms/bulk_import.py:63 +#: wireless/forms/bulk_import.py:59 wireless/forms/bulk_import.py:101 msgid "Assigned tenant" msgstr "Inquilino designado" -#: netbox/circuits/forms/bulk_import.py:120 -#: netbox/templates/circuits/inc/circuit_termination.html:6 -#: netbox/templates/circuits/inc/circuit_termination_fields.html:15 -#: netbox/templates/dcim/cable.html:68 netbox/templates/dcim/cable.html:72 -#: netbox/vpn/forms/bulk_import.py:100 netbox/vpn/forms/filtersets.py:77 +#: circuits/forms/bulk_import.py:120 +#: templates/circuits/inc/circuit_termination.html:6 +#: templates/circuits/inc/circuit_termination_fields.html:15 +#: templates/dcim/cable.html:68 templates/dcim/cable.html:72 +#: vpn/forms/bulk_import.py:100 vpn/forms/filtersets.py:77 msgid "Termination" msgstr "Terminação" -#: netbox/circuits/forms/bulk_import.py:130 -#: netbox/circuits/forms/filtersets.py:147 -#: netbox/circuits/forms/filtersets.py:227 -#: netbox/circuits/forms/model_forms.py:144 +#: circuits/forms/bulk_import.py:130 circuits/forms/filtersets.py:147 +#: circuits/forms/filtersets.py:227 circuits/forms/model_forms.py:144 msgid "Provider network" msgstr "Rede do provedor" -#: netbox/circuits/forms/filtersets.py:30 -#: netbox/circuits/forms/filtersets.py:118 -#: netbox/circuits/forms/filtersets.py:200 netbox/dcim/forms/bulk_edit.py:338 -#: netbox/dcim/forms/bulk_edit.py:441 netbox/dcim/forms/bulk_edit.py:682 -#: netbox/dcim/forms/bulk_edit.py:729 netbox/dcim/forms/bulk_edit.py:882 -#: netbox/dcim/forms/bulk_import.py:235 netbox/dcim/forms/bulk_import.py:315 -#: netbox/dcim/forms/bulk_import.py:546 netbox/dcim/forms/bulk_import.py:1317 -#: netbox/dcim/forms/bulk_import.py:1351 netbox/dcim/forms/filtersets.py:95 -#: netbox/dcim/forms/filtersets.py:322 netbox/dcim/forms/filtersets.py:356 -#: netbox/dcim/forms/filtersets.py:396 netbox/dcim/forms/filtersets.py:447 -#: netbox/dcim/forms/filtersets.py:719 netbox/dcim/forms/filtersets.py:762 -#: netbox/dcim/forms/filtersets.py:977 netbox/dcim/forms/filtersets.py:1006 -#: netbox/dcim/forms/filtersets.py:1026 netbox/dcim/forms/filtersets.py:1090 -#: netbox/dcim/forms/filtersets.py:1120 netbox/dcim/forms/filtersets.py:1129 -#: netbox/dcim/forms/filtersets.py:1240 netbox/dcim/forms/filtersets.py:1264 -#: netbox/dcim/forms/filtersets.py:1289 netbox/dcim/forms/filtersets.py:1308 -#: netbox/dcim/forms/filtersets.py:1331 netbox/dcim/forms/filtersets.py:1442 -#: netbox/dcim/forms/filtersets.py:1466 netbox/dcim/forms/filtersets.py:1490 -#: netbox/dcim/forms/filtersets.py:1508 netbox/dcim/forms/filtersets.py:1525 -#: netbox/dcim/forms/model_forms.py:180 netbox/dcim/forms/model_forms.py:243 -#: netbox/dcim/forms/model_forms.py:468 netbox/dcim/forms/model_forms.py:728 -#: netbox/dcim/tables/devices.py:157 netbox/dcim/tables/power.py:30 -#: netbox/dcim/tables/racks.py:118 netbox/dcim/tables/racks.py:212 -#: netbox/extras/filtersets.py:536 netbox/extras/forms/filtersets.py:320 -#: netbox/ipam/forms/bulk_edit.py:460 netbox/ipam/forms/filtersets.py:173 -#: netbox/ipam/forms/filtersets.py:414 netbox/ipam/forms/filtersets.py:437 -#: netbox/ipam/forms/filtersets.py:467 netbox/templates/dcim/device.html:26 -#: netbox/templates/dcim/device_edit.html:30 -#: netbox/templates/dcim/inc/cable_termination.html:12 -#: netbox/templates/dcim/location.html:26 -#: netbox/templates/dcim/powerpanel.html:26 netbox/templates/dcim/rack.html:24 -#: netbox/templates/dcim/rackreservation.html:32 -#: netbox/virtualization/forms/filtersets.py:46 -#: netbox/virtualization/forms/filtersets.py:100 -#: netbox/wireless/forms/model_forms.py:87 -#: netbox/wireless/forms/model_forms.py:129 +#: circuits/forms/filtersets.py:30 circuits/forms/filtersets.py:118 +#: circuits/forms/filtersets.py:200 dcim/forms/bulk_edit.py:338 +#: dcim/forms/bulk_edit.py:441 dcim/forms/bulk_edit.py:682 +#: dcim/forms/bulk_edit.py:729 dcim/forms/bulk_edit.py:882 +#: dcim/forms/bulk_import.py:235 dcim/forms/bulk_import.py:315 +#: dcim/forms/bulk_import.py:546 dcim/forms/bulk_import.py:1317 +#: dcim/forms/bulk_import.py:1351 dcim/forms/filtersets.py:95 +#: dcim/forms/filtersets.py:322 dcim/forms/filtersets.py:356 +#: dcim/forms/filtersets.py:396 dcim/forms/filtersets.py:447 +#: dcim/forms/filtersets.py:719 dcim/forms/filtersets.py:762 +#: dcim/forms/filtersets.py:977 dcim/forms/filtersets.py:1006 +#: dcim/forms/filtersets.py:1026 dcim/forms/filtersets.py:1090 +#: dcim/forms/filtersets.py:1120 dcim/forms/filtersets.py:1129 +#: dcim/forms/filtersets.py:1240 dcim/forms/filtersets.py:1264 +#: dcim/forms/filtersets.py:1289 dcim/forms/filtersets.py:1308 +#: dcim/forms/filtersets.py:1331 dcim/forms/filtersets.py:1442 +#: dcim/forms/filtersets.py:1466 dcim/forms/filtersets.py:1490 +#: dcim/forms/filtersets.py:1508 dcim/forms/filtersets.py:1525 +#: dcim/forms/model_forms.py:180 dcim/forms/model_forms.py:243 +#: dcim/forms/model_forms.py:468 dcim/forms/model_forms.py:728 +#: dcim/tables/devices.py:157 dcim/tables/power.py:30 dcim/tables/racks.py:118 +#: dcim/tables/racks.py:212 extras/filtersets.py:536 +#: extras/forms/filtersets.py:320 ipam/forms/filtersets.py:173 +#: ipam/forms/filtersets.py:414 ipam/forms/filtersets.py:437 +#: ipam/forms/filtersets.py:467 templates/dcim/device.html:26 +#: templates/dcim/device_edit.html:30 +#: templates/dcim/inc/cable_termination.html:12 +#: templates/dcim/location.html:26 templates/dcim/powerpanel.html:26 +#: templates/dcim/rack.html:24 templates/dcim/rackreservation.html:32 +#: virtualization/forms/filtersets.py:46 +#: virtualization/forms/filtersets.py:100 wireless/forms/model_forms.py:87 +#: wireless/forms/model_forms.py:129 msgid "Location" msgstr "Localização" -#: netbox/circuits/forms/filtersets.py:32 -#: netbox/circuits/forms/filtersets.py:120 netbox/dcim/forms/filtersets.py:144 -#: netbox/dcim/forms/filtersets.py:158 netbox/dcim/forms/filtersets.py:174 -#: netbox/dcim/forms/filtersets.py:206 netbox/dcim/forms/filtersets.py:328 -#: netbox/dcim/forms/filtersets.py:400 netbox/dcim/forms/filtersets.py:471 -#: netbox/dcim/forms/filtersets.py:723 netbox/dcim/forms/filtersets.py:1091 -#: netbox/netbox/navigation/menu.py:31 netbox/netbox/navigation/menu.py:33 -#: netbox/tenancy/forms/filtersets.py:42 netbox/tenancy/tables/columns.py:70 -#: netbox/tenancy/tables/contacts.py:25 netbox/tenancy/views.py:19 -#: netbox/virtualization/forms/filtersets.py:37 -#: netbox/virtualization/forms/filtersets.py:48 -#: netbox/virtualization/forms/filtersets.py:106 +#: circuits/forms/filtersets.py:32 circuits/forms/filtersets.py:120 +#: dcim/forms/filtersets.py:144 dcim/forms/filtersets.py:158 +#: dcim/forms/filtersets.py:174 dcim/forms/filtersets.py:206 +#: dcim/forms/filtersets.py:328 dcim/forms/filtersets.py:400 +#: dcim/forms/filtersets.py:471 dcim/forms/filtersets.py:723 +#: dcim/forms/filtersets.py:1091 netbox/navigation/menu.py:31 +#: netbox/navigation/menu.py:33 tenancy/forms/filtersets.py:42 +#: tenancy/tables/columns.py:70 tenancy/tables/contacts.py:25 +#: tenancy/views.py:19 virtualization/forms/filtersets.py:37 +#: virtualization/forms/filtersets.py:48 +#: virtualization/forms/filtersets.py:106 msgid "Contacts" msgstr "Contatos" -#: netbox/circuits/forms/filtersets.py:37 -#: netbox/circuits/forms/filtersets.py:157 netbox/dcim/forms/bulk_edit.py:112 -#: netbox/dcim/forms/bulk_edit.py:313 netbox/dcim/forms/bulk_edit.py:857 -#: netbox/dcim/forms/bulk_import.py:93 netbox/dcim/forms/filtersets.py:73 -#: netbox/dcim/forms/filtersets.py:185 netbox/dcim/forms/filtersets.py:211 -#: netbox/dcim/forms/filtersets.py:334 netbox/dcim/forms/filtersets.py:425 -#: netbox/dcim/forms/filtersets.py:739 netbox/dcim/forms/filtersets.py:983 -#: netbox/dcim/forms/filtersets.py:1013 netbox/dcim/forms/filtersets.py:1097 -#: netbox/dcim/forms/filtersets.py:1136 netbox/dcim/forms/filtersets.py:1576 -#: netbox/dcim/forms/filtersets.py:1600 netbox/dcim/forms/filtersets.py:1624 -#: netbox/dcim/forms/model_forms.py:112 netbox/dcim/forms/object_create.py:375 -#: netbox/dcim/tables/devices.py:143 netbox/dcim/tables/sites.py:85 -#: netbox/extras/filtersets.py:503 netbox/ipam/forms/bulk_edit.py:207 -#: netbox/ipam/forms/bulk_edit.py:441 netbox/ipam/forms/bulk_edit.py:519 -#: netbox/ipam/forms/filtersets.py:217 netbox/ipam/forms/filtersets.py:422 -#: netbox/ipam/forms/filtersets.py:475 netbox/templates/dcim/device.html:18 -#: netbox/templates/dcim/rack.html:16 -#: netbox/templates/dcim/rackreservation.html:22 -#: netbox/templates/dcim/region.html:26 netbox/templates/dcim/site.html:31 -#: netbox/templates/ipam/prefix.html:49 netbox/templates/ipam/vlan.html:16 -#: netbox/virtualization/forms/bulk_edit.py:81 -#: netbox/virtualization/forms/filtersets.py:59 -#: netbox/virtualization/forms/filtersets.py:133 -#: netbox/virtualization/forms/model_forms.py:92 -#: netbox/vpn/forms/filtersets.py:257 +#: circuits/forms/filtersets.py:37 circuits/forms/filtersets.py:157 +#: dcim/forms/bulk_edit.py:112 dcim/forms/bulk_edit.py:313 +#: dcim/forms/bulk_edit.py:857 dcim/forms/bulk_import.py:93 +#: dcim/forms/filtersets.py:73 dcim/forms/filtersets.py:185 +#: dcim/forms/filtersets.py:211 dcim/forms/filtersets.py:334 +#: dcim/forms/filtersets.py:425 dcim/forms/filtersets.py:739 +#: dcim/forms/filtersets.py:983 dcim/forms/filtersets.py:1013 +#: dcim/forms/filtersets.py:1097 dcim/forms/filtersets.py:1136 +#: dcim/forms/filtersets.py:1576 dcim/forms/filtersets.py:1600 +#: dcim/forms/filtersets.py:1624 dcim/forms/model_forms.py:112 +#: dcim/forms/object_create.py:375 dcim/tables/devices.py:143 +#: dcim/tables/sites.py:85 extras/filtersets.py:503 +#: ipam/forms/bulk_edit.py:208 ipam/forms/bulk_edit.py:474 +#: ipam/forms/filtersets.py:217 ipam/forms/filtersets.py:422 +#: ipam/forms/filtersets.py:475 templates/dcim/device.html:18 +#: templates/dcim/rack.html:16 templates/dcim/rackreservation.html:22 +#: templates/dcim/region.html:26 templates/dcim/site.html:31 +#: templates/ipam/prefix.html:49 templates/ipam/vlan.html:16 +#: virtualization/forms/bulk_edit.py:81 virtualization/forms/filtersets.py:59 +#: virtualization/forms/filtersets.py:133 +#: virtualization/forms/model_forms.py:92 vpn/forms/filtersets.py:257 msgid "Region" msgstr "Região" -#: netbox/circuits/forms/filtersets.py:42 -#: netbox/circuits/forms/filtersets.py:162 netbox/dcim/forms/bulk_edit.py:321 -#: netbox/dcim/forms/bulk_edit.py:865 netbox/dcim/forms/filtersets.py:78 -#: netbox/dcim/forms/filtersets.py:190 netbox/dcim/forms/filtersets.py:216 -#: netbox/dcim/forms/filtersets.py:347 netbox/dcim/forms/filtersets.py:430 -#: netbox/dcim/forms/filtersets.py:744 netbox/dcim/forms/filtersets.py:988 -#: netbox/dcim/forms/filtersets.py:1102 netbox/dcim/forms/filtersets.py:1141 -#: netbox/dcim/forms/object_create.py:383 netbox/extras/filtersets.py:520 -#: netbox/ipam/forms/bulk_edit.py:212 netbox/ipam/forms/bulk_edit.py:448 -#: netbox/ipam/forms/bulk_edit.py:524 netbox/ipam/forms/filtersets.py:222 -#: netbox/ipam/forms/filtersets.py:427 netbox/ipam/forms/filtersets.py:480 -#: netbox/virtualization/forms/bulk_edit.py:86 -#: netbox/virtualization/forms/filtersets.py:69 -#: netbox/virtualization/forms/filtersets.py:138 -#: netbox/virtualization/forms/model_forms.py:98 +#: circuits/forms/filtersets.py:42 circuits/forms/filtersets.py:162 +#: dcim/forms/bulk_edit.py:321 dcim/forms/bulk_edit.py:865 +#: dcim/forms/filtersets.py:78 dcim/forms/filtersets.py:190 +#: dcim/forms/filtersets.py:216 dcim/forms/filtersets.py:347 +#: dcim/forms/filtersets.py:430 dcim/forms/filtersets.py:744 +#: dcim/forms/filtersets.py:988 dcim/forms/filtersets.py:1102 +#: dcim/forms/filtersets.py:1141 dcim/forms/object_create.py:383 +#: extras/filtersets.py:520 ipam/forms/bulk_edit.py:213 +#: ipam/forms/bulk_edit.py:479 ipam/forms/filtersets.py:222 +#: ipam/forms/filtersets.py:427 ipam/forms/filtersets.py:480 +#: virtualization/forms/bulk_edit.py:86 virtualization/forms/filtersets.py:69 +#: virtualization/forms/filtersets.py:138 +#: virtualization/forms/model_forms.py:98 msgid "Site group" msgstr "Grupo de sites" -#: netbox/circuits/forms/filtersets.py:65 -#: netbox/circuits/forms/filtersets.py:83 -#: netbox/circuits/forms/filtersets.py:102 -#: netbox/circuits/forms/filtersets.py:117 netbox/core/forms/filtersets.py:67 -#: netbox/core/forms/filtersets.py:135 netbox/dcim/forms/bulk_edit.py:828 -#: netbox/dcim/forms/filtersets.py:172 netbox/dcim/forms/filtersets.py:204 -#: netbox/dcim/forms/filtersets.py:915 netbox/dcim/forms/filtersets.py:1007 -#: netbox/dcim/forms/filtersets.py:1131 netbox/dcim/forms/filtersets.py:1239 -#: netbox/dcim/forms/filtersets.py:1263 netbox/dcim/forms/filtersets.py:1288 -#: netbox/dcim/forms/filtersets.py:1307 netbox/dcim/forms/filtersets.py:1327 -#: netbox/dcim/forms/filtersets.py:1441 netbox/dcim/forms/filtersets.py:1465 -#: netbox/dcim/forms/filtersets.py:1489 netbox/dcim/forms/filtersets.py:1507 -#: netbox/dcim/forms/filtersets.py:1523 netbox/extras/forms/bulk_edit.py:90 -#: netbox/extras/forms/filtersets.py:44 netbox/extras/forms/filtersets.py:134 -#: netbox/extras/forms/filtersets.py:165 netbox/extras/forms/filtersets.py:205 -#: netbox/extras/forms/filtersets.py:221 netbox/extras/forms/filtersets.py:252 -#: netbox/extras/forms/filtersets.py:276 netbox/extras/forms/filtersets.py:441 -#: netbox/ipam/forms/filtersets.py:99 netbox/ipam/forms/filtersets.py:266 -#: netbox/ipam/forms/filtersets.py:307 netbox/ipam/forms/filtersets.py:382 -#: netbox/ipam/forms/filtersets.py:468 netbox/ipam/forms/filtersets.py:527 -#: netbox/ipam/forms/filtersets.py:545 netbox/netbox/tables/tables.py:256 -#: netbox/virtualization/forms/filtersets.py:45 -#: netbox/virtualization/forms/filtersets.py:103 -#: netbox/virtualization/forms/filtersets.py:198 -#: netbox/virtualization/forms/filtersets.py:243 -#: netbox/vpn/forms/filtersets.py:213 netbox/wireless/forms/bulk_edit.py:150 -#: netbox/wireless/forms/filtersets.py:34 -#: netbox/wireless/forms/filtersets.py:74 +#: circuits/forms/filtersets.py:65 circuits/forms/filtersets.py:83 +#: circuits/forms/filtersets.py:102 circuits/forms/filtersets.py:117 +#: core/forms/filtersets.py:67 core/forms/filtersets.py:135 +#: dcim/forms/bulk_edit.py:828 dcim/forms/filtersets.py:172 +#: dcim/forms/filtersets.py:204 dcim/forms/filtersets.py:915 +#: dcim/forms/filtersets.py:1007 dcim/forms/filtersets.py:1131 +#: dcim/forms/filtersets.py:1239 dcim/forms/filtersets.py:1263 +#: dcim/forms/filtersets.py:1288 dcim/forms/filtersets.py:1307 +#: dcim/forms/filtersets.py:1327 dcim/forms/filtersets.py:1441 +#: dcim/forms/filtersets.py:1465 dcim/forms/filtersets.py:1489 +#: dcim/forms/filtersets.py:1507 dcim/forms/filtersets.py:1523 +#: extras/forms/bulk_edit.py:90 extras/forms/filtersets.py:44 +#: extras/forms/filtersets.py:134 extras/forms/filtersets.py:165 +#: extras/forms/filtersets.py:205 extras/forms/filtersets.py:221 +#: extras/forms/filtersets.py:252 extras/forms/filtersets.py:276 +#: extras/forms/filtersets.py:441 ipam/forms/filtersets.py:99 +#: ipam/forms/filtersets.py:266 ipam/forms/filtersets.py:307 +#: ipam/forms/filtersets.py:382 ipam/forms/filtersets.py:468 +#: ipam/forms/filtersets.py:527 ipam/forms/filtersets.py:545 +#: netbox/tables/tables.py:256 virtualization/forms/filtersets.py:45 +#: virtualization/forms/filtersets.py:103 +#: virtualization/forms/filtersets.py:198 +#: virtualization/forms/filtersets.py:243 vpn/forms/filtersets.py:213 +#: wireless/forms/bulk_edit.py:150 wireless/forms/filtersets.py:34 +#: wireless/forms/filtersets.py:74 msgid "Attributes" msgstr "Atributos" -#: netbox/circuits/forms/filtersets.py:73 -#: netbox/circuits/tables/circuits.py:63 -#: netbox/circuits/tables/providers.py:66 -#: netbox/templates/circuits/circuit.html:22 -#: netbox/templates/circuits/provideraccount.html:24 +#: circuits/forms/filtersets.py:73 circuits/tables/circuits.py:63 +#: circuits/tables/providers.py:66 templates/circuits/circuit.html:22 +#: templates/circuits/provideraccount.html:24 msgid "Account" msgstr "Conta" -#: netbox/circuits/forms/filtersets.py:217 +#: circuits/forms/filtersets.py:217 msgid "Term Side" msgstr "Lado da Terminação" -#: netbox/circuits/forms/filtersets.py:250 -#: netbox/extras/forms/model_forms.py:582 netbox/ipam/forms/filtersets.py:142 -#: netbox/ipam/forms/filtersets.py:546 netbox/ipam/forms/model_forms.py:323 -#: netbox/templates/extras/configcontext.html:60 -#: netbox/templates/ipam/ipaddress.html:59 -#: netbox/templates/ipam/vlan_edit.html:30 -#: netbox/tenancy/forms/filtersets.py:87 netbox/users/forms/model_forms.py:314 +#: circuits/forms/filtersets.py:250 extras/forms/model_forms.py:582 +#: ipam/forms/filtersets.py:142 ipam/forms/filtersets.py:546 +#: ipam/forms/model_forms.py:323 templates/extras/configcontext.html:60 +#: templates/ipam/ipaddress.html:59 templates/ipam/vlan_edit.html:30 +#: tenancy/forms/filtersets.py:87 users/forms/model_forms.py:314 msgid "Assignment" msgstr "Atribuição" -#: netbox/circuits/forms/filtersets.py:265 -#: netbox/circuits/forms/model_forms.py:195 -#: netbox/circuits/tables/circuits.py:155 netbox/dcim/forms/bulk_edit.py:117 -#: netbox/dcim/forms/bulk_import.py:100 netbox/dcim/forms/model_forms.py:117 -#: netbox/dcim/tables/sites.py:89 netbox/extras/forms/filtersets.py:480 -#: netbox/ipam/filtersets.py:999 netbox/ipam/forms/bulk_edit.py:538 -#: netbox/ipam/forms/bulk_import.py:436 netbox/ipam/forms/model_forms.py:528 -#: netbox/ipam/tables/fhrp.py:67 netbox/ipam/tables/vlans.py:122 -#: netbox/ipam/tables/vlans.py:226 -#: netbox/templates/circuits/circuitgroupassignment.html:22 -#: netbox/templates/dcim/interface.html:284 netbox/templates/dcim/site.html:37 -#: netbox/templates/ipam/inc/panels/fhrp_groups.html:23 -#: netbox/templates/ipam/vlan.html:27 netbox/templates/tenancy/contact.html:21 -#: netbox/templates/tenancy/tenant.html:20 netbox/templates/users/group.html:6 -#: netbox/templates/users/group.html:14 -#: netbox/templates/virtualization/cluster.html:29 -#: netbox/templates/vpn/tunnel.html:29 -#: netbox/templates/wireless/wirelesslan.html:18 -#: netbox/tenancy/forms/bulk_edit.py:43 netbox/tenancy/forms/bulk_edit.py:94 -#: netbox/tenancy/forms/bulk_import.py:40 -#: netbox/tenancy/forms/bulk_import.py:81 -#: netbox/tenancy/forms/filtersets.py:48 netbox/tenancy/forms/filtersets.py:78 -#: netbox/tenancy/forms/filtersets.py:97 -#: netbox/tenancy/forms/model_forms.py:45 -#: netbox/tenancy/forms/model_forms.py:97 -#: netbox/tenancy/forms/model_forms.py:122 -#: netbox/tenancy/tables/contacts.py:60 netbox/tenancy/tables/contacts.py:107 -#: netbox/tenancy/tables/tenants.py:42 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 -#: netbox/virtualization/forms/bulk_edit.py:65 -#: netbox/virtualization/forms/bulk_import.py:47 -#: netbox/virtualization/forms/filtersets.py:85 -#: netbox/virtualization/forms/model_forms.py:66 -#: netbox/virtualization/tables/clusters.py:70 -#: netbox/vpn/forms/bulk_edit.py:112 netbox/vpn/forms/bulk_import.py:158 -#: netbox/vpn/forms/filtersets.py:116 netbox/vpn/tables/crypto.py:31 -#: netbox/vpn/tables/tunnels.py:44 netbox/wireless/forms/bulk_edit.py:48 -#: netbox/wireless/forms/bulk_import.py:36 -#: netbox/wireless/forms/filtersets.py:46 -#: netbox/wireless/forms/model_forms.py:40 -#: netbox/wireless/tables/wirelesslan.py:48 +#: circuits/forms/filtersets.py:265 circuits/forms/model_forms.py:195 +#: circuits/tables/circuits.py:155 dcim/forms/bulk_edit.py:117 +#: dcim/forms/bulk_import.py:100 dcim/forms/model_forms.py:117 +#: dcim/tables/sites.py:89 extras/forms/filtersets.py:480 +#: ipam/filtersets.py:999 ipam/forms/bulk_edit.py:493 +#: ipam/forms/bulk_import.py:436 ipam/forms/model_forms.py:528 +#: ipam/tables/fhrp.py:67 ipam/tables/vlans.py:122 ipam/tables/vlans.py:226 +#: templates/circuits/circuitgroupassignment.html:22 +#: templates/dcim/interface.html:284 templates/dcim/site.html:37 +#: templates/ipam/inc/panels/fhrp_groups.html:23 templates/ipam/vlan.html:27 +#: templates/tenancy/contact.html:21 templates/tenancy/tenant.html:20 +#: templates/users/group.html:6 templates/users/group.html:14 +#: templates/virtualization/cluster.html:29 templates/vpn/tunnel.html:29 +#: templates/wireless/wirelesslan.html:18 tenancy/forms/bulk_edit.py:43 +#: tenancy/forms/bulk_edit.py:94 tenancy/forms/bulk_import.py:40 +#: tenancy/forms/bulk_import.py:81 tenancy/forms/filtersets.py:48 +#: tenancy/forms/filtersets.py:78 tenancy/forms/filtersets.py:97 +#: tenancy/forms/model_forms.py:45 tenancy/forms/model_forms.py:97 +#: tenancy/forms/model_forms.py:122 tenancy/tables/contacts.py:60 +#: tenancy/tables/contacts.py:107 tenancy/tables/tenants.py:42 +#: users/filtersets.py:62 users/filtersets.py:185 users/forms/filtersets.py:31 +#: users/forms/filtersets.py:37 users/forms/filtersets.py:79 +#: virtualization/forms/bulk_edit.py:65 virtualization/forms/bulk_import.py:47 +#: virtualization/forms/filtersets.py:85 +#: virtualization/forms/model_forms.py:66 virtualization/tables/clusters.py:70 +#: vpn/forms/bulk_edit.py:112 vpn/forms/bulk_import.py:158 +#: vpn/forms/filtersets.py:116 vpn/tables/crypto.py:31 +#: vpn/tables/tunnels.py:44 wireless/forms/bulk_edit.py:48 +#: wireless/forms/bulk_import.py:36 wireless/forms/filtersets.py:46 +#: wireless/forms/model_forms.py:40 wireless/tables/wirelesslan.py:48 msgid "Group" msgstr "Grupo" -#: netbox/circuits/forms/model_forms.py:182 -#: netbox/templates/circuits/circuitgroup.html:25 +#: circuits/forms/model_forms.py:182 templates/circuits/circuitgroup.html:25 msgid "Circuit Group" msgstr "Grupo de Circuitos" -#: netbox/circuits/models/circuits.py:27 netbox/dcim/models/cables.py:67 -#: netbox/dcim/models/device_component_templates.py:517 -#: netbox/dcim/models/device_component_templates.py:617 -#: netbox/dcim/models/device_components.py:975 -#: netbox/dcim/models/device_components.py:1049 -#: netbox/dcim/models/device_components.py:1204 -#: netbox/dcim/models/devices.py:479 netbox/dcim/models/racks.py:224 -#: netbox/extras/models/tags.py:28 +#: circuits/models/circuits.py:27 dcim/models/cables.py:67 +#: dcim/models/device_component_templates.py:517 +#: dcim/models/device_component_templates.py:617 +#: dcim/models/device_components.py:975 dcim/models/device_components.py:1049 +#: dcim/models/device_components.py:1204 dcim/models/devices.py:479 +#: dcim/models/racks.py:224 extras/models/tags.py:28 msgid "color" msgstr "cor" -#: netbox/circuits/models/circuits.py:36 +#: circuits/models/circuits.py:36 msgid "circuit type" msgstr "tipo de circuito" -#: netbox/circuits/models/circuits.py:37 +#: circuits/models/circuits.py:37 msgid "circuit types" msgstr "tipos de circuitos" -#: netbox/circuits/models/circuits.py:48 +#: circuits/models/circuits.py:48 msgid "circuit ID" msgstr "ID do circuito" -#: netbox/circuits/models/circuits.py:49 +#: circuits/models/circuits.py:49 msgid "Unique circuit ID" msgstr "ID única do circuito" -#: netbox/circuits/models/circuits.py:69 netbox/core/models/data.py:52 -#: netbox/core/models/jobs.py:84 netbox/dcim/models/cables.py:49 -#: netbox/dcim/models/devices.py:653 netbox/dcim/models/devices.py:1173 -#: netbox/dcim/models/devices.py:1399 netbox/dcim/models/power.py:96 -#: netbox/dcim/models/racks.py:297 netbox/dcim/models/sites.py:154 -#: netbox/dcim/models/sites.py:266 netbox/ipam/models/ip.py:253 -#: netbox/ipam/models/ip.py:522 netbox/ipam/models/ip.py:730 -#: netbox/ipam/models/vlans.py:195 netbox/virtualization/models/clusters.py:74 -#: netbox/virtualization/models/virtualmachines.py:84 -#: netbox/vpn/models/tunnels.py:40 netbox/wireless/models.py:95 -#: netbox/wireless/models.py:159 +#: circuits/models/circuits.py:69 core/models/data.py:52 +#: core/models/jobs.py:84 dcim/models/cables.py:49 dcim/models/devices.py:653 +#: dcim/models/devices.py:1173 dcim/models/devices.py:1399 +#: dcim/models/power.py:96 dcim/models/racks.py:297 dcim/models/sites.py:154 +#: dcim/models/sites.py:266 ipam/models/ip.py:253 ipam/models/ip.py:522 +#: ipam/models/ip.py:730 ipam/models/vlans.py:195 +#: virtualization/models/clusters.py:74 +#: virtualization/models/virtualmachines.py:84 vpn/models/tunnels.py:40 +#: wireless/models.py:95 wireless/models.py:159 msgid "status" msgstr "status" -#: netbox/circuits/models/circuits.py:84 netbox/templates/core/plugin.html:19 +#: circuits/models/circuits.py:84 templates/core/plugin.html:20 msgid "installed" msgstr "instalado" -#: netbox/circuits/models/circuits.py:89 +#: circuits/models/circuits.py:89 msgid "terminates" msgstr "encerramento" -#: netbox/circuits/models/circuits.py:94 +#: circuits/models/circuits.py:94 msgid "commit rate (Kbps)" msgstr "taxa garantida (Kbps)" -#: netbox/circuits/models/circuits.py:95 +#: circuits/models/circuits.py:95 msgid "Committed rate" msgstr "Taxa garantida" -#: netbox/circuits/models/circuits.py:137 +#: circuits/models/circuits.py:137 msgid "circuit" msgstr "circuito" -#: netbox/circuits/models/circuits.py:138 +#: circuits/models/circuits.py:138 msgid "circuits" msgstr "circuitos" -#: netbox/circuits/models/circuits.py:170 +#: circuits/models/circuits.py:170 msgid "circuit group" msgstr "grupo de circuitos" -#: netbox/circuits/models/circuits.py:171 +#: circuits/models/circuits.py:171 msgid "circuit groups" msgstr "grupos de circuitos" -#: netbox/circuits/models/circuits.py:195 netbox/ipam/models/fhrp.py:93 -#: netbox/tenancy/models/contacts.py:134 +#: circuits/models/circuits.py:195 ipam/models/fhrp.py:93 +#: tenancy/models/contacts.py:134 msgid "priority" msgstr "prioridade" -#: netbox/circuits/models/circuits.py:213 +#: circuits/models/circuits.py:213 msgid "Circuit group assignment" msgstr "Atribuição do grupo de circuitos" -#: netbox/circuits/models/circuits.py:214 +#: circuits/models/circuits.py:214 msgid "Circuit group assignments" msgstr "Atribuições do grupo de circuitos" -#: netbox/circuits/models/circuits.py:240 +#: circuits/models/circuits.py:240 msgid "termination" msgstr "terminação" -#: netbox/circuits/models/circuits.py:257 +#: circuits/models/circuits.py:257 msgid "port speed (Kbps)" msgstr "velocidade da porta (Kbps)" -#: netbox/circuits/models/circuits.py:260 +#: circuits/models/circuits.py:260 msgid "Physical circuit speed" msgstr "Velocidade do circuito físico" -#: netbox/circuits/models/circuits.py:265 +#: circuits/models/circuits.py:265 msgid "upstream speed (Kbps)" msgstr "velocidade de upstream (Kbps)" -#: netbox/circuits/models/circuits.py:266 +#: circuits/models/circuits.py:266 msgid "Upstream speed, if different from port speed" msgstr "Velocidade de upstream, se diferente da velocidade da porta" -#: netbox/circuits/models/circuits.py:271 +#: circuits/models/circuits.py:271 msgid "cross-connect ID" msgstr "ID da conexão cruzada" -#: netbox/circuits/models/circuits.py:272 +#: circuits/models/circuits.py:272 msgid "ID of the local cross-connect" msgstr "ID da conexão cruzada local" -#: netbox/circuits/models/circuits.py:277 +#: circuits/models/circuits.py:277 msgid "patch panel/port(s)" msgstr "patch panel/porta(s)" -#: netbox/circuits/models/circuits.py:278 +#: circuits/models/circuits.py:278 msgid "Patch panel ID and port number(s)" msgstr "ID do patch panel e número da(s) porta(s)" -#: netbox/circuits/models/circuits.py:281 -#: netbox/dcim/models/device_component_templates.py:61 -#: netbox/dcim/models/device_components.py:68 netbox/dcim/models/racks.py:685 -#: netbox/extras/models/configs.py:45 netbox/extras/models/configs.py:219 -#: netbox/extras/models/customfields.py:125 netbox/extras/models/models.py:61 -#: netbox/extras/models/models.py:158 netbox/extras/models/models.py:396 -#: netbox/extras/models/models.py:511 -#: netbox/extras/models/notifications.py:131 -#: netbox/extras/models/staging.py:31 netbox/extras/models/tags.py:32 -#: netbox/netbox/models/__init__.py:110 netbox/netbox/models/__init__.py:145 -#: netbox/netbox/models/__init__.py:191 netbox/users/models/permissions.py:24 -#: netbox/users/models/tokens.py:57 netbox/users/models/users.py:33 -#: netbox/virtualization/models/virtualmachines.py:289 +#: circuits/models/circuits.py:281 +#: dcim/models/device_component_templates.py:61 +#: dcim/models/device_components.py:68 dcim/models/racks.py:685 +#: extras/models/configs.py:45 extras/models/configs.py:219 +#: extras/models/customfields.py:125 extras/models/models.py:61 +#: extras/models/models.py:158 extras/models/models.py:396 +#: extras/models/models.py:511 extras/models/notifications.py:131 +#: extras/models/staging.py:31 extras/models/tags.py:32 +#: netbox/models/__init__.py:110 netbox/models/__init__.py:145 +#: netbox/models/__init__.py:191 users/models/permissions.py:24 +#: users/models/tokens.py:57 users/models/users.py:33 +#: virtualization/models/virtualmachines.py:289 msgid "description" msgstr "descrição" -#: netbox/circuits/models/circuits.py:294 +#: circuits/models/circuits.py:294 msgid "circuit termination" msgstr "terminação do circuito" -#: netbox/circuits/models/circuits.py:295 +#: circuits/models/circuits.py:295 msgid "circuit terminations" msgstr "terminações dos circuitos" -#: netbox/circuits/models/circuits.py:308 +#: circuits/models/circuits.py:308 msgid "" "A circuit termination must attach to either a site or a provider network." msgstr "" "Uma terminação de circuito deve ser conectada a um site ou a uma rede do " "provedor." -#: netbox/circuits/models/circuits.py:310 +#: circuits/models/circuits.py:310 msgid "" "A circuit termination cannot attach to both a site and a provider network." msgstr "" "Uma terminação de circuito não pode ser conectada ao mesmo tempo a um site e" " a uma rede do provedor." -#: netbox/circuits/models/providers.py:22 -#: netbox/circuits/models/providers.py:66 -#: netbox/circuits/models/providers.py:104 netbox/core/models/data.py:39 -#: netbox/core/models/jobs.py:45 -#: netbox/dcim/models/device_component_templates.py:43 -#: netbox/dcim/models/device_components.py:53 -#: netbox/dcim/models/devices.py:593 netbox/dcim/models/devices.py:1330 -#: netbox/dcim/models/devices.py:1395 netbox/dcim/models/power.py:39 -#: netbox/dcim/models/power.py:92 netbox/dcim/models/racks.py:262 -#: netbox/dcim/models/sites.py:138 netbox/extras/models/configs.py:36 -#: netbox/extras/models/configs.py:215 netbox/extras/models/customfields.py:92 -#: netbox/extras/models/models.py:56 netbox/extras/models/models.py:153 -#: netbox/extras/models/models.py:296 netbox/extras/models/models.py:392 -#: netbox/extras/models/models.py:501 netbox/extras/models/models.py:596 -#: netbox/extras/models/notifications.py:126 -#: netbox/extras/models/scripts.py:30 netbox/extras/models/staging.py:26 -#: netbox/ipam/models/asns.py:18 netbox/ipam/models/fhrp.py:25 -#: netbox/ipam/models/services.py:52 netbox/ipam/models/services.py:88 -#: netbox/ipam/models/vlans.py:36 netbox/ipam/models/vlans.py:184 -#: netbox/ipam/models/vrfs.py:22 netbox/ipam/models/vrfs.py:79 -#: netbox/netbox/models/__init__.py:137 netbox/netbox/models/__init__.py:181 -#: netbox/tenancy/models/contacts.py:64 netbox/tenancy/models/tenants.py:20 -#: netbox/tenancy/models/tenants.py:45 netbox/users/models/permissions.py:20 -#: netbox/users/models/users.py:28 netbox/virtualization/models/clusters.py:57 -#: netbox/virtualization/models/virtualmachines.py:72 -#: netbox/virtualization/models/virtualmachines.py:279 -#: netbox/vpn/models/crypto.py:24 netbox/vpn/models/crypto.py:71 -#: netbox/vpn/models/crypto.py:131 netbox/vpn/models/crypto.py:183 -#: netbox/vpn/models/crypto.py:221 netbox/vpn/models/l2vpn.py:22 -#: netbox/vpn/models/tunnels.py:35 netbox/wireless/models.py:51 +#: circuits/models/providers.py:22 circuits/models/providers.py:66 +#: circuits/models/providers.py:104 core/models/data.py:39 +#: core/models/jobs.py:45 dcim/models/device_component_templates.py:43 +#: dcim/models/device_components.py:53 dcim/models/devices.py:593 +#: dcim/models/devices.py:1330 dcim/models/devices.py:1395 +#: dcim/models/power.py:39 dcim/models/power.py:92 dcim/models/racks.py:262 +#: dcim/models/sites.py:138 extras/models/configs.py:36 +#: extras/models/configs.py:215 extras/models/customfields.py:92 +#: extras/models/models.py:56 extras/models/models.py:153 +#: extras/models/models.py:296 extras/models/models.py:392 +#: extras/models/models.py:501 extras/models/models.py:596 +#: extras/models/notifications.py:126 extras/models/scripts.py:30 +#: extras/models/staging.py:26 ipam/models/asns.py:18 ipam/models/fhrp.py:25 +#: ipam/models/services.py:52 ipam/models/services.py:88 +#: ipam/models/vlans.py:36 ipam/models/vlans.py:184 ipam/models/vrfs.py:22 +#: ipam/models/vrfs.py:79 netbox/models/__init__.py:137 +#: netbox/models/__init__.py:181 tenancy/models/contacts.py:64 +#: tenancy/models/tenants.py:20 tenancy/models/tenants.py:45 +#: users/models/permissions.py:20 users/models/users.py:28 +#: virtualization/models/clusters.py:57 +#: virtualization/models/virtualmachines.py:72 +#: virtualization/models/virtualmachines.py:279 vpn/models/crypto.py:24 +#: vpn/models/crypto.py:71 vpn/models/crypto.py:131 vpn/models/crypto.py:183 +#: vpn/models/crypto.py:221 vpn/models/l2vpn.py:22 vpn/models/tunnels.py:35 +#: wireless/models.py:51 msgid "name" msgstr "nome" -#: netbox/circuits/models/providers.py:25 +#: circuits/models/providers.py:25 msgid "Full name of the provider" msgstr "Nome completo do provedor" -#: netbox/circuits/models/providers.py:28 netbox/dcim/models/devices.py:86 -#: netbox/dcim/models/racks.py:137 netbox/dcim/models/sites.py:149 -#: netbox/extras/models/models.py:506 netbox/ipam/models/asns.py:23 -#: netbox/ipam/models/vlans.py:40 netbox/netbox/models/__init__.py:141 -#: netbox/netbox/models/__init__.py:186 netbox/tenancy/models/tenants.py:25 -#: netbox/tenancy/models/tenants.py:49 netbox/vpn/models/l2vpn.py:27 -#: netbox/wireless/models.py:56 +#: circuits/models/providers.py:28 dcim/models/devices.py:86 +#: dcim/models/racks.py:137 dcim/models/sites.py:149 +#: extras/models/models.py:506 ipam/models/asns.py:23 ipam/models/vlans.py:40 +#: netbox/models/__init__.py:141 netbox/models/__init__.py:186 +#: tenancy/models/tenants.py:25 tenancy/models/tenants.py:49 +#: vpn/models/l2vpn.py:27 wireless/models.py:56 msgid "slug" msgstr "slug" -#: netbox/circuits/models/providers.py:42 +#: circuits/models/providers.py:42 msgid "provider" msgstr "provedor" -#: netbox/circuits/models/providers.py:43 +#: circuits/models/providers.py:43 msgid "providers" msgstr "provedores" -#: netbox/circuits/models/providers.py:63 +#: circuits/models/providers.py:63 msgid "account ID" msgstr "ID da conta" -#: netbox/circuits/models/providers.py:86 +#: circuits/models/providers.py:86 msgid "provider account" msgstr "conta de provedor" -#: netbox/circuits/models/providers.py:87 +#: circuits/models/providers.py:87 msgid "provider accounts" msgstr "contas de provedores" -#: netbox/circuits/models/providers.py:115 +#: circuits/models/providers.py:115 msgid "service ID" msgstr "ID do serviço" -#: netbox/circuits/models/providers.py:126 +#: circuits/models/providers.py:126 msgid "provider network" msgstr "rede do provedor" -#: netbox/circuits/models/providers.py:127 +#: circuits/models/providers.py:127 msgid "provider networks" msgstr "redes dos provedores" -#: netbox/circuits/tables/circuits.py:32 -#: netbox/circuits/tables/circuits.py:132 -#: netbox/circuits/tables/providers.py:18 -#: netbox/circuits/tables/providers.py:69 -#: netbox/circuits/tables/providers.py:99 netbox/core/tables/data.py:16 -#: netbox/core/tables/jobs.py:14 netbox/core/tables/plugins.py:44 -#: netbox/core/tables/tasks.py:11 netbox/core/tables/tasks.py:115 -#: netbox/dcim/forms/filtersets.py:63 netbox/dcim/forms/object_create.py:43 -#: netbox/dcim/tables/devices.py:52 netbox/dcim/tables/devices.py:92 -#: netbox/dcim/tables/devices.py:134 netbox/dcim/tables/devices.py:289 -#: netbox/dcim/tables/devices.py:392 netbox/dcim/tables/devices.py:433 -#: netbox/dcim/tables/devices.py:482 netbox/dcim/tables/devices.py:531 -#: netbox/dcim/tables/devices.py:648 netbox/dcim/tables/devices.py:731 -#: netbox/dcim/tables/devices.py:778 netbox/dcim/tables/devices.py:841 -#: netbox/dcim/tables/devices.py:911 netbox/dcim/tables/devices.py:974 -#: netbox/dcim/tables/devices.py:994 netbox/dcim/tables/devices.py:1023 -#: netbox/dcim/tables/devices.py:1053 netbox/dcim/tables/devicetypes.py:31 -#: netbox/dcim/tables/power.py:22 netbox/dcim/tables/power.py:62 -#: netbox/dcim/tables/racks.py:24 netbox/dcim/tables/racks.py:113 -#: netbox/dcim/tables/sites.py:24 netbox/dcim/tables/sites.py:51 -#: netbox/dcim/tables/sites.py:78 netbox/dcim/tables/sites.py:130 -#: netbox/extras/forms/filtersets.py:213 netbox/extras/tables/tables.py:58 -#: netbox/extras/tables/tables.py:122 netbox/extras/tables/tables.py:155 -#: netbox/extras/tables/tables.py:180 netbox/extras/tables/tables.py:246 -#: netbox/extras/tables/tables.py:361 netbox/extras/tables/tables.py:378 -#: netbox/extras/tables/tables.py:401 netbox/extras/tables/tables.py:439 -#: netbox/extras/tables/tables.py:491 netbox/extras/tables/tables.py:514 -#: netbox/ipam/forms/bulk_edit.py:406 netbox/ipam/forms/filtersets.py:386 -#: netbox/ipam/tables/asn.py:16 netbox/ipam/tables/ip.py:85 -#: netbox/ipam/tables/ip.py:160 netbox/ipam/tables/services.py:15 -#: netbox/ipam/tables/services.py:40 netbox/ipam/tables/vlans.py:64 -#: netbox/ipam/tables/vlans.py:114 netbox/ipam/tables/vrfs.py:26 -#: netbox/ipam/tables/vrfs.py:68 -#: netbox/templates/circuits/circuitgroup.html:28 -#: netbox/templates/circuits/circuittype.html:22 -#: netbox/templates/circuits/provideraccount.html:28 -#: netbox/templates/circuits/providernetwork.html:24 -#: netbox/templates/core/datasource.html:34 netbox/templates/core/job.html:44 -#: netbox/templates/core/plugin.html:53 -#: netbox/templates/core/rq_worker.html:43 -#: netbox/templates/dcim/consoleport.html:28 -#: netbox/templates/dcim/consoleserverport.html:28 -#: netbox/templates/dcim/devicebay.html:24 -#: netbox/templates/dcim/devicerole.html:26 -#: netbox/templates/dcim/frontport.html:28 -#: netbox/templates/dcim/inc/interface_vlans_table.html:5 -#: netbox/templates/dcim/inc/panels/inventory_items.html:18 -#: netbox/templates/dcim/interface.html:38 -#: netbox/templates/dcim/interface.html:165 -#: netbox/templates/dcim/inventoryitem.html:28 -#: netbox/templates/dcim/inventoryitemrole.html:18 -#: netbox/templates/dcim/location.html:29 -#: netbox/templates/dcim/manufacturer.html:36 -#: netbox/templates/dcim/modulebay.html:30 -#: netbox/templates/dcim/platform.html:29 -#: netbox/templates/dcim/poweroutlet.html:28 -#: netbox/templates/dcim/powerport.html:28 -#: netbox/templates/dcim/rackrole.html:22 -#: netbox/templates/dcim/rearport.html:28 netbox/templates/dcim/region.html:29 -#: netbox/templates/dcim/sitegroup.html:29 -#: netbox/templates/dcim/virtualdevicecontext.html:18 -#: netbox/templates/extras/configcontext.html:13 -#: netbox/templates/extras/configtemplate.html:13 -#: netbox/templates/extras/customfield.html:13 -#: netbox/templates/extras/customlink.html:13 -#: netbox/templates/extras/eventrule.html:13 -#: netbox/templates/extras/exporttemplate.html:15 -#: netbox/templates/extras/notificationgroup.html:14 -#: netbox/templates/extras/savedfilter.html:13 -#: netbox/templates/extras/script_list.html:44 -#: netbox/templates/extras/tag.html:14 netbox/templates/extras/webhook.html:13 -#: netbox/templates/ipam/asnrange.html:15 -#: netbox/templates/ipam/fhrpgroup.html:30 netbox/templates/ipam/rir.html:22 -#: netbox/templates/ipam/role.html:22 -#: netbox/templates/ipam/routetarget.html:13 -#: netbox/templates/ipam/service.html:24 -#: netbox/templates/ipam/servicetemplate.html:15 -#: netbox/templates/ipam/vlan.html:35 netbox/templates/ipam/vlangroup.html:30 -#: netbox/templates/tenancy/contact.html:25 -#: netbox/templates/tenancy/contactgroup.html:21 -#: netbox/templates/tenancy/contactrole.html:18 -#: netbox/templates/tenancy/tenantgroup.html:29 -#: netbox/templates/users/group.html:17 -#: netbox/templates/users/objectpermission.html:17 -#: netbox/templates/virtualization/cluster.html:13 -#: netbox/templates/virtualization/clustergroup.html:22 -#: netbox/templates/virtualization/clustertype.html:22 -#: netbox/templates/virtualization/virtualdisk.html:25 -#: netbox/templates/virtualization/virtualmachine.html:15 -#: netbox/templates/virtualization/vminterface.html:25 -#: netbox/templates/vpn/ikepolicy.html:13 -#: netbox/templates/vpn/ikeproposal.html:13 -#: netbox/templates/vpn/ipsecpolicy.html:13 -#: netbox/templates/vpn/ipsecprofile.html:13 -#: netbox/templates/vpn/ipsecprofile.html:36 -#: netbox/templates/vpn/ipsecprofile.html:69 -#: netbox/templates/vpn/ipsecproposal.html:13 -#: netbox/templates/vpn/l2vpn.html:14 netbox/templates/vpn/tunnel.html:21 -#: netbox/templates/vpn/tunnelgroup.html:26 -#: netbox/templates/wireless/wirelesslangroup.html:29 -#: netbox/tenancy/tables/contacts.py:19 netbox/tenancy/tables/contacts.py:41 -#: netbox/tenancy/tables/contacts.py:56 netbox/tenancy/tables/tenants.py:16 -#: netbox/tenancy/tables/tenants.py:38 netbox/users/tables.py:62 -#: netbox/users/tables.py:76 netbox/virtualization/forms/bulk_create.py:20 -#: netbox/virtualization/forms/object_create.py:13 -#: netbox/virtualization/forms/object_create.py:23 -#: netbox/virtualization/tables/clusters.py:17 -#: netbox/virtualization/tables/clusters.py:39 -#: netbox/virtualization/tables/clusters.py:62 -#: netbox/virtualization/tables/virtualmachines.py:55 -#: netbox/virtualization/tables/virtualmachines.py:139 -#: netbox/virtualization/tables/virtualmachines.py:194 -#: netbox/vpn/tables/crypto.py:18 netbox/vpn/tables/crypto.py:57 -#: netbox/vpn/tables/crypto.py:93 netbox/vpn/tables/crypto.py:129 -#: netbox/vpn/tables/crypto.py:158 netbox/vpn/tables/l2vpn.py:23 -#: netbox/vpn/tables/tunnels.py:18 netbox/vpn/tables/tunnels.py:40 -#: netbox/wireless/tables/wirelesslan.py:18 -#: netbox/wireless/tables/wirelesslan.py:79 +#: circuits/tables/circuits.py:32 circuits/tables/circuits.py:132 +#: circuits/tables/providers.py:18 circuits/tables/providers.py:69 +#: circuits/tables/providers.py:99 core/tables/data.py:16 +#: core/tables/jobs.py:14 core/tables/plugins.py:44 core/tables/tasks.py:11 +#: core/tables/tasks.py:115 dcim/forms/filtersets.py:63 +#: dcim/forms/object_create.py:43 dcim/tables/devices.py:52 +#: dcim/tables/devices.py:92 dcim/tables/devices.py:134 +#: dcim/tables/devices.py:289 dcim/tables/devices.py:392 +#: dcim/tables/devices.py:433 dcim/tables/devices.py:482 +#: dcim/tables/devices.py:531 dcim/tables/devices.py:648 +#: dcim/tables/devices.py:731 dcim/tables/devices.py:778 +#: dcim/tables/devices.py:841 dcim/tables/devices.py:911 +#: dcim/tables/devices.py:974 dcim/tables/devices.py:994 +#: dcim/tables/devices.py:1023 dcim/tables/devices.py:1053 +#: dcim/tables/devicetypes.py:31 dcim/tables/power.py:22 +#: dcim/tables/power.py:62 dcim/tables/racks.py:24 dcim/tables/racks.py:113 +#: dcim/tables/sites.py:24 dcim/tables/sites.py:51 dcim/tables/sites.py:78 +#: dcim/tables/sites.py:130 extras/forms/filtersets.py:213 +#: extras/tables/tables.py:58 extras/tables/tables.py:122 +#: extras/tables/tables.py:155 extras/tables/tables.py:180 +#: extras/tables/tables.py:246 extras/tables/tables.py:361 +#: extras/tables/tables.py:378 extras/tables/tables.py:401 +#: extras/tables/tables.py:439 extras/tables/tables.py:491 +#: extras/tables/tables.py:514 ipam/forms/bulk_edit.py:407 +#: ipam/forms/filtersets.py:386 ipam/tables/asn.py:16 ipam/tables/ip.py:85 +#: ipam/tables/ip.py:160 ipam/tables/services.py:15 ipam/tables/services.py:40 +#: ipam/tables/vlans.py:64 ipam/tables/vlans.py:114 ipam/tables/vrfs.py:26 +#: ipam/tables/vrfs.py:68 templates/circuits/circuitgroup.html:28 +#: templates/circuits/circuittype.html:22 +#: templates/circuits/provideraccount.html:28 +#: templates/circuits/providernetwork.html:24 +#: templates/core/datasource.html:34 templates/core/job.html:44 +#: templates/core/plugin.html:54 templates/core/rq_worker.html:43 +#: templates/dcim/consoleport.html:28 templates/dcim/consoleserverport.html:28 +#: templates/dcim/devicebay.html:24 templates/dcim/devicerole.html:26 +#: templates/dcim/frontport.html:28 +#: templates/dcim/inc/interface_vlans_table.html:5 +#: templates/dcim/inc/panels/inventory_items.html:18 +#: templates/dcim/interface.html:38 templates/dcim/interface.html:165 +#: templates/dcim/inventoryitem.html:28 +#: templates/dcim/inventoryitemrole.html:18 templates/dcim/location.html:29 +#: templates/dcim/manufacturer.html:36 templates/dcim/modulebay.html:30 +#: templates/dcim/platform.html:29 templates/dcim/poweroutlet.html:28 +#: templates/dcim/powerport.html:28 templates/dcim/rackrole.html:22 +#: templates/dcim/rearport.html:28 templates/dcim/region.html:29 +#: templates/dcim/sitegroup.html:29 +#: templates/dcim/virtualdevicecontext.html:18 +#: templates/extras/configcontext.html:13 +#: templates/extras/configtemplate.html:13 +#: templates/extras/customfield.html:13 templates/extras/customlink.html:13 +#: templates/extras/eventrule.html:13 templates/extras/exporttemplate.html:15 +#: templates/extras/notificationgroup.html:14 +#: templates/extras/savedfilter.html:13 templates/extras/script_list.html:44 +#: templates/extras/tag.html:14 templates/extras/webhook.html:13 +#: templates/ipam/asnrange.html:15 templates/ipam/fhrpgroup.html:30 +#: templates/ipam/rir.html:22 templates/ipam/role.html:22 +#: templates/ipam/routetarget.html:13 templates/ipam/service.html:24 +#: templates/ipam/servicetemplate.html:15 templates/ipam/vlan.html:35 +#: templates/ipam/vlangroup.html:30 templates/tenancy/contact.html:25 +#: templates/tenancy/contactgroup.html:21 +#: templates/tenancy/contactrole.html:18 templates/tenancy/tenantgroup.html:29 +#: templates/users/group.html:17 templates/users/objectpermission.html:17 +#: templates/virtualization/cluster.html:13 +#: templates/virtualization/clustergroup.html:22 +#: templates/virtualization/clustertype.html:22 +#: templates/virtualization/virtualdisk.html:25 +#: templates/virtualization/virtualmachine.html:15 +#: templates/virtualization/vminterface.html:25 +#: templates/vpn/ikepolicy.html:13 templates/vpn/ikeproposal.html:13 +#: templates/vpn/ipsecpolicy.html:13 templates/vpn/ipsecprofile.html:13 +#: templates/vpn/ipsecprofile.html:36 templates/vpn/ipsecprofile.html:69 +#: templates/vpn/ipsecproposal.html:13 templates/vpn/l2vpn.html:14 +#: templates/vpn/tunnel.html:21 templates/vpn/tunnelgroup.html:26 +#: templates/wireless/wirelesslangroup.html:29 tenancy/tables/contacts.py:19 +#: tenancy/tables/contacts.py:41 tenancy/tables/contacts.py:56 +#: tenancy/tables/tenants.py:16 tenancy/tables/tenants.py:38 +#: users/tables.py:62 users/tables.py:76 +#: virtualization/forms/bulk_create.py:20 +#: virtualization/forms/object_create.py:13 +#: virtualization/forms/object_create.py:23 +#: virtualization/tables/clusters.py:17 virtualization/tables/clusters.py:39 +#: virtualization/tables/clusters.py:62 +#: virtualization/tables/virtualmachines.py:55 +#: virtualization/tables/virtualmachines.py:139 +#: virtualization/tables/virtualmachines.py:194 vpn/tables/crypto.py:18 +#: vpn/tables/crypto.py:57 vpn/tables/crypto.py:93 vpn/tables/crypto.py:129 +#: vpn/tables/crypto.py:158 vpn/tables/l2vpn.py:23 vpn/tables/tunnels.py:18 +#: vpn/tables/tunnels.py:40 wireless/tables/wirelesslan.py:18 +#: wireless/tables/wirelesslan.py:79 msgid "Name" msgstr "Nome" -#: netbox/circuits/tables/circuits.py:41 -#: netbox/circuits/tables/circuits.py:138 -#: netbox/circuits/tables/providers.py:45 -#: netbox/circuits/tables/providers.py:79 netbox/netbox/navigation/menu.py:266 -#: netbox/netbox/navigation/menu.py:270 netbox/netbox/navigation/menu.py:272 -#: netbox/templates/circuits/provider.html:57 -#: netbox/templates/circuits/provideraccount.html:44 -#: netbox/templates/circuits/providernetwork.html:50 +#: circuits/tables/circuits.py:41 circuits/tables/circuits.py:138 +#: circuits/tables/providers.py:45 circuits/tables/providers.py:79 +#: netbox/navigation/menu.py:266 netbox/navigation/menu.py:270 +#: netbox/navigation/menu.py:272 templates/circuits/provider.html:57 +#: templates/circuits/provideraccount.html:44 +#: templates/circuits/providernetwork.html:50 msgid "Circuits" msgstr "Circuitos" -#: netbox/circuits/tables/circuits.py:55 -#: netbox/templates/circuits/circuit.html:26 +#: circuits/tables/circuits.py:55 templates/circuits/circuit.html:26 msgid "Circuit ID" msgstr "ID do Circuito" -#: netbox/circuits/tables/circuits.py:69 -#: netbox/wireless/forms/model_forms.py:160 +#: circuits/tables/circuits.py:69 wireless/forms/model_forms.py:160 msgid "Side A" msgstr "Lado A" -#: netbox/circuits/tables/circuits.py:74 +#: circuits/tables/circuits.py:74 msgid "Side Z" msgstr "Lado Z" -#: netbox/circuits/tables/circuits.py:77 -#: netbox/templates/circuits/circuit.html:55 +#: circuits/tables/circuits.py:77 templates/circuits/circuit.html:55 msgid "Commit Rate" msgstr "Taxa Garantida" -#: netbox/circuits/tables/circuits.py:80 -#: netbox/circuits/tables/providers.py:48 -#: netbox/circuits/tables/providers.py:82 -#: netbox/circuits/tables/providers.py:107 netbox/dcim/tables/devices.py:1036 -#: netbox/dcim/tables/devicetypes.py:92 netbox/dcim/tables/modules.py:29 -#: netbox/dcim/tables/modules.py:72 netbox/dcim/tables/power.py:39 -#: netbox/dcim/tables/power.py:96 netbox/dcim/tables/racks.py:84 -#: netbox/dcim/tables/racks.py:145 netbox/dcim/tables/racks.py:225 -#: netbox/dcim/tables/sites.py:108 netbox/extras/tables/tables.py:582 -#: netbox/ipam/tables/asn.py:69 netbox/ipam/tables/fhrp.py:34 -#: netbox/ipam/tables/ip.py:136 netbox/ipam/tables/ip.py:275 -#: netbox/ipam/tables/ip.py:329 netbox/ipam/tables/ip.py:397 -#: netbox/ipam/tables/services.py:24 netbox/ipam/tables/services.py:54 -#: netbox/ipam/tables/vlans.py:145 netbox/ipam/tables/vrfs.py:47 -#: netbox/ipam/tables/vrfs.py:72 netbox/templates/dcim/htmx/cable_edit.html:89 -#: netbox/templates/generic/bulk_edit.html:86 -#: netbox/templates/inc/panels/comments.html:5 -#: netbox/tenancy/tables/contacts.py:68 netbox/tenancy/tables/tenants.py:46 -#: netbox/utilities/forms/fields/fields.py:29 -#: netbox/virtualization/tables/clusters.py:91 -#: netbox/virtualization/tables/virtualmachines.py:82 -#: netbox/vpn/tables/crypto.py:37 netbox/vpn/tables/crypto.py:74 -#: netbox/vpn/tables/crypto.py:109 netbox/vpn/tables/crypto.py:140 -#: netbox/vpn/tables/crypto.py:173 netbox/vpn/tables/l2vpn.py:37 -#: netbox/vpn/tables/tunnels.py:61 netbox/wireless/tables/wirelesslan.py:27 -#: netbox/wireless/tables/wirelesslan.py:58 +#: circuits/tables/circuits.py:80 circuits/tables/providers.py:48 +#: circuits/tables/providers.py:82 circuits/tables/providers.py:107 +#: dcim/tables/devices.py:1036 dcim/tables/devicetypes.py:92 +#: dcim/tables/modules.py:29 dcim/tables/modules.py:72 dcim/tables/power.py:39 +#: dcim/tables/power.py:96 dcim/tables/racks.py:84 dcim/tables/racks.py:145 +#: dcim/tables/racks.py:225 dcim/tables/sites.py:108 +#: extras/tables/tables.py:582 ipam/tables/asn.py:69 ipam/tables/fhrp.py:34 +#: ipam/tables/ip.py:136 ipam/tables/ip.py:275 ipam/tables/ip.py:329 +#: ipam/tables/ip.py:397 ipam/tables/services.py:24 ipam/tables/services.py:54 +#: ipam/tables/vlans.py:145 ipam/tables/vrfs.py:47 ipam/tables/vrfs.py:72 +#: templates/dcim/htmx/cable_edit.html:89 templates/generic/bulk_edit.html:86 +#: templates/inc/panels/comments.html:5 tenancy/tables/contacts.py:68 +#: tenancy/tables/tenants.py:46 utilities/forms/fields/fields.py:29 +#: virtualization/tables/clusters.py:91 +#: virtualization/tables/virtualmachines.py:82 vpn/tables/crypto.py:37 +#: vpn/tables/crypto.py:74 vpn/tables/crypto.py:109 vpn/tables/crypto.py:140 +#: vpn/tables/crypto.py:173 vpn/tables/l2vpn.py:37 vpn/tables/tunnels.py:61 +#: wireless/tables/wirelesslan.py:27 wireless/tables/wirelesslan.py:58 msgid "Comments" msgstr "Comentários" -#: netbox/circuits/tables/circuits.py:86 -#: netbox/templates/tenancy/contact.html:84 -#: netbox/tenancy/tables/contacts.py:73 +#: circuits/tables/circuits.py:86 templates/tenancy/contact.html:84 +#: tenancy/tables/contacts.py:73 msgid "Assignments" msgstr "Atribuições" -#: netbox/circuits/tables/providers.py:23 +#: circuits/tables/providers.py:23 msgid "Accounts" msgstr "Contas" -#: netbox/circuits/tables/providers.py:29 +#: circuits/tables/providers.py:29 msgid "Account Count" msgstr "Quantidade de contas" -#: netbox/circuits/tables/providers.py:39 netbox/dcim/tables/sites.py:100 +#: circuits/tables/providers.py:39 dcim/tables/sites.py:100 msgid "ASN Count" msgstr "Quantidade de ASNs" -#: netbox/circuits/views.py:331 +#: circuits/views.py:331 #, python-brace-format msgid "No terminations have been defined for circuit {circuit}." msgstr "Nenhuma terminação foi definida para o circuito {circuit}." -#: netbox/circuits/views.py:380 +#: circuits/views.py:380 #, python-brace-format msgid "Swapped terminations for circuit {circuit}." msgstr "Terminações trocadas para o circuito {circuit}." -#: netbox/core/api/views.py:39 +#: core/api/views.py:39 msgid "This user does not have permission to synchronize this data source." msgstr "Este usuário não tem permissão para sincronizar esta origem de dados." -#: netbox/core/choices.py:18 +#: core/choices.py:18 msgid "New" msgstr "Novo" -#: netbox/core/choices.py:19 netbox/core/constants.py:18 -#: netbox/core/tables/tasks.py:15 netbox/templates/core/rq_task.html:77 +#: core/choices.py:19 core/constants.py:18 core/tables/tasks.py:15 +#: templates/core/rq_task.html:77 msgid "Queued" msgstr "Em Fila" -#: netbox/core/choices.py:20 +#: core/choices.py:20 msgid "Syncing" msgstr "Sincronizando" -#: netbox/core/choices.py:21 netbox/core/choices.py:57 -#: netbox/core/tables/jobs.py:41 netbox/templates/core/job.html:86 +#: core/choices.py:21 core/choices.py:57 core/tables/jobs.py:41 +#: templates/core/job.html:86 msgid "Completed" msgstr "Concluído" -#: netbox/core/choices.py:22 netbox/core/choices.py:59 -#: netbox/core/constants.py:20 netbox/core/tables/tasks.py:34 -#: netbox/dcim/choices.py:187 netbox/dcim/choices.py:239 -#: netbox/dcim/choices.py:1607 netbox/virtualization/choices.py:47 +#: core/choices.py:22 core/choices.py:59 core/constants.py:20 +#: core/tables/tasks.py:34 dcim/choices.py:187 dcim/choices.py:239 +#: dcim/choices.py:1607 virtualization/choices.py:47 msgid "Failed" msgstr "Falhou" -#: netbox/core/choices.py:35 netbox/netbox/navigation/menu.py:335 -#: netbox/netbox/navigation/menu.py:339 -#: netbox/templates/extras/script/base.html:14 -#: netbox/templates/extras/script_list.html:7 -#: netbox/templates/extras/script_list.html:12 -#: netbox/templates/extras/script_result.html:17 +#: core/choices.py:35 netbox/navigation/menu.py:335 +#: netbox/navigation/menu.py:339 templates/extras/script/base.html:14 +#: templates/extras/script_list.html:7 templates/extras/script_list.html:12 +#: templates/extras/script_result.html:17 msgid "Scripts" msgstr "Scripts" -#: netbox/core/choices.py:36 netbox/templates/extras/report/base.html:13 +#: core/choices.py:36 templates/extras/report/base.html:13 msgid "Reports" msgstr "Relatórios" -#: netbox/core/choices.py:54 +#: core/choices.py:54 msgid "Pending" msgstr "Pendente" -#: netbox/core/choices.py:55 netbox/core/constants.py:23 -#: netbox/core/tables/jobs.py:32 netbox/core/tables/tasks.py:38 -#: netbox/templates/core/job.html:73 +#: core/choices.py:55 core/constants.py:23 core/tables/jobs.py:32 +#: core/tables/tasks.py:38 templates/core/job.html:73 msgid "Scheduled" msgstr "Agendado" -#: netbox/core/choices.py:56 +#: core/choices.py:56 msgid "Running" msgstr "Em Execução" -#: netbox/core/choices.py:58 +#: core/choices.py:58 msgid "Errored" msgstr "Falhou" -#: netbox/core/choices.py:87 netbox/core/tables/plugins.py:63 -#: netbox/templates/generic/object.html:61 +#: core/choices.py:87 core/tables/plugins.py:63 +#: templates/generic/object.html:61 msgid "Updated" msgstr "Atualizado" -#: netbox/core/choices.py:88 +#: core/choices.py:88 msgid "Deleted" msgstr "Excluído" -#: netbox/core/constants.py:19 netbox/core/tables/tasks.py:30 +#: core/constants.py:19 core/tables/tasks.py:30 msgid "Finished" msgstr "Concluído" -#: netbox/core/constants.py:21 netbox/core/tables/jobs.py:38 -#: netbox/templates/core/job.html:82 -#: netbox/templates/extras/htmx/script_result.html:8 +#: core/constants.py:21 core/tables/jobs.py:38 templates/core/job.html:82 +#: templates/extras/htmx/script_result.html:8 msgid "Started" msgstr "Iniciado" -#: netbox/core/constants.py:22 netbox/core/tables/tasks.py:26 +#: core/constants.py:22 core/tables/tasks.py:26 msgid "Deferred" msgstr "Adiado" -#: netbox/core/constants.py:24 +#: core/constants.py:24 msgid "Stopped" msgstr "Parado" -#: netbox/core/constants.py:25 +#: core/constants.py:25 msgid "Cancelled" msgstr "Cancelado" -#: netbox/core/data_backends.py:32 netbox/core/tables/plugins.py:51 -#: netbox/templates/core/plugin.html:87 -#: netbox/templates/dcim/interface.html:216 +#: core/data_backends.py:32 core/tables/plugins.py:51 +#: templates/core/plugin.html:88 templates/dcim/interface.html:216 msgid "Local" msgstr "Local" -#: netbox/core/data_backends.py:50 netbox/core/tables/change_logging.py:20 -#: netbox/templates/account/profile.html:15 -#: netbox/templates/users/user.html:17 netbox/users/tables.py:31 +#: core/data_backends.py:50 core/tables/change_logging.py:20 +#: templates/account/profile.html:15 templates/users/user.html:17 +#: users/tables.py:31 msgid "Username" msgstr "Nome de Usuário" -#: netbox/core/data_backends.py:52 netbox/core/data_backends.py:58 +#: core/data_backends.py:52 core/data_backends.py:58 msgid "Only used for cloning with HTTP(S)" msgstr "Usado apenas para clonagem com HTTP(S)" -#: netbox/core/data_backends.py:56 netbox/templates/account/base.html:23 -#: netbox/templates/account/password.html:12 -#: netbox/users/forms/model_forms.py:170 +#: core/data_backends.py:56 templates/account/base.html:23 +#: templates/account/password.html:12 users/forms/model_forms.py:170 msgid "Password" msgstr "Senha" -#: netbox/core/data_backends.py:62 +#: core/data_backends.py:62 msgid "Branch" msgstr "Filial" -#: netbox/core/data_backends.py:120 +#: core/data_backends.py:120 #, python-brace-format msgid "Fetching remote data failed ({name}): {error}" msgstr "Falha na obtenção de dados remotos ({name}): {error}" -#: netbox/core/data_backends.py:133 +#: core/data_backends.py:133 msgid "AWS access key ID" msgstr "ID da chave de acesso da AWS" -#: netbox/core/data_backends.py:137 +#: core/data_backends.py:137 msgid "AWS secret access key" msgstr "Chave de acesso secreta da AWS" -#: netbox/core/events.py:27 +#: core/events.py:27 msgid "Object created" msgstr "Objeto criado" -#: netbox/core/events.py:28 +#: core/events.py:28 msgid "Object updated" msgstr "Objeto atualizado" -#: netbox/core/events.py:29 +#: core/events.py:29 msgid "Object deleted" msgstr "Objeto excluído" -#: netbox/core/events.py:30 +#: core/events.py:30 msgid "Job started" msgstr "Tarefa iniciada" -#: netbox/core/events.py:31 +#: core/events.py:31 msgid "Job completed" msgstr "Tarefa completada" -#: netbox/core/events.py:32 +#: core/events.py:32 msgid "Job failed" msgstr "Tarefa com falha" -#: netbox/core/events.py:33 +#: core/events.py:33 msgid "Job errored" msgstr "Tarefa com erro" -#: netbox/core/filtersets.py:53 netbox/extras/filtersets.py:250 -#: netbox/extras/filtersets.py:633 netbox/extras/filtersets.py:661 +#: core/filtersets.py:53 extras/filtersets.py:250 extras/filtersets.py:633 +#: extras/filtersets.py:661 msgid "Data source (ID)" msgstr "Origem de dados (ID)" -#: netbox/core/filtersets.py:59 +#: core/filtersets.py:59 msgid "Data source (name)" msgstr "Origem de dados (nome)" -#: netbox/core/filtersets.py:145 netbox/dcim/filtersets.py:501 -#: netbox/extras/filtersets.py:287 netbox/extras/filtersets.py:331 -#: netbox/extras/filtersets.py:353 netbox/extras/filtersets.py:413 -#: netbox/users/filtersets.py:28 +#: core/filtersets.py:145 dcim/filtersets.py:501 extras/filtersets.py:287 +#: extras/filtersets.py:331 extras/filtersets.py:353 extras/filtersets.py:413 +#: users/filtersets.py:28 msgid "User (ID)" msgstr "Usuário (ID)" -#: netbox/core/filtersets.py:151 +#: core/filtersets.py:151 msgid "User name" msgstr "Nome de usuário" -#: netbox/core/forms/bulk_edit.py:25 netbox/core/forms/filtersets.py:43 -#: netbox/core/tables/data.py:26 netbox/dcim/forms/bulk_edit.py:1122 -#: netbox/dcim/forms/bulk_edit.py:1400 netbox/dcim/forms/filtersets.py:1370 -#: netbox/dcim/tables/devices.py:553 netbox/dcim/tables/devicetypes.py:224 -#: netbox/extras/forms/bulk_edit.py:123 netbox/extras/forms/bulk_edit.py:187 -#: netbox/extras/forms/bulk_edit.py:246 netbox/extras/forms/filtersets.py:142 -#: netbox/extras/forms/filtersets.py:229 netbox/extras/forms/filtersets.py:294 -#: netbox/extras/tables/tables.py:162 netbox/extras/tables/tables.py:253 -#: netbox/extras/tables/tables.py:415 netbox/netbox/preferences.py:22 -#: netbox/templates/core/datasource.html:42 -#: netbox/templates/dcim/interface.html:61 -#: netbox/templates/extras/customlink.html:17 -#: netbox/templates/extras/eventrule.html:17 -#: netbox/templates/extras/savedfilter.html:25 -#: netbox/templates/users/objectpermission.html:25 -#: netbox/templates/virtualization/vminterface.html:29 -#: netbox/users/forms/bulk_edit.py:89 netbox/users/forms/filtersets.py:70 -#: netbox/users/tables.py:83 netbox/virtualization/forms/bulk_edit.py:217 -#: netbox/virtualization/forms/filtersets.py:215 +#: core/forms/bulk_edit.py:25 core/forms/filtersets.py:43 +#: core/tables/data.py:26 dcim/forms/bulk_edit.py:1122 +#: dcim/forms/bulk_edit.py:1400 dcim/forms/filtersets.py:1370 +#: dcim/tables/devices.py:553 dcim/tables/devicetypes.py:224 +#: extras/forms/bulk_edit.py:123 extras/forms/bulk_edit.py:187 +#: extras/forms/bulk_edit.py:246 extras/forms/filtersets.py:142 +#: extras/forms/filtersets.py:229 extras/forms/filtersets.py:294 +#: extras/tables/tables.py:162 extras/tables/tables.py:253 +#: extras/tables/tables.py:415 netbox/preferences.py:22 +#: templates/core/datasource.html:42 templates/dcim/interface.html:61 +#: templates/extras/customlink.html:17 templates/extras/eventrule.html:17 +#: templates/extras/savedfilter.html:25 +#: templates/users/objectpermission.html:25 +#: templates/virtualization/vminterface.html:29 users/forms/bulk_edit.py:89 +#: users/forms/filtersets.py:70 users/tables.py:83 +#: virtualization/forms/bulk_edit.py:217 +#: virtualization/forms/filtersets.py:215 msgid "Enabled" msgstr "Habilitado" -#: netbox/core/forms/bulk_edit.py:34 netbox/extras/forms/model_forms.py:285 -#: netbox/templates/extras/savedfilter.html:52 -#: netbox/vpn/forms/filtersets.py:97 netbox/vpn/forms/filtersets.py:127 -#: netbox/vpn/forms/filtersets.py:151 netbox/vpn/forms/filtersets.py:170 -#: netbox/vpn/forms/model_forms.py:301 netbox/vpn/forms/model_forms.py:321 -#: netbox/vpn/forms/model_forms.py:337 netbox/vpn/forms/model_forms.py:357 -#: netbox/vpn/forms/model_forms.py:380 +#: core/forms/bulk_edit.py:34 extras/forms/model_forms.py:285 +#: templates/extras/savedfilter.html:52 vpn/forms/filtersets.py:97 +#: vpn/forms/filtersets.py:127 vpn/forms/filtersets.py:151 +#: vpn/forms/filtersets.py:170 vpn/forms/model_forms.py:301 +#: vpn/forms/model_forms.py:321 vpn/forms/model_forms.py:337 +#: vpn/forms/model_forms.py:357 vpn/forms/model_forms.py:380 msgid "Parameters" msgstr "Parâmetros" -#: netbox/core/forms/bulk_edit.py:38 netbox/templates/core/datasource.html:68 +#: core/forms/bulk_edit.py:38 templates/core/datasource.html:68 msgid "Ignore rules" msgstr "Ignorar regras" -#: netbox/core/forms/filtersets.py:30 netbox/core/forms/model_forms.py:97 -#: netbox/extras/forms/model_forms.py:248 -#: netbox/extras/forms/model_forms.py:578 -#: netbox/extras/forms/model_forms.py:632 netbox/extras/tables/tables.py:191 -#: netbox/extras/tables/tables.py:483 netbox/extras/tables/tables.py:518 -#: netbox/templates/core/datasource.html:31 -#: netbox/templates/dcim/device/render_config.html:18 -#: netbox/templates/extras/configcontext.html:29 -#: netbox/templates/extras/configtemplate.html:21 -#: netbox/templates/extras/exporttemplate.html:35 -#: netbox/templates/virtualization/virtualmachine/render_config.html:18 +#: core/forms/filtersets.py:30 core/forms/model_forms.py:97 +#: extras/forms/model_forms.py:248 extras/forms/model_forms.py:578 +#: extras/forms/model_forms.py:632 extras/tables/tables.py:191 +#: extras/tables/tables.py:483 extras/tables/tables.py:518 +#: templates/core/datasource.html:31 +#: templates/dcim/device/render_config.html:18 +#: templates/extras/configcontext.html:29 +#: templates/extras/configtemplate.html:21 +#: templates/extras/exporttemplate.html:35 +#: templates/virtualization/virtualmachine/render_config.html:18 msgid "Data Source" msgstr "Origem de dados" -#: netbox/core/forms/filtersets.py:55 netbox/core/forms/mixins.py:21 +#: core/forms/filtersets.py:55 core/forms/mixins.py:21 msgid "File" msgstr "Arquivo" -#: netbox/core/forms/filtersets.py:60 netbox/core/forms/mixins.py:16 -#: netbox/extras/forms/filtersets.py:170 netbox/extras/forms/filtersets.py:328 -#: netbox/extras/forms/filtersets.py:413 +#: core/forms/filtersets.py:60 core/forms/mixins.py:16 +#: extras/forms/filtersets.py:170 extras/forms/filtersets.py:328 +#: extras/forms/filtersets.py:413 msgid "Data source" msgstr "Origem de dados" -#: netbox/core/forms/filtersets.py:70 netbox/extras/forms/filtersets.py:440 +#: core/forms/filtersets.py:70 extras/forms/filtersets.py:440 msgid "Creation" msgstr "Criação" -#: netbox/core/forms/filtersets.py:74 netbox/core/forms/filtersets.py:160 -#: netbox/extras/forms/filtersets.py:461 netbox/extras/tables/tables.py:220 -#: netbox/extras/tables/tables.py:294 netbox/extras/tables/tables.py:326 -#: netbox/extras/tables/tables.py:571 netbox/templates/core/job.html:38 -#: netbox/templates/core/objectchange.html:52 -#: netbox/tenancy/tables/contacts.py:90 netbox/vpn/tables/l2vpn.py:59 +#: core/forms/filtersets.py:74 core/forms/filtersets.py:160 +#: extras/forms/filtersets.py:461 extras/tables/tables.py:220 +#: extras/tables/tables.py:294 extras/tables/tables.py:326 +#: extras/tables/tables.py:571 templates/core/job.html:38 +#: templates/core/objectchange.html:52 tenancy/tables/contacts.py:90 +#: vpn/tables/l2vpn.py:59 msgid "Object Type" msgstr "Tipo de Objeto" -#: netbox/core/forms/filtersets.py:84 +#: core/forms/filtersets.py:84 msgid "Created after" msgstr "Criado após" -#: netbox/core/forms/filtersets.py:89 +#: core/forms/filtersets.py:89 msgid "Created before" msgstr "Criado antes" -#: netbox/core/forms/filtersets.py:94 +#: core/forms/filtersets.py:94 msgid "Scheduled after" msgstr "Programado após" -#: netbox/core/forms/filtersets.py:99 +#: core/forms/filtersets.py:99 msgid "Scheduled before" msgstr "Programado antes" -#: netbox/core/forms/filtersets.py:104 +#: core/forms/filtersets.py:104 msgid "Started after" msgstr "Iniciado após" -#: netbox/core/forms/filtersets.py:109 +#: core/forms/filtersets.py:109 msgid "Started before" msgstr "Iniciado antes" -#: netbox/core/forms/filtersets.py:114 +#: core/forms/filtersets.py:114 msgid "Completed after" msgstr "Concluído após" -#: netbox/core/forms/filtersets.py:119 +#: core/forms/filtersets.py:119 msgid "Completed before" msgstr "Concluído antes" -#: netbox/core/forms/filtersets.py:126 netbox/core/forms/filtersets.py:155 -#: netbox/dcim/forms/bulk_edit.py:456 netbox/dcim/forms/filtersets.py:418 -#: netbox/dcim/forms/filtersets.py:462 netbox/dcim/forms/model_forms.py:316 -#: netbox/extras/forms/filtersets.py:456 netbox/extras/forms/filtersets.py:475 -#: netbox/extras/tables/tables.py:302 netbox/extras/tables/tables.py:342 -#: netbox/templates/core/objectchange.html:36 -#: netbox/templates/dcim/rackreservation.html:58 -#: netbox/templates/extras/savedfilter.html:21 -#: netbox/templates/inc/user_menu.html:33 netbox/templates/users/token.html:21 -#: netbox/templates/users/user.html:6 netbox/templates/users/user.html:14 -#: netbox/users/filtersets.py:107 netbox/users/filtersets.py:174 -#: netbox/users/forms/filtersets.py:84 netbox/users/forms/filtersets.py:125 -#: netbox/users/forms/model_forms.py:155 netbox/users/forms/model_forms.py:192 -#: netbox/users/tables.py:19 +#: core/forms/filtersets.py:126 core/forms/filtersets.py:155 +#: dcim/forms/bulk_edit.py:456 dcim/forms/filtersets.py:418 +#: dcim/forms/filtersets.py:462 dcim/forms/model_forms.py:316 +#: extras/forms/filtersets.py:456 extras/forms/filtersets.py:475 +#: extras/tables/tables.py:302 extras/tables/tables.py:342 +#: templates/core/objectchange.html:36 templates/dcim/rackreservation.html:58 +#: templates/extras/savedfilter.html:21 templates/inc/user_menu.html:33 +#: templates/users/token.html:21 templates/users/user.html:6 +#: templates/users/user.html:14 users/filtersets.py:107 +#: users/filtersets.py:174 users/forms/filtersets.py:84 +#: users/forms/filtersets.py:125 users/forms/model_forms.py:155 +#: users/forms/model_forms.py:192 users/tables.py:19 msgid "User" msgstr "Usuário" -#: netbox/core/forms/filtersets.py:134 netbox/core/tables/change_logging.py:15 -#: netbox/extras/tables/tables.py:609 netbox/extras/tables/tables.py:646 -#: netbox/templates/core/objectchange.html:32 +#: core/forms/filtersets.py:134 core/tables/change_logging.py:15 +#: extras/tables/tables.py:609 extras/tables/tables.py:646 +#: templates/core/objectchange.html:32 msgid "Time" msgstr "Tempo" -#: netbox/core/forms/filtersets.py:139 netbox/extras/forms/filtersets.py:445 +#: core/forms/filtersets.py:139 extras/forms/filtersets.py:445 msgid "After" msgstr "Depois" -#: netbox/core/forms/filtersets.py:144 netbox/extras/forms/filtersets.py:450 +#: core/forms/filtersets.py:144 extras/forms/filtersets.py:450 msgid "Before" msgstr "Antes" -#: netbox/core/forms/filtersets.py:148 netbox/core/tables/change_logging.py:29 -#: netbox/extras/forms/model_forms.py:396 -#: netbox/templates/core/objectchange.html:46 -#: netbox/templates/extras/eventrule.html:71 +#: core/forms/filtersets.py:148 core/tables/change_logging.py:29 +#: extras/forms/model_forms.py:396 templates/core/objectchange.html:46 +#: templates/extras/eventrule.html:71 msgid "Action" msgstr "Ação" -#: netbox/core/forms/model_forms.py:54 netbox/core/tables/data.py:46 -#: netbox/templates/core/datafile.html:27 -#: netbox/templates/extras/report/base.html:33 -#: netbox/templates/extras/script/base.html:32 +#: core/forms/model_forms.py:54 core/tables/data.py:46 +#: templates/core/datafile.html:27 templates/extras/report/base.html:33 +#: templates/extras/script/base.html:32 msgid "Source" msgstr "Origem" -#: netbox/core/forms/model_forms.py:58 +#: core/forms/model_forms.py:58 msgid "Backend Parameters" msgstr "Parâmetros de Backend" -#: netbox/core/forms/model_forms.py:96 +#: core/forms/model_forms.py:96 msgid "File Upload" msgstr "Upload de Arquivo" -#: netbox/core/forms/model_forms.py:108 +#: core/forms/model_forms.py:108 msgid "Cannot upload a file and sync from an existing file" msgstr "" "Não é possível carregar um arquivo e sincronizar a partir de um arquivo " "existente" -#: netbox/core/forms/model_forms.py:110 +#: core/forms/model_forms.py:110 msgid "Must upload a file or select a data file to sync" msgstr "" "É necessário carregar um arquivo ou selecionar um arquivo de dados para " "sincronizar" -#: netbox/core/forms/model_forms.py:153 -#: netbox/templates/dcim/rack_elevation_list.html:6 +#: core/forms/model_forms.py:153 templates/dcim/rack_elevation_list.html:6 msgid "Rack Elevations" msgstr "Elevações de Rack" -#: netbox/core/forms/model_forms.py:157 netbox/dcim/choices.py:1518 -#: netbox/dcim/forms/bulk_edit.py:969 netbox/dcim/forms/bulk_edit.py:1357 -#: netbox/dcim/forms/bulk_edit.py:1375 netbox/dcim/tables/racks.py:158 -#: netbox/netbox/navigation/menu.py:291 netbox/netbox/navigation/menu.py:295 +#: core/forms/model_forms.py:157 dcim/choices.py:1518 +#: dcim/forms/bulk_edit.py:969 dcim/forms/bulk_edit.py:1357 +#: dcim/forms/bulk_edit.py:1375 dcim/tables/racks.py:158 +#: netbox/navigation/menu.py:291 netbox/navigation/menu.py:295 msgid "Power" msgstr "Alimentação Elétrica" -#: netbox/core/forms/model_forms.py:159 netbox/netbox/navigation/menu.py:154 -#: netbox/templates/core/inc/config_data.html:37 +#: core/forms/model_forms.py:159 netbox/navigation/menu.py:154 +#: templates/core/inc/config_data.html:37 msgid "IPAM" msgstr "IPAM" -#: netbox/core/forms/model_forms.py:160 netbox/netbox/navigation/menu.py:230 -#: netbox/templates/core/inc/config_data.html:50 -#: netbox/vpn/forms/bulk_edit.py:77 netbox/vpn/forms/filtersets.py:43 -#: netbox/vpn/forms/model_forms.py:61 netbox/vpn/forms/model_forms.py:146 +#: core/forms/model_forms.py:160 netbox/navigation/menu.py:230 +#: templates/core/inc/config_data.html:50 vpn/forms/bulk_edit.py:77 +#: vpn/forms/filtersets.py:43 vpn/forms/model_forms.py:61 +#: vpn/forms/model_forms.py:146 msgid "Security" msgstr "Segurança" -#: netbox/core/forms/model_forms.py:161 -#: netbox/templates/core/inc/config_data.html:59 +#: core/forms/model_forms.py:161 templates/core/inc/config_data.html:59 msgid "Banners" msgstr "Banners" -#: netbox/core/forms/model_forms.py:162 -#: netbox/templates/core/inc/config_data.html:80 +#: core/forms/model_forms.py:162 templates/core/inc/config_data.html:80 msgid "Pagination" msgstr "Paginação" -#: netbox/core/forms/model_forms.py:163 netbox/extras/forms/bulk_edit.py:92 -#: netbox/extras/forms/filtersets.py:47 netbox/extras/forms/model_forms.py:116 -#: netbox/extras/forms/model_forms.py:129 -#: netbox/templates/core/inc/config_data.html:93 +#: core/forms/model_forms.py:163 extras/forms/bulk_edit.py:92 +#: extras/forms/filtersets.py:47 extras/forms/model_forms.py:116 +#: extras/forms/model_forms.py:129 templates/core/inc/config_data.html:93 msgid "Validation" msgstr "Validação" -#: netbox/core/forms/model_forms.py:164 -#: netbox/templates/account/preferences.html:6 +#: core/forms/model_forms.py:164 templates/account/preferences.html:6 msgid "User Preferences" msgstr "Preferências de Usuário" -#: netbox/core/forms/model_forms.py:167 netbox/dcim/forms/filtersets.py:732 -#: netbox/templates/core/inc/config_data.html:127 -#: netbox/users/forms/model_forms.py:64 +#: core/forms/model_forms.py:167 dcim/forms/filtersets.py:732 +#: templates/core/inc/config_data.html:127 users/forms/model_forms.py:64 msgid "Miscellaneous" msgstr "Diversos" -#: netbox/core/forms/model_forms.py:169 +#: core/forms/model_forms.py:169 msgid "Config Revision" msgstr "Revisão da Configuração" -#: netbox/core/forms/model_forms.py:208 +#: core/forms/model_forms.py:208 msgid "This parameter has been defined statically and cannot be modified." msgstr "Este parâmetro foi definido estaticamente e não pode ser modificado." -#: netbox/core/forms/model_forms.py:216 +#: core/forms/model_forms.py:216 #, python-brace-format msgid "Current value: {value}" msgstr "Valor atual: {value}" -#: netbox/core/forms/model_forms.py:218 +#: core/forms/model_forms.py:218 msgid " (default)" msgstr " (padrão)" -#: netbox/core/models/change_logging.py:29 +#: core/models/change_logging.py:29 msgid "time" msgstr "horas" -#: netbox/core/models/change_logging.py:42 +#: core/models/change_logging.py:42 msgid "user name" msgstr "nome de usuário" -#: netbox/core/models/change_logging.py:47 +#: core/models/change_logging.py:47 msgid "request ID" msgstr "ID da solicitação" -#: netbox/core/models/change_logging.py:52 netbox/extras/models/staging.py:69 +#: core/models/change_logging.py:52 extras/models/staging.py:69 msgid "action" msgstr "ação" -#: netbox/core/models/change_logging.py:86 +#: core/models/change_logging.py:86 msgid "pre-change data" msgstr "dados pré-alteração" -#: netbox/core/models/change_logging.py:92 +#: core/models/change_logging.py:92 msgid "post-change data" msgstr "dados pós-alteração" -#: netbox/core/models/change_logging.py:106 +#: core/models/change_logging.py:106 msgid "object change" msgstr "mudança no objeto" -#: netbox/core/models/change_logging.py:107 +#: core/models/change_logging.py:107 msgid "object changes" msgstr "mudanças no objeto" -#: netbox/core/models/change_logging.py:123 +#: core/models/change_logging.py:123 #, python-brace-format msgid "Change logging is not supported for this object type ({type})." msgstr "Changelog não é suportado para este tipo de objeto ({type})." -#: netbox/core/models/config.py:18 netbox/core/models/data.py:266 -#: netbox/core/models/files.py:27 netbox/core/models/jobs.py:49 -#: netbox/extras/models/models.py:730 netbox/extras/models/notifications.py:39 -#: netbox/extras/models/notifications.py:186 -#: netbox/netbox/models/features.py:53 netbox/users/models/tokens.py:32 +#: core/models/config.py:18 core/models/data.py:266 core/models/files.py:27 +#: core/models/jobs.py:49 extras/models/models.py:730 +#: extras/models/notifications.py:39 extras/models/notifications.py:186 +#: netbox/models/features.py:53 users/models/tokens.py:32 msgid "created" msgstr "criado" -#: netbox/core/models/config.py:22 +#: core/models/config.py:22 msgid "comment" msgstr "comentário" -#: netbox/core/models/config.py:29 +#: core/models/config.py:29 msgid "configuration data" msgstr "dados de configuração" -#: netbox/core/models/config.py:36 +#: core/models/config.py:36 msgid "config revision" msgstr "revisão da configuração" -#: netbox/core/models/config.py:37 +#: core/models/config.py:37 msgid "config revisions" msgstr "revisões da configuração" -#: netbox/core/models/config.py:41 +#: core/models/config.py:41 msgid "Default configuration" msgstr "Configuração padrão" -#: netbox/core/models/config.py:43 +#: core/models/config.py:43 msgid "Current configuration" msgstr "Configuração atual" -#: netbox/core/models/config.py:44 +#: core/models/config.py:44 #, python-brace-format msgid "Config revision #{id}" msgstr "Revisão da configuração #{id}" -#: netbox/core/models/data.py:44 netbox/dcim/models/cables.py:43 -#: netbox/dcim/models/device_component_templates.py:203 -#: netbox/dcim/models/device_component_templates.py:237 -#: netbox/dcim/models/device_component_templates.py:272 -#: netbox/dcim/models/device_component_templates.py:334 -#: netbox/dcim/models/device_component_templates.py:413 -#: netbox/dcim/models/device_component_templates.py:512 -#: netbox/dcim/models/device_component_templates.py:612 -#: netbox/dcim/models/device_components.py:283 -#: netbox/dcim/models/device_components.py:312 -#: netbox/dcim/models/device_components.py:345 -#: netbox/dcim/models/device_components.py:463 -#: netbox/dcim/models/device_components.py:605 -#: netbox/dcim/models/device_components.py:970 -#: netbox/dcim/models/device_components.py:1044 -#: netbox/dcim/models/power.py:102 netbox/extras/models/customfields.py:78 -#: netbox/extras/models/search.py:41 -#: netbox/virtualization/models/clusters.py:61 netbox/vpn/models/l2vpn.py:32 +#: core/models/data.py:44 dcim/models/cables.py:43 +#: dcim/models/device_component_templates.py:203 +#: dcim/models/device_component_templates.py:237 +#: dcim/models/device_component_templates.py:272 +#: dcim/models/device_component_templates.py:334 +#: dcim/models/device_component_templates.py:413 +#: dcim/models/device_component_templates.py:512 +#: dcim/models/device_component_templates.py:612 +#: dcim/models/device_components.py:283 dcim/models/device_components.py:312 +#: dcim/models/device_components.py:345 dcim/models/device_components.py:463 +#: dcim/models/device_components.py:605 dcim/models/device_components.py:970 +#: dcim/models/device_components.py:1044 dcim/models/power.py:102 +#: extras/models/customfields.py:78 extras/models/search.py:41 +#: virtualization/models/clusters.py:61 vpn/models/l2vpn.py:32 msgid "type" msgstr "tipo" -#: netbox/core/models/data.py:49 netbox/extras/choices.py:37 -#: netbox/extras/models/models.py:164 netbox/extras/tables/tables.py:656 -#: netbox/templates/core/datasource.html:58 -#: netbox/templates/core/plugin.html:65 +#: core/models/data.py:49 extras/choices.py:37 extras/models/models.py:164 +#: extras/tables/tables.py:656 templates/core/datasource.html:58 +#: templates/core/plugin.html:66 msgid "URL" msgstr "URL" -#: netbox/core/models/data.py:59 -#: netbox/dcim/models/device_component_templates.py:418 -#: netbox/dcim/models/device_components.py:512 -#: netbox/extras/models/models.py:70 netbox/extras/models/models.py:301 -#: netbox/extras/models/models.py:526 netbox/users/models/permissions.py:29 +#: core/models/data.py:59 dcim/models/device_component_templates.py:418 +#: dcim/models/device_components.py:512 extras/models/models.py:70 +#: extras/models/models.py:301 extras/models/models.py:526 +#: users/models/permissions.py:29 msgid "enabled" msgstr "ativado" -#: netbox/core/models/data.py:63 +#: core/models/data.py:63 msgid "ignore rules" msgstr "ignorar regras" -#: netbox/core/models/data.py:65 +#: core/models/data.py:65 msgid "Patterns (one per line) matching files to ignore when syncing" msgstr "" "Padrões (um por linha) de correspondencia de arquivos a serem ignorados ao " "sincronizar" -#: netbox/core/models/data.py:68 netbox/extras/models/models.py:534 +#: core/models/data.py:68 extras/models/models.py:534 msgid "parameters" msgstr "parâmetros" -#: netbox/core/models/data.py:73 +#: core/models/data.py:73 msgid "last synced" msgstr "última sincronização" -#: netbox/core/models/data.py:81 +#: core/models/data.py:81 msgid "data source" msgstr "origem de dados" -#: netbox/core/models/data.py:82 +#: core/models/data.py:82 msgid "data sources" msgstr "origens de dados" -#: netbox/core/models/data.py:122 +#: core/models/data.py:122 #, python-brace-format msgid "Unknown backend type: {type}" msgstr "Tipo de backend desconhecido: {type}" -#: netbox/core/models/data.py:164 +#: core/models/data.py:164 msgid "Cannot initiate sync; syncing already in progress." msgstr "" "Não é possível iniciar a sincronização; a sincronização já está em " "andamento." -#: netbox/core/models/data.py:177 +#: core/models/data.py:177 msgid "" "There was an error initializing the backend. A dependency needs to be " "installed: " @@ -2170,1284 +1901,1222 @@ msgstr "" "Houve um erro ao inicializar o backend. Uma dependência precisa ser " "instalada: " -#: netbox/core/models/data.py:270 netbox/core/models/files.py:31 -#: netbox/netbox/models/features.py:59 +#: core/models/data.py:270 core/models/files.py:31 +#: netbox/models/features.py:59 msgid "last updated" msgstr "última atualização" -#: netbox/core/models/data.py:280 netbox/dcim/models/cables.py:444 +#: core/models/data.py:280 dcim/models/cables.py:444 msgid "path" msgstr "caminho" -#: netbox/core/models/data.py:283 +#: core/models/data.py:283 msgid "File path relative to the data source's root" msgstr "Caminho de arquivo relativo à raiz da origem de dados" -#: netbox/core/models/data.py:287 netbox/ipam/models/ip.py:503 +#: core/models/data.py:287 ipam/models/ip.py:503 msgid "size" msgstr "tamanho" -#: netbox/core/models/data.py:290 +#: core/models/data.py:290 msgid "hash" msgstr "hash" -#: netbox/core/models/data.py:294 +#: core/models/data.py:294 msgid "Length must be 64 hexadecimal characters." msgstr "O comprimento deve ser de 64 caracteres hexadecimais." -#: netbox/core/models/data.py:296 +#: core/models/data.py:296 msgid "SHA256 hash of the file data" msgstr "Hash SHA256 do arquivo de dados" -#: netbox/core/models/data.py:313 +#: core/models/data.py:313 msgid "data file" msgstr "arquivo de dados" -#: netbox/core/models/data.py:314 +#: core/models/data.py:314 msgid "data files" msgstr "arquivos de dados" -#: netbox/core/models/data.py:401 +#: core/models/data.py:401 msgid "auto sync record" msgstr "registro de sincronização automática" -#: netbox/core/models/data.py:402 +#: core/models/data.py:402 msgid "auto sync records" msgstr "registros de sincronização automática" -#: netbox/core/models/files.py:37 +#: core/models/files.py:37 msgid "file root" msgstr "raíz do arquivo" -#: netbox/core/models/files.py:42 +#: core/models/files.py:42 msgid "file path" msgstr "caminho do arquivo" -#: netbox/core/models/files.py:44 +#: core/models/files.py:44 msgid "File path relative to the designated root path" msgstr "Caminho do arquivo em relação ao caminho raíz designado" -#: netbox/core/models/files.py:61 +#: core/models/files.py:61 msgid "managed file" msgstr "arquivo gerenciado" -#: netbox/core/models/files.py:62 +#: core/models/files.py:62 msgid "managed files" msgstr "arquivos gerenciados" -#: netbox/core/models/jobs.py:53 +#: core/models/jobs.py:53 msgid "scheduled" msgstr "agendado" -#: netbox/core/models/jobs.py:58 +#: core/models/jobs.py:58 msgid "interval" msgstr "intervalo" -#: netbox/core/models/jobs.py:64 +#: core/models/jobs.py:64 msgid "Recurrence interval (in minutes)" msgstr "Intervalo de recorrência (em minutos)" -#: netbox/core/models/jobs.py:67 +#: core/models/jobs.py:67 msgid "started" msgstr "iniciado" -#: netbox/core/models/jobs.py:72 +#: core/models/jobs.py:72 msgid "completed" msgstr "concluído" -#: netbox/core/models/jobs.py:90 netbox/extras/models/models.py:101 -#: netbox/extras/models/staging.py:87 +#: core/models/jobs.py:90 extras/models/models.py:101 +#: extras/models/staging.py:87 msgid "data" msgstr "dados" -#: netbox/core/models/jobs.py:95 +#: core/models/jobs.py:95 msgid "error" msgstr "erro" -#: netbox/core/models/jobs.py:100 +#: core/models/jobs.py:100 msgid "job ID" msgstr "ID da tarefa" -#: netbox/core/models/jobs.py:111 +#: core/models/jobs.py:111 msgid "job" msgstr "tarefa" -#: netbox/core/models/jobs.py:112 +#: core/models/jobs.py:112 msgid "jobs" msgstr "tarefas" -#: netbox/core/models/jobs.py:135 +#: core/models/jobs.py:135 #, python-brace-format msgid "Jobs cannot be assigned to this object type ({type})." msgstr "Tarefas não podem ser atribuídas a este tipo de objeto ({type})." -#: netbox/core/models/jobs.py:185 +#: core/models/jobs.py:185 #, python-brace-format msgid "Invalid status for job termination. Choices are: {choices}" msgstr "Status inválido para encerramento da tarefa. As opções são: {choices}" -#: netbox/core/models/jobs.py:216 +#: core/models/jobs.py:216 msgid "" "enqueue() cannot be called with values for both schedule_at and immediate." msgstr "" "enqueue() não pode ser chamado com valores para ambos schedule_at e " "immediate." -#: netbox/core/signals.py:126 +#: core/signals.py:126 #, python-brace-format msgid "Deletion is prevented by a protection rule: {message}" msgstr "A exclusão é impedida por uma regra de proteção: {message}" -#: netbox/core/tables/change_logging.py:25 -#: netbox/templates/account/profile.html:19 -#: netbox/templates/users/user.html:21 +#: core/tables/change_logging.py:25 templates/account/profile.html:19 +#: templates/users/user.html:21 msgid "Full Name" msgstr "Nome Completo" -#: netbox/core/tables/change_logging.py:37 netbox/core/tables/jobs.py:21 -#: netbox/extras/choices.py:41 netbox/extras/tables/tables.py:279 -#: netbox/extras/tables/tables.py:297 netbox/extras/tables/tables.py:329 -#: netbox/extras/tables/tables.py:409 netbox/extras/tables/tables.py:470 -#: netbox/extras/tables/tables.py:576 netbox/extras/tables/tables.py:616 -#: netbox/extras/tables/tables.py:653 netbox/netbox/tables/tables.py:244 -#: netbox/templates/core/objectchange.html:58 -#: netbox/templates/extras/eventrule.html:78 -#: netbox/templates/extras/journalentry.html:18 -#: netbox/tenancy/tables/contacts.py:93 netbox/vpn/tables/l2vpn.py:64 +#: core/tables/change_logging.py:37 core/tables/jobs.py:21 +#: extras/choices.py:41 extras/tables/tables.py:279 +#: extras/tables/tables.py:297 extras/tables/tables.py:329 +#: extras/tables/tables.py:409 extras/tables/tables.py:470 +#: extras/tables/tables.py:576 extras/tables/tables.py:616 +#: extras/tables/tables.py:653 netbox/tables/tables.py:244 +#: templates/core/objectchange.html:58 templates/extras/eventrule.html:78 +#: templates/extras/journalentry.html:18 tenancy/tables/contacts.py:93 +#: vpn/tables/l2vpn.py:64 msgid "Object" msgstr "Objeto" -#: netbox/core/tables/change_logging.py:42 -#: netbox/templates/core/objectchange.html:68 +#: core/tables/change_logging.py:42 templates/core/objectchange.html:68 msgid "Request ID" msgstr "ID da Solicitação" -#: netbox/core/tables/config.py:21 netbox/users/forms/filtersets.py:44 -#: netbox/users/tables.py:39 +#: core/tables/config.py:21 users/forms/filtersets.py:44 users/tables.py:39 msgid "Is Active" msgstr "Está Ativo" -#: netbox/core/tables/data.py:50 netbox/templates/core/datafile.html:31 +#: core/tables/data.py:50 templates/core/datafile.html:31 msgid "Path" msgstr "Caminho" -#: netbox/core/tables/data.py:54 -#: netbox/templates/extras/inc/result_pending.html:7 +#: core/tables/data.py:54 templates/extras/inc/result_pending.html:7 msgid "Last updated" msgstr "Última atualização" -#: netbox/core/tables/jobs.py:10 netbox/core/tables/tasks.py:76 -#: netbox/dcim/tables/devicetypes.py:164 netbox/extras/tables/tables.py:216 -#: netbox/extras/tables/tables.py:460 netbox/netbox/tables/tables.py:189 -#: netbox/templates/dcim/virtualchassis_edit.html:52 -#: netbox/utilities/forms/forms.py:73 -#: netbox/wireless/tables/wirelesslink.py:17 +#: core/tables/jobs.py:10 core/tables/tasks.py:76 +#: dcim/tables/devicetypes.py:164 extras/tables/tables.py:216 +#: extras/tables/tables.py:460 netbox/tables/tables.py:189 +#: templates/dcim/virtualchassis_edit.html:52 utilities/forms/forms.py:73 +#: wireless/tables/wirelesslink.py:17 msgid "ID" msgstr "ID" -#: netbox/core/tables/jobs.py:35 +#: core/tables/jobs.py:35 msgid "Interval" msgstr "Intervalo" -#: netbox/core/tables/plugins.py:14 netbox/templates/vpn/ipsecprofile.html:44 -#: netbox/vpn/forms/bulk_edit.py:141 netbox/vpn/forms/bulk_import.py:172 -#: netbox/vpn/tables/crypto.py:61 +#: core/tables/plugins.py:14 templates/vpn/ipsecprofile.html:44 +#: vpn/forms/bulk_edit.py:141 vpn/forms/bulk_import.py:172 +#: vpn/tables/crypto.py:61 msgid "Version" msgstr "Versão" -#: netbox/core/tables/plugins.py:19 netbox/templates/core/datafile.html:38 +#: core/tables/plugins.py:19 templates/core/datafile.html:38 msgid "Last Updated" msgstr "Última Atualização" -#: netbox/core/tables/plugins.py:23 +#: core/tables/plugins.py:23 msgid "Minimum NetBox Version" msgstr "Versão Mínima do Netbox" -#: netbox/core/tables/plugins.py:27 +#: core/tables/plugins.py:27 msgid "Maximum NetBox Version" msgstr "Versão Máxima do Netbox" -#: netbox/core/tables/plugins.py:31 netbox/core/tables/plugins.py:74 +#: core/tables/plugins.py:31 core/tables/plugins.py:74 msgid "No plugin data found" msgstr "Nenhum dado do plugin encontrado" -#: netbox/core/tables/plugins.py:48 netbox/templates/core/plugin.html:61 +#: core/tables/plugins.py:48 templates/core/plugin.html:62 msgid "Author" msgstr "Autor" -#: netbox/core/tables/plugins.py:54 +#: core/tables/plugins.py:54 msgid "Installed" msgstr "Instalado" -#: netbox/core/tables/plugins.py:57 netbox/templates/core/plugin.html:83 +#: core/tables/plugins.py:57 templates/core/plugin.html:84 msgid "Certified" msgstr "Certificado" -#: netbox/core/tables/plugins.py:60 +#: core/tables/plugins.py:60 msgid "Published" msgstr "Publicado" -#: netbox/core/tables/plugins.py:66 +#: core/tables/plugins.py:66 msgid "Installed Version" msgstr "Versão Instalada" -#: netbox/core/tables/plugins.py:70 +#: core/tables/plugins.py:70 msgid "Latest Version" msgstr "Última Versão" -#: netbox/core/tables/tasks.py:18 +#: core/tables/tasks.py:18 msgid "Oldest Task" msgstr "Tarefa mais Antiga" -#: netbox/core/tables/tasks.py:42 netbox/templates/core/rq_worker_list.html:39 +#: core/tables/tasks.py:42 templates/core/rq_worker_list.html:39 msgid "Workers" msgstr "Agentes" -#: netbox/core/tables/tasks.py:46 netbox/vpn/tables/tunnels.py:88 +#: core/tables/tasks.py:46 vpn/tables/tunnels.py:88 msgid "Host" msgstr "Host" -#: netbox/core/tables/tasks.py:50 netbox/ipam/forms/filtersets.py:535 +#: core/tables/tasks.py:50 ipam/forms/filtersets.py:535 msgid "Port" msgstr "Porta" -#: netbox/core/tables/tasks.py:54 +#: core/tables/tasks.py:54 msgid "DB" msgstr "Banco de Dados" -#: netbox/core/tables/tasks.py:58 +#: core/tables/tasks.py:58 msgid "Scheduler PID" msgstr "Agendador PID" -#: netbox/core/tables/tasks.py:62 +#: core/tables/tasks.py:62 msgid "No queues found" msgstr "Nenhuma fila foi encontrada" -#: netbox/core/tables/tasks.py:82 +#: core/tables/tasks.py:82 msgid "Enqueued" msgstr "Enfileirado" -#: netbox/core/tables/tasks.py:85 +#: core/tables/tasks.py:85 msgid "Ended" msgstr "Finalizado" -#: netbox/core/tables/tasks.py:93 netbox/templates/core/rq_task.html:85 +#: core/tables/tasks.py:93 templates/core/rq_task.html:85 msgid "Callable" msgstr "Chamável" -#: netbox/core/tables/tasks.py:97 +#: core/tables/tasks.py:97 msgid "No tasks found" msgstr "Nenhuma tarefa encontrada" -#: netbox/core/tables/tasks.py:118 netbox/templates/core/rq_worker.html:47 +#: core/tables/tasks.py:118 templates/core/rq_worker.html:47 msgid "State" msgstr "Estado" -#: netbox/core/tables/tasks.py:121 netbox/templates/core/rq_worker.html:51 +#: core/tables/tasks.py:121 templates/core/rq_worker.html:51 msgid "Birth" msgstr "Começo" -#: netbox/core/tables/tasks.py:124 netbox/templates/core/rq_worker.html:59 +#: core/tables/tasks.py:124 templates/core/rq_worker.html:59 msgid "PID" msgstr "PID" -#: netbox/core/tables/tasks.py:128 +#: core/tables/tasks.py:128 msgid "No workers found" msgstr "Nenhum agente encontrado" -#: netbox/core/views.py:90 +#: core/views.py:90 #, python-brace-format msgid "Queued job #{id} to sync {datasource}" msgstr "Tarefa {id} enfileirada para sincronizar {datasource}" -#: netbox/core/views.py:319 +#: core/views.py:319 #, python-brace-format msgid "Restored configuration revision #{id}" msgstr "Revisão da configuração nº {id} restaurada" -#: netbox/core/views.py:412 netbox/core/views.py:455 netbox/core/views.py:531 +#: core/views.py:412 core/views.py:455 core/views.py:531 #, python-brace-format msgid "Job {job_id} not found" msgstr "Tarefa {job_id} não encontrada" -#: netbox/core/views.py:463 +#: core/views.py:463 #, python-brace-format msgid "Job {id} has been deleted." msgstr "Tarefa {id} foi excluída." -#: netbox/core/views.py:465 +#: core/views.py:465 #, python-brace-format msgid "Error deleting job {id}: {error}" msgstr "Erro ao excluir a tarefa {id}: {error}" -#: netbox/core/views.py:478 netbox/core/views.py:496 +#: core/views.py:478 core/views.py:496 #, python-brace-format msgid "Job {id} not found." msgstr "Tarefa {id} não encontrada." -#: netbox/core/views.py:484 +#: core/views.py:484 #, python-brace-format msgid "Job {id} has been re-enqueued." msgstr "Tarefa {id} foi reenfileirada." -#: netbox/core/views.py:519 +#: core/views.py:519 #, python-brace-format msgid "Job {id} has been enqueued." msgstr "Tarefa {id} foi enfileirada." -#: netbox/core/views.py:538 +#: core/views.py:538 #, python-brace-format msgid "Job {id} has been stopped." msgstr "Tarefa {id} foi interrompida." -#: netbox/core/views.py:540 +#: core/views.py:540 #, python-brace-format msgid "Failed to stop job {id}" msgstr "Falha ao interromper a tarefa {id}" -#: netbox/core/views.py:678 +#: core/views.py:678 msgid "Plugins catalog could not be loaded" msgstr "Catálogo de plugins não pode ser carregado" -#: netbox/core/views.py:712 +#: core/views.py:712 #, python-brace-format msgid "Plugin {name} not found" msgstr "Plugin {name} não encontrado" -#: netbox/dcim/api/serializers_/devices.py:49 -#: netbox/dcim/api/serializers_/devicetypes.py:25 +#: dcim/api/serializers_/devices.py:49 dcim/api/serializers_/devicetypes.py:25 msgid "Position (U)" msgstr "Posição (U)" -#: netbox/dcim/api/serializers_/racks.py:112 -#: netbox/templates/dcim/rack.html:28 +#: dcim/api/serializers_/racks.py:112 templates/dcim/rack.html:28 msgid "Facility ID" msgstr "ID do Facility" -#: netbox/dcim/choices.py:21 netbox/virtualization/choices.py:21 +#: dcim/choices.py:21 virtualization/choices.py:21 msgid "Staging" msgstr "Em Preparação" -#: netbox/dcim/choices.py:23 netbox/dcim/choices.py:189 -#: netbox/dcim/choices.py:240 netbox/dcim/choices.py:1531 -#: netbox/virtualization/choices.py:23 netbox/virtualization/choices.py:48 +#: dcim/choices.py:23 dcim/choices.py:189 dcim/choices.py:240 +#: dcim/choices.py:1531 virtualization/choices.py:23 +#: virtualization/choices.py:48 msgid "Decommissioning" msgstr "Em Descomissionamento" -#: netbox/dcim/choices.py:24 +#: dcim/choices.py:24 msgid "Retired" msgstr "Desativado" -#: netbox/dcim/choices.py:65 +#: dcim/choices.py:65 msgid "2-post frame" msgstr "Rack aberto de 2 colunas" -#: netbox/dcim/choices.py:66 +#: dcim/choices.py:66 msgid "4-post frame" msgstr "Rack aberto de 4 colunas" -#: netbox/dcim/choices.py:67 +#: dcim/choices.py:67 msgid "4-post cabinet" msgstr "Rack fechado" -#: netbox/dcim/choices.py:68 +#: dcim/choices.py:68 msgid "Wall-mounted frame" msgstr "Bracket de parede" -#: netbox/dcim/choices.py:69 +#: dcim/choices.py:69 msgid "Wall-mounted frame (vertical)" msgstr "Bracket de parede (vertical)" -#: netbox/dcim/choices.py:70 +#: dcim/choices.py:70 msgid "Wall-mounted cabinet" msgstr "Rack de parede" -#: netbox/dcim/choices.py:71 +#: dcim/choices.py:71 msgid "Wall-mounted cabinet (vertical)" msgstr "Rack de parede (vertical)" -#: netbox/dcim/choices.py:83 netbox/dcim/choices.py:84 -#: netbox/dcim/choices.py:85 netbox/dcim/choices.py:86 +#: dcim/choices.py:83 dcim/choices.py:84 dcim/choices.py:85 dcim/choices.py:86 #, python-brace-format msgid "{n} inches" msgstr "{n} polegadas" -#: netbox/dcim/choices.py:100 netbox/ipam/choices.py:32 -#: netbox/ipam/choices.py:50 netbox/ipam/choices.py:70 -#: netbox/ipam/choices.py:155 netbox/wireless/choices.py:26 +#: dcim/choices.py:100 ipam/choices.py:32 ipam/choices.py:50 +#: ipam/choices.py:70 ipam/choices.py:155 wireless/choices.py:26 msgid "Reserved" msgstr "Reservado" -#: netbox/dcim/choices.py:101 netbox/templates/dcim/device.html:259 +#: dcim/choices.py:101 templates/dcim/device.html:259 msgid "Available" msgstr "Disponível" -#: netbox/dcim/choices.py:104 netbox/ipam/choices.py:33 -#: netbox/ipam/choices.py:51 netbox/ipam/choices.py:71 -#: netbox/ipam/choices.py:156 netbox/wireless/choices.py:28 +#: dcim/choices.py:104 ipam/choices.py:33 ipam/choices.py:51 +#: ipam/choices.py:71 ipam/choices.py:156 wireless/choices.py:28 msgid "Deprecated" msgstr "Obsoleto" -#: netbox/dcim/choices.py:114 -#: netbox/templates/dcim/inc/panels/racktype_dimensions.html:41 +#: dcim/choices.py:114 templates/dcim/inc/panels/racktype_dimensions.html:41 msgid "Millimeters" msgstr "Milímetros" -#: netbox/dcim/choices.py:115 netbox/dcim/choices.py:1553 +#: dcim/choices.py:115 dcim/choices.py:1553 msgid "Inches" msgstr "Polegadas" -#: netbox/dcim/choices.py:136 netbox/dcim/choices.py:207 -#: netbox/dcim/choices.py:254 +#: dcim/choices.py:136 dcim/choices.py:207 dcim/choices.py:254 msgid "Front to rear" msgstr "Frente para trás" -#: netbox/dcim/choices.py:137 netbox/dcim/choices.py:208 -#: netbox/dcim/choices.py:255 +#: dcim/choices.py:137 dcim/choices.py:208 dcim/choices.py:255 msgid "Rear to front" msgstr "Trás para frente" -#: netbox/dcim/choices.py:151 netbox/dcim/forms/bulk_edit.py:68 -#: netbox/dcim/forms/bulk_edit.py:87 netbox/dcim/forms/bulk_edit.py:173 -#: netbox/dcim/forms/bulk_edit.py:1405 netbox/dcim/forms/bulk_import.py:60 -#: netbox/dcim/forms/bulk_import.py:74 netbox/dcim/forms/bulk_import.py:137 -#: netbox/dcim/forms/bulk_import.py:566 netbox/dcim/forms/bulk_import.py:833 -#: netbox/dcim/forms/bulk_import.py:1088 netbox/dcim/forms/filtersets.py:234 -#: netbox/dcim/forms/model_forms.py:74 netbox/dcim/forms/model_forms.py:93 -#: netbox/dcim/forms/model_forms.py:170 netbox/dcim/forms/model_forms.py:1062 -#: netbox/dcim/forms/model_forms.py:1502 -#: netbox/dcim/forms/object_import.py:176 netbox/dcim/tables/devices.py:656 -#: netbox/dcim/tables/devices.py:869 netbox/dcim/tables/devices.py:954 -#: netbox/extras/tables/tables.py:223 netbox/ipam/tables/fhrp.py:59 -#: netbox/ipam/tables/ip.py:378 netbox/ipam/tables/services.py:44 -#: netbox/templates/dcim/interface.html:102 -#: netbox/templates/dcim/interface.html:309 -#: netbox/templates/dcim/location.html:41 netbox/templates/dcim/region.html:37 -#: netbox/templates/dcim/sitegroup.html:37 -#: netbox/templates/ipam/service.html:28 -#: netbox/templates/tenancy/contactgroup.html:29 -#: netbox/templates/tenancy/tenantgroup.html:37 -#: netbox/templates/virtualization/vminterface.html:39 -#: netbox/templates/wireless/wirelesslangroup.html:37 -#: netbox/tenancy/forms/bulk_edit.py:27 netbox/tenancy/forms/bulk_edit.py:61 -#: netbox/tenancy/forms/bulk_import.py:24 -#: netbox/tenancy/forms/bulk_import.py:58 -#: netbox/tenancy/forms/model_forms.py:25 -#: netbox/tenancy/forms/model_forms.py:68 -#: netbox/virtualization/forms/bulk_edit.py:207 -#: netbox/virtualization/forms/bulk_import.py:151 -#: netbox/virtualization/tables/virtualmachines.py:162 -#: netbox/wireless/forms/bulk_edit.py:24 -#: netbox/wireless/forms/bulk_import.py:21 -#: netbox/wireless/forms/model_forms.py:21 +#: dcim/choices.py:151 dcim/forms/bulk_edit.py:68 dcim/forms/bulk_edit.py:87 +#: dcim/forms/bulk_edit.py:173 dcim/forms/bulk_edit.py:1405 +#: dcim/forms/bulk_import.py:60 dcim/forms/bulk_import.py:74 +#: dcim/forms/bulk_import.py:137 dcim/forms/bulk_import.py:566 +#: dcim/forms/bulk_import.py:833 dcim/forms/bulk_import.py:1088 +#: dcim/forms/filtersets.py:234 dcim/forms/model_forms.py:74 +#: dcim/forms/model_forms.py:93 dcim/forms/model_forms.py:170 +#: dcim/forms/model_forms.py:1062 dcim/forms/model_forms.py:1502 +#: dcim/forms/object_import.py:176 dcim/tables/devices.py:656 +#: dcim/tables/devices.py:869 dcim/tables/devices.py:954 +#: extras/tables/tables.py:223 ipam/tables/fhrp.py:59 ipam/tables/ip.py:378 +#: ipam/tables/services.py:44 templates/dcim/interface.html:102 +#: templates/dcim/interface.html:309 templates/dcim/location.html:41 +#: templates/dcim/region.html:37 templates/dcim/sitegroup.html:37 +#: templates/ipam/service.html:28 templates/tenancy/contactgroup.html:29 +#: templates/tenancy/tenantgroup.html:37 +#: templates/virtualization/vminterface.html:39 +#: templates/wireless/wirelesslangroup.html:37 tenancy/forms/bulk_edit.py:27 +#: tenancy/forms/bulk_edit.py:61 tenancy/forms/bulk_import.py:24 +#: tenancy/forms/bulk_import.py:58 tenancy/forms/model_forms.py:25 +#: tenancy/forms/model_forms.py:68 virtualization/forms/bulk_edit.py:207 +#: virtualization/forms/bulk_import.py:151 +#: virtualization/tables/virtualmachines.py:162 wireless/forms/bulk_edit.py:24 +#: wireless/forms/bulk_import.py:21 wireless/forms/model_forms.py:21 msgid "Parent" msgstr "Pai" -#: netbox/dcim/choices.py:152 +#: dcim/choices.py:152 msgid "Child" msgstr "Filho" -#: netbox/dcim/choices.py:166 netbox/templates/dcim/device.html:340 -#: netbox/templates/dcim/rack.html:133 -#: netbox/templates/dcim/rack_elevation_list.html:20 -#: netbox/templates/dcim/rackreservation.html:76 +#: dcim/choices.py:166 templates/dcim/device.html:340 +#: templates/dcim/rack.html:133 templates/dcim/rack_elevation_list.html:20 +#: templates/dcim/rackreservation.html:76 msgid "Front" msgstr "Frente" -#: netbox/dcim/choices.py:167 netbox/templates/dcim/device.html:346 -#: netbox/templates/dcim/rack.html:139 -#: netbox/templates/dcim/rack_elevation_list.html:21 -#: netbox/templates/dcim/rackreservation.html:82 +#: dcim/choices.py:167 templates/dcim/device.html:346 +#: templates/dcim/rack.html:139 templates/dcim/rack_elevation_list.html:21 +#: templates/dcim/rackreservation.html:82 msgid "Rear" msgstr "Traseira" -#: netbox/dcim/choices.py:186 netbox/dcim/choices.py:238 -#: netbox/virtualization/choices.py:46 +#: dcim/choices.py:186 dcim/choices.py:238 virtualization/choices.py:46 msgid "Staged" msgstr "Preparado" -#: netbox/dcim/choices.py:188 +#: dcim/choices.py:188 msgid "Inventory" msgstr "Inventário" -#: netbox/dcim/choices.py:209 netbox/dcim/choices.py:256 +#: dcim/choices.py:209 dcim/choices.py:256 msgid "Left to right" msgstr "Esquerda para direita" -#: netbox/dcim/choices.py:210 netbox/dcim/choices.py:257 +#: dcim/choices.py:210 dcim/choices.py:257 msgid "Right to left" msgstr "Direita para esquerda" -#: netbox/dcim/choices.py:211 netbox/dcim/choices.py:258 +#: dcim/choices.py:211 dcim/choices.py:258 msgid "Side to rear" msgstr "Lado para trás" -#: netbox/dcim/choices.py:212 +#: dcim/choices.py:212 msgid "Rear to side" msgstr "De trás para o lado" -#: netbox/dcim/choices.py:213 +#: dcim/choices.py:213 msgid "Bottom to top" msgstr "De baixo para cima" -#: netbox/dcim/choices.py:214 +#: dcim/choices.py:214 msgid "Top to bottom" msgstr "De cima para baixo" -#: netbox/dcim/choices.py:215 netbox/dcim/choices.py:259 -#: netbox/dcim/choices.py:1303 +#: dcim/choices.py:215 dcim/choices.py:259 dcim/choices.py:1303 msgid "Passive" msgstr "Passivo" -#: netbox/dcim/choices.py:216 +#: dcim/choices.py:216 msgid "Mixed" msgstr "Misto" -#: netbox/dcim/choices.py:484 netbox/dcim/choices.py:733 +#: dcim/choices.py:484 dcim/choices.py:733 msgid "NEMA (Non-locking)" msgstr "NEMA (sem trava)" -#: netbox/dcim/choices.py:506 netbox/dcim/choices.py:755 +#: dcim/choices.py:506 dcim/choices.py:755 msgid "NEMA (Locking)" msgstr "NEMA (twist-lock)" -#: netbox/dcim/choices.py:530 netbox/dcim/choices.py:779 +#: dcim/choices.py:530 dcim/choices.py:779 msgid "California Style" msgstr "California Standard" -#: netbox/dcim/choices.py:538 +#: dcim/choices.py:538 msgid "International/ITA" msgstr "Internacional/ITA" -#: netbox/dcim/choices.py:573 netbox/dcim/choices.py:814 +#: dcim/choices.py:573 dcim/choices.py:814 msgid "Proprietary" msgstr "Proprietário" -#: netbox/dcim/choices.py:581 netbox/dcim/choices.py:824 -#: netbox/dcim/choices.py:1219 netbox/dcim/choices.py:1221 -#: netbox/dcim/choices.py:1447 netbox/dcim/choices.py:1449 -#: netbox/netbox/navigation/menu.py:200 +#: dcim/choices.py:581 dcim/choices.py:824 dcim/choices.py:1219 +#: dcim/choices.py:1221 dcim/choices.py:1447 dcim/choices.py:1449 +#: netbox/navigation/menu.py:200 msgid "Other" msgstr "Outros" -#: netbox/dcim/choices.py:787 +#: dcim/choices.py:787 msgid "ITA/International" msgstr "ITA/Internacional" -#: netbox/dcim/choices.py:854 +#: dcim/choices.py:854 msgid "Physical" msgstr "Físico" -#: netbox/dcim/choices.py:855 netbox/dcim/choices.py:1023 +#: dcim/choices.py:855 dcim/choices.py:1023 msgid "Virtual" msgstr "Virtual" -#: netbox/dcim/choices.py:856 netbox/dcim/choices.py:1097 -#: netbox/dcim/forms/bulk_edit.py:1515 netbox/dcim/forms/filtersets.py:1330 -#: netbox/dcim/forms/model_forms.py:988 netbox/dcim/forms/model_forms.py:1397 -#: netbox/netbox/navigation/menu.py:140 netbox/netbox/navigation/menu.py:144 -#: netbox/templates/dcim/interface.html:210 +#: dcim/choices.py:856 dcim/choices.py:1097 dcim/forms/bulk_edit.py:1515 +#: dcim/forms/filtersets.py:1330 dcim/forms/model_forms.py:988 +#: dcim/forms/model_forms.py:1397 netbox/navigation/menu.py:140 +#: netbox/navigation/menu.py:144 templates/dcim/interface.html:210 msgid "Wireless" msgstr "Wireless" -#: netbox/dcim/choices.py:1021 +#: dcim/choices.py:1021 msgid "Virtual interfaces" msgstr "Interfaces virtuais" -#: netbox/dcim/choices.py:1024 netbox/dcim/forms/bulk_edit.py:1410 -#: netbox/dcim/forms/bulk_import.py:840 netbox/dcim/forms/model_forms.py:974 -#: netbox/dcim/tables/devices.py:660 netbox/templates/dcim/interface.html:106 -#: netbox/templates/virtualization/vminterface.html:43 -#: netbox/virtualization/forms/bulk_edit.py:212 -#: netbox/virtualization/forms/bulk_import.py:158 -#: netbox/virtualization/tables/virtualmachines.py:166 +#: dcim/choices.py:1024 dcim/forms/bulk_edit.py:1410 +#: dcim/forms/bulk_import.py:840 dcim/forms/model_forms.py:974 +#: dcim/tables/devices.py:660 templates/dcim/interface.html:106 +#: templates/virtualization/vminterface.html:43 +#: virtualization/forms/bulk_edit.py:212 +#: virtualization/forms/bulk_import.py:158 +#: virtualization/tables/virtualmachines.py:166 msgid "Bridge" msgstr "Bridge" -#: netbox/dcim/choices.py:1025 +#: dcim/choices.py:1025 msgid "Link Aggregation Group (LAG)" msgstr "Link Aggregation (LAG)" -#: netbox/dcim/choices.py:1029 +#: dcim/choices.py:1029 msgid "Ethernet (fixed)" msgstr "Ethernet (fixa)" -#: netbox/dcim/choices.py:1044 +#: dcim/choices.py:1044 msgid "Ethernet (modular)" msgstr "Ethernet (modular)" -#: netbox/dcim/choices.py:1081 +#: dcim/choices.py:1081 msgid "Ethernet (backplane)" msgstr "Ethernet (backplane)" -#: netbox/dcim/choices.py:1113 +#: dcim/choices.py:1113 msgid "Cellular" msgstr "Celular" -#: netbox/dcim/choices.py:1165 netbox/dcim/forms/filtersets.py:383 -#: netbox/dcim/forms/filtersets.py:809 netbox/dcim/forms/filtersets.py:963 -#: netbox/dcim/forms/filtersets.py:1542 -#: netbox/templates/dcim/inventoryitem.html:52 -#: netbox/templates/dcim/virtualchassis_edit.html:54 +#: dcim/choices.py:1165 dcim/forms/filtersets.py:383 +#: dcim/forms/filtersets.py:809 dcim/forms/filtersets.py:963 +#: dcim/forms/filtersets.py:1542 templates/dcim/inventoryitem.html:52 +#: templates/dcim/virtualchassis_edit.html:54 msgid "Serial" msgstr "Serial" -#: netbox/dcim/choices.py:1180 +#: dcim/choices.py:1180 msgid "Coaxial" msgstr "Coaxial" -#: netbox/dcim/choices.py:1200 +#: dcim/choices.py:1200 msgid "Stacking" msgstr "Empilhamento" -#: netbox/dcim/choices.py:1250 +#: dcim/choices.py:1250 msgid "Half" msgstr "Half" -#: netbox/dcim/choices.py:1251 +#: dcim/choices.py:1251 msgid "Full" msgstr "Full" -#: netbox/dcim/choices.py:1252 netbox/netbox/preferences.py:31 -#: netbox/wireless/choices.py:480 +#: dcim/choices.py:1252 netbox/preferences.py:31 wireless/choices.py:480 msgid "Auto" msgstr "Automático" -#: netbox/dcim/choices.py:1263 +#: dcim/choices.py:1263 msgid "Access" msgstr "Acesso" -#: netbox/dcim/choices.py:1264 netbox/ipam/tables/vlans.py:172 -#: netbox/ipam/tables/vlans.py:217 -#: netbox/templates/dcim/inc/interface_vlans_table.html:7 +#: dcim/choices.py:1264 ipam/tables/vlans.py:172 ipam/tables/vlans.py:217 +#: templates/dcim/inc/interface_vlans_table.html:7 msgid "Tagged" msgstr "Tagueada" -#: netbox/dcim/choices.py:1265 +#: dcim/choices.py:1265 msgid "Tagged (All)" msgstr "Tagueada (Todos)" -#: netbox/dcim/choices.py:1294 +#: dcim/choices.py:1294 msgid "IEEE Standard" msgstr "Padrão IEEE" -#: netbox/dcim/choices.py:1305 +#: dcim/choices.py:1305 msgid "Passive 24V (2-pair)" msgstr "24V passivo (2 pares)" -#: netbox/dcim/choices.py:1306 +#: dcim/choices.py:1306 msgid "Passive 24V (4-pair)" msgstr "24V passivo (4 pares)" -#: netbox/dcim/choices.py:1307 +#: dcim/choices.py:1307 msgid "Passive 48V (2-pair)" msgstr "48V passivo (2 pares)" -#: netbox/dcim/choices.py:1308 +#: dcim/choices.py:1308 msgid "Passive 48V (4-pair)" msgstr "48V passivo (4 pares)" -#: netbox/dcim/choices.py:1378 netbox/dcim/choices.py:1488 +#: dcim/choices.py:1378 dcim/choices.py:1488 msgid "Copper" msgstr "Cabo Metálico" -#: netbox/dcim/choices.py:1401 +#: dcim/choices.py:1401 msgid "Fiber Optic" msgstr "Fibra Óptica" -#: netbox/dcim/choices.py:1434 netbox/dcim/choices.py:1517 +#: dcim/choices.py:1434 dcim/choices.py:1517 msgid "USB" msgstr "USB" -#: netbox/dcim/choices.py:1504 +#: dcim/choices.py:1504 msgid "Fiber" msgstr "Fibra" -#: netbox/dcim/choices.py:1529 netbox/dcim/forms/filtersets.py:1227 +#: dcim/choices.py:1529 dcim/forms/filtersets.py:1227 msgid "Connected" msgstr "Conectado" -#: netbox/dcim/choices.py:1548 netbox/wireless/choices.py:497 +#: dcim/choices.py:1548 wireless/choices.py:497 msgid "Kilometers" msgstr "Quilômetros" -#: netbox/dcim/choices.py:1549 netbox/templates/dcim/cable_trace.html:65 -#: netbox/wireless/choices.py:498 +#: dcim/choices.py:1549 templates/dcim/cable_trace.html:65 +#: wireless/choices.py:498 msgid "Meters" msgstr "Metros" -#: netbox/dcim/choices.py:1550 +#: dcim/choices.py:1550 msgid "Centimeters" msgstr "Centímetros" -#: netbox/dcim/choices.py:1551 netbox/wireless/choices.py:499 +#: dcim/choices.py:1551 wireless/choices.py:499 msgid "Miles" msgstr "Milhas" -#: netbox/dcim/choices.py:1552 netbox/templates/dcim/cable_trace.html:66 -#: netbox/wireless/choices.py:500 +#: dcim/choices.py:1552 templates/dcim/cable_trace.html:66 +#: wireless/choices.py:500 msgid "Feet" msgstr "Pés" -#: netbox/dcim/choices.py:1568 netbox/templates/dcim/device.html:327 -#: netbox/templates/dcim/rack.html:107 +#: dcim/choices.py:1568 templates/dcim/device.html:327 +#: templates/dcim/rack.html:107 msgid "Kilograms" msgstr "Quilogramas" -#: netbox/dcim/choices.py:1569 +#: dcim/choices.py:1569 msgid "Grams" msgstr "Gramas" -#: netbox/dcim/choices.py:1570 netbox/templates/dcim/device.html:328 -#: netbox/templates/dcim/rack.html:108 +#: dcim/choices.py:1570 templates/dcim/device.html:328 +#: templates/dcim/rack.html:108 msgid "Pounds" msgstr "Libras" -#: netbox/dcim/choices.py:1571 +#: dcim/choices.py:1571 msgid "Ounces" msgstr "Onças" -#: netbox/dcim/choices.py:1618 +#: dcim/choices.py:1618 msgid "Redundant" msgstr "Redundante" -#: netbox/dcim/choices.py:1639 +#: dcim/choices.py:1639 msgid "Single phase" msgstr "Monofásico" -#: netbox/dcim/choices.py:1640 +#: dcim/choices.py:1640 msgid "Three-phase" msgstr "Trifásico" -#: netbox/dcim/fields.py:45 +#: dcim/fields.py:45 #, python-brace-format msgid "Invalid MAC address format: {value}" msgstr "Formato de endereço MAC inválido: {value}" -#: netbox/dcim/fields.py:71 +#: dcim/fields.py:71 #, python-brace-format msgid "Invalid WWN format: {value}" msgstr "Formato WWN inválido: {value}" -#: netbox/dcim/filtersets.py:86 +#: dcim/filtersets.py:86 msgid "Parent region (ID)" msgstr "Região principal (ID)" -#: netbox/dcim/filtersets.py:92 +#: dcim/filtersets.py:92 msgid "Parent region (slug)" msgstr "Região principal (slug)" -#: netbox/dcim/filtersets.py:116 +#: dcim/filtersets.py:116 msgid "Parent site group (ID)" msgstr "Grupo de sites principais (ID)" -#: netbox/dcim/filtersets.py:122 +#: dcim/filtersets.py:122 msgid "Parent site group (slug)" msgstr "Grupo de sites principais (slug)" -#: netbox/dcim/filtersets.py:164 netbox/extras/filtersets.py:364 -#: netbox/ipam/filtersets.py:841 netbox/ipam/filtersets.py:993 +#: dcim/filtersets.py:164 extras/filtersets.py:364 ipam/filtersets.py:841 +#: ipam/filtersets.py:993 msgid "Group (ID)" msgstr "Grupo (ID)" -#: netbox/dcim/filtersets.py:170 +#: dcim/filtersets.py:170 msgid "Group (slug)" msgstr "Grupo (slug)" -#: netbox/dcim/filtersets.py:176 netbox/dcim/filtersets.py:181 +#: dcim/filtersets.py:176 dcim/filtersets.py:181 msgid "AS (ID)" msgstr "AS (ID)" -#: netbox/dcim/filtersets.py:246 +#: dcim/filtersets.py:246 msgid "Parent location (ID)" msgstr "Localização principal (ID)" -#: netbox/dcim/filtersets.py:252 +#: dcim/filtersets.py:252 msgid "Parent location (slug)" msgstr "Localização principal (slug)" -#: netbox/dcim/filtersets.py:258 netbox/dcim/filtersets.py:369 -#: netbox/dcim/filtersets.py:490 netbox/dcim/filtersets.py:1057 -#: netbox/dcim/filtersets.py:1404 netbox/dcim/filtersets.py:2182 +#: dcim/filtersets.py:258 dcim/filtersets.py:369 dcim/filtersets.py:490 +#: dcim/filtersets.py:1057 dcim/filtersets.py:1404 dcim/filtersets.py:2182 msgid "Location (ID)" msgstr "Localização (ID)" -#: netbox/dcim/filtersets.py:265 netbox/dcim/filtersets.py:376 -#: netbox/dcim/filtersets.py:497 netbox/dcim/filtersets.py:1410 -#: netbox/extras/filtersets.py:542 +#: dcim/filtersets.py:265 dcim/filtersets.py:376 dcim/filtersets.py:497 +#: dcim/filtersets.py:1410 extras/filtersets.py:542 msgid "Location (slug)" msgstr "Localização (slug)" -#: netbox/dcim/filtersets.py:296 netbox/dcim/filtersets.py:381 -#: netbox/dcim/filtersets.py:539 netbox/dcim/filtersets.py:678 -#: netbox/dcim/filtersets.py:882 netbox/dcim/filtersets.py:933 -#: netbox/dcim/filtersets.py:973 netbox/dcim/filtersets.py:1306 -#: netbox/dcim/filtersets.py:1840 +#: dcim/filtersets.py:296 dcim/filtersets.py:381 dcim/filtersets.py:539 +#: dcim/filtersets.py:678 dcim/filtersets.py:882 dcim/filtersets.py:933 +#: dcim/filtersets.py:973 dcim/filtersets.py:1306 dcim/filtersets.py:1840 msgid "Manufacturer (ID)" msgstr "Fabricante (ID)" -#: netbox/dcim/filtersets.py:302 netbox/dcim/filtersets.py:387 -#: netbox/dcim/filtersets.py:545 netbox/dcim/filtersets.py:684 -#: netbox/dcim/filtersets.py:888 netbox/dcim/filtersets.py:939 -#: netbox/dcim/filtersets.py:979 netbox/dcim/filtersets.py:1312 -#: netbox/dcim/filtersets.py:1846 +#: dcim/filtersets.py:302 dcim/filtersets.py:387 dcim/filtersets.py:545 +#: dcim/filtersets.py:684 dcim/filtersets.py:888 dcim/filtersets.py:939 +#: dcim/filtersets.py:979 dcim/filtersets.py:1312 dcim/filtersets.py:1846 msgid "Manufacturer (slug)" msgstr "Fabricante (slug)" -#: netbox/dcim/filtersets.py:393 +#: dcim/filtersets.py:393 msgid "Rack type (slug)" msgstr "Tipo de rack (slug)" -#: netbox/dcim/filtersets.py:397 +#: dcim/filtersets.py:397 msgid "Rack type (ID)" msgstr "Tipo de rack (ID)" -#: netbox/dcim/filtersets.py:411 netbox/dcim/filtersets.py:892 -#: netbox/dcim/filtersets.py:994 netbox/dcim/filtersets.py:1850 -#: netbox/ipam/filtersets.py:381 netbox/ipam/filtersets.py:493 -#: netbox/ipam/filtersets.py:1003 netbox/virtualization/filtersets.py:210 +#: dcim/filtersets.py:411 dcim/filtersets.py:892 dcim/filtersets.py:994 +#: dcim/filtersets.py:1850 ipam/filtersets.py:381 ipam/filtersets.py:493 +#: ipam/filtersets.py:1003 virtualization/filtersets.py:210 msgid "Role (ID)" msgstr "Função (ID)" -#: netbox/dcim/filtersets.py:417 netbox/dcim/filtersets.py:898 -#: netbox/dcim/filtersets.py:1000 netbox/dcim/filtersets.py:1856 -#: netbox/extras/filtersets.py:558 netbox/ipam/filtersets.py:387 -#: netbox/ipam/filtersets.py:499 netbox/ipam/filtersets.py:1009 -#: netbox/virtualization/filtersets.py:216 +#: dcim/filtersets.py:417 dcim/filtersets.py:898 dcim/filtersets.py:1000 +#: dcim/filtersets.py:1856 extras/filtersets.py:558 ipam/filtersets.py:387 +#: ipam/filtersets.py:499 ipam/filtersets.py:1009 +#: virtualization/filtersets.py:216 msgid "Role (slug)" msgstr "Função (slug)" -#: netbox/dcim/filtersets.py:447 netbox/dcim/filtersets.py:1062 -#: netbox/dcim/filtersets.py:1415 netbox/dcim/filtersets.py:2244 +#: dcim/filtersets.py:447 dcim/filtersets.py:1062 dcim/filtersets.py:1415 +#: dcim/filtersets.py:2244 msgid "Rack (ID)" msgstr "Rack (ID)" -#: netbox/dcim/filtersets.py:507 netbox/extras/filtersets.py:293 -#: netbox/extras/filtersets.py:337 netbox/extras/filtersets.py:359 -#: netbox/extras/filtersets.py:419 netbox/users/filtersets.py:113 -#: netbox/users/filtersets.py:180 +#: dcim/filtersets.py:507 extras/filtersets.py:293 extras/filtersets.py:337 +#: extras/filtersets.py:359 extras/filtersets.py:419 users/filtersets.py:113 +#: users/filtersets.py:180 msgid "User (name)" msgstr "Usuário (nome)" -#: netbox/dcim/filtersets.py:549 +#: dcim/filtersets.py:549 msgid "Default platform (ID)" msgstr "Plataforma padrão (ID)" -#: netbox/dcim/filtersets.py:555 +#: dcim/filtersets.py:555 msgid "Default platform (slug)" msgstr "Plataforma padrão (slug)" -#: netbox/dcim/filtersets.py:558 netbox/dcim/forms/filtersets.py:517 +#: dcim/filtersets.py:558 dcim/forms/filtersets.py:517 msgid "Has a front image" msgstr "Possui imagem frontal" -#: netbox/dcim/filtersets.py:562 netbox/dcim/forms/filtersets.py:524 +#: dcim/filtersets.py:562 dcim/forms/filtersets.py:524 msgid "Has a rear image" msgstr "Possui imagem traseira" -#: netbox/dcim/filtersets.py:567 netbox/dcim/filtersets.py:688 -#: netbox/dcim/filtersets.py:1131 netbox/dcim/forms/filtersets.py:531 -#: netbox/dcim/forms/filtersets.py:627 netbox/dcim/forms/filtersets.py:848 +#: dcim/filtersets.py:567 dcim/filtersets.py:688 dcim/filtersets.py:1131 +#: dcim/forms/filtersets.py:531 dcim/forms/filtersets.py:627 +#: dcim/forms/filtersets.py:848 msgid "Has console ports" msgstr "Possui portas de console" -#: netbox/dcim/filtersets.py:571 netbox/dcim/filtersets.py:692 -#: netbox/dcim/filtersets.py:1135 netbox/dcim/forms/filtersets.py:538 -#: netbox/dcim/forms/filtersets.py:634 netbox/dcim/forms/filtersets.py:855 +#: dcim/filtersets.py:571 dcim/filtersets.py:692 dcim/filtersets.py:1135 +#: dcim/forms/filtersets.py:538 dcim/forms/filtersets.py:634 +#: dcim/forms/filtersets.py:855 msgid "Has console server ports" msgstr "Possui portas de servidor de console" -#: netbox/dcim/filtersets.py:575 netbox/dcim/filtersets.py:696 -#: netbox/dcim/filtersets.py:1139 netbox/dcim/forms/filtersets.py:545 -#: netbox/dcim/forms/filtersets.py:641 netbox/dcim/forms/filtersets.py:862 +#: dcim/filtersets.py:575 dcim/filtersets.py:696 dcim/filtersets.py:1139 +#: dcim/forms/filtersets.py:545 dcim/forms/filtersets.py:641 +#: dcim/forms/filtersets.py:862 msgid "Has power ports" msgstr "Possui portas de alimentação" -#: netbox/dcim/filtersets.py:579 netbox/dcim/filtersets.py:700 -#: netbox/dcim/filtersets.py:1143 netbox/dcim/forms/filtersets.py:552 -#: netbox/dcim/forms/filtersets.py:648 netbox/dcim/forms/filtersets.py:869 +#: dcim/filtersets.py:579 dcim/filtersets.py:700 dcim/filtersets.py:1143 +#: dcim/forms/filtersets.py:552 dcim/forms/filtersets.py:648 +#: dcim/forms/filtersets.py:869 msgid "Has power outlets" msgstr "Possui tomadas elétricas" -#: netbox/dcim/filtersets.py:583 netbox/dcim/filtersets.py:704 -#: netbox/dcim/filtersets.py:1147 netbox/dcim/forms/filtersets.py:559 -#: netbox/dcim/forms/filtersets.py:655 netbox/dcim/forms/filtersets.py:876 +#: dcim/filtersets.py:583 dcim/filtersets.py:704 dcim/filtersets.py:1147 +#: dcim/forms/filtersets.py:559 dcim/forms/filtersets.py:655 +#: dcim/forms/filtersets.py:876 msgid "Has interfaces" msgstr "Possui interfaces" -#: netbox/dcim/filtersets.py:587 netbox/dcim/filtersets.py:708 -#: netbox/dcim/filtersets.py:1151 netbox/dcim/forms/filtersets.py:566 -#: netbox/dcim/forms/filtersets.py:662 netbox/dcim/forms/filtersets.py:883 +#: dcim/filtersets.py:587 dcim/filtersets.py:708 dcim/filtersets.py:1151 +#: dcim/forms/filtersets.py:566 dcim/forms/filtersets.py:662 +#: dcim/forms/filtersets.py:883 msgid "Has pass-through ports" msgstr "Possui portas passthrough" -#: netbox/dcim/filtersets.py:591 netbox/dcim/filtersets.py:1155 -#: netbox/dcim/forms/filtersets.py:580 +#: dcim/filtersets.py:591 dcim/filtersets.py:1155 dcim/forms/filtersets.py:580 msgid "Has module bays" msgstr "Possui compartimentos de módulos" -#: netbox/dcim/filtersets.py:595 netbox/dcim/filtersets.py:1159 -#: netbox/dcim/forms/filtersets.py:573 +#: dcim/filtersets.py:595 dcim/filtersets.py:1159 dcim/forms/filtersets.py:573 msgid "Has device bays" msgstr "Possui compartimentos de dispositivos" -#: netbox/dcim/filtersets.py:599 netbox/dcim/forms/filtersets.py:587 +#: dcim/filtersets.py:599 dcim/forms/filtersets.py:587 msgid "Has inventory items" msgstr "Possui itens de inventário" -#: netbox/dcim/filtersets.py:756 netbox/dcim/filtersets.py:989 -#: netbox/dcim/filtersets.py:1436 +#: dcim/filtersets.py:756 dcim/filtersets.py:989 dcim/filtersets.py:1436 msgid "Device type (ID)" msgstr "Tipo de dispositivo (ID)" -#: netbox/dcim/filtersets.py:772 netbox/dcim/filtersets.py:1317 +#: dcim/filtersets.py:772 dcim/filtersets.py:1317 msgid "Module type (ID)" msgstr "Tipo de módulo (ID)" -#: netbox/dcim/filtersets.py:804 netbox/dcim/filtersets.py:1591 +#: dcim/filtersets.py:804 dcim/filtersets.py:1591 msgid "Power port (ID)" msgstr "Porta de alimentação (ID)" -#: netbox/dcim/filtersets.py:878 netbox/dcim/filtersets.py:1836 +#: dcim/filtersets.py:878 dcim/filtersets.py:1836 msgid "Parent inventory item (ID)" msgstr "Item principal do inventário (ID)" -#: netbox/dcim/filtersets.py:921 netbox/dcim/filtersets.py:947 -#: netbox/dcim/filtersets.py:1127 netbox/virtualization/filtersets.py:238 +#: dcim/filtersets.py:921 dcim/filtersets.py:947 dcim/filtersets.py:1127 +#: virtualization/filtersets.py:238 msgid "Config template (ID)" msgstr "Modelo de configuração (ID)" -#: netbox/dcim/filtersets.py:985 +#: dcim/filtersets.py:985 msgid "Device type (slug)" msgstr "Tipo de dispositivo (slug)" -#: netbox/dcim/filtersets.py:1005 +#: dcim/filtersets.py:1005 msgid "Parent Device (ID)" msgstr "Dispositivo Pai (ID)" -#: netbox/dcim/filtersets.py:1009 netbox/virtualization/filtersets.py:220 +#: dcim/filtersets.py:1009 virtualization/filtersets.py:220 msgid "Platform (ID)" msgstr "Plataforma (ID)" -#: netbox/dcim/filtersets.py:1015 netbox/extras/filtersets.py:569 -#: netbox/virtualization/filtersets.py:226 +#: dcim/filtersets.py:1015 extras/filtersets.py:569 +#: virtualization/filtersets.py:226 msgid "Platform (slug)" msgstr "Plataforma (slug)" -#: netbox/dcim/filtersets.py:1051 netbox/dcim/filtersets.py:1399 -#: netbox/dcim/filtersets.py:1934 netbox/dcim/filtersets.py:2176 -#: netbox/dcim/filtersets.py:2235 +#: dcim/filtersets.py:1051 dcim/filtersets.py:1399 dcim/filtersets.py:1934 +#: dcim/filtersets.py:2176 dcim/filtersets.py:2235 msgid "Site name (slug)" msgstr "Nome do site (slug)" -#: netbox/dcim/filtersets.py:1067 +#: dcim/filtersets.py:1067 msgid "Parent bay (ID)" msgstr "Compartimento Pai (ID)" -#: netbox/dcim/filtersets.py:1071 +#: dcim/filtersets.py:1071 msgid "VM cluster (ID)" msgstr "Cluster de VMs (ID)" -#: netbox/dcim/filtersets.py:1077 netbox/extras/filtersets.py:591 -#: netbox/virtualization/filtersets.py:136 +#: dcim/filtersets.py:1077 extras/filtersets.py:591 +#: virtualization/filtersets.py:136 msgid "Cluster group (slug)" msgstr "Grupo de clusters (slug)" -#: netbox/dcim/filtersets.py:1082 netbox/virtualization/filtersets.py:130 +#: dcim/filtersets.py:1082 virtualization/filtersets.py:130 msgid "Cluster group (ID)" msgstr "Grupo de clusters (ID)" -#: netbox/dcim/filtersets.py:1088 +#: dcim/filtersets.py:1088 msgid "Device model (slug)" msgstr "Modelo do dispositivo (slug)" -#: netbox/dcim/filtersets.py:1099 netbox/dcim/forms/bulk_edit.py:516 +#: dcim/filtersets.py:1099 dcim/forms/bulk_edit.py:516 msgid "Is full depth" msgstr "É full-depth" -#: netbox/dcim/filtersets.py:1103 netbox/dcim/forms/common.py:18 -#: netbox/dcim/forms/filtersets.py:818 netbox/dcim/forms/filtersets.py:1385 -#: netbox/dcim/models/device_components.py:518 -#: netbox/virtualization/filtersets.py:230 -#: netbox/virtualization/filtersets.py:301 -#: netbox/virtualization/forms/filtersets.py:172 -#: netbox/virtualization/forms/filtersets.py:223 +#: dcim/filtersets.py:1103 dcim/forms/common.py:18 +#: dcim/forms/filtersets.py:818 dcim/forms/filtersets.py:1385 +#: dcim/models/device_components.py:518 virtualization/filtersets.py:230 +#: virtualization/filtersets.py:301 virtualization/forms/filtersets.py:172 +#: virtualization/forms/filtersets.py:223 msgid "MAC address" msgstr "Endereço MAC" -#: netbox/dcim/filtersets.py:1110 netbox/dcim/filtersets.py:1274 -#: netbox/dcim/forms/filtersets.py:827 netbox/dcim/forms/filtersets.py:930 -#: netbox/virtualization/filtersets.py:234 -#: netbox/virtualization/forms/filtersets.py:176 +#: dcim/filtersets.py:1110 dcim/filtersets.py:1274 +#: dcim/forms/filtersets.py:827 dcim/forms/filtersets.py:930 +#: virtualization/filtersets.py:234 virtualization/forms/filtersets.py:176 msgid "Has a primary IP" msgstr "Possui IP primário" -#: netbox/dcim/filtersets.py:1114 +#: dcim/filtersets.py:1114 msgid "Has an out-of-band IP" msgstr "Possui IP fora de banda" -#: netbox/dcim/filtersets.py:1119 +#: dcim/filtersets.py:1119 msgid "Virtual chassis (ID)" msgstr "Chassi virtual (ID)" -#: netbox/dcim/filtersets.py:1123 +#: dcim/filtersets.py:1123 msgid "Is a virtual chassis member" msgstr "É membro do chassi virtual" -#: netbox/dcim/filtersets.py:1164 +#: dcim/filtersets.py:1164 msgid "OOB IP (ID)" msgstr "IP Fora de Banda (ID)" -#: netbox/dcim/filtersets.py:1168 +#: dcim/filtersets.py:1168 msgid "Has virtual device context" msgstr "Possui contexto de dispositivo virtual" -#: netbox/dcim/filtersets.py:1257 +#: dcim/filtersets.py:1257 msgid "VDC (ID)" msgstr "Contexto de Dispositivo Virtual (ID)" -#: netbox/dcim/filtersets.py:1262 +#: dcim/filtersets.py:1262 msgid "Device model" msgstr "Modelo de dispositivo" -#: netbox/dcim/filtersets.py:1267 netbox/ipam/filtersets.py:632 -#: netbox/vpn/filtersets.py:102 netbox/vpn/filtersets.py:401 +#: dcim/filtersets.py:1267 ipam/filtersets.py:632 vpn/filtersets.py:102 +#: vpn/filtersets.py:401 msgid "Interface (ID)" msgstr "Interface (ID)" -#: netbox/dcim/filtersets.py:1323 +#: dcim/filtersets.py:1323 msgid "Module type (model)" msgstr "Tipo de módulo (modelo)" -#: netbox/dcim/filtersets.py:1329 +#: dcim/filtersets.py:1329 msgid "Module bay (ID)" msgstr "Compartimento de módulo (ID)" -#: netbox/dcim/filtersets.py:1333 netbox/dcim/filtersets.py:1425 -#: netbox/ipam/filtersets.py:611 netbox/ipam/filtersets.py:851 -#: netbox/ipam/filtersets.py:1115 netbox/virtualization/filtersets.py:161 -#: netbox/vpn/filtersets.py:379 +#: dcim/filtersets.py:1333 dcim/filtersets.py:1425 ipam/filtersets.py:611 +#: ipam/filtersets.py:851 ipam/filtersets.py:1115 +#: virtualization/filtersets.py:161 vpn/filtersets.py:379 msgid "Device (ID)" msgstr "Dispositivo (ID)" -#: netbox/dcim/filtersets.py:1421 +#: dcim/filtersets.py:1421 msgid "Rack (name)" msgstr "Rack (nome)" -#: netbox/dcim/filtersets.py:1431 netbox/ipam/filtersets.py:606 -#: netbox/ipam/filtersets.py:846 netbox/ipam/filtersets.py:1121 -#: netbox/vpn/filtersets.py:374 +#: dcim/filtersets.py:1431 ipam/filtersets.py:606 ipam/filtersets.py:846 +#: ipam/filtersets.py:1121 vpn/filtersets.py:374 msgid "Device (name)" msgstr "Dispositivo (nome)" -#: netbox/dcim/filtersets.py:1442 +#: dcim/filtersets.py:1442 msgid "Device type (model)" msgstr "Tipo de dispositivo (modelo)" -#: netbox/dcim/filtersets.py:1447 +#: dcim/filtersets.py:1447 msgid "Device role (ID)" msgstr "Função do dispositivo (ID)" -#: netbox/dcim/filtersets.py:1453 +#: dcim/filtersets.py:1453 msgid "Device role (slug)" msgstr "Função do dispositivo (slug)" -#: netbox/dcim/filtersets.py:1458 +#: dcim/filtersets.py:1458 msgid "Virtual Chassis (ID)" msgstr "Chassi Virtual (ID)" -#: netbox/dcim/filtersets.py:1464 netbox/dcim/forms/filtersets.py:109 -#: netbox/dcim/tables/devices.py:206 netbox/netbox/navigation/menu.py:79 -#: netbox/templates/dcim/device.html:120 -#: netbox/templates/dcim/device_edit.html:93 -#: netbox/templates/dcim/virtualchassis.html:20 -#: netbox/templates/dcim/virtualchassis_add.html:8 -#: netbox/templates/dcim/virtualchassis_edit.html:24 +#: dcim/filtersets.py:1464 dcim/forms/filtersets.py:109 +#: dcim/tables/devices.py:206 netbox/navigation/menu.py:79 +#: templates/dcim/device.html:120 templates/dcim/device_edit.html:93 +#: templates/dcim/virtualchassis.html:20 +#: templates/dcim/virtualchassis_add.html:8 +#: templates/dcim/virtualchassis_edit.html:24 msgid "Virtual Chassis" msgstr "Chassi Virtual" -#: netbox/dcim/filtersets.py:1488 +#: dcim/filtersets.py:1488 msgid "Module (ID)" msgstr "Módulo (ID)" -#: netbox/dcim/filtersets.py:1495 +#: dcim/filtersets.py:1495 msgid "Cable (ID)" msgstr "Cabo (ID)" -#: netbox/dcim/filtersets.py:1604 netbox/ipam/forms/bulk_import.py:189 -#: netbox/vpn/forms/bulk_import.py:308 +#: dcim/filtersets.py:1604 ipam/forms/bulk_import.py:189 +#: vpn/forms/bulk_import.py:308 msgid "Assigned VLAN" msgstr "VLAN Designada" -#: netbox/dcim/filtersets.py:1608 +#: dcim/filtersets.py:1608 msgid "Assigned VID" msgstr "VLAN ID Designada " -#: netbox/dcim/filtersets.py:1613 netbox/dcim/forms/bulk_edit.py:1489 -#: netbox/dcim/forms/bulk_import.py:891 netbox/dcim/forms/filtersets.py:1428 -#: netbox/dcim/forms/model_forms.py:1378 -#: netbox/dcim/models/device_components.py:711 -#: netbox/dcim/tables/devices.py:626 netbox/ipam/filtersets.py:316 -#: netbox/ipam/filtersets.py:327 netbox/ipam/filtersets.py:483 -#: netbox/ipam/filtersets.py:584 netbox/ipam/filtersets.py:595 -#: netbox/ipam/forms/bulk_edit.py:241 netbox/ipam/forms/bulk_edit.py:297 -#: netbox/ipam/forms/bulk_edit.py:339 netbox/ipam/forms/bulk_import.py:157 -#: netbox/ipam/forms/bulk_import.py:243 netbox/ipam/forms/bulk_import.py:279 -#: netbox/ipam/forms/filtersets.py:67 netbox/ipam/forms/filtersets.py:172 -#: netbox/ipam/forms/filtersets.py:309 netbox/ipam/forms/model_forms.py:62 -#: netbox/ipam/forms/model_forms.py:202 netbox/ipam/forms/model_forms.py:247 -#: netbox/ipam/forms/model_forms.py:300 netbox/ipam/forms/model_forms.py:431 -#: netbox/ipam/forms/model_forms.py:445 netbox/ipam/forms/model_forms.py:459 -#: netbox/ipam/models/ip.py:233 netbox/ipam/models/ip.py:512 -#: netbox/ipam/models/ip.py:720 netbox/ipam/models/vrfs.py:62 -#: netbox/ipam/tables/ip.py:242 netbox/ipam/tables/ip.py:309 -#: netbox/ipam/tables/ip.py:360 netbox/ipam/tables/ip.py:450 -#: netbox/templates/dcim/interface.html:133 -#: netbox/templates/ipam/ipaddress.html:18 -#: netbox/templates/ipam/iprange.html:40 netbox/templates/ipam/prefix.html:19 -#: netbox/templates/ipam/vrf.html:7 netbox/templates/ipam/vrf.html:13 -#: netbox/templates/virtualization/vminterface.html:47 -#: netbox/virtualization/forms/bulk_edit.py:261 -#: netbox/virtualization/forms/bulk_import.py:171 -#: netbox/virtualization/forms/filtersets.py:228 -#: netbox/virtualization/forms/model_forms.py:344 -#: netbox/virtualization/models/virtualmachines.py:355 -#: netbox/virtualization/tables/virtualmachines.py:143 +#: dcim/filtersets.py:1613 dcim/forms/bulk_edit.py:1489 +#: dcim/forms/bulk_import.py:891 dcim/forms/filtersets.py:1428 +#: dcim/forms/model_forms.py:1378 dcim/models/device_components.py:711 +#: dcim/tables/devices.py:626 ipam/filtersets.py:316 ipam/filtersets.py:327 +#: ipam/filtersets.py:483 ipam/filtersets.py:584 ipam/filtersets.py:595 +#: ipam/forms/bulk_edit.py:242 ipam/forms/bulk_edit.py:298 +#: ipam/forms/bulk_edit.py:340 ipam/forms/bulk_import.py:157 +#: ipam/forms/bulk_import.py:243 ipam/forms/bulk_import.py:279 +#: ipam/forms/filtersets.py:67 ipam/forms/filtersets.py:172 +#: ipam/forms/filtersets.py:309 ipam/forms/model_forms.py:62 +#: ipam/forms/model_forms.py:202 ipam/forms/model_forms.py:247 +#: ipam/forms/model_forms.py:300 ipam/forms/model_forms.py:431 +#: ipam/forms/model_forms.py:445 ipam/forms/model_forms.py:459 +#: ipam/models/ip.py:233 ipam/models/ip.py:512 ipam/models/ip.py:720 +#: ipam/models/vrfs.py:62 ipam/tables/ip.py:242 ipam/tables/ip.py:309 +#: ipam/tables/ip.py:360 ipam/tables/ip.py:450 +#: templates/dcim/interface.html:133 templates/ipam/ipaddress.html:18 +#: templates/ipam/iprange.html:40 templates/ipam/prefix.html:19 +#: templates/ipam/vrf.html:7 templates/ipam/vrf.html:13 +#: templates/virtualization/vminterface.html:47 +#: virtualization/forms/bulk_edit.py:261 +#: virtualization/forms/bulk_import.py:171 +#: virtualization/forms/filtersets.py:228 +#: virtualization/forms/model_forms.py:344 +#: virtualization/models/virtualmachines.py:355 +#: virtualization/tables/virtualmachines.py:143 msgid "VRF" msgstr "VRF" -#: netbox/dcim/filtersets.py:1619 netbox/ipam/filtersets.py:322 -#: netbox/ipam/filtersets.py:333 netbox/ipam/filtersets.py:489 -#: netbox/ipam/filtersets.py:590 netbox/ipam/filtersets.py:601 +#: dcim/filtersets.py:1619 ipam/filtersets.py:322 ipam/filtersets.py:333 +#: ipam/filtersets.py:489 ipam/filtersets.py:590 ipam/filtersets.py:601 msgid "VRF (RD)" msgstr "VRF (RD)" -#: netbox/dcim/filtersets.py:1624 netbox/ipam/filtersets.py:1030 -#: netbox/vpn/filtersets.py:342 +#: dcim/filtersets.py:1624 ipam/filtersets.py:1030 vpn/filtersets.py:342 msgid "L2VPN (ID)" msgstr "L2VPN (ID)" -#: netbox/dcim/filtersets.py:1630 netbox/dcim/forms/filtersets.py:1433 -#: netbox/dcim/tables/devices.py:570 netbox/ipam/filtersets.py:1036 -#: netbox/ipam/forms/filtersets.py:518 netbox/ipam/tables/vlans.py:137 -#: netbox/templates/dcim/interface.html:93 netbox/templates/ipam/vlan.html:66 -#: netbox/templates/vpn/l2vpntermination.html:12 -#: netbox/virtualization/forms/filtersets.py:233 -#: netbox/vpn/forms/bulk_import.py:280 netbox/vpn/forms/filtersets.py:246 -#: netbox/vpn/forms/model_forms.py:409 netbox/vpn/forms/model_forms.py:427 -#: netbox/vpn/models/l2vpn.py:63 netbox/vpn/tables/l2vpn.py:55 +#: dcim/filtersets.py:1630 dcim/forms/filtersets.py:1433 +#: dcim/tables/devices.py:570 ipam/filtersets.py:1036 +#: ipam/forms/filtersets.py:518 ipam/tables/vlans.py:137 +#: templates/dcim/interface.html:93 templates/ipam/vlan.html:66 +#: templates/vpn/l2vpntermination.html:12 +#: virtualization/forms/filtersets.py:233 vpn/forms/bulk_import.py:280 +#: vpn/forms/filtersets.py:246 vpn/forms/model_forms.py:409 +#: vpn/forms/model_forms.py:427 vpn/models/l2vpn.py:63 vpn/tables/l2vpn.py:55 msgid "L2VPN" msgstr "L2VPN" -#: netbox/dcim/filtersets.py:1662 +#: dcim/filtersets.py:1662 msgid "Virtual Chassis Interfaces for Device" msgstr "Interfaces de Chassi Virtual para Dispositivo" -#: netbox/dcim/filtersets.py:1667 +#: dcim/filtersets.py:1667 msgid "Virtual Chassis Interfaces for Device (ID)" msgstr "Interfaces de Chassi Virtual para Dispositivo (ID)" -#: netbox/dcim/filtersets.py:1671 +#: dcim/filtersets.py:1671 msgid "Kind of interface" msgstr "Tipo de interface" -#: netbox/dcim/filtersets.py:1676 netbox/virtualization/filtersets.py:293 +#: dcim/filtersets.py:1676 virtualization/filtersets.py:293 msgid "Parent interface (ID)" msgstr "Interface pai (ID)" -#: netbox/dcim/filtersets.py:1681 netbox/virtualization/filtersets.py:298 +#: dcim/filtersets.py:1681 virtualization/filtersets.py:298 msgid "Bridged interface (ID)" msgstr "Interface bridged (ID)" -#: netbox/dcim/filtersets.py:1686 +#: dcim/filtersets.py:1686 msgid "LAG interface (ID)" msgstr "Interface LAG (ID)" -#: netbox/dcim/filtersets.py:1713 netbox/dcim/filtersets.py:1725 -#: netbox/dcim/forms/filtersets.py:1345 netbox/dcim/forms/model_forms.py:1690 -#: netbox/templates/dcim/virtualdevicecontext.html:15 +#: dcim/filtersets.py:1713 dcim/filtersets.py:1725 +#: dcim/forms/filtersets.py:1345 dcim/forms/model_forms.py:1690 +#: templates/dcim/virtualdevicecontext.html:15 msgid "Virtual Device Context" msgstr "Contexto de Dispositivo Virtual" -#: netbox/dcim/filtersets.py:1719 +#: dcim/filtersets.py:1719 msgid "Virtual Device Context (Identifier)" msgstr "Contexto de Dispositivo Virtual (ID)" -#: netbox/dcim/filtersets.py:1730 -#: netbox/templates/wireless/wirelesslan.html:11 -#: netbox/wireless/forms/model_forms.py:53 +#: dcim/filtersets.py:1730 templates/wireless/wirelesslan.html:11 +#: wireless/forms/model_forms.py:53 msgid "Wireless LAN" msgstr "Rede Wireless" -#: netbox/dcim/filtersets.py:1734 netbox/dcim/tables/devices.py:613 +#: dcim/filtersets.py:1734 dcim/tables/devices.py:613 msgid "Wireless link" msgstr "Link Wireless" -#: netbox/dcim/filtersets.py:1803 +#: dcim/filtersets.py:1803 msgid "Parent module bay (ID)" msgstr "Compartimento de módulo pai (ID)" -#: netbox/dcim/filtersets.py:1808 +#: dcim/filtersets.py:1808 msgid "Installed module (ID)" msgstr "Módulo instalado (ID)" -#: netbox/dcim/filtersets.py:1819 +#: dcim/filtersets.py:1819 msgid "Installed device (ID)" msgstr "Dispositivo instalado (ID)" -#: netbox/dcim/filtersets.py:1825 +#: dcim/filtersets.py:1825 msgid "Installed device (name)" msgstr "Dispositivo instalado (nome)" -#: netbox/dcim/filtersets.py:1891 +#: dcim/filtersets.py:1891 msgid "Master (ID)" msgstr "Mestre (ID)" -#: netbox/dcim/filtersets.py:1897 +#: dcim/filtersets.py:1897 msgid "Master (name)" msgstr "Mestre (nome)" -#: netbox/dcim/filtersets.py:1939 netbox/tenancy/filtersets.py:245 +#: dcim/filtersets.py:1939 tenancy/filtersets.py:245 msgid "Tenant (ID)" msgstr "Inquilino (ID)" -#: netbox/dcim/filtersets.py:1945 netbox/extras/filtersets.py:618 -#: netbox/tenancy/filtersets.py:251 +#: dcim/filtersets.py:1945 extras/filtersets.py:618 tenancy/filtersets.py:251 msgid "Tenant (slug)" msgstr "Inquilino (slug)" -#: netbox/dcim/filtersets.py:1981 netbox/dcim/forms/filtersets.py:1077 +#: dcim/filtersets.py:1981 dcim/forms/filtersets.py:1077 msgid "Unterminated" msgstr "Não terminado" -#: netbox/dcim/filtersets.py:2239 +#: dcim/filtersets.py:2239 msgid "Power panel (ID)" msgstr "Quadro de alimentação (ID)" -#: netbox/dcim/forms/bulk_create.py:40 netbox/extras/forms/filtersets.py:401 -#: netbox/extras/forms/model_forms.py:567 -#: netbox/extras/forms/model_forms.py:619 netbox/netbox/forms/base.py:86 -#: netbox/netbox/forms/mixins.py:81 netbox/netbox/tables/columns.py:478 -#: netbox/templates/circuits/inc/circuit_termination.html:32 -#: netbox/templates/generic/bulk_edit.html:65 -#: netbox/templates/inc/panels/tags.html:5 -#: netbox/utilities/forms/fields/fields.py:81 +#: dcim/forms/bulk_create.py:40 extras/forms/filtersets.py:401 +#: extras/forms/model_forms.py:567 extras/forms/model_forms.py:619 +#: netbox/forms/base.py:86 netbox/forms/mixins.py:81 +#: netbox/tables/columns.py:478 +#: templates/circuits/inc/circuit_termination.html:32 +#: templates/generic/bulk_edit.html:65 templates/inc/panels/tags.html:5 +#: utilities/forms/fields/fields.py:81 msgid "Tags" msgstr "Etiquetas" -#: netbox/dcim/forms/bulk_create.py:112 netbox/dcim/forms/filtersets.py:1498 -#: netbox/dcim/forms/model_forms.py:488 netbox/dcim/forms/model_forms.py:546 -#: netbox/dcim/forms/object_create.py:197 -#: netbox/dcim/forms/object_create.py:353 netbox/dcim/tables/devices.py:165 -#: netbox/dcim/tables/devices.py:707 netbox/dcim/tables/devicetypes.py:246 -#: netbox/templates/dcim/device.html:43 netbox/templates/dcim/device.html:131 -#: netbox/templates/dcim/modulebay.html:38 -#: netbox/templates/dcim/virtualchassis.html:66 -#: netbox/templates/dcim/virtualchassis_edit.html:55 +#: dcim/forms/bulk_create.py:112 dcim/forms/filtersets.py:1498 +#: dcim/forms/model_forms.py:488 dcim/forms/model_forms.py:546 +#: dcim/forms/object_create.py:197 dcim/forms/object_create.py:353 +#: dcim/tables/devices.py:165 dcim/tables/devices.py:707 +#: dcim/tables/devicetypes.py:246 templates/dcim/device.html:43 +#: templates/dcim/device.html:131 templates/dcim/modulebay.html:38 +#: templates/dcim/virtualchassis.html:66 +#: templates/dcim/virtualchassis_edit.html:55 msgid "Position" msgstr "Posição" -#: netbox/dcim/forms/bulk_create.py:114 +#: dcim/forms/bulk_create.py:114 msgid "" "Alphanumeric ranges are supported. (Must match the number of names being " "created.)" @@ -3455,887 +3124,825 @@ msgstr "" "Intervalos alfanuméricos são suportados. (Devem corresponder ao número de " "nomes que estão sendo criados.)" -#: netbox/dcim/forms/bulk_edit.py:132 +#: dcim/forms/bulk_edit.py:132 msgid "Contact name" msgstr "Contato" -#: netbox/dcim/forms/bulk_edit.py:137 +#: dcim/forms/bulk_edit.py:137 msgid "Contact phone" msgstr "Telefone de Contato" -#: netbox/dcim/forms/bulk_edit.py:143 +#: dcim/forms/bulk_edit.py:143 msgid "Contact E-mail" msgstr "E-mail de Contato" -#: netbox/dcim/forms/bulk_edit.py:146 netbox/dcim/forms/bulk_import.py:123 -#: netbox/dcim/forms/model_forms.py:128 +#: dcim/forms/bulk_edit.py:146 dcim/forms/bulk_import.py:123 +#: dcim/forms/model_forms.py:128 msgid "Time zone" msgstr "Fuso horário" -#: netbox/dcim/forms/bulk_edit.py:224 netbox/dcim/forms/bulk_edit.py:495 -#: netbox/dcim/forms/bulk_edit.py:559 netbox/dcim/forms/bulk_edit.py:632 -#: netbox/dcim/forms/bulk_edit.py:656 netbox/dcim/forms/bulk_edit.py:740 -#: netbox/dcim/forms/bulk_edit.py:1267 netbox/dcim/forms/bulk_edit.py:1660 -#: netbox/dcim/forms/bulk_import.py:182 netbox/dcim/forms/bulk_import.py:371 -#: netbox/dcim/forms/bulk_import.py:405 netbox/dcim/forms/bulk_import.py:450 -#: netbox/dcim/forms/bulk_import.py:486 netbox/dcim/forms/bulk_import.py:1082 -#: netbox/dcim/forms/filtersets.py:313 netbox/dcim/forms/filtersets.py:372 -#: netbox/dcim/forms/filtersets.py:494 netbox/dcim/forms/filtersets.py:619 -#: netbox/dcim/forms/filtersets.py:700 netbox/dcim/forms/filtersets.py:782 -#: netbox/dcim/forms/filtersets.py:947 netbox/dcim/forms/filtersets.py:1539 -#: netbox/dcim/forms/model_forms.py:207 netbox/dcim/forms/model_forms.py:337 -#: netbox/dcim/forms/model_forms.py:349 netbox/dcim/forms/model_forms.py:395 -#: netbox/dcim/forms/model_forms.py:436 netbox/dcim/forms/model_forms.py:1075 -#: netbox/dcim/forms/model_forms.py:1515 -#: netbox/dcim/forms/object_import.py:187 netbox/dcim/tables/devices.py:96 -#: netbox/dcim/tables/devices.py:172 netbox/dcim/tables/devices.py:940 -#: netbox/dcim/tables/devicetypes.py:80 netbox/dcim/tables/devicetypes.py:308 -#: netbox/dcim/tables/modules.py:20 netbox/dcim/tables/modules.py:60 -#: netbox/dcim/tables/racks.py:58 netbox/dcim/tables/racks.py:132 -#: netbox/templates/dcim/devicetype.html:14 -#: netbox/templates/dcim/inventoryitem.html:44 -#: netbox/templates/dcim/manufacturer.html:33 -#: netbox/templates/dcim/modulebay.html:62 -#: netbox/templates/dcim/moduletype.html:14 -#: netbox/templates/dcim/platform.html:37 -#: netbox/templates/dcim/racktype.html:16 +#: dcim/forms/bulk_edit.py:224 dcim/forms/bulk_edit.py:495 +#: dcim/forms/bulk_edit.py:559 dcim/forms/bulk_edit.py:632 +#: dcim/forms/bulk_edit.py:656 dcim/forms/bulk_edit.py:740 +#: dcim/forms/bulk_edit.py:1267 dcim/forms/bulk_edit.py:1660 +#: dcim/forms/bulk_import.py:182 dcim/forms/bulk_import.py:371 +#: dcim/forms/bulk_import.py:405 dcim/forms/bulk_import.py:450 +#: dcim/forms/bulk_import.py:486 dcim/forms/bulk_import.py:1082 +#: dcim/forms/filtersets.py:313 dcim/forms/filtersets.py:372 +#: dcim/forms/filtersets.py:494 dcim/forms/filtersets.py:619 +#: dcim/forms/filtersets.py:700 dcim/forms/filtersets.py:782 +#: dcim/forms/filtersets.py:947 dcim/forms/filtersets.py:1539 +#: dcim/forms/model_forms.py:207 dcim/forms/model_forms.py:337 +#: dcim/forms/model_forms.py:349 dcim/forms/model_forms.py:395 +#: dcim/forms/model_forms.py:436 dcim/forms/model_forms.py:1075 +#: dcim/forms/model_forms.py:1515 dcim/forms/object_import.py:187 +#: dcim/tables/devices.py:96 dcim/tables/devices.py:172 +#: dcim/tables/devices.py:940 dcim/tables/devicetypes.py:80 +#: dcim/tables/devicetypes.py:308 dcim/tables/modules.py:20 +#: dcim/tables/modules.py:60 dcim/tables/racks.py:58 dcim/tables/racks.py:132 +#: templates/dcim/devicetype.html:14 templates/dcim/inventoryitem.html:44 +#: templates/dcim/manufacturer.html:33 templates/dcim/modulebay.html:62 +#: templates/dcim/moduletype.html:25 templates/dcim/platform.html:37 +#: templates/dcim/racktype.html:16 msgid "Manufacturer" msgstr "Fabricante" -#: netbox/dcim/forms/bulk_edit.py:229 netbox/dcim/forms/bulk_edit.py:372 -#: netbox/dcim/forms/bulk_import.py:191 netbox/dcim/forms/bulk_import.py:263 -#: netbox/dcim/forms/filtersets.py:255 -#: netbox/templates/dcim/inc/panels/racktype_dimensions.html:6 +#: dcim/forms/bulk_edit.py:229 dcim/forms/bulk_edit.py:372 +#: dcim/forms/bulk_import.py:191 dcim/forms/bulk_import.py:263 +#: dcim/forms/filtersets.py:255 +#: templates/dcim/inc/panels/racktype_dimensions.html:6 msgid "Form factor" msgstr "Formato físico" -#: netbox/dcim/forms/bulk_edit.py:234 netbox/dcim/forms/bulk_edit.py:377 -#: netbox/dcim/forms/bulk_import.py:199 netbox/dcim/forms/bulk_import.py:266 -#: netbox/dcim/forms/filtersets.py:260 -#: netbox/templates/dcim/inc/panels/racktype_dimensions.html:10 +#: dcim/forms/bulk_edit.py:234 dcim/forms/bulk_edit.py:377 +#: dcim/forms/bulk_import.py:199 dcim/forms/bulk_import.py:266 +#: dcim/forms/filtersets.py:260 +#: templates/dcim/inc/panels/racktype_dimensions.html:10 msgid "Width" msgstr "Largura" -#: netbox/dcim/forms/bulk_edit.py:240 netbox/dcim/forms/bulk_edit.py:383 -#: netbox/templates/dcim/devicetype.html:37 +#: dcim/forms/bulk_edit.py:240 dcim/forms/bulk_edit.py:383 +#: templates/dcim/devicetype.html:37 msgid "Height (U)" msgstr "Altura (U)" -#: netbox/dcim/forms/bulk_edit.py:249 netbox/dcim/forms/bulk_edit.py:388 -#: netbox/dcim/forms/filtersets.py:274 +#: dcim/forms/bulk_edit.py:249 dcim/forms/bulk_edit.py:388 +#: dcim/forms/filtersets.py:274 msgid "Descending units" msgstr "Unidades descendentes" -#: netbox/dcim/forms/bulk_edit.py:252 netbox/dcim/forms/bulk_edit.py:391 +#: dcim/forms/bulk_edit.py:252 dcim/forms/bulk_edit.py:391 msgid "Outer width" msgstr "Largura externa" -#: netbox/dcim/forms/bulk_edit.py:257 netbox/dcim/forms/bulk_edit.py:396 +#: dcim/forms/bulk_edit.py:257 dcim/forms/bulk_edit.py:396 msgid "Outer depth" msgstr "Profundidade externa" -#: netbox/dcim/forms/bulk_edit.py:262 netbox/dcim/forms/bulk_edit.py:401 -#: netbox/dcim/forms/bulk_import.py:204 netbox/dcim/forms/bulk_import.py:271 +#: dcim/forms/bulk_edit.py:262 dcim/forms/bulk_edit.py:401 +#: dcim/forms/bulk_import.py:204 dcim/forms/bulk_import.py:271 msgid "Outer unit" msgstr "Unidade externa" -#: netbox/dcim/forms/bulk_edit.py:267 netbox/dcim/forms/bulk_edit.py:406 +#: dcim/forms/bulk_edit.py:267 dcim/forms/bulk_edit.py:406 msgid "Mounting depth" msgstr "Profundidade de montagem" -#: netbox/dcim/forms/bulk_edit.py:272 netbox/dcim/forms/bulk_edit.py:299 -#: netbox/dcim/forms/bulk_edit.py:416 netbox/dcim/forms/bulk_edit.py:446 -#: netbox/dcim/forms/bulk_edit.py:529 netbox/dcim/forms/bulk_edit.py:552 -#: netbox/dcim/forms/bulk_edit.py:573 netbox/dcim/forms/bulk_edit.py:595 -#: netbox/dcim/forms/bulk_import.py:384 netbox/dcim/forms/bulk_import.py:416 -#: netbox/dcim/forms/filtersets.py:285 netbox/dcim/forms/filtersets.py:307 -#: netbox/dcim/forms/filtersets.py:327 netbox/dcim/forms/filtersets.py:401 -#: netbox/dcim/forms/filtersets.py:488 netbox/dcim/forms/filtersets.py:594 -#: netbox/dcim/forms/filtersets.py:613 netbox/dcim/forms/filtersets.py:674 -#: netbox/dcim/forms/model_forms.py:221 netbox/dcim/forms/model_forms.py:298 -#: netbox/dcim/tables/devicetypes.py:106 netbox/dcim/tables/modules.py:35 -#: netbox/dcim/tables/racks.py:74 netbox/dcim/tables/racks.py:172 -#: netbox/extras/forms/bulk_edit.py:53 netbox/extras/forms/bulk_edit.py:133 -#: netbox/extras/forms/bulk_edit.py:183 netbox/extras/forms/bulk_edit.py:288 -#: netbox/extras/forms/filtersets.py:64 netbox/extras/forms/filtersets.py:156 -#: netbox/extras/forms/filtersets.py:243 netbox/ipam/forms/bulk_edit.py:189 -#: netbox/templates/dcim/device.html:324 -#: netbox/templates/dcim/devicetype.html:49 -#: netbox/templates/dcim/moduletype.html:34 netbox/templates/dcim/rack.html:81 -#: netbox/templates/dcim/racktype.html:41 -#: netbox/templates/extras/configcontext.html:17 -#: netbox/templates/extras/customlink.html:25 -#: netbox/templates/extras/savedfilter.html:33 -#: netbox/templates/ipam/role.html:30 +#: dcim/forms/bulk_edit.py:272 dcim/forms/bulk_edit.py:299 +#: dcim/forms/bulk_edit.py:416 dcim/forms/bulk_edit.py:446 +#: dcim/forms/bulk_edit.py:529 dcim/forms/bulk_edit.py:552 +#: dcim/forms/bulk_edit.py:573 dcim/forms/bulk_edit.py:595 +#: dcim/forms/bulk_import.py:384 dcim/forms/bulk_import.py:416 +#: dcim/forms/filtersets.py:285 dcim/forms/filtersets.py:307 +#: dcim/forms/filtersets.py:327 dcim/forms/filtersets.py:401 +#: dcim/forms/filtersets.py:488 dcim/forms/filtersets.py:594 +#: dcim/forms/filtersets.py:613 dcim/forms/filtersets.py:674 +#: dcim/forms/model_forms.py:221 dcim/forms/model_forms.py:298 +#: dcim/tables/devicetypes.py:106 dcim/tables/modules.py:35 +#: dcim/tables/racks.py:74 dcim/tables/racks.py:172 +#: extras/forms/bulk_edit.py:53 extras/forms/bulk_edit.py:133 +#: extras/forms/bulk_edit.py:183 extras/forms/bulk_edit.py:288 +#: extras/forms/filtersets.py:64 extras/forms/filtersets.py:156 +#: extras/forms/filtersets.py:243 ipam/forms/bulk_edit.py:190 +#: templates/dcim/device.html:324 templates/dcim/devicetype.html:49 +#: templates/dcim/moduletype.html:45 templates/dcim/rack.html:81 +#: templates/dcim/racktype.html:41 templates/extras/configcontext.html:17 +#: templates/extras/customlink.html:25 templates/extras/savedfilter.html:33 +#: templates/ipam/role.html:30 msgid "Weight" msgstr "Peso" -#: netbox/dcim/forms/bulk_edit.py:277 netbox/dcim/forms/bulk_edit.py:421 -#: netbox/dcim/forms/filtersets.py:290 +#: dcim/forms/bulk_edit.py:277 dcim/forms/bulk_edit.py:421 +#: dcim/forms/filtersets.py:290 msgid "Max weight" msgstr "Peso máximo" -#: netbox/dcim/forms/bulk_edit.py:282 netbox/dcim/forms/bulk_edit.py:426 -#: netbox/dcim/forms/bulk_edit.py:534 netbox/dcim/forms/bulk_edit.py:578 -#: netbox/dcim/forms/bulk_import.py:210 netbox/dcim/forms/bulk_import.py:283 -#: netbox/dcim/forms/bulk_import.py:389 netbox/dcim/forms/bulk_import.py:421 -#: netbox/dcim/forms/filtersets.py:295 netbox/dcim/forms/filtersets.py:598 -#: netbox/dcim/forms/filtersets.py:678 +#: dcim/forms/bulk_edit.py:282 dcim/forms/bulk_edit.py:426 +#: dcim/forms/bulk_edit.py:534 dcim/forms/bulk_edit.py:578 +#: dcim/forms/bulk_import.py:210 dcim/forms/bulk_import.py:283 +#: dcim/forms/bulk_import.py:389 dcim/forms/bulk_import.py:421 +#: dcim/forms/filtersets.py:295 dcim/forms/filtersets.py:598 +#: dcim/forms/filtersets.py:678 msgid "Weight unit" msgstr "Unidade de peso" -#: netbox/dcim/forms/bulk_edit.py:296 netbox/dcim/forms/filtersets.py:305 -#: netbox/dcim/forms/model_forms.py:217 netbox/dcim/forms/model_forms.py:256 -#: netbox/templates/dcim/rack.html:45 netbox/templates/dcim/racktype.html:13 +#: dcim/forms/bulk_edit.py:296 dcim/forms/filtersets.py:305 +#: dcim/forms/model_forms.py:217 dcim/forms/model_forms.py:256 +#: templates/dcim/rack.html:45 templates/dcim/racktype.html:13 msgid "Rack Type" msgstr "Tipo de Rack" -#: netbox/dcim/forms/bulk_edit.py:298 netbox/dcim/forms/model_forms.py:220 -#: netbox/dcim/forms/model_forms.py:297 +#: dcim/forms/bulk_edit.py:298 dcim/forms/model_forms.py:220 +#: dcim/forms/model_forms.py:297 msgid "Outer Dimensions" msgstr "Dimensões externas" -#: netbox/dcim/forms/bulk_edit.py:301 netbox/dcim/forms/model_forms.py:222 -#: netbox/dcim/forms/model_forms.py:299 netbox/templates/dcim/device.html:315 -#: netbox/templates/dcim/inc/panels/racktype_dimensions.html:3 +#: dcim/forms/bulk_edit.py:301 dcim/forms/model_forms.py:222 +#: dcim/forms/model_forms.py:299 templates/dcim/device.html:315 +#: templates/dcim/inc/panels/racktype_dimensions.html:3 msgid "Dimensions" msgstr "Dimensões" -#: netbox/dcim/forms/bulk_edit.py:303 netbox/dcim/forms/filtersets.py:306 -#: netbox/dcim/forms/filtersets.py:326 netbox/dcim/forms/model_forms.py:224 -#: netbox/templates/dcim/inc/panels/racktype_numbering.html:3 +#: dcim/forms/bulk_edit.py:303 dcim/forms/filtersets.py:306 +#: dcim/forms/filtersets.py:326 dcim/forms/model_forms.py:224 +#: templates/dcim/inc/panels/racktype_numbering.html:3 msgid "Numbering" msgstr "Numeração" -#: netbox/dcim/forms/bulk_edit.py:357 netbox/dcim/forms/bulk_edit.py:1262 -#: netbox/dcim/forms/bulk_edit.py:1655 netbox/dcim/forms/bulk_import.py:253 -#: netbox/dcim/forms/bulk_import.py:1076 netbox/dcim/forms/filtersets.py:367 -#: netbox/dcim/forms/filtersets.py:777 netbox/dcim/forms/filtersets.py:1534 -#: netbox/dcim/forms/model_forms.py:251 netbox/dcim/forms/model_forms.py:1070 -#: netbox/dcim/forms/model_forms.py:1510 -#: netbox/dcim/forms/object_import.py:181 netbox/dcim/tables/devices.py:169 -#: netbox/dcim/tables/devices.py:809 netbox/dcim/tables/devices.py:937 -#: netbox/dcim/tables/devicetypes.py:304 netbox/dcim/tables/racks.py:129 -#: netbox/extras/filtersets.py:552 netbox/ipam/forms/bulk_edit.py:260 -#: netbox/ipam/forms/bulk_edit.py:310 netbox/ipam/forms/bulk_edit.py:358 -#: netbox/ipam/forms/bulk_edit.py:556 netbox/ipam/forms/bulk_import.py:197 -#: netbox/ipam/forms/bulk_import.py:262 netbox/ipam/forms/bulk_import.py:298 -#: netbox/ipam/forms/bulk_import.py:455 netbox/ipam/forms/filtersets.py:237 -#: netbox/ipam/forms/filtersets.py:289 netbox/ipam/forms/filtersets.py:360 -#: netbox/ipam/forms/filtersets.py:509 netbox/ipam/forms/model_forms.py:188 -#: netbox/ipam/forms/model_forms.py:221 netbox/ipam/forms/model_forms.py:250 -#: netbox/ipam/forms/model_forms.py:643 netbox/ipam/tables/ip.py:258 -#: netbox/ipam/tables/ip.py:316 netbox/ipam/tables/ip.py:367 -#: netbox/ipam/tables/vlans.py:130 netbox/ipam/tables/vlans.py:235 -#: netbox/templates/dcim/device.html:182 -#: netbox/templates/dcim/inc/panels/inventory_items.html:20 -#: netbox/templates/dcim/interface.html:223 -#: netbox/templates/dcim/inventoryitem.html:36 -#: netbox/templates/dcim/rack.html:49 netbox/templates/ipam/ipaddress.html:41 -#: netbox/templates/ipam/iprange.html:50 netbox/templates/ipam/prefix.html:77 -#: netbox/templates/ipam/role.html:19 netbox/templates/ipam/vlan.html:52 -#: netbox/templates/virtualization/virtualmachine.html:23 -#: netbox/templates/vpn/tunneltermination.html:17 -#: netbox/templates/wireless/inc/wirelesslink_interface.html:20 -#: netbox/tenancy/forms/bulk_edit.py:142 -#: netbox/tenancy/forms/filtersets.py:107 -#: netbox/tenancy/forms/model_forms.py:137 -#: netbox/tenancy/tables/contacts.py:102 -#: netbox/virtualization/forms/bulk_edit.py:145 -#: netbox/virtualization/forms/bulk_import.py:106 -#: netbox/virtualization/forms/filtersets.py:157 -#: netbox/virtualization/forms/model_forms.py:195 -#: netbox/virtualization/tables/virtualmachines.py:75 -#: netbox/vpn/forms/bulk_edit.py:87 netbox/vpn/forms/bulk_import.py:81 -#: netbox/vpn/forms/filtersets.py:85 netbox/vpn/forms/model_forms.py:78 -#: netbox/vpn/forms/model_forms.py:113 netbox/vpn/tables/tunnels.py:82 +#: dcim/forms/bulk_edit.py:357 dcim/forms/bulk_edit.py:1262 +#: dcim/forms/bulk_edit.py:1655 dcim/forms/bulk_import.py:253 +#: dcim/forms/bulk_import.py:1076 dcim/forms/filtersets.py:367 +#: dcim/forms/filtersets.py:777 dcim/forms/filtersets.py:1534 +#: dcim/forms/model_forms.py:251 dcim/forms/model_forms.py:1070 +#: dcim/forms/model_forms.py:1510 dcim/forms/object_import.py:181 +#: dcim/tables/devices.py:169 dcim/tables/devices.py:809 +#: dcim/tables/devices.py:937 dcim/tables/devicetypes.py:304 +#: dcim/tables/racks.py:129 extras/filtersets.py:552 +#: ipam/forms/bulk_edit.py:261 ipam/forms/bulk_edit.py:311 +#: ipam/forms/bulk_edit.py:359 ipam/forms/bulk_edit.py:511 +#: ipam/forms/bulk_import.py:197 ipam/forms/bulk_import.py:262 +#: ipam/forms/bulk_import.py:298 ipam/forms/bulk_import.py:455 +#: ipam/forms/filtersets.py:237 ipam/forms/filtersets.py:289 +#: ipam/forms/filtersets.py:360 ipam/forms/filtersets.py:509 +#: ipam/forms/model_forms.py:188 ipam/forms/model_forms.py:221 +#: ipam/forms/model_forms.py:250 ipam/forms/model_forms.py:643 +#: ipam/tables/ip.py:258 ipam/tables/ip.py:316 ipam/tables/ip.py:367 +#: ipam/tables/vlans.py:130 ipam/tables/vlans.py:235 +#: templates/dcim/device.html:182 +#: templates/dcim/inc/panels/inventory_items.html:20 +#: templates/dcim/interface.html:223 templates/dcim/inventoryitem.html:36 +#: templates/dcim/rack.html:49 templates/ipam/ipaddress.html:41 +#: templates/ipam/iprange.html:50 templates/ipam/prefix.html:77 +#: templates/ipam/role.html:19 templates/ipam/vlan.html:52 +#: templates/virtualization/virtualmachine.html:23 +#: templates/vpn/tunneltermination.html:17 +#: templates/wireless/inc/wirelesslink_interface.html:20 +#: tenancy/forms/bulk_edit.py:142 tenancy/forms/filtersets.py:107 +#: tenancy/forms/model_forms.py:137 tenancy/tables/contacts.py:102 +#: virtualization/forms/bulk_edit.py:145 +#: virtualization/forms/bulk_import.py:106 +#: virtualization/forms/filtersets.py:157 +#: virtualization/forms/model_forms.py:195 +#: virtualization/tables/virtualmachines.py:75 vpn/forms/bulk_edit.py:87 +#: vpn/forms/bulk_import.py:81 vpn/forms/filtersets.py:85 +#: vpn/forms/model_forms.py:78 vpn/forms/model_forms.py:113 +#: vpn/tables/tunnels.py:82 msgid "Role" msgstr "Função" -#: netbox/dcim/forms/bulk_edit.py:364 netbox/dcim/forms/bulk_edit.py:712 -#: netbox/dcim/forms/bulk_edit.py:764 netbox/templates/dcim/device.html:104 -#: netbox/templates/dcim/module.html:77 -#: netbox/templates/dcim/modulebay.html:70 netbox/templates/dcim/rack.html:57 -#: netbox/templates/virtualization/virtualmachine.html:35 +#: dcim/forms/bulk_edit.py:364 dcim/forms/bulk_edit.py:712 +#: dcim/forms/bulk_edit.py:764 templates/dcim/device.html:104 +#: templates/dcim/module.html:77 templates/dcim/modulebay.html:70 +#: templates/dcim/rack.html:57 templates/virtualization/virtualmachine.html:35 msgid "Serial Number" msgstr "Número de Série" -#: netbox/dcim/forms/bulk_edit.py:367 netbox/dcim/forms/filtersets.py:387 -#: netbox/dcim/forms/filtersets.py:813 netbox/dcim/forms/filtersets.py:967 -#: netbox/dcim/forms/filtersets.py:1546 +#: dcim/forms/bulk_edit.py:367 dcim/forms/filtersets.py:387 +#: dcim/forms/filtersets.py:813 dcim/forms/filtersets.py:967 +#: dcim/forms/filtersets.py:1546 msgid "Asset tag" msgstr "Etiqueta de patrimônio" -#: netbox/dcim/forms/bulk_edit.py:411 netbox/dcim/forms/bulk_edit.py:524 -#: netbox/dcim/forms/bulk_edit.py:568 netbox/dcim/forms/bulk_edit.py:705 -#: netbox/dcim/forms/bulk_import.py:277 netbox/dcim/forms/bulk_import.py:410 -#: netbox/dcim/forms/bulk_import.py:580 netbox/dcim/forms/filtersets.py:280 -#: netbox/dcim/forms/filtersets.py:511 netbox/dcim/forms/filtersets.py:669 -#: netbox/dcim/forms/filtersets.py:804 netbox/templates/dcim/device.html:98 -#: netbox/templates/dcim/devicetype.html:65 -#: netbox/templates/dcim/moduletype.html:30 netbox/templates/dcim/rack.html:65 -#: netbox/templates/dcim/racktype.html:28 +#: dcim/forms/bulk_edit.py:411 dcim/forms/bulk_edit.py:524 +#: dcim/forms/bulk_edit.py:568 dcim/forms/bulk_edit.py:705 +#: dcim/forms/bulk_import.py:277 dcim/forms/bulk_import.py:410 +#: dcim/forms/bulk_import.py:580 dcim/forms/filtersets.py:280 +#: dcim/forms/filtersets.py:511 dcim/forms/filtersets.py:669 +#: dcim/forms/filtersets.py:804 templates/dcim/device.html:98 +#: templates/dcim/devicetype.html:65 templates/dcim/moduletype.html:41 +#: templates/dcim/rack.html:65 templates/dcim/racktype.html:28 msgid "Airflow" msgstr "Fluxo de Ar" -#: netbox/dcim/forms/bulk_edit.py:440 netbox/dcim/forms/bulk_edit.py:910 -#: netbox/dcim/forms/bulk_import.py:322 netbox/dcim/forms/bulk_import.py:325 -#: netbox/dcim/forms/bulk_import.py:553 netbox/dcim/forms/bulk_import.py:1358 -#: netbox/dcim/forms/bulk_import.py:1362 netbox/dcim/forms/filtersets.py:104 -#: netbox/dcim/forms/filtersets.py:324 netbox/dcim/forms/filtersets.py:405 -#: netbox/dcim/forms/filtersets.py:419 netbox/dcim/forms/filtersets.py:457 -#: netbox/dcim/forms/filtersets.py:772 netbox/dcim/forms/filtersets.py:1035 -#: netbox/dcim/forms/filtersets.py:1167 netbox/dcim/forms/model_forms.py:264 -#: netbox/dcim/forms/model_forms.py:306 netbox/dcim/forms/model_forms.py:479 -#: netbox/dcim/forms/model_forms.py:755 netbox/dcim/forms/object_create.py:400 -#: netbox/dcim/tables/devices.py:161 netbox/dcim/tables/power.py:70 -#: netbox/dcim/tables/racks.py:217 netbox/ipam/forms/bulk_edit.py:468 -#: netbox/ipam/forms/filtersets.py:442 netbox/templates/dcim/device.html:30 -#: netbox/templates/dcim/inc/cable_termination.html:16 -#: netbox/templates/dcim/powerfeed.html:28 netbox/templates/dcim/rack.html:13 -#: netbox/templates/dcim/rack/base.html:4 -#: netbox/templates/dcim/rackreservation.html:19 -#: netbox/templates/dcim/rackreservation.html:36 -#: netbox/virtualization/forms/model_forms.py:113 +#: dcim/forms/bulk_edit.py:440 dcim/forms/bulk_edit.py:910 +#: dcim/forms/bulk_import.py:322 dcim/forms/bulk_import.py:325 +#: dcim/forms/bulk_import.py:553 dcim/forms/bulk_import.py:1358 +#: dcim/forms/bulk_import.py:1362 dcim/forms/filtersets.py:104 +#: dcim/forms/filtersets.py:324 dcim/forms/filtersets.py:405 +#: dcim/forms/filtersets.py:419 dcim/forms/filtersets.py:457 +#: dcim/forms/filtersets.py:772 dcim/forms/filtersets.py:1035 +#: dcim/forms/filtersets.py:1167 dcim/forms/model_forms.py:264 +#: dcim/forms/model_forms.py:306 dcim/forms/model_forms.py:479 +#: dcim/forms/model_forms.py:755 dcim/forms/object_create.py:400 +#: dcim/tables/devices.py:161 dcim/tables/power.py:70 dcim/tables/racks.py:217 +#: ipam/forms/filtersets.py:442 templates/dcim/device.html:30 +#: templates/dcim/inc/cable_termination.html:16 +#: templates/dcim/powerfeed.html:28 templates/dcim/rack.html:13 +#: templates/dcim/rack/base.html:4 templates/dcim/rackreservation.html:19 +#: templates/dcim/rackreservation.html:36 +#: virtualization/forms/model_forms.py:113 msgid "Rack" msgstr "Rack" -#: netbox/dcim/forms/bulk_edit.py:444 netbox/dcim/forms/bulk_edit.py:730 -#: netbox/dcim/forms/filtersets.py:325 netbox/dcim/forms/filtersets.py:398 -#: netbox/dcim/forms/filtersets.py:481 netbox/dcim/forms/filtersets.py:608 -#: netbox/dcim/forms/filtersets.py:721 netbox/dcim/forms/filtersets.py:942 -#: netbox/dcim/forms/model_forms.py:670 netbox/dcim/forms/model_forms.py:1580 -#: netbox/templates/dcim/device_edit.html:20 +#: dcim/forms/bulk_edit.py:444 dcim/forms/bulk_edit.py:730 +#: dcim/forms/filtersets.py:325 dcim/forms/filtersets.py:398 +#: dcim/forms/filtersets.py:481 dcim/forms/filtersets.py:608 +#: dcim/forms/filtersets.py:721 dcim/forms/filtersets.py:942 +#: dcim/forms/model_forms.py:670 dcim/forms/model_forms.py:1580 +#: templates/dcim/device_edit.html:20 msgid "Hardware" msgstr "Hardware" -#: netbox/dcim/forms/bulk_edit.py:500 netbox/dcim/forms/bulk_import.py:377 -#: netbox/dcim/forms/filtersets.py:499 netbox/dcim/forms/model_forms.py:353 +#: dcim/forms/bulk_edit.py:500 dcim/forms/bulk_import.py:377 +#: dcim/forms/filtersets.py:499 dcim/forms/model_forms.py:353 msgid "Default platform" msgstr "Plataforma padrão" -#: netbox/dcim/forms/bulk_edit.py:505 netbox/dcim/forms/bulk_edit.py:564 -#: netbox/dcim/forms/filtersets.py:502 netbox/dcim/forms/filtersets.py:622 +#: dcim/forms/bulk_edit.py:505 dcim/forms/bulk_edit.py:564 +#: dcim/forms/filtersets.py:502 dcim/forms/filtersets.py:622 msgid "Part number" msgstr "Part number" -#: netbox/dcim/forms/bulk_edit.py:509 +#: dcim/forms/bulk_edit.py:509 msgid "U height" msgstr "Altura em U" -#: netbox/dcim/forms/bulk_edit.py:521 netbox/dcim/tables/devicetypes.py:102 +#: dcim/forms/bulk_edit.py:521 dcim/tables/devicetypes.py:102 msgid "Exclude from utilization" msgstr "Excluir da utilização" -#: netbox/dcim/forms/bulk_edit.py:550 netbox/dcim/forms/model_forms.py:368 -#: netbox/dcim/tables/devicetypes.py:77 netbox/templates/dcim/device.html:88 -#: netbox/templates/dcim/devicebay.html:52 -#: netbox/templates/dcim/module.html:61 +#: dcim/forms/bulk_edit.py:550 dcim/forms/model_forms.py:368 +#: dcim/tables/devicetypes.py:77 templates/dcim/device.html:88 +#: templates/dcim/devicebay.html:52 templates/dcim/module.html:61 msgid "Device Type" msgstr "Tipo de Dispositivo" -#: netbox/dcim/forms/bulk_edit.py:592 netbox/dcim/forms/model_forms.py:401 -#: netbox/dcim/tables/modules.py:17 netbox/dcim/tables/modules.py:65 -#: netbox/templates/dcim/module.html:65 -#: netbox/templates/dcim/modulebay.html:66 -#: netbox/templates/dcim/moduletype.html:11 +#: dcim/forms/bulk_edit.py:592 dcim/forms/model_forms.py:401 +#: dcim/tables/modules.py:17 dcim/tables/modules.py:65 +#: templates/dcim/module.html:65 templates/dcim/modulebay.html:66 +#: templates/dcim/moduletype.html:22 msgid "Module Type" msgstr "Tipo de Módulo" -#: netbox/dcim/forms/bulk_edit.py:596 netbox/dcim/forms/model_forms.py:371 -#: netbox/dcim/forms/model_forms.py:402 -#: netbox/templates/dcim/devicetype.html:11 +#: dcim/forms/bulk_edit.py:596 dcim/forms/model_forms.py:371 +#: dcim/forms/model_forms.py:402 templates/dcim/devicetype.html:11 msgid "Chassis" msgstr "Chassi" -#: netbox/dcim/forms/bulk_edit.py:610 netbox/dcim/models/devices.py:484 -#: netbox/dcim/tables/devices.py:67 +#: dcim/forms/bulk_edit.py:610 dcim/models/devices.py:484 +#: dcim/tables/devices.py:67 msgid "VM role" msgstr "Função da VM" -#: netbox/dcim/forms/bulk_edit.py:613 netbox/dcim/forms/bulk_edit.py:637 -#: netbox/dcim/forms/bulk_edit.py:720 netbox/dcim/forms/bulk_import.py:434 -#: netbox/dcim/forms/bulk_import.py:438 netbox/dcim/forms/bulk_import.py:457 -#: netbox/dcim/forms/bulk_import.py:461 netbox/dcim/forms/bulk_import.py:586 -#: netbox/dcim/forms/bulk_import.py:590 netbox/dcim/forms/filtersets.py:689 -#: netbox/dcim/forms/filtersets.py:705 netbox/dcim/forms/filtersets.py:823 -#: netbox/dcim/forms/model_forms.py:415 netbox/dcim/forms/model_forms.py:441 -#: netbox/dcim/forms/model_forms.py:555 -#: netbox/virtualization/forms/bulk_import.py:132 -#: netbox/virtualization/forms/bulk_import.py:133 -#: netbox/virtualization/forms/filtersets.py:188 -#: netbox/virtualization/forms/model_forms.py:215 +#: dcim/forms/bulk_edit.py:613 dcim/forms/bulk_edit.py:637 +#: dcim/forms/bulk_edit.py:720 dcim/forms/bulk_import.py:434 +#: dcim/forms/bulk_import.py:438 dcim/forms/bulk_import.py:457 +#: dcim/forms/bulk_import.py:461 dcim/forms/bulk_import.py:586 +#: dcim/forms/bulk_import.py:590 dcim/forms/filtersets.py:689 +#: dcim/forms/filtersets.py:705 dcim/forms/filtersets.py:823 +#: dcim/forms/model_forms.py:415 dcim/forms/model_forms.py:441 +#: dcim/forms/model_forms.py:555 virtualization/forms/bulk_import.py:132 +#: virtualization/forms/bulk_import.py:133 +#: virtualization/forms/filtersets.py:188 +#: virtualization/forms/model_forms.py:215 msgid "Config template" msgstr "Modelo de configuração" -#: netbox/dcim/forms/bulk_edit.py:661 netbox/dcim/forms/bulk_edit.py:1061 -#: netbox/dcim/forms/bulk_import.py:492 netbox/dcim/forms/filtersets.py:114 -#: netbox/dcim/forms/model_forms.py:501 netbox/dcim/forms/model_forms.py:872 -#: netbox/dcim/forms/model_forms.py:889 netbox/extras/filtersets.py:547 +#: dcim/forms/bulk_edit.py:661 dcim/forms/bulk_edit.py:1061 +#: dcim/forms/bulk_import.py:492 dcim/forms/filtersets.py:114 +#: dcim/forms/model_forms.py:501 dcim/forms/model_forms.py:872 +#: dcim/forms/model_forms.py:889 extras/filtersets.py:547 msgid "Device type" msgstr "Tipo de dispositivo" -#: netbox/dcim/forms/bulk_edit.py:672 netbox/dcim/forms/bulk_import.py:473 -#: netbox/dcim/forms/filtersets.py:119 netbox/dcim/forms/model_forms.py:509 +#: dcim/forms/bulk_edit.py:672 dcim/forms/bulk_import.py:473 +#: dcim/forms/filtersets.py:119 dcim/forms/model_forms.py:509 msgid "Device role" msgstr "Função do dispositivo" -#: netbox/dcim/forms/bulk_edit.py:695 netbox/dcim/forms/bulk_import.py:498 -#: netbox/dcim/forms/filtersets.py:796 netbox/dcim/forms/model_forms.py:451 -#: netbox/dcim/forms/model_forms.py:513 netbox/dcim/tables/devices.py:182 -#: netbox/extras/filtersets.py:563 netbox/templates/dcim/device.html:186 -#: netbox/templates/dcim/platform.html:26 -#: netbox/templates/virtualization/virtualmachine.html:27 -#: netbox/virtualization/forms/bulk_edit.py:160 -#: netbox/virtualization/forms/bulk_import.py:122 -#: netbox/virtualization/forms/filtersets.py:168 -#: netbox/virtualization/forms/model_forms.py:203 -#: netbox/virtualization/tables/virtualmachines.py:79 +#: dcim/forms/bulk_edit.py:695 dcim/forms/bulk_import.py:498 +#: dcim/forms/filtersets.py:796 dcim/forms/model_forms.py:451 +#: dcim/forms/model_forms.py:513 dcim/tables/devices.py:182 +#: extras/filtersets.py:563 templates/dcim/device.html:186 +#: templates/dcim/platform.html:26 +#: templates/virtualization/virtualmachine.html:27 +#: virtualization/forms/bulk_edit.py:160 +#: virtualization/forms/bulk_import.py:122 +#: virtualization/forms/filtersets.py:168 +#: virtualization/forms/model_forms.py:203 +#: virtualization/tables/virtualmachines.py:79 msgid "Platform" msgstr "Plataforma" -#: netbox/dcim/forms/bulk_edit.py:728 netbox/dcim/forms/bulk_edit.py:1281 -#: netbox/dcim/forms/bulk_edit.py:1650 netbox/dcim/forms/bulk_edit.py:1696 -#: netbox/dcim/forms/bulk_import.py:641 netbox/dcim/forms/bulk_import.py:703 -#: netbox/dcim/forms/bulk_import.py:729 netbox/dcim/forms/bulk_import.py:755 -#: netbox/dcim/forms/bulk_import.py:775 netbox/dcim/forms/bulk_import.py:828 -#: netbox/dcim/forms/bulk_import.py:946 netbox/dcim/forms/bulk_import.py:994 -#: netbox/dcim/forms/bulk_import.py:1011 netbox/dcim/forms/bulk_import.py:1023 -#: netbox/dcim/forms/bulk_import.py:1071 netbox/dcim/forms/bulk_import.py:1422 -#: netbox/dcim/forms/connections.py:24 netbox/dcim/forms/filtersets.py:131 -#: netbox/dcim/forms/filtersets.py:921 netbox/dcim/forms/filtersets.py:1051 -#: netbox/dcim/forms/filtersets.py:1242 netbox/dcim/forms/filtersets.py:1267 -#: netbox/dcim/forms/filtersets.py:1291 netbox/dcim/forms/filtersets.py:1311 -#: netbox/dcim/forms/filtersets.py:1334 netbox/dcim/forms/filtersets.py:1444 -#: netbox/dcim/forms/filtersets.py:1469 netbox/dcim/forms/filtersets.py:1493 -#: netbox/dcim/forms/filtersets.py:1511 netbox/dcim/forms/filtersets.py:1528 -#: netbox/dcim/forms/filtersets.py:1592 netbox/dcim/forms/filtersets.py:1616 -#: netbox/dcim/forms/filtersets.py:1640 netbox/dcim/forms/model_forms.py:633 -#: netbox/dcim/forms/model_forms.py:849 netbox/dcim/forms/model_forms.py:1208 -#: netbox/dcim/forms/model_forms.py:1664 -#: netbox/dcim/forms/object_create.py:257 netbox/dcim/tables/connections.py:22 -#: netbox/dcim/tables/connections.py:41 netbox/dcim/tables/connections.py:60 -#: netbox/dcim/tables/devices.py:285 netbox/dcim/tables/devices.py:371 -#: netbox/dcim/tables/devices.py:412 netbox/dcim/tables/devices.py:454 -#: netbox/dcim/tables/devices.py:505 netbox/dcim/tables/devices.py:597 -#: netbox/dcim/tables/devices.py:697 netbox/dcim/tables/devices.py:754 -#: netbox/dcim/tables/devices.py:801 netbox/dcim/tables/devices.py:861 -#: netbox/dcim/tables/devices.py:930 netbox/dcim/tables/devices.py:1057 -#: netbox/dcim/tables/modules.py:52 netbox/extras/forms/filtersets.py:321 -#: netbox/ipam/forms/bulk_import.py:304 netbox/ipam/forms/bulk_import.py:481 -#: netbox/ipam/forms/filtersets.py:551 netbox/ipam/forms/model_forms.py:319 -#: netbox/ipam/forms/model_forms.py:679 netbox/ipam/forms/model_forms.py:712 -#: netbox/ipam/forms/model_forms.py:738 netbox/ipam/tables/vlans.py:180 -#: netbox/templates/dcim/consoleport.html:20 -#: netbox/templates/dcim/consoleserverport.html:20 -#: netbox/templates/dcim/device.html:15 netbox/templates/dcim/device.html:130 -#: netbox/templates/dcim/device_edit.html:10 -#: netbox/templates/dcim/devicebay.html:20 -#: netbox/templates/dcim/devicebay.html:48 -#: netbox/templates/dcim/frontport.html:20 -#: netbox/templates/dcim/interface.html:30 -#: netbox/templates/dcim/interface.html:161 -#: netbox/templates/dcim/inventoryitem.html:20 -#: netbox/templates/dcim/module.html:57 -#: netbox/templates/dcim/modulebay.html:20 -#: netbox/templates/dcim/poweroutlet.html:20 -#: netbox/templates/dcim/powerport.html:20 -#: netbox/templates/dcim/rearport.html:20 -#: netbox/templates/dcim/virtualchassis.html:65 -#: netbox/templates/dcim/virtualchassis_edit.html:51 -#: netbox/templates/dcim/virtualdevicecontext.html:22 -#: netbox/templates/virtualization/virtualmachine.html:114 -#: netbox/templates/vpn/tunneltermination.html:23 -#: netbox/templates/wireless/inc/wirelesslink_interface.html:6 -#: netbox/virtualization/filtersets.py:167 -#: netbox/virtualization/forms/bulk_edit.py:137 -#: netbox/virtualization/forms/bulk_import.py:99 -#: netbox/virtualization/forms/filtersets.py:128 -#: netbox/virtualization/forms/model_forms.py:185 -#: netbox/virtualization/tables/virtualmachines.py:71 netbox/vpn/choices.py:44 -#: netbox/vpn/forms/bulk_import.py:86 netbox/vpn/forms/bulk_import.py:283 -#: netbox/vpn/forms/filtersets.py:275 netbox/vpn/forms/model_forms.py:90 -#: netbox/vpn/forms/model_forms.py:125 netbox/vpn/forms/model_forms.py:236 -#: netbox/vpn/forms/model_forms.py:453 netbox/wireless/forms/model_forms.py:99 -#: netbox/wireless/forms/model_forms.py:141 -#: netbox/wireless/tables/wirelesslan.py:75 +#: dcim/forms/bulk_edit.py:728 dcim/forms/bulk_edit.py:1281 +#: dcim/forms/bulk_edit.py:1650 dcim/forms/bulk_edit.py:1696 +#: dcim/forms/bulk_import.py:641 dcim/forms/bulk_import.py:703 +#: dcim/forms/bulk_import.py:729 dcim/forms/bulk_import.py:755 +#: dcim/forms/bulk_import.py:775 dcim/forms/bulk_import.py:828 +#: dcim/forms/bulk_import.py:946 dcim/forms/bulk_import.py:994 +#: dcim/forms/bulk_import.py:1011 dcim/forms/bulk_import.py:1023 +#: dcim/forms/bulk_import.py:1071 dcim/forms/bulk_import.py:1422 +#: dcim/forms/connections.py:24 dcim/forms/filtersets.py:131 +#: dcim/forms/filtersets.py:921 dcim/forms/filtersets.py:1051 +#: dcim/forms/filtersets.py:1242 dcim/forms/filtersets.py:1267 +#: dcim/forms/filtersets.py:1291 dcim/forms/filtersets.py:1311 +#: dcim/forms/filtersets.py:1334 dcim/forms/filtersets.py:1444 +#: dcim/forms/filtersets.py:1469 dcim/forms/filtersets.py:1493 +#: dcim/forms/filtersets.py:1511 dcim/forms/filtersets.py:1528 +#: dcim/forms/filtersets.py:1592 dcim/forms/filtersets.py:1616 +#: dcim/forms/filtersets.py:1640 dcim/forms/model_forms.py:633 +#: dcim/forms/model_forms.py:849 dcim/forms/model_forms.py:1208 +#: dcim/forms/model_forms.py:1664 dcim/forms/object_create.py:257 +#: dcim/tables/connections.py:22 dcim/tables/connections.py:41 +#: dcim/tables/connections.py:60 dcim/tables/devices.py:285 +#: dcim/tables/devices.py:371 dcim/tables/devices.py:412 +#: dcim/tables/devices.py:454 dcim/tables/devices.py:505 +#: dcim/tables/devices.py:597 dcim/tables/devices.py:697 +#: dcim/tables/devices.py:754 dcim/tables/devices.py:801 +#: dcim/tables/devices.py:861 dcim/tables/devices.py:930 +#: dcim/tables/devices.py:1057 dcim/tables/modules.py:52 +#: extras/forms/filtersets.py:321 ipam/forms/bulk_import.py:304 +#: ipam/forms/bulk_import.py:481 ipam/forms/filtersets.py:551 +#: ipam/forms/model_forms.py:319 ipam/forms/model_forms.py:679 +#: ipam/forms/model_forms.py:712 ipam/forms/model_forms.py:738 +#: ipam/tables/vlans.py:180 templates/dcim/consoleport.html:20 +#: templates/dcim/consoleserverport.html:20 templates/dcim/device.html:15 +#: templates/dcim/device.html:130 templates/dcim/device_edit.html:10 +#: templates/dcim/devicebay.html:20 templates/dcim/devicebay.html:48 +#: templates/dcim/frontport.html:20 templates/dcim/interface.html:30 +#: templates/dcim/interface.html:161 templates/dcim/inventoryitem.html:20 +#: templates/dcim/module.html:57 templates/dcim/modulebay.html:20 +#: templates/dcim/poweroutlet.html:20 templates/dcim/powerport.html:20 +#: templates/dcim/rearport.html:20 templates/dcim/virtualchassis.html:65 +#: templates/dcim/virtualchassis_edit.html:51 +#: templates/dcim/virtualdevicecontext.html:22 +#: templates/virtualization/virtualmachine.html:114 +#: templates/vpn/tunneltermination.html:23 +#: templates/wireless/inc/wirelesslink_interface.html:6 +#: virtualization/filtersets.py:167 virtualization/forms/bulk_edit.py:137 +#: virtualization/forms/bulk_import.py:99 +#: virtualization/forms/filtersets.py:128 +#: virtualization/forms/model_forms.py:185 +#: virtualization/tables/virtualmachines.py:71 vpn/choices.py:44 +#: vpn/forms/bulk_import.py:86 vpn/forms/bulk_import.py:283 +#: vpn/forms/filtersets.py:275 vpn/forms/model_forms.py:90 +#: vpn/forms/model_forms.py:125 vpn/forms/model_forms.py:236 +#: vpn/forms/model_forms.py:453 wireless/forms/model_forms.py:99 +#: wireless/forms/model_forms.py:141 wireless/tables/wirelesslan.py:75 msgid "Device" msgstr "Dispositivo" -#: netbox/dcim/forms/bulk_edit.py:731 -#: netbox/templates/extras/dashboard/widget_config.html:7 -#: netbox/virtualization/forms/bulk_edit.py:191 +#: dcim/forms/bulk_edit.py:731 templates/extras/dashboard/widget_config.html:7 +#: virtualization/forms/bulk_edit.py:191 msgid "Configuration" msgstr "Configuração" -#: netbox/dcim/forms/bulk_edit.py:745 netbox/dcim/forms/bulk_import.py:653 -#: netbox/dcim/forms/model_forms.py:647 netbox/dcim/forms/model_forms.py:897 +#: dcim/forms/bulk_edit.py:745 dcim/forms/bulk_import.py:653 +#: dcim/forms/model_forms.py:647 dcim/forms/model_forms.py:897 msgid "Module type" msgstr "Tipo de módulo" -#: netbox/dcim/forms/bulk_edit.py:799 netbox/dcim/forms/bulk_edit.py:984 -#: netbox/dcim/forms/bulk_edit.py:1003 netbox/dcim/forms/bulk_edit.py:1026 -#: netbox/dcim/forms/bulk_edit.py:1068 netbox/dcim/forms/bulk_edit.py:1112 -#: netbox/dcim/forms/bulk_edit.py:1163 netbox/dcim/forms/bulk_edit.py:1190 -#: netbox/dcim/forms/bulk_edit.py:1217 netbox/dcim/forms/bulk_edit.py:1235 -#: netbox/dcim/forms/bulk_edit.py:1253 netbox/dcim/forms/filtersets.py:67 -#: netbox/dcim/forms/object_create.py:46 netbox/templates/dcim/cable.html:32 -#: netbox/templates/dcim/consoleport.html:32 -#: netbox/templates/dcim/consoleserverport.html:32 -#: netbox/templates/dcim/devicebay.html:28 -#: netbox/templates/dcim/frontport.html:32 -#: netbox/templates/dcim/inc/panels/inventory_items.html:19 -#: netbox/templates/dcim/interface.html:42 -#: netbox/templates/dcim/inventoryitem.html:32 -#: netbox/templates/dcim/modulebay.html:34 -#: netbox/templates/dcim/poweroutlet.html:32 -#: netbox/templates/dcim/powerport.html:32 -#: netbox/templates/dcim/rearport.html:32 -#: netbox/templates/extras/customfield.html:26 -#: netbox/templates/generic/bulk_import.html:162 +#: dcim/forms/bulk_edit.py:799 dcim/forms/bulk_edit.py:984 +#: dcim/forms/bulk_edit.py:1003 dcim/forms/bulk_edit.py:1026 +#: dcim/forms/bulk_edit.py:1068 dcim/forms/bulk_edit.py:1112 +#: dcim/forms/bulk_edit.py:1163 dcim/forms/bulk_edit.py:1190 +#: dcim/forms/bulk_edit.py:1217 dcim/forms/bulk_edit.py:1235 +#: dcim/forms/bulk_edit.py:1253 dcim/forms/filtersets.py:67 +#: dcim/forms/object_create.py:46 templates/dcim/cable.html:32 +#: templates/dcim/consoleport.html:32 templates/dcim/consoleserverport.html:32 +#: templates/dcim/devicebay.html:28 templates/dcim/frontport.html:32 +#: templates/dcim/inc/panels/inventory_items.html:19 +#: templates/dcim/interface.html:42 templates/dcim/inventoryitem.html:32 +#: templates/dcim/modulebay.html:34 templates/dcim/poweroutlet.html:32 +#: templates/dcim/powerport.html:32 templates/dcim/rearport.html:32 +#: templates/extras/customfield.html:26 templates/generic/bulk_import.html:162 msgid "Label" msgstr "Rótulo" -#: netbox/dcim/forms/bulk_edit.py:808 netbox/dcim/forms/filtersets.py:1068 -#: netbox/templates/dcim/cable.html:50 +#: dcim/forms/bulk_edit.py:808 dcim/forms/filtersets.py:1068 +#: templates/dcim/cable.html:50 msgid "Length" msgstr "Comprimento" -#: netbox/dcim/forms/bulk_edit.py:813 netbox/dcim/forms/bulk_import.py:1226 -#: netbox/dcim/forms/bulk_import.py:1229 netbox/dcim/forms/filtersets.py:1072 +#: dcim/forms/bulk_edit.py:813 dcim/forms/bulk_import.py:1226 +#: dcim/forms/bulk_import.py:1229 dcim/forms/filtersets.py:1072 msgid "Length unit" msgstr "Unidade de comprimento" -#: netbox/dcim/forms/bulk_edit.py:837 -#: netbox/templates/dcim/virtualchassis.html:23 +#: dcim/forms/bulk_edit.py:837 templates/dcim/virtualchassis.html:23 msgid "Domain" msgstr "Domínio" -#: netbox/dcim/forms/bulk_edit.py:905 netbox/dcim/forms/bulk_import.py:1345 -#: netbox/dcim/forms/filtersets.py:1158 netbox/dcim/forms/model_forms.py:750 +#: dcim/forms/bulk_edit.py:905 dcim/forms/bulk_import.py:1345 +#: dcim/forms/filtersets.py:1158 dcim/forms/model_forms.py:750 msgid "Power panel" msgstr "Quadro de alimentação" -#: netbox/dcim/forms/bulk_edit.py:927 netbox/dcim/forms/bulk_import.py:1381 -#: netbox/dcim/forms/filtersets.py:1180 -#: netbox/templates/dcim/powerfeed.html:83 +#: dcim/forms/bulk_edit.py:927 dcim/forms/bulk_import.py:1381 +#: dcim/forms/filtersets.py:1180 templates/dcim/powerfeed.html:83 msgid "Supply" msgstr "Tipo de Alimentação" -#: netbox/dcim/forms/bulk_edit.py:933 netbox/dcim/forms/bulk_import.py:1386 -#: netbox/dcim/forms/filtersets.py:1185 -#: netbox/templates/dcim/powerfeed.html:95 +#: dcim/forms/bulk_edit.py:933 dcim/forms/bulk_import.py:1386 +#: dcim/forms/filtersets.py:1185 templates/dcim/powerfeed.html:95 msgid "Phase" msgstr "Fase" -#: netbox/dcim/forms/bulk_edit.py:939 netbox/dcim/forms/filtersets.py:1190 -#: netbox/templates/dcim/powerfeed.html:87 +#: dcim/forms/bulk_edit.py:939 dcim/forms/filtersets.py:1190 +#: templates/dcim/powerfeed.html:87 msgid "Voltage" msgstr "Tensão" -#: netbox/dcim/forms/bulk_edit.py:943 netbox/dcim/forms/filtersets.py:1194 -#: netbox/templates/dcim/powerfeed.html:91 +#: dcim/forms/bulk_edit.py:943 dcim/forms/filtersets.py:1194 +#: templates/dcim/powerfeed.html:91 msgid "Amperage" msgstr "Corrente" -#: netbox/dcim/forms/bulk_edit.py:947 netbox/dcim/forms/filtersets.py:1198 +#: dcim/forms/bulk_edit.py:947 dcim/forms/filtersets.py:1198 msgid "Max utilization" msgstr "Utilização máxima" -#: netbox/dcim/forms/bulk_edit.py:1036 +#: dcim/forms/bulk_edit.py:1036 msgid "Maximum draw" msgstr "Consumo máximo" -#: netbox/dcim/forms/bulk_edit.py:1039 -#: netbox/dcim/models/device_component_templates.py:282 -#: netbox/dcim/models/device_components.py:356 +#: dcim/forms/bulk_edit.py:1039 dcim/models/device_component_templates.py:282 +#: dcim/models/device_components.py:356 msgid "Maximum power draw (watts)" msgstr "Consumo máximo de energia (Watts)" -#: netbox/dcim/forms/bulk_edit.py:1042 +#: dcim/forms/bulk_edit.py:1042 msgid "Allocated draw" msgstr "Consumo alocado" -#: netbox/dcim/forms/bulk_edit.py:1045 -#: netbox/dcim/models/device_component_templates.py:289 -#: netbox/dcim/models/device_components.py:363 +#: dcim/forms/bulk_edit.py:1045 dcim/models/device_component_templates.py:289 +#: dcim/models/device_components.py:363 msgid "Allocated power draw (watts)" msgstr "Consumo de energia alocado (Watts)" -#: netbox/dcim/forms/bulk_edit.py:1078 netbox/dcim/forms/bulk_import.py:786 -#: netbox/dcim/forms/model_forms.py:953 netbox/dcim/forms/model_forms.py:1278 -#: netbox/dcim/forms/model_forms.py:1567 netbox/dcim/forms/object_import.py:55 +#: dcim/forms/bulk_edit.py:1078 dcim/forms/bulk_import.py:786 +#: dcim/forms/model_forms.py:953 dcim/forms/model_forms.py:1278 +#: dcim/forms/model_forms.py:1567 dcim/forms/object_import.py:55 msgid "Power port" msgstr "Porta de alimentação" -#: netbox/dcim/forms/bulk_edit.py:1083 netbox/dcim/forms/bulk_import.py:793 +#: dcim/forms/bulk_edit.py:1083 dcim/forms/bulk_import.py:793 msgid "Feed leg" msgstr "Ramal de alimentação" -#: netbox/dcim/forms/bulk_edit.py:1129 netbox/dcim/forms/bulk_edit.py:1440 +#: dcim/forms/bulk_edit.py:1129 dcim/forms/bulk_edit.py:1440 msgid "Management only" msgstr "Somente gerenciamento" -#: netbox/dcim/forms/bulk_edit.py:1139 netbox/dcim/forms/bulk_edit.py:1446 -#: netbox/dcim/forms/bulk_import.py:876 netbox/dcim/forms/filtersets.py:1394 -#: netbox/dcim/forms/object_import.py:90 -#: netbox/dcim/models/device_component_templates.py:437 -#: netbox/dcim/models/device_components.py:670 +#: dcim/forms/bulk_edit.py:1139 dcim/forms/bulk_edit.py:1446 +#: dcim/forms/bulk_import.py:876 dcim/forms/filtersets.py:1394 +#: dcim/forms/object_import.py:90 +#: dcim/models/device_component_templates.py:437 +#: dcim/models/device_components.py:670 msgid "PoE mode" msgstr "Modo de Operação" -#: netbox/dcim/forms/bulk_edit.py:1145 netbox/dcim/forms/bulk_edit.py:1452 -#: netbox/dcim/forms/bulk_import.py:882 netbox/dcim/forms/filtersets.py:1399 -#: netbox/dcim/forms/object_import.py:95 -#: netbox/dcim/models/device_component_templates.py:443 -#: netbox/dcim/models/device_components.py:676 +#: dcim/forms/bulk_edit.py:1145 dcim/forms/bulk_edit.py:1452 +#: dcim/forms/bulk_import.py:882 dcim/forms/filtersets.py:1399 +#: dcim/forms/object_import.py:95 +#: dcim/models/device_component_templates.py:443 +#: dcim/models/device_components.py:676 msgid "PoE type" msgstr "Tipo de PoE" -#: netbox/dcim/forms/bulk_edit.py:1151 netbox/dcim/forms/filtersets.py:1404 -#: netbox/dcim/forms/object_import.py:100 +#: dcim/forms/bulk_edit.py:1151 dcim/forms/filtersets.py:1404 +#: dcim/forms/object_import.py:100 msgid "Wireless role" msgstr "Função do Wireless" -#: netbox/dcim/forms/bulk_edit.py:1288 netbox/dcim/forms/model_forms.py:669 -#: netbox/dcim/forms/model_forms.py:1223 netbox/dcim/tables/devices.py:313 -#: netbox/templates/dcim/consoleport.html:24 -#: netbox/templates/dcim/consoleserverport.html:24 -#: netbox/templates/dcim/frontport.html:24 -#: netbox/templates/dcim/interface.html:34 -#: netbox/templates/dcim/module.html:54 -#: netbox/templates/dcim/modulebay.html:26 -#: netbox/templates/dcim/modulebay.html:58 -#: netbox/templates/dcim/poweroutlet.html:24 -#: netbox/templates/dcim/powerport.html:24 -#: netbox/templates/dcim/rearport.html:24 +#: dcim/forms/bulk_edit.py:1288 dcim/forms/model_forms.py:669 +#: dcim/forms/model_forms.py:1223 dcim/tables/devices.py:313 +#: templates/dcim/consoleport.html:24 templates/dcim/consoleserverport.html:24 +#: templates/dcim/frontport.html:24 templates/dcim/interface.html:34 +#: templates/dcim/module.html:54 templates/dcim/modulebay.html:26 +#: templates/dcim/modulebay.html:58 templates/dcim/poweroutlet.html:24 +#: templates/dcim/powerport.html:24 templates/dcim/rearport.html:24 msgid "Module" msgstr "Módulo" -#: netbox/dcim/forms/bulk_edit.py:1420 netbox/dcim/tables/devices.py:665 -#: netbox/templates/dcim/interface.html:110 +#: dcim/forms/bulk_edit.py:1420 dcim/tables/devices.py:665 +#: templates/dcim/interface.html:110 msgid "LAG" msgstr "LAG" -#: netbox/dcim/forms/bulk_edit.py:1425 netbox/dcim/forms/model_forms.py:1305 +#: dcim/forms/bulk_edit.py:1425 dcim/forms/model_forms.py:1305 msgid "Virtual device contexts" msgstr "Contextos de dispositivos virtuais" -#: netbox/dcim/forms/bulk_edit.py:1431 netbox/dcim/forms/bulk_import.py:714 -#: netbox/dcim/forms/bulk_import.py:740 netbox/dcim/forms/filtersets.py:1252 -#: netbox/dcim/forms/filtersets.py:1277 netbox/dcim/forms/filtersets.py:1358 -#: netbox/dcim/tables/devices.py:610 -#: netbox/templates/circuits/inc/circuit_termination_fields.html:67 -#: netbox/templates/dcim/consoleport.html:40 -#: netbox/templates/dcim/consoleserverport.html:40 +#: dcim/forms/bulk_edit.py:1431 dcim/forms/bulk_import.py:714 +#: dcim/forms/bulk_import.py:740 dcim/forms/filtersets.py:1252 +#: dcim/forms/filtersets.py:1277 dcim/forms/filtersets.py:1358 +#: dcim/tables/devices.py:610 +#: templates/circuits/inc/circuit_termination_fields.html:67 +#: templates/dcim/consoleport.html:40 templates/dcim/consoleserverport.html:40 msgid "Speed" msgstr "Velocidade" -#: netbox/dcim/forms/bulk_edit.py:1460 netbox/dcim/forms/bulk_import.py:885 -#: netbox/templates/vpn/ikepolicy.html:25 -#: netbox/templates/vpn/ipsecprofile.html:21 -#: netbox/templates/vpn/ipsecprofile.html:48 -#: netbox/virtualization/forms/bulk_edit.py:233 -#: netbox/virtualization/forms/bulk_import.py:165 -#: netbox/vpn/forms/bulk_edit.py:146 netbox/vpn/forms/bulk_edit.py:232 -#: netbox/vpn/forms/bulk_import.py:176 netbox/vpn/forms/bulk_import.py:234 -#: netbox/vpn/forms/filtersets.py:135 netbox/vpn/forms/filtersets.py:178 -#: netbox/vpn/forms/filtersets.py:192 netbox/vpn/tables/crypto.py:64 -#: netbox/vpn/tables/crypto.py:162 +#: dcim/forms/bulk_edit.py:1460 dcim/forms/bulk_import.py:885 +#: templates/vpn/ikepolicy.html:25 templates/vpn/ipsecprofile.html:21 +#: templates/vpn/ipsecprofile.html:48 virtualization/forms/bulk_edit.py:233 +#: virtualization/forms/bulk_import.py:165 vpn/forms/bulk_edit.py:146 +#: vpn/forms/bulk_edit.py:232 vpn/forms/bulk_import.py:176 +#: vpn/forms/bulk_import.py:234 vpn/forms/filtersets.py:135 +#: vpn/forms/filtersets.py:178 vpn/forms/filtersets.py:192 +#: vpn/tables/crypto.py:64 vpn/tables/crypto.py:162 msgid "Mode" msgstr "Modo" -#: netbox/dcim/forms/bulk_edit.py:1468 netbox/dcim/forms/model_forms.py:1354 -#: netbox/ipam/forms/bulk_import.py:178 netbox/ipam/forms/filtersets.py:498 -#: netbox/ipam/models/vlans.py:84 netbox/virtualization/forms/bulk_edit.py:240 -#: netbox/virtualization/forms/model_forms.py:321 +#: dcim/forms/bulk_edit.py:1468 dcim/forms/model_forms.py:1354 +#: ipam/forms/bulk_import.py:178 ipam/forms/filtersets.py:498 +#: ipam/models/vlans.py:84 virtualization/forms/bulk_edit.py:240 +#: virtualization/forms/model_forms.py:321 msgid "VLAN group" msgstr "Grupo de VLANs" -#: netbox/dcim/forms/bulk_edit.py:1476 netbox/dcim/forms/model_forms.py:1360 -#: netbox/dcim/tables/devices.py:579 -#: netbox/virtualization/forms/bulk_edit.py:248 -#: netbox/virtualization/forms/model_forms.py:326 +#: dcim/forms/bulk_edit.py:1476 dcim/forms/model_forms.py:1360 +#: dcim/tables/devices.py:579 virtualization/forms/bulk_edit.py:248 +#: virtualization/forms/model_forms.py:326 msgid "Untagged VLAN" msgstr "VLAN Não Tagueada" -#: netbox/dcim/forms/bulk_edit.py:1484 netbox/dcim/forms/model_forms.py:1369 -#: netbox/dcim/tables/devices.py:585 -#: netbox/virtualization/forms/bulk_edit.py:256 -#: netbox/virtualization/forms/model_forms.py:335 +#: dcim/forms/bulk_edit.py:1484 dcim/forms/model_forms.py:1369 +#: dcim/tables/devices.py:585 virtualization/forms/bulk_edit.py:256 +#: virtualization/forms/model_forms.py:335 msgid "Tagged VLANs" msgstr "VLANs Tagueadas" -#: netbox/dcim/forms/bulk_edit.py:1494 netbox/dcim/forms/model_forms.py:1341 +#: dcim/forms/bulk_edit.py:1494 dcim/forms/model_forms.py:1341 msgid "Wireless LAN group" msgstr "Grupo da Rede Wireless" -#: netbox/dcim/forms/bulk_edit.py:1499 netbox/dcim/forms/model_forms.py:1346 -#: netbox/dcim/tables/devices.py:619 netbox/netbox/navigation/menu.py:146 -#: netbox/templates/dcim/interface.html:280 -#: netbox/wireless/tables/wirelesslan.py:24 +#: dcim/forms/bulk_edit.py:1499 dcim/forms/model_forms.py:1346 +#: dcim/tables/devices.py:619 netbox/navigation/menu.py:146 +#: templates/dcim/interface.html:280 wireless/tables/wirelesslan.py:24 msgid "Wireless LANs" msgstr "Redes Wireless" -#: netbox/dcim/forms/bulk_edit.py:1508 netbox/dcim/forms/filtersets.py:1328 -#: netbox/dcim/forms/model_forms.py:1390 netbox/ipam/forms/bulk_edit.py:285 -#: netbox/ipam/forms/bulk_edit.py:377 netbox/ipam/forms/filtersets.py:169 -#: netbox/templates/dcim/interface.html:122 -#: netbox/templates/ipam/prefix.html:95 -#: netbox/virtualization/forms/model_forms.py:349 +#: dcim/forms/bulk_edit.py:1508 dcim/forms/filtersets.py:1328 +#: dcim/forms/model_forms.py:1390 ipam/forms/bulk_edit.py:286 +#: ipam/forms/bulk_edit.py:378 ipam/forms/filtersets.py:169 +#: templates/dcim/interface.html:122 templates/ipam/prefix.html:95 +#: virtualization/forms/model_forms.py:349 msgid "Addressing" msgstr "Endereçamento" -#: netbox/dcim/forms/bulk_edit.py:1509 netbox/dcim/forms/filtersets.py:720 -#: netbox/dcim/forms/model_forms.py:1391 -#: netbox/virtualization/forms/model_forms.py:350 +#: dcim/forms/bulk_edit.py:1509 dcim/forms/filtersets.py:720 +#: dcim/forms/model_forms.py:1391 virtualization/forms/model_forms.py:350 msgid "Operation" msgstr "Operação" -#: netbox/dcim/forms/bulk_edit.py:1510 netbox/dcim/forms/filtersets.py:1329 -#: netbox/dcim/forms/model_forms.py:987 netbox/dcim/forms/model_forms.py:1393 +#: dcim/forms/bulk_edit.py:1510 dcim/forms/filtersets.py:1329 +#: dcim/forms/model_forms.py:987 dcim/forms/model_forms.py:1393 msgid "PoE" msgstr "PoE" -#: netbox/dcim/forms/bulk_edit.py:1511 netbox/dcim/forms/model_forms.py:1392 -#: netbox/templates/dcim/interface.html:99 -#: netbox/virtualization/forms/bulk_edit.py:267 -#: netbox/virtualization/forms/model_forms.py:351 +#: dcim/forms/bulk_edit.py:1511 dcim/forms/model_forms.py:1392 +#: templates/dcim/interface.html:99 virtualization/forms/bulk_edit.py:267 +#: virtualization/forms/model_forms.py:351 msgid "Related Interfaces" msgstr "Interfaces Relacionadas" -#: netbox/dcim/forms/bulk_edit.py:1512 netbox/dcim/forms/model_forms.py:1394 -#: netbox/virtualization/forms/bulk_edit.py:268 -#: netbox/virtualization/forms/model_forms.py:352 +#: dcim/forms/bulk_edit.py:1512 dcim/forms/model_forms.py:1394 +#: virtualization/forms/bulk_edit.py:268 +#: virtualization/forms/model_forms.py:352 msgid "802.1Q Switching" msgstr "Comutação 802.1Q" -#: netbox/dcim/forms/bulk_edit.py:1574 netbox/dcim/forms/bulk_edit.py:1576 +#: dcim/forms/bulk_edit.py:1574 dcim/forms/bulk_edit.py:1576 msgid "Interface mode must be specified to assign VLANs" msgstr "O modo de interface deve ser especificado para atribuir VLANs" -#: netbox/dcim/forms/bulk_edit.py:1581 netbox/dcim/forms/common.py:50 +#: dcim/forms/bulk_edit.py:1581 dcim/forms/common.py:50 msgid "An access interface cannot have tagged VLANs assigned." msgstr "Uma interface de acesso não pode ter VLANs tagueadas." -#: netbox/dcim/forms/bulk_import.py:64 +#: dcim/forms/bulk_import.py:64 msgid "Name of parent region" msgstr "Nome da região principal" -#: netbox/dcim/forms/bulk_import.py:78 +#: dcim/forms/bulk_import.py:78 msgid "Name of parent site group" msgstr "Nome do grupo de sites principais" -#: netbox/dcim/forms/bulk_import.py:97 +#: dcim/forms/bulk_import.py:97 msgid "Assigned region" msgstr "Região designada" -#: netbox/dcim/forms/bulk_import.py:104 netbox/tenancy/forms/bulk_import.py:44 -#: netbox/tenancy/forms/bulk_import.py:85 -#: netbox/wireless/forms/bulk_import.py:40 +#: dcim/forms/bulk_import.py:104 tenancy/forms/bulk_import.py:44 +#: tenancy/forms/bulk_import.py:85 wireless/forms/bulk_import.py:40 msgid "Assigned group" msgstr "Grupo designado" -#: netbox/dcim/forms/bulk_import.py:123 +#: dcim/forms/bulk_import.py:123 msgid "available options" msgstr "opções disponíveis" -#: netbox/dcim/forms/bulk_import.py:134 netbox/dcim/forms/bulk_import.py:543 -#: netbox/dcim/forms/bulk_import.py:1342 netbox/ipam/forms/bulk_import.py:175 -#: netbox/ipam/forms/bulk_import.py:433 -#: netbox/virtualization/forms/bulk_import.py:63 -#: netbox/virtualization/forms/bulk_import.py:89 +#: dcim/forms/bulk_import.py:134 dcim/forms/bulk_import.py:543 +#: dcim/forms/bulk_import.py:1342 ipam/forms/bulk_import.py:175 +#: ipam/forms/bulk_import.py:433 virtualization/forms/bulk_import.py:63 +#: virtualization/forms/bulk_import.py:89 msgid "Assigned site" msgstr "Site designado" -#: netbox/dcim/forms/bulk_import.py:141 +#: dcim/forms/bulk_import.py:141 msgid "Parent location" msgstr "Localização principal" -#: netbox/dcim/forms/bulk_import.py:143 +#: dcim/forms/bulk_import.py:143 msgid "Location not found." msgstr "Localização não encontrada." -#: netbox/dcim/forms/bulk_import.py:185 +#: dcim/forms/bulk_import.py:185 msgid "The manufacturer of this rack type" msgstr "Fabricante deste tipo de rack" -#: netbox/dcim/forms/bulk_import.py:196 +#: dcim/forms/bulk_import.py:196 msgid "The lowest-numbered position in the rack" msgstr "A numeração de posição mais baixa no rack" -#: netbox/dcim/forms/bulk_import.py:201 netbox/dcim/forms/bulk_import.py:268 +#: dcim/forms/bulk_import.py:201 dcim/forms/bulk_import.py:268 msgid "Rail-to-rail width (in inches)" msgstr "Largura de trilho a trilho (em polegadas)" -#: netbox/dcim/forms/bulk_import.py:207 netbox/dcim/forms/bulk_import.py:274 +#: dcim/forms/bulk_import.py:207 dcim/forms/bulk_import.py:274 msgid "Unit for outer dimensions" msgstr "Unidade para dimensões externas" -#: netbox/dcim/forms/bulk_import.py:213 netbox/dcim/forms/bulk_import.py:286 +#: dcim/forms/bulk_import.py:213 dcim/forms/bulk_import.py:286 msgid "Unit for rack weights" msgstr "Unidade de peso do rack" -#: netbox/dcim/forms/bulk_import.py:245 +#: dcim/forms/bulk_import.py:245 msgid "Name of assigned tenant" msgstr "Nome do inquilino designado" -#: netbox/dcim/forms/bulk_import.py:257 +#: dcim/forms/bulk_import.py:257 msgid "Name of assigned role" msgstr "Nome da função designada" -#: netbox/dcim/forms/bulk_import.py:280 netbox/dcim/forms/bulk_import.py:413 -#: netbox/dcim/forms/bulk_import.py:583 +#: dcim/forms/bulk_import.py:280 dcim/forms/bulk_import.py:413 +#: dcim/forms/bulk_import.py:583 msgid "Airflow direction" msgstr "Direção do fluxo de ar" -#: netbox/dcim/forms/bulk_import.py:312 +#: dcim/forms/bulk_import.py:312 msgid "Parent site" msgstr "Site principal" -#: netbox/dcim/forms/bulk_import.py:319 netbox/dcim/forms/bulk_import.py:1355 +#: dcim/forms/bulk_import.py:319 dcim/forms/bulk_import.py:1355 msgid "Rack's location (if any)" msgstr "Localização do rack (se houver)" -#: netbox/dcim/forms/bulk_import.py:328 netbox/dcim/forms/model_forms.py:311 -#: netbox/dcim/tables/racks.py:222 -#: netbox/templates/dcim/rackreservation.html:12 -#: netbox/templates/dcim/rackreservation.html:45 +#: dcim/forms/bulk_import.py:328 dcim/forms/model_forms.py:311 +#: dcim/tables/racks.py:222 templates/dcim/rackreservation.html:12 +#: templates/dcim/rackreservation.html:45 msgid "Units" msgstr "Unidades" -#: netbox/dcim/forms/bulk_import.py:331 +#: dcim/forms/bulk_import.py:331 msgid "Comma-separated list of individual unit numbers" msgstr "Lista separada por vírgula de unidades individuais" -#: netbox/dcim/forms/bulk_import.py:374 +#: dcim/forms/bulk_import.py:374 msgid "The manufacturer which produces this device type" msgstr "Fabricante que produz este tipo de dispositivo" -#: netbox/dcim/forms/bulk_import.py:381 +#: dcim/forms/bulk_import.py:381 msgid "The default platform for devices of this type (optional)" msgstr "A plataforma padrão para dispositivos deste tipo (opcional)" -#: netbox/dcim/forms/bulk_import.py:386 +#: dcim/forms/bulk_import.py:386 msgid "Device weight" msgstr "Peso do dispositivo" -#: netbox/dcim/forms/bulk_import.py:392 +#: dcim/forms/bulk_import.py:392 msgid "Unit for device weight" msgstr "Unidade de peso do dispositivo" -#: netbox/dcim/forms/bulk_import.py:418 +#: dcim/forms/bulk_import.py:418 msgid "Module weight" msgstr "Peso do módulo" -#: netbox/dcim/forms/bulk_import.py:424 +#: dcim/forms/bulk_import.py:424 msgid "Unit for module weight" msgstr "Unidade de peso do módulo" -#: netbox/dcim/forms/bulk_import.py:454 +#: dcim/forms/bulk_import.py:454 msgid "Limit platform assignments to this manufacturer" msgstr "Limitar as atribuições de plataforma a este fabricante" -#: netbox/dcim/forms/bulk_import.py:476 netbox/dcim/forms/bulk_import.py:1425 -#: netbox/tenancy/forms/bulk_import.py:106 +#: dcim/forms/bulk_import.py:476 dcim/forms/bulk_import.py:1425 +#: tenancy/forms/bulk_import.py:106 msgid "Assigned role" msgstr "Função designada" -#: netbox/dcim/forms/bulk_import.py:489 +#: dcim/forms/bulk_import.py:489 msgid "Device type manufacturer" msgstr "Fabricante do tipo de dispositivo" -#: netbox/dcim/forms/bulk_import.py:495 +#: dcim/forms/bulk_import.py:495 msgid "Device type model" msgstr "Modelo do tipo de dispositivo" -#: netbox/dcim/forms/bulk_import.py:502 -#: netbox/virtualization/forms/bulk_import.py:126 +#: dcim/forms/bulk_import.py:502 virtualization/forms/bulk_import.py:126 msgid "Assigned platform" msgstr "Plataforma designada" -#: netbox/dcim/forms/bulk_import.py:510 netbox/dcim/forms/bulk_import.py:514 -#: netbox/dcim/forms/model_forms.py:536 +#: dcim/forms/bulk_import.py:510 dcim/forms/bulk_import.py:514 +#: dcim/forms/model_forms.py:536 msgid "Virtual chassis" msgstr "Chassi virtual" -#: netbox/dcim/forms/bulk_import.py:517 netbox/dcim/forms/filtersets.py:728 -#: netbox/dcim/forms/filtersets.py:898 netbox/dcim/forms/model_forms.py:522 -#: netbox/dcim/tables/devices.py:202 netbox/extras/filtersets.py:596 -#: netbox/extras/forms/filtersets.py:322 netbox/ipam/forms/bulk_edit.py:482 -#: netbox/ipam/forms/filtersets.py:415 netbox/ipam/forms/filtersets.py:447 -#: netbox/templates/dcim/device.html:239 -#: netbox/templates/virtualization/cluster.html:10 -#: netbox/templates/virtualization/virtualmachine.html:92 -#: netbox/templates/virtualization/virtualmachine.html:101 -#: netbox/virtualization/filtersets.py:157 -#: netbox/virtualization/filtersets.py:277 -#: netbox/virtualization/forms/bulk_edit.py:129 -#: netbox/virtualization/forms/bulk_import.py:92 -#: netbox/virtualization/forms/filtersets.py:99 -#: netbox/virtualization/forms/filtersets.py:123 -#: netbox/virtualization/forms/filtersets.py:204 -#: netbox/virtualization/forms/model_forms.py:79 -#: netbox/virtualization/forms/model_forms.py:176 -#: netbox/virtualization/tables/virtualmachines.py:67 +#: dcim/forms/bulk_import.py:517 dcim/forms/filtersets.py:728 +#: dcim/forms/filtersets.py:898 dcim/forms/model_forms.py:522 +#: dcim/tables/devices.py:202 extras/filtersets.py:596 +#: extras/forms/filtersets.py:322 ipam/forms/filtersets.py:415 +#: ipam/forms/filtersets.py:447 templates/dcim/device.html:239 +#: templates/virtualization/cluster.html:10 +#: templates/virtualization/virtualmachine.html:92 +#: templates/virtualization/virtualmachine.html:101 +#: virtualization/filtersets.py:157 virtualization/filtersets.py:277 +#: virtualization/forms/bulk_edit.py:129 +#: virtualization/forms/bulk_import.py:92 +#: virtualization/forms/filtersets.py:99 +#: virtualization/forms/filtersets.py:123 +#: virtualization/forms/filtersets.py:204 +#: virtualization/forms/model_forms.py:79 +#: virtualization/forms/model_forms.py:176 +#: virtualization/tables/virtualmachines.py:67 msgid "Cluster" msgstr "Cluster" -#: netbox/dcim/forms/bulk_import.py:521 +#: dcim/forms/bulk_import.py:521 msgid "Virtualization cluster" msgstr "Cluster de virtualização" -#: netbox/dcim/forms/bulk_import.py:550 +#: dcim/forms/bulk_import.py:550 msgid "Assigned location (if any)" msgstr "Local designado (se houver)" -#: netbox/dcim/forms/bulk_import.py:557 +#: dcim/forms/bulk_import.py:557 msgid "Assigned rack (if any)" msgstr "Rack designado (se houver)" -#: netbox/dcim/forms/bulk_import.py:560 +#: dcim/forms/bulk_import.py:560 msgid "Face" msgstr "Face" -#: netbox/dcim/forms/bulk_import.py:563 +#: dcim/forms/bulk_import.py:563 msgid "Mounted rack face" msgstr "Face do rack em que está montado" -#: netbox/dcim/forms/bulk_import.py:570 +#: dcim/forms/bulk_import.py:570 msgid "Parent device (for child devices)" msgstr "Dispositivo pai (para dispositivos filhos)" -#: netbox/dcim/forms/bulk_import.py:573 +#: dcim/forms/bulk_import.py:573 msgid "Device bay" msgstr "Compartimento de dispositivos" -#: netbox/dcim/forms/bulk_import.py:577 +#: dcim/forms/bulk_import.py:577 msgid "Device bay in which this device is installed (for child devices)" msgstr "" "Compartimento de dispositivos no qual este dispositivo está instalado (para " "dispositivos filhos)" -#: netbox/dcim/forms/bulk_import.py:644 +#: dcim/forms/bulk_import.py:644 msgid "The device in which this module is installed" msgstr "O dispositivo no qual este módulo está instalado" -#: netbox/dcim/forms/bulk_import.py:647 netbox/dcim/forms/model_forms.py:640 +#: dcim/forms/bulk_import.py:647 dcim/forms/model_forms.py:640 msgid "Module bay" msgstr "Compartimento de módulo" -#: netbox/dcim/forms/bulk_import.py:650 +#: dcim/forms/bulk_import.py:650 msgid "The module bay in which this module is installed" msgstr "O compartimento no qual este módulo está instalado" -#: netbox/dcim/forms/bulk_import.py:656 +#: dcim/forms/bulk_import.py:656 msgid "The type of module" msgstr "O tipo de módulo" -#: netbox/dcim/forms/bulk_import.py:664 netbox/dcim/forms/model_forms.py:656 +#: dcim/forms/bulk_import.py:664 dcim/forms/model_forms.py:656 msgid "Replicate components" msgstr "Replicar componentes" -#: netbox/dcim/forms/bulk_import.py:666 +#: dcim/forms/bulk_import.py:666 msgid "" "Automatically populate components associated with this module type (enabled " "by default)" @@ -4343,273 +3950,266 @@ msgstr "" "Popular automaticamente os componentes associados a este tipo de módulo " "(ativado por padrão)" -#: netbox/dcim/forms/bulk_import.py:669 netbox/dcim/forms/model_forms.py:662 +#: dcim/forms/bulk_import.py:669 dcim/forms/model_forms.py:662 msgid "Adopt components" msgstr "Adotar componentes" -#: netbox/dcim/forms/bulk_import.py:671 netbox/dcim/forms/model_forms.py:665 +#: dcim/forms/bulk_import.py:671 dcim/forms/model_forms.py:665 msgid "Adopt already existing components" msgstr "Adotar componentes já existentes" -#: netbox/dcim/forms/bulk_import.py:711 netbox/dcim/forms/bulk_import.py:737 -#: netbox/dcim/forms/bulk_import.py:763 +#: dcim/forms/bulk_import.py:711 dcim/forms/bulk_import.py:737 +#: dcim/forms/bulk_import.py:763 msgid "Port type" msgstr "Tipo de porta" -#: netbox/dcim/forms/bulk_import.py:719 netbox/dcim/forms/bulk_import.py:745 +#: dcim/forms/bulk_import.py:719 dcim/forms/bulk_import.py:745 msgid "Port speed in bps" msgstr "Velocidade da porta em bps" -#: netbox/dcim/forms/bulk_import.py:783 +#: dcim/forms/bulk_import.py:783 msgid "Outlet type" msgstr "Tipo de tomada" -#: netbox/dcim/forms/bulk_import.py:790 +#: dcim/forms/bulk_import.py:790 msgid "Local power port which feeds this outlet" msgstr "Porta de alimentação local que alimenta esta tomada" -#: netbox/dcim/forms/bulk_import.py:796 +#: dcim/forms/bulk_import.py:796 msgid "Electrical phase (for three-phase circuits)" msgstr "Fase (para circuitos trifásicos)" -#: netbox/dcim/forms/bulk_import.py:837 netbox/dcim/forms/model_forms.py:1316 -#: netbox/virtualization/forms/bulk_import.py:155 -#: netbox/virtualization/forms/model_forms.py:305 +#: dcim/forms/bulk_import.py:837 dcim/forms/model_forms.py:1316 +#: virtualization/forms/bulk_import.py:155 +#: virtualization/forms/model_forms.py:305 msgid "Parent interface" msgstr "Interface pai" -#: netbox/dcim/forms/bulk_import.py:844 netbox/dcim/forms/model_forms.py:1324 -#: netbox/virtualization/forms/bulk_import.py:162 -#: netbox/virtualization/forms/model_forms.py:313 +#: dcim/forms/bulk_import.py:844 dcim/forms/model_forms.py:1324 +#: virtualization/forms/bulk_import.py:162 +#: virtualization/forms/model_forms.py:313 msgid "Bridged interface" msgstr "Interface bridged" -#: netbox/dcim/forms/bulk_import.py:847 +#: dcim/forms/bulk_import.py:847 msgid "Lag" msgstr "LAG" -#: netbox/dcim/forms/bulk_import.py:851 +#: dcim/forms/bulk_import.py:851 msgid "Parent LAG interface" msgstr "Interface LAG pai" -#: netbox/dcim/forms/bulk_import.py:854 +#: dcim/forms/bulk_import.py:854 msgid "Vdcs" msgstr "Contextos de Dispositivos Virtuais" -#: netbox/dcim/forms/bulk_import.py:859 +#: dcim/forms/bulk_import.py:859 msgid "VDC names separated by commas, encased with double quotes. Example:" msgstr "" "Nomes de contextos de dispositivos virtuais separados por vírgulas, entre " "aspas duplas. Exemplo:" -#: netbox/dcim/forms/bulk_import.py:865 +#: dcim/forms/bulk_import.py:865 msgid "Physical medium" msgstr "Meio físico" -#: netbox/dcim/forms/bulk_import.py:868 netbox/dcim/forms/filtersets.py:1365 +#: dcim/forms/bulk_import.py:868 dcim/forms/filtersets.py:1365 msgid "Duplex" msgstr "Duplex" -#: netbox/dcim/forms/bulk_import.py:873 +#: dcim/forms/bulk_import.py:873 msgid "Poe mode" msgstr "Modo de operação do PoE" -#: netbox/dcim/forms/bulk_import.py:879 +#: dcim/forms/bulk_import.py:879 msgid "Poe type" msgstr "Tipo de PoE" -#: netbox/dcim/forms/bulk_import.py:888 -#: netbox/virtualization/forms/bulk_import.py:168 +#: dcim/forms/bulk_import.py:888 virtualization/forms/bulk_import.py:168 msgid "IEEE 802.1Q operational mode (for L2 interfaces)" msgstr "Modo de operação do IEEE 802.1Q (para interfaces L2)" -#: netbox/dcim/forms/bulk_import.py:895 netbox/ipam/forms/bulk_import.py:161 -#: netbox/ipam/forms/bulk_import.py:247 netbox/ipam/forms/bulk_import.py:283 -#: netbox/ipam/forms/filtersets.py:201 netbox/ipam/forms/filtersets.py:277 -#: netbox/ipam/forms/filtersets.py:336 -#: netbox/virtualization/forms/bulk_import.py:175 +#: dcim/forms/bulk_import.py:895 ipam/forms/bulk_import.py:161 +#: ipam/forms/bulk_import.py:247 ipam/forms/bulk_import.py:283 +#: ipam/forms/filtersets.py:201 ipam/forms/filtersets.py:277 +#: ipam/forms/filtersets.py:336 virtualization/forms/bulk_import.py:175 msgid "Assigned VRF" msgstr "VRF designado" -#: netbox/dcim/forms/bulk_import.py:898 +#: dcim/forms/bulk_import.py:898 msgid "Rf role" msgstr "Função RF" -#: netbox/dcim/forms/bulk_import.py:901 +#: dcim/forms/bulk_import.py:901 msgid "Wireless role (AP/station)" msgstr "Função do Wireless (AP/Station)" -#: netbox/dcim/forms/bulk_import.py:937 +#: dcim/forms/bulk_import.py:937 #, python-brace-format msgid "VDC {vdc} is not assigned to device {device}" msgstr "" "Contexto de dispositivo virtual {vdc} não está associado ao dispositivo " "{device}" -#: netbox/dcim/forms/bulk_import.py:951 netbox/dcim/forms/model_forms.py:1000 -#: netbox/dcim/forms/model_forms.py:1575 -#: netbox/dcim/forms/object_import.py:117 +#: dcim/forms/bulk_import.py:951 dcim/forms/model_forms.py:1000 +#: dcim/forms/model_forms.py:1575 dcim/forms/object_import.py:117 msgid "Rear port" msgstr "Porta traseira" -#: netbox/dcim/forms/bulk_import.py:954 +#: dcim/forms/bulk_import.py:954 msgid "Corresponding rear port" msgstr "Porta traseira correspondente" -#: netbox/dcim/forms/bulk_import.py:959 netbox/dcim/forms/bulk_import.py:1000 -#: netbox/dcim/forms/bulk_import.py:1216 +#: dcim/forms/bulk_import.py:959 dcim/forms/bulk_import.py:1000 +#: dcim/forms/bulk_import.py:1216 msgid "Physical medium classification" msgstr "Tipo de conexão do meio físico" -#: netbox/dcim/forms/bulk_import.py:1028 netbox/dcim/tables/devices.py:822 +#: dcim/forms/bulk_import.py:1028 dcim/tables/devices.py:822 msgid "Installed device" msgstr "Dispositivo instalado" -#: netbox/dcim/forms/bulk_import.py:1032 +#: dcim/forms/bulk_import.py:1032 msgid "Child device installed within this bay" msgstr "Dispositivo filho instalado neste compartimento" -#: netbox/dcim/forms/bulk_import.py:1034 +#: dcim/forms/bulk_import.py:1034 msgid "Child device not found." msgstr "Dispositivo filho não encontrado." -#: netbox/dcim/forms/bulk_import.py:1092 +#: dcim/forms/bulk_import.py:1092 msgid "Parent inventory item" msgstr "Item pai do inventário" -#: netbox/dcim/forms/bulk_import.py:1095 +#: dcim/forms/bulk_import.py:1095 msgid "Component type" msgstr "Tipo de componente" -#: netbox/dcim/forms/bulk_import.py:1099 +#: dcim/forms/bulk_import.py:1099 msgid "Component Type" msgstr "Tipo de Componente" -#: netbox/dcim/forms/bulk_import.py:1102 +#: dcim/forms/bulk_import.py:1102 msgid "Compnent name" msgstr "Nome do componente" -#: netbox/dcim/forms/bulk_import.py:1104 +#: dcim/forms/bulk_import.py:1104 msgid "Component Name" msgstr "Nome do Componente" -#: netbox/dcim/forms/bulk_import.py:1146 +#: dcim/forms/bulk_import.py:1146 #, python-brace-format msgid "Component not found: {device} - {component_name}" msgstr "Componente não encontrado: {device} - {component_name}" -#: netbox/dcim/forms/bulk_import.py:1171 +#: dcim/forms/bulk_import.py:1171 msgid "Side A device" msgstr "Dispositivo no lado A" -#: netbox/dcim/forms/bulk_import.py:1174 netbox/dcim/forms/bulk_import.py:1192 +#: dcim/forms/bulk_import.py:1174 dcim/forms/bulk_import.py:1192 msgid "Device name" msgstr "Nome do dispositivo" -#: netbox/dcim/forms/bulk_import.py:1177 +#: dcim/forms/bulk_import.py:1177 msgid "Side A type" msgstr "Tipo de terminação no lado A" -#: netbox/dcim/forms/bulk_import.py:1180 netbox/dcim/forms/bulk_import.py:1198 +#: dcim/forms/bulk_import.py:1180 dcim/forms/bulk_import.py:1198 msgid "Termination type" msgstr "Tipo de terminação" -#: netbox/dcim/forms/bulk_import.py:1183 +#: dcim/forms/bulk_import.py:1183 msgid "Side A name" msgstr "Nome da terminação no lado A" -#: netbox/dcim/forms/bulk_import.py:1184 netbox/dcim/forms/bulk_import.py:1202 +#: dcim/forms/bulk_import.py:1184 dcim/forms/bulk_import.py:1202 msgid "Termination name" msgstr "Nome da terminação" -#: netbox/dcim/forms/bulk_import.py:1189 +#: dcim/forms/bulk_import.py:1189 msgid "Side B device" msgstr "Dispositivo no lado B" -#: netbox/dcim/forms/bulk_import.py:1195 +#: dcim/forms/bulk_import.py:1195 msgid "Side B type" msgstr "Tipo de terminação no lado B" -#: netbox/dcim/forms/bulk_import.py:1201 +#: dcim/forms/bulk_import.py:1201 msgid "Side B name" msgstr "Nome da terminação no lado B" -#: netbox/dcim/forms/bulk_import.py:1210 -#: netbox/wireless/forms/bulk_import.py:86 +#: dcim/forms/bulk_import.py:1210 wireless/forms/bulk_import.py:86 msgid "Connection status" msgstr "Status da conexão" -#: netbox/dcim/forms/bulk_import.py:1262 +#: dcim/forms/bulk_import.py:1262 #, python-brace-format msgid "Side {side_upper}: {device} {termination_object} is already connected" msgstr "Lado {side_upper}: {device} {termination_object} já está conectado" -#: netbox/dcim/forms/bulk_import.py:1268 +#: dcim/forms/bulk_import.py:1268 #, python-brace-format msgid "{side_upper} side termination not found: {device} {name}" msgstr " Terminação {side_upper} não encontrada: {device} {name}" -#: netbox/dcim/forms/bulk_import.py:1293 netbox/dcim/forms/model_forms.py:785 -#: netbox/dcim/tables/devices.py:1027 netbox/templates/dcim/device.html:132 -#: netbox/templates/dcim/virtualchassis.html:27 -#: netbox/templates/dcim/virtualchassis.html:67 +#: dcim/forms/bulk_import.py:1293 dcim/forms/model_forms.py:785 +#: dcim/tables/devices.py:1027 templates/dcim/device.html:132 +#: templates/dcim/virtualchassis.html:27 templates/dcim/virtualchassis.html:67 msgid "Master" msgstr "Mestre" -#: netbox/dcim/forms/bulk_import.py:1297 +#: dcim/forms/bulk_import.py:1297 msgid "Master device" msgstr "Dispositivo mestre" -#: netbox/dcim/forms/bulk_import.py:1314 +#: dcim/forms/bulk_import.py:1314 msgid "Name of parent site" msgstr "Nome do site principal" -#: netbox/dcim/forms/bulk_import.py:1348 +#: dcim/forms/bulk_import.py:1348 msgid "Upstream power panel" msgstr "Quadro de alimentação" -#: netbox/dcim/forms/bulk_import.py:1378 +#: dcim/forms/bulk_import.py:1378 msgid "Primary or redundant" msgstr "Primário ou redundante" -#: netbox/dcim/forms/bulk_import.py:1383 +#: dcim/forms/bulk_import.py:1383 msgid "Supply type (AC/DC)" msgstr "Tipo de alimentação (AC/DC)" -#: netbox/dcim/forms/bulk_import.py:1388 +#: dcim/forms/bulk_import.py:1388 msgid "Single or three-phase" msgstr "Monofásico ou trifásico" -#: netbox/dcim/forms/bulk_import.py:1439 netbox/dcim/forms/model_forms.py:1670 -#: netbox/templates/dcim/device.html:190 -#: netbox/templates/dcim/virtualdevicecontext.html:30 -#: netbox/templates/virtualization/virtualmachine.html:52 +#: dcim/forms/bulk_import.py:1439 dcim/forms/model_forms.py:1670 +#: templates/dcim/device.html:190 templates/dcim/virtualdevicecontext.html:30 +#: templates/virtualization/virtualmachine.html:52 msgid "Primary IPv4" msgstr "IPv4 Primário" -#: netbox/dcim/forms/bulk_import.py:1443 +#: dcim/forms/bulk_import.py:1443 msgid "IPv4 address with mask, e.g. 1.2.3.4/24" msgstr "Endereço IPv4 com máscara, por exemplo, 1.2.3.4/24" -#: netbox/dcim/forms/bulk_import.py:1446 netbox/dcim/forms/model_forms.py:1679 -#: netbox/templates/dcim/device.html:206 -#: netbox/templates/dcim/virtualdevicecontext.html:41 -#: netbox/templates/virtualization/virtualmachine.html:68 +#: dcim/forms/bulk_import.py:1446 dcim/forms/model_forms.py:1679 +#: templates/dcim/device.html:206 templates/dcim/virtualdevicecontext.html:41 +#: templates/virtualization/virtualmachine.html:68 msgid "Primary IPv6" msgstr "IPv6 Primário" -#: netbox/dcim/forms/bulk_import.py:1450 +#: dcim/forms/bulk_import.py:1450 msgid "IPv6 address with prefix length, e.g. 2001:db8::1/64" msgstr "Endereço IPv6 com tamanho de prefixo, por exemplo, 2001:db8: :1/64" -#: netbox/dcim/forms/common.py:24 netbox/dcim/models/device_components.py:527 -#: netbox/templates/dcim/interface.html:57 -#: netbox/templates/virtualization/vminterface.html:55 -#: netbox/virtualization/forms/bulk_edit.py:225 +#: dcim/forms/common.py:24 dcim/models/device_components.py:527 +#: templates/dcim/interface.html:57 +#: templates/virtualization/vminterface.html:55 +#: virtualization/forms/bulk_edit.py:225 msgid "MTU" msgstr "MTU" -#: netbox/dcim/forms/common.py:65 +#: dcim/forms/common.py:65 #, python-brace-format msgid "" "The tagged VLANs ({vlans}) must belong to the same site as the interface's " @@ -4618,7 +4218,7 @@ msgstr "" "As VLANs tagueadas ({vlans}) devem pertencer ao mesmo site do dispositivo/VM" " pai da interface ou devem ser globais." -#: netbox/dcim/forms/common.py:126 +#: dcim/forms/common.py:126 msgid "" "Cannot install module with placeholder values in a module bay with no " "position defined." @@ -4626,7 +4226,7 @@ msgstr "" "Não é possível instalar o módulo com valores de espaço reservado em um " "compartimento de módulo sem a sua posição definida." -#: netbox/dcim/forms/common.py:131 +#: dcim/forms/common.py:131 #, python-brace-format msgid "" "Cannot install module with placeholder values in a module bay tree {level} " @@ -4636,202 +4236,187 @@ msgstr "" "compartimento de módulos {level} na árvore, pois foram fornecidos {tokens} " "espaços reservados" -#: netbox/dcim/forms/common.py:144 +#: dcim/forms/common.py:144 #, python-brace-format msgid "Cannot adopt {model} {name} as it already belongs to a module" msgstr "Não é possível adotar {model} {name} pois já pertence a outro módulo." -#: netbox/dcim/forms/common.py:153 +#: dcim/forms/common.py:153 #, python-brace-format msgid "A {model} named {name} already exists" msgstr "Um {model} com nome {name} já existe." -#: netbox/dcim/forms/connections.py:49 netbox/dcim/forms/model_forms.py:738 -#: netbox/dcim/tables/power.py:66 -#: netbox/templates/dcim/inc/cable_termination.html:37 -#: netbox/templates/dcim/powerfeed.html:24 -#: netbox/templates/dcim/powerpanel.html:19 -#: netbox/templates/dcim/trace/powerpanel.html:4 +#: dcim/forms/connections.py:49 dcim/forms/model_forms.py:738 +#: dcim/tables/power.py:66 templates/dcim/inc/cable_termination.html:37 +#: templates/dcim/powerfeed.html:24 templates/dcim/powerpanel.html:19 +#: templates/dcim/trace/powerpanel.html:4 msgid "Power Panel" msgstr "Quadro de Alimentação" -#: netbox/dcim/forms/connections.py:58 netbox/dcim/forms/model_forms.py:765 -#: netbox/templates/dcim/powerfeed.html:21 -#: netbox/templates/dcim/powerport.html:80 +#: dcim/forms/connections.py:58 dcim/forms/model_forms.py:765 +#: templates/dcim/powerfeed.html:21 templates/dcim/powerport.html:80 msgid "Power Feed" msgstr "Fontes de Alimentação" -#: netbox/dcim/forms/connections.py:81 +#: dcim/forms/connections.py:81 msgid "Side" msgstr "Lado" -#: netbox/dcim/forms/filtersets.py:136 netbox/dcim/tables/devices.py:295 +#: dcim/forms/filtersets.py:136 dcim/tables/devices.py:295 msgid "Device Status" msgstr "Status do Dispositivo" -#: netbox/dcim/forms/filtersets.py:149 +#: dcim/forms/filtersets.py:149 msgid "Parent region" msgstr "Região principal" -#: netbox/dcim/forms/filtersets.py:163 netbox/tenancy/forms/bulk_import.py:28 -#: netbox/tenancy/forms/bulk_import.py:62 -#: netbox/tenancy/forms/filtersets.py:33 netbox/tenancy/forms/filtersets.py:62 -#: netbox/wireless/forms/bulk_import.py:25 -#: netbox/wireless/forms/filtersets.py:25 +#: dcim/forms/filtersets.py:163 tenancy/forms/bulk_import.py:28 +#: tenancy/forms/bulk_import.py:62 tenancy/forms/filtersets.py:33 +#: tenancy/forms/filtersets.py:62 wireless/forms/bulk_import.py:25 +#: wireless/forms/filtersets.py:25 msgid "Parent group" msgstr "Grupo principal" -#: netbox/dcim/forms/filtersets.py:242 netbox/templates/dcim/location.html:58 -#: netbox/templates/dcim/site.html:56 +#: dcim/forms/filtersets.py:242 templates/dcim/location.html:58 +#: templates/dcim/site.html:56 msgid "Facility" msgstr "Facility" -#: netbox/dcim/forms/filtersets.py:380 +#: dcim/forms/filtersets.py:380 msgid "Rack type" msgstr "Tipo de rack" -#: netbox/dcim/forms/filtersets.py:397 +#: dcim/forms/filtersets.py:397 msgid "Function" msgstr "Função" -#: netbox/dcim/forms/filtersets.py:483 netbox/dcim/forms/model_forms.py:373 -#: netbox/templates/inc/panels/image_attachments.html:6 +#: dcim/forms/filtersets.py:483 dcim/forms/model_forms.py:373 +#: templates/inc/panels/image_attachments.html:6 msgid "Images" msgstr "Imagens" -#: netbox/dcim/forms/filtersets.py:486 netbox/dcim/forms/filtersets.py:611 -#: netbox/dcim/forms/filtersets.py:726 +#: dcim/forms/filtersets.py:486 dcim/forms/filtersets.py:611 +#: dcim/forms/filtersets.py:726 msgid "Components" msgstr "Componentes" -#: netbox/dcim/forms/filtersets.py:506 +#: dcim/forms/filtersets.py:506 msgid "Subdevice role" msgstr "Função do subdispositivo" -#: netbox/dcim/forms/filtersets.py:790 netbox/dcim/tables/racks.py:54 -#: netbox/templates/dcim/racktype.html:20 +#: dcim/forms/filtersets.py:790 dcim/tables/racks.py:54 +#: templates/dcim/racktype.html:20 msgid "Model" msgstr "Modelo" -#: netbox/dcim/forms/filtersets.py:834 +#: dcim/forms/filtersets.py:834 msgid "Has an OOB IP" msgstr "Possui um IP fora de banda" -#: netbox/dcim/forms/filtersets.py:841 +#: dcim/forms/filtersets.py:841 msgid "Virtual chassis member" msgstr "Membro do chassi virtual" -#: netbox/dcim/forms/filtersets.py:890 +#: dcim/forms/filtersets.py:890 msgid "Has virtual device contexts" msgstr "Possui contextos de dispositivos virtuais" -#: netbox/dcim/forms/filtersets.py:903 netbox/extras/filtersets.py:585 -#: netbox/ipam/forms/bulk_edit.py:479 netbox/ipam/forms/filtersets.py:452 -#: netbox/virtualization/forms/filtersets.py:112 +#: dcim/forms/filtersets.py:903 extras/filtersets.py:585 +#: ipam/forms/filtersets.py:452 virtualization/forms/filtersets.py:112 msgid "Cluster group" msgstr "Grupo de clusters" -#: netbox/dcim/forms/filtersets.py:1210 +#: dcim/forms/filtersets.py:1210 msgid "Cabled" msgstr "Cabeado" -#: netbox/dcim/forms/filtersets.py:1217 +#: dcim/forms/filtersets.py:1217 msgid "Occupied" msgstr "Ocupado" -#: netbox/dcim/forms/filtersets.py:1244 netbox/dcim/forms/filtersets.py:1269 -#: netbox/dcim/forms/filtersets.py:1293 netbox/dcim/forms/filtersets.py:1313 -#: netbox/dcim/forms/filtersets.py:1336 netbox/dcim/tables/devices.py:364 -#: netbox/templates/dcim/consoleport.html:55 -#: netbox/templates/dcim/consoleserverport.html:55 -#: netbox/templates/dcim/frontport.html:69 -#: netbox/templates/dcim/interface.html:140 -#: netbox/templates/dcim/powerfeed.html:110 -#: netbox/templates/dcim/poweroutlet.html:59 -#: netbox/templates/dcim/powerport.html:59 -#: netbox/templates/dcim/rearport.html:65 +#: dcim/forms/filtersets.py:1244 dcim/forms/filtersets.py:1269 +#: dcim/forms/filtersets.py:1293 dcim/forms/filtersets.py:1313 +#: dcim/forms/filtersets.py:1336 dcim/tables/devices.py:364 +#: templates/dcim/consoleport.html:55 templates/dcim/consoleserverport.html:55 +#: templates/dcim/frontport.html:69 templates/dcim/interface.html:140 +#: templates/dcim/powerfeed.html:110 templates/dcim/poweroutlet.html:59 +#: templates/dcim/powerport.html:59 templates/dcim/rearport.html:65 msgid "Connection" msgstr "Conexão" -#: netbox/dcim/forms/filtersets.py:1348 netbox/extras/forms/bulk_edit.py:326 -#: netbox/extras/forms/bulk_import.py:247 -#: netbox/extras/forms/filtersets.py:464 -#: netbox/extras/forms/model_forms.py:675 netbox/extras/tables/tables.py:579 -#: netbox/templates/extras/journalentry.html:30 +#: dcim/forms/filtersets.py:1348 extras/forms/bulk_edit.py:326 +#: extras/forms/bulk_import.py:247 extras/forms/filtersets.py:464 +#: extras/forms/model_forms.py:675 extras/tables/tables.py:579 +#: templates/extras/journalentry.html:30 msgid "Kind" msgstr "Tipo" -#: netbox/dcim/forms/filtersets.py:1377 +#: dcim/forms/filtersets.py:1377 msgid "Mgmt only" msgstr "Somente gerenciamento" -#: netbox/dcim/forms/filtersets.py:1389 netbox/dcim/forms/model_forms.py:1383 -#: netbox/dcim/models/device_components.py:629 -#: netbox/templates/dcim/interface.html:129 +#: dcim/forms/filtersets.py:1389 dcim/forms/model_forms.py:1383 +#: dcim/models/device_components.py:629 templates/dcim/interface.html:129 msgid "WWN" msgstr "WWN" -#: netbox/dcim/forms/filtersets.py:1409 +#: dcim/forms/filtersets.py:1409 msgid "Wireless channel" msgstr "Canal do Wireless" -#: netbox/dcim/forms/filtersets.py:1413 +#: dcim/forms/filtersets.py:1413 msgid "Channel frequency (MHz)" msgstr "Frequência do canal (MHz)" -#: netbox/dcim/forms/filtersets.py:1417 +#: dcim/forms/filtersets.py:1417 msgid "Channel width (MHz)" msgstr "Largura do canal (MHz)" -#: netbox/dcim/forms/filtersets.py:1421 -#: netbox/templates/dcim/interface.html:85 +#: dcim/forms/filtersets.py:1421 templates/dcim/interface.html:85 msgid "Transmit power (dBm)" msgstr "Potência de transmissão (dBm)" -#: netbox/dcim/forms/filtersets.py:1446 netbox/dcim/forms/filtersets.py:1471 -#: netbox/dcim/tables/devices.py:327 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:50 -#: netbox/templates/dcim/inc/connection_endpoints.html:4 -#: netbox/templates/dcim/rearport.html:73 -#: netbox/templates/dcim/trace/cable.html:7 +#: dcim/forms/filtersets.py:1446 dcim/forms/filtersets.py:1471 +#: dcim/tables/devices.py:327 templates/dcim/cable.html:12 +#: templates/dcim/cable_trace.html:46 templates/dcim/frontport.html:77 +#: templates/dcim/htmx/cable_edit.html:50 +#: templates/dcim/inc/connection_endpoints.html:4 +#: templates/dcim/rearport.html:73 templates/dcim/trace/cable.html:7 msgid "Cable" msgstr "Cabo" -#: netbox/dcim/forms/filtersets.py:1550 netbox/dcim/tables/devices.py:949 +#: dcim/forms/filtersets.py:1550 dcim/tables/devices.py:949 msgid "Discovered" msgstr "Descoberto" -#: netbox/dcim/forms/formsets.py:20 +#: dcim/forms/formsets.py:20 #, python-brace-format msgid "A virtual chassis member already exists in position {vc_position}." msgstr "Já existe um membro no chassi virtual na posição {vc_position}." -#: netbox/dcim/forms/model_forms.py:140 +#: dcim/forms/model_forms.py:140 msgid "Contact Info" msgstr "Informações de Contato" -#: netbox/dcim/forms/model_forms.py:195 netbox/templates/dcim/rackrole.html:19 +#: dcim/forms/model_forms.py:195 templates/dcim/rackrole.html:19 msgid "Rack Role" msgstr "Função do Rack" -#: netbox/dcim/forms/model_forms.py:212 netbox/dcim/forms/model_forms.py:362 -#: netbox/dcim/forms/model_forms.py:446 -#: netbox/utilities/forms/fields/fields.py:47 +#: dcim/forms/model_forms.py:212 dcim/forms/model_forms.py:362 +#: dcim/forms/model_forms.py:446 utilities/forms/fields/fields.py:47 msgid "Slug" msgstr "Slug" -#: netbox/dcim/forms/model_forms.py:259 +#: dcim/forms/model_forms.py:259 msgid "Select a pre-defined rack type, or set physical characteristics below." msgstr "" "Selecione um tipo pré-definido de rack, ou ajuste as características abaixo." -#: netbox/dcim/forms/model_forms.py:265 +#: dcim/forms/model_forms.py:265 msgid "Inventory Control" msgstr "Controle de Inventário" -#: netbox/dcim/forms/model_forms.py:313 +#: dcim/forms/model_forms.py:313 msgid "" "Comma-separated list of numeric unit IDs. A range may be specified using a " "hyphen." @@ -4839,162 +4424,145 @@ msgstr "" "Lista separada por vírgulas de números de IDs. Um intervalo pode ser " "especificado usando hífen." -#: netbox/dcim/forms/model_forms.py:322 netbox/dcim/tables/racks.py:202 +#: dcim/forms/model_forms.py:322 dcim/tables/racks.py:202 msgid "Reservation" msgstr "Reserva" -#: netbox/dcim/forms/model_forms.py:423 -#: netbox/templates/dcim/devicerole.html:23 +#: dcim/forms/model_forms.py:423 templates/dcim/devicerole.html:23 msgid "Device Role" msgstr "Função do Dispositivo" -#: netbox/dcim/forms/model_forms.py:490 netbox/dcim/models/devices.py:644 +#: dcim/forms/model_forms.py:490 dcim/models/devices.py:644 msgid "The lowest-numbered unit occupied by the device" msgstr "A unidade mais baixa ocupada pelo dispositivo" -#: netbox/dcim/forms/model_forms.py:547 +#: dcim/forms/model_forms.py:547 msgid "The position in the virtual chassis this device is identified by" msgstr "A posição no chassi virtual pela qual este dispositivo é identificado" -#: netbox/dcim/forms/model_forms.py:552 +#: dcim/forms/model_forms.py:552 msgid "The priority of the device in the virtual chassis" msgstr "A prioridade do dispositivo no chassi virtual" -#: netbox/dcim/forms/model_forms.py:659 +#: dcim/forms/model_forms.py:659 msgid "Automatically populate components associated with this module type" msgstr "" "Popular automaticamente os componentes associados a este tipo de módulo" -#: netbox/dcim/forms/model_forms.py:767 +#: dcim/forms/model_forms.py:767 msgid "Characteristics" msgstr "Características" -#: netbox/dcim/forms/model_forms.py:1087 +#: dcim/forms/model_forms.py:1087 msgid "Console port template" msgstr "Modelo da porta de console" -#: netbox/dcim/forms/model_forms.py:1095 +#: dcim/forms/model_forms.py:1095 msgid "Console server port template" msgstr "Modelo da porta do servidor de console" -#: netbox/dcim/forms/model_forms.py:1103 +#: dcim/forms/model_forms.py:1103 msgid "Front port template" msgstr "Modelo da porta frontal" -#: netbox/dcim/forms/model_forms.py:1111 +#: dcim/forms/model_forms.py:1111 msgid "Interface template" msgstr "Modelo da interface" -#: netbox/dcim/forms/model_forms.py:1119 +#: dcim/forms/model_forms.py:1119 msgid "Power outlet template" msgstr "Modelo da tomada elétrica" -#: netbox/dcim/forms/model_forms.py:1127 +#: dcim/forms/model_forms.py:1127 msgid "Power port template" msgstr "Modelo da porta de alimentação" -#: netbox/dcim/forms/model_forms.py:1135 +#: dcim/forms/model_forms.py:1135 msgid "Rear port template" msgstr "Modelo da porta traseira" -#: netbox/dcim/forms/model_forms.py:1144 netbox/dcim/forms/model_forms.py:1388 -#: netbox/dcim/forms/model_forms.py:1551 netbox/dcim/forms/model_forms.py:1583 -#: netbox/dcim/tables/connections.py:65 netbox/ipam/forms/bulk_import.py:318 -#: netbox/ipam/forms/model_forms.py:280 netbox/ipam/forms/model_forms.py:289 -#: netbox/ipam/tables/fhrp.py:64 netbox/ipam/tables/ip.py:372 -#: netbox/ipam/tables/vlans.py:169 -#: netbox/templates/circuits/inc/circuit_termination_fields.html:51 -#: netbox/templates/dcim/frontport.html:106 -#: netbox/templates/dcim/interface.html:27 -#: netbox/templates/dcim/interface.html:184 -#: netbox/templates/dcim/interface.html:310 -#: netbox/templates/dcim/rearport.html:102 -#: netbox/templates/virtualization/vminterface.html:18 -#: netbox/templates/vpn/tunneltermination.html:31 -#: netbox/templates/wireless/inc/wirelesslink_interface.html:10 -#: netbox/templates/wireless/wirelesslink.html:10 -#: netbox/templates/wireless/wirelesslink.html:55 -#: netbox/virtualization/forms/model_forms.py:348 -#: netbox/vpn/forms/bulk_import.py:297 netbox/vpn/forms/model_forms.py:436 -#: netbox/vpn/forms/model_forms.py:445 -#: netbox/wireless/forms/model_forms.py:113 -#: netbox/wireless/forms/model_forms.py:155 +#: dcim/forms/model_forms.py:1144 dcim/forms/model_forms.py:1388 +#: dcim/forms/model_forms.py:1551 dcim/forms/model_forms.py:1583 +#: dcim/tables/connections.py:65 ipam/forms/bulk_import.py:318 +#: ipam/forms/model_forms.py:280 ipam/forms/model_forms.py:289 +#: ipam/tables/fhrp.py:64 ipam/tables/ip.py:372 ipam/tables/vlans.py:169 +#: templates/circuits/inc/circuit_termination_fields.html:51 +#: templates/dcim/frontport.html:106 templates/dcim/interface.html:27 +#: templates/dcim/interface.html:184 templates/dcim/interface.html:310 +#: templates/dcim/rearport.html:102 +#: templates/virtualization/vminterface.html:18 +#: templates/vpn/tunneltermination.html:31 +#: templates/wireless/inc/wirelesslink_interface.html:10 +#: templates/wireless/wirelesslink.html:10 +#: templates/wireless/wirelesslink.html:55 +#: virtualization/forms/model_forms.py:348 vpn/forms/bulk_import.py:297 +#: vpn/forms/model_forms.py:436 vpn/forms/model_forms.py:445 +#: wireless/forms/model_forms.py:113 wireless/forms/model_forms.py:155 msgid "Interface" msgstr "Interface" -#: netbox/dcim/forms/model_forms.py:1145 netbox/dcim/forms/model_forms.py:1584 -#: netbox/dcim/tables/connections.py:27 -#: netbox/templates/dcim/consoleport.html:17 -#: netbox/templates/dcim/consoleserverport.html:74 -#: netbox/templates/dcim/frontport.html:112 +#: dcim/forms/model_forms.py:1145 dcim/forms/model_forms.py:1584 +#: dcim/tables/connections.py:27 templates/dcim/consoleport.html:17 +#: templates/dcim/consoleserverport.html:74 templates/dcim/frontport.html:112 msgid "Console Port" msgstr "Porta de Console" -#: netbox/dcim/forms/model_forms.py:1146 netbox/dcim/forms/model_forms.py:1585 -#: netbox/templates/dcim/consoleport.html:73 -#: netbox/templates/dcim/consoleserverport.html:17 -#: netbox/templates/dcim/frontport.html:109 +#: dcim/forms/model_forms.py:1146 dcim/forms/model_forms.py:1585 +#: templates/dcim/consoleport.html:73 templates/dcim/consoleserverport.html:17 +#: templates/dcim/frontport.html:109 msgid "Console Server Port" msgstr "Porta do Servidor de Console" -#: netbox/dcim/forms/model_forms.py:1147 netbox/dcim/forms/model_forms.py:1586 -#: netbox/templates/circuits/inc/circuit_termination_fields.html:52 -#: netbox/templates/dcim/consoleport.html:76 -#: netbox/templates/dcim/consoleserverport.html:77 -#: netbox/templates/dcim/frontport.html:17 -#: netbox/templates/dcim/frontport.html:115 -#: netbox/templates/dcim/interface.html:187 -#: netbox/templates/dcim/rearport.html:105 +#: dcim/forms/model_forms.py:1147 dcim/forms/model_forms.py:1586 +#: templates/circuits/inc/circuit_termination_fields.html:52 +#: templates/dcim/consoleport.html:76 templates/dcim/consoleserverport.html:77 +#: templates/dcim/frontport.html:17 templates/dcim/frontport.html:115 +#: templates/dcim/interface.html:187 templates/dcim/rearport.html:105 msgid "Front Port" msgstr "Porta Frontal" -#: netbox/dcim/forms/model_forms.py:1148 netbox/dcim/forms/model_forms.py:1587 -#: netbox/dcim/tables/devices.py:710 -#: netbox/templates/circuits/inc/circuit_termination_fields.html:53 -#: netbox/templates/dcim/consoleport.html:79 -#: netbox/templates/dcim/consoleserverport.html:80 -#: netbox/templates/dcim/frontport.html:50 -#: netbox/templates/dcim/frontport.html:118 -#: netbox/templates/dcim/interface.html:190 -#: netbox/templates/dcim/rearport.html:17 -#: netbox/templates/dcim/rearport.html:108 +#: dcim/forms/model_forms.py:1148 dcim/forms/model_forms.py:1587 +#: dcim/tables/devices.py:710 +#: templates/circuits/inc/circuit_termination_fields.html:53 +#: templates/dcim/consoleport.html:79 templates/dcim/consoleserverport.html:80 +#: templates/dcim/frontport.html:50 templates/dcim/frontport.html:118 +#: templates/dcim/interface.html:190 templates/dcim/rearport.html:17 +#: templates/dcim/rearport.html:108 msgid "Rear Port" msgstr "Porta Traseira" -#: netbox/dcim/forms/model_forms.py:1149 netbox/dcim/forms/model_forms.py:1588 -#: netbox/dcim/tables/connections.py:46 netbox/dcim/tables/devices.py:512 -#: netbox/templates/dcim/poweroutlet.html:44 -#: netbox/templates/dcim/powerport.html:17 +#: dcim/forms/model_forms.py:1149 dcim/forms/model_forms.py:1588 +#: dcim/tables/connections.py:46 dcim/tables/devices.py:512 +#: templates/dcim/poweroutlet.html:44 templates/dcim/powerport.html:17 msgid "Power Port" msgstr "Porta de Alimentação" -#: netbox/dcim/forms/model_forms.py:1150 netbox/dcim/forms/model_forms.py:1589 -#: netbox/templates/dcim/poweroutlet.html:17 -#: netbox/templates/dcim/powerport.html:77 +#: dcim/forms/model_forms.py:1150 dcim/forms/model_forms.py:1589 +#: templates/dcim/poweroutlet.html:17 templates/dcim/powerport.html:77 msgid "Power Outlet" msgstr "Tomada Elétrica" -#: netbox/dcim/forms/model_forms.py:1152 netbox/dcim/forms/model_forms.py:1591 +#: dcim/forms/model_forms.py:1152 dcim/forms/model_forms.py:1591 msgid "Component Assignment" msgstr "Atribuição de Componentes" -#: netbox/dcim/forms/model_forms.py:1195 netbox/dcim/forms/model_forms.py:1638 +#: dcim/forms/model_forms.py:1195 dcim/forms/model_forms.py:1638 msgid "An InventoryItem can only be assigned to a single component." msgstr "Um item de inventário só pode ser associado a um único componente." -#: netbox/dcim/forms/model_forms.py:1332 +#: dcim/forms/model_forms.py:1332 msgid "LAG interface" msgstr "Interface LAG" -#: netbox/dcim/forms/model_forms.py:1355 +#: dcim/forms/model_forms.py:1355 msgid "Filter VLANs available for assignment by group." msgstr "Filtre as VLANs disponíveis para atribuição por grupo." -#: netbox/dcim/forms/model_forms.py:1484 +#: dcim/forms/model_forms.py:1484 msgid "Child Device" msgstr "Dispositivo Filho" -#: netbox/dcim/forms/model_forms.py:1485 +#: dcim/forms/model_forms.py:1485 msgid "" "Child devices must first be created and assigned to the site and rack of the" " parent device." @@ -5002,35 +4570,32 @@ msgstr "" "Os dispositivos filhos devem primeiro ser criados e atribuídos ao site e ao " "rack do dispositivo pai." -#: netbox/dcim/forms/model_forms.py:1527 +#: dcim/forms/model_forms.py:1527 msgid "Console port" msgstr "Porta de console" -#: netbox/dcim/forms/model_forms.py:1535 +#: dcim/forms/model_forms.py:1535 msgid "Console server port" msgstr "Porta do servidor de console" -#: netbox/dcim/forms/model_forms.py:1543 +#: dcim/forms/model_forms.py:1543 msgid "Front port" msgstr "Porta frontal" -#: netbox/dcim/forms/model_forms.py:1559 +#: dcim/forms/model_forms.py:1559 msgid "Power outlet" msgstr "Tomada elétrica" -#: netbox/dcim/forms/model_forms.py:1579 -#: netbox/templates/dcim/inventoryitem.html:17 +#: dcim/forms/model_forms.py:1579 templates/dcim/inventoryitem.html:17 msgid "Inventory Item" msgstr "Item de Inventário" -#: netbox/dcim/forms/model_forms.py:1652 -#: netbox/templates/dcim/inventoryitemrole.html:15 +#: dcim/forms/model_forms.py:1652 templates/dcim/inventoryitemrole.html:15 msgid "Inventory Item Role" msgstr "Função do Item de Inventário" -#: netbox/dcim/forms/object_create.py:48 -#: netbox/dcim/forms/object_create.py:199 -#: netbox/dcim/forms/object_create.py:355 +#: dcim/forms/object_create.py:48 dcim/forms/object_create.py:199 +#: dcim/forms/object_create.py:355 msgid "" "Alphanumeric ranges are supported. (Must match the number of objects being " "created.)" @@ -5038,7 +4603,7 @@ msgstr "" "Intervalos alfanuméricos são suportados. (Deve corresponder ao número de " "objetos a serem criados.)" -#: netbox/dcim/forms/object_create.py:68 +#: dcim/forms/object_create.py:68 #, python-brace-format msgid "" "The provided pattern specifies {value_count} values, but {pattern_count} are" @@ -5047,19 +4612,18 @@ msgstr "" "O padrão fornecido especifica {value_count} valores, mas {pattern_count} são" " esperados." -#: netbox/dcim/forms/object_create.py:110 -#: netbox/dcim/forms/object_create.py:271 netbox/dcim/tables/devices.py:252 +#: dcim/forms/object_create.py:110 dcim/forms/object_create.py:271 +#: dcim/tables/devices.py:252 msgid "Rear ports" msgstr "Portas traseiras" -#: netbox/dcim/forms/object_create.py:111 -#: netbox/dcim/forms/object_create.py:272 +#: dcim/forms/object_create.py:111 dcim/forms/object_create.py:272 msgid "Select one rear port assignment for each front port being created." msgstr "" "Selecione uma atribuição de porta traseira para cada porta frontal que está " "sendo criada." -#: netbox/dcim/forms/object_create.py:164 +#: dcim/forms/object_create.py:164 #, python-brace-format msgid "" "The number of front port templates to be created ({frontport_count}) must " @@ -5069,7 +4633,7 @@ msgstr "" "deve corresponder ao número selecionado de posições dE porta traseira " "({rearport_count})." -#: netbox/dcim/forms/object_create.py:251 +#: dcim/forms/object_create.py:251 #, python-brace-format msgid "" "The string {module} will be replaced with the position of the " @@ -5078,7 +4642,7 @@ msgstr "" "A string {module} será substituída pela posição do módulo " "designado, se houver." -#: netbox/dcim/forms/object_create.py:320 +#: dcim/forms/object_create.py:320 #, python-brace-format msgid "" "The number of front ports to be created ({frontport_count}) must match the " @@ -5088,18 +4652,17 @@ msgstr "" "corresponder ao número selecionado de posições de portas traseiras " "({rearport_count})." -#: netbox/dcim/forms/object_create.py:409 netbox/dcim/tables/devices.py:1033 -#: netbox/ipam/tables/fhrp.py:31 netbox/templates/dcim/virtualchassis.html:53 -#: netbox/templates/dcim/virtualchassis_edit.html:47 -#: netbox/templates/ipam/fhrpgroup.html:38 +#: dcim/forms/object_create.py:409 dcim/tables/devices.py:1033 +#: ipam/tables/fhrp.py:31 templates/dcim/virtualchassis.html:53 +#: templates/dcim/virtualchassis_edit.html:47 templates/ipam/fhrpgroup.html:38 msgid "Members" msgstr "Membros" -#: netbox/dcim/forms/object_create.py:418 +#: dcim/forms/object_create.py:418 msgid "Initial position" msgstr "Posição inicial" -#: netbox/dcim/forms/object_create.py:421 +#: dcim/forms/object_create.py:421 msgid "" "Position of the first member device. Increases by one for each additional " "member." @@ -5107,70 +4670,68 @@ msgstr "" "Posição do primeiro dispositivo membro. Aumenta em um para cada membro " "adicional." -#: netbox/dcim/forms/object_create.py:435 +#: dcim/forms/object_create.py:435 msgid "A position must be specified for the first VC member." msgstr "" "Uma posição deve ser especificada para o primeiro membro do chassi virtual." -#: netbox/dcim/models/cables.py:62 -#: netbox/dcim/models/device_component_templates.py:55 -#: netbox/dcim/models/device_components.py:62 -#: netbox/extras/models/customfields.py:111 +#: dcim/models/cables.py:62 dcim/models/device_component_templates.py:55 +#: dcim/models/device_components.py:62 extras/models/customfields.py:111 msgid "label" msgstr "rótulo" -#: netbox/dcim/models/cables.py:71 +#: dcim/models/cables.py:71 msgid "length" msgstr "comprimento" -#: netbox/dcim/models/cables.py:78 +#: dcim/models/cables.py:78 msgid "length unit" msgstr "unidade de comprimento" -#: netbox/dcim/models/cables.py:95 +#: dcim/models/cables.py:95 msgid "cable" msgstr "cabo" -#: netbox/dcim/models/cables.py:96 +#: dcim/models/cables.py:96 msgid "cables" msgstr "cabos" -#: netbox/dcim/models/cables.py:165 +#: dcim/models/cables.py:165 msgid "Must specify a unit when setting a cable length" msgstr "Deve especificar uma unidade ao definir o comprimento do cabo" -#: netbox/dcim/models/cables.py:168 +#: dcim/models/cables.py:168 msgid "Must define A and B terminations when creating a new cable." msgstr "Terminações A e B devem ser definidas ao criar um novo cabo." -#: netbox/dcim/models/cables.py:175 +#: dcim/models/cables.py:175 msgid "Cannot connect different termination types to same end of cable." msgstr "" "Não é possível conectar diferentes tipos de terminação à mesma extremidade " "do cabo." -#: netbox/dcim/models/cables.py:183 +#: dcim/models/cables.py:183 #, python-brace-format msgid "Incompatible termination types: {type_a} and {type_b}" msgstr "Tipos de terminações incompatíveis: {type_a} e {type_b}" -#: netbox/dcim/models/cables.py:193 +#: dcim/models/cables.py:193 msgid "A and B terminations cannot connect to the same object." msgstr "As terminações A e B não podem se conectar ao mesmo objeto." -#: netbox/dcim/models/cables.py:260 netbox/ipam/models/asns.py:37 +#: dcim/models/cables.py:260 ipam/models/asns.py:37 msgid "end" msgstr "fim" -#: netbox/dcim/models/cables.py:313 +#: dcim/models/cables.py:313 msgid "cable termination" msgstr "terminação de cabo" -#: netbox/dcim/models/cables.py:314 +#: dcim/models/cables.py:314 msgid "cable terminations" msgstr "terminações de cabos" -#: netbox/dcim/models/cables.py:333 +#: dcim/models/cables.py:333 #, python-brace-format msgid "" "Duplicate termination found for {app_label}.{model} {termination_id}: cable " @@ -5179,38 +4740,38 @@ msgstr "" "Terminação duplicada encontrada para {app_label}.{model} {termination_id}: " "cabo {cable_pk}" -#: netbox/dcim/models/cables.py:343 +#: dcim/models/cables.py:343 #, python-brace-format msgid "Cables cannot be terminated to {type_display} interfaces" msgstr "Os cabos não podem ser terminados em interfaces {type_display}" -#: netbox/dcim/models/cables.py:350 +#: dcim/models/cables.py:350 msgid "Circuit terminations attached to a provider network may not be cabled." msgstr "" "As terminações de circuito conectadas a uma rede de provedor não podem ser " "cabeadas." -#: netbox/dcim/models/cables.py:448 netbox/extras/models/configs.py:50 +#: dcim/models/cables.py:448 extras/models/configs.py:50 msgid "is active" msgstr "está ativo" -#: netbox/dcim/models/cables.py:452 +#: dcim/models/cables.py:452 msgid "is complete" msgstr "está completo" -#: netbox/dcim/models/cables.py:456 +#: dcim/models/cables.py:456 msgid "is split" msgstr "é dividido" -#: netbox/dcim/models/cables.py:464 +#: dcim/models/cables.py:464 msgid "cable path" msgstr "caminho do cabo" -#: netbox/dcim/models/cables.py:465 +#: dcim/models/cables.py:465 msgid "cable paths" msgstr "caminhos do cabos" -#: netbox/dcim/models/device_component_templates.py:46 +#: dcim/models/device_component_templates.py:46 #, python-brace-format msgid "" "{module} is accepted as a substitution for the module bay position when " @@ -5219,18 +4780,18 @@ msgstr "" "{module} é aceito como substituto para a posição do compartimento do módulo " "quando conectado a um tipo de módulo." -#: netbox/dcim/models/device_component_templates.py:58 -#: netbox/dcim/models/device_components.py:65 +#: dcim/models/device_component_templates.py:58 +#: dcim/models/device_components.py:65 msgid "Physical label" msgstr "Rótulo físico" -#: netbox/dcim/models/device_component_templates.py:103 +#: dcim/models/device_component_templates.py:103 msgid "Component templates cannot be moved to a different device type." msgstr "" "Os modelos de componentes não podem ser movidos para um tipo diferente de " "dispositivo." -#: netbox/dcim/models/device_component_templates.py:154 +#: dcim/models/device_component_templates.py:154 msgid "" "A component template cannot be associated with both a device type and a " "module type." @@ -5238,7 +4799,7 @@ msgstr "" "Um modelo de componente não pode ser associado a um tipo de dispositivo e " "módulo ao mesmo tempo." -#: netbox/dcim/models/device_component_templates.py:158 +#: dcim/models/device_component_templates.py:158 msgid "" "A component template must be associated with either a device type or a " "module type." @@ -5246,138 +4807,138 @@ msgstr "" "Um modelo de componente deve estar associado a um tipo de dispositivo ou a " "um tipo de módulo." -#: netbox/dcim/models/device_component_templates.py:212 +#: dcim/models/device_component_templates.py:212 msgid "console port template" msgstr "modelo de porta de console" -#: netbox/dcim/models/device_component_templates.py:213 +#: dcim/models/device_component_templates.py:213 msgid "console port templates" msgstr "modelos de porta de console" -#: netbox/dcim/models/device_component_templates.py:246 +#: dcim/models/device_component_templates.py:246 msgid "console server port template" msgstr "modelo de porta de servidor de console" -#: netbox/dcim/models/device_component_templates.py:247 +#: dcim/models/device_component_templates.py:247 msgid "console server port templates" msgstr "modelos de porta de servidor de console" -#: netbox/dcim/models/device_component_templates.py:278 -#: netbox/dcim/models/device_components.py:352 +#: dcim/models/device_component_templates.py:278 +#: dcim/models/device_components.py:352 msgid "maximum draw" msgstr "consumo máximo" -#: netbox/dcim/models/device_component_templates.py:285 -#: netbox/dcim/models/device_components.py:359 +#: dcim/models/device_component_templates.py:285 +#: dcim/models/device_components.py:359 msgid "allocated draw" msgstr "consumo alocado" -#: netbox/dcim/models/device_component_templates.py:295 +#: dcim/models/device_component_templates.py:295 msgid "power port template" msgstr "modelo de porta de alimentação" -#: netbox/dcim/models/device_component_templates.py:296 +#: dcim/models/device_component_templates.py:296 msgid "power port templates" msgstr "modelos de porta de alimentação" -#: netbox/dcim/models/device_component_templates.py:315 -#: netbox/dcim/models/device_components.py:382 +#: dcim/models/device_component_templates.py:315 +#: dcim/models/device_components.py:382 #, python-brace-format msgid "Allocated draw cannot exceed the maximum draw ({maximum_draw}W)." msgstr "" "O consumo alocado não pode exceder o consumo máximo ({maximum_draw}W)." -#: netbox/dcim/models/device_component_templates.py:347 -#: netbox/dcim/models/device_components.py:477 +#: dcim/models/device_component_templates.py:347 +#: dcim/models/device_components.py:477 msgid "feed leg" msgstr "ramal de alimentação" -#: netbox/dcim/models/device_component_templates.py:351 -#: netbox/dcim/models/device_components.py:481 +#: dcim/models/device_component_templates.py:351 +#: dcim/models/device_components.py:481 msgid "Phase (for three-phase feeds)" msgstr "Fase (para alimentação trifásica)" -#: netbox/dcim/models/device_component_templates.py:357 +#: dcim/models/device_component_templates.py:357 msgid "power outlet template" msgstr "modelo de tomada elétrica" -#: netbox/dcim/models/device_component_templates.py:358 +#: dcim/models/device_component_templates.py:358 msgid "power outlet templates" msgstr "modelos de tomadas elétricas" -#: netbox/dcim/models/device_component_templates.py:367 +#: dcim/models/device_component_templates.py:367 #, python-brace-format msgid "Parent power port ({power_port}) must belong to the same device type" msgstr "" "Porta de alimentação principal ({power_port}) deve pertencer ao mesmo tipo " "de dispositivo" -#: netbox/dcim/models/device_component_templates.py:371 +#: dcim/models/device_component_templates.py:371 #, python-brace-format msgid "Parent power port ({power_port}) must belong to the same module type" msgstr "" "Porta de alimentação principal ({power_port}) deve pertencer ao mesmo tipo " "de módulo" -#: netbox/dcim/models/device_component_templates.py:423 -#: netbox/dcim/models/device_components.py:611 +#: dcim/models/device_component_templates.py:423 +#: dcim/models/device_components.py:611 msgid "management only" msgstr "somente gerenciamento" -#: netbox/dcim/models/device_component_templates.py:431 -#: netbox/dcim/models/device_components.py:550 +#: dcim/models/device_component_templates.py:431 +#: dcim/models/device_components.py:550 msgid "bridge interface" msgstr "interface bridge" -#: netbox/dcim/models/device_component_templates.py:449 -#: netbox/dcim/models/device_components.py:636 +#: dcim/models/device_component_templates.py:449 +#: dcim/models/device_components.py:636 msgid "wireless role" msgstr "função do wireless" -#: netbox/dcim/models/device_component_templates.py:455 +#: dcim/models/device_component_templates.py:455 msgid "interface template" msgstr "modelo de interface" -#: netbox/dcim/models/device_component_templates.py:456 +#: dcim/models/device_component_templates.py:456 msgid "interface templates" msgstr "modelos de interface" -#: netbox/dcim/models/device_component_templates.py:463 -#: netbox/dcim/models/device_components.py:804 -#: netbox/virtualization/models/virtualmachines.py:405 +#: dcim/models/device_component_templates.py:463 +#: dcim/models/device_components.py:804 +#: virtualization/models/virtualmachines.py:405 msgid "An interface cannot be bridged to itself." msgstr "Uma interface não pode ser conectada a si mesma." -#: netbox/dcim/models/device_component_templates.py:466 +#: dcim/models/device_component_templates.py:466 #, python-brace-format msgid "Bridge interface ({bridge}) must belong to the same device type" msgstr "" "Interface bridge ({bridge}) deve pertencer ao mesmo tipo de dispositivo" -#: netbox/dcim/models/device_component_templates.py:470 +#: dcim/models/device_component_templates.py:470 #, python-brace-format msgid "Bridge interface ({bridge}) must belong to the same module type" msgstr "Interface bridge ({bridge}) deve pertencer ao mesmo tipo de módulo" -#: netbox/dcim/models/device_component_templates.py:526 -#: netbox/dcim/models/device_components.py:984 +#: dcim/models/device_component_templates.py:526 +#: dcim/models/device_components.py:984 msgid "rear port position" msgstr "posição da porta traseira" -#: netbox/dcim/models/device_component_templates.py:551 +#: dcim/models/device_component_templates.py:551 msgid "front port template" msgstr "modelo de porta frontal" -#: netbox/dcim/models/device_component_templates.py:552 +#: dcim/models/device_component_templates.py:552 msgid "front port templates" msgstr "modelos de porta frontal" -#: netbox/dcim/models/device_component_templates.py:562 +#: dcim/models/device_component_templates.py:562 #, python-brace-format msgid "Rear port ({name}) must belong to the same device type" msgstr "Porta traseira ({name}) deve pertencer ao mesmo tipo de dispositivo" -#: netbox/dcim/models/device_component_templates.py:568 +#: dcim/models/device_component_templates.py:568 #, python-brace-format msgid "" "Invalid rear port position ({position}); rear port {name} has only {count} " @@ -5386,46 +4947,46 @@ msgstr "" "Posição inválida da porta traseira ({position}); porta traseira {name} tem " "apenas {count} posições" -#: netbox/dcim/models/device_component_templates.py:621 -#: netbox/dcim/models/device_components.py:1053 +#: dcim/models/device_component_templates.py:621 +#: dcim/models/device_components.py:1053 msgid "positions" msgstr "posições" -#: netbox/dcim/models/device_component_templates.py:632 +#: dcim/models/device_component_templates.py:632 msgid "rear port template" msgstr "modelo de porta traseira" -#: netbox/dcim/models/device_component_templates.py:633 +#: dcim/models/device_component_templates.py:633 msgid "rear port templates" msgstr "modelos de porta traseira" -#: netbox/dcim/models/device_component_templates.py:662 -#: netbox/dcim/models/device_components.py:1103 +#: dcim/models/device_component_templates.py:662 +#: dcim/models/device_components.py:1103 msgid "position" msgstr "posição" -#: netbox/dcim/models/device_component_templates.py:665 -#: netbox/dcim/models/device_components.py:1106 +#: dcim/models/device_component_templates.py:665 +#: dcim/models/device_components.py:1106 msgid "Identifier to reference when renaming installed components" msgstr "Identificador a ser referenciado ao renomear componentes instalados" -#: netbox/dcim/models/device_component_templates.py:671 +#: dcim/models/device_component_templates.py:671 msgid "module bay template" msgstr "modelo de compartimento de módulo" -#: netbox/dcim/models/device_component_templates.py:672 +#: dcim/models/device_component_templates.py:672 msgid "module bay templates" msgstr "modelos de compartimento de módulos" -#: netbox/dcim/models/device_component_templates.py:699 +#: dcim/models/device_component_templates.py:699 msgid "device bay template" msgstr "modelo de compartimento de dispositivos" -#: netbox/dcim/models/device_component_templates.py:700 +#: dcim/models/device_component_templates.py:700 msgid "device bay templates" msgstr "modelos de compartimentos de dispositivos" -#: netbox/dcim/models/device_component_templates.py:713 +#: dcim/models/device_component_templates.py:713 #, python-brace-format msgid "" "Subdevice role of device type ({device_type}) must be set to \"parent\" to " @@ -5434,207 +4995,202 @@ msgstr "" "Função do subdispositivo do tipo {device_type} deve ser definido como “pai” " "para permitir compartimentos de dispositivos." -#: netbox/dcim/models/device_component_templates.py:768 -#: netbox/dcim/models/device_components.py:1262 +#: dcim/models/device_component_templates.py:768 +#: dcim/models/device_components.py:1262 msgid "part ID" msgstr "ID da peça" -#: netbox/dcim/models/device_component_templates.py:770 -#: netbox/dcim/models/device_components.py:1264 +#: dcim/models/device_component_templates.py:770 +#: dcim/models/device_components.py:1264 msgid "Manufacturer-assigned part identifier" msgstr "Identificador da peça, designado pelo fabricante" -#: netbox/dcim/models/device_component_templates.py:787 +#: dcim/models/device_component_templates.py:787 msgid "inventory item template" msgstr "modelo de item de inventário" -#: netbox/dcim/models/device_component_templates.py:788 +#: dcim/models/device_component_templates.py:788 msgid "inventory item templates" msgstr "modelos de itens de inventário" -#: netbox/dcim/models/device_components.py:105 +#: dcim/models/device_components.py:105 msgid "Components cannot be moved to a different device." msgstr "Os componentes não podem ser movidos para um dispositivo diferente." -#: netbox/dcim/models/device_components.py:144 +#: dcim/models/device_components.py:144 msgid "cable end" msgstr "extremidade do cabo" -#: netbox/dcim/models/device_components.py:150 +#: dcim/models/device_components.py:150 msgid "mark connected" msgstr "marcar conectado" -#: netbox/dcim/models/device_components.py:152 +#: dcim/models/device_components.py:152 msgid "Treat as if a cable is connected" msgstr "Tratar como se um cabo estivesse conectado" -#: netbox/dcim/models/device_components.py:170 +#: dcim/models/device_components.py:170 msgid "Must specify cable end (A or B) when attaching a cable." msgstr "Deve especificar a extremidade (A ou B) ao conectar um cabo." -#: netbox/dcim/models/device_components.py:174 +#: dcim/models/device_components.py:174 msgid "Cable end must not be set without a cable." msgstr "A extremidade do cabo não deve ser definida sem um cabo." -#: netbox/dcim/models/device_components.py:178 +#: dcim/models/device_components.py:178 msgid "Cannot mark as connected with a cable attached." msgstr "Não é possível marcar como conectado com um cabo já conectado." -#: netbox/dcim/models/device_components.py:202 +#: dcim/models/device_components.py:202 #, python-brace-format msgid "{class_name} models must declare a parent_object property" msgstr " Os modelos {class_name} devem declarar uma propriedade parent_object" -#: netbox/dcim/models/device_components.py:287 -#: netbox/dcim/models/device_components.py:316 -#: netbox/dcim/models/device_components.py:349 -#: netbox/dcim/models/device_components.py:467 +#: dcim/models/device_components.py:287 dcim/models/device_components.py:316 +#: dcim/models/device_components.py:349 dcim/models/device_components.py:467 msgid "Physical port type" msgstr "Tipo de porta física" -#: netbox/dcim/models/device_components.py:290 -#: netbox/dcim/models/device_components.py:319 +#: dcim/models/device_components.py:290 dcim/models/device_components.py:319 msgid "speed" msgstr "velocidade" -#: netbox/dcim/models/device_components.py:294 -#: netbox/dcim/models/device_components.py:323 +#: dcim/models/device_components.py:294 dcim/models/device_components.py:323 msgid "Port speed in bits per second" msgstr "Velocidade da porta em bits por segundo" -#: netbox/dcim/models/device_components.py:300 +#: dcim/models/device_components.py:300 msgid "console port" msgstr "porta de console" -#: netbox/dcim/models/device_components.py:301 +#: dcim/models/device_components.py:301 msgid "console ports" msgstr "portas de console" -#: netbox/dcim/models/device_components.py:329 +#: dcim/models/device_components.py:329 msgid "console server port" msgstr "porta de servidor de console" -#: netbox/dcim/models/device_components.py:330 +#: dcim/models/device_components.py:330 msgid "console server ports" msgstr "portas de servidor de console" -#: netbox/dcim/models/device_components.py:369 +#: dcim/models/device_components.py:369 msgid "power port" msgstr "porta de alimentação" -#: netbox/dcim/models/device_components.py:370 +#: dcim/models/device_components.py:370 msgid "power ports" msgstr "portas de alimentação" -#: netbox/dcim/models/device_components.py:487 +#: dcim/models/device_components.py:487 msgid "power outlet" msgstr "tomada elétrica" -#: netbox/dcim/models/device_components.py:488 +#: dcim/models/device_components.py:488 msgid "power outlets" msgstr "tomadas elétricas" -#: netbox/dcim/models/device_components.py:499 +#: dcim/models/device_components.py:499 #, python-brace-format msgid "Parent power port ({power_port}) must belong to the same device" msgstr "" "Porta de alimentação principal ({power_port}) deve pertencer ao mesmo " "dispositivo" -#: netbox/dcim/models/device_components.py:530 netbox/vpn/models/crypto.py:81 -#: netbox/vpn/models/crypto.py:226 +#: dcim/models/device_components.py:530 vpn/models/crypto.py:81 +#: vpn/models/crypto.py:226 msgid "mode" msgstr "modo" -#: netbox/dcim/models/device_components.py:534 +#: dcim/models/device_components.py:534 msgid "IEEE 802.1Q tagging strategy" msgstr "Estratégia de tagueamento IEEE 802.1Q" -#: netbox/dcim/models/device_components.py:542 +#: dcim/models/device_components.py:542 msgid "parent interface" msgstr "interface pai" -#: netbox/dcim/models/device_components.py:602 +#: dcim/models/device_components.py:602 msgid "parent LAG" msgstr "LAG pai" -#: netbox/dcim/models/device_components.py:612 +#: dcim/models/device_components.py:612 msgid "This interface is used only for out-of-band management" msgstr "Esta interface é usada somente para gerenciamento fora de banda" -#: netbox/dcim/models/device_components.py:617 +#: dcim/models/device_components.py:617 msgid "speed (Kbps)" msgstr "velocidade (Kbps)" -#: netbox/dcim/models/device_components.py:620 +#: dcim/models/device_components.py:620 msgid "duplex" msgstr "duplex" -#: netbox/dcim/models/device_components.py:630 +#: dcim/models/device_components.py:630 msgid "64-bit World Wide Name" msgstr "64-bit World Wide Name" -#: netbox/dcim/models/device_components.py:642 +#: dcim/models/device_components.py:642 msgid "wireless channel" msgstr "canal do wireless" -#: netbox/dcim/models/device_components.py:649 +#: dcim/models/device_components.py:649 msgid "channel frequency (MHz)" msgstr "frequência do canal (MHz)" -#: netbox/dcim/models/device_components.py:650 -#: netbox/dcim/models/device_components.py:658 +#: dcim/models/device_components.py:650 dcim/models/device_components.py:658 msgid "Populated by selected channel (if set)" msgstr "Preenchido pelo canal selecionado (se definido)" -#: netbox/dcim/models/device_components.py:664 +#: dcim/models/device_components.py:664 msgid "transmit power (dBm)" msgstr "potência de transmissão (dBm)" -#: netbox/dcim/models/device_components.py:689 netbox/wireless/models.py:117 +#: dcim/models/device_components.py:689 wireless/models.py:117 msgid "wireless LANs" msgstr "redes wireless" -#: netbox/dcim/models/device_components.py:697 -#: netbox/virtualization/models/virtualmachines.py:335 +#: dcim/models/device_components.py:697 +#: virtualization/models/virtualmachines.py:335 msgid "untagged VLAN" msgstr "VLAN não tagueada" -#: netbox/dcim/models/device_components.py:703 -#: netbox/virtualization/models/virtualmachines.py:341 +#: dcim/models/device_components.py:703 +#: virtualization/models/virtualmachines.py:341 msgid "tagged VLANs" msgstr "VLANs tagueadas" -#: netbox/dcim/models/device_components.py:745 -#: netbox/virtualization/models/virtualmachines.py:377 +#: dcim/models/device_components.py:745 +#: virtualization/models/virtualmachines.py:377 msgid "interface" msgstr "interface" -#: netbox/dcim/models/device_components.py:746 -#: netbox/virtualization/models/virtualmachines.py:378 +#: dcim/models/device_components.py:746 +#: virtualization/models/virtualmachines.py:378 msgid "interfaces" msgstr "interfaces" -#: netbox/dcim/models/device_components.py:757 +#: dcim/models/device_components.py:757 #, python-brace-format msgid "{display_type} interfaces cannot have a cable attached." msgstr "As interfaces {display_type} não podem ter um cabo conectado." -#: netbox/dcim/models/device_components.py:765 +#: dcim/models/device_components.py:765 #, python-brace-format msgid "{display_type} interfaces cannot be marked as connected." msgstr " As interfaces {display_type}não podem ser marcadas como conectadas." -#: netbox/dcim/models/device_components.py:774 -#: netbox/virtualization/models/virtualmachines.py:390 +#: dcim/models/device_components.py:774 +#: virtualization/models/virtualmachines.py:390 msgid "An interface cannot be its own parent." msgstr "Uma interface não pode ser pai de si mesma." -#: netbox/dcim/models/device_components.py:778 +#: dcim/models/device_components.py:778 msgid "Only virtual interfaces may be assigned to a parent interface." msgstr "Somente interfaces virtuais podem ser associadas a uma interface pai." -#: netbox/dcim/models/device_components.py:785 +#: dcim/models/device_components.py:785 #, python-brace-format msgid "" "The selected parent interface ({interface}) belongs to a different device " @@ -5643,7 +5199,7 @@ msgstr "" "A interface pai selecionada ({interface}) pertence a um dispositivo " "diferente ({device})" -#: netbox/dcim/models/device_components.py:791 +#: dcim/models/device_components.py:791 #, python-brace-format msgid "" "The selected parent interface ({interface}) belongs to {device}, which is " @@ -5652,7 +5208,7 @@ msgstr "" "A interface pai selecionada ({interface}) pertence a {device}, que não faz " "parte do chassi virtual {virtual_chassis}." -#: netbox/dcim/models/device_components.py:811 +#: dcim/models/device_components.py:811 #, python-brace-format msgid "" "The selected bridge interface ({bridge}) belongs to a different device " @@ -5661,7 +5217,7 @@ msgstr "" "A interface bridge selecionada ({bridge}) pertence a um dispositivo " "diferente ({device})." -#: netbox/dcim/models/device_components.py:817 +#: dcim/models/device_components.py:817 #, python-brace-format msgid "" "The selected bridge interface ({interface}) belongs to {device}, which is " @@ -5670,15 +5226,15 @@ msgstr "" "A interface bridge selecionada ({interface}) pertence a {device}, que não " "faz parte do chassi virtual {virtual_chassis}." -#: netbox/dcim/models/device_components.py:828 +#: dcim/models/device_components.py:828 msgid "Virtual interfaces cannot have a parent LAG interface." msgstr "Interfaces virtuais não podem ter uma interface LAG pai." -#: netbox/dcim/models/device_components.py:832 +#: dcim/models/device_components.py:832 msgid "A LAG interface cannot be its own parent." msgstr "Uma interface LAG não pode ser pai de si mesma." -#: netbox/dcim/models/device_components.py:839 +#: dcim/models/device_components.py:839 #, python-brace-format msgid "" "The selected LAG interface ({lag}) belongs to a different device ({device})." @@ -5686,7 +5242,7 @@ msgstr "" "A interface LAG selecionada ({lag}) pertence a um dispositivo diferente " "({device})." -#: netbox/dcim/models/device_components.py:845 +#: dcim/models/device_components.py:845 #, python-brace-format msgid "" "The selected LAG interface ({lag}) belongs to {device}, which is not part of" @@ -5695,48 +5251,48 @@ msgstr "" "A interface LAG selecionada ({lag}) pertence a {device}, que não faz parte " "do chassi virtual {virtual_chassis}." -#: netbox/dcim/models/device_components.py:856 +#: dcim/models/device_components.py:856 msgid "Virtual interfaces cannot have a PoE mode." msgstr "Interfaces virtuais não podem ter um modo de operação do PoE." -#: netbox/dcim/models/device_components.py:860 +#: dcim/models/device_components.py:860 msgid "Virtual interfaces cannot have a PoE type." msgstr "As interfaces virtuais não podem ter um tipo de PoE." -#: netbox/dcim/models/device_components.py:866 +#: dcim/models/device_components.py:866 msgid "Must specify PoE mode when designating a PoE type." msgstr "Deve especificar o modo PoE ao designar um tipo de PoE." -#: netbox/dcim/models/device_components.py:873 +#: dcim/models/device_components.py:873 msgid "Wireless role may be set only on wireless interfaces." msgstr "" "A função do wireless pode ser definida somente em interfaces wireless." -#: netbox/dcim/models/device_components.py:875 +#: dcim/models/device_components.py:875 msgid "Channel may be set only on wireless interfaces." msgstr "O canal pode ser configurado somente em interfaces wireless." -#: netbox/dcim/models/device_components.py:881 +#: dcim/models/device_components.py:881 msgid "Channel frequency may be set only on wireless interfaces." msgstr "" "A frequência do canal pode ser definida somente em interfaces wireless." -#: netbox/dcim/models/device_components.py:885 +#: dcim/models/device_components.py:885 msgid "Cannot specify custom frequency with channel selected." msgstr "" "Não é possível especificar a frequência personalizada com o canal " "selecionado." -#: netbox/dcim/models/device_components.py:891 +#: dcim/models/device_components.py:891 msgid "Channel width may be set only on wireless interfaces." msgstr "A largura do canal pode ser definida somente em interfaces wireless." -#: netbox/dcim/models/device_components.py:893 +#: dcim/models/device_components.py:893 msgid "Cannot specify custom width with channel selected." msgstr "" "Não é possível especificar a largura personalizada com o canal selecionado." -#: netbox/dcim/models/device_components.py:901 +#: dcim/models/device_components.py:901 #, python-brace-format msgid "" "The untagged VLAN ({untagged_vlan}) must belong to the same site as the " @@ -5745,24 +5301,24 @@ msgstr "" "A VLAN não tagueada ({untagged_vlan}) deve pertencer ao mesmo site do " "dispositivo pai da interface ou deve ser global." -#: netbox/dcim/models/device_components.py:990 +#: dcim/models/device_components.py:990 msgid "Mapped position on corresponding rear port" msgstr "Posição mapeada na porta traseira correspondente" -#: netbox/dcim/models/device_components.py:1006 +#: dcim/models/device_components.py:1006 msgid "front port" msgstr "porta frontal" -#: netbox/dcim/models/device_components.py:1007 +#: dcim/models/device_components.py:1007 msgid "front ports" msgstr "portas frontais" -#: netbox/dcim/models/device_components.py:1021 +#: dcim/models/device_components.py:1021 #, python-brace-format msgid "Rear port ({rear_port}) must belong to the same device" msgstr "Porta traseira ({rear_port}) deve pertencer ao mesmo dispositivo" -#: netbox/dcim/models/device_components.py:1029 +#: dcim/models/device_components.py:1029 #, python-brace-format msgid "" "Invalid rear port position ({rear_port_position}): Rear port {name} has only" @@ -5771,19 +5327,19 @@ msgstr "" "Posição inválida da porta traseira ({rear_port_position}): Porta traseira " "{name} tem apenas {positions} posições." -#: netbox/dcim/models/device_components.py:1059 +#: dcim/models/device_components.py:1059 msgid "Number of front ports which may be mapped" msgstr "Número de portas frontais que podem ser mapeadas" -#: netbox/dcim/models/device_components.py:1064 +#: dcim/models/device_components.py:1064 msgid "rear port" msgstr "porta traseira" -#: netbox/dcim/models/device_components.py:1065 +#: dcim/models/device_components.py:1065 msgid "rear ports" msgstr "portas traseiras" -#: netbox/dcim/models/device_components.py:1079 +#: dcim/models/device_components.py:1079 #, python-brace-format msgid "" "The number of positions cannot be less than the number of mapped front ports" @@ -5792,41 +5348,40 @@ msgstr "" "O número de posições não pode ser menor que o número de portas frontais " "mapeadas ({frontport_count})" -#: netbox/dcim/models/device_components.py:1120 +#: dcim/models/device_components.py:1120 msgid "module bay" msgstr "compartimento de módulos" -#: netbox/dcim/models/device_components.py:1121 +#: dcim/models/device_components.py:1121 msgid "module bays" msgstr "compartimentos de módulos" -#: netbox/dcim/models/device_components.py:1138 -#: netbox/dcim/models/devices.py:1224 +#: dcim/models/device_components.py:1138 dcim/models/devices.py:1224 msgid "A module bay cannot belong to a module installed within it." msgstr "" "Um compartimento de módulo não pode pertencer a um módulo instalado dentro " "dele." -#: netbox/dcim/models/device_components.py:1164 +#: dcim/models/device_components.py:1164 msgid "device bay" msgstr "compartimento de dispositivos" -#: netbox/dcim/models/device_components.py:1165 +#: dcim/models/device_components.py:1165 msgid "device bays" msgstr "compartimentos de dispositivos" -#: netbox/dcim/models/device_components.py:1175 +#: dcim/models/device_components.py:1175 #, python-brace-format msgid "This type of device ({device_type}) does not support device bays." msgstr "" "Este tipo de dispositivo ({device_type}) não suporta compartimentos de " "dispositivos." -#: netbox/dcim/models/device_components.py:1181 +#: dcim/models/device_components.py:1181 msgid "Cannot install a device into itself." msgstr "Não é possível instalar um dispositivo em si mesmo." -#: netbox/dcim/models/device_components.py:1189 +#: dcim/models/device_components.py:1189 #, python-brace-format msgid "" "Cannot install the specified device; device is already installed in {bay}." @@ -5834,117 +5389,115 @@ msgstr "" "Não é possível instalar o dispositivo especificado; o dispositivo já está " "instalado em {bay}." -#: netbox/dcim/models/device_components.py:1210 +#: dcim/models/device_components.py:1210 msgid "inventory item role" msgstr "função do item de inventário" -#: netbox/dcim/models/device_components.py:1211 +#: dcim/models/device_components.py:1211 msgid "inventory item roles" msgstr "funções dos itens de inventário" -#: netbox/dcim/models/device_components.py:1268 -#: netbox/dcim/models/devices.py:607 netbox/dcim/models/devices.py:1181 -#: netbox/dcim/models/racks.py:313 -#: netbox/virtualization/models/virtualmachines.py:131 +#: dcim/models/device_components.py:1268 dcim/models/devices.py:607 +#: dcim/models/devices.py:1181 dcim/models/racks.py:313 +#: virtualization/models/virtualmachines.py:131 msgid "serial number" msgstr "número de série" -#: netbox/dcim/models/device_components.py:1276 -#: netbox/dcim/models/devices.py:615 netbox/dcim/models/devices.py:1188 -#: netbox/dcim/models/racks.py:320 +#: dcim/models/device_components.py:1276 dcim/models/devices.py:615 +#: dcim/models/devices.py:1188 dcim/models/racks.py:320 msgid "asset tag" msgstr "etiqueta de patrimônio" -#: netbox/dcim/models/device_components.py:1277 +#: dcim/models/device_components.py:1277 msgid "A unique tag used to identify this item" msgstr "Uma etiqueta exclusiva usada para identificar este item" -#: netbox/dcim/models/device_components.py:1280 +#: dcim/models/device_components.py:1280 msgid "discovered" msgstr "descoberto" -#: netbox/dcim/models/device_components.py:1282 +#: dcim/models/device_components.py:1282 msgid "This item was automatically discovered" msgstr "Este item foi descoberto automaticamente" -#: netbox/dcim/models/device_components.py:1300 +#: dcim/models/device_components.py:1300 msgid "inventory item" msgstr "item de inventário" -#: netbox/dcim/models/device_components.py:1301 +#: dcim/models/device_components.py:1301 msgid "inventory items" msgstr "itens de inventário" -#: netbox/dcim/models/device_components.py:1312 +#: dcim/models/device_components.py:1312 msgid "Cannot assign self as parent." msgstr "Não é possível designar a si mesmo como pai." -#: netbox/dcim/models/device_components.py:1320 +#: dcim/models/device_components.py:1320 msgid "Parent inventory item does not belong to the same device." msgstr "O item pai do inventário não pertence ao mesmo dispositivo." -#: netbox/dcim/models/device_components.py:1326 +#: dcim/models/device_components.py:1326 msgid "Cannot move an inventory item with dependent children" msgstr "" "Não é possível mover um item de inventário com itens filhos dependentes" -#: netbox/dcim/models/device_components.py:1334 +#: dcim/models/device_components.py:1334 msgid "Cannot assign inventory item to component on another device" msgstr "" "Não é possível atribuir um item de inventário ao componente em outro " "dispositivo" -#: netbox/dcim/models/devices.py:54 +#: dcim/models/devices.py:54 msgid "manufacturer" msgstr "fabricante" -#: netbox/dcim/models/devices.py:55 +#: dcim/models/devices.py:55 msgid "manufacturers" msgstr "fabricantes" -#: netbox/dcim/models/devices.py:82 netbox/dcim/models/devices.py:382 -#: netbox/dcim/models/racks.py:133 +#: dcim/models/devices.py:82 dcim/models/devices.py:382 +#: dcim/models/racks.py:133 msgid "model" msgstr "modelo" -#: netbox/dcim/models/devices.py:95 +#: dcim/models/devices.py:95 msgid "default platform" msgstr "plataforma padrão" -#: netbox/dcim/models/devices.py:98 netbox/dcim/models/devices.py:386 +#: dcim/models/devices.py:98 dcim/models/devices.py:386 msgid "part number" msgstr "part number" -#: netbox/dcim/models/devices.py:101 netbox/dcim/models/devices.py:389 +#: dcim/models/devices.py:101 dcim/models/devices.py:389 msgid "Discrete part number (optional)" msgstr "Part number discreto (opcional)" -#: netbox/dcim/models/devices.py:107 netbox/dcim/models/racks.py:54 +#: dcim/models/devices.py:107 dcim/models/racks.py:54 msgid "height (U)" msgstr "altura (U)" -#: netbox/dcim/models/devices.py:111 +#: dcim/models/devices.py:111 msgid "exclude from utilization" msgstr "excluir da utilização" -#: netbox/dcim/models/devices.py:112 +#: dcim/models/devices.py:112 msgid "Devices of this type are excluded when calculating rack utilization." msgstr "" "Dispositivos deste tipo são excluídos ao calcular a utilização do rack." -#: netbox/dcim/models/devices.py:116 +#: dcim/models/devices.py:116 msgid "is full depth" msgstr "é full-depth" -#: netbox/dcim/models/devices.py:117 +#: dcim/models/devices.py:117 msgid "Device consumes both front and rear rack faces." msgstr "O dispositivo consome as faces frontal e traseira do rack." -#: netbox/dcim/models/devices.py:123 +#: dcim/models/devices.py:123 msgid "parent/child status" msgstr "status pai/filho" -#: netbox/dcim/models/devices.py:124 +#: dcim/models/devices.py:124 msgid "" "Parent devices house child devices in device bays. Leave blank if this " "device type is neither a parent nor a child." @@ -5953,24 +5506,24 @@ msgstr "" "dispositivos. Deixe em branco se este tipo de dispositivo não for nem pai " "nem filho." -#: netbox/dcim/models/devices.py:128 netbox/dcim/models/devices.py:392 -#: netbox/dcim/models/devices.py:659 netbox/dcim/models/racks.py:324 +#: dcim/models/devices.py:128 dcim/models/devices.py:392 +#: dcim/models/devices.py:659 dcim/models/racks.py:324 msgid "airflow" msgstr "fluxo de ar" -#: netbox/dcim/models/devices.py:204 +#: dcim/models/devices.py:204 msgid "device type" msgstr "tipo de dispositivo" -#: netbox/dcim/models/devices.py:205 +#: dcim/models/devices.py:205 msgid "device types" msgstr "tipos de dispositivos" -#: netbox/dcim/models/devices.py:290 +#: dcim/models/devices.py:290 msgid "U height must be in increments of 0.5 rack units." msgstr "A altura U deve estar em incrementos de 0,5U." -#: netbox/dcim/models/devices.py:307 +#: dcim/models/devices.py:307 #, python-brace-format msgid "" "Device {device} in rack {rack} does not have sufficient space to accommodate" @@ -5979,7 +5532,7 @@ msgstr "" "Dispositivo {device} no rack {rack} não tem espaço suficiente para acomodar " "uma altura de {height}U" -#: netbox/dcim/models/devices.py:322 +#: dcim/models/devices.py:322 #, python-brace-format msgid "" "Unable to set 0U height: Found {racked_instance_count} " @@ -5989,7 +5542,7 @@ msgstr "" "href=\"{url}\">{racked_instance_count} instância(s) já montada(s) " "dentro de racks." -#: netbox/dcim/models/devices.py:331 +#: dcim/models/devices.py:331 msgid "" "Must delete all device bay templates associated with this device before " "declassifying it as a parent device." @@ -5998,151 +5551,151 @@ msgstr "" "associados a este dispositivo antes de desclassificá-lo como dispositivo " "pai." -#: netbox/dcim/models/devices.py:337 +#: dcim/models/devices.py:337 msgid "Child device types must be 0U." msgstr "Dispositivo filho deve ser 0U." -#: netbox/dcim/models/devices.py:411 +#: dcim/models/devices.py:411 msgid "module type" msgstr "tipo de módulo" -#: netbox/dcim/models/devices.py:412 +#: dcim/models/devices.py:412 msgid "module types" msgstr "tipos de módulos" -#: netbox/dcim/models/devices.py:485 +#: dcim/models/devices.py:485 msgid "Virtual machines may be assigned to this role" msgstr "Máquinas virtuais podem ser atribuídas a esta função" -#: netbox/dcim/models/devices.py:497 +#: dcim/models/devices.py:497 msgid "device role" msgstr "função de dispositivo" -#: netbox/dcim/models/devices.py:498 +#: dcim/models/devices.py:498 msgid "device roles" msgstr "funções de dispositivos" -#: netbox/dcim/models/devices.py:515 +#: dcim/models/devices.py:515 msgid "Optionally limit this platform to devices of a certain manufacturer" msgstr "" "Opcionalmente, limite esta plataforma a dispositivos de um determinado " "fabricante" -#: netbox/dcim/models/devices.py:527 +#: dcim/models/devices.py:527 msgid "platform" msgstr "plataforma" -#: netbox/dcim/models/devices.py:528 +#: dcim/models/devices.py:528 msgid "platforms" msgstr "plataformas" -#: netbox/dcim/models/devices.py:576 +#: dcim/models/devices.py:576 msgid "The function this device serves" msgstr "A função que este dispositivo desempenha" -#: netbox/dcim/models/devices.py:608 +#: dcim/models/devices.py:608 msgid "Chassis serial number, assigned by the manufacturer" msgstr "Número de série do chassi, designado pelo fabricante" -#: netbox/dcim/models/devices.py:616 netbox/dcim/models/devices.py:1189 +#: dcim/models/devices.py:616 dcim/models/devices.py:1189 msgid "A unique tag used to identify this device" msgstr "Uma etiqueta exclusiva usada para identificar este dispositivo" -#: netbox/dcim/models/devices.py:643 +#: dcim/models/devices.py:643 msgid "position (U)" msgstr "posição (U)" -#: netbox/dcim/models/devices.py:650 +#: dcim/models/devices.py:650 msgid "rack face" msgstr "face do rack" -#: netbox/dcim/models/devices.py:670 netbox/dcim/models/devices.py:1415 -#: netbox/virtualization/models/virtualmachines.py:100 +#: dcim/models/devices.py:670 dcim/models/devices.py:1415 +#: virtualization/models/virtualmachines.py:100 msgid "primary IPv4" msgstr "IPv4 primário" -#: netbox/dcim/models/devices.py:678 netbox/dcim/models/devices.py:1423 -#: netbox/virtualization/models/virtualmachines.py:108 +#: dcim/models/devices.py:678 dcim/models/devices.py:1423 +#: virtualization/models/virtualmachines.py:108 msgid "primary IPv6" msgstr "IPv6 primário" -#: netbox/dcim/models/devices.py:686 +#: dcim/models/devices.py:686 msgid "out-of-band IP" msgstr "IP fora de banda" -#: netbox/dcim/models/devices.py:703 +#: dcim/models/devices.py:703 msgid "VC position" msgstr "Posição no Chassi Virtual" -#: netbox/dcim/models/devices.py:706 +#: dcim/models/devices.py:706 msgid "Virtual chassis position" msgstr "Posição no chassi virtual" -#: netbox/dcim/models/devices.py:709 +#: dcim/models/devices.py:709 msgid "VC priority" msgstr "Prioridade no Chassi Virtual" -#: netbox/dcim/models/devices.py:713 +#: dcim/models/devices.py:713 msgid "Virtual chassis master election priority" msgstr "Prioridade de eleição do mestre no chassi virtual" -#: netbox/dcim/models/devices.py:716 netbox/dcim/models/sites.py:207 +#: dcim/models/devices.py:716 dcim/models/sites.py:207 msgid "latitude" msgstr "latitude" -#: netbox/dcim/models/devices.py:721 netbox/dcim/models/devices.py:729 -#: netbox/dcim/models/sites.py:212 netbox/dcim/models/sites.py:220 +#: dcim/models/devices.py:721 dcim/models/devices.py:729 +#: dcim/models/sites.py:212 dcim/models/sites.py:220 msgid "GPS coordinate in decimal format (xx.yyyyyy)" msgstr "Coordenada GPS em formato decimal (xx.yyyyyy)" -#: netbox/dcim/models/devices.py:724 netbox/dcim/models/sites.py:215 +#: dcim/models/devices.py:724 dcim/models/sites.py:215 msgid "longitude" msgstr "longitude" -#: netbox/dcim/models/devices.py:797 +#: dcim/models/devices.py:797 msgid "Device name must be unique per site." msgstr "O nome do dispositivo deve ser exclusivo por site." -#: netbox/dcim/models/devices.py:808 netbox/ipam/models/services.py:75 +#: dcim/models/devices.py:808 ipam/models/services.py:75 msgid "device" msgstr "dispositivo" -#: netbox/dcim/models/devices.py:809 +#: dcim/models/devices.py:809 msgid "devices" msgstr "dispositivos" -#: netbox/dcim/models/devices.py:835 +#: dcim/models/devices.py:835 #, python-brace-format msgid "Rack {rack} does not belong to site {site}." msgstr "Rack {rack} não pertence ao site {site}." -#: netbox/dcim/models/devices.py:840 +#: dcim/models/devices.py:840 #, python-brace-format msgid "Location {location} does not belong to site {site}." msgstr "Localização {location} não pertence ao site {site}." -#: netbox/dcim/models/devices.py:846 +#: dcim/models/devices.py:846 #, python-brace-format msgid "Rack {rack} does not belong to location {location}." msgstr "Rack {rack} não pertence à localização {location}." -#: netbox/dcim/models/devices.py:853 +#: dcim/models/devices.py:853 msgid "Cannot select a rack face without assigning a rack." msgstr "Não é possível selecionar uma face de rack sem atribuir um rack." -#: netbox/dcim/models/devices.py:857 +#: dcim/models/devices.py:857 msgid "Cannot select a rack position without assigning a rack." msgstr "Não é possível selecionar uma posição de rack sem atribuir um rack." -#: netbox/dcim/models/devices.py:863 +#: dcim/models/devices.py:863 msgid "Position must be in increments of 0.5 rack units." msgstr "A posição deve estar em incrementos de 0,5U." -#: netbox/dcim/models/devices.py:867 +#: dcim/models/devices.py:867 msgid "Must specify rack face when defining rack position." msgstr "Deve especificar a face do rack ao definir a posição do rack." -#: netbox/dcim/models/devices.py:875 +#: dcim/models/devices.py:875 #, python-brace-format msgid "" "A 0U device type ({device_type}) cannot be assigned to a rack position." @@ -6150,7 +5703,7 @@ msgstr "" "Um tipo de dispositivo 0U ({device_type}) não pode ser alocado em uma " "posição de rack." -#: netbox/dcim/models/devices.py:886 +#: dcim/models/devices.py:886 msgid "" "Child device types cannot be assigned to a rack face. This is an attribute " "of the parent device." @@ -6158,7 +5711,7 @@ msgstr "" "Dispositivo filho não pode ser alocado em uma face do rack. Este é um " "atributo do dispositivo pai." -#: netbox/dcim/models/devices.py:893 +#: dcim/models/devices.py:893 msgid "" "Child device types cannot be assigned to a rack position. This is an " "attribute of the parent device." @@ -6166,7 +5719,7 @@ msgstr "" "Dispositivo filho não pode ser alocado em uma posição de rack. Este é um " "atributo do dispositivo pai." -#: netbox/dcim/models/devices.py:907 +#: dcim/models/devices.py:907 #, python-brace-format msgid "" "U{position} is already occupied or does not have sufficient space to " @@ -6175,23 +5728,23 @@ msgstr "" "U{position} já está ocupado ou não tem espaço suficiente para acomodar este " "tipo de dispositivo: {device_type} ({u_height}U)" -#: netbox/dcim/models/devices.py:922 +#: dcim/models/devices.py:922 #, python-brace-format msgid "{ip} is not an IPv4 address." msgstr "{ip} não é um endereço IPv4." -#: netbox/dcim/models/devices.py:931 netbox/dcim/models/devices.py:946 +#: dcim/models/devices.py:931 dcim/models/devices.py:946 #, python-brace-format msgid "The specified IP address ({ip}) is not assigned to this device." msgstr "" "O endereço IP especificado ({ip}) não está alocado a este dispositivo." -#: netbox/dcim/models/devices.py:937 +#: dcim/models/devices.py:937 #, python-brace-format msgid "{ip} is not an IPv6 address." msgstr "{ip} não é um endereço IPv6." -#: netbox/dcim/models/devices.py:964 +#: dcim/models/devices.py:964 #, python-brace-format msgid "" "The assigned platform is limited to {platform_manufacturer} device types, " @@ -6201,17 +5754,17 @@ msgstr "" "{platform_manufacturer}, mas este pertence ao fabricante " "{devicetype_manufacturer}." -#: netbox/dcim/models/devices.py:975 +#: dcim/models/devices.py:975 #, python-brace-format msgid "The assigned cluster belongs to a different site ({site})" msgstr "O cluster definido pertence a um site diferente ({site})" -#: netbox/dcim/models/devices.py:983 +#: dcim/models/devices.py:983 msgid "A device assigned to a virtual chassis must have its position defined." msgstr "" "Um dispositivo associado a um chassi virtual deve ter sua posição definida." -#: netbox/dcim/models/devices.py:988 +#: dcim/models/devices.py:988 #, python-brace-format msgid "" "Device cannot be removed from virtual chassis {virtual_chassis} because it " @@ -6220,15 +5773,15 @@ msgstr "" "O dispositivo não pode ser removido do chassi virtual {virtual_chassis} " "porque atualmente é designado como seu mestre." -#: netbox/dcim/models/devices.py:1196 +#: dcim/models/devices.py:1196 msgid "module" msgstr "módulo" -#: netbox/dcim/models/devices.py:1197 +#: dcim/models/devices.py:1197 msgid "modules" msgstr "módulos" -#: netbox/dcim/models/devices.py:1213 +#: dcim/models/devices.py:1213 #, python-brace-format msgid "" "Module must be installed within a module bay belonging to the assigned " @@ -6237,22 +5790,22 @@ msgstr "" "O módulo deve ser instalado dentro de um compartimento pertencente ao " "dispositivo ({device})." -#: netbox/dcim/models/devices.py:1334 +#: dcim/models/devices.py:1334 msgid "domain" msgstr "domínio" -#: netbox/dcim/models/devices.py:1347 netbox/dcim/models/devices.py:1348 +#: dcim/models/devices.py:1347 dcim/models/devices.py:1348 msgid "virtual chassis" msgstr "chassi virtual" -#: netbox/dcim/models/devices.py:1363 +#: dcim/models/devices.py:1363 #, python-brace-format msgid "" "The selected master ({master}) is not assigned to this virtual chassis." msgstr "" "O mestre selecionado ({master}) não está associado a este chassi virtual." -#: netbox/dcim/models/devices.py:1379 +#: dcim/models/devices.py:1379 #, python-brace-format msgid "" "Unable to delete virtual chassis {self}. There are member interfaces which " @@ -6261,105 +5814,105 @@ msgstr "" "Não foi possível excluir o chassi virtual {self}. Existem interfaces membro " "que formam interfaces LAG entre chassis." -#: netbox/dcim/models/devices.py:1404 netbox/vpn/models/l2vpn.py:37 +#: dcim/models/devices.py:1404 vpn/models/l2vpn.py:37 msgid "identifier" msgstr "identificador" -#: netbox/dcim/models/devices.py:1405 +#: dcim/models/devices.py:1405 msgid "Numeric identifier unique to the parent device" msgstr "Identificador numérico exclusivo para o dispositivo principal" -#: netbox/dcim/models/devices.py:1433 netbox/extras/models/customfields.py:225 -#: netbox/extras/models/models.py:107 netbox/extras/models/models.py:694 -#: netbox/netbox/models/__init__.py:115 +#: dcim/models/devices.py:1433 extras/models/customfields.py:225 +#: extras/models/models.py:107 extras/models/models.py:694 +#: netbox/models/__init__.py:115 msgid "comments" msgstr "comentários" -#: netbox/dcim/models/devices.py:1449 +#: dcim/models/devices.py:1449 msgid "virtual device context" msgstr "contexto de dispositivo virtual" -#: netbox/dcim/models/devices.py:1450 +#: dcim/models/devices.py:1450 msgid "virtual device contexts" msgstr "contextos de dispositivos virtuais" -#: netbox/dcim/models/devices.py:1482 +#: dcim/models/devices.py:1482 #, python-brace-format msgid "{ip} is not an IPv{family} address." msgstr "{ip} não é um endereço IPv{family}." -#: netbox/dcim/models/devices.py:1488 +#: dcim/models/devices.py:1488 msgid "Primary IP address must belong to an interface on the assigned device." msgstr "" "O endereço IP primário deve pertencer a uma interface no dispositivo " "associado." -#: netbox/dcim/models/mixins.py:15 netbox/extras/models/configs.py:41 -#: netbox/extras/models/models.py:313 netbox/extras/models/models.py:522 -#: netbox/extras/models/search.py:48 netbox/ipam/models/ip.py:194 +#: dcim/models/mixins.py:15 extras/models/configs.py:41 +#: extras/models/models.py:313 extras/models/models.py:522 +#: extras/models/search.py:48 ipam/models/ip.py:194 msgid "weight" msgstr "peso" -#: netbox/dcim/models/mixins.py:22 +#: dcim/models/mixins.py:22 msgid "weight unit" msgstr "unidade de peso" -#: netbox/dcim/models/mixins.py:51 +#: dcim/models/mixins.py:51 msgid "Must specify a unit when setting a weight" msgstr "Deve especificar uma unidade ao definir um peso" -#: netbox/dcim/models/power.py:55 +#: dcim/models/power.py:55 msgid "power panel" msgstr "painel de alimentação" -#: netbox/dcim/models/power.py:56 +#: dcim/models/power.py:56 msgid "power panels" msgstr "quadros de alimentação" -#: netbox/dcim/models/power.py:70 +#: dcim/models/power.py:70 #, python-brace-format msgid "" "Location {location} ({location_site}) is in a different site than {site}" msgstr "" "Localização {location} ({location_site}) está em um site diferente do {site}" -#: netbox/dcim/models/power.py:108 +#: dcim/models/power.py:108 msgid "supply" msgstr "tipo de alimentação" -#: netbox/dcim/models/power.py:114 +#: dcim/models/power.py:114 msgid "phase" msgstr "fase" -#: netbox/dcim/models/power.py:120 +#: dcim/models/power.py:120 msgid "voltage" msgstr "tensão" -#: netbox/dcim/models/power.py:125 +#: dcim/models/power.py:125 msgid "amperage" msgstr "corrente" -#: netbox/dcim/models/power.py:130 +#: dcim/models/power.py:130 msgid "max utilization" msgstr "utilização máxima" -#: netbox/dcim/models/power.py:133 +#: dcim/models/power.py:133 msgid "Maximum permissible draw (percentage)" msgstr "Consumo máximo permitido (porcentagem)" -#: netbox/dcim/models/power.py:136 +#: dcim/models/power.py:136 msgid "available power" msgstr "potência disponível" -#: netbox/dcim/models/power.py:164 +#: dcim/models/power.py:164 msgid "power feed" msgstr "fonte de alimentação" -#: netbox/dcim/models/power.py:165 +#: dcim/models/power.py:165 msgid "power feeds" msgstr "fontes de alimentação" -#: netbox/dcim/models/power.py:179 +#: dcim/models/power.py:179 #, python-brace-format msgid "" "Rack {rack} ({rack_site}) and power panel {powerpanel} ({powerpanel_site}) " @@ -6368,63 +5921,63 @@ msgstr "" "Rack {rack} ({rack_site}) e quadro de alimentação {powerpanel} " "({powerpanel_site}) estão em sites diferentes." -#: netbox/dcim/models/power.py:190 +#: dcim/models/power.py:190 msgid "Voltage cannot be negative for AC supply" msgstr "A tensão não pode ser negativa para alimentação do tipo CA" -#: netbox/dcim/models/racks.py:47 +#: dcim/models/racks.py:47 msgid "width" msgstr "largura" -#: netbox/dcim/models/racks.py:48 +#: dcim/models/racks.py:48 msgid "Rail-to-rail width" msgstr "Largura de trilho a trilho" -#: netbox/dcim/models/racks.py:56 +#: dcim/models/racks.py:56 msgid "Height in rack units" msgstr "Altura em U" -#: netbox/dcim/models/racks.py:60 +#: dcim/models/racks.py:60 msgid "starting unit" msgstr "unidade inicial" -#: netbox/dcim/models/racks.py:62 +#: dcim/models/racks.py:62 msgid "Starting unit for rack" msgstr "Unidade inicial do rack" -#: netbox/dcim/models/racks.py:66 +#: dcim/models/racks.py:66 msgid "descending units" msgstr "unidades descendentes" -#: netbox/dcim/models/racks.py:67 +#: dcim/models/racks.py:67 msgid "Units are numbered top-to-bottom" msgstr "As unidades são numeradas de cima para baixo" -#: netbox/dcim/models/racks.py:72 +#: dcim/models/racks.py:72 msgid "outer width" msgstr "largura externa" -#: netbox/dcim/models/racks.py:75 +#: dcim/models/racks.py:75 msgid "Outer dimension of rack (width)" msgstr "Dimensão externa do rack (largura)" -#: netbox/dcim/models/racks.py:78 +#: dcim/models/racks.py:78 msgid "outer depth" msgstr "profundidade externa" -#: netbox/dcim/models/racks.py:81 +#: dcim/models/racks.py:81 msgid "Outer dimension of rack (depth)" msgstr "Dimensão externa do rack (profundidade)" -#: netbox/dcim/models/racks.py:84 +#: dcim/models/racks.py:84 msgid "outer unit" msgstr "unidade externa" -#: netbox/dcim/models/racks.py:90 +#: dcim/models/racks.py:90 msgid "mounting depth" msgstr "profundidade de montagem" -#: netbox/dcim/models/racks.py:94 +#: dcim/models/racks.py:94 msgid "" "Maximum depth of a mounted device, in millimeters. For four-post racks, this" " is the distance between the front and rear rails." @@ -6433,76 +5986,75 @@ msgstr "" "abertos de 4 colunas, esta é a distância entre os trilhos dianteiro e " "traseiro." -#: netbox/dcim/models/racks.py:102 +#: dcim/models/racks.py:102 msgid "max weight" msgstr "peso máximo" -#: netbox/dcim/models/racks.py:105 +#: dcim/models/racks.py:105 msgid "Maximum load capacity for the rack" msgstr "Capacidade máxima de carga do rack" -#: netbox/dcim/models/racks.py:125 netbox/dcim/models/racks.py:252 +#: dcim/models/racks.py:125 dcim/models/racks.py:252 msgid "form factor" msgstr "formato físico" -#: netbox/dcim/models/racks.py:162 +#: dcim/models/racks.py:162 msgid "rack type" msgstr "tipo de rack" -#: netbox/dcim/models/racks.py:163 +#: dcim/models/racks.py:163 msgid "rack types" msgstr "tipos de rack" -#: netbox/dcim/models/racks.py:180 netbox/dcim/models/racks.py:379 +#: dcim/models/racks.py:180 dcim/models/racks.py:379 msgid "Must specify a unit when setting an outer width/depth" msgstr "" "Deve especificar uma unidade ao definir a largura/profundidade externa" -#: netbox/dcim/models/racks.py:184 netbox/dcim/models/racks.py:383 +#: dcim/models/racks.py:184 dcim/models/racks.py:383 msgid "Must specify a unit when setting a maximum weight" msgstr "Deve especificar uma unidade ao definir um peso máximo" -#: netbox/dcim/models/racks.py:230 +#: dcim/models/racks.py:230 msgid "rack role" msgstr "função do rack" -#: netbox/dcim/models/racks.py:231 +#: dcim/models/racks.py:231 msgid "rack roles" msgstr "funções de rack" -#: netbox/dcim/models/racks.py:274 +#: dcim/models/racks.py:274 msgid "facility ID" msgstr "ID do facility" -#: netbox/dcim/models/racks.py:275 +#: dcim/models/racks.py:275 msgid "Locally-assigned identifier" msgstr "Identificador atribuído localmente" -#: netbox/dcim/models/racks.py:308 netbox/ipam/forms/bulk_import.py:201 -#: netbox/ipam/forms/bulk_import.py:266 netbox/ipam/forms/bulk_import.py:301 -#: netbox/ipam/forms/bulk_import.py:459 -#: netbox/virtualization/forms/bulk_import.py:112 +#: dcim/models/racks.py:308 ipam/forms/bulk_import.py:201 +#: ipam/forms/bulk_import.py:266 ipam/forms/bulk_import.py:301 +#: ipam/forms/bulk_import.py:459 virtualization/forms/bulk_import.py:112 msgid "Functional role" msgstr "Papel funcional" -#: netbox/dcim/models/racks.py:321 +#: dcim/models/racks.py:321 msgid "A unique tag used to identify this rack" msgstr "Uma etiqueta exclusiva usada para identificar este rack" -#: netbox/dcim/models/racks.py:359 +#: dcim/models/racks.py:359 msgid "rack" msgstr "rack" -#: netbox/dcim/models/racks.py:360 +#: dcim/models/racks.py:360 msgid "racks" msgstr "racks" -#: netbox/dcim/models/racks.py:375 +#: dcim/models/racks.py:375 #, python-brace-format msgid "Assigned location must belong to parent site ({site})." msgstr "A localização definida deve pertencer ao site principal ({site})." -#: netbox/dcim/models/racks.py:393 +#: dcim/models/racks.py:393 #, python-brace-format msgid "" "Rack must be at least {min_height}U tall to house currently installed " @@ -6511,7 +6063,7 @@ msgstr "" "O rack deve ter pelo menos {min_height}U de altura para abrigar os " "dispositivos instalados." -#: netbox/dcim/models/racks.py:400 +#: dcim/models/racks.py:400 #, python-brace-format msgid "" "Rack unit numbering must begin at {position} or less to house currently " @@ -6520,955 +6072,892 @@ msgstr "" "A numeração do rack deve começar em {position} ou menos para abrigar " "dispositivos atualmente instalados." -#: netbox/dcim/models/racks.py:408 +#: dcim/models/racks.py:408 #, python-brace-format msgid "Location must be from the same site, {site}." msgstr "A localização deve ser do mesmo site, {site}." -#: netbox/dcim/models/racks.py:670 +#: dcim/models/racks.py:670 msgid "units" msgstr "unidades" -#: netbox/dcim/models/racks.py:696 +#: dcim/models/racks.py:696 msgid "rack reservation" msgstr "reserva em rack" -#: netbox/dcim/models/racks.py:697 +#: dcim/models/racks.py:697 msgid "rack reservations" msgstr "reservas em rack" -#: netbox/dcim/models/racks.py:714 +#: dcim/models/racks.py:714 #, python-brace-format msgid "Invalid unit(s) for {height}U rack: {unit_list}" msgstr "Unidade(s) inválida(s) para rack {height}U: {unit_list}" -#: netbox/dcim/models/racks.py:727 +#: dcim/models/racks.py:727 #, python-brace-format msgid "The following units have already been reserved: {unit_list}" msgstr "As seguintes unidades já foram reservadas: {unit_list}" -#: netbox/dcim/models/sites.py:49 +#: dcim/models/sites.py:49 msgid "A top-level region with this name already exists." msgstr "Já existe uma região de nível superior com este nome." -#: netbox/dcim/models/sites.py:59 +#: dcim/models/sites.py:59 msgid "A top-level region with this slug already exists." msgstr "Já existe uma região de alto nível com esta slug." -#: netbox/dcim/models/sites.py:62 +#: dcim/models/sites.py:62 msgid "region" msgstr "região" -#: netbox/dcim/models/sites.py:63 +#: dcim/models/sites.py:63 msgid "regions" msgstr "regiões" -#: netbox/dcim/models/sites.py:102 +#: dcim/models/sites.py:102 msgid "A top-level site group with this name already exists." msgstr "Já existe um grupo de sites de nível superior com este nome." -#: netbox/dcim/models/sites.py:112 +#: dcim/models/sites.py:112 msgid "A top-level site group with this slug already exists." msgstr "Já existe um grupo de sites de nível superior com este slug." -#: netbox/dcim/models/sites.py:115 +#: dcim/models/sites.py:115 msgid "site group" msgstr "grupo de sites" -#: netbox/dcim/models/sites.py:116 +#: dcim/models/sites.py:116 msgid "site groups" msgstr "grupos de sites" -#: netbox/dcim/models/sites.py:141 +#: dcim/models/sites.py:141 msgid "Full name of the site" msgstr "Nome completo do site" -#: netbox/dcim/models/sites.py:181 netbox/dcim/models/sites.py:279 +#: dcim/models/sites.py:181 dcim/models/sites.py:279 msgid "facility" msgstr "facility" -#: netbox/dcim/models/sites.py:184 netbox/dcim/models/sites.py:282 +#: dcim/models/sites.py:184 dcim/models/sites.py:282 msgid "Local facility ID or description" msgstr "ID ou descrição do facility" -#: netbox/dcim/models/sites.py:195 +#: dcim/models/sites.py:195 msgid "physical address" msgstr "endereço físico" -#: netbox/dcim/models/sites.py:198 +#: dcim/models/sites.py:198 msgid "Physical location of the building" msgstr "Localização física do edifício" -#: netbox/dcim/models/sites.py:201 +#: dcim/models/sites.py:201 msgid "shipping address" msgstr "endereço de entrega" -#: netbox/dcim/models/sites.py:204 +#: dcim/models/sites.py:204 msgid "If different from the physical address" msgstr "Se for diferente do endereço físico" -#: netbox/dcim/models/sites.py:238 +#: dcim/models/sites.py:238 msgid "site" msgstr "site" -#: netbox/dcim/models/sites.py:239 +#: dcim/models/sites.py:239 msgid "sites" msgstr "sites" -#: netbox/dcim/models/sites.py:309 +#: dcim/models/sites.py:309 msgid "A location with this name already exists within the specified site." msgstr "Já existe uma localização com este nome no site especificado." -#: netbox/dcim/models/sites.py:319 +#: dcim/models/sites.py:319 msgid "A location with this slug already exists within the specified site." msgstr "Já existe uma localização com este slug no site especificado." -#: netbox/dcim/models/sites.py:322 +#: dcim/models/sites.py:322 msgid "location" msgstr "localização" -#: netbox/dcim/models/sites.py:323 +#: dcim/models/sites.py:323 msgid "locations" msgstr "localizações" -#: netbox/dcim/models/sites.py:337 +#: dcim/models/sites.py:337 #, python-brace-format msgid "Parent location ({parent}) must belong to the same site ({site})." msgstr "" "Localização principal ({parent}) deve pertencer ao mesmo site ({site})." -#: netbox/dcim/tables/cables.py:55 +#: dcim/tables/cables.py:55 msgid "Termination A" msgstr "Terminação A" -#: netbox/dcim/tables/cables.py:60 +#: dcim/tables/cables.py:60 msgid "Termination B" msgstr "Terminação B" -#: netbox/dcim/tables/cables.py:66 netbox/wireless/tables/wirelesslink.py:23 +#: dcim/tables/cables.py:66 wireless/tables/wirelesslink.py:23 msgid "Device A" msgstr "Dispositivo A" -#: netbox/dcim/tables/cables.py:72 netbox/wireless/tables/wirelesslink.py:32 +#: dcim/tables/cables.py:72 wireless/tables/wirelesslink.py:32 msgid "Device B" msgstr "Dispositivo B" -#: netbox/dcim/tables/cables.py:78 +#: dcim/tables/cables.py:78 msgid "Location A" msgstr "Localização A" -#: netbox/dcim/tables/cables.py:84 +#: dcim/tables/cables.py:84 msgid "Location B" msgstr "Localização B" -#: netbox/dcim/tables/cables.py:90 +#: dcim/tables/cables.py:90 msgid "Rack A" msgstr "Rack A" -#: netbox/dcim/tables/cables.py:96 +#: dcim/tables/cables.py:96 msgid "Rack B" msgstr "Rack B" -#: netbox/dcim/tables/cables.py:102 +#: dcim/tables/cables.py:102 msgid "Site A" msgstr "Site A" -#: netbox/dcim/tables/cables.py:108 +#: dcim/tables/cables.py:108 msgid "Site B" msgstr "Sítio B" -#: netbox/dcim/tables/connections.py:31 netbox/dcim/tables/connections.py:50 -#: netbox/dcim/tables/connections.py:71 -#: netbox/templates/dcim/inc/connection_endpoints.html:16 +#: dcim/tables/connections.py:31 dcim/tables/connections.py:50 +#: dcim/tables/connections.py:71 +#: templates/dcim/inc/connection_endpoints.html:16 msgid "Reachable" msgstr "Acessível" -#: netbox/dcim/tables/devices.py:58 netbox/dcim/tables/devices.py:106 -#: netbox/dcim/tables/racks.py:150 netbox/dcim/tables/sites.py:105 -#: netbox/dcim/tables/sites.py:148 netbox/extras/tables/tables.py:545 -#: netbox/netbox/navigation/menu.py:69 netbox/netbox/navigation/menu.py:73 -#: netbox/netbox/navigation/menu.py:75 -#: netbox/virtualization/forms/model_forms.py:122 -#: netbox/virtualization/tables/clusters.py:83 -#: netbox/virtualization/views.py:206 +#: dcim/tables/devices.py:58 dcim/tables/devices.py:106 +#: dcim/tables/racks.py:150 dcim/tables/sites.py:105 dcim/tables/sites.py:148 +#: extras/tables/tables.py:545 netbox/navigation/menu.py:69 +#: netbox/navigation/menu.py:73 netbox/navigation/menu.py:75 +#: virtualization/forms/model_forms.py:122 +#: virtualization/tables/clusters.py:83 virtualization/views.py:206 msgid "Devices" msgstr "Dispositivos" -#: netbox/dcim/tables/devices.py:63 netbox/dcim/tables/devices.py:111 -#: netbox/virtualization/tables/clusters.py:88 +#: dcim/tables/devices.py:63 dcim/tables/devices.py:111 +#: virtualization/tables/clusters.py:88 msgid "VMs" msgstr "VMs" -#: netbox/dcim/tables/devices.py:100 netbox/dcim/tables/devices.py:216 -#: netbox/extras/forms/model_forms.py:630 -#: netbox/templates/dcim/device.html:112 -#: netbox/templates/dcim/device/render_config.html:11 -#: netbox/templates/dcim/device/render_config.html:14 -#: netbox/templates/dcim/devicerole.html:44 -#: netbox/templates/dcim/platform.html:41 -#: netbox/templates/extras/configtemplate.html:10 -#: netbox/templates/virtualization/virtualmachine.html:48 -#: netbox/templates/virtualization/virtualmachine/render_config.html:11 -#: netbox/templates/virtualization/virtualmachine/render_config.html:14 -#: netbox/virtualization/tables/virtualmachines.py:107 +#: dcim/tables/devices.py:100 dcim/tables/devices.py:216 +#: extras/forms/model_forms.py:630 templates/dcim/device.html:112 +#: templates/dcim/device/render_config.html:11 +#: templates/dcim/device/render_config.html:14 +#: templates/dcim/devicerole.html:44 templates/dcim/platform.html:41 +#: templates/extras/configtemplate.html:10 +#: templates/virtualization/virtualmachine.html:48 +#: templates/virtualization/virtualmachine/render_config.html:11 +#: templates/virtualization/virtualmachine/render_config.html:14 +#: virtualization/tables/virtualmachines.py:107 msgid "Config Template" msgstr "Modelo de Configuração" -#: netbox/dcim/tables/devices.py:150 netbox/templates/dcim/sitegroup.html:26 +#: dcim/tables/devices.py:150 templates/dcim/sitegroup.html:26 msgid "Site Group" msgstr "Grupo de Sites" -#: netbox/dcim/tables/devices.py:187 netbox/dcim/tables/devices.py:1068 -#: netbox/ipam/forms/bulk_import.py:503 netbox/ipam/forms/model_forms.py:306 -#: netbox/ipam/forms/model_forms.py:315 netbox/ipam/tables/ip.py:356 -#: netbox/ipam/tables/ip.py:423 netbox/ipam/tables/ip.py:446 -#: netbox/templates/ipam/ipaddress.html:11 -#: netbox/virtualization/tables/virtualmachines.py:95 +#: dcim/tables/devices.py:187 dcim/tables/devices.py:1068 +#: ipam/forms/bulk_import.py:503 ipam/forms/model_forms.py:306 +#: ipam/forms/model_forms.py:315 ipam/tables/ip.py:356 ipam/tables/ip.py:423 +#: ipam/tables/ip.py:446 templates/ipam/ipaddress.html:11 +#: virtualization/tables/virtualmachines.py:95 msgid "IP Address" msgstr "Endereço IP" -#: netbox/dcim/tables/devices.py:191 netbox/dcim/tables/devices.py:1072 -#: netbox/virtualization/tables/virtualmachines.py:86 +#: dcim/tables/devices.py:191 dcim/tables/devices.py:1072 +#: virtualization/tables/virtualmachines.py:86 msgid "IPv4 Address" msgstr "Endereço IPv4" -#: netbox/dcim/tables/devices.py:195 netbox/dcim/tables/devices.py:1076 -#: netbox/virtualization/tables/virtualmachines.py:90 +#: dcim/tables/devices.py:195 dcim/tables/devices.py:1076 +#: virtualization/tables/virtualmachines.py:90 msgid "IPv6 Address" msgstr "Endereço IPv6" -#: netbox/dcim/tables/devices.py:210 +#: dcim/tables/devices.py:210 msgid "VC Position" msgstr "Posição no Chassi Virtual" -#: netbox/dcim/tables/devices.py:213 +#: dcim/tables/devices.py:213 msgid "VC Priority" msgstr "Prioridade no Chassi Virtual" -#: netbox/dcim/tables/devices.py:220 netbox/templates/dcim/device_edit.html:38 -#: netbox/templates/dcim/devicebay_populate.html:16 +#: dcim/tables/devices.py:220 templates/dcim/device_edit.html:38 +#: templates/dcim/devicebay_populate.html:16 msgid "Parent Device" msgstr "Dispositivo Pai" -#: netbox/dcim/tables/devices.py:225 +#: dcim/tables/devices.py:225 msgid "Position (Device Bay)" msgstr "Posição (Compartimento de Dispositivo)" -#: netbox/dcim/tables/devices.py:234 +#: dcim/tables/devices.py:234 msgid "Console ports" msgstr "Portas de console" -#: netbox/dcim/tables/devices.py:237 +#: dcim/tables/devices.py:237 msgid "Console server ports" msgstr "Portas de servidor de console" -#: netbox/dcim/tables/devices.py:240 +#: dcim/tables/devices.py:240 msgid "Power ports" msgstr "Portas de alimentação" -#: netbox/dcim/tables/devices.py:243 +#: dcim/tables/devices.py:243 msgid "Power outlets" msgstr "Tomadas elétricas" -#: netbox/dcim/tables/devices.py:246 netbox/dcim/tables/devices.py:1081 -#: netbox/dcim/tables/devicetypes.py:128 netbox/dcim/views.py:1042 -#: netbox/dcim/views.py:1281 netbox/dcim/views.py:1977 -#: netbox/netbox/navigation/menu.py:94 netbox/netbox/navigation/menu.py:250 -#: netbox/templates/dcim/device/base.html:37 -#: netbox/templates/dcim/device_list.html:43 -#: netbox/templates/dcim/devicetype/base.html:34 -#: netbox/templates/dcim/module.html:34 -#: netbox/templates/dcim/moduletype/base.html:34 -#: netbox/templates/dcim/virtualdevicecontext.html:61 -#: netbox/templates/dcim/virtualdevicecontext.html:81 -#: netbox/templates/virtualization/virtualmachine/base.html:27 -#: netbox/templates/virtualization/virtualmachine_list.html:14 -#: netbox/virtualization/tables/virtualmachines.py:101 -#: netbox/virtualization/views.py:366 netbox/wireless/tables/wirelesslan.py:55 +#: dcim/tables/devices.py:246 dcim/tables/devices.py:1081 +#: dcim/tables/devicetypes.py:128 dcim/views.py:1042 dcim/views.py:1281 +#: dcim/views.py:1977 netbox/navigation/menu.py:94 +#: netbox/navigation/menu.py:250 templates/dcim/device/base.html:37 +#: templates/dcim/device_list.html:43 templates/dcim/devicetype/base.html:34 +#: templates/dcim/inc/moduletype_buttons.html:25 templates/dcim/module.html:34 +#: templates/dcim/virtualdevicecontext.html:61 +#: templates/dcim/virtualdevicecontext.html:81 +#: templates/virtualization/virtualmachine/base.html:27 +#: templates/virtualization/virtualmachine_list.html:14 +#: virtualization/tables/virtualmachines.py:101 virtualization/views.py:366 +#: wireless/tables/wirelesslan.py:55 msgid "Interfaces" msgstr "Interfaces" -#: netbox/dcim/tables/devices.py:249 +#: dcim/tables/devices.py:249 msgid "Front ports" msgstr "Portas frontais" -#: netbox/dcim/tables/devices.py:255 +#: dcim/tables/devices.py:255 msgid "Device bays" msgstr "Compartimentos de dispositivos" -#: netbox/dcim/tables/devices.py:258 +#: dcim/tables/devices.py:258 msgid "Module bays" msgstr "Compartimentos de módulos" -#: netbox/dcim/tables/devices.py:261 +#: dcim/tables/devices.py:261 msgid "Inventory items" msgstr "Itens de inventário" -#: netbox/dcim/tables/devices.py:305 netbox/dcim/tables/modules.py:56 -#: netbox/templates/dcim/modulebay.html:17 +#: dcim/tables/devices.py:305 dcim/tables/modules.py:56 +#: templates/dcim/modulebay.html:17 msgid "Module Bay" msgstr "Compartimento de módulo" -#: netbox/dcim/tables/devices.py:318 netbox/dcim/tables/devicetypes.py:47 -#: netbox/dcim/tables/devicetypes.py:143 netbox/dcim/views.py:1117 -#: netbox/dcim/views.py:2075 netbox/netbox/navigation/menu.py:103 -#: netbox/templates/dcim/device/base.html:52 -#: netbox/templates/dcim/device_list.html:71 -#: netbox/templates/dcim/devicetype/base.html:49 -#: netbox/templates/dcim/inc/panels/inventory_items.html:6 -#: netbox/templates/dcim/inventoryitemrole.html:32 +#: dcim/tables/devices.py:318 dcim/tables/devicetypes.py:47 +#: dcim/tables/devicetypes.py:143 dcim/views.py:1117 dcim/views.py:2075 +#: netbox/navigation/menu.py:103 templates/dcim/device/base.html:52 +#: templates/dcim/device_list.html:71 templates/dcim/devicetype/base.html:49 +#: templates/dcim/inc/panels/inventory_items.html:6 +#: templates/dcim/inventoryitemrole.html:32 msgid "Inventory Items" msgstr "Itens de Inventário" -#: netbox/dcim/tables/devices.py:333 +#: dcim/tables/devices.py:333 msgid "Cable Color" msgstr "Cor do Cabo" -#: netbox/dcim/tables/devices.py:339 +#: dcim/tables/devices.py:339 msgid "Link Peers" msgstr "Pares Vinculados" -#: netbox/dcim/tables/devices.py:342 +#: dcim/tables/devices.py:342 msgid "Mark Connected" msgstr "Marcar Conectado" -#: netbox/dcim/tables/devices.py:461 +#: dcim/tables/devices.py:461 msgid "Maximum draw (W)" msgstr "Consumo máximo (W)" -#: netbox/dcim/tables/devices.py:464 +#: dcim/tables/devices.py:464 msgid "Allocated draw (W)" msgstr "Consumo alocado (W)" -#: netbox/dcim/tables/devices.py:558 netbox/ipam/forms/model_forms.py:701 -#: netbox/ipam/tables/fhrp.py:28 netbox/ipam/views.py:596 -#: netbox/ipam/views.py:696 netbox/netbox/navigation/menu.py:158 -#: netbox/netbox/navigation/menu.py:160 -#: netbox/templates/dcim/interface.html:339 -#: netbox/templates/ipam/ipaddress_bulk_add.html:15 -#: netbox/templates/ipam/service.html:40 -#: netbox/templates/virtualization/vminterface.html:85 -#: netbox/vpn/tables/tunnels.py:98 +#: dcim/tables/devices.py:558 ipam/forms/model_forms.py:701 +#: ipam/tables/fhrp.py:28 ipam/views.py:596 ipam/views.py:696 +#: netbox/navigation/menu.py:158 netbox/navigation/menu.py:160 +#: templates/dcim/interface.html:339 templates/ipam/ipaddress_bulk_add.html:15 +#: templates/ipam/service.html:40 templates/virtualization/vminterface.html:85 +#: vpn/tables/tunnels.py:98 msgid "IP Addresses" msgstr "Endereços IP" -#: netbox/dcim/tables/devices.py:564 netbox/netbox/navigation/menu.py:202 -#: netbox/templates/ipam/inc/panels/fhrp_groups.html:6 +#: dcim/tables/devices.py:564 netbox/navigation/menu.py:202 +#: templates/ipam/inc/panels/fhrp_groups.html:6 msgid "FHRP Groups" msgstr "Grupos FHRP" -#: netbox/dcim/tables/devices.py:576 netbox/templates/dcim/interface.html:89 -#: netbox/templates/virtualization/vminterface.html:67 -#: netbox/templates/vpn/tunnel.html:18 -#: netbox/templates/vpn/tunneltermination.html:13 -#: netbox/vpn/forms/bulk_edit.py:76 netbox/vpn/forms/bulk_import.py:76 -#: netbox/vpn/forms/filtersets.py:42 netbox/vpn/forms/filtersets.py:82 -#: netbox/vpn/forms/model_forms.py:60 netbox/vpn/forms/model_forms.py:145 -#: netbox/vpn/tables/tunnels.py:78 +#: dcim/tables/devices.py:576 templates/dcim/interface.html:89 +#: templates/virtualization/vminterface.html:67 templates/vpn/tunnel.html:18 +#: templates/vpn/tunneltermination.html:13 vpn/forms/bulk_edit.py:76 +#: vpn/forms/bulk_import.py:76 vpn/forms/filtersets.py:42 +#: vpn/forms/filtersets.py:82 vpn/forms/model_forms.py:60 +#: vpn/forms/model_forms.py:145 vpn/tables/tunnels.py:78 msgid "Tunnel" msgstr "Túnel" -#: netbox/dcim/tables/devices.py:604 netbox/dcim/tables/devicetypes.py:227 -#: netbox/templates/dcim/interface.html:65 +#: dcim/tables/devices.py:604 dcim/tables/devicetypes.py:227 +#: templates/dcim/interface.html:65 msgid "Management Only" msgstr "Somente Gerenciamento" -#: netbox/dcim/tables/devices.py:623 +#: dcim/tables/devices.py:623 msgid "VDCs" msgstr "Contextos de Dispositivos Virtuais" -#: netbox/dcim/tables/devices.py:873 netbox/templates/dcim/modulebay.html:53 +#: dcim/tables/devices.py:873 templates/dcim/modulebay.html:53 msgid "Installed Module" msgstr "Módulo Instalado" -#: netbox/dcim/tables/devices.py:876 +#: dcim/tables/devices.py:876 msgid "Module Serial" msgstr "Serial do Módulo" -#: netbox/dcim/tables/devices.py:880 +#: dcim/tables/devices.py:880 msgid "Module Asset Tag" msgstr "Etiqueta de Patrimônio do Módulo" -#: netbox/dcim/tables/devices.py:889 +#: dcim/tables/devices.py:889 msgid "Module Status" msgstr "Status do Módulo" -#: netbox/dcim/tables/devices.py:944 netbox/dcim/tables/devicetypes.py:312 -#: netbox/templates/dcim/inventoryitem.html:40 +#: dcim/tables/devices.py:944 dcim/tables/devicetypes.py:312 +#: templates/dcim/inventoryitem.html:40 msgid "Component" msgstr "Componente" -#: netbox/dcim/tables/devices.py:1000 +#: dcim/tables/devices.py:1000 msgid "Items" msgstr "Itens" -#: netbox/dcim/tables/devicetypes.py:37 netbox/netbox/navigation/menu.py:84 -#: netbox/netbox/navigation/menu.py:86 +#: dcim/tables/devicetypes.py:37 netbox/navigation/menu.py:84 +#: netbox/navigation/menu.py:86 msgid "Device Types" msgstr "Tipos de Dispositivos" -#: netbox/dcim/tables/devicetypes.py:42 netbox/netbox/navigation/menu.py:87 +#: dcim/tables/devicetypes.py:42 netbox/navigation/menu.py:87 msgid "Module Types" msgstr "Tipos de Módulos" -#: netbox/dcim/tables/devicetypes.py:52 netbox/extras/forms/filtersets.py:371 -#: netbox/extras/forms/model_forms.py:537 netbox/extras/tables/tables.py:540 -#: netbox/netbox/navigation/menu.py:78 +#: dcim/tables/devicetypes.py:52 extras/forms/filtersets.py:371 +#: extras/forms/model_forms.py:537 extras/tables/tables.py:540 +#: netbox/navigation/menu.py:78 msgid "Platforms" msgstr "Plataformas" -#: netbox/dcim/tables/devicetypes.py:84 -#: netbox/templates/dcim/devicetype.html:29 +#: dcim/tables/devicetypes.py:84 templates/dcim/devicetype.html:29 msgid "Default Platform" msgstr "Plataforma Padrão" -#: netbox/dcim/tables/devicetypes.py:88 -#: netbox/templates/dcim/devicetype.html:45 +#: dcim/tables/devicetypes.py:88 templates/dcim/devicetype.html:45 msgid "Full Depth" msgstr "Full-Depth" -#: netbox/dcim/tables/devicetypes.py:98 +#: dcim/tables/devicetypes.py:98 msgid "U Height" msgstr "Altura em U" -#: netbox/dcim/tables/devicetypes.py:113 netbox/dcim/tables/modules.py:26 -#: netbox/dcim/tables/racks.py:89 +#: dcim/tables/devicetypes.py:113 dcim/tables/modules.py:26 +#: dcim/tables/racks.py:89 msgid "Instances" msgstr "Instâncias" -#: netbox/dcim/tables/devicetypes.py:116 netbox/dcim/views.py:982 -#: netbox/dcim/views.py:1221 netbox/dcim/views.py:1913 -#: netbox/netbox/navigation/menu.py:97 -#: netbox/templates/dcim/device/base.html:25 -#: netbox/templates/dcim/device_list.html:15 -#: netbox/templates/dcim/devicetype/base.html:22 -#: netbox/templates/dcim/module.html:22 -#: netbox/templates/dcim/moduletype/base.html:22 +#: dcim/tables/devicetypes.py:116 dcim/views.py:982 dcim/views.py:1221 +#: dcim/views.py:1913 netbox/navigation/menu.py:97 +#: templates/dcim/device/base.html:25 templates/dcim/device_list.html:15 +#: templates/dcim/devicetype/base.html:22 +#: templates/dcim/inc/moduletype_buttons.html:13 templates/dcim/module.html:22 msgid "Console Ports" msgstr "Portas de Console" -#: netbox/dcim/tables/devicetypes.py:119 netbox/dcim/views.py:997 -#: netbox/dcim/views.py:1236 netbox/dcim/views.py:1929 -#: netbox/netbox/navigation/menu.py:98 -#: netbox/templates/dcim/device/base.html:28 -#: netbox/templates/dcim/device_list.html:22 -#: netbox/templates/dcim/devicetype/base.html:25 -#: netbox/templates/dcim/module.html:25 -#: netbox/templates/dcim/moduletype/base.html:25 +#: dcim/tables/devicetypes.py:119 dcim/views.py:997 dcim/views.py:1236 +#: dcim/views.py:1929 netbox/navigation/menu.py:98 +#: templates/dcim/device/base.html:28 templates/dcim/device_list.html:22 +#: templates/dcim/devicetype/base.html:25 +#: templates/dcim/inc/moduletype_buttons.html:16 templates/dcim/module.html:25 msgid "Console Server Ports" msgstr "Portas de Servidor de Console" -#: netbox/dcim/tables/devicetypes.py:122 netbox/dcim/views.py:1012 -#: netbox/dcim/views.py:1251 netbox/dcim/views.py:1945 -#: netbox/netbox/navigation/menu.py:99 -#: netbox/templates/dcim/device/base.html:31 -#: netbox/templates/dcim/device_list.html:29 -#: netbox/templates/dcim/devicetype/base.html:28 -#: netbox/templates/dcim/module.html:28 -#: netbox/templates/dcim/moduletype/base.html:28 +#: dcim/tables/devicetypes.py:122 dcim/views.py:1012 dcim/views.py:1251 +#: dcim/views.py:1945 netbox/navigation/menu.py:99 +#: templates/dcim/device/base.html:31 templates/dcim/device_list.html:29 +#: templates/dcim/devicetype/base.html:28 +#: templates/dcim/inc/moduletype_buttons.html:19 templates/dcim/module.html:28 msgid "Power Ports" msgstr "Portas de Alimentação" -#: netbox/dcim/tables/devicetypes.py:125 netbox/dcim/views.py:1027 -#: netbox/dcim/views.py:1266 netbox/dcim/views.py:1961 -#: netbox/netbox/navigation/menu.py:100 -#: netbox/templates/dcim/device/base.html:34 -#: netbox/templates/dcim/device_list.html:36 -#: netbox/templates/dcim/devicetype/base.html:31 -#: netbox/templates/dcim/module.html:31 -#: netbox/templates/dcim/moduletype/base.html:31 +#: dcim/tables/devicetypes.py:125 dcim/views.py:1027 dcim/views.py:1266 +#: dcim/views.py:1961 netbox/navigation/menu.py:100 +#: templates/dcim/device/base.html:34 templates/dcim/device_list.html:36 +#: templates/dcim/devicetype/base.html:31 +#: templates/dcim/inc/moduletype_buttons.html:22 templates/dcim/module.html:31 msgid "Power Outlets" msgstr "Tomadas Elétricas" -#: netbox/dcim/tables/devicetypes.py:131 netbox/dcim/views.py:1057 -#: netbox/dcim/views.py:1296 netbox/dcim/views.py:1999 -#: netbox/netbox/navigation/menu.py:95 -#: netbox/templates/dcim/device/base.html:40 -#: netbox/templates/dcim/devicetype/base.html:37 -#: netbox/templates/dcim/module.html:37 -#: netbox/templates/dcim/moduletype/base.html:37 +#: dcim/tables/devicetypes.py:131 dcim/views.py:1057 dcim/views.py:1296 +#: dcim/views.py:1999 netbox/navigation/menu.py:95 +#: templates/dcim/device/base.html:40 templates/dcim/devicetype/base.html:37 +#: templates/dcim/inc/moduletype_buttons.html:28 templates/dcim/module.html:37 msgid "Front Ports" msgstr "Portas Frontais" -#: netbox/dcim/tables/devicetypes.py:134 netbox/dcim/views.py:1072 -#: netbox/dcim/views.py:1311 netbox/dcim/views.py:2015 -#: netbox/netbox/navigation/menu.py:96 -#: netbox/templates/dcim/device/base.html:43 -#: netbox/templates/dcim/device_list.html:50 -#: netbox/templates/dcim/devicetype/base.html:40 -#: netbox/templates/dcim/module.html:40 -#: netbox/templates/dcim/moduletype/base.html:40 +#: dcim/tables/devicetypes.py:134 dcim/views.py:1072 dcim/views.py:1311 +#: dcim/views.py:2015 netbox/navigation/menu.py:96 +#: templates/dcim/device/base.html:43 templates/dcim/device_list.html:50 +#: templates/dcim/devicetype/base.html:40 +#: templates/dcim/inc/moduletype_buttons.html:31 templates/dcim/module.html:40 msgid "Rear Ports" msgstr "Portas Traseiras" -#: netbox/dcim/tables/devicetypes.py:137 netbox/dcim/views.py:1102 -#: netbox/dcim/views.py:2055 netbox/netbox/navigation/menu.py:102 -#: netbox/templates/dcim/device/base.html:49 -#: netbox/templates/dcim/device_list.html:57 -#: netbox/templates/dcim/devicetype/base.html:46 +#: dcim/tables/devicetypes.py:137 dcim/views.py:1102 dcim/views.py:2055 +#: netbox/navigation/menu.py:102 templates/dcim/device/base.html:49 +#: templates/dcim/device_list.html:57 templates/dcim/devicetype/base.html:46 msgid "Device Bays" msgstr "Compartimentos de Dispositivos" -#: netbox/dcim/tables/devicetypes.py:140 netbox/dcim/views.py:1087 -#: netbox/dcim/views.py:1326 netbox/dcim/views.py:2035 -#: netbox/netbox/navigation/menu.py:101 -#: netbox/templates/dcim/device/base.html:46 -#: netbox/templates/dcim/device_list.html:64 -#: netbox/templates/dcim/devicetype/base.html:43 -#: netbox/templates/dcim/module.html:43 -#: netbox/templates/dcim/moduletype/base.html:43 +#: dcim/tables/devicetypes.py:140 dcim/views.py:1087 dcim/views.py:1326 +#: dcim/views.py:2035 netbox/navigation/menu.py:101 +#: templates/dcim/device/base.html:46 templates/dcim/device_list.html:64 +#: templates/dcim/devicetype/base.html:43 +#: templates/dcim/inc/moduletype_buttons.html:34 templates/dcim/module.html:43 msgid "Module Bays" msgstr "Compartimentos de Módulos" -#: netbox/dcim/tables/power.py:36 netbox/netbox/navigation/menu.py:297 -#: netbox/templates/dcim/powerpanel.html:51 +#: dcim/tables/power.py:36 netbox/navigation/menu.py:297 +#: templates/dcim/powerpanel.html:51 msgid "Power Feeds" msgstr "Fontes de Alimentação" -#: netbox/dcim/tables/power.py:80 netbox/templates/dcim/powerfeed.html:99 +#: dcim/tables/power.py:80 templates/dcim/powerfeed.html:99 msgid "Max Utilization" msgstr "Utilização Máxima" -#: netbox/dcim/tables/power.py:84 +#: dcim/tables/power.py:84 msgid "Available Power (VA)" msgstr "Potência Disponível (VA)" -#: netbox/dcim/tables/racks.py:30 netbox/dcim/tables/sites.py:143 -#: netbox/netbox/navigation/menu.py:43 netbox/netbox/navigation/menu.py:47 -#: netbox/netbox/navigation/menu.py:49 +#: dcim/tables/racks.py:30 dcim/tables/sites.py:143 +#: netbox/navigation/menu.py:43 netbox/navigation/menu.py:47 +#: netbox/navigation/menu.py:49 msgid "Racks" msgstr "Racks" -#: netbox/dcim/tables/racks.py:63 netbox/dcim/tables/racks.py:142 -#: netbox/templates/dcim/device.html:318 -#: netbox/templates/dcim/inc/panels/racktype_dimensions.html:14 +#: dcim/tables/racks.py:63 dcim/tables/racks.py:142 +#: templates/dcim/device.html:318 +#: templates/dcim/inc/panels/racktype_dimensions.html:14 msgid "Height" msgstr "Altura" -#: netbox/dcim/tables/racks.py:67 netbox/dcim/tables/racks.py:165 -#: netbox/templates/dcim/inc/panels/racktype_dimensions.html:18 +#: dcim/tables/racks.py:67 dcim/tables/racks.py:165 +#: templates/dcim/inc/panels/racktype_dimensions.html:18 msgid "Outer Width" msgstr "Largura Externa" -#: netbox/dcim/tables/racks.py:71 netbox/dcim/tables/racks.py:169 -#: netbox/templates/dcim/inc/panels/racktype_dimensions.html:28 +#: dcim/tables/racks.py:71 dcim/tables/racks.py:169 +#: templates/dcim/inc/panels/racktype_dimensions.html:28 msgid "Outer Depth" msgstr "Profundidade Externa" -#: netbox/dcim/tables/racks.py:79 netbox/dcim/tables/racks.py:177 +#: dcim/tables/racks.py:79 dcim/tables/racks.py:177 msgid "Max Weight" msgstr "Peso Máximo" -#: netbox/dcim/tables/racks.py:154 +#: dcim/tables/racks.py:154 msgid "Space" msgstr "Espaço" -#: netbox/dcim/tables/sites.py:30 netbox/dcim/tables/sites.py:57 -#: netbox/extras/forms/filtersets.py:351 -#: netbox/extras/forms/model_forms.py:517 netbox/ipam/forms/bulk_edit.py:130 -#: netbox/ipam/forms/model_forms.py:153 netbox/ipam/tables/asn.py:66 -#: netbox/netbox/navigation/menu.py:15 netbox/netbox/navigation/menu.py:17 +#: dcim/tables/sites.py:30 dcim/tables/sites.py:57 +#: extras/forms/filtersets.py:351 extras/forms/model_forms.py:517 +#: ipam/forms/bulk_edit.py:131 ipam/forms/model_forms.py:153 +#: ipam/tables/asn.py:66 netbox/navigation/menu.py:15 +#: netbox/navigation/menu.py:17 msgid "Sites" msgstr "Sites" -#: netbox/dcim/tests/test_api.py:47 +#: dcim/tests/test_api.py:47 msgid "Test case must set peer_termination_type" msgstr "O caso de teste deve definir peer_termination_type" -#: netbox/dcim/views.py:140 +#: dcim/views.py:140 #, python-brace-format msgid "Disconnected {count} {type}" msgstr "Desconectado {count} {type}" -#: netbox/dcim/views.py:740 netbox/netbox/navigation/menu.py:51 +#: dcim/views.py:740 netbox/navigation/menu.py:51 msgid "Reservations" msgstr "Reservas" -#: netbox/dcim/views.py:759 netbox/templates/dcim/location.html:90 -#: netbox/templates/dcim/site.html:140 +#: dcim/views.py:759 templates/dcim/location.html:90 +#: templates/dcim/site.html:140 msgid "Non-Racked Devices" msgstr "Dispositivos Não Montados em Rack" -#: netbox/dcim/views.py:2088 netbox/extras/forms/model_forms.py:577 -#: netbox/templates/extras/configcontext.html:10 -#: netbox/virtualization/forms/model_forms.py:225 -#: netbox/virtualization/views.py:407 +#: dcim/views.py:2088 extras/forms/model_forms.py:577 +#: templates/extras/configcontext.html:10 +#: virtualization/forms/model_forms.py:225 virtualization/views.py:407 msgid "Config Context" msgstr "Contexto de Configuração" -#: netbox/dcim/views.py:2098 netbox/virtualization/views.py:417 +#: dcim/views.py:2098 virtualization/views.py:417 msgid "Render Config" msgstr "Renderização de Configuração" -#: netbox/dcim/views.py:2131 netbox/virtualization/views.py:450 +#: dcim/views.py:2131 virtualization/views.py:450 #, python-brace-format msgid "An error occurred while rendering the template: {error}" msgstr "Ocorreu um erro ao renderizar o modelo: {error}" -#: netbox/dcim/views.py:2149 netbox/extras/tables/tables.py:550 -#: netbox/netbox/navigation/menu.py:247 netbox/netbox/navigation/menu.py:249 -#: netbox/virtualization/views.py:180 +#: dcim/views.py:2149 extras/tables/tables.py:550 +#: netbox/navigation/menu.py:247 netbox/navigation/menu.py:249 +#: virtualization/views.py:180 msgid "Virtual Machines" msgstr "Máquinas Virtuais" -#: netbox/dcim/views.py:2897 +#: dcim/views.py:2897 #, python-brace-format msgid "Installed device {device} in bay {device_bay}." msgstr "Dispositivo instalado {device} no compartimento {device_bay}." -#: netbox/dcim/views.py:2938 +#: dcim/views.py:2938 #, python-brace-format msgid "Removed device {device} from bay {device_bay}." msgstr "Dispositivo {device} removido do compartimento {device_bay}." -#: netbox/dcim/views.py:3044 netbox/ipam/tables/ip.py:234 +#: dcim/views.py:3044 ipam/tables/ip.py:234 msgid "Children" msgstr "Filhos" -#: netbox/dcim/views.py:3510 +#: dcim/views.py:3510 #, python-brace-format msgid "Added member {device}" msgstr "Membro {device} adicionado" -#: netbox/dcim/views.py:3557 +#: dcim/views.py:3557 #, python-brace-format msgid "Unable to remove master device {device} from the virtual chassis." msgstr "" "Não é possível remover o dispositivo principal {device} do chassi virtual." -#: netbox/dcim/views.py:3570 +#: dcim/views.py:3570 #, python-brace-format msgid "Removed {device} from virtual chassis {chassis}" msgstr "Removido {device} do chassi virtual {chassis}" -#: netbox/extras/api/customfields.py:89 +#: extras/api/customfields.py:89 #, python-brace-format msgid "Unknown related object(s): {name}" msgstr "Objeto(s) relacionado(s) desconhecido(s): {name}" -#: netbox/extras/api/serializers_/customfields.py:73 +#: extras/api/serializers_/customfields.py:73 msgid "Changing the type of custom fields is not supported." msgstr "Alteração do tipo do campo customizado não é suportado." -#: netbox/extras/api/serializers_/scripts.py:70 -#: netbox/extras/api/serializers_/scripts.py:75 +#: extras/api/serializers_/scripts.py:70 extras/api/serializers_/scripts.py:75 msgid "Scheduling is not enabled for this script." msgstr "O agendamento não está habilitado para este script." -#: netbox/extras/choices.py:30 netbox/extras/forms/misc.py:14 +#: extras/choices.py:30 extras/forms/misc.py:14 msgid "Text" msgstr "Texto" -#: netbox/extras/choices.py:31 +#: extras/choices.py:31 msgid "Text (long)" msgstr "Texto (longo)" -#: netbox/extras/choices.py:32 +#: extras/choices.py:32 msgid "Integer" msgstr "Número Inteiro" -#: netbox/extras/choices.py:33 +#: extras/choices.py:33 msgid "Decimal" msgstr "Decimal" -#: netbox/extras/choices.py:34 +#: extras/choices.py:34 msgid "Boolean (true/false)" msgstr "Booleano (verdadeiro/falso)" -#: netbox/extras/choices.py:35 +#: extras/choices.py:35 msgid "Date" msgstr "Data" -#: netbox/extras/choices.py:36 +#: extras/choices.py:36 msgid "Date & time" msgstr "Data e hora" -#: netbox/extras/choices.py:38 +#: extras/choices.py:38 msgid "JSON" msgstr "JSON" -#: netbox/extras/choices.py:39 +#: extras/choices.py:39 msgid "Selection" msgstr "Seleção" -#: netbox/extras/choices.py:40 +#: extras/choices.py:40 msgid "Multiple selection" msgstr "Múltipla Seleção" -#: netbox/extras/choices.py:42 +#: extras/choices.py:42 msgid "Multiple objects" msgstr "Múltiplos objetos" -#: netbox/extras/choices.py:53 netbox/netbox/preferences.py:21 -#: netbox/templates/extras/customfield.html:78 netbox/vpn/choices.py:20 -#: netbox/wireless/choices.py:27 +#: extras/choices.py:53 netbox/preferences.py:21 +#: templates/extras/customfield.html:78 vpn/choices.py:20 +#: wireless/choices.py:27 msgid "Disabled" msgstr "Desativado" -#: netbox/extras/choices.py:54 +#: extras/choices.py:54 msgid "Loose" msgstr "Flexível" -#: netbox/extras/choices.py:55 +#: extras/choices.py:55 msgid "Exact" msgstr "Exato" -#: netbox/extras/choices.py:66 +#: extras/choices.py:66 msgid "Always" msgstr "Sempre" -#: netbox/extras/choices.py:67 +#: extras/choices.py:67 msgid "If set" msgstr "Se Definido" -#: netbox/extras/choices.py:68 netbox/extras/choices.py:81 +#: extras/choices.py:68 extras/choices.py:81 msgid "Hidden" msgstr "Oculto" -#: netbox/extras/choices.py:79 +#: extras/choices.py:79 msgid "Yes" msgstr "Sim" -#: netbox/extras/choices.py:80 +#: extras/choices.py:80 msgid "No" msgstr "Não" -#: netbox/extras/choices.py:108 netbox/templates/tenancy/contact.html:57 -#: netbox/tenancy/forms/bulk_edit.py:118 -#: netbox/wireless/forms/model_forms.py:168 +#: extras/choices.py:108 templates/tenancy/contact.html:57 +#: tenancy/forms/bulk_edit.py:118 wireless/forms/model_forms.py:168 msgid "Link" msgstr "Link" -#: netbox/extras/choices.py:124 +#: extras/choices.py:124 msgid "Newest" msgstr "Mais Recente" -#: netbox/extras/choices.py:125 +#: extras/choices.py:125 msgid "Oldest" msgstr "Mais Antigo" -#: netbox/extras/choices.py:126 +#: extras/choices.py:126 msgid "Alphabetical (A-Z)" msgstr "Ordem Alfabética (A-Z)" -#: netbox/extras/choices.py:127 +#: extras/choices.py:127 msgid "Alphabetical (Z-A)" msgstr "Ordem Alfabética (Z-A)" -#: netbox/extras/choices.py:144 netbox/extras/choices.py:167 +#: extras/choices.py:144 extras/choices.py:167 msgid "Info" msgstr "Informações" -#: netbox/extras/choices.py:145 netbox/extras/choices.py:168 +#: extras/choices.py:145 extras/choices.py:168 msgid "Success" msgstr "Sucesso" -#: netbox/extras/choices.py:146 netbox/extras/choices.py:169 +#: extras/choices.py:146 extras/choices.py:169 msgid "Warning" msgstr "Aviso" -#: netbox/extras/choices.py:147 +#: extras/choices.py:147 msgid "Danger" msgstr "Perigo" -#: netbox/extras/choices.py:165 +#: extras/choices.py:165 msgid "Debug" msgstr "Debug" -#: netbox/extras/choices.py:166 netbox/netbox/choices.py:101 +#: extras/choices.py:166 netbox/choices.py:101 msgid "Default" msgstr "Padrão" -#: netbox/extras/choices.py:170 +#: extras/choices.py:170 msgid "Failure" msgstr "Falha" -#: netbox/extras/choices.py:186 +#: extras/choices.py:186 msgid "Hourly" msgstr "A cada hora" -#: netbox/extras/choices.py:187 +#: extras/choices.py:187 msgid "12 hours" msgstr "12 horas" -#: netbox/extras/choices.py:188 +#: extras/choices.py:188 msgid "Daily" msgstr "Diariamente" -#: netbox/extras/choices.py:189 +#: extras/choices.py:189 msgid "Weekly" msgstr "Semanalmente" -#: netbox/extras/choices.py:190 +#: extras/choices.py:190 msgid "30 days" msgstr "30 dias" -#: netbox/extras/choices.py:226 -#: netbox/templates/dcim/virtualchassis_edit.html:107 -#: netbox/templates/generic/bulk_add_component.html:68 -#: netbox/templates/generic/object_edit.html:47 -#: netbox/templates/generic/object_edit.html:80 -#: netbox/templates/ipam/inc/ipaddress_edit_header.html:7 +#: extras/choices.py:226 templates/dcim/virtualchassis_edit.html:107 +#: templates/generic/bulk_add_component.html:68 +#: templates/generic/object_edit.html:47 templates/generic/object_edit.html:80 +#: templates/ipam/inc/ipaddress_edit_header.html:7 msgid "Create" msgstr "Criar" -#: netbox/extras/choices.py:227 +#: extras/choices.py:227 msgid "Update" msgstr "Atualizar" -#: netbox/extras/choices.py:228 -#: netbox/templates/circuits/inc/circuit_termination.html:23 -#: netbox/templates/dcim/inc/panels/inventory_items.html:37 -#: netbox/templates/dcim/moduletype/component_templates.html:23 -#: netbox/templates/dcim/powerpanel.html:66 -#: netbox/templates/extras/script_list.html:35 -#: netbox/templates/generic/bulk_delete.html:20 -#: netbox/templates/generic/bulk_delete.html:66 -#: netbox/templates/generic/object_delete.html:19 -#: netbox/templates/htmx/delete_form.html:57 -#: netbox/templates/ipam/inc/panels/fhrp_groups.html:48 -#: netbox/templates/users/objectpermission.html:46 -#: netbox/utilities/templates/buttons/delete.html:11 +#: extras/choices.py:228 templates/circuits/inc/circuit_termination.html:23 +#: templates/dcim/inc/panels/inventory_items.html:37 +#: templates/dcim/powerpanel.html:66 templates/extras/script_list.html:35 +#: templates/generic/bulk_delete.html:20 templates/generic/bulk_delete.html:66 +#: templates/generic/object_delete.html:19 templates/htmx/delete_form.html:57 +#: templates/ipam/inc/panels/fhrp_groups.html:48 +#: templates/users/objectpermission.html:46 +#: utilities/templates/buttons/delete.html:11 msgid "Delete" msgstr "Excluir" -#: netbox/extras/choices.py:252 netbox/netbox/choices.py:57 -#: netbox/netbox/choices.py:102 +#: extras/choices.py:252 netbox/choices.py:57 netbox/choices.py:102 msgid "Blue" msgstr "Azul" -#: netbox/extras/choices.py:253 netbox/netbox/choices.py:56 -#: netbox/netbox/choices.py:103 +#: extras/choices.py:253 netbox/choices.py:56 netbox/choices.py:103 msgid "Indigo" msgstr "Índigo" -#: netbox/extras/choices.py:254 netbox/netbox/choices.py:54 -#: netbox/netbox/choices.py:104 +#: extras/choices.py:254 netbox/choices.py:54 netbox/choices.py:104 msgid "Purple" msgstr "Roxo" -#: netbox/extras/choices.py:255 netbox/netbox/choices.py:51 -#: netbox/netbox/choices.py:105 +#: extras/choices.py:255 netbox/choices.py:51 netbox/choices.py:105 msgid "Pink" msgstr "Rosa" -#: netbox/extras/choices.py:256 netbox/netbox/choices.py:50 -#: netbox/netbox/choices.py:106 +#: extras/choices.py:256 netbox/choices.py:50 netbox/choices.py:106 msgid "Red" msgstr "Vermelho" -#: netbox/extras/choices.py:257 netbox/netbox/choices.py:68 -#: netbox/netbox/choices.py:107 +#: extras/choices.py:257 netbox/choices.py:68 netbox/choices.py:107 msgid "Orange" msgstr "Laranja" -#: netbox/extras/choices.py:258 netbox/netbox/choices.py:66 -#: netbox/netbox/choices.py:108 +#: extras/choices.py:258 netbox/choices.py:66 netbox/choices.py:108 msgid "Yellow" msgstr "Amarelo" -#: netbox/extras/choices.py:259 netbox/netbox/choices.py:63 -#: netbox/netbox/choices.py:109 +#: extras/choices.py:259 netbox/choices.py:63 netbox/choices.py:109 msgid "Green" msgstr "Verde" -#: netbox/extras/choices.py:260 netbox/netbox/choices.py:60 -#: netbox/netbox/choices.py:110 +#: extras/choices.py:260 netbox/choices.py:60 netbox/choices.py:110 msgid "Teal" msgstr "Azul petróleo" -#: netbox/extras/choices.py:261 netbox/netbox/choices.py:59 -#: netbox/netbox/choices.py:111 +#: extras/choices.py:261 netbox/choices.py:59 netbox/choices.py:111 msgid "Cyan" msgstr "Ciano" -#: netbox/extras/choices.py:262 netbox/netbox/choices.py:112 +#: extras/choices.py:262 netbox/choices.py:112 msgid "Gray" msgstr "Cinza" -#: netbox/extras/choices.py:263 netbox/netbox/choices.py:74 -#: netbox/netbox/choices.py:113 +#: extras/choices.py:263 netbox/choices.py:74 netbox/choices.py:113 msgid "Black" msgstr "Preto" -#: netbox/extras/choices.py:264 netbox/netbox/choices.py:75 -#: netbox/netbox/choices.py:114 +#: extras/choices.py:264 netbox/choices.py:75 netbox/choices.py:114 msgid "White" msgstr "Branco" -#: netbox/extras/choices.py:279 netbox/extras/forms/model_forms.py:353 -#: netbox/extras/forms/model_forms.py:430 -#: netbox/templates/extras/webhook.html:10 +#: extras/choices.py:279 extras/forms/model_forms.py:353 +#: extras/forms/model_forms.py:430 templates/extras/webhook.html:10 msgid "Webhook" msgstr "Webhook" -#: netbox/extras/choices.py:280 netbox/extras/forms/model_forms.py:418 -#: netbox/templates/extras/script/base.html:29 +#: extras/choices.py:280 extras/forms/model_forms.py:418 +#: templates/extras/script/base.html:29 msgid "Script" msgstr "Script" -#: netbox/extras/choices.py:281 +#: extras/choices.py:281 msgid "Notification" msgstr "Notificação" -#: netbox/extras/conditions.py:54 +#: extras/conditions.py:54 #, python-brace-format msgid "Unknown operator: {op}. Must be one of: {operators}" msgstr "Operador desconhecido: {op}. Deve ser um dos seguintes: {operators}" -#: netbox/extras/conditions.py:58 +#: extras/conditions.py:58 #, python-brace-format msgid "Unsupported value type: {value}" msgstr "Tipo de valor não suportado: {value}" -#: netbox/extras/conditions.py:60 +#: extras/conditions.py:60 #, python-brace-format msgid "Invalid type for {op} operation: {value}" msgstr "Tipo inválido para operação {op}: {value}" -#: netbox/extras/conditions.py:137 +#: extras/conditions.py:137 #, python-brace-format msgid "Ruleset must be a dictionary, not {ruleset}." msgstr "O conjunto de regras deve ser um dicionário, não {ruleset}." -#: netbox/extras/conditions.py:142 +#: extras/conditions.py:142 msgid "Invalid logic type: must be 'AND' or 'OR'. Please check documentation." msgstr "" "Tipo lógico inválido: deve ser 'AND' ou 'OR'. Por favor, verifique a " "documentação." -#: netbox/extras/conditions.py:154 +#: extras/conditions.py:154 msgid "Incorrect key(s) informed. Please check documentation." msgstr "Chave(s) inválida(s) informada(s). Por favor, cheque a documentação." -#: netbox/extras/dashboard/forms.py:38 +#: extras/dashboard/forms.py:38 msgid "Widget type" msgstr "Tipo de widget" -#: netbox/extras/dashboard/utils.py:36 +#: extras/dashboard/utils.py:36 #, python-brace-format msgid "Unregistered widget class: {name}" msgstr "Classe de widget não registrada: {name}" -#: netbox/extras/dashboard/widgets.py:125 +#: extras/dashboard/widgets.py:125 #, python-brace-format msgid "{class_name} must define a render() method." msgstr "{class_name} deve definir um método render ()." -#: netbox/extras/dashboard/widgets.py:144 +#: extras/dashboard/widgets.py:144 msgid "Note" msgstr "Nota" -#: netbox/extras/dashboard/widgets.py:145 +#: extras/dashboard/widgets.py:145 msgid "Display some arbitrary custom content. Markdown is supported." msgstr "" "Exibe qualquer conteúdo personalizado arbitrário. Markdown é suportado." -#: netbox/extras/dashboard/widgets.py:158 +#: extras/dashboard/widgets.py:158 msgid "Object Counts" msgstr "Contagem de Objetos" -#: netbox/extras/dashboard/widgets.py:159 +#: extras/dashboard/widgets.py:159 msgid "" "Display a set of NetBox models and the number of objects created for each " "type." @@ -7476,293 +6965,271 @@ msgstr "" "Exibe um conjunto de modelos do NetBox e o número de objetos criados para " "cada tipo." -#: netbox/extras/dashboard/widgets.py:169 +#: extras/dashboard/widgets.py:169 msgid "Filters to apply when counting the number of objects" msgstr "Filtros a serem aplicados ao contar o número de objetos" -#: netbox/extras/dashboard/widgets.py:177 +#: extras/dashboard/widgets.py:177 msgid "Invalid format. Object filters must be passed as a dictionary." msgstr "" "Formato inválido. Os filtros de objetos devem ser passados como um " "dicionário." -#: netbox/extras/dashboard/widgets.py:208 +#: extras/dashboard/widgets.py:208 msgid "Object List" msgstr "Lista de Objetos" -#: netbox/extras/dashboard/widgets.py:209 +#: extras/dashboard/widgets.py:209 msgid "Display an arbitrary list of objects." msgstr "Exibe uma lista arbitrária de objetos." -#: netbox/extras/dashboard/widgets.py:222 +#: extras/dashboard/widgets.py:222 msgid "The default number of objects to display" msgstr "O número padrão de objetos a serem exibidos" -#: netbox/extras/dashboard/widgets.py:234 +#: extras/dashboard/widgets.py:234 msgid "Invalid format. URL parameters must be passed as a dictionary." msgstr "" "Formato inválido. Os parâmetros de URL devem ser passados como um " "dicionário." -#: netbox/extras/dashboard/widgets.py:274 +#: extras/dashboard/widgets.py:274 msgid "RSS Feed" msgstr "Feed RSS" -#: netbox/extras/dashboard/widgets.py:279 +#: extras/dashboard/widgets.py:279 msgid "Embed an RSS feed from an external website." msgstr "Incorpore um feed RSS de um site externo." -#: netbox/extras/dashboard/widgets.py:286 +#: extras/dashboard/widgets.py:286 msgid "Feed URL" msgstr "URL do feed" -#: netbox/extras/dashboard/widgets.py:291 +#: extras/dashboard/widgets.py:291 msgid "The maximum number of objects to display" msgstr "O número máximo de objetos a serem exibidos" -#: netbox/extras/dashboard/widgets.py:296 +#: extras/dashboard/widgets.py:296 msgid "How long to stored the cached content (in seconds)" msgstr "" "Por quanto tempo o conteúdo em cache deve ser armazenado (em segundos)" -#: netbox/extras/dashboard/widgets.py:348 -#: netbox/templates/account/base.html:10 -#: netbox/templates/account/bookmarks.html:7 -#: netbox/templates/inc/user_menu.html:48 +#: extras/dashboard/widgets.py:348 templates/account/base.html:10 +#: templates/account/bookmarks.html:7 templates/inc/user_menu.html:48 msgid "Bookmarks" msgstr "Favoritos" -#: netbox/extras/dashboard/widgets.py:352 +#: extras/dashboard/widgets.py:352 msgid "Show your personal bookmarks" msgstr "Exibe seus favoritos pessoais" -#: netbox/extras/events.py:147 +#: extras/events.py:147 #, python-brace-format msgid "Unknown action type for an event rule: {action_type}" msgstr "Tipo de ação desconhecido para uma regra de evento: {action_type}" -#: netbox/extras/events.py:192 +#: extras/events.py:192 #, python-brace-format msgid "Cannot import events pipeline {name} error: {error}" msgstr "Não é possível importar o pipeline de eventos {name}: {error}" -#: netbox/extras/filtersets.py:45 +#: extras/filtersets.py:45 msgid "Script module (ID)" msgstr "Módulo script (ID)" -#: netbox/extras/filtersets.py:254 netbox/extras/filtersets.py:637 -#: netbox/extras/filtersets.py:665 +#: extras/filtersets.py:254 extras/filtersets.py:637 extras/filtersets.py:665 msgid "Data file (ID)" msgstr "Arquivo de dados (ID)" -#: netbox/extras/filtersets.py:370 netbox/users/filtersets.py:68 -#: netbox/users/filtersets.py:191 +#: extras/filtersets.py:370 users/filtersets.py:68 users/filtersets.py:191 msgid "Group (name)" msgstr "Grupo (nome)" -#: netbox/extras/filtersets.py:574 -#: netbox/virtualization/forms/filtersets.py:118 +#: extras/filtersets.py:574 virtualization/forms/filtersets.py:118 msgid "Cluster type" msgstr "Tipo de cluster" -#: netbox/extras/filtersets.py:580 netbox/virtualization/filtersets.py:95 -#: netbox/virtualization/filtersets.py:147 +#: extras/filtersets.py:580 virtualization/filtersets.py:95 +#: virtualization/filtersets.py:147 msgid "Cluster type (slug)" msgstr "Tipo de cluster (slug)" -#: netbox/extras/filtersets.py:601 netbox/tenancy/forms/forms.py:16 -#: netbox/tenancy/forms/forms.py:39 +#: extras/filtersets.py:601 tenancy/forms/forms.py:16 +#: tenancy/forms/forms.py:39 msgid "Tenant group" msgstr "Grupo de inquilinos" -#: netbox/extras/filtersets.py:607 netbox/tenancy/filtersets.py:188 -#: netbox/tenancy/filtersets.py:208 +#: extras/filtersets.py:607 tenancy/filtersets.py:188 +#: tenancy/filtersets.py:208 msgid "Tenant group (slug)" msgstr "Grupo de inquilinos (slug)" -#: netbox/extras/filtersets.py:623 netbox/extras/forms/model_forms.py:495 -#: netbox/templates/extras/tag.html:11 +#: extras/filtersets.py:623 extras/forms/model_forms.py:495 +#: templates/extras/tag.html:11 msgid "Tag" msgstr "Etiqueta" -#: netbox/extras/filtersets.py:629 +#: extras/filtersets.py:629 msgid "Tag (slug)" msgstr "Etiqueta (slug)" -#: netbox/extras/filtersets.py:689 netbox/extras/forms/filtersets.py:429 +#: extras/filtersets.py:689 extras/forms/filtersets.py:429 msgid "Has local config context data" msgstr "Possui dados de contexto de configuração local" -#: netbox/extras/forms/bulk_edit.py:35 netbox/extras/forms/filtersets.py:60 +#: extras/forms/bulk_edit.py:35 extras/forms/filtersets.py:60 msgid "Group name" msgstr "Nome do grupo" -#: netbox/extras/forms/bulk_edit.py:43 netbox/extras/forms/filtersets.py:68 -#: netbox/extras/tables/tables.py:65 -#: netbox/templates/extras/customfield.html:38 -#: netbox/templates/generic/bulk_import.html:118 +#: extras/forms/bulk_edit.py:43 extras/forms/filtersets.py:68 +#: extras/tables/tables.py:65 templates/extras/customfield.html:38 +#: templates/generic/bulk_import.html:118 msgid "Required" msgstr "Obrigatório" -#: netbox/extras/forms/bulk_edit.py:48 netbox/extras/forms/filtersets.py:75 +#: extras/forms/bulk_edit.py:48 extras/forms/filtersets.py:75 msgid "Must be unique" msgstr "Deve ser único" -#: netbox/extras/forms/bulk_edit.py:61 netbox/extras/forms/bulk_import.py:60 -#: netbox/extras/forms/filtersets.py:89 -#: netbox/extras/models/customfields.py:209 +#: extras/forms/bulk_edit.py:61 extras/forms/bulk_import.py:60 +#: extras/forms/filtersets.py:89 extras/models/customfields.py:209 msgid "UI visible" msgstr "UI visível" -#: netbox/extras/forms/bulk_edit.py:66 netbox/extras/forms/bulk_import.py:66 -#: netbox/extras/forms/filtersets.py:94 -#: netbox/extras/models/customfields.py:216 +#: extras/forms/bulk_edit.py:66 extras/forms/bulk_import.py:66 +#: extras/forms/filtersets.py:94 extras/models/customfields.py:216 msgid "UI editable" msgstr "UI editável" -#: netbox/extras/forms/bulk_edit.py:71 netbox/extras/forms/filtersets.py:97 +#: extras/forms/bulk_edit.py:71 extras/forms/filtersets.py:97 msgid "Is cloneable" msgstr "É clonável" -#: netbox/extras/forms/bulk_edit.py:76 netbox/extras/forms/filtersets.py:104 +#: extras/forms/bulk_edit.py:76 extras/forms/filtersets.py:104 msgid "Minimum value" msgstr "Valor mínimo" -#: netbox/extras/forms/bulk_edit.py:80 netbox/extras/forms/filtersets.py:108 +#: extras/forms/bulk_edit.py:80 extras/forms/filtersets.py:108 msgid "Maximum value" msgstr "Valor máximo" -#: netbox/extras/forms/bulk_edit.py:84 netbox/extras/forms/filtersets.py:112 +#: extras/forms/bulk_edit.py:84 extras/forms/filtersets.py:112 msgid "Validation regex" msgstr "Expressão regular de validação" -#: netbox/extras/forms/bulk_edit.py:91 netbox/extras/forms/filtersets.py:46 -#: netbox/extras/forms/model_forms.py:76 -#: netbox/templates/extras/customfield.html:70 +#: extras/forms/bulk_edit.py:91 extras/forms/filtersets.py:46 +#: extras/forms/model_forms.py:76 templates/extras/customfield.html:70 msgid "Behavior" msgstr "Comportamento" -#: netbox/extras/forms/bulk_edit.py:128 netbox/extras/forms/filtersets.py:149 +#: extras/forms/bulk_edit.py:128 extras/forms/filtersets.py:149 msgid "New window" msgstr "Nova janela" -#: netbox/extras/forms/bulk_edit.py:137 +#: extras/forms/bulk_edit.py:137 msgid "Button class" msgstr "Classe de botão" -#: netbox/extras/forms/bulk_edit.py:154 netbox/extras/forms/filtersets.py:187 -#: netbox/extras/models/models.py:409 +#: extras/forms/bulk_edit.py:154 extras/forms/filtersets.py:187 +#: extras/models/models.py:409 msgid "MIME type" msgstr "Tipo MIME" -#: netbox/extras/forms/bulk_edit.py:159 netbox/extras/forms/filtersets.py:190 +#: extras/forms/bulk_edit.py:159 extras/forms/filtersets.py:190 msgid "File extension" msgstr "Extensão de arquivo" -#: netbox/extras/forms/bulk_edit.py:164 netbox/extras/forms/filtersets.py:194 +#: extras/forms/bulk_edit.py:164 extras/forms/filtersets.py:194 msgid "As attachment" msgstr "Como anexo" -#: netbox/extras/forms/bulk_edit.py:192 netbox/extras/forms/filtersets.py:236 -#: netbox/extras/tables/tables.py:256 -#: netbox/templates/extras/savedfilter.html:29 +#: extras/forms/bulk_edit.py:192 extras/forms/filtersets.py:236 +#: extras/tables/tables.py:256 templates/extras/savedfilter.html:29 msgid "Shared" msgstr "Compartilhado" -#: netbox/extras/forms/bulk_edit.py:215 netbox/extras/forms/filtersets.py:265 -#: netbox/extras/models/models.py:174 +#: extras/forms/bulk_edit.py:215 extras/forms/filtersets.py:265 +#: extras/models/models.py:174 msgid "HTTP method" msgstr "Método HTTP" -#: netbox/extras/forms/bulk_edit.py:219 netbox/extras/forms/filtersets.py:259 -#: netbox/templates/extras/webhook.html:30 +#: extras/forms/bulk_edit.py:219 extras/forms/filtersets.py:259 +#: templates/extras/webhook.html:30 msgid "Payload URL" msgstr "URL do payload" -#: netbox/extras/forms/bulk_edit.py:224 netbox/extras/models/models.py:214 +#: extras/forms/bulk_edit.py:224 extras/models/models.py:214 msgid "SSL verification" msgstr "Verificação SSL" -#: netbox/extras/forms/bulk_edit.py:227 -#: netbox/templates/extras/webhook.html:38 +#: extras/forms/bulk_edit.py:227 templates/extras/webhook.html:38 msgid "Secret" msgstr "Senha" -#: netbox/extras/forms/bulk_edit.py:232 +#: extras/forms/bulk_edit.py:232 msgid "CA file path" msgstr "Caminho do arquivo CA" -#: netbox/extras/forms/bulk_edit.py:253 netbox/extras/forms/bulk_import.py:192 -#: netbox/extras/forms/model_forms.py:377 +#: extras/forms/bulk_edit.py:253 extras/forms/bulk_import.py:192 +#: extras/forms/model_forms.py:377 msgid "Event types" msgstr "Tipos de evento" -#: netbox/extras/forms/bulk_edit.py:293 +#: extras/forms/bulk_edit.py:293 msgid "Is active" msgstr "Está ativo" -#: netbox/extras/forms/bulk_import.py:37 -#: netbox/extras/forms/bulk_import.py:118 -#: netbox/extras/forms/bulk_import.py:139 -#: netbox/extras/forms/bulk_import.py:162 -#: netbox/extras/forms/bulk_import.py:186 -#: netbox/extras/forms/filtersets.py:137 netbox/extras/forms/filtersets.py:224 -#: netbox/extras/forms/model_forms.py:47 -#: netbox/extras/forms/model_forms.py:205 -#: netbox/extras/forms/model_forms.py:237 -#: netbox/extras/forms/model_forms.py:278 -#: netbox/extras/forms/model_forms.py:372 -#: netbox/extras/forms/model_forms.py:489 -#: netbox/users/forms/model_forms.py:276 +#: extras/forms/bulk_import.py:37 extras/forms/bulk_import.py:118 +#: extras/forms/bulk_import.py:139 extras/forms/bulk_import.py:162 +#: extras/forms/bulk_import.py:186 extras/forms/filtersets.py:137 +#: extras/forms/filtersets.py:224 extras/forms/model_forms.py:47 +#: extras/forms/model_forms.py:205 extras/forms/model_forms.py:237 +#: extras/forms/model_forms.py:278 extras/forms/model_forms.py:372 +#: extras/forms/model_forms.py:489 users/forms/model_forms.py:276 msgid "Object types" msgstr "Tipos de objetos" -#: netbox/extras/forms/bulk_import.py:39 -#: netbox/extras/forms/bulk_import.py:120 -#: netbox/extras/forms/bulk_import.py:141 -#: netbox/extras/forms/bulk_import.py:164 -#: netbox/extras/forms/bulk_import.py:188 -#: netbox/tenancy/forms/bulk_import.py:96 +#: extras/forms/bulk_import.py:39 extras/forms/bulk_import.py:120 +#: extras/forms/bulk_import.py:141 extras/forms/bulk_import.py:164 +#: extras/forms/bulk_import.py:188 tenancy/forms/bulk_import.py:96 msgid "One or more assigned object types" msgstr "Um ou mais tipos de objetos associados" -#: netbox/extras/forms/bulk_import.py:44 +#: extras/forms/bulk_import.py:44 msgid "Field data type (e.g. text, integer, etc.)" msgstr "Tipo de campo de dados (por exemplo, texto, número inteiro etc.)" -#: netbox/extras/forms/bulk_import.py:47 netbox/extras/forms/filtersets.py:208 -#: netbox/extras/forms/filtersets.py:281 -#: netbox/extras/forms/model_forms.py:304 -#: netbox/extras/forms/model_forms.py:341 -#: netbox/tenancy/forms/filtersets.py:92 +#: extras/forms/bulk_import.py:47 extras/forms/filtersets.py:208 +#: extras/forms/filtersets.py:281 extras/forms/model_forms.py:304 +#: extras/forms/model_forms.py:341 tenancy/forms/filtersets.py:92 msgid "Object type" msgstr "Tipo de objeto" -#: netbox/extras/forms/bulk_import.py:50 +#: extras/forms/bulk_import.py:50 msgid "Object type (for object or multi-object fields)" msgstr "Tipo de objeto (para campos de objeto ou de multiobjetos)" -#: netbox/extras/forms/bulk_import.py:53 netbox/extras/forms/filtersets.py:84 +#: extras/forms/bulk_import.py:53 extras/forms/filtersets.py:84 msgid "Choice set" msgstr "Conjunto de opções" -#: netbox/extras/forms/bulk_import.py:57 +#: extras/forms/bulk_import.py:57 msgid "Choice set (for selection fields)" msgstr "Conjunto de opções (para campos de seleção)" -#: netbox/extras/forms/bulk_import.py:63 +#: extras/forms/bulk_import.py:63 msgid "Whether the custom field is displayed in the UI" msgstr "Se o campo personalizado é exibido na interface do usuário" -#: netbox/extras/forms/bulk_import.py:69 +#: extras/forms/bulk_import.py:69 msgid "Whether the custom field is editable in the UI" msgstr "Se o campo personalizado é editável na interface do usuário" -#: netbox/extras/forms/bulk_import.py:85 +#: extras/forms/bulk_import.py:85 msgid "The base set of predefined choices to use (if any)" msgstr "O conjunto básico de opções predefinidas a serem usadas (se houver)" -#: netbox/extras/forms/bulk_import.py:91 +#: extras/forms/bulk_import.py:91 msgid "" "Quoted string of comma-separated field choices with optional labels " "separated by colon: \"choice1:First Choice,choice2:Second Choice\"" @@ -7771,201 +7238,185 @@ msgstr "" "com rótulos opcionais separados por dois pontos: “Choice1:First Choice, " "Choice2:Second Choice”" -#: netbox/extras/forms/bulk_import.py:123 netbox/extras/models/models.py:323 +#: extras/forms/bulk_import.py:123 extras/models/models.py:323 msgid "button class" msgstr "classe de botão" -#: netbox/extras/forms/bulk_import.py:126 netbox/extras/models/models.py:327 +#: extras/forms/bulk_import.py:126 extras/models/models.py:327 msgid "" "The class of the first link in a group will be used for the dropdown button" msgstr "" "A classe do primeiro link em um grupo será usada para o botão suspenso" -#: netbox/extras/forms/bulk_import.py:193 +#: extras/forms/bulk_import.py:193 msgid "The event type(s) which will trigger this rule" msgstr "O(s) tipo(s) de evento que acionará(ão) esta regra." -#: netbox/extras/forms/bulk_import.py:196 +#: extras/forms/bulk_import.py:196 msgid "Action object" msgstr "Objeto de ação" -#: netbox/extras/forms/bulk_import.py:198 +#: extras/forms/bulk_import.py:198 msgid "Webhook name or script as dotted path module.Class" msgstr "Nome do webhook ou script como caminho pontilhado module.Class" -#: netbox/extras/forms/bulk_import.py:219 +#: extras/forms/bulk_import.py:219 #, python-brace-format msgid "Webhook {name} not found" msgstr "Webhook {name} não encontrado" -#: netbox/extras/forms/bulk_import.py:228 +#: extras/forms/bulk_import.py:228 #, python-brace-format msgid "Script {name} not found" msgstr "Script {name} não encontrado" -#: netbox/extras/forms/bulk_import.py:244 +#: extras/forms/bulk_import.py:244 msgid "Assigned object type" msgstr "Tipo de objeto associado" -#: netbox/extras/forms/bulk_import.py:249 +#: extras/forms/bulk_import.py:249 msgid "The classification of entry" msgstr "A classificação da entrada" -#: netbox/extras/forms/bulk_import.py:261 -#: netbox/extras/forms/model_forms.py:320 netbox/netbox/navigation/menu.py:390 -#: netbox/templates/extras/notificationgroup.html:41 -#: netbox/templates/users/group.html:29 netbox/users/forms/model_forms.py:236 -#: netbox/users/forms/model_forms.py:248 netbox/users/forms/model_forms.py:300 -#: netbox/users/tables.py:102 +#: extras/forms/bulk_import.py:261 extras/forms/model_forms.py:320 +#: netbox/navigation/menu.py:390 templates/extras/notificationgroup.html:41 +#: templates/users/group.html:29 users/forms/model_forms.py:236 +#: users/forms/model_forms.py:248 users/forms/model_forms.py:300 +#: users/tables.py:102 msgid "Users" msgstr "Usuários" -#: netbox/extras/forms/bulk_import.py:265 +#: extras/forms/bulk_import.py:265 msgid "User names separated by commas, encased with double quotes" msgstr "Nomes de usuários separados por vírgulas, envoltos por aspas duplas." -#: netbox/extras/forms/bulk_import.py:268 -#: netbox/extras/forms/model_forms.py:315 netbox/netbox/navigation/menu.py:410 -#: netbox/templates/extras/notificationgroup.html:31 -#: netbox/users/forms/model_forms.py:181 netbox/users/forms/model_forms.py:193 -#: netbox/users/forms/model_forms.py:305 netbox/users/tables.py:35 -#: netbox/users/tables.py:106 +#: extras/forms/bulk_import.py:268 extras/forms/model_forms.py:315 +#: netbox/navigation/menu.py:410 templates/extras/notificationgroup.html:31 +#: users/forms/model_forms.py:181 users/forms/model_forms.py:193 +#: users/forms/model_forms.py:305 users/tables.py:35 users/tables.py:106 msgid "Groups" msgstr "Grupos" -#: netbox/extras/forms/bulk_import.py:272 +#: extras/forms/bulk_import.py:272 msgid "Group names separated by commas, encased with double quotes" msgstr "Nomes de grupo separados por vírgulas, envoltos por aspas duplas." -#: netbox/extras/forms/filtersets.py:52 netbox/extras/forms/model_forms.py:56 +#: extras/forms/filtersets.py:52 extras/forms/model_forms.py:56 msgid "Related object type" msgstr "Tipo de objeto relacionado" -#: netbox/extras/forms/filtersets.py:57 +#: extras/forms/filtersets.py:57 msgid "Field type" msgstr "Tipo de campo" -#: netbox/extras/forms/filtersets.py:120 -#: netbox/extras/forms/model_forms.py:157 netbox/extras/tables/tables.py:91 -#: netbox/templates/generic/bulk_import.html:154 +#: extras/forms/filtersets.py:120 extras/forms/model_forms.py:157 +#: extras/tables/tables.py:91 templates/generic/bulk_import.html:154 msgid "Choices" msgstr "Escolhas" -#: netbox/extras/forms/filtersets.py:164 netbox/extras/forms/filtersets.py:319 -#: netbox/extras/forms/filtersets.py:408 -#: netbox/extras/forms/model_forms.py:572 netbox/templates/core/job.html:96 -#: netbox/templates/extras/eventrule.html:84 +#: extras/forms/filtersets.py:164 extras/forms/filtersets.py:319 +#: extras/forms/filtersets.py:408 extras/forms/model_forms.py:572 +#: templates/core/job.html:96 templates/extras/eventrule.html:84 msgid "Data" msgstr "Dados" -#: netbox/extras/forms/filtersets.py:175 netbox/extras/forms/filtersets.py:333 -#: netbox/extras/forms/filtersets.py:418 netbox/netbox/choices.py:130 -#: netbox/utilities/forms/bulk_import.py:26 +#: extras/forms/filtersets.py:175 extras/forms/filtersets.py:333 +#: extras/forms/filtersets.py:418 netbox/choices.py:130 +#: utilities/forms/bulk_import.py:26 msgid "Data file" msgstr "Arquivo de dados" -#: netbox/extras/forms/filtersets.py:183 +#: extras/forms/filtersets.py:183 msgid "Content types" msgstr "Tipos de conteúdo" -#: netbox/extras/forms/filtersets.py:255 netbox/extras/models/models.py:179 +#: extras/forms/filtersets.py:255 extras/models/models.py:179 msgid "HTTP content type" msgstr "Tipo de conteúdo HTTP" -#: netbox/extras/forms/filtersets.py:286 +#: extras/forms/filtersets.py:286 msgid "Event type" msgstr "Tipo de evento" -#: netbox/extras/forms/filtersets.py:291 +#: extras/forms/filtersets.py:291 msgid "Action type" msgstr "Tipo de ação" -#: netbox/extras/forms/filtersets.py:307 +#: extras/forms/filtersets.py:307 msgid "Tagged object type" msgstr "Tipo de objeto etiquetado" -#: netbox/extras/forms/filtersets.py:312 +#: extras/forms/filtersets.py:312 msgid "Allowed object type" msgstr "Tipo de objeto permitido" -#: netbox/extras/forms/filtersets.py:341 -#: netbox/extras/forms/model_forms.py:507 netbox/netbox/navigation/menu.py:18 +#: extras/forms/filtersets.py:341 extras/forms/model_forms.py:507 +#: netbox/navigation/menu.py:18 msgid "Regions" msgstr "Regiões" -#: netbox/extras/forms/filtersets.py:346 -#: netbox/extras/forms/model_forms.py:512 +#: extras/forms/filtersets.py:346 extras/forms/model_forms.py:512 msgid "Site groups" msgstr "Grupos de sites" -#: netbox/extras/forms/filtersets.py:356 -#: netbox/extras/forms/model_forms.py:522 netbox/netbox/navigation/menu.py:20 -#: netbox/templates/dcim/site.html:127 +#: extras/forms/filtersets.py:356 extras/forms/model_forms.py:522 +#: netbox/navigation/menu.py:20 templates/dcim/site.html:127 msgid "Locations" msgstr "Localizações" -#: netbox/extras/forms/filtersets.py:361 -#: netbox/extras/forms/model_forms.py:527 +#: extras/forms/filtersets.py:361 extras/forms/model_forms.py:527 msgid "Device types" msgstr "Tipos de dispositivos" -#: netbox/extras/forms/filtersets.py:366 -#: netbox/extras/forms/model_forms.py:532 +#: extras/forms/filtersets.py:366 extras/forms/model_forms.py:532 msgid "Roles" msgstr "Funções" -#: netbox/extras/forms/filtersets.py:376 -#: netbox/extras/forms/model_forms.py:542 +#: extras/forms/filtersets.py:376 extras/forms/model_forms.py:542 msgid "Cluster types" msgstr "Tipos de cluster" -#: netbox/extras/forms/filtersets.py:381 -#: netbox/extras/forms/model_forms.py:547 +#: extras/forms/filtersets.py:381 extras/forms/model_forms.py:547 msgid "Cluster groups" msgstr "Grupos de clusters" -#: netbox/extras/forms/filtersets.py:386 -#: netbox/extras/forms/model_forms.py:552 netbox/netbox/navigation/menu.py:255 -#: netbox/netbox/navigation/menu.py:257 -#: netbox/templates/virtualization/clustertype.html:30 -#: netbox/virtualization/tables/clusters.py:23 -#: netbox/virtualization/tables/clusters.py:45 +#: extras/forms/filtersets.py:386 extras/forms/model_forms.py:552 +#: netbox/navigation/menu.py:255 netbox/navigation/menu.py:257 +#: templates/virtualization/clustertype.html:30 +#: virtualization/tables/clusters.py:23 virtualization/tables/clusters.py:45 msgid "Clusters" msgstr "Clusters" -#: netbox/extras/forms/filtersets.py:391 -#: netbox/extras/forms/model_forms.py:557 +#: extras/forms/filtersets.py:391 extras/forms/model_forms.py:557 msgid "Tenant groups" msgstr "Grupos de inquilinos" -#: netbox/extras/forms/model_forms.py:49 +#: extras/forms/model_forms.py:49 msgid "The type(s) of object that have this custom field" msgstr "O(s) tipo(s) de objeto que possuem este campo customizado." -#: netbox/extras/forms/model_forms.py:52 +#: extras/forms/model_forms.py:52 msgid "Default value" msgstr "Valor padrão" -#: netbox/extras/forms/model_forms.py:58 +#: extras/forms/model_forms.py:58 msgid "Type of the related object (for object/multi-object fields only)" msgstr "" "Tipo do objeto relacionado (somente para campos de objeto/vários objetos)" -#: netbox/extras/forms/model_forms.py:61 -#: netbox/templates/extras/customfield.html:60 +#: extras/forms/model_forms.py:61 templates/extras/customfield.html:60 msgid "Related object filter" msgstr "Filtro de objeto relacionado" -#: netbox/extras/forms/model_forms.py:63 +#: extras/forms/model_forms.py:63 msgid "Specify query parameters as a JSON object." msgstr "Especifique os parâmetros da consulta como um objeto JSON." -#: netbox/extras/forms/model_forms.py:73 -#: netbox/templates/extras/customfield.html:10 +#: extras/forms/model_forms.py:73 templates/extras/customfield.html:10 msgid "Custom Field" msgstr "Campo personalizado" -#: netbox/extras/forms/model_forms.py:85 +#: extras/forms/model_forms.py:85 msgid "" "The type of data stored in this field. For object/multi-object fields, " "select the related object type below." @@ -7973,7 +7424,7 @@ msgstr "" "O tipo de dados armazenados neste campo. Para campos de objeto/multiobjeto, " "selecione o tipo de objeto relacionado abaixo." -#: netbox/extras/forms/model_forms.py:88 +#: extras/forms/model_forms.py:88 msgid "" "This will be displayed as help text for the form field. Markdown is " "supported." @@ -7981,11 +7432,11 @@ msgstr "" "Isso será exibido como texto de ajuda para o campo do formulário. Markdown é" " suportado." -#: netbox/extras/forms/model_forms.py:143 +#: extras/forms/model_forms.py:143 msgid "Related Object" msgstr "Objeto Relacionado" -#: netbox/extras/forms/model_forms.py:169 +#: extras/forms/model_forms.py:169 msgid "" "Enter one choice per line. An optional label may be specified for each " "choice by appending it with a colon. Example:" @@ -7993,16 +7444,15 @@ msgstr "" "Insira uma opção por linha. Um rótulo opcional pode ser especificado para " "cada opção anexando-o com dois pontos. Exemplo:" -#: netbox/extras/forms/model_forms.py:212 -#: netbox/templates/extras/customlink.html:10 +#: extras/forms/model_forms.py:212 templates/extras/customlink.html:10 msgid "Custom Link" msgstr "Link Personalizado" -#: netbox/extras/forms/model_forms.py:214 +#: extras/forms/model_forms.py:214 msgid "Templates" msgstr "Modelos" -#: netbox/extras/forms/model_forms.py:226 +#: extras/forms/model_forms.py:226 #, python-brace-format msgid "" "Jinja2 template code for the link text. Reference the object as {example}. " @@ -8011,7 +7461,7 @@ msgstr "" "Modelo de código Jinja2 para o texto do link. Faça referência ao objeto como" " {example}. Links renderizados como texto vazio não serão exibidos." -#: netbox/extras/forms/model_forms.py:230 +#: extras/forms/model_forms.py:230 #, python-brace-format msgid "" "Jinja2 template code for the link URL. Reference the object as {example}." @@ -8019,61 +7469,55 @@ msgstr "" "Modelo de código Jinja2 para a URL do link. Faça referência ao objeto como " "{example}." -#: netbox/extras/forms/model_forms.py:241 -#: netbox/extras/forms/model_forms.py:624 +#: extras/forms/model_forms.py:241 extras/forms/model_forms.py:624 msgid "Template code" msgstr "Modelo de código" -#: netbox/extras/forms/model_forms.py:247 -#: netbox/templates/extras/exporttemplate.html:12 +#: extras/forms/model_forms.py:247 templates/extras/exporttemplate.html:12 msgid "Export Template" msgstr "Modelo de Exportação" -#: netbox/extras/forms/model_forms.py:249 +#: extras/forms/model_forms.py:249 msgid "Rendering" msgstr "Renderizando" -#: netbox/extras/forms/model_forms.py:263 -#: netbox/extras/forms/model_forms.py:649 +#: extras/forms/model_forms.py:263 extras/forms/model_forms.py:649 msgid "Template content is populated from the remote source selected below." msgstr "" "O conteúdo do modelo é preenchido a partir da fonte remota selecionada " "abaixo." -#: netbox/extras/forms/model_forms.py:270 -#: netbox/extras/forms/model_forms.py:656 +#: extras/forms/model_forms.py:270 extras/forms/model_forms.py:656 msgid "Must specify either local content or a data file" msgstr "Deve especificar o conteúdo local ou um arquivo de dados" -#: netbox/extras/forms/model_forms.py:284 netbox/netbox/forms/mixins.py:70 -#: netbox/templates/extras/savedfilter.html:10 +#: extras/forms/model_forms.py:284 netbox/forms/mixins.py:70 +#: templates/extras/savedfilter.html:10 msgid "Saved Filter" msgstr "Filtro Salvo" -#: netbox/extras/forms/model_forms.py:334 +#: extras/forms/model_forms.py:334 msgid "A notification group specify at least one user or group." msgstr "" "Um grupo de notificações deve especificar pelo menos um usuário ou grupo." -#: netbox/extras/forms/model_forms.py:356 -#: netbox/templates/extras/webhook.html:23 +#: extras/forms/model_forms.py:356 templates/extras/webhook.html:23 msgid "HTTP Request" msgstr "Solicitação HTTP" -#: netbox/extras/forms/model_forms.py:358 -#: netbox/templates/extras/webhook.html:44 +#: extras/forms/model_forms.py:358 templates/extras/webhook.html:44 msgid "SSL" msgstr "SSL" -#: netbox/extras/forms/model_forms.py:380 +#: extras/forms/model_forms.py:380 msgid "Action choice" msgstr "Escolha da ação" -#: netbox/extras/forms/model_forms.py:385 +#: extras/forms/model_forms.py:385 msgid "Enter conditions in JSON format." msgstr "Insira as condições em formato JSON." -#: netbox/extras/forms/model_forms.py:389 +#: extras/forms/model_forms.py:389 msgid "" "Enter parameters to pass to the action in JSON format." @@ -8081,111 +7525,109 @@ msgstr "" "Insira os parâmetros a serem passados para a ação em formato JSON." -#: netbox/extras/forms/model_forms.py:394 -#: netbox/templates/extras/eventrule.html:10 +#: extras/forms/model_forms.py:394 templates/extras/eventrule.html:10 msgid "Event Rule" msgstr "Regra de Evento" -#: netbox/extras/forms/model_forms.py:395 +#: extras/forms/model_forms.py:395 msgid "Triggers" msgstr "Triggers" -#: netbox/extras/forms/model_forms.py:442 +#: extras/forms/model_forms.py:442 msgid "Notification group" msgstr "Grupo de notificação" -#: netbox/extras/forms/model_forms.py:562 netbox/netbox/navigation/menu.py:26 -#: netbox/tenancy/tables/tenants.py:22 +#: extras/forms/model_forms.py:562 netbox/navigation/menu.py:26 +#: tenancy/tables/tenants.py:22 msgid "Tenants" msgstr "Inquilinos" -#: netbox/extras/forms/model_forms.py:606 +#: extras/forms/model_forms.py:606 msgid "Data is populated from the remote source selected below." msgstr "Os dados são preenchidos a partir da fonte remota selecionada abaixo." -#: netbox/extras/forms/model_forms.py:612 +#: extras/forms/model_forms.py:612 msgid "Must specify either local data or a data file" msgstr "Deve especificar dados locais ou um arquivo de dados" -#: netbox/extras/forms/model_forms.py:631 -#: netbox/templates/core/datafile.html:55 +#: extras/forms/model_forms.py:631 templates/core/datafile.html:55 msgid "Content" msgstr "Conteúdo" -#: netbox/extras/forms/reports.py:17 netbox/extras/forms/scripts.py:23 +#: extras/forms/reports.py:17 extras/forms/scripts.py:23 msgid "Schedule at" msgstr "Agende para" -#: netbox/extras/forms/reports.py:18 +#: extras/forms/reports.py:18 msgid "Schedule execution of report to a set time" msgstr "Agende a execução do relatório em um horário definido" -#: netbox/extras/forms/reports.py:23 netbox/extras/forms/scripts.py:29 +#: extras/forms/reports.py:23 extras/forms/scripts.py:29 msgid "Recurs every" msgstr "Repita a cada" -#: netbox/extras/forms/reports.py:27 +#: extras/forms/reports.py:27 msgid "Interval at which this report is re-run (in minutes)" msgstr "Intervalo no qual este relatório é executado novamente (em minutos)" -#: netbox/extras/forms/reports.py:35 netbox/extras/forms/scripts.py:41 +#: extras/forms/reports.py:35 extras/forms/scripts.py:41 #, python-brace-format msgid " (current time: {now})" msgstr " (hora atual: {now})" -#: netbox/extras/forms/reports.py:45 netbox/extras/forms/scripts.py:51 +#: extras/forms/reports.py:45 extras/forms/scripts.py:51 msgid "Scheduled time must be in the future." msgstr "O horário agendado deve ser no futuro." -#: netbox/extras/forms/scripts.py:17 +#: extras/forms/scripts.py:17 msgid "Commit changes" msgstr "Confirmar alterações" -#: netbox/extras/forms/scripts.py:18 +#: extras/forms/scripts.py:18 msgid "Commit changes to the database (uncheck for a dry-run)" msgstr "Confirme as alterações no banco de dados (desmarque para um teste)" -#: netbox/extras/forms/scripts.py:24 +#: extras/forms/scripts.py:24 msgid "Schedule execution of script to a set time" msgstr "Programe a execução do script para um horário definido" -#: netbox/extras/forms/scripts.py:33 +#: extras/forms/scripts.py:33 msgid "Interval at which this script is re-run (in minutes)" msgstr "Intervalo no qual este script é executado novamente (em minutos)" -#: netbox/extras/jobs.py:49 +#: extras/jobs.py:49 msgid "Database changes have been reverted automatically." msgstr "As alterações no banco de dados foram revertidas automaticamente." -#: netbox/extras/jobs.py:56 +#: extras/jobs.py:55 msgid "Script aborted with error: " msgstr "Script abortado com erro: " -#: netbox/extras/jobs.py:66 +#: extras/jobs.py:65 msgid "An exception occurred: " msgstr "Ocorreu uma exceção: " -#: netbox/extras/jobs.py:71 +#: extras/jobs.py:70 msgid "Database changes have been reverted due to error." msgstr "As alterações do banco de dados foram revertidas devido a um erro." -#: netbox/extras/management/commands/reindex.py:66 +#: extras/management/commands/reindex.py:66 msgid "No indexers found!" msgstr "Nenhum indexador encontrado!" -#: netbox/extras/models/configs.py:130 +#: extras/models/configs.py:130 msgid "config context" msgstr "contexto de configuração" -#: netbox/extras/models/configs.py:131 +#: extras/models/configs.py:131 msgid "config contexts" msgstr "contexto de configuração" -#: netbox/extras/models/configs.py:149 netbox/extras/models/configs.py:205 +#: extras/models/configs.py:149 extras/models/configs.py:205 msgid "JSON data must be in object form. Example:" msgstr "Os dados JSON devem estar no formato de objeto. Exemplo:" -#: netbox/extras/models/configs.py:169 +#: extras/models/configs.py:169 msgid "" "Local config context data takes precedence over source contexts in the final" " rendered config context" @@ -8193,19 +7635,19 @@ msgstr "" "Os dados do contexto de configuração local têm precedência sobre os " "contextos de origem no contexto de configuração renderizado final" -#: netbox/extras/models/configs.py:224 +#: extras/models/configs.py:224 msgid "template code" msgstr "modelo de código" -#: netbox/extras/models/configs.py:225 +#: extras/models/configs.py:225 msgid "Jinja2 template code." msgstr "Modelo de código Jinja2." -#: netbox/extras/models/configs.py:228 +#: extras/models/configs.py:228 msgid "environment parameters" msgstr "parâmetros do ambiente" -#: netbox/extras/models/configs.py:233 +#: extras/models/configs.py:233 msgid "" "Any additional" @@ -8215,42 +7657,42 @@ msgstr "" "href=\"https://jinja.palletsprojects.com/en/3.1.x/api/#jinja2.Environment\">parâmetros" " adicionais para passar ao construir o ambiente Jinja2." -#: netbox/extras/models/configs.py:240 +#: extras/models/configs.py:240 msgid "config template" msgstr "modelo de configuração" -#: netbox/extras/models/configs.py:241 +#: extras/models/configs.py:241 msgid "config templates" msgstr "modelos de configuração" -#: netbox/extras/models/customfields.py:75 +#: extras/models/customfields.py:75 msgid "The object(s) to which this field applies." msgstr "Objetos aos quais este campo se aplica." -#: netbox/extras/models/customfields.py:82 +#: extras/models/customfields.py:82 msgid "The type of data this custom field holds" msgstr "O tipo de dados que este campo personalizado contém" -#: netbox/extras/models/customfields.py:89 +#: extras/models/customfields.py:89 msgid "The type of NetBox object this field maps to (for object fields)" msgstr "" "O tipo de objeto do NetBox para o qual este campo é mapeado (para campos de " "objeto)" -#: netbox/extras/models/customfields.py:95 +#: extras/models/customfields.py:95 msgid "Internal field name" msgstr "Nome interno do campo" -#: netbox/extras/models/customfields.py:99 +#: extras/models/customfields.py:99 msgid "Only alphanumeric characters and underscores are allowed." msgstr "Somente caracteres alfanuméricos e sublinhados são permitidos." -#: netbox/extras/models/customfields.py:104 +#: extras/models/customfields.py:104 msgid "Double underscores are not permitted in custom field names." msgstr "" "Sublinhados duplos não são permitidos em nomes de campos personalizados." -#: netbox/extras/models/customfields.py:115 +#: extras/models/customfields.py:115 msgid "" "Name of the field as displayed to users (if not provided, 'the field's name " "will be used)" @@ -8258,19 +7700,19 @@ msgstr "" "Nome do campo exibido aos usuários (se não for fornecido, o nome do campo " "será usado)" -#: netbox/extras/models/customfields.py:119 netbox/extras/models/models.py:317 +#: extras/models/customfields.py:119 extras/models/models.py:317 msgid "group name" msgstr "nome do grupo" -#: netbox/extras/models/customfields.py:122 +#: extras/models/customfields.py:122 msgid "Custom fields within the same group will be displayed together" msgstr "Os campos personalizados dentro do mesmo grupo serão exibidos juntos" -#: netbox/extras/models/customfields.py:130 +#: extras/models/customfields.py:130 msgid "required" msgstr "requeridos" -#: netbox/extras/models/customfields.py:132 +#: extras/models/customfields.py:132 msgid "" "This field is required when creating new objects or editing an existing " "object." @@ -8278,19 +7720,19 @@ msgstr "" "Este campo é necessário ao criar novos objetos ou editar um objeto " "existente." -#: netbox/extras/models/customfields.py:135 +#: extras/models/customfields.py:135 msgid "must be unique" msgstr "deve ser único" -#: netbox/extras/models/customfields.py:137 +#: extras/models/customfields.py:137 msgid "The value of this field must be unique for the assigned object" msgstr "O valor deste campo deve ser único para o objeto atribuído" -#: netbox/extras/models/customfields.py:140 +#: extras/models/customfields.py:140 msgid "search weight" msgstr "peso da pesquisa" -#: netbox/extras/models/customfields.py:143 +#: extras/models/customfields.py:143 msgid "" "Weighting for search. Lower values are considered more important. Fields " "with a search weight of zero will be ignored." @@ -8298,11 +7740,11 @@ msgstr "" "Peso durante uma pesquisa. Valores mais baixos são considerados mais " "importantes. Campos com peso de pesquisa zero serão ignorados." -#: netbox/extras/models/customfields.py:148 +#: extras/models/customfields.py:148 msgid "filter logic" msgstr "lógica do filtro" -#: netbox/extras/models/customfields.py:152 +#: extras/models/customfields.py:152 msgid "" "Loose matches any instance of a given string; exact matches the entire " "field." @@ -8310,11 +7752,11 @@ msgstr "" "Flexível corresponde a qualquer instância de uma determinada string; exata " "corresponde a todo o campo." -#: netbox/extras/models/customfields.py:155 +#: extras/models/customfields.py:155 msgid "default" msgstr "padrão" -#: netbox/extras/models/customfields.py:159 +#: extras/models/customfields.py:159 msgid "" "Default value for the field (must be a JSON value). Encapsulate strings with" " double quotes (e.g. \"Foo\")." @@ -8322,7 +7764,7 @@ msgstr "" "Valor padrão para o campo (deve ser um valor JSON). Encapsule strings usando" " aspas duplas (por exemplo, “Foo”)." -#: netbox/extras/models/customfields.py:166 +#: extras/models/customfields.py:166 msgid "" "Filter the object selection choices using a query_params dict (must be a " "JSON value).Encapsulate strings with double quotes (e.g. \"Foo\")." @@ -8331,35 +7773,35 @@ msgstr "" "(deve ser um valor JSON). Encapsule strings com aspas duplas (por exemplo, " "'Foo')." -#: netbox/extras/models/customfields.py:172 +#: extras/models/customfields.py:172 msgid "display weight" msgstr "peso de exibição" -#: netbox/extras/models/customfields.py:173 +#: extras/models/customfields.py:173 msgid "Fields with higher weights appear lower in a form." msgstr "Os campos com pesos maiores aparecem mais abaixo em um formulário." -#: netbox/extras/models/customfields.py:178 +#: extras/models/customfields.py:178 msgid "minimum value" msgstr "valor mínimo" -#: netbox/extras/models/customfields.py:179 +#: extras/models/customfields.py:179 msgid "Minimum allowed value (for numeric fields)" msgstr "Valor mínimo permitido (para campos numéricos)" -#: netbox/extras/models/customfields.py:184 +#: extras/models/customfields.py:184 msgid "maximum value" msgstr "valor máximo" -#: netbox/extras/models/customfields.py:185 +#: extras/models/customfields.py:185 msgid "Maximum allowed value (for numeric fields)" msgstr "Valor máximo permitido (para campos numéricos)" -#: netbox/extras/models/customfields.py:191 +#: extras/models/customfields.py:191 msgid "validation regex" msgstr "expressão regular de validação" -#: netbox/extras/models/customfields.py:193 +#: extras/models/customfields.py:193 #, python-brace-format msgid "" "Regular expression to enforce on text field values. Use ^ and $ to force " @@ -8370,195 +7812,193 @@ msgstr "" "forçar a correspondência de toda a string. Por exemplo, ^ " "[A-Z]{3}$ limitará os valores a exatamente três letras maiúsculas." -#: netbox/extras/models/customfields.py:201 +#: extras/models/customfields.py:201 msgid "choice set" msgstr "conjunto de opções" -#: netbox/extras/models/customfields.py:210 +#: extras/models/customfields.py:210 msgid "Specifies whether the custom field is displayed in the UI" msgstr "Especifica se o campo personalizado é exibido na interface do usuário" -#: netbox/extras/models/customfields.py:217 +#: extras/models/customfields.py:217 msgid "Specifies whether the custom field value can be edited in the UI" msgstr "" "Especifica se o valor do campo personalizado pode ser editado na interface " "do usuário" -#: netbox/extras/models/customfields.py:221 +#: extras/models/customfields.py:221 msgid "is cloneable" msgstr "é clonável" -#: netbox/extras/models/customfields.py:222 +#: extras/models/customfields.py:222 msgid "Replicate this value when cloning objects" msgstr "Replique este valor ao clonar objetos" -#: netbox/extras/models/customfields.py:239 +#: extras/models/customfields.py:239 msgid "custom field" msgstr "campo personalizado" -#: netbox/extras/models/customfields.py:240 +#: extras/models/customfields.py:240 msgid "custom fields" msgstr "campos personalizados" -#: netbox/extras/models/customfields.py:329 +#: extras/models/customfields.py:329 #, python-brace-format msgid "Invalid default value \"{value}\": {error}" msgstr "Valor padrão inválido”{value}“: {error}" -#: netbox/extras/models/customfields.py:336 +#: extras/models/customfields.py:336 msgid "A minimum value may be set only for numeric fields" msgstr "Um valor mínimo pode ser definido somente para campos numéricos" -#: netbox/extras/models/customfields.py:338 +#: extras/models/customfields.py:338 msgid "A maximum value may be set only for numeric fields" msgstr "Um valor máximo pode ser definido somente para campos numéricos" -#: netbox/extras/models/customfields.py:348 +#: extras/models/customfields.py:348 msgid "" "Regular expression validation is supported only for text and URL fields" msgstr "" "Expressões regulares são suportadas somente para campos de texto e URLs" -#: netbox/extras/models/customfields.py:354 +#: extras/models/customfields.py:354 msgid "Uniqueness cannot be enforced for boolean fields" msgstr "A unicidade não pode ser aplicada para campos booleanos." -#: netbox/extras/models/customfields.py:364 +#: extras/models/customfields.py:364 msgid "Selection fields must specify a set of choices." msgstr "Os campos de seleção devem especificar um conjunto de opções." -#: netbox/extras/models/customfields.py:368 +#: extras/models/customfields.py:368 msgid "Choices may be set only on selection fields." msgstr "As opções podem ser definidas somente nos campos de seleção." -#: netbox/extras/models/customfields.py:375 +#: extras/models/customfields.py:375 msgid "Object fields must define an object type." msgstr "Os campos de objeto devem definir um tipo de objeto." -#: netbox/extras/models/customfields.py:379 +#: extras/models/customfields.py:379 #, python-brace-format msgid "{type} fields may not define an object type." msgstr "Campos {type} não podem definir um tipo de objeto." -#: netbox/extras/models/customfields.py:386 +#: extras/models/customfields.py:386 msgid "A related object filter can be defined only for object fields." msgstr "" "Um filtro de objeto relacionado pode ser definido apenas para campos de " "objeto." -#: netbox/extras/models/customfields.py:390 +#: extras/models/customfields.py:390 msgid "Filter must be defined as a dictionary mapping attributes to values." msgstr "" "O filtro deve ser definido como um dicionário que mapeia atributos para " "valores." -#: netbox/extras/models/customfields.py:469 +#: extras/models/customfields.py:469 msgid "True" msgstr "Verdadeiro" -#: netbox/extras/models/customfields.py:470 +#: extras/models/customfields.py:470 msgid "False" msgstr "Falso" -#: netbox/extras/models/customfields.py:560 +#: extras/models/customfields.py:560 #, python-brace-format msgid "Values must match this regex: {regex}" msgstr "" "Os valores devem corresponder a esta expressão regular: {regex}" -#: netbox/extras/models/customfields.py:654 +#: extras/models/customfields.py:654 msgid "Value must be a string." msgstr "O valor deve ser uma string." -#: netbox/extras/models/customfields.py:656 +#: extras/models/customfields.py:656 #, python-brace-format msgid "Value must match regex '{regex}'" msgstr "O valor deve corresponder à expressão regular '{regex}'" -#: netbox/extras/models/customfields.py:661 +#: extras/models/customfields.py:661 msgid "Value must be an integer." msgstr "O valor deve ser um número inteiro." -#: netbox/extras/models/customfields.py:664 -#: netbox/extras/models/customfields.py:679 +#: extras/models/customfields.py:664 extras/models/customfields.py:679 #, python-brace-format msgid "Value must be at least {minimum}" msgstr "O valor deve ser pelo menos {minimum}" -#: netbox/extras/models/customfields.py:668 -#: netbox/extras/models/customfields.py:683 +#: extras/models/customfields.py:668 extras/models/customfields.py:683 #, python-brace-format msgid "Value must not exceed {maximum}" msgstr "O valor não deve exceder {maximum}" -#: netbox/extras/models/customfields.py:676 +#: extras/models/customfields.py:676 msgid "Value must be a decimal." msgstr "O valor deve ser decimal." -#: netbox/extras/models/customfields.py:688 +#: extras/models/customfields.py:688 msgid "Value must be true or false." msgstr "O valor deve ser verdadeiro ou falso." -#: netbox/extras/models/customfields.py:696 +#: extras/models/customfields.py:696 msgid "Date values must be in ISO 8601 format (YYYY-MM-DD)." msgstr "Os valores de data devem estar no formato ISO 8601 (AAAA-MM-DD)." -#: netbox/extras/models/customfields.py:705 +#: extras/models/customfields.py:705 msgid "Date and time values must be in ISO 8601 format (YYYY-MM-DD HH:MM:SS)." msgstr "" "Os valores de data e hora devem estar no formato ISO 8601 (AAAA-MM-DD " "HH:MM:SS)." -#: netbox/extras/models/customfields.py:712 +#: extras/models/customfields.py:712 #, python-brace-format msgid "Invalid choice ({value}) for choice set {choiceset}." msgstr "Escolha {value} é inválida para o conjunto de escolhas {choiceset}." -#: netbox/extras/models/customfields.py:722 +#: extras/models/customfields.py:722 #, python-brace-format msgid "Invalid choice(s) ({value}) for choice set {choiceset}." msgstr "Escolha {value} é inválida para o conjunto de escolhas {choiceset}." -#: netbox/extras/models/customfields.py:731 +#: extras/models/customfields.py:731 #, python-brace-format msgid "Value must be an object ID, not {type}" msgstr "O valor deve ser um ID de objeto, não {type}" -#: netbox/extras/models/customfields.py:737 +#: extras/models/customfields.py:737 #, python-brace-format msgid "Value must be a list of object IDs, not {type}" msgstr "O valor deve ser uma lista de IDs de objetos, não {type}" -#: netbox/extras/models/customfields.py:741 +#: extras/models/customfields.py:741 #, python-brace-format msgid "Found invalid object ID: {id}" msgstr "ID de objeto inválida encontrada: {id}" -#: netbox/extras/models/customfields.py:744 +#: extras/models/customfields.py:744 msgid "Required field cannot be empty." msgstr "O campo obrigatório não pode estar vazio." -#: netbox/extras/models/customfields.py:763 +#: extras/models/customfields.py:763 msgid "Base set of predefined choices (optional)" msgstr "Conjunto básico de opções predefinidas (opcional)" -#: netbox/extras/models/customfields.py:775 +#: extras/models/customfields.py:775 msgid "Choices are automatically ordered alphabetically" msgstr "As opções são ordenadas automaticamente em ordem alfabética" -#: netbox/extras/models/customfields.py:782 +#: extras/models/customfields.py:782 msgid "custom field choice set" msgstr "conjunto de opções de campo personalizado" -#: netbox/extras/models/customfields.py:783 +#: extras/models/customfields.py:783 msgid "custom field choice sets" msgstr "conjuntos de opções de campos personalizados" -#: netbox/extras/models/customfields.py:825 +#: extras/models/customfields.py:825 msgid "Must define base or extra choices." msgstr "Deve definir opções básicas ou extras." -#: netbox/extras/models/customfields.py:849 +#: extras/models/customfields.py:849 #, python-brace-format msgid "" "Cannot remove choice {choice} as there are {model} objects which reference " @@ -8567,60 +8007,60 @@ msgstr "" "Não é possível remover a escolha {choice} como existem {model} objetos que " "fazem referência a ele." -#: netbox/extras/models/dashboard.py:18 +#: extras/models/dashboard.py:18 msgid "layout" msgstr "layout" -#: netbox/extras/models/dashboard.py:22 +#: extras/models/dashboard.py:22 msgid "config" msgstr "configuração" -#: netbox/extras/models/dashboard.py:27 +#: extras/models/dashboard.py:27 msgid "dashboard" msgstr "dashboard" -#: netbox/extras/models/dashboard.py:28 +#: extras/models/dashboard.py:28 msgid "dashboards" msgstr "dashboards" -#: netbox/extras/models/models.py:52 +#: extras/models/models.py:52 msgid "object types" msgstr "tipos de objetos" -#: netbox/extras/models/models.py:53 +#: extras/models/models.py:53 msgid "The object(s) to which this rule applies." msgstr "Objeto(s) aos quais esta regra se aplica." -#: netbox/extras/models/models.py:67 +#: extras/models/models.py:67 msgid "The types of event which will trigger this rule." msgstr "Os tipos de eventos que irão acionar esta regra." -#: netbox/extras/models/models.py:74 +#: extras/models/models.py:74 msgid "conditions" msgstr "condições" -#: netbox/extras/models/models.py:77 +#: extras/models/models.py:77 msgid "" "A set of conditions which determine whether the event will be generated." msgstr "Um conjunto de condições que determinam se o evento será gerado." -#: netbox/extras/models/models.py:85 +#: extras/models/models.py:85 msgid "action type" msgstr "tipo de ação" -#: netbox/extras/models/models.py:104 +#: extras/models/models.py:104 msgid "Additional data to pass to the action object" msgstr "Dados adicionais para passar ao objeto da ação" -#: netbox/extras/models/models.py:116 +#: extras/models/models.py:116 msgid "event rule" msgstr "regra de evento" -#: netbox/extras/models/models.py:117 +#: extras/models/models.py:117 msgid "event rules" msgstr "regras dos eventos" -#: netbox/extras/models/models.py:166 +#: extras/models/models.py:166 msgid "" "This URL will be called using the HTTP method defined when the webhook is " "called. Jinja2 template processing is supported with the same context as the" @@ -8630,7 +8070,7 @@ msgstr "" "chamado. O processamento do modelo Jinja2 é suportado com o mesmo contexto " "do corpo da solicitação." -#: netbox/extras/models/models.py:181 +#: extras/models/models.py:181 msgid "" "The complete list of official content types is available aqui." -#: netbox/extras/models/models.py:186 +#: extras/models/models.py:186 msgid "additional headers" msgstr "cabeçalhos adicionais" -#: netbox/extras/models/models.py:189 +#: extras/models/models.py:189 msgid "" "User-supplied HTTP headers to be sent with the request in addition to the " "HTTP content type. Headers should be defined in the format Name: " @@ -8656,11 +8096,11 @@ msgstr "" "Name:Value. O processamento do modelo Jinja2 é suportado com o " "mesmo contexto do corpo da solicitação (abaixo)." -#: netbox/extras/models/models.py:195 +#: extras/models/models.py:195 msgid "body template" msgstr "corpo modelo" -#: netbox/extras/models/models.py:198 +#: extras/models/models.py:198 msgid "" "Jinja2 template for a custom request body. If blank, a JSON object " "representing the change will be included. Available context data includes: " @@ -8673,11 +8113,11 @@ msgstr "" "timestamp, username, request_id, e " "data." -#: netbox/extras/models/models.py:204 +#: extras/models/models.py:204 msgid "secret" msgstr "senha" -#: netbox/extras/models/models.py:208 +#: extras/models/models.py:208 msgid "" "When provided, the request will include a X-Hook-Signature " "header containing a HMAC hex digest of the payload body using the secret as " @@ -8687,15 +8127,15 @@ msgstr "" "Signature contendo um HMAC hex digest do corpo do payload usando a " "senha como chave. A senha não é transmitido na solicitação." -#: netbox/extras/models/models.py:215 +#: extras/models/models.py:215 msgid "Enable SSL certificate verification. Disable with caution!" msgstr "Ative a verificação do certificado SSL. Desative com cuidado!" -#: netbox/extras/models/models.py:221 netbox/templates/extras/webhook.html:51 +#: extras/models/models.py:221 templates/extras/webhook.html:51 msgid "CA File Path" msgstr "Caminho do arquivo CA" -#: netbox/extras/models/models.py:223 +#: extras/models/models.py:223 msgid "" "The specific CA certificate file to use for SSL verification. Leave blank to" " use the system defaults." @@ -8703,65 +8143,65 @@ msgstr "" "O arquivo de certificado CA específico a ser usado para verificação SSL. " "Deixe em branco para usar os padrões do sistema." -#: netbox/extras/models/models.py:234 +#: extras/models/models.py:234 msgid "webhook" msgstr "webhook" -#: netbox/extras/models/models.py:235 +#: extras/models/models.py:235 msgid "webhooks" msgstr "webhooks" -#: netbox/extras/models/models.py:253 +#: extras/models/models.py:253 msgid "Do not specify a CA certificate file if SSL verification is disabled." msgstr "" "Não especifique um arquivo de certificado CA se a verificação SSL estiver " "desativada." -#: netbox/extras/models/models.py:293 +#: extras/models/models.py:293 msgid "The object type(s) to which this link applies." msgstr "O(s) tipo(s) de objeto aos quais este link se aplica." -#: netbox/extras/models/models.py:305 +#: extras/models/models.py:305 msgid "link text" msgstr "texto do link" -#: netbox/extras/models/models.py:306 +#: extras/models/models.py:306 msgid "Jinja2 template code for link text" msgstr "Modelo de código Jinja2 para texto do link" -#: netbox/extras/models/models.py:309 +#: extras/models/models.py:309 msgid "link URL" msgstr "URL do link" -#: netbox/extras/models/models.py:310 +#: extras/models/models.py:310 msgid "Jinja2 template code for link URL" msgstr "Modelo de código Jinja2 para URL do link" -#: netbox/extras/models/models.py:320 +#: extras/models/models.py:320 msgid "Links with the same group will appear as a dropdown menu" msgstr "Links com o mesmo grupo aparecerão como um menu suspenso" -#: netbox/extras/models/models.py:330 +#: extras/models/models.py:330 msgid "new window" msgstr "nova janela" -#: netbox/extras/models/models.py:332 +#: extras/models/models.py:332 msgid "Force link to open in a new window" msgstr "Forçar o link a abrir em uma nova janela" -#: netbox/extras/models/models.py:341 +#: extras/models/models.py:341 msgid "custom link" msgstr "link personalizado" -#: netbox/extras/models/models.py:342 +#: extras/models/models.py:342 msgid "custom links" msgstr "links personalizados" -#: netbox/extras/models/models.py:389 +#: extras/models/models.py:389 msgid "The object type(s) to which this template applies." msgstr "O (s) tipo (s) de objeto aos quais este modelo se aplica." -#: netbox/extras/models/models.py:402 +#: extras/models/models.py:402 msgid "" "Jinja2 template code. The list of objects being exported is passed as a " "context variable named queryset." @@ -8769,1091 +8209,1056 @@ msgstr "" "Modelo de código Jinja2. A lista de objetos que estão sendo exportados é " "passada como uma variável de contexto chamada queryset." -#: netbox/extras/models/models.py:410 +#: extras/models/models.py:410 msgid "Defaults to text/plain; charset=utf-8" msgstr "O padrão é text/plain; charset=utf-8" -#: netbox/extras/models/models.py:413 +#: extras/models/models.py:413 msgid "file extension" msgstr "extensão do arquivo" -#: netbox/extras/models/models.py:416 +#: extras/models/models.py:416 msgid "Extension to append to the rendered filename" msgstr "Extensão para anexar ao nome do arquivo renderizado" -#: netbox/extras/models/models.py:419 +#: extras/models/models.py:419 msgid "as attachment" msgstr "como anexo" -#: netbox/extras/models/models.py:421 +#: extras/models/models.py:421 msgid "Download file as attachment" msgstr "Baixar arquivo como anexo" -#: netbox/extras/models/models.py:430 +#: extras/models/models.py:430 msgid "export template" msgstr "modelo de exportação" -#: netbox/extras/models/models.py:431 +#: extras/models/models.py:431 msgid "export templates" msgstr "modelos de exportação" -#: netbox/extras/models/models.py:448 +#: extras/models/models.py:448 #, python-brace-format msgid "\"{name}\" is a reserved name. Please choose a different name." msgstr "“{name}“é um nome reservado. Escolha um nome diferente." -#: netbox/extras/models/models.py:498 +#: extras/models/models.py:498 msgid "The object type(s) to which this filter applies." msgstr "O (s) tipo (s) de objeto aos quais este filtro se aplica." -#: netbox/extras/models/models.py:530 +#: extras/models/models.py:530 msgid "shared" msgstr "compartilhado" -#: netbox/extras/models/models.py:543 +#: extras/models/models.py:543 msgid "saved filter" msgstr "filtro salvo" -#: netbox/extras/models/models.py:544 +#: extras/models/models.py:544 msgid "saved filters" msgstr "filtros salvos" -#: netbox/extras/models/models.py:562 +#: extras/models/models.py:562 msgid "Filter parameters must be stored as a dictionary of keyword arguments." msgstr "" "Os parâmetros de filtro devem ser armazenados como um dicionário de " "palavras-chave." -#: netbox/extras/models/models.py:590 +#: extras/models/models.py:590 msgid "image height" msgstr "altura da imagem" -#: netbox/extras/models/models.py:593 +#: extras/models/models.py:593 msgid "image width" msgstr "largura da imagem" -#: netbox/extras/models/models.py:610 +#: extras/models/models.py:610 msgid "image attachment" msgstr "anexo de imagem" -#: netbox/extras/models/models.py:611 +#: extras/models/models.py:611 msgid "image attachments" msgstr "anexos de imagens" -#: netbox/extras/models/models.py:625 +#: extras/models/models.py:625 #, python-brace-format msgid "Image attachments cannot be assigned to this object type ({type})." msgstr "" "Os anexos de imagens não podem ser associados a este tipo de objeto " "({type})." -#: netbox/extras/models/models.py:688 +#: extras/models/models.py:688 msgid "kind" msgstr "tipo" -#: netbox/extras/models/models.py:702 +#: extras/models/models.py:702 msgid "journal entry" msgstr "registro de evento" -#: netbox/extras/models/models.py:703 +#: extras/models/models.py:703 msgid "journal entries" msgstr "registros de eventos" -#: netbox/extras/models/models.py:718 +#: extras/models/models.py:718 #, python-brace-format msgid "Journaling is not supported for this object type ({type})." msgstr "Registro de eventos não é suportado para o tipo de objeto ({type})." -#: netbox/extras/models/models.py:760 +#: extras/models/models.py:760 msgid "bookmark" msgstr "favorito" -#: netbox/extras/models/models.py:761 +#: extras/models/models.py:761 msgid "bookmarks" msgstr "favoritos" -#: netbox/extras/models/models.py:774 +#: extras/models/models.py:774 #, python-brace-format msgid "Bookmarks cannot be assigned to this object type ({type})." msgstr "O tipo de objeto ({type}) não pode ser favoritado." -#: netbox/extras/models/notifications.py:43 +#: extras/models/notifications.py:43 msgid "read" msgstr "leitura" -#: netbox/extras/models/notifications.py:66 +#: extras/models/notifications.py:66 msgid "event" msgstr "evento" -#: netbox/extras/models/notifications.py:84 +#: extras/models/notifications.py:84 msgid "notification" msgstr "notificação" -#: netbox/extras/models/notifications.py:85 +#: extras/models/notifications.py:85 msgid "notifications" msgstr "notificações" -#: netbox/extras/models/notifications.py:99 -#: netbox/extras/models/notifications.py:234 +#: extras/models/notifications.py:99 extras/models/notifications.py:234 #, python-brace-format msgid "Objects of this type ({type}) do not support notifications." msgstr "Objetos deste tipo ({type}) não suportam notificações." -#: netbox/extras/models/notifications.py:137 netbox/users/models/users.py:58 -#: netbox/users/models/users.py:77 +#: extras/models/notifications.py:137 users/models/users.py:58 +#: users/models/users.py:77 msgid "groups" msgstr "grupos" -#: netbox/extras/models/notifications.py:143 netbox/users/models/users.py:93 +#: extras/models/notifications.py:143 users/models/users.py:93 msgid "users" msgstr "usuários" -#: netbox/extras/models/notifications.py:152 +#: extras/models/notifications.py:152 msgid "notification group" msgstr "grupo de notificação" -#: netbox/extras/models/notifications.py:153 +#: extras/models/notifications.py:153 msgid "notification groups" msgstr "grupos de notificação" -#: netbox/extras/models/notifications.py:217 +#: extras/models/notifications.py:217 msgid "subscription" msgstr "subscrição" -#: netbox/extras/models/notifications.py:218 +#: extras/models/notifications.py:218 msgid "subscriptions" msgstr "subscrições" -#: netbox/extras/models/scripts.py:42 +#: extras/models/scripts.py:42 msgid "is executable" msgstr "é executável" -#: netbox/extras/models/scripts.py:64 +#: extras/models/scripts.py:64 msgid "script" msgstr "script" -#: netbox/extras/models/scripts.py:65 +#: extras/models/scripts.py:65 msgid "scripts" msgstr "scripts" -#: netbox/extras/models/scripts.py:111 +#: extras/models/scripts.py:111 msgid "script module" msgstr "módulo de script" -#: netbox/extras/models/scripts.py:112 +#: extras/models/scripts.py:112 msgid "script modules" msgstr "módulos de scripts" -#: netbox/extras/models/search.py:22 +#: extras/models/search.py:22 msgid "timestamp" msgstr "timestamp" -#: netbox/extras/models/search.py:37 +#: extras/models/search.py:37 msgid "field" msgstr "campo" -#: netbox/extras/models/search.py:45 +#: extras/models/search.py:45 msgid "value" msgstr "valor" -#: netbox/extras/models/search.py:56 +#: extras/models/search.py:56 msgid "cached value" msgstr "valor em cache" -#: netbox/extras/models/search.py:57 +#: extras/models/search.py:57 msgid "cached values" msgstr "valores em cache" -#: netbox/extras/models/staging.py:44 +#: extras/models/staging.py:44 msgid "branch" msgstr "filial" -#: netbox/extras/models/staging.py:45 +#: extras/models/staging.py:45 msgid "branches" msgstr "filiais" -#: netbox/extras/models/staging.py:97 +#: extras/models/staging.py:97 msgid "staged change" msgstr "mudança preparada" -#: netbox/extras/models/staging.py:98 +#: extras/models/staging.py:98 msgid "staged changes" msgstr "mudanças preparadas" -#: netbox/extras/models/tags.py:40 +#: extras/models/tags.py:40 msgid "The object type(s) to which this tag can be applied." msgstr "Tipo(s) de objeto aos quais esta etiqueta pode ser aplicada." -#: netbox/extras/models/tags.py:49 +#: extras/models/tags.py:49 msgid "tag" msgstr "etiqueta" -#: netbox/extras/models/tags.py:50 +#: extras/models/tags.py:50 msgid "tags" msgstr "etiquetas" -#: netbox/extras/models/tags.py:78 +#: extras/models/tags.py:78 msgid "tagged item" msgstr "item etiquetado" -#: netbox/extras/models/tags.py:79 +#: extras/models/tags.py:79 msgid "tagged items" msgstr "itens etiquetados" -#: netbox/extras/scripts.py:429 +#: extras/scripts.py:429 msgid "Script Data" msgstr "Dados do Script" -#: netbox/extras/scripts.py:433 +#: extras/scripts.py:433 msgid "Script Execution Parameters" msgstr "Parâmetros de Execução do Script" -#: netbox/extras/tables/columns.py:12 -#: netbox/templates/htmx/notifications.html:18 +#: extras/tables/columns.py:12 templates/htmx/notifications.html:18 msgid "Dismiss" msgstr "Descartar" -#: netbox/extras/tables/tables.py:62 netbox/extras/tables/tables.py:159 -#: netbox/extras/tables/tables.py:184 netbox/extras/tables/tables.py:250 -#: netbox/extras/tables/tables.py:276 netbox/extras/tables/tables.py:412 -#: netbox/extras/tables/tables.py:446 -#: netbox/templates/extras/customfield.html:105 -#: netbox/templates/extras/eventrule.html:27 -#: netbox/templates/users/objectpermission.html:64 netbox/users/tables.py:80 +#: extras/tables/tables.py:62 extras/tables/tables.py:159 +#: extras/tables/tables.py:184 extras/tables/tables.py:250 +#: extras/tables/tables.py:276 extras/tables/tables.py:412 +#: extras/tables/tables.py:446 templates/extras/customfield.html:105 +#: templates/extras/eventrule.html:27 templates/users/objectpermission.html:64 +#: users/tables.py:80 msgid "Object Types" msgstr "Tipos de Objetos" -#: netbox/extras/tables/tables.py:69 +#: extras/tables/tables.py:69 msgid "Validate Uniqueness" msgstr "Validar Unicidade" -#: netbox/extras/tables/tables.py:73 +#: extras/tables/tables.py:73 msgid "Visible" msgstr "Visível" -#: netbox/extras/tables/tables.py:76 +#: extras/tables/tables.py:76 msgid "Editable" msgstr "Editável" -#: netbox/extras/tables/tables.py:82 +#: extras/tables/tables.py:82 msgid "Related Object Type" msgstr "Tipo de Objeto Relacionado" -#: netbox/extras/tables/tables.py:86 -#: netbox/templates/extras/customfield.html:51 +#: extras/tables/tables.py:86 templates/extras/customfield.html:51 msgid "Choice Set" msgstr "Conjunto de Opções" -#: netbox/extras/tables/tables.py:94 +#: extras/tables/tables.py:94 msgid "Is Cloneable" msgstr "É Clonável" -#: netbox/extras/tables/tables.py:98 -#: netbox/templates/extras/customfield.html:118 +#: extras/tables/tables.py:98 templates/extras/customfield.html:118 msgid "Minimum Value" msgstr "Valor Mínimo" -#: netbox/extras/tables/tables.py:101 -#: netbox/templates/extras/customfield.html:122 +#: extras/tables/tables.py:101 templates/extras/customfield.html:122 msgid "Maximum Value" msgstr "Valor Máximo" -#: netbox/extras/tables/tables.py:104 +#: extras/tables/tables.py:104 msgid "Validation Regex" msgstr "Expressão Regular de Validação" -#: netbox/extras/tables/tables.py:137 +#: extras/tables/tables.py:137 msgid "Count" msgstr "Contar" -#: netbox/extras/tables/tables.py:140 +#: extras/tables/tables.py:140 msgid "Order Alphabetically" msgstr "Ordenar Alfabeticamente" -#: netbox/extras/tables/tables.py:165 -#: netbox/templates/extras/customlink.html:33 +#: extras/tables/tables.py:165 templates/extras/customlink.html:33 msgid "New Window" msgstr "Nova Janela" -#: netbox/extras/tables/tables.py:187 +#: extras/tables/tables.py:187 msgid "As Attachment" msgstr "Como Anexo" -#: netbox/extras/tables/tables.py:195 netbox/extras/tables/tables.py:487 -#: netbox/extras/tables/tables.py:522 netbox/templates/core/datafile.html:24 -#: netbox/templates/dcim/device/render_config.html:22 -#: netbox/templates/extras/configcontext.html:39 -#: netbox/templates/extras/configtemplate.html:31 -#: netbox/templates/extras/exporttemplate.html:45 -#: netbox/templates/generic/bulk_import.html:35 -#: netbox/templates/virtualization/virtualmachine/render_config.html:22 +#: extras/tables/tables.py:195 extras/tables/tables.py:487 +#: extras/tables/tables.py:522 templates/core/datafile.html:24 +#: templates/dcim/device/render_config.html:22 +#: templates/extras/configcontext.html:39 +#: templates/extras/configtemplate.html:31 +#: templates/extras/exporttemplate.html:45 +#: templates/generic/bulk_import.html:35 +#: templates/virtualization/virtualmachine/render_config.html:22 msgid "Data File" msgstr "Arquivo de Dados" -#: netbox/extras/tables/tables.py:200 netbox/extras/tables/tables.py:499 -#: netbox/extras/tables/tables.py:527 +#: extras/tables/tables.py:200 extras/tables/tables.py:499 +#: extras/tables/tables.py:527 msgid "Synced" msgstr "Sincronizado" -#: netbox/extras/tables/tables.py:227 +#: extras/tables/tables.py:227 msgid "Image" msgstr "Imagem" -#: netbox/extras/tables/tables.py:232 +#: extras/tables/tables.py:232 msgid "Size (Bytes)" msgstr "Tamanho (Bytes)" -#: netbox/extras/tables/tables.py:339 +#: extras/tables/tables.py:339 msgid "Read" msgstr "Leitura" -#: netbox/extras/tables/tables.py:382 +#: extras/tables/tables.py:382 msgid "SSL Validation" msgstr "Validação SSL" -#: netbox/extras/tables/tables.py:418 -#: netbox/templates/extras/eventrule.html:37 +#: extras/tables/tables.py:418 templates/extras/eventrule.html:37 msgid "Event Types" msgstr "Tipos de Evento" -#: netbox/extras/tables/tables.py:535 netbox/netbox/navigation/menu.py:77 -#: netbox/templates/dcim/devicerole.html:8 +#: extras/tables/tables.py:535 netbox/navigation/menu.py:77 +#: templates/dcim/devicerole.html:8 msgid "Device Roles" msgstr "Funções de Dispositivos" -#: netbox/extras/tables/tables.py:587 +#: extras/tables/tables.py:587 msgid "Comments (Short)" msgstr "Comentários (curto)" -#: netbox/extras/tables/tables.py:606 netbox/extras/tables/tables.py:640 +#: extras/tables/tables.py:606 extras/tables/tables.py:640 msgid "Line" msgstr "Linha" -#: netbox/extras/tables/tables.py:613 netbox/extras/tables/tables.py:650 +#: extras/tables/tables.py:613 extras/tables/tables.py:650 msgid "Level" msgstr "Nível" -#: netbox/extras/tables/tables.py:619 netbox/extras/tables/tables.py:659 +#: extras/tables/tables.py:619 extras/tables/tables.py:659 msgid "Message" msgstr "Mensagem" -#: netbox/extras/tables/tables.py:643 +#: extras/tables/tables.py:643 msgid "Method" msgstr "Método" -#: netbox/extras/validators.py:15 +#: extras/validators.py:15 #, python-format msgid "Ensure this value is equal to %(limit_value)s." msgstr "Verifique se este valor é igual a %(limit_value)s." -#: netbox/extras/validators.py:26 +#: extras/validators.py:26 #, python-format msgid "Ensure this value does not equal %(limit_value)s." msgstr "Certifique-se de que este valor não seja igual a%(limit_value)s." -#: netbox/extras/validators.py:37 +#: extras/validators.py:37 msgid "This field must be empty." msgstr "Este campo deve estar vazio." -#: netbox/extras/validators.py:52 +#: extras/validators.py:52 msgid "This field must not be empty." msgstr "Este campo não deve estar vazio." -#: netbox/extras/validators.py:94 +#: extras/validators.py:94 msgid "Validation rules must be passed as a dictionary" msgstr "As regras de validação devem ser passadas como um dicionário" -#: netbox/extras/validators.py:119 +#: extras/validators.py:119 #, python-brace-format msgid "Custom validation failed for {attribute}: {exception}" msgstr "Falha na validação personalizada para {attribute}: {exception}" -#: netbox/extras/validators.py:133 +#: extras/validators.py:133 #, python-brace-format msgid "Invalid attribute \"{name}\" for request" msgstr "Atributo \"{name}\" é inválido para a requisição" -#: netbox/extras/validators.py:150 +#: extras/validators.py:150 #, python-brace-format msgid "Invalid attribute \"{name}\" for {model}" msgstr "Atributo \"{name}\" é inválido para {model}" -#: netbox/extras/views.py:960 +#: extras/views.py:960 msgid "Your dashboard has been reset." msgstr "Seu dashboard foi redefinido." -#: netbox/extras/views.py:1006 +#: extras/views.py:1006 msgid "Added widget: " msgstr "Widget adicionado: " -#: netbox/extras/views.py:1047 +#: extras/views.py:1047 msgid "Updated widget: " msgstr "Widget atualizado: " -#: netbox/extras/views.py:1083 +#: extras/views.py:1083 msgid "Deleted widget: " msgstr "Widget excluído: " -#: netbox/extras/views.py:1085 +#: extras/views.py:1085 msgid "Error deleting widget: " msgstr "Erro ao excluir o widget: " -#: netbox/extras/views.py:1172 +#: extras/views.py:1172 msgid "Unable to run script: RQ worker process not running." msgstr "" "Não é possível executar o script: o processo do agente RQ não está em " "execução." -#: netbox/ipam/api/field_serializers.py:17 +#: ipam/api/field_serializers.py:17 msgid "Enter a valid IPv4 or IPv6 address with optional mask." msgstr "Insira um endereço IPv4 ou IPv6 válido com máscara opcional." -#: netbox/ipam/api/field_serializers.py:24 +#: ipam/api/field_serializers.py:24 #, python-brace-format msgid "Invalid IP address format: {data}" msgstr "Formato de endereço IP inválido: {data}" -#: netbox/ipam/api/field_serializers.py:37 +#: ipam/api/field_serializers.py:37 msgid "Enter a valid IPv4 or IPv6 prefix and mask in CIDR notation." msgstr "Insira um prefixo IPv4 ou IPv6 válido e uma máscara na notação CIDR." -#: netbox/ipam/api/field_serializers.py:44 +#: ipam/api/field_serializers.py:44 #, python-brace-format msgid "Invalid IP prefix format: {data}" msgstr "Formato de prefixo IP inválido: {data}" -#: netbox/ipam/api/views.py:358 +#: ipam/api/views.py:358 msgid "" "Insufficient space is available to accommodate the requested prefix size(s)" msgstr "" "Espaço insuficiente para acomodar o(s) tamanho(s) de prefixo solicitado" -#: netbox/ipam/choices.py:30 +#: ipam/choices.py:30 msgid "Container" msgstr "Contêiner" -#: netbox/ipam/choices.py:72 +#: ipam/choices.py:72 msgid "DHCP" msgstr "DHCP" -#: netbox/ipam/choices.py:73 +#: ipam/choices.py:73 msgid "SLAAC" msgstr "SLAAC" -#: netbox/ipam/choices.py:89 +#: ipam/choices.py:89 msgid "Loopback" msgstr "Loopback" -#: netbox/ipam/choices.py:91 +#: ipam/choices.py:91 msgid "Anycast" msgstr "Anycast" -#: netbox/ipam/choices.py:115 +#: ipam/choices.py:115 msgid "Standard" msgstr "Padrão" -#: netbox/ipam/choices.py:120 +#: ipam/choices.py:120 msgid "CheckPoint" msgstr "CheckPoint" -#: netbox/ipam/choices.py:123 +#: ipam/choices.py:123 msgid "Cisco" msgstr "Cisco" -#: netbox/ipam/choices.py:137 +#: ipam/choices.py:137 msgid "Plaintext" msgstr "Texto sem formatação" -#: netbox/ipam/fields.py:36 +#: ipam/fields.py:36 #, python-brace-format msgid "Invalid IP address format: {address}" msgstr "Formato de endereço IP inválido: {address}" -#: netbox/ipam/filtersets.py:48 netbox/vpn/filtersets.py:304 +#: ipam/filtersets.py:48 vpn/filtersets.py:304 msgid "Import target" msgstr "Import target" -#: netbox/ipam/filtersets.py:54 netbox/vpn/filtersets.py:310 +#: ipam/filtersets.py:54 vpn/filtersets.py:310 msgid "Import target (name)" msgstr "Import target (nome)" -#: netbox/ipam/filtersets.py:59 netbox/vpn/filtersets.py:315 +#: ipam/filtersets.py:59 vpn/filtersets.py:315 msgid "Export target" msgstr "Export target" -#: netbox/ipam/filtersets.py:65 netbox/vpn/filtersets.py:321 +#: ipam/filtersets.py:65 vpn/filtersets.py:321 msgid "Export target (name)" msgstr "Export target (nome)" -#: netbox/ipam/filtersets.py:86 +#: ipam/filtersets.py:86 msgid "Importing VRF" msgstr "Importando VRF" -#: netbox/ipam/filtersets.py:92 +#: ipam/filtersets.py:92 msgid "Import VRF (RD)" msgstr "Importar VRF (Route Distinguisher)" -#: netbox/ipam/filtersets.py:97 +#: ipam/filtersets.py:97 msgid "Exporting VRF" msgstr "Exportando VRF" -#: netbox/ipam/filtersets.py:103 +#: ipam/filtersets.py:103 msgid "Export VRF (RD)" msgstr "Exportar VRF (Route Distinguisher)" -#: netbox/ipam/filtersets.py:108 +#: ipam/filtersets.py:108 msgid "Importing L2VPN" msgstr "Importando L2VPN" -#: netbox/ipam/filtersets.py:114 +#: ipam/filtersets.py:114 msgid "Importing L2VPN (identifier)" msgstr "Importando L2VPN (identificador)" -#: netbox/ipam/filtersets.py:119 +#: ipam/filtersets.py:119 msgid "Exporting L2VPN" msgstr "Exportando L2VPN" -#: netbox/ipam/filtersets.py:125 +#: ipam/filtersets.py:125 msgid "Exporting L2VPN (identifier)" msgstr "Exportando L2VPN (identificador)" -#: netbox/ipam/filtersets.py:155 netbox/ipam/filtersets.py:281 -#: netbox/ipam/forms/model_forms.py:229 netbox/ipam/tables/ip.py:212 -#: netbox/templates/ipam/prefix.html:12 +#: ipam/filtersets.py:155 ipam/filtersets.py:281 ipam/forms/model_forms.py:229 +#: ipam/tables/ip.py:212 templates/ipam/prefix.html:12 msgid "Prefix" msgstr "Prefixo" -#: netbox/ipam/filtersets.py:159 netbox/ipam/filtersets.py:198 -#: netbox/ipam/filtersets.py:221 +#: ipam/filtersets.py:159 ipam/filtersets.py:198 ipam/filtersets.py:221 msgid "RIR (ID)" msgstr "RIR (ID)" -#: netbox/ipam/filtersets.py:165 netbox/ipam/filtersets.py:204 -#: netbox/ipam/filtersets.py:227 +#: ipam/filtersets.py:165 ipam/filtersets.py:204 ipam/filtersets.py:227 msgid "RIR (slug)" msgstr "RIR (slug)" -#: netbox/ipam/filtersets.py:285 +#: ipam/filtersets.py:285 msgid "Within prefix" msgstr "Dentro do prefixo" -#: netbox/ipam/filtersets.py:289 +#: ipam/filtersets.py:289 msgid "Within and including prefix" msgstr "Dentro e incluindo o prefixo" -#: netbox/ipam/filtersets.py:293 +#: ipam/filtersets.py:293 msgid "Prefixes which contain this prefix or IP" msgstr "Prefixos que contêm este prefixo ou IP" -#: netbox/ipam/filtersets.py:304 netbox/ipam/filtersets.py:572 -#: netbox/ipam/forms/bulk_edit.py:342 netbox/ipam/forms/filtersets.py:196 -#: netbox/ipam/forms/filtersets.py:331 +#: ipam/filtersets.py:304 ipam/filtersets.py:572 ipam/forms/bulk_edit.py:343 +#: ipam/forms/filtersets.py:196 ipam/forms/filtersets.py:331 msgid "Mask length" msgstr "Tamanho da máscara" -#: netbox/ipam/filtersets.py:373 netbox/vpn/filtersets.py:427 +#: ipam/filtersets.py:373 vpn/filtersets.py:427 msgid "VLAN (ID)" msgstr "VLAN (ID)" -#: netbox/ipam/filtersets.py:377 netbox/vpn/filtersets.py:422 +#: ipam/filtersets.py:377 vpn/filtersets.py:422 msgid "VLAN number (1-4094)" msgstr "Número da VLAN (1-4094)" -#: netbox/ipam/filtersets.py:471 netbox/ipam/filtersets.py:475 -#: netbox/ipam/filtersets.py:567 netbox/ipam/forms/model_forms.py:463 -#: netbox/templates/tenancy/contact.html:53 -#: netbox/tenancy/forms/bulk_edit.py:113 +#: ipam/filtersets.py:471 ipam/filtersets.py:475 ipam/filtersets.py:567 +#: ipam/forms/model_forms.py:463 templates/tenancy/contact.html:53 +#: tenancy/forms/bulk_edit.py:113 msgid "Address" msgstr "Endereço" -#: netbox/ipam/filtersets.py:479 +#: ipam/filtersets.py:479 msgid "Ranges which contain this prefix or IP" msgstr "Faixas que contêm este prefixo ou IP" -#: netbox/ipam/filtersets.py:507 netbox/ipam/filtersets.py:563 +#: ipam/filtersets.py:507 ipam/filtersets.py:563 msgid "Parent prefix" msgstr "Prefixo pai" -#: netbox/ipam/filtersets.py:616 netbox/ipam/filtersets.py:856 -#: netbox/ipam/filtersets.py:1131 netbox/vpn/filtersets.py:385 +#: ipam/filtersets.py:616 ipam/filtersets.py:856 ipam/filtersets.py:1131 +#: vpn/filtersets.py:385 msgid "Virtual machine (name)" msgstr "Máquina virtual (nome)" -#: netbox/ipam/filtersets.py:621 netbox/ipam/filtersets.py:861 -#: netbox/ipam/filtersets.py:1125 netbox/virtualization/filtersets.py:282 -#: netbox/virtualization/filtersets.py:321 netbox/vpn/filtersets.py:390 +#: ipam/filtersets.py:621 ipam/filtersets.py:861 ipam/filtersets.py:1125 +#: virtualization/filtersets.py:282 virtualization/filtersets.py:321 +#: vpn/filtersets.py:390 msgid "Virtual machine (ID)" msgstr "Máquina virtual (ID)" -#: netbox/ipam/filtersets.py:627 netbox/vpn/filtersets.py:97 -#: netbox/vpn/filtersets.py:396 +#: ipam/filtersets.py:627 vpn/filtersets.py:97 vpn/filtersets.py:396 msgid "Interface (name)" msgstr "Interface (nome)" -#: netbox/ipam/filtersets.py:638 netbox/vpn/filtersets.py:108 -#: netbox/vpn/filtersets.py:407 +#: ipam/filtersets.py:638 vpn/filtersets.py:108 vpn/filtersets.py:407 msgid "VM interface (name)" msgstr "Interface da VM (nome)" -#: netbox/ipam/filtersets.py:643 netbox/vpn/filtersets.py:113 +#: ipam/filtersets.py:643 vpn/filtersets.py:113 msgid "VM interface (ID)" msgstr "Interface da VM (ID)" -#: netbox/ipam/filtersets.py:648 +#: ipam/filtersets.py:648 msgid "FHRP group (ID)" msgstr "Grupo FHRP (ID)" -#: netbox/ipam/filtersets.py:652 +#: ipam/filtersets.py:652 msgid "Is assigned to an interface" msgstr "Está associado a uma interface" -#: netbox/ipam/filtersets.py:656 +#: ipam/filtersets.py:656 msgid "Is assigned" msgstr "Está associado" -#: netbox/ipam/filtersets.py:668 +#: ipam/filtersets.py:668 msgid "Service (ID)" msgstr "Serviço (ID)" -#: netbox/ipam/filtersets.py:673 +#: ipam/filtersets.py:673 msgid "NAT inside IP address (ID)" msgstr "NAT dentro do endereço IP (ID)" -#: netbox/ipam/filtersets.py:1041 netbox/ipam/forms/bulk_import.py:322 +#: ipam/filtersets.py:1041 ipam/forms/bulk_import.py:322 msgid "Assigned interface" msgstr "Interface associada" -#: netbox/ipam/filtersets.py:1046 +#: ipam/filtersets.py:1046 msgid "Assigned VM interface" msgstr "Interface de VM atribuída" -#: netbox/ipam/filtersets.py:1136 +#: ipam/filtersets.py:1136 msgid "IP address (ID)" msgstr "Endereço IP (ID)" -#: netbox/ipam/filtersets.py:1142 netbox/ipam/models/ip.py:788 +#: ipam/filtersets.py:1142 ipam/models/ip.py:788 msgid "IP address" msgstr "Endereço IP" -#: netbox/ipam/filtersets.py:1167 +#: ipam/filtersets.py:1167 msgid "Primary IPv4 (ID)" msgstr "IPv4 Primário (ID)" -#: netbox/ipam/filtersets.py:1172 +#: ipam/filtersets.py:1172 msgid "Primary IPv6 (ID)" msgstr "IPv6 Primário (ID)" -#: netbox/ipam/formfields.py:14 +#: ipam/formfields.py:14 msgid "Enter a valid IPv4 or IPv6 address (without a mask)." msgstr "Insira um endereço IPv4 ou IPv6 válido (sem máscara)." -#: netbox/ipam/formfields.py:32 +#: ipam/formfields.py:32 #, python-brace-format msgid "Invalid IPv4/IPv6 address format: {address}" msgstr "Formato de endereço IPv4/IPv6 inválido: {address}" -#: netbox/ipam/formfields.py:37 +#: ipam/formfields.py:37 msgid "This field requires an IP address without a mask." msgstr "Este campo exige um endereço IP sem máscara." -#: netbox/ipam/formfields.py:39 netbox/ipam/formfields.py:61 +#: ipam/formfields.py:39 ipam/formfields.py:61 msgid "Please specify a valid IPv4 or IPv6 address." msgstr "Especifique um endereço IPv4 ou IPv6 válido." -#: netbox/ipam/formfields.py:44 +#: ipam/formfields.py:44 msgid "Enter a valid IPv4 or IPv6 address (with CIDR mask)." msgstr "Insira um endereço IPv4 ou IPv6 válido (com máscara CIDR)." -#: netbox/ipam/formfields.py:56 +#: ipam/formfields.py:56 msgid "CIDR mask (e.g. /24) is required." msgstr "A máscara CIDR (por exemplo, /24) é obrigatória." -#: netbox/ipam/forms/bulk_create.py:13 +#: ipam/forms/bulk_create.py:13 msgid "Address pattern" msgstr "Padrão de endereço" -#: netbox/ipam/forms/bulk_edit.py:49 +#: ipam/forms/bulk_edit.py:50 msgid "Enforce unique space" msgstr "Imponha um espaço exclusivo" -#: netbox/ipam/forms/bulk_edit.py:87 +#: ipam/forms/bulk_edit.py:88 msgid "Is private" msgstr "É privado" -#: netbox/ipam/forms/bulk_edit.py:108 netbox/ipam/forms/bulk_edit.py:137 -#: netbox/ipam/forms/bulk_edit.py:162 netbox/ipam/forms/bulk_import.py:89 -#: netbox/ipam/forms/bulk_import.py:109 netbox/ipam/forms/bulk_import.py:129 -#: netbox/ipam/forms/filtersets.py:110 netbox/ipam/forms/filtersets.py:125 -#: netbox/ipam/forms/filtersets.py:148 netbox/ipam/forms/model_forms.py:96 -#: netbox/ipam/forms/model_forms.py:109 netbox/ipam/forms/model_forms.py:131 -#: netbox/ipam/forms/model_forms.py:149 netbox/ipam/models/asns.py:31 -#: netbox/ipam/models/asns.py:103 netbox/ipam/models/ip.py:71 -#: netbox/ipam/models/ip.py:90 netbox/ipam/tables/asn.py:20 -#: netbox/ipam/tables/asn.py:45 netbox/templates/ipam/aggregate.html:18 -#: netbox/templates/ipam/asn.html:27 netbox/templates/ipam/asnrange.html:19 -#: netbox/templates/ipam/rir.html:19 +#: ipam/forms/bulk_edit.py:109 ipam/forms/bulk_edit.py:138 +#: ipam/forms/bulk_edit.py:163 ipam/forms/bulk_import.py:89 +#: ipam/forms/bulk_import.py:109 ipam/forms/bulk_import.py:129 +#: ipam/forms/filtersets.py:110 ipam/forms/filtersets.py:125 +#: ipam/forms/filtersets.py:148 ipam/forms/model_forms.py:96 +#: ipam/forms/model_forms.py:109 ipam/forms/model_forms.py:131 +#: ipam/forms/model_forms.py:149 ipam/models/asns.py:31 +#: ipam/models/asns.py:103 ipam/models/ip.py:71 ipam/models/ip.py:90 +#: ipam/tables/asn.py:20 ipam/tables/asn.py:45 +#: templates/ipam/aggregate.html:18 templates/ipam/asn.html:27 +#: templates/ipam/asnrange.html:19 templates/ipam/rir.html:19 msgid "RIR" msgstr "RIR" -#: netbox/ipam/forms/bulk_edit.py:170 +#: ipam/forms/bulk_edit.py:171 msgid "Date added" msgstr "Data da adição" -#: netbox/ipam/forms/bulk_edit.py:228 netbox/ipam/forms/model_forms.py:586 -#: netbox/ipam/forms/model_forms.py:633 netbox/ipam/tables/ip.py:251 -#: netbox/templates/ipam/vlan_edit.html:37 -#: netbox/templates/ipam/vlangroup.html:27 +#: ipam/forms/bulk_edit.py:229 ipam/forms/model_forms.py:586 +#: ipam/forms/model_forms.py:633 ipam/tables/ip.py:251 +#: templates/ipam/vlan_edit.html:37 templates/ipam/vlangroup.html:27 msgid "VLAN Group" msgstr "Grupo de VLANs" -#: netbox/ipam/forms/bulk_edit.py:233 netbox/ipam/forms/bulk_import.py:185 -#: netbox/ipam/forms/filtersets.py:256 netbox/ipam/forms/model_forms.py:218 -#: netbox/ipam/models/vlans.py:234 netbox/ipam/tables/ip.py:255 -#: netbox/templates/ipam/prefix.html:60 netbox/templates/ipam/vlan.html:12 -#: netbox/templates/ipam/vlan/base.html:6 -#: netbox/templates/ipam/vlan_edit.html:10 -#: netbox/templates/wireless/wirelesslan.html:30 -#: netbox/vpn/forms/bulk_import.py:304 netbox/vpn/forms/filtersets.py:284 -#: netbox/vpn/forms/model_forms.py:433 netbox/vpn/forms/model_forms.py:452 -#: netbox/wireless/forms/bulk_edit.py:55 -#: netbox/wireless/forms/bulk_import.py:48 -#: netbox/wireless/forms/model_forms.py:48 netbox/wireless/models.py:102 +#: ipam/forms/bulk_edit.py:234 ipam/forms/bulk_import.py:185 +#: ipam/forms/filtersets.py:256 ipam/forms/model_forms.py:218 +#: ipam/models/vlans.py:234 ipam/tables/ip.py:255 +#: templates/ipam/prefix.html:60 templates/ipam/vlan.html:12 +#: templates/ipam/vlan/base.html:6 templates/ipam/vlan_edit.html:10 +#: templates/wireless/wirelesslan.html:30 vpn/forms/bulk_import.py:304 +#: vpn/forms/filtersets.py:284 vpn/forms/model_forms.py:433 +#: vpn/forms/model_forms.py:452 wireless/forms/bulk_edit.py:55 +#: wireless/forms/bulk_import.py:48 wireless/forms/model_forms.py:48 +#: wireless/models.py:102 msgid "VLAN" msgstr "VLAN" -#: netbox/ipam/forms/bulk_edit.py:244 +#: ipam/forms/bulk_edit.py:245 msgid "Prefix length" msgstr "Comprimento do prefixo" -#: netbox/ipam/forms/bulk_edit.py:267 netbox/ipam/forms/filtersets.py:241 -#: netbox/templates/ipam/prefix.html:85 +#: ipam/forms/bulk_edit.py:268 ipam/forms/filtersets.py:241 +#: templates/ipam/prefix.html:85 msgid "Is a pool" msgstr "É um pool" -#: netbox/ipam/forms/bulk_edit.py:272 netbox/ipam/forms/bulk_edit.py:317 -#: netbox/ipam/forms/filtersets.py:248 netbox/ipam/forms/filtersets.py:293 -#: netbox/ipam/models/ip.py:272 netbox/ipam/models/ip.py:539 +#: ipam/forms/bulk_edit.py:273 ipam/forms/bulk_edit.py:318 +#: ipam/forms/filtersets.py:248 ipam/forms/filtersets.py:293 +#: ipam/models/ip.py:272 ipam/models/ip.py:539 msgid "Treat as fully utilized" msgstr "Trate como totalmente utilizado" -#: netbox/ipam/forms/bulk_edit.py:286 netbox/ipam/forms/filtersets.py:171 +#: ipam/forms/bulk_edit.py:287 ipam/forms/filtersets.py:171 msgid "VLAN Assignment" msgstr "Atribuição de VLAN" -#: netbox/ipam/forms/bulk_edit.py:365 netbox/ipam/models/ip.py:772 +#: ipam/forms/bulk_edit.py:366 ipam/models/ip.py:772 msgid "DNS name" msgstr "Nome DNS" -#: netbox/ipam/forms/bulk_edit.py:386 netbox/ipam/forms/bulk_edit.py:579 -#: netbox/ipam/forms/bulk_import.py:394 netbox/ipam/forms/bulk_import.py:469 -#: netbox/ipam/forms/bulk_import.py:495 netbox/ipam/forms/filtersets.py:390 -#: netbox/ipam/forms/filtersets.py:530 netbox/templates/ipam/fhrpgroup.html:22 -#: netbox/templates/ipam/inc/panels/fhrp_groups.html:24 -#: netbox/templates/ipam/service.html:32 -#: netbox/templates/ipam/servicetemplate.html:19 +#: ipam/forms/bulk_edit.py:387 ipam/forms/bulk_edit.py:534 +#: ipam/forms/bulk_import.py:394 ipam/forms/bulk_import.py:469 +#: ipam/forms/bulk_import.py:495 ipam/forms/filtersets.py:390 +#: ipam/forms/filtersets.py:530 templates/ipam/fhrpgroup.html:22 +#: templates/ipam/inc/panels/fhrp_groups.html:24 +#: templates/ipam/service.html:32 templates/ipam/servicetemplate.html:19 msgid "Protocol" msgstr "Protocolo" -#: netbox/ipam/forms/bulk_edit.py:393 netbox/ipam/forms/filtersets.py:397 -#: netbox/ipam/tables/fhrp.py:22 netbox/templates/ipam/fhrpgroup.html:26 +#: ipam/forms/bulk_edit.py:394 ipam/forms/filtersets.py:397 +#: ipam/tables/fhrp.py:22 templates/ipam/fhrpgroup.html:26 msgid "Group ID" msgstr "ID do Grupo" -#: netbox/ipam/forms/bulk_edit.py:398 netbox/ipam/forms/filtersets.py:402 -#: netbox/wireless/forms/bulk_edit.py:68 -#: netbox/wireless/forms/bulk_edit.py:115 -#: netbox/wireless/forms/bulk_import.py:62 -#: netbox/wireless/forms/bulk_import.py:65 -#: netbox/wireless/forms/bulk_import.py:104 -#: netbox/wireless/forms/bulk_import.py:107 -#: netbox/wireless/forms/filtersets.py:54 -#: netbox/wireless/forms/filtersets.py:88 +#: ipam/forms/bulk_edit.py:399 ipam/forms/filtersets.py:402 +#: wireless/forms/bulk_edit.py:68 wireless/forms/bulk_edit.py:115 +#: wireless/forms/bulk_import.py:62 wireless/forms/bulk_import.py:65 +#: wireless/forms/bulk_import.py:104 wireless/forms/bulk_import.py:107 +#: wireless/forms/filtersets.py:54 wireless/forms/filtersets.py:88 msgid "Authentication type" msgstr "Tipo de autenticação" -#: netbox/ipam/forms/bulk_edit.py:403 netbox/ipam/forms/filtersets.py:406 +#: ipam/forms/bulk_edit.py:404 ipam/forms/filtersets.py:406 msgid "Authentication key" msgstr "Chave de autenticação" -#: netbox/ipam/forms/bulk_edit.py:420 netbox/ipam/forms/filtersets.py:383 -#: netbox/ipam/forms/model_forms.py:474 netbox/netbox/navigation/menu.py:386 -#: netbox/templates/ipam/fhrpgroup.html:49 -#: netbox/templates/wireless/inc/authentication_attrs.html:5 -#: netbox/wireless/forms/bulk_edit.py:91 -#: netbox/wireless/forms/bulk_edit.py:149 -#: netbox/wireless/forms/filtersets.py:36 -#: netbox/wireless/forms/filtersets.py:76 -#: netbox/wireless/forms/model_forms.py:55 -#: netbox/wireless/forms/model_forms.py:171 +#: ipam/forms/bulk_edit.py:421 ipam/forms/filtersets.py:383 +#: ipam/forms/model_forms.py:474 netbox/navigation/menu.py:386 +#: templates/ipam/fhrpgroup.html:49 +#: templates/wireless/inc/authentication_attrs.html:5 +#: wireless/forms/bulk_edit.py:91 wireless/forms/bulk_edit.py:149 +#: wireless/forms/filtersets.py:36 wireless/forms/filtersets.py:76 +#: wireless/forms/model_forms.py:55 wireless/forms/model_forms.py:171 msgid "Authentication" msgstr "Autenticação" -#: netbox/ipam/forms/bulk_edit.py:432 netbox/ipam/forms/model_forms.py:575 +#: ipam/forms/bulk_edit.py:436 ipam/forms/model_forms.py:575 msgid "Scope type" msgstr "Tipo de escopo" -#: netbox/ipam/forms/bulk_edit.py:490 netbox/ipam/models/vlans.py:60 -msgid "VLAN ID ranges" -msgstr "Faixas para ID de VLAN." - -#: netbox/ipam/forms/bulk_edit.py:498 netbox/ipam/forms/model_forms.py:578 -#: netbox/ipam/forms/model_forms.py:588 netbox/ipam/tables/vlans.py:71 -#: netbox/templates/ipam/vlangroup.html:38 +#: ipam/forms/bulk_edit.py:439 ipam/forms/bulk_edit.py:453 +#: ipam/forms/model_forms.py:578 ipam/forms/model_forms.py:588 +#: ipam/tables/vlans.py:71 templates/ipam/vlangroup.html:38 msgid "Scope" msgstr "Escopo" -#: netbox/ipam/forms/bulk_edit.py:570 +#: ipam/forms/bulk_edit.py:446 ipam/models/vlans.py:60 +msgid "VLAN ID ranges" +msgstr "Faixas para ID de VLAN." + +#: ipam/forms/bulk_edit.py:525 msgid "Site & Group" msgstr "Site e Grupo" -#: netbox/ipam/forms/bulk_edit.py:584 netbox/ipam/forms/model_forms.py:659 -#: netbox/ipam/forms/model_forms.py:691 netbox/ipam/tables/services.py:19 -#: netbox/ipam/tables/services.py:49 netbox/templates/ipam/service.html:36 -#: netbox/templates/ipam/servicetemplate.html:23 +#: ipam/forms/bulk_edit.py:539 ipam/forms/model_forms.py:659 +#: ipam/forms/model_forms.py:691 ipam/tables/services.py:19 +#: ipam/tables/services.py:49 templates/ipam/service.html:36 +#: templates/ipam/servicetemplate.html:23 msgid "Ports" msgstr "Portas" -#: netbox/ipam/forms/bulk_import.py:48 +#: ipam/forms/bulk_import.py:48 msgid "Import route targets" msgstr "Import route targets" -#: netbox/ipam/forms/bulk_import.py:54 +#: ipam/forms/bulk_import.py:54 msgid "Export route targets" msgstr "Export route targets" -#: netbox/ipam/forms/bulk_import.py:92 netbox/ipam/forms/bulk_import.py:112 -#: netbox/ipam/forms/bulk_import.py:132 +#: ipam/forms/bulk_import.py:92 ipam/forms/bulk_import.py:112 +#: ipam/forms/bulk_import.py:132 msgid "Assigned RIR" msgstr "RIR associado" -#: netbox/ipam/forms/bulk_import.py:182 +#: ipam/forms/bulk_import.py:182 msgid "VLAN's group (if any)" msgstr "Grupo de VLANs (se houver)" -#: netbox/ipam/forms/bulk_import.py:308 +#: ipam/forms/bulk_import.py:308 msgid "Parent device of assigned interface (if any)" msgstr "Dispositivo pai da interface associada (se houver)" -#: netbox/ipam/forms/bulk_import.py:311 netbox/ipam/forms/bulk_import.py:488 -#: netbox/ipam/forms/model_forms.py:685 -#: netbox/virtualization/filtersets.py:288 -#: netbox/virtualization/filtersets.py:327 -#: netbox/virtualization/forms/bulk_edit.py:200 -#: netbox/virtualization/forms/bulk_edit.py:326 -#: netbox/virtualization/forms/bulk_import.py:146 -#: netbox/virtualization/forms/bulk_import.py:207 -#: netbox/virtualization/forms/filtersets.py:212 -#: netbox/virtualization/forms/filtersets.py:248 -#: netbox/virtualization/forms/model_forms.py:288 -#: netbox/vpn/forms/bulk_import.py:93 netbox/vpn/forms/bulk_import.py:290 +#: ipam/forms/bulk_import.py:311 ipam/forms/bulk_import.py:488 +#: ipam/forms/model_forms.py:685 virtualization/filtersets.py:288 +#: virtualization/filtersets.py:327 virtualization/forms/bulk_edit.py:200 +#: virtualization/forms/bulk_edit.py:326 +#: virtualization/forms/bulk_import.py:146 +#: virtualization/forms/bulk_import.py:207 +#: virtualization/forms/filtersets.py:212 +#: virtualization/forms/filtersets.py:248 +#: virtualization/forms/model_forms.py:288 vpn/forms/bulk_import.py:93 +#: vpn/forms/bulk_import.py:290 msgid "Virtual machine" msgstr "Máquina virtual" -#: netbox/ipam/forms/bulk_import.py:315 +#: ipam/forms/bulk_import.py:315 msgid "Parent VM of assigned interface (if any)" msgstr "VM pai da interface associada (se houver)" -#: netbox/ipam/forms/bulk_import.py:325 +#: ipam/forms/bulk_import.py:325 msgid "Is primary" msgstr "É primário" -#: netbox/ipam/forms/bulk_import.py:326 +#: ipam/forms/bulk_import.py:326 msgid "Make this the primary IP for the assigned device" msgstr "Tornar este o IP primário do dispositivo associado" -#: netbox/ipam/forms/bulk_import.py:365 +#: ipam/forms/bulk_import.py:365 msgid "No device or virtual machine specified; cannot set as primary IP" msgstr "" "Nenhum dispositivo ou máquina virtual especificado; não pode ser definido " "como IP primário" -#: netbox/ipam/forms/bulk_import.py:369 +#: ipam/forms/bulk_import.py:369 msgid "No interface specified; cannot set as primary IP" msgstr "" "Nenhuma interface especificada; não é possível definir como IP primário" -#: netbox/ipam/forms/bulk_import.py:398 +#: ipam/forms/bulk_import.py:398 msgid "Auth type" msgstr "Tipo de autenticação" -#: netbox/ipam/forms/bulk_import.py:413 +#: ipam/forms/bulk_import.py:413 msgid "Scope type (app & model)" msgstr "Tipo de escopo (aplicativo e modelo)" -#: netbox/ipam/forms/bulk_import.py:440 +#: ipam/forms/bulk_import.py:440 msgid "Assigned VLAN group" msgstr "Grupo de VLANs associado" -#: netbox/ipam/forms/bulk_import.py:471 netbox/ipam/forms/bulk_import.py:497 +#: ipam/forms/bulk_import.py:471 ipam/forms/bulk_import.py:497 msgid "IP protocol" msgstr "Protocolo IP" -#: netbox/ipam/forms/bulk_import.py:485 +#: ipam/forms/bulk_import.py:485 msgid "Required if not assigned to a VM" msgstr "Obrigatório se não estiver atribuído a uma VM" -#: netbox/ipam/forms/bulk_import.py:492 +#: ipam/forms/bulk_import.py:492 msgid "Required if not assigned to a device" msgstr "Obrigatório se não estiver atribuído a um dispositivo" -#: netbox/ipam/forms/bulk_import.py:517 +#: ipam/forms/bulk_import.py:517 #, python-brace-format msgid "{ip} is not assigned to this device/VM." msgstr "{ip} não está associado a este dispositivo/VM." -#: netbox/ipam/forms/filtersets.py:47 netbox/ipam/forms/model_forms.py:63 -#: netbox/netbox/navigation/menu.py:189 netbox/vpn/forms/model_forms.py:410 +#: ipam/forms/filtersets.py:47 ipam/forms/model_forms.py:63 +#: netbox/navigation/menu.py:189 vpn/forms/model_forms.py:410 msgid "Route Targets" msgstr "Route Targets" -#: netbox/ipam/forms/filtersets.py:53 netbox/ipam/forms/model_forms.py:50 -#: netbox/vpn/forms/filtersets.py:224 netbox/vpn/forms/model_forms.py:397 +#: ipam/forms/filtersets.py:53 ipam/forms/model_forms.py:50 +#: vpn/forms/filtersets.py:224 vpn/forms/model_forms.py:397 msgid "Import targets" msgstr "Import targets" -#: netbox/ipam/forms/filtersets.py:58 netbox/ipam/forms/model_forms.py:55 -#: netbox/vpn/forms/filtersets.py:229 netbox/vpn/forms/model_forms.py:402 +#: ipam/forms/filtersets.py:58 ipam/forms/model_forms.py:55 +#: vpn/forms/filtersets.py:229 vpn/forms/model_forms.py:402 msgid "Export targets" msgstr "Export targets" -#: netbox/ipam/forms/filtersets.py:73 +#: ipam/forms/filtersets.py:73 msgid "Imported by VRF" msgstr "Importado pela VRF" -#: netbox/ipam/forms/filtersets.py:78 +#: ipam/forms/filtersets.py:78 msgid "Exported by VRF" msgstr "Exportado pela VRF" -#: netbox/ipam/forms/filtersets.py:87 netbox/ipam/tables/ip.py:89 -#: netbox/templates/ipam/rir.html:30 +#: ipam/forms/filtersets.py:87 ipam/tables/ip.py:89 templates/ipam/rir.html:30 msgid "Private" msgstr "Privado" -#: netbox/ipam/forms/filtersets.py:105 netbox/ipam/forms/filtersets.py:191 -#: netbox/ipam/forms/filtersets.py:272 netbox/ipam/forms/filtersets.py:326 +#: ipam/forms/filtersets.py:105 ipam/forms/filtersets.py:191 +#: ipam/forms/filtersets.py:272 ipam/forms/filtersets.py:326 msgid "Address family" msgstr "Família de endereços" -#: netbox/ipam/forms/filtersets.py:119 netbox/templates/ipam/asnrange.html:25 +#: ipam/forms/filtersets.py:119 templates/ipam/asnrange.html:25 msgid "Range" msgstr "Faixa" -#: netbox/ipam/forms/filtersets.py:128 +#: ipam/forms/filtersets.py:128 msgid "Start" msgstr "Início" -#: netbox/ipam/forms/filtersets.py:132 +#: ipam/forms/filtersets.py:132 msgid "End" msgstr "Fim" -#: netbox/ipam/forms/filtersets.py:186 +#: ipam/forms/filtersets.py:186 msgid "Search within" msgstr "Pesquisar dentro" -#: netbox/ipam/forms/filtersets.py:207 netbox/ipam/forms/filtersets.py:342 +#: ipam/forms/filtersets.py:207 ipam/forms/filtersets.py:342 msgid "Present in VRF" msgstr "Presente em VRF" -#: netbox/ipam/forms/filtersets.py:311 +#: ipam/forms/filtersets.py:311 msgid "Device/VM" msgstr "Dispositivo/VM" -#: netbox/ipam/forms/filtersets.py:321 +#: ipam/forms/filtersets.py:321 msgid "Parent Prefix" msgstr "Prefixo Pai" -#: netbox/ipam/forms/filtersets.py:347 +#: ipam/forms/filtersets.py:347 msgid "Assigned Device" msgstr "Dispositivo Associado" -#: netbox/ipam/forms/filtersets.py:352 +#: ipam/forms/filtersets.py:352 msgid "Assigned VM" msgstr "VM Associada" -#: netbox/ipam/forms/filtersets.py:366 +#: ipam/forms/filtersets.py:366 msgid "Assigned to an interface" msgstr "Associado a uma interface" -#: netbox/ipam/forms/filtersets.py:373 netbox/templates/ipam/ipaddress.html:51 +#: ipam/forms/filtersets.py:373 templates/ipam/ipaddress.html:51 msgid "DNS Name" msgstr "Nome DNS" -#: netbox/ipam/forms/filtersets.py:416 netbox/ipam/models/vlans.py:235 -#: netbox/ipam/tables/ip.py:176 netbox/ipam/tables/vlans.py:82 -#: netbox/ipam/views.py:971 netbox/netbox/navigation/menu.py:193 -#: netbox/netbox/navigation/menu.py:195 +#: ipam/forms/filtersets.py:416 ipam/models/vlans.py:235 ipam/tables/ip.py:176 +#: ipam/tables/vlans.py:82 ipam/views.py:971 netbox/navigation/menu.py:193 +#: netbox/navigation/menu.py:195 msgid "VLANs" msgstr "VLANs" -#: netbox/ipam/forms/filtersets.py:457 +#: ipam/forms/filtersets.py:457 msgid "Contains VLAN ID" msgstr "Contém ID de VLAN" -#: netbox/ipam/forms/filtersets.py:513 netbox/ipam/models/vlans.py:176 -#: netbox/templates/ipam/vlan.html:31 +#: ipam/forms/filtersets.py:513 ipam/models/vlans.py:176 +#: templates/ipam/vlan.html:31 msgid "VLAN ID" msgstr "ID da VLAN" -#: netbox/ipam/forms/filtersets.py:556 netbox/ipam/forms/model_forms.py:320 -#: netbox/ipam/forms/model_forms.py:713 netbox/ipam/forms/model_forms.py:739 -#: netbox/ipam/tables/vlans.py:195 -#: netbox/templates/virtualization/virtualdisk.html:21 -#: netbox/templates/virtualization/virtualmachine.html:12 -#: netbox/templates/virtualization/vminterface.html:21 -#: netbox/templates/vpn/tunneltermination.html:25 -#: netbox/virtualization/forms/filtersets.py:197 -#: netbox/virtualization/forms/filtersets.py:242 -#: netbox/virtualization/forms/model_forms.py:220 -#: netbox/virtualization/tables/virtualmachines.py:135 -#: netbox/virtualization/tables/virtualmachines.py:190 -#: netbox/vpn/choices.py:45 netbox/vpn/forms/filtersets.py:293 -#: netbox/vpn/forms/model_forms.py:160 netbox/vpn/forms/model_forms.py:171 -#: netbox/vpn/forms/model_forms.py:273 netbox/vpn/forms/model_forms.py:454 +#: ipam/forms/filtersets.py:556 ipam/forms/model_forms.py:320 +#: ipam/forms/model_forms.py:713 ipam/forms/model_forms.py:739 +#: ipam/tables/vlans.py:195 templates/virtualization/virtualdisk.html:21 +#: templates/virtualization/virtualmachine.html:12 +#: templates/virtualization/vminterface.html:21 +#: templates/vpn/tunneltermination.html:25 +#: virtualization/forms/filtersets.py:197 +#: virtualization/forms/filtersets.py:242 +#: virtualization/forms/model_forms.py:220 +#: virtualization/tables/virtualmachines.py:135 +#: virtualization/tables/virtualmachines.py:190 vpn/choices.py:45 +#: vpn/forms/filtersets.py:293 vpn/forms/model_forms.py:160 +#: vpn/forms/model_forms.py:171 vpn/forms/model_forms.py:273 +#: vpn/forms/model_forms.py:454 msgid "Virtual Machine" msgstr "Máquina Virtual" -#: netbox/ipam/forms/model_forms.py:80 -#: netbox/templates/ipam/routetarget.html:10 +#: ipam/forms/model_forms.py:80 templates/ipam/routetarget.html:10 msgid "Route Target" msgstr "Route Target" -#: netbox/ipam/forms/model_forms.py:114 netbox/ipam/tables/ip.py:117 -#: netbox/templates/ipam/aggregate.html:11 -#: netbox/templates/ipam/prefix.html:38 +#: ipam/forms/model_forms.py:114 ipam/tables/ip.py:117 +#: templates/ipam/aggregate.html:11 templates/ipam/prefix.html:38 msgid "Aggregate" msgstr "Agregado" -#: netbox/ipam/forms/model_forms.py:135 netbox/templates/ipam/asnrange.html:12 +#: ipam/forms/model_forms.py:135 templates/ipam/asnrange.html:12 msgid "ASN Range" msgstr "Intervalo de ASN" -#: netbox/ipam/forms/model_forms.py:231 +#: ipam/forms/model_forms.py:231 msgid "Site/VLAN Assignment" msgstr "Atribuição de Site/VLAN" -#: netbox/ipam/forms/model_forms.py:259 netbox/templates/ipam/iprange.html:10 +#: ipam/forms/model_forms.py:259 templates/ipam/iprange.html:10 msgid "IP Range" msgstr "Faixa de IP" -#: netbox/ipam/forms/model_forms.py:295 netbox/ipam/forms/model_forms.py:321 -#: netbox/ipam/forms/model_forms.py:473 -#: netbox/templates/ipam/fhrpgroup.html:19 +#: ipam/forms/model_forms.py:295 ipam/forms/model_forms.py:321 +#: ipam/forms/model_forms.py:473 templates/ipam/fhrpgroup.html:19 msgid "FHRP Group" msgstr "Grupo FHRP" -#: netbox/ipam/forms/model_forms.py:310 +#: ipam/forms/model_forms.py:310 msgid "Make this the primary IP for the device/VM" msgstr "Torne este o IP primário do dispositivo/VM" -#: netbox/ipam/forms/model_forms.py:325 +#: ipam/forms/model_forms.py:325 msgid "NAT IP (Inside)" msgstr "IP NAT (interno)" -#: netbox/ipam/forms/model_forms.py:384 +#: ipam/forms/model_forms.py:384 msgid "An IP address can only be assigned to a single object." msgstr "Um endereço IP só pode ser atribuído a um único objeto." -#: netbox/ipam/forms/model_forms.py:390 netbox/ipam/models/ip.py:897 +#: ipam/forms/model_forms.py:390 ipam/models/ip.py:897 msgid "" "Cannot reassign IP address while it is designated as the primary IP for the " "parent object" @@ -9861,31 +9266,30 @@ msgstr "" "Não é possível reatribuir o endereço IP enquanto ele estiver designado como " "o IP primário do objeto pai" -#: netbox/ipam/forms/model_forms.py:400 +#: ipam/forms/model_forms.py:400 msgid "" "Only IP addresses assigned to an interface can be designated as primary IPs." msgstr "" "Somente endereços IP associados a uma interface podem ser designados como " "IPs primários." -#: netbox/ipam/forms/model_forms.py:475 +#: ipam/forms/model_forms.py:475 msgid "Virtual IP Address" msgstr "Endereço IP Virtual" -#: netbox/ipam/forms/model_forms.py:560 +#: ipam/forms/model_forms.py:560 msgid "Assignment already exists" msgstr "A atribuição já existe" -#: netbox/ipam/forms/model_forms.py:569 -#: netbox/templates/ipam/vlangroup.html:42 +#: ipam/forms/model_forms.py:569 templates/ipam/vlangroup.html:42 msgid "VLAN IDs" msgstr "IDs de VLAN" -#: netbox/ipam/forms/model_forms.py:587 +#: ipam/forms/model_forms.py:587 msgid "Child VLANs" msgstr "VLANs filhas" -#: netbox/ipam/forms/model_forms.py:664 netbox/ipam/forms/model_forms.py:696 +#: ipam/forms/model_forms.py:664 ipam/forms/model_forms.py:696 msgid "" "Comma-separated list of one or more port numbers. A range may be specified " "using a hyphen." @@ -9893,133 +9297,132 @@ msgstr "" "Lista separada por vírgula de um ou mais números de portas. Um intervalo " "pode ser especificado usando hífen." -#: netbox/ipam/forms/model_forms.py:669 -#: netbox/templates/ipam/servicetemplate.html:12 +#: ipam/forms/model_forms.py:669 templates/ipam/servicetemplate.html:12 msgid "Service Template" msgstr "Modelo de Serviço" -#: netbox/ipam/forms/model_forms.py:716 +#: ipam/forms/model_forms.py:716 msgid "Port(s)" msgstr "Porta(s)" -#: netbox/ipam/forms/model_forms.py:717 netbox/ipam/forms/model_forms.py:745 -#: netbox/templates/ipam/service.html:21 +#: ipam/forms/model_forms.py:717 ipam/forms/model_forms.py:745 +#: templates/ipam/service.html:21 msgid "Service" msgstr "Serviço" -#: netbox/ipam/forms/model_forms.py:730 +#: ipam/forms/model_forms.py:730 msgid "Service template" msgstr "Modelo de serviço" -#: netbox/ipam/forms/model_forms.py:742 +#: ipam/forms/model_forms.py:742 msgid "From Template" msgstr "Do Modelo" -#: netbox/ipam/forms/model_forms.py:743 +#: ipam/forms/model_forms.py:743 msgid "Custom" msgstr "Personalizado" -#: netbox/ipam/forms/model_forms.py:773 +#: ipam/forms/model_forms.py:773 msgid "" "Must specify name, protocol, and port(s) if not using a service template." msgstr "" "Deve especificar nome, protocolo e porta(s) se não estiver usando um modelo " "de serviço." -#: netbox/ipam/models/asns.py:34 +#: ipam/models/asns.py:34 msgid "start" msgstr "iniciar" -#: netbox/ipam/models/asns.py:51 +#: ipam/models/asns.py:51 msgid "ASN range" msgstr "intervalo de ASN" -#: netbox/ipam/models/asns.py:52 +#: ipam/models/asns.py:52 msgid "ASN ranges" msgstr "Intervalos de ASNs" -#: netbox/ipam/models/asns.py:72 +#: ipam/models/asns.py:72 #, python-brace-format msgid "Starting ASN ({start}) must be lower than ending ASN ({end})." msgstr "ASN inicial ({start}) deve ser menor do que o ASN final ({end})." -#: netbox/ipam/models/asns.py:104 +#: ipam/models/asns.py:104 msgid "Regional Internet Registry responsible for this AS number space" msgstr "Regional Internet Registry responsável por este espaço numérico de AS" -#: netbox/ipam/models/asns.py:109 +#: ipam/models/asns.py:109 msgid "16- or 32-bit autonomous system number" msgstr "Número de 16 ou 32 bits do sistema autônomo" -#: netbox/ipam/models/fhrp.py:22 +#: ipam/models/fhrp.py:22 msgid "group ID" msgstr "ID do grupo" -#: netbox/ipam/models/fhrp.py:30 netbox/ipam/models/services.py:22 +#: ipam/models/fhrp.py:30 ipam/models/services.py:22 msgid "protocol" msgstr "protocolo" -#: netbox/ipam/models/fhrp.py:38 netbox/wireless/models.py:28 +#: ipam/models/fhrp.py:38 wireless/models.py:28 msgid "authentication type" msgstr "tipo de autenticação" -#: netbox/ipam/models/fhrp.py:43 +#: ipam/models/fhrp.py:43 msgid "authentication key" msgstr "chave de autenticação" -#: netbox/ipam/models/fhrp.py:56 +#: ipam/models/fhrp.py:56 msgid "FHRP group" msgstr "Grupo FHRP" -#: netbox/ipam/models/fhrp.py:57 +#: ipam/models/fhrp.py:57 msgid "FHRP groups" msgstr "Grupos FHRP" -#: netbox/ipam/models/fhrp.py:113 +#: ipam/models/fhrp.py:113 msgid "FHRP group assignment" msgstr "Associação a um grupo de FHRP" -#: netbox/ipam/models/fhrp.py:114 +#: ipam/models/fhrp.py:114 msgid "FHRP group assignments" msgstr "Associações a grupos de FHRPs" -#: netbox/ipam/models/ip.py:65 +#: ipam/models/ip.py:65 msgid "private" msgstr "privado" -#: netbox/ipam/models/ip.py:66 +#: ipam/models/ip.py:66 msgid "IP space managed by this RIR is considered private" msgstr "O espaço IP gerenciado por este RIR é considerado privado" -#: netbox/ipam/models/ip.py:72 netbox/netbox/navigation/menu.py:182 +#: ipam/models/ip.py:72 netbox/navigation/menu.py:182 msgid "RIRs" msgstr "RIRs" -#: netbox/ipam/models/ip.py:84 +#: ipam/models/ip.py:84 msgid "IPv4 or IPv6 network" msgstr "Rede IPv4 ou IPv6" -#: netbox/ipam/models/ip.py:91 +#: ipam/models/ip.py:91 msgid "Regional Internet Registry responsible for this IP space" msgstr "Regional Internet Registry responsável por este espaço de IP" -#: netbox/ipam/models/ip.py:101 +#: ipam/models/ip.py:101 msgid "date added" msgstr "data adicionada" -#: netbox/ipam/models/ip.py:115 +#: ipam/models/ip.py:115 msgid "aggregate" msgstr "agregado" -#: netbox/ipam/models/ip.py:116 +#: ipam/models/ip.py:116 msgid "aggregates" msgstr "agregados" -#: netbox/ipam/models/ip.py:132 +#: ipam/models/ip.py:132 msgid "Cannot create aggregate with /0 mask." msgstr "Não é possível criar agregação com máscara /0." -#: netbox/ipam/models/ip.py:144 +#: ipam/models/ip.py:144 #, python-brace-format msgid "" "Aggregates cannot overlap. {prefix} is already covered by an existing " @@ -10028,7 +9431,7 @@ msgstr "" "Os agregados não podem se sobrepor. {prefix} já está coberto por um agregado" " existente ({aggregate})." -#: netbox/ipam/models/ip.py:158 +#: ipam/models/ip.py:158 #, python-brace-format msgid "" "Prefixes cannot overlap aggregates. {prefix} covers an existing aggregate " @@ -10037,231 +9440,229 @@ msgstr "" "Os prefixos não podem se sobrepor aos agregados. {prefix} cobre um agregado " "existente ({aggregate})." -#: netbox/ipam/models/ip.py:200 netbox/ipam/models/ip.py:737 -#: netbox/vpn/models/tunnels.py:114 +#: ipam/models/ip.py:200 ipam/models/ip.py:737 vpn/models/tunnels.py:114 msgid "role" msgstr "função" -#: netbox/ipam/models/ip.py:201 +#: ipam/models/ip.py:201 msgid "roles" msgstr "funções" -#: netbox/ipam/models/ip.py:217 netbox/ipam/models/ip.py:293 +#: ipam/models/ip.py:217 ipam/models/ip.py:293 msgid "prefix" msgstr "prefixo" -#: netbox/ipam/models/ip.py:218 +#: ipam/models/ip.py:218 msgid "IPv4 or IPv6 network with mask" msgstr "Rede IPv4 ou IPv6 com máscara" -#: netbox/ipam/models/ip.py:254 +#: ipam/models/ip.py:254 msgid "Operational status of this prefix" msgstr "Status operacional deste prefixo" -#: netbox/ipam/models/ip.py:262 +#: ipam/models/ip.py:262 msgid "The primary function of this prefix" msgstr "A função primária deste prefixo" -#: netbox/ipam/models/ip.py:265 +#: ipam/models/ip.py:265 msgid "is a pool" msgstr "é um pool" -#: netbox/ipam/models/ip.py:267 +#: ipam/models/ip.py:267 msgid "All IP addresses within this prefix are considered usable" msgstr "" "Todos os endereços IP dentro deste prefixo são considerados utilizáveis" -#: netbox/ipam/models/ip.py:270 netbox/ipam/models/ip.py:537 +#: ipam/models/ip.py:270 ipam/models/ip.py:537 msgid "mark utilized" msgstr "marcar utilizado" -#: netbox/ipam/models/ip.py:294 +#: ipam/models/ip.py:294 msgid "prefixes" msgstr "prefixos" -#: netbox/ipam/models/ip.py:317 +#: ipam/models/ip.py:317 msgid "Cannot create prefix with /0 mask." msgstr "Não é possível criar prefixo com a máscara /0." -#: netbox/ipam/models/ip.py:324 netbox/ipam/models/ip.py:874 +#: ipam/models/ip.py:324 ipam/models/ip.py:874 #, python-brace-format msgid "VRF {vrf}" msgstr "VRF {vrf}" -#: netbox/ipam/models/ip.py:324 netbox/ipam/models/ip.py:874 +#: ipam/models/ip.py:324 ipam/models/ip.py:874 msgid "global table" msgstr "tabela global" -#: netbox/ipam/models/ip.py:326 +#: ipam/models/ip.py:326 #, python-brace-format msgid "Duplicate prefix found in {table}: {prefix}" msgstr "Prefixo duplicado encontrado em {table}: {prefix}" -#: netbox/ipam/models/ip.py:495 +#: ipam/models/ip.py:495 msgid "start address" msgstr "endereço inicial" -#: netbox/ipam/models/ip.py:496 netbox/ipam/models/ip.py:500 -#: netbox/ipam/models/ip.py:712 +#: ipam/models/ip.py:496 ipam/models/ip.py:500 ipam/models/ip.py:712 msgid "IPv4 or IPv6 address (with mask)" msgstr "Endereço IPv4 ou IPv6 (com máscara)" -#: netbox/ipam/models/ip.py:499 +#: ipam/models/ip.py:499 msgid "end address" msgstr "endereço final" -#: netbox/ipam/models/ip.py:526 +#: ipam/models/ip.py:526 msgid "Operational status of this range" msgstr "Status operacional desta faixa" -#: netbox/ipam/models/ip.py:534 +#: ipam/models/ip.py:534 msgid "The primary function of this range" msgstr "A função principal desta faixa" -#: netbox/ipam/models/ip.py:548 +#: ipam/models/ip.py:548 msgid "IP range" msgstr "Faixa de IP" -#: netbox/ipam/models/ip.py:549 +#: ipam/models/ip.py:549 msgid "IP ranges" msgstr "Faixas de IP" -#: netbox/ipam/models/ip.py:565 +#: ipam/models/ip.py:565 msgid "Starting and ending IP address versions must match" msgstr "Endereços IP inicial e final devem ter a mesma versão" -#: netbox/ipam/models/ip.py:571 +#: ipam/models/ip.py:571 msgid "Starting and ending IP address masks must match" msgstr "Máscaras de endereço IP inicial e final precisam ser iguais" -#: netbox/ipam/models/ip.py:578 +#: ipam/models/ip.py:578 #, python-brace-format msgid "" "Ending address must be greater than the starting address ({start_address})" msgstr "" "O endereço final deve ser maior que o endereço inicial ({start_address})" -#: netbox/ipam/models/ip.py:590 +#: ipam/models/ip.py:590 #, python-brace-format msgid "Defined addresses overlap with range {overlapping_range} in VRF {vrf}" msgstr "" "Endereços definidos se sobrepõem com a faixa {overlapping_range} em VRF " "{vrf}" -#: netbox/ipam/models/ip.py:599 +#: ipam/models/ip.py:599 #, python-brace-format msgid "Defined range exceeds maximum supported size ({max_size})" msgstr "Faixa definida excede o tamanho máximo suportado ({max_size})" -#: netbox/ipam/models/ip.py:711 netbox/tenancy/models/contacts.py:82 +#: ipam/models/ip.py:711 tenancy/models/contacts.py:82 msgid "address" msgstr "endereço" -#: netbox/ipam/models/ip.py:734 +#: ipam/models/ip.py:734 msgid "The operational status of this IP" msgstr "O status operacional deste IP" -#: netbox/ipam/models/ip.py:741 +#: ipam/models/ip.py:741 msgid "The functional role of this IP" msgstr "O papel funcional deste IP" -#: netbox/ipam/models/ip.py:765 netbox/templates/ipam/ipaddress.html:72 +#: ipam/models/ip.py:765 templates/ipam/ipaddress.html:72 msgid "NAT (inside)" msgstr "NAT (interno)" -#: netbox/ipam/models/ip.py:766 +#: ipam/models/ip.py:766 msgid "The IP for which this address is the \"outside\" IP" msgstr "O IP para o qual este endereço é o IP “externo”" -#: netbox/ipam/models/ip.py:773 +#: ipam/models/ip.py:773 msgid "Hostname or FQDN (not case-sensitive)" msgstr "Hostname ou FQDN (não diferencia maiúsculas de minúsculas)" -#: netbox/ipam/models/ip.py:789 netbox/ipam/models/services.py:94 +#: ipam/models/ip.py:789 ipam/models/services.py:94 msgid "IP addresses" msgstr "Endereços IP" -#: netbox/ipam/models/ip.py:845 +#: ipam/models/ip.py:845 msgid "Cannot create IP address with /0 mask." msgstr "Não é possível criar endereço IP com máscara /0." -#: netbox/ipam/models/ip.py:851 +#: ipam/models/ip.py:851 #, python-brace-format msgid "{ip} is a network ID, which may not be assigned to an interface." msgstr "{ip} é um ID de rede, que não pode ser atribuído a uma interface." -#: netbox/ipam/models/ip.py:862 +#: ipam/models/ip.py:862 #, python-brace-format msgid "" "{ip} is a broadcast address, which may not be assigned to an interface." msgstr "" "{ip} é um endereço de broadcast, que não pode ser atribuído a uma interface." -#: netbox/ipam/models/ip.py:876 +#: ipam/models/ip.py:876 #, python-brace-format msgid "Duplicate IP address found in {table}: {ipaddress}" msgstr "Endereço IP duplicado encontrado em {table}: {ipaddress}" -#: netbox/ipam/models/ip.py:903 +#: ipam/models/ip.py:903 msgid "Only IPv6 addresses can be assigned SLAAC status" msgstr "Somente endereços IPv6 podem receber o status SLAAC" -#: netbox/ipam/models/services.py:33 +#: ipam/models/services.py:33 msgid "port numbers" msgstr "números de porta" -#: netbox/ipam/models/services.py:59 +#: ipam/models/services.py:59 msgid "service template" msgstr "modelo de serviço" -#: netbox/ipam/models/services.py:60 +#: ipam/models/services.py:60 msgid "service templates" msgstr "modelos de serviços" -#: netbox/ipam/models/services.py:95 +#: ipam/models/services.py:95 msgid "The specific IP addresses (if any) to which this service is bound" msgstr "" "Os endereços IP específicos (se houver) aos quais este serviço está " "vinculado" -#: netbox/ipam/models/services.py:102 +#: ipam/models/services.py:102 msgid "service" msgstr "serviço" -#: netbox/ipam/models/services.py:103 +#: ipam/models/services.py:103 msgid "services" msgstr "serviços" -#: netbox/ipam/models/services.py:117 +#: ipam/models/services.py:117 msgid "" "A service cannot be associated with both a device and a virtual machine." msgstr "" "Um serviço não pode ser associado a um dispositivo e a uma máquina virtual " "ao mesmo tempo." -#: netbox/ipam/models/services.py:119 +#: ipam/models/services.py:119 msgid "" "A service must be associated with either a device or a virtual machine." msgstr "" "Um serviço deve estar associado a um dispositivo ou a uma máquina virtual." -#: netbox/ipam/models/vlans.py:85 +#: ipam/models/vlans.py:85 msgid "VLAN groups" msgstr "Grupos de VLANs" -#: netbox/ipam/models/vlans.py:95 +#: ipam/models/vlans.py:95 msgid "Cannot set scope_type without scope_id." msgstr "Não é possível definir scope_type sem scope_id." -#: netbox/ipam/models/vlans.py:97 +#: ipam/models/vlans.py:97 msgid "Cannot set scope_id without scope_type." msgstr "Não é possível definir scope_id sem scope_type." -#: netbox/ipam/models/vlans.py:101 +#: ipam/models/vlans.py:101 msgid "Ranges cannot overlap." msgstr "Os intervalos não podem se sobrepor." -#: netbox/ipam/models/vlans.py:106 +#: ipam/models/vlans.py:106 #, python-brace-format msgid "" "Maximum child VID must be greater than or equal to minimum child VID " @@ -10270,27 +9671,27 @@ msgstr "" "A VLAN ID máxima do filho deve ser maior ou igual a VLAN ID mínima do filho." " ({value})" -#: netbox/ipam/models/vlans.py:165 +#: ipam/models/vlans.py:165 msgid "The specific site to which this VLAN is assigned (if any)" msgstr "O site específico ao qual esta VLAN está associada (se houver)" -#: netbox/ipam/models/vlans.py:173 +#: ipam/models/vlans.py:173 msgid "VLAN group (optional)" msgstr "Grupo de VLANs (opcional)" -#: netbox/ipam/models/vlans.py:181 +#: ipam/models/vlans.py:181 msgid "Numeric VLAN ID (1-4094)" msgstr "ID numérica da VLAN (1-4094)" -#: netbox/ipam/models/vlans.py:199 +#: ipam/models/vlans.py:199 msgid "Operational status of this VLAN" msgstr "Status operacional desta VLAN" -#: netbox/ipam/models/vlans.py:207 +#: ipam/models/vlans.py:207 msgid "The primary function of this VLAN" msgstr "Função principal desta VLAN" -#: netbox/ipam/models/vlans.py:250 +#: ipam/models/vlans.py:250 #, python-brace-format msgid "" "VLAN is assigned to group {group} (scope: {scope}); cannot also assign to " @@ -10299,166 +9700,164 @@ msgstr "" "A VLAN está atribuída ao grupo {group} (escopo: {scope}); não pode ser " "associada ao site {site}." -#: netbox/ipam/models/vlans.py:259 +#: ipam/models/vlans.py:259 #, python-brace-format msgid "VID must be in ranges {ranges} for VLANs in group {group}" msgstr "VLAN ID devem estar nas faixas {ranges} para VLANs no grupo {group}" -#: netbox/ipam/models/vrfs.py:30 +#: ipam/models/vrfs.py:30 msgid "route distinguisher" msgstr "route distinguisher" -#: netbox/ipam/models/vrfs.py:31 +#: ipam/models/vrfs.py:31 msgid "Unique route distinguisher (as defined in RFC 4364)" msgstr "Route Distinguisher único (conforme definido na RFC 4364)" -#: netbox/ipam/models/vrfs.py:42 +#: ipam/models/vrfs.py:42 msgid "enforce unique space" msgstr "imponha um espaço exclusivo" -#: netbox/ipam/models/vrfs.py:43 +#: ipam/models/vrfs.py:43 msgid "Prevent duplicate prefixes/IP addresses within this VRF" msgstr "Prevenir prefixos/endereços IP duplicados dentro deste VRF" -#: netbox/ipam/models/vrfs.py:63 netbox/netbox/navigation/menu.py:186 -#: netbox/netbox/navigation/menu.py:188 +#: ipam/models/vrfs.py:63 netbox/navigation/menu.py:186 +#: netbox/navigation/menu.py:188 msgid "VRFs" msgstr "VRFs" -#: netbox/ipam/models/vrfs.py:82 +#: ipam/models/vrfs.py:82 msgid "Route target value (formatted in accordance with RFC 4360)" msgstr "Valor do Route Target (formatado de acordo com a RFC 4360)" -#: netbox/ipam/models/vrfs.py:94 +#: ipam/models/vrfs.py:94 msgid "route target" msgstr "route target" -#: netbox/ipam/models/vrfs.py:95 +#: ipam/models/vrfs.py:95 msgid "route targets" msgstr "route targets" -#: netbox/ipam/tables/asn.py:52 +#: ipam/tables/asn.py:52 msgid "ASDOT" msgstr "ASDOT" -#: netbox/ipam/tables/asn.py:57 +#: ipam/tables/asn.py:57 msgid "Site Count" msgstr "Total de Sites" -#: netbox/ipam/tables/asn.py:62 +#: ipam/tables/asn.py:62 msgid "Provider Count" msgstr "Total de Provedores" -#: netbox/ipam/tables/ip.py:95 netbox/netbox/navigation/menu.py:179 -#: netbox/netbox/navigation/menu.py:181 +#: ipam/tables/ip.py:95 netbox/navigation/menu.py:179 +#: netbox/navigation/menu.py:181 msgid "Aggregates" msgstr "Agregados" -#: netbox/ipam/tables/ip.py:125 +#: ipam/tables/ip.py:125 msgid "Added" msgstr "Adicionado" -#: netbox/ipam/tables/ip.py:128 netbox/ipam/tables/ip.py:166 -#: netbox/ipam/tables/vlans.py:142 netbox/ipam/views.py:346 -#: netbox/netbox/navigation/menu.py:165 netbox/netbox/navigation/menu.py:167 -#: netbox/templates/ipam/vlan.html:84 +#: ipam/tables/ip.py:128 ipam/tables/ip.py:166 ipam/tables/vlans.py:142 +#: ipam/views.py:346 netbox/navigation/menu.py:165 +#: netbox/navigation/menu.py:167 templates/ipam/vlan.html:84 msgid "Prefixes" msgstr "Prefixos" -#: netbox/ipam/tables/ip.py:131 netbox/ipam/tables/ip.py:270 -#: netbox/ipam/tables/ip.py:324 netbox/ipam/tables/vlans.py:86 -#: netbox/templates/dcim/device.html:260 -#: netbox/templates/ipam/aggregate.html:24 -#: netbox/templates/ipam/iprange.html:29 netbox/templates/ipam/prefix.html:106 +#: ipam/tables/ip.py:131 ipam/tables/ip.py:270 ipam/tables/ip.py:324 +#: ipam/tables/vlans.py:86 templates/dcim/device.html:260 +#: templates/ipam/aggregate.html:24 templates/ipam/iprange.html:29 +#: templates/ipam/prefix.html:106 msgid "Utilization" msgstr "Utilização" -#: netbox/ipam/tables/ip.py:171 netbox/netbox/navigation/menu.py:161 +#: ipam/tables/ip.py:171 netbox/navigation/menu.py:161 msgid "IP Ranges" msgstr "Faixas de IP" -#: netbox/ipam/tables/ip.py:221 +#: ipam/tables/ip.py:221 msgid "Prefix (Flat)" msgstr "Prefixo (Plano)" -#: netbox/ipam/tables/ip.py:225 +#: ipam/tables/ip.py:225 msgid "Depth" msgstr "Profundidade" -#: netbox/ipam/tables/ip.py:262 +#: ipam/tables/ip.py:262 msgid "Pool" msgstr "Pool" -#: netbox/ipam/tables/ip.py:266 netbox/ipam/tables/ip.py:320 +#: ipam/tables/ip.py:266 ipam/tables/ip.py:320 msgid "Marked Utilized" msgstr "Marcado como Utilizado" -#: netbox/ipam/tables/ip.py:304 +#: ipam/tables/ip.py:304 msgid "Start address" msgstr "Endereço inicial" -#: netbox/ipam/tables/ip.py:383 +#: ipam/tables/ip.py:383 msgid "NAT (Inside)" msgstr "NAT (interno)" -#: netbox/ipam/tables/ip.py:388 +#: ipam/tables/ip.py:388 msgid "NAT (Outside)" msgstr "NAT (Externo)" -#: netbox/ipam/tables/ip.py:393 +#: ipam/tables/ip.py:393 msgid "Assigned" msgstr "Associado" -#: netbox/ipam/tables/ip.py:429 netbox/templates/vpn/l2vpntermination.html:16 -#: netbox/vpn/forms/filtersets.py:240 +#: ipam/tables/ip.py:429 templates/vpn/l2vpntermination.html:16 +#: vpn/forms/filtersets.py:240 msgid "Assigned Object" msgstr "Objeto Associado" -#: netbox/ipam/tables/vlans.py:68 +#: ipam/tables/vlans.py:68 msgid "Scope Type" msgstr "Tipo de Escopo" -#: netbox/ipam/tables/vlans.py:76 +#: ipam/tables/vlans.py:76 msgid "VID Ranges" msgstr "Faixas de ID de VLAN" -#: netbox/ipam/tables/vlans.py:111 netbox/ipam/tables/vlans.py:214 -#: netbox/templates/dcim/inc/interface_vlans_table.html:4 +#: ipam/tables/vlans.py:111 ipam/tables/vlans.py:214 +#: templates/dcim/inc/interface_vlans_table.html:4 msgid "VID" msgstr "VLAN ID" -#: netbox/ipam/tables/vrfs.py:30 +#: ipam/tables/vrfs.py:30 msgid "RD" msgstr "Route Distinguiser" -#: netbox/ipam/tables/vrfs.py:33 +#: ipam/tables/vrfs.py:33 msgid "Unique" msgstr "Único" -#: netbox/ipam/tables/vrfs.py:37 netbox/vpn/tables/l2vpn.py:27 +#: ipam/tables/vrfs.py:37 vpn/tables/l2vpn.py:27 msgid "Import Targets" msgstr "Import Targets" -#: netbox/ipam/tables/vrfs.py:42 netbox/vpn/tables/l2vpn.py:32 +#: ipam/tables/vrfs.py:42 vpn/tables/l2vpn.py:32 msgid "Export Targets" msgstr "Export Targets" -#: netbox/ipam/validators.py:9 +#: ipam/validators.py:9 #, python-brace-format msgid "{prefix} is not a valid prefix. Did you mean {suggested}?" msgstr "{prefix} não é um prefixo válido. Você quis dizer {suggested}?" -#: netbox/ipam/validators.py:16 +#: ipam/validators.py:16 #, python-format msgid "The prefix length must be less than or equal to %(limit_value)s." msgstr "O comprimento do prefixo deve ser menor ou igual a %(limit_value)s." -#: netbox/ipam/validators.py:24 +#: ipam/validators.py:24 #, python-format msgid "The prefix length must be greater than or equal to %(limit_value)s." msgstr "O comprimento do prefixo deve ser maior ou igual a %(limit_value)s." -#: netbox/ipam/validators.py:33 +#: ipam/validators.py:33 msgid "" "Only alphanumeric characters, asterisks, hyphens, periods, and underscores " "are allowed in DNS names" @@ -10466,31 +9865,31 @@ msgstr "" "Somente caracteres alfanuméricos, asteriscos, hífens, pontos e sublinhados " "são permitidos em nomes DNS" -#: netbox/ipam/views.py:533 +#: ipam/views.py:533 msgid "Child Prefixes" msgstr "Prefixos Filhos" -#: netbox/ipam/views.py:569 +#: ipam/views.py:569 msgid "Child Ranges" msgstr "Intervalos Filhos" -#: netbox/ipam/views.py:898 +#: ipam/views.py:898 msgid "Related IPs" msgstr "IPs relacionados" -#: netbox/ipam/views.py:1127 +#: ipam/views.py:1127 msgid "Device Interfaces" msgstr "Interfaces de dispositivos" -#: netbox/ipam/views.py:1145 +#: ipam/views.py:1145 msgid "VM Interfaces" msgstr "Interfaces de Máquina Virtual" -#: netbox/netbox/api/fields.py:65 +#: netbox/api/fields.py:65 msgid "This field may not be blank." msgstr "Este campo pode não estar em branco." -#: netbox/netbox/api/fields.py:70 +#: netbox/api/fields.py:70 msgid "" "Value must be passed directly (e.g. \"foo\": 123); do not use a dictionary " "or list." @@ -10498,342 +9897,329 @@ msgstr "" "O valor deve ser passado diretamente (por exemplo, “foo”: 123); não use um " "dicionário ou uma lista." -#: netbox/netbox/api/fields.py:91 +#: netbox/api/fields.py:91 #, python-brace-format msgid "{value} is not a valid choice." msgstr "{value} não é uma escolha válida." -#: netbox/netbox/api/fields.py:104 +#: netbox/api/fields.py:104 #, python-brace-format msgid "Invalid content type: {content_type}" msgstr "Tipo de conteúdo inválido: {content_type}" -#: netbox/netbox/api/fields.py:105 +#: netbox/api/fields.py:105 msgid "Invalid value. Specify a content type as '.'." msgstr "" "Valor inválido. Especifique um tipo de conteúdo como " "'.'." -#: netbox/netbox/api/fields.py:167 +#: netbox/api/fields.py:167 msgid "Ranges must be specified in the form (lower, upper)." msgstr "Intervalos devem ser especificados no formato (inferior,superior)." -#: netbox/netbox/api/fields.py:169 +#: netbox/api/fields.py:169 msgid "Range boundaries must be defined as integers." msgstr "Fronteiras do intervalo devem ser definidas como inteiros." -#: netbox/netbox/api/serializers/fields.py:40 +#: netbox/api/serializers/fields.py:40 #, python-brace-format msgid "{class_name} must implement get_view_name()" msgstr "{class_name} deve implementar get_view_name()" -#: netbox/netbox/authentication/__init__.py:138 +#: netbox/authentication/__init__.py:138 #, python-brace-format msgid "Invalid permission {permission} for model {model}" msgstr "Permissão {permission} é inválida para o modelo {model}" -#: netbox/netbox/choices.py:49 +#: netbox/choices.py:49 msgid "Dark Red" msgstr "Vermelho Escuro" -#: netbox/netbox/choices.py:52 +#: netbox/choices.py:52 msgid "Rose" msgstr "Rosa" -#: netbox/netbox/choices.py:53 +#: netbox/choices.py:53 msgid "Fuchsia" msgstr "Fúcsia" -#: netbox/netbox/choices.py:55 +#: netbox/choices.py:55 msgid "Dark Purple" msgstr "Roxo Escuro" -#: netbox/netbox/choices.py:58 +#: netbox/choices.py:58 msgid "Light Blue" msgstr "Azul Claro" -#: netbox/netbox/choices.py:61 +#: netbox/choices.py:61 msgid "Aqua" msgstr "Aqua" -#: netbox/netbox/choices.py:62 +#: netbox/choices.py:62 msgid "Dark Green" msgstr "Verde Escuro" -#: netbox/netbox/choices.py:64 +#: netbox/choices.py:64 msgid "Light Green" msgstr "Verde Claro" -#: netbox/netbox/choices.py:65 +#: netbox/choices.py:65 msgid "Lime" msgstr "Verde-Limão" -#: netbox/netbox/choices.py:67 +#: netbox/choices.py:67 msgid "Amber" msgstr "Âmbar" -#: netbox/netbox/choices.py:69 +#: netbox/choices.py:69 msgid "Dark Orange" msgstr "Laranja Escuro" -#: netbox/netbox/choices.py:70 +#: netbox/choices.py:70 msgid "Brown" msgstr "Marrom" -#: netbox/netbox/choices.py:71 +#: netbox/choices.py:71 msgid "Light Grey" msgstr "Cinza Claro" -#: netbox/netbox/choices.py:72 +#: netbox/choices.py:72 msgid "Grey" msgstr "Cinza" -#: netbox/netbox/choices.py:73 +#: netbox/choices.py:73 msgid "Dark Grey" msgstr "Cinza Escuro" -#: netbox/netbox/choices.py:128 +#: netbox/choices.py:128 msgid "Direct" msgstr "Direto" -#: netbox/netbox/choices.py:129 +#: netbox/choices.py:129 msgid "Upload" msgstr "Carregar" -#: netbox/netbox/choices.py:141 netbox/netbox/choices.py:155 +#: netbox/choices.py:141 netbox/choices.py:155 msgid "Auto-detect" msgstr "Detecção automática" -#: netbox/netbox/choices.py:156 +#: netbox/choices.py:156 msgid "Comma" msgstr "Vírgula" -#: netbox/netbox/choices.py:157 +#: netbox/choices.py:157 msgid "Semicolon" msgstr "Ponto e vírgula" -#: netbox/netbox/choices.py:158 +#: netbox/choices.py:158 msgid "Tab" msgstr "Aba" -#: netbox/netbox/config/__init__.py:67 +#: netbox/config/__init__.py:67 #, python-brace-format msgid "Invalid configuration parameter: {item}" msgstr "Parâmetro de configuração inválido: {item}" -#: netbox/netbox/config/parameters.py:22 -#: netbox/templates/core/inc/config_data.html:62 +#: netbox/config/parameters.py:22 templates/core/inc/config_data.html:62 msgid "Login banner" msgstr "Banner de login" -#: netbox/netbox/config/parameters.py:24 +#: netbox/config/parameters.py:24 msgid "Additional content to display on the login page" msgstr "Conteúdo adicional a ser exibido na página de login" -#: netbox/netbox/config/parameters.py:33 -#: netbox/templates/core/inc/config_data.html:66 +#: netbox/config/parameters.py:33 templates/core/inc/config_data.html:66 msgid "Maintenance banner" msgstr "Banner de manutenção" -#: netbox/netbox/config/parameters.py:35 +#: netbox/config/parameters.py:35 msgid "Additional content to display when in maintenance mode" msgstr "Conteúdo adicional a ser exibido no modo de manutenção" -#: netbox/netbox/config/parameters.py:44 -#: netbox/templates/core/inc/config_data.html:70 +#: netbox/config/parameters.py:44 templates/core/inc/config_data.html:70 msgid "Top banner" msgstr "Banner superior" -#: netbox/netbox/config/parameters.py:46 +#: netbox/config/parameters.py:46 msgid "Additional content to display at the top of every page" msgstr "Conteúdo adicional a ser exibido na parte superior de cada página" -#: netbox/netbox/config/parameters.py:55 -#: netbox/templates/core/inc/config_data.html:74 +#: netbox/config/parameters.py:55 templates/core/inc/config_data.html:74 msgid "Bottom banner" msgstr "Banner inferior" -#: netbox/netbox/config/parameters.py:57 +#: netbox/config/parameters.py:57 msgid "Additional content to display at the bottom of every page" msgstr "Conteúdo adicional a ser exibido na parte inferior de cada página" -#: netbox/netbox/config/parameters.py:68 +#: netbox/config/parameters.py:68 msgid "Globally unique IP space" msgstr "Espaço de IP globalmente exclusivo" -#: netbox/netbox/config/parameters.py:70 +#: netbox/config/parameters.py:70 msgid "Enforce unique IP addressing within the global table" msgstr "Imponha endereçamento IP único na tabela global" -#: netbox/netbox/config/parameters.py:75 -#: netbox/templates/core/inc/config_data.html:44 +#: netbox/config/parameters.py:75 templates/core/inc/config_data.html:44 msgid "Prefer IPv4" msgstr "Preferir IPv4" -#: netbox/netbox/config/parameters.py:77 +#: netbox/config/parameters.py:77 msgid "Prefer IPv4 addresses over IPv6" msgstr "Preferir endereços IPv4 em vez de IPv6" -#: netbox/netbox/config/parameters.py:84 +#: netbox/config/parameters.py:84 msgid "Rack unit height" msgstr "Altura do rack" -#: netbox/netbox/config/parameters.py:86 +#: netbox/config/parameters.py:86 msgid "Default unit height for rendered rack elevations" msgstr "Altura padrão para elevações de rack renderizados" -#: netbox/netbox/config/parameters.py:91 +#: netbox/config/parameters.py:91 msgid "Rack unit width" msgstr "Largura do rack" -#: netbox/netbox/config/parameters.py:93 +#: netbox/config/parameters.py:93 msgid "Default unit width for rendered rack elevations" msgstr "Largura padrão para elevações de rack renderizados" -#: netbox/netbox/config/parameters.py:100 +#: netbox/config/parameters.py:100 msgid "Powerfeed voltage" msgstr "Tensão da fonte de alimentação" -#: netbox/netbox/config/parameters.py:102 +#: netbox/config/parameters.py:102 msgid "Default voltage for powerfeeds" msgstr "Tensão padrão para fontes de alimentação" -#: netbox/netbox/config/parameters.py:107 +#: netbox/config/parameters.py:107 msgid "Powerfeed amperage" msgstr "Corrente da fonte de alimentação" -#: netbox/netbox/config/parameters.py:109 +#: netbox/config/parameters.py:109 msgid "Default amperage for powerfeeds" msgstr "Corrente padrão para fontes de alimentação" -#: netbox/netbox/config/parameters.py:114 +#: netbox/config/parameters.py:114 msgid "Powerfeed max utilization" msgstr "Utilização máxima da fonte de alimentação" -#: netbox/netbox/config/parameters.py:116 +#: netbox/config/parameters.py:116 msgid "Default max utilization for powerfeeds" msgstr "Padrão máximo de utilização para fontes alimentação" -#: netbox/netbox/config/parameters.py:123 -#: netbox/templates/core/inc/config_data.html:53 +#: netbox/config/parameters.py:123 templates/core/inc/config_data.html:53 msgid "Allowed URL schemes" msgstr "Esquemas de URL permitidos" -#: netbox/netbox/config/parameters.py:128 +#: netbox/config/parameters.py:128 msgid "Permitted schemes for URLs in user-provided content" msgstr "Esquemas permitidos para URLs em conteúdo fornecido pelo usuário" -#: netbox/netbox/config/parameters.py:136 +#: netbox/config/parameters.py:136 msgid "Default page size" msgstr "Tamanho padrão da página" -#: netbox/netbox/config/parameters.py:142 +#: netbox/config/parameters.py:142 msgid "Maximum page size" msgstr "Tamanho máximo da página" -#: netbox/netbox/config/parameters.py:150 -#: netbox/templates/core/inc/config_data.html:96 +#: netbox/config/parameters.py:150 templates/core/inc/config_data.html:96 msgid "Custom validators" msgstr "Validadores personalizados" -#: netbox/netbox/config/parameters.py:152 +#: netbox/config/parameters.py:152 msgid "Custom validation rules (JSON)" msgstr "Regras de validação personalizadas (JSON)" -#: netbox/netbox/config/parameters.py:160 -#: netbox/templates/core/inc/config_data.html:104 +#: netbox/config/parameters.py:160 templates/core/inc/config_data.html:104 msgid "Protection rules" msgstr "Regras de proteção" -#: netbox/netbox/config/parameters.py:162 +#: netbox/config/parameters.py:162 msgid "Deletion protection rules (JSON)" msgstr "Regras de proteção contra exclusão (JSON)" -#: netbox/netbox/config/parameters.py:172 -#: netbox/templates/core/inc/config_data.html:117 +#: netbox/config/parameters.py:172 templates/core/inc/config_data.html:117 msgid "Default preferences" msgstr "Preferências padrão" -#: netbox/netbox/config/parameters.py:174 +#: netbox/config/parameters.py:174 msgid "Default preferences for new users" msgstr "Preferências padrão para novos usuários" -#: netbox/netbox/config/parameters.py:181 -#: netbox/templates/core/inc/config_data.html:129 +#: netbox/config/parameters.py:181 templates/core/inc/config_data.html:129 msgid "Maintenance mode" msgstr "Modo de manutenção" -#: netbox/netbox/config/parameters.py:183 +#: netbox/config/parameters.py:183 msgid "Enable maintenance mode" msgstr "Ativar o modo de manutenção" -#: netbox/netbox/config/parameters.py:188 -#: netbox/templates/core/inc/config_data.html:133 +#: netbox/config/parameters.py:188 templates/core/inc/config_data.html:133 msgid "GraphQL enabled" msgstr "GraphQL habilitado" -#: netbox/netbox/config/parameters.py:190 +#: netbox/config/parameters.py:190 msgid "Enable the GraphQL API" msgstr "Habilite a API do GraphQL" -#: netbox/netbox/config/parameters.py:195 -#: netbox/templates/core/inc/config_data.html:137 +#: netbox/config/parameters.py:195 templates/core/inc/config_data.html:137 msgid "Changelog retention" msgstr "Retenção do changelog" -#: netbox/netbox/config/parameters.py:197 +#: netbox/config/parameters.py:197 msgid "Days to retain changelog history (set to zero for unlimited)" msgstr "" "Dias para reter o histórico do changelog (definido como zero ilimitado)" -#: netbox/netbox/config/parameters.py:202 +#: netbox/config/parameters.py:202 msgid "Job result retention" msgstr "Retenção dos resultados de tarefas" -#: netbox/netbox/config/parameters.py:204 +#: netbox/config/parameters.py:204 msgid "Days to retain job result history (set to zero for unlimited)" msgstr "" "Dias para reter o histórico de resultados das tarefas (definido como zero " "para ilimitado)" -#: netbox/netbox/config/parameters.py:209 -#: netbox/templates/core/inc/config_data.html:145 +#: netbox/config/parameters.py:209 templates/core/inc/config_data.html:145 msgid "Maps URL" msgstr "URL dos mapas" -#: netbox/netbox/config/parameters.py:211 +#: netbox/config/parameters.py:211 msgid "Base URL for mapping geographic locations" msgstr "URL Base para mapear localizações geográficas" -#: netbox/netbox/forms/__init__.py:12 +#: netbox/forms/__init__.py:12 msgid "Partial match" msgstr "Correspondência parcial" -#: netbox/netbox/forms/__init__.py:13 +#: netbox/forms/__init__.py:13 msgid "Exact match" msgstr "Correspondência exata" -#: netbox/netbox/forms/__init__.py:14 +#: netbox/forms/__init__.py:14 msgid "Starts with" msgstr "Começa com" -#: netbox/netbox/forms/__init__.py:15 +#: netbox/forms/__init__.py:15 msgid "Ends with" msgstr "Termina com" -#: netbox/netbox/forms/__init__.py:16 +#: netbox/forms/__init__.py:16 msgid "Regex" msgstr "Expressão Regular" -#: netbox/netbox/forms/__init__.py:34 +#: netbox/forms/__init__.py:34 msgid "Object type(s)" msgstr "Tipo(s) de objeto" -#: netbox/netbox/forms/__init__.py:40 +#: netbox/forms/__init__.py:40 msgid "Lookup" msgstr "Procurar" -#: netbox/netbox/forms/base.py:90 +#: netbox/forms/base.py:90 msgid "" "Tag slugs separated by commas, encased with double quotes (e.g. " "\"tag1,tag2,tag3\")" @@ -10841,431 +10227,415 @@ msgstr "" "Slugs das etiquetas separadas por vírgulas, entre aspas duplas (por exemplo," " “tag1, tag2, tag3\")" -#: netbox/netbox/forms/base.py:120 +#: netbox/forms/base.py:120 msgid "Add tags" msgstr "Adicionar etiquetas" -#: netbox/netbox/forms/base.py:125 +#: netbox/forms/base.py:125 msgid "Remove tags" msgstr "Remover etiquetas" -#: netbox/netbox/forms/mixins.py:38 +#: netbox/forms/mixins.py:38 #, python-brace-format msgid "{class_name} must specify a model class." msgstr "{class_name} deve especificar um modelo de classe." -#: netbox/netbox/models/features.py:280 +#: netbox/models/features.py:280 #, python-brace-format msgid "Unknown field name '{name}' in custom field data." msgstr "Nome de campo desconhecido '{name}' nos dados do campo personalizado." -#: netbox/netbox/models/features.py:286 +#: netbox/models/features.py:286 #, python-brace-format msgid "Invalid value for custom field '{name}': {error}" msgstr "Valor inválido para o campo personalizado '{name}': {error}" -#: netbox/netbox/models/features.py:295 +#: netbox/models/features.py:295 #, python-brace-format msgid "Custom field '{name}' must have a unique value." msgstr "Campo customizado '{name}' deve ser um valor único." -#: netbox/netbox/models/features.py:302 +#: netbox/models/features.py:302 #, python-brace-format msgid "Missing required custom field '{name}'." msgstr "Campo personalizado obrigatório '{name}' ausente." -#: netbox/netbox/models/features.py:462 +#: netbox/models/features.py:462 msgid "Remote data source" msgstr "Fonte de dados remota" -#: netbox/netbox/models/features.py:472 +#: netbox/models/features.py:472 msgid "data path" msgstr "caminho dos dados" -#: netbox/netbox/models/features.py:476 +#: netbox/models/features.py:476 msgid "Path to remote file (relative to data source root)" msgstr "Caminho para o arquivo remoto (em relação à raiz da fonte de dados)" -#: netbox/netbox/models/features.py:479 +#: netbox/models/features.py:479 msgid "auto sync enabled" msgstr "sincronização automática ativada" -#: netbox/netbox/models/features.py:481 +#: netbox/models/features.py:481 msgid "Enable automatic synchronization of data when the data file is updated" msgstr "" "Habilita a sincronização automática de dados quando o arquivo de dados for " "atualizado" -#: netbox/netbox/models/features.py:484 +#: netbox/models/features.py:484 msgid "date synced" msgstr "data sincronizada" -#: netbox/netbox/models/features.py:578 +#: netbox/models/features.py:578 #, python-brace-format msgid "{class_name} must implement a sync_data() method." msgstr "{class_name} deve implementar um método sync_data ()." -#: netbox/netbox/navigation/menu.py:11 +#: netbox/navigation/menu.py:11 msgid "Organization" msgstr "Organização" -#: netbox/netbox/navigation/menu.py:19 +#: netbox/navigation/menu.py:19 msgid "Site Groups" msgstr "Grupos de Sites" -#: netbox/netbox/navigation/menu.py:27 +#: netbox/navigation/menu.py:27 msgid "Tenant Groups" msgstr "Grupos de Inquilinos" -#: netbox/netbox/navigation/menu.py:34 +#: netbox/navigation/menu.py:34 msgid "Contact Groups" msgstr "Grupos de Contatos" -#: netbox/netbox/navigation/menu.py:35 -#: netbox/templates/tenancy/contactrole.html:8 +#: netbox/navigation/menu.py:35 templates/tenancy/contactrole.html:8 msgid "Contact Roles" msgstr "Funções dos Contatos" -#: netbox/netbox/navigation/menu.py:36 +#: netbox/navigation/menu.py:36 msgid "Contact Assignments" msgstr "Atribuições dos Contatos" -#: netbox/netbox/navigation/menu.py:50 +#: netbox/navigation/menu.py:50 msgid "Rack Roles" msgstr "Funções de Rack" -#: netbox/netbox/navigation/menu.py:54 +#: netbox/navigation/menu.py:54 msgid "Elevations" msgstr "Elevações" -#: netbox/netbox/navigation/menu.py:60 netbox/netbox/navigation/menu.py:62 +#: netbox/navigation/menu.py:60 netbox/navigation/menu.py:62 msgid "Rack Types" msgstr "Tipos de Racks" -#: netbox/netbox/navigation/menu.py:76 +#: netbox/navigation/menu.py:76 msgid "Modules" msgstr "Módulos" -#: netbox/netbox/navigation/menu.py:80 netbox/templates/dcim/device.html:160 -#: netbox/templates/dcim/virtualdevicecontext.html:8 +#: netbox/navigation/menu.py:80 templates/dcim/device.html:160 +#: templates/dcim/virtualdevicecontext.html:8 msgid "Virtual Device Contexts" msgstr "Contextos de Dispositivos Virtuais" -#: netbox/netbox/navigation/menu.py:88 +#: netbox/navigation/menu.py:88 msgid "Manufacturers" msgstr "Fabricantes" -#: netbox/netbox/navigation/menu.py:92 +#: netbox/navigation/menu.py:92 msgid "Device Components" msgstr "Componentes de Dispositivos" -#: netbox/netbox/navigation/menu.py:104 -#: netbox/templates/dcim/inventoryitemrole.html:8 +#: netbox/navigation/menu.py:104 templates/dcim/inventoryitemrole.html:8 msgid "Inventory Item Roles" msgstr "Funções dos Itens de Inventário" -#: netbox/netbox/navigation/menu.py:111 netbox/netbox/navigation/menu.py:115 +#: netbox/navigation/menu.py:111 netbox/navigation/menu.py:115 msgid "Connections" msgstr "Conexões" -#: netbox/netbox/navigation/menu.py:117 +#: netbox/navigation/menu.py:117 msgid "Cables" msgstr "Cabos" -#: netbox/netbox/navigation/menu.py:118 +#: netbox/navigation/menu.py:118 msgid "Wireless Links" msgstr "Links Wireless" -#: netbox/netbox/navigation/menu.py:121 +#: netbox/navigation/menu.py:121 msgid "Interface Connections" msgstr "Conexões de Interface" -#: netbox/netbox/navigation/menu.py:126 +#: netbox/navigation/menu.py:126 msgid "Console Connections" msgstr "Conexões de Console" -#: netbox/netbox/navigation/menu.py:131 +#: netbox/navigation/menu.py:131 msgid "Power Connections" msgstr "Conexões de Alimentação" -#: netbox/netbox/navigation/menu.py:147 +#: netbox/navigation/menu.py:147 msgid "Wireless LAN Groups" msgstr "Grupos de Redes Wireless" -#: netbox/netbox/navigation/menu.py:168 +#: netbox/navigation/menu.py:168 msgid "Prefix & VLAN Roles" msgstr "Funções de Prefixo e VLAN" -#: netbox/netbox/navigation/menu.py:174 +#: netbox/navigation/menu.py:174 msgid "ASN Ranges" msgstr "Intervalos de ASNs" -#: netbox/netbox/navigation/menu.py:196 +#: netbox/navigation/menu.py:196 msgid "VLAN Groups" msgstr "Grupos de VLANs" -#: netbox/netbox/navigation/menu.py:203 +#: netbox/navigation/menu.py:203 msgid "Service Templates" msgstr "Modelos de Serviço" -#: netbox/netbox/navigation/menu.py:204 netbox/templates/dcim/device.html:302 -#: netbox/templates/ipam/ipaddress.html:118 -#: netbox/templates/virtualization/virtualmachine.html:154 +#: netbox/navigation/menu.py:204 templates/dcim/device.html:302 +#: templates/ipam/ipaddress.html:118 +#: templates/virtualization/virtualmachine.html:154 msgid "Services" msgstr "Serviços" -#: netbox/netbox/navigation/menu.py:211 +#: netbox/navigation/menu.py:211 msgid "VPN" msgstr "VPN" -#: netbox/netbox/navigation/menu.py:215 netbox/netbox/navigation/menu.py:217 -#: netbox/vpn/tables/tunnels.py:24 +#: netbox/navigation/menu.py:215 netbox/navigation/menu.py:217 +#: vpn/tables/tunnels.py:24 msgid "Tunnels" msgstr "Túneis" -#: netbox/netbox/navigation/menu.py:218 -#: netbox/templates/vpn/tunnelgroup.html:8 +#: netbox/navigation/menu.py:218 templates/vpn/tunnelgroup.html:8 msgid "Tunnel Groups" msgstr "Grupos de Túneis" -#: netbox/netbox/navigation/menu.py:219 +#: netbox/navigation/menu.py:219 msgid "Tunnel Terminations" msgstr "Terminações de Túneis" -#: netbox/netbox/navigation/menu.py:223 netbox/netbox/navigation/menu.py:225 -#: netbox/vpn/models/l2vpn.py:64 +#: netbox/navigation/menu.py:223 netbox/navigation/menu.py:225 +#: vpn/models/l2vpn.py:64 msgid "L2VPNs" msgstr "L2VPNs" -#: netbox/netbox/navigation/menu.py:226 netbox/templates/vpn/l2vpn.html:56 -#: netbox/templates/vpn/tunnel.html:72 netbox/vpn/tables/tunnels.py:58 +#: netbox/navigation/menu.py:226 templates/vpn/l2vpn.html:56 +#: templates/vpn/tunnel.html:72 vpn/tables/tunnels.py:58 msgid "Terminations" msgstr "Terminações" -#: netbox/netbox/navigation/menu.py:232 +#: netbox/navigation/menu.py:232 msgid "IKE Proposals" msgstr "Propostas de IKE" -#: netbox/netbox/navigation/menu.py:233 -#: netbox/templates/vpn/ikeproposal.html:41 +#: netbox/navigation/menu.py:233 templates/vpn/ikeproposal.html:41 msgid "IKE Policies" msgstr "Políticas de IKE" -#: netbox/netbox/navigation/menu.py:234 +#: netbox/navigation/menu.py:234 msgid "IPSec Proposals" msgstr "Propostas de IPsec" -#: netbox/netbox/navigation/menu.py:235 -#: netbox/templates/vpn/ipsecproposal.html:37 +#: netbox/navigation/menu.py:235 templates/vpn/ipsecproposal.html:37 msgid "IPSec Policies" msgstr "Políticas de IPsec" -#: netbox/netbox/navigation/menu.py:236 netbox/templates/vpn/ikepolicy.html:38 -#: netbox/templates/vpn/ipsecpolicy.html:25 +#: netbox/navigation/menu.py:236 templates/vpn/ikepolicy.html:38 +#: templates/vpn/ipsecpolicy.html:25 msgid "IPSec Profiles" msgstr "Perfis de IPsec" -#: netbox/netbox/navigation/menu.py:243 -#: netbox/templates/dcim/device_edit.html:78 +#: netbox/navigation/menu.py:243 templates/dcim/device_edit.html:78 msgid "Virtualization" msgstr "Virtualização" -#: netbox/netbox/navigation/menu.py:251 -#: netbox/templates/virtualization/virtualmachine.html:174 -#: netbox/templates/virtualization/virtualmachine/base.html:32 -#: netbox/templates/virtualization/virtualmachine_list.html:21 -#: netbox/virtualization/tables/virtualmachines.py:104 -#: netbox/virtualization/views.py:388 +#: netbox/navigation/menu.py:251 +#: templates/virtualization/virtualmachine.html:174 +#: templates/virtualization/virtualmachine/base.html:32 +#: templates/virtualization/virtualmachine_list.html:21 +#: virtualization/tables/virtualmachines.py:104 virtualization/views.py:388 msgid "Virtual Disks" msgstr "Discos Virtuais" -#: netbox/netbox/navigation/menu.py:258 +#: netbox/navigation/menu.py:258 msgid "Cluster Types" msgstr "Tipos de Clusters" -#: netbox/netbox/navigation/menu.py:259 +#: netbox/navigation/menu.py:259 msgid "Cluster Groups" msgstr "Grupos de Clusters" -#: netbox/netbox/navigation/menu.py:273 +#: netbox/navigation/menu.py:273 msgid "Circuit Types" msgstr "Tipos de Circuitos" -#: netbox/netbox/navigation/menu.py:274 +#: netbox/navigation/menu.py:274 msgid "Circuit Groups" msgstr "Grupos de Circuitos" -#: netbox/netbox/navigation/menu.py:275 -#: netbox/templates/circuits/circuit.html:66 +#: netbox/navigation/menu.py:275 templates/circuits/circuit.html:66 msgid "Group Assignments" msgstr "Atribuições do Grupo" -#: netbox/netbox/navigation/menu.py:276 +#: netbox/navigation/menu.py:276 msgid "Circuit Terminations" msgstr "Terminações de Circuitos" -#: netbox/netbox/navigation/menu.py:280 netbox/netbox/navigation/menu.py:282 +#: netbox/navigation/menu.py:280 netbox/navigation/menu.py:282 msgid "Providers" msgstr "Provedores" -#: netbox/netbox/navigation/menu.py:283 -#: netbox/templates/circuits/provider.html:51 +#: netbox/navigation/menu.py:283 templates/circuits/provider.html:51 msgid "Provider Accounts" msgstr "Contas de Provedores" -#: netbox/netbox/navigation/menu.py:284 +#: netbox/navigation/menu.py:284 msgid "Provider Networks" msgstr "Redes dos Provedores" -#: netbox/netbox/navigation/menu.py:298 +#: netbox/navigation/menu.py:298 msgid "Power Panels" msgstr "Quadros de Alimentação" -#: netbox/netbox/navigation/menu.py:309 +#: netbox/navigation/menu.py:309 msgid "Configurations" msgstr "Configurações" -#: netbox/netbox/navigation/menu.py:311 +#: netbox/navigation/menu.py:311 msgid "Config Contexts" msgstr "Contexto de Configuração" -#: netbox/netbox/navigation/menu.py:312 +#: netbox/navigation/menu.py:312 msgid "Config Templates" msgstr "Modelos de Configuração" -#: netbox/netbox/navigation/menu.py:319 netbox/netbox/navigation/menu.py:323 +#: netbox/navigation/menu.py:319 netbox/navigation/menu.py:323 msgid "Customization" msgstr "Personalização" -#: netbox/netbox/navigation/menu.py:325 -#: netbox/templates/dcim/device_edit.html:103 -#: netbox/templates/dcim/htmx/cable_edit.html:81 -#: netbox/templates/dcim/virtualchassis_add.html:31 -#: netbox/templates/dcim/virtualchassis_edit.html:40 -#: netbox/templates/generic/bulk_edit.html:76 -#: netbox/templates/htmx/form.html:19 netbox/templates/inc/filter_list.html:30 -#: netbox/templates/inc/panels/custom_fields.html:7 -#: netbox/templates/ipam/ipaddress_bulk_add.html:35 -#: netbox/templates/ipam/vlan_edit.html:59 +#: netbox/navigation/menu.py:325 templates/dcim/device_edit.html:103 +#: templates/dcim/htmx/cable_edit.html:81 +#: templates/dcim/virtualchassis_add.html:31 +#: templates/dcim/virtualchassis_edit.html:40 +#: templates/generic/bulk_edit.html:76 templates/htmx/form.html:19 +#: templates/inc/filter_list.html:30 templates/inc/panels/custom_fields.html:7 +#: templates/ipam/ipaddress_bulk_add.html:35 templates/ipam/vlan_edit.html:59 msgid "Custom Fields" msgstr "Campos Personalizados" -#: netbox/netbox/navigation/menu.py:326 +#: netbox/navigation/menu.py:326 msgid "Custom Field Choices" msgstr "Opções de Campo Personalizadas" -#: netbox/netbox/navigation/menu.py:327 +#: netbox/navigation/menu.py:327 msgid "Custom Links" msgstr "Links Personalizados" -#: netbox/netbox/navigation/menu.py:328 +#: netbox/navigation/menu.py:328 msgid "Export Templates" msgstr "Modelos de Exportação" -#: netbox/netbox/navigation/menu.py:329 +#: netbox/navigation/menu.py:329 msgid "Saved Filters" msgstr "Filtros Salvos" -#: netbox/netbox/navigation/menu.py:331 +#: netbox/navigation/menu.py:331 msgid "Image Attachments" msgstr "Anexos de Imagens" -#: netbox/netbox/navigation/menu.py:349 +#: netbox/navigation/menu.py:349 msgid "Operations" msgstr "Operações" -#: netbox/netbox/navigation/menu.py:353 +#: netbox/navigation/menu.py:353 msgid "Integrations" msgstr "Integrações" -#: netbox/netbox/navigation/menu.py:355 +#: netbox/navigation/menu.py:355 msgid "Data Sources" msgstr "Fontes de dados" -#: netbox/netbox/navigation/menu.py:356 +#: netbox/navigation/menu.py:356 msgid "Event Rules" msgstr "Regras dos eventos" -#: netbox/netbox/navigation/menu.py:357 +#: netbox/navigation/menu.py:357 msgid "Webhooks" msgstr "Webhooks" -#: netbox/netbox/navigation/menu.py:361 netbox/netbox/navigation/menu.py:365 -#: netbox/netbox/views/generic/feature_views.py:153 -#: netbox/templates/extras/report/base.html:37 -#: netbox/templates/extras/script/base.html:36 +#: netbox/navigation/menu.py:361 netbox/navigation/menu.py:365 +#: netbox/views/generic/feature_views.py:153 +#: templates/extras/report/base.html:37 templates/extras/script/base.html:36 msgid "Jobs" msgstr "Tarefas" -#: netbox/netbox/navigation/menu.py:371 +#: netbox/navigation/menu.py:371 msgid "Logging" msgstr "Rastreamento" -#: netbox/netbox/navigation/menu.py:373 +#: netbox/navigation/menu.py:373 msgid "Notification Groups" msgstr "Grupos de Notificação" -#: netbox/netbox/navigation/menu.py:374 +#: netbox/navigation/menu.py:374 msgid "Journal Entries" msgstr "Registros de Eventos" -#: netbox/netbox/navigation/menu.py:375 -#: netbox/templates/core/objectchange.html:9 -#: netbox/templates/core/objectchange_list.html:4 +#: netbox/navigation/menu.py:375 templates/core/objectchange.html:9 +#: templates/core/objectchange_list.html:4 msgid "Change Log" msgstr "Changelog" -#: netbox/netbox/navigation/menu.py:382 netbox/templates/inc/user_menu.html:29 +#: netbox/navigation/menu.py:382 templates/inc/user_menu.html:29 msgid "Admin" msgstr "Administrador" -#: netbox/netbox/navigation/menu.py:430 netbox/templates/account/base.html:27 -#: netbox/templates/inc/user_menu.html:57 +#: netbox/navigation/menu.py:430 templates/account/base.html:27 +#: templates/inc/user_menu.html:57 msgid "API Tokens" msgstr "Tokens de API" -#: netbox/netbox/navigation/menu.py:437 netbox/users/forms/model_forms.py:187 -#: netbox/users/forms/model_forms.py:195 netbox/users/forms/model_forms.py:242 -#: netbox/users/forms/model_forms.py:249 +#: netbox/navigation/menu.py:437 users/forms/model_forms.py:187 +#: users/forms/model_forms.py:195 users/forms/model_forms.py:242 +#: users/forms/model_forms.py:249 msgid "Permissions" msgstr "Permissões" -#: netbox/netbox/navigation/menu.py:445 netbox/netbox/navigation/menu.py:449 -#: netbox/templates/core/system.html:7 +#: netbox/navigation/menu.py:445 netbox/navigation/menu.py:449 +#: templates/core/system.html:7 msgid "System" msgstr "Sistema" -#: netbox/netbox/navigation/menu.py:454 netbox/netbox/navigation/menu.py:502 -#: netbox/templates/500.html:35 netbox/templates/account/preferences.html:22 -#: netbox/templates/core/plugin.html:12 -#: netbox/templates/core/plugin_list.html:7 -#: netbox/templates/core/plugin_list.html:12 +#: netbox/navigation/menu.py:454 netbox/navigation/menu.py:502 +#: templates/500.html:35 templates/account/preferences.html:22 +#: templates/core/plugin.html:13 templates/core/plugin_list.html:7 +#: templates/core/plugin_list.html:12 msgid "Plugins" msgstr "Plugins" -#: netbox/netbox/navigation/menu.py:459 +#: netbox/navigation/menu.py:459 msgid "Configuration History" msgstr "Histórico de Configuração" -#: netbox/netbox/navigation/menu.py:465 netbox/templates/core/rq_task.html:8 -#: netbox/templates/core/rq_task_list.html:22 +#: netbox/navigation/menu.py:465 templates/core/rq_task.html:8 +#: templates/core/rq_task_list.html:22 msgid "Background Tasks" msgstr "Tarefas em Background" -#: netbox/netbox/plugins/navigation.py:47 -#: netbox/netbox/plugins/navigation.py:69 +#: netbox/plugins/navigation.py:47 netbox/plugins/navigation.py:69 msgid "Permissions must be passed as a tuple or list." msgstr "Permissões devem ser passadas como uma tupla ou lista." -#: netbox/netbox/plugins/navigation.py:51 +#: netbox/plugins/navigation.py:51 msgid "Buttons must be passed as a tuple or list." msgstr "Botões devem ser passados como uma tupla ou lista." -#: netbox/netbox/plugins/navigation.py:73 +#: netbox/plugins/navigation.py:73 msgid "Button color must be a choice within ButtonColorChoices." msgstr "Cor do botão deve ser uma opção em ButtonColorChoices." -#: netbox/netbox/plugins/registration.py:25 +#: netbox/plugins/registration.py:25 #, python-brace-format msgid "" "PluginTemplateExtension class {template_extension} was passed as an " @@ -11274,7 +10644,7 @@ msgstr "" "Classe PluginTemplateExtension {template_extension} foi passada como uma " "instância!" -#: netbox/netbox/plugins/registration.py:31 +#: netbox/plugins/registration.py:31 #, python-brace-format msgid "" "{template_extension} is not a subclass of " @@ -11283,194 +10653,193 @@ msgstr "" "{template_extension} não é uma subclasse de " "netbox.plugins.PluginTemplateExtension!" -#: netbox/netbox/plugins/registration.py:51 +#: netbox/plugins/registration.py:51 #, python-brace-format msgid "{item} must be an instance of netbox.plugins.PluginMenuItem" msgstr "{item} deve ser uma instância de netbox.plugins.PluginMenuItem" -#: netbox/netbox/plugins/registration.py:62 +#: netbox/plugins/registration.py:62 #, python-brace-format msgid "{menu_link} must be an instance of netbox.plugins.PluginMenuItem" msgstr "{menu_link} deve ser uma instância de netbox.plugins.PluginMenuItem" -#: netbox/netbox/plugins/registration.py:67 +#: netbox/plugins/registration.py:67 #, python-brace-format msgid "{button} must be an instance of netbox.plugins.PluginMenuButton" msgstr "{button} deve ser uma instância de netbox.plugins.PluginMenuButton" -#: netbox/netbox/plugins/templates.py:37 +#: netbox/plugins/templates.py:37 msgid "extra_context must be a dictionary" msgstr "extra_context deve ser um dicionário" -#: netbox/netbox/preferences.py:19 +#: netbox/preferences.py:19 msgid "HTMX Navigation" msgstr "Navegação HTMX" -#: netbox/netbox/preferences.py:24 +#: netbox/preferences.py:24 msgid "Enable dynamic UI navigation" msgstr "Habilitar navegação dinâmica na interface do usuário" -#: netbox/netbox/preferences.py:26 +#: netbox/preferences.py:26 msgid "Experimental feature" msgstr "Característica experimental" -#: netbox/netbox/preferences.py:29 +#: netbox/preferences.py:29 msgid "Language" msgstr "Idioma" -#: netbox/netbox/preferences.py:34 +#: netbox/preferences.py:34 msgid "Forces UI translation to the specified language" msgstr "Força a tradução da interface do usuário para o idioma especificado" -#: netbox/netbox/preferences.py:36 +#: netbox/preferences.py:36 msgid "Support for translation has been disabled locally" msgstr "Suporte para tradução foi desativado localmente" -#: netbox/netbox/preferences.py:42 +#: netbox/preferences.py:42 msgid "Page length" msgstr "Comprimento da página" -#: netbox/netbox/preferences.py:44 +#: netbox/preferences.py:44 msgid "The default number of objects to display per page" msgstr "O número padrão de objetos a serem exibidos por página" -#: netbox/netbox/preferences.py:48 +#: netbox/preferences.py:48 msgid "Paginator placement" msgstr "Posição do paginador" -#: netbox/netbox/preferences.py:50 +#: netbox/preferences.py:50 msgid "Bottom" msgstr "Parte Inferior" -#: netbox/netbox/preferences.py:51 +#: netbox/preferences.py:51 msgid "Top" msgstr "Topo" -#: netbox/netbox/preferences.py:52 +#: netbox/preferences.py:52 msgid "Both" msgstr "Ambos" -#: netbox/netbox/preferences.py:55 +#: netbox/preferences.py:55 msgid "Where the paginator controls will be displayed relative to a table" msgstr "Onde os controles do paginador serão exibidos em relação a uma tabela" -#: netbox/netbox/preferences.py:60 +#: netbox/preferences.py:60 msgid "Data format" msgstr "Formato de dados" -#: netbox/netbox/preferences.py:65 +#: netbox/preferences.py:65 msgid "The preferred syntax for displaying generic data within the UI" msgstr "" "A sintaxe preferida para exibir dados genéricos na interface do usuário" -#: netbox/netbox/registry.py:14 +#: netbox/registry.py:14 #, python-brace-format msgid "Invalid store: {key}" msgstr "Store inválido: {key}" -#: netbox/netbox/registry.py:17 +#: netbox/registry.py:17 msgid "Cannot add stores to registry after initialization" msgstr "Não é possível adicionar stores ao registro após a inicialização" -#: netbox/netbox/registry.py:20 +#: netbox/registry.py:20 msgid "Cannot delete stores from registry" msgstr "Não é possível excluir stores do registro" -#: netbox/netbox/settings.py:760 +#: netbox/settings.py:760 msgid "Czech" msgstr "Tcheco" -#: netbox/netbox/settings.py:761 +#: netbox/settings.py:761 msgid "Danish" msgstr "Dinamarquês" -#: netbox/netbox/settings.py:762 +#: netbox/settings.py:762 msgid "German" msgstr "Alemão" -#: netbox/netbox/settings.py:763 +#: netbox/settings.py:763 msgid "English" msgstr "Inglês" -#: netbox/netbox/settings.py:764 +#: netbox/settings.py:764 msgid "Spanish" msgstr "Espanhol" -#: netbox/netbox/settings.py:765 +#: netbox/settings.py:765 msgid "French" msgstr "Francês" -#: netbox/netbox/settings.py:766 +#: netbox/settings.py:766 msgid "Italian" msgstr "Italiano" -#: netbox/netbox/settings.py:767 +#: netbox/settings.py:767 msgid "Japanese" msgstr "Japonês" -#: netbox/netbox/settings.py:768 +#: netbox/settings.py:768 msgid "Dutch" msgstr "Holandês" -#: netbox/netbox/settings.py:769 +#: netbox/settings.py:769 msgid "Polish" msgstr "Polonês" -#: netbox/netbox/settings.py:770 +#: netbox/settings.py:770 msgid "Portuguese" msgstr "Português" -#: netbox/netbox/settings.py:771 +#: netbox/settings.py:771 msgid "Russian" msgstr "Russo" -#: netbox/netbox/settings.py:772 +#: netbox/settings.py:772 msgid "Turkish" msgstr "Turco" -#: netbox/netbox/settings.py:773 +#: netbox/settings.py:773 msgid "Ukrainian" msgstr "Ucraniano" -#: netbox/netbox/settings.py:774 +#: netbox/settings.py:774 msgid "Chinese" msgstr "Chinês" -#: netbox/netbox/tables/columns.py:176 +#: netbox/tables/columns.py:176 msgid "Select all" msgstr "Selecionar todos" -#: netbox/netbox/tables/columns.py:189 +#: netbox/tables/columns.py:189 msgid "Toggle all" msgstr "Alternar todos" -#: netbox/netbox/tables/columns.py:300 +#: netbox/tables/columns.py:300 msgid "Toggle Dropdown" msgstr "Alternar Lista Suspensa" -#: netbox/netbox/tables/columns.py:572 netbox/templates/core/job.html:53 +#: netbox/tables/columns.py:572 templates/core/job.html:53 msgid "Error" msgstr "Erro" -#: netbox/netbox/tables/tables.py:58 +#: netbox/tables/tables.py:58 #, python-brace-format msgid "No {model_name} found" msgstr "{model_name} não encontrados" -#: netbox/netbox/tables/tables.py:249 -#: netbox/templates/generic/bulk_import.html:117 +#: netbox/tables/tables.py:249 templates/generic/bulk_import.html:117 msgid "Field" msgstr "Campo" -#: netbox/netbox/tables/tables.py:252 +#: netbox/tables/tables.py:252 msgid "Value" msgstr "Valor" -#: netbox/netbox/tests/dummy_plugin/navigation.py:29 +#: netbox/tests/dummy_plugin/navigation.py:29 msgid "Dummy Plugin" msgstr "Plugin Dummy" -#: netbox/netbox/views/generic/bulk_views.py:114 +#: netbox/views/generic/bulk_views.py:114 #, python-brace-format msgid "" "There was an error rendering the selected export template ({template}): " @@ -11478,57 +10847,57 @@ msgid "" msgstr "" "Houve um erro ao renderizar o modelo de exportação ({template}): {error}" -#: netbox/netbox/views/generic/bulk_views.py:416 +#: netbox/views/generic/bulk_views.py:416 #, python-brace-format msgid "Row {i}: Object with ID {id} does not exist" msgstr "Linha {i}: Objeto com ID {id} não existe" -#: netbox/netbox/views/generic/bulk_views.py:699 -#: netbox/netbox/views/generic/bulk_views.py:897 -#: netbox/netbox/views/generic/bulk_views.py:945 +#: netbox/views/generic/bulk_views.py:702 +#: netbox/views/generic/bulk_views.py:900 +#: netbox/views/generic/bulk_views.py:948 #, python-brace-format msgid "No {object_type} were selected." msgstr "Nenhum {object_type} foi/foram selecionado(s)." -#: netbox/netbox/views/generic/bulk_views.py:779 +#: netbox/views/generic/bulk_views.py:782 #, python-brace-format msgid "Renamed {count} {object_type}" msgstr "Renomeado(s) {count} {object_type}" -#: netbox/netbox/views/generic/bulk_views.py:875 +#: netbox/views/generic/bulk_views.py:878 #, python-brace-format msgid "Deleted {count} {object_type}" msgstr "Excluído(s) {count} {object_type}" -#: netbox/netbox/views/generic/feature_views.py:40 +#: netbox/views/generic/feature_views.py:40 msgid "Changelog" msgstr "Changelog" -#: netbox/netbox/views/generic/feature_views.py:93 +#: netbox/views/generic/feature_views.py:93 msgid "Journal" msgstr "Registro" -#: netbox/netbox/views/generic/feature_views.py:207 +#: netbox/views/generic/feature_views.py:207 msgid "Unable to synchronize data: No data file set." msgstr "" "Não é possível sincronizar os dados: Nenhum arquivo de dados definido." -#: netbox/netbox/views/generic/feature_views.py:211 +#: netbox/views/generic/feature_views.py:211 #, python-brace-format msgid "Synchronized data for {object_type} {object}." msgstr "Dados sincronizados para {object_type} {object}." -#: netbox/netbox/views/generic/feature_views.py:236 +#: netbox/views/generic/feature_views.py:236 #, python-brace-format msgid "Synced {count} {object_type}" msgstr "Sincronizado(s) {count} {object_type}" -#: netbox/netbox/views/generic/object_views.py:108 +#: netbox/views/generic/object_views.py:108 #, python-brace-format msgid "{class_name} must implement get_children()" msgstr "{class_name} deve implementar get_children ()" -#: netbox/netbox/views/misc.py:44 +#: netbox/views/misc.py:44 msgid "" "There was an error loading the dashboard configuration. A default dashboard " "is in use." @@ -11536,749 +10905,704 @@ msgstr "" "Erro ao carregar a configuração do dashboard. Um dashboard padrão está em " "uso." -#: netbox/templates/403.html:4 +#: templates/403.html:4 msgid "Access Denied" msgstr "Acesso Negado" -#: netbox/templates/403.html:9 +#: templates/403.html:9 msgid "You do not have permission to access this page" msgstr "Você não tem permissão para acessar esta página" -#: netbox/templates/404.html:4 +#: templates/404.html:4 msgid "Page Not Found" msgstr "Página Não Encontrada" -#: netbox/templates/404.html:9 +#: templates/404.html:9 msgid "The requested page does not exist" msgstr "A página solicitada não existe" -#: netbox/templates/500.html:7 netbox/templates/500.html:18 +#: templates/500.html:7 templates/500.html:18 msgid "Server Error" msgstr "Erro no Servidor" -#: netbox/templates/500.html:23 +#: templates/500.html:23 msgid "There was a problem with your request. Please contact an administrator" msgstr "" "Houve um problema com sua solicitação. Entre em contato com o administrador" -#: netbox/templates/500.html:28 +#: templates/500.html:28 msgid "The complete exception is provided below" msgstr "A exceção completa é fornecida abaixo" -#: netbox/templates/500.html:33 netbox/templates/core/system.html:40 +#: templates/500.html:33 templates/core/system.html:40 msgid "Python version" msgstr "Versão do Python" -#: netbox/templates/500.html:34 +#: templates/500.html:34 msgid "NetBox version" msgstr "Versão do NetBox" -#: netbox/templates/500.html:36 +#: templates/500.html:36 msgid "None installed" msgstr "Nenhum instalado" -#: netbox/templates/500.html:39 +#: templates/500.html:39 msgid "If further assistance is required, please post to the" msgstr "Se necessitar de mais ajuda, por favor poste no" -#: netbox/templates/500.html:39 +#: templates/500.html:39 msgid "NetBox discussion forum" msgstr "Fórum de discussão do NetBox" -#: netbox/templates/500.html:39 +#: templates/500.html:39 msgid "on GitHub" msgstr "no GitHub" -#: netbox/templates/500.html:42 netbox/templates/base/40x.html:17 +#: templates/500.html:42 templates/base/40x.html:17 msgid "Home Page" msgstr "Página Inicial" -#: netbox/templates/account/base.html:7 netbox/templates/inc/user_menu.html:45 -#: netbox/vpn/forms/bulk_edit.py:255 netbox/vpn/forms/filtersets.py:189 -#: netbox/vpn/forms/model_forms.py:379 +#: templates/account/base.html:7 templates/inc/user_menu.html:45 +#: vpn/forms/bulk_edit.py:255 vpn/forms/filtersets.py:189 +#: vpn/forms/model_forms.py:379 msgid "Profile" msgstr "Perfil" -#: netbox/templates/account/base.html:13 -#: netbox/templates/account/notifications.html:7 -#: netbox/templates/inc/user_menu.html:15 +#: templates/account/base.html:13 templates/account/notifications.html:7 +#: templates/inc/user_menu.html:15 msgid "Notifications" msgstr "Notificações" -#: netbox/templates/account/base.html:16 -#: netbox/templates/account/subscriptions.html:7 -#: netbox/templates/inc/user_menu.html:51 +#: templates/account/base.html:16 templates/account/subscriptions.html:7 +#: templates/inc/user_menu.html:51 msgid "Subscriptions" msgstr "Subscrições" -#: netbox/templates/account/base.html:19 -#: netbox/templates/inc/user_menu.html:54 +#: templates/account/base.html:19 templates/inc/user_menu.html:54 msgid "Preferences" msgstr "Preferências" -#: netbox/templates/account/password.html:5 +#: templates/account/password.html:5 msgid "Change Password" msgstr "Alterar senha" -#: netbox/templates/account/password.html:19 -#: netbox/templates/account/preferences.html:77 -#: netbox/templates/core/configrevision_restore.html:63 -#: netbox/templates/dcim/devicebay_populate.html:34 -#: netbox/templates/dcim/virtualchassis_add_member.html:26 -#: netbox/templates/dcim/virtualchassis_edit.html:103 -#: netbox/templates/extras/object_journal.html:26 -#: netbox/templates/extras/script.html:38 -#: netbox/templates/generic/bulk_add_component.html:67 -#: netbox/templates/generic/bulk_delete.html:65 -#: netbox/templates/generic/bulk_edit.html:106 -#: netbox/templates/generic/bulk_import.html:56 -#: netbox/templates/generic/bulk_import.html:78 -#: netbox/templates/generic/bulk_import.html:100 -#: netbox/templates/generic/bulk_remove.html:62 -#: netbox/templates/generic/bulk_rename.html:63 -#: netbox/templates/generic/confirmation_form.html:19 -#: netbox/templates/generic/object_edit.html:72 -#: netbox/templates/htmx/delete_form.html:53 -#: netbox/templates/htmx/delete_form.html:55 -#: netbox/templates/ipam/ipaddress_assign.html:28 -#: netbox/templates/virtualization/cluster_add_devices.html:30 +#: templates/account/password.html:19 templates/account/preferences.html:77 +#: templates/core/configrevision_restore.html:63 +#: templates/dcim/devicebay_populate.html:34 +#: templates/dcim/virtualchassis_add_member.html:26 +#: templates/dcim/virtualchassis_edit.html:103 +#: templates/extras/object_journal.html:26 templates/extras/script.html:38 +#: templates/generic/bulk_add_component.html:67 +#: templates/generic/bulk_delete.html:65 templates/generic/bulk_edit.html:106 +#: templates/generic/bulk_import.html:56 templates/generic/bulk_import.html:78 +#: templates/generic/bulk_import.html:100 +#: templates/generic/bulk_remove.html:62 templates/generic/bulk_rename.html:63 +#: templates/generic/confirmation_form.html:19 +#: templates/generic/object_edit.html:72 templates/htmx/delete_form.html:53 +#: templates/htmx/delete_form.html:55 templates/ipam/ipaddress_assign.html:28 +#: templates/virtualization/cluster_add_devices.html:30 msgid "Cancel" msgstr "Cancelar" -#: netbox/templates/account/password.html:20 -#: netbox/templates/account/preferences.html:78 -#: netbox/templates/dcim/devicebay_populate.html:35 -#: netbox/templates/dcim/virtualchassis_add_member.html:28 -#: netbox/templates/dcim/virtualchassis_edit.html:105 -#: netbox/templates/extras/dashboard/widget_add.html:26 -#: netbox/templates/extras/dashboard/widget_config.html:19 -#: netbox/templates/extras/object_journal.html:27 -#: netbox/templates/generic/object_edit.html:75 -#: netbox/utilities/templates/helpers/applied_filters.html:16 -#: netbox/utilities/templates/helpers/table_config_form.html:40 +#: templates/account/password.html:20 templates/account/preferences.html:78 +#: templates/dcim/devicebay_populate.html:35 +#: templates/dcim/virtualchassis_add_member.html:28 +#: templates/dcim/virtualchassis_edit.html:105 +#: templates/extras/dashboard/widget_add.html:26 +#: templates/extras/dashboard/widget_config.html:19 +#: templates/extras/object_journal.html:27 +#: templates/generic/object_edit.html:75 +#: utilities/templates/helpers/applied_filters.html:16 +#: utilities/templates/helpers/table_config_form.html:40 msgid "Save" msgstr "Salvar" -#: netbox/templates/account/preferences.html:34 +#: templates/account/preferences.html:34 msgid "Table Configurations" msgstr "Configurações de Tabelas" -#: netbox/templates/account/preferences.html:39 +#: templates/account/preferences.html:39 msgid "Clear table preferences" msgstr "Limpar preferências de tabela" -#: netbox/templates/account/preferences.html:47 +#: templates/account/preferences.html:47 msgid "Toggle All" msgstr "Alternar Tudo" -#: netbox/templates/account/preferences.html:49 +#: templates/account/preferences.html:49 msgid "Table" msgstr "Tabela" -#: netbox/templates/account/preferences.html:50 +#: templates/account/preferences.html:50 msgid "Ordering" msgstr "Ordenação" -#: netbox/templates/account/preferences.html:51 +#: templates/account/preferences.html:51 msgid "Columns" msgstr "Colunas" -#: netbox/templates/account/preferences.html:71 -#: netbox/templates/dcim/cable_trace.html:113 -#: netbox/templates/extras/object_configcontext.html:43 +#: templates/account/preferences.html:71 templates/dcim/cable_trace.html:113 +#: templates/extras/object_configcontext.html:43 msgid "None found" msgstr "Nenhum encontrado" -#: netbox/templates/account/profile.html:6 +#: templates/account/profile.html:6 msgid "User Profile" msgstr "Perfil do Usuário" -#: netbox/templates/account/profile.html:12 +#: templates/account/profile.html:12 msgid "Account Details" msgstr "Detalhes da Conta" -#: netbox/templates/account/profile.html:29 -#: netbox/templates/tenancy/contact.html:43 -#: netbox/templates/users/user.html:25 netbox/tenancy/forms/bulk_edit.py:109 +#: templates/account/profile.html:29 templates/tenancy/contact.html:43 +#: templates/users/user.html:25 tenancy/forms/bulk_edit.py:109 msgid "Email" msgstr "E-mail" -#: netbox/templates/account/profile.html:33 -#: netbox/templates/users/user.html:29 +#: templates/account/profile.html:33 templates/users/user.html:29 msgid "Account Created" msgstr "Conta Criada" -#: netbox/templates/account/profile.html:37 -#: netbox/templates/users/user.html:33 +#: templates/account/profile.html:37 templates/users/user.html:33 msgid "Last Login" msgstr "Último Login" -#: netbox/templates/account/profile.html:41 -#: netbox/templates/users/user.html:45 +#: templates/account/profile.html:41 templates/users/user.html:45 msgid "Superuser" msgstr "Superusuário" -#: netbox/templates/account/profile.html:45 -#: netbox/templates/inc/user_menu.html:31 netbox/templates/users/user.html:41 +#: templates/account/profile.html:45 templates/inc/user_menu.html:31 +#: templates/users/user.html:41 msgid "Staff" msgstr "Staff" -#: netbox/templates/account/profile.html:53 -#: netbox/templates/users/objectpermission.html:82 -#: netbox/templates/users/user.html:53 +#: templates/account/profile.html:53 templates/users/objectpermission.html:82 +#: templates/users/user.html:53 msgid "Assigned Groups" msgstr "Grupos Associados" -#: netbox/templates/account/profile.html:58 -#: netbox/templates/circuits/circuit_terminations_swap.html:18 -#: netbox/templates/circuits/circuit_terminations_swap.html:26 -#: netbox/templates/circuits/circuittermination.html:34 -#: netbox/templates/circuits/inc/circuit_termination.html:68 -#: netbox/templates/core/objectchange.html:124 -#: netbox/templates/core/objectchange.html:142 -#: netbox/templates/dcim/devicebay.html:59 -#: netbox/templates/dcim/inc/panels/inventory_items.html:45 -#: netbox/templates/dcim/interface.html:296 -#: netbox/templates/dcim/modulebay.html:80 -#: netbox/templates/extras/configcontext.html:70 -#: netbox/templates/extras/eventrule.html:66 -#: netbox/templates/extras/htmx/script_result.html:60 -#: netbox/templates/extras/webhook.html:65 -#: netbox/templates/extras/webhook.html:75 -#: netbox/templates/inc/panel_table.html:13 -#: netbox/templates/inc/panels/comments.html:10 -#: netbox/templates/ipam/inc/panels/fhrp_groups.html:56 -#: netbox/templates/users/group.html:34 netbox/templates/users/group.html:44 -#: netbox/templates/users/objectpermission.html:77 -#: netbox/templates/users/objectpermission.html:87 -#: netbox/templates/users/user.html:58 netbox/templates/users/user.html:68 +#: templates/account/profile.html:58 +#: templates/circuits/circuit_terminations_swap.html:18 +#: templates/circuits/circuit_terminations_swap.html:26 +#: templates/circuits/circuittermination.html:34 +#: templates/circuits/inc/circuit_termination.html:68 +#: templates/core/objectchange.html:124 templates/core/objectchange.html:142 +#: templates/dcim/devicebay.html:59 +#: templates/dcim/inc/panels/inventory_items.html:45 +#: templates/dcim/interface.html:296 templates/dcim/modulebay.html:80 +#: templates/extras/configcontext.html:70 templates/extras/eventrule.html:66 +#: templates/extras/htmx/script_result.html:60 +#: templates/extras/webhook.html:65 templates/extras/webhook.html:75 +#: templates/inc/panel_table.html:13 templates/inc/panels/comments.html:10 +#: templates/ipam/inc/panels/fhrp_groups.html:56 templates/users/group.html:34 +#: templates/users/group.html:44 templates/users/objectpermission.html:77 +#: templates/users/objectpermission.html:87 templates/users/user.html:58 +#: templates/users/user.html:68 msgid "None" msgstr "Nenhum" -#: netbox/templates/account/profile.html:68 -#: netbox/templates/users/user.html:78 +#: templates/account/profile.html:68 templates/users/user.html:78 msgid "Recent Activity" msgstr "Atividade Recente" -#: netbox/templates/account/token.html:8 -#: netbox/templates/account/token_list.html:6 +#: templates/account/token.html:8 templates/account/token_list.html:6 msgid "My API Tokens" msgstr "Meus Tokens de API" -#: netbox/templates/account/token.html:11 -#: netbox/templates/account/token.html:19 netbox/templates/users/token.html:6 -#: netbox/templates/users/token.html:14 netbox/users/forms/filtersets.py:120 +#: templates/account/token.html:11 templates/account/token.html:19 +#: templates/users/token.html:6 templates/users/token.html:14 +#: users/forms/filtersets.py:120 msgid "Token" msgstr "Token" -#: netbox/templates/account/token.html:39 netbox/templates/users/token.html:31 -#: netbox/users/forms/bulk_edit.py:107 +#: templates/account/token.html:39 templates/users/token.html:31 +#: users/forms/bulk_edit.py:107 msgid "Write enabled" msgstr "Permissão de escrita" -#: netbox/templates/account/token.html:51 netbox/templates/users/token.html:43 +#: templates/account/token.html:51 templates/users/token.html:43 msgid "Last used" msgstr "Usado pela última vez" -#: netbox/templates/account/token_list.html:12 +#: templates/account/token_list.html:12 msgid "Add a Token" msgstr "Adicionar um Token" -#: netbox/templates/base/base.html:22 netbox/templates/home.html:27 +#: templates/base/base.html:22 templates/home.html:27 msgid "Home" msgstr "Início" -#: netbox/templates/base/layout.html:25 +#: templates/base/layout.html:25 msgid "NetBox Motif" msgstr "Tema do NetBox" -#: netbox/templates/base/layout.html:38 netbox/templates/base/layout.html:39 -#: netbox/templates/login.html:14 netbox/templates/login.html:15 +#: templates/base/layout.html:38 templates/base/layout.html:39 +#: templates/login.html:14 templates/login.html:15 msgid "NetBox Logo" msgstr "Logotipo do NetBox" -#: netbox/templates/base/layout.html:150 netbox/templates/base/layout.html:151 +#: templates/base/layout.html:150 templates/base/layout.html:151 msgid "Docs" msgstr "Documentos" -#: netbox/templates/base/layout.html:156 netbox/templates/base/layout.html:157 -#: netbox/templates/rest_framework/api.html:10 +#: templates/base/layout.html:156 templates/base/layout.html:157 +#: templates/rest_framework/api.html:10 msgid "REST API" msgstr "API REST" -#: netbox/templates/base/layout.html:162 netbox/templates/base/layout.html:163 +#: templates/base/layout.html:162 templates/base/layout.html:163 msgid "REST API documentation" msgstr "Documentação da API REST" -#: netbox/templates/base/layout.html:169 netbox/templates/base/layout.html:170 +#: templates/base/layout.html:169 templates/base/layout.html:170 msgid "GraphQL API" msgstr "API do GraphQL" -#: netbox/templates/base/layout.html:185 netbox/templates/base/layout.html:186 +#: templates/base/layout.html:185 templates/base/layout.html:186 msgid "NetBox Labs Support" msgstr "Suporte NetBox Labs " -#: netbox/templates/base/layout.html:194 netbox/templates/base/layout.html:195 +#: templates/base/layout.html:194 templates/base/layout.html:195 msgid "Source Code" msgstr "Código-Fonte" -#: netbox/templates/base/layout.html:200 netbox/templates/base/layout.html:201 +#: templates/base/layout.html:200 templates/base/layout.html:201 msgid "Community" msgstr "Comunidade" -#: netbox/templates/circuits/circuit.html:47 +#: templates/circuits/circuit.html:47 msgid "Install Date" msgstr "Data de Ativação" -#: netbox/templates/circuits/circuit.html:51 +#: templates/circuits/circuit.html:51 msgid "Termination Date" msgstr "Data de Desativação" -#: netbox/templates/circuits/circuit.html:70 -#: netbox/templates/ipam/inc/panels/fhrp_groups.html:15 +#: templates/circuits/circuit.html:70 +#: templates/ipam/inc/panels/fhrp_groups.html:15 msgid "Assign Group" msgstr "Atribuir Grupo" -#: netbox/templates/circuits/circuit_terminations_swap.html:4 +#: templates/circuits/circuit_terminations_swap.html:4 msgid "Swap Circuit Terminations" msgstr "Troca das Terminações dos Circuitos" -#: netbox/templates/circuits/circuit_terminations_swap.html:8 +#: templates/circuits/circuit_terminations_swap.html:8 #, python-format msgid "Swap these terminations for circuit %(circuit)s?" msgstr "Trocar as terminações do circuito %(circuit)s?" -#: netbox/templates/circuits/circuit_terminations_swap.html:14 +#: templates/circuits/circuit_terminations_swap.html:14 msgid "A side" msgstr "Lado A" -#: netbox/templates/circuits/circuit_terminations_swap.html:22 +#: templates/circuits/circuit_terminations_swap.html:22 msgid "Z side" msgstr "Lado Z" -#: netbox/templates/circuits/circuitgroup.html:16 +#: templates/circuits/circuitgroup.html:16 msgid "Assign Circuit" msgstr "Atribuir Circuito" -#: netbox/templates/circuits/circuitgroupassignment.html:19 +#: templates/circuits/circuitgroupassignment.html:19 msgid "Circuit Group Assignment" msgstr "Atribuição do Grupo de Circuitos" -#: netbox/templates/circuits/circuittype.html:10 +#: templates/circuits/circuittype.html:10 msgid "Add Circuit" msgstr "Adicionar Circuito" -#: netbox/templates/circuits/circuittype.html:19 +#: templates/circuits/circuittype.html:19 msgid "Circuit Type" msgstr "Tipo de circuito" -#: netbox/templates/circuits/inc/circuit_termination.html:10 -#: netbox/templates/dcim/devicetype/component_templates.html:33 -#: netbox/templates/dcim/manufacturer.html:11 -#: netbox/templates/dcim/moduletype/component_templates.html:29 -#: netbox/templates/generic/bulk_add_component.html:22 -#: netbox/templates/users/objectpermission.html:38 -#: netbox/utilities/templates/buttons/add.html:4 -#: netbox/utilities/templates/helpers/table_config_form.html:20 +#: templates/circuits/inc/circuit_termination.html:10 +#: templates/dcim/manufacturer.html:11 +#: templates/generic/bulk_add_component.html:22 +#: templates/users/objectpermission.html:38 +#: utilities/templates/buttons/add.html:4 +#: utilities/templates/helpers/table_config_form.html:20 msgid "Add" msgstr "Adicionar" -#: netbox/templates/circuits/inc/circuit_termination.html:15 -#: netbox/templates/circuits/inc/circuit_termination_fields.html:36 -#: netbox/templates/dcim/inc/panels/inventory_items.html:32 -#: netbox/templates/dcim/moduletype/component_templates.html:20 -#: netbox/templates/dcim/powerpanel.html:56 -#: netbox/templates/extras/script_list.html:30 -#: netbox/templates/generic/object_edit.html:47 -#: netbox/templates/ipam/inc/ipaddress_edit_header.html:7 -#: netbox/templates/ipam/inc/panels/fhrp_groups.html:43 -#: netbox/utilities/templates/buttons/edit.html:3 +#: templates/circuits/inc/circuit_termination.html:15 +#: templates/circuits/inc/circuit_termination_fields.html:36 +#: templates/dcim/inc/panels/inventory_items.html:32 +#: templates/dcim/powerpanel.html:56 templates/extras/script_list.html:30 +#: templates/generic/object_edit.html:47 +#: templates/ipam/inc/ipaddress_edit_header.html:7 +#: templates/ipam/inc/panels/fhrp_groups.html:43 +#: utilities/templates/buttons/edit.html:3 msgid "Edit" msgstr "Editar" -#: netbox/templates/circuits/inc/circuit_termination.html:18 +#: templates/circuits/inc/circuit_termination.html:18 msgid "Swap" msgstr "Trocar" -#: netbox/templates/circuits/inc/circuit_termination_fields.html:19 -#: netbox/templates/dcim/consoleport.html:59 -#: netbox/templates/dcim/consoleserverport.html:60 -#: netbox/templates/dcim/powerfeed.html:114 +#: templates/circuits/inc/circuit_termination_fields.html:19 +#: templates/dcim/consoleport.html:59 templates/dcim/consoleserverport.html:60 +#: templates/dcim/powerfeed.html:114 msgid "Marked as connected" msgstr "Marcado como conectado" -#: netbox/templates/circuits/inc/circuit_termination_fields.html:21 +#: templates/circuits/inc/circuit_termination_fields.html:21 msgid "to" msgstr "para" -#: netbox/templates/circuits/inc/circuit_termination_fields.html:31 -#: netbox/templates/circuits/inc/circuit_termination_fields.html:32 -#: netbox/templates/dcim/frontport.html:80 -#: netbox/templates/dcim/inc/connection_endpoints.html:7 -#: netbox/templates/dcim/interface.html:154 -#: netbox/templates/dcim/rearport.html:76 +#: templates/circuits/inc/circuit_termination_fields.html:31 +#: templates/circuits/inc/circuit_termination_fields.html:32 +#: templates/dcim/frontport.html:80 +#: templates/dcim/inc/connection_endpoints.html:7 +#: templates/dcim/interface.html:154 templates/dcim/rearport.html:76 msgid "Trace" msgstr "Rastrear" -#: netbox/templates/circuits/inc/circuit_termination_fields.html:35 +#: templates/circuits/inc/circuit_termination_fields.html:35 msgid "Edit cable" msgstr "Editar cabo" -#: netbox/templates/circuits/inc/circuit_termination_fields.html:40 +#: templates/circuits/inc/circuit_termination_fields.html:40 msgid "Remove cable" msgstr "Remover cabo" -#: netbox/templates/circuits/inc/circuit_termination_fields.html:41 -#: netbox/templates/dcim/bulk_disconnect.html:5 -#: netbox/templates/dcim/device/consoleports.html:12 -#: netbox/templates/dcim/device/consoleserverports.html:12 -#: netbox/templates/dcim/device/frontports.html:12 -#: netbox/templates/dcim/device/interfaces.html:16 -#: netbox/templates/dcim/device/poweroutlets.html:12 -#: netbox/templates/dcim/device/powerports.html:12 -#: netbox/templates/dcim/device/rearports.html:12 -#: netbox/templates/dcim/powerpanel.html:61 +#: templates/circuits/inc/circuit_termination_fields.html:41 +#: templates/dcim/bulk_disconnect.html:5 +#: templates/dcim/device/consoleports.html:12 +#: templates/dcim/device/consoleserverports.html:12 +#: templates/dcim/device/frontports.html:12 +#: templates/dcim/device/interfaces.html:16 +#: templates/dcim/device/poweroutlets.html:12 +#: templates/dcim/device/powerports.html:12 +#: templates/dcim/device/rearports.html:12 templates/dcim/powerpanel.html:61 msgid "Disconnect" msgstr "Desconectar" -#: netbox/templates/circuits/inc/circuit_termination_fields.html:48 -#: netbox/templates/dcim/consoleport.html:69 -#: netbox/templates/dcim/consoleserverport.html:70 -#: netbox/templates/dcim/frontport.html:102 -#: netbox/templates/dcim/interface.html:180 -#: netbox/templates/dcim/interface.html:200 -#: netbox/templates/dcim/powerfeed.html:127 -#: netbox/templates/dcim/poweroutlet.html:71 -#: netbox/templates/dcim/poweroutlet.html:72 -#: netbox/templates/dcim/powerport.html:73 -#: netbox/templates/dcim/rearport.html:98 +#: templates/circuits/inc/circuit_termination_fields.html:48 +#: templates/dcim/consoleport.html:69 templates/dcim/consoleserverport.html:70 +#: templates/dcim/frontport.html:102 templates/dcim/interface.html:180 +#: templates/dcim/interface.html:200 templates/dcim/powerfeed.html:127 +#: templates/dcim/poweroutlet.html:71 templates/dcim/poweroutlet.html:72 +#: templates/dcim/powerport.html:73 templates/dcim/rearport.html:98 msgid "Connect" msgstr "Conectar" -#: netbox/templates/circuits/inc/circuit_termination_fields.html:70 +#: templates/circuits/inc/circuit_termination_fields.html:70 msgid "Downstream" msgstr "Downstream" -#: netbox/templates/circuits/inc/circuit_termination_fields.html:71 +#: templates/circuits/inc/circuit_termination_fields.html:71 msgid "Upstream" msgstr "Upstream" -#: netbox/templates/circuits/inc/circuit_termination_fields.html:80 +#: templates/circuits/inc/circuit_termination_fields.html:80 msgid "Cross-Connect" msgstr "Conexão Cruzada" -#: netbox/templates/circuits/inc/circuit_termination_fields.html:84 +#: templates/circuits/inc/circuit_termination_fields.html:84 msgid "Patch Panel/Port" msgstr "Patch Panel/Porta" -#: netbox/templates/circuits/provider.html:11 +#: templates/circuits/provider.html:11 msgid "Add circuit" msgstr "Adicionar circuito" -#: netbox/templates/circuits/provideraccount.html:17 +#: templates/circuits/provideraccount.html:17 msgid "Provider Account" msgstr "Conta de Provedor" -#: netbox/templates/core/configrevision.html:35 +#: templates/core/configrevision.html:35 msgid "Configuration Data" msgstr "Dados de Configuração" -#: netbox/templates/core/configrevision.html:40 +#: templates/core/configrevision.html:40 msgid "Comment" msgstr "Comentário" -#: netbox/templates/core/configrevision_restore.html:8 -#: netbox/templates/core/configrevision_restore.html:25 -#: netbox/templates/core/configrevision_restore.html:64 +#: templates/core/configrevision_restore.html:8 +#: templates/core/configrevision_restore.html:25 +#: templates/core/configrevision_restore.html:64 msgid "Restore" msgstr "Restaurar" -#: netbox/templates/core/configrevision_restore.html:36 +#: templates/core/configrevision_restore.html:36 msgid "Parameter" msgstr "Parâmetro" -#: netbox/templates/core/configrevision_restore.html:37 +#: templates/core/configrevision_restore.html:37 msgid "Current Value" msgstr "Valor Atual" -#: netbox/templates/core/configrevision_restore.html:38 +#: templates/core/configrevision_restore.html:38 msgid "New Value" msgstr "Novo Valor" -#: netbox/templates/core/configrevision_restore.html:50 +#: templates/core/configrevision_restore.html:50 msgid "Changed" msgstr "Alterado" -#: netbox/templates/core/datafile.html:42 -#: netbox/templates/ipam/iprange.html:25 -#: netbox/templates/virtualization/virtualdisk.html:29 -#: netbox/virtualization/tables/virtualmachines.py:198 +#: templates/core/datafile.html:42 templates/ipam/iprange.html:25 +#: templates/virtualization/virtualdisk.html:29 +#: virtualization/tables/virtualmachines.py:198 msgid "Size" msgstr "Tamanho" -#: netbox/templates/core/datafile.html:43 +#: templates/core/datafile.html:43 msgid "bytes" msgstr "bytes" -#: netbox/templates/core/datafile.html:46 +#: templates/core/datafile.html:46 msgid "SHA256 Hash" msgstr "Hash SHA256" -#: netbox/templates/core/datasource.html:14 -#: netbox/templates/core/datasource.html:20 -#: netbox/utilities/templates/buttons/sync.html:5 +#: templates/core/datasource.html:14 templates/core/datasource.html:20 +#: utilities/templates/buttons/sync.html:5 msgid "Sync" msgstr "Sincronizar" -#: netbox/templates/core/datasource.html:50 +#: templates/core/datasource.html:50 msgid "Last synced" msgstr "Última sincronização" -#: netbox/templates/core/datasource.html:84 +#: templates/core/datasource.html:84 msgid "Backend" msgstr "Backend" -#: netbox/templates/core/datasource.html:99 +#: templates/core/datasource.html:99 msgid "No parameters defined" msgstr "Nenhum parâmetro definido" -#: netbox/templates/core/datasource.html:114 +#: templates/core/datasource.html:114 msgid "Files" msgstr "Arquivos" -#: netbox/templates/core/inc/config_data.html:7 +#: templates/core/inc/config_data.html:7 msgid "Rack elevations" msgstr "Elevações de rack" -#: netbox/templates/core/inc/config_data.html:10 +#: templates/core/inc/config_data.html:10 msgid "Default unit height" msgstr "Altura padrão" -#: netbox/templates/core/inc/config_data.html:14 +#: templates/core/inc/config_data.html:14 msgid "Default unit width" msgstr "Largura padrão" -#: netbox/templates/core/inc/config_data.html:20 +#: templates/core/inc/config_data.html:20 msgid "Power feeds" msgstr "Fontes de Alimentação" -#: netbox/templates/core/inc/config_data.html:23 +#: templates/core/inc/config_data.html:23 msgid "Default voltage" msgstr "Tensão padrão" -#: netbox/templates/core/inc/config_data.html:27 +#: templates/core/inc/config_data.html:27 msgid "Default amperage" msgstr "Corrente padrão" -#: netbox/templates/core/inc/config_data.html:31 +#: templates/core/inc/config_data.html:31 msgid "Default max utilization" msgstr "Utilização máxima padrão" -#: netbox/templates/core/inc/config_data.html:40 +#: templates/core/inc/config_data.html:40 msgid "Enforce global unique" msgstr "Impor unicidade global" -#: netbox/templates/core/inc/config_data.html:83 +#: templates/core/inc/config_data.html:83 msgid "Paginate count" msgstr "Contagem de paginações" -#: netbox/templates/core/inc/config_data.html:87 +#: templates/core/inc/config_data.html:87 msgid "Max page size" msgstr "Tamanho máximo da página" -#: netbox/templates/core/inc/config_data.html:114 +#: templates/core/inc/config_data.html:114 msgid "User preferences" msgstr "Preferências do usuário" -#: netbox/templates/core/inc/config_data.html:141 +#: templates/core/inc/config_data.html:141 msgid "Job retention" msgstr "Retenção da tarefa" -#: netbox/templates/core/job.html:35 netbox/templates/core/rq_task.html:12 -#: netbox/templates/core/rq_task.html:49 netbox/templates/core/rq_task.html:58 +#: templates/core/job.html:35 templates/core/rq_task.html:12 +#: templates/core/rq_task.html:49 templates/core/rq_task.html:58 msgid "Job" msgstr "Tarefa" -#: netbox/templates/core/job.html:58 -#: netbox/templates/extras/journalentry.html:26 +#: templates/core/job.html:58 templates/extras/journalentry.html:26 msgid "Created By" msgstr "Criado Por" -#: netbox/templates/core/job.html:66 +#: templates/core/job.html:66 msgid "Scheduling" msgstr "Agendamento" -#: netbox/templates/core/job.html:77 +#: templates/core/job.html:77 #, python-format msgid "every %(interval)s minutes" msgstr "a cada %(interval)s minuto(s)" -#: netbox/templates/core/objectchange.html:29 -#: netbox/templates/users/objectpermission.html:42 +#: templates/core/objectchange.html:29 +#: templates/users/objectpermission.html:42 msgid "Change" msgstr "Alteração" -#: netbox/templates/core/objectchange.html:79 +#: templates/core/objectchange.html:79 msgid "Difference" msgstr "Diferença" -#: netbox/templates/core/objectchange.html:82 +#: templates/core/objectchange.html:82 msgid "Previous" msgstr "Anterior" -#: netbox/templates/core/objectchange.html:85 +#: templates/core/objectchange.html:85 msgid "Next" msgstr "Próximo" -#: netbox/templates/core/objectchange.html:93 +#: templates/core/objectchange.html:93 msgid "Object Created" msgstr "Objeto Criado" -#: netbox/templates/core/objectchange.html:95 +#: templates/core/objectchange.html:95 msgid "Object Deleted" msgstr "Objeto Excluído" -#: netbox/templates/core/objectchange.html:97 +#: templates/core/objectchange.html:97 msgid "No Changes" msgstr "Sem Alterações" -#: netbox/templates/core/objectchange.html:111 +#: templates/core/objectchange.html:111 msgid "Pre-Change Data" msgstr "Dados Pré-Alteração" -#: netbox/templates/core/objectchange.html:122 +#: templates/core/objectchange.html:122 msgid "Warning: Comparing non-atomic change to previous change record" msgstr "" "Aviso: Comparando alteração não atômica com o registro de alteração anterior" -#: netbox/templates/core/objectchange.html:131 +#: templates/core/objectchange.html:131 msgid "Post-Change Data" msgstr "Dados Pós-Alteração" -#: netbox/templates/core/objectchange.html:162 +#: templates/core/objectchange.html:162 #, python-format msgid "See All %(count)s Changes" msgstr "Visualizar %(count)s Alterações" -#: netbox/templates/core/objectchange_list.html:9 -#: netbox/templates/extras/object_changelog.html:15 +#: templates/core/objectchange_list.html:9 +#: templates/extras/object_changelog.html:15 msgid "Change log retention" msgstr "Retenção do changelog" -#: netbox/templates/core/objectchange_list.html:9 -#: netbox/templates/extras/object_changelog.html:15 +#: templates/core/objectchange_list.html:9 +#: templates/extras/object_changelog.html:15 msgid "days" msgstr "dias" -#: netbox/templates/core/objectchange_list.html:9 -#: netbox/templates/extras/object_changelog.html:15 +#: templates/core/objectchange_list.html:9 +#: templates/extras/object_changelog.html:15 msgid "Indefinite" msgstr "Indefinido" -#: netbox/templates/core/plugin.html:21 +#: templates/core/plugin.html:22 msgid "Not installed" msgstr "Não instalado" -#: netbox/templates/core/plugin.html:32 +#: templates/core/plugin.html:33 msgid "Overview" msgstr "Visão Geral" -#: netbox/templates/core/plugin.html:38 +#: templates/core/plugin.html:39 msgid "Install" msgstr "Instalar" -#: netbox/templates/core/plugin.html:50 +#: templates/core/plugin.html:51 msgid "Plugin Details" msgstr "Detalhes do Plugin" -#: netbox/templates/core/plugin.html:57 +#: templates/core/plugin.html:58 msgid "Summary" msgstr "Sumário" -#: netbox/templates/core/plugin.html:75 +#: templates/core/plugin.html:76 msgid "License" msgstr "Licença" -#: netbox/templates/core/plugin.html:95 +#: templates/core/plugin.html:96 msgid "Version History" msgstr "Histórico da Versão" -#: netbox/templates/core/plugin.html:106 +#: templates/core/plugin.html:107 msgid "Local Installation Instructions" msgstr "Instruções para Instalação Local" -#: netbox/templates/core/rq_queue_list.html:5 -#: netbox/templates/core/rq_queue_list.html:13 -#: netbox/templates/core/rq_task_list.html:14 -#: netbox/templates/core/rq_worker.html:7 +#: templates/core/rq_queue_list.html:5 templates/core/rq_queue_list.html:13 +#: templates/core/rq_task_list.html:14 templates/core/rq_worker.html:7 msgid "Background Queues" msgstr "Filas em Segundo Plano" -#: netbox/templates/core/rq_queue_list.html:24 -#: netbox/templates/core/rq_queue_list.html:25 -#: netbox/templates/core/rq_worker_list.html:49 -#: netbox/templates/core/rq_worker_list.html:50 -#: netbox/templates/extras/script_result.html:67 -#: netbox/templates/extras/script_result.html:69 -#: netbox/templates/inc/table_controls_htmx.html:30 -#: netbox/templates/inc/table_controls_htmx.html:33 +#: templates/core/rq_queue_list.html:24 templates/core/rq_queue_list.html:25 +#: templates/core/rq_worker_list.html:49 templates/core/rq_worker_list.html:50 +#: templates/extras/script_result.html:67 +#: templates/extras/script_result.html:69 +#: templates/inc/table_controls_htmx.html:30 +#: templates/inc/table_controls_htmx.html:33 msgid "Configure Table" msgstr "Configurar Tabela" -#: netbox/templates/core/rq_task.html:29 +#: templates/core/rq_task.html:29 msgid "Stop" msgstr "Parar" -#: netbox/templates/core/rq_task.html:34 +#: templates/core/rq_task.html:34 msgid "Requeue" msgstr "Reenfileirar" -#: netbox/templates/core/rq_task.html:39 +#: templates/core/rq_task.html:39 msgid "Enqueue" msgstr "Enfileirar" -#: netbox/templates/core/rq_task.html:61 +#: templates/core/rq_task.html:61 msgid "Queue" msgstr "Fila" -#: netbox/templates/core/rq_task.html:65 +#: templates/core/rq_task.html:65 msgid "Timeout" msgstr "Tempo Limite" -#: netbox/templates/core/rq_task.html:69 +#: templates/core/rq_task.html:69 msgid "Result TTL" msgstr "TTL Resultado" -#: netbox/templates/core/rq_task.html:89 +#: templates/core/rq_task.html:89 msgid "Meta" msgstr "Meta" -#: netbox/templates/core/rq_task.html:93 +#: templates/core/rq_task.html:93 msgid "Arguments" msgstr "Argumentos" -#: netbox/templates/core/rq_task.html:97 +#: templates/core/rq_task.html:97 msgid "Keyword Arguments" msgstr "Argumentos Chave" -#: netbox/templates/core/rq_task.html:103 +#: templates/core/rq_task.html:103 msgid "Depends on" msgstr "Depende de" -#: netbox/templates/core/rq_task.html:109 +#: templates/core/rq_task.html:109 msgid "Exception" msgstr "Exceção" -#: netbox/templates/core/rq_task_list.html:28 +#: templates/core/rq_task_list.html:28 msgid "tasks in " msgstr "tarefas em " -#: netbox/templates/core/rq_task_list.html:33 +#: templates/core/rq_task_list.html:33 msgid "Queued Jobs" msgstr "Trabalhos em Fila" -#: netbox/templates/core/rq_task_list.html:64 -#: netbox/templates/extras/script_result.html:86 +#: templates/core/rq_task_list.html:64 templates/extras/script_result.html:86 #, python-format msgid "" "Select all %(count)s %(object_type_plural)s matching query" @@ -12286,397 +11610,382 @@ msgstr "" "Selecione todas as %(count)s %(object_type_plural)s " "consultas correspondentes" -#: netbox/templates/core/rq_worker.html:10 +#: templates/core/rq_worker.html:10 msgid "Worker Info" msgstr "Informações sobre o Agente" -#: netbox/templates/core/rq_worker.html:31 -#: netbox/templates/core/rq_worker.html:40 +#: templates/core/rq_worker.html:31 templates/core/rq_worker.html:40 msgid "Worker" msgstr "Agente" -#: netbox/templates/core/rq_worker.html:55 +#: templates/core/rq_worker.html:55 msgid "Queues" msgstr "Filas" -#: netbox/templates/core/rq_worker.html:63 +#: templates/core/rq_worker.html:63 msgid "Curent Job" msgstr "Tarefa Atual" -#: netbox/templates/core/rq_worker.html:67 +#: templates/core/rq_worker.html:67 msgid "Successful job count" msgstr "Total de tarefas bem-sucedidas" -#: netbox/templates/core/rq_worker.html:71 +#: templates/core/rq_worker.html:71 msgid "Failed job count" msgstr "Total de tarefas falhadas" -#: netbox/templates/core/rq_worker.html:75 +#: templates/core/rq_worker.html:75 msgid "Total working time" msgstr "Tempo total de execução" -#: netbox/templates/core/rq_worker.html:76 +#: templates/core/rq_worker.html:76 msgid "seconds" msgstr "segundos" -#: netbox/templates/core/rq_worker_list.html:13 -#: netbox/templates/core/rq_worker_list.html:21 +#: templates/core/rq_worker_list.html:13 templates/core/rq_worker_list.html:21 msgid "Background Workers" msgstr "Agentes em Background" -#: netbox/templates/core/rq_worker_list.html:29 +#: templates/core/rq_worker_list.html:29 #, python-format msgid "Workers in %(queue_name)s" msgstr "Agentes em %(queue_name)s" -#: netbox/templates/core/system.html:11 -#: netbox/utilities/templates/buttons/export.html:4 +#: templates/core/system.html:11 utilities/templates/buttons/export.html:4 msgid "Export" msgstr "Exportar" -#: netbox/templates/core/system.html:28 +#: templates/core/system.html:28 msgid "System Status" msgstr "Status do Sistema" -#: netbox/templates/core/system.html:31 +#: templates/core/system.html:31 msgid "NetBox release" msgstr "Versão do NetBox" -#: netbox/templates/core/system.html:44 +#: templates/core/system.html:44 msgid "Django version" msgstr "Versão do Django" -#: netbox/templates/core/system.html:48 +#: templates/core/system.html:48 msgid "PostgreSQL version" msgstr "Versão do PostgreSQL" -#: netbox/templates/core/system.html:52 +#: templates/core/system.html:52 msgid "Database name" msgstr "Nome do banco de dados" -#: netbox/templates/core/system.html:56 +#: templates/core/system.html:56 msgid "Database size" msgstr "Tamanho do banco de dados" -#: netbox/templates/core/system.html:61 +#: templates/core/system.html:61 msgid "Unavailable" msgstr "Indisponível" -#: netbox/templates/core/system.html:66 +#: templates/core/system.html:66 msgid "RQ workers" msgstr "Agentes RQ" -#: netbox/templates/core/system.html:69 +#: templates/core/system.html:69 msgid "default queue" msgstr "fila padrão" -#: netbox/templates/core/system.html:73 +#: templates/core/system.html:73 msgid "System time" msgstr "Hora do sistema" -#: netbox/templates/core/system.html:85 +#: templates/core/system.html:85 msgid "Current Configuration" msgstr "Configuração Atual" -#: netbox/templates/dcim/bulk_disconnect.html:9 +#: templates/dcim/bulk_disconnect.html:9 #, python-format msgid "" "Are you sure you want to disconnect these %(count)s %(obj_type_plural)s?" msgstr "" "Tem certeza de que deseja desconectar estes %(count)s %(obj_type_plural)s?" -#: netbox/templates/dcim/cable_trace.html:10 +#: templates/dcim/cable_trace.html:10 #, python-format msgid "Cable Trace for %(object_type)s %(object)s" msgstr "Rastrear Cabo para %(object_type)s %(object)s" -#: netbox/templates/dcim/cable_trace.html:24 -#: netbox/templates/dcim/inc/rack_elevation.html:7 +#: templates/dcim/cable_trace.html:24 templates/dcim/inc/rack_elevation.html:7 msgid "Download SVG" msgstr "Baixar SVG" -#: netbox/templates/dcim/cable_trace.html:30 +#: templates/dcim/cable_trace.html:30 msgid "Asymmetric Path" msgstr "Caminho Assimétrico" -#: netbox/templates/dcim/cable_trace.html:31 +#: templates/dcim/cable_trace.html:31 msgid "The nodes below have no links and result in an asymmetric path" msgstr "Os nós abaixo não possuem links e resultam em um caminho assimétrico" -#: netbox/templates/dcim/cable_trace.html:38 +#: templates/dcim/cable_trace.html:38 msgid "Path split" msgstr "Divisão de caminho" -#: netbox/templates/dcim/cable_trace.html:39 +#: templates/dcim/cable_trace.html:39 msgid "Select a node below to continue" msgstr "Selecione um nó abaixo para continuar" -#: netbox/templates/dcim/cable_trace.html:55 +#: templates/dcim/cable_trace.html:55 msgid "Trace Completed" msgstr "Rastreamento Concluído" -#: netbox/templates/dcim/cable_trace.html:58 +#: templates/dcim/cable_trace.html:58 msgid "Total segments" msgstr "Total de segmentos" -#: netbox/templates/dcim/cable_trace.html:62 +#: templates/dcim/cable_trace.html:62 msgid "Total length" msgstr "Comprimento total" -#: netbox/templates/dcim/cable_trace.html:77 +#: templates/dcim/cable_trace.html:77 msgid "No paths found" msgstr "Nenhum caminho encontrado" -#: netbox/templates/dcim/cable_trace.html:85 +#: templates/dcim/cable_trace.html:85 msgid "Related Paths" msgstr "Caminhos Relacionados" -#: netbox/templates/dcim/cable_trace.html:89 +#: templates/dcim/cable_trace.html:89 msgid "Origin" msgstr "Origem" -#: netbox/templates/dcim/cable_trace.html:90 +#: templates/dcim/cable_trace.html:90 msgid "Destination" msgstr "Destino" -#: netbox/templates/dcim/cable_trace.html:91 +#: templates/dcim/cable_trace.html:91 msgid "Segments" msgstr "Segmentos" -#: netbox/templates/dcim/cable_trace.html:104 +#: templates/dcim/cable_trace.html:104 msgid "Incomplete" msgstr "Incompleto" -#: netbox/templates/dcim/component_list.html:14 +#: templates/dcim/component_list.html:14 msgid "Rename Selected" msgstr "Renomear Selecionado" -#: netbox/templates/dcim/consoleport.html:65 -#: netbox/templates/dcim/consoleserverport.html:66 -#: netbox/templates/dcim/frontport.html:98 -#: netbox/templates/dcim/interface.html:176 -#: netbox/templates/dcim/poweroutlet.html:69 -#: netbox/templates/dcim/powerport.html:69 +#: templates/dcim/consoleport.html:65 templates/dcim/consoleserverport.html:66 +#: templates/dcim/frontport.html:98 templates/dcim/interface.html:176 +#: templates/dcim/poweroutlet.html:69 templates/dcim/powerport.html:69 msgid "Not Connected" msgstr "Não Conectado" -#: netbox/templates/dcim/device.html:34 +#: templates/dcim/device.html:34 msgid "Highlight device in rack" msgstr "Destacar o dispositivo no rack" -#: netbox/templates/dcim/device.html:55 +#: templates/dcim/device.html:55 msgid "Not racked" msgstr "Não montado em rack" -#: netbox/templates/dcim/device.html:62 netbox/templates/dcim/site.html:94 +#: templates/dcim/device.html:62 templates/dcim/site.html:94 msgid "GPS Coordinates" msgstr "Coordenadas GPS" -#: netbox/templates/dcim/device.html:68 netbox/templates/dcim/site.html:81 -#: netbox/templates/dcim/site.html:100 +#: templates/dcim/device.html:68 templates/dcim/site.html:81 +#: templates/dcim/site.html:100 msgid "Map" msgstr "Mapa" -#: netbox/templates/dcim/device.html:108 -#: netbox/templates/dcim/inventoryitem.html:56 -#: netbox/templates/dcim/module.html:81 -#: netbox/templates/dcim/modulebay.html:74 netbox/templates/dcim/rack.html:61 +#: templates/dcim/device.html:108 templates/dcim/inventoryitem.html:56 +#: templates/dcim/module.html:81 templates/dcim/modulebay.html:74 +#: templates/dcim/rack.html:61 msgid "Asset Tag" msgstr "Etiqueta de Patrimônio" -#: netbox/templates/dcim/device.html:123 +#: templates/dcim/device.html:123 msgid "View Virtual Chassis" msgstr "Exibir Chassi Virtual" -#: netbox/templates/dcim/device.html:164 +#: templates/dcim/device.html:164 msgid "Create VDC" msgstr "Criar Contexto de Dispositivo Virtual" -#: netbox/templates/dcim/device.html:175 -#: netbox/templates/dcim/device_edit.html:64 -#: netbox/virtualization/forms/model_forms.py:223 +#: templates/dcim/device.html:175 templates/dcim/device_edit.html:64 +#: virtualization/forms/model_forms.py:223 msgid "Management" msgstr "Gestão" -#: netbox/templates/dcim/device.html:195 netbox/templates/dcim/device.html:211 -#: netbox/templates/dcim/device.html:227 -#: netbox/templates/virtualization/virtualmachine.html:57 -#: netbox/templates/virtualization/virtualmachine.html:73 +#: templates/dcim/device.html:195 templates/dcim/device.html:211 +#: templates/dcim/device.html:227 +#: templates/virtualization/virtualmachine.html:57 +#: templates/virtualization/virtualmachine.html:73 msgid "NAT for" msgstr "NAT para" -#: netbox/templates/dcim/device.html:197 netbox/templates/dcim/device.html:213 -#: netbox/templates/dcim/device.html:229 -#: netbox/templates/virtualization/virtualmachine.html:59 -#: netbox/templates/virtualization/virtualmachine.html:75 +#: templates/dcim/device.html:197 templates/dcim/device.html:213 +#: templates/dcim/device.html:229 +#: templates/virtualization/virtualmachine.html:59 +#: templates/virtualization/virtualmachine.html:75 msgid "NAT" msgstr "NAT" -#: netbox/templates/dcim/device.html:252 netbox/templates/dcim/rack.html:73 +#: templates/dcim/device.html:252 templates/dcim/rack.html:73 msgid "Power Utilization" msgstr "Utilização de Energia" -#: netbox/templates/dcim/device.html:256 +#: templates/dcim/device.html:256 msgid "Input" msgstr "Entrada" -#: netbox/templates/dcim/device.html:257 +#: templates/dcim/device.html:257 msgid "Outlets" msgstr "Tomadas" -#: netbox/templates/dcim/device.html:258 +#: templates/dcim/device.html:258 msgid "Allocated" msgstr "Alocado" -#: netbox/templates/dcim/device.html:268 netbox/templates/dcim/device.html:270 -#: netbox/templates/dcim/device.html:286 -#: netbox/templates/dcim/powerfeed.html:67 +#: templates/dcim/device.html:268 templates/dcim/device.html:270 +#: templates/dcim/device.html:286 templates/dcim/powerfeed.html:67 msgid "VA" msgstr "VA" -#: netbox/templates/dcim/device.html:280 +#: templates/dcim/device.html:280 msgctxt "Leg of a power feed" msgid "Leg" msgstr "Ramal" -#: netbox/templates/dcim/device.html:306 -#: netbox/templates/virtualization/virtualmachine.html:158 +#: templates/dcim/device.html:306 +#: templates/virtualization/virtualmachine.html:158 msgid "Add a service" msgstr "Adicionar um serviço" -#: netbox/templates/dcim/device/base.html:21 -#: netbox/templates/dcim/device_list.html:9 -#: netbox/templates/dcim/devicetype/base.html:18 -#: netbox/templates/dcim/module.html:18 -#: netbox/templates/dcim/moduletype/base.html:18 -#: netbox/templates/virtualization/virtualmachine/base.html:22 -#: netbox/templates/virtualization/virtualmachine_list.html:8 +#: templates/dcim/device/base.html:21 templates/dcim/device_list.html:9 +#: templates/dcim/devicetype/base.html:18 +#: templates/dcim/inc/moduletype_buttons.html:9 templates/dcim/module.html:18 +#: templates/virtualization/virtualmachine/base.html:22 +#: templates/virtualization/virtualmachine_list.html:8 msgid "Add Components" msgstr "Adicionar Componentes" -#: netbox/templates/dcim/device/consoleports.html:24 +#: templates/dcim/device/consoleports.html:24 msgid "Add Console Ports" msgstr "Adicionar Portas de Console" -#: netbox/templates/dcim/device/consoleserverports.html:24 +#: templates/dcim/device/consoleserverports.html:24 msgid "Add Console Server Ports" msgstr "Adicionar Portas de Servidor de Console" -#: netbox/templates/dcim/device/devicebays.html:10 +#: templates/dcim/device/devicebays.html:10 msgid "Add Device Bays" msgstr "Adicionar Compartimentos de Dispositivos" -#: netbox/templates/dcim/device/frontports.html:24 +#: templates/dcim/device/frontports.html:24 msgid "Add Front Ports" msgstr "Adicionar Portas Frontais" -#: netbox/templates/dcim/device/inc/interface_table_controls.html:9 +#: templates/dcim/device/inc/interface_table_controls.html:9 msgid "Hide Enabled" msgstr "Ocultar Ativado" -#: netbox/templates/dcim/device/inc/interface_table_controls.html:10 +#: templates/dcim/device/inc/interface_table_controls.html:10 msgid "Hide Disabled" msgstr "Ocultar Desativado" -#: netbox/templates/dcim/device/inc/interface_table_controls.html:11 +#: templates/dcim/device/inc/interface_table_controls.html:11 msgid "Hide Virtual" msgstr "Ocultar Virtual" -#: netbox/templates/dcim/device/inc/interface_table_controls.html:12 +#: templates/dcim/device/inc/interface_table_controls.html:12 msgid "Hide Disconnected" msgstr "Ocultar Desconectado" -#: netbox/templates/dcim/device/interfaces.html:27 +#: templates/dcim/device/interfaces.html:27 msgid "Add Interfaces" msgstr "Adicionar Interfaces" -#: netbox/templates/dcim/device/inventory.html:10 -#: netbox/templates/dcim/inc/panels/inventory_items.html:10 +#: templates/dcim/device/inventory.html:10 +#: templates/dcim/inc/panels/inventory_items.html:10 msgid "Add Inventory Item" msgstr "Adicionar Item de Inventário" -#: netbox/templates/dcim/device/modulebays.html:10 +#: templates/dcim/device/modulebays.html:10 msgid "Add Module Bays" msgstr "Adicionar Compartimentos de Módulos" -#: netbox/templates/dcim/device/poweroutlets.html:24 +#: templates/dcim/device/poweroutlets.html:24 msgid "Add Power Outlets" msgstr "Adicionar Tomadas Elétricas" -#: netbox/templates/dcim/device/powerports.html:24 +#: templates/dcim/device/powerports.html:24 msgid "Add Power Port" msgstr "Adicionar Porta de Alimentação" -#: netbox/templates/dcim/device/rearports.html:24 +#: templates/dcim/device/rearports.html:24 msgid "Add Rear Ports" msgstr "Adicionar Portas Traseiras" -#: netbox/templates/dcim/device/render_config.html:5 -#: netbox/templates/virtualization/virtualmachine/render_config.html:5 +#: templates/dcim/device/render_config.html:5 +#: templates/virtualization/virtualmachine/render_config.html:5 msgid "Config" msgstr "Configuração" -#: netbox/templates/dcim/device/render_config.html:35 -#: netbox/templates/virtualization/virtualmachine/render_config.html:35 +#: templates/dcim/device/render_config.html:35 +#: templates/virtualization/virtualmachine/render_config.html:35 msgid "Context Data" msgstr "Dados do Contexto" -#: netbox/templates/dcim/device/render_config.html:53 -#: netbox/templates/virtualization/virtualmachine/render_config.html:53 +#: templates/dcim/device/render_config.html:53 +#: templates/virtualization/virtualmachine/render_config.html:53 msgid "Rendered Config" msgstr "Configuração Renderizada" -#: netbox/templates/dcim/device/render_config.html:55 -#: netbox/templates/virtualization/virtualmachine/render_config.html:55 +#: templates/dcim/device/render_config.html:55 +#: templates/virtualization/virtualmachine/render_config.html:55 msgid "Download" msgstr "Baixar" -#: netbox/templates/dcim/device/render_config.html:61 -#: netbox/templates/virtualization/virtualmachine/render_config.html:61 +#: templates/dcim/device/render_config.html:61 +#: templates/virtualization/virtualmachine/render_config.html:61 msgid "No configuration template found" msgstr "Nenhum modelo de configuração encontrado" -#: netbox/templates/dcim/device_edit.html:44 +#: templates/dcim/device_edit.html:44 msgid "Parent Bay" msgstr "Compartimento Pai" -#: netbox/templates/dcim/device_edit.html:48 -#: netbox/utilities/templates/form_helpers/render_field.html:22 +#: templates/dcim/device_edit.html:48 +#: utilities/templates/form_helpers/render_field.html:22 msgid "Regenerate Slug" msgstr "Regenerar Slug" -#: netbox/templates/dcim/device_edit.html:49 -#: netbox/templates/generic/bulk_remove.html:21 -#: netbox/utilities/templates/helpers/table_config_form.html:23 +#: templates/dcim/device_edit.html:49 templates/generic/bulk_remove.html:21 +#: utilities/templates/helpers/table_config_form.html:23 msgid "Remove" msgstr "Remover" -#: netbox/templates/dcim/device_edit.html:110 +#: templates/dcim/device_edit.html:110 msgid "Local Config Context Data" msgstr "Dados de Contexto de Configuração Local" -#: netbox/templates/dcim/device_list.html:82 -#: netbox/templates/dcim/moduletype/component_templates.html:17 -#: netbox/templates/generic/bulk_rename.html:57 -#: netbox/templates/virtualization/virtualmachine/interfaces.html:11 -#: netbox/templates/virtualization/virtualmachine/virtual_disks.html:11 +#: templates/dcim/device_list.html:82 templates/generic/bulk_rename.html:57 +#: templates/virtualization/virtualmachine/interfaces.html:11 +#: templates/virtualization/virtualmachine/virtual_disks.html:11 msgid "Rename" msgstr "Renomear" -#: netbox/templates/dcim/devicebay.html:17 +#: templates/dcim/devicebay.html:17 msgid "Device Bay" msgstr "Compartimento de Dispositivos" -#: netbox/templates/dcim/devicebay.html:43 +#: templates/dcim/devicebay.html:43 msgid "Installed Device" msgstr "Dispositivo Instalado" -#: netbox/templates/dcim/devicebay_depopulate.html:6 +#: templates/dcim/devicebay_depopulate.html:6 #, python-format msgid "Remove %(device)s from %(device_bay)s?" msgstr "Remover %(device)s de %(device_bay)s?" -#: netbox/templates/dcim/devicebay_depopulate.html:13 +#: templates/dcim/devicebay_depopulate.html:13 #, python-format msgid "" "Are you sure you want to remove %(device)s from " @@ -12685,449 +11994,430 @@ msgstr "" "Tem certeza de que deseja remover %(device)s de " "%(device_bay)s?" -#: netbox/templates/dcim/devicebay_populate.html:13 +#: templates/dcim/devicebay_populate.html:13 msgid "Populate" msgstr "Popular" -#: netbox/templates/dcim/devicebay_populate.html:22 +#: templates/dcim/devicebay_populate.html:22 msgid "Bay" msgstr "Compartimento" -#: netbox/templates/dcim/devicerole.html:14 -#: netbox/templates/dcim/platform.html:17 +#: templates/dcim/devicerole.html:14 templates/dcim/platform.html:17 msgid "Add Device" msgstr "Adicionar Dispositivo" -#: netbox/templates/dcim/devicerole.html:40 +#: templates/dcim/devicerole.html:40 msgid "VM Role" msgstr "Função da VM" -#: netbox/templates/dcim/devicetype.html:18 -#: netbox/templates/dcim/moduletype.html:18 +#: templates/dcim/devicetype.html:18 templates/dcim/moduletype.html:29 msgid "Model Name" msgstr "Nome do Modelo" -#: netbox/templates/dcim/devicetype.html:25 -#: netbox/templates/dcim/moduletype.html:22 +#: templates/dcim/devicetype.html:25 templates/dcim/moduletype.html:33 msgid "Part Number" msgstr "Part Number" -#: netbox/templates/dcim/devicetype.html:41 +#: templates/dcim/devicetype.html:41 msgid "Exclude From Utilization" msgstr "Excluir da Utilização" -#: netbox/templates/dcim/devicetype.html:59 +#: templates/dcim/devicetype.html:59 msgid "Parent/Child" msgstr "Pai/Filho" -#: netbox/templates/dcim/devicetype.html:71 +#: templates/dcim/devicetype.html:71 msgid "Front Image" msgstr "Imagem Frontal" -#: netbox/templates/dcim/devicetype.html:83 +#: templates/dcim/devicetype.html:83 msgid "Rear Image" msgstr "Imagem Traseira" -#: netbox/templates/dcim/frontport.html:54 +#: templates/dcim/frontport.html:54 msgid "Rear Port Position" msgstr "Posição da Porta Traseira" -#: netbox/templates/dcim/frontport.html:72 -#: netbox/templates/dcim/interface.html:144 -#: netbox/templates/dcim/poweroutlet.html:63 -#: netbox/templates/dcim/powerport.html:63 -#: netbox/templates/dcim/rearport.html:68 +#: templates/dcim/frontport.html:72 templates/dcim/interface.html:144 +#: templates/dcim/poweroutlet.html:63 templates/dcim/powerport.html:63 +#: templates/dcim/rearport.html:68 msgid "Marked as Connected" msgstr "Marcado como Conectado" -#: netbox/templates/dcim/frontport.html:86 -#: netbox/templates/dcim/rearport.html:82 +#: templates/dcim/frontport.html:86 templates/dcim/rearport.html:82 msgid "Connection Status" msgstr "Status da Conexão" -#: netbox/templates/dcim/htmx/cable_edit.html:10 +#: templates/dcim/htmx/cable_edit.html:10 msgid "A Side" msgstr "Lado A" -#: netbox/templates/dcim/htmx/cable_edit.html:30 +#: templates/dcim/htmx/cable_edit.html:30 msgid "B Side" msgstr "Lado B" -#: netbox/templates/dcim/inc/cable_termination.html:65 +#: templates/dcim/inc/cable_termination.html:65 msgid "No termination" msgstr "Sem Terminação" -#: netbox/templates/dcim/inc/cable_toggle_buttons.html:3 +#: templates/dcim/inc/cable_toggle_buttons.html:3 msgid "Mark Planned" msgstr "Marcar Planejado" -#: netbox/templates/dcim/inc/cable_toggle_buttons.html:6 +#: templates/dcim/inc/cable_toggle_buttons.html:6 msgid "Mark Installed" msgstr "Marcar Instalado" -#: netbox/templates/dcim/inc/connection_endpoints.html:13 +#: templates/dcim/inc/connection_endpoints.html:13 msgid "Path Status" msgstr "Status do Caminho" -#: netbox/templates/dcim/inc/connection_endpoints.html:18 +#: templates/dcim/inc/connection_endpoints.html:18 msgid "Not Reachable" msgstr "Não Acessível" -#: netbox/templates/dcim/inc/connection_endpoints.html:23 +#: templates/dcim/inc/connection_endpoints.html:23 msgid "Path Endpoints" msgstr "Endpoints do Caminho" -#: netbox/templates/dcim/inc/endpoint_connection.html:8 -#: netbox/templates/dcim/powerfeed.html:120 -#: netbox/templates/dcim/rearport.html:94 +#: templates/dcim/inc/endpoint_connection.html:8 +#: templates/dcim/powerfeed.html:120 templates/dcim/rearport.html:94 msgid "Not connected" msgstr "Não conectado" -#: netbox/templates/dcim/inc/interface_vlans_table.html:6 +#: templates/dcim/inc/interface_vlans_table.html:6 msgid "Untagged" msgstr "Não tagueada" -#: netbox/templates/dcim/inc/interface_vlans_table.html:37 +#: templates/dcim/inc/interface_vlans_table.html:37 msgid "No VLANs Assigned" msgstr "Nenhuma VLAN Associada" -#: netbox/templates/dcim/inc/interface_vlans_table.html:44 -#: netbox/templates/ipam/prefix_list.html:16 -#: netbox/templates/ipam/prefix_list.html:33 +#: templates/dcim/inc/interface_vlans_table.html:44 +#: templates/ipam/prefix_list.html:16 templates/ipam/prefix_list.html:33 msgid "Clear" msgstr "Limpar" -#: netbox/templates/dcim/inc/interface_vlans_table.html:47 +#: templates/dcim/inc/interface_vlans_table.html:47 msgid "Clear All" msgstr "Limpar Tudo" -#: netbox/templates/dcim/inc/panels/racktype_dimensions.html:38 +#: templates/dcim/inc/panels/racktype_dimensions.html:38 msgid "Mounting Depth" msgstr "Profundidade de Montagem" -#: netbox/templates/dcim/inc/panels/racktype_numbering.html:6 +#: templates/dcim/inc/panels/racktype_numbering.html:6 msgid "Starting Unit" msgstr "Unidade Inicial" -#: netbox/templates/dcim/inc/panels/racktype_numbering.html:10 +#: templates/dcim/inc/panels/racktype_numbering.html:10 msgid "Descending Units" msgstr "Unidades Descendentes" -#: netbox/templates/dcim/inc/rack_elevation.html:3 +#: templates/dcim/inc/rack_elevation.html:3 msgid "Rack elevation" msgstr "Elevação de rack" -#: netbox/templates/dcim/interface.html:17 +#: templates/dcim/interface.html:17 msgid "Add Child Interface" msgstr "Adicionar Interface Filha" -#: netbox/templates/dcim/interface.html:50 +#: templates/dcim/interface.html:50 msgid "Speed/Duplex" msgstr "Velocidade/Duplex" -#: netbox/templates/dcim/interface.html:73 +#: templates/dcim/interface.html:73 msgid "PoE Mode" msgstr "Modo do PoE" -#: netbox/templates/dcim/interface.html:77 +#: templates/dcim/interface.html:77 msgid "PoE Type" msgstr "Tipo de PoE" -#: netbox/templates/dcim/interface.html:81 -#: netbox/templates/virtualization/vminterface.html:63 +#: templates/dcim/interface.html:81 +#: templates/virtualization/vminterface.html:63 msgid "802.1Q Mode" msgstr "Modo 802.1Q" -#: netbox/templates/dcim/interface.html:125 -#: netbox/templates/virtualization/vminterface.html:59 +#: templates/dcim/interface.html:125 +#: templates/virtualization/vminterface.html:59 msgid "MAC Address" msgstr "Endereço MAC" -#: netbox/templates/dcim/interface.html:151 +#: templates/dcim/interface.html:151 msgid "Wireless Link" msgstr "Link Wireless" -#: netbox/templates/dcim/interface.html:218 netbox/vpn/choices.py:55 +#: templates/dcim/interface.html:218 vpn/choices.py:55 msgid "Peer" msgstr "Par" -#: netbox/templates/dcim/interface.html:230 -#: netbox/templates/wireless/inc/wirelesslink_interface.html:26 +#: templates/dcim/interface.html:230 +#: templates/wireless/inc/wirelesslink_interface.html:26 msgid "Channel" msgstr "Canal" -#: netbox/templates/dcim/interface.html:239 -#: netbox/templates/wireless/inc/wirelesslink_interface.html:32 +#: templates/dcim/interface.html:239 +#: templates/wireless/inc/wirelesslink_interface.html:32 msgid "Channel Frequency" msgstr "Frequência do Canal" -#: netbox/templates/dcim/interface.html:242 -#: netbox/templates/dcim/interface.html:250 -#: netbox/templates/dcim/interface.html:261 -#: netbox/templates/dcim/interface.html:269 +#: templates/dcim/interface.html:242 templates/dcim/interface.html:250 +#: templates/dcim/interface.html:261 templates/dcim/interface.html:269 msgid "MHz" msgstr "MHz" -#: netbox/templates/dcim/interface.html:258 -#: netbox/templates/wireless/inc/wirelesslink_interface.html:42 +#: templates/dcim/interface.html:258 +#: templates/wireless/inc/wirelesslink_interface.html:42 msgid "Channel Width" msgstr "Largura do Canal" -#: netbox/templates/dcim/interface.html:285 -#: netbox/templates/wireless/wirelesslan.html:14 -#: netbox/templates/wireless/wirelesslink.html:21 -#: netbox/wireless/forms/bulk_edit.py:60 -#: netbox/wireless/forms/bulk_edit.py:102 -#: netbox/wireless/forms/filtersets.py:40 -#: netbox/wireless/forms/filtersets.py:80 netbox/wireless/models.py:82 -#: netbox/wireless/models.py:156 netbox/wireless/tables/wirelesslan.py:44 +#: templates/dcim/interface.html:285 templates/wireless/wirelesslan.html:14 +#: templates/wireless/wirelesslink.html:21 wireless/forms/bulk_edit.py:60 +#: wireless/forms/bulk_edit.py:102 wireless/forms/filtersets.py:40 +#: wireless/forms/filtersets.py:80 wireless/models.py:82 +#: wireless/models.py:156 wireless/tables/wirelesslan.py:44 msgid "SSID" msgstr "SSID" -#: netbox/templates/dcim/interface.html:305 +#: templates/dcim/interface.html:305 msgid "LAG Members" msgstr "Membros do LAG" -#: netbox/templates/dcim/interface.html:323 +#: templates/dcim/interface.html:323 msgid "No member interfaces" msgstr "Nenhuma interface membro" -#: netbox/templates/dcim/interface.html:343 -#: netbox/templates/ipam/fhrpgroup.html:73 -#: netbox/templates/ipam/iprange/ip_addresses.html:7 -#: netbox/templates/ipam/prefix/ip_addresses.html:7 -#: netbox/templates/virtualization/vminterface.html:89 +#: templates/dcim/interface.html:343 templates/ipam/fhrpgroup.html:73 +#: templates/ipam/iprange/ip_addresses.html:7 +#: templates/ipam/prefix/ip_addresses.html:7 +#: templates/virtualization/vminterface.html:89 msgid "Add IP Address" msgstr "Adicionar Endereço IP" -#: netbox/templates/dcim/inventoryitem.html:24 +#: templates/dcim/inventoryitem.html:24 msgid "Parent Item" msgstr "Item Pai" -#: netbox/templates/dcim/inventoryitem.html:48 +#: templates/dcim/inventoryitem.html:48 msgid "Part ID" msgstr "Part ID" -#: netbox/templates/dcim/location.html:17 +#: templates/dcim/location.html:17 msgid "Add Child Location" msgstr "Adicionar Sub-Localização" -#: netbox/templates/dcim/location.html:77 +#: templates/dcim/location.html:77 msgid "Child Locations" msgstr "Sub-Localizações" -#: netbox/templates/dcim/location.html:81 netbox/templates/dcim/site.html:131 +#: templates/dcim/location.html:81 templates/dcim/site.html:131 msgid "Add a Location" msgstr "Adicionar uma localização" -#: netbox/templates/dcim/location.html:94 netbox/templates/dcim/site.html:144 +#: templates/dcim/location.html:94 templates/dcim/site.html:144 msgid "Add a Device" msgstr "Adicionar um Dispositivo" -#: netbox/templates/dcim/manufacturer.html:16 +#: templates/dcim/manufacturer.html:16 msgid "Add Device Type" msgstr "Adicionar Tipo de Dispositivo" -#: netbox/templates/dcim/manufacturer.html:21 +#: templates/dcim/manufacturer.html:21 msgid "Add Module Type" msgstr "Adicionar Tipo de Módulo" -#: netbox/templates/dcim/powerfeed.html:53 +#: templates/dcim/powerfeed.html:53 msgid "Connected Device" msgstr "Dispositivo Conectado" -#: netbox/templates/dcim/powerfeed.html:63 +#: templates/dcim/powerfeed.html:63 msgid "Utilization (Allocated" msgstr "Utilização (Alocada)" -#: netbox/templates/dcim/powerfeed.html:80 +#: templates/dcim/powerfeed.html:80 msgid "Electrical Characteristics" msgstr "Características Elétricas" -#: netbox/templates/dcim/powerfeed.html:88 +#: templates/dcim/powerfeed.html:88 msgctxt "Abbreviation for volts" msgid "V" msgstr "V" -#: netbox/templates/dcim/powerfeed.html:92 +#: templates/dcim/powerfeed.html:92 msgctxt "Abbreviation for amperes" msgid "A" msgstr "A" -#: netbox/templates/dcim/poweroutlet.html:48 +#: templates/dcim/poweroutlet.html:48 msgid "Feed Leg" msgstr "Ramal de Alimentação" -#: netbox/templates/dcim/powerpanel.html:72 +#: templates/dcim/powerpanel.html:72 msgid "Add Power Feeds" msgstr "Adicionar Fontes de Alimentação" -#: netbox/templates/dcim/powerport.html:44 +#: templates/dcim/powerport.html:44 msgid "Maximum Draw" msgstr "Consumo Máximo" -#: netbox/templates/dcim/powerport.html:48 +#: templates/dcim/powerport.html:48 msgid "Allocated Draw" msgstr "Consumo Alocado" -#: netbox/templates/dcim/rack.html:69 +#: templates/dcim/rack.html:69 msgid "Space Utilization" msgstr "Espaço Utilizado" -#: netbox/templates/dcim/rack.html:84 netbox/templates/dcim/racktype.html:44 +#: templates/dcim/rack.html:84 templates/dcim/racktype.html:44 msgid "Rack Weight" msgstr "Peso do Rack" -#: netbox/templates/dcim/rack.html:94 netbox/templates/dcim/racktype.html:54 +#: templates/dcim/rack.html:94 templates/dcim/racktype.html:54 msgid "Maximum Weight" msgstr "Peso Máximo" -#: netbox/templates/dcim/rack.html:104 +#: templates/dcim/rack.html:104 msgid "Total Weight" msgstr "Peso Total" -#: netbox/templates/dcim/rack.html:125 -#: netbox/templates/dcim/rack_elevation_list.html:15 +#: templates/dcim/rack.html:125 templates/dcim/rack_elevation_list.html:15 msgid "Images and Labels" msgstr "Imagens e Rótulos" -#: netbox/templates/dcim/rack.html:126 -#: netbox/templates/dcim/rack_elevation_list.html:16 +#: templates/dcim/rack.html:126 templates/dcim/rack_elevation_list.html:16 msgid "Images only" msgstr "Somente imagens" -#: netbox/templates/dcim/rack.html:127 -#: netbox/templates/dcim/rack_elevation_list.html:17 +#: templates/dcim/rack.html:127 templates/dcim/rack_elevation_list.html:17 msgid "Labels only" msgstr "Somente rótulos" -#: netbox/templates/dcim/rack/reservations.html:8 +#: templates/dcim/rack/reservations.html:8 msgid "Add reservation" msgstr "Adicionar reserva" -#: netbox/templates/dcim/rack_elevation_list.html:12 +#: templates/dcim/rack_elevation_list.html:12 msgid "View List" msgstr "Exibir Lista" -#: netbox/templates/dcim/rack_elevation_list.html:14 +#: templates/dcim/rack_elevation_list.html:14 msgid "Select rack view" msgstr "Selecione visão do rack" -#: netbox/templates/dcim/rack_elevation_list.html:25 +#: templates/dcim/rack_elevation_list.html:25 msgid "Sort By" msgstr "Ordenar Por" -#: netbox/templates/dcim/rack_elevation_list.html:74 +#: templates/dcim/rack_elevation_list.html:74 msgid "No Racks Found" msgstr "Nenhum Rack Localizado" -#: netbox/templates/dcim/rack_list.html:8 +#: templates/dcim/rack_list.html:8 msgid "View Elevations" msgstr "Exibir Elevações" -#: netbox/templates/dcim/rackreservation.html:42 +#: templates/dcim/rackreservation.html:42 msgid "Reservation Details" msgstr "Detalhes da Reserva" -#: netbox/templates/dcim/rackrole.html:10 +#: templates/dcim/rackrole.html:10 msgid "Add Rack" msgstr "Adicionar Rack" -#: netbox/templates/dcim/rearport.html:50 +#: templates/dcim/rearport.html:50 msgid "Positions" msgstr "Posições" -#: netbox/templates/dcim/region.html:17 -#: netbox/templates/dcim/sitegroup.html:17 +#: templates/dcim/region.html:17 templates/dcim/sitegroup.html:17 msgid "Add Site" msgstr "Adicionar Site" -#: netbox/templates/dcim/region.html:55 +#: templates/dcim/region.html:55 msgid "Child Regions" msgstr "Regiões de Sub-Localizações" -#: netbox/templates/dcim/region.html:59 +#: templates/dcim/region.html:59 msgid "Add Region" msgstr "Adicionar Região" -#: netbox/templates/dcim/site.html:64 +#: templates/dcim/site.html:64 msgid "Time Zone" msgstr "Fuso Horário" -#: netbox/templates/dcim/site.html:67 +#: templates/dcim/site.html:67 msgid "UTC" msgstr "UTC" -#: netbox/templates/dcim/site.html:68 +#: templates/dcim/site.html:68 msgid "Site time" msgstr "Horário local" -#: netbox/templates/dcim/site.html:75 +#: templates/dcim/site.html:75 msgid "Physical Address" msgstr "Endereço Físico" -#: netbox/templates/dcim/site.html:90 +#: templates/dcim/site.html:90 msgid "Shipping Address" msgstr "Endereço de Entrega" -#: netbox/templates/dcim/sitegroup.html:55 -#: netbox/templates/tenancy/contactgroup.html:46 -#: netbox/templates/tenancy/tenantgroup.html:55 -#: netbox/templates/wireless/wirelesslangroup.html:55 +#: templates/dcim/sitegroup.html:55 templates/tenancy/contactgroup.html:46 +#: templates/tenancy/tenantgroup.html:55 +#: templates/wireless/wirelesslangroup.html:55 msgid "Child Groups" msgstr "Grupos de Sub-Localizações" -#: netbox/templates/dcim/sitegroup.html:59 +#: templates/dcim/sitegroup.html:59 msgid "Add Site Group" msgstr "Adicionar Grupo de Sites" -#: netbox/templates/dcim/trace/attachment.html:5 -#: netbox/templates/extras/exporttemplate.html:31 +#: templates/dcim/trace/attachment.html:5 +#: templates/extras/exporttemplate.html:31 msgid "Attachment" msgstr "Anexo" -#: netbox/templates/dcim/virtualchassis.html:57 +#: templates/dcim/virtualchassis.html:57 msgid "Add Member" msgstr "Adicionar Membro" -#: netbox/templates/dcim/virtualchassis_add.html:18 +#: templates/dcim/virtualchassis_add.html:18 msgid "Member Devices" msgstr "Dispositivos Membros" -#: netbox/templates/dcim/virtualchassis_add_member.html:10 +#: templates/dcim/virtualchassis_add_member.html:10 #, python-format msgid "Add New Member to Virtual Chassis %(virtual_chassis)s" msgstr "Adicionar Novo Membro ao Chassi Virtual %(virtual_chassis)s" -#: netbox/templates/dcim/virtualchassis_add_member.html:19 +#: templates/dcim/virtualchassis_add_member.html:19 msgid "Add New Member" msgstr "Adicionar Novo Membro" -#: netbox/templates/dcim/virtualchassis_add_member.html:27 -#: netbox/templates/generic/object_edit.html:78 -#: netbox/templates/users/objectpermission.html:31 -#: netbox/users/forms/filtersets.py:67 netbox/users/forms/model_forms.py:312 +#: templates/dcim/virtualchassis_add_member.html:27 +#: templates/generic/object_edit.html:78 +#: templates/users/objectpermission.html:31 users/forms/filtersets.py:67 +#: users/forms/model_forms.py:312 msgid "Actions" msgstr "Ações" -#: netbox/templates/dcim/virtualchassis_add_member.html:29 +#: templates/dcim/virtualchassis_add_member.html:29 msgid "Save & Add Another" msgstr "Salvar e Adicionar Outro" -#: netbox/templates/dcim/virtualchassis_edit.html:7 +#: templates/dcim/virtualchassis_edit.html:7 #, python-format msgid "Editing Virtual Chassis %(name)s" msgstr "Editando Chassi Virtual %(name)s" -#: netbox/templates/dcim/virtualchassis_edit.html:53 +#: templates/dcim/virtualchassis_edit.html:53 msgid "Rack/Unit" msgstr "Rack/Posição" -#: netbox/templates/dcim/virtualchassis_remove_member.html:5 +#: templates/dcim/virtualchassis_remove_member.html:5 msgid "Remove Virtual Chassis Member" msgstr "Remover Membro do Chassi Virtual" -#: netbox/templates/dcim/virtualchassis_remove_member.html:9 +#: templates/dcim/virtualchassis_remove_member.html:9 #, python-format msgid "" "Are you sure you want to remove %(device)s from virtual " @@ -13136,12 +12426,11 @@ msgstr "" "Tem certeza de que deseja remover %(device)s do chassi " "virtual %(name)s?" -#: netbox/templates/dcim/virtualdevicecontext.html:26 -#: netbox/templates/vpn/l2vpn.html:18 +#: templates/dcim/virtualdevicecontext.html:26 templates/vpn/l2vpn.html:18 msgid "Identifier" msgstr "Identificador" -#: netbox/templates/exceptions/import_error.html:6 +#: templates/exceptions/import_error.html:6 msgid "" "A module import error occurred during this request. Common causes include " "the following:" @@ -13149,11 +12438,11 @@ msgstr "" "Ocorreu um erro de importação do módulo durante esta solicitação. As causas " "comuns incluem o seguinte:" -#: netbox/templates/exceptions/import_error.html:10 +#: templates/exceptions/import_error.html:10 msgid "Missing required packages" msgstr "Pacotes necessários ausentes" -#: netbox/templates/exceptions/import_error.html:11 +#: templates/exceptions/import_error.html:11 msgid "" "This installation of NetBox might be missing one or more required Python " "packages. These packages are listed in requirements.txt and " @@ -13169,11 +12458,11 @@ msgstr "" "instalados, execute pip freeze a partir do console e compare a " "saída com a lista de pacotes necessários." -#: netbox/templates/exceptions/import_error.html:20 +#: templates/exceptions/import_error.html:20 msgid "WSGI service not restarted after upgrade" msgstr "O serviço WSGI não foi reiniciado após a atualização" -#: netbox/templates/exceptions/import_error.html:21 +#: templates/exceptions/import_error.html:21 msgid "" "If this installation has recently been upgraded, check that the WSGI service" " (e.g. gunicorn or uWSGI) has been restarted. This ensures that the new code" @@ -13183,7 +12472,7 @@ msgstr "" "(por exemplo, gunicorn ou uWSGI) foi reiniciado. Isso garante que o novo " "código esteja em execução." -#: netbox/templates/exceptions/permission_error.html:6 +#: templates/exceptions/permission_error.html:6 msgid "" "A file permission error was detected while processing this request. Common " "causes include the following:" @@ -13191,11 +12480,11 @@ msgstr "" "Um erro de permissão de arquivo foi detectado ao processar esta solicitação." " As causas comuns incluem o seguinte:" -#: netbox/templates/exceptions/permission_error.html:10 +#: templates/exceptions/permission_error.html:10 msgid "Insufficient write permission to the media root" msgstr "Permissão de gravação insuficiente para a raíz da mídia" -#: netbox/templates/exceptions/permission_error.html:11 +#: templates/exceptions/permission_error.html:11 #, python-format msgid "" "The configured media root is %(media_root)s. Ensure that the " @@ -13206,7 +12495,7 @@ msgstr "" "que o usuário NetBox seja executado com acesso para gravar arquivos em todos" " os locais dentro deste caminho." -#: netbox/templates/exceptions/programming_error.html:6 +#: templates/exceptions/programming_error.html:6 msgid "" "A database programming error was detected while processing this request. " "Common causes include the following:" @@ -13214,11 +12503,11 @@ msgstr "" "Um erro de programação do banco de dados foi detectado ao processar esta " "solicitação. As causas comuns incluem o seguinte:" -#: netbox/templates/exceptions/programming_error.html:10 +#: templates/exceptions/programming_error.html:10 msgid "Database migrations missing" msgstr "Migrações do banco de dados ausentes" -#: netbox/templates/exceptions/programming_error.html:11 +#: templates/exceptions/programming_error.html:11 msgid "" "When upgrading to a new NetBox release, the upgrade script must be run to " "apply any new database migrations. You can run migrations manually by " @@ -13229,11 +12518,11 @@ msgstr "" "pode executar migrações manualmente executando python3 manage.py " "migrate a partir da linha de comando." -#: netbox/templates/exceptions/programming_error.html:18 +#: templates/exceptions/programming_error.html:18 msgid "Unsupported PostgreSQL version" msgstr "Versão não suportada do PostgreSQL" -#: netbox/templates/exceptions/programming_error.html:19 +#: templates/exceptions/programming_error.html:19 msgid "" "Ensure that PostgreSQL version 12 or later is in use. You can check this by " "connecting to the database using NetBox's credentials and issuing a query " @@ -13243,102 +12532,99 @@ msgstr "" " pode verificar isso conectando-se ao banco de dados usando as credenciais " "do NetBox e emitindo uma consulta para SELECT VERSION()." -#: netbox/templates/extras/configcontext.html:45 -#: netbox/templates/extras/configtemplate.html:37 -#: netbox/templates/extras/exporttemplate.html:51 +#: templates/extras/configcontext.html:45 +#: templates/extras/configtemplate.html:37 +#: templates/extras/exporttemplate.html:51 msgid "The data file associated with this object has been deleted" msgstr "O arquivo de dados associado a este objeto foi excluído" -#: netbox/templates/extras/configcontext.html:54 -#: netbox/templates/extras/configtemplate.html:46 -#: netbox/templates/extras/exporttemplate.html:60 +#: templates/extras/configcontext.html:54 +#: templates/extras/configtemplate.html:46 +#: templates/extras/exporttemplate.html:60 msgid "Data Synced" msgstr "Dados Sincronizados" -#: netbox/templates/extras/configcontext_list.html:7 -#: netbox/templates/extras/configtemplate_list.html:7 -#: netbox/templates/extras/exporttemplate_list.html:7 +#: templates/extras/configcontext_list.html:7 +#: templates/extras/configtemplate_list.html:7 +#: templates/extras/exporttemplate_list.html:7 msgid "Sync Data" msgstr "Sincronizar Dados" -#: netbox/templates/extras/configtemplate.html:56 +#: templates/extras/configtemplate.html:56 msgid "Environment Parameters" msgstr "Parâmetros do Ambiente" -#: netbox/templates/extras/configtemplate.html:67 -#: netbox/templates/extras/exporttemplate.html:79 +#: templates/extras/configtemplate.html:67 +#: templates/extras/exporttemplate.html:79 msgid "Template" msgstr "Modelo" -#: netbox/templates/extras/customfield.html:30 -#: netbox/templates/extras/customlink.html:21 +#: templates/extras/customfield.html:30 templates/extras/customlink.html:21 msgid "Group Name" msgstr "Nome do Grupo" -#: netbox/templates/extras/customfield.html:42 +#: templates/extras/customfield.html:42 msgid "Must be Unique" msgstr "Deve ser Único" -#: netbox/templates/extras/customfield.html:46 +#: templates/extras/customfield.html:46 msgid "Cloneable" msgstr "Clonável" -#: netbox/templates/extras/customfield.html:56 +#: templates/extras/customfield.html:56 msgid "Default Value" msgstr "Valor Padrão" -#: netbox/templates/extras/customfield.html:73 +#: templates/extras/customfield.html:73 msgid "Search Weight" msgstr "Peso na Pesquisa" -#: netbox/templates/extras/customfield.html:83 +#: templates/extras/customfield.html:83 msgid "Filter Logic" msgstr "Lógica do Filtro" -#: netbox/templates/extras/customfield.html:87 +#: templates/extras/customfield.html:87 msgid "Display Weight" msgstr "Peso de Exibição" -#: netbox/templates/extras/customfield.html:91 +#: templates/extras/customfield.html:91 msgid "UI Visible" msgstr "Interface de Usuário Visível" -#: netbox/templates/extras/customfield.html:95 +#: templates/extras/customfield.html:95 msgid "UI Editable" msgstr "Interface de Usuário Editável" -#: netbox/templates/extras/customfield.html:115 +#: templates/extras/customfield.html:115 msgid "Validation Rules" msgstr "Regras de Validação" -#: netbox/templates/extras/customfield.html:126 +#: templates/extras/customfield.html:126 msgid "Regular Expression" msgstr "Expressão Regular" -#: netbox/templates/extras/customlink.html:29 +#: templates/extras/customlink.html:29 msgid "Button Class" msgstr "Classe do Botão" -#: netbox/templates/extras/customlink.html:39 -#: netbox/templates/extras/exporttemplate.html:66 -#: netbox/templates/extras/savedfilter.html:39 +#: templates/extras/customlink.html:39 templates/extras/exporttemplate.html:66 +#: templates/extras/savedfilter.html:39 msgid "Assigned Models" msgstr "Modelos Associados" -#: netbox/templates/extras/customlink.html:52 +#: templates/extras/customlink.html:52 msgid "Link Text" msgstr "Texto do Link" -#: netbox/templates/extras/customlink.html:58 +#: templates/extras/customlink.html:58 msgid "Link URL" msgstr "URL do link" -#: netbox/templates/extras/dashboard/reset.html:4 -#: netbox/templates/home.html:66 +#: templates/extras/dashboard/reset.html:4 templates/home.html:66 msgid "Reset Dashboard" msgstr "Redefinir Dashboard" -#: netbox/templates/extras/dashboard/reset.html:8 +#: templates/extras/dashboard/reset.html:8 msgid "" "This will remove all configured widgets and restore the " "default dashboard configuration." @@ -13346,7 +12632,7 @@ msgstr "" "Isso removerá todos os widgets configurados e irá restaurar" " as configurações padrão do dashboard." -#: netbox/templates/extras/dashboard/reset.html:13 +#: templates/extras/dashboard/reset.html:13 msgid "" "This change affects only your dashboard, and will not impact other " "users." @@ -13354,157 +12640,155 @@ msgstr "" "Esta mudança afetará apenas seu dashboard e não impactará os outros " "usuários." -#: netbox/templates/extras/dashboard/widget.html:21 +#: templates/extras/dashboard/widget.html:21 msgid "widget configuration" msgstr "configuração do widget" -#: netbox/templates/extras/dashboard/widget.html:36 +#: templates/extras/dashboard/widget.html:36 msgid "Close widget" msgstr "Fechar widget" -#: netbox/templates/extras/dashboard/widget_add.html:7 +#: templates/extras/dashboard/widget_add.html:7 msgid "Add a Widget" msgstr "Adicionar um Widget" -#: netbox/templates/extras/dashboard/widgets/bookmarks.html:14 +#: templates/extras/dashboard/widgets/bookmarks.html:14 msgid "No bookmarks have been added yet." msgstr "Nenhum favorito foi adicionado ainda." -#: netbox/templates/extras/dashboard/widgets/objectcounts.html:10 +#: templates/extras/dashboard/widgets/objectcounts.html:10 msgid "No permission" msgstr "Sem permissão" -#: netbox/templates/extras/dashboard/widgets/objectlist.html:6 +#: templates/extras/dashboard/widgets/objectlist.html:6 msgid "No permission to view this content" msgstr "Sem permissão para visualizar este conteúdo" -#: netbox/templates/extras/dashboard/widgets/objectlist.html:10 +#: templates/extras/dashboard/widgets/objectlist.html:10 msgid "Unable to load content. Invalid view name" msgstr "Não é possível carregar o conteúdo. Nome de exibição inválido" -#: netbox/templates/extras/dashboard/widgets/rssfeed.html:12 +#: templates/extras/dashboard/widgets/rssfeed.html:12 msgid "No content found" msgstr "Nenhum conteúdo encontrado" -#: netbox/templates/extras/dashboard/widgets/rssfeed.html:18 +#: templates/extras/dashboard/widgets/rssfeed.html:18 msgid "There was a problem fetching the RSS feed" msgstr "Houve um problema ao obter o feed RSS" -#: netbox/templates/extras/dashboard/widgets/rssfeed.html:21 +#: templates/extras/dashboard/widgets/rssfeed.html:21 msgid "HTTP" msgstr "HTTP" -#: netbox/templates/extras/eventrule.html:61 +#: templates/extras/eventrule.html:61 msgid "Conditions" msgstr "Condições" -#: netbox/templates/extras/exporttemplate.html:23 +#: templates/extras/exporttemplate.html:23 msgid "MIME Type" msgstr "MIME Type" -#: netbox/templates/extras/exporttemplate.html:27 +#: templates/extras/exporttemplate.html:27 msgid "File Extension" msgstr "Extensão do arquivo" -#: netbox/templates/extras/htmx/script_result.html:10 +#: templates/extras/htmx/script_result.html:10 msgid "Scheduled for" msgstr "Agendado para" -#: netbox/templates/extras/htmx/script_result.html:15 +#: templates/extras/htmx/script_result.html:15 msgid "Duration" msgstr "Duração" -#: netbox/templates/extras/htmx/script_result.html:23 +#: templates/extras/htmx/script_result.html:23 msgid "Test Summary" msgstr "Resumo do Teste" -#: netbox/templates/extras/htmx/script_result.html:43 +#: templates/extras/htmx/script_result.html:43 msgid "Log" msgstr "Log" -#: netbox/templates/extras/htmx/script_result.html:56 +#: templates/extras/htmx/script_result.html:56 msgid "Output" msgstr "Saída" -#: netbox/templates/extras/inc/result_pending.html:4 +#: templates/extras/inc/result_pending.html:4 msgid "Loading" msgstr "Carregando" -#: netbox/templates/extras/inc/result_pending.html:6 +#: templates/extras/inc/result_pending.html:6 msgid "Results pending" msgstr "Resultados pendentes" -#: netbox/templates/extras/journalentry.html:15 +#: templates/extras/journalentry.html:15 msgid "Journal Entry" msgstr "Registro de Evento" -#: netbox/templates/extras/notificationgroup.html:11 +#: templates/extras/notificationgroup.html:11 msgid "Notification Group" msgstr "Grupo de Notificação" -#: netbox/templates/extras/notificationgroup.html:36 -#: netbox/templates/extras/notificationgroup.html:46 -#: netbox/utilities/templates/widgets/clearable_file_input.html:12 +#: templates/extras/notificationgroup.html:36 +#: templates/extras/notificationgroup.html:46 +#: utilities/templates/widgets/clearable_file_input.html:12 msgid "None assigned" msgstr "Nenhum atribuído" -#: netbox/templates/extras/object_configcontext.html:19 +#: templates/extras/object_configcontext.html:19 msgid "The local config context overwrites all source contexts" msgstr "" "O contexto de configuração local sobrescreve todos os contextos de origem" -#: netbox/templates/extras/object_configcontext.html:25 +#: templates/extras/object_configcontext.html:25 msgid "Source Contexts" msgstr "Contextos de Origem" -#: netbox/templates/extras/object_journal.html:17 +#: templates/extras/object_journal.html:17 msgid "New Journal Entry" msgstr "Novo Registro de Evento" -#: netbox/templates/extras/report/base.html:30 +#: templates/extras/report/base.html:30 msgid "Report" msgstr "Relatório" -#: netbox/templates/extras/script.html:14 +#: templates/extras/script.html:14 msgid "You do not have permission to run scripts" msgstr "Você não tem permissão para executar scripts" -#: netbox/templates/extras/script.html:41 -#: netbox/templates/extras/script.html:45 -#: netbox/templates/extras/script_list.html:86 +#: templates/extras/script.html:41 templates/extras/script.html:45 +#: templates/extras/script_list.html:86 msgid "Run Script" msgstr "Executar Script" -#: netbox/templates/extras/script.html:51 -#: netbox/templates/extras/script/source.html:10 +#: templates/extras/script.html:51 templates/extras/script/source.html:10 msgid "Error loading script" msgstr "Erro ao carregar o script" -#: netbox/templates/extras/script/jobs.html:16 +#: templates/extras/script/jobs.html:16 msgid "Script no longer exists in the source file." msgstr "O script não existe mais no arquivo de origem." -#: netbox/templates/extras/script_list.html:46 +#: templates/extras/script_list.html:46 msgid "Last Run" msgstr "Última Execução" -#: netbox/templates/extras/script_list.html:61 +#: templates/extras/script_list.html:61 msgid "Script is no longer present in the source file" msgstr "O script não está mais presente no arquivo de origem" -#: netbox/templates/extras/script_list.html:74 +#: templates/extras/script_list.html:74 msgid "Never" msgstr "Nunca" -#: netbox/templates/extras/script_list.html:84 +#: templates/extras/script_list.html:84 msgid "Run Again" msgstr "Execute Novamente" -#: netbox/templates/extras/script_list.html:138 +#: templates/extras/script_list.html:138 msgid "No Scripts Found" msgstr "Nenhum Script Encontrado" -#: netbox/templates/extras/script_list.html:141 +#: templates/extras/script_list.html:141 #, python-format msgid "" "Get started by creating a script from " @@ -13513,83 +12797,81 @@ msgstr "" "Comece criando um script a partir de " "um arquivo ou fonte de dados carregado." -#: netbox/templates/extras/script_result.html:35 -#: netbox/templates/generic/object_list.html:50 -#: netbox/templates/search.html:13 +#: templates/extras/script_result.html:35 +#: templates/generic/object_list.html:50 templates/search.html:13 msgid "Results" msgstr "Resultados" -#: netbox/templates/extras/script_result.html:46 +#: templates/extras/script_result.html:46 msgid "Log threshold" msgstr "Limite do log" -#: netbox/templates/extras/script_result.html:56 +#: templates/extras/script_result.html:56 msgid "All" msgstr "Todos" -#: netbox/templates/extras/tag.html:32 +#: templates/extras/tag.html:32 msgid "Tagged Items" msgstr "Itens Etiquetados" -#: netbox/templates/extras/tag.html:43 +#: templates/extras/tag.html:43 msgid "Allowed Object Types" msgstr "Tipos de Objetos Permitidos" -#: netbox/templates/extras/tag.html:51 +#: templates/extras/tag.html:51 msgid "Any" msgstr "Qualquer" -#: netbox/templates/extras/tag.html:57 +#: templates/extras/tag.html:57 msgid "Tagged Item Types" msgstr "Tipos de Itens Etiquetados" -#: netbox/templates/extras/tag.html:81 +#: templates/extras/tag.html:81 msgid "Tagged Objects" msgstr "Objetos Etiquetados" -#: netbox/templates/extras/webhook.html:26 +#: templates/extras/webhook.html:26 msgid "HTTP Method" msgstr "Método HTTP" -#: netbox/templates/extras/webhook.html:34 +#: templates/extras/webhook.html:34 msgid "HTTP Content Type" msgstr "Tipo de Conteúdo HTTP" -#: netbox/templates/extras/webhook.html:47 +#: templates/extras/webhook.html:47 msgid "SSL Verification" msgstr "Verificação SSL" -#: netbox/templates/extras/webhook.html:60 +#: templates/extras/webhook.html:60 msgid "Additional Headers" msgstr "Cabeçalhos Adicionais" -#: netbox/templates/extras/webhook.html:70 +#: templates/extras/webhook.html:70 msgid "Body Template" msgstr "Modelo de Corpo" -#: netbox/templates/generic/bulk_add_component.html:29 +#: templates/generic/bulk_add_component.html:29 msgid "Bulk Creation" msgstr "Criação em Massa" -#: netbox/templates/generic/bulk_add_component.html:34 -#: netbox/templates/generic/bulk_delete.html:32 -#: netbox/templates/generic/bulk_edit.html:33 +#: templates/generic/bulk_add_component.html:34 +#: templates/generic/bulk_delete.html:32 templates/generic/bulk_edit.html:33 msgid "Selected Objects" msgstr "Objetos Selecionados" -#: netbox/templates/generic/bulk_add_component.html:58 +#: templates/generic/bulk_add_component.html:58 msgid "to Add" msgstr "para Adicionar" -#: netbox/templates/generic/bulk_delete.html:27 +#: templates/generic/bulk_delete.html:27 msgid "Bulk Delete" msgstr "Exclusão em Massa" -#: netbox/templates/generic/bulk_delete.html:49 +#: templates/generic/bulk_delete.html:49 msgid "Confirm Bulk Deletion" msgstr "Confirmar Exclusão em Massa" -#: netbox/templates/generic/bulk_delete.html:50 +#: templates/generic/bulk_delete.html:50 #, python-format msgid "" "The following operation will delete %(count)s " @@ -13599,69 +12881,66 @@ msgstr "" "A operação a seguir excluirá %(count)s %(type_plural)s. " "Analise cuidadosamente o(s) objeto(s) selecionado(s) e confirme esta ação." -#: netbox/templates/generic/bulk_edit.html:21 -#: netbox/templates/generic/object_edit.html:22 +#: templates/generic/bulk_edit.html:21 templates/generic/object_edit.html:22 msgid "Editing" msgstr "Editando" -#: netbox/templates/generic/bulk_edit.html:28 +#: templates/generic/bulk_edit.html:28 msgid "Bulk Edit" msgstr "Edição em Massa" -#: netbox/templates/generic/bulk_edit.html:107 -#: netbox/templates/generic/bulk_rename.html:66 +#: templates/generic/bulk_edit.html:107 templates/generic/bulk_rename.html:66 msgid "Apply" msgstr "Aplicar" -#: netbox/templates/generic/bulk_import.html:19 +#: templates/generic/bulk_import.html:19 msgid "Bulk Import" msgstr "Importação em Massa" -#: netbox/templates/generic/bulk_import.html:25 +#: templates/generic/bulk_import.html:25 msgid "Direct Import" msgstr "Importação Direta" -#: netbox/templates/generic/bulk_import.html:30 +#: templates/generic/bulk_import.html:30 msgid "Upload File" msgstr "Carregar Arquivo" -#: netbox/templates/generic/bulk_import.html:58 -#: netbox/templates/generic/bulk_import.html:80 -#: netbox/templates/generic/bulk_import.html:102 +#: templates/generic/bulk_import.html:58 templates/generic/bulk_import.html:80 +#: templates/generic/bulk_import.html:102 msgid "Submit" msgstr "Enviar" -#: netbox/templates/generic/bulk_import.html:113 +#: templates/generic/bulk_import.html:113 msgid "Field Options" msgstr "Opções de Campos" -#: netbox/templates/generic/bulk_import.html:119 +#: templates/generic/bulk_import.html:119 msgid "Accessor" msgstr "Acessador" -#: netbox/templates/generic/bulk_import.html:148 +#: templates/generic/bulk_import.html:148 msgid "choices" msgstr "escolhas" -#: netbox/templates/generic/bulk_import.html:161 +#: templates/generic/bulk_import.html:161 msgid "Import Value" msgstr "Importar Valor" -#: netbox/templates/generic/bulk_import.html:181 +#: templates/generic/bulk_import.html:181 msgid "Format: YYYY-MM-DD" msgstr "Formato: AAAA-MM-DD" -#: netbox/templates/generic/bulk_import.html:183 +#: templates/generic/bulk_import.html:183 msgid "Specify true or false" msgstr "Especifique verdadeiro ou falso" -#: netbox/templates/generic/bulk_import.html:195 +#: templates/generic/bulk_import.html:195 msgid "Required fields must be specified for all objects." msgstr "" "Campos obrigatórios devem ser especificados para todos os " "objetos." -#: netbox/templates/generic/bulk_import.html:201 +#: templates/generic/bulk_import.html:201 #, python-format msgid "" "Related objects may be referenced by any unique attribute. For example, " @@ -13671,15 +12950,15 @@ msgstr "" "exclusivo. Por exemplo, %(example)s identificaria um VRF por " "seu Route Distinguiser." -#: netbox/templates/generic/bulk_remove.html:28 +#: templates/generic/bulk_remove.html:28 msgid "Bulk Remove" msgstr "Remoção em Massa" -#: netbox/templates/generic/bulk_remove.html:42 +#: templates/generic/bulk_remove.html:42 msgid "Confirm Bulk Removal" msgstr "Confirme Remoção em Massa" -#: netbox/templates/generic/bulk_remove.html:43 +#: templates/generic/bulk_remove.html:43 #, python-format msgid "" "The following operation will remove %(count)s %(obj_type_plural)s from " @@ -13690,72 +12969,72 @@ msgstr "" "%(parent_obj)s. Por favor, revise cuidadosamente o(s) %(obj_type_plural)s a " "ser(em) removido(s) e confirme abaixo." -#: netbox/templates/generic/bulk_remove.html:64 +#: templates/generic/bulk_remove.html:64 #, python-format msgid "Remove these %(count)s %(obj_type_plural)s" msgstr "Remova este(s) %(count)s %(obj_type_plural)s" -#: netbox/templates/generic/bulk_rename.html:20 +#: templates/generic/bulk_rename.html:20 msgid "Renaming" msgstr "Renomeando" -#: netbox/templates/generic/bulk_rename.html:27 +#: templates/generic/bulk_rename.html:27 msgid "Bulk Rename" msgstr "Renomeação em Massa" -#: netbox/templates/generic/bulk_rename.html:39 +#: templates/generic/bulk_rename.html:39 msgid "Current Name" msgstr "Nome Atual" -#: netbox/templates/generic/bulk_rename.html:40 +#: templates/generic/bulk_rename.html:40 msgid "New Name" msgstr "Novo Nome" -#: netbox/templates/generic/bulk_rename.html:64 -#: netbox/utilities/templates/widgets/markdown_input.html:11 +#: templates/generic/bulk_rename.html:64 +#: utilities/templates/widgets/markdown_input.html:11 msgid "Preview" msgstr "Pré-visualização" -#: netbox/templates/generic/confirmation_form.html:16 +#: templates/generic/confirmation_form.html:16 msgid "Are you sure" msgstr "Você tem certeza" -#: netbox/templates/generic/confirmation_form.html:20 +#: templates/generic/confirmation_form.html:20 msgid "Confirm" msgstr "Confirma" -#: netbox/templates/generic/object_children.html:47 -#: netbox/utilities/templates/buttons/bulk_edit.html:4 +#: templates/generic/object_children.html:47 +#: utilities/templates/buttons/bulk_edit.html:4 msgid "Edit Selected" msgstr "Editar Selecionado" -#: netbox/templates/generic/object_children.html:61 -#: netbox/utilities/templates/buttons/bulk_delete.html:4 +#: templates/generic/object_children.html:61 +#: utilities/templates/buttons/bulk_delete.html:4 msgid "Delete Selected" msgstr "Excluir Selecionado" -#: netbox/templates/generic/object_edit.html:24 +#: templates/generic/object_edit.html:24 #, python-format msgid "Add a new %(object_type)s" msgstr "Adicionar %(object_type)s" -#: netbox/templates/generic/object_edit.html:35 +#: templates/generic/object_edit.html:35 msgid "View model documentation" msgstr "Veja a documentação do modelo" -#: netbox/templates/generic/object_edit.html:36 +#: templates/generic/object_edit.html:36 msgid "Help" msgstr "Ajuda" -#: netbox/templates/generic/object_edit.html:83 +#: templates/generic/object_edit.html:83 msgid "Create & Add Another" msgstr "Criar e Adicionar Outro" -#: netbox/templates/generic/object_list.html:57 +#: templates/generic/object_list.html:57 msgid "Filters" msgstr "Filtros" -#: netbox/templates/generic/object_list.html:88 +#: templates/generic/object_list.html:88 #, python-format msgid "" "Select all %(count)s " @@ -13764,40 +13043,40 @@ msgstr "" "Selecione toda(s)%(count)s" " %(object_type_plural)s consulta(s) correspondente(s)" -#: netbox/templates/home.html:15 +#: templates/home.html:15 msgid "New Release Available" msgstr "Nova Versão Disponível" -#: netbox/templates/home.html:16 +#: templates/home.html:16 msgid "is available" msgstr "está disponível" -#: netbox/templates/home.html:18 +#: templates/home.html:18 msgctxt "Document title" msgid "Upgrade Instructions" msgstr "Instruções para Atualização" -#: netbox/templates/home.html:40 +#: templates/home.html:40 msgid "Unlock Dashboard" msgstr "Desbloquear Dashboard" -#: netbox/templates/home.html:49 +#: templates/home.html:49 msgid "Lock Dashboard" msgstr "Bloquear Dashboard" -#: netbox/templates/home.html:60 +#: templates/home.html:60 msgid "Add Widget" msgstr "Adicionar Widget" -#: netbox/templates/home.html:63 +#: templates/home.html:63 msgid "Save Layout" msgstr "Salvar Layout" -#: netbox/templates/htmx/delete_form.html:7 +#: templates/htmx/delete_form.html:7 msgid "Confirm Deletion" msgstr "Confirmar Exclusão" -#: netbox/templates/htmx/delete_form.html:11 +#: templates/htmx/delete_form.html:11 #, python-format msgid "" "Are you sure you want to delete " @@ -13806,40 +13085,40 @@ msgstr "" "Tem certeza que deseja deletar " "%(object_type)s %(object)s?" -#: netbox/templates/htmx/delete_form.html:17 +#: templates/htmx/delete_form.html:17 msgid "The following objects will be deleted as a result of this action." msgstr "Os objetos a seguir serão excluídos como resultado desta ação." -#: netbox/templates/htmx/notifications.html:15 +#: templates/htmx/notifications.html:15 msgid "ago" msgstr "atrás" -#: netbox/templates/htmx/notifications.html:26 +#: templates/htmx/notifications.html:26 msgid "No unread notifications" msgstr "Nenhuma notificação não lida" -#: netbox/templates/htmx/notifications.html:31 +#: templates/htmx/notifications.html:31 msgid "All notifications" msgstr "Todas as notificações" -#: netbox/templates/htmx/object_selector.html:5 +#: templates/htmx/object_selector.html:5 msgid "Select" msgstr "Selecionar" -#: netbox/templates/inc/filter_list.html:42 -#: netbox/utilities/templates/helpers/table_config_form.html:39 +#: templates/inc/filter_list.html:43 +#: utilities/templates/helpers/table_config_form.html:39 msgid "Reset" msgstr "Redefinir" -#: netbox/templates/inc/light_toggle.html:4 +#: templates/inc/light_toggle.html:4 msgid "Enable dark mode" msgstr "Ativar o modo escuro" -#: netbox/templates/inc/light_toggle.html:7 +#: templates/inc/light_toggle.html:7 msgid "Enable light mode" msgstr "Ativar o modo claro" -#: netbox/templates/inc/missing_prerequisites.html:8 +#: templates/inc/missing_prerequisites.html:8 #, python-format msgid "" "Before you can add a %(model)s you must first create a " @@ -13848,283 +13127,281 @@ msgstr "" "Antes que você possa adicionar um %(model)s, você deve primeiro criar um " "%(prerequisite_model)s." -#: netbox/templates/inc/paginator.html:15 +#: templates/inc/paginator.html:15 msgid "Page selection" msgstr "Seleção de página" -#: netbox/templates/inc/paginator.html:75 +#: templates/inc/paginator.html:75 #, python-format msgid "Showing %(start)s-%(end)s of %(total)s" msgstr "Exibindo %(start)s-%(end)s de %(total)s" -#: netbox/templates/inc/paginator.html:82 +#: templates/inc/paginator.html:82 msgid "Pagination options" msgstr "Opções de paginação" -#: netbox/templates/inc/paginator.html:86 +#: templates/inc/paginator.html:86 msgid "Per Page" msgstr "Por Página" -#: netbox/templates/inc/panels/image_attachments.html:10 +#: templates/inc/panels/image_attachments.html:10 msgid "Attach an image" msgstr "Anexar uma imagem" -#: netbox/templates/inc/panels/related_objects.html:5 +#: templates/inc/panels/related_objects.html:5 msgid "Related Objects" msgstr "Objetos Relacionados" -#: netbox/templates/inc/panels/tags.html:11 +#: templates/inc/panels/tags.html:11 msgid "No tags assigned" msgstr "Nenhuma tag associada" -#: netbox/templates/inc/sync_warning.html:10 +#: templates/inc/sync_warning.html:10 msgid "Data is out of sync with upstream file" msgstr "Os dados não estão sincronizados com o arquivo de upstream" -#: netbox/templates/inc/table_controls_htmx.html:7 +#: templates/inc/table_controls_htmx.html:7 msgid "Quick search" msgstr "Busca rápida" -#: netbox/templates/inc/table_controls_htmx.html:20 +#: templates/inc/table_controls_htmx.html:20 msgid "Saved filter" msgstr "Filtro salvo" -#: netbox/templates/inc/table_htmx.html:18 +#: templates/inc/table_htmx.html:18 msgid "Clear ordering" msgstr "Limpar ordenação" -#: netbox/templates/inc/user_menu.html:6 +#: templates/inc/user_menu.html:6 msgid "Help center" msgstr "Centro de ajuda" -#: netbox/templates/inc/user_menu.html:41 +#: templates/inc/user_menu.html:41 msgid "Django Admin" msgstr "Administrador do Django" -#: netbox/templates/inc/user_menu.html:61 +#: templates/inc/user_menu.html:61 msgid "Log Out" msgstr "Logout" -#: netbox/templates/inc/user_menu.html:68 netbox/templates/login.html:38 +#: templates/inc/user_menu.html:68 templates/login.html:38 msgid "Log In" msgstr "Login" -#: netbox/templates/ipam/aggregate.html:14 -#: netbox/templates/ipam/ipaddress.html:14 -#: netbox/templates/ipam/iprange.html:13 netbox/templates/ipam/prefix.html:15 +#: templates/ipam/aggregate.html:14 templates/ipam/ipaddress.html:14 +#: templates/ipam/iprange.html:13 templates/ipam/prefix.html:15 msgid "Family" msgstr "Família" -#: netbox/templates/ipam/aggregate.html:39 +#: templates/ipam/aggregate.html:39 msgid "Date Added" msgstr "Data Adicionada" -#: netbox/templates/ipam/aggregate/prefixes.html:8 -#: netbox/templates/ipam/prefix/prefixes.html:8 -#: netbox/templates/ipam/role.html:10 +#: templates/ipam/aggregate/prefixes.html:8 +#: templates/ipam/prefix/prefixes.html:8 templates/ipam/role.html:10 msgid "Add Prefix" msgstr "Adicionar Prefixo" -#: netbox/templates/ipam/asn.html:23 +#: templates/ipam/asn.html:23 msgid "AS Number" msgstr "Número do AS" -#: netbox/templates/ipam/fhrpgroup.html:52 +#: templates/ipam/fhrpgroup.html:52 msgid "Authentication Type" msgstr "Tipo de Autenticação" -#: netbox/templates/ipam/fhrpgroup.html:56 +#: templates/ipam/fhrpgroup.html:56 msgid "Authentication Key" msgstr "Chave de Autenticação" -#: netbox/templates/ipam/fhrpgroup.html:69 +#: templates/ipam/fhrpgroup.html:69 msgid "Virtual IP Addresses" msgstr "Endereços IP Virtuais" -#: netbox/templates/ipam/inc/ipaddress_edit_header.html:13 +#: templates/ipam/inc/ipaddress_edit_header.html:13 msgid "Assign IP" msgstr "Atribuir IP" -#: netbox/templates/ipam/inc/ipaddress_edit_header.html:19 +#: templates/ipam/inc/ipaddress_edit_header.html:19 msgid "Bulk Create" msgstr "Criar em Massa" -#: netbox/templates/ipam/inc/panels/fhrp_groups.html:10 +#: templates/ipam/inc/panels/fhrp_groups.html:10 msgid "Create Group" msgstr "Criar Grupo" -#: netbox/templates/ipam/inc/panels/fhrp_groups.html:25 +#: templates/ipam/inc/panels/fhrp_groups.html:25 msgid "Virtual IPs" msgstr "IPs Virtuais" -#: netbox/templates/ipam/inc/toggle_available.html:7 +#: templates/ipam/inc/toggle_available.html:7 msgid "Show Assigned" msgstr "Mostrar Atribuído" -#: netbox/templates/ipam/inc/toggle_available.html:10 +#: templates/ipam/inc/toggle_available.html:10 msgid "Show Available" msgstr "Mostrar Disponível" -#: netbox/templates/ipam/inc/toggle_available.html:13 +#: templates/ipam/inc/toggle_available.html:13 msgid "Show All" msgstr "Mostrar Tudo" -#: netbox/templates/ipam/ipaddress.html:23 -#: netbox/templates/ipam/iprange.html:45 netbox/templates/ipam/prefix.html:24 +#: templates/ipam/ipaddress.html:23 templates/ipam/iprange.html:45 +#: templates/ipam/prefix.html:24 msgid "Global" msgstr "Global" -#: netbox/templates/ipam/ipaddress.html:85 +#: templates/ipam/ipaddress.html:85 msgid "NAT (outside)" msgstr "NAT (externo)" -#: netbox/templates/ipam/ipaddress_assign.html:8 +#: templates/ipam/ipaddress_assign.html:8 msgid "Assign an IP Address" msgstr "Atribuir um Endereço IP" -#: netbox/templates/ipam/ipaddress_assign.html:22 +#: templates/ipam/ipaddress_assign.html:22 msgid "Select IP Address" msgstr "Selecione o Endereço IP" -#: netbox/templates/ipam/ipaddress_assign.html:35 +#: templates/ipam/ipaddress_assign.html:35 msgid "Search Results" msgstr "Resultados da Pesquisa" -#: netbox/templates/ipam/ipaddress_bulk_add.html:6 +#: templates/ipam/ipaddress_bulk_add.html:6 msgid "Bulk Add IP Addresses" msgstr "Adicionar Endereços IP em Massa" -#: netbox/templates/ipam/iprange.html:17 +#: templates/ipam/iprange.html:17 msgid "Starting Address" msgstr "Endereço Inicial" -#: netbox/templates/ipam/iprange.html:21 +#: templates/ipam/iprange.html:21 msgid "Ending Address" msgstr "Endereço Final" -#: netbox/templates/ipam/iprange.html:33 netbox/templates/ipam/prefix.html:110 +#: templates/ipam/iprange.html:33 templates/ipam/prefix.html:110 msgid "Marked fully utilized" msgstr "Marcado como totalmente utilizado" -#: netbox/templates/ipam/prefix.html:99 +#: templates/ipam/prefix.html:99 msgid "Addressing Details" msgstr "Detalhes do Endereçamento" -#: netbox/templates/ipam/prefix.html:118 +#: templates/ipam/prefix.html:118 msgid "Child IPs" msgstr "IPs Filhos" -#: netbox/templates/ipam/prefix.html:126 +#: templates/ipam/prefix.html:126 msgid "Available IPs" msgstr "IPs Disponíveis" -#: netbox/templates/ipam/prefix.html:138 +#: templates/ipam/prefix.html:138 msgid "First available IP" msgstr "Primeiro IP disponível" -#: netbox/templates/ipam/prefix.html:179 +#: templates/ipam/prefix.html:179 msgid "Prefix Details" msgstr "Detalhes do Prefixo" -#: netbox/templates/ipam/prefix.html:185 +#: templates/ipam/prefix.html:185 msgid "Network Address" msgstr "Endereço de Rede" -#: netbox/templates/ipam/prefix.html:189 +#: templates/ipam/prefix.html:189 msgid "Network Mask" msgstr "Máscara de Rede" -#: netbox/templates/ipam/prefix.html:193 +#: templates/ipam/prefix.html:193 msgid "Wildcard Mask" msgstr "Máscara Curinga" -#: netbox/templates/ipam/prefix.html:197 +#: templates/ipam/prefix.html:197 msgid "Broadcast Address" msgstr "Endereço de Broadcast" -#: netbox/templates/ipam/prefix/ip_ranges.html:7 +#: templates/ipam/prefix/ip_ranges.html:7 msgid "Add IP Range" msgstr "Adicionar Faixa de IP" -#: netbox/templates/ipam/prefix_list.html:7 +#: templates/ipam/prefix_list.html:7 msgid "Hide Depth Indicators" msgstr "Ocultar Indicadores de Profundidade" -#: netbox/templates/ipam/prefix_list.html:11 +#: templates/ipam/prefix_list.html:11 msgid "Max Depth" msgstr "Profundidade Máxima" -#: netbox/templates/ipam/prefix_list.html:28 +#: templates/ipam/prefix_list.html:28 msgid "Max Length" msgstr "Comprimento Máximo" -#: netbox/templates/ipam/rir.html:10 +#: templates/ipam/rir.html:10 msgid "Add Aggregate" msgstr "Adicionar Agregado" -#: netbox/templates/ipam/routetarget.html:38 +#: templates/ipam/routetarget.html:38 msgid "Importing VRFs" msgstr "Importando VRFs" -#: netbox/templates/ipam/routetarget.html:44 +#: templates/ipam/routetarget.html:44 msgid "Exporting VRFs" msgstr "Exportando VRFs" -#: netbox/templates/ipam/routetarget.html:52 +#: templates/ipam/routetarget.html:52 msgid "Importing L2VPNs" msgstr "Importando L2VPNs" -#: netbox/templates/ipam/routetarget.html:58 +#: templates/ipam/routetarget.html:58 msgid "Exporting L2VPNs" msgstr "Exportando L2VPNs" -#: netbox/templates/ipam/vlan.html:88 +#: templates/ipam/vlan.html:88 msgid "Add a Prefix" msgstr "Adicionar um Prefixo" -#: netbox/templates/ipam/vlangroup.html:18 +#: templates/ipam/vlangroup.html:18 msgid "Add VLAN" msgstr "Adicionar VLAN" -#: netbox/templates/ipam/vrf.html:16 +#: templates/ipam/vrf.html:16 msgid "Route Distinguisher" msgstr "Route Distinguisher" -#: netbox/templates/ipam/vrf.html:29 +#: templates/ipam/vrf.html:29 msgid "Unique IP Space" msgstr "Espaço de IP exclusivo" -#: netbox/templates/login.html:29 -#: netbox/utilities/templates/form_helpers/render_errors.html:7 +#: templates/login.html:29 +#: utilities/templates/form_helpers/render_errors.html:7 msgid "Errors" msgstr "Erros" -#: netbox/templates/login.html:69 +#: templates/login.html:69 msgid "Sign In" msgstr "Entrar" -#: netbox/templates/login.html:77 +#: templates/login.html:77 msgctxt "Denotes an alternative option" msgid "Or" msgstr "Ou" -#: netbox/templates/media_failure.html:7 +#: templates/media_failure.html:7 msgid "Static Media Failure - NetBox" msgstr "Falha de Mídia Estática - NetBox" -#: netbox/templates/media_failure.html:21 +#: templates/media_failure.html:21 msgid "Static Media Failure" msgstr "Falha de Mídia Estática" -#: netbox/templates/media_failure.html:23 +#: templates/media_failure.html:23 msgid "The following static media file failed to load" msgstr "O seguinte arquivo de mídia estática falhou ao carregar" -#: netbox/templates/media_failure.html:26 +#: templates/media_failure.html:26 msgid "Check the following" msgstr "Verifique o seguinte" -#: netbox/templates/media_failure.html:29 +#: templates/media_failure.html:29 msgid "" "manage.py collectstatic was run during the most recent upgrade." " This installs the most recent iteration of each static file into the static" @@ -14134,7 +13411,7 @@ msgstr "" "mais recente. Isso instala a iteração mais recente de cada arquivo estático " "no caminho raiz estático." -#: netbox/templates/media_failure.html:35 +#: templates/media_failure.html:35 #, python-format msgid "" "The HTTP service (e.g. nginx or Apache) is configured to serve files from " @@ -14145,7 +13422,7 @@ msgstr "" "caminho RAIZ_ESTÁTICA. Consulte a " "documentação de instalação para obter mais orientações." -#: netbox/templates/media_failure.html:47 +#: templates/media_failure.html:47 #, python-format msgid "" "The file %(filename)s exists in the static root directory and " @@ -14154,567 +13431,548 @@ msgstr "" "O arquivo %(filename)s existe no diretório raiz estático e pode" " ser lido pelo servidor HTTP." -#: netbox/templates/media_failure.html:55 +#: templates/media_failure.html:55 #, python-format msgid "Click here to attempt loading NetBox again." msgstr "" "Clique aqui para tentar carregar o NetBox " "novamente." -#: netbox/templates/tenancy/contact.html:18 netbox/tenancy/filtersets.py:147 -#: netbox/tenancy/forms/bulk_edit.py:137 -#: netbox/tenancy/forms/filtersets.py:102 netbox/tenancy/forms/forms.py:56 -#: netbox/tenancy/forms/model_forms.py:106 -#: netbox/tenancy/forms/model_forms.py:130 -#: netbox/tenancy/tables/contacts.py:98 +#: templates/tenancy/contact.html:18 tenancy/filtersets.py:147 +#: tenancy/forms/bulk_edit.py:137 tenancy/forms/filtersets.py:102 +#: tenancy/forms/forms.py:56 tenancy/forms/model_forms.py:106 +#: tenancy/forms/model_forms.py:130 tenancy/tables/contacts.py:98 msgid "Contact" msgstr "Contato" -#: netbox/templates/tenancy/contact.html:29 -#: netbox/tenancy/forms/bulk_edit.py:99 +#: templates/tenancy/contact.html:29 tenancy/forms/bulk_edit.py:99 msgid "Title" msgstr "Título" -#: netbox/templates/tenancy/contact.html:33 -#: netbox/tenancy/forms/bulk_edit.py:104 netbox/tenancy/tables/contacts.py:64 +#: templates/tenancy/contact.html:33 tenancy/forms/bulk_edit.py:104 +#: tenancy/tables/contacts.py:64 msgid "Phone" msgstr "Telefone" -#: netbox/templates/tenancy/contactgroup.html:18 -#: netbox/tenancy/forms/forms.py:66 netbox/tenancy/forms/model_forms.py:75 +#: templates/tenancy/contactgroup.html:18 tenancy/forms/forms.py:66 +#: tenancy/forms/model_forms.py:75 msgid "Contact Group" msgstr "Grupo de Contatos" -#: netbox/templates/tenancy/contactgroup.html:50 +#: templates/tenancy/contactgroup.html:50 msgid "Add Contact Group" msgstr "Adicionar Grupo de Contato" -#: netbox/templates/tenancy/contactrole.html:15 -#: netbox/tenancy/filtersets.py:152 netbox/tenancy/forms/forms.py:61 -#: netbox/tenancy/forms/model_forms.py:87 +#: templates/tenancy/contactrole.html:15 tenancy/filtersets.py:152 +#: tenancy/forms/forms.py:61 tenancy/forms/model_forms.py:87 msgid "Contact Role" msgstr "Função dos Contatos" -#: netbox/templates/tenancy/object_contacts.html:9 +#: templates/tenancy/object_contacts.html:9 msgid "Add a contact" msgstr "Adicionar um contato" -#: netbox/templates/tenancy/tenantgroup.html:17 +#: templates/tenancy/tenantgroup.html:17 msgid "Add Tenant" msgstr "Adicionar Inquilino" -#: netbox/templates/tenancy/tenantgroup.html:26 -#: netbox/tenancy/forms/model_forms.py:32 netbox/tenancy/tables/columns.py:51 -#: netbox/tenancy/tables/columns.py:61 +#: templates/tenancy/tenantgroup.html:26 tenancy/forms/model_forms.py:32 +#: tenancy/tables/columns.py:51 tenancy/tables/columns.py:61 msgid "Tenant Group" msgstr "Grupo de Inquilinos" -#: netbox/templates/tenancy/tenantgroup.html:59 +#: templates/tenancy/tenantgroup.html:59 msgid "Add Tenant Group" msgstr "Adicionar Grupo de Inquilinos" -#: netbox/templates/users/group.html:39 netbox/templates/users/user.html:63 +#: templates/users/group.html:39 templates/users/user.html:63 msgid "Assigned Permissions" msgstr "Permissões Atribuídas" -#: netbox/templates/users/objectpermission.html:6 -#: netbox/templates/users/objectpermission.html:14 -#: netbox/users/forms/filtersets.py:66 +#: templates/users/objectpermission.html:6 +#: templates/users/objectpermission.html:14 users/forms/filtersets.py:66 msgid "Permission" msgstr "Permissão" -#: netbox/templates/users/objectpermission.html:34 +#: templates/users/objectpermission.html:34 msgid "View" msgstr "Visualizar" -#: netbox/templates/users/objectpermission.html:52 -#: netbox/users/forms/model_forms.py:315 +#: templates/users/objectpermission.html:52 users/forms/model_forms.py:315 msgid "Constraints" msgstr "Restrições" -#: netbox/templates/users/objectpermission.html:72 +#: templates/users/objectpermission.html:72 msgid "Assigned Users" msgstr "Usuários Atribuídos" -#: netbox/templates/virtualization/cluster.html:52 +#: templates/virtualization/cluster.html:52 msgid "Allocated Resources" msgstr "Recursos Alocados" -#: netbox/templates/virtualization/cluster.html:55 -#: netbox/templates/virtualization/virtualmachine.html:125 +#: templates/virtualization/cluster.html:55 +#: templates/virtualization/virtualmachine.html:125 msgid "Virtual CPUs" msgstr "CPUs Virtuais" -#: netbox/templates/virtualization/cluster.html:59 -#: netbox/templates/virtualization/virtualmachine.html:129 +#: templates/virtualization/cluster.html:59 +#: templates/virtualization/virtualmachine.html:129 msgid "Memory" msgstr "Memória" -#: netbox/templates/virtualization/cluster.html:69 -#: netbox/templates/virtualization/virtualmachine.html:140 +#: templates/virtualization/cluster.html:69 +#: templates/virtualization/virtualmachine.html:140 msgid "Disk Space" msgstr "Espaço em Disco" -#: netbox/templates/virtualization/cluster/base.html:18 +#: templates/virtualization/cluster/base.html:18 msgid "Add Virtual Machine" msgstr "Adicionar Máquina Virtual" -#: netbox/templates/virtualization/cluster/base.html:24 +#: templates/virtualization/cluster/base.html:24 msgid "Assign Device" msgstr "Atribuir Dispositivo" -#: netbox/templates/virtualization/cluster/devices.html:10 +#: templates/virtualization/cluster/devices.html:10 msgid "Remove Selected" msgstr "Remover Selecionado" -#: netbox/templates/virtualization/cluster_add_devices.html:9 +#: templates/virtualization/cluster_add_devices.html:9 #, python-format msgid "Add Device to Cluster %(cluster)s" msgstr "Adicionar Dispositivo ao Cluster %(cluster)s" -#: netbox/templates/virtualization/cluster_add_devices.html:23 +#: templates/virtualization/cluster_add_devices.html:23 msgid "Device Selection" msgstr "Seleção de Dispositivos" -#: netbox/templates/virtualization/cluster_add_devices.html:31 +#: templates/virtualization/cluster_add_devices.html:31 msgid "Add Devices" msgstr "Adicionar Dispositivos" -#: netbox/templates/virtualization/clustergroup.html:10 -#: netbox/templates/virtualization/clustertype.html:10 +#: templates/virtualization/clustergroup.html:10 +#: templates/virtualization/clustertype.html:10 msgid "Add Cluster" msgstr "Adicionar Cluster" -#: netbox/templates/virtualization/clustergroup.html:19 -#: netbox/virtualization/forms/model_forms.py:50 +#: templates/virtualization/clustergroup.html:19 +#: virtualization/forms/model_forms.py:50 msgid "Cluster Group" msgstr "Grupo de Clusters" -#: netbox/templates/virtualization/clustertype.html:19 -#: netbox/templates/virtualization/virtualmachine.html:110 -#: netbox/virtualization/forms/model_forms.py:36 +#: templates/virtualization/clustertype.html:19 +#: templates/virtualization/virtualmachine.html:110 +#: virtualization/forms/model_forms.py:36 msgid "Cluster Type" msgstr "Tipo de Cluster" -#: netbox/templates/virtualization/virtualdisk.html:18 +#: templates/virtualization/virtualdisk.html:18 msgid "Virtual Disk" msgstr "Disco Virtual" -#: netbox/templates/virtualization/virtualmachine.html:122 -#: netbox/virtualization/forms/bulk_edit.py:190 -#: netbox/virtualization/forms/model_forms.py:224 +#: templates/virtualization/virtualmachine.html:122 +#: virtualization/forms/bulk_edit.py:190 +#: virtualization/forms/model_forms.py:224 msgid "Resources" msgstr "Recursos" -#: netbox/templates/virtualization/virtualmachine.html:178 +#: templates/virtualization/virtualmachine.html:178 msgid "Add Virtual Disk" msgstr "Adicionar Disco Virtual" -#: netbox/templates/vpn/ikepolicy.html:10 -#: netbox/templates/vpn/ipsecprofile.html:33 netbox/vpn/tables/crypto.py:166 +#: templates/vpn/ikepolicy.html:10 templates/vpn/ipsecprofile.html:33 +#: vpn/tables/crypto.py:166 msgid "IKE Policy" msgstr "Política da IKE" -#: netbox/templates/vpn/ikepolicy.html:21 +#: templates/vpn/ikepolicy.html:21 msgid "IKE Version" msgstr "Versão da IKE" -#: netbox/templates/vpn/ikepolicy.html:29 +#: templates/vpn/ikepolicy.html:29 msgid "Pre-Shared Key" msgstr "Chave Pré-compartilhada" -#: netbox/templates/vpn/ikepolicy.html:33 -#: netbox/templates/wireless/inc/authentication_attrs.html:20 +#: templates/vpn/ikepolicy.html:33 +#: templates/wireless/inc/authentication_attrs.html:20 msgid "Show Secret" msgstr "Mostrar Senha" -#: netbox/templates/vpn/ikepolicy.html:57 -#: netbox/templates/vpn/ipsecpolicy.html:45 -#: netbox/templates/vpn/ipsecprofile.html:52 -#: netbox/templates/vpn/ipsecprofile.html:77 -#: netbox/vpn/forms/model_forms.py:316 netbox/vpn/forms/model_forms.py:352 -#: netbox/vpn/tables/crypto.py:68 netbox/vpn/tables/crypto.py:134 +#: templates/vpn/ikepolicy.html:57 templates/vpn/ipsecpolicy.html:45 +#: templates/vpn/ipsecprofile.html:52 templates/vpn/ipsecprofile.html:77 +#: vpn/forms/model_forms.py:316 vpn/forms/model_forms.py:352 +#: vpn/tables/crypto.py:68 vpn/tables/crypto.py:134 msgid "Proposals" msgstr "Propostas" -#: netbox/templates/vpn/ikeproposal.html:10 +#: templates/vpn/ikeproposal.html:10 msgid "IKE Proposal" msgstr "Proposta de IKE" -#: netbox/templates/vpn/ikeproposal.html:21 netbox/vpn/forms/bulk_edit.py:97 -#: netbox/vpn/forms/bulk_import.py:145 netbox/vpn/forms/filtersets.py:101 +#: templates/vpn/ikeproposal.html:21 vpn/forms/bulk_edit.py:97 +#: vpn/forms/bulk_import.py:145 vpn/forms/filtersets.py:101 msgid "Authentication method" msgstr "Método de autenticação" -#: netbox/templates/vpn/ikeproposal.html:25 -#: netbox/templates/vpn/ipsecproposal.html:21 -#: netbox/vpn/forms/bulk_edit.py:102 netbox/vpn/forms/bulk_edit.py:172 -#: netbox/vpn/forms/bulk_import.py:149 netbox/vpn/forms/bulk_import.py:195 -#: netbox/vpn/forms/filtersets.py:106 netbox/vpn/forms/filtersets.py:154 +#: templates/vpn/ikeproposal.html:25 templates/vpn/ipsecproposal.html:21 +#: vpn/forms/bulk_edit.py:102 vpn/forms/bulk_edit.py:172 +#: vpn/forms/bulk_import.py:149 vpn/forms/bulk_import.py:195 +#: vpn/forms/filtersets.py:106 vpn/forms/filtersets.py:154 msgid "Encryption algorithm" msgstr "Algoritmo de criptografia" -#: netbox/templates/vpn/ikeproposal.html:29 -#: netbox/templates/vpn/ipsecproposal.html:25 -#: netbox/vpn/forms/bulk_edit.py:107 netbox/vpn/forms/bulk_edit.py:177 -#: netbox/vpn/forms/bulk_import.py:153 netbox/vpn/forms/bulk_import.py:200 -#: netbox/vpn/forms/filtersets.py:111 netbox/vpn/forms/filtersets.py:159 +#: templates/vpn/ikeproposal.html:29 templates/vpn/ipsecproposal.html:25 +#: vpn/forms/bulk_edit.py:107 vpn/forms/bulk_edit.py:177 +#: vpn/forms/bulk_import.py:153 vpn/forms/bulk_import.py:200 +#: vpn/forms/filtersets.py:111 vpn/forms/filtersets.py:159 msgid "Authentication algorithm" msgstr "Algoritmo de autenticação" -#: netbox/templates/vpn/ikeproposal.html:33 +#: templates/vpn/ikeproposal.html:33 msgid "DH group" msgstr "Grupo DH" -#: netbox/templates/vpn/ikeproposal.html:37 -#: netbox/templates/vpn/ipsecproposal.html:29 -#: netbox/vpn/forms/bulk_edit.py:182 netbox/vpn/models/crypto.py:146 +#: templates/vpn/ikeproposal.html:37 templates/vpn/ipsecproposal.html:29 +#: vpn/forms/bulk_edit.py:182 vpn/models/crypto.py:146 msgid "SA lifetime (seconds)" msgstr "Vida útil da Associação de Segurança (segundos)" -#: netbox/templates/vpn/ipsecpolicy.html:10 -#: netbox/templates/vpn/ipsecprofile.html:66 netbox/vpn/tables/crypto.py:170 +#: templates/vpn/ipsecpolicy.html:10 templates/vpn/ipsecprofile.html:66 +#: vpn/tables/crypto.py:170 msgid "IPSec Policy" msgstr "Política de IPsec" -#: netbox/templates/vpn/ipsecpolicy.html:21 netbox/vpn/forms/bulk_edit.py:210 -#: netbox/vpn/models/crypto.py:193 +#: templates/vpn/ipsecpolicy.html:21 vpn/forms/bulk_edit.py:210 +#: vpn/models/crypto.py:193 msgid "PFS group" msgstr "Grupo PFS" -#: netbox/templates/vpn/ipsecprofile.html:10 -#: netbox/vpn/forms/model_forms.py:54 +#: templates/vpn/ipsecprofile.html:10 vpn/forms/model_forms.py:54 msgid "IPSec Profile" msgstr "Perfil IPsec" -#: netbox/templates/vpn/ipsecprofile.html:89 netbox/vpn/tables/crypto.py:137 +#: templates/vpn/ipsecprofile.html:89 vpn/tables/crypto.py:137 msgid "PFS Group" msgstr "Grupo PFS" -#: netbox/templates/vpn/ipsecproposal.html:10 +#: templates/vpn/ipsecproposal.html:10 msgid "IPSec Proposal" msgstr "Proposta de IPsec" -#: netbox/templates/vpn/ipsecproposal.html:33 -#: netbox/vpn/forms/bulk_edit.py:186 netbox/vpn/models/crypto.py:152 +#: templates/vpn/ipsecproposal.html:33 vpn/forms/bulk_edit.py:186 +#: vpn/models/crypto.py:152 msgid "SA lifetime (KB)" msgstr "Vida útil da Security Association (KB)" -#: netbox/templates/vpn/l2vpn.html:11 -#: netbox/templates/vpn/l2vpntermination.html:9 +#: templates/vpn/l2vpn.html:11 templates/vpn/l2vpntermination.html:9 msgid "L2VPN Attributes" msgstr "Atributos da L2VPN" -#: netbox/templates/vpn/l2vpn.html:60 netbox/templates/vpn/tunnel.html:76 +#: templates/vpn/l2vpn.html:60 templates/vpn/tunnel.html:76 msgid "Add a Termination" msgstr "Adicionar uma Terminação" -#: netbox/templates/vpn/tunnel.html:9 +#: templates/vpn/tunnel.html:9 msgid "Add Termination" msgstr "Adicionar Terminação" -#: netbox/templates/vpn/tunnel.html:37 netbox/vpn/forms/bulk_edit.py:49 -#: netbox/vpn/forms/bulk_import.py:48 netbox/vpn/forms/filtersets.py:57 +#: templates/vpn/tunnel.html:37 vpn/forms/bulk_edit.py:49 +#: vpn/forms/bulk_import.py:48 vpn/forms/filtersets.py:57 msgid "Encapsulation" msgstr "Encapsulamento" -#: netbox/templates/vpn/tunnel.html:41 netbox/vpn/forms/bulk_edit.py:55 -#: netbox/vpn/forms/bulk_import.py:53 netbox/vpn/forms/filtersets.py:64 -#: netbox/vpn/models/crypto.py:250 netbox/vpn/tables/tunnels.py:51 +#: templates/vpn/tunnel.html:41 vpn/forms/bulk_edit.py:55 +#: vpn/forms/bulk_import.py:53 vpn/forms/filtersets.py:64 +#: vpn/models/crypto.py:250 vpn/tables/tunnels.py:51 msgid "IPSec profile" msgstr "Perfil IPsec" -#: netbox/templates/vpn/tunnel.html:45 netbox/vpn/forms/bulk_edit.py:69 -#: netbox/vpn/forms/filtersets.py:68 +#: templates/vpn/tunnel.html:45 vpn/forms/bulk_edit.py:69 +#: vpn/forms/filtersets.py:68 msgid "Tunnel ID" msgstr "ID do Túnel" -#: netbox/templates/vpn/tunnelgroup.html:14 +#: templates/vpn/tunnelgroup.html:14 msgid "Add Tunnel" msgstr "Adicionar Túnel" -#: netbox/templates/vpn/tunnelgroup.html:23 netbox/vpn/forms/model_forms.py:36 -#: netbox/vpn/forms/model_forms.py:49 +#: templates/vpn/tunnelgroup.html:23 vpn/forms/model_forms.py:36 +#: vpn/forms/model_forms.py:49 msgid "Tunnel Group" msgstr "Grupo de Túneis" -#: netbox/templates/vpn/tunneltermination.html:10 +#: templates/vpn/tunneltermination.html:10 msgid "Tunnel Termination" msgstr "Terminação do Túnel" -#: netbox/templates/vpn/tunneltermination.html:35 -#: netbox/vpn/forms/bulk_import.py:107 netbox/vpn/forms/model_forms.py:102 -#: netbox/vpn/forms/model_forms.py:138 netbox/vpn/forms/model_forms.py:247 -#: netbox/vpn/tables/tunnels.py:101 +#: templates/vpn/tunneltermination.html:35 vpn/forms/bulk_import.py:107 +#: vpn/forms/model_forms.py:102 vpn/forms/model_forms.py:138 +#: vpn/forms/model_forms.py:247 vpn/tables/tunnels.py:101 msgid "Outside IP" msgstr "IP Externo" -#: netbox/templates/vpn/tunneltermination.html:51 +#: templates/vpn/tunneltermination.html:51 msgid "Peer Terminations" msgstr "Pares de Terminações" -#: netbox/templates/wireless/inc/authentication_attrs.html:12 +#: templates/wireless/inc/authentication_attrs.html:12 msgid "Cipher" msgstr "Cifra" -#: netbox/templates/wireless/inc/authentication_attrs.html:16 +#: templates/wireless/inc/authentication_attrs.html:16 msgid "PSK" msgstr "PSK" -#: netbox/templates/wireless/inc/wirelesslink_interface.html:35 -#: netbox/templates/wireless/inc/wirelesslink_interface.html:45 +#: templates/wireless/inc/wirelesslink_interface.html:35 +#: templates/wireless/inc/wirelesslink_interface.html:45 msgctxt "Abbreviation for megahertz" msgid "MHz" msgstr "MHz" -#: netbox/templates/wireless/wirelesslan.html:57 +#: templates/wireless/wirelesslan.html:57 msgid "Attached Interfaces" msgstr "Interfaces Anexadas" -#: netbox/templates/wireless/wirelesslangroup.html:17 +#: templates/wireless/wirelesslangroup.html:17 msgid "Add Wireless LAN" msgstr "Adicionar Rede Wireless" -#: netbox/templates/wireless/wirelesslangroup.html:26 -#: netbox/wireless/forms/model_forms.py:28 +#: templates/wireless/wirelesslangroup.html:26 +#: wireless/forms/model_forms.py:28 msgid "Wireless LAN Group" msgstr "Grupo de Redes Wireless" -#: netbox/templates/wireless/wirelesslangroup.html:59 +#: templates/wireless/wirelesslangroup.html:59 msgid "Add Wireless LAN Group" msgstr "Adicionar Grupo de Redes Wireless" -#: netbox/templates/wireless/wirelesslink.html:14 +#: templates/wireless/wirelesslink.html:14 msgid "Link Properties" msgstr "Propriedades do Link" -#: netbox/templates/wireless/wirelesslink.html:38 -#: netbox/wireless/forms/bulk_edit.py:129 -#: netbox/wireless/forms/filtersets.py:102 -#: netbox/wireless/forms/model_forms.py:165 +#: templates/wireless/wirelesslink.html:38 wireless/forms/bulk_edit.py:129 +#: wireless/forms/filtersets.py:102 wireless/forms/model_forms.py:165 msgid "Distance" msgstr "Distância" -#: netbox/tenancy/filtersets.py:28 +#: tenancy/filtersets.py:28 msgid "Parent contact group (ID)" msgstr "Grupo de contatos principal (ID)" -#: netbox/tenancy/filtersets.py:34 +#: tenancy/filtersets.py:34 msgid "Parent contact group (slug)" msgstr "Grupo de contatos principal (slug)" -#: netbox/tenancy/filtersets.py:40 netbox/tenancy/filtersets.py:67 -#: netbox/tenancy/filtersets.py:110 +#: tenancy/filtersets.py:40 tenancy/filtersets.py:67 tenancy/filtersets.py:110 msgid "Contact group (ID)" msgstr "Grupo de contatos (ID)" -#: netbox/tenancy/filtersets.py:47 netbox/tenancy/filtersets.py:74 -#: netbox/tenancy/filtersets.py:117 +#: tenancy/filtersets.py:47 tenancy/filtersets.py:74 tenancy/filtersets.py:117 msgid "Contact group (slug)" msgstr "Grupo de contatos (slug)" -#: netbox/tenancy/filtersets.py:104 +#: tenancy/filtersets.py:104 msgid "Contact (ID)" msgstr "Contato (ID)" -#: netbox/tenancy/filtersets.py:121 +#: tenancy/filtersets.py:121 msgid "Contact role (ID)" msgstr "Função do contato (ID)" -#: netbox/tenancy/filtersets.py:127 +#: tenancy/filtersets.py:127 msgid "Contact role (slug)" msgstr "Função do contato (slug)" -#: netbox/tenancy/filtersets.py:158 +#: tenancy/filtersets.py:158 msgid "Contact group" msgstr "Grupo de contatos" -#: netbox/tenancy/filtersets.py:169 +#: tenancy/filtersets.py:169 msgid "Parent tenant group (ID)" msgstr "Grupo de inquilinos principal (ID)" -#: netbox/tenancy/filtersets.py:175 +#: tenancy/filtersets.py:175 msgid "Parent tenant group (slug)" msgstr "Grupo de inquilinos principal (slug)" -#: netbox/tenancy/filtersets.py:181 netbox/tenancy/filtersets.py:201 +#: tenancy/filtersets.py:181 tenancy/filtersets.py:201 msgid "Tenant group (ID)" msgstr "Grupo de inquilinos (ID)" -#: netbox/tenancy/filtersets.py:234 +#: tenancy/filtersets.py:234 msgid "Tenant Group (ID)" msgstr "Grupo de Inquilinos (ID)" -#: netbox/tenancy/filtersets.py:241 +#: tenancy/filtersets.py:241 msgid "Tenant Group (slug)" msgstr "Grupo de inquilinos (slug)" -#: netbox/tenancy/forms/bulk_edit.py:66 +#: tenancy/forms/bulk_edit.py:66 msgid "Desciption" msgstr "Descrição" -#: netbox/tenancy/forms/bulk_import.py:101 +#: tenancy/forms/bulk_import.py:101 msgid "Assigned contact" msgstr "Contato atribuído" -#: netbox/tenancy/models/contacts.py:32 +#: tenancy/models/contacts.py:32 msgid "contact group" msgstr "grupo de contatos" -#: netbox/tenancy/models/contacts.py:33 +#: tenancy/models/contacts.py:33 msgid "contact groups" msgstr "grupos de contatos" -#: netbox/tenancy/models/contacts.py:48 +#: tenancy/models/contacts.py:48 msgid "contact role" msgstr "função do contato" -#: netbox/tenancy/models/contacts.py:49 +#: tenancy/models/contacts.py:49 msgid "contact roles" msgstr "funções do contato" -#: netbox/tenancy/models/contacts.py:68 +#: tenancy/models/contacts.py:68 msgid "title" msgstr "título" -#: netbox/tenancy/models/contacts.py:73 +#: tenancy/models/contacts.py:73 msgid "phone" msgstr "telefone" -#: netbox/tenancy/models/contacts.py:78 +#: tenancy/models/contacts.py:78 msgid "email" msgstr "e-mail" -#: netbox/tenancy/models/contacts.py:87 +#: tenancy/models/contacts.py:87 msgid "link" msgstr "link" -#: netbox/tenancy/models/contacts.py:103 +#: tenancy/models/contacts.py:103 msgid "contact" msgstr "contato" -#: netbox/tenancy/models/contacts.py:104 +#: tenancy/models/contacts.py:104 msgid "contacts" msgstr "contatos" -#: netbox/tenancy/models/contacts.py:153 +#: tenancy/models/contacts.py:153 msgid "contact assignment" msgstr "atribuição do contato" -#: netbox/tenancy/models/contacts.py:154 +#: tenancy/models/contacts.py:154 msgid "contact assignments" msgstr "atribuições do contato" -#: netbox/tenancy/models/contacts.py:170 +#: tenancy/models/contacts.py:170 #, python-brace-format msgid "Contacts cannot be assigned to this object type ({type})." msgstr "Os contatos não podem ser atribuídos a este tipo de objeto ({type})." -#: netbox/tenancy/models/tenants.py:32 +#: tenancy/models/tenants.py:32 msgid "tenant group" msgstr "grupo de inquilinos" -#: netbox/tenancy/models/tenants.py:33 +#: tenancy/models/tenants.py:33 msgid "tenant groups" msgstr "grupos de inquilinos" -#: netbox/tenancy/models/tenants.py:70 +#: tenancy/models/tenants.py:70 msgid "Tenant name must be unique per group." msgstr "O nome do inquilino deve ser exclusivo por grupo." -#: netbox/tenancy/models/tenants.py:80 +#: tenancy/models/tenants.py:80 msgid "Tenant slug must be unique per group." msgstr "Slug do inquilino deve ser exclusivo por grupo." -#: netbox/tenancy/models/tenants.py:88 +#: tenancy/models/tenants.py:88 msgid "tenant" msgstr "inquilino" -#: netbox/tenancy/models/tenants.py:89 +#: tenancy/models/tenants.py:89 msgid "tenants" msgstr "inquilinos" -#: netbox/tenancy/tables/contacts.py:112 +#: tenancy/tables/contacts.py:112 msgid "Contact Title" msgstr "Título do Contato" -#: netbox/tenancy/tables/contacts.py:116 +#: tenancy/tables/contacts.py:116 msgid "Contact Phone" msgstr "Telefone de Contato" -#: netbox/tenancy/tables/contacts.py:121 +#: tenancy/tables/contacts.py:121 msgid "Contact Email" msgstr "E-mail de Contato" -#: netbox/tenancy/tables/contacts.py:125 +#: tenancy/tables/contacts.py:125 msgid "Contact Address" msgstr "Endereço de Contato" -#: netbox/tenancy/tables/contacts.py:129 +#: tenancy/tables/contacts.py:129 msgid "Contact Link" msgstr "Link de Contato" -#: netbox/tenancy/tables/contacts.py:133 +#: tenancy/tables/contacts.py:133 msgid "Contact Description" msgstr "Descrição do Contato" -#: netbox/users/filtersets.py:33 netbox/users/filtersets.py:73 +#: users/filtersets.py:33 users/filtersets.py:73 msgid "Permission (ID)" msgstr "Permissão (ID)" -#: netbox/users/filtersets.py:38 netbox/users/filtersets.py:78 +#: users/filtersets.py:38 users/filtersets.py:78 msgid "Notification group (ID)" msgstr "Grupo de notificação (ID)" -#: netbox/users/forms/bulk_edit.py:26 +#: users/forms/bulk_edit.py:26 msgid "First name" msgstr "Primeiro nome" -#: netbox/users/forms/bulk_edit.py:31 +#: users/forms/bulk_edit.py:31 msgid "Last name" msgstr "Último nome" -#: netbox/users/forms/bulk_edit.py:43 +#: users/forms/bulk_edit.py:43 msgid "Staff status" msgstr "Status de staff" -#: netbox/users/forms/bulk_edit.py:48 +#: users/forms/bulk_edit.py:48 msgid "Superuser status" msgstr "Superusuário" -#: netbox/users/forms/bulk_import.py:41 +#: users/forms/bulk_import.py:41 msgid "If no key is provided, one will be generated automatically." msgstr "Se nenhuma chave for fornecida, uma será gerada automaticamente." -#: netbox/users/forms/filtersets.py:51 netbox/users/tables.py:42 +#: users/forms/filtersets.py:51 users/tables.py:42 msgid "Is Staff" msgstr "Staff" -#: netbox/users/forms/filtersets.py:58 netbox/users/tables.py:45 +#: users/forms/filtersets.py:58 users/tables.py:45 msgid "Is Superuser" msgstr "É Superusuário" -#: netbox/users/forms/filtersets.py:91 netbox/users/tables.py:86 +#: users/forms/filtersets.py:91 users/tables.py:86 msgid "Can View" msgstr "Pode Visualizar" -#: netbox/users/forms/filtersets.py:98 netbox/users/tables.py:89 +#: users/forms/filtersets.py:98 users/tables.py:89 msgid "Can Add" msgstr "Pode Adicionar" -#: netbox/users/forms/filtersets.py:105 netbox/users/tables.py:92 +#: users/forms/filtersets.py:105 users/tables.py:92 msgid "Can Change" msgstr "Pode Alterar" -#: netbox/users/forms/filtersets.py:112 netbox/users/tables.py:95 +#: users/forms/filtersets.py:112 users/tables.py:95 msgid "Can Delete" msgstr "Pode Excluir" -#: netbox/users/forms/model_forms.py:62 +#: users/forms/model_forms.py:62 msgid "User Interface" msgstr "Interface de Usuário" -#: netbox/users/forms/model_forms.py:114 +#: users/forms/model_forms.py:114 msgid "" "Keys must be at least 40 characters in length. Be sure to record " "your key prior to submitting this form, as it may no longer be " @@ -14724,7 +13982,7 @@ msgstr "" "salvar sua chave antes de enviar este formulário, pois ela não será" " mais acessível depois que o token for criado." -#: netbox/users/forms/model_forms.py:126 +#: users/forms/model_forms.py:126 msgid "" "Allowed IPv4/IPv6 networks from where the token can be used. Leave blank for" " no restrictions. Example: " @@ -14734,31 +13992,31 @@ msgstr "" "para nenhuma restrição. Exemplo: 10.1.1.0/24.192.168.10.16/32, 2001:db" " 8:1: :/64" -#: netbox/users/forms/model_forms.py:175 +#: users/forms/model_forms.py:175 msgid "Confirm password" msgstr "Confirme a senha" -#: netbox/users/forms/model_forms.py:178 +#: users/forms/model_forms.py:178 msgid "Enter the same password as before, for verification." msgstr "Digite a senha novamente." -#: netbox/users/forms/model_forms.py:227 +#: users/forms/model_forms.py:227 msgid "Passwords do not match! Please check your input and try again." msgstr "As senhas não coincidem! Verifique e tente novamente." -#: netbox/users/forms/model_forms.py:294 +#: users/forms/model_forms.py:294 msgid "Additional actions" msgstr "Ações adicionais" -#: netbox/users/forms/model_forms.py:297 +#: users/forms/model_forms.py:297 msgid "Actions granted in addition to those listed above" msgstr "Ações concedidas além das listadas acima" -#: netbox/users/forms/model_forms.py:313 +#: users/forms/model_forms.py:313 msgid "Objects" msgstr "Objetos" -#: netbox/users/forms/model_forms.py:325 +#: users/forms/model_forms.py:325 msgid "" "JSON expression of a queryset filter that will return only permitted " "objects. Leave null to match all objects of this type. A list of multiple " @@ -14768,79 +14026,79 @@ msgstr "" "permitidos. Deixe em nulo para corresponder a todos os objetos deste tipo. " "Uma lista de vários objetos resultará em uma operação lógica \"OR\"." -#: netbox/users/forms/model_forms.py:364 +#: users/forms/model_forms.py:364 msgid "At least one action must be selected." msgstr "Ao menos uma ação deve ser selecionada." -#: netbox/users/forms/model_forms.py:382 +#: users/forms/model_forms.py:382 #, python-brace-format msgid "Invalid filter for {model}: {error}" msgstr "Filtro inválido para {model}: {error}" -#: netbox/users/models/permissions.py:39 +#: users/models/permissions.py:39 msgid "The list of actions granted by this permission" msgstr "A lista de ações concedidas por esta permissão" -#: netbox/users/models/permissions.py:44 +#: users/models/permissions.py:44 msgid "constraints" msgstr "restrições" -#: netbox/users/models/permissions.py:45 +#: users/models/permissions.py:45 msgid "" "Queryset filter matching the applicable objects of the selected type(s)" msgstr "" "Filtro queryset que corresponde aos objetos aplicáveis do(s) tipo(s) " "selecionado(s)" -#: netbox/users/models/permissions.py:52 +#: users/models/permissions.py:52 msgid "permission" msgstr "permissão" -#: netbox/users/models/permissions.py:53 netbox/users/models/users.py:47 +#: users/models/permissions.py:53 users/models/users.py:47 msgid "permissions" msgstr "permissões" -#: netbox/users/models/preferences.py:29 netbox/users/models/preferences.py:30 +#: users/models/preferences.py:29 users/models/preferences.py:30 msgid "user preferences" msgstr "preferências do usuário" -#: netbox/users/models/preferences.py:97 +#: users/models/preferences.py:97 #, python-brace-format msgid "Key '{path}' is a leaf node; cannot assign new keys" msgstr "Chave '{path}'é um nó folha; não é possível atribuir novas chaves" -#: netbox/users/models/preferences.py:109 +#: users/models/preferences.py:109 #, python-brace-format msgid "Key '{path}' is a dictionary; cannot assign a non-dictionary value" msgstr "" "Chave '{path}'é um dicionário; não pode atribuir um valor que não seja do " "dicionário" -#: netbox/users/models/tokens.py:36 +#: users/models/tokens.py:36 msgid "expires" msgstr "expira" -#: netbox/users/models/tokens.py:41 +#: users/models/tokens.py:41 msgid "last used" msgstr "usado pela última vez" -#: netbox/users/models/tokens.py:46 +#: users/models/tokens.py:46 msgid "key" msgstr "chave" -#: netbox/users/models/tokens.py:52 +#: users/models/tokens.py:52 msgid "write enabled" msgstr "escrita habilitada" -#: netbox/users/models/tokens.py:54 +#: users/models/tokens.py:54 msgid "Permit create/update/delete operations using this key" msgstr "Permitir operações de criação/atualização/exclusão usando esta chave" -#: netbox/users/models/tokens.py:65 +#: users/models/tokens.py:65 msgid "allowed IPs" msgstr "IPs permitidos" -#: netbox/users/models/tokens.py:67 +#: users/models/tokens.py:67 msgid "" "Allowed IPv4/IPv6 networks from where the token can be used. Leave blank for" " no restrictions. Ex: \"10.1.1.0/24, 192.168.10.16/32, 2001:DB8:1::/64\"" @@ -14849,42 +14107,42 @@ msgstr "" "para nenhuma restrição. Ex: “10.1.1.0/24, 192.168.10.16/32, 2001:DB 8:1: " ":/64\"" -#: netbox/users/models/tokens.py:75 +#: users/models/tokens.py:75 msgid "token" msgstr "token" -#: netbox/users/models/tokens.py:76 +#: users/models/tokens.py:76 msgid "tokens" msgstr "tokens" -#: netbox/users/models/users.py:57 netbox/vpn/models/crypto.py:42 +#: users/models/users.py:57 vpn/models/crypto.py:42 msgid "group" msgstr "grupo" -#: netbox/users/models/users.py:92 +#: users/models/users.py:92 msgid "user" msgstr "usuário" -#: netbox/users/models/users.py:104 +#: users/models/users.py:104 msgid "A user with this username already exists." msgstr "Nome de usuário já existente." -#: netbox/users/tables.py:98 +#: users/tables.py:98 msgid "Custom Actions" msgstr "Ações Personalizadas" -#: netbox/utilities/api.py:153 +#: utilities/api.py:153 #, python-brace-format msgid "Related object not found using the provided attributes: {params}" msgstr "" "Objeto relacionado não encontrado usando os atributos fornecidos: {params}" -#: netbox/utilities/api.py:156 +#: utilities/api.py:156 #, python-brace-format msgid "Multiple objects match the provided attributes: {params}" msgstr "Vários objetos correspondem aos atributos fornecidos: {params}" -#: netbox/utilities/api.py:168 +#: utilities/api.py:168 #, python-brace-format msgid "" "Related objects must be referenced by numeric ID or by dictionary of " @@ -14893,42 +14151,42 @@ msgstr "" "Objetos relacionados devem ser referenciados por uma ID numérica ou por um " "dicionário de atributos. Recebeu um valor desconhecido: {value}" -#: netbox/utilities/api.py:177 +#: utilities/api.py:177 #, python-brace-format msgid "Related object not found using the provided numeric ID: {id}" msgstr "" "Objeto relacionado não encontrado usando a ID numérica fornecida: {id}" -#: netbox/utilities/choices.py:19 +#: utilities/choices.py:19 #, python-brace-format msgid "{name} has a key defined but CHOICES is not a list" msgstr "{name} possui uma chave definida, mas CHOICES não é uma lista" -#: netbox/utilities/conversion.py:19 +#: utilities/conversion.py:19 msgid "Weight must be a positive number" msgstr "Peso deve ser um número positivo" -#: netbox/utilities/conversion.py:21 +#: utilities/conversion.py:21 #, python-brace-format msgid "Invalid value '{weight}' for weight (must be a number)" msgstr "Valor '{weight}'para peso é inválido (deve ser um número)" -#: netbox/utilities/conversion.py:32 netbox/utilities/conversion.py:62 +#: utilities/conversion.py:32 utilities/conversion.py:62 #, python-brace-format msgid "Unknown unit {unit}. Must be one of the following: {valid_units}" msgstr "" "Unidade {unit} é desconhecida. Deve ser um dos seguintes: {valid_units}" -#: netbox/utilities/conversion.py:45 +#: utilities/conversion.py:45 msgid "Length must be a positive number" msgstr "Comprimento deve ser um número positivo" -#: netbox/utilities/conversion.py:47 +#: utilities/conversion.py:47 #, python-brace-format msgid "Invalid value '{length}' for length (must be a number)" msgstr "Valor '{length}'para comprimento é inválido (deve ser um número)" -#: netbox/utilities/error_handlers.py:31 +#: utilities/error_handlers.py:31 #, python-brace-format msgid "" "Unable to delete {objects}. {count} dependent objects were " @@ -14937,15 +14195,15 @@ msgstr "" "Não é possível excluir {objects}. {count} objetos " "dependentes foram encontrados: " -#: netbox/utilities/error_handlers.py:33 +#: utilities/error_handlers.py:33 msgid "More than 50" msgstr "Mais que 50" -#: netbox/utilities/fields.py:30 +#: utilities/fields.py:30 msgid "RGB color in hexadecimal. Example: " msgstr "Cor RGB em hexadecimal. Exemplo:" -#: netbox/utilities/fields.py:159 +#: utilities/fields.py:159 #, python-format msgid "" "%s(%r) is invalid. to_model parameter to CounterCacheField must be a string " @@ -14954,7 +14212,7 @@ msgstr "" "%s(%r) é inválido. O parâmetro to_model para CounterCacheField deve ser uma " "string no formato 'app.model'" -#: netbox/utilities/fields.py:169 +#: utilities/fields.py:169 #, python-format msgid "" "%s(%r) is invalid. to_field parameter to CounterCacheField must be a string " @@ -14963,39 +14221,39 @@ msgstr "" "%s(%r) é inválido. O parâmetro to_field para CounterCacheField deve ser uma " "string no formato 'field'" -#: netbox/utilities/forms/bulk_import.py:23 +#: utilities/forms/bulk_import.py:23 msgid "Enter object data in CSV, JSON or YAML format." msgstr "Insira os dados do objeto no formato CSV, JSON ou YAML." -#: netbox/utilities/forms/bulk_import.py:36 +#: utilities/forms/bulk_import.py:36 msgid "CSV delimiter" msgstr "Delimitador CSV" -#: netbox/utilities/forms/bulk_import.py:37 +#: utilities/forms/bulk_import.py:37 msgid "The character which delimits CSV fields. Applies only to CSV format." msgstr "" "O caractere que delimita os campos CSV. Aplica-se somente ao formato CSV." -#: netbox/utilities/forms/bulk_import.py:51 +#: utilities/forms/bulk_import.py:51 msgid "Form data must be empty when uploading/selecting a file." msgstr "" "Os dados do formulário devem estar vazios ao carregar/selecionar um arquivo." -#: netbox/utilities/forms/bulk_import.py:80 +#: utilities/forms/bulk_import.py:80 #, python-brace-format msgid "Unknown data format: {format}" msgstr "Formato de dados desconhecido: {format}" -#: netbox/utilities/forms/bulk_import.py:100 +#: utilities/forms/bulk_import.py:100 msgid "Unable to detect data format. Please specify." msgstr "" "Não foi possível detectar o formato dos dados. Por favor, especifique." -#: netbox/utilities/forms/bulk_import.py:123 +#: utilities/forms/bulk_import.py:123 msgid "Invalid CSV delimiter" msgstr "Delimitador CSV inválido" -#: netbox/utilities/forms/bulk_import.py:167 +#: utilities/forms/bulk_import.py:167 msgid "" "Invalid YAML data. Data must be in the form of multiple documents, or a " "single document comprising a list of dictionaries." @@ -15003,7 +14261,7 @@ msgstr "" "Dados YAML inválidos. Os dados devem estar na forma de vários documentos ou " "de um único documento contendo uma lista de dicionários." -#: netbox/utilities/forms/fields/array.py:20 +#: utilities/forms/fields/array.py:20 #, python-brace-format msgid "" "Invalid list ({value}). Must be numeric and ranges must be in ascending " @@ -15012,7 +14270,7 @@ msgstr "" "Lista inválida ({value}). Deve ser numérica e os intervalos devem estar em " "ordem crescente." -#: netbox/utilities/forms/fields/array.py:40 +#: utilities/forms/fields/array.py:40 msgid "" "Specify one or more numeric ranges separated by commas. Example: " "1-5,20-30" @@ -15020,7 +14278,7 @@ msgstr "" "Especifique um ou mais intervalos numéricos separados por vírgulas. Exemplo:" " 1-5,20-30" -#: netbox/utilities/forms/fields/array.py:47 +#: utilities/forms/fields/array.py:47 #, python-brace-format msgid "" "Invalid ranges ({value}). Must be a range of integers in ascending order." @@ -15028,18 +14286,17 @@ msgstr "" "Intervalos inválidos ({value}). Deve ser um intervalo de inteiros em ordem " "ascendente." -#: netbox/utilities/forms/fields/csv.py:44 +#: utilities/forms/fields/csv.py:44 #, python-brace-format msgid "Invalid value for a multiple choice field: {value}" msgstr "Valor inválido para um campo de múltipla escolha: {value}" -#: netbox/utilities/forms/fields/csv.py:57 -#: netbox/utilities/forms/fields/csv.py:78 +#: utilities/forms/fields/csv.py:57 utilities/forms/fields/csv.py:78 #, python-format msgid "Object not found: %(value)s" msgstr "Objeto não encontrado: %(value)s" -#: netbox/utilities/forms/fields/csv.py:65 +#: utilities/forms/fields/csv.py:65 #, python-brace-format msgid "" "\"{value}\" is not a unique value for this field; multiple objects were " @@ -15048,20 +14305,20 @@ msgstr "" "“{value}“não é um valor exclusivo para este campo; vários objetos foram " "encontrados" -#: netbox/utilities/forms/fields/csv.py:69 +#: utilities/forms/fields/csv.py:69 #, python-brace-format msgid "\"{field_name}\" is an invalid accessor field name." msgstr "“{field_name}“é um nome de campo de acesso inválido." -#: netbox/utilities/forms/fields/csv.py:101 +#: utilities/forms/fields/csv.py:101 msgid "Object type must be specified as \".\"" msgstr "O tipo de objeto deve ser especificado como”.“" -#: netbox/utilities/forms/fields/csv.py:105 +#: utilities/forms/fields/csv.py:105 msgid "Invalid object type" msgstr "Tipo de objeto inválido" -#: netbox/utilities/forms/fields/expandable.py:25 +#: utilities/forms/fields/expandable.py:25 msgid "" "Alphanumeric ranges are supported for bulk creation. Mixed cases and types " "within a single range are not supported (example: " @@ -15071,7 +14328,7 @@ msgstr "" " mistos dentro de um único intervalo não são suportados (exemplo: [ge," " xe] -0/0/ [0-9])." -#: netbox/utilities/forms/fields/expandable.py:46 +#: utilities/forms/fields/expandable.py:46 msgid "" "Specify a numeric range to create multiple IPs.
Example: " "192.0.2.[1,5,100-254]/24" @@ -15079,7 +14336,7 @@ msgstr "" "Especifique um intervalo numérico para criar vários IPs.
Exemplo: " "192,0.2. [1,5,100-254] /24" -#: netbox/utilities/forms/fields/fields.py:31 +#: utilities/forms/fields/fields.py:31 #, python-brace-format msgid "" " Uso de sintaxe Markdown é suportada" -#: netbox/utilities/forms/fields/fields.py:48 +#: utilities/forms/fields/fields.py:48 msgid "URL-friendly unique shorthand" msgstr "Abreviatura exclusiva da URL amigável" -#: netbox/utilities/forms/fields/fields.py:101 +#: utilities/forms/fields/fields.py:101 msgid "Enter context data in JSON format." msgstr "" "Inserir dados de contexto no formato JSON." -#: netbox/utilities/forms/fields/fields.py:124 +#: utilities/forms/fields/fields.py:124 msgid "MAC address must be in EUI-48 format" msgstr "O endereço MAC deve estar no formato EUI-48" -#: netbox/utilities/forms/forms.py:52 +#: utilities/forms/forms.py:52 msgid "Use regular expressions" msgstr "Usar expressões regulares" -#: netbox/utilities/forms/forms.py:75 +#: utilities/forms/forms.py:75 msgid "" "Numeric ID of an existing object to update (if not creating a new object)" msgstr "" "ID numérica de um objeto existente a ser atualizado (se não estiver criando " "um novo objeto)" -#: netbox/utilities/forms/forms.py:92 +#: utilities/forms/forms.py:92 #, python-brace-format msgid "Unrecognized header: {name}" msgstr "Cabeçalho não reconhecido: {name}" -#: netbox/utilities/forms/forms.py:118 +#: utilities/forms/forms.py:118 msgid "Available Columns" msgstr "Colunas Disponíveis" -#: netbox/utilities/forms/forms.py:126 +#: utilities/forms/forms.py:126 msgid "Selected Columns" msgstr "Colunas Selecionadas" -#: netbox/utilities/forms/mixins.py:44 +#: utilities/forms/mixins.py:44 msgid "" "This object has been modified since the form was rendered. Please consult " "the object's change log for details." @@ -15133,13 +14390,13 @@ msgstr "" "Este objeto foi modificado desde que o formulário foi renderizado. Consulte " "o changelog do objeto para obter mais detalhes." -#: netbox/utilities/forms/utils.py:42 netbox/utilities/forms/utils.py:68 -#: netbox/utilities/forms/utils.py:85 netbox/utilities/forms/utils.py:87 +#: utilities/forms/utils.py:42 utilities/forms/utils.py:68 +#: utilities/forms/utils.py:85 utilities/forms/utils.py:87 #, python-brace-format msgid "Range \"{value}\" is invalid." msgstr "Intervalo ”{value}“ é inválido." -#: netbox/utilities/forms/utils.py:74 +#: utilities/forms/utils.py:74 #, python-brace-format msgid "" "Invalid range: Ending value ({end}) must be greater than beginning value " @@ -15148,71 +14405,71 @@ msgstr "" "Intervalo inválido: valor final ({end}) deve ser maior que o valor inicial " "({begin})." -#: netbox/utilities/forms/utils.py:232 +#: utilities/forms/utils.py:232 #, python-brace-format msgid "Duplicate or conflicting column header for \"{field}\"" msgstr "Cabeçalho de coluna duplicado ou conflitante com ”{field}“" -#: netbox/utilities/forms/utils.py:238 +#: utilities/forms/utils.py:238 #, python-brace-format msgid "Duplicate or conflicting column header for \"{header}\"" msgstr "Cabeçalho de coluna duplicado ou conflitante com ”{header}“" -#: netbox/utilities/forms/utils.py:247 +#: utilities/forms/utils.py:247 #, python-brace-format msgid "Row {row}: Expected {count_expected} columns but found {count_found}" msgstr "" "Linha {row}: Esperado(s) {count_expected} coluna(s), mas encontrado(s) " "{count_found}" -#: netbox/utilities/forms/utils.py:270 +#: utilities/forms/utils.py:270 #, python-brace-format msgid "Unexpected column header \"{field}\" found." msgstr "Cabeçalho de coluna inesperado ”{field}“ encontrado." -#: netbox/utilities/forms/utils.py:272 +#: utilities/forms/utils.py:272 #, python-brace-format msgid "Column \"{field}\" is not a related object; cannot use dots" msgstr "Coluna ”{field}“ não é um objeto relacionado; não pode usar pontos" -#: netbox/utilities/forms/utils.py:276 +#: utilities/forms/utils.py:276 #, python-brace-format msgid "Invalid related object attribute for column \"{field}\": {to_field}" msgstr "" "Atributo de objeto relacionado inválido para a coluna ”{field}“: {to_field}" -#: netbox/utilities/forms/utils.py:284 +#: utilities/forms/utils.py:284 #, python-brace-format msgid "Required column header \"{header}\" not found." msgstr "Cabeçalho de coluna obrigatório ”{header}“ não encontrado." -#: netbox/utilities/forms/widgets/apiselect.py:124 +#: utilities/forms/widgets/apiselect.py:124 #, python-brace-format msgid "Missing required value for dynamic query param: '{dynamic_params}'" msgstr "" "Valor necessário ausente para o parâmetro de consulta dinâmica: " "'{dynamic_params}'" -#: netbox/utilities/forms/widgets/apiselect.py:141 +#: utilities/forms/widgets/apiselect.py:141 #, python-brace-format msgid "Missing required value for static query param: '{static_params}'" msgstr "" "Valor necessário ausente para o parâmetro de consulta estática: " "'{static_params}'" -#: netbox/utilities/password_validation.py:13 +#: utilities/password_validation.py:13 msgid "Password must have at least one numeral." msgstr "Senha deve possuir ao menos um número." -#: netbox/utilities/password_validation.py:18 +#: utilities/password_validation.py:18 msgid "Password must have at least one uppercase letter." msgstr "Senha deve possuir ao menos uma letra maiúscula." -#: netbox/utilities/password_validation.py:23 +#: utilities/password_validation.py:23 msgid "Password must have at least one lowercase letter." msgstr "Senha deve possuir ao menos uma letra minúscula." -#: netbox/utilities/password_validation.py:27 +#: utilities/password_validation.py:27 msgid "" "Your password must contain at least one numeral, one uppercase letter and " "one lowercase letter." @@ -15220,7 +14477,7 @@ msgstr "" "Sua senha deve possuir ao menos um número, uma letra maíuscula e uma letra " "minúscula." -#: netbox/utilities/permissions.py:42 +#: utilities/permissions.py:42 #, python-brace-format msgid "" "Invalid permission name: {name}. Must be in the format " @@ -15229,125 +14486,125 @@ msgstr "" "Nome de permissão inválido: {name}. Deve estar no formato " "._" -#: netbox/utilities/permissions.py:60 +#: utilities/permissions.py:60 #, python-brace-format msgid "Unknown app_label/model_name for {name}" msgstr "app_label/model_name desconhecido para {name}" -#: netbox/utilities/request.py:76 +#: utilities/request.py:76 #, python-brace-format msgid "Invalid IP address set for {header}: {ip}" msgstr "Endereço IP inválido definido para {header}: {ip}" -#: netbox/utilities/tables.py:47 +#: utilities/tables.py:47 #, python-brace-format msgid "A column named {name} is already defined for table {table_name}" msgstr "Uma coluna chamada {name} já está definida para a tabela {table_name}" -#: netbox/utilities/templates/builtins/customfield_value.html:30 +#: utilities/templates/builtins/customfield_value.html:30 msgid "Not defined" msgstr "Não definido" -#: netbox/utilities/templates/buttons/bookmark.html:9 +#: utilities/templates/buttons/bookmark.html:9 msgid "Unbookmark" msgstr "Desfavoritar" -#: netbox/utilities/templates/buttons/bookmark.html:13 +#: utilities/templates/buttons/bookmark.html:13 msgid "Bookmark" msgstr "Favorito" -#: netbox/utilities/templates/buttons/clone.html:4 +#: utilities/templates/buttons/clone.html:4 msgid "Clone" msgstr "Clonar" -#: netbox/utilities/templates/buttons/export.html:7 +#: utilities/templates/buttons/export.html:7 msgid "Current View" msgstr "Visualização Atual" -#: netbox/utilities/templates/buttons/export.html:8 +#: utilities/templates/buttons/export.html:8 msgid "All Data" msgstr "Todos os Dados" -#: netbox/utilities/templates/buttons/export.html:28 +#: utilities/templates/buttons/export.html:28 msgid "Add export template" msgstr "Adicionar modelo de exportação" -#: netbox/utilities/templates/buttons/import.html:4 +#: utilities/templates/buttons/import.html:4 msgid "Import" msgstr "Importar" -#: netbox/utilities/templates/buttons/subscribe.html:10 +#: utilities/templates/buttons/subscribe.html:10 msgid "Unsubscribe" msgstr "Cancelar inscrição" -#: netbox/utilities/templates/buttons/subscribe.html:14 +#: utilities/templates/buttons/subscribe.html:14 msgid "Subscribe" msgstr "Inscrever" -#: netbox/utilities/templates/form_helpers/render_field.html:41 +#: utilities/templates/form_helpers/render_field.html:41 msgid "Copy to clipboard" msgstr "Copiar para área de transferência" -#: netbox/utilities/templates/form_helpers/render_field.html:57 +#: 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 +#: utilities/templates/form_helpers/render_field.html:70 msgid "Set Null" msgstr "Definir como Nulo" -#: netbox/utilities/templates/helpers/applied_filters.html:11 +#: utilities/templates/helpers/applied_filters.html:11 msgid "Clear all" msgstr "Limpar tudo" -#: netbox/utilities/templates/helpers/table_config_form.html:8 +#: utilities/templates/helpers/table_config_form.html:8 msgid "Table Configuration" msgstr "Configuração da Tabela" -#: netbox/utilities/templates/helpers/table_config_form.html:31 +#: utilities/templates/helpers/table_config_form.html:31 msgid "Move Up" msgstr "Mover para Cima" -#: netbox/utilities/templates/helpers/table_config_form.html:34 +#: utilities/templates/helpers/table_config_form.html:34 msgid "Move Down" msgstr "Mover para Baixo" -#: netbox/utilities/templates/navigation/menu.html:14 +#: utilities/templates/navigation/menu.html:14 msgid "Search…" msgstr "Buscar..." -#: netbox/utilities/templates/navigation/menu.html:14 +#: utilities/templates/navigation/menu.html:14 msgid "Search NetBox" msgstr "Buscar no Netbox" -#: netbox/utilities/templates/widgets/apiselect.html:7 +#: utilities/templates/widgets/apiselect.html:7 msgid "Open selector" msgstr "Abrir seletor" -#: netbox/utilities/templates/widgets/markdown_input.html:6 +#: utilities/templates/widgets/markdown_input.html:6 msgid "Write" msgstr "Escrita" -#: netbox/utilities/testing/views.py:632 +#: utilities/testing/views.py:632 msgid "The test must define csv_update_data." msgstr "O teste deve definir csv_update_data." -#: netbox/utilities/validators.py:65 +#: utilities/validators.py:65 #, python-brace-format msgid "{value} is not a valid regular expression." msgstr "{value} não é uma expressão regular válida." -#: netbox/utilities/views.py:57 +#: utilities/views.py:57 #, python-brace-format msgid "{self.__class__.__name__} must implement get_required_permission()" msgstr "{self.__class__.__name__} deve implementar get_required_permission ()" -#: netbox/utilities/views.py:93 +#: utilities/views.py:93 #, python-brace-format msgid "{class_name} must implement get_required_permission()" msgstr "{class_name} deve implementar get_required_permission ()" -#: netbox/utilities/views.py:117 +#: utilities/views.py:117 #, python-brace-format msgid "" "{class_name} has no queryset defined. ObjectPermissionRequiredMixin may only" @@ -15356,63 +14613,61 @@ msgstr "" "{class_name} não possui queryset definido. ObjectPermissionRequiredMixin só " "pode ser usado em visualizações que definem um queryset básico." -#: netbox/virtualization/filtersets.py:79 +#: virtualization/filtersets.py:79 msgid "Parent group (ID)" msgstr "Grupo principal (ID)" -#: netbox/virtualization/filtersets.py:85 +#: virtualization/filtersets.py:85 msgid "Parent group (slug)" msgstr "Grupo principal (slug)" -#: netbox/virtualization/filtersets.py:89 -#: netbox/virtualization/filtersets.py:141 +#: virtualization/filtersets.py:89 virtualization/filtersets.py:141 msgid "Cluster type (ID)" msgstr "Tipo de cluster (ID)" -#: netbox/virtualization/filtersets.py:151 -#: netbox/virtualization/filtersets.py:271 +#: virtualization/filtersets.py:151 virtualization/filtersets.py:271 msgid "Cluster (ID)" msgstr "Cluster (ID)" -#: netbox/virtualization/forms/bulk_edit.py:166 -#: netbox/virtualization/models/virtualmachines.py:115 +#: virtualization/forms/bulk_edit.py:166 +#: virtualization/models/virtualmachines.py:115 msgid "vCPUs" msgstr "vCPUs" -#: netbox/virtualization/forms/bulk_edit.py:170 +#: virtualization/forms/bulk_edit.py:170 msgid "Memory (MB)" msgstr "Memória (MB)" -#: netbox/virtualization/forms/bulk_edit.py:174 +#: virtualization/forms/bulk_edit.py:174 msgid "Disk (GB)" msgstr "Disco (GB)" -#: netbox/virtualization/forms/bulk_edit.py:334 -#: netbox/virtualization/forms/filtersets.py:251 +#: virtualization/forms/bulk_edit.py:334 +#: virtualization/forms/filtersets.py:251 msgid "Size (GB)" msgstr "Tamanho (GB)" -#: netbox/virtualization/forms/bulk_import.py:44 +#: virtualization/forms/bulk_import.py:44 msgid "Type of cluster" msgstr "Tipo de cluster" -#: netbox/virtualization/forms/bulk_import.py:51 +#: virtualization/forms/bulk_import.py:51 msgid "Assigned cluster group" msgstr "Grupo de clusters atribuído" -#: netbox/virtualization/forms/bulk_import.py:96 +#: virtualization/forms/bulk_import.py:96 msgid "Assigned cluster" msgstr "Cluster atribuído" -#: netbox/virtualization/forms/bulk_import.py:103 +#: virtualization/forms/bulk_import.py:103 msgid "Assigned device within cluster" msgstr "Dispositivo atribuído dentro do cluster" -#: netbox/virtualization/forms/filtersets.py:183 +#: virtualization/forms/filtersets.py:183 msgid "Serial number" msgstr "Número de série" -#: netbox/virtualization/forms/model_forms.py:153 +#: virtualization/forms/model_forms.py:153 #, python-brace-format msgid "" "{device} belongs to a different site ({device_site}) than the cluster " @@ -15421,49 +14676,49 @@ msgstr "" "{device} pertence ao site ({device_site}), diferente do que pertence o " "cluster ({cluster_site})" -#: netbox/virtualization/forms/model_forms.py:192 +#: virtualization/forms/model_forms.py:192 msgid "Optionally pin this VM to a specific host device within the cluster" msgstr "Opcionalmente, vincule esta VM a um host específico dentro do cluster" -#: netbox/virtualization/forms/model_forms.py:221 +#: virtualization/forms/model_forms.py:221 msgid "Site/Cluster" msgstr "Site/Cluster" -#: netbox/virtualization/forms/model_forms.py:244 +#: virtualization/forms/model_forms.py:244 msgid "Disk size is managed via the attachment of virtual disks." msgstr "" "O tamanho do disco é gerenciado por meio da conexão de discos virtuais." -#: netbox/virtualization/forms/model_forms.py:372 -#: netbox/virtualization/tables/virtualmachines.py:111 +#: virtualization/forms/model_forms.py:372 +#: virtualization/tables/virtualmachines.py:111 msgid "Disk" msgstr "Disco" -#: netbox/virtualization/models/clusters.py:25 +#: virtualization/models/clusters.py:25 msgid "cluster type" msgstr "tipo de cluster" -#: netbox/virtualization/models/clusters.py:26 +#: virtualization/models/clusters.py:26 msgid "cluster types" msgstr "tipos de cluster" -#: netbox/virtualization/models/clusters.py:45 +#: virtualization/models/clusters.py:45 msgid "cluster group" msgstr "grupo de clusters" -#: netbox/virtualization/models/clusters.py:46 +#: virtualization/models/clusters.py:46 msgid "cluster groups" msgstr "grupos de clusters" -#: netbox/virtualization/models/clusters.py:121 +#: virtualization/models/clusters.py:121 msgid "cluster" msgstr "grupo" -#: netbox/virtualization/models/clusters.py:122 +#: virtualization/models/clusters.py:122 msgid "clusters" msgstr "clusters" -#: netbox/virtualization/models/clusters.py:141 +#: virtualization/models/clusters.py:141 #, python-brace-format msgid "" "{count} devices are assigned as hosts for this cluster but are not in site " @@ -15472,42 +14727,42 @@ msgstr "" "{count} dispositivo(s) está/estão atribuído(s) como host(s) para este " "cluster, mas não está/estão no site {site}" -#: netbox/virtualization/models/virtualmachines.py:123 +#: virtualization/models/virtualmachines.py:123 msgid "memory (MB)" msgstr "memória (MB)" -#: netbox/virtualization/models/virtualmachines.py:128 +#: virtualization/models/virtualmachines.py:128 msgid "disk (MB)" msgstr "disco (MB)" -#: netbox/virtualization/models/virtualmachines.py:166 +#: virtualization/models/virtualmachines.py:166 msgid "Virtual machine name must be unique per cluster." msgstr "O nome da máquina virtual deve ser exclusivo por cluster." -#: netbox/virtualization/models/virtualmachines.py:169 +#: virtualization/models/virtualmachines.py:169 msgid "virtual machine" msgstr "máquina virtual" -#: netbox/virtualization/models/virtualmachines.py:170 +#: virtualization/models/virtualmachines.py:170 msgid "virtual machines" msgstr "máquinas virtuais" -#: netbox/virtualization/models/virtualmachines.py:184 +#: virtualization/models/virtualmachines.py:184 msgid "A virtual machine must be assigned to a site and/or cluster." msgstr "Uma máquina virtual deve ser associada a um site e/ou cluster." -#: netbox/virtualization/models/virtualmachines.py:191 +#: virtualization/models/virtualmachines.py:191 #, python-brace-format msgid "" "The selected cluster ({cluster}) is not assigned to this site ({site})." msgstr "" "O cluster selecionado ({cluster}) não está atribuído a este site ({site})." -#: netbox/virtualization/models/virtualmachines.py:198 +#: virtualization/models/virtualmachines.py:198 msgid "Must specify a cluster when assigning a host device." msgstr "É necessário especificar um cluster ao atribuir um host." -#: netbox/virtualization/models/virtualmachines.py:203 +#: virtualization/models/virtualmachines.py:203 #, python-brace-format msgid "" "The selected device ({device}) is not assigned to this cluster ({cluster})." @@ -15515,7 +14770,7 @@ msgstr "" "O dispositivo selecionado ({device}) não está associado a este cluster " "({cluster})." -#: netbox/virtualization/models/virtualmachines.py:215 +#: virtualization/models/virtualmachines.py:215 #, python-brace-format msgid "" "The specified disk size ({size}) must match the aggregate size of assigned " @@ -15524,17 +14779,17 @@ msgstr "" "O tamanho do disco especificado ({size}) deve corresponder ao tamanho " "agregado dos discos virtuais associados ({total_size})." -#: netbox/virtualization/models/virtualmachines.py:229 +#: virtualization/models/virtualmachines.py:229 #, python-brace-format msgid "Must be an IPv{family} address. ({ip} is an IPv{version} address.)" msgstr "Deve ser um endereço IPv{family}. ({ip} é um endereço IPv{version}.)" -#: netbox/virtualization/models/virtualmachines.py:238 +#: virtualization/models/virtualmachines.py:238 #, python-brace-format msgid "The specified IP address ({ip}) is not assigned to this VM." msgstr "O endereço IP especificado ({ip}) não está associado a esta VM." -#: netbox/virtualization/models/virtualmachines.py:396 +#: virtualization/models/virtualmachines.py:396 #, python-brace-format msgid "" "The selected parent interface ({parent}) belongs to a different virtual " @@ -15543,7 +14798,7 @@ msgstr "" "A interface pai selecionada ({parent}) pertence a uma máquina virtual " "diferente ({virtual_machine})." -#: netbox/virtualization/models/virtualmachines.py:411 +#: virtualization/models/virtualmachines.py:411 #, python-brace-format msgid "" "The selected bridge interface ({bridge}) belongs to a different virtual " @@ -15552,7 +14807,7 @@ msgstr "" "A interface bridge selecionada ({bridge}) pertence a uma máquina virtual " "diferente ({virtual_machine})." -#: netbox/virtualization/models/virtualmachines.py:422 +#: virtualization/models/virtualmachines.py:422 #, python-brace-format msgid "" "The untagged VLAN ({untagged_vlan}) must belong to the same site as the " @@ -15561,400 +14816,393 @@ msgstr "" "A VLAN não tagueada ({untagged_vlan}) deve pertencer ao mesmo site da " "máquina virtual pai da interface ou deve ser global." -#: netbox/virtualization/models/virtualmachines.py:434 +#: virtualization/models/virtualmachines.py:434 msgid "size (MB)" msgstr "tamanho (MB)" -#: netbox/virtualization/models/virtualmachines.py:438 +#: virtualization/models/virtualmachines.py:438 msgid "virtual disk" msgstr "disco virtual" -#: netbox/virtualization/models/virtualmachines.py:439 +#: virtualization/models/virtualmachines.py:439 msgid "virtual disks" msgstr "discos virtuais" -#: netbox/virtualization/views.py:275 +#: virtualization/views.py:275 #, python-brace-format msgid "Added {count} devices to cluster {cluster}" msgstr "Adicionado(s) {count} dispositivo(s) para agrupar {cluster}" -#: netbox/virtualization/views.py:310 +#: virtualization/views.py:310 #, python-brace-format msgid "Removed {count} devices from cluster {cluster}" msgstr "Removido(s) {count} dispositivo(s) do cluster {cluster}" -#: netbox/vpn/choices.py:31 +#: vpn/choices.py:31 msgid "IPsec - Transport" msgstr "IPsec - Transporte" -#: netbox/vpn/choices.py:32 +#: vpn/choices.py:32 msgid "IPsec - Tunnel" msgstr "IPsec - Túnel" -#: netbox/vpn/choices.py:33 +#: vpn/choices.py:33 msgid "IP-in-IP" msgstr "IP-in-IP" -#: netbox/vpn/choices.py:34 +#: vpn/choices.py:34 msgid "GRE" msgstr "GRE" -#: netbox/vpn/choices.py:56 +#: vpn/choices.py:56 msgid "Hub" msgstr "Hub" -#: netbox/vpn/choices.py:57 +#: vpn/choices.py:57 msgid "Spoke" msgstr "Spoke" -#: netbox/vpn/choices.py:80 +#: vpn/choices.py:80 msgid "Aggressive" msgstr "Agressivo" -#: netbox/vpn/choices.py:81 +#: vpn/choices.py:81 msgid "Main" msgstr "Principal" -#: netbox/vpn/choices.py:92 +#: vpn/choices.py:92 msgid "Pre-shared keys" msgstr "Chaves pré-compartilhadas" -#: netbox/vpn/choices.py:93 +#: vpn/choices.py:93 msgid "Certificates" msgstr "Certificados" -#: netbox/vpn/choices.py:94 +#: vpn/choices.py:94 msgid "RSA signatures" msgstr "Assinaturas RSA" -#: netbox/vpn/choices.py:95 +#: vpn/choices.py:95 msgid "DSA signatures" msgstr "Assinaturas DSA" -#: netbox/vpn/choices.py:178 netbox/vpn/choices.py:179 -#: netbox/vpn/choices.py:180 netbox/vpn/choices.py:181 -#: netbox/vpn/choices.py:182 netbox/vpn/choices.py:183 -#: netbox/vpn/choices.py:184 netbox/vpn/choices.py:185 -#: netbox/vpn/choices.py:186 netbox/vpn/choices.py:187 -#: netbox/vpn/choices.py:188 netbox/vpn/choices.py:189 -#: netbox/vpn/choices.py:190 netbox/vpn/choices.py:191 -#: netbox/vpn/choices.py:192 netbox/vpn/choices.py:193 -#: netbox/vpn/choices.py:194 netbox/vpn/choices.py:195 -#: netbox/vpn/choices.py:196 netbox/vpn/choices.py:197 -#: netbox/vpn/choices.py:198 netbox/vpn/choices.py:199 -#: netbox/vpn/choices.py:200 netbox/vpn/choices.py:201 +#: vpn/choices.py:178 vpn/choices.py:179 vpn/choices.py:180 vpn/choices.py:181 +#: vpn/choices.py:182 vpn/choices.py:183 vpn/choices.py:184 vpn/choices.py:185 +#: vpn/choices.py:186 vpn/choices.py:187 vpn/choices.py:188 vpn/choices.py:189 +#: vpn/choices.py:190 vpn/choices.py:191 vpn/choices.py:192 vpn/choices.py:193 +#: vpn/choices.py:194 vpn/choices.py:195 vpn/choices.py:196 vpn/choices.py:197 +#: vpn/choices.py:198 vpn/choices.py:199 vpn/choices.py:200 vpn/choices.py:201 #, python-brace-format msgid "Group {n}" msgstr "Grupo {n}" -#: netbox/vpn/choices.py:243 +#: vpn/choices.py:243 msgid "Ethernet Private LAN" msgstr "Ethernet Private LAN" -#: netbox/vpn/choices.py:244 +#: vpn/choices.py:244 msgid "Ethernet Virtual Private LAN" msgstr "Ethernet Virtual Private LAN" -#: netbox/vpn/choices.py:247 +#: vpn/choices.py:247 msgid "Ethernet Private Tree" msgstr "Ethernet Private Tree" -#: netbox/vpn/choices.py:248 +#: vpn/choices.py:248 msgid "Ethernet Virtual Private Tree" msgstr "Árvore privada virtual Ethernet" -#: netbox/vpn/filtersets.py:41 +#: vpn/filtersets.py:41 msgid "Tunnel group (ID)" msgstr "Grupo de túneis (ID)" -#: netbox/vpn/filtersets.py:47 +#: vpn/filtersets.py:47 msgid "Tunnel group (slug)" msgstr "Grupo de túneis (slug)" -#: netbox/vpn/filtersets.py:54 +#: vpn/filtersets.py:54 msgid "IPSec profile (ID)" msgstr "Perfil de IPsec (ID)" -#: netbox/vpn/filtersets.py:60 +#: vpn/filtersets.py:60 msgid "IPSec profile (name)" msgstr "Perfil de IPsec (nome)" -#: netbox/vpn/filtersets.py:81 +#: vpn/filtersets.py:81 msgid "Tunnel (ID)" msgstr "Túnel (ID)" -#: netbox/vpn/filtersets.py:87 +#: vpn/filtersets.py:87 msgid "Tunnel (name)" msgstr "Túnel (nome)" -#: netbox/vpn/filtersets.py:118 +#: vpn/filtersets.py:118 msgid "Outside IP (ID)" msgstr "IP Externo (ID)" -#: netbox/vpn/filtersets.py:130 netbox/vpn/filtersets.py:263 +#: vpn/filtersets.py:130 vpn/filtersets.py:263 msgid "IKE policy (ID)" msgstr "Política da IKE (ID)" -#: netbox/vpn/filtersets.py:136 netbox/vpn/filtersets.py:269 +#: vpn/filtersets.py:136 vpn/filtersets.py:269 msgid "IKE policy (name)" msgstr "Política da IKE (nome)" -#: netbox/vpn/filtersets.py:200 netbox/vpn/filtersets.py:273 +#: vpn/filtersets.py:200 vpn/filtersets.py:273 msgid "IPSec policy (ID)" msgstr "Política de IPsec (ID)" -#: netbox/vpn/filtersets.py:206 netbox/vpn/filtersets.py:279 +#: vpn/filtersets.py:206 vpn/filtersets.py:279 msgid "IPSec policy (name)" msgstr "Política de IPsec (nome)" -#: netbox/vpn/filtersets.py:348 +#: vpn/filtersets.py:348 msgid "L2VPN (slug)" msgstr "L2VPN (slug)" -#: netbox/vpn/filtersets.py:412 +#: vpn/filtersets.py:412 msgid "VM Interface (ID)" msgstr "Interface da VM (ID)" -#: netbox/vpn/filtersets.py:418 +#: vpn/filtersets.py:418 msgid "VLAN (name)" msgstr "VLAN (nome)" -#: netbox/vpn/forms/bulk_edit.py:45 netbox/vpn/forms/bulk_import.py:42 -#: netbox/vpn/forms/filtersets.py:54 +#: vpn/forms/bulk_edit.py:45 vpn/forms/bulk_import.py:42 +#: vpn/forms/filtersets.py:54 msgid "Tunnel group" msgstr "Grupo de túneis" -#: netbox/vpn/forms/bulk_edit.py:117 netbox/vpn/models/crypto.py:47 +#: vpn/forms/bulk_edit.py:117 vpn/models/crypto.py:47 msgid "SA lifetime" msgstr "Vida útil da Security Association" -#: netbox/vpn/forms/bulk_edit.py:151 netbox/wireless/forms/bulk_edit.py:79 -#: netbox/wireless/forms/bulk_edit.py:126 -#: netbox/wireless/forms/filtersets.py:64 -#: netbox/wireless/forms/filtersets.py:98 +#: vpn/forms/bulk_edit.py:151 wireless/forms/bulk_edit.py:79 +#: wireless/forms/bulk_edit.py:126 wireless/forms/filtersets.py:64 +#: wireless/forms/filtersets.py:98 msgid "Pre-shared key" msgstr "Chave pré-compartilhada" -#: netbox/vpn/forms/bulk_edit.py:237 netbox/vpn/forms/bulk_import.py:239 -#: netbox/vpn/forms/filtersets.py:199 netbox/vpn/forms/model_forms.py:370 -#: netbox/vpn/models/crypto.py:104 +#: vpn/forms/bulk_edit.py:237 vpn/forms/bulk_import.py:239 +#: vpn/forms/filtersets.py:199 vpn/forms/model_forms.py:370 +#: vpn/models/crypto.py:104 msgid "IKE policy" msgstr "Política da IKE" -#: netbox/vpn/forms/bulk_edit.py:242 netbox/vpn/forms/bulk_import.py:244 -#: netbox/vpn/forms/filtersets.py:204 netbox/vpn/forms/model_forms.py:374 -#: netbox/vpn/models/crypto.py:209 +#: vpn/forms/bulk_edit.py:242 vpn/forms/bulk_import.py:244 +#: vpn/forms/filtersets.py:204 vpn/forms/model_forms.py:374 +#: vpn/models/crypto.py:209 msgid "IPSec policy" msgstr "Política de IPsec" -#: netbox/vpn/forms/bulk_import.py:50 +#: vpn/forms/bulk_import.py:50 msgid "Tunnel encapsulation" msgstr "Encapsulamento do túnel" -#: netbox/vpn/forms/bulk_import.py:83 +#: vpn/forms/bulk_import.py:83 msgid "Operational role" msgstr "Função operacional" -#: netbox/vpn/forms/bulk_import.py:90 +#: vpn/forms/bulk_import.py:90 msgid "Parent device of assigned interface" msgstr "Dispositivo pai da interface associada" -#: netbox/vpn/forms/bulk_import.py:97 +#: vpn/forms/bulk_import.py:97 msgid "Parent VM of assigned interface" msgstr "VM principal da interface pai" -#: netbox/vpn/forms/bulk_import.py:104 +#: vpn/forms/bulk_import.py:104 msgid "Device or virtual machine interface" msgstr "Interface de dispositivo ou máquina virtual" -#: netbox/vpn/forms/bulk_import.py:183 +#: vpn/forms/bulk_import.py:183 msgid "IKE proposal(s)" msgstr "Proposta(s) de IKE" -#: netbox/vpn/forms/bulk_import.py:215 netbox/vpn/models/crypto.py:197 +#: vpn/forms/bulk_import.py:215 vpn/models/crypto.py:197 msgid "Diffie-Hellman group for Perfect Forward Secrecy" msgstr "Grupo Diffie-Hellman para Perfect Forward Secrecy" -#: netbox/vpn/forms/bulk_import.py:222 +#: vpn/forms/bulk_import.py:222 msgid "IPSec proposal(s)" msgstr "Proposta(s) de IPsec" -#: netbox/vpn/forms/bulk_import.py:236 +#: vpn/forms/bulk_import.py:236 msgid "IPSec protocol" msgstr "Protocolo IPsec" -#: netbox/vpn/forms/bulk_import.py:266 +#: vpn/forms/bulk_import.py:266 msgid "L2VPN type" msgstr "Tipo de L2VPN" -#: netbox/vpn/forms/bulk_import.py:287 +#: vpn/forms/bulk_import.py:287 msgid "Parent device (for interface)" msgstr "Dispositivo pai (para interface)" -#: netbox/vpn/forms/bulk_import.py:294 +#: vpn/forms/bulk_import.py:294 msgid "Parent virtual machine (for interface)" msgstr "Máquina virtual pai (para interface)" -#: netbox/vpn/forms/bulk_import.py:301 +#: vpn/forms/bulk_import.py:301 msgid "Assigned interface (device or VM)" msgstr "Interface atribuída (dispositivo ou VM)" -#: netbox/vpn/forms/bulk_import.py:334 +#: vpn/forms/bulk_import.py:334 msgid "Cannot import device and VM interface terminations simultaneously." msgstr "" "Não é possível importar terminações de dispositivo e de interface de VM " "simultaneamente." -#: netbox/vpn/forms/bulk_import.py:336 +#: vpn/forms/bulk_import.py:336 msgid "Each termination must specify either an interface or a VLAN." msgstr "Cada terminação deve especificar uma interface ou uma VLAN." -#: netbox/vpn/forms/bulk_import.py:338 +#: vpn/forms/bulk_import.py:338 msgid "Cannot assign both an interface and a VLAN." msgstr "Não é possível associar tanto uma interface e uma VLAN." -#: netbox/vpn/forms/filtersets.py:130 +#: vpn/forms/filtersets.py:130 msgid "IKE version" msgstr "Versão da IKE" -#: netbox/vpn/forms/filtersets.py:142 netbox/vpn/forms/filtersets.py:175 -#: netbox/vpn/forms/model_forms.py:298 netbox/vpn/forms/model_forms.py:334 +#: vpn/forms/filtersets.py:142 vpn/forms/filtersets.py:175 +#: vpn/forms/model_forms.py:298 vpn/forms/model_forms.py:334 msgid "Proposal" msgstr "Proposta" -#: netbox/vpn/forms/filtersets.py:251 +#: vpn/forms/filtersets.py:251 msgid "Assigned Object Type" msgstr "Tipo de Objeto Atribuído" -#: netbox/vpn/forms/model_forms.py:95 netbox/vpn/forms/model_forms.py:130 -#: netbox/vpn/forms/model_forms.py:240 netbox/vpn/tables/tunnels.py:91 +#: vpn/forms/model_forms.py:95 vpn/forms/model_forms.py:130 +#: vpn/forms/model_forms.py:240 vpn/tables/tunnels.py:91 msgid "Tunnel interface" msgstr "Interface do túnel" -#: netbox/vpn/forms/model_forms.py:150 +#: vpn/forms/model_forms.py:150 msgid "First Termination" msgstr "Primeira Terminação" -#: netbox/vpn/forms/model_forms.py:153 +#: vpn/forms/model_forms.py:153 msgid "Second Termination" msgstr "Segunda Terminação" -#: netbox/vpn/forms/model_forms.py:197 +#: vpn/forms/model_forms.py:197 msgid "This parameter is required when defining a termination." msgstr "Este parâmetro é necessário ao definir uma terminação." -#: netbox/vpn/forms/model_forms.py:320 netbox/vpn/forms/model_forms.py:356 +#: vpn/forms/model_forms.py:320 vpn/forms/model_forms.py:356 msgid "Policy" msgstr "Política" -#: netbox/vpn/forms/model_forms.py:487 +#: vpn/forms/model_forms.py:487 msgid "A termination must specify an interface or VLAN." msgstr "Uma terminação deve especificar uma interface ou VLAN." -#: netbox/vpn/forms/model_forms.py:489 +#: vpn/forms/model_forms.py:489 msgid "" "A termination can only have one terminating object (an interface or VLAN)." msgstr "" "Uma terminação só pode ter um objeto de terminação (uma interface ou VLAN)." -#: netbox/vpn/models/crypto.py:33 +#: vpn/models/crypto.py:33 msgid "encryption algorithm" msgstr "algoritmo de criptografia" -#: netbox/vpn/models/crypto.py:37 +#: vpn/models/crypto.py:37 msgid "authentication algorithm" msgstr "algoritmo de autenticação" -#: netbox/vpn/models/crypto.py:44 +#: vpn/models/crypto.py:44 msgid "Diffie-Hellman group ID" msgstr "ID do grupo Diffie-Hellman" -#: netbox/vpn/models/crypto.py:50 +#: vpn/models/crypto.py:50 msgid "Security association lifetime (in seconds)" msgstr "Vida útil da Security Association (em segundos)" -#: netbox/vpn/models/crypto.py:59 +#: vpn/models/crypto.py:59 msgid "IKE proposal" msgstr "Proposta de IKE" -#: netbox/vpn/models/crypto.py:60 +#: vpn/models/crypto.py:60 msgid "IKE proposals" msgstr "Propostas de IKE" -#: netbox/vpn/models/crypto.py:76 +#: vpn/models/crypto.py:76 msgid "version" msgstr "versão" -#: netbox/vpn/models/crypto.py:88 netbox/vpn/models/crypto.py:190 +#: vpn/models/crypto.py:88 vpn/models/crypto.py:190 msgid "proposals" msgstr "propostas" -#: netbox/vpn/models/crypto.py:91 netbox/wireless/models.py:39 +#: vpn/models/crypto.py:91 wireless/models.py:39 msgid "pre-shared key" msgstr "chave pré-compartilhada" -#: netbox/vpn/models/crypto.py:105 +#: vpn/models/crypto.py:105 msgid "IKE policies" msgstr "Políticas de IKE" -#: netbox/vpn/models/crypto.py:118 +#: vpn/models/crypto.py:118 msgid "Mode is required for selected IKE version" msgstr "Modo é necessário para a versão da IKE selecionada" -#: netbox/vpn/models/crypto.py:122 +#: vpn/models/crypto.py:122 msgid "Mode cannot be used for selected IKE version" msgstr "Modo não pode ser usado para a versão da IKE selecionada" -#: netbox/vpn/models/crypto.py:136 +#: vpn/models/crypto.py:136 msgid "encryption" msgstr "criptografia" -#: netbox/vpn/models/crypto.py:141 +#: vpn/models/crypto.py:141 msgid "authentication" msgstr "autenticação" -#: netbox/vpn/models/crypto.py:149 +#: vpn/models/crypto.py:149 msgid "Security association lifetime (seconds)" msgstr "Vida útil da Security Association (segundos)" -#: netbox/vpn/models/crypto.py:155 +#: vpn/models/crypto.py:155 msgid "Security association lifetime (in kilobytes)" msgstr "Vida útil da Security Association (em kilobytes)" -#: netbox/vpn/models/crypto.py:164 +#: vpn/models/crypto.py:164 msgid "IPSec proposal" msgstr "Proposta de IPsec" -#: netbox/vpn/models/crypto.py:165 +#: vpn/models/crypto.py:165 msgid "IPSec proposals" msgstr "Propostas de IPsec" -#: netbox/vpn/models/crypto.py:178 +#: vpn/models/crypto.py:178 msgid "Encryption and/or authentication algorithm must be defined" msgstr "O algoritmo de criptografia e/ou autenticação deve ser definido" -#: netbox/vpn/models/crypto.py:210 +#: vpn/models/crypto.py:210 msgid "IPSec policies" msgstr "Políticas de IPsec" -#: netbox/vpn/models/crypto.py:251 +#: vpn/models/crypto.py:251 msgid "IPSec profiles" msgstr "Perfis de IPsec" -#: netbox/vpn/models/l2vpn.py:116 +#: vpn/models/l2vpn.py:116 msgid "L2VPN termination" msgstr "Terminação L2VPN" -#: netbox/vpn/models/l2vpn.py:117 +#: vpn/models/l2vpn.py:117 msgid "L2VPN terminations" msgstr "Terminações L2VPN" -#: netbox/vpn/models/l2vpn.py:135 +#: vpn/models/l2vpn.py:135 #, python-brace-format msgid "L2VPN Termination already assigned ({assigned_object})" msgstr "Terminação L2VPN ({assigned_object}) já atribuída" -#: netbox/vpn/models/l2vpn.py:147 +#: vpn/models/l2vpn.py:147 #, python-brace-format msgid "" "{l2vpn_type} L2VPNs cannot have more than two terminations; found " @@ -15963,195 +15211,187 @@ msgstr "" "L2VPNs {l2vpn_type} não podem ter mais de duas terminações; encontrada(s) " "{terminations_count} já definida(s)." -#: netbox/vpn/models/tunnels.py:26 +#: vpn/models/tunnels.py:26 msgid "tunnel group" msgstr "grupo de túneis" -#: netbox/vpn/models/tunnels.py:27 +#: vpn/models/tunnels.py:27 msgid "tunnel groups" msgstr "grupos de túneis" -#: netbox/vpn/models/tunnels.py:53 +#: vpn/models/tunnels.py:53 msgid "encapsulation" msgstr "encapsulamento" -#: netbox/vpn/models/tunnels.py:72 +#: vpn/models/tunnels.py:72 msgid "tunnel ID" msgstr "ID do túnel" -#: netbox/vpn/models/tunnels.py:94 +#: vpn/models/tunnels.py:94 msgid "tunnel" msgstr "túnel" -#: netbox/vpn/models/tunnels.py:95 +#: vpn/models/tunnels.py:95 msgid "tunnels" msgstr "túneis" -#: netbox/vpn/models/tunnels.py:153 +#: vpn/models/tunnels.py:153 msgid "An object may be terminated to only one tunnel at a time." msgstr "Um objeto pode ser terminado em apenas um túnel por vez." -#: netbox/vpn/models/tunnels.py:156 +#: vpn/models/tunnels.py:156 msgid "tunnel termination" msgstr "terminação do túnel" -#: netbox/vpn/models/tunnels.py:157 +#: vpn/models/tunnels.py:157 msgid "tunnel terminations" msgstr "terminações dos túneis" -#: netbox/vpn/models/tunnels.py:174 +#: vpn/models/tunnels.py:174 #, python-brace-format msgid "{name} is already attached to a tunnel ({tunnel})." msgstr "{name} já está conectado ao túnel ({tunnel})." -#: netbox/vpn/tables/crypto.py:22 +#: vpn/tables/crypto.py:22 msgid "Authentication Method" msgstr "Método de Autenticação" -#: netbox/vpn/tables/crypto.py:25 netbox/vpn/tables/crypto.py:97 +#: vpn/tables/crypto.py:25 vpn/tables/crypto.py:97 msgid "Encryption Algorithm" msgstr "Algoritmo de Criptografia" -#: netbox/vpn/tables/crypto.py:28 netbox/vpn/tables/crypto.py:100 +#: vpn/tables/crypto.py:28 vpn/tables/crypto.py:100 msgid "Authentication Algorithm" msgstr "Algoritmo de Autenticação" -#: netbox/vpn/tables/crypto.py:34 +#: vpn/tables/crypto.py:34 msgid "SA Lifetime" msgstr "Vida útil da Security Association" -#: netbox/vpn/tables/crypto.py:71 +#: vpn/tables/crypto.py:71 msgid "Pre-shared Key" msgstr "Chave pré-compartilhada" -#: netbox/vpn/tables/crypto.py:103 +#: vpn/tables/crypto.py:103 msgid "SA Lifetime (Seconds)" msgstr "Vida útil da Security Association (segundos)" -#: netbox/vpn/tables/crypto.py:106 +#: vpn/tables/crypto.py:106 msgid "SA Lifetime (KB)" msgstr "Vida útil da Security Association (KB)" -#: netbox/vpn/tables/l2vpn.py:69 +#: vpn/tables/l2vpn.py:69 msgid "Object Parent" msgstr "Objeto Pai" -#: netbox/vpn/tables/l2vpn.py:74 +#: vpn/tables/l2vpn.py:74 msgid "Object Site" msgstr "Site do Objeto" -#: netbox/wireless/choices.py:11 +#: wireless/choices.py:11 msgid "Access point" msgstr "Ponto de acesso" -#: netbox/wireless/choices.py:12 +#: wireless/choices.py:12 msgid "Station" msgstr "Estação" -#: netbox/wireless/choices.py:467 +#: wireless/choices.py:467 msgid "Open" msgstr "Aberto" -#: netbox/wireless/choices.py:469 +#: wireless/choices.py:469 msgid "WPA Personal (PSK)" msgstr "WPA Personal (PSK)" -#: netbox/wireless/choices.py:470 +#: wireless/choices.py:470 msgid "WPA Enterprise" msgstr "WPA Enterprise" -#: netbox/wireless/forms/bulk_edit.py:73 -#: netbox/wireless/forms/bulk_edit.py:120 -#: netbox/wireless/forms/bulk_import.py:68 -#: netbox/wireless/forms/bulk_import.py:71 -#: netbox/wireless/forms/bulk_import.py:110 -#: netbox/wireless/forms/bulk_import.py:113 -#: netbox/wireless/forms/filtersets.py:59 -#: netbox/wireless/forms/filtersets.py:93 +#: wireless/forms/bulk_edit.py:73 wireless/forms/bulk_edit.py:120 +#: wireless/forms/bulk_import.py:68 wireless/forms/bulk_import.py:71 +#: wireless/forms/bulk_import.py:110 wireless/forms/bulk_import.py:113 +#: wireless/forms/filtersets.py:59 wireless/forms/filtersets.py:93 msgid "Authentication cipher" msgstr "Cifra de autenticação" -#: netbox/wireless/forms/bulk_edit.py:134 -#: netbox/wireless/forms/bulk_import.py:116 -#: netbox/wireless/forms/bulk_import.py:119 -#: netbox/wireless/forms/filtersets.py:106 +#: wireless/forms/bulk_edit.py:134 wireless/forms/bulk_import.py:116 +#: wireless/forms/bulk_import.py:119 wireless/forms/filtersets.py:106 msgid "Distance unit" msgstr "Unidade de distância" -#: netbox/wireless/forms/bulk_import.py:52 +#: wireless/forms/bulk_import.py:52 msgid "Bridged VLAN" msgstr "VLAN Bridged" -#: netbox/wireless/forms/bulk_import.py:89 -#: netbox/wireless/tables/wirelesslink.py:28 +#: wireless/forms/bulk_import.py:89 wireless/tables/wirelesslink.py:28 msgid "Interface A" msgstr "Interface A" -#: netbox/wireless/forms/bulk_import.py:93 -#: netbox/wireless/tables/wirelesslink.py:37 +#: wireless/forms/bulk_import.py:93 wireless/tables/wirelesslink.py:37 msgid "Interface B" msgstr "Interface B" -#: netbox/wireless/forms/model_forms.py:161 +#: wireless/forms/model_forms.py:161 msgid "Side B" msgstr "Lado B" -#: netbox/wireless/models.py:31 +#: wireless/models.py:31 msgid "authentication cipher" msgstr "cifra de autenticação" -#: netbox/wireless/models.py:69 +#: wireless/models.py:69 msgid "wireless LAN group" msgstr "grupo de redes wireless" -#: netbox/wireless/models.py:70 +#: wireless/models.py:70 msgid "wireless LAN groups" msgstr "grupos de redes wireless" -#: netbox/wireless/models.py:116 +#: wireless/models.py:116 msgid "wireless LAN" msgstr "rede wireless" -#: netbox/wireless/models.py:144 +#: wireless/models.py:144 msgid "interface A" msgstr "interface A" -#: netbox/wireless/models.py:151 +#: wireless/models.py:151 msgid "interface B" msgstr "interface B" -#: netbox/wireless/models.py:165 +#: wireless/models.py:165 msgid "distance" msgstr "distância" -#: netbox/wireless/models.py:172 +#: wireless/models.py:172 msgid "distance unit" msgstr "unidade de distância" -#: netbox/wireless/models.py:219 +#: wireless/models.py:219 msgid "wireless link" msgstr "link wireless" -#: netbox/wireless/models.py:220 +#: wireless/models.py:220 msgid "wireless links" msgstr "links wireless" -#: netbox/wireless/models.py:236 +#: wireless/models.py:236 msgid "Must specify a unit when setting a wireless distance" msgstr "" "É necessário especificar uma unidade ao definir uma distância sem fio." -#: netbox/wireless/models.py:242 netbox/wireless/models.py:248 +#: wireless/models.py:242 wireless/models.py:248 #, python-brace-format msgid "{type} is not a wireless interface." msgstr "{type} não é uma interface wireless." -#: netbox/wireless/utils.py:16 +#: wireless/utils.py:16 #, python-brace-format msgid "Invalid channel value: {channel}" msgstr "Valor de canal inválido: {channel}" -#: netbox/wireless/utils.py:26 +#: wireless/utils.py:26 #, python-brace-format msgid "Invalid channel attribute: {name}" msgstr "Atributo de canal inválido: {name}" diff --git a/netbox/translations/ru/LC_MESSAGES/django.po b/netbox/translations/ru/LC_MESSAGES/django.po index 9eb264f66..3c4d40f08 100644 --- a/netbox/translations/ru/LC_MESSAGES/django.po +++ b/netbox/translations/ru/LC_MESSAGES/django.po @@ -19,7 +19,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-12 05:02+0000\n" +"POT-Creation-Date: 2024-10-28 19:20+0000\n" "PO-Revision-Date: 2023-10-30 17:48+0000\n" "Last-Translator: Jeremy Stretch, 2024\n" "Language-Team: Russian (https://app.transifex.com/netbox-community/teams/178115/ru/)\n" @@ -29,2141 +29,1872 @@ msgstr "" "Language: ru\n" "Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" -#: netbox/account/tables.py:27 netbox/templates/account/token.html:22 -#: netbox/templates/users/token.html:17 netbox/users/forms/bulk_import.py:39 -#: netbox/users/forms/model_forms.py:112 +#: account/tables.py:27 templates/account/token.html:22 +#: templates/users/token.html:17 users/forms/bulk_import.py:39 +#: users/forms/model_forms.py:112 msgid "Key" msgstr "Ключ" -#: netbox/account/tables.py:31 netbox/users/forms/filtersets.py:132 +#: account/tables.py:31 users/forms/filtersets.py:132 msgid "Write Enabled" msgstr "Запись включена" -#: netbox/account/tables.py:35 netbox/core/choices.py:86 -#: netbox/core/tables/jobs.py:29 netbox/core/tables/tasks.py:79 -#: netbox/extras/tables/tables.py:335 netbox/extras/tables/tables.py:566 -#: netbox/templates/account/token.html:43 -#: netbox/templates/core/configrevision.html:26 -#: netbox/templates/core/configrevision_restore.html:12 -#: netbox/templates/core/job.html:69 netbox/templates/core/rq_task.html:16 -#: netbox/templates/core/rq_task.html:73 -#: netbox/templates/core/rq_worker.html:14 -#: netbox/templates/extras/htmx/script_result.html:12 -#: netbox/templates/extras/journalentry.html:22 -#: netbox/templates/generic/object.html:58 -#: netbox/templates/users/token.html:35 +#: account/tables.py:35 core/choices.py:86 core/tables/jobs.py:29 +#: core/tables/tasks.py:79 extras/tables/tables.py:335 +#: extras/tables/tables.py:566 templates/account/token.html:43 +#: templates/core/configrevision.html:26 +#: templates/core/configrevision_restore.html:12 templates/core/job.html:69 +#: templates/core/rq_task.html:16 templates/core/rq_task.html:73 +#: templates/core/rq_worker.html:14 +#: templates/extras/htmx/script_result.html:12 +#: templates/extras/journalentry.html:22 templates/generic/object.html:58 +#: templates/users/token.html:35 msgid "Created" msgstr "Создан" -#: netbox/account/tables.py:39 netbox/templates/account/token.html:47 -#: netbox/templates/users/token.html:39 netbox/users/forms/bulk_edit.py:117 -#: netbox/users/forms/filtersets.py:136 +#: account/tables.py:39 templates/account/token.html:47 +#: templates/users/token.html:39 users/forms/bulk_edit.py:117 +#: users/forms/filtersets.py:136 msgid "Expires" msgstr "Истекает" -#: netbox/account/tables.py:42 netbox/users/forms/filtersets.py:141 +#: account/tables.py:42 users/forms/filtersets.py:141 msgid "Last Used" msgstr "Последнее использование" -#: netbox/account/tables.py:45 netbox/templates/account/token.html:55 -#: netbox/templates/users/token.html:47 netbox/users/forms/bulk_edit.py:122 -#: netbox/users/forms/model_forms.py:124 +#: account/tables.py:45 templates/account/token.html:55 +#: templates/users/token.html:47 users/forms/bulk_edit.py:122 +#: users/forms/model_forms.py:124 msgid "Allowed IPs" msgstr "Разрешенные IP-адреса" -#: netbox/account/views.py:114 +#: account/views.py:114 #, python-brace-format msgid "Logged in as {user}." msgstr "Вошел(-ла) в систему как {user}." -#: netbox/account/views.py:164 +#: account/views.py:164 msgid "You have logged out." msgstr "Вы вышли из системы." -#: netbox/account/views.py:216 +#: account/views.py:216 msgid "Your preferences have been updated." msgstr "Ваши настройки были обновлены." -#: netbox/account/views.py:239 +#: account/views.py:239 msgid "LDAP-authenticated user credentials cannot be changed within NetBox." msgstr "Учетные данные доменных пользователей нельзя изменить в NetBox." -#: netbox/account/views.py:254 +#: account/views.py:254 msgid "Your password has been changed successfully." msgstr "Ваш пароль успешно изменен." -#: netbox/circuits/choices.py:21 netbox/dcim/choices.py:20 -#: netbox/dcim/choices.py:102 netbox/dcim/choices.py:185 -#: netbox/dcim/choices.py:237 netbox/dcim/choices.py:1530 -#: netbox/dcim/choices.py:1606 netbox/dcim/choices.py:1656 -#: netbox/virtualization/choices.py:20 netbox/virtualization/choices.py:45 -#: netbox/vpn/choices.py:18 +#: circuits/choices.py:21 dcim/choices.py:20 dcim/choices.py:102 +#: dcim/choices.py:185 dcim/choices.py:237 dcim/choices.py:1530 +#: dcim/choices.py:1606 dcim/choices.py:1656 virtualization/choices.py:20 +#: virtualization/choices.py:45 vpn/choices.py:18 msgid "Planned" msgstr "Запланировано" -#: netbox/circuits/choices.py:22 netbox/netbox/navigation/menu.py:305 +#: circuits/choices.py:22 netbox/navigation/menu.py:305 msgid "Provisioning" msgstr "Эксплутация" -#: netbox/circuits/choices.py:23 netbox/core/tables/tasks.py:22 -#: netbox/dcim/choices.py:22 netbox/dcim/choices.py:103 -#: netbox/dcim/choices.py:184 netbox/dcim/choices.py:236 -#: netbox/dcim/choices.py:1605 netbox/dcim/choices.py:1655 -#: netbox/extras/tables/tables.py:495 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:25 -#: netbox/templates/users/user.html:37 netbox/users/forms/bulk_edit.py:38 -#: netbox/virtualization/choices.py:22 netbox/virtualization/choices.py:44 -#: netbox/vpn/choices.py:19 netbox/wireless/choices.py:25 +#: circuits/choices.py:23 core/tables/tasks.py:22 dcim/choices.py:22 +#: dcim/choices.py:103 dcim/choices.py:184 dcim/choices.py:236 +#: dcim/choices.py:1605 dcim/choices.py:1655 extras/tables/tables.py:495 +#: ipam/choices.py:31 ipam/choices.py:49 ipam/choices.py:69 +#: ipam/choices.py:154 templates/extras/configcontext.html:25 +#: templates/users/user.html:37 users/forms/bulk_edit.py:38 +#: virtualization/choices.py:22 virtualization/choices.py:44 vpn/choices.py:19 +#: wireless/choices.py:25 msgid "Active" msgstr "Активный" -#: netbox/circuits/choices.py:24 netbox/dcim/choices.py:183 -#: netbox/dcim/choices.py:235 netbox/dcim/choices.py:1604 -#: netbox/dcim/choices.py:1657 netbox/virtualization/choices.py:24 -#: netbox/virtualization/choices.py:43 +#: circuits/choices.py:24 dcim/choices.py:183 dcim/choices.py:235 +#: dcim/choices.py:1604 dcim/choices.py:1657 virtualization/choices.py:24 +#: virtualization/choices.py:43 msgid "Offline" msgstr "Оффлайн" -#: netbox/circuits/choices.py:25 +#: circuits/choices.py:25 msgid "Deprovisioning" msgstr "Вывод из эксплуатации" -#: netbox/circuits/choices.py:26 +#: circuits/choices.py:26 msgid "Decommissioned" msgstr "Списан" -#: netbox/circuits/choices.py:90 netbox/dcim/choices.py:1617 -#: netbox/tenancy/choices.py:17 +#: circuits/choices.py:90 dcim/choices.py:1617 tenancy/choices.py:17 msgid "Primary" msgstr "Основной" -#: netbox/circuits/choices.py:91 netbox/ipam/choices.py:90 -#: netbox/tenancy/choices.py:18 +#: circuits/choices.py:91 ipam/choices.py:90 tenancy/choices.py:18 msgid "Secondary" msgstr "Вторичный" -#: netbox/circuits/choices.py:92 netbox/tenancy/choices.py:19 +#: circuits/choices.py:92 tenancy/choices.py:19 msgid "Tertiary" msgstr "Третичный" -#: netbox/circuits/choices.py:93 netbox/tenancy/choices.py:20 +#: circuits/choices.py:93 tenancy/choices.py:20 msgid "Inactive" msgstr "Неактивный" -#: netbox/circuits/filtersets.py:31 netbox/circuits/filtersets.py:198 -#: netbox/dcim/filtersets.py:98 netbox/dcim/filtersets.py:152 -#: netbox/dcim/filtersets.py:212 netbox/dcim/filtersets.py:333 -#: netbox/dcim/filtersets.py:464 netbox/dcim/filtersets.py:1021 -#: netbox/dcim/filtersets.py:1368 netbox/dcim/filtersets.py:1903 -#: netbox/dcim/filtersets.py:2146 netbox/dcim/filtersets.py:2204 -#: netbox/ipam/filtersets.py:339 netbox/ipam/filtersets.py:959 -#: netbox/virtualization/filtersets.py:45 -#: netbox/virtualization/filtersets.py:173 netbox/vpn/filtersets.py:358 +#: circuits/filtersets.py:31 circuits/filtersets.py:198 dcim/filtersets.py:98 +#: dcim/filtersets.py:152 dcim/filtersets.py:212 dcim/filtersets.py:333 +#: dcim/filtersets.py:464 dcim/filtersets.py:1021 dcim/filtersets.py:1368 +#: dcim/filtersets.py:1903 dcim/filtersets.py:2146 dcim/filtersets.py:2204 +#: ipam/filtersets.py:339 ipam/filtersets.py:959 +#: virtualization/filtersets.py:45 virtualization/filtersets.py:173 +#: vpn/filtersets.py:358 msgid "Region (ID)" msgstr "Регион (ID)" -#: netbox/circuits/filtersets.py:38 netbox/circuits/filtersets.py:205 -#: netbox/dcim/filtersets.py:105 netbox/dcim/filtersets.py:158 -#: netbox/dcim/filtersets.py:219 netbox/dcim/filtersets.py:340 -#: netbox/dcim/filtersets.py:471 netbox/dcim/filtersets.py:1028 -#: netbox/dcim/filtersets.py:1375 netbox/dcim/filtersets.py:1910 -#: netbox/dcim/filtersets.py:2153 netbox/dcim/filtersets.py:2211 -#: netbox/extras/filtersets.py:509 netbox/ipam/filtersets.py:346 -#: netbox/ipam/filtersets.py:966 netbox/virtualization/filtersets.py:52 -#: netbox/virtualization/filtersets.py:180 netbox/vpn/filtersets.py:353 +#: circuits/filtersets.py:38 circuits/filtersets.py:205 dcim/filtersets.py:105 +#: dcim/filtersets.py:158 dcim/filtersets.py:219 dcim/filtersets.py:340 +#: dcim/filtersets.py:471 dcim/filtersets.py:1028 dcim/filtersets.py:1375 +#: dcim/filtersets.py:1910 dcim/filtersets.py:2153 dcim/filtersets.py:2211 +#: extras/filtersets.py:509 ipam/filtersets.py:346 ipam/filtersets.py:966 +#: virtualization/filtersets.py:52 virtualization/filtersets.py:180 +#: vpn/filtersets.py:353 msgid "Region (slug)" msgstr "Регион (подстрока)" -#: netbox/circuits/filtersets.py:44 netbox/circuits/filtersets.py:211 -#: netbox/dcim/filtersets.py:128 netbox/dcim/filtersets.py:225 -#: netbox/dcim/filtersets.py:346 netbox/dcim/filtersets.py:477 -#: netbox/dcim/filtersets.py:1034 netbox/dcim/filtersets.py:1381 -#: netbox/dcim/filtersets.py:1916 netbox/dcim/filtersets.py:2159 -#: netbox/dcim/filtersets.py:2217 netbox/ipam/filtersets.py:352 -#: netbox/ipam/filtersets.py:972 netbox/virtualization/filtersets.py:58 -#: netbox/virtualization/filtersets.py:186 +#: circuits/filtersets.py:44 circuits/filtersets.py:211 dcim/filtersets.py:128 +#: dcim/filtersets.py:225 dcim/filtersets.py:346 dcim/filtersets.py:477 +#: dcim/filtersets.py:1034 dcim/filtersets.py:1381 dcim/filtersets.py:1916 +#: dcim/filtersets.py:2159 dcim/filtersets.py:2217 ipam/filtersets.py:352 +#: ipam/filtersets.py:972 virtualization/filtersets.py:58 +#: virtualization/filtersets.py:186 msgid "Site group (ID)" msgstr "Группа сайтов (ID)" -#: netbox/circuits/filtersets.py:51 netbox/circuits/filtersets.py:218 -#: netbox/dcim/filtersets.py:135 netbox/dcim/filtersets.py:232 -#: netbox/dcim/filtersets.py:353 netbox/dcim/filtersets.py:484 -#: netbox/dcim/filtersets.py:1041 netbox/dcim/filtersets.py:1388 -#: netbox/dcim/filtersets.py:1923 netbox/dcim/filtersets.py:2166 -#: netbox/dcim/filtersets.py:2224 netbox/extras/filtersets.py:515 -#: netbox/ipam/filtersets.py:359 netbox/ipam/filtersets.py:979 -#: netbox/virtualization/filtersets.py:65 -#: netbox/virtualization/filtersets.py:193 +#: circuits/filtersets.py:51 circuits/filtersets.py:218 dcim/filtersets.py:135 +#: dcim/filtersets.py:232 dcim/filtersets.py:353 dcim/filtersets.py:484 +#: dcim/filtersets.py:1041 dcim/filtersets.py:1388 dcim/filtersets.py:1923 +#: dcim/filtersets.py:2166 dcim/filtersets.py:2224 extras/filtersets.py:515 +#: ipam/filtersets.py:359 ipam/filtersets.py:979 +#: virtualization/filtersets.py:65 virtualization/filtersets.py:193 msgid "Site group (slug)" msgstr "Группа сайтов (подстрока)" -#: netbox/circuits/filtersets.py:56 netbox/circuits/forms/bulk_edit.py:188 -#: netbox/circuits/forms/bulk_edit.py:216 -#: netbox/circuits/forms/bulk_import.py:124 -#: netbox/circuits/forms/filtersets.py:51 -#: netbox/circuits/forms/filtersets.py:171 -#: netbox/circuits/forms/filtersets.py:209 -#: netbox/circuits/forms/model_forms.py:138 -#: netbox/circuits/forms/model_forms.py:154 -#: netbox/circuits/tables/circuits.py:113 netbox/dcim/forms/bulk_edit.py:168 -#: netbox/dcim/forms/bulk_edit.py:329 netbox/dcim/forms/bulk_edit.py:677 -#: netbox/dcim/forms/bulk_edit.py:873 netbox/dcim/forms/bulk_import.py:131 -#: netbox/dcim/forms/bulk_import.py:230 netbox/dcim/forms/bulk_import.py:309 -#: netbox/dcim/forms/bulk_import.py:540 netbox/dcim/forms/bulk_import.py:1311 -#: netbox/dcim/forms/bulk_import.py:1339 netbox/dcim/forms/filtersets.py:87 -#: netbox/dcim/forms/filtersets.py:225 netbox/dcim/forms/filtersets.py:342 -#: netbox/dcim/forms/filtersets.py:439 netbox/dcim/forms/filtersets.py:753 -#: netbox/dcim/forms/filtersets.py:997 netbox/dcim/forms/filtersets.py:1021 -#: netbox/dcim/forms/filtersets.py:1111 netbox/dcim/forms/filtersets.py:1149 -#: netbox/dcim/forms/filtersets.py:1584 netbox/dcim/forms/filtersets.py:1608 -#: netbox/dcim/forms/filtersets.py:1632 netbox/dcim/forms/model_forms.py:137 -#: netbox/dcim/forms/model_forms.py:165 netbox/dcim/forms/model_forms.py:238 -#: netbox/dcim/forms/model_forms.py:463 netbox/dcim/forms/model_forms.py:723 -#: netbox/dcim/forms/object_create.py:391 netbox/dcim/tables/devices.py:153 -#: netbox/dcim/tables/power.py:26 netbox/dcim/tables/power.py:93 -#: netbox/dcim/tables/racks.py:122 netbox/dcim/tables/racks.py:207 -#: netbox/dcim/tables/sites.py:134 netbox/extras/filtersets.py:525 -#: netbox/ipam/forms/bulk_edit.py:217 netbox/ipam/forms/bulk_edit.py:284 -#: netbox/ipam/forms/bulk_edit.py:451 netbox/ipam/forms/bulk_edit.py:529 -#: netbox/ipam/forms/bulk_import.py:171 netbox/ipam/forms/bulk_import.py:429 -#: netbox/ipam/forms/filtersets.py:153 netbox/ipam/forms/filtersets.py:231 -#: netbox/ipam/forms/filtersets.py:432 netbox/ipam/forms/filtersets.py:489 -#: netbox/ipam/forms/model_forms.py:205 netbox/ipam/forms/model_forms.py:636 -#: netbox/ipam/tables/ip.py:245 netbox/ipam/tables/vlans.py:118 -#: netbox/ipam/tables/vlans.py:221 -#: netbox/templates/circuits/inc/circuit_termination_fields.html:6 -#: netbox/templates/dcim/device.html:22 -#: netbox/templates/dcim/inc/cable_termination.html:8 -#: netbox/templates/dcim/inc/cable_termination.html:33 -#: netbox/templates/dcim/location.html:37 -#: netbox/templates/dcim/powerpanel.html:22 netbox/templates/dcim/rack.html:20 -#: netbox/templates/dcim/rackreservation.html:28 -#: netbox/templates/dcim/site.html:28 netbox/templates/ipam/prefix.html:56 -#: netbox/templates/ipam/vlan.html:23 netbox/templates/ipam/vlan_edit.html:40 -#: netbox/templates/virtualization/cluster.html:42 -#: netbox/templates/virtualization/virtualmachine.html:95 -#: netbox/virtualization/forms/bulk_edit.py:91 -#: netbox/virtualization/forms/bulk_edit.py:109 -#: netbox/virtualization/forms/bulk_edit.py:124 -#: netbox/virtualization/forms/bulk_import.py:59 -#: netbox/virtualization/forms/bulk_import.py:85 -#: netbox/virtualization/forms/filtersets.py:79 -#: netbox/virtualization/forms/filtersets.py:148 -#: netbox/virtualization/forms/model_forms.py:71 -#: netbox/virtualization/forms/model_forms.py:104 -#: netbox/virtualization/forms/model_forms.py:171 -#: netbox/virtualization/tables/clusters.py:77 -#: netbox/virtualization/tables/virtualmachines.py:63 -#: netbox/vpn/forms/filtersets.py:266 netbox/wireless/forms/model_forms.py:76 -#: netbox/wireless/forms/model_forms.py:118 +#: circuits/filtersets.py:56 circuits/forms/bulk_edit.py:188 +#: circuits/forms/bulk_edit.py:216 circuits/forms/bulk_import.py:124 +#: circuits/forms/filtersets.py:51 circuits/forms/filtersets.py:171 +#: circuits/forms/filtersets.py:209 circuits/forms/model_forms.py:138 +#: circuits/forms/model_forms.py:154 circuits/tables/circuits.py:113 +#: dcim/forms/bulk_edit.py:168 dcim/forms/bulk_edit.py:329 +#: dcim/forms/bulk_edit.py:677 dcim/forms/bulk_edit.py:873 +#: dcim/forms/bulk_import.py:131 dcim/forms/bulk_import.py:230 +#: dcim/forms/bulk_import.py:309 dcim/forms/bulk_import.py:540 +#: dcim/forms/bulk_import.py:1311 dcim/forms/bulk_import.py:1339 +#: dcim/forms/filtersets.py:87 dcim/forms/filtersets.py:225 +#: dcim/forms/filtersets.py:342 dcim/forms/filtersets.py:439 +#: dcim/forms/filtersets.py:753 dcim/forms/filtersets.py:997 +#: dcim/forms/filtersets.py:1021 dcim/forms/filtersets.py:1111 +#: dcim/forms/filtersets.py:1149 dcim/forms/filtersets.py:1584 +#: dcim/forms/filtersets.py:1608 dcim/forms/filtersets.py:1632 +#: dcim/forms/model_forms.py:137 dcim/forms/model_forms.py:165 +#: dcim/forms/model_forms.py:238 dcim/forms/model_forms.py:463 +#: dcim/forms/model_forms.py:723 dcim/forms/object_create.py:391 +#: dcim/tables/devices.py:153 dcim/tables/power.py:26 dcim/tables/power.py:93 +#: dcim/tables/racks.py:122 dcim/tables/racks.py:207 dcim/tables/sites.py:134 +#: extras/filtersets.py:525 ipam/forms/bulk_edit.py:218 +#: ipam/forms/bulk_edit.py:285 ipam/forms/bulk_edit.py:484 +#: ipam/forms/bulk_import.py:171 ipam/forms/bulk_import.py:429 +#: ipam/forms/filtersets.py:153 ipam/forms/filtersets.py:231 +#: ipam/forms/filtersets.py:432 ipam/forms/filtersets.py:489 +#: ipam/forms/model_forms.py:205 ipam/forms/model_forms.py:636 +#: ipam/tables/ip.py:245 ipam/tables/vlans.py:118 ipam/tables/vlans.py:221 +#: templates/circuits/inc/circuit_termination_fields.html:6 +#: templates/dcim/device.html:22 templates/dcim/inc/cable_termination.html:8 +#: templates/dcim/inc/cable_termination.html:33 +#: templates/dcim/location.html:37 templates/dcim/powerpanel.html:22 +#: templates/dcim/rack.html:20 templates/dcim/rackreservation.html:28 +#: templates/dcim/site.html:28 templates/ipam/prefix.html:56 +#: templates/ipam/vlan.html:23 templates/ipam/vlan_edit.html:40 +#: templates/virtualization/cluster.html:42 +#: templates/virtualization/virtualmachine.html:95 +#: virtualization/forms/bulk_edit.py:91 virtualization/forms/bulk_edit.py:109 +#: virtualization/forms/bulk_edit.py:124 +#: virtualization/forms/bulk_import.py:59 +#: virtualization/forms/bulk_import.py:85 +#: virtualization/forms/filtersets.py:79 +#: virtualization/forms/filtersets.py:148 +#: virtualization/forms/model_forms.py:71 +#: virtualization/forms/model_forms.py:104 +#: virtualization/forms/model_forms.py:171 +#: virtualization/tables/clusters.py:77 +#: virtualization/tables/virtualmachines.py:63 vpn/forms/filtersets.py:266 +#: wireless/forms/model_forms.py:76 wireless/forms/model_forms.py:118 msgid "Site" msgstr "Сайт" -#: netbox/circuits/filtersets.py:62 netbox/circuits/filtersets.py:229 -#: netbox/circuits/filtersets.py:274 netbox/dcim/filtersets.py:242 -#: netbox/dcim/filtersets.py:363 netbox/dcim/filtersets.py:458 -#: netbox/extras/filtersets.py:531 netbox/ipam/filtersets.py:238 -#: netbox/ipam/filtersets.py:369 netbox/ipam/filtersets.py:989 -#: netbox/virtualization/filtersets.py:75 -#: netbox/virtualization/filtersets.py:203 netbox/vpn/filtersets.py:363 +#: circuits/filtersets.py:62 circuits/filtersets.py:229 +#: circuits/filtersets.py:274 dcim/filtersets.py:242 dcim/filtersets.py:363 +#: dcim/filtersets.py:458 extras/filtersets.py:531 ipam/filtersets.py:238 +#: ipam/filtersets.py:369 ipam/filtersets.py:989 +#: virtualization/filtersets.py:75 virtualization/filtersets.py:203 +#: vpn/filtersets.py:363 msgid "Site (slug)" msgstr "Сайт (подстрока)" -#: netbox/circuits/filtersets.py:67 +#: circuits/filtersets.py:67 msgid "ASN (ID)" msgstr "ASN (ID)" -#: netbox/circuits/filtersets.py:73 netbox/circuits/forms/filtersets.py:31 -#: netbox/ipam/forms/model_forms.py:159 netbox/ipam/models/asns.py:108 -#: netbox/ipam/models/asns.py:125 netbox/ipam/tables/asn.py:41 -#: netbox/templates/ipam/asn.html:20 +#: circuits/filtersets.py:73 circuits/forms/filtersets.py:31 +#: ipam/forms/model_forms.py:159 ipam/models/asns.py:108 +#: ipam/models/asns.py:125 ipam/tables/asn.py:41 templates/ipam/asn.html:20 msgid "ASN" msgstr "ASN" -#: netbox/circuits/filtersets.py:95 netbox/circuits/filtersets.py:122 -#: netbox/circuits/filtersets.py:156 netbox/circuits/filtersets.py:283 -#: netbox/circuits/filtersets.py:325 netbox/ipam/filtersets.py:243 +#: circuits/filtersets.py:95 circuits/filtersets.py:122 +#: circuits/filtersets.py:156 circuits/filtersets.py:283 +#: circuits/filtersets.py:325 ipam/filtersets.py:243 msgid "Provider (ID)" msgstr "Провайдер (ID)" -#: netbox/circuits/filtersets.py:101 netbox/circuits/filtersets.py:128 -#: netbox/circuits/filtersets.py:162 netbox/circuits/filtersets.py:289 -#: netbox/circuits/filtersets.py:331 netbox/ipam/filtersets.py:249 +#: circuits/filtersets.py:101 circuits/filtersets.py:128 +#: circuits/filtersets.py:162 circuits/filtersets.py:289 +#: circuits/filtersets.py:331 ipam/filtersets.py:249 msgid "Provider (slug)" msgstr "Провайдер (подстрока)" -#: netbox/circuits/filtersets.py:167 +#: circuits/filtersets.py:167 msgid "Provider account (ID)" msgstr "Аккаунт провайдера (ID)" -#: netbox/circuits/filtersets.py:173 +#: circuits/filtersets.py:173 msgid "Provider account (account)" msgstr "Учетная запись провайдера" -#: netbox/circuits/filtersets.py:178 +#: circuits/filtersets.py:178 msgid "Provider network (ID)" msgstr "Сеть провайдера (ID)" -#: netbox/circuits/filtersets.py:182 +#: circuits/filtersets.py:182 msgid "Circuit type (ID)" msgstr "Тип канала связи (ID)" -#: netbox/circuits/filtersets.py:188 +#: circuits/filtersets.py:188 msgid "Circuit type (slug)" msgstr "Тип канала связи (подстрока)" -#: netbox/circuits/filtersets.py:223 netbox/circuits/filtersets.py:268 -#: netbox/dcim/filtersets.py:236 netbox/dcim/filtersets.py:357 -#: netbox/dcim/filtersets.py:452 netbox/dcim/filtersets.py:1045 -#: netbox/dcim/filtersets.py:1393 netbox/dcim/filtersets.py:1928 -#: netbox/dcim/filtersets.py:2170 netbox/dcim/filtersets.py:2229 -#: netbox/ipam/filtersets.py:232 netbox/ipam/filtersets.py:363 -#: netbox/ipam/filtersets.py:983 netbox/virtualization/filtersets.py:69 -#: netbox/virtualization/filtersets.py:197 netbox/vpn/filtersets.py:368 +#: circuits/filtersets.py:223 circuits/filtersets.py:268 +#: dcim/filtersets.py:236 dcim/filtersets.py:357 dcim/filtersets.py:452 +#: dcim/filtersets.py:1045 dcim/filtersets.py:1393 dcim/filtersets.py:1928 +#: dcim/filtersets.py:2170 dcim/filtersets.py:2229 ipam/filtersets.py:232 +#: ipam/filtersets.py:363 ipam/filtersets.py:983 +#: virtualization/filtersets.py:69 virtualization/filtersets.py:197 +#: vpn/filtersets.py:368 msgid "Site (ID)" msgstr "Сайт (ID)" -#: netbox/circuits/filtersets.py:233 netbox/circuits/filtersets.py:237 +#: circuits/filtersets.py:233 circuits/filtersets.py:237 msgid "Termination A (ID)" msgstr "Точка подключения A (ID)" -#: netbox/circuits/filtersets.py:260 netbox/circuits/filtersets.py:320 -#: netbox/core/filtersets.py:77 netbox/core/filtersets.py:136 -#: netbox/core/filtersets.py:173 netbox/dcim/filtersets.py:751 -#: netbox/dcim/filtersets.py:1362 netbox/dcim/filtersets.py:2277 -#: netbox/extras/filtersets.py:41 netbox/extras/filtersets.py:63 -#: netbox/extras/filtersets.py:92 netbox/extras/filtersets.py:132 -#: netbox/extras/filtersets.py:181 netbox/extras/filtersets.py:209 -#: netbox/extras/filtersets.py:239 netbox/extras/filtersets.py:276 -#: netbox/extras/filtersets.py:348 netbox/extras/filtersets.py:391 -#: netbox/extras/filtersets.py:438 netbox/extras/filtersets.py:498 -#: netbox/extras/filtersets.py:657 netbox/extras/filtersets.py:703 -#: netbox/ipam/forms/model_forms.py:449 netbox/netbox/filtersets.py:282 -#: netbox/netbox/forms/__init__.py:22 netbox/netbox/forms/base.py:167 -#: netbox/templates/htmx/object_selector.html:28 -#: netbox/templates/inc/filter_list.html:45 -#: netbox/templates/ipam/ipaddress_assign.html:29 -#: netbox/templates/search.html:7 netbox/templates/search.html:26 -#: netbox/tenancy/filtersets.py:99 netbox/users/filtersets.py:23 -#: netbox/users/filtersets.py:57 netbox/users/filtersets.py:102 -#: netbox/users/filtersets.py:150 netbox/utilities/forms/forms.py:104 -#: netbox/utilities/templates/navigation/menu.html:16 +#: circuits/filtersets.py:260 circuits/filtersets.py:320 core/filtersets.py:77 +#: core/filtersets.py:136 core/filtersets.py:173 dcim/filtersets.py:751 +#: dcim/filtersets.py:1362 dcim/filtersets.py:2277 extras/filtersets.py:41 +#: extras/filtersets.py:63 extras/filtersets.py:92 extras/filtersets.py:132 +#: extras/filtersets.py:181 extras/filtersets.py:209 extras/filtersets.py:239 +#: extras/filtersets.py:276 extras/filtersets.py:348 extras/filtersets.py:391 +#: extras/filtersets.py:438 extras/filtersets.py:498 extras/filtersets.py:657 +#: extras/filtersets.py:703 ipam/forms/model_forms.py:449 +#: netbox/filtersets.py:282 netbox/forms/__init__.py:22 +#: netbox/forms/base.py:167 templates/htmx/object_selector.html:28 +#: templates/inc/filter_list.html:46 templates/ipam/ipaddress_assign.html:29 +#: templates/search.html:7 templates/search.html:26 tenancy/filtersets.py:99 +#: users/filtersets.py:23 users/filtersets.py:57 users/filtersets.py:102 +#: users/filtersets.py:150 utilities/forms/forms.py:104 +#: utilities/templates/navigation/menu.html:16 msgid "Search" msgstr "Поиск" -#: netbox/circuits/filtersets.py:264 netbox/circuits/forms/bulk_edit.py:172 -#: netbox/circuits/forms/bulk_edit.py:246 -#: netbox/circuits/forms/bulk_import.py:115 -#: netbox/circuits/forms/filtersets.py:198 -#: netbox/circuits/forms/filtersets.py:214 -#: netbox/circuits/forms/filtersets.py:260 -#: netbox/circuits/forms/model_forms.py:111 -#: netbox/circuits/forms/model_forms.py:133 -#: netbox/circuits/forms/model_forms.py:199 -#: netbox/circuits/tables/circuits.py:104 -#: netbox/circuits/tables/circuits.py:164 netbox/dcim/forms/connections.py:73 -#: netbox/templates/circuits/circuit.html:15 -#: netbox/templates/circuits/circuitgroupassignment.html:26 -#: netbox/templates/circuits/circuittermination.html:19 -#: netbox/templates/dcim/inc/cable_termination.html:55 -#: netbox/templates/dcim/trace/circuit.html:4 +#: circuits/filtersets.py:264 circuits/forms/bulk_edit.py:172 +#: circuits/forms/bulk_edit.py:246 circuits/forms/bulk_import.py:115 +#: circuits/forms/filtersets.py:198 circuits/forms/filtersets.py:214 +#: circuits/forms/filtersets.py:260 circuits/forms/model_forms.py:111 +#: circuits/forms/model_forms.py:133 circuits/forms/model_forms.py:199 +#: circuits/tables/circuits.py:104 circuits/tables/circuits.py:164 +#: dcim/forms/connections.py:73 templates/circuits/circuit.html:15 +#: templates/circuits/circuitgroupassignment.html:26 +#: templates/circuits/circuittermination.html:19 +#: templates/dcim/inc/cable_termination.html:55 +#: templates/dcim/trace/circuit.html:4 msgid "Circuit" msgstr "Канал связи" -#: netbox/circuits/filtersets.py:278 +#: circuits/filtersets.py:278 msgid "ProviderNetwork (ID)" msgstr "Сеть провайдера (ID)" -#: netbox/circuits/filtersets.py:335 +#: circuits/filtersets.py:335 msgid "Circuit (ID)" msgstr "Канал связи (ID)" -#: netbox/circuits/filtersets.py:341 +#: circuits/filtersets.py:341 msgid "Circuit (CID)" msgstr "Канал связи (CID)" -#: netbox/circuits/filtersets.py:345 +#: circuits/filtersets.py:345 msgid "Circuit group (ID)" msgstr "Группа каналов связи (ID)" -#: netbox/circuits/filtersets.py:351 +#: circuits/filtersets.py:351 msgid "Circuit group (slug)" msgstr "Группа каналов связи (подстрока)" -#: netbox/circuits/forms/bulk_edit.py:30 -#: netbox/circuits/forms/filtersets.py:56 -#: netbox/circuits/forms/model_forms.py:29 -#: netbox/circuits/tables/providers.py:33 netbox/dcim/forms/bulk_edit.py:128 -#: netbox/dcim/forms/filtersets.py:195 netbox/dcim/forms/model_forms.py:123 -#: netbox/dcim/tables/sites.py:94 netbox/ipam/models/asns.py:126 -#: netbox/ipam/tables/asn.py:27 netbox/ipam/views.py:213 -#: netbox/netbox/navigation/menu.py:172 netbox/netbox/navigation/menu.py:175 -#: netbox/templates/circuits/provider.html:23 +#: circuits/forms/bulk_edit.py:30 circuits/forms/filtersets.py:56 +#: circuits/forms/model_forms.py:29 circuits/tables/providers.py:33 +#: dcim/forms/bulk_edit.py:128 dcim/forms/filtersets.py:195 +#: dcim/forms/model_forms.py:123 dcim/tables/sites.py:94 +#: ipam/models/asns.py:126 ipam/tables/asn.py:27 ipam/views.py:213 +#: netbox/navigation/menu.py:172 netbox/navigation/menu.py:175 +#: templates/circuits/provider.html:23 msgid "ASNs" msgstr "ASN" -#: netbox/circuits/forms/bulk_edit.py:34 netbox/circuits/forms/bulk_edit.py:56 -#: netbox/circuits/forms/bulk_edit.py:83 -#: netbox/circuits/forms/bulk_edit.py:104 -#: netbox/circuits/forms/bulk_edit.py:164 -#: netbox/circuits/forms/bulk_edit.py:183 -#: netbox/circuits/forms/bulk_edit.py:228 netbox/core/forms/bulk_edit.py:28 -#: netbox/dcim/forms/bulk_create.py:35 netbox/dcim/forms/bulk_edit.py:73 -#: netbox/dcim/forms/bulk_edit.py:92 netbox/dcim/forms/bulk_edit.py:151 -#: netbox/dcim/forms/bulk_edit.py:192 netbox/dcim/forms/bulk_edit.py:210 -#: netbox/dcim/forms/bulk_edit.py:288 netbox/dcim/forms/bulk_edit.py:432 -#: netbox/dcim/forms/bulk_edit.py:466 netbox/dcim/forms/bulk_edit.py:481 -#: netbox/dcim/forms/bulk_edit.py:540 netbox/dcim/forms/bulk_edit.py:584 -#: netbox/dcim/forms/bulk_edit.py:618 netbox/dcim/forms/bulk_edit.py:642 -#: netbox/dcim/forms/bulk_edit.py:715 netbox/dcim/forms/bulk_edit.py:767 -#: netbox/dcim/forms/bulk_edit.py:819 netbox/dcim/forms/bulk_edit.py:842 -#: netbox/dcim/forms/bulk_edit.py:890 netbox/dcim/forms/bulk_edit.py:960 -#: netbox/dcim/forms/bulk_edit.py:1013 netbox/dcim/forms/bulk_edit.py:1048 -#: netbox/dcim/forms/bulk_edit.py:1088 netbox/dcim/forms/bulk_edit.py:1132 -#: netbox/dcim/forms/bulk_edit.py:1177 netbox/dcim/forms/bulk_edit.py:1204 -#: netbox/dcim/forms/bulk_edit.py:1222 netbox/dcim/forms/bulk_edit.py:1240 -#: netbox/dcim/forms/bulk_edit.py:1258 netbox/dcim/forms/bulk_edit.py:1682 -#: netbox/extras/forms/bulk_edit.py:39 netbox/extras/forms/bulk_edit.py:149 -#: netbox/extras/forms/bulk_edit.py:178 netbox/extras/forms/bulk_edit.py:208 -#: netbox/extras/forms/bulk_edit.py:256 netbox/extras/forms/bulk_edit.py:274 -#: netbox/extras/forms/bulk_edit.py:298 netbox/extras/forms/bulk_edit.py:312 -#: netbox/extras/forms/bulk_edit.py:339 netbox/extras/tables/tables.py:79 -#: netbox/ipam/forms/bulk_edit.py:52 netbox/ipam/forms/bulk_edit.py:72 -#: netbox/ipam/forms/bulk_edit.py:92 netbox/ipam/forms/bulk_edit.py:116 -#: netbox/ipam/forms/bulk_edit.py:145 netbox/ipam/forms/bulk_edit.py:174 -#: netbox/ipam/forms/bulk_edit.py:193 netbox/ipam/forms/bulk_edit.py:275 -#: netbox/ipam/forms/bulk_edit.py:320 netbox/ipam/forms/bulk_edit.py:368 -#: netbox/ipam/forms/bulk_edit.py:411 netbox/ipam/forms/bulk_edit.py:427 -#: netbox/ipam/forms/bulk_edit.py:561 netbox/ipam/forms/bulk_edit.py:592 -#: netbox/templates/account/token.html:35 -#: netbox/templates/circuits/circuit.html:59 -#: netbox/templates/circuits/circuitgroup.html:32 -#: netbox/templates/circuits/circuittype.html:26 -#: netbox/templates/circuits/inc/circuit_termination_fields.html:88 -#: netbox/templates/circuits/provider.html:33 -#: netbox/templates/circuits/providernetwork.html:32 -#: netbox/templates/core/datasource.html:54 -#: netbox/templates/core/plugin.html:79 netbox/templates/dcim/cable.html:36 -#: netbox/templates/dcim/consoleport.html:44 -#: netbox/templates/dcim/consoleserverport.html:44 -#: netbox/templates/dcim/device.html:94 -#: netbox/templates/dcim/devicebay.html:32 -#: netbox/templates/dcim/devicerole.html:30 -#: netbox/templates/dcim/devicetype.html:33 -#: netbox/templates/dcim/frontport.html:58 -#: netbox/templates/dcim/interface.html:69 -#: netbox/templates/dcim/inventoryitem.html:60 -#: netbox/templates/dcim/inventoryitemrole.html:22 -#: netbox/templates/dcim/location.html:33 -#: netbox/templates/dcim/manufacturer.html:40 -#: netbox/templates/dcim/module.html:73 -#: netbox/templates/dcim/modulebay.html:42 -#: netbox/templates/dcim/moduletype.html:26 -#: netbox/templates/dcim/platform.html:33 -#: netbox/templates/dcim/powerfeed.html:40 -#: netbox/templates/dcim/poweroutlet.html:40 -#: netbox/templates/dcim/powerpanel.html:30 -#: netbox/templates/dcim/powerport.html:40 netbox/templates/dcim/rack.html:53 -#: netbox/templates/dcim/rackreservation.html:62 -#: netbox/templates/dcim/rackrole.html:26 -#: netbox/templates/dcim/racktype.html:24 -#: netbox/templates/dcim/rearport.html:54 netbox/templates/dcim/region.html:33 -#: netbox/templates/dcim/site.html:60 netbox/templates/dcim/sitegroup.html:33 -#: netbox/templates/dcim/virtualchassis.html:31 -#: netbox/templates/extras/configcontext.html:21 -#: netbox/templates/extras/configtemplate.html:17 -#: netbox/templates/extras/customfield.html:34 -#: netbox/templates/extras/dashboard/widget_add.html:14 -#: netbox/templates/extras/eventrule.html:21 -#: netbox/templates/extras/exporttemplate.html:19 -#: netbox/templates/extras/notificationgroup.html:20 -#: netbox/templates/extras/savedfilter.html:17 -#: netbox/templates/extras/script_list.html:45 -#: netbox/templates/extras/tag.html:20 netbox/templates/extras/webhook.html:17 -#: netbox/templates/generic/bulk_import.html:120 -#: netbox/templates/ipam/aggregate.html:43 netbox/templates/ipam/asn.html:42 -#: netbox/templates/ipam/asnrange.html:38 -#: netbox/templates/ipam/fhrpgroup.html:34 -#: netbox/templates/ipam/ipaddress.html:55 -#: netbox/templates/ipam/iprange.html:67 netbox/templates/ipam/prefix.html:81 -#: netbox/templates/ipam/rir.html:26 netbox/templates/ipam/role.html:26 -#: netbox/templates/ipam/routetarget.html:21 -#: netbox/templates/ipam/service.html:50 -#: netbox/templates/ipam/servicetemplate.html:27 -#: netbox/templates/ipam/vlan.html:62 netbox/templates/ipam/vlangroup.html:34 -#: netbox/templates/ipam/vrf.html:33 netbox/templates/tenancy/contact.html:67 -#: netbox/templates/tenancy/contactgroup.html:25 -#: netbox/templates/tenancy/contactrole.html:22 -#: netbox/templates/tenancy/tenant.html:24 -#: netbox/templates/tenancy/tenantgroup.html:33 -#: netbox/templates/users/group.html:21 -#: netbox/templates/users/objectpermission.html:21 -#: netbox/templates/users/token.html:27 -#: netbox/templates/virtualization/cluster.html:25 -#: netbox/templates/virtualization/clustergroup.html:26 -#: netbox/templates/virtualization/clustertype.html:26 -#: netbox/templates/virtualization/virtualdisk.html:39 -#: netbox/templates/virtualization/virtualmachine.html:31 -#: netbox/templates/virtualization/vminterface.html:51 -#: netbox/templates/vpn/ikepolicy.html:17 -#: netbox/templates/vpn/ikeproposal.html:17 -#: netbox/templates/vpn/ipsecpolicy.html:17 -#: netbox/templates/vpn/ipsecprofile.html:17 -#: netbox/templates/vpn/ipsecprofile.html:40 -#: netbox/templates/vpn/ipsecprofile.html:73 -#: netbox/templates/vpn/ipsecproposal.html:17 -#: netbox/templates/vpn/l2vpn.html:26 netbox/templates/vpn/tunnel.html:33 -#: netbox/templates/vpn/tunnelgroup.html:30 -#: netbox/templates/wireless/wirelesslan.html:26 -#: netbox/templates/wireless/wirelesslangroup.html:33 -#: netbox/templates/wireless/wirelesslink.html:34 -#: netbox/tenancy/forms/bulk_edit.py:32 netbox/tenancy/forms/bulk_edit.py:80 -#: netbox/tenancy/forms/bulk_edit.py:122 netbox/users/forms/bulk_edit.py:64 -#: netbox/users/forms/bulk_edit.py:82 netbox/users/forms/bulk_edit.py:112 -#: netbox/virtualization/forms/bulk_edit.py:32 -#: netbox/virtualization/forms/bulk_edit.py:46 -#: netbox/virtualization/forms/bulk_edit.py:100 -#: netbox/virtualization/forms/bulk_edit.py:177 -#: netbox/virtualization/forms/bulk_edit.py:228 -#: netbox/virtualization/forms/bulk_edit.py:337 -#: netbox/vpn/forms/bulk_edit.py:28 netbox/vpn/forms/bulk_edit.py:64 -#: netbox/vpn/forms/bulk_edit.py:121 netbox/vpn/forms/bulk_edit.py:155 -#: netbox/vpn/forms/bulk_edit.py:190 netbox/vpn/forms/bulk_edit.py:215 -#: netbox/vpn/forms/bulk_edit.py:247 netbox/vpn/forms/bulk_edit.py:274 -#: netbox/wireless/forms/bulk_edit.py:29 netbox/wireless/forms/bulk_edit.py:82 -#: netbox/wireless/forms/bulk_edit.py:140 +#: circuits/forms/bulk_edit.py:34 circuits/forms/bulk_edit.py:56 +#: circuits/forms/bulk_edit.py:83 circuits/forms/bulk_edit.py:104 +#: circuits/forms/bulk_edit.py:164 circuits/forms/bulk_edit.py:183 +#: circuits/forms/bulk_edit.py:228 core/forms/bulk_edit.py:28 +#: dcim/forms/bulk_create.py:35 dcim/forms/bulk_edit.py:73 +#: dcim/forms/bulk_edit.py:92 dcim/forms/bulk_edit.py:151 +#: dcim/forms/bulk_edit.py:192 dcim/forms/bulk_edit.py:210 +#: dcim/forms/bulk_edit.py:288 dcim/forms/bulk_edit.py:432 +#: dcim/forms/bulk_edit.py:466 dcim/forms/bulk_edit.py:481 +#: dcim/forms/bulk_edit.py:540 dcim/forms/bulk_edit.py:584 +#: dcim/forms/bulk_edit.py:618 dcim/forms/bulk_edit.py:642 +#: dcim/forms/bulk_edit.py:715 dcim/forms/bulk_edit.py:767 +#: dcim/forms/bulk_edit.py:819 dcim/forms/bulk_edit.py:842 +#: dcim/forms/bulk_edit.py:890 dcim/forms/bulk_edit.py:960 +#: dcim/forms/bulk_edit.py:1013 dcim/forms/bulk_edit.py:1048 +#: dcim/forms/bulk_edit.py:1088 dcim/forms/bulk_edit.py:1132 +#: dcim/forms/bulk_edit.py:1177 dcim/forms/bulk_edit.py:1204 +#: dcim/forms/bulk_edit.py:1222 dcim/forms/bulk_edit.py:1240 +#: dcim/forms/bulk_edit.py:1258 dcim/forms/bulk_edit.py:1682 +#: extras/forms/bulk_edit.py:39 extras/forms/bulk_edit.py:149 +#: extras/forms/bulk_edit.py:178 extras/forms/bulk_edit.py:208 +#: extras/forms/bulk_edit.py:256 extras/forms/bulk_edit.py:274 +#: extras/forms/bulk_edit.py:298 extras/forms/bulk_edit.py:312 +#: extras/forms/bulk_edit.py:339 extras/tables/tables.py:79 +#: ipam/forms/bulk_edit.py:53 ipam/forms/bulk_edit.py:73 +#: ipam/forms/bulk_edit.py:93 ipam/forms/bulk_edit.py:117 +#: ipam/forms/bulk_edit.py:146 ipam/forms/bulk_edit.py:175 +#: ipam/forms/bulk_edit.py:194 ipam/forms/bulk_edit.py:276 +#: ipam/forms/bulk_edit.py:321 ipam/forms/bulk_edit.py:369 +#: ipam/forms/bulk_edit.py:412 ipam/forms/bulk_edit.py:428 +#: ipam/forms/bulk_edit.py:516 ipam/forms/bulk_edit.py:547 +#: templates/account/token.html:35 templates/circuits/circuit.html:59 +#: templates/circuits/circuitgroup.html:32 +#: templates/circuits/circuittype.html:26 +#: templates/circuits/inc/circuit_termination_fields.html:88 +#: templates/circuits/provider.html:33 +#: templates/circuits/providernetwork.html:32 +#: templates/core/datasource.html:54 templates/core/plugin.html:80 +#: templates/dcim/cable.html:36 templates/dcim/consoleport.html:44 +#: templates/dcim/consoleserverport.html:44 templates/dcim/device.html:94 +#: templates/dcim/devicebay.html:32 templates/dcim/devicerole.html:30 +#: templates/dcim/devicetype.html:33 templates/dcim/frontport.html:58 +#: templates/dcim/interface.html:69 templates/dcim/inventoryitem.html:60 +#: templates/dcim/inventoryitemrole.html:22 templates/dcim/location.html:33 +#: templates/dcim/manufacturer.html:40 templates/dcim/module.html:73 +#: templates/dcim/modulebay.html:42 templates/dcim/moduletype.html:37 +#: templates/dcim/platform.html:33 templates/dcim/powerfeed.html:40 +#: templates/dcim/poweroutlet.html:40 templates/dcim/powerpanel.html:30 +#: templates/dcim/powerport.html:40 templates/dcim/rack.html:53 +#: templates/dcim/rackreservation.html:62 templates/dcim/rackrole.html:26 +#: templates/dcim/racktype.html:24 templates/dcim/rearport.html:54 +#: templates/dcim/region.html:33 templates/dcim/site.html:60 +#: templates/dcim/sitegroup.html:33 templates/dcim/virtualchassis.html:31 +#: templates/extras/configcontext.html:21 +#: templates/extras/configtemplate.html:17 +#: templates/extras/customfield.html:34 +#: templates/extras/dashboard/widget_add.html:14 +#: templates/extras/eventrule.html:21 templates/extras/exporttemplate.html:19 +#: templates/extras/notificationgroup.html:20 +#: templates/extras/savedfilter.html:17 templates/extras/script_list.html:45 +#: templates/extras/tag.html:20 templates/extras/webhook.html:17 +#: templates/generic/bulk_import.html:120 templates/ipam/aggregate.html:43 +#: templates/ipam/asn.html:42 templates/ipam/asnrange.html:38 +#: templates/ipam/fhrpgroup.html:34 templates/ipam/ipaddress.html:55 +#: templates/ipam/iprange.html:67 templates/ipam/prefix.html:81 +#: templates/ipam/rir.html:26 templates/ipam/role.html:26 +#: templates/ipam/routetarget.html:21 templates/ipam/service.html:50 +#: templates/ipam/servicetemplate.html:27 templates/ipam/vlan.html:62 +#: templates/ipam/vlangroup.html:34 templates/ipam/vrf.html:33 +#: templates/tenancy/contact.html:67 templates/tenancy/contactgroup.html:25 +#: templates/tenancy/contactrole.html:22 templates/tenancy/tenant.html:24 +#: templates/tenancy/tenantgroup.html:33 templates/users/group.html:21 +#: templates/users/objectpermission.html:21 templates/users/token.html:27 +#: templates/virtualization/cluster.html:25 +#: templates/virtualization/clustergroup.html:26 +#: templates/virtualization/clustertype.html:26 +#: templates/virtualization/virtualdisk.html:39 +#: templates/virtualization/virtualmachine.html:31 +#: templates/virtualization/vminterface.html:51 +#: templates/vpn/ikepolicy.html:17 templates/vpn/ikeproposal.html:17 +#: templates/vpn/ipsecpolicy.html:17 templates/vpn/ipsecprofile.html:17 +#: templates/vpn/ipsecprofile.html:40 templates/vpn/ipsecprofile.html:73 +#: templates/vpn/ipsecproposal.html:17 templates/vpn/l2vpn.html:26 +#: templates/vpn/tunnel.html:33 templates/vpn/tunnelgroup.html:30 +#: templates/wireless/wirelesslan.html:26 +#: templates/wireless/wirelesslangroup.html:33 +#: templates/wireless/wirelesslink.html:34 tenancy/forms/bulk_edit.py:32 +#: tenancy/forms/bulk_edit.py:80 tenancy/forms/bulk_edit.py:122 +#: users/forms/bulk_edit.py:64 users/forms/bulk_edit.py:82 +#: users/forms/bulk_edit.py:112 virtualization/forms/bulk_edit.py:32 +#: virtualization/forms/bulk_edit.py:46 virtualization/forms/bulk_edit.py:100 +#: virtualization/forms/bulk_edit.py:177 virtualization/forms/bulk_edit.py:228 +#: virtualization/forms/bulk_edit.py:337 vpn/forms/bulk_edit.py:28 +#: vpn/forms/bulk_edit.py:64 vpn/forms/bulk_edit.py:121 +#: vpn/forms/bulk_edit.py:155 vpn/forms/bulk_edit.py:190 +#: vpn/forms/bulk_edit.py:215 vpn/forms/bulk_edit.py:247 +#: vpn/forms/bulk_edit.py:274 wireless/forms/bulk_edit.py:29 +#: wireless/forms/bulk_edit.py:82 wireless/forms/bulk_edit.py:140 msgid "Description" msgstr "Описание" -#: netbox/circuits/forms/bulk_edit.py:51 netbox/circuits/forms/bulk_edit.py:73 -#: netbox/circuits/forms/bulk_edit.py:123 -#: netbox/circuits/forms/bulk_import.py:36 -#: netbox/circuits/forms/bulk_import.py:51 -#: netbox/circuits/forms/bulk_import.py:74 -#: netbox/circuits/forms/filtersets.py:70 -#: netbox/circuits/forms/filtersets.py:88 -#: netbox/circuits/forms/filtersets.py:116 -#: netbox/circuits/forms/filtersets.py:131 -#: netbox/circuits/forms/filtersets.py:199 -#: netbox/circuits/forms/filtersets.py:232 -#: netbox/circuits/forms/filtersets.py:255 -#: netbox/circuits/forms/model_forms.py:47 -#: netbox/circuits/forms/model_forms.py:61 -#: netbox/circuits/forms/model_forms.py:93 -#: netbox/circuits/tables/circuits.py:58 -#: netbox/circuits/tables/circuits.py:108 -#: netbox/circuits/tables/circuits.py:160 -#: netbox/circuits/tables/providers.py:72 -#: netbox/circuits/tables/providers.py:103 -#: netbox/templates/circuits/circuit.html:18 -#: netbox/templates/circuits/circuittermination.html:25 -#: netbox/templates/circuits/provider.html:20 -#: netbox/templates/circuits/provideraccount.html:20 -#: netbox/templates/circuits/providernetwork.html:20 -#: netbox/templates/dcim/inc/cable_termination.html:51 +#: circuits/forms/bulk_edit.py:51 circuits/forms/bulk_edit.py:73 +#: circuits/forms/bulk_edit.py:123 circuits/forms/bulk_import.py:36 +#: circuits/forms/bulk_import.py:51 circuits/forms/bulk_import.py:74 +#: circuits/forms/filtersets.py:70 circuits/forms/filtersets.py:88 +#: circuits/forms/filtersets.py:116 circuits/forms/filtersets.py:131 +#: circuits/forms/filtersets.py:199 circuits/forms/filtersets.py:232 +#: circuits/forms/filtersets.py:255 circuits/forms/model_forms.py:47 +#: circuits/forms/model_forms.py:61 circuits/forms/model_forms.py:93 +#: circuits/tables/circuits.py:58 circuits/tables/circuits.py:108 +#: circuits/tables/circuits.py:160 circuits/tables/providers.py:72 +#: circuits/tables/providers.py:103 templates/circuits/circuit.html:18 +#: templates/circuits/circuittermination.html:25 +#: templates/circuits/provider.html:20 +#: templates/circuits/provideraccount.html:20 +#: templates/circuits/providernetwork.html:20 +#: templates/dcim/inc/cable_termination.html:51 msgid "Provider" msgstr "Провайдер" -#: netbox/circuits/forms/bulk_edit.py:80 -#: netbox/circuits/forms/filtersets.py:91 -#: netbox/templates/circuits/providernetwork.html:28 +#: circuits/forms/bulk_edit.py:80 circuits/forms/filtersets.py:91 +#: templates/circuits/providernetwork.html:28 msgid "Service ID" msgstr "Идентификатор Службы" -#: netbox/circuits/forms/bulk_edit.py:100 -#: netbox/circuits/forms/filtersets.py:107 netbox/dcim/forms/bulk_edit.py:206 -#: netbox/dcim/forms/bulk_edit.py:604 netbox/dcim/forms/bulk_edit.py:804 -#: netbox/dcim/forms/bulk_edit.py:1173 netbox/dcim/forms/bulk_edit.py:1200 -#: netbox/dcim/forms/bulk_edit.py:1678 netbox/dcim/forms/filtersets.py:1064 -#: netbox/dcim/forms/filtersets.py:1455 netbox/dcim/forms/filtersets.py:1479 -#: netbox/dcim/tables/devices.py:704 netbox/dcim/tables/devices.py:761 -#: netbox/dcim/tables/devices.py:1003 netbox/dcim/tables/devicetypes.py:249 -#: netbox/dcim/tables/devicetypes.py:264 netbox/dcim/tables/racks.py:33 -#: netbox/extras/forms/bulk_edit.py:270 netbox/extras/tables/tables.py:443 -#: netbox/templates/circuits/circuittype.html:30 -#: netbox/templates/dcim/cable.html:40 -#: netbox/templates/dcim/devicerole.html:34 -#: netbox/templates/dcim/frontport.html:40 -#: netbox/templates/dcim/inventoryitemrole.html:26 -#: netbox/templates/dcim/rackrole.html:30 -#: netbox/templates/dcim/rearport.html:40 netbox/templates/extras/tag.html:26 +#: circuits/forms/bulk_edit.py:100 circuits/forms/filtersets.py:107 +#: dcim/forms/bulk_edit.py:206 dcim/forms/bulk_edit.py:604 +#: dcim/forms/bulk_edit.py:804 dcim/forms/bulk_edit.py:1173 +#: dcim/forms/bulk_edit.py:1200 dcim/forms/bulk_edit.py:1678 +#: dcim/forms/filtersets.py:1064 dcim/forms/filtersets.py:1455 +#: dcim/forms/filtersets.py:1479 dcim/tables/devices.py:704 +#: dcim/tables/devices.py:761 dcim/tables/devices.py:1003 +#: dcim/tables/devicetypes.py:249 dcim/tables/devicetypes.py:264 +#: dcim/tables/racks.py:33 extras/forms/bulk_edit.py:270 +#: extras/tables/tables.py:443 templates/circuits/circuittype.html:30 +#: templates/dcim/cable.html:40 templates/dcim/devicerole.html:34 +#: templates/dcim/frontport.html:40 templates/dcim/inventoryitemrole.html:26 +#: templates/dcim/rackrole.html:30 templates/dcim/rearport.html:40 +#: templates/extras/tag.html:26 msgid "Color" msgstr "Цвет" -#: netbox/circuits/forms/bulk_edit.py:118 -#: netbox/circuits/forms/bulk_import.py:87 -#: netbox/circuits/forms/filtersets.py:126 netbox/core/forms/bulk_edit.py:18 -#: netbox/core/forms/filtersets.py:33 netbox/core/tables/change_logging.py:32 -#: netbox/core/tables/data.py:20 netbox/core/tables/jobs.py:18 -#: netbox/dcim/forms/bulk_edit.py:782 netbox/dcim/forms/bulk_edit.py:921 -#: netbox/dcim/forms/bulk_edit.py:989 netbox/dcim/forms/bulk_edit.py:1008 -#: netbox/dcim/forms/bulk_edit.py:1031 netbox/dcim/forms/bulk_edit.py:1073 -#: netbox/dcim/forms/bulk_edit.py:1117 netbox/dcim/forms/bulk_edit.py:1168 -#: netbox/dcim/forms/bulk_edit.py:1195 netbox/dcim/forms/bulk_import.py:188 -#: netbox/dcim/forms/bulk_import.py:260 netbox/dcim/forms/bulk_import.py:708 -#: netbox/dcim/forms/bulk_import.py:734 netbox/dcim/forms/bulk_import.py:760 -#: netbox/dcim/forms/bulk_import.py:780 netbox/dcim/forms/bulk_import.py:863 -#: netbox/dcim/forms/bulk_import.py:957 netbox/dcim/forms/bulk_import.py:999 -#: netbox/dcim/forms/bulk_import.py:1213 netbox/dcim/forms/bulk_import.py:1376 -#: netbox/dcim/forms/filtersets.py:955 netbox/dcim/forms/filtersets.py:1054 -#: netbox/dcim/forms/filtersets.py:1175 netbox/dcim/forms/filtersets.py:1247 -#: netbox/dcim/forms/filtersets.py:1272 netbox/dcim/forms/filtersets.py:1296 -#: netbox/dcim/forms/filtersets.py:1316 netbox/dcim/forms/filtersets.py:1353 -#: netbox/dcim/forms/filtersets.py:1450 netbox/dcim/forms/filtersets.py:1474 -#: netbox/dcim/forms/model_forms.py:703 netbox/dcim/forms/model_forms.py:709 -#: netbox/dcim/forms/object_import.py:84 -#: netbox/dcim/forms/object_import.py:113 -#: netbox/dcim/forms/object_import.py:145 netbox/dcim/tables/devices.py:178 -#: netbox/dcim/tables/devices.py:814 netbox/dcim/tables/power.py:77 -#: netbox/dcim/tables/racks.py:138 netbox/extras/forms/bulk_import.py:42 -#: netbox/extras/tables/tables.py:405 netbox/extras/tables/tables.py:465 -#: netbox/netbox/tables/tables.py:240 -#: netbox/templates/circuits/circuit.html:30 -#: netbox/templates/core/datasource.html:38 -#: netbox/templates/dcim/cable.html:15 -#: netbox/templates/dcim/consoleport.html:36 -#: netbox/templates/dcim/consoleserverport.html:36 -#: netbox/templates/dcim/frontport.html:36 -#: netbox/templates/dcim/interface.html:46 -#: netbox/templates/dcim/interface.html:169 -#: netbox/templates/dcim/interface.html:311 -#: netbox/templates/dcim/powerfeed.html:32 -#: netbox/templates/dcim/poweroutlet.html:36 -#: netbox/templates/dcim/powerport.html:36 -#: netbox/templates/dcim/rearport.html:36 -#: netbox/templates/extras/eventrule.html:74 -#: netbox/templates/virtualization/cluster.html:17 -#: netbox/templates/vpn/l2vpn.html:22 -#: netbox/templates/wireless/inc/authentication_attrs.html:8 -#: netbox/templates/wireless/inc/wirelesslink_interface.html:14 -#: netbox/virtualization/forms/bulk_edit.py:60 -#: netbox/virtualization/forms/bulk_import.py:41 -#: netbox/virtualization/forms/filtersets.py:54 -#: netbox/virtualization/forms/model_forms.py:62 -#: netbox/virtualization/tables/clusters.py:66 -#: netbox/vpn/forms/bulk_edit.py:264 netbox/vpn/forms/bulk_import.py:264 -#: netbox/vpn/forms/filtersets.py:217 netbox/vpn/forms/model_forms.py:84 -#: netbox/vpn/forms/model_forms.py:119 netbox/vpn/forms/model_forms.py:231 +#: circuits/forms/bulk_edit.py:118 circuits/forms/bulk_import.py:87 +#: circuits/forms/filtersets.py:126 core/forms/bulk_edit.py:18 +#: core/forms/filtersets.py:33 core/tables/change_logging.py:32 +#: core/tables/data.py:20 core/tables/jobs.py:18 dcim/forms/bulk_edit.py:782 +#: dcim/forms/bulk_edit.py:921 dcim/forms/bulk_edit.py:989 +#: dcim/forms/bulk_edit.py:1008 dcim/forms/bulk_edit.py:1031 +#: dcim/forms/bulk_edit.py:1073 dcim/forms/bulk_edit.py:1117 +#: dcim/forms/bulk_edit.py:1168 dcim/forms/bulk_edit.py:1195 +#: dcim/forms/bulk_import.py:188 dcim/forms/bulk_import.py:260 +#: dcim/forms/bulk_import.py:708 dcim/forms/bulk_import.py:734 +#: dcim/forms/bulk_import.py:760 dcim/forms/bulk_import.py:780 +#: dcim/forms/bulk_import.py:863 dcim/forms/bulk_import.py:957 +#: dcim/forms/bulk_import.py:999 dcim/forms/bulk_import.py:1213 +#: dcim/forms/bulk_import.py:1376 dcim/forms/filtersets.py:955 +#: dcim/forms/filtersets.py:1054 dcim/forms/filtersets.py:1175 +#: dcim/forms/filtersets.py:1247 dcim/forms/filtersets.py:1272 +#: dcim/forms/filtersets.py:1296 dcim/forms/filtersets.py:1316 +#: dcim/forms/filtersets.py:1353 dcim/forms/filtersets.py:1450 +#: dcim/forms/filtersets.py:1474 dcim/forms/model_forms.py:703 +#: dcim/forms/model_forms.py:709 dcim/forms/object_import.py:84 +#: dcim/forms/object_import.py:113 dcim/forms/object_import.py:145 +#: dcim/tables/devices.py:178 dcim/tables/devices.py:814 +#: dcim/tables/power.py:77 dcim/tables/racks.py:138 +#: extras/forms/bulk_import.py:42 extras/tables/tables.py:405 +#: extras/tables/tables.py:465 netbox/tables/tables.py:240 +#: templates/circuits/circuit.html:30 templates/core/datasource.html:38 +#: templates/dcim/cable.html:15 templates/dcim/consoleport.html:36 +#: templates/dcim/consoleserverport.html:36 templates/dcim/frontport.html:36 +#: templates/dcim/interface.html:46 templates/dcim/interface.html:169 +#: templates/dcim/interface.html:311 templates/dcim/powerfeed.html:32 +#: templates/dcim/poweroutlet.html:36 templates/dcim/powerport.html:36 +#: templates/dcim/rearport.html:36 templates/extras/eventrule.html:74 +#: templates/virtualization/cluster.html:17 templates/vpn/l2vpn.html:22 +#: templates/wireless/inc/authentication_attrs.html:8 +#: templates/wireless/inc/wirelesslink_interface.html:14 +#: virtualization/forms/bulk_edit.py:60 virtualization/forms/bulk_import.py:41 +#: virtualization/forms/filtersets.py:54 +#: virtualization/forms/model_forms.py:62 virtualization/tables/clusters.py:66 +#: vpn/forms/bulk_edit.py:264 vpn/forms/bulk_import.py:264 +#: vpn/forms/filtersets.py:217 vpn/forms/model_forms.py:84 +#: vpn/forms/model_forms.py:119 vpn/forms/model_forms.py:231 msgid "Type" msgstr "Тип" -#: netbox/circuits/forms/bulk_edit.py:128 -#: netbox/circuits/forms/bulk_import.py:80 -#: netbox/circuits/forms/filtersets.py:139 -#: netbox/circuits/forms/model_forms.py:98 +#: circuits/forms/bulk_edit.py:128 circuits/forms/bulk_import.py:80 +#: circuits/forms/filtersets.py:139 circuits/forms/model_forms.py:98 msgid "Provider account" msgstr "Аккаунт провайдера" -#: netbox/circuits/forms/bulk_edit.py:136 -#: netbox/circuits/forms/bulk_import.py:93 -#: netbox/circuits/forms/filtersets.py:150 netbox/core/forms/filtersets.py:38 -#: netbox/core/forms/filtersets.py:79 netbox/core/tables/data.py:23 -#: netbox/core/tables/jobs.py:26 netbox/core/tables/tasks.py:88 -#: netbox/dcim/forms/bulk_edit.py:106 netbox/dcim/forms/bulk_edit.py:181 -#: netbox/dcim/forms/bulk_edit.py:351 netbox/dcim/forms/bulk_edit.py:700 -#: netbox/dcim/forms/bulk_edit.py:756 netbox/dcim/forms/bulk_edit.py:788 -#: netbox/dcim/forms/bulk_edit.py:915 netbox/dcim/forms/bulk_edit.py:1701 -#: netbox/dcim/forms/bulk_import.py:88 netbox/dcim/forms/bulk_import.py:147 -#: netbox/dcim/forms/bulk_import.py:248 netbox/dcim/forms/bulk_import.py:505 -#: netbox/dcim/forms/bulk_import.py:659 netbox/dcim/forms/bulk_import.py:1207 -#: netbox/dcim/forms/bulk_import.py:1371 netbox/dcim/forms/bulk_import.py:1435 -#: netbox/dcim/forms/filtersets.py:178 netbox/dcim/forms/filtersets.py:237 -#: netbox/dcim/forms/filtersets.py:359 netbox/dcim/forms/filtersets.py:799 -#: netbox/dcim/forms/filtersets.py:924 netbox/dcim/forms/filtersets.py:958 -#: netbox/dcim/forms/filtersets.py:1059 netbox/dcim/forms/filtersets.py:1170 -#: netbox/dcim/tables/devices.py:140 netbox/dcim/tables/devices.py:817 -#: netbox/dcim/tables/devices.py:1063 netbox/dcim/tables/modules.py:69 -#: netbox/dcim/tables/power.py:74 netbox/dcim/tables/racks.py:126 -#: netbox/dcim/tables/sites.py:82 netbox/dcim/tables/sites.py:138 -#: netbox/ipam/forms/bulk_edit.py:255 netbox/ipam/forms/bulk_edit.py:305 -#: netbox/ipam/forms/bulk_edit.py:353 netbox/ipam/forms/bulk_edit.py:551 -#: netbox/ipam/forms/bulk_import.py:192 netbox/ipam/forms/bulk_import.py:257 -#: netbox/ipam/forms/bulk_import.py:293 netbox/ipam/forms/bulk_import.py:450 -#: netbox/ipam/forms/filtersets.py:210 netbox/ipam/forms/filtersets.py:281 -#: netbox/ipam/forms/filtersets.py:355 netbox/ipam/forms/filtersets.py:501 -#: netbox/ipam/forms/model_forms.py:468 netbox/ipam/tables/ip.py:237 -#: netbox/ipam/tables/ip.py:312 netbox/ipam/tables/ip.py:363 -#: netbox/ipam/tables/ip.py:426 netbox/ipam/tables/ip.py:453 -#: netbox/ipam/tables/vlans.py:126 netbox/ipam/tables/vlans.py:232 -#: netbox/templates/circuits/circuit.html:34 -#: netbox/templates/core/datasource.html:46 netbox/templates/core/job.html:48 -#: netbox/templates/core/rq_task.html:81 netbox/templates/core/system.html:18 -#: netbox/templates/dcim/cable.html:19 netbox/templates/dcim/device.html:178 -#: netbox/templates/dcim/location.html:45 netbox/templates/dcim/module.html:69 -#: netbox/templates/dcim/powerfeed.html:36 netbox/templates/dcim/rack.html:41 -#: netbox/templates/dcim/site.html:43 -#: netbox/templates/extras/script_list.html:47 -#: netbox/templates/ipam/ipaddress.html:37 -#: netbox/templates/ipam/iprange.html:54 netbox/templates/ipam/prefix.html:73 -#: netbox/templates/ipam/vlan.html:48 -#: netbox/templates/virtualization/cluster.html:21 -#: netbox/templates/virtualization/virtualmachine.html:19 -#: netbox/templates/vpn/tunnel.html:25 -#: netbox/templates/wireless/wirelesslan.html:22 -#: netbox/templates/wireless/wirelesslink.html:17 -#: netbox/users/forms/filtersets.py:32 netbox/users/forms/model_forms.py:194 -#: netbox/virtualization/forms/bulk_edit.py:70 -#: netbox/virtualization/forms/bulk_edit.py:118 -#: netbox/virtualization/forms/bulk_import.py:54 -#: netbox/virtualization/forms/bulk_import.py:80 -#: netbox/virtualization/forms/filtersets.py:62 -#: netbox/virtualization/forms/filtersets.py:160 -#: netbox/virtualization/tables/clusters.py:74 -#: netbox/virtualization/tables/virtualmachines.py:60 -#: netbox/vpn/forms/bulk_edit.py:39 netbox/vpn/forms/bulk_import.py:37 -#: netbox/vpn/forms/filtersets.py:47 netbox/vpn/tables/tunnels.py:48 -#: netbox/wireless/forms/bulk_edit.py:43 -#: netbox/wireless/forms/bulk_edit.py:105 -#: netbox/wireless/forms/bulk_import.py:43 -#: netbox/wireless/forms/bulk_import.py:84 -#: netbox/wireless/forms/filtersets.py:49 -#: netbox/wireless/forms/filtersets.py:83 -#: netbox/wireless/tables/wirelesslan.py:52 -#: netbox/wireless/tables/wirelesslink.py:20 +#: circuits/forms/bulk_edit.py:136 circuits/forms/bulk_import.py:93 +#: circuits/forms/filtersets.py:150 core/forms/filtersets.py:38 +#: core/forms/filtersets.py:79 core/tables/data.py:23 core/tables/jobs.py:26 +#: core/tables/tasks.py:88 dcim/forms/bulk_edit.py:106 +#: dcim/forms/bulk_edit.py:181 dcim/forms/bulk_edit.py:351 +#: dcim/forms/bulk_edit.py:700 dcim/forms/bulk_edit.py:756 +#: dcim/forms/bulk_edit.py:788 dcim/forms/bulk_edit.py:915 +#: dcim/forms/bulk_edit.py:1701 dcim/forms/bulk_import.py:88 +#: dcim/forms/bulk_import.py:147 dcim/forms/bulk_import.py:248 +#: dcim/forms/bulk_import.py:505 dcim/forms/bulk_import.py:659 +#: dcim/forms/bulk_import.py:1207 dcim/forms/bulk_import.py:1371 +#: dcim/forms/bulk_import.py:1435 dcim/forms/filtersets.py:178 +#: dcim/forms/filtersets.py:237 dcim/forms/filtersets.py:359 +#: dcim/forms/filtersets.py:799 dcim/forms/filtersets.py:924 +#: dcim/forms/filtersets.py:958 dcim/forms/filtersets.py:1059 +#: dcim/forms/filtersets.py:1170 dcim/tables/devices.py:140 +#: dcim/tables/devices.py:817 dcim/tables/devices.py:1063 +#: dcim/tables/modules.py:69 dcim/tables/power.py:74 dcim/tables/racks.py:126 +#: dcim/tables/sites.py:82 dcim/tables/sites.py:138 +#: ipam/forms/bulk_edit.py:256 ipam/forms/bulk_edit.py:306 +#: ipam/forms/bulk_edit.py:354 ipam/forms/bulk_edit.py:506 +#: ipam/forms/bulk_import.py:192 ipam/forms/bulk_import.py:257 +#: ipam/forms/bulk_import.py:293 ipam/forms/bulk_import.py:450 +#: ipam/forms/filtersets.py:210 ipam/forms/filtersets.py:281 +#: ipam/forms/filtersets.py:355 ipam/forms/filtersets.py:501 +#: ipam/forms/model_forms.py:468 ipam/tables/ip.py:237 ipam/tables/ip.py:312 +#: ipam/tables/ip.py:363 ipam/tables/ip.py:426 ipam/tables/ip.py:453 +#: ipam/tables/vlans.py:126 ipam/tables/vlans.py:232 +#: templates/circuits/circuit.html:34 templates/core/datasource.html:46 +#: templates/core/job.html:48 templates/core/rq_task.html:81 +#: templates/core/system.html:18 templates/dcim/cable.html:19 +#: templates/dcim/device.html:178 templates/dcim/location.html:45 +#: templates/dcim/module.html:69 templates/dcim/powerfeed.html:36 +#: templates/dcim/rack.html:41 templates/dcim/site.html:43 +#: templates/extras/script_list.html:47 templates/ipam/ipaddress.html:37 +#: templates/ipam/iprange.html:54 templates/ipam/prefix.html:73 +#: templates/ipam/vlan.html:48 templates/virtualization/cluster.html:21 +#: templates/virtualization/virtualmachine.html:19 +#: templates/vpn/tunnel.html:25 templates/wireless/wirelesslan.html:22 +#: templates/wireless/wirelesslink.html:17 users/forms/filtersets.py:32 +#: users/forms/model_forms.py:194 virtualization/forms/bulk_edit.py:70 +#: virtualization/forms/bulk_edit.py:118 +#: virtualization/forms/bulk_import.py:54 +#: virtualization/forms/bulk_import.py:80 +#: virtualization/forms/filtersets.py:62 +#: virtualization/forms/filtersets.py:160 virtualization/tables/clusters.py:74 +#: virtualization/tables/virtualmachines.py:60 vpn/forms/bulk_edit.py:39 +#: vpn/forms/bulk_import.py:37 vpn/forms/filtersets.py:47 +#: vpn/tables/tunnels.py:48 wireless/forms/bulk_edit.py:43 +#: wireless/forms/bulk_edit.py:105 wireless/forms/bulk_import.py:43 +#: wireless/forms/bulk_import.py:84 wireless/forms/filtersets.py:49 +#: wireless/forms/filtersets.py:83 wireless/tables/wirelesslan.py:52 +#: wireless/tables/wirelesslink.py:20 msgid "Status" msgstr "Статус" -#: netbox/circuits/forms/bulk_edit.py:142 -#: netbox/circuits/forms/bulk_edit.py:233 -#: netbox/circuits/forms/bulk_import.py:98 -#: netbox/circuits/forms/bulk_import.py:158 -#: netbox/circuits/forms/filtersets.py:119 -#: netbox/circuits/forms/filtersets.py:241 netbox/dcim/forms/bulk_edit.py:122 -#: netbox/dcim/forms/bulk_edit.py:187 netbox/dcim/forms/bulk_edit.py:346 -#: netbox/dcim/forms/bulk_edit.py:461 netbox/dcim/forms/bulk_edit.py:690 -#: netbox/dcim/forms/bulk_edit.py:794 netbox/dcim/forms/bulk_edit.py:1706 -#: netbox/dcim/forms/bulk_import.py:107 netbox/dcim/forms/bulk_import.py:152 -#: netbox/dcim/forms/bulk_import.py:241 netbox/dcim/forms/bulk_import.py:334 -#: netbox/dcim/forms/bulk_import.py:479 netbox/dcim/forms/bulk_import.py:1219 -#: netbox/dcim/forms/bulk_import.py:1428 netbox/dcim/forms/filtersets.py:173 -#: netbox/dcim/forms/filtersets.py:205 netbox/dcim/forms/filtersets.py:323 -#: netbox/dcim/forms/filtersets.py:399 netbox/dcim/forms/filtersets.py:420 -#: netbox/dcim/forms/filtersets.py:722 netbox/dcim/forms/filtersets.py:916 -#: netbox/dcim/forms/filtersets.py:978 netbox/dcim/forms/filtersets.py:1008 -#: netbox/dcim/forms/filtersets.py:1130 netbox/dcim/tables/power.py:88 -#: netbox/extras/filtersets.py:612 netbox/extras/forms/filtersets.py:323 -#: netbox/extras/forms/filtersets.py:396 netbox/ipam/forms/bulk_edit.py:42 -#: netbox/ipam/forms/bulk_edit.py:67 netbox/ipam/forms/bulk_edit.py:111 -#: netbox/ipam/forms/bulk_edit.py:140 netbox/ipam/forms/bulk_edit.py:165 -#: netbox/ipam/forms/bulk_edit.py:250 netbox/ipam/forms/bulk_edit.py:300 -#: netbox/ipam/forms/bulk_edit.py:348 netbox/ipam/forms/bulk_edit.py:546 -#: netbox/ipam/forms/bulk_import.py:38 netbox/ipam/forms/bulk_import.py:67 -#: netbox/ipam/forms/bulk_import.py:95 netbox/ipam/forms/bulk_import.py:115 -#: netbox/ipam/forms/bulk_import.py:135 netbox/ipam/forms/bulk_import.py:164 -#: netbox/ipam/forms/bulk_import.py:250 netbox/ipam/forms/bulk_import.py:286 -#: netbox/ipam/forms/bulk_import.py:443 netbox/ipam/forms/filtersets.py:48 -#: netbox/ipam/forms/filtersets.py:68 netbox/ipam/forms/filtersets.py:100 -#: netbox/ipam/forms/filtersets.py:120 netbox/ipam/forms/filtersets.py:143 -#: netbox/ipam/forms/filtersets.py:174 netbox/ipam/forms/filtersets.py:267 -#: netbox/ipam/forms/filtersets.py:310 netbox/ipam/forms/filtersets.py:469 -#: netbox/ipam/tables/ip.py:456 netbox/ipam/tables/vlans.py:229 -#: netbox/templates/circuits/circuit.html:38 -#: netbox/templates/circuits/circuitgroup.html:36 -#: netbox/templates/dcim/cable.html:23 netbox/templates/dcim/device.html:79 -#: netbox/templates/dcim/location.html:49 -#: netbox/templates/dcim/powerfeed.html:44 netbox/templates/dcim/rack.html:32 -#: netbox/templates/dcim/rackreservation.html:49 -#: netbox/templates/dcim/site.html:47 -#: netbox/templates/dcim/virtualdevicecontext.html:52 -#: netbox/templates/ipam/aggregate.html:30 netbox/templates/ipam/asn.html:33 -#: netbox/templates/ipam/asnrange.html:29 -#: netbox/templates/ipam/ipaddress.html:28 -#: netbox/templates/ipam/iprange.html:58 netbox/templates/ipam/prefix.html:29 -#: netbox/templates/ipam/routetarget.html:17 -#: netbox/templates/ipam/vlan.html:39 netbox/templates/ipam/vrf.html:20 -#: netbox/templates/tenancy/tenant.html:17 -#: netbox/templates/virtualization/cluster.html:33 -#: netbox/templates/virtualization/virtualmachine.html:39 -#: netbox/templates/vpn/l2vpn.html:30 netbox/templates/vpn/tunnel.html:49 -#: netbox/templates/wireless/wirelesslan.html:34 -#: netbox/templates/wireless/wirelesslink.html:25 -#: netbox/tenancy/forms/forms.py:25 netbox/tenancy/forms/forms.py:48 -#: netbox/tenancy/forms/model_forms.py:52 netbox/tenancy/tables/columns.py:64 -#: netbox/virtualization/forms/bulk_edit.py:76 -#: netbox/virtualization/forms/bulk_edit.py:155 -#: netbox/virtualization/forms/bulk_import.py:66 -#: netbox/virtualization/forms/bulk_import.py:115 -#: netbox/virtualization/forms/filtersets.py:47 -#: netbox/virtualization/forms/filtersets.py:105 -#: netbox/vpn/forms/bulk_edit.py:59 netbox/vpn/forms/bulk_edit.py:269 -#: netbox/vpn/forms/bulk_import.py:59 netbox/vpn/forms/bulk_import.py:258 -#: netbox/vpn/forms/filtersets.py:214 netbox/wireless/forms/bulk_edit.py:63 -#: netbox/wireless/forms/bulk_edit.py:110 -#: netbox/wireless/forms/bulk_import.py:55 -#: netbox/wireless/forms/bulk_import.py:97 -#: netbox/wireless/forms/filtersets.py:35 -#: netbox/wireless/forms/filtersets.py:75 +#: circuits/forms/bulk_edit.py:142 circuits/forms/bulk_edit.py:233 +#: circuits/forms/bulk_import.py:98 circuits/forms/bulk_import.py:158 +#: circuits/forms/filtersets.py:119 circuits/forms/filtersets.py:241 +#: dcim/forms/bulk_edit.py:122 dcim/forms/bulk_edit.py:187 +#: dcim/forms/bulk_edit.py:346 dcim/forms/bulk_edit.py:461 +#: dcim/forms/bulk_edit.py:690 dcim/forms/bulk_edit.py:794 +#: dcim/forms/bulk_edit.py:1706 dcim/forms/bulk_import.py:107 +#: dcim/forms/bulk_import.py:152 dcim/forms/bulk_import.py:241 +#: dcim/forms/bulk_import.py:334 dcim/forms/bulk_import.py:479 +#: dcim/forms/bulk_import.py:1219 dcim/forms/bulk_import.py:1428 +#: dcim/forms/filtersets.py:173 dcim/forms/filtersets.py:205 +#: dcim/forms/filtersets.py:323 dcim/forms/filtersets.py:399 +#: dcim/forms/filtersets.py:420 dcim/forms/filtersets.py:722 +#: dcim/forms/filtersets.py:916 dcim/forms/filtersets.py:978 +#: dcim/forms/filtersets.py:1008 dcim/forms/filtersets.py:1130 +#: dcim/tables/power.py:88 extras/filtersets.py:612 +#: extras/forms/filtersets.py:323 extras/forms/filtersets.py:396 +#: ipam/forms/bulk_edit.py:43 ipam/forms/bulk_edit.py:68 +#: ipam/forms/bulk_edit.py:112 ipam/forms/bulk_edit.py:141 +#: ipam/forms/bulk_edit.py:166 ipam/forms/bulk_edit.py:251 +#: ipam/forms/bulk_edit.py:301 ipam/forms/bulk_edit.py:349 +#: ipam/forms/bulk_edit.py:501 ipam/forms/bulk_import.py:38 +#: ipam/forms/bulk_import.py:67 ipam/forms/bulk_import.py:95 +#: ipam/forms/bulk_import.py:115 ipam/forms/bulk_import.py:135 +#: ipam/forms/bulk_import.py:164 ipam/forms/bulk_import.py:250 +#: ipam/forms/bulk_import.py:286 ipam/forms/bulk_import.py:443 +#: ipam/forms/filtersets.py:48 ipam/forms/filtersets.py:68 +#: ipam/forms/filtersets.py:100 ipam/forms/filtersets.py:120 +#: ipam/forms/filtersets.py:143 ipam/forms/filtersets.py:174 +#: ipam/forms/filtersets.py:267 ipam/forms/filtersets.py:310 +#: ipam/forms/filtersets.py:469 ipam/tables/ip.py:456 ipam/tables/vlans.py:229 +#: templates/circuits/circuit.html:38 templates/circuits/circuitgroup.html:36 +#: templates/dcim/cable.html:23 templates/dcim/device.html:79 +#: templates/dcim/location.html:49 templates/dcim/powerfeed.html:44 +#: templates/dcim/rack.html:32 templates/dcim/rackreservation.html:49 +#: templates/dcim/site.html:47 templates/dcim/virtualdevicecontext.html:52 +#: templates/ipam/aggregate.html:30 templates/ipam/asn.html:33 +#: templates/ipam/asnrange.html:29 templates/ipam/ipaddress.html:28 +#: templates/ipam/iprange.html:58 templates/ipam/prefix.html:29 +#: templates/ipam/routetarget.html:17 templates/ipam/vlan.html:39 +#: templates/ipam/vrf.html:20 templates/tenancy/tenant.html:17 +#: templates/virtualization/cluster.html:33 +#: templates/virtualization/virtualmachine.html:39 templates/vpn/l2vpn.html:30 +#: templates/vpn/tunnel.html:49 templates/wireless/wirelesslan.html:34 +#: templates/wireless/wirelesslink.html:25 tenancy/forms/forms.py:25 +#: tenancy/forms/forms.py:48 tenancy/forms/model_forms.py:52 +#: tenancy/tables/columns.py:64 virtualization/forms/bulk_edit.py:76 +#: virtualization/forms/bulk_edit.py:155 +#: virtualization/forms/bulk_import.py:66 +#: virtualization/forms/bulk_import.py:115 +#: virtualization/forms/filtersets.py:47 +#: virtualization/forms/filtersets.py:105 vpn/forms/bulk_edit.py:59 +#: vpn/forms/bulk_edit.py:269 vpn/forms/bulk_import.py:59 +#: vpn/forms/bulk_import.py:258 vpn/forms/filtersets.py:214 +#: wireless/forms/bulk_edit.py:63 wireless/forms/bulk_edit.py:110 +#: wireless/forms/bulk_import.py:55 wireless/forms/bulk_import.py:97 +#: wireless/forms/filtersets.py:35 wireless/forms/filtersets.py:75 msgid "Tenant" msgstr "Арендатор" -#: netbox/circuits/forms/bulk_edit.py:147 -#: netbox/circuits/forms/filtersets.py:174 +#: circuits/forms/bulk_edit.py:147 circuits/forms/filtersets.py:174 msgid "Install date" msgstr "Дата установки" -#: netbox/circuits/forms/bulk_edit.py:152 -#: netbox/circuits/forms/filtersets.py:179 +#: circuits/forms/bulk_edit.py:152 circuits/forms/filtersets.py:179 msgid "Termination date" msgstr "Дата отключения" -#: netbox/circuits/forms/bulk_edit.py:158 -#: netbox/circuits/forms/filtersets.py:186 +#: circuits/forms/bulk_edit.py:158 circuits/forms/filtersets.py:186 msgid "Commit rate (Kbps)" msgstr "Гарантированная скорость (Кбит/с)" -#: netbox/circuits/forms/bulk_edit.py:173 -#: netbox/circuits/forms/model_forms.py:112 +#: circuits/forms/bulk_edit.py:173 circuits/forms/model_forms.py:112 msgid "Service Parameters" msgstr "Параметры Службы" -#: netbox/circuits/forms/bulk_edit.py:174 -#: netbox/circuits/forms/model_forms.py:113 -#: netbox/circuits/forms/model_forms.py:183 -#: netbox/dcim/forms/model_forms.py:139 netbox/dcim/forms/model_forms.py:181 -#: netbox/dcim/forms/model_forms.py:266 netbox/dcim/forms/model_forms.py:323 -#: netbox/dcim/forms/model_forms.py:768 netbox/dcim/forms/model_forms.py:1692 -#: netbox/ipam/forms/model_forms.py:64 netbox/ipam/forms/model_forms.py:81 -#: netbox/ipam/forms/model_forms.py:115 netbox/ipam/forms/model_forms.py:136 -#: netbox/ipam/forms/model_forms.py:160 netbox/ipam/forms/model_forms.py:232 -#: netbox/ipam/forms/model_forms.py:261 netbox/ipam/forms/model_forms.py:316 -#: netbox/netbox/navigation/menu.py:24 -#: netbox/templates/dcim/device_edit.html:85 -#: netbox/templates/dcim/htmx/cable_edit.html:72 -#: netbox/templates/ipam/ipaddress_bulk_add.html:27 -#: netbox/templates/ipam/vlan_edit.html:22 -#: netbox/virtualization/forms/model_forms.py:80 -#: netbox/virtualization/forms/model_forms.py:222 -#: netbox/vpn/forms/bulk_edit.py:78 netbox/vpn/forms/filtersets.py:44 -#: netbox/vpn/forms/model_forms.py:62 netbox/vpn/forms/model_forms.py:147 -#: netbox/vpn/forms/model_forms.py:411 netbox/wireless/forms/model_forms.py:54 -#: netbox/wireless/forms/model_forms.py:170 +#: circuits/forms/bulk_edit.py:174 circuits/forms/model_forms.py:113 +#: circuits/forms/model_forms.py:183 dcim/forms/model_forms.py:139 +#: dcim/forms/model_forms.py:181 dcim/forms/model_forms.py:266 +#: dcim/forms/model_forms.py:323 dcim/forms/model_forms.py:768 +#: dcim/forms/model_forms.py:1692 ipam/forms/model_forms.py:64 +#: ipam/forms/model_forms.py:81 ipam/forms/model_forms.py:115 +#: ipam/forms/model_forms.py:136 ipam/forms/model_forms.py:160 +#: ipam/forms/model_forms.py:232 ipam/forms/model_forms.py:261 +#: ipam/forms/model_forms.py:316 netbox/navigation/menu.py:24 +#: templates/dcim/device_edit.html:85 templates/dcim/htmx/cable_edit.html:72 +#: templates/ipam/ipaddress_bulk_add.html:27 templates/ipam/vlan_edit.html:22 +#: virtualization/forms/model_forms.py:80 +#: virtualization/forms/model_forms.py:222 vpn/forms/bulk_edit.py:78 +#: vpn/forms/filtersets.py:44 vpn/forms/model_forms.py:62 +#: vpn/forms/model_forms.py:147 vpn/forms/model_forms.py:411 +#: wireless/forms/model_forms.py:54 wireless/forms/model_forms.py:170 msgid "Tenancy" msgstr "Аренда" -#: netbox/circuits/forms/bulk_edit.py:193 -#: netbox/circuits/forms/bulk_edit.py:217 -#: netbox/circuits/forms/model_forms.py:155 -#: netbox/circuits/tables/circuits.py:117 -#: netbox/templates/circuits/inc/circuit_termination_fields.html:62 -#: netbox/templates/circuits/providernetwork.html:17 +#: circuits/forms/bulk_edit.py:193 circuits/forms/bulk_edit.py:217 +#: circuits/forms/model_forms.py:155 circuits/tables/circuits.py:117 +#: templates/circuits/inc/circuit_termination_fields.html:62 +#: templates/circuits/providernetwork.html:17 msgid "Provider Network" msgstr "Сеть провайдера" -#: netbox/circuits/forms/bulk_edit.py:199 +#: circuits/forms/bulk_edit.py:199 msgid "Port speed (Kbps)" msgstr "Скорость порта (Кбит/с)" -#: netbox/circuits/forms/bulk_edit.py:203 +#: circuits/forms/bulk_edit.py:203 msgid "Upstream speed (Kbps)" msgstr "Скорость восходящего потока (Кбит/с)" -#: netbox/circuits/forms/bulk_edit.py:206 netbox/dcim/forms/bulk_edit.py:951 -#: netbox/dcim/forms/bulk_edit.py:1315 netbox/dcim/forms/bulk_edit.py:1332 -#: netbox/dcim/forms/bulk_edit.py:1349 netbox/dcim/forms/bulk_edit.py:1367 -#: netbox/dcim/forms/bulk_edit.py:1455 netbox/dcim/forms/bulk_edit.py:1594 -#: netbox/dcim/forms/bulk_edit.py:1611 +#: circuits/forms/bulk_edit.py:206 dcim/forms/bulk_edit.py:951 +#: dcim/forms/bulk_edit.py:1315 dcim/forms/bulk_edit.py:1332 +#: dcim/forms/bulk_edit.py:1349 dcim/forms/bulk_edit.py:1367 +#: dcim/forms/bulk_edit.py:1455 dcim/forms/bulk_edit.py:1594 +#: dcim/forms/bulk_edit.py:1611 msgid "Mark connected" msgstr "Пометить подключенным" -#: netbox/circuits/forms/bulk_edit.py:219 -#: netbox/circuits/forms/model_forms.py:157 -#: netbox/templates/circuits/inc/circuit_termination_fields.html:54 -#: netbox/templates/dcim/frontport.html:121 -#: netbox/templates/dcim/interface.html:193 -#: netbox/templates/dcim/rearport.html:111 +#: circuits/forms/bulk_edit.py:219 circuits/forms/model_forms.py:157 +#: templates/circuits/inc/circuit_termination_fields.html:54 +#: templates/dcim/frontport.html:121 templates/dcim/interface.html:193 +#: templates/dcim/rearport.html:111 msgid "Circuit Termination" msgstr "Точка подключения канала связи" -#: netbox/circuits/forms/bulk_edit.py:221 -#: netbox/circuits/forms/model_forms.py:159 +#: circuits/forms/bulk_edit.py:221 circuits/forms/model_forms.py:159 msgid "Termination Details" msgstr "Сведения об точке подключения" -#: netbox/circuits/forms/bulk_edit.py:251 -#: netbox/circuits/forms/filtersets.py:268 -#: netbox/circuits/tables/circuits.py:168 netbox/dcim/forms/model_forms.py:551 -#: netbox/templates/circuits/circuitgroupassignment.html:30 -#: netbox/templates/dcim/device.html:133 -#: netbox/templates/dcim/virtualchassis.html:68 -#: netbox/templates/dcim/virtualchassis_edit.html:56 -#: netbox/templates/ipam/inc/panels/fhrp_groups.html:26 -#: netbox/tenancy/forms/bulk_edit.py:147 -#: netbox/tenancy/forms/filtersets.py:110 +#: circuits/forms/bulk_edit.py:251 circuits/forms/filtersets.py:268 +#: circuits/tables/circuits.py:168 dcim/forms/model_forms.py:551 +#: templates/circuits/circuitgroupassignment.html:30 +#: templates/dcim/device.html:133 templates/dcim/virtualchassis.html:68 +#: templates/dcim/virtualchassis_edit.html:56 +#: templates/ipam/inc/panels/fhrp_groups.html:26 +#: tenancy/forms/bulk_edit.py:147 tenancy/forms/filtersets.py:110 msgid "Priority" msgstr "Приоритет" -#: netbox/circuits/forms/bulk_import.py:39 -#: netbox/circuits/forms/bulk_import.py:54 -#: netbox/circuits/forms/bulk_import.py:77 +#: circuits/forms/bulk_import.py:39 circuits/forms/bulk_import.py:54 +#: circuits/forms/bulk_import.py:77 msgid "Assigned provider" msgstr "Назначенный провайдер" -#: netbox/circuits/forms/bulk_import.py:83 +#: circuits/forms/bulk_import.py:83 msgid "Assigned provider account" msgstr "Назначенный аккаунт провайдера" -#: netbox/circuits/forms/bulk_import.py:90 +#: circuits/forms/bulk_import.py:90 msgid "Type of circuit" msgstr "Тип канала связи" -#: netbox/circuits/forms/bulk_import.py:95 netbox/dcim/forms/bulk_import.py:90 -#: netbox/dcim/forms/bulk_import.py:149 netbox/dcim/forms/bulk_import.py:250 -#: netbox/dcim/forms/bulk_import.py:507 netbox/dcim/forms/bulk_import.py:661 -#: netbox/dcim/forms/bulk_import.py:1373 netbox/ipam/forms/bulk_import.py:194 -#: netbox/ipam/forms/bulk_import.py:259 netbox/ipam/forms/bulk_import.py:295 -#: netbox/ipam/forms/bulk_import.py:452 -#: netbox/virtualization/forms/bulk_import.py:56 -#: netbox/virtualization/forms/bulk_import.py:82 -#: netbox/vpn/forms/bulk_import.py:39 netbox/wireless/forms/bulk_import.py:45 +#: circuits/forms/bulk_import.py:95 dcim/forms/bulk_import.py:90 +#: dcim/forms/bulk_import.py:149 dcim/forms/bulk_import.py:250 +#: dcim/forms/bulk_import.py:507 dcim/forms/bulk_import.py:661 +#: dcim/forms/bulk_import.py:1373 ipam/forms/bulk_import.py:194 +#: ipam/forms/bulk_import.py:259 ipam/forms/bulk_import.py:295 +#: ipam/forms/bulk_import.py:452 virtualization/forms/bulk_import.py:56 +#: virtualization/forms/bulk_import.py:82 vpn/forms/bulk_import.py:39 +#: wireless/forms/bulk_import.py:45 msgid "Operational status" msgstr "Операционный статус" -#: netbox/circuits/forms/bulk_import.py:102 -#: netbox/circuits/forms/bulk_import.py:162 -#: netbox/dcim/forms/bulk_import.py:111 netbox/dcim/forms/bulk_import.py:156 -#: netbox/dcim/forms/bulk_import.py:338 netbox/dcim/forms/bulk_import.py:483 -#: netbox/dcim/forms/bulk_import.py:1223 netbox/dcim/forms/bulk_import.py:1368 -#: netbox/dcim/forms/bulk_import.py:1432 netbox/ipam/forms/bulk_import.py:42 -#: netbox/ipam/forms/bulk_import.py:71 netbox/ipam/forms/bulk_import.py:99 -#: netbox/ipam/forms/bulk_import.py:119 netbox/ipam/forms/bulk_import.py:139 -#: netbox/ipam/forms/bulk_import.py:168 netbox/ipam/forms/bulk_import.py:254 -#: netbox/ipam/forms/bulk_import.py:290 netbox/ipam/forms/bulk_import.py:447 -#: netbox/virtualization/forms/bulk_import.py:70 -#: netbox/virtualization/forms/bulk_import.py:119 -#: netbox/vpn/forms/bulk_import.py:63 netbox/wireless/forms/bulk_import.py:59 -#: netbox/wireless/forms/bulk_import.py:101 +#: circuits/forms/bulk_import.py:102 circuits/forms/bulk_import.py:162 +#: dcim/forms/bulk_import.py:111 dcim/forms/bulk_import.py:156 +#: dcim/forms/bulk_import.py:338 dcim/forms/bulk_import.py:483 +#: dcim/forms/bulk_import.py:1223 dcim/forms/bulk_import.py:1368 +#: dcim/forms/bulk_import.py:1432 ipam/forms/bulk_import.py:42 +#: ipam/forms/bulk_import.py:71 ipam/forms/bulk_import.py:99 +#: ipam/forms/bulk_import.py:119 ipam/forms/bulk_import.py:139 +#: ipam/forms/bulk_import.py:168 ipam/forms/bulk_import.py:254 +#: ipam/forms/bulk_import.py:290 ipam/forms/bulk_import.py:447 +#: virtualization/forms/bulk_import.py:70 +#: virtualization/forms/bulk_import.py:119 vpn/forms/bulk_import.py:63 +#: wireless/forms/bulk_import.py:59 wireless/forms/bulk_import.py:101 msgid "Assigned tenant" msgstr "Назначенный арендатор" -#: netbox/circuits/forms/bulk_import.py:120 -#: netbox/templates/circuits/inc/circuit_termination.html:6 -#: netbox/templates/circuits/inc/circuit_termination_fields.html:15 -#: netbox/templates/dcim/cable.html:68 netbox/templates/dcim/cable.html:72 -#: netbox/vpn/forms/bulk_import.py:100 netbox/vpn/forms/filtersets.py:77 +#: circuits/forms/bulk_import.py:120 +#: templates/circuits/inc/circuit_termination.html:6 +#: templates/circuits/inc/circuit_termination_fields.html:15 +#: templates/dcim/cable.html:68 templates/dcim/cable.html:72 +#: vpn/forms/bulk_import.py:100 vpn/forms/filtersets.py:77 msgid "Termination" msgstr "Прекращение" -#: netbox/circuits/forms/bulk_import.py:130 -#: netbox/circuits/forms/filtersets.py:147 -#: netbox/circuits/forms/filtersets.py:227 -#: netbox/circuits/forms/model_forms.py:144 +#: circuits/forms/bulk_import.py:130 circuits/forms/filtersets.py:147 +#: circuits/forms/filtersets.py:227 circuits/forms/model_forms.py:144 msgid "Provider network" msgstr "Сеть провайдера" -#: netbox/circuits/forms/filtersets.py:30 -#: netbox/circuits/forms/filtersets.py:118 -#: netbox/circuits/forms/filtersets.py:200 netbox/dcim/forms/bulk_edit.py:338 -#: netbox/dcim/forms/bulk_edit.py:441 netbox/dcim/forms/bulk_edit.py:682 -#: netbox/dcim/forms/bulk_edit.py:729 netbox/dcim/forms/bulk_edit.py:882 -#: netbox/dcim/forms/bulk_import.py:235 netbox/dcim/forms/bulk_import.py:315 -#: netbox/dcim/forms/bulk_import.py:546 netbox/dcim/forms/bulk_import.py:1317 -#: netbox/dcim/forms/bulk_import.py:1351 netbox/dcim/forms/filtersets.py:95 -#: netbox/dcim/forms/filtersets.py:322 netbox/dcim/forms/filtersets.py:356 -#: netbox/dcim/forms/filtersets.py:396 netbox/dcim/forms/filtersets.py:447 -#: netbox/dcim/forms/filtersets.py:719 netbox/dcim/forms/filtersets.py:762 -#: netbox/dcim/forms/filtersets.py:977 netbox/dcim/forms/filtersets.py:1006 -#: netbox/dcim/forms/filtersets.py:1026 netbox/dcim/forms/filtersets.py:1090 -#: netbox/dcim/forms/filtersets.py:1120 netbox/dcim/forms/filtersets.py:1129 -#: netbox/dcim/forms/filtersets.py:1240 netbox/dcim/forms/filtersets.py:1264 -#: netbox/dcim/forms/filtersets.py:1289 netbox/dcim/forms/filtersets.py:1308 -#: netbox/dcim/forms/filtersets.py:1331 netbox/dcim/forms/filtersets.py:1442 -#: netbox/dcim/forms/filtersets.py:1466 netbox/dcim/forms/filtersets.py:1490 -#: netbox/dcim/forms/filtersets.py:1508 netbox/dcim/forms/filtersets.py:1525 -#: netbox/dcim/forms/model_forms.py:180 netbox/dcim/forms/model_forms.py:243 -#: netbox/dcim/forms/model_forms.py:468 netbox/dcim/forms/model_forms.py:728 -#: netbox/dcim/tables/devices.py:157 netbox/dcim/tables/power.py:30 -#: netbox/dcim/tables/racks.py:118 netbox/dcim/tables/racks.py:212 -#: netbox/extras/filtersets.py:536 netbox/extras/forms/filtersets.py:320 -#: netbox/ipam/forms/bulk_edit.py:460 netbox/ipam/forms/filtersets.py:173 -#: netbox/ipam/forms/filtersets.py:414 netbox/ipam/forms/filtersets.py:437 -#: netbox/ipam/forms/filtersets.py:467 netbox/templates/dcim/device.html:26 -#: netbox/templates/dcim/device_edit.html:30 -#: netbox/templates/dcim/inc/cable_termination.html:12 -#: netbox/templates/dcim/location.html:26 -#: netbox/templates/dcim/powerpanel.html:26 netbox/templates/dcim/rack.html:24 -#: netbox/templates/dcim/rackreservation.html:32 -#: netbox/virtualization/forms/filtersets.py:46 -#: netbox/virtualization/forms/filtersets.py:100 -#: netbox/wireless/forms/model_forms.py:87 -#: netbox/wireless/forms/model_forms.py:129 +#: circuits/forms/filtersets.py:30 circuits/forms/filtersets.py:118 +#: circuits/forms/filtersets.py:200 dcim/forms/bulk_edit.py:338 +#: dcim/forms/bulk_edit.py:441 dcim/forms/bulk_edit.py:682 +#: dcim/forms/bulk_edit.py:729 dcim/forms/bulk_edit.py:882 +#: dcim/forms/bulk_import.py:235 dcim/forms/bulk_import.py:315 +#: dcim/forms/bulk_import.py:546 dcim/forms/bulk_import.py:1317 +#: dcim/forms/bulk_import.py:1351 dcim/forms/filtersets.py:95 +#: dcim/forms/filtersets.py:322 dcim/forms/filtersets.py:356 +#: dcim/forms/filtersets.py:396 dcim/forms/filtersets.py:447 +#: dcim/forms/filtersets.py:719 dcim/forms/filtersets.py:762 +#: dcim/forms/filtersets.py:977 dcim/forms/filtersets.py:1006 +#: dcim/forms/filtersets.py:1026 dcim/forms/filtersets.py:1090 +#: dcim/forms/filtersets.py:1120 dcim/forms/filtersets.py:1129 +#: dcim/forms/filtersets.py:1240 dcim/forms/filtersets.py:1264 +#: dcim/forms/filtersets.py:1289 dcim/forms/filtersets.py:1308 +#: dcim/forms/filtersets.py:1331 dcim/forms/filtersets.py:1442 +#: dcim/forms/filtersets.py:1466 dcim/forms/filtersets.py:1490 +#: dcim/forms/filtersets.py:1508 dcim/forms/filtersets.py:1525 +#: dcim/forms/model_forms.py:180 dcim/forms/model_forms.py:243 +#: dcim/forms/model_forms.py:468 dcim/forms/model_forms.py:728 +#: dcim/tables/devices.py:157 dcim/tables/power.py:30 dcim/tables/racks.py:118 +#: dcim/tables/racks.py:212 extras/filtersets.py:536 +#: extras/forms/filtersets.py:320 ipam/forms/filtersets.py:173 +#: ipam/forms/filtersets.py:414 ipam/forms/filtersets.py:437 +#: ipam/forms/filtersets.py:467 templates/dcim/device.html:26 +#: templates/dcim/device_edit.html:30 +#: templates/dcim/inc/cable_termination.html:12 +#: templates/dcim/location.html:26 templates/dcim/powerpanel.html:26 +#: templates/dcim/rack.html:24 templates/dcim/rackreservation.html:32 +#: virtualization/forms/filtersets.py:46 +#: virtualization/forms/filtersets.py:100 wireless/forms/model_forms.py:87 +#: wireless/forms/model_forms.py:129 msgid "Location" msgstr "Локация" -#: netbox/circuits/forms/filtersets.py:32 -#: netbox/circuits/forms/filtersets.py:120 netbox/dcim/forms/filtersets.py:144 -#: netbox/dcim/forms/filtersets.py:158 netbox/dcim/forms/filtersets.py:174 -#: netbox/dcim/forms/filtersets.py:206 netbox/dcim/forms/filtersets.py:328 -#: netbox/dcim/forms/filtersets.py:400 netbox/dcim/forms/filtersets.py:471 -#: netbox/dcim/forms/filtersets.py:723 netbox/dcim/forms/filtersets.py:1091 -#: netbox/netbox/navigation/menu.py:31 netbox/netbox/navigation/menu.py:33 -#: netbox/tenancy/forms/filtersets.py:42 netbox/tenancy/tables/columns.py:70 -#: netbox/tenancy/tables/contacts.py:25 netbox/tenancy/views.py:19 -#: netbox/virtualization/forms/filtersets.py:37 -#: netbox/virtualization/forms/filtersets.py:48 -#: netbox/virtualization/forms/filtersets.py:106 +#: circuits/forms/filtersets.py:32 circuits/forms/filtersets.py:120 +#: dcim/forms/filtersets.py:144 dcim/forms/filtersets.py:158 +#: dcim/forms/filtersets.py:174 dcim/forms/filtersets.py:206 +#: dcim/forms/filtersets.py:328 dcim/forms/filtersets.py:400 +#: dcim/forms/filtersets.py:471 dcim/forms/filtersets.py:723 +#: dcim/forms/filtersets.py:1091 netbox/navigation/menu.py:31 +#: netbox/navigation/menu.py:33 tenancy/forms/filtersets.py:42 +#: tenancy/tables/columns.py:70 tenancy/tables/contacts.py:25 +#: tenancy/views.py:19 virtualization/forms/filtersets.py:37 +#: virtualization/forms/filtersets.py:48 +#: virtualization/forms/filtersets.py:106 msgid "Contacts" msgstr "Контакты" -#: netbox/circuits/forms/filtersets.py:37 -#: netbox/circuits/forms/filtersets.py:157 netbox/dcim/forms/bulk_edit.py:112 -#: netbox/dcim/forms/bulk_edit.py:313 netbox/dcim/forms/bulk_edit.py:857 -#: netbox/dcim/forms/bulk_import.py:93 netbox/dcim/forms/filtersets.py:73 -#: netbox/dcim/forms/filtersets.py:185 netbox/dcim/forms/filtersets.py:211 -#: netbox/dcim/forms/filtersets.py:334 netbox/dcim/forms/filtersets.py:425 -#: netbox/dcim/forms/filtersets.py:739 netbox/dcim/forms/filtersets.py:983 -#: netbox/dcim/forms/filtersets.py:1013 netbox/dcim/forms/filtersets.py:1097 -#: netbox/dcim/forms/filtersets.py:1136 netbox/dcim/forms/filtersets.py:1576 -#: netbox/dcim/forms/filtersets.py:1600 netbox/dcim/forms/filtersets.py:1624 -#: netbox/dcim/forms/model_forms.py:112 netbox/dcim/forms/object_create.py:375 -#: netbox/dcim/tables/devices.py:143 netbox/dcim/tables/sites.py:85 -#: netbox/extras/filtersets.py:503 netbox/ipam/forms/bulk_edit.py:207 -#: netbox/ipam/forms/bulk_edit.py:441 netbox/ipam/forms/bulk_edit.py:519 -#: netbox/ipam/forms/filtersets.py:217 netbox/ipam/forms/filtersets.py:422 -#: netbox/ipam/forms/filtersets.py:475 netbox/templates/dcim/device.html:18 -#: netbox/templates/dcim/rack.html:16 -#: netbox/templates/dcim/rackreservation.html:22 -#: netbox/templates/dcim/region.html:26 netbox/templates/dcim/site.html:31 -#: netbox/templates/ipam/prefix.html:49 netbox/templates/ipam/vlan.html:16 -#: netbox/virtualization/forms/bulk_edit.py:81 -#: netbox/virtualization/forms/filtersets.py:59 -#: netbox/virtualization/forms/filtersets.py:133 -#: netbox/virtualization/forms/model_forms.py:92 -#: netbox/vpn/forms/filtersets.py:257 +#: circuits/forms/filtersets.py:37 circuits/forms/filtersets.py:157 +#: dcim/forms/bulk_edit.py:112 dcim/forms/bulk_edit.py:313 +#: dcim/forms/bulk_edit.py:857 dcim/forms/bulk_import.py:93 +#: dcim/forms/filtersets.py:73 dcim/forms/filtersets.py:185 +#: dcim/forms/filtersets.py:211 dcim/forms/filtersets.py:334 +#: dcim/forms/filtersets.py:425 dcim/forms/filtersets.py:739 +#: dcim/forms/filtersets.py:983 dcim/forms/filtersets.py:1013 +#: dcim/forms/filtersets.py:1097 dcim/forms/filtersets.py:1136 +#: dcim/forms/filtersets.py:1576 dcim/forms/filtersets.py:1600 +#: dcim/forms/filtersets.py:1624 dcim/forms/model_forms.py:112 +#: dcim/forms/object_create.py:375 dcim/tables/devices.py:143 +#: dcim/tables/sites.py:85 extras/filtersets.py:503 +#: ipam/forms/bulk_edit.py:208 ipam/forms/bulk_edit.py:474 +#: ipam/forms/filtersets.py:217 ipam/forms/filtersets.py:422 +#: ipam/forms/filtersets.py:475 templates/dcim/device.html:18 +#: templates/dcim/rack.html:16 templates/dcim/rackreservation.html:22 +#: templates/dcim/region.html:26 templates/dcim/site.html:31 +#: templates/ipam/prefix.html:49 templates/ipam/vlan.html:16 +#: virtualization/forms/bulk_edit.py:81 virtualization/forms/filtersets.py:59 +#: virtualization/forms/filtersets.py:133 +#: virtualization/forms/model_forms.py:92 vpn/forms/filtersets.py:257 msgid "Region" msgstr "Регион" -#: netbox/circuits/forms/filtersets.py:42 -#: netbox/circuits/forms/filtersets.py:162 netbox/dcim/forms/bulk_edit.py:321 -#: netbox/dcim/forms/bulk_edit.py:865 netbox/dcim/forms/filtersets.py:78 -#: netbox/dcim/forms/filtersets.py:190 netbox/dcim/forms/filtersets.py:216 -#: netbox/dcim/forms/filtersets.py:347 netbox/dcim/forms/filtersets.py:430 -#: netbox/dcim/forms/filtersets.py:744 netbox/dcim/forms/filtersets.py:988 -#: netbox/dcim/forms/filtersets.py:1102 netbox/dcim/forms/filtersets.py:1141 -#: netbox/dcim/forms/object_create.py:383 netbox/extras/filtersets.py:520 -#: netbox/ipam/forms/bulk_edit.py:212 netbox/ipam/forms/bulk_edit.py:448 -#: netbox/ipam/forms/bulk_edit.py:524 netbox/ipam/forms/filtersets.py:222 -#: netbox/ipam/forms/filtersets.py:427 netbox/ipam/forms/filtersets.py:480 -#: netbox/virtualization/forms/bulk_edit.py:86 -#: netbox/virtualization/forms/filtersets.py:69 -#: netbox/virtualization/forms/filtersets.py:138 -#: netbox/virtualization/forms/model_forms.py:98 +#: circuits/forms/filtersets.py:42 circuits/forms/filtersets.py:162 +#: dcim/forms/bulk_edit.py:321 dcim/forms/bulk_edit.py:865 +#: dcim/forms/filtersets.py:78 dcim/forms/filtersets.py:190 +#: dcim/forms/filtersets.py:216 dcim/forms/filtersets.py:347 +#: dcim/forms/filtersets.py:430 dcim/forms/filtersets.py:744 +#: dcim/forms/filtersets.py:988 dcim/forms/filtersets.py:1102 +#: dcim/forms/filtersets.py:1141 dcim/forms/object_create.py:383 +#: extras/filtersets.py:520 ipam/forms/bulk_edit.py:213 +#: ipam/forms/bulk_edit.py:479 ipam/forms/filtersets.py:222 +#: ipam/forms/filtersets.py:427 ipam/forms/filtersets.py:480 +#: virtualization/forms/bulk_edit.py:86 virtualization/forms/filtersets.py:69 +#: virtualization/forms/filtersets.py:138 +#: virtualization/forms/model_forms.py:98 msgid "Site group" msgstr "Группа сайтов" -#: netbox/circuits/forms/filtersets.py:65 -#: netbox/circuits/forms/filtersets.py:83 -#: netbox/circuits/forms/filtersets.py:102 -#: netbox/circuits/forms/filtersets.py:117 netbox/core/forms/filtersets.py:67 -#: netbox/core/forms/filtersets.py:135 netbox/dcim/forms/bulk_edit.py:828 -#: netbox/dcim/forms/filtersets.py:172 netbox/dcim/forms/filtersets.py:204 -#: netbox/dcim/forms/filtersets.py:915 netbox/dcim/forms/filtersets.py:1007 -#: netbox/dcim/forms/filtersets.py:1131 netbox/dcim/forms/filtersets.py:1239 -#: netbox/dcim/forms/filtersets.py:1263 netbox/dcim/forms/filtersets.py:1288 -#: netbox/dcim/forms/filtersets.py:1307 netbox/dcim/forms/filtersets.py:1327 -#: netbox/dcim/forms/filtersets.py:1441 netbox/dcim/forms/filtersets.py:1465 -#: netbox/dcim/forms/filtersets.py:1489 netbox/dcim/forms/filtersets.py:1507 -#: netbox/dcim/forms/filtersets.py:1523 netbox/extras/forms/bulk_edit.py:90 -#: netbox/extras/forms/filtersets.py:44 netbox/extras/forms/filtersets.py:134 -#: netbox/extras/forms/filtersets.py:165 netbox/extras/forms/filtersets.py:205 -#: netbox/extras/forms/filtersets.py:221 netbox/extras/forms/filtersets.py:252 -#: netbox/extras/forms/filtersets.py:276 netbox/extras/forms/filtersets.py:441 -#: netbox/ipam/forms/filtersets.py:99 netbox/ipam/forms/filtersets.py:266 -#: netbox/ipam/forms/filtersets.py:307 netbox/ipam/forms/filtersets.py:382 -#: netbox/ipam/forms/filtersets.py:468 netbox/ipam/forms/filtersets.py:527 -#: netbox/ipam/forms/filtersets.py:545 netbox/netbox/tables/tables.py:256 -#: netbox/virtualization/forms/filtersets.py:45 -#: netbox/virtualization/forms/filtersets.py:103 -#: netbox/virtualization/forms/filtersets.py:198 -#: netbox/virtualization/forms/filtersets.py:243 -#: netbox/vpn/forms/filtersets.py:213 netbox/wireless/forms/bulk_edit.py:150 -#: netbox/wireless/forms/filtersets.py:34 -#: netbox/wireless/forms/filtersets.py:74 +#: circuits/forms/filtersets.py:65 circuits/forms/filtersets.py:83 +#: circuits/forms/filtersets.py:102 circuits/forms/filtersets.py:117 +#: core/forms/filtersets.py:67 core/forms/filtersets.py:135 +#: dcim/forms/bulk_edit.py:828 dcim/forms/filtersets.py:172 +#: dcim/forms/filtersets.py:204 dcim/forms/filtersets.py:915 +#: dcim/forms/filtersets.py:1007 dcim/forms/filtersets.py:1131 +#: dcim/forms/filtersets.py:1239 dcim/forms/filtersets.py:1263 +#: dcim/forms/filtersets.py:1288 dcim/forms/filtersets.py:1307 +#: dcim/forms/filtersets.py:1327 dcim/forms/filtersets.py:1441 +#: dcim/forms/filtersets.py:1465 dcim/forms/filtersets.py:1489 +#: dcim/forms/filtersets.py:1507 dcim/forms/filtersets.py:1523 +#: extras/forms/bulk_edit.py:90 extras/forms/filtersets.py:44 +#: extras/forms/filtersets.py:134 extras/forms/filtersets.py:165 +#: extras/forms/filtersets.py:205 extras/forms/filtersets.py:221 +#: extras/forms/filtersets.py:252 extras/forms/filtersets.py:276 +#: extras/forms/filtersets.py:441 ipam/forms/filtersets.py:99 +#: ipam/forms/filtersets.py:266 ipam/forms/filtersets.py:307 +#: ipam/forms/filtersets.py:382 ipam/forms/filtersets.py:468 +#: ipam/forms/filtersets.py:527 ipam/forms/filtersets.py:545 +#: netbox/tables/tables.py:256 virtualization/forms/filtersets.py:45 +#: virtualization/forms/filtersets.py:103 +#: virtualization/forms/filtersets.py:198 +#: virtualization/forms/filtersets.py:243 vpn/forms/filtersets.py:213 +#: wireless/forms/bulk_edit.py:150 wireless/forms/filtersets.py:34 +#: wireless/forms/filtersets.py:74 msgid "Attributes" msgstr "Атрибуты" -#: netbox/circuits/forms/filtersets.py:73 -#: netbox/circuits/tables/circuits.py:63 -#: netbox/circuits/tables/providers.py:66 -#: netbox/templates/circuits/circuit.html:22 -#: netbox/templates/circuits/provideraccount.html:24 +#: circuits/forms/filtersets.py:73 circuits/tables/circuits.py:63 +#: circuits/tables/providers.py:66 templates/circuits/circuit.html:22 +#: templates/circuits/provideraccount.html:24 msgid "Account" msgstr "Аккаунт" -#: netbox/circuits/forms/filtersets.py:217 +#: circuits/forms/filtersets.py:217 msgid "Term Side" msgstr "Терминология" -#: netbox/circuits/forms/filtersets.py:250 -#: netbox/extras/forms/model_forms.py:582 netbox/ipam/forms/filtersets.py:142 -#: netbox/ipam/forms/filtersets.py:546 netbox/ipam/forms/model_forms.py:323 -#: netbox/templates/extras/configcontext.html:60 -#: netbox/templates/ipam/ipaddress.html:59 -#: netbox/templates/ipam/vlan_edit.html:30 -#: netbox/tenancy/forms/filtersets.py:87 netbox/users/forms/model_forms.py:314 +#: circuits/forms/filtersets.py:250 extras/forms/model_forms.py:582 +#: ipam/forms/filtersets.py:142 ipam/forms/filtersets.py:546 +#: ipam/forms/model_forms.py:323 templates/extras/configcontext.html:60 +#: templates/ipam/ipaddress.html:59 templates/ipam/vlan_edit.html:30 +#: tenancy/forms/filtersets.py:87 users/forms/model_forms.py:314 msgid "Assignment" msgstr "Задание" -#: netbox/circuits/forms/filtersets.py:265 -#: netbox/circuits/forms/model_forms.py:195 -#: netbox/circuits/tables/circuits.py:155 netbox/dcim/forms/bulk_edit.py:117 -#: netbox/dcim/forms/bulk_import.py:100 netbox/dcim/forms/model_forms.py:117 -#: netbox/dcim/tables/sites.py:89 netbox/extras/forms/filtersets.py:480 -#: netbox/ipam/filtersets.py:999 netbox/ipam/forms/bulk_edit.py:538 -#: netbox/ipam/forms/bulk_import.py:436 netbox/ipam/forms/model_forms.py:528 -#: netbox/ipam/tables/fhrp.py:67 netbox/ipam/tables/vlans.py:122 -#: netbox/ipam/tables/vlans.py:226 -#: netbox/templates/circuits/circuitgroupassignment.html:22 -#: netbox/templates/dcim/interface.html:284 netbox/templates/dcim/site.html:37 -#: netbox/templates/ipam/inc/panels/fhrp_groups.html:23 -#: netbox/templates/ipam/vlan.html:27 netbox/templates/tenancy/contact.html:21 -#: netbox/templates/tenancy/tenant.html:20 netbox/templates/users/group.html:6 -#: netbox/templates/users/group.html:14 -#: netbox/templates/virtualization/cluster.html:29 -#: netbox/templates/vpn/tunnel.html:29 -#: netbox/templates/wireless/wirelesslan.html:18 -#: netbox/tenancy/forms/bulk_edit.py:43 netbox/tenancy/forms/bulk_edit.py:94 -#: netbox/tenancy/forms/bulk_import.py:40 -#: netbox/tenancy/forms/bulk_import.py:81 -#: netbox/tenancy/forms/filtersets.py:48 netbox/tenancy/forms/filtersets.py:78 -#: netbox/tenancy/forms/filtersets.py:97 -#: netbox/tenancy/forms/model_forms.py:45 -#: netbox/tenancy/forms/model_forms.py:97 -#: netbox/tenancy/forms/model_forms.py:122 -#: netbox/tenancy/tables/contacts.py:60 netbox/tenancy/tables/contacts.py:107 -#: netbox/tenancy/tables/tenants.py:42 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 -#: netbox/virtualization/forms/bulk_edit.py:65 -#: netbox/virtualization/forms/bulk_import.py:47 -#: netbox/virtualization/forms/filtersets.py:85 -#: netbox/virtualization/forms/model_forms.py:66 -#: netbox/virtualization/tables/clusters.py:70 -#: netbox/vpn/forms/bulk_edit.py:112 netbox/vpn/forms/bulk_import.py:158 -#: netbox/vpn/forms/filtersets.py:116 netbox/vpn/tables/crypto.py:31 -#: netbox/vpn/tables/tunnels.py:44 netbox/wireless/forms/bulk_edit.py:48 -#: netbox/wireless/forms/bulk_import.py:36 -#: netbox/wireless/forms/filtersets.py:46 -#: netbox/wireless/forms/model_forms.py:40 -#: netbox/wireless/tables/wirelesslan.py:48 +#: circuits/forms/filtersets.py:265 circuits/forms/model_forms.py:195 +#: circuits/tables/circuits.py:155 dcim/forms/bulk_edit.py:117 +#: dcim/forms/bulk_import.py:100 dcim/forms/model_forms.py:117 +#: dcim/tables/sites.py:89 extras/forms/filtersets.py:480 +#: ipam/filtersets.py:999 ipam/forms/bulk_edit.py:493 +#: ipam/forms/bulk_import.py:436 ipam/forms/model_forms.py:528 +#: ipam/tables/fhrp.py:67 ipam/tables/vlans.py:122 ipam/tables/vlans.py:226 +#: templates/circuits/circuitgroupassignment.html:22 +#: templates/dcim/interface.html:284 templates/dcim/site.html:37 +#: templates/ipam/inc/panels/fhrp_groups.html:23 templates/ipam/vlan.html:27 +#: templates/tenancy/contact.html:21 templates/tenancy/tenant.html:20 +#: templates/users/group.html:6 templates/users/group.html:14 +#: templates/virtualization/cluster.html:29 templates/vpn/tunnel.html:29 +#: templates/wireless/wirelesslan.html:18 tenancy/forms/bulk_edit.py:43 +#: tenancy/forms/bulk_edit.py:94 tenancy/forms/bulk_import.py:40 +#: tenancy/forms/bulk_import.py:81 tenancy/forms/filtersets.py:48 +#: tenancy/forms/filtersets.py:78 tenancy/forms/filtersets.py:97 +#: tenancy/forms/model_forms.py:45 tenancy/forms/model_forms.py:97 +#: tenancy/forms/model_forms.py:122 tenancy/tables/contacts.py:60 +#: tenancy/tables/contacts.py:107 tenancy/tables/tenants.py:42 +#: users/filtersets.py:62 users/filtersets.py:185 users/forms/filtersets.py:31 +#: users/forms/filtersets.py:37 users/forms/filtersets.py:79 +#: virtualization/forms/bulk_edit.py:65 virtualization/forms/bulk_import.py:47 +#: virtualization/forms/filtersets.py:85 +#: virtualization/forms/model_forms.py:66 virtualization/tables/clusters.py:70 +#: vpn/forms/bulk_edit.py:112 vpn/forms/bulk_import.py:158 +#: vpn/forms/filtersets.py:116 vpn/tables/crypto.py:31 +#: vpn/tables/tunnels.py:44 wireless/forms/bulk_edit.py:48 +#: wireless/forms/bulk_import.py:36 wireless/forms/filtersets.py:46 +#: wireless/forms/model_forms.py:40 wireless/tables/wirelesslan.py:48 msgid "Group" msgstr "Группа" -#: netbox/circuits/forms/model_forms.py:182 -#: netbox/templates/circuits/circuitgroup.html:25 +#: circuits/forms/model_forms.py:182 templates/circuits/circuitgroup.html:25 msgid "Circuit Group" msgstr "Группа каналов связи" -#: netbox/circuits/models/circuits.py:27 netbox/dcim/models/cables.py:67 -#: netbox/dcim/models/device_component_templates.py:517 -#: netbox/dcim/models/device_component_templates.py:617 -#: netbox/dcim/models/device_components.py:975 -#: netbox/dcim/models/device_components.py:1049 -#: netbox/dcim/models/device_components.py:1204 -#: netbox/dcim/models/devices.py:479 netbox/dcim/models/racks.py:224 -#: netbox/extras/models/tags.py:28 +#: circuits/models/circuits.py:27 dcim/models/cables.py:67 +#: dcim/models/device_component_templates.py:517 +#: dcim/models/device_component_templates.py:617 +#: dcim/models/device_components.py:975 dcim/models/device_components.py:1049 +#: dcim/models/device_components.py:1204 dcim/models/devices.py:479 +#: dcim/models/racks.py:224 extras/models/tags.py:28 msgid "color" msgstr "цвет" -#: netbox/circuits/models/circuits.py:36 +#: circuits/models/circuits.py:36 msgid "circuit type" msgstr "тип канала связи" -#: netbox/circuits/models/circuits.py:37 +#: circuits/models/circuits.py:37 msgid "circuit types" msgstr "типы каналов связи" -#: netbox/circuits/models/circuits.py:48 +#: circuits/models/circuits.py:48 msgid "circuit ID" msgstr "Идентификатор канала связи" -#: netbox/circuits/models/circuits.py:49 +#: circuits/models/circuits.py:49 msgid "Unique circuit ID" msgstr "Уникальный ID канала связи" -#: netbox/circuits/models/circuits.py:69 netbox/core/models/data.py:52 -#: netbox/core/models/jobs.py:84 netbox/dcim/models/cables.py:49 -#: netbox/dcim/models/devices.py:653 netbox/dcim/models/devices.py:1173 -#: netbox/dcim/models/devices.py:1399 netbox/dcim/models/power.py:96 -#: netbox/dcim/models/racks.py:297 netbox/dcim/models/sites.py:154 -#: netbox/dcim/models/sites.py:266 netbox/ipam/models/ip.py:253 -#: netbox/ipam/models/ip.py:522 netbox/ipam/models/ip.py:730 -#: netbox/ipam/models/vlans.py:195 netbox/virtualization/models/clusters.py:74 -#: netbox/virtualization/models/virtualmachines.py:84 -#: netbox/vpn/models/tunnels.py:40 netbox/wireless/models.py:95 -#: netbox/wireless/models.py:159 +#: circuits/models/circuits.py:69 core/models/data.py:52 +#: core/models/jobs.py:84 dcim/models/cables.py:49 dcim/models/devices.py:653 +#: dcim/models/devices.py:1173 dcim/models/devices.py:1399 +#: dcim/models/power.py:96 dcim/models/racks.py:297 dcim/models/sites.py:154 +#: dcim/models/sites.py:266 ipam/models/ip.py:253 ipam/models/ip.py:522 +#: ipam/models/ip.py:730 ipam/models/vlans.py:195 +#: virtualization/models/clusters.py:74 +#: virtualization/models/virtualmachines.py:84 vpn/models/tunnels.py:40 +#: wireless/models.py:95 wireless/models.py:159 msgid "status" msgstr "статус" -#: netbox/circuits/models/circuits.py:84 netbox/templates/core/plugin.html:19 +#: circuits/models/circuits.py:84 templates/core/plugin.html:20 msgid "installed" msgstr "установлен" -#: netbox/circuits/models/circuits.py:89 +#: circuits/models/circuits.py:89 msgid "terminates" msgstr "разобран" -#: netbox/circuits/models/circuits.py:94 +#: circuits/models/circuits.py:94 msgid "commit rate (Kbps)" msgstr "гарантированная скорость (Кбит/с)" -#: netbox/circuits/models/circuits.py:95 +#: circuits/models/circuits.py:95 msgid "Committed rate" msgstr "Гарантированная скорость" -#: netbox/circuits/models/circuits.py:137 +#: circuits/models/circuits.py:137 msgid "circuit" msgstr "канал связи" -#: netbox/circuits/models/circuits.py:138 +#: circuits/models/circuits.py:138 msgid "circuits" msgstr "каналы связи" -#: netbox/circuits/models/circuits.py:170 +#: circuits/models/circuits.py:170 msgid "circuit group" msgstr "группа каналов связи" -#: netbox/circuits/models/circuits.py:171 +#: circuits/models/circuits.py:171 msgid "circuit groups" msgstr "группы каналов связи" -#: netbox/circuits/models/circuits.py:195 netbox/ipam/models/fhrp.py:93 -#: netbox/tenancy/models/contacts.py:134 +#: circuits/models/circuits.py:195 ipam/models/fhrp.py:93 +#: tenancy/models/contacts.py:134 msgid "priority" msgstr "приоритет" -#: netbox/circuits/models/circuits.py:213 +#: circuits/models/circuits.py:213 msgid "Circuit group assignment" msgstr "Назначение группы каналов связи" -#: netbox/circuits/models/circuits.py:214 +#: circuits/models/circuits.py:214 msgid "Circuit group assignments" msgstr "Назначения групп каналов связи" -#: netbox/circuits/models/circuits.py:240 +#: circuits/models/circuits.py:240 msgid "termination" msgstr "завершение" -#: netbox/circuits/models/circuits.py:257 +#: circuits/models/circuits.py:257 msgid "port speed (Kbps)" msgstr "скорость порта (Кбит/с)" -#: netbox/circuits/models/circuits.py:260 +#: circuits/models/circuits.py:260 msgid "Physical circuit speed" msgstr "Физическая скорость канала связи" -#: netbox/circuits/models/circuits.py:265 +#: circuits/models/circuits.py:265 msgid "upstream speed (Kbps)" msgstr "скорость отдачи (Кбит/с)" -#: netbox/circuits/models/circuits.py:266 +#: circuits/models/circuits.py:266 msgid "Upstream speed, if different from port speed" msgstr "Скорость отдачи, если она отличается от скорости порта" -#: netbox/circuits/models/circuits.py:271 +#: circuits/models/circuits.py:271 msgid "cross-connect ID" msgstr "ID кросс-соединения" -#: netbox/circuits/models/circuits.py:272 +#: circuits/models/circuits.py:272 msgid "ID of the local cross-connect" msgstr "ID локального кросс-соединения" -#: netbox/circuits/models/circuits.py:277 +#: circuits/models/circuits.py:277 msgid "patch panel/port(s)" msgstr "патч-панель или порт(ы)" -#: netbox/circuits/models/circuits.py:278 +#: circuits/models/circuits.py:278 msgid "Patch panel ID and port number(s)" msgstr "ID патч-панели и номера порта(-ов)" -#: netbox/circuits/models/circuits.py:281 -#: netbox/dcim/models/device_component_templates.py:61 -#: netbox/dcim/models/device_components.py:68 netbox/dcim/models/racks.py:685 -#: netbox/extras/models/configs.py:45 netbox/extras/models/configs.py:219 -#: netbox/extras/models/customfields.py:125 netbox/extras/models/models.py:61 -#: netbox/extras/models/models.py:158 netbox/extras/models/models.py:396 -#: netbox/extras/models/models.py:511 -#: netbox/extras/models/notifications.py:131 -#: netbox/extras/models/staging.py:31 netbox/extras/models/tags.py:32 -#: netbox/netbox/models/__init__.py:110 netbox/netbox/models/__init__.py:145 -#: netbox/netbox/models/__init__.py:191 netbox/users/models/permissions.py:24 -#: netbox/users/models/tokens.py:57 netbox/users/models/users.py:33 -#: netbox/virtualization/models/virtualmachines.py:289 +#: circuits/models/circuits.py:281 +#: dcim/models/device_component_templates.py:61 +#: dcim/models/device_components.py:68 dcim/models/racks.py:685 +#: extras/models/configs.py:45 extras/models/configs.py:219 +#: extras/models/customfields.py:125 extras/models/models.py:61 +#: extras/models/models.py:158 extras/models/models.py:396 +#: extras/models/models.py:511 extras/models/notifications.py:131 +#: extras/models/staging.py:31 extras/models/tags.py:32 +#: netbox/models/__init__.py:110 netbox/models/__init__.py:145 +#: netbox/models/__init__.py:191 users/models/permissions.py:24 +#: users/models/tokens.py:57 users/models/users.py:33 +#: virtualization/models/virtualmachines.py:289 msgid "description" msgstr "описание" -#: netbox/circuits/models/circuits.py:294 +#: circuits/models/circuits.py:294 msgid "circuit termination" msgstr "точка подключения канала связи" -#: netbox/circuits/models/circuits.py:295 +#: circuits/models/circuits.py:295 msgid "circuit terminations" msgstr "точки подключения канала связи" -#: netbox/circuits/models/circuits.py:308 +#: circuits/models/circuits.py:308 msgid "" "A circuit termination must attach to either a site or a provider network." msgstr "" "Оконечное устройство канала должно быть подключено либо к узлу, либо к сети " "провайдера." -#: netbox/circuits/models/circuits.py:310 +#: circuits/models/circuits.py:310 msgid "" "A circuit termination cannot attach to both a site and a provider network." msgstr "" "Терминатор канала не может быть подключен как к сайту, так и к сети " "поставщика." -#: netbox/circuits/models/providers.py:22 -#: netbox/circuits/models/providers.py:66 -#: netbox/circuits/models/providers.py:104 netbox/core/models/data.py:39 -#: netbox/core/models/jobs.py:45 -#: netbox/dcim/models/device_component_templates.py:43 -#: netbox/dcim/models/device_components.py:53 -#: netbox/dcim/models/devices.py:593 netbox/dcim/models/devices.py:1330 -#: netbox/dcim/models/devices.py:1395 netbox/dcim/models/power.py:39 -#: netbox/dcim/models/power.py:92 netbox/dcim/models/racks.py:262 -#: netbox/dcim/models/sites.py:138 netbox/extras/models/configs.py:36 -#: netbox/extras/models/configs.py:215 netbox/extras/models/customfields.py:92 -#: netbox/extras/models/models.py:56 netbox/extras/models/models.py:153 -#: netbox/extras/models/models.py:296 netbox/extras/models/models.py:392 -#: netbox/extras/models/models.py:501 netbox/extras/models/models.py:596 -#: netbox/extras/models/notifications.py:126 -#: netbox/extras/models/scripts.py:30 netbox/extras/models/staging.py:26 -#: netbox/ipam/models/asns.py:18 netbox/ipam/models/fhrp.py:25 -#: netbox/ipam/models/services.py:52 netbox/ipam/models/services.py:88 -#: netbox/ipam/models/vlans.py:36 netbox/ipam/models/vlans.py:184 -#: netbox/ipam/models/vrfs.py:22 netbox/ipam/models/vrfs.py:79 -#: netbox/netbox/models/__init__.py:137 netbox/netbox/models/__init__.py:181 -#: netbox/tenancy/models/contacts.py:64 netbox/tenancy/models/tenants.py:20 -#: netbox/tenancy/models/tenants.py:45 netbox/users/models/permissions.py:20 -#: netbox/users/models/users.py:28 netbox/virtualization/models/clusters.py:57 -#: netbox/virtualization/models/virtualmachines.py:72 -#: netbox/virtualization/models/virtualmachines.py:279 -#: netbox/vpn/models/crypto.py:24 netbox/vpn/models/crypto.py:71 -#: netbox/vpn/models/crypto.py:131 netbox/vpn/models/crypto.py:183 -#: netbox/vpn/models/crypto.py:221 netbox/vpn/models/l2vpn.py:22 -#: netbox/vpn/models/tunnels.py:35 netbox/wireless/models.py:51 +#: circuits/models/providers.py:22 circuits/models/providers.py:66 +#: circuits/models/providers.py:104 core/models/data.py:39 +#: core/models/jobs.py:45 dcim/models/device_component_templates.py:43 +#: dcim/models/device_components.py:53 dcim/models/devices.py:593 +#: dcim/models/devices.py:1330 dcim/models/devices.py:1395 +#: dcim/models/power.py:39 dcim/models/power.py:92 dcim/models/racks.py:262 +#: dcim/models/sites.py:138 extras/models/configs.py:36 +#: extras/models/configs.py:215 extras/models/customfields.py:92 +#: extras/models/models.py:56 extras/models/models.py:153 +#: extras/models/models.py:296 extras/models/models.py:392 +#: extras/models/models.py:501 extras/models/models.py:596 +#: extras/models/notifications.py:126 extras/models/scripts.py:30 +#: extras/models/staging.py:26 ipam/models/asns.py:18 ipam/models/fhrp.py:25 +#: ipam/models/services.py:52 ipam/models/services.py:88 +#: ipam/models/vlans.py:36 ipam/models/vlans.py:184 ipam/models/vrfs.py:22 +#: ipam/models/vrfs.py:79 netbox/models/__init__.py:137 +#: netbox/models/__init__.py:181 tenancy/models/contacts.py:64 +#: tenancy/models/tenants.py:20 tenancy/models/tenants.py:45 +#: users/models/permissions.py:20 users/models/users.py:28 +#: virtualization/models/clusters.py:57 +#: virtualization/models/virtualmachines.py:72 +#: virtualization/models/virtualmachines.py:279 vpn/models/crypto.py:24 +#: vpn/models/crypto.py:71 vpn/models/crypto.py:131 vpn/models/crypto.py:183 +#: vpn/models/crypto.py:221 vpn/models/l2vpn.py:22 vpn/models/tunnels.py:35 +#: wireless/models.py:51 msgid "name" msgstr "имя" -#: netbox/circuits/models/providers.py:25 +#: circuits/models/providers.py:25 msgid "Full name of the provider" msgstr "Полное имя провайдера" -#: netbox/circuits/models/providers.py:28 netbox/dcim/models/devices.py:86 -#: netbox/dcim/models/racks.py:137 netbox/dcim/models/sites.py:149 -#: netbox/extras/models/models.py:506 netbox/ipam/models/asns.py:23 -#: netbox/ipam/models/vlans.py:40 netbox/netbox/models/__init__.py:141 -#: netbox/netbox/models/__init__.py:186 netbox/tenancy/models/tenants.py:25 -#: netbox/tenancy/models/tenants.py:49 netbox/vpn/models/l2vpn.py:27 -#: netbox/wireless/models.py:56 +#: circuits/models/providers.py:28 dcim/models/devices.py:86 +#: dcim/models/racks.py:137 dcim/models/sites.py:149 +#: extras/models/models.py:506 ipam/models/asns.py:23 ipam/models/vlans.py:40 +#: netbox/models/__init__.py:141 netbox/models/__init__.py:186 +#: tenancy/models/tenants.py:25 tenancy/models/tenants.py:49 +#: vpn/models/l2vpn.py:27 wireless/models.py:56 msgid "slug" msgstr "подстрока" -#: netbox/circuits/models/providers.py:42 +#: circuits/models/providers.py:42 msgid "provider" msgstr "провайдер" -#: netbox/circuits/models/providers.py:43 +#: circuits/models/providers.py:43 msgid "providers" msgstr "провайдеры" -#: netbox/circuits/models/providers.py:63 +#: circuits/models/providers.py:63 msgid "account ID" msgstr "идентификатор аккаунта" -#: netbox/circuits/models/providers.py:86 +#: circuits/models/providers.py:86 msgid "provider account" msgstr "аккаунт провайдера" -#: netbox/circuits/models/providers.py:87 +#: circuits/models/providers.py:87 msgid "provider accounts" msgstr "аккаунты провайдера" -#: netbox/circuits/models/providers.py:115 +#: circuits/models/providers.py:115 msgid "service ID" msgstr "идентификатор службы" -#: netbox/circuits/models/providers.py:126 +#: circuits/models/providers.py:126 msgid "provider network" msgstr "сеть провайдера" -#: netbox/circuits/models/providers.py:127 +#: circuits/models/providers.py:127 msgid "provider networks" msgstr "сети провайдера" -#: netbox/circuits/tables/circuits.py:32 -#: netbox/circuits/tables/circuits.py:132 -#: netbox/circuits/tables/providers.py:18 -#: netbox/circuits/tables/providers.py:69 -#: netbox/circuits/tables/providers.py:99 netbox/core/tables/data.py:16 -#: netbox/core/tables/jobs.py:14 netbox/core/tables/plugins.py:44 -#: netbox/core/tables/tasks.py:11 netbox/core/tables/tasks.py:115 -#: netbox/dcim/forms/filtersets.py:63 netbox/dcim/forms/object_create.py:43 -#: netbox/dcim/tables/devices.py:52 netbox/dcim/tables/devices.py:92 -#: netbox/dcim/tables/devices.py:134 netbox/dcim/tables/devices.py:289 -#: netbox/dcim/tables/devices.py:392 netbox/dcim/tables/devices.py:433 -#: netbox/dcim/tables/devices.py:482 netbox/dcim/tables/devices.py:531 -#: netbox/dcim/tables/devices.py:648 netbox/dcim/tables/devices.py:731 -#: netbox/dcim/tables/devices.py:778 netbox/dcim/tables/devices.py:841 -#: netbox/dcim/tables/devices.py:911 netbox/dcim/tables/devices.py:974 -#: netbox/dcim/tables/devices.py:994 netbox/dcim/tables/devices.py:1023 -#: netbox/dcim/tables/devices.py:1053 netbox/dcim/tables/devicetypes.py:31 -#: netbox/dcim/tables/power.py:22 netbox/dcim/tables/power.py:62 -#: netbox/dcim/tables/racks.py:24 netbox/dcim/tables/racks.py:113 -#: netbox/dcim/tables/sites.py:24 netbox/dcim/tables/sites.py:51 -#: netbox/dcim/tables/sites.py:78 netbox/dcim/tables/sites.py:130 -#: netbox/extras/forms/filtersets.py:213 netbox/extras/tables/tables.py:58 -#: netbox/extras/tables/tables.py:122 netbox/extras/tables/tables.py:155 -#: netbox/extras/tables/tables.py:180 netbox/extras/tables/tables.py:246 -#: netbox/extras/tables/tables.py:361 netbox/extras/tables/tables.py:378 -#: netbox/extras/tables/tables.py:401 netbox/extras/tables/tables.py:439 -#: netbox/extras/tables/tables.py:491 netbox/extras/tables/tables.py:514 -#: netbox/ipam/forms/bulk_edit.py:406 netbox/ipam/forms/filtersets.py:386 -#: netbox/ipam/tables/asn.py:16 netbox/ipam/tables/ip.py:85 -#: netbox/ipam/tables/ip.py:160 netbox/ipam/tables/services.py:15 -#: netbox/ipam/tables/services.py:40 netbox/ipam/tables/vlans.py:64 -#: netbox/ipam/tables/vlans.py:114 netbox/ipam/tables/vrfs.py:26 -#: netbox/ipam/tables/vrfs.py:68 -#: netbox/templates/circuits/circuitgroup.html:28 -#: netbox/templates/circuits/circuittype.html:22 -#: netbox/templates/circuits/provideraccount.html:28 -#: netbox/templates/circuits/providernetwork.html:24 -#: netbox/templates/core/datasource.html:34 netbox/templates/core/job.html:44 -#: netbox/templates/core/plugin.html:53 -#: netbox/templates/core/rq_worker.html:43 -#: netbox/templates/dcim/consoleport.html:28 -#: netbox/templates/dcim/consoleserverport.html:28 -#: netbox/templates/dcim/devicebay.html:24 -#: netbox/templates/dcim/devicerole.html:26 -#: netbox/templates/dcim/frontport.html:28 -#: netbox/templates/dcim/inc/interface_vlans_table.html:5 -#: netbox/templates/dcim/inc/panels/inventory_items.html:18 -#: netbox/templates/dcim/interface.html:38 -#: netbox/templates/dcim/interface.html:165 -#: netbox/templates/dcim/inventoryitem.html:28 -#: netbox/templates/dcim/inventoryitemrole.html:18 -#: netbox/templates/dcim/location.html:29 -#: netbox/templates/dcim/manufacturer.html:36 -#: netbox/templates/dcim/modulebay.html:30 -#: netbox/templates/dcim/platform.html:29 -#: netbox/templates/dcim/poweroutlet.html:28 -#: netbox/templates/dcim/powerport.html:28 -#: netbox/templates/dcim/rackrole.html:22 -#: netbox/templates/dcim/rearport.html:28 netbox/templates/dcim/region.html:29 -#: netbox/templates/dcim/sitegroup.html:29 -#: netbox/templates/dcim/virtualdevicecontext.html:18 -#: netbox/templates/extras/configcontext.html:13 -#: netbox/templates/extras/configtemplate.html:13 -#: netbox/templates/extras/customfield.html:13 -#: netbox/templates/extras/customlink.html:13 -#: netbox/templates/extras/eventrule.html:13 -#: netbox/templates/extras/exporttemplate.html:15 -#: netbox/templates/extras/notificationgroup.html:14 -#: netbox/templates/extras/savedfilter.html:13 -#: netbox/templates/extras/script_list.html:44 -#: netbox/templates/extras/tag.html:14 netbox/templates/extras/webhook.html:13 -#: netbox/templates/ipam/asnrange.html:15 -#: netbox/templates/ipam/fhrpgroup.html:30 netbox/templates/ipam/rir.html:22 -#: netbox/templates/ipam/role.html:22 -#: netbox/templates/ipam/routetarget.html:13 -#: netbox/templates/ipam/service.html:24 -#: netbox/templates/ipam/servicetemplate.html:15 -#: netbox/templates/ipam/vlan.html:35 netbox/templates/ipam/vlangroup.html:30 -#: netbox/templates/tenancy/contact.html:25 -#: netbox/templates/tenancy/contactgroup.html:21 -#: netbox/templates/tenancy/contactrole.html:18 -#: netbox/templates/tenancy/tenantgroup.html:29 -#: netbox/templates/users/group.html:17 -#: netbox/templates/users/objectpermission.html:17 -#: netbox/templates/virtualization/cluster.html:13 -#: netbox/templates/virtualization/clustergroup.html:22 -#: netbox/templates/virtualization/clustertype.html:22 -#: netbox/templates/virtualization/virtualdisk.html:25 -#: netbox/templates/virtualization/virtualmachine.html:15 -#: netbox/templates/virtualization/vminterface.html:25 -#: netbox/templates/vpn/ikepolicy.html:13 -#: netbox/templates/vpn/ikeproposal.html:13 -#: netbox/templates/vpn/ipsecpolicy.html:13 -#: netbox/templates/vpn/ipsecprofile.html:13 -#: netbox/templates/vpn/ipsecprofile.html:36 -#: netbox/templates/vpn/ipsecprofile.html:69 -#: netbox/templates/vpn/ipsecproposal.html:13 -#: netbox/templates/vpn/l2vpn.html:14 netbox/templates/vpn/tunnel.html:21 -#: netbox/templates/vpn/tunnelgroup.html:26 -#: netbox/templates/wireless/wirelesslangroup.html:29 -#: netbox/tenancy/tables/contacts.py:19 netbox/tenancy/tables/contacts.py:41 -#: netbox/tenancy/tables/contacts.py:56 netbox/tenancy/tables/tenants.py:16 -#: netbox/tenancy/tables/tenants.py:38 netbox/users/tables.py:62 -#: netbox/users/tables.py:76 netbox/virtualization/forms/bulk_create.py:20 -#: netbox/virtualization/forms/object_create.py:13 -#: netbox/virtualization/forms/object_create.py:23 -#: netbox/virtualization/tables/clusters.py:17 -#: netbox/virtualization/tables/clusters.py:39 -#: netbox/virtualization/tables/clusters.py:62 -#: netbox/virtualization/tables/virtualmachines.py:55 -#: netbox/virtualization/tables/virtualmachines.py:139 -#: netbox/virtualization/tables/virtualmachines.py:194 -#: netbox/vpn/tables/crypto.py:18 netbox/vpn/tables/crypto.py:57 -#: netbox/vpn/tables/crypto.py:93 netbox/vpn/tables/crypto.py:129 -#: netbox/vpn/tables/crypto.py:158 netbox/vpn/tables/l2vpn.py:23 -#: netbox/vpn/tables/tunnels.py:18 netbox/vpn/tables/tunnels.py:40 -#: netbox/wireless/tables/wirelesslan.py:18 -#: netbox/wireless/tables/wirelesslan.py:79 +#: circuits/tables/circuits.py:32 circuits/tables/circuits.py:132 +#: circuits/tables/providers.py:18 circuits/tables/providers.py:69 +#: circuits/tables/providers.py:99 core/tables/data.py:16 +#: core/tables/jobs.py:14 core/tables/plugins.py:44 core/tables/tasks.py:11 +#: core/tables/tasks.py:115 dcim/forms/filtersets.py:63 +#: dcim/forms/object_create.py:43 dcim/tables/devices.py:52 +#: dcim/tables/devices.py:92 dcim/tables/devices.py:134 +#: dcim/tables/devices.py:289 dcim/tables/devices.py:392 +#: dcim/tables/devices.py:433 dcim/tables/devices.py:482 +#: dcim/tables/devices.py:531 dcim/tables/devices.py:648 +#: dcim/tables/devices.py:731 dcim/tables/devices.py:778 +#: dcim/tables/devices.py:841 dcim/tables/devices.py:911 +#: dcim/tables/devices.py:974 dcim/tables/devices.py:994 +#: dcim/tables/devices.py:1023 dcim/tables/devices.py:1053 +#: dcim/tables/devicetypes.py:31 dcim/tables/power.py:22 +#: dcim/tables/power.py:62 dcim/tables/racks.py:24 dcim/tables/racks.py:113 +#: dcim/tables/sites.py:24 dcim/tables/sites.py:51 dcim/tables/sites.py:78 +#: dcim/tables/sites.py:130 extras/forms/filtersets.py:213 +#: extras/tables/tables.py:58 extras/tables/tables.py:122 +#: extras/tables/tables.py:155 extras/tables/tables.py:180 +#: extras/tables/tables.py:246 extras/tables/tables.py:361 +#: extras/tables/tables.py:378 extras/tables/tables.py:401 +#: extras/tables/tables.py:439 extras/tables/tables.py:491 +#: extras/tables/tables.py:514 ipam/forms/bulk_edit.py:407 +#: ipam/forms/filtersets.py:386 ipam/tables/asn.py:16 ipam/tables/ip.py:85 +#: ipam/tables/ip.py:160 ipam/tables/services.py:15 ipam/tables/services.py:40 +#: ipam/tables/vlans.py:64 ipam/tables/vlans.py:114 ipam/tables/vrfs.py:26 +#: ipam/tables/vrfs.py:68 templates/circuits/circuitgroup.html:28 +#: templates/circuits/circuittype.html:22 +#: templates/circuits/provideraccount.html:28 +#: templates/circuits/providernetwork.html:24 +#: templates/core/datasource.html:34 templates/core/job.html:44 +#: templates/core/plugin.html:54 templates/core/rq_worker.html:43 +#: templates/dcim/consoleport.html:28 templates/dcim/consoleserverport.html:28 +#: templates/dcim/devicebay.html:24 templates/dcim/devicerole.html:26 +#: templates/dcim/frontport.html:28 +#: templates/dcim/inc/interface_vlans_table.html:5 +#: templates/dcim/inc/panels/inventory_items.html:18 +#: templates/dcim/interface.html:38 templates/dcim/interface.html:165 +#: templates/dcim/inventoryitem.html:28 +#: templates/dcim/inventoryitemrole.html:18 templates/dcim/location.html:29 +#: templates/dcim/manufacturer.html:36 templates/dcim/modulebay.html:30 +#: templates/dcim/platform.html:29 templates/dcim/poweroutlet.html:28 +#: templates/dcim/powerport.html:28 templates/dcim/rackrole.html:22 +#: templates/dcim/rearport.html:28 templates/dcim/region.html:29 +#: templates/dcim/sitegroup.html:29 +#: templates/dcim/virtualdevicecontext.html:18 +#: templates/extras/configcontext.html:13 +#: templates/extras/configtemplate.html:13 +#: templates/extras/customfield.html:13 templates/extras/customlink.html:13 +#: templates/extras/eventrule.html:13 templates/extras/exporttemplate.html:15 +#: templates/extras/notificationgroup.html:14 +#: templates/extras/savedfilter.html:13 templates/extras/script_list.html:44 +#: templates/extras/tag.html:14 templates/extras/webhook.html:13 +#: templates/ipam/asnrange.html:15 templates/ipam/fhrpgroup.html:30 +#: templates/ipam/rir.html:22 templates/ipam/role.html:22 +#: templates/ipam/routetarget.html:13 templates/ipam/service.html:24 +#: templates/ipam/servicetemplate.html:15 templates/ipam/vlan.html:35 +#: templates/ipam/vlangroup.html:30 templates/tenancy/contact.html:25 +#: templates/tenancy/contactgroup.html:21 +#: templates/tenancy/contactrole.html:18 templates/tenancy/tenantgroup.html:29 +#: templates/users/group.html:17 templates/users/objectpermission.html:17 +#: templates/virtualization/cluster.html:13 +#: templates/virtualization/clustergroup.html:22 +#: templates/virtualization/clustertype.html:22 +#: templates/virtualization/virtualdisk.html:25 +#: templates/virtualization/virtualmachine.html:15 +#: templates/virtualization/vminterface.html:25 +#: templates/vpn/ikepolicy.html:13 templates/vpn/ikeproposal.html:13 +#: templates/vpn/ipsecpolicy.html:13 templates/vpn/ipsecprofile.html:13 +#: templates/vpn/ipsecprofile.html:36 templates/vpn/ipsecprofile.html:69 +#: templates/vpn/ipsecproposal.html:13 templates/vpn/l2vpn.html:14 +#: templates/vpn/tunnel.html:21 templates/vpn/tunnelgroup.html:26 +#: templates/wireless/wirelesslangroup.html:29 tenancy/tables/contacts.py:19 +#: tenancy/tables/contacts.py:41 tenancy/tables/contacts.py:56 +#: tenancy/tables/tenants.py:16 tenancy/tables/tenants.py:38 +#: users/tables.py:62 users/tables.py:76 +#: virtualization/forms/bulk_create.py:20 +#: virtualization/forms/object_create.py:13 +#: virtualization/forms/object_create.py:23 +#: virtualization/tables/clusters.py:17 virtualization/tables/clusters.py:39 +#: virtualization/tables/clusters.py:62 +#: virtualization/tables/virtualmachines.py:55 +#: virtualization/tables/virtualmachines.py:139 +#: virtualization/tables/virtualmachines.py:194 vpn/tables/crypto.py:18 +#: vpn/tables/crypto.py:57 vpn/tables/crypto.py:93 vpn/tables/crypto.py:129 +#: vpn/tables/crypto.py:158 vpn/tables/l2vpn.py:23 vpn/tables/tunnels.py:18 +#: vpn/tables/tunnels.py:40 wireless/tables/wirelesslan.py:18 +#: wireless/tables/wirelesslan.py:79 msgid "Name" msgstr "Имя" -#: netbox/circuits/tables/circuits.py:41 -#: netbox/circuits/tables/circuits.py:138 -#: netbox/circuits/tables/providers.py:45 -#: netbox/circuits/tables/providers.py:79 netbox/netbox/navigation/menu.py:266 -#: netbox/netbox/navigation/menu.py:270 netbox/netbox/navigation/menu.py:272 -#: netbox/templates/circuits/provider.html:57 -#: netbox/templates/circuits/provideraccount.html:44 -#: netbox/templates/circuits/providernetwork.html:50 +#: circuits/tables/circuits.py:41 circuits/tables/circuits.py:138 +#: circuits/tables/providers.py:45 circuits/tables/providers.py:79 +#: netbox/navigation/menu.py:266 netbox/navigation/menu.py:270 +#: netbox/navigation/menu.py:272 templates/circuits/provider.html:57 +#: templates/circuits/provideraccount.html:44 +#: templates/circuits/providernetwork.html:50 msgid "Circuits" msgstr "Каналы связи" -#: netbox/circuits/tables/circuits.py:55 -#: netbox/templates/circuits/circuit.html:26 +#: circuits/tables/circuits.py:55 templates/circuits/circuit.html:26 msgid "Circuit ID" msgstr "Идентификатор канала связи" -#: netbox/circuits/tables/circuits.py:69 -#: netbox/wireless/forms/model_forms.py:160 +#: circuits/tables/circuits.py:69 wireless/forms/model_forms.py:160 msgid "Side A" msgstr "Сторона А" -#: netbox/circuits/tables/circuits.py:74 +#: circuits/tables/circuits.py:74 msgid "Side Z" msgstr "Сторона Z" -#: netbox/circuits/tables/circuits.py:77 -#: netbox/templates/circuits/circuit.html:55 +#: circuits/tables/circuits.py:77 templates/circuits/circuit.html:55 msgid "Commit Rate" msgstr "Гарантированная скорость" -#: netbox/circuits/tables/circuits.py:80 -#: netbox/circuits/tables/providers.py:48 -#: netbox/circuits/tables/providers.py:82 -#: netbox/circuits/tables/providers.py:107 netbox/dcim/tables/devices.py:1036 -#: netbox/dcim/tables/devicetypes.py:92 netbox/dcim/tables/modules.py:29 -#: netbox/dcim/tables/modules.py:72 netbox/dcim/tables/power.py:39 -#: netbox/dcim/tables/power.py:96 netbox/dcim/tables/racks.py:84 -#: netbox/dcim/tables/racks.py:145 netbox/dcim/tables/racks.py:225 -#: netbox/dcim/tables/sites.py:108 netbox/extras/tables/tables.py:582 -#: netbox/ipam/tables/asn.py:69 netbox/ipam/tables/fhrp.py:34 -#: netbox/ipam/tables/ip.py:136 netbox/ipam/tables/ip.py:275 -#: netbox/ipam/tables/ip.py:329 netbox/ipam/tables/ip.py:397 -#: netbox/ipam/tables/services.py:24 netbox/ipam/tables/services.py:54 -#: netbox/ipam/tables/vlans.py:145 netbox/ipam/tables/vrfs.py:47 -#: netbox/ipam/tables/vrfs.py:72 netbox/templates/dcim/htmx/cable_edit.html:89 -#: netbox/templates/generic/bulk_edit.html:86 -#: netbox/templates/inc/panels/comments.html:5 -#: netbox/tenancy/tables/contacts.py:68 netbox/tenancy/tables/tenants.py:46 -#: netbox/utilities/forms/fields/fields.py:29 -#: netbox/virtualization/tables/clusters.py:91 -#: netbox/virtualization/tables/virtualmachines.py:82 -#: netbox/vpn/tables/crypto.py:37 netbox/vpn/tables/crypto.py:74 -#: netbox/vpn/tables/crypto.py:109 netbox/vpn/tables/crypto.py:140 -#: netbox/vpn/tables/crypto.py:173 netbox/vpn/tables/l2vpn.py:37 -#: netbox/vpn/tables/tunnels.py:61 netbox/wireless/tables/wirelesslan.py:27 -#: netbox/wireless/tables/wirelesslan.py:58 +#: circuits/tables/circuits.py:80 circuits/tables/providers.py:48 +#: circuits/tables/providers.py:82 circuits/tables/providers.py:107 +#: dcim/tables/devices.py:1036 dcim/tables/devicetypes.py:92 +#: dcim/tables/modules.py:29 dcim/tables/modules.py:72 dcim/tables/power.py:39 +#: dcim/tables/power.py:96 dcim/tables/racks.py:84 dcim/tables/racks.py:145 +#: dcim/tables/racks.py:225 dcim/tables/sites.py:108 +#: extras/tables/tables.py:582 ipam/tables/asn.py:69 ipam/tables/fhrp.py:34 +#: ipam/tables/ip.py:136 ipam/tables/ip.py:275 ipam/tables/ip.py:329 +#: ipam/tables/ip.py:397 ipam/tables/services.py:24 ipam/tables/services.py:54 +#: ipam/tables/vlans.py:145 ipam/tables/vrfs.py:47 ipam/tables/vrfs.py:72 +#: templates/dcim/htmx/cable_edit.html:89 templates/generic/bulk_edit.html:86 +#: templates/inc/panels/comments.html:5 tenancy/tables/contacts.py:68 +#: tenancy/tables/tenants.py:46 utilities/forms/fields/fields.py:29 +#: virtualization/tables/clusters.py:91 +#: virtualization/tables/virtualmachines.py:82 vpn/tables/crypto.py:37 +#: vpn/tables/crypto.py:74 vpn/tables/crypto.py:109 vpn/tables/crypto.py:140 +#: vpn/tables/crypto.py:173 vpn/tables/l2vpn.py:37 vpn/tables/tunnels.py:61 +#: wireless/tables/wirelesslan.py:27 wireless/tables/wirelesslan.py:58 msgid "Comments" msgstr "Комментарии" -#: netbox/circuits/tables/circuits.py:86 -#: netbox/templates/tenancy/contact.html:84 -#: netbox/tenancy/tables/contacts.py:73 +#: circuits/tables/circuits.py:86 templates/tenancy/contact.html:84 +#: tenancy/tables/contacts.py:73 msgid "Assignments" msgstr "Задания" -#: netbox/circuits/tables/providers.py:23 +#: circuits/tables/providers.py:23 msgid "Accounts" msgstr "Аккаунты" -#: netbox/circuits/tables/providers.py:29 +#: circuits/tables/providers.py:29 msgid "Account Count" msgstr "Количество аккаунтов" -#: netbox/circuits/tables/providers.py:39 netbox/dcim/tables/sites.py:100 +#: circuits/tables/providers.py:39 dcim/tables/sites.py:100 msgid "ASN Count" msgstr "Количество ASN" -#: netbox/circuits/views.py:331 +#: circuits/views.py:331 #, python-brace-format msgid "No terminations have been defined for circuit {circuit}." msgstr "Не определены точки подключения для канала связи {circuit}." -#: netbox/circuits/views.py:380 +#: circuits/views.py:380 #, python-brace-format msgid "Swapped terminations for circuit {circuit}." msgstr "Поменены местами точки подключения для канала связи {circuit}." -#: netbox/core/api/views.py:39 +#: core/api/views.py:39 msgid "This user does not have permission to synchronize this data source." msgstr "" "У этого пользователя нет разрешения на синхронизацию этого источника данных." -#: netbox/core/choices.py:18 +#: core/choices.py:18 msgid "New" msgstr "Новый" -#: netbox/core/choices.py:19 netbox/core/constants.py:18 -#: netbox/core/tables/tasks.py:15 netbox/templates/core/rq_task.html:77 +#: core/choices.py:19 core/constants.py:18 core/tables/tasks.py:15 +#: templates/core/rq_task.html:77 msgid "Queued" msgstr "В очереди" -#: netbox/core/choices.py:20 +#: core/choices.py:20 msgid "Syncing" msgstr "Синхронизируется" -#: netbox/core/choices.py:21 netbox/core/choices.py:57 -#: netbox/core/tables/jobs.py:41 netbox/templates/core/job.html:86 +#: core/choices.py:21 core/choices.py:57 core/tables/jobs.py:41 +#: templates/core/job.html:86 msgid "Completed" msgstr "Завершено" -#: netbox/core/choices.py:22 netbox/core/choices.py:59 -#: netbox/core/constants.py:20 netbox/core/tables/tasks.py:34 -#: netbox/dcim/choices.py:187 netbox/dcim/choices.py:239 -#: netbox/dcim/choices.py:1607 netbox/virtualization/choices.py:47 +#: core/choices.py:22 core/choices.py:59 core/constants.py:20 +#: core/tables/tasks.py:34 dcim/choices.py:187 dcim/choices.py:239 +#: dcim/choices.py:1607 virtualization/choices.py:47 msgid "Failed" msgstr "Неисправно" -#: netbox/core/choices.py:35 netbox/netbox/navigation/menu.py:335 -#: netbox/netbox/navigation/menu.py:339 -#: netbox/templates/extras/script/base.html:14 -#: netbox/templates/extras/script_list.html:7 -#: netbox/templates/extras/script_list.html:12 -#: netbox/templates/extras/script_result.html:17 +#: core/choices.py:35 netbox/navigation/menu.py:335 +#: netbox/navigation/menu.py:339 templates/extras/script/base.html:14 +#: templates/extras/script_list.html:7 templates/extras/script_list.html:12 +#: templates/extras/script_result.html:17 msgid "Scripts" msgstr "Скрипты" -#: netbox/core/choices.py:36 netbox/templates/extras/report/base.html:13 +#: core/choices.py:36 templates/extras/report/base.html:13 msgid "Reports" msgstr "Отчеты" -#: netbox/core/choices.py:54 +#: core/choices.py:54 msgid "Pending" msgstr "В ожидании" -#: netbox/core/choices.py:55 netbox/core/constants.py:23 -#: netbox/core/tables/jobs.py:32 netbox/core/tables/tasks.py:38 -#: netbox/templates/core/job.html:73 +#: core/choices.py:55 core/constants.py:23 core/tables/jobs.py:32 +#: core/tables/tasks.py:38 templates/core/job.html:73 msgid "Scheduled" msgstr "Запланировано" -#: netbox/core/choices.py:56 +#: core/choices.py:56 msgid "Running" msgstr "Исполняется" -#: netbox/core/choices.py:58 +#: core/choices.py:58 msgid "Errored" msgstr "Ошибка" -#: netbox/core/choices.py:87 netbox/core/tables/plugins.py:63 -#: netbox/templates/generic/object.html:61 +#: core/choices.py:87 core/tables/plugins.py:63 +#: templates/generic/object.html:61 msgid "Updated" msgstr "Обновлено" -#: netbox/core/choices.py:88 +#: core/choices.py:88 msgid "Deleted" msgstr "Удалено" -#: netbox/core/constants.py:19 netbox/core/tables/tasks.py:30 +#: core/constants.py:19 core/tables/tasks.py:30 msgid "Finished" msgstr "Закончено" -#: netbox/core/constants.py:21 netbox/core/tables/jobs.py:38 -#: netbox/templates/core/job.html:82 -#: netbox/templates/extras/htmx/script_result.html:8 +#: core/constants.py:21 core/tables/jobs.py:38 templates/core/job.html:82 +#: templates/extras/htmx/script_result.html:8 msgid "Started" msgstr "Запущено" -#: netbox/core/constants.py:22 netbox/core/tables/tasks.py:26 +#: core/constants.py:22 core/tables/tasks.py:26 msgid "Deferred" msgstr "Отложено" -#: netbox/core/constants.py:24 +#: core/constants.py:24 msgid "Stopped" msgstr "Остановлен" -#: netbox/core/constants.py:25 +#: core/constants.py:25 msgid "Cancelled" msgstr "Отменено" -#: netbox/core/data_backends.py:32 netbox/core/tables/plugins.py:51 -#: netbox/templates/core/plugin.html:87 -#: netbox/templates/dcim/interface.html:216 +#: core/data_backends.py:32 core/tables/plugins.py:51 +#: templates/core/plugin.html:88 templates/dcim/interface.html:216 msgid "Local" msgstr "Локальный" -#: netbox/core/data_backends.py:50 netbox/core/tables/change_logging.py:20 -#: netbox/templates/account/profile.html:15 -#: netbox/templates/users/user.html:17 netbox/users/tables.py:31 +#: core/data_backends.py:50 core/tables/change_logging.py:20 +#: templates/account/profile.html:15 templates/users/user.html:17 +#: users/tables.py:31 msgid "Username" msgstr "Имя пользователя" -#: netbox/core/data_backends.py:52 netbox/core/data_backends.py:58 +#: core/data_backends.py:52 core/data_backends.py:58 msgid "Only used for cloning with HTTP(S)" msgstr "Используется только для клонирования по HTTP (S)" -#: netbox/core/data_backends.py:56 netbox/templates/account/base.html:23 -#: netbox/templates/account/password.html:12 -#: netbox/users/forms/model_forms.py:170 +#: core/data_backends.py:56 templates/account/base.html:23 +#: templates/account/password.html:12 users/forms/model_forms.py:170 msgid "Password" msgstr "Пароль" -#: netbox/core/data_backends.py:62 +#: core/data_backends.py:62 msgid "Branch" msgstr "Ветка" -#: netbox/core/data_backends.py:120 +#: core/data_backends.py:120 #, python-brace-format msgid "Fetching remote data failed ({name}): {error}" msgstr "Не удалось получить удаленные данные ({name}): {error}" -#: netbox/core/data_backends.py:133 +#: core/data_backends.py:133 msgid "AWS access key ID" msgstr "ID ключа доступа AWS" -#: netbox/core/data_backends.py:137 +#: core/data_backends.py:137 msgid "AWS secret access key" msgstr "Секретный ключ доступа AWS" -#: netbox/core/events.py:27 +#: core/events.py:27 msgid "Object created" msgstr "Объект создан" -#: netbox/core/events.py:28 +#: core/events.py:28 msgid "Object updated" msgstr "Объект обновлен" -#: netbox/core/events.py:29 +#: core/events.py:29 msgid "Object deleted" msgstr "Объект удален" -#: netbox/core/events.py:30 +#: core/events.py:30 msgid "Job started" msgstr "Задача начата" -#: netbox/core/events.py:31 +#: core/events.py:31 msgid "Job completed" msgstr "Задача выполнена" -#: netbox/core/events.py:32 +#: core/events.py:32 msgid "Job failed" msgstr "Задача не выполнена" -#: netbox/core/events.py:33 +#: core/events.py:33 msgid "Job errored" msgstr "Задача выполнена с ошибкой" -#: netbox/core/filtersets.py:53 netbox/extras/filtersets.py:250 -#: netbox/extras/filtersets.py:633 netbox/extras/filtersets.py:661 +#: core/filtersets.py:53 extras/filtersets.py:250 extras/filtersets.py:633 +#: extras/filtersets.py:661 msgid "Data source (ID)" msgstr "Источник данных (ID)" -#: netbox/core/filtersets.py:59 +#: core/filtersets.py:59 msgid "Data source (name)" msgstr "Источник данных (имя)" -#: netbox/core/filtersets.py:145 netbox/dcim/filtersets.py:501 -#: netbox/extras/filtersets.py:287 netbox/extras/filtersets.py:331 -#: netbox/extras/filtersets.py:353 netbox/extras/filtersets.py:413 -#: netbox/users/filtersets.py:28 +#: core/filtersets.py:145 dcim/filtersets.py:501 extras/filtersets.py:287 +#: extras/filtersets.py:331 extras/filtersets.py:353 extras/filtersets.py:413 +#: users/filtersets.py:28 msgid "User (ID)" msgstr "Пользователь (ID)" -#: netbox/core/filtersets.py:151 +#: core/filtersets.py:151 msgid "User name" msgstr "Имя пользователя" -#: netbox/core/forms/bulk_edit.py:25 netbox/core/forms/filtersets.py:43 -#: netbox/core/tables/data.py:26 netbox/dcim/forms/bulk_edit.py:1122 -#: netbox/dcim/forms/bulk_edit.py:1400 netbox/dcim/forms/filtersets.py:1370 -#: netbox/dcim/tables/devices.py:553 netbox/dcim/tables/devicetypes.py:224 -#: netbox/extras/forms/bulk_edit.py:123 netbox/extras/forms/bulk_edit.py:187 -#: netbox/extras/forms/bulk_edit.py:246 netbox/extras/forms/filtersets.py:142 -#: netbox/extras/forms/filtersets.py:229 netbox/extras/forms/filtersets.py:294 -#: netbox/extras/tables/tables.py:162 netbox/extras/tables/tables.py:253 -#: netbox/extras/tables/tables.py:415 netbox/netbox/preferences.py:22 -#: netbox/templates/core/datasource.html:42 -#: netbox/templates/dcim/interface.html:61 -#: netbox/templates/extras/customlink.html:17 -#: netbox/templates/extras/eventrule.html:17 -#: netbox/templates/extras/savedfilter.html:25 -#: netbox/templates/users/objectpermission.html:25 -#: netbox/templates/virtualization/vminterface.html:29 -#: netbox/users/forms/bulk_edit.py:89 netbox/users/forms/filtersets.py:70 -#: netbox/users/tables.py:83 netbox/virtualization/forms/bulk_edit.py:217 -#: netbox/virtualization/forms/filtersets.py:215 +#: core/forms/bulk_edit.py:25 core/forms/filtersets.py:43 +#: core/tables/data.py:26 dcim/forms/bulk_edit.py:1122 +#: dcim/forms/bulk_edit.py:1400 dcim/forms/filtersets.py:1370 +#: dcim/tables/devices.py:553 dcim/tables/devicetypes.py:224 +#: extras/forms/bulk_edit.py:123 extras/forms/bulk_edit.py:187 +#: extras/forms/bulk_edit.py:246 extras/forms/filtersets.py:142 +#: extras/forms/filtersets.py:229 extras/forms/filtersets.py:294 +#: extras/tables/tables.py:162 extras/tables/tables.py:253 +#: extras/tables/tables.py:415 netbox/preferences.py:22 +#: templates/core/datasource.html:42 templates/dcim/interface.html:61 +#: templates/extras/customlink.html:17 templates/extras/eventrule.html:17 +#: templates/extras/savedfilter.html:25 +#: templates/users/objectpermission.html:25 +#: templates/virtualization/vminterface.html:29 users/forms/bulk_edit.py:89 +#: users/forms/filtersets.py:70 users/tables.py:83 +#: virtualization/forms/bulk_edit.py:217 +#: virtualization/forms/filtersets.py:215 msgid "Enabled" msgstr "Включено" -#: netbox/core/forms/bulk_edit.py:34 netbox/extras/forms/model_forms.py:285 -#: netbox/templates/extras/savedfilter.html:52 -#: netbox/vpn/forms/filtersets.py:97 netbox/vpn/forms/filtersets.py:127 -#: netbox/vpn/forms/filtersets.py:151 netbox/vpn/forms/filtersets.py:170 -#: netbox/vpn/forms/model_forms.py:301 netbox/vpn/forms/model_forms.py:321 -#: netbox/vpn/forms/model_forms.py:337 netbox/vpn/forms/model_forms.py:357 -#: netbox/vpn/forms/model_forms.py:380 +#: core/forms/bulk_edit.py:34 extras/forms/model_forms.py:285 +#: templates/extras/savedfilter.html:52 vpn/forms/filtersets.py:97 +#: vpn/forms/filtersets.py:127 vpn/forms/filtersets.py:151 +#: vpn/forms/filtersets.py:170 vpn/forms/model_forms.py:301 +#: vpn/forms/model_forms.py:321 vpn/forms/model_forms.py:337 +#: vpn/forms/model_forms.py:357 vpn/forms/model_forms.py:380 msgid "Parameters" msgstr "Параметры" -#: netbox/core/forms/bulk_edit.py:38 netbox/templates/core/datasource.html:68 +#: core/forms/bulk_edit.py:38 templates/core/datasource.html:68 msgid "Ignore rules" msgstr "Правила исключения" -#: netbox/core/forms/filtersets.py:30 netbox/core/forms/model_forms.py:97 -#: netbox/extras/forms/model_forms.py:248 -#: netbox/extras/forms/model_forms.py:578 -#: netbox/extras/forms/model_forms.py:632 netbox/extras/tables/tables.py:191 -#: netbox/extras/tables/tables.py:483 netbox/extras/tables/tables.py:518 -#: netbox/templates/core/datasource.html:31 -#: netbox/templates/dcim/device/render_config.html:18 -#: netbox/templates/extras/configcontext.html:29 -#: netbox/templates/extras/configtemplate.html:21 -#: netbox/templates/extras/exporttemplate.html:35 -#: netbox/templates/virtualization/virtualmachine/render_config.html:18 +#: core/forms/filtersets.py:30 core/forms/model_forms.py:97 +#: extras/forms/model_forms.py:248 extras/forms/model_forms.py:578 +#: extras/forms/model_forms.py:632 extras/tables/tables.py:191 +#: extras/tables/tables.py:483 extras/tables/tables.py:518 +#: templates/core/datasource.html:31 +#: templates/dcim/device/render_config.html:18 +#: templates/extras/configcontext.html:29 +#: templates/extras/configtemplate.html:21 +#: templates/extras/exporttemplate.html:35 +#: templates/virtualization/virtualmachine/render_config.html:18 msgid "Data Source" msgstr "Источник данных" -#: netbox/core/forms/filtersets.py:55 netbox/core/forms/mixins.py:21 +#: core/forms/filtersets.py:55 core/forms/mixins.py:21 msgid "File" msgstr "Файл" -#: netbox/core/forms/filtersets.py:60 netbox/core/forms/mixins.py:16 -#: netbox/extras/forms/filtersets.py:170 netbox/extras/forms/filtersets.py:328 -#: netbox/extras/forms/filtersets.py:413 +#: core/forms/filtersets.py:60 core/forms/mixins.py:16 +#: extras/forms/filtersets.py:170 extras/forms/filtersets.py:328 +#: extras/forms/filtersets.py:413 msgid "Data source" msgstr "Источник данных" -#: netbox/core/forms/filtersets.py:70 netbox/extras/forms/filtersets.py:440 +#: core/forms/filtersets.py:70 extras/forms/filtersets.py:440 msgid "Creation" msgstr "Создание" -#: netbox/core/forms/filtersets.py:74 netbox/core/forms/filtersets.py:160 -#: netbox/extras/forms/filtersets.py:461 netbox/extras/tables/tables.py:220 -#: netbox/extras/tables/tables.py:294 netbox/extras/tables/tables.py:326 -#: netbox/extras/tables/tables.py:571 netbox/templates/core/job.html:38 -#: netbox/templates/core/objectchange.html:52 -#: netbox/tenancy/tables/contacts.py:90 netbox/vpn/tables/l2vpn.py:59 +#: core/forms/filtersets.py:74 core/forms/filtersets.py:160 +#: extras/forms/filtersets.py:461 extras/tables/tables.py:220 +#: extras/tables/tables.py:294 extras/tables/tables.py:326 +#: extras/tables/tables.py:571 templates/core/job.html:38 +#: templates/core/objectchange.html:52 tenancy/tables/contacts.py:90 +#: vpn/tables/l2vpn.py:59 msgid "Object Type" msgstr "Тип объекта" -#: netbox/core/forms/filtersets.py:84 +#: core/forms/filtersets.py:84 msgid "Created after" msgstr "Создано после" -#: netbox/core/forms/filtersets.py:89 +#: core/forms/filtersets.py:89 msgid "Created before" msgstr "Создано до" -#: netbox/core/forms/filtersets.py:94 +#: core/forms/filtersets.py:94 msgid "Scheduled after" msgstr "Запланировано после" -#: netbox/core/forms/filtersets.py:99 +#: core/forms/filtersets.py:99 msgid "Scheduled before" msgstr "Запланировано до" -#: netbox/core/forms/filtersets.py:104 +#: core/forms/filtersets.py:104 msgid "Started after" msgstr "Запустилось после" -#: netbox/core/forms/filtersets.py:109 +#: core/forms/filtersets.py:109 msgid "Started before" msgstr "Запустилось до" -#: netbox/core/forms/filtersets.py:114 +#: core/forms/filtersets.py:114 msgid "Completed after" msgstr "Завершено после" -#: netbox/core/forms/filtersets.py:119 +#: core/forms/filtersets.py:119 msgid "Completed before" msgstr "Завершено до" -#: netbox/core/forms/filtersets.py:126 netbox/core/forms/filtersets.py:155 -#: netbox/dcim/forms/bulk_edit.py:456 netbox/dcim/forms/filtersets.py:418 -#: netbox/dcim/forms/filtersets.py:462 netbox/dcim/forms/model_forms.py:316 -#: netbox/extras/forms/filtersets.py:456 netbox/extras/forms/filtersets.py:475 -#: netbox/extras/tables/tables.py:302 netbox/extras/tables/tables.py:342 -#: netbox/templates/core/objectchange.html:36 -#: netbox/templates/dcim/rackreservation.html:58 -#: netbox/templates/extras/savedfilter.html:21 -#: netbox/templates/inc/user_menu.html:33 netbox/templates/users/token.html:21 -#: netbox/templates/users/user.html:6 netbox/templates/users/user.html:14 -#: netbox/users/filtersets.py:107 netbox/users/filtersets.py:174 -#: netbox/users/forms/filtersets.py:84 netbox/users/forms/filtersets.py:125 -#: netbox/users/forms/model_forms.py:155 netbox/users/forms/model_forms.py:192 -#: netbox/users/tables.py:19 +#: core/forms/filtersets.py:126 core/forms/filtersets.py:155 +#: dcim/forms/bulk_edit.py:456 dcim/forms/filtersets.py:418 +#: dcim/forms/filtersets.py:462 dcim/forms/model_forms.py:316 +#: extras/forms/filtersets.py:456 extras/forms/filtersets.py:475 +#: extras/tables/tables.py:302 extras/tables/tables.py:342 +#: templates/core/objectchange.html:36 templates/dcim/rackreservation.html:58 +#: templates/extras/savedfilter.html:21 templates/inc/user_menu.html:33 +#: templates/users/token.html:21 templates/users/user.html:6 +#: templates/users/user.html:14 users/filtersets.py:107 +#: users/filtersets.py:174 users/forms/filtersets.py:84 +#: users/forms/filtersets.py:125 users/forms/model_forms.py:155 +#: users/forms/model_forms.py:192 users/tables.py:19 msgid "User" msgstr "Пользователь" -#: netbox/core/forms/filtersets.py:134 netbox/core/tables/change_logging.py:15 -#: netbox/extras/tables/tables.py:609 netbox/extras/tables/tables.py:646 -#: netbox/templates/core/objectchange.html:32 +#: core/forms/filtersets.py:134 core/tables/change_logging.py:15 +#: extras/tables/tables.py:609 extras/tables/tables.py:646 +#: templates/core/objectchange.html:32 msgid "Time" msgstr "Время" -#: netbox/core/forms/filtersets.py:139 netbox/extras/forms/filtersets.py:445 +#: core/forms/filtersets.py:139 extras/forms/filtersets.py:445 msgid "After" msgstr "После" -#: netbox/core/forms/filtersets.py:144 netbox/extras/forms/filtersets.py:450 +#: core/forms/filtersets.py:144 extras/forms/filtersets.py:450 msgid "Before" msgstr "До" -#: netbox/core/forms/filtersets.py:148 netbox/core/tables/change_logging.py:29 -#: netbox/extras/forms/model_forms.py:396 -#: netbox/templates/core/objectchange.html:46 -#: netbox/templates/extras/eventrule.html:71 +#: core/forms/filtersets.py:148 core/tables/change_logging.py:29 +#: extras/forms/model_forms.py:396 templates/core/objectchange.html:46 +#: templates/extras/eventrule.html:71 msgid "Action" msgstr "Действие" -#: netbox/core/forms/model_forms.py:54 netbox/core/tables/data.py:46 -#: netbox/templates/core/datafile.html:27 -#: netbox/templates/extras/report/base.html:33 -#: netbox/templates/extras/script/base.html:32 +#: core/forms/model_forms.py:54 core/tables/data.py:46 +#: templates/core/datafile.html:27 templates/extras/report/base.html:33 +#: templates/extras/script/base.html:32 msgid "Source" msgstr "Источник" -#: netbox/core/forms/model_forms.py:58 +#: core/forms/model_forms.py:58 msgid "Backend Parameters" msgstr "Параметры backend" -#: netbox/core/forms/model_forms.py:96 +#: core/forms/model_forms.py:96 msgid "File Upload" msgstr "Загрузка файла" -#: netbox/core/forms/model_forms.py:108 +#: core/forms/model_forms.py:108 msgid "Cannot upload a file and sync from an existing file" msgstr "" "Невозможно загрузить файл и синхронизировать его с существующим файлом" -#: netbox/core/forms/model_forms.py:110 +#: core/forms/model_forms.py:110 msgid "Must upload a file or select a data file to sync" msgstr "Необходимо загрузить файл или выбрать файл данных для синхронизации" -#: netbox/core/forms/model_forms.py:153 -#: netbox/templates/dcim/rack_elevation_list.html:6 +#: core/forms/model_forms.py:153 templates/dcim/rack_elevation_list.html:6 msgid "Rack Elevations" msgstr "Фасады стоек" -#: netbox/core/forms/model_forms.py:157 netbox/dcim/choices.py:1518 -#: netbox/dcim/forms/bulk_edit.py:969 netbox/dcim/forms/bulk_edit.py:1357 -#: netbox/dcim/forms/bulk_edit.py:1375 netbox/dcim/tables/racks.py:158 -#: netbox/netbox/navigation/menu.py:291 netbox/netbox/navigation/menu.py:295 +#: core/forms/model_forms.py:157 dcim/choices.py:1518 +#: dcim/forms/bulk_edit.py:969 dcim/forms/bulk_edit.py:1357 +#: dcim/forms/bulk_edit.py:1375 dcim/tables/racks.py:158 +#: netbox/navigation/menu.py:291 netbox/navigation/menu.py:295 msgid "Power" msgstr "Мощность" -#: netbox/core/forms/model_forms.py:159 netbox/netbox/navigation/menu.py:154 -#: netbox/templates/core/inc/config_data.html:37 +#: core/forms/model_forms.py:159 netbox/navigation/menu.py:154 +#: templates/core/inc/config_data.html:37 msgid "IPAM" msgstr "IPAM" -#: netbox/core/forms/model_forms.py:160 netbox/netbox/navigation/menu.py:230 -#: netbox/templates/core/inc/config_data.html:50 -#: netbox/vpn/forms/bulk_edit.py:77 netbox/vpn/forms/filtersets.py:43 -#: netbox/vpn/forms/model_forms.py:61 netbox/vpn/forms/model_forms.py:146 +#: core/forms/model_forms.py:160 netbox/navigation/menu.py:230 +#: templates/core/inc/config_data.html:50 vpn/forms/bulk_edit.py:77 +#: vpn/forms/filtersets.py:43 vpn/forms/model_forms.py:61 +#: vpn/forms/model_forms.py:146 msgid "Security" msgstr "Безопасность" -#: netbox/core/forms/model_forms.py:161 -#: netbox/templates/core/inc/config_data.html:59 +#: core/forms/model_forms.py:161 templates/core/inc/config_data.html:59 msgid "Banners" msgstr "Баннеры" -#: netbox/core/forms/model_forms.py:162 -#: netbox/templates/core/inc/config_data.html:80 +#: core/forms/model_forms.py:162 templates/core/inc/config_data.html:80 msgid "Pagination" msgstr "Разбивка на страницы" -#: netbox/core/forms/model_forms.py:163 netbox/extras/forms/bulk_edit.py:92 -#: netbox/extras/forms/filtersets.py:47 netbox/extras/forms/model_forms.py:116 -#: netbox/extras/forms/model_forms.py:129 -#: netbox/templates/core/inc/config_data.html:93 +#: core/forms/model_forms.py:163 extras/forms/bulk_edit.py:92 +#: extras/forms/filtersets.py:47 extras/forms/model_forms.py:116 +#: extras/forms/model_forms.py:129 templates/core/inc/config_data.html:93 msgid "Validation" msgstr "Валидация" -#: netbox/core/forms/model_forms.py:164 -#: netbox/templates/account/preferences.html:6 +#: core/forms/model_forms.py:164 templates/account/preferences.html:6 msgid "User Preferences" msgstr "Пользовательские настройки" -#: netbox/core/forms/model_forms.py:167 netbox/dcim/forms/filtersets.py:732 -#: netbox/templates/core/inc/config_data.html:127 -#: netbox/users/forms/model_forms.py:64 +#: core/forms/model_forms.py:167 dcim/forms/filtersets.py:732 +#: templates/core/inc/config_data.html:127 users/forms/model_forms.py:64 msgid "Miscellaneous" msgstr "Разное" -#: netbox/core/forms/model_forms.py:169 +#: core/forms/model_forms.py:169 msgid "Config Revision" msgstr "Ревизия конфигурации" -#: netbox/core/forms/model_forms.py:208 +#: core/forms/model_forms.py:208 msgid "This parameter has been defined statically and cannot be modified." msgstr "Этот параметр определен статически и не может быть изменен." -#: netbox/core/forms/model_forms.py:216 +#: core/forms/model_forms.py:216 #, python-brace-format msgid "Current value: {value}" msgstr "Текущее значение: {value}" -#: netbox/core/forms/model_forms.py:218 +#: core/forms/model_forms.py:218 msgid " (default)" msgstr " (по умолчанию)" -#: netbox/core/models/change_logging.py:29 +#: core/models/change_logging.py:29 msgid "time" msgstr "время" -#: netbox/core/models/change_logging.py:42 +#: core/models/change_logging.py:42 msgid "user name" msgstr "имя пользователя" -#: netbox/core/models/change_logging.py:47 +#: core/models/change_logging.py:47 msgid "request ID" msgstr "идентификатор запроса" -#: netbox/core/models/change_logging.py:52 netbox/extras/models/staging.py:69 +#: core/models/change_logging.py:52 extras/models/staging.py:69 msgid "action" msgstr "действие" -#: netbox/core/models/change_logging.py:86 +#: core/models/change_logging.py:86 msgid "pre-change data" msgstr "данные перед изменением" -#: netbox/core/models/change_logging.py:92 +#: core/models/change_logging.py:92 msgid "post-change data" msgstr "данные после изменений" -#: netbox/core/models/change_logging.py:106 +#: core/models/change_logging.py:106 msgid "object change" msgstr "изменение объекта" -#: netbox/core/models/change_logging.py:107 +#: core/models/change_logging.py:107 msgid "object changes" msgstr "изменения объекта" -#: netbox/core/models/change_logging.py:123 +#: core/models/change_logging.py:123 #, python-brace-format msgid "Change logging is not supported for this object type ({type})." msgstr "" "Ведение журнала изменений не поддерживается для этого типа объектов " "({type})." -#: netbox/core/models/config.py:18 netbox/core/models/data.py:266 -#: netbox/core/models/files.py:27 netbox/core/models/jobs.py:49 -#: netbox/extras/models/models.py:730 netbox/extras/models/notifications.py:39 -#: netbox/extras/models/notifications.py:186 -#: netbox/netbox/models/features.py:53 netbox/users/models/tokens.py:32 +#: core/models/config.py:18 core/models/data.py:266 core/models/files.py:27 +#: core/models/jobs.py:49 extras/models/models.py:730 +#: extras/models/notifications.py:39 extras/models/notifications.py:186 +#: netbox/models/features.py:53 users/models/tokens.py:32 msgid "created" msgstr "создан(а)" -#: netbox/core/models/config.py:22 +#: core/models/config.py:22 msgid "comment" msgstr "комментарий" -#: netbox/core/models/config.py:29 +#: core/models/config.py:29 msgid "configuration data" msgstr "конфигурационные данные" -#: netbox/core/models/config.py:36 +#: core/models/config.py:36 msgid "config revision" msgstr "ревизия конфигурации" -#: netbox/core/models/config.py:37 +#: core/models/config.py:37 msgid "config revisions" msgstr "ревизии конфигураций" -#: netbox/core/models/config.py:41 +#: core/models/config.py:41 msgid "Default configuration" msgstr "Конфигурация по умолчанию" -#: netbox/core/models/config.py:43 +#: core/models/config.py:43 msgid "Current configuration" msgstr "Текущая конфигурация" -#: netbox/core/models/config.py:44 +#: core/models/config.py:44 #, python-brace-format msgid "Config revision #{id}" msgstr "Ревизия конфигурации #{id}" -#: netbox/core/models/data.py:44 netbox/dcim/models/cables.py:43 -#: netbox/dcim/models/device_component_templates.py:203 -#: netbox/dcim/models/device_component_templates.py:237 -#: netbox/dcim/models/device_component_templates.py:272 -#: netbox/dcim/models/device_component_templates.py:334 -#: netbox/dcim/models/device_component_templates.py:413 -#: netbox/dcim/models/device_component_templates.py:512 -#: netbox/dcim/models/device_component_templates.py:612 -#: netbox/dcim/models/device_components.py:283 -#: netbox/dcim/models/device_components.py:312 -#: netbox/dcim/models/device_components.py:345 -#: netbox/dcim/models/device_components.py:463 -#: netbox/dcim/models/device_components.py:605 -#: netbox/dcim/models/device_components.py:970 -#: netbox/dcim/models/device_components.py:1044 -#: netbox/dcim/models/power.py:102 netbox/extras/models/customfields.py:78 -#: netbox/extras/models/search.py:41 -#: netbox/virtualization/models/clusters.py:61 netbox/vpn/models/l2vpn.py:32 +#: core/models/data.py:44 dcim/models/cables.py:43 +#: dcim/models/device_component_templates.py:203 +#: dcim/models/device_component_templates.py:237 +#: dcim/models/device_component_templates.py:272 +#: dcim/models/device_component_templates.py:334 +#: dcim/models/device_component_templates.py:413 +#: dcim/models/device_component_templates.py:512 +#: dcim/models/device_component_templates.py:612 +#: dcim/models/device_components.py:283 dcim/models/device_components.py:312 +#: dcim/models/device_components.py:345 dcim/models/device_components.py:463 +#: dcim/models/device_components.py:605 dcim/models/device_components.py:970 +#: dcim/models/device_components.py:1044 dcim/models/power.py:102 +#: extras/models/customfields.py:78 extras/models/search.py:41 +#: virtualization/models/clusters.py:61 vpn/models/l2vpn.py:32 msgid "type" msgstr "тип" -#: netbox/core/models/data.py:49 netbox/extras/choices.py:37 -#: netbox/extras/models/models.py:164 netbox/extras/tables/tables.py:656 -#: netbox/templates/core/datasource.html:58 -#: netbox/templates/core/plugin.html:65 +#: core/models/data.py:49 extras/choices.py:37 extras/models/models.py:164 +#: extras/tables/tables.py:656 templates/core/datasource.html:58 +#: templates/core/plugin.html:66 msgid "URL" msgstr "URL" -#: netbox/core/models/data.py:59 -#: netbox/dcim/models/device_component_templates.py:418 -#: netbox/dcim/models/device_components.py:512 -#: netbox/extras/models/models.py:70 netbox/extras/models/models.py:301 -#: netbox/extras/models/models.py:526 netbox/users/models/permissions.py:29 +#: core/models/data.py:59 dcim/models/device_component_templates.py:418 +#: dcim/models/device_components.py:512 extras/models/models.py:70 +#: extras/models/models.py:301 extras/models/models.py:526 +#: users/models/permissions.py:29 msgid "enabled" msgstr "включен" -#: netbox/core/models/data.py:63 +#: core/models/data.py:63 msgid "ignore rules" msgstr "правила исключения" -#: netbox/core/models/data.py:65 +#: core/models/data.py:65 msgid "Patterns (one per line) matching files to ignore when syncing" msgstr "" "Шаблоны (по одному в строке), соответствующие файлам, которые следует " "игнорировать при синхронизации" -#: netbox/core/models/data.py:68 netbox/extras/models/models.py:534 +#: core/models/data.py:68 extras/models/models.py:534 msgid "parameters" msgstr "параметры" -#: netbox/core/models/data.py:73 +#: core/models/data.py:73 msgid "last synced" msgstr "время последней синхронизации" -#: netbox/core/models/data.py:81 +#: core/models/data.py:81 msgid "data source" msgstr "источник данных" -#: netbox/core/models/data.py:82 +#: core/models/data.py:82 msgid "data sources" msgstr "источники данных" -#: netbox/core/models/data.py:122 +#: core/models/data.py:122 #, python-brace-format msgid "Unknown backend type: {type}" msgstr "Неизвестный тип backend: {type}" -#: netbox/core/models/data.py:164 +#: core/models/data.py:164 msgid "Cannot initiate sync; syncing already in progress." msgstr "Невозможно запустить синхронизацию; синхронизация уже выполняется." -#: netbox/core/models/data.py:177 +#: core/models/data.py:177 msgid "" "There was an error initializing the backend. A dependency needs to be " "installed: " @@ -2171,1284 +1902,1222 @@ msgstr "" "Произошла ошибка при инициализации бэкэнда. Необходимо установить " "зависимость: " -#: netbox/core/models/data.py:270 netbox/core/models/files.py:31 -#: netbox/netbox/models/features.py:59 +#: core/models/data.py:270 core/models/files.py:31 +#: netbox/models/features.py:59 msgid "last updated" msgstr "последнее обновление" -#: netbox/core/models/data.py:280 netbox/dcim/models/cables.py:444 +#: core/models/data.py:280 dcim/models/cables.py:444 msgid "path" msgstr "путь" -#: netbox/core/models/data.py:283 +#: core/models/data.py:283 msgid "File path relative to the data source's root" msgstr "Путь к файлу относительно корня источника данных" -#: netbox/core/models/data.py:287 netbox/ipam/models/ip.py:503 +#: core/models/data.py:287 ipam/models/ip.py:503 msgid "size" msgstr "размер" -#: netbox/core/models/data.py:290 +#: core/models/data.py:290 msgid "hash" msgstr "хэш" -#: netbox/core/models/data.py:294 +#: core/models/data.py:294 msgid "Length must be 64 hexadecimal characters." msgstr "Длина должна быть 64 шестнадцатеричных символа." -#: netbox/core/models/data.py:296 +#: core/models/data.py:296 msgid "SHA256 hash of the file data" msgstr "SHA256 хэш данных файла" -#: netbox/core/models/data.py:313 +#: core/models/data.py:313 msgid "data file" msgstr "файл данных" -#: netbox/core/models/data.py:314 +#: core/models/data.py:314 msgid "data files" msgstr "файлы данных" -#: netbox/core/models/data.py:401 +#: core/models/data.py:401 msgid "auto sync record" msgstr "автоматическая синхронизация записи" -#: netbox/core/models/data.py:402 +#: core/models/data.py:402 msgid "auto sync records" msgstr "автоматическая синхронизация записей" -#: netbox/core/models/files.py:37 +#: core/models/files.py:37 msgid "file root" msgstr "корень файла" -#: netbox/core/models/files.py:42 +#: core/models/files.py:42 msgid "file path" msgstr "путь к файлу" -#: netbox/core/models/files.py:44 +#: core/models/files.py:44 msgid "File path relative to the designated root path" msgstr "Путь к файлу относительно указанного корневого пути" -#: netbox/core/models/files.py:61 +#: core/models/files.py:61 msgid "managed file" msgstr "Настраиваемый файл" -#: netbox/core/models/files.py:62 +#: core/models/files.py:62 msgid "managed files" msgstr "Настраиваемые файлы" -#: netbox/core/models/jobs.py:53 +#: core/models/jobs.py:53 msgid "scheduled" msgstr "по расписанию" -#: netbox/core/models/jobs.py:58 +#: core/models/jobs.py:58 msgid "interval" msgstr "интервал" -#: netbox/core/models/jobs.py:64 +#: core/models/jobs.py:64 msgid "Recurrence interval (in minutes)" msgstr "Интервал повторения (в минутах)" -#: netbox/core/models/jobs.py:67 +#: core/models/jobs.py:67 msgid "started" msgstr "начало" -#: netbox/core/models/jobs.py:72 +#: core/models/jobs.py:72 msgid "completed" msgstr "завершено" -#: netbox/core/models/jobs.py:90 netbox/extras/models/models.py:101 -#: netbox/extras/models/staging.py:87 +#: core/models/jobs.py:90 extras/models/models.py:101 +#: extras/models/staging.py:87 msgid "data" msgstr "данные" -#: netbox/core/models/jobs.py:95 +#: core/models/jobs.py:95 msgid "error" msgstr "ошибка" -#: netbox/core/models/jobs.py:100 +#: core/models/jobs.py:100 msgid "job ID" msgstr "идентификатор задачи" -#: netbox/core/models/jobs.py:111 +#: core/models/jobs.py:111 msgid "job" msgstr "задача" -#: netbox/core/models/jobs.py:112 +#: core/models/jobs.py:112 msgid "jobs" msgstr " задачи" -#: netbox/core/models/jobs.py:135 +#: core/models/jobs.py:135 #, python-brace-format msgid "Jobs cannot be assigned to this object type ({type})." msgstr "Нельзя присвоить задачи этому типу объектов ({type})." -#: netbox/core/models/jobs.py:185 +#: core/models/jobs.py:185 #, python-brace-format msgid "Invalid status for job termination. Choices are: {choices}" msgstr "" "Неверный статус для завершения задачи. Возможны следующие варианты: " "{choices}" -#: netbox/core/models/jobs.py:216 +#: core/models/jobs.py:216 msgid "" "enqueue() cannot be called with values for both schedule_at and immediate." msgstr "Невозможно вызвать enqueue() со значениями schedule_at и immediate." -#: netbox/core/signals.py:126 +#: core/signals.py:126 #, python-brace-format msgid "Deletion is prevented by a protection rule: {message}" msgstr "Удаление предотвращается правилом защиты: {message}" -#: netbox/core/tables/change_logging.py:25 -#: netbox/templates/account/profile.html:19 -#: netbox/templates/users/user.html:21 +#: core/tables/change_logging.py:25 templates/account/profile.html:19 +#: templates/users/user.html:21 msgid "Full Name" msgstr "Полное имя" -#: netbox/core/tables/change_logging.py:37 netbox/core/tables/jobs.py:21 -#: netbox/extras/choices.py:41 netbox/extras/tables/tables.py:279 -#: netbox/extras/tables/tables.py:297 netbox/extras/tables/tables.py:329 -#: netbox/extras/tables/tables.py:409 netbox/extras/tables/tables.py:470 -#: netbox/extras/tables/tables.py:576 netbox/extras/tables/tables.py:616 -#: netbox/extras/tables/tables.py:653 netbox/netbox/tables/tables.py:244 -#: netbox/templates/core/objectchange.html:58 -#: netbox/templates/extras/eventrule.html:78 -#: netbox/templates/extras/journalentry.html:18 -#: netbox/tenancy/tables/contacts.py:93 netbox/vpn/tables/l2vpn.py:64 +#: core/tables/change_logging.py:37 core/tables/jobs.py:21 +#: extras/choices.py:41 extras/tables/tables.py:279 +#: extras/tables/tables.py:297 extras/tables/tables.py:329 +#: extras/tables/tables.py:409 extras/tables/tables.py:470 +#: extras/tables/tables.py:576 extras/tables/tables.py:616 +#: extras/tables/tables.py:653 netbox/tables/tables.py:244 +#: templates/core/objectchange.html:58 templates/extras/eventrule.html:78 +#: templates/extras/journalentry.html:18 tenancy/tables/contacts.py:93 +#: vpn/tables/l2vpn.py:64 msgid "Object" msgstr "Объект" -#: netbox/core/tables/change_logging.py:42 -#: netbox/templates/core/objectchange.html:68 +#: core/tables/change_logging.py:42 templates/core/objectchange.html:68 msgid "Request ID" msgstr "Идентификатор запроса" -#: netbox/core/tables/config.py:21 netbox/users/forms/filtersets.py:44 -#: netbox/users/tables.py:39 +#: core/tables/config.py:21 users/forms/filtersets.py:44 users/tables.py:39 msgid "Is Active" msgstr "Активен" -#: netbox/core/tables/data.py:50 netbox/templates/core/datafile.html:31 +#: core/tables/data.py:50 templates/core/datafile.html:31 msgid "Path" msgstr "Путь" -#: netbox/core/tables/data.py:54 -#: netbox/templates/extras/inc/result_pending.html:7 +#: core/tables/data.py:54 templates/extras/inc/result_pending.html:7 msgid "Last updated" msgstr "Последнее обновление" -#: netbox/core/tables/jobs.py:10 netbox/core/tables/tasks.py:76 -#: netbox/dcim/tables/devicetypes.py:164 netbox/extras/tables/tables.py:216 -#: netbox/extras/tables/tables.py:460 netbox/netbox/tables/tables.py:189 -#: netbox/templates/dcim/virtualchassis_edit.html:52 -#: netbox/utilities/forms/forms.py:73 -#: netbox/wireless/tables/wirelesslink.py:17 +#: core/tables/jobs.py:10 core/tables/tasks.py:76 +#: dcim/tables/devicetypes.py:164 extras/tables/tables.py:216 +#: extras/tables/tables.py:460 netbox/tables/tables.py:189 +#: templates/dcim/virtualchassis_edit.html:52 utilities/forms/forms.py:73 +#: wireless/tables/wirelesslink.py:17 msgid "ID" msgstr "ID" -#: netbox/core/tables/jobs.py:35 +#: core/tables/jobs.py:35 msgid "Interval" msgstr "Интервал" -#: netbox/core/tables/plugins.py:14 netbox/templates/vpn/ipsecprofile.html:44 -#: netbox/vpn/forms/bulk_edit.py:141 netbox/vpn/forms/bulk_import.py:172 -#: netbox/vpn/tables/crypto.py:61 +#: core/tables/plugins.py:14 templates/vpn/ipsecprofile.html:44 +#: vpn/forms/bulk_edit.py:141 vpn/forms/bulk_import.py:172 +#: vpn/tables/crypto.py:61 msgid "Version" msgstr "Версия" -#: netbox/core/tables/plugins.py:19 netbox/templates/core/datafile.html:38 +#: core/tables/plugins.py:19 templates/core/datafile.html:38 msgid "Last Updated" msgstr "Последнее обновление" -#: netbox/core/tables/plugins.py:23 +#: core/tables/plugins.py:23 msgid "Minimum NetBox Version" msgstr "Минимальная версия NetBox" -#: netbox/core/tables/plugins.py:27 +#: core/tables/plugins.py:27 msgid "Maximum NetBox Version" msgstr "Максимальная версия NetBox" -#: netbox/core/tables/plugins.py:31 netbox/core/tables/plugins.py:74 +#: core/tables/plugins.py:31 core/tables/plugins.py:74 msgid "No plugin data found" msgstr "Данные плагина не найдены" -#: netbox/core/tables/plugins.py:48 netbox/templates/core/plugin.html:61 +#: core/tables/plugins.py:48 templates/core/plugin.html:62 msgid "Author" msgstr "Автор" -#: netbox/core/tables/plugins.py:54 +#: core/tables/plugins.py:54 msgid "Installed" msgstr "Установлен" -#: netbox/core/tables/plugins.py:57 netbox/templates/core/plugin.html:83 +#: core/tables/plugins.py:57 templates/core/plugin.html:84 msgid "Certified" msgstr "Сертифицирован" -#: netbox/core/tables/plugins.py:60 +#: core/tables/plugins.py:60 msgid "Published" msgstr "Опубликовано" -#: netbox/core/tables/plugins.py:66 +#: core/tables/plugins.py:66 msgid "Installed Version" msgstr "Установленная версия" -#: netbox/core/tables/plugins.py:70 +#: core/tables/plugins.py:70 msgid "Latest Version" msgstr "Последняя версия" -#: netbox/core/tables/tasks.py:18 +#: core/tables/tasks.py:18 msgid "Oldest Task" msgstr "Самая старая задача" -#: netbox/core/tables/tasks.py:42 netbox/templates/core/rq_worker_list.html:39 +#: core/tables/tasks.py:42 templates/core/rq_worker_list.html:39 msgid "Workers" msgstr "Рабочие процессы" -#: netbox/core/tables/tasks.py:46 netbox/vpn/tables/tunnels.py:88 +#: core/tables/tasks.py:46 vpn/tables/tunnels.py:88 msgid "Host" msgstr "Хост" -#: netbox/core/tables/tasks.py:50 netbox/ipam/forms/filtersets.py:535 +#: core/tables/tasks.py:50 ipam/forms/filtersets.py:535 msgid "Port" msgstr "Порт" -#: netbox/core/tables/tasks.py:54 +#: core/tables/tasks.py:54 msgid "DB" msgstr "БАЗА ДАННЫХ" -#: netbox/core/tables/tasks.py:58 +#: core/tables/tasks.py:58 msgid "Scheduler PID" msgstr "PID планировщика" -#: netbox/core/tables/tasks.py:62 +#: core/tables/tasks.py:62 msgid "No queues found" msgstr "Очереди не найдены" -#: netbox/core/tables/tasks.py:82 +#: core/tables/tasks.py:82 msgid "Enqueued" msgstr "В очереди" -#: netbox/core/tables/tasks.py:85 +#: core/tables/tasks.py:85 msgid "Ended" msgstr "Закончено" -#: netbox/core/tables/tasks.py:93 netbox/templates/core/rq_task.html:85 +#: core/tables/tasks.py:93 templates/core/rq_task.html:85 msgid "Callable" msgstr "Вызываемый" -#: netbox/core/tables/tasks.py:97 +#: core/tables/tasks.py:97 msgid "No tasks found" msgstr "Задач не найдено" -#: netbox/core/tables/tasks.py:118 netbox/templates/core/rq_worker.html:47 +#: core/tables/tasks.py:118 templates/core/rq_worker.html:47 msgid "State" msgstr "Состояние" -#: netbox/core/tables/tasks.py:121 netbox/templates/core/rq_worker.html:51 +#: core/tables/tasks.py:121 templates/core/rq_worker.html:51 msgid "Birth" msgstr "Рождение" -#: netbox/core/tables/tasks.py:124 netbox/templates/core/rq_worker.html:59 +#: core/tables/tasks.py:124 templates/core/rq_worker.html:59 msgid "PID" msgstr "ПІД" -#: netbox/core/tables/tasks.py:128 +#: core/tables/tasks.py:128 msgid "No workers found" msgstr "Рабочие процессы не найдены" -#: netbox/core/views.py:90 +#: core/views.py:90 #, python-brace-format msgid "Queued job #{id} to sync {datasource}" msgstr "Задача #{id} для синхронизации {datasource} добавлена в очередь" -#: netbox/core/views.py:319 +#: core/views.py:319 #, python-brace-format msgid "Restored configuration revision #{id}" msgstr "Ревизия конфигурации #{id} восстановлена" -#: netbox/core/views.py:412 netbox/core/views.py:455 netbox/core/views.py:531 +#: core/views.py:412 core/views.py:455 core/views.py:531 #, python-brace-format msgid "Job {job_id} not found" msgstr "Задача {job_id} не найдена" -#: netbox/core/views.py:463 +#: core/views.py:463 #, python-brace-format msgid "Job {id} has been deleted." msgstr "Задача {id} была удалена." -#: netbox/core/views.py:465 +#: core/views.py:465 #, python-brace-format msgid "Error deleting job {id}: {error}" msgstr "Ошибка при удалении задачи {id}: {error}" -#: netbox/core/views.py:478 netbox/core/views.py:496 +#: core/views.py:478 core/views.py:496 #, python-brace-format msgid "Job {id} not found." msgstr "Задача {id} не найдена." -#: netbox/core/views.py:484 +#: core/views.py:484 #, python-brace-format msgid "Job {id} has been re-enqueued." msgstr "вЗадача {id} была повторно добавлена в очередь." -#: netbox/core/views.py:519 +#: core/views.py:519 #, python-brace-format msgid "Job {id} has been enqueued." msgstr "Задача {id} добавлена в очередь." -#: netbox/core/views.py:538 +#: core/views.py:538 #, python-brace-format msgid "Job {id} has been stopped." msgstr "Задача {id} остановлена." -#: netbox/core/views.py:540 +#: core/views.py:540 #, python-brace-format msgid "Failed to stop job {id}" msgstr "Не удалось остановить задачу {id}" -#: netbox/core/views.py:678 +#: core/views.py:678 msgid "Plugins catalog could not be loaded" msgstr "Не удалось загрузить каталог плагинов" -#: netbox/core/views.py:712 +#: core/views.py:712 #, python-brace-format msgid "Plugin {name} not found" msgstr "Плагин {name} не найден" -#: netbox/dcim/api/serializers_/devices.py:49 -#: netbox/dcim/api/serializers_/devicetypes.py:25 +#: dcim/api/serializers_/devices.py:49 dcim/api/serializers_/devicetypes.py:25 msgid "Position (U)" msgstr "Позиция (U)" -#: netbox/dcim/api/serializers_/racks.py:112 -#: netbox/templates/dcim/rack.html:28 +#: dcim/api/serializers_/racks.py:112 templates/dcim/rack.html:28 msgid "Facility ID" msgstr "Идентификатор объекта" -#: netbox/dcim/choices.py:21 netbox/virtualization/choices.py:21 +#: dcim/choices.py:21 virtualization/choices.py:21 msgid "Staging" msgstr "Подготовка к развертыванию" -#: netbox/dcim/choices.py:23 netbox/dcim/choices.py:189 -#: netbox/dcim/choices.py:240 netbox/dcim/choices.py:1531 -#: netbox/virtualization/choices.py:23 netbox/virtualization/choices.py:48 +#: dcim/choices.py:23 dcim/choices.py:189 dcim/choices.py:240 +#: dcim/choices.py:1531 virtualization/choices.py:23 +#: virtualization/choices.py:48 msgid "Decommissioning" msgstr "Вывод из эксплуатации" -#: netbox/dcim/choices.py:24 +#: dcim/choices.py:24 msgid "Retired" msgstr " Вывод из эксплуатации" -#: netbox/dcim/choices.py:65 +#: dcim/choices.py:65 msgid "2-post frame" msgstr "2-стоечная рама" -#: netbox/dcim/choices.py:66 +#: dcim/choices.py:66 msgid "4-post frame" msgstr "4-стоечная рама" -#: netbox/dcim/choices.py:67 +#: dcim/choices.py:67 msgid "4-post cabinet" msgstr "4-стоечный шкаф" -#: netbox/dcim/choices.py:68 +#: dcim/choices.py:68 msgid "Wall-mounted frame" msgstr "Настенная рама" -#: netbox/dcim/choices.py:69 +#: dcim/choices.py:69 msgid "Wall-mounted frame (vertical)" msgstr "Настенная рама (вертикальная)" -#: netbox/dcim/choices.py:70 +#: dcim/choices.py:70 msgid "Wall-mounted cabinet" msgstr "Настенный шкаф" -#: netbox/dcim/choices.py:71 +#: dcim/choices.py:71 msgid "Wall-mounted cabinet (vertical)" msgstr "Настенный шкаф (вертикальный)" -#: netbox/dcim/choices.py:83 netbox/dcim/choices.py:84 -#: netbox/dcim/choices.py:85 netbox/dcim/choices.py:86 +#: dcim/choices.py:83 dcim/choices.py:84 dcim/choices.py:85 dcim/choices.py:86 #, python-brace-format msgid "{n} inches" msgstr "{n} дюймов" -#: netbox/dcim/choices.py:100 netbox/ipam/choices.py:32 -#: netbox/ipam/choices.py:50 netbox/ipam/choices.py:70 -#: netbox/ipam/choices.py:155 netbox/wireless/choices.py:26 +#: dcim/choices.py:100 ipam/choices.py:32 ipam/choices.py:50 +#: ipam/choices.py:70 ipam/choices.py:155 wireless/choices.py:26 msgid "Reserved" msgstr "Зарезервировано" -#: netbox/dcim/choices.py:101 netbox/templates/dcim/device.html:259 +#: dcim/choices.py:101 templates/dcim/device.html:259 msgid "Available" msgstr "Доступно" -#: netbox/dcim/choices.py:104 netbox/ipam/choices.py:33 -#: netbox/ipam/choices.py:51 netbox/ipam/choices.py:71 -#: netbox/ipam/choices.py:156 netbox/wireless/choices.py:28 +#: dcim/choices.py:104 ipam/choices.py:33 ipam/choices.py:51 +#: ipam/choices.py:71 ipam/choices.py:156 wireless/choices.py:28 msgid "Deprecated" msgstr "Выведенный(-ая) из использования" -#: netbox/dcim/choices.py:114 -#: netbox/templates/dcim/inc/panels/racktype_dimensions.html:41 +#: dcim/choices.py:114 templates/dcim/inc/panels/racktype_dimensions.html:41 msgid "Millimeters" msgstr "Миллиметры" -#: netbox/dcim/choices.py:115 netbox/dcim/choices.py:1553 +#: dcim/choices.py:115 dcim/choices.py:1553 msgid "Inches" msgstr "Дюймы" -#: netbox/dcim/choices.py:136 netbox/dcim/choices.py:207 -#: netbox/dcim/choices.py:254 +#: dcim/choices.py:136 dcim/choices.py:207 dcim/choices.py:254 msgid "Front to rear" msgstr "Спереди назад" -#: netbox/dcim/choices.py:137 netbox/dcim/choices.py:208 -#: netbox/dcim/choices.py:255 +#: dcim/choices.py:137 dcim/choices.py:208 dcim/choices.py:255 msgid "Rear to front" msgstr "Сзади вперед" -#: netbox/dcim/choices.py:151 netbox/dcim/forms/bulk_edit.py:68 -#: netbox/dcim/forms/bulk_edit.py:87 netbox/dcim/forms/bulk_edit.py:173 -#: netbox/dcim/forms/bulk_edit.py:1405 netbox/dcim/forms/bulk_import.py:60 -#: netbox/dcim/forms/bulk_import.py:74 netbox/dcim/forms/bulk_import.py:137 -#: netbox/dcim/forms/bulk_import.py:566 netbox/dcim/forms/bulk_import.py:833 -#: netbox/dcim/forms/bulk_import.py:1088 netbox/dcim/forms/filtersets.py:234 -#: netbox/dcim/forms/model_forms.py:74 netbox/dcim/forms/model_forms.py:93 -#: netbox/dcim/forms/model_forms.py:170 netbox/dcim/forms/model_forms.py:1062 -#: netbox/dcim/forms/model_forms.py:1502 -#: netbox/dcim/forms/object_import.py:176 netbox/dcim/tables/devices.py:656 -#: netbox/dcim/tables/devices.py:869 netbox/dcim/tables/devices.py:954 -#: netbox/extras/tables/tables.py:223 netbox/ipam/tables/fhrp.py:59 -#: netbox/ipam/tables/ip.py:378 netbox/ipam/tables/services.py:44 -#: netbox/templates/dcim/interface.html:102 -#: netbox/templates/dcim/interface.html:309 -#: netbox/templates/dcim/location.html:41 netbox/templates/dcim/region.html:37 -#: netbox/templates/dcim/sitegroup.html:37 -#: netbox/templates/ipam/service.html:28 -#: netbox/templates/tenancy/contactgroup.html:29 -#: netbox/templates/tenancy/tenantgroup.html:37 -#: netbox/templates/virtualization/vminterface.html:39 -#: netbox/templates/wireless/wirelesslangroup.html:37 -#: netbox/tenancy/forms/bulk_edit.py:27 netbox/tenancy/forms/bulk_edit.py:61 -#: netbox/tenancy/forms/bulk_import.py:24 -#: netbox/tenancy/forms/bulk_import.py:58 -#: netbox/tenancy/forms/model_forms.py:25 -#: netbox/tenancy/forms/model_forms.py:68 -#: netbox/virtualization/forms/bulk_edit.py:207 -#: netbox/virtualization/forms/bulk_import.py:151 -#: netbox/virtualization/tables/virtualmachines.py:162 -#: netbox/wireless/forms/bulk_edit.py:24 -#: netbox/wireless/forms/bulk_import.py:21 -#: netbox/wireless/forms/model_forms.py:21 +#: dcim/choices.py:151 dcim/forms/bulk_edit.py:68 dcim/forms/bulk_edit.py:87 +#: dcim/forms/bulk_edit.py:173 dcim/forms/bulk_edit.py:1405 +#: dcim/forms/bulk_import.py:60 dcim/forms/bulk_import.py:74 +#: dcim/forms/bulk_import.py:137 dcim/forms/bulk_import.py:566 +#: dcim/forms/bulk_import.py:833 dcim/forms/bulk_import.py:1088 +#: dcim/forms/filtersets.py:234 dcim/forms/model_forms.py:74 +#: dcim/forms/model_forms.py:93 dcim/forms/model_forms.py:170 +#: dcim/forms/model_forms.py:1062 dcim/forms/model_forms.py:1502 +#: dcim/forms/object_import.py:176 dcim/tables/devices.py:656 +#: dcim/tables/devices.py:869 dcim/tables/devices.py:954 +#: extras/tables/tables.py:223 ipam/tables/fhrp.py:59 ipam/tables/ip.py:378 +#: ipam/tables/services.py:44 templates/dcim/interface.html:102 +#: templates/dcim/interface.html:309 templates/dcim/location.html:41 +#: templates/dcim/region.html:37 templates/dcim/sitegroup.html:37 +#: templates/ipam/service.html:28 templates/tenancy/contactgroup.html:29 +#: templates/tenancy/tenantgroup.html:37 +#: templates/virtualization/vminterface.html:39 +#: templates/wireless/wirelesslangroup.html:37 tenancy/forms/bulk_edit.py:27 +#: tenancy/forms/bulk_edit.py:61 tenancy/forms/bulk_import.py:24 +#: tenancy/forms/bulk_import.py:58 tenancy/forms/model_forms.py:25 +#: tenancy/forms/model_forms.py:68 virtualization/forms/bulk_edit.py:207 +#: virtualization/forms/bulk_import.py:151 +#: virtualization/tables/virtualmachines.py:162 wireless/forms/bulk_edit.py:24 +#: wireless/forms/bulk_import.py:21 wireless/forms/model_forms.py:21 msgid "Parent" msgstr "Родитель" -#: netbox/dcim/choices.py:152 +#: dcim/choices.py:152 msgid "Child" msgstr "Потомок" -#: netbox/dcim/choices.py:166 netbox/templates/dcim/device.html:340 -#: netbox/templates/dcim/rack.html:133 -#: netbox/templates/dcim/rack_elevation_list.html:20 -#: netbox/templates/dcim/rackreservation.html:76 +#: dcim/choices.py:166 templates/dcim/device.html:340 +#: templates/dcim/rack.html:133 templates/dcim/rack_elevation_list.html:20 +#: templates/dcim/rackreservation.html:76 msgid "Front" msgstr "Вид спереди" -#: netbox/dcim/choices.py:167 netbox/templates/dcim/device.html:346 -#: netbox/templates/dcim/rack.html:139 -#: netbox/templates/dcim/rack_elevation_list.html:21 -#: netbox/templates/dcim/rackreservation.html:82 +#: dcim/choices.py:167 templates/dcim/device.html:346 +#: templates/dcim/rack.html:139 templates/dcim/rack_elevation_list.html:21 +#: templates/dcim/rackreservation.html:82 msgid "Rear" msgstr "Вид сзади" -#: netbox/dcim/choices.py:186 netbox/dcim/choices.py:238 -#: netbox/virtualization/choices.py:46 +#: dcim/choices.py:186 dcim/choices.py:238 virtualization/choices.py:46 msgid "Staged" msgstr "Подготовлен" -#: netbox/dcim/choices.py:188 +#: dcim/choices.py:188 msgid "Inventory" msgstr "Инвентарь" -#: netbox/dcim/choices.py:209 netbox/dcim/choices.py:256 +#: dcim/choices.py:209 dcim/choices.py:256 msgid "Left to right" msgstr "Слева направо" -#: netbox/dcim/choices.py:210 netbox/dcim/choices.py:257 +#: dcim/choices.py:210 dcim/choices.py:257 msgid "Right to left" msgstr "Справа налево" -#: netbox/dcim/choices.py:211 netbox/dcim/choices.py:258 +#: dcim/choices.py:211 dcim/choices.py:258 msgid "Side to rear" msgstr "Бок назад" -#: netbox/dcim/choices.py:212 +#: dcim/choices.py:212 msgid "Rear to side" msgstr "Сзади в сторону" -#: netbox/dcim/choices.py:213 +#: dcim/choices.py:213 msgid "Bottom to top" msgstr "Снизу вверх" -#: netbox/dcim/choices.py:214 +#: dcim/choices.py:214 msgid "Top to bottom" msgstr "Сверху вниз" -#: netbox/dcim/choices.py:215 netbox/dcim/choices.py:259 -#: netbox/dcim/choices.py:1303 +#: dcim/choices.py:215 dcim/choices.py:259 dcim/choices.py:1303 msgid "Passive" msgstr "Пассивный" -#: netbox/dcim/choices.py:216 +#: dcim/choices.py:216 msgid "Mixed" msgstr "Смешанный" -#: netbox/dcim/choices.py:484 netbox/dcim/choices.py:733 +#: dcim/choices.py:484 dcim/choices.py:733 msgid "NEMA (Non-locking)" msgstr "NEMA (не блокирующий)" -#: netbox/dcim/choices.py:506 netbox/dcim/choices.py:755 +#: dcim/choices.py:506 dcim/choices.py:755 msgid "NEMA (Locking)" msgstr "NEMA (блокирующий)" -#: netbox/dcim/choices.py:530 netbox/dcim/choices.py:779 +#: dcim/choices.py:530 dcim/choices.py:779 msgid "California Style" msgstr "Калифорнийский стиль" -#: netbox/dcim/choices.py:538 +#: dcim/choices.py:538 msgid "International/ITA" msgstr "ITA/Международный" -#: netbox/dcim/choices.py:573 netbox/dcim/choices.py:814 +#: dcim/choices.py:573 dcim/choices.py:814 msgid "Proprietary" msgstr "Проприетарный" -#: netbox/dcim/choices.py:581 netbox/dcim/choices.py:824 -#: netbox/dcim/choices.py:1219 netbox/dcim/choices.py:1221 -#: netbox/dcim/choices.py:1447 netbox/dcim/choices.py:1449 -#: netbox/netbox/navigation/menu.py:200 +#: dcim/choices.py:581 dcim/choices.py:824 dcim/choices.py:1219 +#: dcim/choices.py:1221 dcim/choices.py:1447 dcim/choices.py:1449 +#: netbox/navigation/menu.py:200 msgid "Other" msgstr "Другой" -#: netbox/dcim/choices.py:787 +#: dcim/choices.py:787 msgid "ITA/International" msgstr "ITA/Международный" -#: netbox/dcim/choices.py:854 +#: dcim/choices.py:854 msgid "Physical" msgstr "Физический" -#: netbox/dcim/choices.py:855 netbox/dcim/choices.py:1023 +#: dcim/choices.py:855 dcim/choices.py:1023 msgid "Virtual" msgstr "Виртуальный" -#: netbox/dcim/choices.py:856 netbox/dcim/choices.py:1097 -#: netbox/dcim/forms/bulk_edit.py:1515 netbox/dcim/forms/filtersets.py:1330 -#: netbox/dcim/forms/model_forms.py:988 netbox/dcim/forms/model_forms.py:1397 -#: netbox/netbox/navigation/menu.py:140 netbox/netbox/navigation/menu.py:144 -#: netbox/templates/dcim/interface.html:210 +#: dcim/choices.py:856 dcim/choices.py:1097 dcim/forms/bulk_edit.py:1515 +#: dcim/forms/filtersets.py:1330 dcim/forms/model_forms.py:988 +#: dcim/forms/model_forms.py:1397 netbox/navigation/menu.py:140 +#: netbox/navigation/menu.py:144 templates/dcim/interface.html:210 msgid "Wireless" msgstr "Беспроводной" -#: netbox/dcim/choices.py:1021 +#: dcim/choices.py:1021 msgid "Virtual interfaces" msgstr "Виртуальные интерфейсы" -#: netbox/dcim/choices.py:1024 netbox/dcim/forms/bulk_edit.py:1410 -#: netbox/dcim/forms/bulk_import.py:840 netbox/dcim/forms/model_forms.py:974 -#: netbox/dcim/tables/devices.py:660 netbox/templates/dcim/interface.html:106 -#: netbox/templates/virtualization/vminterface.html:43 -#: netbox/virtualization/forms/bulk_edit.py:212 -#: netbox/virtualization/forms/bulk_import.py:158 -#: netbox/virtualization/tables/virtualmachines.py:166 +#: dcim/choices.py:1024 dcim/forms/bulk_edit.py:1410 +#: dcim/forms/bulk_import.py:840 dcim/forms/model_forms.py:974 +#: dcim/tables/devices.py:660 templates/dcim/interface.html:106 +#: templates/virtualization/vminterface.html:43 +#: virtualization/forms/bulk_edit.py:212 +#: virtualization/forms/bulk_import.py:158 +#: virtualization/tables/virtualmachines.py:166 msgid "Bridge" msgstr "Мост" -#: netbox/dcim/choices.py:1025 +#: dcim/choices.py:1025 msgid "Link Aggregation Group (LAG)" msgstr "Группа агрегации линков (LAG)" -#: netbox/dcim/choices.py:1029 +#: dcim/choices.py:1029 msgid "Ethernet (fixed)" msgstr "Ethernet (фиксированный)" -#: netbox/dcim/choices.py:1044 +#: dcim/choices.py:1044 msgid "Ethernet (modular)" msgstr "Ethernet (модульный)" -#: netbox/dcim/choices.py:1081 +#: dcim/choices.py:1081 msgid "Ethernet (backplane)" msgstr "Ethernet (объединительная плата)" -#: netbox/dcim/choices.py:1113 +#: dcim/choices.py:1113 msgid "Cellular" msgstr "Сотовая связь" -#: netbox/dcim/choices.py:1165 netbox/dcim/forms/filtersets.py:383 -#: netbox/dcim/forms/filtersets.py:809 netbox/dcim/forms/filtersets.py:963 -#: netbox/dcim/forms/filtersets.py:1542 -#: netbox/templates/dcim/inventoryitem.html:52 -#: netbox/templates/dcim/virtualchassis_edit.html:54 +#: dcim/choices.py:1165 dcim/forms/filtersets.py:383 +#: dcim/forms/filtersets.py:809 dcim/forms/filtersets.py:963 +#: dcim/forms/filtersets.py:1542 templates/dcim/inventoryitem.html:52 +#: templates/dcim/virtualchassis_edit.html:54 msgid "Serial" msgstr "Серийный" -#: netbox/dcim/choices.py:1180 +#: dcim/choices.py:1180 msgid "Coaxial" msgstr "Коаксиальный" -#: netbox/dcim/choices.py:1200 +#: dcim/choices.py:1200 msgid "Stacking" msgstr "Стекирование" -#: netbox/dcim/choices.py:1250 +#: dcim/choices.py:1250 msgid "Half" msgstr "Полу" -#: netbox/dcim/choices.py:1251 +#: dcim/choices.py:1251 msgid "Full" msgstr "Полный" -#: netbox/dcim/choices.py:1252 netbox/netbox/preferences.py:31 -#: netbox/wireless/choices.py:480 +#: dcim/choices.py:1252 netbox/preferences.py:31 wireless/choices.py:480 msgid "Auto" msgstr "Авто" -#: netbox/dcim/choices.py:1263 +#: dcim/choices.py:1263 msgid "Access" msgstr "Доступ" -#: netbox/dcim/choices.py:1264 netbox/ipam/tables/vlans.py:172 -#: netbox/ipam/tables/vlans.py:217 -#: netbox/templates/dcim/inc/interface_vlans_table.html:7 +#: dcim/choices.py:1264 ipam/tables/vlans.py:172 ipam/tables/vlans.py:217 +#: templates/dcim/inc/interface_vlans_table.html:7 msgid "Tagged" msgstr "Тегированный" -#: netbox/dcim/choices.py:1265 +#: dcim/choices.py:1265 msgid "Tagged (All)" msgstr "Тегированный (все)" -#: netbox/dcim/choices.py:1294 +#: dcim/choices.py:1294 msgid "IEEE Standard" msgstr "Стандарт IEEE" -#: netbox/dcim/choices.py:1305 +#: dcim/choices.py:1305 msgid "Passive 24V (2-pair)" msgstr "Пассивный режим 24 В (2 пары)" -#: netbox/dcim/choices.py:1306 +#: dcim/choices.py:1306 msgid "Passive 24V (4-pair)" msgstr "Пассивное напряжение 24 В (4 пары)" -#: netbox/dcim/choices.py:1307 +#: dcim/choices.py:1307 msgid "Passive 48V (2-pair)" msgstr "Пассивное напряжение 48 В (2 пары)" -#: netbox/dcim/choices.py:1308 +#: dcim/choices.py:1308 msgid "Passive 48V (4-pair)" msgstr "Пассивное напряжение 48 В (4 пары)" -#: netbox/dcim/choices.py:1378 netbox/dcim/choices.py:1488 +#: dcim/choices.py:1378 dcim/choices.py:1488 msgid "Copper" msgstr "Медь" -#: netbox/dcim/choices.py:1401 +#: dcim/choices.py:1401 msgid "Fiber Optic" msgstr "Оптоволоконное" -#: netbox/dcim/choices.py:1434 netbox/dcim/choices.py:1517 +#: dcim/choices.py:1434 dcim/choices.py:1517 msgid "USB" msgstr "USB" -#: netbox/dcim/choices.py:1504 +#: dcim/choices.py:1504 msgid "Fiber" msgstr "Волокно" -#: netbox/dcim/choices.py:1529 netbox/dcim/forms/filtersets.py:1227 +#: dcim/choices.py:1529 dcim/forms/filtersets.py:1227 msgid "Connected" msgstr "Подключено" -#: netbox/dcim/choices.py:1548 netbox/wireless/choices.py:497 +#: dcim/choices.py:1548 wireless/choices.py:497 msgid "Kilometers" msgstr "Километры" -#: netbox/dcim/choices.py:1549 netbox/templates/dcim/cable_trace.html:65 -#: netbox/wireless/choices.py:498 +#: dcim/choices.py:1549 templates/dcim/cable_trace.html:65 +#: wireless/choices.py:498 msgid "Meters" msgstr "Метры" -#: netbox/dcim/choices.py:1550 +#: dcim/choices.py:1550 msgid "Centimeters" msgstr "Сантиметры" -#: netbox/dcim/choices.py:1551 netbox/wireless/choices.py:499 +#: dcim/choices.py:1551 wireless/choices.py:499 msgid "Miles" msgstr "Мили" -#: netbox/dcim/choices.py:1552 netbox/templates/dcim/cable_trace.html:66 -#: netbox/wireless/choices.py:500 +#: dcim/choices.py:1552 templates/dcim/cable_trace.html:66 +#: wireless/choices.py:500 msgid "Feet" msgstr "Футы" -#: netbox/dcim/choices.py:1568 netbox/templates/dcim/device.html:327 -#: netbox/templates/dcim/rack.html:107 +#: dcim/choices.py:1568 templates/dcim/device.html:327 +#: templates/dcim/rack.html:107 msgid "Kilograms" msgstr "Килограммы" -#: netbox/dcim/choices.py:1569 +#: dcim/choices.py:1569 msgid "Grams" msgstr "Граммы" -#: netbox/dcim/choices.py:1570 netbox/templates/dcim/device.html:328 -#: netbox/templates/dcim/rack.html:108 +#: dcim/choices.py:1570 templates/dcim/device.html:328 +#: templates/dcim/rack.html:108 msgid "Pounds" msgstr "Фунты" -#: netbox/dcim/choices.py:1571 +#: dcim/choices.py:1571 msgid "Ounces" msgstr "Унции" -#: netbox/dcim/choices.py:1618 +#: dcim/choices.py:1618 msgid "Redundant" msgstr "Резервный" -#: netbox/dcim/choices.py:1639 +#: dcim/choices.py:1639 msgid "Single phase" msgstr "Однофазный" -#: netbox/dcim/choices.py:1640 +#: dcim/choices.py:1640 msgid "Three-phase" msgstr "Трехфазный" -#: netbox/dcim/fields.py:45 +#: dcim/fields.py:45 #, python-brace-format msgid "Invalid MAC address format: {value}" msgstr "Неверный формат MAC-адреса: {value}" -#: netbox/dcim/fields.py:71 +#: dcim/fields.py:71 #, python-brace-format msgid "Invalid WWN format: {value}" msgstr "Неверный формат WWN: {value}" -#: netbox/dcim/filtersets.py:86 +#: dcim/filtersets.py:86 msgid "Parent region (ID)" msgstr "Родительский регион (ID)" -#: netbox/dcim/filtersets.py:92 +#: dcim/filtersets.py:92 msgid "Parent region (slug)" msgstr "Регион родителя (подстрока)" -#: netbox/dcim/filtersets.py:116 +#: dcim/filtersets.py:116 msgid "Parent site group (ID)" msgstr "Родительская группа сайтов (ID)" -#: netbox/dcim/filtersets.py:122 +#: dcim/filtersets.py:122 msgid "Parent site group (slug)" msgstr "Группа сайтов родителя (подстрока)" -#: netbox/dcim/filtersets.py:164 netbox/extras/filtersets.py:364 -#: netbox/ipam/filtersets.py:841 netbox/ipam/filtersets.py:993 +#: dcim/filtersets.py:164 extras/filtersets.py:364 ipam/filtersets.py:841 +#: ipam/filtersets.py:993 msgid "Group (ID)" msgstr "Группа (ID)" -#: netbox/dcim/filtersets.py:170 +#: dcim/filtersets.py:170 msgid "Group (slug)" msgstr "Группа (подстрока)" -#: netbox/dcim/filtersets.py:176 netbox/dcim/filtersets.py:181 +#: dcim/filtersets.py:176 dcim/filtersets.py:181 msgid "AS (ID)" msgstr "Автономная система (ID)" -#: netbox/dcim/filtersets.py:246 +#: dcim/filtersets.py:246 msgid "Parent location (ID)" msgstr "Родительская локация (ID)" -#: netbox/dcim/filtersets.py:252 +#: dcim/filtersets.py:252 msgid "Parent location (slug)" msgstr "Локация родителя (подстрока)" -#: netbox/dcim/filtersets.py:258 netbox/dcim/filtersets.py:369 -#: netbox/dcim/filtersets.py:490 netbox/dcim/filtersets.py:1057 -#: netbox/dcim/filtersets.py:1404 netbox/dcim/filtersets.py:2182 +#: dcim/filtersets.py:258 dcim/filtersets.py:369 dcim/filtersets.py:490 +#: dcim/filtersets.py:1057 dcim/filtersets.py:1404 dcim/filtersets.py:2182 msgid "Location (ID)" msgstr "Локация (ID)" -#: netbox/dcim/filtersets.py:265 netbox/dcim/filtersets.py:376 -#: netbox/dcim/filtersets.py:497 netbox/dcim/filtersets.py:1410 -#: netbox/extras/filtersets.py:542 +#: dcim/filtersets.py:265 dcim/filtersets.py:376 dcim/filtersets.py:497 +#: dcim/filtersets.py:1410 extras/filtersets.py:542 msgid "Location (slug)" msgstr "Локация (подстрока)" -#: netbox/dcim/filtersets.py:296 netbox/dcim/filtersets.py:381 -#: netbox/dcim/filtersets.py:539 netbox/dcim/filtersets.py:678 -#: netbox/dcim/filtersets.py:882 netbox/dcim/filtersets.py:933 -#: netbox/dcim/filtersets.py:973 netbox/dcim/filtersets.py:1306 -#: netbox/dcim/filtersets.py:1840 +#: dcim/filtersets.py:296 dcim/filtersets.py:381 dcim/filtersets.py:539 +#: dcim/filtersets.py:678 dcim/filtersets.py:882 dcim/filtersets.py:933 +#: dcim/filtersets.py:973 dcim/filtersets.py:1306 dcim/filtersets.py:1840 msgid "Manufacturer (ID)" msgstr "Производитель (ID)" -#: netbox/dcim/filtersets.py:302 netbox/dcim/filtersets.py:387 -#: netbox/dcim/filtersets.py:545 netbox/dcim/filtersets.py:684 -#: netbox/dcim/filtersets.py:888 netbox/dcim/filtersets.py:939 -#: netbox/dcim/filtersets.py:979 netbox/dcim/filtersets.py:1312 -#: netbox/dcim/filtersets.py:1846 +#: dcim/filtersets.py:302 dcim/filtersets.py:387 dcim/filtersets.py:545 +#: dcim/filtersets.py:684 dcim/filtersets.py:888 dcim/filtersets.py:939 +#: dcim/filtersets.py:979 dcim/filtersets.py:1312 dcim/filtersets.py:1846 msgid "Manufacturer (slug)" msgstr "Производитель (подстрока)" -#: netbox/dcim/filtersets.py:393 +#: dcim/filtersets.py:393 msgid "Rack type (slug)" msgstr "Тип стойки (подстрока)" -#: netbox/dcim/filtersets.py:397 +#: dcim/filtersets.py:397 msgid "Rack type (ID)" msgstr "Тип стойки (ID)" -#: netbox/dcim/filtersets.py:411 netbox/dcim/filtersets.py:892 -#: netbox/dcim/filtersets.py:994 netbox/dcim/filtersets.py:1850 -#: netbox/ipam/filtersets.py:381 netbox/ipam/filtersets.py:493 -#: netbox/ipam/filtersets.py:1003 netbox/virtualization/filtersets.py:210 +#: dcim/filtersets.py:411 dcim/filtersets.py:892 dcim/filtersets.py:994 +#: dcim/filtersets.py:1850 ipam/filtersets.py:381 ipam/filtersets.py:493 +#: ipam/filtersets.py:1003 virtualization/filtersets.py:210 msgid "Role (ID)" msgstr "Роль (ID)" -#: netbox/dcim/filtersets.py:417 netbox/dcim/filtersets.py:898 -#: netbox/dcim/filtersets.py:1000 netbox/dcim/filtersets.py:1856 -#: netbox/extras/filtersets.py:558 netbox/ipam/filtersets.py:387 -#: netbox/ipam/filtersets.py:499 netbox/ipam/filtersets.py:1009 -#: netbox/virtualization/filtersets.py:216 +#: dcim/filtersets.py:417 dcim/filtersets.py:898 dcim/filtersets.py:1000 +#: dcim/filtersets.py:1856 extras/filtersets.py:558 ipam/filtersets.py:387 +#: ipam/filtersets.py:499 ipam/filtersets.py:1009 +#: virtualization/filtersets.py:216 msgid "Role (slug)" msgstr "Роль (подстрока)" -#: netbox/dcim/filtersets.py:447 netbox/dcim/filtersets.py:1062 -#: netbox/dcim/filtersets.py:1415 netbox/dcim/filtersets.py:2244 +#: dcim/filtersets.py:447 dcim/filtersets.py:1062 dcim/filtersets.py:1415 +#: dcim/filtersets.py:2244 msgid "Rack (ID)" msgstr "Стойка (ID)" -#: netbox/dcim/filtersets.py:507 netbox/extras/filtersets.py:293 -#: netbox/extras/filtersets.py:337 netbox/extras/filtersets.py:359 -#: netbox/extras/filtersets.py:419 netbox/users/filtersets.py:113 -#: netbox/users/filtersets.py:180 +#: dcim/filtersets.py:507 extras/filtersets.py:293 extras/filtersets.py:337 +#: extras/filtersets.py:359 extras/filtersets.py:419 users/filtersets.py:113 +#: users/filtersets.py:180 msgid "User (name)" msgstr "Пользователь (имя)" -#: netbox/dcim/filtersets.py:549 +#: dcim/filtersets.py:549 msgid "Default platform (ID)" msgstr "Платформа по умолчанию (ID)" -#: netbox/dcim/filtersets.py:555 +#: dcim/filtersets.py:555 msgid "Default platform (slug)" msgstr "Платформа по умолчанию (подстрока)" -#: netbox/dcim/filtersets.py:558 netbox/dcim/forms/filtersets.py:517 +#: dcim/filtersets.py:558 dcim/forms/filtersets.py:517 msgid "Has a front image" msgstr "Имеет фронтальное изображение" -#: netbox/dcim/filtersets.py:562 netbox/dcim/forms/filtersets.py:524 +#: dcim/filtersets.py:562 dcim/forms/filtersets.py:524 msgid "Has a rear image" msgstr "Имеет изображение сзади" -#: netbox/dcim/filtersets.py:567 netbox/dcim/filtersets.py:688 -#: netbox/dcim/filtersets.py:1131 netbox/dcim/forms/filtersets.py:531 -#: netbox/dcim/forms/filtersets.py:627 netbox/dcim/forms/filtersets.py:848 +#: dcim/filtersets.py:567 dcim/filtersets.py:688 dcim/filtersets.py:1131 +#: dcim/forms/filtersets.py:531 dcim/forms/filtersets.py:627 +#: dcim/forms/filtersets.py:848 msgid "Has console ports" msgstr "Имеет консольные порты" -#: netbox/dcim/filtersets.py:571 netbox/dcim/filtersets.py:692 -#: netbox/dcim/filtersets.py:1135 netbox/dcim/forms/filtersets.py:538 -#: netbox/dcim/forms/filtersets.py:634 netbox/dcim/forms/filtersets.py:855 +#: dcim/filtersets.py:571 dcim/filtersets.py:692 dcim/filtersets.py:1135 +#: dcim/forms/filtersets.py:538 dcim/forms/filtersets.py:634 +#: dcim/forms/filtersets.py:855 msgid "Has console server ports" msgstr "Имеет серверные консольные порты" -#: netbox/dcim/filtersets.py:575 netbox/dcim/filtersets.py:696 -#: netbox/dcim/filtersets.py:1139 netbox/dcim/forms/filtersets.py:545 -#: netbox/dcim/forms/filtersets.py:641 netbox/dcim/forms/filtersets.py:862 +#: dcim/filtersets.py:575 dcim/filtersets.py:696 dcim/filtersets.py:1139 +#: dcim/forms/filtersets.py:545 dcim/forms/filtersets.py:641 +#: dcim/forms/filtersets.py:862 msgid "Has power ports" msgstr "Имеет порты питания" -#: netbox/dcim/filtersets.py:579 netbox/dcim/filtersets.py:700 -#: netbox/dcim/filtersets.py:1143 netbox/dcim/forms/filtersets.py:552 -#: netbox/dcim/forms/filtersets.py:648 netbox/dcim/forms/filtersets.py:869 +#: dcim/filtersets.py:579 dcim/filtersets.py:700 dcim/filtersets.py:1143 +#: dcim/forms/filtersets.py:552 dcim/forms/filtersets.py:648 +#: dcim/forms/filtersets.py:869 msgid "Has power outlets" msgstr "Имеет розетки" -#: netbox/dcim/filtersets.py:583 netbox/dcim/filtersets.py:704 -#: netbox/dcim/filtersets.py:1147 netbox/dcim/forms/filtersets.py:559 -#: netbox/dcim/forms/filtersets.py:655 netbox/dcim/forms/filtersets.py:876 +#: dcim/filtersets.py:583 dcim/filtersets.py:704 dcim/filtersets.py:1147 +#: dcim/forms/filtersets.py:559 dcim/forms/filtersets.py:655 +#: dcim/forms/filtersets.py:876 msgid "Has interfaces" msgstr "Имеет интерфейсы" -#: netbox/dcim/filtersets.py:587 netbox/dcim/filtersets.py:708 -#: netbox/dcim/filtersets.py:1151 netbox/dcim/forms/filtersets.py:566 -#: netbox/dcim/forms/filtersets.py:662 netbox/dcim/forms/filtersets.py:883 +#: dcim/filtersets.py:587 dcim/filtersets.py:708 dcim/filtersets.py:1151 +#: dcim/forms/filtersets.py:566 dcim/forms/filtersets.py:662 +#: dcim/forms/filtersets.py:883 msgid "Has pass-through ports" msgstr "Имеет сквозные порты" -#: netbox/dcim/filtersets.py:591 netbox/dcim/filtersets.py:1155 -#: netbox/dcim/forms/filtersets.py:580 +#: dcim/filtersets.py:591 dcim/filtersets.py:1155 dcim/forms/filtersets.py:580 msgid "Has module bays" msgstr "Имеет отсеки для модулей" -#: netbox/dcim/filtersets.py:595 netbox/dcim/filtersets.py:1159 -#: netbox/dcim/forms/filtersets.py:573 +#: dcim/filtersets.py:595 dcim/filtersets.py:1159 dcim/forms/filtersets.py:573 msgid "Has device bays" msgstr "Имеет отсеки для устройств" -#: netbox/dcim/filtersets.py:599 netbox/dcim/forms/filtersets.py:587 +#: dcim/filtersets.py:599 dcim/forms/filtersets.py:587 msgid "Has inventory items" msgstr "Имеет инвентарь" -#: netbox/dcim/filtersets.py:756 netbox/dcim/filtersets.py:989 -#: netbox/dcim/filtersets.py:1436 +#: dcim/filtersets.py:756 dcim/filtersets.py:989 dcim/filtersets.py:1436 msgid "Device type (ID)" msgstr "Тип устройства (ID)" -#: netbox/dcim/filtersets.py:772 netbox/dcim/filtersets.py:1317 +#: dcim/filtersets.py:772 dcim/filtersets.py:1317 msgid "Module type (ID)" msgstr "Тип модуля (ID)" -#: netbox/dcim/filtersets.py:804 netbox/dcim/filtersets.py:1591 +#: dcim/filtersets.py:804 dcim/filtersets.py:1591 msgid "Power port (ID)" msgstr "Порт питания (ID)" -#: netbox/dcim/filtersets.py:878 netbox/dcim/filtersets.py:1836 +#: dcim/filtersets.py:878 dcim/filtersets.py:1836 msgid "Parent inventory item (ID)" msgstr "Родительский инвентарь (ID)" -#: netbox/dcim/filtersets.py:921 netbox/dcim/filtersets.py:947 -#: netbox/dcim/filtersets.py:1127 netbox/virtualization/filtersets.py:238 +#: dcim/filtersets.py:921 dcim/filtersets.py:947 dcim/filtersets.py:1127 +#: virtualization/filtersets.py:238 msgid "Config template (ID)" msgstr "Шаблон конфигурации (ID)" -#: netbox/dcim/filtersets.py:985 +#: dcim/filtersets.py:985 msgid "Device type (slug)" msgstr "Тип устройства (подстрока)" -#: netbox/dcim/filtersets.py:1005 +#: dcim/filtersets.py:1005 msgid "Parent Device (ID)" msgstr "Родительское устройство (ID)" -#: netbox/dcim/filtersets.py:1009 netbox/virtualization/filtersets.py:220 +#: dcim/filtersets.py:1009 virtualization/filtersets.py:220 msgid "Platform (ID)" msgstr "Платформа (ID)" -#: netbox/dcim/filtersets.py:1015 netbox/extras/filtersets.py:569 -#: netbox/virtualization/filtersets.py:226 +#: dcim/filtersets.py:1015 extras/filtersets.py:569 +#: virtualization/filtersets.py:226 msgid "Platform (slug)" msgstr "Платформа (подстрока)" -#: netbox/dcim/filtersets.py:1051 netbox/dcim/filtersets.py:1399 -#: netbox/dcim/filtersets.py:1934 netbox/dcim/filtersets.py:2176 -#: netbox/dcim/filtersets.py:2235 +#: dcim/filtersets.py:1051 dcim/filtersets.py:1399 dcim/filtersets.py:1934 +#: dcim/filtersets.py:2176 dcim/filtersets.py:2235 msgid "Site name (slug)" msgstr "Имя сайта (подстрока)" -#: netbox/dcim/filtersets.py:1067 +#: dcim/filtersets.py:1067 msgid "Parent bay (ID)" msgstr "Родительский ребенок (ID)" -#: netbox/dcim/filtersets.py:1071 +#: dcim/filtersets.py:1071 msgid "VM cluster (ID)" msgstr "Кластер виртуальных машин (ID)" -#: netbox/dcim/filtersets.py:1077 netbox/extras/filtersets.py:591 -#: netbox/virtualization/filtersets.py:136 +#: dcim/filtersets.py:1077 extras/filtersets.py:591 +#: virtualization/filtersets.py:136 msgid "Cluster group (slug)" msgstr "Группа кластеров (подстрока)" -#: netbox/dcim/filtersets.py:1082 netbox/virtualization/filtersets.py:130 +#: dcim/filtersets.py:1082 virtualization/filtersets.py:130 msgid "Cluster group (ID)" msgstr "Кластерная группа (ID)" -#: netbox/dcim/filtersets.py:1088 +#: dcim/filtersets.py:1088 msgid "Device model (slug)" msgstr "Модель устройства (подстрока)" -#: netbox/dcim/filtersets.py:1099 netbox/dcim/forms/bulk_edit.py:516 +#: dcim/filtersets.py:1099 dcim/forms/bulk_edit.py:516 msgid "Is full depth" msgstr "Полная глубина" -#: netbox/dcim/filtersets.py:1103 netbox/dcim/forms/common.py:18 -#: netbox/dcim/forms/filtersets.py:818 netbox/dcim/forms/filtersets.py:1385 -#: netbox/dcim/models/device_components.py:518 -#: netbox/virtualization/filtersets.py:230 -#: netbox/virtualization/filtersets.py:301 -#: netbox/virtualization/forms/filtersets.py:172 -#: netbox/virtualization/forms/filtersets.py:223 +#: dcim/filtersets.py:1103 dcim/forms/common.py:18 +#: dcim/forms/filtersets.py:818 dcim/forms/filtersets.py:1385 +#: dcim/models/device_components.py:518 virtualization/filtersets.py:230 +#: virtualization/filtersets.py:301 virtualization/forms/filtersets.py:172 +#: virtualization/forms/filtersets.py:223 msgid "MAC address" msgstr "MAC-адрес" -#: netbox/dcim/filtersets.py:1110 netbox/dcim/filtersets.py:1274 -#: netbox/dcim/forms/filtersets.py:827 netbox/dcim/forms/filtersets.py:930 -#: netbox/virtualization/filtersets.py:234 -#: netbox/virtualization/forms/filtersets.py:176 +#: dcim/filtersets.py:1110 dcim/filtersets.py:1274 +#: dcim/forms/filtersets.py:827 dcim/forms/filtersets.py:930 +#: virtualization/filtersets.py:234 virtualization/forms/filtersets.py:176 msgid "Has a primary IP" msgstr "Имеет основной IP-адрес" -#: netbox/dcim/filtersets.py:1114 +#: dcim/filtersets.py:1114 msgid "Has an out-of-band IP" msgstr "Имеет внеполосный IP-адрес" -#: netbox/dcim/filtersets.py:1119 +#: dcim/filtersets.py:1119 msgid "Virtual chassis (ID)" msgstr "Виртуальное шасси (ID)" -#: netbox/dcim/filtersets.py:1123 +#: dcim/filtersets.py:1123 msgid "Is a virtual chassis member" msgstr "Является членом виртуального шасси" -#: netbox/dcim/filtersets.py:1164 +#: dcim/filtersets.py:1164 msgid "OOB IP (ID)" msgstr "Сервисный порт (ID)" -#: netbox/dcim/filtersets.py:1168 +#: dcim/filtersets.py:1168 msgid "Has virtual device context" msgstr "Имеет контекст виртуального устройства" -#: netbox/dcim/filtersets.py:1257 +#: dcim/filtersets.py:1257 msgid "VDC (ID)" msgstr "VDC (ID)" -#: netbox/dcim/filtersets.py:1262 +#: dcim/filtersets.py:1262 msgid "Device model" msgstr "модель устройства" -#: netbox/dcim/filtersets.py:1267 netbox/ipam/filtersets.py:632 -#: netbox/vpn/filtersets.py:102 netbox/vpn/filtersets.py:401 +#: dcim/filtersets.py:1267 ipam/filtersets.py:632 vpn/filtersets.py:102 +#: vpn/filtersets.py:401 msgid "Interface (ID)" msgstr "Интерфейс (ID)" -#: netbox/dcim/filtersets.py:1323 +#: dcim/filtersets.py:1323 msgid "Module type (model)" msgstr "Тип модуля (модель)" -#: netbox/dcim/filtersets.py:1329 +#: dcim/filtersets.py:1329 msgid "Module bay (ID)" msgstr "Отсек для модулей (ID)" -#: netbox/dcim/filtersets.py:1333 netbox/dcim/filtersets.py:1425 -#: netbox/ipam/filtersets.py:611 netbox/ipam/filtersets.py:851 -#: netbox/ipam/filtersets.py:1115 netbox/virtualization/filtersets.py:161 -#: netbox/vpn/filtersets.py:379 +#: dcim/filtersets.py:1333 dcim/filtersets.py:1425 ipam/filtersets.py:611 +#: ipam/filtersets.py:851 ipam/filtersets.py:1115 +#: virtualization/filtersets.py:161 vpn/filtersets.py:379 msgid "Device (ID)" msgstr "Устройство (ID)" -#: netbox/dcim/filtersets.py:1421 +#: dcim/filtersets.py:1421 msgid "Rack (name)" msgstr "Стойка (имя)" -#: netbox/dcim/filtersets.py:1431 netbox/ipam/filtersets.py:606 -#: netbox/ipam/filtersets.py:846 netbox/ipam/filtersets.py:1121 -#: netbox/vpn/filtersets.py:374 +#: dcim/filtersets.py:1431 ipam/filtersets.py:606 ipam/filtersets.py:846 +#: ipam/filtersets.py:1121 vpn/filtersets.py:374 msgid "Device (name)" msgstr "Устройство (имя)" -#: netbox/dcim/filtersets.py:1442 +#: dcim/filtersets.py:1442 msgid "Device type (model)" msgstr "Тип устройства (модель)" -#: netbox/dcim/filtersets.py:1447 +#: dcim/filtersets.py:1447 msgid "Device role (ID)" msgstr "Роль устройства (ID)" -#: netbox/dcim/filtersets.py:1453 +#: dcim/filtersets.py:1453 msgid "Device role (slug)" msgstr "Роль устройства (подстрока)" -#: netbox/dcim/filtersets.py:1458 +#: dcim/filtersets.py:1458 msgid "Virtual Chassis (ID)" msgstr "Виртуальное шасси (ID)" -#: netbox/dcim/filtersets.py:1464 netbox/dcim/forms/filtersets.py:109 -#: netbox/dcim/tables/devices.py:206 netbox/netbox/navigation/menu.py:79 -#: netbox/templates/dcim/device.html:120 -#: netbox/templates/dcim/device_edit.html:93 -#: netbox/templates/dcim/virtualchassis.html:20 -#: netbox/templates/dcim/virtualchassis_add.html:8 -#: netbox/templates/dcim/virtualchassis_edit.html:24 +#: dcim/filtersets.py:1464 dcim/forms/filtersets.py:109 +#: dcim/tables/devices.py:206 netbox/navigation/menu.py:79 +#: templates/dcim/device.html:120 templates/dcim/device_edit.html:93 +#: templates/dcim/virtualchassis.html:20 +#: templates/dcim/virtualchassis_add.html:8 +#: templates/dcim/virtualchassis_edit.html:24 msgid "Virtual Chassis" msgstr "Виртуальное шасси" -#: netbox/dcim/filtersets.py:1488 +#: dcim/filtersets.py:1488 msgid "Module (ID)" msgstr "Модуль (ID)" -#: netbox/dcim/filtersets.py:1495 +#: dcim/filtersets.py:1495 msgid "Cable (ID)" msgstr "Кабель (ID)" -#: netbox/dcim/filtersets.py:1604 netbox/ipam/forms/bulk_import.py:189 -#: netbox/vpn/forms/bulk_import.py:308 +#: dcim/filtersets.py:1604 ipam/forms/bulk_import.py:189 +#: vpn/forms/bulk_import.py:308 msgid "Assigned VLAN" msgstr "Назначенная VLAN" -#: netbox/dcim/filtersets.py:1608 +#: dcim/filtersets.py:1608 msgid "Assigned VID" msgstr "Назначенный VID" -#: netbox/dcim/filtersets.py:1613 netbox/dcim/forms/bulk_edit.py:1489 -#: netbox/dcim/forms/bulk_import.py:891 netbox/dcim/forms/filtersets.py:1428 -#: netbox/dcim/forms/model_forms.py:1378 -#: netbox/dcim/models/device_components.py:711 -#: netbox/dcim/tables/devices.py:626 netbox/ipam/filtersets.py:316 -#: netbox/ipam/filtersets.py:327 netbox/ipam/filtersets.py:483 -#: netbox/ipam/filtersets.py:584 netbox/ipam/filtersets.py:595 -#: netbox/ipam/forms/bulk_edit.py:241 netbox/ipam/forms/bulk_edit.py:297 -#: netbox/ipam/forms/bulk_edit.py:339 netbox/ipam/forms/bulk_import.py:157 -#: netbox/ipam/forms/bulk_import.py:243 netbox/ipam/forms/bulk_import.py:279 -#: netbox/ipam/forms/filtersets.py:67 netbox/ipam/forms/filtersets.py:172 -#: netbox/ipam/forms/filtersets.py:309 netbox/ipam/forms/model_forms.py:62 -#: netbox/ipam/forms/model_forms.py:202 netbox/ipam/forms/model_forms.py:247 -#: netbox/ipam/forms/model_forms.py:300 netbox/ipam/forms/model_forms.py:431 -#: netbox/ipam/forms/model_forms.py:445 netbox/ipam/forms/model_forms.py:459 -#: netbox/ipam/models/ip.py:233 netbox/ipam/models/ip.py:512 -#: netbox/ipam/models/ip.py:720 netbox/ipam/models/vrfs.py:62 -#: netbox/ipam/tables/ip.py:242 netbox/ipam/tables/ip.py:309 -#: netbox/ipam/tables/ip.py:360 netbox/ipam/tables/ip.py:450 -#: netbox/templates/dcim/interface.html:133 -#: netbox/templates/ipam/ipaddress.html:18 -#: netbox/templates/ipam/iprange.html:40 netbox/templates/ipam/prefix.html:19 -#: netbox/templates/ipam/vrf.html:7 netbox/templates/ipam/vrf.html:13 -#: netbox/templates/virtualization/vminterface.html:47 -#: netbox/virtualization/forms/bulk_edit.py:261 -#: netbox/virtualization/forms/bulk_import.py:171 -#: netbox/virtualization/forms/filtersets.py:228 -#: netbox/virtualization/forms/model_forms.py:344 -#: netbox/virtualization/models/virtualmachines.py:355 -#: netbox/virtualization/tables/virtualmachines.py:143 +#: dcim/filtersets.py:1613 dcim/forms/bulk_edit.py:1489 +#: dcim/forms/bulk_import.py:891 dcim/forms/filtersets.py:1428 +#: dcim/forms/model_forms.py:1378 dcim/models/device_components.py:711 +#: dcim/tables/devices.py:626 ipam/filtersets.py:316 ipam/filtersets.py:327 +#: ipam/filtersets.py:483 ipam/filtersets.py:584 ipam/filtersets.py:595 +#: ipam/forms/bulk_edit.py:242 ipam/forms/bulk_edit.py:298 +#: ipam/forms/bulk_edit.py:340 ipam/forms/bulk_import.py:157 +#: ipam/forms/bulk_import.py:243 ipam/forms/bulk_import.py:279 +#: ipam/forms/filtersets.py:67 ipam/forms/filtersets.py:172 +#: ipam/forms/filtersets.py:309 ipam/forms/model_forms.py:62 +#: ipam/forms/model_forms.py:202 ipam/forms/model_forms.py:247 +#: ipam/forms/model_forms.py:300 ipam/forms/model_forms.py:431 +#: ipam/forms/model_forms.py:445 ipam/forms/model_forms.py:459 +#: ipam/models/ip.py:233 ipam/models/ip.py:512 ipam/models/ip.py:720 +#: ipam/models/vrfs.py:62 ipam/tables/ip.py:242 ipam/tables/ip.py:309 +#: ipam/tables/ip.py:360 ipam/tables/ip.py:450 +#: templates/dcim/interface.html:133 templates/ipam/ipaddress.html:18 +#: templates/ipam/iprange.html:40 templates/ipam/prefix.html:19 +#: templates/ipam/vrf.html:7 templates/ipam/vrf.html:13 +#: templates/virtualization/vminterface.html:47 +#: virtualization/forms/bulk_edit.py:261 +#: virtualization/forms/bulk_import.py:171 +#: virtualization/forms/filtersets.py:228 +#: virtualization/forms/model_forms.py:344 +#: virtualization/models/virtualmachines.py:355 +#: virtualization/tables/virtualmachines.py:143 msgid "VRF" msgstr "VRF" -#: netbox/dcim/filtersets.py:1619 netbox/ipam/filtersets.py:322 -#: netbox/ipam/filtersets.py:333 netbox/ipam/filtersets.py:489 -#: netbox/ipam/filtersets.py:590 netbox/ipam/filtersets.py:601 +#: dcim/filtersets.py:1619 ipam/filtersets.py:322 ipam/filtersets.py:333 +#: ipam/filtersets.py:489 ipam/filtersets.py:590 ipam/filtersets.py:601 msgid "VRF (RD)" msgstr "VRF (RD)" -#: netbox/dcim/filtersets.py:1624 netbox/ipam/filtersets.py:1030 -#: netbox/vpn/filtersets.py:342 +#: dcim/filtersets.py:1624 ipam/filtersets.py:1030 vpn/filtersets.py:342 msgid "L2VPN (ID)" msgstr "L2VPN (ID)" -#: netbox/dcim/filtersets.py:1630 netbox/dcim/forms/filtersets.py:1433 -#: netbox/dcim/tables/devices.py:570 netbox/ipam/filtersets.py:1036 -#: netbox/ipam/forms/filtersets.py:518 netbox/ipam/tables/vlans.py:137 -#: netbox/templates/dcim/interface.html:93 netbox/templates/ipam/vlan.html:66 -#: netbox/templates/vpn/l2vpntermination.html:12 -#: netbox/virtualization/forms/filtersets.py:233 -#: netbox/vpn/forms/bulk_import.py:280 netbox/vpn/forms/filtersets.py:246 -#: netbox/vpn/forms/model_forms.py:409 netbox/vpn/forms/model_forms.py:427 -#: netbox/vpn/models/l2vpn.py:63 netbox/vpn/tables/l2vpn.py:55 +#: dcim/filtersets.py:1630 dcim/forms/filtersets.py:1433 +#: dcim/tables/devices.py:570 ipam/filtersets.py:1036 +#: ipam/forms/filtersets.py:518 ipam/tables/vlans.py:137 +#: templates/dcim/interface.html:93 templates/ipam/vlan.html:66 +#: templates/vpn/l2vpntermination.html:12 +#: virtualization/forms/filtersets.py:233 vpn/forms/bulk_import.py:280 +#: vpn/forms/filtersets.py:246 vpn/forms/model_forms.py:409 +#: vpn/forms/model_forms.py:427 vpn/models/l2vpn.py:63 vpn/tables/l2vpn.py:55 msgid "L2VPN" msgstr "L2VPN" -#: netbox/dcim/filtersets.py:1662 +#: dcim/filtersets.py:1662 msgid "Virtual Chassis Interfaces for Device" msgstr "Интерфейсы виртуального шасси для устройства" -#: netbox/dcim/filtersets.py:1667 +#: dcim/filtersets.py:1667 msgid "Virtual Chassis Interfaces for Device (ID)" msgstr "Интерфейсы виртуального шасси для устройства (ID)" -#: netbox/dcim/filtersets.py:1671 +#: dcim/filtersets.py:1671 msgid "Kind of interface" msgstr "Вид интерфейса" -#: netbox/dcim/filtersets.py:1676 netbox/virtualization/filtersets.py:293 +#: dcim/filtersets.py:1676 virtualization/filtersets.py:293 msgid "Parent interface (ID)" msgstr "Родительский интерфейс (ID)" -#: netbox/dcim/filtersets.py:1681 netbox/virtualization/filtersets.py:298 +#: dcim/filtersets.py:1681 virtualization/filtersets.py:298 msgid "Bridged interface (ID)" msgstr "Мостовой интерфейс (ID)" -#: netbox/dcim/filtersets.py:1686 +#: dcim/filtersets.py:1686 msgid "LAG interface (ID)" msgstr "Интерфейс LAG (ID)" -#: netbox/dcim/filtersets.py:1713 netbox/dcim/filtersets.py:1725 -#: netbox/dcim/forms/filtersets.py:1345 netbox/dcim/forms/model_forms.py:1690 -#: netbox/templates/dcim/virtualdevicecontext.html:15 +#: dcim/filtersets.py:1713 dcim/filtersets.py:1725 +#: dcim/forms/filtersets.py:1345 dcim/forms/model_forms.py:1690 +#: templates/dcim/virtualdevicecontext.html:15 msgid "Virtual Device Context" msgstr "Виртуальный контекст" -#: netbox/dcim/filtersets.py:1719 +#: dcim/filtersets.py:1719 msgid "Virtual Device Context (Identifier)" msgstr "Контекст виртуального устройства (идентификатор)" -#: netbox/dcim/filtersets.py:1730 -#: netbox/templates/wireless/wirelesslan.html:11 -#: netbox/wireless/forms/model_forms.py:53 +#: dcim/filtersets.py:1730 templates/wireless/wirelesslan.html:11 +#: wireless/forms/model_forms.py:53 msgid "Wireless LAN" msgstr "Беспроводная сеть" -#: netbox/dcim/filtersets.py:1734 netbox/dcim/tables/devices.py:613 +#: dcim/filtersets.py:1734 dcim/tables/devices.py:613 msgid "Wireless link" msgstr "Беспроводная связь" -#: netbox/dcim/filtersets.py:1803 +#: dcim/filtersets.py:1803 msgid "Parent module bay (ID)" msgstr "Отсек для родительского модуля (ID)" -#: netbox/dcim/filtersets.py:1808 +#: dcim/filtersets.py:1808 msgid "Installed module (ID)" msgstr "Установленный модуль (ID)" -#: netbox/dcim/filtersets.py:1819 +#: dcim/filtersets.py:1819 msgid "Installed device (ID)" msgstr "Установленное устройство (ID)" -#: netbox/dcim/filtersets.py:1825 +#: dcim/filtersets.py:1825 msgid "Installed device (name)" msgstr "Установленное устройство (имя)" -#: netbox/dcim/filtersets.py:1891 +#: dcim/filtersets.py:1891 msgid "Master (ID)" msgstr "Мастер (удостоверение личности)" -#: netbox/dcim/filtersets.py:1897 +#: dcim/filtersets.py:1897 msgid "Master (name)" msgstr "Мастер (имя)" -#: netbox/dcim/filtersets.py:1939 netbox/tenancy/filtersets.py:245 +#: dcim/filtersets.py:1939 tenancy/filtersets.py:245 msgid "Tenant (ID)" msgstr "Арендатор (ID)" -#: netbox/dcim/filtersets.py:1945 netbox/extras/filtersets.py:618 -#: netbox/tenancy/filtersets.py:251 +#: dcim/filtersets.py:1945 extras/filtersets.py:618 tenancy/filtersets.py:251 msgid "Tenant (slug)" msgstr "Арендатор (подстрока)" -#: netbox/dcim/filtersets.py:1981 netbox/dcim/forms/filtersets.py:1077 +#: dcim/filtersets.py:1981 dcim/forms/filtersets.py:1077 msgid "Unterminated" msgstr "Нерасторгнутый" -#: netbox/dcim/filtersets.py:2239 +#: dcim/filtersets.py:2239 msgid "Power panel (ID)" msgstr "Панель питания (ID)" -#: netbox/dcim/forms/bulk_create.py:40 netbox/extras/forms/filtersets.py:401 -#: netbox/extras/forms/model_forms.py:567 -#: netbox/extras/forms/model_forms.py:619 netbox/netbox/forms/base.py:86 -#: netbox/netbox/forms/mixins.py:81 netbox/netbox/tables/columns.py:478 -#: netbox/templates/circuits/inc/circuit_termination.html:32 -#: netbox/templates/generic/bulk_edit.html:65 -#: netbox/templates/inc/panels/tags.html:5 -#: netbox/utilities/forms/fields/fields.py:81 +#: dcim/forms/bulk_create.py:40 extras/forms/filtersets.py:401 +#: extras/forms/model_forms.py:567 extras/forms/model_forms.py:619 +#: netbox/forms/base.py:86 netbox/forms/mixins.py:81 +#: netbox/tables/columns.py:478 +#: templates/circuits/inc/circuit_termination.html:32 +#: templates/generic/bulk_edit.html:65 templates/inc/panels/tags.html:5 +#: utilities/forms/fields/fields.py:81 msgid "Tags" msgstr "Теги" -#: netbox/dcim/forms/bulk_create.py:112 netbox/dcim/forms/filtersets.py:1498 -#: netbox/dcim/forms/model_forms.py:488 netbox/dcim/forms/model_forms.py:546 -#: netbox/dcim/forms/object_create.py:197 -#: netbox/dcim/forms/object_create.py:353 netbox/dcim/tables/devices.py:165 -#: netbox/dcim/tables/devices.py:707 netbox/dcim/tables/devicetypes.py:246 -#: netbox/templates/dcim/device.html:43 netbox/templates/dcim/device.html:131 -#: netbox/templates/dcim/modulebay.html:38 -#: netbox/templates/dcim/virtualchassis.html:66 -#: netbox/templates/dcim/virtualchassis_edit.html:55 +#: dcim/forms/bulk_create.py:112 dcim/forms/filtersets.py:1498 +#: dcim/forms/model_forms.py:488 dcim/forms/model_forms.py:546 +#: dcim/forms/object_create.py:197 dcim/forms/object_create.py:353 +#: dcim/tables/devices.py:165 dcim/tables/devices.py:707 +#: dcim/tables/devicetypes.py:246 templates/dcim/device.html:43 +#: templates/dcim/device.html:131 templates/dcim/modulebay.html:38 +#: templates/dcim/virtualchassis.html:66 +#: templates/dcim/virtualchassis_edit.html:55 msgid "Position" msgstr "Позиция" -#: netbox/dcim/forms/bulk_create.py:114 +#: dcim/forms/bulk_create.py:114 msgid "" "Alphanumeric ranges are supported. (Must match the number of names being " "created.)" @@ -3456,887 +3125,825 @@ msgstr "" "Поддерживаются алфавитно-цифровые диапазоны. (Должно совпадать с количеством" " создаваемых имен.)" -#: netbox/dcim/forms/bulk_edit.py:132 +#: dcim/forms/bulk_edit.py:132 msgid "Contact name" msgstr "Имя контактного лица" -#: netbox/dcim/forms/bulk_edit.py:137 +#: dcim/forms/bulk_edit.py:137 msgid "Contact phone" msgstr "Контактный телефон" -#: netbox/dcim/forms/bulk_edit.py:143 +#: dcim/forms/bulk_edit.py:143 msgid "Contact E-mail" msgstr "Контактный адрес электронной почты" -#: netbox/dcim/forms/bulk_edit.py:146 netbox/dcim/forms/bulk_import.py:123 -#: netbox/dcim/forms/model_forms.py:128 +#: dcim/forms/bulk_edit.py:146 dcim/forms/bulk_import.py:123 +#: dcim/forms/model_forms.py:128 msgid "Time zone" msgstr "Часовой пояс" -#: netbox/dcim/forms/bulk_edit.py:224 netbox/dcim/forms/bulk_edit.py:495 -#: netbox/dcim/forms/bulk_edit.py:559 netbox/dcim/forms/bulk_edit.py:632 -#: netbox/dcim/forms/bulk_edit.py:656 netbox/dcim/forms/bulk_edit.py:740 -#: netbox/dcim/forms/bulk_edit.py:1267 netbox/dcim/forms/bulk_edit.py:1660 -#: netbox/dcim/forms/bulk_import.py:182 netbox/dcim/forms/bulk_import.py:371 -#: netbox/dcim/forms/bulk_import.py:405 netbox/dcim/forms/bulk_import.py:450 -#: netbox/dcim/forms/bulk_import.py:486 netbox/dcim/forms/bulk_import.py:1082 -#: netbox/dcim/forms/filtersets.py:313 netbox/dcim/forms/filtersets.py:372 -#: netbox/dcim/forms/filtersets.py:494 netbox/dcim/forms/filtersets.py:619 -#: netbox/dcim/forms/filtersets.py:700 netbox/dcim/forms/filtersets.py:782 -#: netbox/dcim/forms/filtersets.py:947 netbox/dcim/forms/filtersets.py:1539 -#: netbox/dcim/forms/model_forms.py:207 netbox/dcim/forms/model_forms.py:337 -#: netbox/dcim/forms/model_forms.py:349 netbox/dcim/forms/model_forms.py:395 -#: netbox/dcim/forms/model_forms.py:436 netbox/dcim/forms/model_forms.py:1075 -#: netbox/dcim/forms/model_forms.py:1515 -#: netbox/dcim/forms/object_import.py:187 netbox/dcim/tables/devices.py:96 -#: netbox/dcim/tables/devices.py:172 netbox/dcim/tables/devices.py:940 -#: netbox/dcim/tables/devicetypes.py:80 netbox/dcim/tables/devicetypes.py:308 -#: netbox/dcim/tables/modules.py:20 netbox/dcim/tables/modules.py:60 -#: netbox/dcim/tables/racks.py:58 netbox/dcim/tables/racks.py:132 -#: netbox/templates/dcim/devicetype.html:14 -#: netbox/templates/dcim/inventoryitem.html:44 -#: netbox/templates/dcim/manufacturer.html:33 -#: netbox/templates/dcim/modulebay.html:62 -#: netbox/templates/dcim/moduletype.html:14 -#: netbox/templates/dcim/platform.html:37 -#: netbox/templates/dcim/racktype.html:16 +#: dcim/forms/bulk_edit.py:224 dcim/forms/bulk_edit.py:495 +#: dcim/forms/bulk_edit.py:559 dcim/forms/bulk_edit.py:632 +#: dcim/forms/bulk_edit.py:656 dcim/forms/bulk_edit.py:740 +#: dcim/forms/bulk_edit.py:1267 dcim/forms/bulk_edit.py:1660 +#: dcim/forms/bulk_import.py:182 dcim/forms/bulk_import.py:371 +#: dcim/forms/bulk_import.py:405 dcim/forms/bulk_import.py:450 +#: dcim/forms/bulk_import.py:486 dcim/forms/bulk_import.py:1082 +#: dcim/forms/filtersets.py:313 dcim/forms/filtersets.py:372 +#: dcim/forms/filtersets.py:494 dcim/forms/filtersets.py:619 +#: dcim/forms/filtersets.py:700 dcim/forms/filtersets.py:782 +#: dcim/forms/filtersets.py:947 dcim/forms/filtersets.py:1539 +#: dcim/forms/model_forms.py:207 dcim/forms/model_forms.py:337 +#: dcim/forms/model_forms.py:349 dcim/forms/model_forms.py:395 +#: dcim/forms/model_forms.py:436 dcim/forms/model_forms.py:1075 +#: dcim/forms/model_forms.py:1515 dcim/forms/object_import.py:187 +#: dcim/tables/devices.py:96 dcim/tables/devices.py:172 +#: dcim/tables/devices.py:940 dcim/tables/devicetypes.py:80 +#: dcim/tables/devicetypes.py:308 dcim/tables/modules.py:20 +#: dcim/tables/modules.py:60 dcim/tables/racks.py:58 dcim/tables/racks.py:132 +#: templates/dcim/devicetype.html:14 templates/dcim/inventoryitem.html:44 +#: templates/dcim/manufacturer.html:33 templates/dcim/modulebay.html:62 +#: templates/dcim/moduletype.html:25 templates/dcim/platform.html:37 +#: templates/dcim/racktype.html:16 msgid "Manufacturer" msgstr "Производитель" -#: netbox/dcim/forms/bulk_edit.py:229 netbox/dcim/forms/bulk_edit.py:372 -#: netbox/dcim/forms/bulk_import.py:191 netbox/dcim/forms/bulk_import.py:263 -#: netbox/dcim/forms/filtersets.py:255 -#: netbox/templates/dcim/inc/panels/racktype_dimensions.html:6 +#: dcim/forms/bulk_edit.py:229 dcim/forms/bulk_edit.py:372 +#: dcim/forms/bulk_import.py:191 dcim/forms/bulk_import.py:263 +#: dcim/forms/filtersets.py:255 +#: templates/dcim/inc/panels/racktype_dimensions.html:6 msgid "Form factor" msgstr "Форм-фактор" -#: netbox/dcim/forms/bulk_edit.py:234 netbox/dcim/forms/bulk_edit.py:377 -#: netbox/dcim/forms/bulk_import.py:199 netbox/dcim/forms/bulk_import.py:266 -#: netbox/dcim/forms/filtersets.py:260 -#: netbox/templates/dcim/inc/panels/racktype_dimensions.html:10 +#: dcim/forms/bulk_edit.py:234 dcim/forms/bulk_edit.py:377 +#: dcim/forms/bulk_import.py:199 dcim/forms/bulk_import.py:266 +#: dcim/forms/filtersets.py:260 +#: templates/dcim/inc/panels/racktype_dimensions.html:10 msgid "Width" msgstr "Ширина" -#: netbox/dcim/forms/bulk_edit.py:240 netbox/dcim/forms/bulk_edit.py:383 -#: netbox/templates/dcim/devicetype.html:37 +#: dcim/forms/bulk_edit.py:240 dcim/forms/bulk_edit.py:383 +#: templates/dcim/devicetype.html:37 msgid "Height (U)" msgstr "Высота (U)" -#: netbox/dcim/forms/bulk_edit.py:249 netbox/dcim/forms/bulk_edit.py:388 -#: netbox/dcim/forms/filtersets.py:274 +#: dcim/forms/bulk_edit.py:249 dcim/forms/bulk_edit.py:388 +#: dcim/forms/filtersets.py:274 msgid "Descending units" msgstr "Единицы по убыванию" -#: netbox/dcim/forms/bulk_edit.py:252 netbox/dcim/forms/bulk_edit.py:391 +#: dcim/forms/bulk_edit.py:252 dcim/forms/bulk_edit.py:391 msgid "Outer width" msgstr "Наружная ширина" -#: netbox/dcim/forms/bulk_edit.py:257 netbox/dcim/forms/bulk_edit.py:396 +#: dcim/forms/bulk_edit.py:257 dcim/forms/bulk_edit.py:396 msgid "Outer depth" msgstr "Внешняя глубина" -#: netbox/dcim/forms/bulk_edit.py:262 netbox/dcim/forms/bulk_edit.py:401 -#: netbox/dcim/forms/bulk_import.py:204 netbox/dcim/forms/bulk_import.py:271 +#: dcim/forms/bulk_edit.py:262 dcim/forms/bulk_edit.py:401 +#: dcim/forms/bulk_import.py:204 dcim/forms/bulk_import.py:271 msgid "Outer unit" msgstr "Внешний блок" -#: netbox/dcim/forms/bulk_edit.py:267 netbox/dcim/forms/bulk_edit.py:406 +#: dcim/forms/bulk_edit.py:267 dcim/forms/bulk_edit.py:406 msgid "Mounting depth" msgstr "Глубина крепления" -#: netbox/dcim/forms/bulk_edit.py:272 netbox/dcim/forms/bulk_edit.py:299 -#: netbox/dcim/forms/bulk_edit.py:416 netbox/dcim/forms/bulk_edit.py:446 -#: netbox/dcim/forms/bulk_edit.py:529 netbox/dcim/forms/bulk_edit.py:552 -#: netbox/dcim/forms/bulk_edit.py:573 netbox/dcim/forms/bulk_edit.py:595 -#: netbox/dcim/forms/bulk_import.py:384 netbox/dcim/forms/bulk_import.py:416 -#: netbox/dcim/forms/filtersets.py:285 netbox/dcim/forms/filtersets.py:307 -#: netbox/dcim/forms/filtersets.py:327 netbox/dcim/forms/filtersets.py:401 -#: netbox/dcim/forms/filtersets.py:488 netbox/dcim/forms/filtersets.py:594 -#: netbox/dcim/forms/filtersets.py:613 netbox/dcim/forms/filtersets.py:674 -#: netbox/dcim/forms/model_forms.py:221 netbox/dcim/forms/model_forms.py:298 -#: netbox/dcim/tables/devicetypes.py:106 netbox/dcim/tables/modules.py:35 -#: netbox/dcim/tables/racks.py:74 netbox/dcim/tables/racks.py:172 -#: netbox/extras/forms/bulk_edit.py:53 netbox/extras/forms/bulk_edit.py:133 -#: netbox/extras/forms/bulk_edit.py:183 netbox/extras/forms/bulk_edit.py:288 -#: netbox/extras/forms/filtersets.py:64 netbox/extras/forms/filtersets.py:156 -#: netbox/extras/forms/filtersets.py:243 netbox/ipam/forms/bulk_edit.py:189 -#: netbox/templates/dcim/device.html:324 -#: netbox/templates/dcim/devicetype.html:49 -#: netbox/templates/dcim/moduletype.html:34 netbox/templates/dcim/rack.html:81 -#: netbox/templates/dcim/racktype.html:41 -#: netbox/templates/extras/configcontext.html:17 -#: netbox/templates/extras/customlink.html:25 -#: netbox/templates/extras/savedfilter.html:33 -#: netbox/templates/ipam/role.html:30 +#: dcim/forms/bulk_edit.py:272 dcim/forms/bulk_edit.py:299 +#: dcim/forms/bulk_edit.py:416 dcim/forms/bulk_edit.py:446 +#: dcim/forms/bulk_edit.py:529 dcim/forms/bulk_edit.py:552 +#: dcim/forms/bulk_edit.py:573 dcim/forms/bulk_edit.py:595 +#: dcim/forms/bulk_import.py:384 dcim/forms/bulk_import.py:416 +#: dcim/forms/filtersets.py:285 dcim/forms/filtersets.py:307 +#: dcim/forms/filtersets.py:327 dcim/forms/filtersets.py:401 +#: dcim/forms/filtersets.py:488 dcim/forms/filtersets.py:594 +#: dcim/forms/filtersets.py:613 dcim/forms/filtersets.py:674 +#: dcim/forms/model_forms.py:221 dcim/forms/model_forms.py:298 +#: dcim/tables/devicetypes.py:106 dcim/tables/modules.py:35 +#: dcim/tables/racks.py:74 dcim/tables/racks.py:172 +#: extras/forms/bulk_edit.py:53 extras/forms/bulk_edit.py:133 +#: extras/forms/bulk_edit.py:183 extras/forms/bulk_edit.py:288 +#: extras/forms/filtersets.py:64 extras/forms/filtersets.py:156 +#: extras/forms/filtersets.py:243 ipam/forms/bulk_edit.py:190 +#: templates/dcim/device.html:324 templates/dcim/devicetype.html:49 +#: templates/dcim/moduletype.html:45 templates/dcim/rack.html:81 +#: templates/dcim/racktype.html:41 templates/extras/configcontext.html:17 +#: templates/extras/customlink.html:25 templates/extras/savedfilter.html:33 +#: templates/ipam/role.html:30 msgid "Weight" msgstr "Вес" -#: netbox/dcim/forms/bulk_edit.py:277 netbox/dcim/forms/bulk_edit.py:421 -#: netbox/dcim/forms/filtersets.py:290 +#: dcim/forms/bulk_edit.py:277 dcim/forms/bulk_edit.py:421 +#: dcim/forms/filtersets.py:290 msgid "Max weight" msgstr "Максимальный вес" -#: netbox/dcim/forms/bulk_edit.py:282 netbox/dcim/forms/bulk_edit.py:426 -#: netbox/dcim/forms/bulk_edit.py:534 netbox/dcim/forms/bulk_edit.py:578 -#: netbox/dcim/forms/bulk_import.py:210 netbox/dcim/forms/bulk_import.py:283 -#: netbox/dcim/forms/bulk_import.py:389 netbox/dcim/forms/bulk_import.py:421 -#: netbox/dcim/forms/filtersets.py:295 netbox/dcim/forms/filtersets.py:598 -#: netbox/dcim/forms/filtersets.py:678 +#: dcim/forms/bulk_edit.py:282 dcim/forms/bulk_edit.py:426 +#: dcim/forms/bulk_edit.py:534 dcim/forms/bulk_edit.py:578 +#: dcim/forms/bulk_import.py:210 dcim/forms/bulk_import.py:283 +#: dcim/forms/bulk_import.py:389 dcim/forms/bulk_import.py:421 +#: dcim/forms/filtersets.py:295 dcim/forms/filtersets.py:598 +#: dcim/forms/filtersets.py:678 msgid "Weight unit" msgstr "Единица веса" -#: netbox/dcim/forms/bulk_edit.py:296 netbox/dcim/forms/filtersets.py:305 -#: netbox/dcim/forms/model_forms.py:217 netbox/dcim/forms/model_forms.py:256 -#: netbox/templates/dcim/rack.html:45 netbox/templates/dcim/racktype.html:13 +#: dcim/forms/bulk_edit.py:296 dcim/forms/filtersets.py:305 +#: dcim/forms/model_forms.py:217 dcim/forms/model_forms.py:256 +#: templates/dcim/rack.html:45 templates/dcim/racktype.html:13 msgid "Rack Type" msgstr "Тип стойки" -#: netbox/dcim/forms/bulk_edit.py:298 netbox/dcim/forms/model_forms.py:220 -#: netbox/dcim/forms/model_forms.py:297 +#: dcim/forms/bulk_edit.py:298 dcim/forms/model_forms.py:220 +#: dcim/forms/model_forms.py:297 msgid "Outer Dimensions" msgstr "Внешние размеры" -#: netbox/dcim/forms/bulk_edit.py:301 netbox/dcim/forms/model_forms.py:222 -#: netbox/dcim/forms/model_forms.py:299 netbox/templates/dcim/device.html:315 -#: netbox/templates/dcim/inc/panels/racktype_dimensions.html:3 +#: dcim/forms/bulk_edit.py:301 dcim/forms/model_forms.py:222 +#: dcim/forms/model_forms.py:299 templates/dcim/device.html:315 +#: templates/dcim/inc/panels/racktype_dimensions.html:3 msgid "Dimensions" msgstr "Габариты" -#: netbox/dcim/forms/bulk_edit.py:303 netbox/dcim/forms/filtersets.py:306 -#: netbox/dcim/forms/filtersets.py:326 netbox/dcim/forms/model_forms.py:224 -#: netbox/templates/dcim/inc/panels/racktype_numbering.html:3 +#: dcim/forms/bulk_edit.py:303 dcim/forms/filtersets.py:306 +#: dcim/forms/filtersets.py:326 dcim/forms/model_forms.py:224 +#: templates/dcim/inc/panels/racktype_numbering.html:3 msgid "Numbering" msgstr "Нумерация" -#: netbox/dcim/forms/bulk_edit.py:357 netbox/dcim/forms/bulk_edit.py:1262 -#: netbox/dcim/forms/bulk_edit.py:1655 netbox/dcim/forms/bulk_import.py:253 -#: netbox/dcim/forms/bulk_import.py:1076 netbox/dcim/forms/filtersets.py:367 -#: netbox/dcim/forms/filtersets.py:777 netbox/dcim/forms/filtersets.py:1534 -#: netbox/dcim/forms/model_forms.py:251 netbox/dcim/forms/model_forms.py:1070 -#: netbox/dcim/forms/model_forms.py:1510 -#: netbox/dcim/forms/object_import.py:181 netbox/dcim/tables/devices.py:169 -#: netbox/dcim/tables/devices.py:809 netbox/dcim/tables/devices.py:937 -#: netbox/dcim/tables/devicetypes.py:304 netbox/dcim/tables/racks.py:129 -#: netbox/extras/filtersets.py:552 netbox/ipam/forms/bulk_edit.py:260 -#: netbox/ipam/forms/bulk_edit.py:310 netbox/ipam/forms/bulk_edit.py:358 -#: netbox/ipam/forms/bulk_edit.py:556 netbox/ipam/forms/bulk_import.py:197 -#: netbox/ipam/forms/bulk_import.py:262 netbox/ipam/forms/bulk_import.py:298 -#: netbox/ipam/forms/bulk_import.py:455 netbox/ipam/forms/filtersets.py:237 -#: netbox/ipam/forms/filtersets.py:289 netbox/ipam/forms/filtersets.py:360 -#: netbox/ipam/forms/filtersets.py:509 netbox/ipam/forms/model_forms.py:188 -#: netbox/ipam/forms/model_forms.py:221 netbox/ipam/forms/model_forms.py:250 -#: netbox/ipam/forms/model_forms.py:643 netbox/ipam/tables/ip.py:258 -#: netbox/ipam/tables/ip.py:316 netbox/ipam/tables/ip.py:367 -#: netbox/ipam/tables/vlans.py:130 netbox/ipam/tables/vlans.py:235 -#: netbox/templates/dcim/device.html:182 -#: netbox/templates/dcim/inc/panels/inventory_items.html:20 -#: netbox/templates/dcim/interface.html:223 -#: netbox/templates/dcim/inventoryitem.html:36 -#: netbox/templates/dcim/rack.html:49 netbox/templates/ipam/ipaddress.html:41 -#: netbox/templates/ipam/iprange.html:50 netbox/templates/ipam/prefix.html:77 -#: netbox/templates/ipam/role.html:19 netbox/templates/ipam/vlan.html:52 -#: netbox/templates/virtualization/virtualmachine.html:23 -#: netbox/templates/vpn/tunneltermination.html:17 -#: netbox/templates/wireless/inc/wirelesslink_interface.html:20 -#: netbox/tenancy/forms/bulk_edit.py:142 -#: netbox/tenancy/forms/filtersets.py:107 -#: netbox/tenancy/forms/model_forms.py:137 -#: netbox/tenancy/tables/contacts.py:102 -#: netbox/virtualization/forms/bulk_edit.py:145 -#: netbox/virtualization/forms/bulk_import.py:106 -#: netbox/virtualization/forms/filtersets.py:157 -#: netbox/virtualization/forms/model_forms.py:195 -#: netbox/virtualization/tables/virtualmachines.py:75 -#: netbox/vpn/forms/bulk_edit.py:87 netbox/vpn/forms/bulk_import.py:81 -#: netbox/vpn/forms/filtersets.py:85 netbox/vpn/forms/model_forms.py:78 -#: netbox/vpn/forms/model_forms.py:113 netbox/vpn/tables/tunnels.py:82 +#: dcim/forms/bulk_edit.py:357 dcim/forms/bulk_edit.py:1262 +#: dcim/forms/bulk_edit.py:1655 dcim/forms/bulk_import.py:253 +#: dcim/forms/bulk_import.py:1076 dcim/forms/filtersets.py:367 +#: dcim/forms/filtersets.py:777 dcim/forms/filtersets.py:1534 +#: dcim/forms/model_forms.py:251 dcim/forms/model_forms.py:1070 +#: dcim/forms/model_forms.py:1510 dcim/forms/object_import.py:181 +#: dcim/tables/devices.py:169 dcim/tables/devices.py:809 +#: dcim/tables/devices.py:937 dcim/tables/devicetypes.py:304 +#: dcim/tables/racks.py:129 extras/filtersets.py:552 +#: ipam/forms/bulk_edit.py:261 ipam/forms/bulk_edit.py:311 +#: ipam/forms/bulk_edit.py:359 ipam/forms/bulk_edit.py:511 +#: ipam/forms/bulk_import.py:197 ipam/forms/bulk_import.py:262 +#: ipam/forms/bulk_import.py:298 ipam/forms/bulk_import.py:455 +#: ipam/forms/filtersets.py:237 ipam/forms/filtersets.py:289 +#: ipam/forms/filtersets.py:360 ipam/forms/filtersets.py:509 +#: ipam/forms/model_forms.py:188 ipam/forms/model_forms.py:221 +#: ipam/forms/model_forms.py:250 ipam/forms/model_forms.py:643 +#: ipam/tables/ip.py:258 ipam/tables/ip.py:316 ipam/tables/ip.py:367 +#: ipam/tables/vlans.py:130 ipam/tables/vlans.py:235 +#: templates/dcim/device.html:182 +#: templates/dcim/inc/panels/inventory_items.html:20 +#: templates/dcim/interface.html:223 templates/dcim/inventoryitem.html:36 +#: templates/dcim/rack.html:49 templates/ipam/ipaddress.html:41 +#: templates/ipam/iprange.html:50 templates/ipam/prefix.html:77 +#: templates/ipam/role.html:19 templates/ipam/vlan.html:52 +#: templates/virtualization/virtualmachine.html:23 +#: templates/vpn/tunneltermination.html:17 +#: templates/wireless/inc/wirelesslink_interface.html:20 +#: tenancy/forms/bulk_edit.py:142 tenancy/forms/filtersets.py:107 +#: tenancy/forms/model_forms.py:137 tenancy/tables/contacts.py:102 +#: virtualization/forms/bulk_edit.py:145 +#: virtualization/forms/bulk_import.py:106 +#: virtualization/forms/filtersets.py:157 +#: virtualization/forms/model_forms.py:195 +#: virtualization/tables/virtualmachines.py:75 vpn/forms/bulk_edit.py:87 +#: vpn/forms/bulk_import.py:81 vpn/forms/filtersets.py:85 +#: vpn/forms/model_forms.py:78 vpn/forms/model_forms.py:113 +#: vpn/tables/tunnels.py:82 msgid "Role" msgstr "Роль" -#: netbox/dcim/forms/bulk_edit.py:364 netbox/dcim/forms/bulk_edit.py:712 -#: netbox/dcim/forms/bulk_edit.py:764 netbox/templates/dcim/device.html:104 -#: netbox/templates/dcim/module.html:77 -#: netbox/templates/dcim/modulebay.html:70 netbox/templates/dcim/rack.html:57 -#: netbox/templates/virtualization/virtualmachine.html:35 +#: dcim/forms/bulk_edit.py:364 dcim/forms/bulk_edit.py:712 +#: dcim/forms/bulk_edit.py:764 templates/dcim/device.html:104 +#: templates/dcim/module.html:77 templates/dcim/modulebay.html:70 +#: templates/dcim/rack.html:57 templates/virtualization/virtualmachine.html:35 msgid "Serial Number" msgstr "Серийный номер" -#: netbox/dcim/forms/bulk_edit.py:367 netbox/dcim/forms/filtersets.py:387 -#: netbox/dcim/forms/filtersets.py:813 netbox/dcim/forms/filtersets.py:967 -#: netbox/dcim/forms/filtersets.py:1546 +#: dcim/forms/bulk_edit.py:367 dcim/forms/filtersets.py:387 +#: dcim/forms/filtersets.py:813 dcim/forms/filtersets.py:967 +#: dcim/forms/filtersets.py:1546 msgid "Asset tag" msgstr "Инвентарный номер" -#: netbox/dcim/forms/bulk_edit.py:411 netbox/dcim/forms/bulk_edit.py:524 -#: netbox/dcim/forms/bulk_edit.py:568 netbox/dcim/forms/bulk_edit.py:705 -#: netbox/dcim/forms/bulk_import.py:277 netbox/dcim/forms/bulk_import.py:410 -#: netbox/dcim/forms/bulk_import.py:580 netbox/dcim/forms/filtersets.py:280 -#: netbox/dcim/forms/filtersets.py:511 netbox/dcim/forms/filtersets.py:669 -#: netbox/dcim/forms/filtersets.py:804 netbox/templates/dcim/device.html:98 -#: netbox/templates/dcim/devicetype.html:65 -#: netbox/templates/dcim/moduletype.html:30 netbox/templates/dcim/rack.html:65 -#: netbox/templates/dcim/racktype.html:28 +#: dcim/forms/bulk_edit.py:411 dcim/forms/bulk_edit.py:524 +#: dcim/forms/bulk_edit.py:568 dcim/forms/bulk_edit.py:705 +#: dcim/forms/bulk_import.py:277 dcim/forms/bulk_import.py:410 +#: dcim/forms/bulk_import.py:580 dcim/forms/filtersets.py:280 +#: dcim/forms/filtersets.py:511 dcim/forms/filtersets.py:669 +#: dcim/forms/filtersets.py:804 templates/dcim/device.html:98 +#: templates/dcim/devicetype.html:65 templates/dcim/moduletype.html:41 +#: templates/dcim/rack.html:65 templates/dcim/racktype.html:28 msgid "Airflow" msgstr "Воздушный поток" -#: netbox/dcim/forms/bulk_edit.py:440 netbox/dcim/forms/bulk_edit.py:910 -#: netbox/dcim/forms/bulk_import.py:322 netbox/dcim/forms/bulk_import.py:325 -#: netbox/dcim/forms/bulk_import.py:553 netbox/dcim/forms/bulk_import.py:1358 -#: netbox/dcim/forms/bulk_import.py:1362 netbox/dcim/forms/filtersets.py:104 -#: netbox/dcim/forms/filtersets.py:324 netbox/dcim/forms/filtersets.py:405 -#: netbox/dcim/forms/filtersets.py:419 netbox/dcim/forms/filtersets.py:457 -#: netbox/dcim/forms/filtersets.py:772 netbox/dcim/forms/filtersets.py:1035 -#: netbox/dcim/forms/filtersets.py:1167 netbox/dcim/forms/model_forms.py:264 -#: netbox/dcim/forms/model_forms.py:306 netbox/dcim/forms/model_forms.py:479 -#: netbox/dcim/forms/model_forms.py:755 netbox/dcim/forms/object_create.py:400 -#: netbox/dcim/tables/devices.py:161 netbox/dcim/tables/power.py:70 -#: netbox/dcim/tables/racks.py:217 netbox/ipam/forms/bulk_edit.py:468 -#: netbox/ipam/forms/filtersets.py:442 netbox/templates/dcim/device.html:30 -#: netbox/templates/dcim/inc/cable_termination.html:16 -#: netbox/templates/dcim/powerfeed.html:28 netbox/templates/dcim/rack.html:13 -#: netbox/templates/dcim/rack/base.html:4 -#: netbox/templates/dcim/rackreservation.html:19 -#: netbox/templates/dcim/rackreservation.html:36 -#: netbox/virtualization/forms/model_forms.py:113 +#: dcim/forms/bulk_edit.py:440 dcim/forms/bulk_edit.py:910 +#: dcim/forms/bulk_import.py:322 dcim/forms/bulk_import.py:325 +#: dcim/forms/bulk_import.py:553 dcim/forms/bulk_import.py:1358 +#: dcim/forms/bulk_import.py:1362 dcim/forms/filtersets.py:104 +#: dcim/forms/filtersets.py:324 dcim/forms/filtersets.py:405 +#: dcim/forms/filtersets.py:419 dcim/forms/filtersets.py:457 +#: dcim/forms/filtersets.py:772 dcim/forms/filtersets.py:1035 +#: dcim/forms/filtersets.py:1167 dcim/forms/model_forms.py:264 +#: dcim/forms/model_forms.py:306 dcim/forms/model_forms.py:479 +#: dcim/forms/model_forms.py:755 dcim/forms/object_create.py:400 +#: dcim/tables/devices.py:161 dcim/tables/power.py:70 dcim/tables/racks.py:217 +#: ipam/forms/filtersets.py:442 templates/dcim/device.html:30 +#: templates/dcim/inc/cable_termination.html:16 +#: templates/dcim/powerfeed.html:28 templates/dcim/rack.html:13 +#: templates/dcim/rack/base.html:4 templates/dcim/rackreservation.html:19 +#: templates/dcim/rackreservation.html:36 +#: virtualization/forms/model_forms.py:113 msgid "Rack" msgstr "Стойка" -#: netbox/dcim/forms/bulk_edit.py:444 netbox/dcim/forms/bulk_edit.py:730 -#: netbox/dcim/forms/filtersets.py:325 netbox/dcim/forms/filtersets.py:398 -#: netbox/dcim/forms/filtersets.py:481 netbox/dcim/forms/filtersets.py:608 -#: netbox/dcim/forms/filtersets.py:721 netbox/dcim/forms/filtersets.py:942 -#: netbox/dcim/forms/model_forms.py:670 netbox/dcim/forms/model_forms.py:1580 -#: netbox/templates/dcim/device_edit.html:20 +#: dcim/forms/bulk_edit.py:444 dcim/forms/bulk_edit.py:730 +#: dcim/forms/filtersets.py:325 dcim/forms/filtersets.py:398 +#: dcim/forms/filtersets.py:481 dcim/forms/filtersets.py:608 +#: dcim/forms/filtersets.py:721 dcim/forms/filtersets.py:942 +#: dcim/forms/model_forms.py:670 dcim/forms/model_forms.py:1580 +#: templates/dcim/device_edit.html:20 msgid "Hardware" msgstr "Аппаратное обеспечение" -#: netbox/dcim/forms/bulk_edit.py:500 netbox/dcim/forms/bulk_import.py:377 -#: netbox/dcim/forms/filtersets.py:499 netbox/dcim/forms/model_forms.py:353 +#: dcim/forms/bulk_edit.py:500 dcim/forms/bulk_import.py:377 +#: dcim/forms/filtersets.py:499 dcim/forms/model_forms.py:353 msgid "Default platform" msgstr "Платформа по умолчанию" -#: netbox/dcim/forms/bulk_edit.py:505 netbox/dcim/forms/bulk_edit.py:564 -#: netbox/dcim/forms/filtersets.py:502 netbox/dcim/forms/filtersets.py:622 +#: dcim/forms/bulk_edit.py:505 dcim/forms/bulk_edit.py:564 +#: dcim/forms/filtersets.py:502 dcim/forms/filtersets.py:622 msgid "Part number" msgstr "Номер детали" -#: netbox/dcim/forms/bulk_edit.py:509 +#: dcim/forms/bulk_edit.py:509 msgid "U height" msgstr "Высота U" -#: netbox/dcim/forms/bulk_edit.py:521 netbox/dcim/tables/devicetypes.py:102 +#: dcim/forms/bulk_edit.py:521 dcim/tables/devicetypes.py:102 msgid "Exclude from utilization" msgstr "Исключить из использования" -#: netbox/dcim/forms/bulk_edit.py:550 netbox/dcim/forms/model_forms.py:368 -#: netbox/dcim/tables/devicetypes.py:77 netbox/templates/dcim/device.html:88 -#: netbox/templates/dcim/devicebay.html:52 -#: netbox/templates/dcim/module.html:61 +#: dcim/forms/bulk_edit.py:550 dcim/forms/model_forms.py:368 +#: dcim/tables/devicetypes.py:77 templates/dcim/device.html:88 +#: templates/dcim/devicebay.html:52 templates/dcim/module.html:61 msgid "Device Type" msgstr "Тип устройства" -#: netbox/dcim/forms/bulk_edit.py:592 netbox/dcim/forms/model_forms.py:401 -#: netbox/dcim/tables/modules.py:17 netbox/dcim/tables/modules.py:65 -#: netbox/templates/dcim/module.html:65 -#: netbox/templates/dcim/modulebay.html:66 -#: netbox/templates/dcim/moduletype.html:11 +#: dcim/forms/bulk_edit.py:592 dcim/forms/model_forms.py:401 +#: dcim/tables/modules.py:17 dcim/tables/modules.py:65 +#: templates/dcim/module.html:65 templates/dcim/modulebay.html:66 +#: templates/dcim/moduletype.html:22 msgid "Module Type" msgstr "Тип модуля" -#: netbox/dcim/forms/bulk_edit.py:596 netbox/dcim/forms/model_forms.py:371 -#: netbox/dcim/forms/model_forms.py:402 -#: netbox/templates/dcim/devicetype.html:11 +#: dcim/forms/bulk_edit.py:596 dcim/forms/model_forms.py:371 +#: dcim/forms/model_forms.py:402 templates/dcim/devicetype.html:11 msgid "Chassis" msgstr "Шасси" -#: netbox/dcim/forms/bulk_edit.py:610 netbox/dcim/models/devices.py:484 -#: netbox/dcim/tables/devices.py:67 +#: dcim/forms/bulk_edit.py:610 dcim/models/devices.py:484 +#: dcim/tables/devices.py:67 msgid "VM role" msgstr "Роль виртуальной машины" -#: netbox/dcim/forms/bulk_edit.py:613 netbox/dcim/forms/bulk_edit.py:637 -#: netbox/dcim/forms/bulk_edit.py:720 netbox/dcim/forms/bulk_import.py:434 -#: netbox/dcim/forms/bulk_import.py:438 netbox/dcim/forms/bulk_import.py:457 -#: netbox/dcim/forms/bulk_import.py:461 netbox/dcim/forms/bulk_import.py:586 -#: netbox/dcim/forms/bulk_import.py:590 netbox/dcim/forms/filtersets.py:689 -#: netbox/dcim/forms/filtersets.py:705 netbox/dcim/forms/filtersets.py:823 -#: netbox/dcim/forms/model_forms.py:415 netbox/dcim/forms/model_forms.py:441 -#: netbox/dcim/forms/model_forms.py:555 -#: netbox/virtualization/forms/bulk_import.py:132 -#: netbox/virtualization/forms/bulk_import.py:133 -#: netbox/virtualization/forms/filtersets.py:188 -#: netbox/virtualization/forms/model_forms.py:215 +#: dcim/forms/bulk_edit.py:613 dcim/forms/bulk_edit.py:637 +#: dcim/forms/bulk_edit.py:720 dcim/forms/bulk_import.py:434 +#: dcim/forms/bulk_import.py:438 dcim/forms/bulk_import.py:457 +#: dcim/forms/bulk_import.py:461 dcim/forms/bulk_import.py:586 +#: dcim/forms/bulk_import.py:590 dcim/forms/filtersets.py:689 +#: dcim/forms/filtersets.py:705 dcim/forms/filtersets.py:823 +#: dcim/forms/model_forms.py:415 dcim/forms/model_forms.py:441 +#: dcim/forms/model_forms.py:555 virtualization/forms/bulk_import.py:132 +#: virtualization/forms/bulk_import.py:133 +#: virtualization/forms/filtersets.py:188 +#: virtualization/forms/model_forms.py:215 msgid "Config template" msgstr "Шаблон конфигурации" -#: netbox/dcim/forms/bulk_edit.py:661 netbox/dcim/forms/bulk_edit.py:1061 -#: netbox/dcim/forms/bulk_import.py:492 netbox/dcim/forms/filtersets.py:114 -#: netbox/dcim/forms/model_forms.py:501 netbox/dcim/forms/model_forms.py:872 -#: netbox/dcim/forms/model_forms.py:889 netbox/extras/filtersets.py:547 +#: dcim/forms/bulk_edit.py:661 dcim/forms/bulk_edit.py:1061 +#: dcim/forms/bulk_import.py:492 dcim/forms/filtersets.py:114 +#: dcim/forms/model_forms.py:501 dcim/forms/model_forms.py:872 +#: dcim/forms/model_forms.py:889 extras/filtersets.py:547 msgid "Device type" msgstr "Тип устройства" -#: netbox/dcim/forms/bulk_edit.py:672 netbox/dcim/forms/bulk_import.py:473 -#: netbox/dcim/forms/filtersets.py:119 netbox/dcim/forms/model_forms.py:509 +#: dcim/forms/bulk_edit.py:672 dcim/forms/bulk_import.py:473 +#: dcim/forms/filtersets.py:119 dcim/forms/model_forms.py:509 msgid "Device role" msgstr "Роль устройства" -#: netbox/dcim/forms/bulk_edit.py:695 netbox/dcim/forms/bulk_import.py:498 -#: netbox/dcim/forms/filtersets.py:796 netbox/dcim/forms/model_forms.py:451 -#: netbox/dcim/forms/model_forms.py:513 netbox/dcim/tables/devices.py:182 -#: netbox/extras/filtersets.py:563 netbox/templates/dcim/device.html:186 -#: netbox/templates/dcim/platform.html:26 -#: netbox/templates/virtualization/virtualmachine.html:27 -#: netbox/virtualization/forms/bulk_edit.py:160 -#: netbox/virtualization/forms/bulk_import.py:122 -#: netbox/virtualization/forms/filtersets.py:168 -#: netbox/virtualization/forms/model_forms.py:203 -#: netbox/virtualization/tables/virtualmachines.py:79 +#: dcim/forms/bulk_edit.py:695 dcim/forms/bulk_import.py:498 +#: dcim/forms/filtersets.py:796 dcim/forms/model_forms.py:451 +#: dcim/forms/model_forms.py:513 dcim/tables/devices.py:182 +#: extras/filtersets.py:563 templates/dcim/device.html:186 +#: templates/dcim/platform.html:26 +#: templates/virtualization/virtualmachine.html:27 +#: virtualization/forms/bulk_edit.py:160 +#: virtualization/forms/bulk_import.py:122 +#: virtualization/forms/filtersets.py:168 +#: virtualization/forms/model_forms.py:203 +#: virtualization/tables/virtualmachines.py:79 msgid "Platform" msgstr "Платформа" -#: netbox/dcim/forms/bulk_edit.py:728 netbox/dcim/forms/bulk_edit.py:1281 -#: netbox/dcim/forms/bulk_edit.py:1650 netbox/dcim/forms/bulk_edit.py:1696 -#: netbox/dcim/forms/bulk_import.py:641 netbox/dcim/forms/bulk_import.py:703 -#: netbox/dcim/forms/bulk_import.py:729 netbox/dcim/forms/bulk_import.py:755 -#: netbox/dcim/forms/bulk_import.py:775 netbox/dcim/forms/bulk_import.py:828 -#: netbox/dcim/forms/bulk_import.py:946 netbox/dcim/forms/bulk_import.py:994 -#: netbox/dcim/forms/bulk_import.py:1011 netbox/dcim/forms/bulk_import.py:1023 -#: netbox/dcim/forms/bulk_import.py:1071 netbox/dcim/forms/bulk_import.py:1422 -#: netbox/dcim/forms/connections.py:24 netbox/dcim/forms/filtersets.py:131 -#: netbox/dcim/forms/filtersets.py:921 netbox/dcim/forms/filtersets.py:1051 -#: netbox/dcim/forms/filtersets.py:1242 netbox/dcim/forms/filtersets.py:1267 -#: netbox/dcim/forms/filtersets.py:1291 netbox/dcim/forms/filtersets.py:1311 -#: netbox/dcim/forms/filtersets.py:1334 netbox/dcim/forms/filtersets.py:1444 -#: netbox/dcim/forms/filtersets.py:1469 netbox/dcim/forms/filtersets.py:1493 -#: netbox/dcim/forms/filtersets.py:1511 netbox/dcim/forms/filtersets.py:1528 -#: netbox/dcim/forms/filtersets.py:1592 netbox/dcim/forms/filtersets.py:1616 -#: netbox/dcim/forms/filtersets.py:1640 netbox/dcim/forms/model_forms.py:633 -#: netbox/dcim/forms/model_forms.py:849 netbox/dcim/forms/model_forms.py:1208 -#: netbox/dcim/forms/model_forms.py:1664 -#: netbox/dcim/forms/object_create.py:257 netbox/dcim/tables/connections.py:22 -#: netbox/dcim/tables/connections.py:41 netbox/dcim/tables/connections.py:60 -#: netbox/dcim/tables/devices.py:285 netbox/dcim/tables/devices.py:371 -#: netbox/dcim/tables/devices.py:412 netbox/dcim/tables/devices.py:454 -#: netbox/dcim/tables/devices.py:505 netbox/dcim/tables/devices.py:597 -#: netbox/dcim/tables/devices.py:697 netbox/dcim/tables/devices.py:754 -#: netbox/dcim/tables/devices.py:801 netbox/dcim/tables/devices.py:861 -#: netbox/dcim/tables/devices.py:930 netbox/dcim/tables/devices.py:1057 -#: netbox/dcim/tables/modules.py:52 netbox/extras/forms/filtersets.py:321 -#: netbox/ipam/forms/bulk_import.py:304 netbox/ipam/forms/bulk_import.py:481 -#: netbox/ipam/forms/filtersets.py:551 netbox/ipam/forms/model_forms.py:319 -#: netbox/ipam/forms/model_forms.py:679 netbox/ipam/forms/model_forms.py:712 -#: netbox/ipam/forms/model_forms.py:738 netbox/ipam/tables/vlans.py:180 -#: netbox/templates/dcim/consoleport.html:20 -#: netbox/templates/dcim/consoleserverport.html:20 -#: netbox/templates/dcim/device.html:15 netbox/templates/dcim/device.html:130 -#: netbox/templates/dcim/device_edit.html:10 -#: netbox/templates/dcim/devicebay.html:20 -#: netbox/templates/dcim/devicebay.html:48 -#: netbox/templates/dcim/frontport.html:20 -#: netbox/templates/dcim/interface.html:30 -#: netbox/templates/dcim/interface.html:161 -#: netbox/templates/dcim/inventoryitem.html:20 -#: netbox/templates/dcim/module.html:57 -#: netbox/templates/dcim/modulebay.html:20 -#: netbox/templates/dcim/poweroutlet.html:20 -#: netbox/templates/dcim/powerport.html:20 -#: netbox/templates/dcim/rearport.html:20 -#: netbox/templates/dcim/virtualchassis.html:65 -#: netbox/templates/dcim/virtualchassis_edit.html:51 -#: netbox/templates/dcim/virtualdevicecontext.html:22 -#: netbox/templates/virtualization/virtualmachine.html:114 -#: netbox/templates/vpn/tunneltermination.html:23 -#: netbox/templates/wireless/inc/wirelesslink_interface.html:6 -#: netbox/virtualization/filtersets.py:167 -#: netbox/virtualization/forms/bulk_edit.py:137 -#: netbox/virtualization/forms/bulk_import.py:99 -#: netbox/virtualization/forms/filtersets.py:128 -#: netbox/virtualization/forms/model_forms.py:185 -#: netbox/virtualization/tables/virtualmachines.py:71 netbox/vpn/choices.py:44 -#: netbox/vpn/forms/bulk_import.py:86 netbox/vpn/forms/bulk_import.py:283 -#: netbox/vpn/forms/filtersets.py:275 netbox/vpn/forms/model_forms.py:90 -#: netbox/vpn/forms/model_forms.py:125 netbox/vpn/forms/model_forms.py:236 -#: netbox/vpn/forms/model_forms.py:453 netbox/wireless/forms/model_forms.py:99 -#: netbox/wireless/forms/model_forms.py:141 -#: netbox/wireless/tables/wirelesslan.py:75 +#: dcim/forms/bulk_edit.py:728 dcim/forms/bulk_edit.py:1281 +#: dcim/forms/bulk_edit.py:1650 dcim/forms/bulk_edit.py:1696 +#: dcim/forms/bulk_import.py:641 dcim/forms/bulk_import.py:703 +#: dcim/forms/bulk_import.py:729 dcim/forms/bulk_import.py:755 +#: dcim/forms/bulk_import.py:775 dcim/forms/bulk_import.py:828 +#: dcim/forms/bulk_import.py:946 dcim/forms/bulk_import.py:994 +#: dcim/forms/bulk_import.py:1011 dcim/forms/bulk_import.py:1023 +#: dcim/forms/bulk_import.py:1071 dcim/forms/bulk_import.py:1422 +#: dcim/forms/connections.py:24 dcim/forms/filtersets.py:131 +#: dcim/forms/filtersets.py:921 dcim/forms/filtersets.py:1051 +#: dcim/forms/filtersets.py:1242 dcim/forms/filtersets.py:1267 +#: dcim/forms/filtersets.py:1291 dcim/forms/filtersets.py:1311 +#: dcim/forms/filtersets.py:1334 dcim/forms/filtersets.py:1444 +#: dcim/forms/filtersets.py:1469 dcim/forms/filtersets.py:1493 +#: dcim/forms/filtersets.py:1511 dcim/forms/filtersets.py:1528 +#: dcim/forms/filtersets.py:1592 dcim/forms/filtersets.py:1616 +#: dcim/forms/filtersets.py:1640 dcim/forms/model_forms.py:633 +#: dcim/forms/model_forms.py:849 dcim/forms/model_forms.py:1208 +#: dcim/forms/model_forms.py:1664 dcim/forms/object_create.py:257 +#: dcim/tables/connections.py:22 dcim/tables/connections.py:41 +#: dcim/tables/connections.py:60 dcim/tables/devices.py:285 +#: dcim/tables/devices.py:371 dcim/tables/devices.py:412 +#: dcim/tables/devices.py:454 dcim/tables/devices.py:505 +#: dcim/tables/devices.py:597 dcim/tables/devices.py:697 +#: dcim/tables/devices.py:754 dcim/tables/devices.py:801 +#: dcim/tables/devices.py:861 dcim/tables/devices.py:930 +#: dcim/tables/devices.py:1057 dcim/tables/modules.py:52 +#: extras/forms/filtersets.py:321 ipam/forms/bulk_import.py:304 +#: ipam/forms/bulk_import.py:481 ipam/forms/filtersets.py:551 +#: ipam/forms/model_forms.py:319 ipam/forms/model_forms.py:679 +#: ipam/forms/model_forms.py:712 ipam/forms/model_forms.py:738 +#: ipam/tables/vlans.py:180 templates/dcim/consoleport.html:20 +#: templates/dcim/consoleserverport.html:20 templates/dcim/device.html:15 +#: templates/dcim/device.html:130 templates/dcim/device_edit.html:10 +#: templates/dcim/devicebay.html:20 templates/dcim/devicebay.html:48 +#: templates/dcim/frontport.html:20 templates/dcim/interface.html:30 +#: templates/dcim/interface.html:161 templates/dcim/inventoryitem.html:20 +#: templates/dcim/module.html:57 templates/dcim/modulebay.html:20 +#: templates/dcim/poweroutlet.html:20 templates/dcim/powerport.html:20 +#: templates/dcim/rearport.html:20 templates/dcim/virtualchassis.html:65 +#: templates/dcim/virtualchassis_edit.html:51 +#: templates/dcim/virtualdevicecontext.html:22 +#: templates/virtualization/virtualmachine.html:114 +#: templates/vpn/tunneltermination.html:23 +#: templates/wireless/inc/wirelesslink_interface.html:6 +#: virtualization/filtersets.py:167 virtualization/forms/bulk_edit.py:137 +#: virtualization/forms/bulk_import.py:99 +#: virtualization/forms/filtersets.py:128 +#: virtualization/forms/model_forms.py:185 +#: virtualization/tables/virtualmachines.py:71 vpn/choices.py:44 +#: vpn/forms/bulk_import.py:86 vpn/forms/bulk_import.py:283 +#: vpn/forms/filtersets.py:275 vpn/forms/model_forms.py:90 +#: vpn/forms/model_forms.py:125 vpn/forms/model_forms.py:236 +#: vpn/forms/model_forms.py:453 wireless/forms/model_forms.py:99 +#: wireless/forms/model_forms.py:141 wireless/tables/wirelesslan.py:75 msgid "Device" msgstr "Устройство" -#: netbox/dcim/forms/bulk_edit.py:731 -#: netbox/templates/extras/dashboard/widget_config.html:7 -#: netbox/virtualization/forms/bulk_edit.py:191 +#: dcim/forms/bulk_edit.py:731 templates/extras/dashboard/widget_config.html:7 +#: virtualization/forms/bulk_edit.py:191 msgid "Configuration" msgstr "Конфигурация" -#: netbox/dcim/forms/bulk_edit.py:745 netbox/dcim/forms/bulk_import.py:653 -#: netbox/dcim/forms/model_forms.py:647 netbox/dcim/forms/model_forms.py:897 +#: dcim/forms/bulk_edit.py:745 dcim/forms/bulk_import.py:653 +#: dcim/forms/model_forms.py:647 dcim/forms/model_forms.py:897 msgid "Module type" msgstr "Тип модуля" -#: netbox/dcim/forms/bulk_edit.py:799 netbox/dcim/forms/bulk_edit.py:984 -#: netbox/dcim/forms/bulk_edit.py:1003 netbox/dcim/forms/bulk_edit.py:1026 -#: netbox/dcim/forms/bulk_edit.py:1068 netbox/dcim/forms/bulk_edit.py:1112 -#: netbox/dcim/forms/bulk_edit.py:1163 netbox/dcim/forms/bulk_edit.py:1190 -#: netbox/dcim/forms/bulk_edit.py:1217 netbox/dcim/forms/bulk_edit.py:1235 -#: netbox/dcim/forms/bulk_edit.py:1253 netbox/dcim/forms/filtersets.py:67 -#: netbox/dcim/forms/object_create.py:46 netbox/templates/dcim/cable.html:32 -#: netbox/templates/dcim/consoleport.html:32 -#: netbox/templates/dcim/consoleserverport.html:32 -#: netbox/templates/dcim/devicebay.html:28 -#: netbox/templates/dcim/frontport.html:32 -#: netbox/templates/dcim/inc/panels/inventory_items.html:19 -#: netbox/templates/dcim/interface.html:42 -#: netbox/templates/dcim/inventoryitem.html:32 -#: netbox/templates/dcim/modulebay.html:34 -#: netbox/templates/dcim/poweroutlet.html:32 -#: netbox/templates/dcim/powerport.html:32 -#: netbox/templates/dcim/rearport.html:32 -#: netbox/templates/extras/customfield.html:26 -#: netbox/templates/generic/bulk_import.html:162 +#: dcim/forms/bulk_edit.py:799 dcim/forms/bulk_edit.py:984 +#: dcim/forms/bulk_edit.py:1003 dcim/forms/bulk_edit.py:1026 +#: dcim/forms/bulk_edit.py:1068 dcim/forms/bulk_edit.py:1112 +#: dcim/forms/bulk_edit.py:1163 dcim/forms/bulk_edit.py:1190 +#: dcim/forms/bulk_edit.py:1217 dcim/forms/bulk_edit.py:1235 +#: dcim/forms/bulk_edit.py:1253 dcim/forms/filtersets.py:67 +#: dcim/forms/object_create.py:46 templates/dcim/cable.html:32 +#: templates/dcim/consoleport.html:32 templates/dcim/consoleserverport.html:32 +#: templates/dcim/devicebay.html:28 templates/dcim/frontport.html:32 +#: templates/dcim/inc/panels/inventory_items.html:19 +#: templates/dcim/interface.html:42 templates/dcim/inventoryitem.html:32 +#: templates/dcim/modulebay.html:34 templates/dcim/poweroutlet.html:32 +#: templates/dcim/powerport.html:32 templates/dcim/rearport.html:32 +#: templates/extras/customfield.html:26 templates/generic/bulk_import.html:162 msgid "Label" msgstr "Лейбл" -#: netbox/dcim/forms/bulk_edit.py:808 netbox/dcim/forms/filtersets.py:1068 -#: netbox/templates/dcim/cable.html:50 +#: dcim/forms/bulk_edit.py:808 dcim/forms/filtersets.py:1068 +#: templates/dcim/cable.html:50 msgid "Length" msgstr "Длина" -#: netbox/dcim/forms/bulk_edit.py:813 netbox/dcim/forms/bulk_import.py:1226 -#: netbox/dcim/forms/bulk_import.py:1229 netbox/dcim/forms/filtersets.py:1072 +#: dcim/forms/bulk_edit.py:813 dcim/forms/bulk_import.py:1226 +#: dcim/forms/bulk_import.py:1229 dcim/forms/filtersets.py:1072 msgid "Length unit" msgstr "Единица длины" -#: netbox/dcim/forms/bulk_edit.py:837 -#: netbox/templates/dcim/virtualchassis.html:23 +#: dcim/forms/bulk_edit.py:837 templates/dcim/virtualchassis.html:23 msgid "Domain" msgstr "Домен" -#: netbox/dcim/forms/bulk_edit.py:905 netbox/dcim/forms/bulk_import.py:1345 -#: netbox/dcim/forms/filtersets.py:1158 netbox/dcim/forms/model_forms.py:750 +#: dcim/forms/bulk_edit.py:905 dcim/forms/bulk_import.py:1345 +#: dcim/forms/filtersets.py:1158 dcim/forms/model_forms.py:750 msgid "Power panel" msgstr "Панель питания" -#: netbox/dcim/forms/bulk_edit.py:927 netbox/dcim/forms/bulk_import.py:1381 -#: netbox/dcim/forms/filtersets.py:1180 -#: netbox/templates/dcim/powerfeed.html:83 +#: dcim/forms/bulk_edit.py:927 dcim/forms/bulk_import.py:1381 +#: dcim/forms/filtersets.py:1180 templates/dcim/powerfeed.html:83 msgid "Supply" msgstr "Снабжение" -#: netbox/dcim/forms/bulk_edit.py:933 netbox/dcim/forms/bulk_import.py:1386 -#: netbox/dcim/forms/filtersets.py:1185 -#: netbox/templates/dcim/powerfeed.html:95 +#: dcim/forms/bulk_edit.py:933 dcim/forms/bulk_import.py:1386 +#: dcim/forms/filtersets.py:1185 templates/dcim/powerfeed.html:95 msgid "Phase" msgstr "Фаза" -#: netbox/dcim/forms/bulk_edit.py:939 netbox/dcim/forms/filtersets.py:1190 -#: netbox/templates/dcim/powerfeed.html:87 +#: dcim/forms/bulk_edit.py:939 dcim/forms/filtersets.py:1190 +#: templates/dcim/powerfeed.html:87 msgid "Voltage" msgstr "Напряжение" -#: netbox/dcim/forms/bulk_edit.py:943 netbox/dcim/forms/filtersets.py:1194 -#: netbox/templates/dcim/powerfeed.html:91 +#: dcim/forms/bulk_edit.py:943 dcim/forms/filtersets.py:1194 +#: templates/dcim/powerfeed.html:91 msgid "Amperage" msgstr "Сила тока" -#: netbox/dcim/forms/bulk_edit.py:947 netbox/dcim/forms/filtersets.py:1198 +#: dcim/forms/bulk_edit.py:947 dcim/forms/filtersets.py:1198 msgid "Max utilization" msgstr "Максимальное использование" -#: netbox/dcim/forms/bulk_edit.py:1036 +#: dcim/forms/bulk_edit.py:1036 msgid "Maximum draw" msgstr "Максимальное потребление" -#: netbox/dcim/forms/bulk_edit.py:1039 -#: netbox/dcim/models/device_component_templates.py:282 -#: netbox/dcim/models/device_components.py:356 +#: dcim/forms/bulk_edit.py:1039 dcim/models/device_component_templates.py:282 +#: dcim/models/device_components.py:356 msgid "Maximum power draw (watts)" msgstr "Максимальная потребляемая мощность (Вт)" -#: netbox/dcim/forms/bulk_edit.py:1042 +#: dcim/forms/bulk_edit.py:1042 msgid "Allocated draw" msgstr "Выделенная мощность" -#: netbox/dcim/forms/bulk_edit.py:1045 -#: netbox/dcim/models/device_component_templates.py:289 -#: netbox/dcim/models/device_components.py:363 +#: dcim/forms/bulk_edit.py:1045 dcim/models/device_component_templates.py:289 +#: dcim/models/device_components.py:363 msgid "Allocated power draw (watts)" msgstr "Распределенная потребляемая мощность (Вт)" -#: netbox/dcim/forms/bulk_edit.py:1078 netbox/dcim/forms/bulk_import.py:786 -#: netbox/dcim/forms/model_forms.py:953 netbox/dcim/forms/model_forms.py:1278 -#: netbox/dcim/forms/model_forms.py:1567 netbox/dcim/forms/object_import.py:55 +#: dcim/forms/bulk_edit.py:1078 dcim/forms/bulk_import.py:786 +#: dcim/forms/model_forms.py:953 dcim/forms/model_forms.py:1278 +#: dcim/forms/model_forms.py:1567 dcim/forms/object_import.py:55 msgid "Power port" msgstr "Порт питания" -#: netbox/dcim/forms/bulk_edit.py:1083 netbox/dcim/forms/bulk_import.py:793 +#: dcim/forms/bulk_edit.py:1083 dcim/forms/bulk_import.py:793 msgid "Feed leg" msgstr "Фаза электропитания" -#: netbox/dcim/forms/bulk_edit.py:1129 netbox/dcim/forms/bulk_edit.py:1440 +#: dcim/forms/bulk_edit.py:1129 dcim/forms/bulk_edit.py:1440 msgid "Management only" msgstr "Только управление" -#: netbox/dcim/forms/bulk_edit.py:1139 netbox/dcim/forms/bulk_edit.py:1446 -#: netbox/dcim/forms/bulk_import.py:876 netbox/dcim/forms/filtersets.py:1394 -#: netbox/dcim/forms/object_import.py:90 -#: netbox/dcim/models/device_component_templates.py:437 -#: netbox/dcim/models/device_components.py:670 +#: dcim/forms/bulk_edit.py:1139 dcim/forms/bulk_edit.py:1446 +#: dcim/forms/bulk_import.py:876 dcim/forms/filtersets.py:1394 +#: dcim/forms/object_import.py:90 +#: dcim/models/device_component_templates.py:437 +#: dcim/models/device_components.py:670 msgid "PoE mode" msgstr "Режим PoE" -#: netbox/dcim/forms/bulk_edit.py:1145 netbox/dcim/forms/bulk_edit.py:1452 -#: netbox/dcim/forms/bulk_import.py:882 netbox/dcim/forms/filtersets.py:1399 -#: netbox/dcim/forms/object_import.py:95 -#: netbox/dcim/models/device_component_templates.py:443 -#: netbox/dcim/models/device_components.py:676 +#: dcim/forms/bulk_edit.py:1145 dcim/forms/bulk_edit.py:1452 +#: dcim/forms/bulk_import.py:882 dcim/forms/filtersets.py:1399 +#: dcim/forms/object_import.py:95 +#: dcim/models/device_component_templates.py:443 +#: dcim/models/device_components.py:676 msgid "PoE type" msgstr "Тип PoE" -#: netbox/dcim/forms/bulk_edit.py:1151 netbox/dcim/forms/filtersets.py:1404 -#: netbox/dcim/forms/object_import.py:100 +#: dcim/forms/bulk_edit.py:1151 dcim/forms/filtersets.py:1404 +#: dcim/forms/object_import.py:100 msgid "Wireless role" msgstr "Роль беспроводной связи" -#: netbox/dcim/forms/bulk_edit.py:1288 netbox/dcim/forms/model_forms.py:669 -#: netbox/dcim/forms/model_forms.py:1223 netbox/dcim/tables/devices.py:313 -#: netbox/templates/dcim/consoleport.html:24 -#: netbox/templates/dcim/consoleserverport.html:24 -#: netbox/templates/dcim/frontport.html:24 -#: netbox/templates/dcim/interface.html:34 -#: netbox/templates/dcim/module.html:54 -#: netbox/templates/dcim/modulebay.html:26 -#: netbox/templates/dcim/modulebay.html:58 -#: netbox/templates/dcim/poweroutlet.html:24 -#: netbox/templates/dcim/powerport.html:24 -#: netbox/templates/dcim/rearport.html:24 +#: dcim/forms/bulk_edit.py:1288 dcim/forms/model_forms.py:669 +#: dcim/forms/model_forms.py:1223 dcim/tables/devices.py:313 +#: templates/dcim/consoleport.html:24 templates/dcim/consoleserverport.html:24 +#: templates/dcim/frontport.html:24 templates/dcim/interface.html:34 +#: templates/dcim/module.html:54 templates/dcim/modulebay.html:26 +#: templates/dcim/modulebay.html:58 templates/dcim/poweroutlet.html:24 +#: templates/dcim/powerport.html:24 templates/dcim/rearport.html:24 msgid "Module" msgstr "Модуль" -#: netbox/dcim/forms/bulk_edit.py:1420 netbox/dcim/tables/devices.py:665 -#: netbox/templates/dcim/interface.html:110 +#: dcim/forms/bulk_edit.py:1420 dcim/tables/devices.py:665 +#: templates/dcim/interface.html:110 msgid "LAG" msgstr "LAG" -#: netbox/dcim/forms/bulk_edit.py:1425 netbox/dcim/forms/model_forms.py:1305 +#: dcim/forms/bulk_edit.py:1425 dcim/forms/model_forms.py:1305 msgid "Virtual device contexts" msgstr "Виртуальные контексты" -#: netbox/dcim/forms/bulk_edit.py:1431 netbox/dcim/forms/bulk_import.py:714 -#: netbox/dcim/forms/bulk_import.py:740 netbox/dcim/forms/filtersets.py:1252 -#: netbox/dcim/forms/filtersets.py:1277 netbox/dcim/forms/filtersets.py:1358 -#: netbox/dcim/tables/devices.py:610 -#: netbox/templates/circuits/inc/circuit_termination_fields.html:67 -#: netbox/templates/dcim/consoleport.html:40 -#: netbox/templates/dcim/consoleserverport.html:40 +#: dcim/forms/bulk_edit.py:1431 dcim/forms/bulk_import.py:714 +#: dcim/forms/bulk_import.py:740 dcim/forms/filtersets.py:1252 +#: dcim/forms/filtersets.py:1277 dcim/forms/filtersets.py:1358 +#: dcim/tables/devices.py:610 +#: templates/circuits/inc/circuit_termination_fields.html:67 +#: templates/dcim/consoleport.html:40 templates/dcim/consoleserverport.html:40 msgid "Speed" msgstr "Скорость" -#: netbox/dcim/forms/bulk_edit.py:1460 netbox/dcim/forms/bulk_import.py:885 -#: netbox/templates/vpn/ikepolicy.html:25 -#: netbox/templates/vpn/ipsecprofile.html:21 -#: netbox/templates/vpn/ipsecprofile.html:48 -#: netbox/virtualization/forms/bulk_edit.py:233 -#: netbox/virtualization/forms/bulk_import.py:165 -#: netbox/vpn/forms/bulk_edit.py:146 netbox/vpn/forms/bulk_edit.py:232 -#: netbox/vpn/forms/bulk_import.py:176 netbox/vpn/forms/bulk_import.py:234 -#: netbox/vpn/forms/filtersets.py:135 netbox/vpn/forms/filtersets.py:178 -#: netbox/vpn/forms/filtersets.py:192 netbox/vpn/tables/crypto.py:64 -#: netbox/vpn/tables/crypto.py:162 +#: dcim/forms/bulk_edit.py:1460 dcim/forms/bulk_import.py:885 +#: templates/vpn/ikepolicy.html:25 templates/vpn/ipsecprofile.html:21 +#: templates/vpn/ipsecprofile.html:48 virtualization/forms/bulk_edit.py:233 +#: virtualization/forms/bulk_import.py:165 vpn/forms/bulk_edit.py:146 +#: vpn/forms/bulk_edit.py:232 vpn/forms/bulk_import.py:176 +#: vpn/forms/bulk_import.py:234 vpn/forms/filtersets.py:135 +#: vpn/forms/filtersets.py:178 vpn/forms/filtersets.py:192 +#: vpn/tables/crypto.py:64 vpn/tables/crypto.py:162 msgid "Mode" msgstr "Режим" -#: netbox/dcim/forms/bulk_edit.py:1468 netbox/dcim/forms/model_forms.py:1354 -#: netbox/ipam/forms/bulk_import.py:178 netbox/ipam/forms/filtersets.py:498 -#: netbox/ipam/models/vlans.py:84 netbox/virtualization/forms/bulk_edit.py:240 -#: netbox/virtualization/forms/model_forms.py:321 +#: dcim/forms/bulk_edit.py:1468 dcim/forms/model_forms.py:1354 +#: ipam/forms/bulk_import.py:178 ipam/forms/filtersets.py:498 +#: ipam/models/vlans.py:84 virtualization/forms/bulk_edit.py:240 +#: virtualization/forms/model_forms.py:321 msgid "VLAN group" msgstr "Группа VLAN" -#: netbox/dcim/forms/bulk_edit.py:1476 netbox/dcim/forms/model_forms.py:1360 -#: netbox/dcim/tables/devices.py:579 -#: netbox/virtualization/forms/bulk_edit.py:248 -#: netbox/virtualization/forms/model_forms.py:326 +#: dcim/forms/bulk_edit.py:1476 dcim/forms/model_forms.py:1360 +#: dcim/tables/devices.py:579 virtualization/forms/bulk_edit.py:248 +#: virtualization/forms/model_forms.py:326 msgid "Untagged VLAN" msgstr "VLAN без тегов" -#: netbox/dcim/forms/bulk_edit.py:1484 netbox/dcim/forms/model_forms.py:1369 -#: netbox/dcim/tables/devices.py:585 -#: netbox/virtualization/forms/bulk_edit.py:256 -#: netbox/virtualization/forms/model_forms.py:335 +#: dcim/forms/bulk_edit.py:1484 dcim/forms/model_forms.py:1369 +#: dcim/tables/devices.py:585 virtualization/forms/bulk_edit.py:256 +#: virtualization/forms/model_forms.py:335 msgid "Tagged VLANs" msgstr "VLAN с тегами" -#: netbox/dcim/forms/bulk_edit.py:1494 netbox/dcim/forms/model_forms.py:1341 +#: dcim/forms/bulk_edit.py:1494 dcim/forms/model_forms.py:1341 msgid "Wireless LAN group" msgstr "Беспроводная группа LAN" -#: netbox/dcim/forms/bulk_edit.py:1499 netbox/dcim/forms/model_forms.py:1346 -#: netbox/dcim/tables/devices.py:619 netbox/netbox/navigation/menu.py:146 -#: netbox/templates/dcim/interface.html:280 -#: netbox/wireless/tables/wirelesslan.py:24 +#: dcim/forms/bulk_edit.py:1499 dcim/forms/model_forms.py:1346 +#: dcim/tables/devices.py:619 netbox/navigation/menu.py:146 +#: templates/dcim/interface.html:280 wireless/tables/wirelesslan.py:24 msgid "Wireless LANs" msgstr "Беспроводные LANы" -#: netbox/dcim/forms/bulk_edit.py:1508 netbox/dcim/forms/filtersets.py:1328 -#: netbox/dcim/forms/model_forms.py:1390 netbox/ipam/forms/bulk_edit.py:285 -#: netbox/ipam/forms/bulk_edit.py:377 netbox/ipam/forms/filtersets.py:169 -#: netbox/templates/dcim/interface.html:122 -#: netbox/templates/ipam/prefix.html:95 -#: netbox/virtualization/forms/model_forms.py:349 +#: dcim/forms/bulk_edit.py:1508 dcim/forms/filtersets.py:1328 +#: dcim/forms/model_forms.py:1390 ipam/forms/bulk_edit.py:286 +#: ipam/forms/bulk_edit.py:378 ipam/forms/filtersets.py:169 +#: templates/dcim/interface.html:122 templates/ipam/prefix.html:95 +#: virtualization/forms/model_forms.py:349 msgid "Addressing" msgstr "Адресация" -#: netbox/dcim/forms/bulk_edit.py:1509 netbox/dcim/forms/filtersets.py:720 -#: netbox/dcim/forms/model_forms.py:1391 -#: netbox/virtualization/forms/model_forms.py:350 +#: dcim/forms/bulk_edit.py:1509 dcim/forms/filtersets.py:720 +#: dcim/forms/model_forms.py:1391 virtualization/forms/model_forms.py:350 msgid "Operation" msgstr "Операция" -#: netbox/dcim/forms/bulk_edit.py:1510 netbox/dcim/forms/filtersets.py:1329 -#: netbox/dcim/forms/model_forms.py:987 netbox/dcim/forms/model_forms.py:1393 +#: dcim/forms/bulk_edit.py:1510 dcim/forms/filtersets.py:1329 +#: dcim/forms/model_forms.py:987 dcim/forms/model_forms.py:1393 msgid "PoE" msgstr "PoE" -#: netbox/dcim/forms/bulk_edit.py:1511 netbox/dcim/forms/model_forms.py:1392 -#: netbox/templates/dcim/interface.html:99 -#: netbox/virtualization/forms/bulk_edit.py:267 -#: netbox/virtualization/forms/model_forms.py:351 +#: dcim/forms/bulk_edit.py:1511 dcim/forms/model_forms.py:1392 +#: templates/dcim/interface.html:99 virtualization/forms/bulk_edit.py:267 +#: virtualization/forms/model_forms.py:351 msgid "Related Interfaces" msgstr "Связанные интерфейсы" -#: netbox/dcim/forms/bulk_edit.py:1512 netbox/dcim/forms/model_forms.py:1394 -#: netbox/virtualization/forms/bulk_edit.py:268 -#: netbox/virtualization/forms/model_forms.py:352 +#: dcim/forms/bulk_edit.py:1512 dcim/forms/model_forms.py:1394 +#: virtualization/forms/bulk_edit.py:268 +#: virtualization/forms/model_forms.py:352 msgid "802.1Q Switching" msgstr "Коммутация 802.1Q" -#: netbox/dcim/forms/bulk_edit.py:1574 netbox/dcim/forms/bulk_edit.py:1576 +#: dcim/forms/bulk_edit.py:1574 dcim/forms/bulk_edit.py:1576 msgid "Interface mode must be specified to assign VLANs" msgstr "Для назначения VLAN необходимо указать режим интерфейса" -#: netbox/dcim/forms/bulk_edit.py:1581 netbox/dcim/forms/common.py:50 +#: dcim/forms/bulk_edit.py:1581 dcim/forms/common.py:50 msgid "An access interface cannot have tagged VLANs assigned." msgstr "Интерфейсу доступа нельзя назначать VLAN с тегами." -#: netbox/dcim/forms/bulk_import.py:64 +#: dcim/forms/bulk_import.py:64 msgid "Name of parent region" msgstr "Название родительского региона" -#: netbox/dcim/forms/bulk_import.py:78 +#: dcim/forms/bulk_import.py:78 msgid "Name of parent site group" msgstr "Имя родительской группы сайтов" -#: netbox/dcim/forms/bulk_import.py:97 +#: dcim/forms/bulk_import.py:97 msgid "Assigned region" msgstr "Назначенный регион" -#: netbox/dcim/forms/bulk_import.py:104 netbox/tenancy/forms/bulk_import.py:44 -#: netbox/tenancy/forms/bulk_import.py:85 -#: netbox/wireless/forms/bulk_import.py:40 +#: dcim/forms/bulk_import.py:104 tenancy/forms/bulk_import.py:44 +#: tenancy/forms/bulk_import.py:85 wireless/forms/bulk_import.py:40 msgid "Assigned group" msgstr "Назначенная группа" -#: netbox/dcim/forms/bulk_import.py:123 +#: dcim/forms/bulk_import.py:123 msgid "available options" msgstr "доступные опции" -#: netbox/dcim/forms/bulk_import.py:134 netbox/dcim/forms/bulk_import.py:543 -#: netbox/dcim/forms/bulk_import.py:1342 netbox/ipam/forms/bulk_import.py:175 -#: netbox/ipam/forms/bulk_import.py:433 -#: netbox/virtualization/forms/bulk_import.py:63 -#: netbox/virtualization/forms/bulk_import.py:89 +#: dcim/forms/bulk_import.py:134 dcim/forms/bulk_import.py:543 +#: dcim/forms/bulk_import.py:1342 ipam/forms/bulk_import.py:175 +#: ipam/forms/bulk_import.py:433 virtualization/forms/bulk_import.py:63 +#: virtualization/forms/bulk_import.py:89 msgid "Assigned site" msgstr "Назначенное место" -#: netbox/dcim/forms/bulk_import.py:141 +#: dcim/forms/bulk_import.py:141 msgid "Parent location" msgstr "Родительская локация" -#: netbox/dcim/forms/bulk_import.py:143 +#: dcim/forms/bulk_import.py:143 msgid "Location not found." msgstr "Локация не найдена." -#: netbox/dcim/forms/bulk_import.py:185 +#: dcim/forms/bulk_import.py:185 msgid "The manufacturer of this rack type" msgstr "Производитель этого типа стоек" -#: netbox/dcim/forms/bulk_import.py:196 +#: dcim/forms/bulk_import.py:196 msgid "The lowest-numbered position in the rack" msgstr "Позиция с наименьшим юнитом в стойке" -#: netbox/dcim/forms/bulk_import.py:201 netbox/dcim/forms/bulk_import.py:268 +#: dcim/forms/bulk_import.py:201 dcim/forms/bulk_import.py:268 msgid "Rail-to-rail width (in inches)" msgstr "Ширина от рельса до рельса (в дюймах)" -#: netbox/dcim/forms/bulk_import.py:207 netbox/dcim/forms/bulk_import.py:274 +#: dcim/forms/bulk_import.py:207 dcim/forms/bulk_import.py:274 msgid "Unit for outer dimensions" msgstr "Единица измерения внешних размеров" -#: netbox/dcim/forms/bulk_import.py:213 netbox/dcim/forms/bulk_import.py:286 +#: dcim/forms/bulk_import.py:213 dcim/forms/bulk_import.py:286 msgid "Unit for rack weights" msgstr "Единица измерения веса стойки" -#: netbox/dcim/forms/bulk_import.py:245 +#: dcim/forms/bulk_import.py:245 msgid "Name of assigned tenant" msgstr "Имя назначенного арендатора" -#: netbox/dcim/forms/bulk_import.py:257 +#: dcim/forms/bulk_import.py:257 msgid "Name of assigned role" msgstr "Название назначенной роли" -#: netbox/dcim/forms/bulk_import.py:280 netbox/dcim/forms/bulk_import.py:413 -#: netbox/dcim/forms/bulk_import.py:583 +#: dcim/forms/bulk_import.py:280 dcim/forms/bulk_import.py:413 +#: dcim/forms/bulk_import.py:583 msgid "Airflow direction" msgstr "Направление воздушного потока" -#: netbox/dcim/forms/bulk_import.py:312 +#: dcim/forms/bulk_import.py:312 msgid "Parent site" msgstr "Родительское место" -#: netbox/dcim/forms/bulk_import.py:319 netbox/dcim/forms/bulk_import.py:1355 +#: dcim/forms/bulk_import.py:319 dcim/forms/bulk_import.py:1355 msgid "Rack's location (if any)" msgstr "Локация стойки (если есть)" -#: netbox/dcim/forms/bulk_import.py:328 netbox/dcim/forms/model_forms.py:311 -#: netbox/dcim/tables/racks.py:222 -#: netbox/templates/dcim/rackreservation.html:12 -#: netbox/templates/dcim/rackreservation.html:45 +#: dcim/forms/bulk_import.py:328 dcim/forms/model_forms.py:311 +#: dcim/tables/racks.py:222 templates/dcim/rackreservation.html:12 +#: templates/dcim/rackreservation.html:45 msgid "Units" msgstr "Единицы" -#: netbox/dcim/forms/bulk_import.py:331 +#: dcim/forms/bulk_import.py:331 msgid "Comma-separated list of individual unit numbers" msgstr "Список отдельных номеров объектов, разделенных запятыми" -#: netbox/dcim/forms/bulk_import.py:374 +#: dcim/forms/bulk_import.py:374 msgid "The manufacturer which produces this device type" msgstr "Производитель, выпускающий этот тип устройства" -#: netbox/dcim/forms/bulk_import.py:381 +#: dcim/forms/bulk_import.py:381 msgid "The default platform for devices of this type (optional)" msgstr "Платформа по умолчанию для устройств этого типа (опционально)" -#: netbox/dcim/forms/bulk_import.py:386 +#: dcim/forms/bulk_import.py:386 msgid "Device weight" msgstr "Вес устройства" -#: netbox/dcim/forms/bulk_import.py:392 +#: dcim/forms/bulk_import.py:392 msgid "Unit for device weight" msgstr "Единица измерения веса устройства" -#: netbox/dcim/forms/bulk_import.py:418 +#: dcim/forms/bulk_import.py:418 msgid "Module weight" msgstr "Вес модуля" -#: netbox/dcim/forms/bulk_import.py:424 +#: dcim/forms/bulk_import.py:424 msgid "Unit for module weight" msgstr "Единица измерения веса модуля" -#: netbox/dcim/forms/bulk_import.py:454 +#: dcim/forms/bulk_import.py:454 msgid "Limit platform assignments to this manufacturer" msgstr "Ограничьте назначение платформ этим производителем" -#: netbox/dcim/forms/bulk_import.py:476 netbox/dcim/forms/bulk_import.py:1425 -#: netbox/tenancy/forms/bulk_import.py:106 +#: dcim/forms/bulk_import.py:476 dcim/forms/bulk_import.py:1425 +#: tenancy/forms/bulk_import.py:106 msgid "Assigned role" msgstr "Назначенная роль" -#: netbox/dcim/forms/bulk_import.py:489 +#: dcim/forms/bulk_import.py:489 msgid "Device type manufacturer" msgstr "Производитель типа устройства" -#: netbox/dcim/forms/bulk_import.py:495 +#: dcim/forms/bulk_import.py:495 msgid "Device type model" msgstr "Модель типа устройства" -#: netbox/dcim/forms/bulk_import.py:502 -#: netbox/virtualization/forms/bulk_import.py:126 +#: dcim/forms/bulk_import.py:502 virtualization/forms/bulk_import.py:126 msgid "Assigned platform" msgstr "Назначенная платформа" -#: netbox/dcim/forms/bulk_import.py:510 netbox/dcim/forms/bulk_import.py:514 -#: netbox/dcim/forms/model_forms.py:536 +#: dcim/forms/bulk_import.py:510 dcim/forms/bulk_import.py:514 +#: dcim/forms/model_forms.py:536 msgid "Virtual chassis" msgstr "Виртуальное шасси" -#: netbox/dcim/forms/bulk_import.py:517 netbox/dcim/forms/filtersets.py:728 -#: netbox/dcim/forms/filtersets.py:898 netbox/dcim/forms/model_forms.py:522 -#: netbox/dcim/tables/devices.py:202 netbox/extras/filtersets.py:596 -#: netbox/extras/forms/filtersets.py:322 netbox/ipam/forms/bulk_edit.py:482 -#: netbox/ipam/forms/filtersets.py:415 netbox/ipam/forms/filtersets.py:447 -#: netbox/templates/dcim/device.html:239 -#: netbox/templates/virtualization/cluster.html:10 -#: netbox/templates/virtualization/virtualmachine.html:92 -#: netbox/templates/virtualization/virtualmachine.html:101 -#: netbox/virtualization/filtersets.py:157 -#: netbox/virtualization/filtersets.py:277 -#: netbox/virtualization/forms/bulk_edit.py:129 -#: netbox/virtualization/forms/bulk_import.py:92 -#: netbox/virtualization/forms/filtersets.py:99 -#: netbox/virtualization/forms/filtersets.py:123 -#: netbox/virtualization/forms/filtersets.py:204 -#: netbox/virtualization/forms/model_forms.py:79 -#: netbox/virtualization/forms/model_forms.py:176 -#: netbox/virtualization/tables/virtualmachines.py:67 +#: dcim/forms/bulk_import.py:517 dcim/forms/filtersets.py:728 +#: dcim/forms/filtersets.py:898 dcim/forms/model_forms.py:522 +#: dcim/tables/devices.py:202 extras/filtersets.py:596 +#: extras/forms/filtersets.py:322 ipam/forms/filtersets.py:415 +#: ipam/forms/filtersets.py:447 templates/dcim/device.html:239 +#: templates/virtualization/cluster.html:10 +#: templates/virtualization/virtualmachine.html:92 +#: templates/virtualization/virtualmachine.html:101 +#: virtualization/filtersets.py:157 virtualization/filtersets.py:277 +#: virtualization/forms/bulk_edit.py:129 +#: virtualization/forms/bulk_import.py:92 +#: virtualization/forms/filtersets.py:99 +#: virtualization/forms/filtersets.py:123 +#: virtualization/forms/filtersets.py:204 +#: virtualization/forms/model_forms.py:79 +#: virtualization/forms/model_forms.py:176 +#: virtualization/tables/virtualmachines.py:67 msgid "Cluster" msgstr "Кластер" -#: netbox/dcim/forms/bulk_import.py:521 +#: dcim/forms/bulk_import.py:521 msgid "Virtualization cluster" msgstr "Кластер виртуализации" -#: netbox/dcim/forms/bulk_import.py:550 +#: dcim/forms/bulk_import.py:550 msgid "Assigned location (if any)" msgstr "Назначенная локация (если есть)" -#: netbox/dcim/forms/bulk_import.py:557 +#: dcim/forms/bulk_import.py:557 msgid "Assigned rack (if any)" msgstr "Назначенная стойка (если есть)" -#: netbox/dcim/forms/bulk_import.py:560 +#: dcim/forms/bulk_import.py:560 msgid "Face" msgstr "Лицевая сторона" -#: netbox/dcim/forms/bulk_import.py:563 +#: dcim/forms/bulk_import.py:563 msgid "Mounted rack face" msgstr "Сторона монтажа в стойке" -#: netbox/dcim/forms/bulk_import.py:570 +#: dcim/forms/bulk_import.py:570 msgid "Parent device (for child devices)" msgstr "Родительское устройство (для дочерних устройств)" -#: netbox/dcim/forms/bulk_import.py:573 +#: dcim/forms/bulk_import.py:573 msgid "Device bay" msgstr "Отсек для устройств" -#: netbox/dcim/forms/bulk_import.py:577 +#: dcim/forms/bulk_import.py:577 msgid "Device bay in which this device is installed (for child devices)" msgstr "" "Отсек для устройств, в котором установлено данное устройство (для детских " "устройств)" -#: netbox/dcim/forms/bulk_import.py:644 +#: dcim/forms/bulk_import.py:644 msgid "The device in which this module is installed" msgstr "Устройство, в котором установлен данный модуль" -#: netbox/dcim/forms/bulk_import.py:647 netbox/dcim/forms/model_forms.py:640 +#: dcim/forms/bulk_import.py:647 dcim/forms/model_forms.py:640 msgid "Module bay" msgstr "Отсек для модулей" -#: netbox/dcim/forms/bulk_import.py:650 +#: dcim/forms/bulk_import.py:650 msgid "The module bay in which this module is installed" msgstr "Отсек для модулей, в котором установлен данный модуль" -#: netbox/dcim/forms/bulk_import.py:656 +#: dcim/forms/bulk_import.py:656 msgid "The type of module" msgstr "Тип модуля" -#: netbox/dcim/forms/bulk_import.py:664 netbox/dcim/forms/model_forms.py:656 +#: dcim/forms/bulk_import.py:664 dcim/forms/model_forms.py:656 msgid "Replicate components" msgstr "Репликация компонентов" -#: netbox/dcim/forms/bulk_import.py:666 +#: dcim/forms/bulk_import.py:666 msgid "" "Automatically populate components associated with this module type (enabled " "by default)" @@ -4344,269 +3951,262 @@ msgstr "" "Автоматическое заполнение компонентов, связанных с этим типом модуля " "(включено по умолчанию)" -#: netbox/dcim/forms/bulk_import.py:669 netbox/dcim/forms/model_forms.py:662 +#: dcim/forms/bulk_import.py:669 dcim/forms/model_forms.py:662 msgid "Adopt components" msgstr "Принять компоненты" -#: netbox/dcim/forms/bulk_import.py:671 netbox/dcim/forms/model_forms.py:665 +#: dcim/forms/bulk_import.py:671 dcim/forms/model_forms.py:665 msgid "Adopt already existing components" msgstr "Используйте уже существующие компоненты" -#: netbox/dcim/forms/bulk_import.py:711 netbox/dcim/forms/bulk_import.py:737 -#: netbox/dcim/forms/bulk_import.py:763 +#: dcim/forms/bulk_import.py:711 dcim/forms/bulk_import.py:737 +#: dcim/forms/bulk_import.py:763 msgid "Port type" msgstr "Тип порта" -#: netbox/dcim/forms/bulk_import.py:719 netbox/dcim/forms/bulk_import.py:745 +#: dcim/forms/bulk_import.py:719 dcim/forms/bulk_import.py:745 msgid "Port speed in bps" msgstr "Скорость порта в бит/с" -#: netbox/dcim/forms/bulk_import.py:783 +#: dcim/forms/bulk_import.py:783 msgid "Outlet type" msgstr "Тип розетки" -#: netbox/dcim/forms/bulk_import.py:790 +#: dcim/forms/bulk_import.py:790 msgid "Local power port which feeds this outlet" msgstr "Локальный порт питания, питающий эту розетку" -#: netbox/dcim/forms/bulk_import.py:796 +#: dcim/forms/bulk_import.py:796 msgid "Electrical phase (for three-phase circuits)" msgstr "Электрическая фаза (для трехфазных цепей)" -#: netbox/dcim/forms/bulk_import.py:837 netbox/dcim/forms/model_forms.py:1316 -#: netbox/virtualization/forms/bulk_import.py:155 -#: netbox/virtualization/forms/model_forms.py:305 +#: dcim/forms/bulk_import.py:837 dcim/forms/model_forms.py:1316 +#: virtualization/forms/bulk_import.py:155 +#: virtualization/forms/model_forms.py:305 msgid "Parent interface" msgstr "Родительский интерфейс" -#: netbox/dcim/forms/bulk_import.py:844 netbox/dcim/forms/model_forms.py:1324 -#: netbox/virtualization/forms/bulk_import.py:162 -#: netbox/virtualization/forms/model_forms.py:313 +#: dcim/forms/bulk_import.py:844 dcim/forms/model_forms.py:1324 +#: virtualization/forms/bulk_import.py:162 +#: virtualization/forms/model_forms.py:313 msgid "Bridged interface" msgstr "Мостовой интерфейс" -#: netbox/dcim/forms/bulk_import.py:847 +#: dcim/forms/bulk_import.py:847 msgid "Lag" msgstr "Lag" -#: netbox/dcim/forms/bulk_import.py:851 +#: dcim/forms/bulk_import.py:851 msgid "Parent LAG interface" msgstr "Родительский интерфейс LAG" -#: netbox/dcim/forms/bulk_import.py:854 +#: dcim/forms/bulk_import.py:854 msgid "Vdcs" msgstr "Виртуальные контексты устройств(VDCs)" -#: netbox/dcim/forms/bulk_import.py:859 +#: dcim/forms/bulk_import.py:859 msgid "VDC names separated by commas, encased with double quotes. Example:" msgstr "Имена VDC разделены запятыми и заключены в двойные кавычки. Пример:" -#: netbox/dcim/forms/bulk_import.py:865 +#: dcim/forms/bulk_import.py:865 msgid "Physical medium" msgstr "Физическая среда" -#: netbox/dcim/forms/bulk_import.py:868 netbox/dcim/forms/filtersets.py:1365 +#: dcim/forms/bulk_import.py:868 dcim/forms/filtersets.py:1365 msgid "Duplex" msgstr "Дуплекс" -#: netbox/dcim/forms/bulk_import.py:873 +#: dcim/forms/bulk_import.py:873 msgid "Poe mode" msgstr "Режим Poe" -#: netbox/dcim/forms/bulk_import.py:879 +#: dcim/forms/bulk_import.py:879 msgid "Poe type" msgstr "Тип Poe" -#: netbox/dcim/forms/bulk_import.py:888 -#: netbox/virtualization/forms/bulk_import.py:168 +#: dcim/forms/bulk_import.py:888 virtualization/forms/bulk_import.py:168 msgid "IEEE 802.1Q operational mode (for L2 interfaces)" msgstr "Рабочий режим IEEE 802.1Q (для интерфейсов L2)" -#: netbox/dcim/forms/bulk_import.py:895 netbox/ipam/forms/bulk_import.py:161 -#: netbox/ipam/forms/bulk_import.py:247 netbox/ipam/forms/bulk_import.py:283 -#: netbox/ipam/forms/filtersets.py:201 netbox/ipam/forms/filtersets.py:277 -#: netbox/ipam/forms/filtersets.py:336 -#: netbox/virtualization/forms/bulk_import.py:175 +#: dcim/forms/bulk_import.py:895 ipam/forms/bulk_import.py:161 +#: ipam/forms/bulk_import.py:247 ipam/forms/bulk_import.py:283 +#: ipam/forms/filtersets.py:201 ipam/forms/filtersets.py:277 +#: ipam/forms/filtersets.py:336 virtualization/forms/bulk_import.py:175 msgid "Assigned VRF" msgstr "Назначенный VRF" -#: netbox/dcim/forms/bulk_import.py:898 +#: dcim/forms/bulk_import.py:898 msgid "Rf role" msgstr "Роль Rf" -#: netbox/dcim/forms/bulk_import.py:901 +#: dcim/forms/bulk_import.py:901 msgid "Wireless role (AP/station)" msgstr "Роль беспроводной сети (точка доступа/станция)" -#: netbox/dcim/forms/bulk_import.py:937 +#: dcim/forms/bulk_import.py:937 #, python-brace-format msgid "VDC {vdc} is not assigned to device {device}" msgstr "В ПОСТОЯННОГО ТОКА {vdc} не присвоено устройству {device}" -#: netbox/dcim/forms/bulk_import.py:951 netbox/dcim/forms/model_forms.py:1000 -#: netbox/dcim/forms/model_forms.py:1575 -#: netbox/dcim/forms/object_import.py:117 +#: dcim/forms/bulk_import.py:951 dcim/forms/model_forms.py:1000 +#: dcim/forms/model_forms.py:1575 dcim/forms/object_import.py:117 msgid "Rear port" msgstr "Задний порт" -#: netbox/dcim/forms/bulk_import.py:954 +#: dcim/forms/bulk_import.py:954 msgid "Corresponding rear port" msgstr "Соответствующий задний порт" -#: netbox/dcim/forms/bulk_import.py:959 netbox/dcim/forms/bulk_import.py:1000 -#: netbox/dcim/forms/bulk_import.py:1216 +#: dcim/forms/bulk_import.py:959 dcim/forms/bulk_import.py:1000 +#: dcim/forms/bulk_import.py:1216 msgid "Physical medium classification" msgstr "Классификация физических сред" -#: netbox/dcim/forms/bulk_import.py:1028 netbox/dcim/tables/devices.py:822 +#: dcim/forms/bulk_import.py:1028 dcim/tables/devices.py:822 msgid "Installed device" msgstr "Установленное устройство" -#: netbox/dcim/forms/bulk_import.py:1032 +#: dcim/forms/bulk_import.py:1032 msgid "Child device installed within this bay" msgstr "Дочернее устройство, установленное в этом отсеке" -#: netbox/dcim/forms/bulk_import.py:1034 +#: dcim/forms/bulk_import.py:1034 msgid "Child device not found." msgstr "Дочернее устройство не найдено." -#: netbox/dcim/forms/bulk_import.py:1092 +#: dcim/forms/bulk_import.py:1092 msgid "Parent inventory item" msgstr "Предмет родительского инвентаря" -#: netbox/dcim/forms/bulk_import.py:1095 +#: dcim/forms/bulk_import.py:1095 msgid "Component type" msgstr "Тип компонента" -#: netbox/dcim/forms/bulk_import.py:1099 +#: dcim/forms/bulk_import.py:1099 msgid "Component Type" msgstr "Тип компонента" -#: netbox/dcim/forms/bulk_import.py:1102 +#: dcim/forms/bulk_import.py:1102 msgid "Compnent name" msgstr "Имя компонента" -#: netbox/dcim/forms/bulk_import.py:1104 +#: dcim/forms/bulk_import.py:1104 msgid "Component Name" msgstr "Имя компонента" -#: netbox/dcim/forms/bulk_import.py:1146 +#: dcim/forms/bulk_import.py:1146 #, python-brace-format msgid "Component not found: {device} - {component_name}" msgstr "Компонент не найден: {device} - {component_name}" -#: netbox/dcim/forms/bulk_import.py:1171 +#: dcim/forms/bulk_import.py:1171 msgid "Side A device" msgstr "Устройство на стороне А" -#: netbox/dcim/forms/bulk_import.py:1174 netbox/dcim/forms/bulk_import.py:1192 +#: dcim/forms/bulk_import.py:1174 dcim/forms/bulk_import.py:1192 msgid "Device name" msgstr "Имя устройства" -#: netbox/dcim/forms/bulk_import.py:1177 +#: dcim/forms/bulk_import.py:1177 msgid "Side A type" msgstr "Сторона типа А" -#: netbox/dcim/forms/bulk_import.py:1180 netbox/dcim/forms/bulk_import.py:1198 +#: dcim/forms/bulk_import.py:1180 dcim/forms/bulk_import.py:1198 msgid "Termination type" msgstr "Тип точки подключения" -#: netbox/dcim/forms/bulk_import.py:1183 +#: dcim/forms/bulk_import.py:1183 msgid "Side A name" msgstr "Название стороны А" -#: netbox/dcim/forms/bulk_import.py:1184 netbox/dcim/forms/bulk_import.py:1202 +#: dcim/forms/bulk_import.py:1184 dcim/forms/bulk_import.py:1202 msgid "Termination name" msgstr "Название точки подключения" -#: netbox/dcim/forms/bulk_import.py:1189 +#: dcim/forms/bulk_import.py:1189 msgid "Side B device" msgstr "Устройство на стороне B" -#: netbox/dcim/forms/bulk_import.py:1195 +#: dcim/forms/bulk_import.py:1195 msgid "Side B type" msgstr "Тип стороны B" -#: netbox/dcim/forms/bulk_import.py:1201 +#: dcim/forms/bulk_import.py:1201 msgid "Side B name" msgstr "Название стороны B" -#: netbox/dcim/forms/bulk_import.py:1210 -#: netbox/wireless/forms/bulk_import.py:86 +#: dcim/forms/bulk_import.py:1210 wireless/forms/bulk_import.py:86 msgid "Connection status" msgstr "Состояние подключения" -#: netbox/dcim/forms/bulk_import.py:1262 +#: dcim/forms/bulk_import.py:1262 #, python-brace-format msgid "Side {side_upper}: {device} {termination_object} is already connected" msgstr "Сторона {side_upper}: {device} {termination_object} уже подключен" -#: netbox/dcim/forms/bulk_import.py:1268 +#: dcim/forms/bulk_import.py:1268 #, python-brace-format msgid "{side_upper} side termination not found: {device} {name}" msgstr "{side_upper} боковое завершение не найдено: {device} {name}" -#: netbox/dcim/forms/bulk_import.py:1293 netbox/dcim/forms/model_forms.py:785 -#: netbox/dcim/tables/devices.py:1027 netbox/templates/dcim/device.html:132 -#: netbox/templates/dcim/virtualchassis.html:27 -#: netbox/templates/dcim/virtualchassis.html:67 +#: dcim/forms/bulk_import.py:1293 dcim/forms/model_forms.py:785 +#: dcim/tables/devices.py:1027 templates/dcim/device.html:132 +#: templates/dcim/virtualchassis.html:27 templates/dcim/virtualchassis.html:67 msgid "Master" msgstr "Мастер" -#: netbox/dcim/forms/bulk_import.py:1297 +#: dcim/forms/bulk_import.py:1297 msgid "Master device" msgstr "Мастер-устройство" -#: netbox/dcim/forms/bulk_import.py:1314 +#: dcim/forms/bulk_import.py:1314 msgid "Name of parent site" msgstr "Имя родительского сайта" -#: netbox/dcim/forms/bulk_import.py:1348 +#: dcim/forms/bulk_import.py:1348 msgid "Upstream power panel" msgstr "Панель питания в восходящем направлении" -#: netbox/dcim/forms/bulk_import.py:1378 +#: dcim/forms/bulk_import.py:1378 msgid "Primary or redundant" msgstr "Основное или резервное" -#: netbox/dcim/forms/bulk_import.py:1383 +#: dcim/forms/bulk_import.py:1383 msgid "Supply type (AC/DC)" msgstr "Тип питания (AC/DC)" -#: netbox/dcim/forms/bulk_import.py:1388 +#: dcim/forms/bulk_import.py:1388 msgid "Single or three-phase" msgstr "Однофазный или трехфазный" -#: netbox/dcim/forms/bulk_import.py:1439 netbox/dcim/forms/model_forms.py:1670 -#: netbox/templates/dcim/device.html:190 -#: netbox/templates/dcim/virtualdevicecontext.html:30 -#: netbox/templates/virtualization/virtualmachine.html:52 +#: dcim/forms/bulk_import.py:1439 dcim/forms/model_forms.py:1670 +#: templates/dcim/device.html:190 templates/dcim/virtualdevicecontext.html:30 +#: templates/virtualization/virtualmachine.html:52 msgid "Primary IPv4" msgstr "Основной IPv4" -#: netbox/dcim/forms/bulk_import.py:1443 +#: dcim/forms/bulk_import.py:1443 msgid "IPv4 address with mask, e.g. 1.2.3.4/24" msgstr "Адрес IPv4 с маской, напр. 1.2.3.4/24" -#: netbox/dcim/forms/bulk_import.py:1446 netbox/dcim/forms/model_forms.py:1679 -#: netbox/templates/dcim/device.html:206 -#: netbox/templates/dcim/virtualdevicecontext.html:41 -#: netbox/templates/virtualization/virtualmachine.html:68 +#: dcim/forms/bulk_import.py:1446 dcim/forms/model_forms.py:1679 +#: templates/dcim/device.html:206 templates/dcim/virtualdevicecontext.html:41 +#: templates/virtualization/virtualmachine.html:68 msgid "Primary IPv6" msgstr "Основной IPv6" -#: netbox/dcim/forms/bulk_import.py:1450 +#: dcim/forms/bulk_import.py:1450 msgid "IPv6 address with prefix length, e.g. 2001:db8::1/64" msgstr "Адрес IPv6 с длиной префикса, напр. 2001:db8::1/64" -#: netbox/dcim/forms/common.py:24 netbox/dcim/models/device_components.py:527 -#: netbox/templates/dcim/interface.html:57 -#: netbox/templates/virtualization/vminterface.html:55 -#: netbox/virtualization/forms/bulk_edit.py:225 +#: dcim/forms/common.py:24 dcim/models/device_components.py:527 +#: templates/dcim/interface.html:57 +#: templates/virtualization/vminterface.html:55 +#: virtualization/forms/bulk_edit.py:225 msgid "MTU" msgstr "MTU" -#: netbox/dcim/forms/common.py:65 +#: dcim/forms/common.py:65 #, python-brace-format msgid "" "The tagged VLANs ({vlans}) must belong to the same site as the interface's " @@ -4616,7 +4216,7 @@ msgstr "" "родительское устройство/виртуальная машина интерфейса, или они должны быть " "глобальными" -#: netbox/dcim/forms/common.py:126 +#: dcim/forms/common.py:126 msgid "" "Cannot install module with placeholder values in a module bay with no " "position defined." @@ -4624,7 +4224,7 @@ msgstr "" "Невозможно установить модуль со значениями-заполнителями в модульном отсеке " "без определенного положения." -#: netbox/dcim/forms/common.py:131 +#: dcim/forms/common.py:131 #, python-brace-format msgid "" "Cannot install module with placeholder values in a module bay tree {level} " @@ -4633,204 +4233,189 @@ msgstr "" "Невозможно установить модуль с указанами значениями на уровне {level}, но " "переданы значения {tokens}." -#: netbox/dcim/forms/common.py:144 +#: dcim/forms/common.py:144 #, python-brace-format msgid "Cannot adopt {model} {name} as it already belongs to a module" msgstr "" "Невозможно принять {model} {name} поскольку оно уже принадлежит модулю" -#: netbox/dcim/forms/common.py:153 +#: dcim/forms/common.py:153 #, python-brace-format msgid "A {model} named {name} already exists" msgstr "A {model} названный {name} уже существует" -#: netbox/dcim/forms/connections.py:49 netbox/dcim/forms/model_forms.py:738 -#: netbox/dcim/tables/power.py:66 -#: netbox/templates/dcim/inc/cable_termination.html:37 -#: netbox/templates/dcim/powerfeed.html:24 -#: netbox/templates/dcim/powerpanel.html:19 -#: netbox/templates/dcim/trace/powerpanel.html:4 +#: dcim/forms/connections.py:49 dcim/forms/model_forms.py:738 +#: dcim/tables/power.py:66 templates/dcim/inc/cable_termination.html:37 +#: templates/dcim/powerfeed.html:24 templates/dcim/powerpanel.html:19 +#: templates/dcim/trace/powerpanel.html:4 msgid "Power Panel" msgstr "Панель питания" -#: netbox/dcim/forms/connections.py:58 netbox/dcim/forms/model_forms.py:765 -#: netbox/templates/dcim/powerfeed.html:21 -#: netbox/templates/dcim/powerport.html:80 +#: dcim/forms/connections.py:58 dcim/forms/model_forms.py:765 +#: templates/dcim/powerfeed.html:21 templates/dcim/powerport.html:80 msgid "Power Feed" msgstr "Подача питания" -#: netbox/dcim/forms/connections.py:81 +#: dcim/forms/connections.py:81 msgid "Side" msgstr "Сторона" -#: netbox/dcim/forms/filtersets.py:136 netbox/dcim/tables/devices.py:295 +#: dcim/forms/filtersets.py:136 dcim/tables/devices.py:295 msgid "Device Status" msgstr "Статус устройства" -#: netbox/dcim/forms/filtersets.py:149 +#: dcim/forms/filtersets.py:149 msgid "Parent region" msgstr "Родительский регион" -#: netbox/dcim/forms/filtersets.py:163 netbox/tenancy/forms/bulk_import.py:28 -#: netbox/tenancy/forms/bulk_import.py:62 -#: netbox/tenancy/forms/filtersets.py:33 netbox/tenancy/forms/filtersets.py:62 -#: netbox/wireless/forms/bulk_import.py:25 -#: netbox/wireless/forms/filtersets.py:25 +#: dcim/forms/filtersets.py:163 tenancy/forms/bulk_import.py:28 +#: tenancy/forms/bulk_import.py:62 tenancy/forms/filtersets.py:33 +#: tenancy/forms/filtersets.py:62 wireless/forms/bulk_import.py:25 +#: wireless/forms/filtersets.py:25 msgid "Parent group" msgstr "Родительская группа" -#: netbox/dcim/forms/filtersets.py:242 netbox/templates/dcim/location.html:58 -#: netbox/templates/dcim/site.html:56 +#: dcim/forms/filtersets.py:242 templates/dcim/location.html:58 +#: templates/dcim/site.html:56 msgid "Facility" msgstr "Объект" -#: netbox/dcim/forms/filtersets.py:380 +#: dcim/forms/filtersets.py:380 msgid "Rack type" msgstr "Тип стойки" -#: netbox/dcim/forms/filtersets.py:397 +#: dcim/forms/filtersets.py:397 msgid "Function" msgstr "Функция" -#: netbox/dcim/forms/filtersets.py:483 netbox/dcim/forms/model_forms.py:373 -#: netbox/templates/inc/panels/image_attachments.html:6 +#: dcim/forms/filtersets.py:483 dcim/forms/model_forms.py:373 +#: templates/inc/panels/image_attachments.html:6 msgid "Images" msgstr "Изображения" -#: netbox/dcim/forms/filtersets.py:486 netbox/dcim/forms/filtersets.py:611 -#: netbox/dcim/forms/filtersets.py:726 +#: dcim/forms/filtersets.py:486 dcim/forms/filtersets.py:611 +#: dcim/forms/filtersets.py:726 msgid "Components" msgstr "Компоненты" -#: netbox/dcim/forms/filtersets.py:506 +#: dcim/forms/filtersets.py:506 msgid "Subdevice role" msgstr "Роль подустройства" -#: netbox/dcim/forms/filtersets.py:790 netbox/dcim/tables/racks.py:54 -#: netbox/templates/dcim/racktype.html:20 +#: dcim/forms/filtersets.py:790 dcim/tables/racks.py:54 +#: templates/dcim/racktype.html:20 msgid "Model" msgstr "Модель" -#: netbox/dcim/forms/filtersets.py:834 +#: dcim/forms/filtersets.py:834 msgid "Has an OOB IP" msgstr "Имеет IP-адрес OOB" -#: netbox/dcim/forms/filtersets.py:841 +#: dcim/forms/filtersets.py:841 msgid "Virtual chassis member" msgstr "Элемент виртуального шасси" -#: netbox/dcim/forms/filtersets.py:890 +#: dcim/forms/filtersets.py:890 msgid "Has virtual device contexts" msgstr "Имеет контексты виртуальных устройств" -#: netbox/dcim/forms/filtersets.py:903 netbox/extras/filtersets.py:585 -#: netbox/ipam/forms/bulk_edit.py:479 netbox/ipam/forms/filtersets.py:452 -#: netbox/virtualization/forms/filtersets.py:112 +#: dcim/forms/filtersets.py:903 extras/filtersets.py:585 +#: ipam/forms/filtersets.py:452 virtualization/forms/filtersets.py:112 msgid "Cluster group" msgstr "Кластерная группа" -#: netbox/dcim/forms/filtersets.py:1210 +#: dcim/forms/filtersets.py:1210 msgid "Cabled" msgstr "Кабельный" -#: netbox/dcim/forms/filtersets.py:1217 +#: dcim/forms/filtersets.py:1217 msgid "Occupied" msgstr "Занятый" -#: netbox/dcim/forms/filtersets.py:1244 netbox/dcim/forms/filtersets.py:1269 -#: netbox/dcim/forms/filtersets.py:1293 netbox/dcim/forms/filtersets.py:1313 -#: netbox/dcim/forms/filtersets.py:1336 netbox/dcim/tables/devices.py:364 -#: netbox/templates/dcim/consoleport.html:55 -#: netbox/templates/dcim/consoleserverport.html:55 -#: netbox/templates/dcim/frontport.html:69 -#: netbox/templates/dcim/interface.html:140 -#: netbox/templates/dcim/powerfeed.html:110 -#: netbox/templates/dcim/poweroutlet.html:59 -#: netbox/templates/dcim/powerport.html:59 -#: netbox/templates/dcim/rearport.html:65 +#: dcim/forms/filtersets.py:1244 dcim/forms/filtersets.py:1269 +#: dcim/forms/filtersets.py:1293 dcim/forms/filtersets.py:1313 +#: dcim/forms/filtersets.py:1336 dcim/tables/devices.py:364 +#: templates/dcim/consoleport.html:55 templates/dcim/consoleserverport.html:55 +#: templates/dcim/frontport.html:69 templates/dcim/interface.html:140 +#: templates/dcim/powerfeed.html:110 templates/dcim/poweroutlet.html:59 +#: templates/dcim/powerport.html:59 templates/dcim/rearport.html:65 msgid "Connection" msgstr "Подключение" -#: netbox/dcim/forms/filtersets.py:1348 netbox/extras/forms/bulk_edit.py:326 -#: netbox/extras/forms/bulk_import.py:247 -#: netbox/extras/forms/filtersets.py:464 -#: netbox/extras/forms/model_forms.py:675 netbox/extras/tables/tables.py:579 -#: netbox/templates/extras/journalentry.html:30 +#: dcim/forms/filtersets.py:1348 extras/forms/bulk_edit.py:326 +#: extras/forms/bulk_import.py:247 extras/forms/filtersets.py:464 +#: extras/forms/model_forms.py:675 extras/tables/tables.py:579 +#: templates/extras/journalentry.html:30 msgid "Kind" msgstr "Вид" -#: netbox/dcim/forms/filtersets.py:1377 +#: dcim/forms/filtersets.py:1377 msgid "Mgmt only" msgstr "Только менеджмент" -#: netbox/dcim/forms/filtersets.py:1389 netbox/dcim/forms/model_forms.py:1383 -#: netbox/dcim/models/device_components.py:629 -#: netbox/templates/dcim/interface.html:129 +#: dcim/forms/filtersets.py:1389 dcim/forms/model_forms.py:1383 +#: dcim/models/device_components.py:629 templates/dcim/interface.html:129 msgid "WWN" msgstr "Глобальное уникальное имя (WWN)" -#: netbox/dcim/forms/filtersets.py:1409 +#: dcim/forms/filtersets.py:1409 msgid "Wireless channel" msgstr "Беспроводной канал" -#: netbox/dcim/forms/filtersets.py:1413 +#: dcim/forms/filtersets.py:1413 msgid "Channel frequency (MHz)" msgstr "Частота канала (МГц)" -#: netbox/dcim/forms/filtersets.py:1417 +#: dcim/forms/filtersets.py:1417 msgid "Channel width (MHz)" msgstr "Ширина канала (МГц)" -#: netbox/dcim/forms/filtersets.py:1421 -#: netbox/templates/dcim/interface.html:85 +#: dcim/forms/filtersets.py:1421 templates/dcim/interface.html:85 msgid "Transmit power (dBm)" msgstr "Мощность передачи (дБм)" -#: netbox/dcim/forms/filtersets.py:1446 netbox/dcim/forms/filtersets.py:1471 -#: netbox/dcim/tables/devices.py:327 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:50 -#: netbox/templates/dcim/inc/connection_endpoints.html:4 -#: netbox/templates/dcim/rearport.html:73 -#: netbox/templates/dcim/trace/cable.html:7 +#: dcim/forms/filtersets.py:1446 dcim/forms/filtersets.py:1471 +#: dcim/tables/devices.py:327 templates/dcim/cable.html:12 +#: templates/dcim/cable_trace.html:46 templates/dcim/frontport.html:77 +#: templates/dcim/htmx/cable_edit.html:50 +#: templates/dcim/inc/connection_endpoints.html:4 +#: templates/dcim/rearport.html:73 templates/dcim/trace/cable.html:7 msgid "Cable" msgstr "Кабель" -#: netbox/dcim/forms/filtersets.py:1550 netbox/dcim/tables/devices.py:949 +#: dcim/forms/filtersets.py:1550 dcim/tables/devices.py:949 msgid "Discovered" msgstr "Обнаружено" -#: netbox/dcim/forms/formsets.py:20 +#: dcim/forms/formsets.py:20 #, python-brace-format msgid "A virtual chassis member already exists in position {vc_position}." msgstr "Виртуальный элемент шасси уже находится на месте {vc_position}." -#: netbox/dcim/forms/model_forms.py:140 +#: dcim/forms/model_forms.py:140 msgid "Contact Info" msgstr "Контактная информация" -#: netbox/dcim/forms/model_forms.py:195 netbox/templates/dcim/rackrole.html:19 +#: dcim/forms/model_forms.py:195 templates/dcim/rackrole.html:19 msgid "Rack Role" msgstr "Роль стойки" -#: netbox/dcim/forms/model_forms.py:212 netbox/dcim/forms/model_forms.py:362 -#: netbox/dcim/forms/model_forms.py:446 -#: netbox/utilities/forms/fields/fields.py:47 +#: dcim/forms/model_forms.py:212 dcim/forms/model_forms.py:362 +#: dcim/forms/model_forms.py:446 utilities/forms/fields/fields.py:47 msgid "Slug" msgstr "Подстрока" -#: netbox/dcim/forms/model_forms.py:259 +#: dcim/forms/model_forms.py:259 msgid "Select a pre-defined rack type, or set physical characteristics below." msgstr "" "Выберите заранее определенный тип стойки или задайте физические " "характеристики ниже." -#: netbox/dcim/forms/model_forms.py:265 +#: dcim/forms/model_forms.py:265 msgid "Inventory Control" msgstr "Управление запасами" -#: netbox/dcim/forms/model_forms.py:313 +#: dcim/forms/model_forms.py:313 msgid "" "Comma-separated list of numeric unit IDs. A range may be specified using a " "hyphen." @@ -4838,161 +4423,144 @@ msgstr "" "Список числовых идентификаторов, разделенных запятыми. Диапазон можно " "указать с помощью дефиса." -#: netbox/dcim/forms/model_forms.py:322 netbox/dcim/tables/racks.py:202 +#: dcim/forms/model_forms.py:322 dcim/tables/racks.py:202 msgid "Reservation" msgstr "Резервирование" -#: netbox/dcim/forms/model_forms.py:423 -#: netbox/templates/dcim/devicerole.html:23 +#: dcim/forms/model_forms.py:423 templates/dcim/devicerole.html:23 msgid "Device Role" msgstr "Роль устройства" -#: netbox/dcim/forms/model_forms.py:490 netbox/dcim/models/devices.py:644 +#: dcim/forms/model_forms.py:490 dcim/models/devices.py:644 msgid "The lowest-numbered unit occupied by the device" msgstr "Устройство с наименьшим номером, занимаемое устройством" -#: netbox/dcim/forms/model_forms.py:547 +#: dcim/forms/model_forms.py:547 msgid "The position in the virtual chassis this device is identified by" msgstr "Положение в виртуальном корпусе этого устройства определяется по" -#: netbox/dcim/forms/model_forms.py:552 +#: dcim/forms/model_forms.py:552 msgid "The priority of the device in the virtual chassis" msgstr "Приоритет устройства в виртуальном шасси" -#: netbox/dcim/forms/model_forms.py:659 +#: dcim/forms/model_forms.py:659 msgid "Automatically populate components associated with this module type" msgstr "Автоматическое заполнение компонентов, связанных с этим типом модуля" -#: netbox/dcim/forms/model_forms.py:767 +#: dcim/forms/model_forms.py:767 msgid "Characteristics" msgstr "Характеристики" -#: netbox/dcim/forms/model_forms.py:1087 +#: dcim/forms/model_forms.py:1087 msgid "Console port template" msgstr "Шаблон консольного порта" -#: netbox/dcim/forms/model_forms.py:1095 +#: dcim/forms/model_forms.py:1095 msgid "Console server port template" msgstr "Шаблон порта консольного сервера" -#: netbox/dcim/forms/model_forms.py:1103 +#: dcim/forms/model_forms.py:1103 msgid "Front port template" msgstr "Шаблон переднего порта" -#: netbox/dcim/forms/model_forms.py:1111 +#: dcim/forms/model_forms.py:1111 msgid "Interface template" msgstr "Шаблон интерфейса" -#: netbox/dcim/forms/model_forms.py:1119 +#: dcim/forms/model_forms.py:1119 msgid "Power outlet template" msgstr "Шаблон розетки питания" -#: netbox/dcim/forms/model_forms.py:1127 +#: dcim/forms/model_forms.py:1127 msgid "Power port template" msgstr "Шаблон порта питания" -#: netbox/dcim/forms/model_forms.py:1135 +#: dcim/forms/model_forms.py:1135 msgid "Rear port template" msgstr "Шаблон заднего порта" -#: netbox/dcim/forms/model_forms.py:1144 netbox/dcim/forms/model_forms.py:1388 -#: netbox/dcim/forms/model_forms.py:1551 netbox/dcim/forms/model_forms.py:1583 -#: netbox/dcim/tables/connections.py:65 netbox/ipam/forms/bulk_import.py:318 -#: netbox/ipam/forms/model_forms.py:280 netbox/ipam/forms/model_forms.py:289 -#: netbox/ipam/tables/fhrp.py:64 netbox/ipam/tables/ip.py:372 -#: netbox/ipam/tables/vlans.py:169 -#: netbox/templates/circuits/inc/circuit_termination_fields.html:51 -#: netbox/templates/dcim/frontport.html:106 -#: netbox/templates/dcim/interface.html:27 -#: netbox/templates/dcim/interface.html:184 -#: netbox/templates/dcim/interface.html:310 -#: netbox/templates/dcim/rearport.html:102 -#: netbox/templates/virtualization/vminterface.html:18 -#: netbox/templates/vpn/tunneltermination.html:31 -#: netbox/templates/wireless/inc/wirelesslink_interface.html:10 -#: netbox/templates/wireless/wirelesslink.html:10 -#: netbox/templates/wireless/wirelesslink.html:55 -#: netbox/virtualization/forms/model_forms.py:348 -#: netbox/vpn/forms/bulk_import.py:297 netbox/vpn/forms/model_forms.py:436 -#: netbox/vpn/forms/model_forms.py:445 -#: netbox/wireless/forms/model_forms.py:113 -#: netbox/wireless/forms/model_forms.py:155 +#: dcim/forms/model_forms.py:1144 dcim/forms/model_forms.py:1388 +#: dcim/forms/model_forms.py:1551 dcim/forms/model_forms.py:1583 +#: dcim/tables/connections.py:65 ipam/forms/bulk_import.py:318 +#: ipam/forms/model_forms.py:280 ipam/forms/model_forms.py:289 +#: ipam/tables/fhrp.py:64 ipam/tables/ip.py:372 ipam/tables/vlans.py:169 +#: templates/circuits/inc/circuit_termination_fields.html:51 +#: templates/dcim/frontport.html:106 templates/dcim/interface.html:27 +#: templates/dcim/interface.html:184 templates/dcim/interface.html:310 +#: templates/dcim/rearport.html:102 +#: templates/virtualization/vminterface.html:18 +#: templates/vpn/tunneltermination.html:31 +#: templates/wireless/inc/wirelesslink_interface.html:10 +#: templates/wireless/wirelesslink.html:10 +#: templates/wireless/wirelesslink.html:55 +#: virtualization/forms/model_forms.py:348 vpn/forms/bulk_import.py:297 +#: vpn/forms/model_forms.py:436 vpn/forms/model_forms.py:445 +#: wireless/forms/model_forms.py:113 wireless/forms/model_forms.py:155 msgid "Interface" msgstr "Интерфейс" -#: netbox/dcim/forms/model_forms.py:1145 netbox/dcim/forms/model_forms.py:1584 -#: netbox/dcim/tables/connections.py:27 -#: netbox/templates/dcim/consoleport.html:17 -#: netbox/templates/dcim/consoleserverport.html:74 -#: netbox/templates/dcim/frontport.html:112 +#: dcim/forms/model_forms.py:1145 dcim/forms/model_forms.py:1584 +#: dcim/tables/connections.py:27 templates/dcim/consoleport.html:17 +#: templates/dcim/consoleserverport.html:74 templates/dcim/frontport.html:112 msgid "Console Port" msgstr "Консольный порт" -#: netbox/dcim/forms/model_forms.py:1146 netbox/dcim/forms/model_forms.py:1585 -#: netbox/templates/dcim/consoleport.html:73 -#: netbox/templates/dcim/consoleserverport.html:17 -#: netbox/templates/dcim/frontport.html:109 +#: dcim/forms/model_forms.py:1146 dcim/forms/model_forms.py:1585 +#: templates/dcim/consoleport.html:73 templates/dcim/consoleserverport.html:17 +#: templates/dcim/frontport.html:109 msgid "Console Server Port" msgstr "Порт консольного сервера" -#: netbox/dcim/forms/model_forms.py:1147 netbox/dcim/forms/model_forms.py:1586 -#: netbox/templates/circuits/inc/circuit_termination_fields.html:52 -#: netbox/templates/dcim/consoleport.html:76 -#: netbox/templates/dcim/consoleserverport.html:77 -#: netbox/templates/dcim/frontport.html:17 -#: netbox/templates/dcim/frontport.html:115 -#: netbox/templates/dcim/interface.html:187 -#: netbox/templates/dcim/rearport.html:105 +#: dcim/forms/model_forms.py:1147 dcim/forms/model_forms.py:1586 +#: templates/circuits/inc/circuit_termination_fields.html:52 +#: templates/dcim/consoleport.html:76 templates/dcim/consoleserverport.html:77 +#: templates/dcim/frontport.html:17 templates/dcim/frontport.html:115 +#: templates/dcim/interface.html:187 templates/dcim/rearport.html:105 msgid "Front Port" msgstr "Передний порт" -#: netbox/dcim/forms/model_forms.py:1148 netbox/dcim/forms/model_forms.py:1587 -#: netbox/dcim/tables/devices.py:710 -#: netbox/templates/circuits/inc/circuit_termination_fields.html:53 -#: netbox/templates/dcim/consoleport.html:79 -#: netbox/templates/dcim/consoleserverport.html:80 -#: netbox/templates/dcim/frontport.html:50 -#: netbox/templates/dcim/frontport.html:118 -#: netbox/templates/dcim/interface.html:190 -#: netbox/templates/dcim/rearport.html:17 -#: netbox/templates/dcim/rearport.html:108 +#: dcim/forms/model_forms.py:1148 dcim/forms/model_forms.py:1587 +#: dcim/tables/devices.py:710 +#: templates/circuits/inc/circuit_termination_fields.html:53 +#: templates/dcim/consoleport.html:79 templates/dcim/consoleserverport.html:80 +#: templates/dcim/frontport.html:50 templates/dcim/frontport.html:118 +#: templates/dcim/interface.html:190 templates/dcim/rearport.html:17 +#: templates/dcim/rearport.html:108 msgid "Rear Port" msgstr "Задний порт" -#: netbox/dcim/forms/model_forms.py:1149 netbox/dcim/forms/model_forms.py:1588 -#: netbox/dcim/tables/connections.py:46 netbox/dcim/tables/devices.py:512 -#: netbox/templates/dcim/poweroutlet.html:44 -#: netbox/templates/dcim/powerport.html:17 +#: dcim/forms/model_forms.py:1149 dcim/forms/model_forms.py:1588 +#: dcim/tables/connections.py:46 dcim/tables/devices.py:512 +#: templates/dcim/poweroutlet.html:44 templates/dcim/powerport.html:17 msgid "Power Port" msgstr "Порт питания" -#: netbox/dcim/forms/model_forms.py:1150 netbox/dcim/forms/model_forms.py:1589 -#: netbox/templates/dcim/poweroutlet.html:17 -#: netbox/templates/dcim/powerport.html:77 +#: dcim/forms/model_forms.py:1150 dcim/forms/model_forms.py:1589 +#: templates/dcim/poweroutlet.html:17 templates/dcim/powerport.html:77 msgid "Power Outlet" msgstr "Розетка питания" -#: netbox/dcim/forms/model_forms.py:1152 netbox/dcim/forms/model_forms.py:1591 +#: dcim/forms/model_forms.py:1152 dcim/forms/model_forms.py:1591 msgid "Component Assignment" msgstr "Назначение компонентов" -#: netbox/dcim/forms/model_forms.py:1195 netbox/dcim/forms/model_forms.py:1638 +#: dcim/forms/model_forms.py:1195 dcim/forms/model_forms.py:1638 msgid "An InventoryItem can only be assigned to a single component." msgstr "Инвентарный номер можно присвоить только одному компоненту." -#: netbox/dcim/forms/model_forms.py:1332 +#: dcim/forms/model_forms.py:1332 msgid "LAG interface" msgstr "Интерфейс LAG" -#: netbox/dcim/forms/model_forms.py:1355 +#: dcim/forms/model_forms.py:1355 msgid "Filter VLANs available for assignment by group." msgstr "Фильтровать доступные к назначению VLAN-ы по группе." -#: netbox/dcim/forms/model_forms.py:1484 +#: dcim/forms/model_forms.py:1484 msgid "Child Device" msgstr "Дочернее устройство" -#: netbox/dcim/forms/model_forms.py:1485 +#: dcim/forms/model_forms.py:1485 msgid "" "Child devices must first be created and assigned to the site and rack of the" " parent device." @@ -5000,35 +4568,32 @@ msgstr "" "Сначала необходимо создать дочерние устройства и назначить их сайту и стойке" " родительского устройства." -#: netbox/dcim/forms/model_forms.py:1527 +#: dcim/forms/model_forms.py:1527 msgid "Console port" msgstr "Консольный порт" -#: netbox/dcim/forms/model_forms.py:1535 +#: dcim/forms/model_forms.py:1535 msgid "Console server port" msgstr "Порт консольного сервера" -#: netbox/dcim/forms/model_forms.py:1543 +#: dcim/forms/model_forms.py:1543 msgid "Front port" msgstr "Передний порт" -#: netbox/dcim/forms/model_forms.py:1559 +#: dcim/forms/model_forms.py:1559 msgid "Power outlet" msgstr "Розетка питания" -#: netbox/dcim/forms/model_forms.py:1579 -#: netbox/templates/dcim/inventoryitem.html:17 +#: dcim/forms/model_forms.py:1579 templates/dcim/inventoryitem.html:17 msgid "Inventory Item" msgstr "Комплектующие" -#: netbox/dcim/forms/model_forms.py:1652 -#: netbox/templates/dcim/inventoryitemrole.html:15 +#: dcim/forms/model_forms.py:1652 templates/dcim/inventoryitemrole.html:15 msgid "Inventory Item Role" msgstr "Роли комплектующих" -#: netbox/dcim/forms/object_create.py:48 -#: netbox/dcim/forms/object_create.py:199 -#: netbox/dcim/forms/object_create.py:355 +#: dcim/forms/object_create.py:48 dcim/forms/object_create.py:199 +#: dcim/forms/object_create.py:355 msgid "" "Alphanumeric ranges are supported. (Must match the number of objects being " "created.)" @@ -5036,7 +4601,7 @@ msgstr "" "Поддерживаются алфавитно-цифровые диапазоны. (Количество создаваемых " "объектов должно соответствовать количеству создаваемых объектов.)" -#: netbox/dcim/forms/object_create.py:68 +#: dcim/forms/object_create.py:68 #, python-brace-format msgid "" "The provided pattern specifies {value_count} values, but {pattern_count} are" @@ -5045,19 +4610,18 @@ msgstr "" "Предоставленный шаблон определяет {value_count} ценности, но {pattern_count}" " ожидаются." -#: netbox/dcim/forms/object_create.py:110 -#: netbox/dcim/forms/object_create.py:271 netbox/dcim/tables/devices.py:252 +#: dcim/forms/object_create.py:110 dcim/forms/object_create.py:271 +#: dcim/tables/devices.py:252 msgid "Rear ports" msgstr "Задние порты" -#: netbox/dcim/forms/object_create.py:111 -#: netbox/dcim/forms/object_create.py:272 +#: dcim/forms/object_create.py:111 dcim/forms/object_create.py:272 msgid "Select one rear port assignment for each front port being created." msgstr "" "Выберите одно назначение заднего порта для каждого создаваемого переднего " "порта." -#: netbox/dcim/forms/object_create.py:164 +#: dcim/forms/object_create.py:164 #, python-brace-format msgid "" "The number of front port templates to be created ({frontport_count}) must " @@ -5067,7 +4631,7 @@ msgstr "" "должно соответствовать выбранному количеству положений задних портов " "({rearport_count})." -#: netbox/dcim/forms/object_create.py:251 +#: dcim/forms/object_create.py:251 #, python-brace-format msgid "" "The string {module} will be replaced with the position of the " @@ -5076,7 +4640,7 @@ msgstr "" "Строка {module} будет заменено позицией назначенного модуля, " "если таковая имеется." -#: netbox/dcim/forms/object_create.py:320 +#: dcim/forms/object_create.py:320 #, python-brace-format msgid "" "The number of front ports to be created ({frontport_count}) must match the " @@ -5086,18 +4650,17 @@ msgstr "" "соответствовать выбранному количеству положений задних портов " "({rearport_count})." -#: netbox/dcim/forms/object_create.py:409 netbox/dcim/tables/devices.py:1033 -#: netbox/ipam/tables/fhrp.py:31 netbox/templates/dcim/virtualchassis.html:53 -#: netbox/templates/dcim/virtualchassis_edit.html:47 -#: netbox/templates/ipam/fhrpgroup.html:38 +#: dcim/forms/object_create.py:409 dcim/tables/devices.py:1033 +#: ipam/tables/fhrp.py:31 templates/dcim/virtualchassis.html:53 +#: templates/dcim/virtualchassis_edit.html:47 templates/ipam/fhrpgroup.html:38 msgid "Members" msgstr "Участники" -#: netbox/dcim/forms/object_create.py:418 +#: dcim/forms/object_create.py:418 msgid "Initial position" msgstr "Исходное положение" -#: netbox/dcim/forms/object_create.py:421 +#: dcim/forms/object_create.py:421 msgid "" "Position of the first member device. Increases by one for each additional " "member." @@ -5105,69 +4668,67 @@ msgstr "" "Положение первого элементного устройства. Увеличивается на единицу за каждый" " дополнительный элемент." -#: netbox/dcim/forms/object_create.py:435 +#: dcim/forms/object_create.py:435 msgid "A position must be specified for the first VC member." msgstr "Должность должна быть указана для первого члена VC." -#: netbox/dcim/models/cables.py:62 -#: netbox/dcim/models/device_component_templates.py:55 -#: netbox/dcim/models/device_components.py:62 -#: netbox/extras/models/customfields.py:111 +#: dcim/models/cables.py:62 dcim/models/device_component_templates.py:55 +#: dcim/models/device_components.py:62 extras/models/customfields.py:111 msgid "label" msgstr " лейбл" -#: netbox/dcim/models/cables.py:71 +#: dcim/models/cables.py:71 msgid "length" msgstr "Длина" -#: netbox/dcim/models/cables.py:78 +#: dcim/models/cables.py:78 msgid "length unit" msgstr "единица длины" -#: netbox/dcim/models/cables.py:95 +#: dcim/models/cables.py:95 msgid "cable" msgstr "кабель" -#: netbox/dcim/models/cables.py:96 +#: dcim/models/cables.py:96 msgid "cables" msgstr "кабели" -#: netbox/dcim/models/cables.py:165 +#: dcim/models/cables.py:165 msgid "Must specify a unit when setting a cable length" msgstr "При настройке длины кабеля необходимо указать единицу измерения" -#: netbox/dcim/models/cables.py:168 +#: dcim/models/cables.py:168 msgid "Must define A and B terminations when creating a new cable." msgstr "" "При создании нового кабеля необходимо определить концевые разъемы A и B." -#: netbox/dcim/models/cables.py:175 +#: dcim/models/cables.py:175 msgid "Cannot connect different termination types to same end of cable." msgstr "" "Невозможно подключить разные типы разъемов к одному и тому же концу кабеля." -#: netbox/dcim/models/cables.py:183 +#: dcim/models/cables.py:183 #, python-brace-format msgid "Incompatible termination types: {type_a} and {type_b}" msgstr "Несовместимые типы терминации: {type_a} а также {type_b}" -#: netbox/dcim/models/cables.py:193 +#: dcim/models/cables.py:193 msgid "A and B terminations cannot connect to the same object." msgstr "Окончания A и B не могут подключаться к одному и тому же объекту." -#: netbox/dcim/models/cables.py:260 netbox/ipam/models/asns.py:37 +#: dcim/models/cables.py:260 ipam/models/asns.py:37 msgid "end" msgstr "конец" -#: netbox/dcim/models/cables.py:313 +#: dcim/models/cables.py:313 msgid "cable termination" msgstr "точка подключения кабеля" -#: netbox/dcim/models/cables.py:314 +#: dcim/models/cables.py:314 msgid "cable terminations" msgstr "точки подключения кабеля" -#: netbox/dcim/models/cables.py:333 +#: dcim/models/cables.py:333 #, python-brace-format msgid "" "Duplicate termination found for {app_label}.{model} {termination_id}: cable " @@ -5176,38 +4737,38 @@ msgstr "" "Обнаружен дубликат подключения для {app_label}.{model} {termination_id}: " "кабель {cable_pk}" -#: netbox/dcim/models/cables.py:343 +#: dcim/models/cables.py:343 #, python-brace-format msgid "Cables cannot be terminated to {type_display} interfaces" msgstr "Кабели не могут быть подключены к {type_display} интерфейсов" -#: netbox/dcim/models/cables.py:350 +#: dcim/models/cables.py:350 msgid "Circuit terminations attached to a provider network may not be cabled." msgstr "" "Концевые разъемы, подключенные к сети провайдера, могут не подключаться к " "кабелям." -#: netbox/dcim/models/cables.py:448 netbox/extras/models/configs.py:50 +#: dcim/models/cables.py:448 extras/models/configs.py:50 msgid "is active" msgstr "активен" -#: netbox/dcim/models/cables.py:452 +#: dcim/models/cables.py:452 msgid "is complete" msgstr "завершен" -#: netbox/dcim/models/cables.py:456 +#: dcim/models/cables.py:456 msgid "is split" msgstr "разделен" -#: netbox/dcim/models/cables.py:464 +#: dcim/models/cables.py:464 msgid "cable path" msgstr "кабельная трасса" -#: netbox/dcim/models/cables.py:465 +#: dcim/models/cables.py:465 msgid "cable paths" msgstr "кабельные трассы" -#: netbox/dcim/models/device_component_templates.py:46 +#: dcim/models/device_component_templates.py:46 #, python-brace-format msgid "" "{module} is accepted as a substitution for the module bay position when " @@ -5216,16 +4777,16 @@ msgstr "" "{module} принимается в качестве замены положения отсека для модулей при " "подключении к модулю того или иного типа." -#: netbox/dcim/models/device_component_templates.py:58 -#: netbox/dcim/models/device_components.py:65 +#: dcim/models/device_component_templates.py:58 +#: dcim/models/device_components.py:65 msgid "Physical label" msgstr "Физический лейбл" -#: netbox/dcim/models/device_component_templates.py:103 +#: dcim/models/device_component_templates.py:103 msgid "Component templates cannot be moved to a different device type." msgstr "Шаблоны компонентов нельзя перемещать на устройства другого типа." -#: netbox/dcim/models/device_component_templates.py:154 +#: dcim/models/device_component_templates.py:154 msgid "" "A component template cannot be associated with both a device type and a " "module type." @@ -5233,145 +4794,145 @@ msgstr "" "Шаблон компонента нельзя связать как с типом устройства, так и с типом " "модуля." -#: netbox/dcim/models/device_component_templates.py:158 +#: dcim/models/device_component_templates.py:158 msgid "" "A component template must be associated with either a device type or a " "module type." msgstr "" "Шаблон компонента должен быть связан с типом устройства или типом модуля." -#: netbox/dcim/models/device_component_templates.py:212 +#: dcim/models/device_component_templates.py:212 msgid "console port template" msgstr "шаблон консольного порта" -#: netbox/dcim/models/device_component_templates.py:213 +#: dcim/models/device_component_templates.py:213 msgid "console port templates" msgstr "шаблоны консольных портов" -#: netbox/dcim/models/device_component_templates.py:246 +#: dcim/models/device_component_templates.py:246 msgid "console server port template" msgstr "шаблон порта консольного сервера" -#: netbox/dcim/models/device_component_templates.py:247 +#: dcim/models/device_component_templates.py:247 msgid "console server port templates" msgstr "шаблоны портов консольного сервера" -#: netbox/dcim/models/device_component_templates.py:278 -#: netbox/dcim/models/device_components.py:352 +#: dcim/models/device_component_templates.py:278 +#: dcim/models/device_components.py:352 msgid "maximum draw" msgstr "максимальное потребление" -#: netbox/dcim/models/device_component_templates.py:285 -#: netbox/dcim/models/device_components.py:359 +#: dcim/models/device_component_templates.py:285 +#: dcim/models/device_components.py:359 msgid "allocated draw" msgstr "выделенное потребление" -#: netbox/dcim/models/device_component_templates.py:295 +#: dcim/models/device_component_templates.py:295 msgid "power port template" msgstr "шаблон порта питания" -#: netbox/dcim/models/device_component_templates.py:296 +#: dcim/models/device_component_templates.py:296 msgid "power port templates" msgstr "шаблоны портов питания" -#: netbox/dcim/models/device_component_templates.py:315 -#: netbox/dcim/models/device_components.py:382 +#: dcim/models/device_component_templates.py:315 +#: dcim/models/device_components.py:382 #, python-brace-format msgid "Allocated draw cannot exceed the maximum draw ({maximum_draw}W)." msgstr "" "Выделенная мощность не может превышать максимальную ({maximum_draw}Вт)." -#: netbox/dcim/models/device_component_templates.py:347 -#: netbox/dcim/models/device_components.py:477 +#: dcim/models/device_component_templates.py:347 +#: dcim/models/device_components.py:477 msgid "feed leg" msgstr "фаза электропитания" -#: netbox/dcim/models/device_component_templates.py:351 -#: netbox/dcim/models/device_components.py:481 +#: dcim/models/device_component_templates.py:351 +#: dcim/models/device_components.py:481 msgid "Phase (for three-phase feeds)" msgstr "Фаза (для трехфазных)" -#: netbox/dcim/models/device_component_templates.py:357 +#: dcim/models/device_component_templates.py:357 msgid "power outlet template" msgstr "шаблон розетки питания" -#: netbox/dcim/models/device_component_templates.py:358 +#: dcim/models/device_component_templates.py:358 msgid "power outlet templates" msgstr "шаблоны розеток питания" -#: netbox/dcim/models/device_component_templates.py:367 +#: dcim/models/device_component_templates.py:367 #, python-brace-format msgid "Parent power port ({power_port}) must belong to the same device type" msgstr "" "Родительский порт питания ({power_port}) должен принадлежать тому же типу " "устройства" -#: netbox/dcim/models/device_component_templates.py:371 +#: dcim/models/device_component_templates.py:371 #, python-brace-format msgid "Parent power port ({power_port}) must belong to the same module type" msgstr "" "Родительский порт питания ({power_port}) должен принадлежать тому же типу " "модулей" -#: netbox/dcim/models/device_component_templates.py:423 -#: netbox/dcim/models/device_components.py:611 +#: dcim/models/device_component_templates.py:423 +#: dcim/models/device_components.py:611 msgid "management only" msgstr "только управление" -#: netbox/dcim/models/device_component_templates.py:431 -#: netbox/dcim/models/device_components.py:550 +#: dcim/models/device_component_templates.py:431 +#: dcim/models/device_components.py:550 msgid "bridge interface" msgstr "интерфейс моста" -#: netbox/dcim/models/device_component_templates.py:449 -#: netbox/dcim/models/device_components.py:636 +#: dcim/models/device_component_templates.py:449 +#: dcim/models/device_components.py:636 msgid "wireless role" msgstr "роль беспроводной сети" -#: netbox/dcim/models/device_component_templates.py:455 +#: dcim/models/device_component_templates.py:455 msgid "interface template" msgstr "шаблон интерфейса" -#: netbox/dcim/models/device_component_templates.py:456 +#: dcim/models/device_component_templates.py:456 msgid "interface templates" msgstr "шаблоны интерфейсов" -#: netbox/dcim/models/device_component_templates.py:463 -#: netbox/dcim/models/device_components.py:804 -#: netbox/virtualization/models/virtualmachines.py:405 +#: dcim/models/device_component_templates.py:463 +#: dcim/models/device_components.py:804 +#: virtualization/models/virtualmachines.py:405 msgid "An interface cannot be bridged to itself." msgstr "Интерфейс не может быть подключен к самому себе." -#: netbox/dcim/models/device_component_templates.py:466 +#: dcim/models/device_component_templates.py:466 #, python-brace-format msgid "Bridge interface ({bridge}) must belong to the same device type" msgstr "" "Интерфейс моста ({bridge}) должно принадлежать к тому же типу устройства" -#: netbox/dcim/models/device_component_templates.py:470 +#: dcim/models/device_component_templates.py:470 #, python-brace-format msgid "Bridge interface ({bridge}) must belong to the same module type" msgstr "Интерфейс моста ({bridge}) должен принадлежать к одному типу модулей" -#: netbox/dcim/models/device_component_templates.py:526 -#: netbox/dcim/models/device_components.py:984 +#: dcim/models/device_component_templates.py:526 +#: dcim/models/device_components.py:984 msgid "rear port position" msgstr "положение заднего порта" -#: netbox/dcim/models/device_component_templates.py:551 +#: dcim/models/device_component_templates.py:551 msgid "front port template" msgstr "шаблон переднего порта" -#: netbox/dcim/models/device_component_templates.py:552 +#: dcim/models/device_component_templates.py:552 msgid "front port templates" msgstr "шаблоны передних портов" -#: netbox/dcim/models/device_component_templates.py:562 +#: dcim/models/device_component_templates.py:562 #, python-brace-format msgid "Rear port ({name}) must belong to the same device type" msgstr "Задний порт ({name}) должно принадлежать к тому же типу устройства" -#: netbox/dcim/models/device_component_templates.py:568 +#: dcim/models/device_component_templates.py:568 #, python-brace-format msgid "" "Invalid rear port position ({position}); rear port {name} has only {count} " @@ -5380,48 +4941,48 @@ msgstr "" "Неверное положение заднего порта ({position}); задний порт {name} имеет " "только {count} позиции" -#: netbox/dcim/models/device_component_templates.py:621 -#: netbox/dcim/models/device_components.py:1053 +#: dcim/models/device_component_templates.py:621 +#: dcim/models/device_components.py:1053 msgid "positions" msgstr "позиция" -#: netbox/dcim/models/device_component_templates.py:632 +#: dcim/models/device_component_templates.py:632 msgid "rear port template" msgstr "шаблон заднего порта" -#: netbox/dcim/models/device_component_templates.py:633 +#: dcim/models/device_component_templates.py:633 msgid "rear port templates" msgstr "шаблоны задних портов" -#: netbox/dcim/models/device_component_templates.py:662 -#: netbox/dcim/models/device_components.py:1103 +#: dcim/models/device_component_templates.py:662 +#: dcim/models/device_components.py:1103 msgid "position" msgstr "позиция" -#: netbox/dcim/models/device_component_templates.py:665 -#: netbox/dcim/models/device_components.py:1106 +#: dcim/models/device_component_templates.py:665 +#: dcim/models/device_components.py:1106 msgid "Identifier to reference when renaming installed components" msgstr "" "Идентификатор, на который следует ссылаться при переименовании установленных" " компонентов" -#: netbox/dcim/models/device_component_templates.py:671 +#: dcim/models/device_component_templates.py:671 msgid "module bay template" msgstr "шаблон модульного отсека" -#: netbox/dcim/models/device_component_templates.py:672 +#: dcim/models/device_component_templates.py:672 msgid "module bay templates" msgstr "шаблоны модульных отсеков" -#: netbox/dcim/models/device_component_templates.py:699 +#: dcim/models/device_component_templates.py:699 msgid "device bay template" msgstr "шаблон отсека для устройств" -#: netbox/dcim/models/device_component_templates.py:700 +#: dcim/models/device_component_templates.py:700 msgid "device bay templates" msgstr "шаблоны отсеков для устройств" -#: netbox/dcim/models/device_component_templates.py:713 +#: dcim/models/device_component_templates.py:713 #, python-brace-format msgid "" "Subdevice role of device type ({device_type}) must be set to \"parent\" to " @@ -5430,208 +4991,203 @@ msgstr "" "Роль подустройства типа устройства ({device_type}) должно быть установлено " "значение «родительский», чтобы разрешить отсеки для устройств." -#: netbox/dcim/models/device_component_templates.py:768 -#: netbox/dcim/models/device_components.py:1262 +#: dcim/models/device_component_templates.py:768 +#: dcim/models/device_components.py:1262 msgid "part ID" msgstr "номер модели" -#: netbox/dcim/models/device_component_templates.py:770 -#: netbox/dcim/models/device_components.py:1264 +#: dcim/models/device_component_templates.py:770 +#: dcim/models/device_components.py:1264 msgid "Manufacturer-assigned part identifier" msgstr "Номер модели, присвоенный производителем" -#: netbox/dcim/models/device_component_templates.py:787 +#: dcim/models/device_component_templates.py:787 msgid "inventory item template" msgstr "шаблон инвентарного товара" -#: netbox/dcim/models/device_component_templates.py:788 +#: dcim/models/device_component_templates.py:788 msgid "inventory item templates" msgstr "шаблоны товаров инвентаря" -#: netbox/dcim/models/device_components.py:105 +#: dcim/models/device_components.py:105 msgid "Components cannot be moved to a different device." msgstr "Компоненты нельзя перемещать на другое устройство." -#: netbox/dcim/models/device_components.py:144 +#: dcim/models/device_components.py:144 msgid "cable end" msgstr "конец кабеля" -#: netbox/dcim/models/device_components.py:150 +#: dcim/models/device_components.py:150 msgid "mark connected" msgstr "отметка подключена" -#: netbox/dcim/models/device_components.py:152 +#: dcim/models/device_components.py:152 msgid "Treat as if a cable is connected" msgstr "Обращайтесь так, как будто кабель подключен" -#: netbox/dcim/models/device_components.py:170 +#: dcim/models/device_components.py:170 msgid "Must specify cable end (A or B) when attaching a cable." msgstr "При подключении кабеля необходимо указать конец кабеля (A или B)." -#: netbox/dcim/models/device_components.py:174 +#: dcim/models/device_components.py:174 msgid "Cable end must not be set without a cable." msgstr "Нельзя указывать конец кабеля без указания самого кабеля." -#: netbox/dcim/models/device_components.py:178 +#: dcim/models/device_components.py:178 msgid "Cannot mark as connected with a cable attached." msgstr "Невозможно отметить как подключенный, если присоединен кабель." -#: netbox/dcim/models/device_components.py:202 +#: dcim/models/device_components.py:202 #, python-brace-format msgid "{class_name} models must declare a parent_object property" msgstr "{class_name} модели должны объявить свойство parent_object" -#: netbox/dcim/models/device_components.py:287 -#: netbox/dcim/models/device_components.py:316 -#: netbox/dcim/models/device_components.py:349 -#: netbox/dcim/models/device_components.py:467 +#: dcim/models/device_components.py:287 dcim/models/device_components.py:316 +#: dcim/models/device_components.py:349 dcim/models/device_components.py:467 msgid "Physical port type" msgstr "Тип физического порта" -#: netbox/dcim/models/device_components.py:290 -#: netbox/dcim/models/device_components.py:319 +#: dcim/models/device_components.py:290 dcim/models/device_components.py:319 msgid "speed" msgstr "скорость" -#: netbox/dcim/models/device_components.py:294 -#: netbox/dcim/models/device_components.py:323 +#: dcim/models/device_components.py:294 dcim/models/device_components.py:323 msgid "Port speed in bits per second" msgstr "Скорость порта в битах в секунду" -#: netbox/dcim/models/device_components.py:300 +#: dcim/models/device_components.py:300 msgid "console port" msgstr "консольный порт" -#: netbox/dcim/models/device_components.py:301 +#: dcim/models/device_components.py:301 msgid "console ports" msgstr "консольные порты" -#: netbox/dcim/models/device_components.py:329 +#: dcim/models/device_components.py:329 msgid "console server port" msgstr "порт консольного сервера" -#: netbox/dcim/models/device_components.py:330 +#: dcim/models/device_components.py:330 msgid "console server ports" msgstr "порты консольного сервера" -#: netbox/dcim/models/device_components.py:369 +#: dcim/models/device_components.py:369 msgid "power port" msgstr "порт питания" -#: netbox/dcim/models/device_components.py:370 +#: dcim/models/device_components.py:370 msgid "power ports" msgstr "порты питания" -#: netbox/dcim/models/device_components.py:487 +#: dcim/models/device_components.py:487 msgid "power outlet" msgstr "розетка питания" -#: netbox/dcim/models/device_components.py:488 +#: dcim/models/device_components.py:488 msgid "power outlets" msgstr "розетки питания" -#: netbox/dcim/models/device_components.py:499 +#: dcim/models/device_components.py:499 #, python-brace-format msgid "Parent power port ({power_port}) must belong to the same device" msgstr "" "Родительский порт питания ({power_port}) должен принадлежать тому же " "устройству" -#: netbox/dcim/models/device_components.py:530 netbox/vpn/models/crypto.py:81 -#: netbox/vpn/models/crypto.py:226 +#: dcim/models/device_components.py:530 vpn/models/crypto.py:81 +#: vpn/models/crypto.py:226 msgid "mode" msgstr "режим" -#: netbox/dcim/models/device_components.py:534 +#: dcim/models/device_components.py:534 msgid "IEEE 802.1Q tagging strategy" msgstr "Стратегия маркировки IEEE 802.1Q" -#: netbox/dcim/models/device_components.py:542 +#: dcim/models/device_components.py:542 msgid "parent interface" msgstr "родительский интерфейс" -#: netbox/dcim/models/device_components.py:602 +#: dcim/models/device_components.py:602 msgid "parent LAG" msgstr "родительский LAG" -#: netbox/dcim/models/device_components.py:612 +#: dcim/models/device_components.py:612 msgid "This interface is used only for out-of-band management" msgstr "Этот интерфейс используется только для внеполосного управления" -#: netbox/dcim/models/device_components.py:617 +#: dcim/models/device_components.py:617 msgid "speed (Kbps)" msgstr "скорость (Кбит/с)" -#: netbox/dcim/models/device_components.py:620 +#: dcim/models/device_components.py:620 msgid "duplex" msgstr "дуплекс" -#: netbox/dcim/models/device_components.py:630 +#: dcim/models/device_components.py:630 msgid "64-bit World Wide Name" msgstr "64-битное всемирное имя" -#: netbox/dcim/models/device_components.py:642 +#: dcim/models/device_components.py:642 msgid "wireless channel" msgstr "беспроводной канал" -#: netbox/dcim/models/device_components.py:649 +#: dcim/models/device_components.py:649 msgid "channel frequency (MHz)" msgstr "частота канала (МГц)" -#: netbox/dcim/models/device_components.py:650 -#: netbox/dcim/models/device_components.py:658 +#: dcim/models/device_components.py:650 dcim/models/device_components.py:658 msgid "Populated by selected channel (if set)" msgstr "Заполнено выбранным каналом (если задано)" -#: netbox/dcim/models/device_components.py:664 +#: dcim/models/device_components.py:664 msgid "transmit power (dBm)" msgstr "мощность передачи (дБм)" -#: netbox/dcim/models/device_components.py:689 netbox/wireless/models.py:117 +#: dcim/models/device_components.py:689 wireless/models.py:117 msgid "wireless LANs" msgstr "беспроводные LANs" -#: netbox/dcim/models/device_components.py:697 -#: netbox/virtualization/models/virtualmachines.py:335 +#: dcim/models/device_components.py:697 +#: virtualization/models/virtualmachines.py:335 msgid "untagged VLAN" msgstr "VLAN без тегов" -#: netbox/dcim/models/device_components.py:703 -#: netbox/virtualization/models/virtualmachines.py:341 +#: dcim/models/device_components.py:703 +#: virtualization/models/virtualmachines.py:341 msgid "tagged VLANs" msgstr "VLAN без тегов" -#: netbox/dcim/models/device_components.py:745 -#: netbox/virtualization/models/virtualmachines.py:377 +#: dcim/models/device_components.py:745 +#: virtualization/models/virtualmachines.py:377 msgid "interface" msgstr "интерфейс" -#: netbox/dcim/models/device_components.py:746 -#: netbox/virtualization/models/virtualmachines.py:378 +#: dcim/models/device_components.py:746 +#: virtualization/models/virtualmachines.py:378 msgid "interfaces" msgstr "интерфейсы" -#: netbox/dcim/models/device_components.py:757 +#: dcim/models/device_components.py:757 #, python-brace-format msgid "{display_type} interfaces cannot have a cable attached." msgstr "{display_type} к интерфейсам нельзя подключать кабель." -#: netbox/dcim/models/device_components.py:765 +#: dcim/models/device_components.py:765 #, python-brace-format msgid "{display_type} interfaces cannot be marked as connected." msgstr "{display_type} интерфейсы нельзя пометить как подключенные." -#: netbox/dcim/models/device_components.py:774 -#: netbox/virtualization/models/virtualmachines.py:390 +#: dcim/models/device_components.py:774 +#: virtualization/models/virtualmachines.py:390 msgid "An interface cannot be its own parent." msgstr "Интерфейс не может быть собственным родителем." -#: netbox/dcim/models/device_components.py:778 +#: dcim/models/device_components.py:778 msgid "Only virtual interfaces may be assigned to a parent interface." msgstr "" "Родительскому интерфейсу могут быть назначены только виртуальные интерфейсы." -#: netbox/dcim/models/device_components.py:785 +#: dcim/models/device_components.py:785 #, python-brace-format msgid "" "The selected parent interface ({interface}) belongs to a different device " @@ -5640,7 +5196,7 @@ msgstr "" "Выбранный родительский интерфейс ({interface}) принадлежит другому " "устройству ({device})" -#: netbox/dcim/models/device_components.py:791 +#: dcim/models/device_components.py:791 #, python-brace-format msgid "" "The selected parent interface ({interface}) belongs to {device}, which is " @@ -5649,7 +5205,7 @@ msgstr "" "Выбранный родительский интерфейс ({interface}) принадлежит {device}, который" " не является частью виртуального шасси {virtual_chassis}." -#: netbox/dcim/models/device_components.py:811 +#: dcim/models/device_components.py:811 #, python-brace-format msgid "" "The selected bridge interface ({bridge}) belongs to a different device " @@ -5658,7 +5214,7 @@ msgstr "" "Выбранный интерфейс моста ({bridge}) принадлежит другому устройству " "({device})." -#: netbox/dcim/models/device_components.py:817 +#: dcim/models/device_components.py:817 #, python-brace-format msgid "" "The selected bridge interface ({interface}) belongs to {device}, which is " @@ -5667,22 +5223,22 @@ msgstr "" "Выбранный интерфейс моста ({interface}) принадлежит {device}, который не " "является частью виртуального шасси {virtual_chassis}." -#: netbox/dcim/models/device_components.py:828 +#: dcim/models/device_components.py:828 msgid "Virtual interfaces cannot have a parent LAG interface." msgstr "Виртуальные интерфейсы не могут иметь родительский интерфейс LAG." -#: netbox/dcim/models/device_components.py:832 +#: dcim/models/device_components.py:832 msgid "A LAG interface cannot be its own parent." msgstr "Интерфейс LAG не может быть собственным родителем." -#: netbox/dcim/models/device_components.py:839 +#: dcim/models/device_components.py:839 #, python-brace-format msgid "" "The selected LAG interface ({lag}) belongs to a different device ({device})." msgstr "" "Выбранный интерфейс LAG ({lag}) принадлежит другому устройству ({device})." -#: netbox/dcim/models/device_components.py:845 +#: dcim/models/device_components.py:845 #, python-brace-format msgid "" "The selected LAG interface ({lag}) belongs to {device}, which is not part of" @@ -5691,47 +5247,47 @@ msgstr "" "Выбранный интерфейс LAG ({lag}) принадлежит {device}, который не является " "частью виртуального шасси {virtual_chassis}." -#: netbox/dcim/models/device_components.py:856 +#: dcim/models/device_components.py:856 msgid "Virtual interfaces cannot have a PoE mode." msgstr "Виртуальные интерфейсы не могут иметь режим PoE." -#: netbox/dcim/models/device_components.py:860 +#: dcim/models/device_components.py:860 msgid "Virtual interfaces cannot have a PoE type." msgstr "Виртуальные интерфейсы не могут иметь тип PoE." -#: netbox/dcim/models/device_components.py:866 +#: dcim/models/device_components.py:866 msgid "Must specify PoE mode when designating a PoE type." msgstr "При назначении типа PoE необходимо указать режим PoE." -#: netbox/dcim/models/device_components.py:873 +#: dcim/models/device_components.py:873 msgid "Wireless role may be set only on wireless interfaces." msgstr "" "Роль беспроводной связи может быть установлена только на беспроводных " "интерфейсах." -#: netbox/dcim/models/device_components.py:875 +#: dcim/models/device_components.py:875 msgid "Channel may be set only on wireless interfaces." msgstr "Канал можно настроить только на беспроводных интерфейсах." -#: netbox/dcim/models/device_components.py:881 +#: dcim/models/device_components.py:881 msgid "Channel frequency may be set only on wireless interfaces." msgstr "" "Частота канала может быть установлена только на беспроводных интерфейсах." -#: netbox/dcim/models/device_components.py:885 +#: dcim/models/device_components.py:885 msgid "Cannot specify custom frequency with channel selected." msgstr "Невозможно указать произвольную частоту для выбранного канала." -#: netbox/dcim/models/device_components.py:891 +#: dcim/models/device_components.py:891 msgid "Channel width may be set only on wireless interfaces." msgstr "" "Ширина канала может быть установлена только на беспроводных интерфейсах." -#: netbox/dcim/models/device_components.py:893 +#: dcim/models/device_components.py:893 msgid "Cannot specify custom width with channel selected." msgstr "Невозможно указать произвольную ширину полосы для выбранного канала." -#: netbox/dcim/models/device_components.py:901 +#: dcim/models/device_components.py:901 #, python-brace-format msgid "" "The untagged VLAN ({untagged_vlan}) must belong to the same site as the " @@ -5740,25 +5296,25 @@ msgstr "" "VLAN без тегов ({untagged_vlan}) должно принадлежать тому же сайту, что и " "родительское устройство интерфейса, или оно должно быть глобальным." -#: netbox/dcim/models/device_components.py:990 +#: dcim/models/device_components.py:990 msgid "Mapped position on corresponding rear port" msgstr "Нанесенное на карту положение на соответствующем заднем порту" -#: netbox/dcim/models/device_components.py:1006 +#: dcim/models/device_components.py:1006 msgid "front port" msgstr "фронтальный порт" -#: netbox/dcim/models/device_components.py:1007 +#: dcim/models/device_components.py:1007 msgid "front ports" msgstr "фронтальные порты" -#: netbox/dcim/models/device_components.py:1021 +#: dcim/models/device_components.py:1021 #, python-brace-format msgid "Rear port ({rear_port}) must belong to the same device" msgstr "" "Задний порт ({rear_port}) должно принадлежать одному и тому же устройству" -#: netbox/dcim/models/device_components.py:1029 +#: dcim/models/device_components.py:1029 #, python-brace-format msgid "" "Invalid rear port position ({rear_port_position}): Rear port {name} has only" @@ -5767,19 +5323,19 @@ msgstr "" "Неверное положение заднего порта ({rear_port_position}): Задний порт {name} " "имеет только {positions} позиции." -#: netbox/dcim/models/device_components.py:1059 +#: dcim/models/device_components.py:1059 msgid "Number of front ports which may be mapped" msgstr "Количество передних портов, которые можно сопоставить" -#: netbox/dcim/models/device_components.py:1064 +#: dcim/models/device_components.py:1064 msgid "rear port" msgstr "задний порт" -#: netbox/dcim/models/device_components.py:1065 +#: dcim/models/device_components.py:1065 msgid "rear ports" msgstr "задние порты" -#: netbox/dcim/models/device_components.py:1079 +#: dcim/models/device_components.py:1079 #, python-brace-format msgid "" "The number of positions cannot be less than the number of mapped front ports" @@ -5788,38 +5344,37 @@ msgstr "" "Количество позиций не может быть меньше количества сопоставленных передних " "портов ({frontport_count})" -#: netbox/dcim/models/device_components.py:1120 +#: dcim/models/device_components.py:1120 msgid "module bay" msgstr "модульный отсек" -#: netbox/dcim/models/device_components.py:1121 +#: dcim/models/device_components.py:1121 msgid "module bays" msgstr "отсеки для модулей" -#: netbox/dcim/models/device_components.py:1138 -#: netbox/dcim/models/devices.py:1224 +#: dcim/models/device_components.py:1138 dcim/models/devices.py:1224 msgid "A module bay cannot belong to a module installed within it." msgstr "Отсек для модулей не может принадлежать установленному в нем модулю." -#: netbox/dcim/models/device_components.py:1164 +#: dcim/models/device_components.py:1164 msgid "device bay" msgstr "отсек для устройств" -#: netbox/dcim/models/device_components.py:1165 +#: dcim/models/device_components.py:1165 msgid "device bays" msgstr "отсеки для устройств" -#: netbox/dcim/models/device_components.py:1175 +#: dcim/models/device_components.py:1175 #, python-brace-format msgid "This type of device ({device_type}) does not support device bays." msgstr "" "Этот тип устройства ({device_type}) не поддерживает отсеки для устройств." -#: netbox/dcim/models/device_components.py:1181 +#: dcim/models/device_components.py:1181 msgid "Cannot install a device into itself." msgstr "Невозможно установить устройство в само по себе." -#: netbox/dcim/models/device_components.py:1189 +#: dcim/models/device_components.py:1189 #, python-brace-format msgid "" "Cannot install the specified device; device is already installed in {bay}." @@ -5827,116 +5382,114 @@ msgstr "" "Невозможно установить указанное устройство; устройство уже установлено в " "{bay}." -#: netbox/dcim/models/device_components.py:1210 +#: dcim/models/device_components.py:1210 msgid "inventory item role" msgstr "роль элемента инвентаря" -#: netbox/dcim/models/device_components.py:1211 +#: dcim/models/device_components.py:1211 msgid "inventory item roles" msgstr "роли элементов инвентаря" -#: netbox/dcim/models/device_components.py:1268 -#: netbox/dcim/models/devices.py:607 netbox/dcim/models/devices.py:1181 -#: netbox/dcim/models/racks.py:313 -#: netbox/virtualization/models/virtualmachines.py:131 +#: dcim/models/device_components.py:1268 dcim/models/devices.py:607 +#: dcim/models/devices.py:1181 dcim/models/racks.py:313 +#: virtualization/models/virtualmachines.py:131 msgid "serial number" msgstr "серийный номер" -#: netbox/dcim/models/device_components.py:1276 -#: netbox/dcim/models/devices.py:615 netbox/dcim/models/devices.py:1188 -#: netbox/dcim/models/racks.py:320 +#: dcim/models/device_components.py:1276 dcim/models/devices.py:615 +#: dcim/models/devices.py:1188 dcim/models/racks.py:320 msgid "asset tag" msgstr "инвентарный номер" -#: netbox/dcim/models/device_components.py:1277 +#: dcim/models/device_components.py:1277 msgid "A unique tag used to identify this item" msgstr "Инвентарный номер, используемый для идентификации этого элемента" -#: netbox/dcim/models/device_components.py:1280 +#: dcim/models/device_components.py:1280 msgid "discovered" msgstr "обнаружено" -#: netbox/dcim/models/device_components.py:1282 +#: dcim/models/device_components.py:1282 msgid "This item was automatically discovered" msgstr "Этот элемент был обнаружен автоматически" -#: netbox/dcim/models/device_components.py:1300 +#: dcim/models/device_components.py:1300 msgid "inventory item" msgstr "элемент инвентаря" -#: netbox/dcim/models/device_components.py:1301 +#: dcim/models/device_components.py:1301 msgid "inventory items" msgstr "элементы инвентаря" -#: netbox/dcim/models/device_components.py:1312 +#: dcim/models/device_components.py:1312 msgid "Cannot assign self as parent." msgstr "Невозможно назначить себя родителем." -#: netbox/dcim/models/device_components.py:1320 +#: dcim/models/device_components.py:1320 msgid "Parent inventory item does not belong to the same device." msgstr "" "Предмет родительского инвентаря не принадлежит одному и тому же устройству." -#: netbox/dcim/models/device_components.py:1326 +#: dcim/models/device_components.py:1326 msgid "Cannot move an inventory item with dependent children" msgstr "Невозможно переместить инвентарь вместе с дочерней зависимостью" -#: netbox/dcim/models/device_components.py:1334 +#: dcim/models/device_components.py:1334 msgid "Cannot assign inventory item to component on another device" msgstr "" "Невозможно присвоить инвентарный предмет компоненту на другом устройстве" -#: netbox/dcim/models/devices.py:54 +#: dcim/models/devices.py:54 msgid "manufacturer" msgstr "производитель" -#: netbox/dcim/models/devices.py:55 +#: dcim/models/devices.py:55 msgid "manufacturers" msgstr "производители" -#: netbox/dcim/models/devices.py:82 netbox/dcim/models/devices.py:382 -#: netbox/dcim/models/racks.py:133 +#: dcim/models/devices.py:82 dcim/models/devices.py:382 +#: dcim/models/racks.py:133 msgid "model" msgstr "модель" -#: netbox/dcim/models/devices.py:95 +#: dcim/models/devices.py:95 msgid "default platform" msgstr "платформа по умолчанию" -#: netbox/dcim/models/devices.py:98 netbox/dcim/models/devices.py:386 +#: dcim/models/devices.py:98 dcim/models/devices.py:386 msgid "part number" msgstr "номер модели" -#: netbox/dcim/models/devices.py:101 netbox/dcim/models/devices.py:389 +#: dcim/models/devices.py:101 dcim/models/devices.py:389 msgid "Discrete part number (optional)" msgstr "Дискретный номер детали (опционально)" -#: netbox/dcim/models/devices.py:107 netbox/dcim/models/racks.py:54 +#: dcim/models/devices.py:107 dcim/models/racks.py:54 msgid "height (U)" msgstr "высота (U)" -#: netbox/dcim/models/devices.py:111 +#: dcim/models/devices.py:111 msgid "exclude from utilization" msgstr "исключить из использования" -#: netbox/dcim/models/devices.py:112 +#: dcim/models/devices.py:112 msgid "Devices of this type are excluded when calculating rack utilization." msgstr "Устройства этого типа исключаются при расчёте загруженности стоек." -#: netbox/dcim/models/devices.py:116 +#: dcim/models/devices.py:116 msgid "is full depth" msgstr "полная глубина" -#: netbox/dcim/models/devices.py:117 +#: dcim/models/devices.py:117 msgid "Device consumes both front and rear rack faces." msgstr "" "Устройство занимает/блокирует юниты с обоих сторон стойки (спереди и сзади)." -#: netbox/dcim/models/devices.py:123 +#: dcim/models/devices.py:123 msgid "parent/child status" msgstr "статус родителя/потомка" -#: netbox/dcim/models/devices.py:124 +#: dcim/models/devices.py:124 msgid "" "Parent devices house child devices in device bays. Leave blank if this " "device type is neither a parent nor a child." @@ -5945,24 +5498,24 @@ msgstr "" "устройств. Оставьте поле пустым, если этот тип устройства не относится ни к " "родительскому, ни к дочернему." -#: netbox/dcim/models/devices.py:128 netbox/dcim/models/devices.py:392 -#: netbox/dcim/models/devices.py:659 netbox/dcim/models/racks.py:324 +#: dcim/models/devices.py:128 dcim/models/devices.py:392 +#: dcim/models/devices.py:659 dcim/models/racks.py:324 msgid "airflow" msgstr "воздушный поток" -#: netbox/dcim/models/devices.py:204 +#: dcim/models/devices.py:204 msgid "device type" msgstr "тип устройства" -#: netbox/dcim/models/devices.py:205 +#: dcim/models/devices.py:205 msgid "device types" msgstr "типы устройств" -#: netbox/dcim/models/devices.py:290 +#: dcim/models/devices.py:290 msgid "U height must be in increments of 0.5 rack units." msgstr "Высоту в юнитах нужно указывать с шагом 0.5 юнита." -#: netbox/dcim/models/devices.py:307 +#: dcim/models/devices.py:307 #, python-brace-format msgid "" "Device {device} in rack {rack} does not have sufficient space to accommodate" @@ -5971,7 +5524,7 @@ msgstr "" "Устройству {device} в стойке {rack} для размещения на высоте {height}U не " "хватет свободных юнитов." -#: netbox/dcim/models/devices.py:322 +#: dcim/models/devices.py:322 #, python-brace-format msgid "" "Unable to set 0U height: Found {racked_instance_count} " @@ -5981,7 +5534,7 @@ msgstr "" "href=\"{url}\">{racked_instance_count} экземпляр(ов) уже смонтированых в" " стойках." -#: netbox/dcim/models/devices.py:331 +#: dcim/models/devices.py:331 msgid "" "Must delete all device bay templates associated with this device before " "declassifying it as a parent device." @@ -5989,156 +5542,156 @@ msgstr "" "Необходимо удалить все шаблоны отсеков устройств, связанные с этим " "устройством, прежде чем рассекретить его как родительское устройство." -#: netbox/dcim/models/devices.py:337 +#: dcim/models/devices.py:337 msgid "Child device types must be 0U." msgstr "Типы дочерних устройств должны быть 0U." -#: netbox/dcim/models/devices.py:411 +#: dcim/models/devices.py:411 msgid "module type" msgstr "тип модуля" -#: netbox/dcim/models/devices.py:412 +#: dcim/models/devices.py:412 msgid "module types" msgstr "типы модулей" -#: netbox/dcim/models/devices.py:485 +#: dcim/models/devices.py:485 msgid "Virtual machines may be assigned to this role" msgstr "Эта роль может быть назначена виртуальным машинам." -#: netbox/dcim/models/devices.py:497 +#: dcim/models/devices.py:497 msgid "device role" msgstr "роль устройства" -#: netbox/dcim/models/devices.py:498 +#: dcim/models/devices.py:498 msgid "device roles" msgstr "роли устройств" -#: netbox/dcim/models/devices.py:515 +#: dcim/models/devices.py:515 msgid "Optionally limit this platform to devices of a certain manufacturer" msgstr "" "Опционально ограничьте эту платформу устройствам определенного производителя" -#: netbox/dcim/models/devices.py:527 +#: dcim/models/devices.py:527 msgid "platform" msgstr "платформа" -#: netbox/dcim/models/devices.py:528 +#: dcim/models/devices.py:528 msgid "platforms" msgstr "платформы" -#: netbox/dcim/models/devices.py:576 +#: dcim/models/devices.py:576 msgid "The function this device serves" msgstr "Функция, которую выполняет это устройство" -#: netbox/dcim/models/devices.py:608 +#: dcim/models/devices.py:608 msgid "Chassis serial number, assigned by the manufacturer" msgstr "Серийный номер шасси, присвоенный производителем" -#: netbox/dcim/models/devices.py:616 netbox/dcim/models/devices.py:1189 +#: dcim/models/devices.py:616 dcim/models/devices.py:1189 msgid "A unique tag used to identify this device" msgstr "Уникальный тег, используемый для идентификации этого устройства" -#: netbox/dcim/models/devices.py:643 +#: dcim/models/devices.py:643 msgid "position (U)" msgstr "положение (U)" -#: netbox/dcim/models/devices.py:650 +#: dcim/models/devices.py:650 msgid "rack face" msgstr "лицевая сторона стойки" -#: netbox/dcim/models/devices.py:670 netbox/dcim/models/devices.py:1415 -#: netbox/virtualization/models/virtualmachines.py:100 +#: dcim/models/devices.py:670 dcim/models/devices.py:1415 +#: virtualization/models/virtualmachines.py:100 msgid "primary IPv4" msgstr "основной IPv4" -#: netbox/dcim/models/devices.py:678 netbox/dcim/models/devices.py:1423 -#: netbox/virtualization/models/virtualmachines.py:108 +#: dcim/models/devices.py:678 dcim/models/devices.py:1423 +#: virtualization/models/virtualmachines.py:108 msgid "primary IPv6" msgstr "основной IPv6" -#: netbox/dcim/models/devices.py:686 +#: dcim/models/devices.py:686 msgid "out-of-band IP" msgstr "внеполосный IP-адрес" -#: netbox/dcim/models/devices.py:703 +#: dcim/models/devices.py:703 msgid "VC position" msgstr "Позиция VC" -#: netbox/dcim/models/devices.py:706 +#: dcim/models/devices.py:706 msgid "Virtual chassis position" msgstr "Положение виртуального шасси" -#: netbox/dcim/models/devices.py:709 +#: dcim/models/devices.py:709 msgid "VC priority" msgstr "Приоритет VC" -#: netbox/dcim/models/devices.py:713 +#: dcim/models/devices.py:713 msgid "Virtual chassis master election priority" msgstr "Приоритет выбора основного виртуального шасси" -#: netbox/dcim/models/devices.py:716 netbox/dcim/models/sites.py:207 +#: dcim/models/devices.py:716 dcim/models/sites.py:207 msgid "latitude" msgstr "широта" -#: netbox/dcim/models/devices.py:721 netbox/dcim/models/devices.py:729 -#: netbox/dcim/models/sites.py:212 netbox/dcim/models/sites.py:220 +#: dcim/models/devices.py:721 dcim/models/devices.py:729 +#: dcim/models/sites.py:212 dcim/models/sites.py:220 msgid "GPS coordinate in decimal format (xx.yyyyyy)" msgstr "GPS координата в десятичном формате (xx.yyyyyy)" -#: netbox/dcim/models/devices.py:724 netbox/dcim/models/sites.py:215 +#: dcim/models/devices.py:724 dcim/models/sites.py:215 msgid "longitude" msgstr "долгота" -#: netbox/dcim/models/devices.py:797 +#: dcim/models/devices.py:797 msgid "Device name must be unique per site." msgstr "Имя устройства должно быть уникальным для каждого сайта." -#: netbox/dcim/models/devices.py:808 netbox/ipam/models/services.py:75 +#: dcim/models/devices.py:808 ipam/models/services.py:75 msgid "device" msgstr "устройство" -#: netbox/dcim/models/devices.py:809 +#: dcim/models/devices.py:809 msgid "devices" msgstr "устройства" -#: netbox/dcim/models/devices.py:835 +#: dcim/models/devices.py:835 #, python-brace-format msgid "Rack {rack} does not belong to site {site}." msgstr "Стойка {rack} не принадлежит сайту {site}." -#: netbox/dcim/models/devices.py:840 +#: dcim/models/devices.py:840 #, python-brace-format msgid "Location {location} does not belong to site {site}." msgstr "Локация {location} не принадлежит сайту {site}." -#: netbox/dcim/models/devices.py:846 +#: dcim/models/devices.py:846 #, python-brace-format msgid "Rack {rack} does not belong to location {location}." msgstr "Стойка {rack} не принадлежит локации {location}." -#: netbox/dcim/models/devices.py:853 +#: dcim/models/devices.py:853 msgid "Cannot select a rack face without assigning a rack." msgstr "Невозможно выбрать лицевую сторону стойки, не выбрав саму стойку." -#: netbox/dcim/models/devices.py:857 +#: dcim/models/devices.py:857 msgid "Cannot select a rack position without assigning a rack." msgstr "Невозможно выбрать позицию в стойке, не выбрав саму стойку." -#: netbox/dcim/models/devices.py:863 +#: dcim/models/devices.py:863 msgid "Position must be in increments of 0.5 rack units." msgstr "Позиция должна быть указана с шагом 0,5 единицы стойки." -#: netbox/dcim/models/devices.py:867 +#: dcim/models/devices.py:867 msgid "Must specify rack face when defining rack position." msgstr "При определении лицевой стороны необходимо указать позицию в стойке." -#: netbox/dcim/models/devices.py:875 +#: dcim/models/devices.py:875 #, python-brace-format msgid "" "A 0U device type ({device_type}) cannot be assigned to a rack position." msgstr "Тип устройства 0U ({device_type}) не может быть отнесено к стойке." -#: netbox/dcim/models/devices.py:886 +#: dcim/models/devices.py:886 msgid "" "Child device types cannot be assigned to a rack face. This is an attribute " "of the parent device." @@ -6146,7 +5699,7 @@ msgstr "" "Устройствам с указанным в типе свойством \"дочернее\" нельзя выбрать лицевую" " сторону стойки. Этот атрибут указывается для \"родительского\" устройства." -#: netbox/dcim/models/devices.py:893 +#: dcim/models/devices.py:893 msgid "" "Child device types cannot be assigned to a rack position. This is an " "attribute of the parent device." @@ -6154,7 +5707,7 @@ msgstr "" "Типы дочерних устройств нельзя отнести к позиции в стойке. Это атрибут " "родительского устройства." -#: netbox/dcim/models/devices.py:907 +#: dcim/models/devices.py:907 #, python-brace-format msgid "" "U{position} is already occupied or does not have sufficient space to " @@ -6163,22 +5716,22 @@ msgstr "" "U{position} уже занят или в нем недостаточно места для размещения этого типа" " устройств: {device_type} ({u_height}U)" -#: netbox/dcim/models/devices.py:922 +#: dcim/models/devices.py:922 #, python-brace-format msgid "{ip} is not an IPv4 address." msgstr "{ip} не является адресом IPv4." -#: netbox/dcim/models/devices.py:931 netbox/dcim/models/devices.py:946 +#: dcim/models/devices.py:931 dcim/models/devices.py:946 #, python-brace-format msgid "The specified IP address ({ip}) is not assigned to this device." msgstr "Указанный IP-адрес ({ip}) не назначено этому устройству." -#: netbox/dcim/models/devices.py:937 +#: dcim/models/devices.py:937 #, python-brace-format msgid "{ip} is not an IPv6 address." msgstr "{ip} не является адресом IPv6." -#: netbox/dcim/models/devices.py:964 +#: dcim/models/devices.py:964 #, python-brace-format msgid "" "The assigned platform is limited to {platform_manufacturer} device types, " @@ -6187,18 +5740,18 @@ msgstr "" "Назначенная платформа ограничена {platform_manufacturer} типы устройств, но " "данный тип устройства относится к {devicetype_manufacturer}." -#: netbox/dcim/models/devices.py:975 +#: dcim/models/devices.py:975 #, python-brace-format msgid "The assigned cluster belongs to a different site ({site})" msgstr "Назначенный кластер принадлежит другому сайту ({site})" -#: netbox/dcim/models/devices.py:983 +#: dcim/models/devices.py:983 msgid "A device assigned to a virtual chassis must have its position defined." msgstr "" "Положение устройства, назначенного виртуальному шасси, должно быть " "определено." -#: netbox/dcim/models/devices.py:988 +#: dcim/models/devices.py:988 #, python-brace-format msgid "" "Device cannot be removed from virtual chassis {virtual_chassis} because it " @@ -6207,15 +5760,15 @@ msgstr "" "Устройство нельзя удалить из виртуального корпуса {virtual_chassis} потому " "что в настоящее время оно назначено его хозяином." -#: netbox/dcim/models/devices.py:1196 +#: dcim/models/devices.py:1196 msgid "module" msgstr "модуль" -#: netbox/dcim/models/devices.py:1197 +#: dcim/models/devices.py:1197 msgid "modules" msgstr "модули" -#: netbox/dcim/models/devices.py:1213 +#: dcim/models/devices.py:1213 #, python-brace-format msgid "" "Module must be installed within a module bay belonging to the assigned " @@ -6224,21 +5777,21 @@ msgstr "" "Модуль должен быть установлен в модульном отсеке, принадлежащем назначенному" " устройству ({device})." -#: netbox/dcim/models/devices.py:1334 +#: dcim/models/devices.py:1334 msgid "domain" msgstr "Домен" -#: netbox/dcim/models/devices.py:1347 netbox/dcim/models/devices.py:1348 +#: dcim/models/devices.py:1347 dcim/models/devices.py:1348 msgid "virtual chassis" msgstr "виртуальное шасси" -#: netbox/dcim/models/devices.py:1363 +#: dcim/models/devices.py:1363 #, python-brace-format msgid "" "The selected master ({master}) is not assigned to this virtual chassis." msgstr "Выбранный мастер ({master}) не назначено этому виртуальному шасси." -#: netbox/dcim/models/devices.py:1379 +#: dcim/models/devices.py:1379 #, python-brace-format msgid "" "Unable to delete virtual chassis {self}. There are member interfaces which " @@ -6247,61 +5800,61 @@ msgstr "" "Невозможно удалить виртуальное шасси {self}. Существуют интерфейсы-члены, " "которые образуют межкорпусные интерфейсы LAG." -#: netbox/dcim/models/devices.py:1404 netbox/vpn/models/l2vpn.py:37 +#: dcim/models/devices.py:1404 vpn/models/l2vpn.py:37 msgid "identifier" msgstr "идентификатор" -#: netbox/dcim/models/devices.py:1405 +#: dcim/models/devices.py:1405 msgid "Numeric identifier unique to the parent device" msgstr "Цифровой идентификатор, уникальный для родительского устройства" -#: netbox/dcim/models/devices.py:1433 netbox/extras/models/customfields.py:225 -#: netbox/extras/models/models.py:107 netbox/extras/models/models.py:694 -#: netbox/netbox/models/__init__.py:115 +#: dcim/models/devices.py:1433 extras/models/customfields.py:225 +#: extras/models/models.py:107 extras/models/models.py:694 +#: netbox/models/__init__.py:115 msgid "comments" msgstr "комментарии" -#: netbox/dcim/models/devices.py:1449 +#: dcim/models/devices.py:1449 msgid "virtual device context" msgstr "виртуальный контекст" -#: netbox/dcim/models/devices.py:1450 +#: dcim/models/devices.py:1450 msgid "virtual device contexts" msgstr "виртуальные контексты" -#: netbox/dcim/models/devices.py:1482 +#: dcim/models/devices.py:1482 #, python-brace-format msgid "{ip} is not an IPv{family} address." msgstr "{ip} не является IPV{family} адрес." -#: netbox/dcim/models/devices.py:1488 +#: dcim/models/devices.py:1488 msgid "Primary IP address must belong to an interface on the assigned device." msgstr "" "Основной IP-адрес должен принадлежать интерфейсу на назначенном устройстве." -#: netbox/dcim/models/mixins.py:15 netbox/extras/models/configs.py:41 -#: netbox/extras/models/models.py:313 netbox/extras/models/models.py:522 -#: netbox/extras/models/search.py:48 netbox/ipam/models/ip.py:194 +#: dcim/models/mixins.py:15 extras/models/configs.py:41 +#: extras/models/models.py:313 extras/models/models.py:522 +#: extras/models/search.py:48 ipam/models/ip.py:194 msgid "weight" msgstr "вес" -#: netbox/dcim/models/mixins.py:22 +#: dcim/models/mixins.py:22 msgid "weight unit" msgstr "весовая единица" -#: netbox/dcim/models/mixins.py:51 +#: dcim/models/mixins.py:51 msgid "Must specify a unit when setting a weight" msgstr "При установке веса необходимо указать единицу измерения" -#: netbox/dcim/models/power.py:55 +#: dcim/models/power.py:55 msgid "power panel" msgstr "панель питания" -#: netbox/dcim/models/power.py:56 +#: dcim/models/power.py:56 msgid "power panels" msgstr "панели питания" -#: netbox/dcim/models/power.py:70 +#: dcim/models/power.py:70 #, python-brace-format msgid "" "Location {location} ({location_site}) is in a different site than {site}" @@ -6309,43 +5862,43 @@ msgstr "" "Расположение локации{location} ({location_site}) не соответствует " "требующемуся сайту {site}" -#: netbox/dcim/models/power.py:108 +#: dcim/models/power.py:108 msgid "supply" msgstr "запас" -#: netbox/dcim/models/power.py:114 +#: dcim/models/power.py:114 msgid "phase" msgstr "фаза" -#: netbox/dcim/models/power.py:120 +#: dcim/models/power.py:120 msgid "voltage" msgstr "напряжение" -#: netbox/dcim/models/power.py:125 +#: dcim/models/power.py:125 msgid "amperage" msgstr "сила тока" -#: netbox/dcim/models/power.py:130 +#: dcim/models/power.py:130 msgid "max utilization" msgstr "максимальное использование" -#: netbox/dcim/models/power.py:133 +#: dcim/models/power.py:133 msgid "Maximum permissible draw (percentage)" msgstr "Максимально допустимое потребление (в процентах)" -#: netbox/dcim/models/power.py:136 +#: dcim/models/power.py:136 msgid "available power" msgstr "доступная мощность" -#: netbox/dcim/models/power.py:164 +#: dcim/models/power.py:164 msgid "power feed" msgstr "подача питания" -#: netbox/dcim/models/power.py:165 +#: dcim/models/power.py:165 msgid "power feeds" msgstr "источники питания" -#: netbox/dcim/models/power.py:179 +#: dcim/models/power.py:179 #, python-brace-format msgid "" "Rack {rack} ({rack_site}) and power panel {powerpanel} ({powerpanel_site}) " @@ -6354,63 +5907,63 @@ msgstr "" "Стойка {rack} ({rack_site}) и панель питания {powerpanel} " "({powerpanel_site}) расположены на разных сайтах." -#: netbox/dcim/models/power.py:190 +#: dcim/models/power.py:190 msgid "Voltage cannot be negative for AC supply" msgstr "Напряжение питания переменного тока не может быть отрицательным" -#: netbox/dcim/models/racks.py:47 +#: dcim/models/racks.py:47 msgid "width" msgstr "ширина" -#: netbox/dcim/models/racks.py:48 +#: dcim/models/racks.py:48 msgid "Rail-to-rail width" msgstr "Ширина от рельса до рельса" -#: netbox/dcim/models/racks.py:56 +#: dcim/models/racks.py:56 msgid "Height in rack units" msgstr "Высота в юнитах стойки" -#: netbox/dcim/models/racks.py:60 +#: dcim/models/racks.py:60 msgid "starting unit" msgstr "начальный юнит" -#: netbox/dcim/models/racks.py:62 +#: dcim/models/racks.py:62 msgid "Starting unit for rack" msgstr "Начальный юнит для стойки" -#: netbox/dcim/models/racks.py:66 +#: dcim/models/racks.py:66 msgid "descending units" msgstr "единицы по убыванию" -#: netbox/dcim/models/racks.py:67 +#: dcim/models/racks.py:67 msgid "Units are numbered top-to-bottom" msgstr "Единицы нумеруются сверху вниз" -#: netbox/dcim/models/racks.py:72 +#: dcim/models/racks.py:72 msgid "outer width" msgstr "внешняя ширина" -#: netbox/dcim/models/racks.py:75 +#: dcim/models/racks.py:75 msgid "Outer dimension of rack (width)" msgstr "Наружный размер стойки (ширина)" -#: netbox/dcim/models/racks.py:78 +#: dcim/models/racks.py:78 msgid "outer depth" msgstr "внешняя глубина" -#: netbox/dcim/models/racks.py:81 +#: dcim/models/racks.py:81 msgid "Outer dimension of rack (depth)" msgstr "Внешний размер стойки (глубина)" -#: netbox/dcim/models/racks.py:84 +#: dcim/models/racks.py:84 msgid "outer unit" msgstr "внешний юнит" -#: netbox/dcim/models/racks.py:90 +#: dcim/models/racks.py:90 msgid "mounting depth" msgstr "глубина монтажа" -#: netbox/dcim/models/racks.py:94 +#: dcim/models/racks.py:94 msgid "" "Maximum depth of a mounted device, in millimeters. For four-post racks, this" " is the distance between the front and rear rails." @@ -6419,76 +5972,75 @@ msgstr "" "четырехстоечных стоек это расстояние между передними и задними " "направляющими." -#: netbox/dcim/models/racks.py:102 +#: dcim/models/racks.py:102 msgid "max weight" msgstr "максимальный вес" -#: netbox/dcim/models/racks.py:105 +#: dcim/models/racks.py:105 msgid "Maximum load capacity for the rack" msgstr "Максимальная грузоподъемность стойки" -#: netbox/dcim/models/racks.py:125 netbox/dcim/models/racks.py:252 +#: dcim/models/racks.py:125 dcim/models/racks.py:252 msgid "form factor" msgstr "форм-фактор" -#: netbox/dcim/models/racks.py:162 +#: dcim/models/racks.py:162 msgid "rack type" msgstr "тип стойки" -#: netbox/dcim/models/racks.py:163 +#: dcim/models/racks.py:163 msgid "rack types" msgstr "типы стоек" -#: netbox/dcim/models/racks.py:180 netbox/dcim/models/racks.py:379 +#: dcim/models/racks.py:180 dcim/models/racks.py:379 msgid "Must specify a unit when setting an outer width/depth" msgstr "" "При настройке внешней ширины/глубины необходимо указать единицу измерения" -#: netbox/dcim/models/racks.py:184 netbox/dcim/models/racks.py:383 +#: dcim/models/racks.py:184 dcim/models/racks.py:383 msgid "Must specify a unit when setting a maximum weight" msgstr "При установке максимального веса необходимо указать единицу измерения" -#: netbox/dcim/models/racks.py:230 +#: dcim/models/racks.py:230 msgid "rack role" msgstr "назначение стойки" -#: netbox/dcim/models/racks.py:231 +#: dcim/models/racks.py:231 msgid "rack roles" msgstr "назначение стоек" -#: netbox/dcim/models/racks.py:274 +#: dcim/models/racks.py:274 msgid "facility ID" msgstr "идентификатор объекта" -#: netbox/dcim/models/racks.py:275 +#: dcim/models/racks.py:275 msgid "Locally-assigned identifier" msgstr "Локально назначенный идентификатор" -#: netbox/dcim/models/racks.py:308 netbox/ipam/forms/bulk_import.py:201 -#: netbox/ipam/forms/bulk_import.py:266 netbox/ipam/forms/bulk_import.py:301 -#: netbox/ipam/forms/bulk_import.py:459 -#: netbox/virtualization/forms/bulk_import.py:112 +#: dcim/models/racks.py:308 ipam/forms/bulk_import.py:201 +#: ipam/forms/bulk_import.py:266 ipam/forms/bulk_import.py:301 +#: ipam/forms/bulk_import.py:459 virtualization/forms/bulk_import.py:112 msgid "Functional role" msgstr "Функциональная роль" -#: netbox/dcim/models/racks.py:321 +#: dcim/models/racks.py:321 msgid "A unique tag used to identify this rack" msgstr "Инвентарный номер, используемый для идентификации этой стойки" -#: netbox/dcim/models/racks.py:359 +#: dcim/models/racks.py:359 msgid "rack" msgstr "стойка" -#: netbox/dcim/models/racks.py:360 +#: dcim/models/racks.py:360 msgid "racks" msgstr "стойки" -#: netbox/dcim/models/racks.py:375 +#: dcim/models/racks.py:375 #, python-brace-format msgid "Assigned location must belong to parent site ({site})." msgstr "Назначенная локация должна принадлежать родительскому сайту ({site})." -#: netbox/dcim/models/racks.py:393 +#: dcim/models/racks.py:393 #, python-brace-format msgid "" "Rack must be at least {min_height}U tall to house currently installed " @@ -6497,7 +6049,7 @@ msgstr "" "Стойка должна иметь высоту не менее {min_height}чтобы разместить, " "установленные в настоящее время устройства." -#: netbox/dcim/models/racks.py:400 +#: dcim/models/racks.py:400 #, python-brace-format msgid "" "Rack unit numbering must begin at {position} or less to house currently " @@ -6506,958 +6058,895 @@ msgstr "" "Нумерация стоек должна начинаться с {position} или меньше для размещения " "установленных в настоящее время устройств." -#: netbox/dcim/models/racks.py:408 +#: dcim/models/racks.py:408 #, python-brace-format msgid "Location must be from the same site, {site}." msgstr "Локация должна располагаться в том-же сайте, {site}." -#: netbox/dcim/models/racks.py:670 +#: dcim/models/racks.py:670 msgid "units" msgstr "юниты" -#: netbox/dcim/models/racks.py:696 +#: dcim/models/racks.py:696 msgid "rack reservation" msgstr "Резервирование стойки" -#: netbox/dcim/models/racks.py:697 +#: dcim/models/racks.py:697 msgid "rack reservations" msgstr "Резервирование стоек" -#: netbox/dcim/models/racks.py:714 +#: dcim/models/racks.py:714 #, python-brace-format msgid "Invalid unit(s) for {height}U rack: {unit_list}" msgstr "" "Неверные единицы измерения для стоек высотой{height}U по списку: {unit_list}" -#: netbox/dcim/models/racks.py:727 +#: dcim/models/racks.py:727 #, python-brace-format msgid "The following units have already been reserved: {unit_list}" msgstr "Следующие юниты уже зарезервированы: {unit_list}" -#: netbox/dcim/models/sites.py:49 +#: dcim/models/sites.py:49 msgid "A top-level region with this name already exists." msgstr "Регион верхнего уровня с таким названием уже существует." -#: netbox/dcim/models/sites.py:59 +#: dcim/models/sites.py:59 msgid "A top-level region with this slug already exists." msgstr "Регион верхнего уровня с этой подстрокой уже существует." -#: netbox/dcim/models/sites.py:62 +#: dcim/models/sites.py:62 msgid "region" msgstr "регион" -#: netbox/dcim/models/sites.py:63 +#: dcim/models/sites.py:63 msgid "regions" msgstr "регионы" -#: netbox/dcim/models/sites.py:102 +#: dcim/models/sites.py:102 msgid "A top-level site group with this name already exists." msgstr "Группа сайтов верхнего уровня с таким именем уже существует." -#: netbox/dcim/models/sites.py:112 +#: dcim/models/sites.py:112 msgid "A top-level site group with this slug already exists." msgstr "Группа сайтов верхнего уровня с этой подстрокой уже существует." -#: netbox/dcim/models/sites.py:115 +#: dcim/models/sites.py:115 msgid "site group" msgstr "группа сайта" -#: netbox/dcim/models/sites.py:116 +#: dcim/models/sites.py:116 msgid "site groups" msgstr "группы сайтов" -#: netbox/dcim/models/sites.py:141 +#: dcim/models/sites.py:141 msgid "Full name of the site" msgstr "Полное имя сайта" -#: netbox/dcim/models/sites.py:181 netbox/dcim/models/sites.py:279 +#: dcim/models/sites.py:181 dcim/models/sites.py:279 msgid "facility" msgstr "объект" -#: netbox/dcim/models/sites.py:184 netbox/dcim/models/sites.py:282 +#: dcim/models/sites.py:184 dcim/models/sites.py:282 msgid "Local facility ID or description" msgstr "Идентификатор или описание местного объекта" -#: netbox/dcim/models/sites.py:195 +#: dcim/models/sites.py:195 msgid "physical address" msgstr "физический адрес" -#: netbox/dcim/models/sites.py:198 +#: dcim/models/sites.py:198 msgid "Physical location of the building" msgstr "Физическое местоположение здания" -#: netbox/dcim/models/sites.py:201 +#: dcim/models/sites.py:201 msgid "shipping address" msgstr "адрес доставки" -#: netbox/dcim/models/sites.py:204 +#: dcim/models/sites.py:204 msgid "If different from the physical address" msgstr "Если отличается от физического адреса" -#: netbox/dcim/models/sites.py:238 +#: dcim/models/sites.py:238 msgid "site" msgstr "сайт" -#: netbox/dcim/models/sites.py:239 +#: dcim/models/sites.py:239 msgid "sites" msgstr "сайты" -#: netbox/dcim/models/sites.py:309 +#: dcim/models/sites.py:309 msgid "A location with this name already exists within the specified site." msgstr "Локация с таким именем уже существует в указанном сайте." -#: netbox/dcim/models/sites.py:319 +#: dcim/models/sites.py:319 msgid "A location with this slug already exists within the specified site." msgstr "Локация с этой подстрокой уже существует в указанном сайте." -#: netbox/dcim/models/sites.py:322 +#: dcim/models/sites.py:322 msgid "location" msgstr "локация" -#: netbox/dcim/models/sites.py:323 +#: dcim/models/sites.py:323 msgid "locations" msgstr "локации" -#: netbox/dcim/models/sites.py:337 +#: dcim/models/sites.py:337 #, python-brace-format msgid "Parent location ({parent}) must belong to the same site ({site})." msgstr "" "Родительская локация ({parent}) должна принадлежать тому же сайту ({site})." -#: netbox/dcim/tables/cables.py:55 +#: dcim/tables/cables.py:55 msgid "Termination A" msgstr "Точка подключения A" -#: netbox/dcim/tables/cables.py:60 +#: dcim/tables/cables.py:60 msgid "Termination B" msgstr "Точка подключения Б" -#: netbox/dcim/tables/cables.py:66 netbox/wireless/tables/wirelesslink.py:23 +#: dcim/tables/cables.py:66 wireless/tables/wirelesslink.py:23 msgid "Device A" msgstr "Устройство A" -#: netbox/dcim/tables/cables.py:72 netbox/wireless/tables/wirelesslink.py:32 +#: dcim/tables/cables.py:72 wireless/tables/wirelesslink.py:32 msgid "Device B" msgstr "Устройство Б" -#: netbox/dcim/tables/cables.py:78 +#: dcim/tables/cables.py:78 msgid "Location A" msgstr "Локация A" -#: netbox/dcim/tables/cables.py:84 +#: dcim/tables/cables.py:84 msgid "Location B" msgstr "Локация Б" -#: netbox/dcim/tables/cables.py:90 +#: dcim/tables/cables.py:90 msgid "Rack A" msgstr "Стойка A" -#: netbox/dcim/tables/cables.py:96 +#: dcim/tables/cables.py:96 msgid "Rack B" msgstr "Стойка Б" -#: netbox/dcim/tables/cables.py:102 +#: dcim/tables/cables.py:102 msgid "Site A" msgstr "Сайт A" -#: netbox/dcim/tables/cables.py:108 +#: dcim/tables/cables.py:108 msgid "Site B" msgstr "Сайт Б" -#: netbox/dcim/tables/connections.py:31 netbox/dcim/tables/connections.py:50 -#: netbox/dcim/tables/connections.py:71 -#: netbox/templates/dcim/inc/connection_endpoints.html:16 +#: dcim/tables/connections.py:31 dcim/tables/connections.py:50 +#: dcim/tables/connections.py:71 +#: templates/dcim/inc/connection_endpoints.html:16 msgid "Reachable" msgstr "Доступен" -#: netbox/dcim/tables/devices.py:58 netbox/dcim/tables/devices.py:106 -#: netbox/dcim/tables/racks.py:150 netbox/dcim/tables/sites.py:105 -#: netbox/dcim/tables/sites.py:148 netbox/extras/tables/tables.py:545 -#: netbox/netbox/navigation/menu.py:69 netbox/netbox/navigation/menu.py:73 -#: netbox/netbox/navigation/menu.py:75 -#: netbox/virtualization/forms/model_forms.py:122 -#: netbox/virtualization/tables/clusters.py:83 -#: netbox/virtualization/views.py:206 +#: dcim/tables/devices.py:58 dcim/tables/devices.py:106 +#: dcim/tables/racks.py:150 dcim/tables/sites.py:105 dcim/tables/sites.py:148 +#: extras/tables/tables.py:545 netbox/navigation/menu.py:69 +#: netbox/navigation/menu.py:73 netbox/navigation/menu.py:75 +#: virtualization/forms/model_forms.py:122 +#: virtualization/tables/clusters.py:83 virtualization/views.py:206 msgid "Devices" msgstr "Устройства" -#: netbox/dcim/tables/devices.py:63 netbox/dcim/tables/devices.py:111 -#: netbox/virtualization/tables/clusters.py:88 +#: dcim/tables/devices.py:63 dcim/tables/devices.py:111 +#: virtualization/tables/clusters.py:88 msgid "VMs" msgstr "Виртуальные машины" -#: netbox/dcim/tables/devices.py:100 netbox/dcim/tables/devices.py:216 -#: netbox/extras/forms/model_forms.py:630 -#: netbox/templates/dcim/device.html:112 -#: netbox/templates/dcim/device/render_config.html:11 -#: netbox/templates/dcim/device/render_config.html:14 -#: netbox/templates/dcim/devicerole.html:44 -#: netbox/templates/dcim/platform.html:41 -#: netbox/templates/extras/configtemplate.html:10 -#: netbox/templates/virtualization/virtualmachine.html:48 -#: netbox/templates/virtualization/virtualmachine/render_config.html:11 -#: netbox/templates/virtualization/virtualmachine/render_config.html:14 -#: netbox/virtualization/tables/virtualmachines.py:107 +#: dcim/tables/devices.py:100 dcim/tables/devices.py:216 +#: extras/forms/model_forms.py:630 templates/dcim/device.html:112 +#: templates/dcim/device/render_config.html:11 +#: templates/dcim/device/render_config.html:14 +#: templates/dcim/devicerole.html:44 templates/dcim/platform.html:41 +#: templates/extras/configtemplate.html:10 +#: templates/virtualization/virtualmachine.html:48 +#: templates/virtualization/virtualmachine/render_config.html:11 +#: templates/virtualization/virtualmachine/render_config.html:14 +#: virtualization/tables/virtualmachines.py:107 msgid "Config Template" msgstr "Шаблон конфигурации" -#: netbox/dcim/tables/devices.py:150 netbox/templates/dcim/sitegroup.html:26 +#: dcim/tables/devices.py:150 templates/dcim/sitegroup.html:26 msgid "Site Group" msgstr "Группа сайтов" -#: netbox/dcim/tables/devices.py:187 netbox/dcim/tables/devices.py:1068 -#: netbox/ipam/forms/bulk_import.py:503 netbox/ipam/forms/model_forms.py:306 -#: netbox/ipam/forms/model_forms.py:315 netbox/ipam/tables/ip.py:356 -#: netbox/ipam/tables/ip.py:423 netbox/ipam/tables/ip.py:446 -#: netbox/templates/ipam/ipaddress.html:11 -#: netbox/virtualization/tables/virtualmachines.py:95 +#: dcim/tables/devices.py:187 dcim/tables/devices.py:1068 +#: ipam/forms/bulk_import.py:503 ipam/forms/model_forms.py:306 +#: ipam/forms/model_forms.py:315 ipam/tables/ip.py:356 ipam/tables/ip.py:423 +#: ipam/tables/ip.py:446 templates/ipam/ipaddress.html:11 +#: virtualization/tables/virtualmachines.py:95 msgid "IP Address" msgstr "IP-адрес" -#: netbox/dcim/tables/devices.py:191 netbox/dcim/tables/devices.py:1072 -#: netbox/virtualization/tables/virtualmachines.py:86 +#: dcim/tables/devices.py:191 dcim/tables/devices.py:1072 +#: virtualization/tables/virtualmachines.py:86 msgid "IPv4 Address" msgstr "Адрес IPv4" -#: netbox/dcim/tables/devices.py:195 netbox/dcim/tables/devices.py:1076 -#: netbox/virtualization/tables/virtualmachines.py:90 +#: dcim/tables/devices.py:195 dcim/tables/devices.py:1076 +#: virtualization/tables/virtualmachines.py:90 msgid "IPv6 Address" msgstr "Адрес IPv6" -#: netbox/dcim/tables/devices.py:210 +#: dcim/tables/devices.py:210 msgid "VC Position" msgstr "Позиция в шасси" -#: netbox/dcim/tables/devices.py:213 +#: dcim/tables/devices.py:213 msgid "VC Priority" msgstr "Приоритет шасси" -#: netbox/dcim/tables/devices.py:220 netbox/templates/dcim/device_edit.html:38 -#: netbox/templates/dcim/devicebay_populate.html:16 +#: dcim/tables/devices.py:220 templates/dcim/device_edit.html:38 +#: templates/dcim/devicebay_populate.html:16 msgid "Parent Device" msgstr "Родительское устройство" -#: netbox/dcim/tables/devices.py:225 +#: dcim/tables/devices.py:225 msgid "Position (Device Bay)" msgstr "Положение (отсек для устройств)" -#: netbox/dcim/tables/devices.py:234 +#: dcim/tables/devices.py:234 msgid "Console ports" msgstr "Консольные порты" -#: netbox/dcim/tables/devices.py:237 +#: dcim/tables/devices.py:237 msgid "Console server ports" msgstr "Порты консольного сервера" -#: netbox/dcim/tables/devices.py:240 +#: dcim/tables/devices.py:240 msgid "Power ports" msgstr "Порты питания" -#: netbox/dcim/tables/devices.py:243 +#: dcim/tables/devices.py:243 msgid "Power outlets" msgstr "Розетки питания" -#: netbox/dcim/tables/devices.py:246 netbox/dcim/tables/devices.py:1081 -#: netbox/dcim/tables/devicetypes.py:128 netbox/dcim/views.py:1042 -#: netbox/dcim/views.py:1281 netbox/dcim/views.py:1977 -#: netbox/netbox/navigation/menu.py:94 netbox/netbox/navigation/menu.py:250 -#: netbox/templates/dcim/device/base.html:37 -#: netbox/templates/dcim/device_list.html:43 -#: netbox/templates/dcim/devicetype/base.html:34 -#: netbox/templates/dcim/module.html:34 -#: netbox/templates/dcim/moduletype/base.html:34 -#: netbox/templates/dcim/virtualdevicecontext.html:61 -#: netbox/templates/dcim/virtualdevicecontext.html:81 -#: netbox/templates/virtualization/virtualmachine/base.html:27 -#: netbox/templates/virtualization/virtualmachine_list.html:14 -#: netbox/virtualization/tables/virtualmachines.py:101 -#: netbox/virtualization/views.py:366 netbox/wireless/tables/wirelesslan.py:55 +#: dcim/tables/devices.py:246 dcim/tables/devices.py:1081 +#: dcim/tables/devicetypes.py:128 dcim/views.py:1042 dcim/views.py:1281 +#: dcim/views.py:1977 netbox/navigation/menu.py:94 +#: netbox/navigation/menu.py:250 templates/dcim/device/base.html:37 +#: templates/dcim/device_list.html:43 templates/dcim/devicetype/base.html:34 +#: templates/dcim/inc/moduletype_buttons.html:25 templates/dcim/module.html:34 +#: templates/dcim/virtualdevicecontext.html:61 +#: templates/dcim/virtualdevicecontext.html:81 +#: templates/virtualization/virtualmachine/base.html:27 +#: templates/virtualization/virtualmachine_list.html:14 +#: virtualization/tables/virtualmachines.py:101 virtualization/views.py:366 +#: wireless/tables/wirelesslan.py:55 msgid "Interfaces" msgstr "Интерфейсы" -#: netbox/dcim/tables/devices.py:249 +#: dcim/tables/devices.py:249 msgid "Front ports" msgstr "Фронтальные порты" -#: netbox/dcim/tables/devices.py:255 +#: dcim/tables/devices.py:255 msgid "Device bays" msgstr "Отсеки для устройств" -#: netbox/dcim/tables/devices.py:258 +#: dcim/tables/devices.py:258 msgid "Module bays" msgstr "Отсеки для модулей" -#: netbox/dcim/tables/devices.py:261 +#: dcim/tables/devices.py:261 msgid "Inventory items" msgstr "Комплектующие" -#: netbox/dcim/tables/devices.py:305 netbox/dcim/tables/modules.py:56 -#: netbox/templates/dcim/modulebay.html:17 +#: dcim/tables/devices.py:305 dcim/tables/modules.py:56 +#: templates/dcim/modulebay.html:17 msgid "Module Bay" msgstr "Модульный отсек" -#: netbox/dcim/tables/devices.py:318 netbox/dcim/tables/devicetypes.py:47 -#: netbox/dcim/tables/devicetypes.py:143 netbox/dcim/views.py:1117 -#: netbox/dcim/views.py:2075 netbox/netbox/navigation/menu.py:103 -#: netbox/templates/dcim/device/base.html:52 -#: netbox/templates/dcim/device_list.html:71 -#: netbox/templates/dcim/devicetype/base.html:49 -#: netbox/templates/dcim/inc/panels/inventory_items.html:6 -#: netbox/templates/dcim/inventoryitemrole.html:32 +#: dcim/tables/devices.py:318 dcim/tables/devicetypes.py:47 +#: dcim/tables/devicetypes.py:143 dcim/views.py:1117 dcim/views.py:2075 +#: netbox/navigation/menu.py:103 templates/dcim/device/base.html:52 +#: templates/dcim/device_list.html:71 templates/dcim/devicetype/base.html:49 +#: templates/dcim/inc/panels/inventory_items.html:6 +#: templates/dcim/inventoryitemrole.html:32 msgid "Inventory Items" msgstr "Предметы инвентаря" -#: netbox/dcim/tables/devices.py:333 +#: dcim/tables/devices.py:333 msgid "Cable Color" msgstr "Цвет кабеля" -#: netbox/dcim/tables/devices.py:339 +#: dcim/tables/devices.py:339 msgid "Link Peers" msgstr "Связать узлы" -#: netbox/dcim/tables/devices.py:342 +#: dcim/tables/devices.py:342 msgid "Mark Connected" msgstr "Отметить подключение" -#: netbox/dcim/tables/devices.py:461 +#: dcim/tables/devices.py:461 msgid "Maximum draw (W)" msgstr "Максимальная потребляемая мощность (Вт)" -#: netbox/dcim/tables/devices.py:464 +#: dcim/tables/devices.py:464 msgid "Allocated draw (W)" msgstr "Выделенная мощность (Вт)" -#: netbox/dcim/tables/devices.py:558 netbox/ipam/forms/model_forms.py:701 -#: netbox/ipam/tables/fhrp.py:28 netbox/ipam/views.py:596 -#: netbox/ipam/views.py:696 netbox/netbox/navigation/menu.py:158 -#: netbox/netbox/navigation/menu.py:160 -#: netbox/templates/dcim/interface.html:339 -#: netbox/templates/ipam/ipaddress_bulk_add.html:15 -#: netbox/templates/ipam/service.html:40 -#: netbox/templates/virtualization/vminterface.html:85 -#: netbox/vpn/tables/tunnels.py:98 +#: dcim/tables/devices.py:558 ipam/forms/model_forms.py:701 +#: ipam/tables/fhrp.py:28 ipam/views.py:596 ipam/views.py:696 +#: netbox/navigation/menu.py:158 netbox/navigation/menu.py:160 +#: templates/dcim/interface.html:339 templates/ipam/ipaddress_bulk_add.html:15 +#: templates/ipam/service.html:40 templates/virtualization/vminterface.html:85 +#: vpn/tables/tunnels.py:98 msgid "IP Addresses" msgstr "IP-адреса" -#: netbox/dcim/tables/devices.py:564 netbox/netbox/navigation/menu.py:202 -#: netbox/templates/ipam/inc/panels/fhrp_groups.html:6 +#: dcim/tables/devices.py:564 netbox/navigation/menu.py:202 +#: templates/ipam/inc/panels/fhrp_groups.html:6 msgid "FHRP Groups" msgstr "Группы FHRP" -#: netbox/dcim/tables/devices.py:576 netbox/templates/dcim/interface.html:89 -#: netbox/templates/virtualization/vminterface.html:67 -#: netbox/templates/vpn/tunnel.html:18 -#: netbox/templates/vpn/tunneltermination.html:13 -#: netbox/vpn/forms/bulk_edit.py:76 netbox/vpn/forms/bulk_import.py:76 -#: netbox/vpn/forms/filtersets.py:42 netbox/vpn/forms/filtersets.py:82 -#: netbox/vpn/forms/model_forms.py:60 netbox/vpn/forms/model_forms.py:145 -#: netbox/vpn/tables/tunnels.py:78 +#: dcim/tables/devices.py:576 templates/dcim/interface.html:89 +#: templates/virtualization/vminterface.html:67 templates/vpn/tunnel.html:18 +#: templates/vpn/tunneltermination.html:13 vpn/forms/bulk_edit.py:76 +#: vpn/forms/bulk_import.py:76 vpn/forms/filtersets.py:42 +#: vpn/forms/filtersets.py:82 vpn/forms/model_forms.py:60 +#: vpn/forms/model_forms.py:145 vpn/tables/tunnels.py:78 msgid "Tunnel" msgstr "Туннель" -#: netbox/dcim/tables/devices.py:604 netbox/dcim/tables/devicetypes.py:227 -#: netbox/templates/dcim/interface.html:65 +#: dcim/tables/devices.py:604 dcim/tables/devicetypes.py:227 +#: templates/dcim/interface.html:65 msgid "Management Only" msgstr "Только управление" -#: netbox/dcim/tables/devices.py:623 +#: dcim/tables/devices.py:623 msgid "VDCs" msgstr "Виртуальные контексты устройств(VDCs)" -#: netbox/dcim/tables/devices.py:873 netbox/templates/dcim/modulebay.html:53 +#: dcim/tables/devices.py:873 templates/dcim/modulebay.html:53 msgid "Installed Module" msgstr "Установленный модуль" -#: netbox/dcim/tables/devices.py:876 +#: dcim/tables/devices.py:876 msgid "Module Serial" msgstr "Серийный номер модуля" -#: netbox/dcim/tables/devices.py:880 +#: dcim/tables/devices.py:880 msgid "Module Asset Tag" msgstr "Тег активов модуля" -#: netbox/dcim/tables/devices.py:889 +#: dcim/tables/devices.py:889 msgid "Module Status" msgstr "Состояние модуля" -#: netbox/dcim/tables/devices.py:944 netbox/dcim/tables/devicetypes.py:312 -#: netbox/templates/dcim/inventoryitem.html:40 +#: dcim/tables/devices.py:944 dcim/tables/devicetypes.py:312 +#: templates/dcim/inventoryitem.html:40 msgid "Component" msgstr "Компонент" -#: netbox/dcim/tables/devices.py:1000 +#: dcim/tables/devices.py:1000 msgid "Items" msgstr "Предметы" -#: netbox/dcim/tables/devicetypes.py:37 netbox/netbox/navigation/menu.py:84 -#: netbox/netbox/navigation/menu.py:86 +#: dcim/tables/devicetypes.py:37 netbox/navigation/menu.py:84 +#: netbox/navigation/menu.py:86 msgid "Device Types" msgstr "Типы устройств" -#: netbox/dcim/tables/devicetypes.py:42 netbox/netbox/navigation/menu.py:87 +#: dcim/tables/devicetypes.py:42 netbox/navigation/menu.py:87 msgid "Module Types" msgstr "Типы модулей" -#: netbox/dcim/tables/devicetypes.py:52 netbox/extras/forms/filtersets.py:371 -#: netbox/extras/forms/model_forms.py:537 netbox/extras/tables/tables.py:540 -#: netbox/netbox/navigation/menu.py:78 +#: dcim/tables/devicetypes.py:52 extras/forms/filtersets.py:371 +#: extras/forms/model_forms.py:537 extras/tables/tables.py:540 +#: netbox/navigation/menu.py:78 msgid "Platforms" msgstr "Платформы" -#: netbox/dcim/tables/devicetypes.py:84 -#: netbox/templates/dcim/devicetype.html:29 +#: dcim/tables/devicetypes.py:84 templates/dcim/devicetype.html:29 msgid "Default Platform" msgstr "Платформа по умолчанию" -#: netbox/dcim/tables/devicetypes.py:88 -#: netbox/templates/dcim/devicetype.html:45 +#: dcim/tables/devicetypes.py:88 templates/dcim/devicetype.html:45 msgid "Full Depth" msgstr "Полная глубина" -#: netbox/dcim/tables/devicetypes.py:98 +#: dcim/tables/devicetypes.py:98 msgid "U Height" msgstr "Высота U" -#: netbox/dcim/tables/devicetypes.py:113 netbox/dcim/tables/modules.py:26 -#: netbox/dcim/tables/racks.py:89 +#: dcim/tables/devicetypes.py:113 dcim/tables/modules.py:26 +#: dcim/tables/racks.py:89 msgid "Instances" msgstr "Инстансы" -#: netbox/dcim/tables/devicetypes.py:116 netbox/dcim/views.py:982 -#: netbox/dcim/views.py:1221 netbox/dcim/views.py:1913 -#: netbox/netbox/navigation/menu.py:97 -#: netbox/templates/dcim/device/base.html:25 -#: netbox/templates/dcim/device_list.html:15 -#: netbox/templates/dcim/devicetype/base.html:22 -#: netbox/templates/dcim/module.html:22 -#: netbox/templates/dcim/moduletype/base.html:22 +#: dcim/tables/devicetypes.py:116 dcim/views.py:982 dcim/views.py:1221 +#: dcim/views.py:1913 netbox/navigation/menu.py:97 +#: templates/dcim/device/base.html:25 templates/dcim/device_list.html:15 +#: templates/dcim/devicetype/base.html:22 +#: templates/dcim/inc/moduletype_buttons.html:13 templates/dcim/module.html:22 msgid "Console Ports" msgstr "Порты консоли" -#: netbox/dcim/tables/devicetypes.py:119 netbox/dcim/views.py:997 -#: netbox/dcim/views.py:1236 netbox/dcim/views.py:1929 -#: netbox/netbox/navigation/menu.py:98 -#: netbox/templates/dcim/device/base.html:28 -#: netbox/templates/dcim/device_list.html:22 -#: netbox/templates/dcim/devicetype/base.html:25 -#: netbox/templates/dcim/module.html:25 -#: netbox/templates/dcim/moduletype/base.html:25 +#: dcim/tables/devicetypes.py:119 dcim/views.py:997 dcim/views.py:1236 +#: dcim/views.py:1929 netbox/navigation/menu.py:98 +#: templates/dcim/device/base.html:28 templates/dcim/device_list.html:22 +#: templates/dcim/devicetype/base.html:25 +#: templates/dcim/inc/moduletype_buttons.html:16 templates/dcim/module.html:25 msgid "Console Server Ports" msgstr "Порты консольного сервера" -#: netbox/dcim/tables/devicetypes.py:122 netbox/dcim/views.py:1012 -#: netbox/dcim/views.py:1251 netbox/dcim/views.py:1945 -#: netbox/netbox/navigation/menu.py:99 -#: netbox/templates/dcim/device/base.html:31 -#: netbox/templates/dcim/device_list.html:29 -#: netbox/templates/dcim/devicetype/base.html:28 -#: netbox/templates/dcim/module.html:28 -#: netbox/templates/dcim/moduletype/base.html:28 +#: dcim/tables/devicetypes.py:122 dcim/views.py:1012 dcim/views.py:1251 +#: dcim/views.py:1945 netbox/navigation/menu.py:99 +#: templates/dcim/device/base.html:31 templates/dcim/device_list.html:29 +#: templates/dcim/devicetype/base.html:28 +#: templates/dcim/inc/moduletype_buttons.html:19 templates/dcim/module.html:28 msgid "Power Ports" msgstr "Порты питания" -#: netbox/dcim/tables/devicetypes.py:125 netbox/dcim/views.py:1027 -#: netbox/dcim/views.py:1266 netbox/dcim/views.py:1961 -#: netbox/netbox/navigation/menu.py:100 -#: netbox/templates/dcim/device/base.html:34 -#: netbox/templates/dcim/device_list.html:36 -#: netbox/templates/dcim/devicetype/base.html:31 -#: netbox/templates/dcim/module.html:31 -#: netbox/templates/dcim/moduletype/base.html:31 +#: dcim/tables/devicetypes.py:125 dcim/views.py:1027 dcim/views.py:1266 +#: dcim/views.py:1961 netbox/navigation/menu.py:100 +#: templates/dcim/device/base.html:34 templates/dcim/device_list.html:36 +#: templates/dcim/devicetype/base.html:31 +#: templates/dcim/inc/moduletype_buttons.html:22 templates/dcim/module.html:31 msgid "Power Outlets" msgstr "Розетки питания" -#: netbox/dcim/tables/devicetypes.py:131 netbox/dcim/views.py:1057 -#: netbox/dcim/views.py:1296 netbox/dcim/views.py:1999 -#: netbox/netbox/navigation/menu.py:95 -#: netbox/templates/dcim/device/base.html:40 -#: netbox/templates/dcim/devicetype/base.html:37 -#: netbox/templates/dcim/module.html:37 -#: netbox/templates/dcim/moduletype/base.html:37 +#: dcim/tables/devicetypes.py:131 dcim/views.py:1057 dcim/views.py:1296 +#: dcim/views.py:1999 netbox/navigation/menu.py:95 +#: templates/dcim/device/base.html:40 templates/dcim/devicetype/base.html:37 +#: templates/dcim/inc/moduletype_buttons.html:28 templates/dcim/module.html:37 msgid "Front Ports" msgstr "Фронтальные порты" -#: netbox/dcim/tables/devicetypes.py:134 netbox/dcim/views.py:1072 -#: netbox/dcim/views.py:1311 netbox/dcim/views.py:2015 -#: netbox/netbox/navigation/menu.py:96 -#: netbox/templates/dcim/device/base.html:43 -#: netbox/templates/dcim/device_list.html:50 -#: netbox/templates/dcim/devicetype/base.html:40 -#: netbox/templates/dcim/module.html:40 -#: netbox/templates/dcim/moduletype/base.html:40 +#: dcim/tables/devicetypes.py:134 dcim/views.py:1072 dcim/views.py:1311 +#: dcim/views.py:2015 netbox/navigation/menu.py:96 +#: templates/dcim/device/base.html:43 templates/dcim/device_list.html:50 +#: templates/dcim/devicetype/base.html:40 +#: templates/dcim/inc/moduletype_buttons.html:31 templates/dcim/module.html:40 msgid "Rear Ports" msgstr "Задние порты" -#: netbox/dcim/tables/devicetypes.py:137 netbox/dcim/views.py:1102 -#: netbox/dcim/views.py:2055 netbox/netbox/navigation/menu.py:102 -#: netbox/templates/dcim/device/base.html:49 -#: netbox/templates/dcim/device_list.html:57 -#: netbox/templates/dcim/devicetype/base.html:46 +#: dcim/tables/devicetypes.py:137 dcim/views.py:1102 dcim/views.py:2055 +#: netbox/navigation/menu.py:102 templates/dcim/device/base.html:49 +#: templates/dcim/device_list.html:57 templates/dcim/devicetype/base.html:46 msgid "Device Bays" msgstr "Отсеки для устройств" -#: netbox/dcim/tables/devicetypes.py:140 netbox/dcim/views.py:1087 -#: netbox/dcim/views.py:1326 netbox/dcim/views.py:2035 -#: netbox/netbox/navigation/menu.py:101 -#: netbox/templates/dcim/device/base.html:46 -#: netbox/templates/dcim/device_list.html:64 -#: netbox/templates/dcim/devicetype/base.html:43 -#: netbox/templates/dcim/module.html:43 -#: netbox/templates/dcim/moduletype/base.html:43 +#: dcim/tables/devicetypes.py:140 dcim/views.py:1087 dcim/views.py:1326 +#: dcim/views.py:2035 netbox/navigation/menu.py:101 +#: templates/dcim/device/base.html:46 templates/dcim/device_list.html:64 +#: templates/dcim/devicetype/base.html:43 +#: templates/dcim/inc/moduletype_buttons.html:34 templates/dcim/module.html:43 msgid "Module Bays" msgstr "Отсеки для модулей" -#: netbox/dcim/tables/power.py:36 netbox/netbox/navigation/menu.py:297 -#: netbox/templates/dcim/powerpanel.html:51 +#: dcim/tables/power.py:36 netbox/navigation/menu.py:297 +#: templates/dcim/powerpanel.html:51 msgid "Power Feeds" msgstr "Источники питания" -#: netbox/dcim/tables/power.py:80 netbox/templates/dcim/powerfeed.html:99 +#: dcim/tables/power.py:80 templates/dcim/powerfeed.html:99 msgid "Max Utilization" msgstr "Максимальное использование" -#: netbox/dcim/tables/power.py:84 +#: dcim/tables/power.py:84 msgid "Available Power (VA)" msgstr "Доступная мощность (ВА)" -#: netbox/dcim/tables/racks.py:30 netbox/dcim/tables/sites.py:143 -#: netbox/netbox/navigation/menu.py:43 netbox/netbox/navigation/menu.py:47 -#: netbox/netbox/navigation/menu.py:49 +#: dcim/tables/racks.py:30 dcim/tables/sites.py:143 +#: netbox/navigation/menu.py:43 netbox/navigation/menu.py:47 +#: netbox/navigation/menu.py:49 msgid "Racks" msgstr "Стойки" -#: netbox/dcim/tables/racks.py:63 netbox/dcim/tables/racks.py:142 -#: netbox/templates/dcim/device.html:318 -#: netbox/templates/dcim/inc/panels/racktype_dimensions.html:14 +#: dcim/tables/racks.py:63 dcim/tables/racks.py:142 +#: templates/dcim/device.html:318 +#: templates/dcim/inc/panels/racktype_dimensions.html:14 msgid "Height" msgstr "Высота" -#: netbox/dcim/tables/racks.py:67 netbox/dcim/tables/racks.py:165 -#: netbox/templates/dcim/inc/panels/racktype_dimensions.html:18 +#: dcim/tables/racks.py:67 dcim/tables/racks.py:165 +#: templates/dcim/inc/panels/racktype_dimensions.html:18 msgid "Outer Width" msgstr "Внешняя ширина" -#: netbox/dcim/tables/racks.py:71 netbox/dcim/tables/racks.py:169 -#: netbox/templates/dcim/inc/panels/racktype_dimensions.html:28 +#: dcim/tables/racks.py:71 dcim/tables/racks.py:169 +#: templates/dcim/inc/panels/racktype_dimensions.html:28 msgid "Outer Depth" msgstr "Внешняя глубина" -#: netbox/dcim/tables/racks.py:79 netbox/dcim/tables/racks.py:177 +#: dcim/tables/racks.py:79 dcim/tables/racks.py:177 msgid "Max Weight" msgstr "Максимальный вес" -#: netbox/dcim/tables/racks.py:154 +#: dcim/tables/racks.py:154 msgid "Space" msgstr "Пространство" -#: netbox/dcim/tables/sites.py:30 netbox/dcim/tables/sites.py:57 -#: netbox/extras/forms/filtersets.py:351 -#: netbox/extras/forms/model_forms.py:517 netbox/ipam/forms/bulk_edit.py:130 -#: netbox/ipam/forms/model_forms.py:153 netbox/ipam/tables/asn.py:66 -#: netbox/netbox/navigation/menu.py:15 netbox/netbox/navigation/menu.py:17 +#: dcim/tables/sites.py:30 dcim/tables/sites.py:57 +#: extras/forms/filtersets.py:351 extras/forms/model_forms.py:517 +#: ipam/forms/bulk_edit.py:131 ipam/forms/model_forms.py:153 +#: ipam/tables/asn.py:66 netbox/navigation/menu.py:15 +#: netbox/navigation/menu.py:17 msgid "Sites" msgstr "Сайты" -#: netbox/dcim/tests/test_api.py:47 +#: dcim/tests/test_api.py:47 msgid "Test case must set peer_termination_type" msgstr "" "В тестовом примере должно быть установлено значение peer_termination_type" -#: netbox/dcim/views.py:140 +#: dcim/views.py:140 #, python-brace-format msgid "Disconnected {count} {type}" msgstr "Отключен {count} {type}" -#: netbox/dcim/views.py:740 netbox/netbox/navigation/menu.py:51 +#: dcim/views.py:740 netbox/navigation/menu.py:51 msgid "Reservations" msgstr "Резервирование" -#: netbox/dcim/views.py:759 netbox/templates/dcim/location.html:90 -#: netbox/templates/dcim/site.html:140 +#: dcim/views.py:759 templates/dcim/location.html:90 +#: templates/dcim/site.html:140 msgid "Non-Racked Devices" msgstr "Устройства без стоек" -#: netbox/dcim/views.py:2088 netbox/extras/forms/model_forms.py:577 -#: netbox/templates/extras/configcontext.html:10 -#: netbox/virtualization/forms/model_forms.py:225 -#: netbox/virtualization/views.py:407 +#: dcim/views.py:2088 extras/forms/model_forms.py:577 +#: templates/extras/configcontext.html:10 +#: virtualization/forms/model_forms.py:225 virtualization/views.py:407 msgid "Config Context" msgstr "Контекст конфигурации" -#: netbox/dcim/views.py:2098 netbox/virtualization/views.py:417 +#: dcim/views.py:2098 virtualization/views.py:417 msgid "Render Config" msgstr "Конфигурация рендера" -#: netbox/dcim/views.py:2131 netbox/virtualization/views.py:450 +#: dcim/views.py:2131 virtualization/views.py:450 #, python-brace-format msgid "An error occurred while rendering the template: {error}" msgstr "Во время рендеринга шаблона произошла ошибка: {error}" -#: netbox/dcim/views.py:2149 netbox/extras/tables/tables.py:550 -#: netbox/netbox/navigation/menu.py:247 netbox/netbox/navigation/menu.py:249 -#: netbox/virtualization/views.py:180 +#: dcim/views.py:2149 extras/tables/tables.py:550 +#: netbox/navigation/menu.py:247 netbox/navigation/menu.py:249 +#: virtualization/views.py:180 msgid "Virtual Machines" msgstr "Виртуальные машины" -#: netbox/dcim/views.py:2897 +#: dcim/views.py:2897 #, python-brace-format msgid "Installed device {device} in bay {device_bay}." msgstr "Установлено устройство {device} в отсек {device_bay}." -#: netbox/dcim/views.py:2938 +#: dcim/views.py:2938 #, python-brace-format msgid "Removed device {device} from bay {device_bay}." msgstr "Удалено устройство {device} из отсека {device_bay}." -#: netbox/dcim/views.py:3044 netbox/ipam/tables/ip.py:234 +#: dcim/views.py:3044 ipam/tables/ip.py:234 msgid "Children" msgstr "Потомки" -#: netbox/dcim/views.py:3510 +#: dcim/views.py:3510 #, python-brace-format msgid "Added member {device}" msgstr "Добавлен участник {device}" -#: netbox/dcim/views.py:3557 +#: dcim/views.py:3557 #, python-brace-format msgid "Unable to remove master device {device} from the virtual chassis." msgstr "Невозможно удалить главное устройство {device} из виртуального шасси." -#: netbox/dcim/views.py:3570 +#: dcim/views.py:3570 #, python-brace-format msgid "Removed {device} from virtual chassis {chassis}" msgstr "{device} удалено из виртуального шасси {chassis}" -#: netbox/extras/api/customfields.py:89 +#: extras/api/customfields.py:89 #, python-brace-format msgid "Unknown related object(s): {name}" msgstr "Неизвестный связанный объект (ы): {name}" -#: netbox/extras/api/serializers_/customfields.py:73 +#: extras/api/serializers_/customfields.py:73 msgid "Changing the type of custom fields is not supported." msgstr "Изменение типа настраиваемых полей не поддерживается." -#: netbox/extras/api/serializers_/scripts.py:70 -#: netbox/extras/api/serializers_/scripts.py:75 +#: extras/api/serializers_/scripts.py:70 extras/api/serializers_/scripts.py:75 msgid "Scheduling is not enabled for this script." msgstr "Для этого сценария планирование отключено." -#: netbox/extras/choices.py:30 netbox/extras/forms/misc.py:14 +#: extras/choices.py:30 extras/forms/misc.py:14 msgid "Text" msgstr "Текст" -#: netbox/extras/choices.py:31 +#: extras/choices.py:31 msgid "Text (long)" msgstr "Текст (длинный)" -#: netbox/extras/choices.py:32 +#: extras/choices.py:32 msgid "Integer" msgstr "Целое число" -#: netbox/extras/choices.py:33 +#: extras/choices.py:33 msgid "Decimal" msgstr "Десятичный" -#: netbox/extras/choices.py:34 +#: extras/choices.py:34 msgid "Boolean (true/false)" msgstr "Логическое значение (истинно/ложь)" -#: netbox/extras/choices.py:35 +#: extras/choices.py:35 msgid "Date" msgstr "Дата" -#: netbox/extras/choices.py:36 +#: extras/choices.py:36 msgid "Date & time" msgstr "Дата и время" -#: netbox/extras/choices.py:38 +#: extras/choices.py:38 msgid "JSON" msgstr "JSON" -#: netbox/extras/choices.py:39 +#: extras/choices.py:39 msgid "Selection" msgstr "Выбор" -#: netbox/extras/choices.py:40 +#: extras/choices.py:40 msgid "Multiple selection" msgstr "Множественный выбор" -#: netbox/extras/choices.py:42 +#: extras/choices.py:42 msgid "Multiple objects" msgstr "Несколько объектов" -#: netbox/extras/choices.py:53 netbox/netbox/preferences.py:21 -#: netbox/templates/extras/customfield.html:78 netbox/vpn/choices.py:20 -#: netbox/wireless/choices.py:27 +#: extras/choices.py:53 netbox/preferences.py:21 +#: templates/extras/customfield.html:78 vpn/choices.py:20 +#: wireless/choices.py:27 msgid "Disabled" msgstr "Инвалид" -#: netbox/extras/choices.py:54 +#: extras/choices.py:54 msgid "Loose" msgstr "Свободный" -#: netbox/extras/choices.py:55 +#: extras/choices.py:55 msgid "Exact" msgstr "Точный" -#: netbox/extras/choices.py:66 +#: extras/choices.py:66 msgid "Always" msgstr "Всегда" -#: netbox/extras/choices.py:67 +#: extras/choices.py:67 msgid "If set" msgstr "Если установлено" -#: netbox/extras/choices.py:68 netbox/extras/choices.py:81 +#: extras/choices.py:68 extras/choices.py:81 msgid "Hidden" msgstr "Скрытый" -#: netbox/extras/choices.py:79 +#: extras/choices.py:79 msgid "Yes" msgstr "Да" -#: netbox/extras/choices.py:80 +#: extras/choices.py:80 msgid "No" msgstr "Нет" -#: netbox/extras/choices.py:108 netbox/templates/tenancy/contact.html:57 -#: netbox/tenancy/forms/bulk_edit.py:118 -#: netbox/wireless/forms/model_forms.py:168 +#: extras/choices.py:108 templates/tenancy/contact.html:57 +#: tenancy/forms/bulk_edit.py:118 wireless/forms/model_forms.py:168 msgid "Link" msgstr "Ссылка" -#: netbox/extras/choices.py:124 +#: extras/choices.py:124 msgid "Newest" msgstr "Новейший" -#: netbox/extras/choices.py:125 +#: extras/choices.py:125 msgid "Oldest" msgstr "Самый старый" -#: netbox/extras/choices.py:126 +#: extras/choices.py:126 msgid "Alphabetical (A-Z)" msgstr "В алфавитном порядке (А-Я)" -#: netbox/extras/choices.py:127 +#: extras/choices.py:127 msgid "Alphabetical (Z-A)" msgstr "В обратном алфавитном порядке (Я-А)" -#: netbox/extras/choices.py:144 netbox/extras/choices.py:167 +#: extras/choices.py:144 extras/choices.py:167 msgid "Info" msgstr "Информация" -#: netbox/extras/choices.py:145 netbox/extras/choices.py:168 +#: extras/choices.py:145 extras/choices.py:168 msgid "Success" msgstr "Успех" -#: netbox/extras/choices.py:146 netbox/extras/choices.py:169 +#: extras/choices.py:146 extras/choices.py:169 msgid "Warning" msgstr "Предупреждение" -#: netbox/extras/choices.py:147 +#: extras/choices.py:147 msgid "Danger" msgstr "Опасность" -#: netbox/extras/choices.py:165 +#: extras/choices.py:165 msgid "Debug" msgstr "Отладка" -#: netbox/extras/choices.py:166 netbox/netbox/choices.py:101 +#: extras/choices.py:166 netbox/choices.py:101 msgid "Default" msgstr "По умолчанию" -#: netbox/extras/choices.py:170 +#: extras/choices.py:170 msgid "Failure" msgstr "Неудача" -#: netbox/extras/choices.py:186 +#: extras/choices.py:186 msgid "Hourly" msgstr "Ежечасно" -#: netbox/extras/choices.py:187 +#: extras/choices.py:187 msgid "12 hours" msgstr "12 часов" -#: netbox/extras/choices.py:188 +#: extras/choices.py:188 msgid "Daily" msgstr "Ежедневно" -#: netbox/extras/choices.py:189 +#: extras/choices.py:189 msgid "Weekly" msgstr "Еженедельно" -#: netbox/extras/choices.py:190 +#: extras/choices.py:190 msgid "30 days" msgstr "30 дней" -#: netbox/extras/choices.py:226 -#: netbox/templates/dcim/virtualchassis_edit.html:107 -#: netbox/templates/generic/bulk_add_component.html:68 -#: netbox/templates/generic/object_edit.html:47 -#: netbox/templates/generic/object_edit.html:80 -#: netbox/templates/ipam/inc/ipaddress_edit_header.html:7 +#: extras/choices.py:226 templates/dcim/virtualchassis_edit.html:107 +#: templates/generic/bulk_add_component.html:68 +#: templates/generic/object_edit.html:47 templates/generic/object_edit.html:80 +#: templates/ipam/inc/ipaddress_edit_header.html:7 msgid "Create" msgstr "Создать" -#: netbox/extras/choices.py:227 +#: extras/choices.py:227 msgid "Update" msgstr "Обновить" -#: netbox/extras/choices.py:228 -#: netbox/templates/circuits/inc/circuit_termination.html:23 -#: netbox/templates/dcim/inc/panels/inventory_items.html:37 -#: netbox/templates/dcim/moduletype/component_templates.html:23 -#: netbox/templates/dcim/powerpanel.html:66 -#: netbox/templates/extras/script_list.html:35 -#: netbox/templates/generic/bulk_delete.html:20 -#: netbox/templates/generic/bulk_delete.html:66 -#: netbox/templates/generic/object_delete.html:19 -#: netbox/templates/htmx/delete_form.html:57 -#: netbox/templates/ipam/inc/panels/fhrp_groups.html:48 -#: netbox/templates/users/objectpermission.html:46 -#: netbox/utilities/templates/buttons/delete.html:11 +#: extras/choices.py:228 templates/circuits/inc/circuit_termination.html:23 +#: templates/dcim/inc/panels/inventory_items.html:37 +#: templates/dcim/powerpanel.html:66 templates/extras/script_list.html:35 +#: templates/generic/bulk_delete.html:20 templates/generic/bulk_delete.html:66 +#: templates/generic/object_delete.html:19 templates/htmx/delete_form.html:57 +#: templates/ipam/inc/panels/fhrp_groups.html:48 +#: templates/users/objectpermission.html:46 +#: utilities/templates/buttons/delete.html:11 msgid "Delete" msgstr "Удалить" -#: netbox/extras/choices.py:252 netbox/netbox/choices.py:57 -#: netbox/netbox/choices.py:102 +#: extras/choices.py:252 netbox/choices.py:57 netbox/choices.py:102 msgid "Blue" msgstr "Синий" -#: netbox/extras/choices.py:253 netbox/netbox/choices.py:56 -#: netbox/netbox/choices.py:103 +#: extras/choices.py:253 netbox/choices.py:56 netbox/choices.py:103 msgid "Indigo" msgstr "Темно-синий" -#: netbox/extras/choices.py:254 netbox/netbox/choices.py:54 -#: netbox/netbox/choices.py:104 +#: extras/choices.py:254 netbox/choices.py:54 netbox/choices.py:104 msgid "Purple" msgstr "Фиолетовый" -#: netbox/extras/choices.py:255 netbox/netbox/choices.py:51 -#: netbox/netbox/choices.py:105 +#: extras/choices.py:255 netbox/choices.py:51 netbox/choices.py:105 msgid "Pink" msgstr "Розовый" -#: netbox/extras/choices.py:256 netbox/netbox/choices.py:50 -#: netbox/netbox/choices.py:106 +#: extras/choices.py:256 netbox/choices.py:50 netbox/choices.py:106 msgid "Red" msgstr "Красный" -#: netbox/extras/choices.py:257 netbox/netbox/choices.py:68 -#: netbox/netbox/choices.py:107 +#: extras/choices.py:257 netbox/choices.py:68 netbox/choices.py:107 msgid "Orange" msgstr "Оранжевый" -#: netbox/extras/choices.py:258 netbox/netbox/choices.py:66 -#: netbox/netbox/choices.py:108 +#: extras/choices.py:258 netbox/choices.py:66 netbox/choices.py:108 msgid "Yellow" msgstr "Желтый" -#: netbox/extras/choices.py:259 netbox/netbox/choices.py:63 -#: netbox/netbox/choices.py:109 +#: extras/choices.py:259 netbox/choices.py:63 netbox/choices.py:109 msgid "Green" msgstr "Зелёный" -#: netbox/extras/choices.py:260 netbox/netbox/choices.py:60 -#: netbox/netbox/choices.py:110 +#: extras/choices.py:260 netbox/choices.py:60 netbox/choices.py:110 msgid "Teal" msgstr "Cине-зеленый" -#: netbox/extras/choices.py:261 netbox/netbox/choices.py:59 -#: netbox/netbox/choices.py:111 +#: extras/choices.py:261 netbox/choices.py:59 netbox/choices.py:111 msgid "Cyan" msgstr "Голубой" -#: netbox/extras/choices.py:262 netbox/netbox/choices.py:112 +#: extras/choices.py:262 netbox/choices.py:112 msgid "Gray" msgstr "Серый" -#: netbox/extras/choices.py:263 netbox/netbox/choices.py:74 -#: netbox/netbox/choices.py:113 +#: extras/choices.py:263 netbox/choices.py:74 netbox/choices.py:113 msgid "Black" msgstr "Черный" -#: netbox/extras/choices.py:264 netbox/netbox/choices.py:75 -#: netbox/netbox/choices.py:114 +#: extras/choices.py:264 netbox/choices.py:75 netbox/choices.py:114 msgid "White" msgstr "Белый" -#: netbox/extras/choices.py:279 netbox/extras/forms/model_forms.py:353 -#: netbox/extras/forms/model_forms.py:430 -#: netbox/templates/extras/webhook.html:10 +#: extras/choices.py:279 extras/forms/model_forms.py:353 +#: extras/forms/model_forms.py:430 templates/extras/webhook.html:10 msgid "Webhook" msgstr "Вебхук" -#: netbox/extras/choices.py:280 netbox/extras/forms/model_forms.py:418 -#: netbox/templates/extras/script/base.html:29 +#: extras/choices.py:280 extras/forms/model_forms.py:418 +#: templates/extras/script/base.html:29 msgid "Script" msgstr "Сценарий" -#: netbox/extras/choices.py:281 +#: extras/choices.py:281 msgid "Notification" msgstr "Уведомление" -#: netbox/extras/conditions.py:54 +#: extras/conditions.py:54 #, python-brace-format msgid "Unknown operator: {op}. Must be one of: {operators}" msgstr "" "Неизвестный оператор: {op}. Должен быть одним из следующих: {operators}" -#: netbox/extras/conditions.py:58 +#: extras/conditions.py:58 #, python-brace-format msgid "Unsupported value type: {value}" msgstr "Неподдерживаемый тип значения: {value}" -#: netbox/extras/conditions.py:60 +#: extras/conditions.py:60 #, python-brace-format msgid "Invalid type for {op} operation: {value}" msgstr "Неверный тип для {op} операция: {value}" -#: netbox/extras/conditions.py:137 +#: extras/conditions.py:137 #, python-brace-format msgid "Ruleset must be a dictionary, not {ruleset}." msgstr "Набор правил должен быть словарем, а не {ruleset}." -#: netbox/extras/conditions.py:142 +#: extras/conditions.py:142 msgid "Invalid logic type: must be 'AND' or 'OR'. Please check documentation." msgstr "" "Неверный тип логики: должен быть И или ИЛИ. Пожалуйста, проверьте " "документацию." -#: netbox/extras/conditions.py:154 +#: extras/conditions.py:154 msgid "Incorrect key(s) informed. Please check documentation." msgstr "Введены неверные ключ(и). Пожалуйста, проверьте документацию." -#: netbox/extras/dashboard/forms.py:38 +#: extras/dashboard/forms.py:38 msgid "Widget type" msgstr "Тип виджета" -#: netbox/extras/dashboard/utils.py:36 +#: extras/dashboard/utils.py:36 #, python-brace-format msgid "Unregistered widget class: {name}" msgstr "Незарегистрированный класс виджета: {name}" -#: netbox/extras/dashboard/widgets.py:125 +#: extras/dashboard/widgets.py:125 #, python-brace-format msgid "{class_name} must define a render() method." msgstr "{class_name} должен определить метод render ()." -#: netbox/extras/dashboard/widgets.py:144 +#: extras/dashboard/widgets.py:144 msgid "Note" msgstr "Примечание" -#: netbox/extras/dashboard/widgets.py:145 +#: extras/dashboard/widgets.py:145 msgid "Display some arbitrary custom content. Markdown is supported." msgstr "" "Отображает произвольный пользовательский контент. Поддерживается разметка " "Markdown." -#: netbox/extras/dashboard/widgets.py:158 +#: extras/dashboard/widgets.py:158 msgid "Object Counts" msgstr "Количество объектов" -#: netbox/extras/dashboard/widgets.py:159 +#: extras/dashboard/widgets.py:159 msgid "" "Display a set of NetBox models and the number of objects created for each " "type." @@ -7465,291 +6954,269 @@ msgstr "" "Отобразите набор моделей NetBox и количество объектов, созданных для каждого" " типа." -#: netbox/extras/dashboard/widgets.py:169 +#: extras/dashboard/widgets.py:169 msgid "Filters to apply when counting the number of objects" msgstr "Фильтры, применяемые при подсчете количества объектов" -#: netbox/extras/dashboard/widgets.py:177 +#: extras/dashboard/widgets.py:177 msgid "Invalid format. Object filters must be passed as a dictionary." msgstr "" "Неверный формат. Фильтры объектов необходимо передавать в виде словаря." -#: netbox/extras/dashboard/widgets.py:208 +#: extras/dashboard/widgets.py:208 msgid "Object List" msgstr "Список объектов" -#: netbox/extras/dashboard/widgets.py:209 +#: extras/dashboard/widgets.py:209 msgid "Display an arbitrary list of objects." msgstr "Отобразите произвольный список объектов." -#: netbox/extras/dashboard/widgets.py:222 +#: extras/dashboard/widgets.py:222 msgid "The default number of objects to display" msgstr "Количество отображаемых объектов по умолчанию" -#: netbox/extras/dashboard/widgets.py:234 +#: extras/dashboard/widgets.py:234 msgid "Invalid format. URL parameters must be passed as a dictionary." msgstr "Неверный формат. Параметры URL должны быть переданы в виде словаря." -#: netbox/extras/dashboard/widgets.py:274 +#: extras/dashboard/widgets.py:274 msgid "RSS Feed" msgstr "RSS-канал" -#: netbox/extras/dashboard/widgets.py:279 +#: extras/dashboard/widgets.py:279 msgid "Embed an RSS feed from an external website." msgstr "Вставьте RSS-канал с внешнего веб-сайта." -#: netbox/extras/dashboard/widgets.py:286 +#: extras/dashboard/widgets.py:286 msgid "Feed URL" msgstr "URL-адрес ленты" -#: netbox/extras/dashboard/widgets.py:291 +#: extras/dashboard/widgets.py:291 msgid "The maximum number of objects to display" msgstr "Максимальное количество отображаемых объектов" -#: netbox/extras/dashboard/widgets.py:296 +#: extras/dashboard/widgets.py:296 msgid "How long to stored the cached content (in seconds)" msgstr "Как долго хранить кэшированный контент (в секундах)" -#: netbox/extras/dashboard/widgets.py:348 -#: netbox/templates/account/base.html:10 -#: netbox/templates/account/bookmarks.html:7 -#: netbox/templates/inc/user_menu.html:48 +#: extras/dashboard/widgets.py:348 templates/account/base.html:10 +#: templates/account/bookmarks.html:7 templates/inc/user_menu.html:48 msgid "Bookmarks" msgstr "Закладки" -#: netbox/extras/dashboard/widgets.py:352 +#: extras/dashboard/widgets.py:352 msgid "Show your personal bookmarks" msgstr "Покажите свои личные закладки" -#: netbox/extras/events.py:147 +#: extras/events.py:147 #, python-brace-format msgid "Unknown action type for an event rule: {action_type}" msgstr "Неизвестный тип действия для правила события: {action_type}" -#: netbox/extras/events.py:192 +#: extras/events.py:192 #, python-brace-format msgid "Cannot import events pipeline {name} error: {error}" msgstr "Невозможно импортировать конвейер событий {name} ошибка: {error}" -#: netbox/extras/filtersets.py:45 +#: extras/filtersets.py:45 msgid "Script module (ID)" msgstr "Модуль сценария (ID)" -#: netbox/extras/filtersets.py:254 netbox/extras/filtersets.py:637 -#: netbox/extras/filtersets.py:665 +#: extras/filtersets.py:254 extras/filtersets.py:637 extras/filtersets.py:665 msgid "Data file (ID)" msgstr "Файл данных (ID)" -#: netbox/extras/filtersets.py:370 netbox/users/filtersets.py:68 -#: netbox/users/filtersets.py:191 +#: extras/filtersets.py:370 users/filtersets.py:68 users/filtersets.py:191 msgid "Group (name)" msgstr "Группа (название)" -#: netbox/extras/filtersets.py:574 -#: netbox/virtualization/forms/filtersets.py:118 +#: extras/filtersets.py:574 virtualization/forms/filtersets.py:118 msgid "Cluster type" msgstr "Тип кластера" -#: netbox/extras/filtersets.py:580 netbox/virtualization/filtersets.py:95 -#: netbox/virtualization/filtersets.py:147 +#: extras/filtersets.py:580 virtualization/filtersets.py:95 +#: virtualization/filtersets.py:147 msgid "Cluster type (slug)" msgstr "Тип кластера (подстрока)" -#: netbox/extras/filtersets.py:601 netbox/tenancy/forms/forms.py:16 -#: netbox/tenancy/forms/forms.py:39 +#: extras/filtersets.py:601 tenancy/forms/forms.py:16 +#: tenancy/forms/forms.py:39 msgid "Tenant group" msgstr "Группы арендаторов" -#: netbox/extras/filtersets.py:607 netbox/tenancy/filtersets.py:188 -#: netbox/tenancy/filtersets.py:208 +#: extras/filtersets.py:607 tenancy/filtersets.py:188 +#: tenancy/filtersets.py:208 msgid "Tenant group (slug)" msgstr "Группа арендаторов (подстрока)" -#: netbox/extras/filtersets.py:623 netbox/extras/forms/model_forms.py:495 -#: netbox/templates/extras/tag.html:11 +#: extras/filtersets.py:623 extras/forms/model_forms.py:495 +#: templates/extras/tag.html:11 msgid "Tag" msgstr "Тег" -#: netbox/extras/filtersets.py:629 +#: extras/filtersets.py:629 msgid "Tag (slug)" msgstr "Тег (подстрока)" -#: netbox/extras/filtersets.py:689 netbox/extras/forms/filtersets.py:429 +#: extras/filtersets.py:689 extras/forms/filtersets.py:429 msgid "Has local config context data" msgstr "Имеет локальные контекстные данные конфигурации" -#: netbox/extras/forms/bulk_edit.py:35 netbox/extras/forms/filtersets.py:60 +#: extras/forms/bulk_edit.py:35 extras/forms/filtersets.py:60 msgid "Group name" msgstr "Название группы" -#: netbox/extras/forms/bulk_edit.py:43 netbox/extras/forms/filtersets.py:68 -#: netbox/extras/tables/tables.py:65 -#: netbox/templates/extras/customfield.html:38 -#: netbox/templates/generic/bulk_import.html:118 +#: extras/forms/bulk_edit.py:43 extras/forms/filtersets.py:68 +#: extras/tables/tables.py:65 templates/extras/customfield.html:38 +#: templates/generic/bulk_import.html:118 msgid "Required" msgstr "Обязательно" -#: netbox/extras/forms/bulk_edit.py:48 netbox/extras/forms/filtersets.py:75 +#: extras/forms/bulk_edit.py:48 extras/forms/filtersets.py:75 msgid "Must be unique" msgstr "Должно быть уникальным" -#: netbox/extras/forms/bulk_edit.py:61 netbox/extras/forms/bulk_import.py:60 -#: netbox/extras/forms/filtersets.py:89 -#: netbox/extras/models/customfields.py:209 +#: extras/forms/bulk_edit.py:61 extras/forms/bulk_import.py:60 +#: extras/forms/filtersets.py:89 extras/models/customfields.py:209 msgid "UI visible" msgstr "Видимый пользовательский интерфейс" -#: netbox/extras/forms/bulk_edit.py:66 netbox/extras/forms/bulk_import.py:66 -#: netbox/extras/forms/filtersets.py:94 -#: netbox/extras/models/customfields.py:216 +#: extras/forms/bulk_edit.py:66 extras/forms/bulk_import.py:66 +#: extras/forms/filtersets.py:94 extras/models/customfields.py:216 msgid "UI editable" msgstr "Редактируемый UI" -#: netbox/extras/forms/bulk_edit.py:71 netbox/extras/forms/filtersets.py:97 +#: extras/forms/bulk_edit.py:71 extras/forms/filtersets.py:97 msgid "Is cloneable" msgstr "Можно клонировать" -#: netbox/extras/forms/bulk_edit.py:76 netbox/extras/forms/filtersets.py:104 +#: extras/forms/bulk_edit.py:76 extras/forms/filtersets.py:104 msgid "Minimum value" msgstr "Минимальное значение" -#: netbox/extras/forms/bulk_edit.py:80 netbox/extras/forms/filtersets.py:108 +#: extras/forms/bulk_edit.py:80 extras/forms/filtersets.py:108 msgid "Maximum value" msgstr "Максимальное значение" -#: netbox/extras/forms/bulk_edit.py:84 netbox/extras/forms/filtersets.py:112 +#: extras/forms/bulk_edit.py:84 extras/forms/filtersets.py:112 msgid "Validation regex" msgstr "Регулярное выражение валидации" -#: netbox/extras/forms/bulk_edit.py:91 netbox/extras/forms/filtersets.py:46 -#: netbox/extras/forms/model_forms.py:76 -#: netbox/templates/extras/customfield.html:70 +#: extras/forms/bulk_edit.py:91 extras/forms/filtersets.py:46 +#: extras/forms/model_forms.py:76 templates/extras/customfield.html:70 msgid "Behavior" msgstr "Поведение" -#: netbox/extras/forms/bulk_edit.py:128 netbox/extras/forms/filtersets.py:149 +#: extras/forms/bulk_edit.py:128 extras/forms/filtersets.py:149 msgid "New window" msgstr "Новое окно" -#: netbox/extras/forms/bulk_edit.py:137 +#: extras/forms/bulk_edit.py:137 msgid "Button class" msgstr "Класс кнопки" -#: netbox/extras/forms/bulk_edit.py:154 netbox/extras/forms/filtersets.py:187 -#: netbox/extras/models/models.py:409 +#: extras/forms/bulk_edit.py:154 extras/forms/filtersets.py:187 +#: extras/models/models.py:409 msgid "MIME type" msgstr "Тип MIME" -#: netbox/extras/forms/bulk_edit.py:159 netbox/extras/forms/filtersets.py:190 +#: extras/forms/bulk_edit.py:159 extras/forms/filtersets.py:190 msgid "File extension" msgstr "Расширение файла" -#: netbox/extras/forms/bulk_edit.py:164 netbox/extras/forms/filtersets.py:194 +#: extras/forms/bulk_edit.py:164 extras/forms/filtersets.py:194 msgid "As attachment" msgstr "В качестве вложения" -#: netbox/extras/forms/bulk_edit.py:192 netbox/extras/forms/filtersets.py:236 -#: netbox/extras/tables/tables.py:256 -#: netbox/templates/extras/savedfilter.html:29 +#: extras/forms/bulk_edit.py:192 extras/forms/filtersets.py:236 +#: extras/tables/tables.py:256 templates/extras/savedfilter.html:29 msgid "Shared" msgstr "Общий" -#: netbox/extras/forms/bulk_edit.py:215 netbox/extras/forms/filtersets.py:265 -#: netbox/extras/models/models.py:174 +#: extras/forms/bulk_edit.py:215 extras/forms/filtersets.py:265 +#: extras/models/models.py:174 msgid "HTTP method" msgstr "Метод HTTP" -#: netbox/extras/forms/bulk_edit.py:219 netbox/extras/forms/filtersets.py:259 -#: netbox/templates/extras/webhook.html:30 +#: extras/forms/bulk_edit.py:219 extras/forms/filtersets.py:259 +#: templates/extras/webhook.html:30 msgid "Payload URL" msgstr "URL-адрес полезной нагрузки" -#: netbox/extras/forms/bulk_edit.py:224 netbox/extras/models/models.py:214 +#: extras/forms/bulk_edit.py:224 extras/models/models.py:214 msgid "SSL verification" msgstr "Проверка SSL" -#: netbox/extras/forms/bulk_edit.py:227 -#: netbox/templates/extras/webhook.html:38 +#: extras/forms/bulk_edit.py:227 templates/extras/webhook.html:38 msgid "Secret" msgstr "Секрет" -#: netbox/extras/forms/bulk_edit.py:232 +#: extras/forms/bulk_edit.py:232 msgid "CA file path" msgstr "Путь к файлу CA" -#: netbox/extras/forms/bulk_edit.py:253 netbox/extras/forms/bulk_import.py:192 -#: netbox/extras/forms/model_forms.py:377 +#: extras/forms/bulk_edit.py:253 extras/forms/bulk_import.py:192 +#: extras/forms/model_forms.py:377 msgid "Event types" msgstr "Типы событий" -#: netbox/extras/forms/bulk_edit.py:293 +#: extras/forms/bulk_edit.py:293 msgid "Is active" msgstr "Активен" -#: netbox/extras/forms/bulk_import.py:37 -#: netbox/extras/forms/bulk_import.py:118 -#: netbox/extras/forms/bulk_import.py:139 -#: netbox/extras/forms/bulk_import.py:162 -#: netbox/extras/forms/bulk_import.py:186 -#: netbox/extras/forms/filtersets.py:137 netbox/extras/forms/filtersets.py:224 -#: netbox/extras/forms/model_forms.py:47 -#: netbox/extras/forms/model_forms.py:205 -#: netbox/extras/forms/model_forms.py:237 -#: netbox/extras/forms/model_forms.py:278 -#: netbox/extras/forms/model_forms.py:372 -#: netbox/extras/forms/model_forms.py:489 -#: netbox/users/forms/model_forms.py:276 +#: extras/forms/bulk_import.py:37 extras/forms/bulk_import.py:118 +#: extras/forms/bulk_import.py:139 extras/forms/bulk_import.py:162 +#: extras/forms/bulk_import.py:186 extras/forms/filtersets.py:137 +#: extras/forms/filtersets.py:224 extras/forms/model_forms.py:47 +#: extras/forms/model_forms.py:205 extras/forms/model_forms.py:237 +#: extras/forms/model_forms.py:278 extras/forms/model_forms.py:372 +#: extras/forms/model_forms.py:489 users/forms/model_forms.py:276 msgid "Object types" msgstr "Типы объектов" -#: netbox/extras/forms/bulk_import.py:39 -#: netbox/extras/forms/bulk_import.py:120 -#: netbox/extras/forms/bulk_import.py:141 -#: netbox/extras/forms/bulk_import.py:164 -#: netbox/extras/forms/bulk_import.py:188 -#: netbox/tenancy/forms/bulk_import.py:96 +#: extras/forms/bulk_import.py:39 extras/forms/bulk_import.py:120 +#: extras/forms/bulk_import.py:141 extras/forms/bulk_import.py:164 +#: extras/forms/bulk_import.py:188 tenancy/forms/bulk_import.py:96 msgid "One or more assigned object types" msgstr "Один или несколько назначенных типов объектов" -#: netbox/extras/forms/bulk_import.py:44 +#: extras/forms/bulk_import.py:44 msgid "Field data type (e.g. text, integer, etc.)" msgstr "Тип данных поля (например, текст, целое число и т. д.)" -#: netbox/extras/forms/bulk_import.py:47 netbox/extras/forms/filtersets.py:208 -#: netbox/extras/forms/filtersets.py:281 -#: netbox/extras/forms/model_forms.py:304 -#: netbox/extras/forms/model_forms.py:341 -#: netbox/tenancy/forms/filtersets.py:92 +#: extras/forms/bulk_import.py:47 extras/forms/filtersets.py:208 +#: extras/forms/filtersets.py:281 extras/forms/model_forms.py:304 +#: extras/forms/model_forms.py:341 tenancy/forms/filtersets.py:92 msgid "Object type" msgstr "Тип объекта" -#: netbox/extras/forms/bulk_import.py:50 +#: extras/forms/bulk_import.py:50 msgid "Object type (for object or multi-object fields)" msgstr "" "Тип объекта (для полей объектов или полей, состоящих из нескольких объектов)" -#: netbox/extras/forms/bulk_import.py:53 netbox/extras/forms/filtersets.py:84 +#: extras/forms/bulk_import.py:53 extras/forms/filtersets.py:84 msgid "Choice set" msgstr "Набор для выбора" -#: netbox/extras/forms/bulk_import.py:57 +#: extras/forms/bulk_import.py:57 msgid "Choice set (for selection fields)" msgstr "Набор вариантов (для полей выбора)" -#: netbox/extras/forms/bulk_import.py:63 +#: extras/forms/bulk_import.py:63 msgid "Whether the custom field is displayed in the UI" msgstr "Отображается ли настраиваемое поле в пользовательском интерфейсе" -#: netbox/extras/forms/bulk_import.py:69 +#: extras/forms/bulk_import.py:69 msgid "Whether the custom field is editable in the UI" msgstr "" "Доступно ли редактирование настраиваемого поля в пользовательском интерфейсе" -#: netbox/extras/forms/bulk_import.py:85 +#: extras/forms/bulk_import.py:85 msgid "The base set of predefined choices to use (if any)" msgstr "Базовый набор стандартных вариантов для использования (если есть)" -#: netbox/extras/forms/bulk_import.py:91 +#: extras/forms/bulk_import.py:91 msgid "" "Quoted string of comma-separated field choices with optional labels " "separated by colon: \"choice1:First Choice,choice2:Second Choice\"" @@ -7758,203 +7225,187 @@ msgstr "" "запятыми, с дополнительными метками через двоеточие: «Choice1:First Choice, " "Choice2:Second Choice»" -#: netbox/extras/forms/bulk_import.py:123 netbox/extras/models/models.py:323 +#: extras/forms/bulk_import.py:123 extras/models/models.py:323 msgid "button class" msgstr "класс кнопок" -#: netbox/extras/forms/bulk_import.py:126 netbox/extras/models/models.py:327 +#: extras/forms/bulk_import.py:126 extras/models/models.py:327 msgid "" "The class of the first link in a group will be used for the dropdown button" msgstr "" "Класс первой ссылки в группе будет использоваться для кнопки раскрывающегося" " списка" -#: netbox/extras/forms/bulk_import.py:193 +#: extras/forms/bulk_import.py:193 msgid "The event type(s) which will trigger this rule" msgstr "Тип(ы) события(-ий), при котором будет запущено это правило" -#: netbox/extras/forms/bulk_import.py:196 +#: extras/forms/bulk_import.py:196 msgid "Action object" msgstr "Объект действия" -#: netbox/extras/forms/bulk_import.py:198 +#: extras/forms/bulk_import.py:198 msgid "Webhook name or script as dotted path module.Class" msgstr "Имя веб-хука или скрипт в виде пунктирного пути module.Class" -#: netbox/extras/forms/bulk_import.py:219 +#: extras/forms/bulk_import.py:219 #, python-brace-format msgid "Webhook {name} not found" msgstr "Вебхук {name} не найден" -#: netbox/extras/forms/bulk_import.py:228 +#: extras/forms/bulk_import.py:228 #, python-brace-format msgid "Script {name} not found" msgstr "Сценарий {name} не найден" -#: netbox/extras/forms/bulk_import.py:244 +#: extras/forms/bulk_import.py:244 msgid "Assigned object type" msgstr "Назначенный тип объекта" -#: netbox/extras/forms/bulk_import.py:249 +#: extras/forms/bulk_import.py:249 msgid "The classification of entry" msgstr "Классификация записей" -#: netbox/extras/forms/bulk_import.py:261 -#: netbox/extras/forms/model_forms.py:320 netbox/netbox/navigation/menu.py:390 -#: netbox/templates/extras/notificationgroup.html:41 -#: netbox/templates/users/group.html:29 netbox/users/forms/model_forms.py:236 -#: netbox/users/forms/model_forms.py:248 netbox/users/forms/model_forms.py:300 -#: netbox/users/tables.py:102 +#: extras/forms/bulk_import.py:261 extras/forms/model_forms.py:320 +#: netbox/navigation/menu.py:390 templates/extras/notificationgroup.html:41 +#: templates/users/group.html:29 users/forms/model_forms.py:236 +#: users/forms/model_forms.py:248 users/forms/model_forms.py:300 +#: users/tables.py:102 msgid "Users" msgstr "Пользователи" -#: netbox/extras/forms/bulk_import.py:265 +#: extras/forms/bulk_import.py:265 msgid "User names separated by commas, encased with double quotes" msgstr "" "Имена пользователей, разделенные запятыми и заключенные в двойные кавычки" -#: netbox/extras/forms/bulk_import.py:268 -#: netbox/extras/forms/model_forms.py:315 netbox/netbox/navigation/menu.py:410 -#: netbox/templates/extras/notificationgroup.html:31 -#: netbox/users/forms/model_forms.py:181 netbox/users/forms/model_forms.py:193 -#: netbox/users/forms/model_forms.py:305 netbox/users/tables.py:35 -#: netbox/users/tables.py:106 +#: extras/forms/bulk_import.py:268 extras/forms/model_forms.py:315 +#: netbox/navigation/menu.py:410 templates/extras/notificationgroup.html:31 +#: users/forms/model_forms.py:181 users/forms/model_forms.py:193 +#: users/forms/model_forms.py:305 users/tables.py:35 users/tables.py:106 msgid "Groups" msgstr "Группы" -#: netbox/extras/forms/bulk_import.py:272 +#: extras/forms/bulk_import.py:272 msgid "Group names separated by commas, encased with double quotes" msgstr "Имена групп, разделенные запятыми и заключенные в двойные кавычки" -#: netbox/extras/forms/filtersets.py:52 netbox/extras/forms/model_forms.py:56 +#: extras/forms/filtersets.py:52 extras/forms/model_forms.py:56 msgid "Related object type" msgstr "Тип связанного объекта" -#: netbox/extras/forms/filtersets.py:57 +#: extras/forms/filtersets.py:57 msgid "Field type" msgstr "Тип поля" -#: netbox/extras/forms/filtersets.py:120 -#: netbox/extras/forms/model_forms.py:157 netbox/extras/tables/tables.py:91 -#: netbox/templates/generic/bulk_import.html:154 +#: extras/forms/filtersets.py:120 extras/forms/model_forms.py:157 +#: extras/tables/tables.py:91 templates/generic/bulk_import.html:154 msgid "Choices" msgstr "Варианты" -#: netbox/extras/forms/filtersets.py:164 netbox/extras/forms/filtersets.py:319 -#: netbox/extras/forms/filtersets.py:408 -#: netbox/extras/forms/model_forms.py:572 netbox/templates/core/job.html:96 -#: netbox/templates/extras/eventrule.html:84 +#: extras/forms/filtersets.py:164 extras/forms/filtersets.py:319 +#: extras/forms/filtersets.py:408 extras/forms/model_forms.py:572 +#: templates/core/job.html:96 templates/extras/eventrule.html:84 msgid "Data" msgstr "Данные" -#: netbox/extras/forms/filtersets.py:175 netbox/extras/forms/filtersets.py:333 -#: netbox/extras/forms/filtersets.py:418 netbox/netbox/choices.py:130 -#: netbox/utilities/forms/bulk_import.py:26 +#: extras/forms/filtersets.py:175 extras/forms/filtersets.py:333 +#: extras/forms/filtersets.py:418 netbox/choices.py:130 +#: utilities/forms/bulk_import.py:26 msgid "Data file" msgstr "Файл данных" -#: netbox/extras/forms/filtersets.py:183 +#: extras/forms/filtersets.py:183 msgid "Content types" msgstr "Типы контента" -#: netbox/extras/forms/filtersets.py:255 netbox/extras/models/models.py:179 +#: extras/forms/filtersets.py:255 extras/models/models.py:179 msgid "HTTP content type" msgstr "Тип содержимого HTTP" -#: netbox/extras/forms/filtersets.py:286 +#: extras/forms/filtersets.py:286 msgid "Event type" msgstr "Тип события" -#: netbox/extras/forms/filtersets.py:291 +#: extras/forms/filtersets.py:291 msgid "Action type" msgstr "Тип действия" -#: netbox/extras/forms/filtersets.py:307 +#: extras/forms/filtersets.py:307 msgid "Tagged object type" msgstr "Тип объекта с тегами" -#: netbox/extras/forms/filtersets.py:312 +#: extras/forms/filtersets.py:312 msgid "Allowed object type" msgstr "Разрешенный тип объекта" -#: netbox/extras/forms/filtersets.py:341 -#: netbox/extras/forms/model_forms.py:507 netbox/netbox/navigation/menu.py:18 +#: extras/forms/filtersets.py:341 extras/forms/model_forms.py:507 +#: netbox/navigation/menu.py:18 msgid "Regions" msgstr "Регионы" -#: netbox/extras/forms/filtersets.py:346 -#: netbox/extras/forms/model_forms.py:512 +#: extras/forms/filtersets.py:346 extras/forms/model_forms.py:512 msgid "Site groups" msgstr "Группы сайтов" -#: netbox/extras/forms/filtersets.py:356 -#: netbox/extras/forms/model_forms.py:522 netbox/netbox/navigation/menu.py:20 -#: netbox/templates/dcim/site.html:127 +#: extras/forms/filtersets.py:356 extras/forms/model_forms.py:522 +#: netbox/navigation/menu.py:20 templates/dcim/site.html:127 msgid "Locations" msgstr "Локации" -#: netbox/extras/forms/filtersets.py:361 -#: netbox/extras/forms/model_forms.py:527 +#: extras/forms/filtersets.py:361 extras/forms/model_forms.py:527 msgid "Device types" msgstr "Типы устройств" -#: netbox/extras/forms/filtersets.py:366 -#: netbox/extras/forms/model_forms.py:532 +#: extras/forms/filtersets.py:366 extras/forms/model_forms.py:532 msgid "Roles" msgstr "Роли" -#: netbox/extras/forms/filtersets.py:376 -#: netbox/extras/forms/model_forms.py:542 +#: extras/forms/filtersets.py:376 extras/forms/model_forms.py:542 msgid "Cluster types" msgstr "Типы кластеров" -#: netbox/extras/forms/filtersets.py:381 -#: netbox/extras/forms/model_forms.py:547 +#: extras/forms/filtersets.py:381 extras/forms/model_forms.py:547 msgid "Cluster groups" msgstr "Кластерные группы" -#: netbox/extras/forms/filtersets.py:386 -#: netbox/extras/forms/model_forms.py:552 netbox/netbox/navigation/menu.py:255 -#: netbox/netbox/navigation/menu.py:257 -#: netbox/templates/virtualization/clustertype.html:30 -#: netbox/virtualization/tables/clusters.py:23 -#: netbox/virtualization/tables/clusters.py:45 +#: extras/forms/filtersets.py:386 extras/forms/model_forms.py:552 +#: netbox/navigation/menu.py:255 netbox/navigation/menu.py:257 +#: templates/virtualization/clustertype.html:30 +#: virtualization/tables/clusters.py:23 virtualization/tables/clusters.py:45 msgid "Clusters" msgstr "Кластеры" -#: netbox/extras/forms/filtersets.py:391 -#: netbox/extras/forms/model_forms.py:557 +#: extras/forms/filtersets.py:391 extras/forms/model_forms.py:557 msgid "Tenant groups" msgstr "Группы арендаторов" -#: netbox/extras/forms/model_forms.py:49 +#: extras/forms/model_forms.py:49 msgid "The type(s) of object that have this custom field" msgstr "Тип(ы) объекта(-ов), в котором есть это настраиваемое поле" -#: netbox/extras/forms/model_forms.py:52 +#: extras/forms/model_forms.py:52 msgid "Default value" msgstr "Значение по умолчанию" -#: netbox/extras/forms/model_forms.py:58 +#: extras/forms/model_forms.py:58 msgid "Type of the related object (for object/multi-object fields only)" msgstr "" "Тип связанного объекта (только для полей объектов/нескольких объектов)" -#: netbox/extras/forms/model_forms.py:61 -#: netbox/templates/extras/customfield.html:60 +#: extras/forms/model_forms.py:61 templates/extras/customfield.html:60 msgid "Related object filter" msgstr "Фильтр связанных объектов" -#: netbox/extras/forms/model_forms.py:63 +#: extras/forms/model_forms.py:63 msgid "Specify query parameters as a JSON object." msgstr "Укажите параметры запроса в виде объекта JSON." -#: netbox/extras/forms/model_forms.py:73 -#: netbox/templates/extras/customfield.html:10 +#: extras/forms/model_forms.py:73 templates/extras/customfield.html:10 msgid "Custom Field" msgstr "Настраиваемое Поле" -#: netbox/extras/forms/model_forms.py:85 +#: extras/forms/model_forms.py:85 msgid "" "The type of data stored in this field. For object/multi-object fields, " "select the related object type below." @@ -7962,7 +7413,7 @@ msgstr "" "Тип данных, хранящихся в этом поле. Для полей объектов или полей, состоящих " "из нескольких объектов, выберите соответствующий тип объекта ниже." -#: netbox/extras/forms/model_forms.py:88 +#: extras/forms/model_forms.py:88 msgid "" "This will be displayed as help text for the form field. Markdown is " "supported." @@ -7970,11 +7421,11 @@ msgstr "" "Это будет отображаться в виде справочного текста для поля формы. " "Поддерживается функция Markdown." -#: netbox/extras/forms/model_forms.py:143 +#: extras/forms/model_forms.py:143 msgid "Related Object" msgstr "Связанный объект" -#: netbox/extras/forms/model_forms.py:169 +#: extras/forms/model_forms.py:169 msgid "" "Enter one choice per line. An optional label may be specified for each " "choice by appending it with a colon. Example:" @@ -7982,16 +7433,15 @@ msgstr "" "Введите по одному варианту в строке. Для каждого варианта можно указать " "дополнительный лейбл через двоеточие. Пример:" -#: netbox/extras/forms/model_forms.py:212 -#: netbox/templates/extras/customlink.html:10 +#: extras/forms/model_forms.py:212 templates/extras/customlink.html:10 msgid "Custom Link" msgstr "Настраиваемая Ссылка" -#: netbox/extras/forms/model_forms.py:214 +#: extras/forms/model_forms.py:214 msgid "Templates" msgstr "Шаблоны" -#: netbox/extras/forms/model_forms.py:226 +#: extras/forms/model_forms.py:226 #, python-brace-format msgid "" "Jinja2 template code for the link text. Reference the object as {example}. " @@ -8000,66 +7450,60 @@ msgstr "" "Код Jinja2 шаблона для текста ссылки. Ссылайтесь на объект как {example}. " "Ссылки с пустым текстом отображены не будут." -#: netbox/extras/forms/model_forms.py:230 +#: extras/forms/model_forms.py:230 #, python-brace-format msgid "" "Jinja2 template code for the link URL. Reference the object as {example}." msgstr "" "Код Jinja2 шаблона для URL-адреса. Ссылайтесь на объект как {example}." -#: netbox/extras/forms/model_forms.py:241 -#: netbox/extras/forms/model_forms.py:624 +#: extras/forms/model_forms.py:241 extras/forms/model_forms.py:624 msgid "Template code" msgstr "Код шаблона" -#: netbox/extras/forms/model_forms.py:247 -#: netbox/templates/extras/exporttemplate.html:12 +#: extras/forms/model_forms.py:247 templates/extras/exporttemplate.html:12 msgid "Export Template" msgstr "Шаблон экспорта" -#: netbox/extras/forms/model_forms.py:249 +#: extras/forms/model_forms.py:249 msgid "Rendering" msgstr "Рендеринг" -#: netbox/extras/forms/model_forms.py:263 -#: netbox/extras/forms/model_forms.py:649 +#: extras/forms/model_forms.py:263 extras/forms/model_forms.py:649 msgid "Template content is populated from the remote source selected below." msgstr "" "Содержимое шаблона заполняется из удаленного источника, выбранного ниже." -#: netbox/extras/forms/model_forms.py:270 -#: netbox/extras/forms/model_forms.py:656 +#: extras/forms/model_forms.py:270 extras/forms/model_forms.py:656 msgid "Must specify either local content or a data file" msgstr "Необходимо указать локальное содержимое или файл данных" -#: netbox/extras/forms/model_forms.py:284 netbox/netbox/forms/mixins.py:70 -#: netbox/templates/extras/savedfilter.html:10 +#: extras/forms/model_forms.py:284 netbox/forms/mixins.py:70 +#: templates/extras/savedfilter.html:10 msgid "Saved Filter" msgstr "Сохраненный фильтр" -#: netbox/extras/forms/model_forms.py:334 +#: extras/forms/model_forms.py:334 msgid "A notification group specify at least one user or group." msgstr "В группе уведомлений укажите хотя бы одного пользователя или группу." -#: netbox/extras/forms/model_forms.py:356 -#: netbox/templates/extras/webhook.html:23 +#: extras/forms/model_forms.py:356 templates/extras/webhook.html:23 msgid "HTTP Request" msgstr "HTTP-запрос" -#: netbox/extras/forms/model_forms.py:358 -#: netbox/templates/extras/webhook.html:44 +#: extras/forms/model_forms.py:358 templates/extras/webhook.html:44 msgid "SSL" msgstr "SSL" -#: netbox/extras/forms/model_forms.py:380 +#: extras/forms/model_forms.py:380 msgid "Action choice" msgstr "Выбор действия" -#: netbox/extras/forms/model_forms.py:385 +#: extras/forms/model_forms.py:385 msgid "Enter conditions in JSON format." msgstr "Введите условия в JSON формат." -#: netbox/extras/forms/model_forms.py:389 +#: extras/forms/model_forms.py:389 msgid "" "Enter parameters to pass to the action in JSON format." @@ -8067,112 +7511,110 @@ msgstr "" "Введите параметры для перехода к действию в JSON формат." -#: netbox/extras/forms/model_forms.py:394 -#: netbox/templates/extras/eventrule.html:10 +#: extras/forms/model_forms.py:394 templates/extras/eventrule.html:10 msgid "Event Rule" msgstr "Правило мероприятия" -#: netbox/extras/forms/model_forms.py:395 +#: extras/forms/model_forms.py:395 msgid "Triggers" msgstr "Триггеры" -#: netbox/extras/forms/model_forms.py:442 +#: extras/forms/model_forms.py:442 msgid "Notification group" msgstr "Группа уведомлений" -#: netbox/extras/forms/model_forms.py:562 netbox/netbox/navigation/menu.py:26 -#: netbox/tenancy/tables/tenants.py:22 +#: extras/forms/model_forms.py:562 netbox/navigation/menu.py:26 +#: tenancy/tables/tenants.py:22 msgid "Tenants" msgstr "Арендаторы" -#: netbox/extras/forms/model_forms.py:606 +#: extras/forms/model_forms.py:606 msgid "Data is populated from the remote source selected below." msgstr "Данные заполняются из удаленного источника, выбранного ниже." -#: netbox/extras/forms/model_forms.py:612 +#: extras/forms/model_forms.py:612 msgid "Must specify either local data or a data file" msgstr "Необходимо указать локальные данные или файл данных" -#: netbox/extras/forms/model_forms.py:631 -#: netbox/templates/core/datafile.html:55 +#: extras/forms/model_forms.py:631 templates/core/datafile.html:55 msgid "Content" msgstr "Контент" -#: netbox/extras/forms/reports.py:17 netbox/extras/forms/scripts.py:23 +#: extras/forms/reports.py:17 extras/forms/scripts.py:23 msgid "Schedule at" msgstr "Расписание на" -#: netbox/extras/forms/reports.py:18 +#: extras/forms/reports.py:18 msgid "Schedule execution of report to a set time" msgstr "Запланировать выполнение отчета на установленное время" -#: netbox/extras/forms/reports.py:23 netbox/extras/forms/scripts.py:29 +#: extras/forms/reports.py:23 extras/forms/scripts.py:29 msgid "Recurs every" msgstr "Повторяется каждый" -#: netbox/extras/forms/reports.py:27 +#: extras/forms/reports.py:27 msgid "Interval at which this report is re-run (in minutes)" msgstr "Интервал повторного запуска отчета (в минутах)" -#: netbox/extras/forms/reports.py:35 netbox/extras/forms/scripts.py:41 +#: extras/forms/reports.py:35 extras/forms/scripts.py:41 #, python-brace-format msgid " (current time: {now})" msgstr " (текущее время: {now})" -#: netbox/extras/forms/reports.py:45 netbox/extras/forms/scripts.py:51 +#: extras/forms/reports.py:45 extras/forms/scripts.py:51 msgid "Scheduled time must be in the future." msgstr "Запланированное время должно быть в будущем." -#: netbox/extras/forms/scripts.py:17 +#: extras/forms/scripts.py:17 msgid "Commit changes" msgstr "Зафиксируйте изменения" -#: netbox/extras/forms/scripts.py:18 +#: extras/forms/scripts.py:18 msgid "Commit changes to the database (uncheck for a dry-run)" msgstr "" "Зафиксируйте изменения в базе данных (снимите флажок для пробного запуска)" -#: netbox/extras/forms/scripts.py:24 +#: extras/forms/scripts.py:24 msgid "Schedule execution of script to a set time" msgstr "Запланируйте выполнение скрипта на заданное время" -#: netbox/extras/forms/scripts.py:33 +#: extras/forms/scripts.py:33 msgid "Interval at which this script is re-run (in minutes)" msgstr "Интервал повторного запуска этого скрипта (в минутах)" -#: netbox/extras/jobs.py:49 +#: extras/jobs.py:49 msgid "Database changes have been reverted automatically." msgstr "Изменения в базе данных были автоматически отменены." -#: netbox/extras/jobs.py:56 +#: extras/jobs.py:55 msgid "Script aborted with error: " msgstr "Скрипт прерван с ошибкой: " -#: netbox/extras/jobs.py:66 +#: extras/jobs.py:65 msgid "An exception occurred: " msgstr "Возникло исключение: " -#: netbox/extras/jobs.py:71 +#: extras/jobs.py:70 msgid "Database changes have been reverted due to error." msgstr "Изменения в базе данных отменены из-за ошибки." -#: netbox/extras/management/commands/reindex.py:66 +#: extras/management/commands/reindex.py:66 msgid "No indexers found!" msgstr "Индексаторы не найдены!" -#: netbox/extras/models/configs.py:130 +#: extras/models/configs.py:130 msgid "config context" msgstr "контекст конфигурации" -#: netbox/extras/models/configs.py:131 +#: extras/models/configs.py:131 msgid "config contexts" msgstr "контексты конфигурации" -#: netbox/extras/models/configs.py:149 netbox/extras/models/configs.py:205 +#: extras/models/configs.py:149 extras/models/configs.py:205 msgid "JSON data must be in object form. Example:" msgstr "Данные JSON должны быть в форме объекта. Пример:" -#: netbox/extras/models/configs.py:169 +#: extras/models/configs.py:169 msgid "" "Local config context data takes precedence over source contexts in the final" " rendered config context" @@ -8180,19 +7622,19 @@ msgstr "" "Данные контекста локальной конфигурации имеют приоритет над исходными " "контекстами в окончательном визуализированном контексте конфигурации" -#: netbox/extras/models/configs.py:224 +#: extras/models/configs.py:224 msgid "template code" msgstr "код шаблона" -#: netbox/extras/models/configs.py:225 +#: extras/models/configs.py:225 msgid "Jinja2 template code." msgstr "Код Jinja2 шаблона." -#: netbox/extras/models/configs.py:228 +#: extras/models/configs.py:228 msgid "environment parameters" msgstr "параметры окружения" -#: netbox/extras/models/configs.py:233 +#: extras/models/configs.py:233 msgid "" "Any additional" @@ -8202,42 +7644,42 @@ msgstr "" "href=\"https://jinja.palletsprojects.com/en/3.1.x/api/#jinja2.Environment\">дополнительные" " параметры для Jinja2 окружения." -#: netbox/extras/models/configs.py:240 +#: extras/models/configs.py:240 msgid "config template" msgstr "шаблон конфигурации" -#: netbox/extras/models/configs.py:241 +#: extras/models/configs.py:241 msgid "config templates" msgstr "шаблоны конфигураций" -#: netbox/extras/models/customfields.py:75 +#: extras/models/customfields.py:75 msgid "The object(s) to which this field applies." msgstr "Объекты, к которым относится это поле." -#: netbox/extras/models/customfields.py:82 +#: extras/models/customfields.py:82 msgid "The type of data this custom field holds" msgstr "Тип данных, которые содержит это настраиваемое поле" -#: netbox/extras/models/customfields.py:89 +#: extras/models/customfields.py:89 msgid "The type of NetBox object this field maps to (for object fields)" msgstr "" "Тип объекта NetBox, которому соответствует это поле (для полей объектов)" -#: netbox/extras/models/customfields.py:95 +#: extras/models/customfields.py:95 msgid "Internal field name" msgstr "Имя внутреннего поля" -#: netbox/extras/models/customfields.py:99 +#: extras/models/customfields.py:99 msgid "Only alphanumeric characters and underscores are allowed." msgstr "Допустимы только буквенно-цифровые символы и символы подчеркивания." -#: netbox/extras/models/customfields.py:104 +#: extras/models/customfields.py:104 msgid "Double underscores are not permitted in custom field names." msgstr "" "В именах настраиваемых полей недопустимо использовать два подчеркивания " "подряд (зарезервировано)." -#: netbox/extras/models/customfields.py:115 +#: extras/models/customfields.py:115 msgid "" "Name of the field as displayed to users (if not provided, 'the field's name " "will be used)" @@ -8245,19 +7687,19 @@ msgstr "" "Имя поля, отображаемое пользователям (если оно не указано, будет " "использовано имя поля)" -#: netbox/extras/models/customfields.py:119 netbox/extras/models/models.py:317 +#: extras/models/customfields.py:119 extras/models/models.py:317 msgid "group name" msgstr "имя группы" -#: netbox/extras/models/customfields.py:122 +#: extras/models/customfields.py:122 msgid "Custom fields within the same group will be displayed together" msgstr "Настраиваемые поля в одной группе будут отображаться вместе" -#: netbox/extras/models/customfields.py:130 +#: extras/models/customfields.py:130 msgid "required" msgstr "Требуется" -#: netbox/extras/models/customfields.py:132 +#: extras/models/customfields.py:132 msgid "" "This field is required when creating new objects or editing an existing " "object." @@ -8265,19 +7707,19 @@ msgstr "" "Это поле необходимо для создания новых объектов или редактирования " "существующего объекта." -#: netbox/extras/models/customfields.py:135 +#: extras/models/customfields.py:135 msgid "must be unique" msgstr "должен быть уникальным" -#: netbox/extras/models/customfields.py:137 +#: extras/models/customfields.py:137 msgid "The value of this field must be unique for the assigned object" msgstr "Значение этого поля должно быть уникальным для назначенного объекта" -#: netbox/extras/models/customfields.py:140 +#: extras/models/customfields.py:140 msgid "search weight" msgstr "вес поиска" -#: netbox/extras/models/customfields.py:143 +#: extras/models/customfields.py:143 msgid "" "Weighting for search. Lower values are considered more important. Fields " "with a search weight of zero will be ignored." @@ -8285,11 +7727,11 @@ msgstr "" "Взвешивание для поиска. Более низкие значения считаются более важными. Поля " "с нулевым весом поиска будут проигнорированы." -#: netbox/extras/models/customfields.py:148 +#: extras/models/customfields.py:148 msgid "filter logic" msgstr "логика фильтрации" -#: netbox/extras/models/customfields.py:152 +#: extras/models/customfields.py:152 msgid "" "Loose matches any instance of a given string; exact matches the entire " "field." @@ -8297,11 +7739,11 @@ msgstr "" "Loose соответствует любому экземпляру заданной строки; точно соответствует " "всему полю." -#: netbox/extras/models/customfields.py:155 +#: extras/models/customfields.py:155 msgid "default" msgstr "по умолчанию" -#: netbox/extras/models/customfields.py:159 +#: extras/models/customfields.py:159 msgid "" "Default value for the field (must be a JSON value). Encapsulate strings with" " double quotes (e.g. \"Foo\")." @@ -8309,7 +7751,7 @@ msgstr "" "Значение по умолчанию для поля (должно быть JSON-значением). Заключайте " "строки в двойные кавычки (например, «Foo»)." -#: netbox/extras/models/customfields.py:166 +#: extras/models/customfields.py:166 msgid "" "Filter the object selection choices using a query_params dict (must be a " "JSON value).Encapsulate strings with double quotes (e.g. \"Foo\")." @@ -8317,35 +7759,35 @@ msgstr "" "Отфильтруйте варианты выбора объектов, используя dict query_params (должно " "быть значение JSON). Заключайте строки в двойные кавычки (например, «Foo»)." -#: netbox/extras/models/customfields.py:172 +#: extras/models/customfields.py:172 msgid "display weight" msgstr "вес дисплея" -#: netbox/extras/models/customfields.py:173 +#: extras/models/customfields.py:173 msgid "Fields with higher weights appear lower in a form." msgstr "Поля с большим весом отображаются в форме ниже." -#: netbox/extras/models/customfields.py:178 +#: extras/models/customfields.py:178 msgid "minimum value" msgstr "минимальное значение" -#: netbox/extras/models/customfields.py:179 +#: extras/models/customfields.py:179 msgid "Minimum allowed value (for numeric fields)" msgstr "Минимальное допустимое значение (для числовых полей)" -#: netbox/extras/models/customfields.py:184 +#: extras/models/customfields.py:184 msgid "maximum value" msgstr "максимальное значение" -#: netbox/extras/models/customfields.py:185 +#: extras/models/customfields.py:185 msgid "Maximum allowed value (for numeric fields)" msgstr "Максимально допустимое значение (для числовых полей)" -#: netbox/extras/models/customfields.py:191 +#: extras/models/customfields.py:191 msgid "validation regex" msgstr "регулярное выражение валидации" -#: netbox/extras/models/customfields.py:193 +#: extras/models/customfields.py:193 #, python-brace-format msgid "" "Regular expression to enforce on text field values. Use ^ and $ to force " @@ -8356,197 +7798,195 @@ msgstr "" " ^ и $ для принудительного сопоставления всей строки. Например, ^ " "[A-Z]{3}$ ограничит значения ровно тремя заглавными буквами." -#: netbox/extras/models/customfields.py:201 +#: extras/models/customfields.py:201 msgid "choice set" msgstr "набор для выбора" -#: netbox/extras/models/customfields.py:210 +#: extras/models/customfields.py:210 msgid "Specifies whether the custom field is displayed in the UI" msgstr "" "Указывает, отображается ли настраиваемое поле в пользовательском интерфейсе" -#: netbox/extras/models/customfields.py:217 +#: extras/models/customfields.py:217 msgid "Specifies whether the custom field value can be edited in the UI" msgstr "" "Указывает, можно ли редактировать значение настраиваемого поля в " "пользовательском интерфейсе" -#: netbox/extras/models/customfields.py:221 +#: extras/models/customfields.py:221 msgid "is cloneable" msgstr "клонируется" -#: netbox/extras/models/customfields.py:222 +#: extras/models/customfields.py:222 msgid "Replicate this value when cloning objects" msgstr "Реплицируйте это значение при клонировании объектов" -#: netbox/extras/models/customfields.py:239 +#: extras/models/customfields.py:239 msgid "custom field" msgstr "настраиваемое поле" -#: netbox/extras/models/customfields.py:240 +#: extras/models/customfields.py:240 msgid "custom fields" msgstr "настраиваемые поля" -#: netbox/extras/models/customfields.py:329 +#: extras/models/customfields.py:329 #, python-brace-format msgid "Invalid default value \"{value}\": {error}" msgstr "Неверное значение по умолчанию»{value}«: {error}" -#: netbox/extras/models/customfields.py:336 +#: extras/models/customfields.py:336 msgid "A minimum value may be set only for numeric fields" msgstr "Минимальное значение может быть установлено только для числовых полей" -#: netbox/extras/models/customfields.py:338 +#: extras/models/customfields.py:338 msgid "A maximum value may be set only for numeric fields" msgstr "" "Максимальное значение может быть установлено только для числовых полей" -#: netbox/extras/models/customfields.py:348 +#: extras/models/customfields.py:348 msgid "" "Regular expression validation is supported only for text and URL fields" msgstr "" "Проверка регулярных выражений поддерживается только для текстовых полей и " "полей URL" -#: netbox/extras/models/customfields.py:354 +#: extras/models/customfields.py:354 msgid "Uniqueness cannot be enforced for boolean fields" msgstr "Уникальность не может быть обеспечена для булевых полей" -#: netbox/extras/models/customfields.py:364 +#: extras/models/customfields.py:364 msgid "Selection fields must specify a set of choices." msgstr "В полях выбора должен быть указан набор вариантов." -#: netbox/extras/models/customfields.py:368 +#: extras/models/customfields.py:368 msgid "Choices may be set only on selection fields." msgstr "Варианты могут быть заданы только в полях выбора." -#: netbox/extras/models/customfields.py:375 +#: extras/models/customfields.py:375 msgid "Object fields must define an object type." msgstr "Поля объекта должны определять тип объекта." -#: netbox/extras/models/customfields.py:379 +#: extras/models/customfields.py:379 #, python-brace-format msgid "{type} fields may not define an object type." msgstr "{type} поля не могут определять тип объекта." -#: netbox/extras/models/customfields.py:386 +#: extras/models/customfields.py:386 msgid "A related object filter can be defined only for object fields." msgstr "Фильтр связанных объектов можно определить только для полей объектов." -#: netbox/extras/models/customfields.py:390 +#: extras/models/customfields.py:390 msgid "Filter must be defined as a dictionary mapping attributes to values." msgstr "" "Фильтр должен быть определен как словарь, сопоставляющий атрибуты со " "значениями." -#: netbox/extras/models/customfields.py:469 +#: extras/models/customfields.py:469 msgid "True" msgstr "Истина" -#: netbox/extras/models/customfields.py:470 +#: extras/models/customfields.py:470 msgid "False" msgstr "Ложь" -#: netbox/extras/models/customfields.py:560 +#: extras/models/customfields.py:560 #, python-brace-format msgid "Values must match this regex: {regex}" msgstr "" "Значения должны соответствовать этому регулярному вырагу: " "{regex}" -#: netbox/extras/models/customfields.py:654 +#: extras/models/customfields.py:654 msgid "Value must be a string." msgstr "Значение должно быть строкой." -#: netbox/extras/models/customfields.py:656 +#: extras/models/customfields.py:656 #, python-brace-format msgid "Value must match regex '{regex}'" msgstr "Значение должно совпадать с регулярным выраженностью '{regex}'" -#: netbox/extras/models/customfields.py:661 +#: extras/models/customfields.py:661 msgid "Value must be an integer." msgstr "Значение должно быть целым числом." -#: netbox/extras/models/customfields.py:664 -#: netbox/extras/models/customfields.py:679 +#: extras/models/customfields.py:664 extras/models/customfields.py:679 #, python-brace-format msgid "Value must be at least {minimum}" msgstr "Значение должно быть не менее {minimum}" -#: netbox/extras/models/customfields.py:668 -#: netbox/extras/models/customfields.py:683 +#: extras/models/customfields.py:668 extras/models/customfields.py:683 #, python-brace-format msgid "Value must not exceed {maximum}" msgstr "Значение не должно превышать {maximum}" -#: netbox/extras/models/customfields.py:676 +#: extras/models/customfields.py:676 msgid "Value must be a decimal." msgstr "Значение должно быть десятичным." -#: netbox/extras/models/customfields.py:688 +#: extras/models/customfields.py:688 msgid "Value must be true or false." msgstr "Значение должно быть истинным или ложным." -#: netbox/extras/models/customfields.py:696 +#: extras/models/customfields.py:696 msgid "Date values must be in ISO 8601 format (YYYY-MM-DD)." msgstr "Значения дат должны быть в формате ISO 8601 (YYYY-MM-DD)." -#: netbox/extras/models/customfields.py:705 +#: extras/models/customfields.py:705 msgid "Date and time values must be in ISO 8601 format (YYYY-MM-DD HH:MM:SS)." msgstr "" "Значения даты и времени должны быть в формате ISO 8601 (YYYY-MM-DD " "HH:MM:SS)." -#: netbox/extras/models/customfields.py:712 +#: extras/models/customfields.py:712 #, python-brace-format msgid "Invalid choice ({value}) for choice set {choiceset}." msgstr "Неверный выбор ({value}2) для выбора набора {choiceset}." -#: netbox/extras/models/customfields.py:722 +#: extras/models/customfields.py:722 #, python-brace-format msgid "Invalid choice(s) ({value}) for choice set {choiceset}." msgstr "Неверный выбор (ы){value}2) для выбора набора {choiceset}." -#: netbox/extras/models/customfields.py:731 +#: extras/models/customfields.py:731 #, python-brace-format msgid "Value must be an object ID, not {type}" msgstr "Значение должно быть идентификатором объекта, а не {type}" -#: netbox/extras/models/customfields.py:737 +#: extras/models/customfields.py:737 #, python-brace-format msgid "Value must be a list of object IDs, not {type}" msgstr "Значение должно быть списком идентификаторов объектов, а не {type}" -#: netbox/extras/models/customfields.py:741 +#: extras/models/customfields.py:741 #, python-brace-format msgid "Found invalid object ID: {id}" msgstr "Обнаружен неправильный идентификатор объекта: {id}" -#: netbox/extras/models/customfields.py:744 +#: extras/models/customfields.py:744 msgid "Required field cannot be empty." msgstr "Обязательное поле не может быть пустым." -#: netbox/extras/models/customfields.py:763 +#: extras/models/customfields.py:763 msgid "Base set of predefined choices (optional)" msgstr "Базовый набор предопределенных вариантов (опционально)" -#: netbox/extras/models/customfields.py:775 +#: extras/models/customfields.py:775 msgid "Choices are automatically ordered alphabetically" msgstr "Варианты автоматически упорядочены в алфавитном порядке" -#: netbox/extras/models/customfields.py:782 +#: extras/models/customfields.py:782 msgid "custom field choice set" msgstr "набор вариантов для настраиваемых полей" -#: netbox/extras/models/customfields.py:783 +#: extras/models/customfields.py:783 msgid "custom field choice sets" msgstr "наборы вариантов для настраиваемых полей" -#: netbox/extras/models/customfields.py:825 +#: extras/models/customfields.py:825 msgid "Must define base or extra choices." msgstr "Должен определить базовые или дополнительные варианты." -#: netbox/extras/models/customfields.py:849 +#: extras/models/customfields.py:849 #, python-brace-format msgid "" "Cannot remove choice {choice} as there are {model} objects which reference " @@ -8555,60 +7995,60 @@ msgstr "" "Невозможно удалить выбор {choice} так как есть {model} объекты, ссылающиеся " "на него." -#: netbox/extras/models/dashboard.py:18 +#: extras/models/dashboard.py:18 msgid "layout" msgstr "макет" -#: netbox/extras/models/dashboard.py:22 +#: extras/models/dashboard.py:22 msgid "config" msgstr "конфигурация" -#: netbox/extras/models/dashboard.py:27 +#: extras/models/dashboard.py:27 msgid "dashboard" msgstr "панель управления" -#: netbox/extras/models/dashboard.py:28 +#: extras/models/dashboard.py:28 msgid "dashboards" msgstr "панели управления" -#: netbox/extras/models/models.py:52 +#: extras/models/models.py:52 msgid "object types" msgstr "типы объектов" -#: netbox/extras/models/models.py:53 +#: extras/models/models.py:53 msgid "The object(s) to which this rule applies." msgstr "Объект (объекты), к которым применяется данное правило." -#: netbox/extras/models/models.py:67 +#: extras/models/models.py:67 msgid "The types of event which will trigger this rule." msgstr "Типы событий, которые повлекут за собой действие этого правила." -#: netbox/extras/models/models.py:74 +#: extras/models/models.py:74 msgid "conditions" msgstr "условия" -#: netbox/extras/models/models.py:77 +#: extras/models/models.py:77 msgid "" "A set of conditions which determine whether the event will be generated." msgstr "Набор условий, определяющих, будет ли создано событие." -#: netbox/extras/models/models.py:85 +#: extras/models/models.py:85 msgid "action type" msgstr "тип действия" -#: netbox/extras/models/models.py:104 +#: extras/models/models.py:104 msgid "Additional data to pass to the action object" msgstr "Дополнительные данные для передачи объекту действия" -#: netbox/extras/models/models.py:116 +#: extras/models/models.py:116 msgid "event rule" msgstr "правило события" -#: netbox/extras/models/models.py:117 +#: extras/models/models.py:117 msgid "event rules" msgstr "правила мероприятия" -#: netbox/extras/models/models.py:166 +#: extras/models/models.py:166 msgid "" "This URL will be called using the HTTP method defined when the webhook is " "called. Jinja2 template processing is supported with the same context as the" @@ -8618,7 +8058,7 @@ msgstr "" "вызове веб-хука. Обработка шаблона Jinja2 поддерживается в том же контексте," " что и тело запроса." -#: netbox/extras/models/models.py:181 +#: extras/models/models.py:181 msgid "" "The complete list of official content types is available здесь." -#: netbox/extras/models/models.py:186 +#: extras/models/models.py:186 msgid "additional headers" msgstr "дополнительные заголовки" -#: netbox/extras/models/models.py:189 +#: extras/models/models.py:189 msgid "" "User-supplied HTTP headers to be sent with the request in addition to the " "HTTP content type. Headers should be defined in the format Name: " @@ -8644,11 +8084,11 @@ msgstr "" "быть определены в формате Название: Значение. Обработка шаблона" " Jinja2 поддерживается в том же контексте, что и тело запроса (см. ниже)." -#: netbox/extras/models/models.py:195 +#: extras/models/models.py:195 msgid "body template" msgstr "шаблон тела" -#: netbox/extras/models/models.py:198 +#: extras/models/models.py:198 msgid "" "Jinja2 template for a custom request body. If blank, a JSON object " "representing the change will be included. Available context data includes: " @@ -8660,11 +8100,11 @@ msgstr "" "event, model, timestamp, " "username, request_id, и data." -#: netbox/extras/models/models.py:204 +#: extras/models/models.py:204 msgid "secret" msgstr "секретный" -#: netbox/extras/models/models.py:208 +#: extras/models/models.py:208 msgid "" "When provided, the request will include a X-Hook-Signature " "header containing a HMAC hex digest of the payload body using the secret as " @@ -8675,15 +8115,15 @@ msgstr "" " нагрузки в формате HMAC, в котором в качестве ключа используется секрет. " "Секрет не передается в запросе." -#: netbox/extras/models/models.py:215 +#: extras/models/models.py:215 msgid "Enable SSL certificate verification. Disable with caution!" msgstr "Включите проверку сертификата SSL. Отключайте с осторожностью!" -#: netbox/extras/models/models.py:221 netbox/templates/extras/webhook.html:51 +#: extras/models/models.py:221 templates/extras/webhook.html:51 msgid "CA File Path" msgstr "Путь к файлу CA" -#: netbox/extras/models/models.py:223 +#: extras/models/models.py:223 msgid "" "The specific CA certificate file to use for SSL verification. Leave blank to" " use the system defaults." @@ -8691,63 +8131,63 @@ msgstr "" "Конкретный файл сертификата CA, используемый для проверки SSL. Оставьте поле" " пустым, чтобы использовать системные настройки по умолчанию." -#: netbox/extras/models/models.py:234 +#: extras/models/models.py:234 msgid "webhook" msgstr "вебхук" -#: netbox/extras/models/models.py:235 +#: extras/models/models.py:235 msgid "webhooks" msgstr "вебхуки" -#: netbox/extras/models/models.py:253 +#: extras/models/models.py:253 msgid "Do not specify a CA certificate file if SSL verification is disabled." msgstr "Не указывайте файл сертификата CA, если проверка SSL отключена." -#: netbox/extras/models/models.py:293 +#: extras/models/models.py:293 msgid "The object type(s) to which this link applies." msgstr "Тип (ы) объекта, к которому относится эта ссылка." -#: netbox/extras/models/models.py:305 +#: extras/models/models.py:305 msgid "link text" msgstr "текст ссылки" -#: netbox/extras/models/models.py:306 +#: extras/models/models.py:306 msgid "Jinja2 template code for link text" msgstr "Код Jinja2 шаблона для текста ссылки" -#: netbox/extras/models/models.py:309 +#: extras/models/models.py:309 msgid "link URL" msgstr "URL-адрес ссылки" -#: netbox/extras/models/models.py:310 +#: extras/models/models.py:310 msgid "Jinja2 template code for link URL" msgstr "Код Jinja2 шаблона для URL-адреса" -#: netbox/extras/models/models.py:320 +#: extras/models/models.py:320 msgid "Links with the same group will appear as a dropdown menu" msgstr "Ссылки с той же группой появятся в выпадающем меню" -#: netbox/extras/models/models.py:330 +#: extras/models/models.py:330 msgid "new window" msgstr "новое окно" -#: netbox/extras/models/models.py:332 +#: extras/models/models.py:332 msgid "Force link to open in a new window" msgstr "Принудительно открыть ссылку в новом окне" -#: netbox/extras/models/models.py:341 +#: extras/models/models.py:341 msgid "custom link" msgstr "настраиваемая ссылка" -#: netbox/extras/models/models.py:342 +#: extras/models/models.py:342 msgid "custom links" msgstr "настраиваемые ссылки" -#: netbox/extras/models/models.py:389 +#: extras/models/models.py:389 msgid "The object type(s) to which this template applies." msgstr "Тип (типы) объектов, к которым применим этот шаблон." -#: netbox/extras/models/models.py:402 +#: extras/models/models.py:402 msgid "" "Jinja2 template code. The list of objects being exported is passed as a " "context variable named queryset." @@ -8755,1085 +8195,1050 @@ msgstr "" "Код Jinja2 шаблона. Список экспортируемых объектов передается в виде " "контекстной переменной с именем queryset." -#: netbox/extras/models/models.py:410 +#: extras/models/models.py:410 msgid "Defaults to text/plain; charset=utf-8" msgstr "По умолчанию текстовый/обычный; кодировка=utf-8" -#: netbox/extras/models/models.py:413 +#: extras/models/models.py:413 msgid "file extension" msgstr "расширение файла" -#: netbox/extras/models/models.py:416 +#: extras/models/models.py:416 msgid "Extension to append to the rendered filename" msgstr "Расширение для добавления к отображаемому имени файла" -#: netbox/extras/models/models.py:419 +#: extras/models/models.py:419 msgid "as attachment" msgstr "в качестве вложения" -#: netbox/extras/models/models.py:421 +#: extras/models/models.py:421 msgid "Download file as attachment" msgstr "Загрузить файл в виде вложения" -#: netbox/extras/models/models.py:430 +#: extras/models/models.py:430 msgid "export template" msgstr "шаблон экспорта" -#: netbox/extras/models/models.py:431 +#: extras/models/models.py:431 msgid "export templates" msgstr "шаблоны экспорта" -#: netbox/extras/models/models.py:448 +#: extras/models/models.py:448 #, python-brace-format msgid "\"{name}\" is a reserved name. Please choose a different name." msgstr "«{name}\"— зарезервированное имя. Пожалуйста, выберите другое имя." -#: netbox/extras/models/models.py:498 +#: extras/models/models.py:498 msgid "The object type(s) to which this filter applies." msgstr "Тип (типы) объектов, к которым применяется этот фильтр." -#: netbox/extras/models/models.py:530 +#: extras/models/models.py:530 msgid "shared" msgstr "общий" -#: netbox/extras/models/models.py:543 +#: extras/models/models.py:543 msgid "saved filter" msgstr "сохраненный фильтр" -#: netbox/extras/models/models.py:544 +#: extras/models/models.py:544 msgid "saved filters" msgstr "сохраненные фильтры" -#: netbox/extras/models/models.py:562 +#: extras/models/models.py:562 msgid "Filter parameters must be stored as a dictionary of keyword arguments." msgstr "" "Параметры фильтра должны храниться в виде словаря аргументов ключевых слов." -#: netbox/extras/models/models.py:590 +#: extras/models/models.py:590 msgid "image height" msgstr "высота изображения" -#: netbox/extras/models/models.py:593 +#: extras/models/models.py:593 msgid "image width" msgstr "ширина изображения" -#: netbox/extras/models/models.py:610 +#: extras/models/models.py:610 msgid "image attachment" msgstr "прикрепить изображение" -#: netbox/extras/models/models.py:611 +#: extras/models/models.py:611 msgid "image attachments" msgstr "прикрепленные изображения" -#: netbox/extras/models/models.py:625 +#: extras/models/models.py:625 #, python-brace-format msgid "Image attachments cannot be assigned to this object type ({type})." msgstr "Вложенные изображения нельзя присвоить этому типу объекта ({type})." -#: netbox/extras/models/models.py:688 +#: extras/models/models.py:688 msgid "kind" msgstr "добрый" -#: netbox/extras/models/models.py:702 +#: extras/models/models.py:702 msgid "journal entry" msgstr "запись в журнале" -#: netbox/extras/models/models.py:703 +#: extras/models/models.py:703 msgid "journal entries" msgstr "записи в журнале" -#: netbox/extras/models/models.py:718 +#: extras/models/models.py:718 #, python-brace-format msgid "Journaling is not supported for this object type ({type})." msgstr "Ведение журнала не поддерживается для этого типа объектов ({type})." -#: netbox/extras/models/models.py:760 +#: extras/models/models.py:760 msgid "bookmark" msgstr "закладка" -#: netbox/extras/models/models.py:761 +#: extras/models/models.py:761 msgid "bookmarks" msgstr "закладки" -#: netbox/extras/models/models.py:774 +#: extras/models/models.py:774 #, python-brace-format msgid "Bookmarks cannot be assigned to this object type ({type})." msgstr "Закладки нельзя присвоить этому типу объекта ({type})." -#: netbox/extras/models/notifications.py:43 +#: extras/models/notifications.py:43 msgid "read" msgstr "читать" -#: netbox/extras/models/notifications.py:66 +#: extras/models/notifications.py:66 msgid "event" msgstr "событие" -#: netbox/extras/models/notifications.py:84 +#: extras/models/notifications.py:84 msgid "notification" msgstr "уведомление" -#: netbox/extras/models/notifications.py:85 +#: extras/models/notifications.py:85 msgid "notifications" msgstr "уведомления" -#: netbox/extras/models/notifications.py:99 -#: netbox/extras/models/notifications.py:234 +#: extras/models/notifications.py:99 extras/models/notifications.py:234 #, python-brace-format msgid "Objects of this type ({type}) do not support notifications." msgstr "Объекты этого типа ({type}) не поддерживают уведомления." -#: netbox/extras/models/notifications.py:137 netbox/users/models/users.py:58 -#: netbox/users/models/users.py:77 +#: extras/models/notifications.py:137 users/models/users.py:58 +#: users/models/users.py:77 msgid "groups" msgstr "групп" -#: netbox/extras/models/notifications.py:143 netbox/users/models/users.py:93 +#: extras/models/notifications.py:143 users/models/users.py:93 msgid "users" msgstr "пользователей" -#: netbox/extras/models/notifications.py:152 +#: extras/models/notifications.py:152 msgid "notification group" msgstr "группа уведомлений" -#: netbox/extras/models/notifications.py:153 +#: extras/models/notifications.py:153 msgid "notification groups" msgstr "группы уведомлений" -#: netbox/extras/models/notifications.py:217 +#: extras/models/notifications.py:217 msgid "subscription" msgstr "подписка" -#: netbox/extras/models/notifications.py:218 +#: extras/models/notifications.py:218 msgid "subscriptions" msgstr "подписки" -#: netbox/extras/models/scripts.py:42 +#: extras/models/scripts.py:42 msgid "is executable" msgstr "является исполняемым" -#: netbox/extras/models/scripts.py:64 +#: extras/models/scripts.py:64 msgid "script" msgstr "сценарий" -#: netbox/extras/models/scripts.py:65 +#: extras/models/scripts.py:65 msgid "scripts" msgstr "сценарии" -#: netbox/extras/models/scripts.py:111 +#: extras/models/scripts.py:111 msgid "script module" msgstr "скриптовый модуль" -#: netbox/extras/models/scripts.py:112 +#: extras/models/scripts.py:112 msgid "script modules" msgstr "скриптовые модули" -#: netbox/extras/models/search.py:22 +#: extras/models/search.py:22 msgid "timestamp" msgstr "отметка времени" -#: netbox/extras/models/search.py:37 +#: extras/models/search.py:37 msgid "field" msgstr "полк" -#: netbox/extras/models/search.py:45 +#: extras/models/search.py:45 msgid "value" msgstr "значение" -#: netbox/extras/models/search.py:56 +#: extras/models/search.py:56 msgid "cached value" msgstr "кэшированное значение" -#: netbox/extras/models/search.py:57 +#: extras/models/search.py:57 msgid "cached values" msgstr "кэшированные значения" -#: netbox/extras/models/staging.py:44 +#: extras/models/staging.py:44 msgid "branch" msgstr "ветка" -#: netbox/extras/models/staging.py:45 +#: extras/models/staging.py:45 msgid "branches" msgstr "ветки" -#: netbox/extras/models/staging.py:97 +#: extras/models/staging.py:97 msgid "staged change" msgstr "поэтапное изменение" -#: netbox/extras/models/staging.py:98 +#: extras/models/staging.py:98 msgid "staged changes" msgstr "поэтапные изменения" -#: netbox/extras/models/tags.py:40 +#: extras/models/tags.py:40 msgid "The object type(s) to which this tag can be applied." msgstr "Тип (ы) объекта, к которому можно применить этот тег." -#: netbox/extras/models/tags.py:49 +#: extras/models/tags.py:49 msgid "tag" msgstr "тег" -#: netbox/extras/models/tags.py:50 +#: extras/models/tags.py:50 msgid "tags" msgstr "теги" -#: netbox/extras/models/tags.py:78 +#: extras/models/tags.py:78 msgid "tagged item" msgstr "помеченный товар" -#: netbox/extras/models/tags.py:79 +#: extras/models/tags.py:79 msgid "tagged items" msgstr "помеченные товары" -#: netbox/extras/scripts.py:429 +#: extras/scripts.py:429 msgid "Script Data" msgstr "Данные скрипта" -#: netbox/extras/scripts.py:433 +#: extras/scripts.py:433 msgid "Script Execution Parameters" msgstr "Параметры выполнения сценария" -#: netbox/extras/tables/columns.py:12 -#: netbox/templates/htmx/notifications.html:18 +#: extras/tables/columns.py:12 templates/htmx/notifications.html:18 msgid "Dismiss" msgstr "Отклонить" -#: netbox/extras/tables/tables.py:62 netbox/extras/tables/tables.py:159 -#: netbox/extras/tables/tables.py:184 netbox/extras/tables/tables.py:250 -#: netbox/extras/tables/tables.py:276 netbox/extras/tables/tables.py:412 -#: netbox/extras/tables/tables.py:446 -#: netbox/templates/extras/customfield.html:105 -#: netbox/templates/extras/eventrule.html:27 -#: netbox/templates/users/objectpermission.html:64 netbox/users/tables.py:80 +#: extras/tables/tables.py:62 extras/tables/tables.py:159 +#: extras/tables/tables.py:184 extras/tables/tables.py:250 +#: extras/tables/tables.py:276 extras/tables/tables.py:412 +#: extras/tables/tables.py:446 templates/extras/customfield.html:105 +#: templates/extras/eventrule.html:27 templates/users/objectpermission.html:64 +#: users/tables.py:80 msgid "Object Types" msgstr "Типы объектов" -#: netbox/extras/tables/tables.py:69 +#: extras/tables/tables.py:69 msgid "Validate Uniqueness" msgstr "Подтвердите уникальность" -#: netbox/extras/tables/tables.py:73 +#: extras/tables/tables.py:73 msgid "Visible" msgstr "Видимый" -#: netbox/extras/tables/tables.py:76 +#: extras/tables/tables.py:76 msgid "Editable" msgstr "Редактируемый" -#: netbox/extras/tables/tables.py:82 +#: extras/tables/tables.py:82 msgid "Related Object Type" msgstr "Тип связанного объекта" -#: netbox/extras/tables/tables.py:86 -#: netbox/templates/extras/customfield.html:51 +#: extras/tables/tables.py:86 templates/extras/customfield.html:51 msgid "Choice Set" msgstr "Набор для выбора" -#: netbox/extras/tables/tables.py:94 +#: extras/tables/tables.py:94 msgid "Is Cloneable" msgstr "Можно ли клонировать" -#: netbox/extras/tables/tables.py:98 -#: netbox/templates/extras/customfield.html:118 +#: extras/tables/tables.py:98 templates/extras/customfield.html:118 msgid "Minimum Value" msgstr "Минимальное значение" -#: netbox/extras/tables/tables.py:101 -#: netbox/templates/extras/customfield.html:122 +#: extras/tables/tables.py:101 templates/extras/customfield.html:122 msgid "Maximum Value" msgstr "Максимальное значение" -#: netbox/extras/tables/tables.py:104 +#: extras/tables/tables.py:104 msgid "Validation Regex" msgstr "Валидации регулярным выражением" -#: netbox/extras/tables/tables.py:137 +#: extras/tables/tables.py:137 msgid "Count" msgstr "Количество" -#: netbox/extras/tables/tables.py:140 +#: extras/tables/tables.py:140 msgid "Order Alphabetically" msgstr "Упорядочить в алфавитном порядке" -#: netbox/extras/tables/tables.py:165 -#: netbox/templates/extras/customlink.html:33 +#: extras/tables/tables.py:165 templates/extras/customlink.html:33 msgid "New Window" msgstr "Новое окно" -#: netbox/extras/tables/tables.py:187 +#: extras/tables/tables.py:187 msgid "As Attachment" msgstr "В качестве вложения" -#: netbox/extras/tables/tables.py:195 netbox/extras/tables/tables.py:487 -#: netbox/extras/tables/tables.py:522 netbox/templates/core/datafile.html:24 -#: netbox/templates/dcim/device/render_config.html:22 -#: netbox/templates/extras/configcontext.html:39 -#: netbox/templates/extras/configtemplate.html:31 -#: netbox/templates/extras/exporttemplate.html:45 -#: netbox/templates/generic/bulk_import.html:35 -#: netbox/templates/virtualization/virtualmachine/render_config.html:22 +#: extras/tables/tables.py:195 extras/tables/tables.py:487 +#: extras/tables/tables.py:522 templates/core/datafile.html:24 +#: templates/dcim/device/render_config.html:22 +#: templates/extras/configcontext.html:39 +#: templates/extras/configtemplate.html:31 +#: templates/extras/exporttemplate.html:45 +#: templates/generic/bulk_import.html:35 +#: templates/virtualization/virtualmachine/render_config.html:22 msgid "Data File" msgstr "Файл данных" -#: netbox/extras/tables/tables.py:200 netbox/extras/tables/tables.py:499 -#: netbox/extras/tables/tables.py:527 +#: extras/tables/tables.py:200 extras/tables/tables.py:499 +#: extras/tables/tables.py:527 msgid "Synced" msgstr "Синхронизировано" -#: netbox/extras/tables/tables.py:227 +#: extras/tables/tables.py:227 msgid "Image" msgstr "Изображение" -#: netbox/extras/tables/tables.py:232 +#: extras/tables/tables.py:232 msgid "Size (Bytes)" msgstr "Размер (байты)" -#: netbox/extras/tables/tables.py:339 +#: extras/tables/tables.py:339 msgid "Read" msgstr "Прочтите" -#: netbox/extras/tables/tables.py:382 +#: extras/tables/tables.py:382 msgid "SSL Validation" msgstr "Валидация SSL" -#: netbox/extras/tables/tables.py:418 -#: netbox/templates/extras/eventrule.html:37 +#: extras/tables/tables.py:418 templates/extras/eventrule.html:37 msgid "Event Types" msgstr "Типы событий" -#: netbox/extras/tables/tables.py:535 netbox/netbox/navigation/menu.py:77 -#: netbox/templates/dcim/devicerole.html:8 +#: extras/tables/tables.py:535 netbox/navigation/menu.py:77 +#: templates/dcim/devicerole.html:8 msgid "Device Roles" msgstr "Роли устройств" -#: netbox/extras/tables/tables.py:587 +#: extras/tables/tables.py:587 msgid "Comments (Short)" msgstr "Комментарии (короткие)" -#: netbox/extras/tables/tables.py:606 netbox/extras/tables/tables.py:640 +#: extras/tables/tables.py:606 extras/tables/tables.py:640 msgid "Line" msgstr "Линия" -#: netbox/extras/tables/tables.py:613 netbox/extras/tables/tables.py:650 +#: extras/tables/tables.py:613 extras/tables/tables.py:650 msgid "Level" msgstr "Уровень" -#: netbox/extras/tables/tables.py:619 netbox/extras/tables/tables.py:659 +#: extras/tables/tables.py:619 extras/tables/tables.py:659 msgid "Message" msgstr "Сообщение" -#: netbox/extras/tables/tables.py:643 +#: extras/tables/tables.py:643 msgid "Method" msgstr "Метод" -#: netbox/extras/validators.py:15 +#: extras/validators.py:15 #, python-format msgid "Ensure this value is equal to %(limit_value)s." msgstr "Убедитесь, что это значение равно %(limit_value)s." -#: netbox/extras/validators.py:26 +#: extras/validators.py:26 #, python-format msgid "Ensure this value does not equal %(limit_value)s." msgstr "Убедитесь, что это значение не равно %(limit_value)s." -#: netbox/extras/validators.py:37 +#: extras/validators.py:37 msgid "This field must be empty." msgstr "Это поле должно быть пустым." -#: netbox/extras/validators.py:52 +#: extras/validators.py:52 msgid "This field must not be empty." msgstr "Это поле не должно быть пустым." -#: netbox/extras/validators.py:94 +#: extras/validators.py:94 msgid "Validation rules must be passed as a dictionary" msgstr "Правила валидации должны быть переданы в виде словаря" -#: netbox/extras/validators.py:119 +#: extras/validators.py:119 #, python-brace-format msgid "Custom validation failed for {attribute}: {exception}" msgstr "Пользовательская проверка не удалась для {attribute}: {exception}" -#: netbox/extras/validators.py:133 +#: extras/validators.py:133 #, python-brace-format msgid "Invalid attribute \"{name}\" for request" msgstr "Неверный атрибут»{name}\"по запросу" -#: netbox/extras/validators.py:150 +#: extras/validators.py:150 #, python-brace-format msgid "Invalid attribute \"{name}\" for {model}" msgstr "Недопустимый атрибут \"{name}\" для {model}" -#: netbox/extras/views.py:960 +#: extras/views.py:960 msgid "Your dashboard has been reset." msgstr "Панель виджетов была сброшена." -#: netbox/extras/views.py:1006 +#: extras/views.py:1006 msgid "Added widget: " msgstr "Добавлен виджет: " -#: netbox/extras/views.py:1047 +#: extras/views.py:1047 msgid "Updated widget: " msgstr "Обновлен виджет: " -#: netbox/extras/views.py:1083 +#: extras/views.py:1083 msgid "Deleted widget: " msgstr "Удален виджет: " -#: netbox/extras/views.py:1085 +#: extras/views.py:1085 msgid "Error deleting widget: " msgstr "Ошибка при удалении виджета: " -#: netbox/extras/views.py:1172 +#: extras/views.py:1172 msgid "Unable to run script: RQ worker process not running." msgstr "Невозможно запустить скрипт: процесс RQ не запущен." -#: netbox/ipam/api/field_serializers.py:17 +#: ipam/api/field_serializers.py:17 msgid "Enter a valid IPv4 or IPv6 address with optional mask." msgstr "Введите действительный адрес IPv4 или IPv6 с дополнительной маской." -#: netbox/ipam/api/field_serializers.py:24 +#: ipam/api/field_serializers.py:24 #, python-brace-format msgid "Invalid IP address format: {data}" msgstr "Неверный формат IP-адреса: {data}" -#: netbox/ipam/api/field_serializers.py:37 +#: ipam/api/field_serializers.py:37 msgid "Enter a valid IPv4 or IPv6 prefix and mask in CIDR notation." msgstr "Введите действительный префикс и маску IPv4 или IPv6 в нотации CIDR." -#: netbox/ipam/api/field_serializers.py:44 +#: ipam/api/field_serializers.py:44 #, python-brace-format msgid "Invalid IP prefix format: {data}" msgstr "Неверный формат IP-префикса: {data}" -#: netbox/ipam/api/views.py:358 +#: ipam/api/views.py:358 msgid "" "Insufficient space is available to accommodate the requested prefix size(s)" msgstr "Недостаточно места для размещения запрошенных размеров префиксов" -#: netbox/ipam/choices.py:30 +#: ipam/choices.py:30 msgid "Container" msgstr "Контейнер" -#: netbox/ipam/choices.py:72 +#: ipam/choices.py:72 msgid "DHCP" msgstr "DHCP" -#: netbox/ipam/choices.py:73 +#: ipam/choices.py:73 msgid "SLAAC" msgstr "SLAAC" -#: netbox/ipam/choices.py:89 +#: ipam/choices.py:89 msgid "Loopback" msgstr "Обратная петля" -#: netbox/ipam/choices.py:91 +#: ipam/choices.py:91 msgid "Anycast" msgstr "Anycast" -#: netbox/ipam/choices.py:115 +#: ipam/choices.py:115 msgid "Standard" msgstr "Стандарт" -#: netbox/ipam/choices.py:120 +#: ipam/choices.py:120 msgid "CheckPoint" msgstr "CheckPoint" -#: netbox/ipam/choices.py:123 +#: ipam/choices.py:123 msgid "Cisco" msgstr "Cisco" -#: netbox/ipam/choices.py:137 +#: ipam/choices.py:137 msgid "Plaintext" msgstr "Обычный текст" -#: netbox/ipam/fields.py:36 +#: ipam/fields.py:36 #, python-brace-format msgid "Invalid IP address format: {address}" msgstr "Неверный формат IP-адреса: {address}" -#: netbox/ipam/filtersets.py:48 netbox/vpn/filtersets.py:304 +#: ipam/filtersets.py:48 vpn/filtersets.py:304 msgid "Import target" msgstr "Цель импорта" -#: netbox/ipam/filtersets.py:54 netbox/vpn/filtersets.py:310 +#: ipam/filtersets.py:54 vpn/filtersets.py:310 msgid "Import target (name)" msgstr "Цель импорта (имя)" -#: netbox/ipam/filtersets.py:59 netbox/vpn/filtersets.py:315 +#: ipam/filtersets.py:59 vpn/filtersets.py:315 msgid "Export target" msgstr "Цель экспорта" -#: netbox/ipam/filtersets.py:65 netbox/vpn/filtersets.py:321 +#: ipam/filtersets.py:65 vpn/filtersets.py:321 msgid "Export target (name)" msgstr "Цель экспорта (имя)" -#: netbox/ipam/filtersets.py:86 +#: ipam/filtersets.py:86 msgid "Importing VRF" msgstr "Импорт VRF" -#: netbox/ipam/filtersets.py:92 +#: ipam/filtersets.py:92 msgid "Import VRF (RD)" msgstr "Импорт VRF (RD)" -#: netbox/ipam/filtersets.py:97 +#: ipam/filtersets.py:97 msgid "Exporting VRF" msgstr "Экспорт VRF" -#: netbox/ipam/filtersets.py:103 +#: ipam/filtersets.py:103 msgid "Export VRF (RD)" msgstr "Экспорт VRF (RD)" -#: netbox/ipam/filtersets.py:108 +#: ipam/filtersets.py:108 msgid "Importing L2VPN" msgstr "Импорт L2VPN" -#: netbox/ipam/filtersets.py:114 +#: ipam/filtersets.py:114 msgid "Importing L2VPN (identifier)" msgstr "Импорт L2VPN (идентификатор)" -#: netbox/ipam/filtersets.py:119 +#: ipam/filtersets.py:119 msgid "Exporting L2VPN" msgstr "Экспорт L2VPN" -#: netbox/ipam/filtersets.py:125 +#: ipam/filtersets.py:125 msgid "Exporting L2VPN (identifier)" msgstr "Экспорт L2VPN (идентификатор)" -#: netbox/ipam/filtersets.py:155 netbox/ipam/filtersets.py:281 -#: netbox/ipam/forms/model_forms.py:229 netbox/ipam/tables/ip.py:212 -#: netbox/templates/ipam/prefix.html:12 +#: ipam/filtersets.py:155 ipam/filtersets.py:281 ipam/forms/model_forms.py:229 +#: ipam/tables/ip.py:212 templates/ipam/prefix.html:12 msgid "Prefix" msgstr "Префикс" -#: netbox/ipam/filtersets.py:159 netbox/ipam/filtersets.py:198 -#: netbox/ipam/filtersets.py:221 +#: ipam/filtersets.py:159 ipam/filtersets.py:198 ipam/filtersets.py:221 msgid "RIR (ID)" msgstr "RIR (ID)" -#: netbox/ipam/filtersets.py:165 netbox/ipam/filtersets.py:204 -#: netbox/ipam/filtersets.py:227 +#: ipam/filtersets.py:165 ipam/filtersets.py:204 ipam/filtersets.py:227 msgid "RIR (slug)" msgstr "RIR (подстрока)" -#: netbox/ipam/filtersets.py:285 +#: ipam/filtersets.py:285 msgid "Within prefix" msgstr "В префиксе" -#: netbox/ipam/filtersets.py:289 +#: ipam/filtersets.py:289 msgid "Within and including prefix" msgstr "В префиксе и включительно" -#: netbox/ipam/filtersets.py:293 +#: ipam/filtersets.py:293 msgid "Prefixes which contain this prefix or IP" msgstr "Префиксы, содержащие этот префикс или IP-адрес" -#: netbox/ipam/filtersets.py:304 netbox/ipam/filtersets.py:572 -#: netbox/ipam/forms/bulk_edit.py:342 netbox/ipam/forms/filtersets.py:196 -#: netbox/ipam/forms/filtersets.py:331 +#: ipam/filtersets.py:304 ipam/filtersets.py:572 ipam/forms/bulk_edit.py:343 +#: ipam/forms/filtersets.py:196 ipam/forms/filtersets.py:331 msgid "Mask length" msgstr "Длина маски" -#: netbox/ipam/filtersets.py:373 netbox/vpn/filtersets.py:427 +#: ipam/filtersets.py:373 vpn/filtersets.py:427 msgid "VLAN (ID)" msgstr "VLAN (ID)" -#: netbox/ipam/filtersets.py:377 netbox/vpn/filtersets.py:422 +#: ipam/filtersets.py:377 vpn/filtersets.py:422 msgid "VLAN number (1-4094)" msgstr "Номер VLAN (1-4094)" -#: netbox/ipam/filtersets.py:471 netbox/ipam/filtersets.py:475 -#: netbox/ipam/filtersets.py:567 netbox/ipam/forms/model_forms.py:463 -#: netbox/templates/tenancy/contact.html:53 -#: netbox/tenancy/forms/bulk_edit.py:113 +#: ipam/filtersets.py:471 ipam/filtersets.py:475 ipam/filtersets.py:567 +#: ipam/forms/model_forms.py:463 templates/tenancy/contact.html:53 +#: tenancy/forms/bulk_edit.py:113 msgid "Address" msgstr "Адрес" -#: netbox/ipam/filtersets.py:479 +#: ipam/filtersets.py:479 msgid "Ranges which contain this prefix or IP" msgstr "Диапазоны, содержащие этот префикс или IP-адрес" -#: netbox/ipam/filtersets.py:507 netbox/ipam/filtersets.py:563 +#: ipam/filtersets.py:507 ipam/filtersets.py:563 msgid "Parent prefix" msgstr "Родительский префикс" -#: netbox/ipam/filtersets.py:616 netbox/ipam/filtersets.py:856 -#: netbox/ipam/filtersets.py:1131 netbox/vpn/filtersets.py:385 +#: ipam/filtersets.py:616 ipam/filtersets.py:856 ipam/filtersets.py:1131 +#: vpn/filtersets.py:385 msgid "Virtual machine (name)" msgstr "Виртуальная машина (имя)" -#: netbox/ipam/filtersets.py:621 netbox/ipam/filtersets.py:861 -#: netbox/ipam/filtersets.py:1125 netbox/virtualization/filtersets.py:282 -#: netbox/virtualization/filtersets.py:321 netbox/vpn/filtersets.py:390 +#: ipam/filtersets.py:621 ipam/filtersets.py:861 ipam/filtersets.py:1125 +#: virtualization/filtersets.py:282 virtualization/filtersets.py:321 +#: vpn/filtersets.py:390 msgid "Virtual machine (ID)" msgstr "Виртуальная машина (ID)" -#: netbox/ipam/filtersets.py:627 netbox/vpn/filtersets.py:97 -#: netbox/vpn/filtersets.py:396 +#: ipam/filtersets.py:627 vpn/filtersets.py:97 vpn/filtersets.py:396 msgid "Interface (name)" msgstr "Интерфейс (имя)" -#: netbox/ipam/filtersets.py:638 netbox/vpn/filtersets.py:108 -#: netbox/vpn/filtersets.py:407 +#: ipam/filtersets.py:638 vpn/filtersets.py:108 vpn/filtersets.py:407 msgid "VM interface (name)" msgstr "Интерфейс виртуальной машины (имя)" -#: netbox/ipam/filtersets.py:643 netbox/vpn/filtersets.py:113 +#: ipam/filtersets.py:643 vpn/filtersets.py:113 msgid "VM interface (ID)" msgstr "Интерфейс виртуальной машины (ID)" -#: netbox/ipam/filtersets.py:648 +#: ipam/filtersets.py:648 msgid "FHRP group (ID)" msgstr "FHRP группа (ID)" -#: netbox/ipam/filtersets.py:652 +#: ipam/filtersets.py:652 msgid "Is assigned to an interface" msgstr "Присвоен интерфейсу" -#: netbox/ipam/filtersets.py:656 +#: ipam/filtersets.py:656 msgid "Is assigned" msgstr "Назначено" -#: netbox/ipam/filtersets.py:668 +#: ipam/filtersets.py:668 msgid "Service (ID)" msgstr "Сервис (ID)" -#: netbox/ipam/filtersets.py:673 +#: ipam/filtersets.py:673 msgid "NAT inside IP address (ID)" msgstr "Внутренний NAT IP-адрес (ID)" -#: netbox/ipam/filtersets.py:1041 netbox/ipam/forms/bulk_import.py:322 +#: ipam/filtersets.py:1041 ipam/forms/bulk_import.py:322 msgid "Assigned interface" msgstr "Назначенный интерфейс" -#: netbox/ipam/filtersets.py:1046 +#: ipam/filtersets.py:1046 msgid "Assigned VM interface" msgstr "Назначенный интерфейс виртуальной машины" -#: netbox/ipam/filtersets.py:1136 +#: ipam/filtersets.py:1136 msgid "IP address (ID)" msgstr "IP-адрес (ID)" -#: netbox/ipam/filtersets.py:1142 netbox/ipam/models/ip.py:788 +#: ipam/filtersets.py:1142 ipam/models/ip.py:788 msgid "IP address" msgstr "IP-адрес" -#: netbox/ipam/filtersets.py:1167 +#: ipam/filtersets.py:1167 msgid "Primary IPv4 (ID)" msgstr "Основной IPv4 (ID)" -#: netbox/ipam/filtersets.py:1172 +#: ipam/filtersets.py:1172 msgid "Primary IPv6 (ID)" msgstr "Основной IPv6 (ID)" -#: netbox/ipam/formfields.py:14 +#: ipam/formfields.py:14 msgid "Enter a valid IPv4 or IPv6 address (without a mask)." msgstr "Введите действительный адрес IPv4 или IPv6 (без маски)." -#: netbox/ipam/formfields.py:32 +#: ipam/formfields.py:32 #, python-brace-format msgid "Invalid IPv4/IPv6 address format: {address}" msgstr "Неверный формат адреса IPv4/IPv6: {address}" -#: netbox/ipam/formfields.py:37 +#: ipam/formfields.py:37 msgid "This field requires an IP address without a mask." msgstr "В этом поле требуется IP-адрес без маски." -#: netbox/ipam/formfields.py:39 netbox/ipam/formfields.py:61 +#: ipam/formfields.py:39 ipam/formfields.py:61 msgid "Please specify a valid IPv4 or IPv6 address." msgstr "Укажите действительный адрес IPv4 или IPv6." -#: netbox/ipam/formfields.py:44 +#: ipam/formfields.py:44 msgid "Enter a valid IPv4 or IPv6 address (with CIDR mask)." msgstr "Введите действительный адрес IPv4 или IPv6 (с маской CIDR)." -#: netbox/ipam/formfields.py:56 +#: ipam/formfields.py:56 msgid "CIDR mask (e.g. /24) is required." msgstr "Требуется маска CIDR (например, /24)." -#: netbox/ipam/forms/bulk_create.py:13 +#: ipam/forms/bulk_create.py:13 msgid "Address pattern" msgstr "Шаблон адреса" -#: netbox/ipam/forms/bulk_edit.py:49 +#: ipam/forms/bulk_edit.py:50 msgid "Enforce unique space" msgstr "Обеспечить уникальное пространство" -#: netbox/ipam/forms/bulk_edit.py:87 +#: ipam/forms/bulk_edit.py:88 msgid "Is private" msgstr "Является приватным" -#: netbox/ipam/forms/bulk_edit.py:108 netbox/ipam/forms/bulk_edit.py:137 -#: netbox/ipam/forms/bulk_edit.py:162 netbox/ipam/forms/bulk_import.py:89 -#: netbox/ipam/forms/bulk_import.py:109 netbox/ipam/forms/bulk_import.py:129 -#: netbox/ipam/forms/filtersets.py:110 netbox/ipam/forms/filtersets.py:125 -#: netbox/ipam/forms/filtersets.py:148 netbox/ipam/forms/model_forms.py:96 -#: netbox/ipam/forms/model_forms.py:109 netbox/ipam/forms/model_forms.py:131 -#: netbox/ipam/forms/model_forms.py:149 netbox/ipam/models/asns.py:31 -#: netbox/ipam/models/asns.py:103 netbox/ipam/models/ip.py:71 -#: netbox/ipam/models/ip.py:90 netbox/ipam/tables/asn.py:20 -#: netbox/ipam/tables/asn.py:45 netbox/templates/ipam/aggregate.html:18 -#: netbox/templates/ipam/asn.html:27 netbox/templates/ipam/asnrange.html:19 -#: netbox/templates/ipam/rir.html:19 +#: ipam/forms/bulk_edit.py:109 ipam/forms/bulk_edit.py:138 +#: ipam/forms/bulk_edit.py:163 ipam/forms/bulk_import.py:89 +#: ipam/forms/bulk_import.py:109 ipam/forms/bulk_import.py:129 +#: ipam/forms/filtersets.py:110 ipam/forms/filtersets.py:125 +#: ipam/forms/filtersets.py:148 ipam/forms/model_forms.py:96 +#: ipam/forms/model_forms.py:109 ipam/forms/model_forms.py:131 +#: ipam/forms/model_forms.py:149 ipam/models/asns.py:31 +#: ipam/models/asns.py:103 ipam/models/ip.py:71 ipam/models/ip.py:90 +#: ipam/tables/asn.py:20 ipam/tables/asn.py:45 +#: templates/ipam/aggregate.html:18 templates/ipam/asn.html:27 +#: templates/ipam/asnrange.html:19 templates/ipam/rir.html:19 msgid "RIR" msgstr "RIR" -#: netbox/ipam/forms/bulk_edit.py:170 +#: ipam/forms/bulk_edit.py:171 msgid "Date added" msgstr "Дата добавления" -#: netbox/ipam/forms/bulk_edit.py:228 netbox/ipam/forms/model_forms.py:586 -#: netbox/ipam/forms/model_forms.py:633 netbox/ipam/tables/ip.py:251 -#: netbox/templates/ipam/vlan_edit.html:37 -#: netbox/templates/ipam/vlangroup.html:27 +#: ipam/forms/bulk_edit.py:229 ipam/forms/model_forms.py:586 +#: ipam/forms/model_forms.py:633 ipam/tables/ip.py:251 +#: templates/ipam/vlan_edit.html:37 templates/ipam/vlangroup.html:27 msgid "VLAN Group" msgstr "VLAN группа" -#: netbox/ipam/forms/bulk_edit.py:233 netbox/ipam/forms/bulk_import.py:185 -#: netbox/ipam/forms/filtersets.py:256 netbox/ipam/forms/model_forms.py:218 -#: netbox/ipam/models/vlans.py:234 netbox/ipam/tables/ip.py:255 -#: netbox/templates/ipam/prefix.html:60 netbox/templates/ipam/vlan.html:12 -#: netbox/templates/ipam/vlan/base.html:6 -#: netbox/templates/ipam/vlan_edit.html:10 -#: netbox/templates/wireless/wirelesslan.html:30 -#: netbox/vpn/forms/bulk_import.py:304 netbox/vpn/forms/filtersets.py:284 -#: netbox/vpn/forms/model_forms.py:433 netbox/vpn/forms/model_forms.py:452 -#: netbox/wireless/forms/bulk_edit.py:55 -#: netbox/wireless/forms/bulk_import.py:48 -#: netbox/wireless/forms/model_forms.py:48 netbox/wireless/models.py:102 +#: ipam/forms/bulk_edit.py:234 ipam/forms/bulk_import.py:185 +#: ipam/forms/filtersets.py:256 ipam/forms/model_forms.py:218 +#: ipam/models/vlans.py:234 ipam/tables/ip.py:255 +#: templates/ipam/prefix.html:60 templates/ipam/vlan.html:12 +#: templates/ipam/vlan/base.html:6 templates/ipam/vlan_edit.html:10 +#: templates/wireless/wirelesslan.html:30 vpn/forms/bulk_import.py:304 +#: vpn/forms/filtersets.py:284 vpn/forms/model_forms.py:433 +#: vpn/forms/model_forms.py:452 wireless/forms/bulk_edit.py:55 +#: wireless/forms/bulk_import.py:48 wireless/forms/model_forms.py:48 +#: wireless/models.py:102 msgid "VLAN" msgstr "VLAN" -#: netbox/ipam/forms/bulk_edit.py:244 +#: ipam/forms/bulk_edit.py:245 msgid "Prefix length" msgstr "Длина префикса" -#: netbox/ipam/forms/bulk_edit.py:267 netbox/ipam/forms/filtersets.py:241 -#: netbox/templates/ipam/prefix.html:85 +#: ipam/forms/bulk_edit.py:268 ipam/forms/filtersets.py:241 +#: templates/ipam/prefix.html:85 msgid "Is a pool" msgstr "Является пулом" -#: netbox/ipam/forms/bulk_edit.py:272 netbox/ipam/forms/bulk_edit.py:317 -#: netbox/ipam/forms/filtersets.py:248 netbox/ipam/forms/filtersets.py:293 -#: netbox/ipam/models/ip.py:272 netbox/ipam/models/ip.py:539 +#: ipam/forms/bulk_edit.py:273 ipam/forms/bulk_edit.py:318 +#: ipam/forms/filtersets.py:248 ipam/forms/filtersets.py:293 +#: ipam/models/ip.py:272 ipam/models/ip.py:539 msgid "Treat as fully utilized" msgstr "Считать полностью использованным" -#: netbox/ipam/forms/bulk_edit.py:286 netbox/ipam/forms/filtersets.py:171 +#: ipam/forms/bulk_edit.py:287 ipam/forms/filtersets.py:171 msgid "VLAN Assignment" msgstr "Назначение VLAN" -#: netbox/ipam/forms/bulk_edit.py:365 netbox/ipam/models/ip.py:772 +#: ipam/forms/bulk_edit.py:366 ipam/models/ip.py:772 msgid "DNS name" msgstr "DNS-имя" -#: netbox/ipam/forms/bulk_edit.py:386 netbox/ipam/forms/bulk_edit.py:579 -#: netbox/ipam/forms/bulk_import.py:394 netbox/ipam/forms/bulk_import.py:469 -#: netbox/ipam/forms/bulk_import.py:495 netbox/ipam/forms/filtersets.py:390 -#: netbox/ipam/forms/filtersets.py:530 netbox/templates/ipam/fhrpgroup.html:22 -#: netbox/templates/ipam/inc/panels/fhrp_groups.html:24 -#: netbox/templates/ipam/service.html:32 -#: netbox/templates/ipam/servicetemplate.html:19 +#: ipam/forms/bulk_edit.py:387 ipam/forms/bulk_edit.py:534 +#: ipam/forms/bulk_import.py:394 ipam/forms/bulk_import.py:469 +#: ipam/forms/bulk_import.py:495 ipam/forms/filtersets.py:390 +#: ipam/forms/filtersets.py:530 templates/ipam/fhrpgroup.html:22 +#: templates/ipam/inc/panels/fhrp_groups.html:24 +#: templates/ipam/service.html:32 templates/ipam/servicetemplate.html:19 msgid "Protocol" msgstr "Протокол" -#: netbox/ipam/forms/bulk_edit.py:393 netbox/ipam/forms/filtersets.py:397 -#: netbox/ipam/tables/fhrp.py:22 netbox/templates/ipam/fhrpgroup.html:26 +#: ipam/forms/bulk_edit.py:394 ipam/forms/filtersets.py:397 +#: ipam/tables/fhrp.py:22 templates/ipam/fhrpgroup.html:26 msgid "Group ID" msgstr "Идентификатор группы" -#: netbox/ipam/forms/bulk_edit.py:398 netbox/ipam/forms/filtersets.py:402 -#: netbox/wireless/forms/bulk_edit.py:68 -#: netbox/wireless/forms/bulk_edit.py:115 -#: netbox/wireless/forms/bulk_import.py:62 -#: netbox/wireless/forms/bulk_import.py:65 -#: netbox/wireless/forms/bulk_import.py:104 -#: netbox/wireless/forms/bulk_import.py:107 -#: netbox/wireless/forms/filtersets.py:54 -#: netbox/wireless/forms/filtersets.py:88 +#: ipam/forms/bulk_edit.py:399 ipam/forms/filtersets.py:402 +#: wireless/forms/bulk_edit.py:68 wireless/forms/bulk_edit.py:115 +#: wireless/forms/bulk_import.py:62 wireless/forms/bulk_import.py:65 +#: wireless/forms/bulk_import.py:104 wireless/forms/bulk_import.py:107 +#: wireless/forms/filtersets.py:54 wireless/forms/filtersets.py:88 msgid "Authentication type" msgstr "Тип аутентификации" -#: netbox/ipam/forms/bulk_edit.py:403 netbox/ipam/forms/filtersets.py:406 +#: ipam/forms/bulk_edit.py:404 ipam/forms/filtersets.py:406 msgid "Authentication key" msgstr "Ключ аутентификации" -#: netbox/ipam/forms/bulk_edit.py:420 netbox/ipam/forms/filtersets.py:383 -#: netbox/ipam/forms/model_forms.py:474 netbox/netbox/navigation/menu.py:386 -#: netbox/templates/ipam/fhrpgroup.html:49 -#: netbox/templates/wireless/inc/authentication_attrs.html:5 -#: netbox/wireless/forms/bulk_edit.py:91 -#: netbox/wireless/forms/bulk_edit.py:149 -#: netbox/wireless/forms/filtersets.py:36 -#: netbox/wireless/forms/filtersets.py:76 -#: netbox/wireless/forms/model_forms.py:55 -#: netbox/wireless/forms/model_forms.py:171 +#: ipam/forms/bulk_edit.py:421 ipam/forms/filtersets.py:383 +#: ipam/forms/model_forms.py:474 netbox/navigation/menu.py:386 +#: templates/ipam/fhrpgroup.html:49 +#: templates/wireless/inc/authentication_attrs.html:5 +#: wireless/forms/bulk_edit.py:91 wireless/forms/bulk_edit.py:149 +#: wireless/forms/filtersets.py:36 wireless/forms/filtersets.py:76 +#: wireless/forms/model_forms.py:55 wireless/forms/model_forms.py:171 msgid "Authentication" msgstr "Аутентификация" -#: netbox/ipam/forms/bulk_edit.py:432 netbox/ipam/forms/model_forms.py:575 +#: ipam/forms/bulk_edit.py:436 ipam/forms/model_forms.py:575 msgid "Scope type" msgstr "Тип прицела" -#: netbox/ipam/forms/bulk_edit.py:490 netbox/ipam/models/vlans.py:60 -msgid "VLAN ID ranges" -msgstr "Диапазоны идентификаторов VLAN" - -#: netbox/ipam/forms/bulk_edit.py:498 netbox/ipam/forms/model_forms.py:578 -#: netbox/ipam/forms/model_forms.py:588 netbox/ipam/tables/vlans.py:71 -#: netbox/templates/ipam/vlangroup.html:38 +#: ipam/forms/bulk_edit.py:439 ipam/forms/bulk_edit.py:453 +#: ipam/forms/model_forms.py:578 ipam/forms/model_forms.py:588 +#: ipam/tables/vlans.py:71 templates/ipam/vlangroup.html:38 msgid "Scope" msgstr "Область применения" -#: netbox/ipam/forms/bulk_edit.py:570 +#: ipam/forms/bulk_edit.py:446 ipam/models/vlans.py:60 +msgid "VLAN ID ranges" +msgstr "Диапазоны идентификаторов VLAN" + +#: ipam/forms/bulk_edit.py:525 msgid "Site & Group" msgstr "Сайт и группа" -#: netbox/ipam/forms/bulk_edit.py:584 netbox/ipam/forms/model_forms.py:659 -#: netbox/ipam/forms/model_forms.py:691 netbox/ipam/tables/services.py:19 -#: netbox/ipam/tables/services.py:49 netbox/templates/ipam/service.html:36 -#: netbox/templates/ipam/servicetemplate.html:23 +#: ipam/forms/bulk_edit.py:539 ipam/forms/model_forms.py:659 +#: ipam/forms/model_forms.py:691 ipam/tables/services.py:19 +#: ipam/tables/services.py:49 templates/ipam/service.html:36 +#: templates/ipam/servicetemplate.html:23 msgid "Ports" msgstr "Порты" -#: netbox/ipam/forms/bulk_import.py:48 +#: ipam/forms/bulk_import.py:48 msgid "Import route targets" msgstr "Импортируйте цели маршрута" -#: netbox/ipam/forms/bulk_import.py:54 +#: ipam/forms/bulk_import.py:54 msgid "Export route targets" msgstr "Экспортные цели маршрута" -#: netbox/ipam/forms/bulk_import.py:92 netbox/ipam/forms/bulk_import.py:112 -#: netbox/ipam/forms/bulk_import.py:132 +#: ipam/forms/bulk_import.py:92 ipam/forms/bulk_import.py:112 +#: ipam/forms/bulk_import.py:132 msgid "Assigned RIR" msgstr "Назначенный RIR" -#: netbox/ipam/forms/bulk_import.py:182 +#: ipam/forms/bulk_import.py:182 msgid "VLAN's group (if any)" msgstr "Группа VLAN (если есть)" -#: netbox/ipam/forms/bulk_import.py:308 +#: ipam/forms/bulk_import.py:308 msgid "Parent device of assigned interface (if any)" msgstr "Родительское устройство назначенного интерфейса (если есть)" -#: netbox/ipam/forms/bulk_import.py:311 netbox/ipam/forms/bulk_import.py:488 -#: netbox/ipam/forms/model_forms.py:685 -#: netbox/virtualization/filtersets.py:288 -#: netbox/virtualization/filtersets.py:327 -#: netbox/virtualization/forms/bulk_edit.py:200 -#: netbox/virtualization/forms/bulk_edit.py:326 -#: netbox/virtualization/forms/bulk_import.py:146 -#: netbox/virtualization/forms/bulk_import.py:207 -#: netbox/virtualization/forms/filtersets.py:212 -#: netbox/virtualization/forms/filtersets.py:248 -#: netbox/virtualization/forms/model_forms.py:288 -#: netbox/vpn/forms/bulk_import.py:93 netbox/vpn/forms/bulk_import.py:290 +#: ipam/forms/bulk_import.py:311 ipam/forms/bulk_import.py:488 +#: ipam/forms/model_forms.py:685 virtualization/filtersets.py:288 +#: virtualization/filtersets.py:327 virtualization/forms/bulk_edit.py:200 +#: virtualization/forms/bulk_edit.py:326 +#: virtualization/forms/bulk_import.py:146 +#: virtualization/forms/bulk_import.py:207 +#: virtualization/forms/filtersets.py:212 +#: virtualization/forms/filtersets.py:248 +#: virtualization/forms/model_forms.py:288 vpn/forms/bulk_import.py:93 +#: vpn/forms/bulk_import.py:290 msgid "Virtual machine" msgstr "Виртуальная машина" -#: netbox/ipam/forms/bulk_import.py:315 +#: ipam/forms/bulk_import.py:315 msgid "Parent VM of assigned interface (if any)" msgstr "Родительская виртуальная машина назначенного интерфейса (если есть)" -#: netbox/ipam/forms/bulk_import.py:325 +#: ipam/forms/bulk_import.py:325 msgid "Is primary" msgstr "Является основным" -#: netbox/ipam/forms/bulk_import.py:326 +#: ipam/forms/bulk_import.py:326 msgid "Make this the primary IP for the assigned device" msgstr "Сделайте этот IP-адрес основным для назначенного устройства" -#: netbox/ipam/forms/bulk_import.py:365 +#: ipam/forms/bulk_import.py:365 msgid "No device or virtual machine specified; cannot set as primary IP" msgstr "" "Не указано устройство или виртуальная машина; невозможно установить в " "качестве основного IP-адреса" -#: netbox/ipam/forms/bulk_import.py:369 +#: ipam/forms/bulk_import.py:369 msgid "No interface specified; cannot set as primary IP" msgstr "" "Интерфейс не указан; невозможно установить в качестве основного IP-адреса" -#: netbox/ipam/forms/bulk_import.py:398 +#: ipam/forms/bulk_import.py:398 msgid "Auth type" msgstr "Тип авторизации" -#: netbox/ipam/forms/bulk_import.py:413 +#: ipam/forms/bulk_import.py:413 msgid "Scope type (app & model)" msgstr "Тип прицела (приложение и модель)" -#: netbox/ipam/forms/bulk_import.py:440 +#: ipam/forms/bulk_import.py:440 msgid "Assigned VLAN group" msgstr "Назначенная VLAN группа" -#: netbox/ipam/forms/bulk_import.py:471 netbox/ipam/forms/bulk_import.py:497 +#: ipam/forms/bulk_import.py:471 ipam/forms/bulk_import.py:497 msgid "IP protocol" msgstr "протокол IP" -#: netbox/ipam/forms/bulk_import.py:485 +#: ipam/forms/bulk_import.py:485 msgid "Required if not assigned to a VM" msgstr "Требуется, если не назначено виртуальной машине" -#: netbox/ipam/forms/bulk_import.py:492 +#: ipam/forms/bulk_import.py:492 msgid "Required if not assigned to a device" msgstr "Требуется, если не назначено устройству" -#: netbox/ipam/forms/bulk_import.py:517 +#: ipam/forms/bulk_import.py:517 #, python-brace-format msgid "{ip} is not assigned to this device/VM." msgstr "{ip} не назначено этому устройству/виртуальной машине." -#: netbox/ipam/forms/filtersets.py:47 netbox/ipam/forms/model_forms.py:63 -#: netbox/netbox/navigation/menu.py:189 netbox/vpn/forms/model_forms.py:410 +#: ipam/forms/filtersets.py:47 ipam/forms/model_forms.py:63 +#: netbox/navigation/menu.py:189 vpn/forms/model_forms.py:410 msgid "Route Targets" msgstr "Цели маршрута" -#: netbox/ipam/forms/filtersets.py:53 netbox/ipam/forms/model_forms.py:50 -#: netbox/vpn/forms/filtersets.py:224 netbox/vpn/forms/model_forms.py:397 +#: ipam/forms/filtersets.py:53 ipam/forms/model_forms.py:50 +#: vpn/forms/filtersets.py:224 vpn/forms/model_forms.py:397 msgid "Import targets" msgstr "Цели импорта" -#: netbox/ipam/forms/filtersets.py:58 netbox/ipam/forms/model_forms.py:55 -#: netbox/vpn/forms/filtersets.py:229 netbox/vpn/forms/model_forms.py:402 +#: ipam/forms/filtersets.py:58 ipam/forms/model_forms.py:55 +#: vpn/forms/filtersets.py:229 vpn/forms/model_forms.py:402 msgid "Export targets" msgstr "Экспортные цели" -#: netbox/ipam/forms/filtersets.py:73 +#: ipam/forms/filtersets.py:73 msgid "Imported by VRF" msgstr "Импортировано компанией VRF" -#: netbox/ipam/forms/filtersets.py:78 +#: ipam/forms/filtersets.py:78 msgid "Exported by VRF" msgstr "Экспортируется компанией VRF" -#: netbox/ipam/forms/filtersets.py:87 netbox/ipam/tables/ip.py:89 -#: netbox/templates/ipam/rir.html:30 +#: ipam/forms/filtersets.py:87 ipam/tables/ip.py:89 templates/ipam/rir.html:30 msgid "Private" msgstr "Частное" -#: netbox/ipam/forms/filtersets.py:105 netbox/ipam/forms/filtersets.py:191 -#: netbox/ipam/forms/filtersets.py:272 netbox/ipam/forms/filtersets.py:326 +#: ipam/forms/filtersets.py:105 ipam/forms/filtersets.py:191 +#: ipam/forms/filtersets.py:272 ipam/forms/filtersets.py:326 msgid "Address family" msgstr "Семейство адресов" -#: netbox/ipam/forms/filtersets.py:119 netbox/templates/ipam/asnrange.html:25 +#: ipam/forms/filtersets.py:119 templates/ipam/asnrange.html:25 msgid "Range" msgstr "Диапозон" -#: netbox/ipam/forms/filtersets.py:128 +#: ipam/forms/filtersets.py:128 msgid "Start" msgstr "Начало" -#: netbox/ipam/forms/filtersets.py:132 +#: ipam/forms/filtersets.py:132 msgid "End" msgstr "Конец" -#: netbox/ipam/forms/filtersets.py:186 +#: ipam/forms/filtersets.py:186 msgid "Search within" msgstr "Поиск внутри" -#: netbox/ipam/forms/filtersets.py:207 netbox/ipam/forms/filtersets.py:342 +#: ipam/forms/filtersets.py:207 ipam/forms/filtersets.py:342 msgid "Present in VRF" msgstr "Присутствует в VRF" -#: netbox/ipam/forms/filtersets.py:311 +#: ipam/forms/filtersets.py:311 msgid "Device/VM" msgstr "Устройство/виртуальная машина" -#: netbox/ipam/forms/filtersets.py:321 +#: ipam/forms/filtersets.py:321 msgid "Parent Prefix" msgstr "Родительский префикс" -#: netbox/ipam/forms/filtersets.py:347 +#: ipam/forms/filtersets.py:347 msgid "Assigned Device" msgstr "Назначенное устройство" -#: netbox/ipam/forms/filtersets.py:352 +#: ipam/forms/filtersets.py:352 msgid "Assigned VM" msgstr "Назначенная виртуальная машина" -#: netbox/ipam/forms/filtersets.py:366 +#: ipam/forms/filtersets.py:366 msgid "Assigned to an interface" msgstr "Назначено интерфейсу" -#: netbox/ipam/forms/filtersets.py:373 netbox/templates/ipam/ipaddress.html:51 +#: ipam/forms/filtersets.py:373 templates/ipam/ipaddress.html:51 msgid "DNS Name" msgstr "DNS-имя" -#: netbox/ipam/forms/filtersets.py:416 netbox/ipam/models/vlans.py:235 -#: netbox/ipam/tables/ip.py:176 netbox/ipam/tables/vlans.py:82 -#: netbox/ipam/views.py:971 netbox/netbox/navigation/menu.py:193 -#: netbox/netbox/navigation/menu.py:195 +#: ipam/forms/filtersets.py:416 ipam/models/vlans.py:235 ipam/tables/ip.py:176 +#: ipam/tables/vlans.py:82 ipam/views.py:971 netbox/navigation/menu.py:193 +#: netbox/navigation/menu.py:195 msgid "VLANs" msgstr "VLAN" -#: netbox/ipam/forms/filtersets.py:457 +#: ipam/forms/filtersets.py:457 msgid "Contains VLAN ID" msgstr "Содержит идентификатор VLAN" -#: netbox/ipam/forms/filtersets.py:513 netbox/ipam/models/vlans.py:176 -#: netbox/templates/ipam/vlan.html:31 +#: ipam/forms/filtersets.py:513 ipam/models/vlans.py:176 +#: templates/ipam/vlan.html:31 msgid "VLAN ID" msgstr "VLAN ID" -#: netbox/ipam/forms/filtersets.py:556 netbox/ipam/forms/model_forms.py:320 -#: netbox/ipam/forms/model_forms.py:713 netbox/ipam/forms/model_forms.py:739 -#: netbox/ipam/tables/vlans.py:195 -#: netbox/templates/virtualization/virtualdisk.html:21 -#: netbox/templates/virtualization/virtualmachine.html:12 -#: netbox/templates/virtualization/vminterface.html:21 -#: netbox/templates/vpn/tunneltermination.html:25 -#: netbox/virtualization/forms/filtersets.py:197 -#: netbox/virtualization/forms/filtersets.py:242 -#: netbox/virtualization/forms/model_forms.py:220 -#: netbox/virtualization/tables/virtualmachines.py:135 -#: netbox/virtualization/tables/virtualmachines.py:190 -#: netbox/vpn/choices.py:45 netbox/vpn/forms/filtersets.py:293 -#: netbox/vpn/forms/model_forms.py:160 netbox/vpn/forms/model_forms.py:171 -#: netbox/vpn/forms/model_forms.py:273 netbox/vpn/forms/model_forms.py:454 +#: ipam/forms/filtersets.py:556 ipam/forms/model_forms.py:320 +#: ipam/forms/model_forms.py:713 ipam/forms/model_forms.py:739 +#: ipam/tables/vlans.py:195 templates/virtualization/virtualdisk.html:21 +#: templates/virtualization/virtualmachine.html:12 +#: templates/virtualization/vminterface.html:21 +#: templates/vpn/tunneltermination.html:25 +#: virtualization/forms/filtersets.py:197 +#: virtualization/forms/filtersets.py:242 +#: virtualization/forms/model_forms.py:220 +#: virtualization/tables/virtualmachines.py:135 +#: virtualization/tables/virtualmachines.py:190 vpn/choices.py:45 +#: vpn/forms/filtersets.py:293 vpn/forms/model_forms.py:160 +#: vpn/forms/model_forms.py:171 vpn/forms/model_forms.py:273 +#: vpn/forms/model_forms.py:454 msgid "Virtual Machine" msgstr "Виртуальная машина" -#: netbox/ipam/forms/model_forms.py:80 -#: netbox/templates/ipam/routetarget.html:10 +#: ipam/forms/model_forms.py:80 templates/ipam/routetarget.html:10 msgid "Route Target" msgstr "Цель маршрута" -#: netbox/ipam/forms/model_forms.py:114 netbox/ipam/tables/ip.py:117 -#: netbox/templates/ipam/aggregate.html:11 -#: netbox/templates/ipam/prefix.html:38 +#: ipam/forms/model_forms.py:114 ipam/tables/ip.py:117 +#: templates/ipam/aggregate.html:11 templates/ipam/prefix.html:38 msgid "Aggregate" msgstr "агрегат" -#: netbox/ipam/forms/model_forms.py:135 netbox/templates/ipam/asnrange.html:12 +#: ipam/forms/model_forms.py:135 templates/ipam/asnrange.html:12 msgid "ASN Range" msgstr "Диапазон ASN" -#: netbox/ipam/forms/model_forms.py:231 +#: ipam/forms/model_forms.py:231 msgid "Site/VLAN Assignment" msgstr "Назначение сайта/VLAN" -#: netbox/ipam/forms/model_forms.py:259 netbox/templates/ipam/iprange.html:10 +#: ipam/forms/model_forms.py:259 templates/ipam/iprange.html:10 msgid "IP Range" msgstr "Диапазон IP-адресов" -#: netbox/ipam/forms/model_forms.py:295 netbox/ipam/forms/model_forms.py:321 -#: netbox/ipam/forms/model_forms.py:473 -#: netbox/templates/ipam/fhrpgroup.html:19 +#: ipam/forms/model_forms.py:295 ipam/forms/model_forms.py:321 +#: ipam/forms/model_forms.py:473 templates/ipam/fhrpgroup.html:19 msgid "FHRP Group" msgstr "Группа компаний FHRP" -#: netbox/ipam/forms/model_forms.py:310 +#: ipam/forms/model_forms.py:310 msgid "Make this the primary IP for the device/VM" msgstr "Сделайте этот IP-адрес основным для устройства/виртуальной машины" -#: netbox/ipam/forms/model_forms.py:325 +#: ipam/forms/model_forms.py:325 msgid "NAT IP (Inside)" msgstr "IP-адрес NAT (внутренний)" -#: netbox/ipam/forms/model_forms.py:384 +#: ipam/forms/model_forms.py:384 msgid "An IP address can only be assigned to a single object." msgstr "IP-адрес можно присвоить только одному объекту." -#: netbox/ipam/forms/model_forms.py:390 netbox/ipam/models/ip.py:897 +#: ipam/forms/model_forms.py:390 ipam/models/ip.py:897 msgid "" "Cannot reassign IP address while it is designated as the primary IP for the " "parent object" @@ -9841,31 +9246,30 @@ msgstr "" "Невозможно переназначить IP-адрес, если он назначен основным IP-адресом " "родительского объекта" -#: netbox/ipam/forms/model_forms.py:400 +#: ipam/forms/model_forms.py:400 msgid "" "Only IP addresses assigned to an interface can be designated as primary IPs." msgstr "" "В качестве основных IP-адресов можно назначить только IP-адреса, назначенные" " интерфейсу." -#: netbox/ipam/forms/model_forms.py:475 +#: ipam/forms/model_forms.py:475 msgid "Virtual IP Address" msgstr "Виртуальный IP-адрес" -#: netbox/ipam/forms/model_forms.py:560 +#: ipam/forms/model_forms.py:560 msgid "Assignment already exists" msgstr "Задание уже существует" -#: netbox/ipam/forms/model_forms.py:569 -#: netbox/templates/ipam/vlangroup.html:42 +#: ipam/forms/model_forms.py:569 templates/ipam/vlangroup.html:42 msgid "VLAN IDs" msgstr "Идентификаторы VLAN" -#: netbox/ipam/forms/model_forms.py:587 +#: ipam/forms/model_forms.py:587 msgid "Child VLANs" msgstr "Дочерние VLAN" -#: netbox/ipam/forms/model_forms.py:664 netbox/ipam/forms/model_forms.py:696 +#: ipam/forms/model_forms.py:664 ipam/forms/model_forms.py:696 msgid "" "Comma-separated list of one or more port numbers. A range may be specified " "using a hyphen." @@ -9873,134 +9277,133 @@ msgstr "" "Список одного или нескольких номеров портов, разделенных запятыми. Диапазон " "можно указать с помощью дефиса." -#: netbox/ipam/forms/model_forms.py:669 -#: netbox/templates/ipam/servicetemplate.html:12 +#: ipam/forms/model_forms.py:669 templates/ipam/servicetemplate.html:12 msgid "Service Template" msgstr "Шаблон Службы" -#: netbox/ipam/forms/model_forms.py:716 +#: ipam/forms/model_forms.py:716 msgid "Port(s)" msgstr "Порт(ы)" -#: netbox/ipam/forms/model_forms.py:717 netbox/ipam/forms/model_forms.py:745 -#: netbox/templates/ipam/service.html:21 +#: ipam/forms/model_forms.py:717 ipam/forms/model_forms.py:745 +#: templates/ipam/service.html:21 msgid "Service" msgstr "Служба" -#: netbox/ipam/forms/model_forms.py:730 +#: ipam/forms/model_forms.py:730 msgid "Service template" msgstr "Шаблон службы" -#: netbox/ipam/forms/model_forms.py:742 +#: ipam/forms/model_forms.py:742 msgid "From Template" msgstr "Из шаблона" -#: netbox/ipam/forms/model_forms.py:743 +#: ipam/forms/model_forms.py:743 msgid "Custom" msgstr "Настраиваемый" -#: netbox/ipam/forms/model_forms.py:773 +#: ipam/forms/model_forms.py:773 msgid "" "Must specify name, protocol, and port(s) if not using a service template." msgstr "" "Если шаблон сервиса не используется, необходимо указать имя, протокол и порт" " (порты)." -#: netbox/ipam/models/asns.py:34 +#: ipam/models/asns.py:34 msgid "start" msgstr "старт" -#: netbox/ipam/models/asns.py:51 +#: ipam/models/asns.py:51 msgid "ASN range" msgstr "Диапазон ASN" -#: netbox/ipam/models/asns.py:52 +#: ipam/models/asns.py:52 msgid "ASN ranges" msgstr "Диапазоны ASN" -#: netbox/ipam/models/asns.py:72 +#: ipam/models/asns.py:72 #, python-brace-format msgid "Starting ASN ({start}) must be lower than ending ASN ({end})." msgstr "Запуск ASN ({start}) должно быть меньше, чем конечный ASN ({end})." -#: netbox/ipam/models/asns.py:104 +#: ipam/models/asns.py:104 msgid "Regional Internet Registry responsible for this AS number space" msgstr "" "Региональный интернет-реестр, отвечающий за это номерное пространство AS" -#: netbox/ipam/models/asns.py:109 +#: ipam/models/asns.py:109 msgid "16- or 32-bit autonomous system number" msgstr "16- или 32-разрядный номер автономной системы" -#: netbox/ipam/models/fhrp.py:22 +#: ipam/models/fhrp.py:22 msgid "group ID" msgstr "идентификатор группы" -#: netbox/ipam/models/fhrp.py:30 netbox/ipam/models/services.py:22 +#: ipam/models/fhrp.py:30 ipam/models/services.py:22 msgid "protocol" msgstr "протокол" -#: netbox/ipam/models/fhrp.py:38 netbox/wireless/models.py:28 +#: ipam/models/fhrp.py:38 wireless/models.py:28 msgid "authentication type" msgstr "тип аутентификации" -#: netbox/ipam/models/fhrp.py:43 +#: ipam/models/fhrp.py:43 msgid "authentication key" msgstr "ключ аутентификации" -#: netbox/ipam/models/fhrp.py:56 +#: ipam/models/fhrp.py:56 msgid "FHRP group" msgstr "Группа FHRP" -#: netbox/ipam/models/fhrp.py:57 +#: ipam/models/fhrp.py:57 msgid "FHRP groups" msgstr "Группы FHRP" -#: netbox/ipam/models/fhrp.py:113 +#: ipam/models/fhrp.py:113 msgid "FHRP group assignment" msgstr "Групповое назначение FHRP" -#: netbox/ipam/models/fhrp.py:114 +#: ipam/models/fhrp.py:114 msgid "FHRP group assignments" msgstr "Групповые задания FHRP" -#: netbox/ipam/models/ip.py:65 +#: ipam/models/ip.py:65 msgid "private" msgstr "частного" -#: netbox/ipam/models/ip.py:66 +#: ipam/models/ip.py:66 msgid "IP space managed by this RIR is considered private" msgstr "IP-пространство, управляемое этим RIR, считается частным" -#: netbox/ipam/models/ip.py:72 netbox/netbox/navigation/menu.py:182 +#: ipam/models/ip.py:72 netbox/navigation/menu.py:182 msgid "RIRs" msgstr "RIR's" -#: netbox/ipam/models/ip.py:84 +#: ipam/models/ip.py:84 msgid "IPv4 or IPv6 network" msgstr "Сеть IPv4 или IPv6" -#: netbox/ipam/models/ip.py:91 +#: ipam/models/ip.py:91 msgid "Regional Internet Registry responsible for this IP space" msgstr "Региональный реестр Интернета, отвечающий за это IP-пространство" -#: netbox/ipam/models/ip.py:101 +#: ipam/models/ip.py:101 msgid "date added" msgstr "дата добавления" -#: netbox/ipam/models/ip.py:115 +#: ipam/models/ip.py:115 msgid "aggregate" msgstr "совокупный" -#: netbox/ipam/models/ip.py:116 +#: ipam/models/ip.py:116 msgid "aggregates" msgstr "сводные показатели" -#: netbox/ipam/models/ip.py:132 +#: ipam/models/ip.py:132 msgid "Cannot create aggregate with /0 mask." msgstr "Невозможно создать агрегат с маской /0." -#: netbox/ipam/models/ip.py:144 +#: ipam/models/ip.py:144 #, python-brace-format msgid "" "Aggregates cannot overlap. {prefix} is already covered by an existing " @@ -10009,7 +9412,7 @@ msgstr "" "Агрегаты не могут перекрываться. {prefix} уже покрывается существующим " "агрегатом ({aggregate})." -#: netbox/ipam/models/ip.py:158 +#: ipam/models/ip.py:158 #, python-brace-format msgid "" "Prefixes cannot overlap aggregates. {prefix} covers an existing aggregate " @@ -10018,226 +9421,224 @@ msgstr "" "Префиксы не могут перекрывать агрегаты. {prefix} охватывает существующий " "агрегат ({aggregate})." -#: netbox/ipam/models/ip.py:200 netbox/ipam/models/ip.py:737 -#: netbox/vpn/models/tunnels.py:114 +#: ipam/models/ip.py:200 ipam/models/ip.py:737 vpn/models/tunnels.py:114 msgid "role" msgstr "роль" -#: netbox/ipam/models/ip.py:201 +#: ipam/models/ip.py:201 msgid "roles" msgstr "ролей" -#: netbox/ipam/models/ip.py:217 netbox/ipam/models/ip.py:293 +#: ipam/models/ip.py:217 ipam/models/ip.py:293 msgid "prefix" msgstr "префикс" -#: netbox/ipam/models/ip.py:218 +#: ipam/models/ip.py:218 msgid "IPv4 or IPv6 network with mask" msgstr "Сеть IPv4 или IPv6 с маской" -#: netbox/ipam/models/ip.py:254 +#: ipam/models/ip.py:254 msgid "Operational status of this prefix" msgstr "Рабочий статус этого префикса" -#: netbox/ipam/models/ip.py:262 +#: ipam/models/ip.py:262 msgid "The primary function of this prefix" msgstr "Основная функция этого префикса" -#: netbox/ipam/models/ip.py:265 +#: ipam/models/ip.py:265 msgid "is a pool" msgstr "это пул" -#: netbox/ipam/models/ip.py:267 +#: ipam/models/ip.py:267 msgid "All IP addresses within this prefix are considered usable" msgstr "Все IP-адреса в этом префиксе считаются пригодными для использования" -#: netbox/ipam/models/ip.py:270 netbox/ipam/models/ip.py:537 +#: ipam/models/ip.py:270 ipam/models/ip.py:537 msgid "mark utilized" msgstr "использованная марка" -#: netbox/ipam/models/ip.py:294 +#: ipam/models/ip.py:294 msgid "prefixes" msgstr "префиксы" -#: netbox/ipam/models/ip.py:317 +#: ipam/models/ip.py:317 msgid "Cannot create prefix with /0 mask." msgstr "Невозможно создать префикс с маской /0." -#: netbox/ipam/models/ip.py:324 netbox/ipam/models/ip.py:874 +#: ipam/models/ip.py:324 ipam/models/ip.py:874 #, python-brace-format msgid "VRF {vrf}" msgstr "VRF {vrf}" -#: netbox/ipam/models/ip.py:324 netbox/ipam/models/ip.py:874 +#: ipam/models/ip.py:324 ipam/models/ip.py:874 msgid "global table" msgstr "глобальная таблица" -#: netbox/ipam/models/ip.py:326 +#: ipam/models/ip.py:326 #, python-brace-format msgid "Duplicate prefix found in {table}: {prefix}" msgstr "Дубликат префикса обнаружен в {table}: {prefix}" -#: netbox/ipam/models/ip.py:495 +#: ipam/models/ip.py:495 msgid "start address" msgstr "начальный адрес" -#: netbox/ipam/models/ip.py:496 netbox/ipam/models/ip.py:500 -#: netbox/ipam/models/ip.py:712 +#: ipam/models/ip.py:496 ipam/models/ip.py:500 ipam/models/ip.py:712 msgid "IPv4 or IPv6 address (with mask)" msgstr "Адрес IPv4 или IPv6 (с маской)" -#: netbox/ipam/models/ip.py:499 +#: ipam/models/ip.py:499 msgid "end address" msgstr "конечный адрес" -#: netbox/ipam/models/ip.py:526 +#: ipam/models/ip.py:526 msgid "Operational status of this range" msgstr "Эксплуатационное состояние этой линейки" -#: netbox/ipam/models/ip.py:534 +#: ipam/models/ip.py:534 msgid "The primary function of this range" msgstr "Основная функция этого диапазона" -#: netbox/ipam/models/ip.py:548 +#: ipam/models/ip.py:548 msgid "IP range" msgstr "Диапазон IP-адресов" -#: netbox/ipam/models/ip.py:549 +#: ipam/models/ip.py:549 msgid "IP ranges" msgstr "Диапазоны IP-адресов" -#: netbox/ipam/models/ip.py:565 +#: ipam/models/ip.py:565 msgid "Starting and ending IP address versions must match" msgstr "Начальная и конечная версии IP-адресов должны совпадать" -#: netbox/ipam/models/ip.py:571 +#: ipam/models/ip.py:571 msgid "Starting and ending IP address masks must match" msgstr "Маски начального и конечного IP-адресов должны совпадать" -#: netbox/ipam/models/ip.py:578 +#: ipam/models/ip.py:578 #, python-brace-format msgid "" "Ending address must be greater than the starting address ({start_address})" msgstr "Конечный адрес должен быть больше начального адреса ({start_address})" -#: netbox/ipam/models/ip.py:590 +#: ipam/models/ip.py:590 #, python-brace-format msgid "Defined addresses overlap with range {overlapping_range} in VRF {vrf}" msgstr "" "Определенные адреса пересекаются с диапазоном {overlapping_range} в формате " "VRF {vrf}" -#: netbox/ipam/models/ip.py:599 +#: ipam/models/ip.py:599 #, python-brace-format msgid "Defined range exceeds maximum supported size ({max_size})" msgstr "" "Заданный диапазон превышает максимальный поддерживаемый размер ({max_size})" -#: netbox/ipam/models/ip.py:711 netbox/tenancy/models/contacts.py:82 +#: ipam/models/ip.py:711 tenancy/models/contacts.py:82 msgid "address" msgstr "адрес" -#: netbox/ipam/models/ip.py:734 +#: ipam/models/ip.py:734 msgid "The operational status of this IP" msgstr "Рабочий статус этого IP-адреса" -#: netbox/ipam/models/ip.py:741 +#: ipam/models/ip.py:741 msgid "The functional role of this IP" msgstr "Функциональная роль этого IP" -#: netbox/ipam/models/ip.py:765 netbox/templates/ipam/ipaddress.html:72 +#: ipam/models/ip.py:765 templates/ipam/ipaddress.html:72 msgid "NAT (inside)" msgstr "NAT (внутри)" -#: netbox/ipam/models/ip.py:766 +#: ipam/models/ip.py:766 msgid "The IP for which this address is the \"outside\" IP" msgstr "IP-адрес, для которого этот адрес является «внешним»" -#: netbox/ipam/models/ip.py:773 +#: ipam/models/ip.py:773 msgid "Hostname or FQDN (not case-sensitive)" msgstr "Имя хоста или полное доменное имя (регистр не учитывается)" -#: netbox/ipam/models/ip.py:789 netbox/ipam/models/services.py:94 +#: ipam/models/ip.py:789 ipam/models/services.py:94 msgid "IP addresses" msgstr "IP-адреса" -#: netbox/ipam/models/ip.py:845 +#: ipam/models/ip.py:845 msgid "Cannot create IP address with /0 mask." msgstr "Невозможно создать IP-адрес с маской /0." -#: netbox/ipam/models/ip.py:851 +#: ipam/models/ip.py:851 #, python-brace-format msgid "{ip} is a network ID, which may not be assigned to an interface." msgstr "" "{ip} это идентификатор сети, который не может быть присвоен интерфейсу." -#: netbox/ipam/models/ip.py:862 +#: ipam/models/ip.py:862 #, python-brace-format msgid "" "{ip} is a broadcast address, which may not be assigned to an interface." msgstr "" "{ip} это широковещательный адрес, который может не быть присвоен интерфейсу." -#: netbox/ipam/models/ip.py:876 +#: ipam/models/ip.py:876 #, python-brace-format msgid "Duplicate IP address found in {table}: {ipaddress}" msgstr "Дубликат IP-адреса обнаружен в {table}: {ipaddress}" -#: netbox/ipam/models/ip.py:903 +#: ipam/models/ip.py:903 msgid "Only IPv6 addresses can be assigned SLAAC status" msgstr "Только адресам IPv6 можно присвоить статус SLAAC" -#: netbox/ipam/models/services.py:33 +#: ipam/models/services.py:33 msgid "port numbers" msgstr "номера портов" -#: netbox/ipam/models/services.py:59 +#: ipam/models/services.py:59 msgid "service template" msgstr "шаблон службы" -#: netbox/ipam/models/services.py:60 +#: ipam/models/services.py:60 msgid "service templates" msgstr "шаблоны служб" -#: netbox/ipam/models/services.py:95 +#: ipam/models/services.py:95 msgid "The specific IP addresses (if any) to which this service is bound" msgstr "Конкретные IP-адреса (если есть), к которым привязана эта служба" -#: netbox/ipam/models/services.py:102 +#: ipam/models/services.py:102 msgid "service" msgstr "служба" -#: netbox/ipam/models/services.py:103 +#: ipam/models/services.py:103 msgid "services" msgstr "службы" -#: netbox/ipam/models/services.py:117 +#: ipam/models/services.py:117 msgid "" "A service cannot be associated with both a device and a virtual machine." msgstr "Службу нельзя связать как с устройством, так и с виртуальной машиной." -#: netbox/ipam/models/services.py:119 +#: ipam/models/services.py:119 msgid "" "A service must be associated with either a device or a virtual machine." msgstr "Служба должна быть связана с устройством или виртуальной машиной." -#: netbox/ipam/models/vlans.py:85 +#: ipam/models/vlans.py:85 msgid "VLAN groups" msgstr "Группы VLAN" -#: netbox/ipam/models/vlans.py:95 +#: ipam/models/vlans.py:95 msgid "Cannot set scope_type without scope_id." msgstr "Невозможно установить scope_type без scope_id." -#: netbox/ipam/models/vlans.py:97 +#: ipam/models/vlans.py:97 msgid "Cannot set scope_id without scope_type." msgstr "Невозможно установить scope_id без scope_type." -#: netbox/ipam/models/vlans.py:101 +#: ipam/models/vlans.py:101 msgid "Ranges cannot overlap." msgstr "Диапазоны не могут перекрываться." -#: netbox/ipam/models/vlans.py:106 +#: ipam/models/vlans.py:106 #, python-brace-format msgid "" "Maximum child VID must be greater than or equal to minimum child VID " @@ -10246,27 +9647,27 @@ msgstr "" "Максимальное количество детских VID должно быть больше или равно " "минимальному детскому VID ({value})" -#: netbox/ipam/models/vlans.py:165 +#: ipam/models/vlans.py:165 msgid "The specific site to which this VLAN is assigned (if any)" msgstr "Конкретный сайт, которому назначена эта VLAN (если есть)" -#: netbox/ipam/models/vlans.py:173 +#: ipam/models/vlans.py:173 msgid "VLAN group (optional)" msgstr "Группа VLAN (опционально)" -#: netbox/ipam/models/vlans.py:181 +#: ipam/models/vlans.py:181 msgid "Numeric VLAN ID (1-4094)" msgstr "Цифровой VLAN ID (1-4094)" -#: netbox/ipam/models/vlans.py:199 +#: ipam/models/vlans.py:199 msgid "Operational status of this VLAN" msgstr "Рабочее состояние этой VLAN" -#: netbox/ipam/models/vlans.py:207 +#: ipam/models/vlans.py:207 msgid "The primary function of this VLAN" msgstr "Основная функция этой VLAN" -#: netbox/ipam/models/vlans.py:250 +#: ipam/models/vlans.py:250 #, python-brace-format msgid "" "VLAN is assigned to group {group} (scope: {scope}); cannot also assign to " @@ -10275,169 +9676,167 @@ msgstr "" "VLAN назначена группе {group} (область применения: {scope}); также не может " "быть присвоено сайту {site}." -#: netbox/ipam/models/vlans.py:259 +#: ipam/models/vlans.py:259 #, python-brace-format msgid "VID must be in ranges {ranges} for VLANs in group {group}" msgstr "" "VID должен быть в диапазонах {ranges} для виртуальных локальных сетей в " "группе {group}" -#: netbox/ipam/models/vrfs.py:30 +#: ipam/models/vrfs.py:30 msgid "route distinguisher" msgstr "разграничитель маршрута" -#: netbox/ipam/models/vrfs.py:31 +#: ipam/models/vrfs.py:31 msgid "Unique route distinguisher (as defined in RFC 4364)" msgstr "Уникальный отличитель маршрута (как определено в RFC 4364)" -#: netbox/ipam/models/vrfs.py:42 +#: ipam/models/vrfs.py:42 msgid "enforce unique space" msgstr "создайте уникальное пространство" -#: netbox/ipam/models/vrfs.py:43 +#: ipam/models/vrfs.py:43 msgid "Prevent duplicate prefixes/IP addresses within this VRF" msgstr "Предотвращение дублирования префиксов/IP-адресов в этом VRF" -#: netbox/ipam/models/vrfs.py:63 netbox/netbox/navigation/menu.py:186 -#: netbox/netbox/navigation/menu.py:188 +#: ipam/models/vrfs.py:63 netbox/navigation/menu.py:186 +#: netbox/navigation/menu.py:188 msgid "VRFs" msgstr "VRF" -#: netbox/ipam/models/vrfs.py:82 +#: ipam/models/vrfs.py:82 msgid "Route target value (formatted in accordance with RFC 4360)" msgstr "Целевое значение маршрута (отформатировано в соответствии с RFC 4360)" -#: netbox/ipam/models/vrfs.py:94 +#: ipam/models/vrfs.py:94 msgid "route target" msgstr "цель маршрута" -#: netbox/ipam/models/vrfs.py:95 +#: ipam/models/vrfs.py:95 msgid "route targets" msgstr "цели маршрута" -#: netbox/ipam/tables/asn.py:52 +#: ipam/tables/asn.py:52 msgid "ASDOT" msgstr "АСДОТ" -#: netbox/ipam/tables/asn.py:57 +#: ipam/tables/asn.py:57 msgid "Site Count" msgstr "Количество сайтов" -#: netbox/ipam/tables/asn.py:62 +#: ipam/tables/asn.py:62 msgid "Provider Count" msgstr "Количество провайдеров" -#: netbox/ipam/tables/ip.py:95 netbox/netbox/navigation/menu.py:179 -#: netbox/netbox/navigation/menu.py:181 +#: ipam/tables/ip.py:95 netbox/navigation/menu.py:179 +#: netbox/navigation/menu.py:181 msgid "Aggregates" msgstr "Агрегаты" -#: netbox/ipam/tables/ip.py:125 +#: ipam/tables/ip.py:125 msgid "Added" msgstr "Добавлено" -#: netbox/ipam/tables/ip.py:128 netbox/ipam/tables/ip.py:166 -#: netbox/ipam/tables/vlans.py:142 netbox/ipam/views.py:346 -#: netbox/netbox/navigation/menu.py:165 netbox/netbox/navigation/menu.py:167 -#: netbox/templates/ipam/vlan.html:84 +#: ipam/tables/ip.py:128 ipam/tables/ip.py:166 ipam/tables/vlans.py:142 +#: ipam/views.py:346 netbox/navigation/menu.py:165 +#: netbox/navigation/menu.py:167 templates/ipam/vlan.html:84 msgid "Prefixes" msgstr "Префиксы" -#: netbox/ipam/tables/ip.py:131 netbox/ipam/tables/ip.py:270 -#: netbox/ipam/tables/ip.py:324 netbox/ipam/tables/vlans.py:86 -#: netbox/templates/dcim/device.html:260 -#: netbox/templates/ipam/aggregate.html:24 -#: netbox/templates/ipam/iprange.html:29 netbox/templates/ipam/prefix.html:106 +#: ipam/tables/ip.py:131 ipam/tables/ip.py:270 ipam/tables/ip.py:324 +#: ipam/tables/vlans.py:86 templates/dcim/device.html:260 +#: templates/ipam/aggregate.html:24 templates/ipam/iprange.html:29 +#: templates/ipam/prefix.html:106 msgid "Utilization" msgstr "Использование" -#: netbox/ipam/tables/ip.py:171 netbox/netbox/navigation/menu.py:161 +#: ipam/tables/ip.py:171 netbox/navigation/menu.py:161 msgid "IP Ranges" msgstr "Диапазоны IP-адресов" -#: netbox/ipam/tables/ip.py:221 +#: ipam/tables/ip.py:221 msgid "Prefix (Flat)" msgstr "Префикс (плоский)" -#: netbox/ipam/tables/ip.py:225 +#: ipam/tables/ip.py:225 msgid "Depth" msgstr "Глубина" -#: netbox/ipam/tables/ip.py:262 +#: ipam/tables/ip.py:262 msgid "Pool" msgstr "Пул" -#: netbox/ipam/tables/ip.py:266 netbox/ipam/tables/ip.py:320 +#: ipam/tables/ip.py:266 ipam/tables/ip.py:320 msgid "Marked Utilized" msgstr "Отмечено как использованный" -#: netbox/ipam/tables/ip.py:304 +#: ipam/tables/ip.py:304 msgid "Start address" msgstr "Начальный адрес" -#: netbox/ipam/tables/ip.py:383 +#: ipam/tables/ip.py:383 msgid "NAT (Inside)" msgstr "NAT (внутри)" -#: netbox/ipam/tables/ip.py:388 +#: ipam/tables/ip.py:388 msgid "NAT (Outside)" msgstr "NAT (за пределами сети)" -#: netbox/ipam/tables/ip.py:393 +#: ipam/tables/ip.py:393 msgid "Assigned" msgstr "Назначено" -#: netbox/ipam/tables/ip.py:429 netbox/templates/vpn/l2vpntermination.html:16 -#: netbox/vpn/forms/filtersets.py:240 +#: ipam/tables/ip.py:429 templates/vpn/l2vpntermination.html:16 +#: vpn/forms/filtersets.py:240 msgid "Assigned Object" msgstr "Назначенный объект" -#: netbox/ipam/tables/vlans.py:68 +#: ipam/tables/vlans.py:68 msgid "Scope Type" msgstr "Тип прицела" -#: netbox/ipam/tables/vlans.py:76 +#: ipam/tables/vlans.py:76 msgid "VID Ranges" msgstr "Диапазоны VID" -#: netbox/ipam/tables/vlans.py:111 netbox/ipam/tables/vlans.py:214 -#: netbox/templates/dcim/inc/interface_vlans_table.html:4 +#: ipam/tables/vlans.py:111 ipam/tables/vlans.py:214 +#: templates/dcim/inc/interface_vlans_table.html:4 msgid "VID" msgstr "VID" -#: netbox/ipam/tables/vrfs.py:30 +#: ipam/tables/vrfs.py:30 msgid "RD" msgstr "КРАСНЫЙ" -#: netbox/ipam/tables/vrfs.py:33 +#: ipam/tables/vrfs.py:33 msgid "Unique" msgstr "Уникальный" -#: netbox/ipam/tables/vrfs.py:37 netbox/vpn/tables/l2vpn.py:27 +#: ipam/tables/vrfs.py:37 vpn/tables/l2vpn.py:27 msgid "Import Targets" msgstr "Цели импорта" -#: netbox/ipam/tables/vrfs.py:42 netbox/vpn/tables/l2vpn.py:32 +#: ipam/tables/vrfs.py:42 vpn/tables/l2vpn.py:32 msgid "Export Targets" msgstr "Цели экспорта" -#: netbox/ipam/validators.py:9 +#: ipam/validators.py:9 #, python-brace-format msgid "{prefix} is not a valid prefix. Did you mean {suggested}?" msgstr "" "{prefix} не является допустимым префиксом. Вы имели в виду {suggested}?" -#: netbox/ipam/validators.py:16 +#: ipam/validators.py:16 #, python-format msgid "The prefix length must be less than or equal to %(limit_value)s." msgstr "Длина префикса должна быть меньше или равна %(limit_value)s." -#: netbox/ipam/validators.py:24 +#: ipam/validators.py:24 #, python-format msgid "The prefix length must be greater than or equal to %(limit_value)s." msgstr "Длина префикса должна быть больше или равна %(limit_value)s." -#: netbox/ipam/validators.py:33 +#: ipam/validators.py:33 msgid "" "Only alphanumeric characters, asterisks, hyphens, periods, and underscores " "are allowed in DNS names" @@ -10445,31 +9844,31 @@ msgstr "" "В именах DNS разрешены только буквенно-цифровые символы, звездочки, дефисы, " "точки и символы подчеркивания" -#: netbox/ipam/views.py:533 +#: ipam/views.py:533 msgid "Child Prefixes" msgstr "Дочерние префиксы" -#: netbox/ipam/views.py:569 +#: ipam/views.py:569 msgid "Child Ranges" msgstr "Детские диапазоны" -#: netbox/ipam/views.py:898 +#: ipam/views.py:898 msgid "Related IPs" msgstr "Связанные IP-адреса" -#: netbox/ipam/views.py:1127 +#: ipam/views.py:1127 msgid "Device Interfaces" msgstr "Интерфейсы устройств" -#: netbox/ipam/views.py:1145 +#: ipam/views.py:1145 msgid "VM Interfaces" msgstr "Интерфейсы виртуальных машин" -#: netbox/netbox/api/fields.py:65 +#: netbox/api/fields.py:65 msgid "This field may not be blank." msgstr "Это поле не может быть пустым." -#: netbox/netbox/api/fields.py:70 +#: netbox/api/fields.py:70 msgid "" "Value must be passed directly (e.g. \"foo\": 123); do not use a dictionary " "or list." @@ -10477,344 +9876,331 @@ msgstr "" "Значение должно быть передано напрямую (например, «foo»: 123); не " "используйте словарь или список." -#: netbox/netbox/api/fields.py:91 +#: netbox/api/fields.py:91 #, python-brace-format msgid "{value} is not a valid choice." msgstr "{value} не является правильным выбором." -#: netbox/netbox/api/fields.py:104 +#: netbox/api/fields.py:104 #, python-brace-format msgid "Invalid content type: {content_type}" msgstr "Неверный тип контента: {content_type}" -#: netbox/netbox/api/fields.py:105 +#: netbox/api/fields.py:105 msgid "Invalid value. Specify a content type as '.'." msgstr "" "Неверное значение. Укажите тип контента как '.'." -#: netbox/netbox/api/fields.py:167 +#: netbox/api/fields.py:167 msgid "Ranges must be specified in the form (lower, upper)." msgstr "В форме должны быть указаны диапазоны (нижний, верхний)." -#: netbox/netbox/api/fields.py:169 +#: netbox/api/fields.py:169 msgid "Range boundaries must be defined as integers." msgstr "Границы диапазона должны быть определены целыми числами." -#: netbox/netbox/api/serializers/fields.py:40 +#: netbox/api/serializers/fields.py:40 #, python-brace-format msgid "{class_name} must implement get_view_name()" msgstr "{class_name} должен реализовать функцию get_view_name ()" -#: netbox/netbox/authentication/__init__.py:138 +#: netbox/authentication/__init__.py:138 #, python-brace-format msgid "Invalid permission {permission} for model {model}" msgstr "Неверное разрешение {permission} для модели {model}" -#: netbox/netbox/choices.py:49 +#: netbox/choices.py:49 msgid "Dark Red" msgstr "Темно-красный" -#: netbox/netbox/choices.py:52 +#: netbox/choices.py:52 msgid "Rose" msgstr "Роза" -#: netbox/netbox/choices.py:53 +#: netbox/choices.py:53 msgid "Fuchsia" msgstr "Фуксия" -#: netbox/netbox/choices.py:55 +#: netbox/choices.py:55 msgid "Dark Purple" msgstr "Темно-фиолетовый" -#: netbox/netbox/choices.py:58 +#: netbox/choices.py:58 msgid "Light Blue" msgstr "Светло-синий" -#: netbox/netbox/choices.py:61 +#: netbox/choices.py:61 msgid "Aqua" msgstr "Бирюзовый" -#: netbox/netbox/choices.py:62 +#: netbox/choices.py:62 msgid "Dark Green" msgstr "Темно-зеленый" -#: netbox/netbox/choices.py:64 +#: netbox/choices.py:64 msgid "Light Green" msgstr "Светло-зеленый" -#: netbox/netbox/choices.py:65 +#: netbox/choices.py:65 msgid "Lime" msgstr "Лайм" -#: netbox/netbox/choices.py:67 +#: netbox/choices.py:67 msgid "Amber" msgstr "Янтарь" -#: netbox/netbox/choices.py:69 +#: netbox/choices.py:69 msgid "Dark Orange" msgstr "Темно-оранжевый" -#: netbox/netbox/choices.py:70 +#: netbox/choices.py:70 msgid "Brown" msgstr "Коричневый" -#: netbox/netbox/choices.py:71 +#: netbox/choices.py:71 msgid "Light Grey" msgstr "Светло-серый" -#: netbox/netbox/choices.py:72 +#: netbox/choices.py:72 msgid "Grey" msgstr "Серый" -#: netbox/netbox/choices.py:73 +#: netbox/choices.py:73 msgid "Dark Grey" msgstr "Темно-серый" -#: netbox/netbox/choices.py:128 +#: netbox/choices.py:128 msgid "Direct" msgstr "Прямой" -#: netbox/netbox/choices.py:129 +#: netbox/choices.py:129 msgid "Upload" msgstr "Загрузить" -#: netbox/netbox/choices.py:141 netbox/netbox/choices.py:155 +#: netbox/choices.py:141 netbox/choices.py:155 msgid "Auto-detect" msgstr "Автоматическое обнаружение" -#: netbox/netbox/choices.py:156 +#: netbox/choices.py:156 msgid "Comma" msgstr "Запятая" -#: netbox/netbox/choices.py:157 +#: netbox/choices.py:157 msgid "Semicolon" msgstr "Точка с запятой" -#: netbox/netbox/choices.py:158 +#: netbox/choices.py:158 msgid "Tab" msgstr "Вкладка" -#: netbox/netbox/config/__init__.py:67 +#: netbox/config/__init__.py:67 #, python-brace-format msgid "Invalid configuration parameter: {item}" msgstr "Неверный параметр конфигурации: {item}" -#: netbox/netbox/config/parameters.py:22 -#: netbox/templates/core/inc/config_data.html:62 +#: netbox/config/parameters.py:22 templates/core/inc/config_data.html:62 msgid "Login banner" msgstr "Баннер для входа" -#: netbox/netbox/config/parameters.py:24 +#: netbox/config/parameters.py:24 msgid "Additional content to display on the login page" msgstr "Дополнительный контент для отображения на странице входа" -#: netbox/netbox/config/parameters.py:33 -#: netbox/templates/core/inc/config_data.html:66 +#: netbox/config/parameters.py:33 templates/core/inc/config_data.html:66 msgid "Maintenance banner" msgstr "Баннер технического обслуживания" -#: netbox/netbox/config/parameters.py:35 +#: netbox/config/parameters.py:35 msgid "Additional content to display when in maintenance mode" msgstr "Дополнительный контент для отображения в режиме обслуживания" -#: netbox/netbox/config/parameters.py:44 -#: netbox/templates/core/inc/config_data.html:70 +#: netbox/config/parameters.py:44 templates/core/inc/config_data.html:70 msgid "Top banner" msgstr "Верхний баннер" -#: netbox/netbox/config/parameters.py:46 +#: netbox/config/parameters.py:46 msgid "Additional content to display at the top of every page" msgstr "" "Дополнительный контент для отображения в верхней части каждой страницы" -#: netbox/netbox/config/parameters.py:55 -#: netbox/templates/core/inc/config_data.html:74 +#: netbox/config/parameters.py:55 templates/core/inc/config_data.html:74 msgid "Bottom banner" msgstr "Нижний баннер" -#: netbox/netbox/config/parameters.py:57 +#: netbox/config/parameters.py:57 msgid "Additional content to display at the bottom of every page" msgstr "Дополнительный контент для отображения внизу каждой страницы" -#: netbox/netbox/config/parameters.py:68 +#: netbox/config/parameters.py:68 msgid "Globally unique IP space" msgstr "Уникальное в глобальном масштабе IP-пространство" -#: netbox/netbox/config/parameters.py:70 +#: netbox/config/parameters.py:70 msgid "Enforce unique IP addressing within the global table" msgstr "Обеспечьте уникальную IP-адресацию в глобальной таблице" -#: netbox/netbox/config/parameters.py:75 -#: netbox/templates/core/inc/config_data.html:44 +#: netbox/config/parameters.py:75 templates/core/inc/config_data.html:44 msgid "Prefer IPv4" msgstr "Предпочитаю IPv4" -#: netbox/netbox/config/parameters.py:77 +#: netbox/config/parameters.py:77 msgid "Prefer IPv4 addresses over IPv6" msgstr "Предпочитайте адреса IPv4, а не IPv6" -#: netbox/netbox/config/parameters.py:84 +#: netbox/config/parameters.py:84 msgid "Rack unit height" msgstr "Высота стойки" -#: netbox/netbox/config/parameters.py:86 +#: netbox/config/parameters.py:86 msgid "Default unit height for rendered rack elevations" msgstr "" "Высота единиц измерения по умолчанию для визуализированных высот стоек" -#: netbox/netbox/config/parameters.py:91 +#: netbox/config/parameters.py:91 msgid "Rack unit width" msgstr "Ширина стойки" -#: netbox/netbox/config/parameters.py:93 +#: netbox/config/parameters.py:93 msgid "Default unit width for rendered rack elevations" msgstr "Ширина юнита по умолчанию для визуализированных высот стоек" -#: netbox/netbox/config/parameters.py:100 +#: netbox/config/parameters.py:100 msgid "Powerfeed voltage" msgstr "Напряжение питания" -#: netbox/netbox/config/parameters.py:102 +#: netbox/config/parameters.py:102 msgid "Default voltage for powerfeeds" msgstr "Напряжение по умолчанию для источников питания" -#: netbox/netbox/config/parameters.py:107 +#: netbox/config/parameters.py:107 msgid "Powerfeed amperage" msgstr "Сила тока в питающей сети" -#: netbox/netbox/config/parameters.py:109 +#: netbox/config/parameters.py:109 msgid "Default amperage for powerfeeds" msgstr "Сила тока по умолчанию для источников питания" -#: netbox/netbox/config/parameters.py:114 +#: netbox/config/parameters.py:114 msgid "Powerfeed max utilization" msgstr "Максимальное использование Powerfeed" -#: netbox/netbox/config/parameters.py:116 +#: netbox/config/parameters.py:116 msgid "Default max utilization for powerfeeds" msgstr "Максимальное использование по умолчанию для Powerfeeds" -#: netbox/netbox/config/parameters.py:123 -#: netbox/templates/core/inc/config_data.html:53 +#: netbox/config/parameters.py:123 templates/core/inc/config_data.html:53 msgid "Allowed URL schemes" msgstr "Разрешенные схемы URL-адресов" -#: netbox/netbox/config/parameters.py:128 +#: netbox/config/parameters.py:128 msgid "Permitted schemes for URLs in user-provided content" msgstr "" "Разрешенные схемы URL-адресов в предоставляемом пользователем контенте" -#: netbox/netbox/config/parameters.py:136 +#: netbox/config/parameters.py:136 msgid "Default page size" msgstr "Размер страницы по умолчанию" -#: netbox/netbox/config/parameters.py:142 +#: netbox/config/parameters.py:142 msgid "Maximum page size" msgstr "Максимальный размер страницы" -#: netbox/netbox/config/parameters.py:150 -#: netbox/templates/core/inc/config_data.html:96 +#: netbox/config/parameters.py:150 templates/core/inc/config_data.html:96 msgid "Custom validators" msgstr "Настраиваемые валидаторы" -#: netbox/netbox/config/parameters.py:152 +#: netbox/config/parameters.py:152 msgid "Custom validation rules (JSON)" msgstr "Настраиваемые правила проверки (JSON)" -#: netbox/netbox/config/parameters.py:160 -#: netbox/templates/core/inc/config_data.html:104 +#: netbox/config/parameters.py:160 templates/core/inc/config_data.html:104 msgid "Protection rules" msgstr "Правила защиты" -#: netbox/netbox/config/parameters.py:162 +#: netbox/config/parameters.py:162 msgid "Deletion protection rules (JSON)" msgstr "Правила защиты от удаления (JSON)" -#: netbox/netbox/config/parameters.py:172 -#: netbox/templates/core/inc/config_data.html:117 +#: netbox/config/parameters.py:172 templates/core/inc/config_data.html:117 msgid "Default preferences" msgstr "Настройки по умолчанию" -#: netbox/netbox/config/parameters.py:174 +#: netbox/config/parameters.py:174 msgid "Default preferences for new users" msgstr "Настройки по умолчанию для новых пользователей" -#: netbox/netbox/config/parameters.py:181 -#: netbox/templates/core/inc/config_data.html:129 +#: netbox/config/parameters.py:181 templates/core/inc/config_data.html:129 msgid "Maintenance mode" msgstr "Режим обслуживания" -#: netbox/netbox/config/parameters.py:183 +#: netbox/config/parameters.py:183 msgid "Enable maintenance mode" msgstr "Включить режим обслуживания" -#: netbox/netbox/config/parameters.py:188 -#: netbox/templates/core/inc/config_data.html:133 +#: netbox/config/parameters.py:188 templates/core/inc/config_data.html:133 msgid "GraphQL enabled" msgstr "GraphQL включен" -#: netbox/netbox/config/parameters.py:190 +#: netbox/config/parameters.py:190 msgid "Enable the GraphQL API" msgstr "Включите API GraphQL" -#: netbox/netbox/config/parameters.py:195 -#: netbox/templates/core/inc/config_data.html:137 +#: netbox/config/parameters.py:195 templates/core/inc/config_data.html:137 msgid "Changelog retention" msgstr "Хранение журнала изменений" -#: netbox/netbox/config/parameters.py:197 +#: netbox/config/parameters.py:197 msgid "Days to retain changelog history (set to zero for unlimited)" msgstr "" "Количество дней для хранения истории изменений (равно нулю без ограничений)" -#: netbox/netbox/config/parameters.py:202 +#: netbox/config/parameters.py:202 msgid "Job result retention" msgstr "Сохранение результатов задач" -#: netbox/netbox/config/parameters.py:204 +#: netbox/config/parameters.py:204 msgid "Days to retain job result history (set to zero for unlimited)" msgstr "" "Количество дней для хранения истории результатов задач (укажите 0 для " "неограниченного хранения)" -#: netbox/netbox/config/parameters.py:209 -#: netbox/templates/core/inc/config_data.html:145 +#: netbox/config/parameters.py:209 templates/core/inc/config_data.html:145 msgid "Maps URL" msgstr "URL-адрес карты" -#: netbox/netbox/config/parameters.py:211 +#: netbox/config/parameters.py:211 msgid "Base URL for mapping geographic locations" msgstr "Базовый URL-адрес для картографирования географических местоположений" -#: netbox/netbox/forms/__init__.py:12 +#: netbox/forms/__init__.py:12 msgid "Partial match" msgstr "Частичное совпадение" -#: netbox/netbox/forms/__init__.py:13 +#: netbox/forms/__init__.py:13 msgid "Exact match" msgstr "Точное совпадение" -#: netbox/netbox/forms/__init__.py:14 +#: netbox/forms/__init__.py:14 msgid "Starts with" msgstr "Начинается с" -#: netbox/netbox/forms/__init__.py:15 +#: netbox/forms/__init__.py:15 msgid "Ends with" msgstr "Заканчивается на" -#: netbox/netbox/forms/__init__.py:16 +#: netbox/forms/__init__.py:16 msgid "Regex" msgstr "Regex" -#: netbox/netbox/forms/__init__.py:34 +#: netbox/forms/__init__.py:34 msgid "Object type(s)" msgstr "Тип (ы) объекта" -#: netbox/netbox/forms/__init__.py:40 +#: netbox/forms/__init__.py:40 msgid "Lookup" msgstr "Запрос" -#: netbox/netbox/forms/base.py:90 +#: netbox/forms/base.py:90 msgid "" "Tag slugs separated by commas, encased with double quotes (e.g. " "\"tag1,tag2,tag3\")" @@ -10822,430 +10208,414 @@ msgstr "" "Подстрока тегов разделены запятыми и заключены в двойные кавычки (например, " "«tag1, tag2, tag3\")" -#: netbox/netbox/forms/base.py:120 +#: netbox/forms/base.py:120 msgid "Add tags" msgstr "Добавить теги" -#: netbox/netbox/forms/base.py:125 +#: netbox/forms/base.py:125 msgid "Remove tags" msgstr "Удалить теги" -#: netbox/netbox/forms/mixins.py:38 +#: netbox/forms/mixins.py:38 #, python-brace-format msgid "{class_name} must specify a model class." msgstr "{class_name} необходимо указать класс модели." -#: netbox/netbox/models/features.py:280 +#: netbox/models/features.py:280 #, python-brace-format msgid "Unknown field name '{name}' in custom field data." msgstr "Неизвестное имя поля '{name}' в данных для настраиваемых полей." -#: netbox/netbox/models/features.py:286 +#: netbox/models/features.py:286 #, python-brace-format msgid "Invalid value for custom field '{name}': {error}" msgstr "Неверное значение для настраиваемого поля '{name}': {error}" -#: netbox/netbox/models/features.py:295 +#: netbox/models/features.py:295 #, python-brace-format msgid "Custom field '{name}' must have a unique value." msgstr "Настраиваемое поле '{name}'должно иметь уникальное значение." -#: netbox/netbox/models/features.py:302 +#: netbox/models/features.py:302 #, python-brace-format msgid "Missing required custom field '{name}'." msgstr "Отсутствует обязательное настраиваемое поле '{name}'." -#: netbox/netbox/models/features.py:462 +#: netbox/models/features.py:462 msgid "Remote data source" msgstr "Удаленный источник данных" -#: netbox/netbox/models/features.py:472 +#: netbox/models/features.py:472 msgid "data path" msgstr "путь к данным" -#: netbox/netbox/models/features.py:476 +#: netbox/models/features.py:476 msgid "Path to remote file (relative to data source root)" msgstr "Путь к удаленному файлу (относительно корня источника данных)" -#: netbox/netbox/models/features.py:479 +#: netbox/models/features.py:479 msgid "auto sync enabled" msgstr "автоматическая синхронизация включена" -#: netbox/netbox/models/features.py:481 +#: netbox/models/features.py:481 msgid "Enable automatic synchronization of data when the data file is updated" msgstr "" "Включить автоматическую синхронизацию данных при обновлении файла данных" -#: netbox/netbox/models/features.py:484 +#: netbox/models/features.py:484 msgid "date synced" msgstr "дата синхронизирована" -#: netbox/netbox/models/features.py:578 +#: netbox/models/features.py:578 #, python-brace-format msgid "{class_name} must implement a sync_data() method." msgstr "{class_name} должен реализовать метод sync_data ()." -#: netbox/netbox/navigation/menu.py:11 +#: netbox/navigation/menu.py:11 msgid "Organization" msgstr "Организация" -#: netbox/netbox/navigation/menu.py:19 +#: netbox/navigation/menu.py:19 msgid "Site Groups" msgstr "Группы сайтов" -#: netbox/netbox/navigation/menu.py:27 +#: netbox/navigation/menu.py:27 msgid "Tenant Groups" msgstr "Группы арендаторов" -#: netbox/netbox/navigation/menu.py:34 +#: netbox/navigation/menu.py:34 msgid "Contact Groups" msgstr "Группы контактов" -#: netbox/netbox/navigation/menu.py:35 -#: netbox/templates/tenancy/contactrole.html:8 +#: netbox/navigation/menu.py:35 templates/tenancy/contactrole.html:8 msgid "Contact Roles" msgstr "Роли контактов" -#: netbox/netbox/navigation/menu.py:36 +#: netbox/navigation/menu.py:36 msgid "Contact Assignments" msgstr "Назначения контактов" -#: netbox/netbox/navigation/menu.py:50 +#: netbox/navigation/menu.py:50 msgid "Rack Roles" msgstr "Роли стоек" -#: netbox/netbox/navigation/menu.py:54 +#: netbox/navigation/menu.py:54 msgid "Elevations" msgstr "Возвышения" -#: netbox/netbox/navigation/menu.py:60 netbox/netbox/navigation/menu.py:62 +#: netbox/navigation/menu.py:60 netbox/navigation/menu.py:62 msgid "Rack Types" msgstr "Типы стоек" -#: netbox/netbox/navigation/menu.py:76 +#: netbox/navigation/menu.py:76 msgid "Modules" msgstr "Модули" -#: netbox/netbox/navigation/menu.py:80 netbox/templates/dcim/device.html:160 -#: netbox/templates/dcim/virtualdevicecontext.html:8 +#: netbox/navigation/menu.py:80 templates/dcim/device.html:160 +#: templates/dcim/virtualdevicecontext.html:8 msgid "Virtual Device Contexts" msgstr "Виртуальные контексты" -#: netbox/netbox/navigation/menu.py:88 +#: netbox/navigation/menu.py:88 msgid "Manufacturers" msgstr "Производители" -#: netbox/netbox/navigation/menu.py:92 +#: netbox/navigation/menu.py:92 msgid "Device Components" msgstr "Компоненты устройства" -#: netbox/netbox/navigation/menu.py:104 -#: netbox/templates/dcim/inventoryitemrole.html:8 +#: netbox/navigation/menu.py:104 templates/dcim/inventoryitemrole.html:8 msgid "Inventory Item Roles" msgstr "Роли предметов" -#: netbox/netbox/navigation/menu.py:111 netbox/netbox/navigation/menu.py:115 +#: netbox/navigation/menu.py:111 netbox/navigation/menu.py:115 msgid "Connections" msgstr "Подключения" -#: netbox/netbox/navigation/menu.py:117 +#: netbox/navigation/menu.py:117 msgid "Cables" msgstr "Кабели" -#: netbox/netbox/navigation/menu.py:118 +#: netbox/navigation/menu.py:118 msgid "Wireless Links" msgstr "Беспроводные каналы" -#: netbox/netbox/navigation/menu.py:121 +#: netbox/navigation/menu.py:121 msgid "Interface Connections" msgstr "Интерфейсные подключения" -#: netbox/netbox/navigation/menu.py:126 +#: netbox/navigation/menu.py:126 msgid "Console Connections" msgstr "Консольные подключения" -#: netbox/netbox/navigation/menu.py:131 +#: netbox/navigation/menu.py:131 msgid "Power Connections" msgstr "Подключения кабелей питания" -#: netbox/netbox/navigation/menu.py:147 +#: netbox/navigation/menu.py:147 msgid "Wireless LAN Groups" msgstr "Группы WLAN" -#: netbox/netbox/navigation/menu.py:168 +#: netbox/navigation/menu.py:168 msgid "Prefix & VLAN Roles" msgstr "Роли префиксов и VLAN" -#: netbox/netbox/navigation/menu.py:174 +#: netbox/navigation/menu.py:174 msgid "ASN Ranges" msgstr "Диапазоны ASN" -#: netbox/netbox/navigation/menu.py:196 +#: netbox/navigation/menu.py:196 msgid "VLAN Groups" msgstr "Группы VLAN" -#: netbox/netbox/navigation/menu.py:203 +#: netbox/navigation/menu.py:203 msgid "Service Templates" msgstr "Шаблоны Служб" -#: netbox/netbox/navigation/menu.py:204 netbox/templates/dcim/device.html:302 -#: netbox/templates/ipam/ipaddress.html:118 -#: netbox/templates/virtualization/virtualmachine.html:154 +#: netbox/navigation/menu.py:204 templates/dcim/device.html:302 +#: templates/ipam/ipaddress.html:118 +#: templates/virtualization/virtualmachine.html:154 msgid "Services" msgstr "Службы" -#: netbox/netbox/navigation/menu.py:211 +#: netbox/navigation/menu.py:211 msgid "VPN" msgstr "VPN" -#: netbox/netbox/navigation/menu.py:215 netbox/netbox/navigation/menu.py:217 -#: netbox/vpn/tables/tunnels.py:24 +#: netbox/navigation/menu.py:215 netbox/navigation/menu.py:217 +#: vpn/tables/tunnels.py:24 msgid "Tunnels" msgstr "Туннели" -#: netbox/netbox/navigation/menu.py:218 -#: netbox/templates/vpn/tunnelgroup.html:8 +#: netbox/navigation/menu.py:218 templates/vpn/tunnelgroup.html:8 msgid "Tunnel Groups" msgstr "Группы туннелей" -#: netbox/netbox/navigation/menu.py:219 +#: netbox/navigation/menu.py:219 msgid "Tunnel Terminations" msgstr "Окончание туннелей" -#: netbox/netbox/navigation/menu.py:223 netbox/netbox/navigation/menu.py:225 -#: netbox/vpn/models/l2vpn.py:64 +#: netbox/navigation/menu.py:223 netbox/navigation/menu.py:225 +#: vpn/models/l2vpn.py:64 msgid "L2VPNs" msgstr "L2VPN" -#: netbox/netbox/navigation/menu.py:226 netbox/templates/vpn/l2vpn.html:56 -#: netbox/templates/vpn/tunnel.html:72 netbox/vpn/tables/tunnels.py:58 +#: netbox/navigation/menu.py:226 templates/vpn/l2vpn.html:56 +#: templates/vpn/tunnel.html:72 vpn/tables/tunnels.py:58 msgid "Terminations" msgstr "Соединения" -#: netbox/netbox/navigation/menu.py:232 +#: netbox/navigation/menu.py:232 msgid "IKE Proposals" msgstr "Предложения IKE" -#: netbox/netbox/navigation/menu.py:233 -#: netbox/templates/vpn/ikeproposal.html:41 +#: netbox/navigation/menu.py:233 templates/vpn/ikeproposal.html:41 msgid "IKE Policies" msgstr "Политики IKE" -#: netbox/netbox/navigation/menu.py:234 +#: netbox/navigation/menu.py:234 msgid "IPSec Proposals" msgstr "Предложения IPsec" -#: netbox/netbox/navigation/menu.py:235 -#: netbox/templates/vpn/ipsecproposal.html:37 +#: netbox/navigation/menu.py:235 templates/vpn/ipsecproposal.html:37 msgid "IPSec Policies" msgstr "Политики IPsec" -#: netbox/netbox/navigation/menu.py:236 netbox/templates/vpn/ikepolicy.html:38 -#: netbox/templates/vpn/ipsecpolicy.html:25 +#: netbox/navigation/menu.py:236 templates/vpn/ikepolicy.html:38 +#: templates/vpn/ipsecpolicy.html:25 msgid "IPSec Profiles" msgstr "Профили IPsec" -#: netbox/netbox/navigation/menu.py:243 -#: netbox/templates/dcim/device_edit.html:78 +#: netbox/navigation/menu.py:243 templates/dcim/device_edit.html:78 msgid "Virtualization" msgstr "Виртуализация" -#: netbox/netbox/navigation/menu.py:251 -#: netbox/templates/virtualization/virtualmachine.html:174 -#: netbox/templates/virtualization/virtualmachine/base.html:32 -#: netbox/templates/virtualization/virtualmachine_list.html:21 -#: netbox/virtualization/tables/virtualmachines.py:104 -#: netbox/virtualization/views.py:388 +#: netbox/navigation/menu.py:251 +#: templates/virtualization/virtualmachine.html:174 +#: templates/virtualization/virtualmachine/base.html:32 +#: templates/virtualization/virtualmachine_list.html:21 +#: virtualization/tables/virtualmachines.py:104 virtualization/views.py:388 msgid "Virtual Disks" msgstr "Виртуальные диски" -#: netbox/netbox/navigation/menu.py:258 +#: netbox/navigation/menu.py:258 msgid "Cluster Types" msgstr "Типы кластеров" -#: netbox/netbox/navigation/menu.py:259 +#: netbox/navigation/menu.py:259 msgid "Cluster Groups" msgstr "Группы кластеров" -#: netbox/netbox/navigation/menu.py:273 +#: netbox/navigation/menu.py:273 msgid "Circuit Types" msgstr "Типы каналов связи" -#: netbox/netbox/navigation/menu.py:274 +#: netbox/navigation/menu.py:274 msgid "Circuit Groups" msgstr "Группы каналов связей" -#: netbox/netbox/navigation/menu.py:275 -#: netbox/templates/circuits/circuit.html:66 +#: netbox/navigation/menu.py:275 templates/circuits/circuit.html:66 msgid "Group Assignments" msgstr "Групповые задания" -#: netbox/netbox/navigation/menu.py:276 +#: netbox/navigation/menu.py:276 msgid "Circuit Terminations" msgstr "Точка подключения канала связи" -#: netbox/netbox/navigation/menu.py:280 netbox/netbox/navigation/menu.py:282 +#: netbox/navigation/menu.py:280 netbox/navigation/menu.py:282 msgid "Providers" msgstr "Провайдеры" -#: netbox/netbox/navigation/menu.py:283 -#: netbox/templates/circuits/provider.html:51 +#: netbox/navigation/menu.py:283 templates/circuits/provider.html:51 msgid "Provider Accounts" msgstr "Аккаунты провайдеров" -#: netbox/netbox/navigation/menu.py:284 +#: netbox/navigation/menu.py:284 msgid "Provider Networks" msgstr "Сети провайдеров" -#: netbox/netbox/navigation/menu.py:298 +#: netbox/navigation/menu.py:298 msgid "Power Panels" msgstr "Панели питания" -#: netbox/netbox/navigation/menu.py:309 +#: netbox/navigation/menu.py:309 msgid "Configurations" msgstr "Конфигурации" -#: netbox/netbox/navigation/menu.py:311 +#: netbox/navigation/menu.py:311 msgid "Config Contexts" msgstr "Контексты конфигурации" -#: netbox/netbox/navigation/menu.py:312 +#: netbox/navigation/menu.py:312 msgid "Config Templates" msgstr "Шаблоны конфигурации" -#: netbox/netbox/navigation/menu.py:319 netbox/netbox/navigation/menu.py:323 +#: netbox/navigation/menu.py:319 netbox/navigation/menu.py:323 msgid "Customization" msgstr "Настройка" -#: netbox/netbox/navigation/menu.py:325 -#: netbox/templates/dcim/device_edit.html:103 -#: netbox/templates/dcim/htmx/cable_edit.html:81 -#: netbox/templates/dcim/virtualchassis_add.html:31 -#: netbox/templates/dcim/virtualchassis_edit.html:40 -#: netbox/templates/generic/bulk_edit.html:76 -#: netbox/templates/htmx/form.html:19 netbox/templates/inc/filter_list.html:30 -#: netbox/templates/inc/panels/custom_fields.html:7 -#: netbox/templates/ipam/ipaddress_bulk_add.html:35 -#: netbox/templates/ipam/vlan_edit.html:59 +#: netbox/navigation/menu.py:325 templates/dcim/device_edit.html:103 +#: templates/dcim/htmx/cable_edit.html:81 +#: templates/dcim/virtualchassis_add.html:31 +#: templates/dcim/virtualchassis_edit.html:40 +#: templates/generic/bulk_edit.html:76 templates/htmx/form.html:19 +#: templates/inc/filter_list.html:30 templates/inc/panels/custom_fields.html:7 +#: templates/ipam/ipaddress_bulk_add.html:35 templates/ipam/vlan_edit.html:59 msgid "Custom Fields" msgstr "Настраиваемые Поля" -#: netbox/netbox/navigation/menu.py:326 +#: netbox/navigation/menu.py:326 msgid "Custom Field Choices" msgstr "Варианты для Настраиваемых Полей" -#: netbox/netbox/navigation/menu.py:327 +#: netbox/navigation/menu.py:327 msgid "Custom Links" msgstr "Настраиваемые Ссылки" -#: netbox/netbox/navigation/menu.py:328 +#: netbox/navigation/menu.py:328 msgid "Export Templates" msgstr "Шаблоны экспорта" -#: netbox/netbox/navigation/menu.py:329 +#: netbox/navigation/menu.py:329 msgid "Saved Filters" msgstr "Сохраненные фильтры" -#: netbox/netbox/navigation/menu.py:331 +#: netbox/navigation/menu.py:331 msgid "Image Attachments" msgstr "Прикрепленные Изображения" -#: netbox/netbox/navigation/menu.py:349 +#: netbox/navigation/menu.py:349 msgid "Operations" msgstr "Операции" -#: netbox/netbox/navigation/menu.py:353 +#: netbox/navigation/menu.py:353 msgid "Integrations" msgstr "Интеграции" -#: netbox/netbox/navigation/menu.py:355 +#: netbox/navigation/menu.py:355 msgid "Data Sources" msgstr "Источники данных" -#: netbox/netbox/navigation/menu.py:356 +#: netbox/navigation/menu.py:356 msgid "Event Rules" msgstr "Правила мероприятия" -#: netbox/netbox/navigation/menu.py:357 +#: netbox/navigation/menu.py:357 msgid "Webhooks" msgstr "Вебхуки" -#: netbox/netbox/navigation/menu.py:361 netbox/netbox/navigation/menu.py:365 -#: netbox/netbox/views/generic/feature_views.py:153 -#: netbox/templates/extras/report/base.html:37 -#: netbox/templates/extras/script/base.html:36 +#: netbox/navigation/menu.py:361 netbox/navigation/menu.py:365 +#: netbox/views/generic/feature_views.py:153 +#: templates/extras/report/base.html:37 templates/extras/script/base.html:36 msgid "Jobs" msgstr "Задачи" -#: netbox/netbox/navigation/menu.py:371 +#: netbox/navigation/menu.py:371 msgid "Logging" msgstr "Ведение журнала" -#: netbox/netbox/navigation/menu.py:373 +#: netbox/navigation/menu.py:373 msgid "Notification Groups" msgstr "Группы уведомлений" -#: netbox/netbox/navigation/menu.py:374 +#: netbox/navigation/menu.py:374 msgid "Journal Entries" msgstr "Записи в журнале" -#: netbox/netbox/navigation/menu.py:375 -#: netbox/templates/core/objectchange.html:9 -#: netbox/templates/core/objectchange_list.html:4 +#: netbox/navigation/menu.py:375 templates/core/objectchange.html:9 +#: templates/core/objectchange_list.html:4 msgid "Change Log" msgstr "Журнал изменений" -#: netbox/netbox/navigation/menu.py:382 netbox/templates/inc/user_menu.html:29 +#: netbox/navigation/menu.py:382 templates/inc/user_menu.html:29 msgid "Admin" msgstr "Администратор" -#: netbox/netbox/navigation/menu.py:430 netbox/templates/account/base.html:27 -#: netbox/templates/inc/user_menu.html:57 +#: netbox/navigation/menu.py:430 templates/account/base.html:27 +#: templates/inc/user_menu.html:57 msgid "API Tokens" msgstr "Токены API" -#: netbox/netbox/navigation/menu.py:437 netbox/users/forms/model_forms.py:187 -#: netbox/users/forms/model_forms.py:195 netbox/users/forms/model_forms.py:242 -#: netbox/users/forms/model_forms.py:249 +#: netbox/navigation/menu.py:437 users/forms/model_forms.py:187 +#: users/forms/model_forms.py:195 users/forms/model_forms.py:242 +#: users/forms/model_forms.py:249 msgid "Permissions" msgstr "Разрешения" -#: netbox/netbox/navigation/menu.py:445 netbox/netbox/navigation/menu.py:449 -#: netbox/templates/core/system.html:7 +#: netbox/navigation/menu.py:445 netbox/navigation/menu.py:449 +#: templates/core/system.html:7 msgid "System" msgstr "система" -#: netbox/netbox/navigation/menu.py:454 netbox/netbox/navigation/menu.py:502 -#: netbox/templates/500.html:35 netbox/templates/account/preferences.html:22 -#: netbox/templates/core/plugin.html:12 -#: netbox/templates/core/plugin_list.html:7 -#: netbox/templates/core/plugin_list.html:12 +#: netbox/navigation/menu.py:454 netbox/navigation/menu.py:502 +#: templates/500.html:35 templates/account/preferences.html:22 +#: templates/core/plugin.html:13 templates/core/plugin_list.html:7 +#: templates/core/plugin_list.html:12 msgid "Plugins" msgstr "Плагины" -#: netbox/netbox/navigation/menu.py:459 +#: netbox/navigation/menu.py:459 msgid "Configuration History" msgstr "История конфигурации" -#: netbox/netbox/navigation/menu.py:465 netbox/templates/core/rq_task.html:8 -#: netbox/templates/core/rq_task_list.html:22 +#: netbox/navigation/menu.py:465 templates/core/rq_task.html:8 +#: templates/core/rq_task_list.html:22 msgid "Background Tasks" msgstr "Фоновые задачи" -#: netbox/netbox/plugins/navigation.py:47 -#: netbox/netbox/plugins/navigation.py:69 +#: netbox/plugins/navigation.py:47 netbox/plugins/navigation.py:69 msgid "Permissions must be passed as a tuple or list." msgstr "Разрешения должны передаваться в виде кортежа или списка." -#: netbox/netbox/plugins/navigation.py:51 +#: netbox/plugins/navigation.py:51 msgid "Buttons must be passed as a tuple or list." msgstr "Кнопки должны передаваться в виде кортежа или списка." -#: netbox/netbox/plugins/navigation.py:73 +#: netbox/plugins/navigation.py:73 msgid "Button color must be a choice within ButtonColorChoices." msgstr "Цвет кнопки должен быть выбран в ButtonColorChoices." -#: netbox/netbox/plugins/registration.py:25 +#: netbox/plugins/registration.py:25 #, python-brace-format msgid "" "PluginTemplateExtension class {template_extension} was passed as an " @@ -11254,7 +10624,7 @@ msgstr "" "Класс расширения шаблонов плагинов {template_extension} было принято в " "качестве экземпляра!" -#: netbox/netbox/plugins/registration.py:31 +#: netbox/plugins/registration.py:31 #, python-brace-format msgid "" "{template_extension} is not a subclass of " @@ -11263,197 +10633,196 @@ msgstr "" "{template_extension} не является подклассом расширения " "Netbox.Plugins.Plugins.PluginstemplateExtension!" -#: netbox/netbox/plugins/registration.py:51 +#: netbox/plugins/registration.py:51 #, python-brace-format msgid "{item} must be an instance of netbox.plugins.PluginMenuItem" msgstr "{item} должен быть экземпляром Netbox.plugins.pluginmenuItem" -#: netbox/netbox/plugins/registration.py:62 +#: netbox/plugins/registration.py:62 #, python-brace-format msgid "{menu_link} must be an instance of netbox.plugins.PluginMenuItem" msgstr "{menu_link} должен быть экземпляром Netbox.plugins.pluginmenuItem" -#: netbox/netbox/plugins/registration.py:67 +#: netbox/plugins/registration.py:67 #, python-brace-format msgid "{button} must be an instance of netbox.plugins.PluginMenuButton" msgstr "" "{button} должен быть экземпляром кнопки Netbox.plugins.PluginMenuButton" -#: netbox/netbox/plugins/templates.py:37 +#: netbox/plugins/templates.py:37 msgid "extra_context must be a dictionary" msgstr "extra_context должен быть словарём" -#: netbox/netbox/preferences.py:19 +#: netbox/preferences.py:19 msgid "HTMX Navigation" msgstr "Навигация по HTMX" -#: netbox/netbox/preferences.py:24 +#: netbox/preferences.py:24 msgid "Enable dynamic UI navigation" msgstr "Включить динамическую навигацию пользовательского интерфейса" -#: netbox/netbox/preferences.py:26 +#: netbox/preferences.py:26 msgid "Experimental feature" msgstr "экспериментальная функция" -#: netbox/netbox/preferences.py:29 +#: netbox/preferences.py:29 msgid "Language" msgstr "Язык" -#: netbox/netbox/preferences.py:34 +#: netbox/preferences.py:34 msgid "Forces UI translation to the specified language" msgstr "Принудительно переводит пользовательский интерфейс на указанный язык" -#: netbox/netbox/preferences.py:36 +#: netbox/preferences.py:36 msgid "Support for translation has been disabled locally" msgstr "Поддержка перевода отключена локально" -#: netbox/netbox/preferences.py:42 +#: netbox/preferences.py:42 msgid "Page length" msgstr "Длина страницы" -#: netbox/netbox/preferences.py:44 +#: netbox/preferences.py:44 msgid "The default number of objects to display per page" msgstr "Количество объектов, отображаемых на странице по умолчанию" -#: netbox/netbox/preferences.py:48 +#: netbox/preferences.py:48 msgid "Paginator placement" msgstr "Размещение пагинатора" -#: netbox/netbox/preferences.py:50 +#: netbox/preferences.py:50 msgid "Bottom" msgstr "Внизу" -#: netbox/netbox/preferences.py:51 +#: netbox/preferences.py:51 msgid "Top" msgstr "Вверху" -#: netbox/netbox/preferences.py:52 +#: netbox/preferences.py:52 msgid "Both" msgstr "Вверху и внизу" -#: netbox/netbox/preferences.py:55 +#: netbox/preferences.py:55 msgid "Where the paginator controls will be displayed relative to a table" msgstr "" "Где элементы управления пагинатором будут отображаться относительно таблицы" -#: netbox/netbox/preferences.py:60 +#: netbox/preferences.py:60 msgid "Data format" msgstr "Формат данных" -#: netbox/netbox/preferences.py:65 +#: netbox/preferences.py:65 msgid "The preferred syntax for displaying generic data within the UI" msgstr "" "Предпочтительный синтаксис для отображения общих данных в пользовательском " "интерфейсе" -#: netbox/netbox/registry.py:14 +#: netbox/registry.py:14 #, python-brace-format msgid "Invalid store: {key}" msgstr "Неверное хранилище: {key}" -#: netbox/netbox/registry.py:17 +#: netbox/registry.py:17 msgid "Cannot add stores to registry after initialization" msgstr "Невозможно добавить хранилище в реестр после инициализации" -#: netbox/netbox/registry.py:20 +#: netbox/registry.py:20 msgid "Cannot delete stores from registry" msgstr "Невозможно удалить хранилище из реестра" -#: netbox/netbox/settings.py:760 +#: netbox/settings.py:760 msgid "Czech" msgstr "Чешский" -#: netbox/netbox/settings.py:761 +#: netbox/settings.py:761 msgid "Danish" msgstr "Датский" -#: netbox/netbox/settings.py:762 +#: netbox/settings.py:762 msgid "German" msgstr "Немецкий" -#: netbox/netbox/settings.py:763 +#: netbox/settings.py:763 msgid "English" msgstr "Английский" -#: netbox/netbox/settings.py:764 +#: netbox/settings.py:764 msgid "Spanish" msgstr "Испанский" -#: netbox/netbox/settings.py:765 +#: netbox/settings.py:765 msgid "French" msgstr "Французский" -#: netbox/netbox/settings.py:766 +#: netbox/settings.py:766 msgid "Italian" msgstr "Итальянский" -#: netbox/netbox/settings.py:767 +#: netbox/settings.py:767 msgid "Japanese" msgstr "Японский" -#: netbox/netbox/settings.py:768 +#: netbox/settings.py:768 msgid "Dutch" msgstr "Голландский" -#: netbox/netbox/settings.py:769 +#: netbox/settings.py:769 msgid "Polish" msgstr "Польский" -#: netbox/netbox/settings.py:770 +#: netbox/settings.py:770 msgid "Portuguese" msgstr "Португальский" -#: netbox/netbox/settings.py:771 +#: netbox/settings.py:771 msgid "Russian" msgstr "Русский" -#: netbox/netbox/settings.py:772 +#: netbox/settings.py:772 msgid "Turkish" msgstr "Турецкий" -#: netbox/netbox/settings.py:773 +#: netbox/settings.py:773 msgid "Ukrainian" msgstr "Украинский" -#: netbox/netbox/settings.py:774 +#: netbox/settings.py:774 msgid "Chinese" msgstr "Китайский" -#: netbox/netbox/tables/columns.py:176 +#: netbox/tables/columns.py:176 msgid "Select all" msgstr "Выбрать все" -#: netbox/netbox/tables/columns.py:189 +#: netbox/tables/columns.py:189 msgid "Toggle all" msgstr "Переключить все" -#: netbox/netbox/tables/columns.py:300 +#: netbox/tables/columns.py:300 msgid "Toggle Dropdown" msgstr "Переключить выпадающий список" -#: netbox/netbox/tables/columns.py:572 netbox/templates/core/job.html:53 +#: netbox/tables/columns.py:572 templates/core/job.html:53 msgid "Error" msgstr "Ошибка" -#: netbox/netbox/tables/tables.py:58 +#: netbox/tables/tables.py:58 #, python-brace-format msgid "No {model_name} found" msgstr "{model_name} не найдена" -#: netbox/netbox/tables/tables.py:249 -#: netbox/templates/generic/bulk_import.html:117 +#: netbox/tables/tables.py:249 templates/generic/bulk_import.html:117 msgid "Field" msgstr "Поле" -#: netbox/netbox/tables/tables.py:252 +#: netbox/tables/tables.py:252 msgid "Value" msgstr "Значение" -#: netbox/netbox/tests/dummy_plugin/navigation.py:29 +#: netbox/tests/dummy_plugin/navigation.py:29 msgid "Dummy Plugin" msgstr "Фиктивный плагин" -#: netbox/netbox/views/generic/bulk_views.py:114 +#: netbox/views/generic/bulk_views.py:114 #, python-brace-format msgid "" "There was an error rendering the selected export template ({template}): " @@ -11461,56 +10830,56 @@ msgid "" msgstr "" "Произошла ошибка при рендеринге выбранного шаблона ({template}): {error}" -#: netbox/netbox/views/generic/bulk_views.py:416 +#: netbox/views/generic/bulk_views.py:416 #, python-brace-format msgid "Row {i}: Object with ID {id} does not exist" msgstr "Ряд {i}: Объект с идентификатором {id} не существует" -#: netbox/netbox/views/generic/bulk_views.py:699 -#: netbox/netbox/views/generic/bulk_views.py:897 -#: netbox/netbox/views/generic/bulk_views.py:945 +#: netbox/views/generic/bulk_views.py:702 +#: netbox/views/generic/bulk_views.py:900 +#: netbox/views/generic/bulk_views.py:948 #, python-brace-format msgid "No {object_type} were selected." msgstr "{object_type} не были выбраны." -#: netbox/netbox/views/generic/bulk_views.py:779 +#: netbox/views/generic/bulk_views.py:782 #, python-brace-format msgid "Renamed {count} {object_type}" msgstr "Переименован(-о) {count} {object_type}" -#: netbox/netbox/views/generic/bulk_views.py:875 +#: netbox/views/generic/bulk_views.py:878 #, python-brace-format msgid "Deleted {count} {object_type}" msgstr "Удален(-о) {count} {object_type}" -#: netbox/netbox/views/generic/feature_views.py:40 +#: netbox/views/generic/feature_views.py:40 msgid "Changelog" msgstr "Журнал изменений" -#: netbox/netbox/views/generic/feature_views.py:93 +#: netbox/views/generic/feature_views.py:93 msgid "Journal" msgstr "Журнал" -#: netbox/netbox/views/generic/feature_views.py:207 +#: netbox/views/generic/feature_views.py:207 msgid "Unable to synchronize data: No data file set." msgstr "Невозможно синхронизировать данные: не указан файл данных." -#: netbox/netbox/views/generic/feature_views.py:211 +#: netbox/views/generic/feature_views.py:211 #, python-brace-format msgid "Synchronized data for {object_type} {object}." msgstr "Синхронизированы данные для {object_type} {object}." -#: netbox/netbox/views/generic/feature_views.py:236 +#: netbox/views/generic/feature_views.py:236 #, python-brace-format msgid "Synced {count} {object_type}" msgstr "Синхронизирован(-о) {count} {object_type}" -#: netbox/netbox/views/generic/object_views.py:108 +#: netbox/views/generic/object_views.py:108 #, python-brace-format msgid "{class_name} must implement get_children()" msgstr "{class_name} должен реализовать get_children ()" -#: netbox/netbox/views/misc.py:44 +#: netbox/views/misc.py:44 msgid "" "There was an error loading the dashboard configuration. A default dashboard " "is in use." @@ -11518,750 +10887,705 @@ msgstr "" "Произошла ошибка при загрузке конфигурации панели управления. По умолчанию " "используется панель управления." -#: netbox/templates/403.html:4 +#: templates/403.html:4 msgid "Access Denied" msgstr "Отказано в доступе" -#: netbox/templates/403.html:9 +#: templates/403.html:9 msgid "You do not have permission to access this page" msgstr "У вас нет разрешения на доступ к этой странице" -#: netbox/templates/404.html:4 +#: templates/404.html:4 msgid "Page Not Found" msgstr "Страница не найдена" -#: netbox/templates/404.html:9 +#: templates/404.html:9 msgid "The requested page does not exist" msgstr "Запрошенная страница не существует" -#: netbox/templates/500.html:7 netbox/templates/500.html:18 +#: templates/500.html:7 templates/500.html:18 msgid "Server Error" msgstr "Ошибка сервера" -#: netbox/templates/500.html:23 +#: templates/500.html:23 msgid "There was a problem with your request. Please contact an administrator" msgstr "С вашим запросом возникла проблема. Обратитесь к администратору" -#: netbox/templates/500.html:28 +#: templates/500.html:28 msgid "The complete exception is provided below" msgstr "Полное исключение приведено ниже" -#: netbox/templates/500.html:33 netbox/templates/core/system.html:40 +#: templates/500.html:33 templates/core/system.html:40 msgid "Python version" msgstr "Версия для Python" -#: netbox/templates/500.html:34 +#: templates/500.html:34 msgid "NetBox version" msgstr "Версия NetBox" -#: netbox/templates/500.html:36 +#: templates/500.html:36 msgid "None installed" msgstr "Ничего не установлено" -#: netbox/templates/500.html:39 +#: templates/500.html:39 msgid "If further assistance is required, please post to the" msgstr "Если требуется дополнительная помощь, отправьте сообщение по адресу" -#: netbox/templates/500.html:39 +#: templates/500.html:39 msgid "NetBox discussion forum" msgstr "Дискуссионный форум NetBox" -#: netbox/templates/500.html:39 +#: templates/500.html:39 msgid "on GitHub" msgstr "на GitHub" -#: netbox/templates/500.html:42 netbox/templates/base/40x.html:17 +#: templates/500.html:42 templates/base/40x.html:17 msgid "Home Page" msgstr "Домашняя страница" -#: netbox/templates/account/base.html:7 netbox/templates/inc/user_menu.html:45 -#: netbox/vpn/forms/bulk_edit.py:255 netbox/vpn/forms/filtersets.py:189 -#: netbox/vpn/forms/model_forms.py:379 +#: templates/account/base.html:7 templates/inc/user_menu.html:45 +#: vpn/forms/bulk_edit.py:255 vpn/forms/filtersets.py:189 +#: vpn/forms/model_forms.py:379 msgid "Profile" msgstr "Профиль" -#: netbox/templates/account/base.html:13 -#: netbox/templates/account/notifications.html:7 -#: netbox/templates/inc/user_menu.html:15 +#: templates/account/base.html:13 templates/account/notifications.html:7 +#: templates/inc/user_menu.html:15 msgid "Notifications" msgstr "Уведомления" -#: netbox/templates/account/base.html:16 -#: netbox/templates/account/subscriptions.html:7 -#: netbox/templates/inc/user_menu.html:51 +#: templates/account/base.html:16 templates/account/subscriptions.html:7 +#: templates/inc/user_menu.html:51 msgid "Subscriptions" msgstr "Подписки" -#: netbox/templates/account/base.html:19 -#: netbox/templates/inc/user_menu.html:54 +#: templates/account/base.html:19 templates/inc/user_menu.html:54 msgid "Preferences" msgstr "Настройки" -#: netbox/templates/account/password.html:5 +#: templates/account/password.html:5 msgid "Change Password" msgstr "Изменить пароль" -#: netbox/templates/account/password.html:19 -#: netbox/templates/account/preferences.html:77 -#: netbox/templates/core/configrevision_restore.html:63 -#: netbox/templates/dcim/devicebay_populate.html:34 -#: netbox/templates/dcim/virtualchassis_add_member.html:26 -#: netbox/templates/dcim/virtualchassis_edit.html:103 -#: netbox/templates/extras/object_journal.html:26 -#: netbox/templates/extras/script.html:38 -#: netbox/templates/generic/bulk_add_component.html:67 -#: netbox/templates/generic/bulk_delete.html:65 -#: netbox/templates/generic/bulk_edit.html:106 -#: netbox/templates/generic/bulk_import.html:56 -#: netbox/templates/generic/bulk_import.html:78 -#: netbox/templates/generic/bulk_import.html:100 -#: netbox/templates/generic/bulk_remove.html:62 -#: netbox/templates/generic/bulk_rename.html:63 -#: netbox/templates/generic/confirmation_form.html:19 -#: netbox/templates/generic/object_edit.html:72 -#: netbox/templates/htmx/delete_form.html:53 -#: netbox/templates/htmx/delete_form.html:55 -#: netbox/templates/ipam/ipaddress_assign.html:28 -#: netbox/templates/virtualization/cluster_add_devices.html:30 +#: templates/account/password.html:19 templates/account/preferences.html:77 +#: templates/core/configrevision_restore.html:63 +#: templates/dcim/devicebay_populate.html:34 +#: templates/dcim/virtualchassis_add_member.html:26 +#: templates/dcim/virtualchassis_edit.html:103 +#: templates/extras/object_journal.html:26 templates/extras/script.html:38 +#: templates/generic/bulk_add_component.html:67 +#: templates/generic/bulk_delete.html:65 templates/generic/bulk_edit.html:106 +#: templates/generic/bulk_import.html:56 templates/generic/bulk_import.html:78 +#: templates/generic/bulk_import.html:100 +#: templates/generic/bulk_remove.html:62 templates/generic/bulk_rename.html:63 +#: templates/generic/confirmation_form.html:19 +#: templates/generic/object_edit.html:72 templates/htmx/delete_form.html:53 +#: templates/htmx/delete_form.html:55 templates/ipam/ipaddress_assign.html:28 +#: templates/virtualization/cluster_add_devices.html:30 msgid "Cancel" msgstr "Отменить" -#: netbox/templates/account/password.html:20 -#: netbox/templates/account/preferences.html:78 -#: netbox/templates/dcim/devicebay_populate.html:35 -#: netbox/templates/dcim/virtualchassis_add_member.html:28 -#: netbox/templates/dcim/virtualchassis_edit.html:105 -#: netbox/templates/extras/dashboard/widget_add.html:26 -#: netbox/templates/extras/dashboard/widget_config.html:19 -#: netbox/templates/extras/object_journal.html:27 -#: netbox/templates/generic/object_edit.html:75 -#: netbox/utilities/templates/helpers/applied_filters.html:16 -#: netbox/utilities/templates/helpers/table_config_form.html:40 +#: templates/account/password.html:20 templates/account/preferences.html:78 +#: templates/dcim/devicebay_populate.html:35 +#: templates/dcim/virtualchassis_add_member.html:28 +#: templates/dcim/virtualchassis_edit.html:105 +#: templates/extras/dashboard/widget_add.html:26 +#: templates/extras/dashboard/widget_config.html:19 +#: templates/extras/object_journal.html:27 +#: templates/generic/object_edit.html:75 +#: utilities/templates/helpers/applied_filters.html:16 +#: utilities/templates/helpers/table_config_form.html:40 msgid "Save" msgstr "Сохранить" -#: netbox/templates/account/preferences.html:34 +#: templates/account/preferences.html:34 msgid "Table Configurations" msgstr "Конфигурации таблиц" -#: netbox/templates/account/preferences.html:39 +#: templates/account/preferences.html:39 msgid "Clear table preferences" msgstr "Очистить настройки таблицы" -#: netbox/templates/account/preferences.html:47 +#: templates/account/preferences.html:47 msgid "Toggle All" msgstr "Переключить все" -#: netbox/templates/account/preferences.html:49 +#: templates/account/preferences.html:49 msgid "Table" msgstr "Таблица" -#: netbox/templates/account/preferences.html:50 +#: templates/account/preferences.html:50 msgid "Ordering" msgstr "Заказ" -#: netbox/templates/account/preferences.html:51 +#: templates/account/preferences.html:51 msgid "Columns" msgstr "Колонны" -#: netbox/templates/account/preferences.html:71 -#: netbox/templates/dcim/cable_trace.html:113 -#: netbox/templates/extras/object_configcontext.html:43 +#: templates/account/preferences.html:71 templates/dcim/cable_trace.html:113 +#: templates/extras/object_configcontext.html:43 msgid "None found" msgstr "Ничего не найдено" -#: netbox/templates/account/profile.html:6 +#: templates/account/profile.html:6 msgid "User Profile" msgstr "Профиль пользователя" -#: netbox/templates/account/profile.html:12 +#: templates/account/profile.html:12 msgid "Account Details" msgstr "Сведения об учетной записи" -#: netbox/templates/account/profile.html:29 -#: netbox/templates/tenancy/contact.html:43 -#: netbox/templates/users/user.html:25 netbox/tenancy/forms/bulk_edit.py:109 +#: templates/account/profile.html:29 templates/tenancy/contact.html:43 +#: templates/users/user.html:25 tenancy/forms/bulk_edit.py:109 msgid "Email" msgstr "Электронная почта" -#: netbox/templates/account/profile.html:33 -#: netbox/templates/users/user.html:29 +#: templates/account/profile.html:33 templates/users/user.html:29 msgid "Account Created" msgstr "Учетная запись создана" -#: netbox/templates/account/profile.html:37 -#: netbox/templates/users/user.html:33 +#: templates/account/profile.html:37 templates/users/user.html:33 msgid "Last Login" msgstr "Последний вход в систему" -#: netbox/templates/account/profile.html:41 -#: netbox/templates/users/user.html:45 +#: templates/account/profile.html:41 templates/users/user.html:45 msgid "Superuser" msgstr "Суперпользователь" -#: netbox/templates/account/profile.html:45 -#: netbox/templates/inc/user_menu.html:31 netbox/templates/users/user.html:41 +#: templates/account/profile.html:45 templates/inc/user_menu.html:31 +#: templates/users/user.html:41 msgid "Staff" msgstr "Персонал" -#: netbox/templates/account/profile.html:53 -#: netbox/templates/users/objectpermission.html:82 -#: netbox/templates/users/user.html:53 +#: templates/account/profile.html:53 templates/users/objectpermission.html:82 +#: templates/users/user.html:53 msgid "Assigned Groups" msgstr "Назначенные группы" -#: netbox/templates/account/profile.html:58 -#: netbox/templates/circuits/circuit_terminations_swap.html:18 -#: netbox/templates/circuits/circuit_terminations_swap.html:26 -#: netbox/templates/circuits/circuittermination.html:34 -#: netbox/templates/circuits/inc/circuit_termination.html:68 -#: netbox/templates/core/objectchange.html:124 -#: netbox/templates/core/objectchange.html:142 -#: netbox/templates/dcim/devicebay.html:59 -#: netbox/templates/dcim/inc/panels/inventory_items.html:45 -#: netbox/templates/dcim/interface.html:296 -#: netbox/templates/dcim/modulebay.html:80 -#: netbox/templates/extras/configcontext.html:70 -#: netbox/templates/extras/eventrule.html:66 -#: netbox/templates/extras/htmx/script_result.html:60 -#: netbox/templates/extras/webhook.html:65 -#: netbox/templates/extras/webhook.html:75 -#: netbox/templates/inc/panel_table.html:13 -#: netbox/templates/inc/panels/comments.html:10 -#: netbox/templates/ipam/inc/panels/fhrp_groups.html:56 -#: netbox/templates/users/group.html:34 netbox/templates/users/group.html:44 -#: netbox/templates/users/objectpermission.html:77 -#: netbox/templates/users/objectpermission.html:87 -#: netbox/templates/users/user.html:58 netbox/templates/users/user.html:68 +#: templates/account/profile.html:58 +#: templates/circuits/circuit_terminations_swap.html:18 +#: templates/circuits/circuit_terminations_swap.html:26 +#: templates/circuits/circuittermination.html:34 +#: templates/circuits/inc/circuit_termination.html:68 +#: templates/core/objectchange.html:124 templates/core/objectchange.html:142 +#: templates/dcim/devicebay.html:59 +#: templates/dcim/inc/panels/inventory_items.html:45 +#: templates/dcim/interface.html:296 templates/dcim/modulebay.html:80 +#: templates/extras/configcontext.html:70 templates/extras/eventrule.html:66 +#: templates/extras/htmx/script_result.html:60 +#: templates/extras/webhook.html:65 templates/extras/webhook.html:75 +#: templates/inc/panel_table.html:13 templates/inc/panels/comments.html:10 +#: templates/ipam/inc/panels/fhrp_groups.html:56 templates/users/group.html:34 +#: templates/users/group.html:44 templates/users/objectpermission.html:77 +#: templates/users/objectpermission.html:87 templates/users/user.html:58 +#: templates/users/user.html:68 msgid "None" msgstr "Нет" -#: netbox/templates/account/profile.html:68 -#: netbox/templates/users/user.html:78 +#: templates/account/profile.html:68 templates/users/user.html:78 msgid "Recent Activity" msgstr "Недавняя активность" -#: netbox/templates/account/token.html:8 -#: netbox/templates/account/token_list.html:6 +#: templates/account/token.html:8 templates/account/token_list.html:6 msgid "My API Tokens" msgstr "Мои токены API" -#: netbox/templates/account/token.html:11 -#: netbox/templates/account/token.html:19 netbox/templates/users/token.html:6 -#: netbox/templates/users/token.html:14 netbox/users/forms/filtersets.py:120 +#: templates/account/token.html:11 templates/account/token.html:19 +#: templates/users/token.html:6 templates/users/token.html:14 +#: users/forms/filtersets.py:120 msgid "Token" msgstr "Токен" -#: netbox/templates/account/token.html:39 netbox/templates/users/token.html:31 -#: netbox/users/forms/bulk_edit.py:107 +#: templates/account/token.html:39 templates/users/token.html:31 +#: users/forms/bulk_edit.py:107 msgid "Write enabled" msgstr "Запись включена" -#: netbox/templates/account/token.html:51 netbox/templates/users/token.html:43 +#: templates/account/token.html:51 templates/users/token.html:43 msgid "Last used" msgstr "Последний раз использованный" -#: netbox/templates/account/token_list.html:12 +#: templates/account/token_list.html:12 msgid "Add a Token" msgstr "Добавить токен" -#: netbox/templates/base/base.html:22 netbox/templates/home.html:27 +#: templates/base/base.html:22 templates/home.html:27 msgid "Home" msgstr "Главная" -#: netbox/templates/base/layout.html:25 +#: templates/base/layout.html:25 msgid "NetBox Motif" msgstr "Мотив NetBox" -#: netbox/templates/base/layout.html:38 netbox/templates/base/layout.html:39 -#: netbox/templates/login.html:14 netbox/templates/login.html:15 +#: templates/base/layout.html:38 templates/base/layout.html:39 +#: templates/login.html:14 templates/login.html:15 msgid "NetBox Logo" msgstr "Логотип NetBox" -#: netbox/templates/base/layout.html:150 netbox/templates/base/layout.html:151 +#: templates/base/layout.html:150 templates/base/layout.html:151 msgid "Docs" msgstr "Документация" -#: netbox/templates/base/layout.html:156 netbox/templates/base/layout.html:157 -#: netbox/templates/rest_framework/api.html:10 +#: templates/base/layout.html:156 templates/base/layout.html:157 +#: templates/rest_framework/api.html:10 msgid "REST API" msgstr "REST API" -#: netbox/templates/base/layout.html:162 netbox/templates/base/layout.html:163 +#: templates/base/layout.html:162 templates/base/layout.html:163 msgid "REST API documentation" msgstr "Документация по REST API" -#: netbox/templates/base/layout.html:169 netbox/templates/base/layout.html:170 +#: templates/base/layout.html:169 templates/base/layout.html:170 msgid "GraphQL API" msgstr "API GraphQL" -#: netbox/templates/base/layout.html:185 netbox/templates/base/layout.html:186 +#: templates/base/layout.html:185 templates/base/layout.html:186 msgid "NetBox Labs Support" msgstr "Поддержка NetBox Labs" -#: netbox/templates/base/layout.html:194 netbox/templates/base/layout.html:195 +#: templates/base/layout.html:194 templates/base/layout.html:195 msgid "Source Code" msgstr "Исходный код" -#: netbox/templates/base/layout.html:200 netbox/templates/base/layout.html:201 +#: templates/base/layout.html:200 templates/base/layout.html:201 msgid "Community" msgstr "Сообщество" -#: netbox/templates/circuits/circuit.html:47 +#: templates/circuits/circuit.html:47 msgid "Install Date" msgstr "Дата установки" -#: netbox/templates/circuits/circuit.html:51 +#: templates/circuits/circuit.html:51 msgid "Termination Date" msgstr "Дата отключения" -#: netbox/templates/circuits/circuit.html:70 -#: netbox/templates/ipam/inc/panels/fhrp_groups.html:15 +#: templates/circuits/circuit.html:70 +#: templates/ipam/inc/panels/fhrp_groups.html:15 msgid "Assign Group" msgstr "Назначить группу" -#: netbox/templates/circuits/circuit_terminations_swap.html:4 +#: templates/circuits/circuit_terminations_swap.html:4 msgid "Swap Circuit Terminations" msgstr "Прерывания цепей Swap" -#: netbox/templates/circuits/circuit_terminations_swap.html:8 +#: templates/circuits/circuit_terminations_swap.html:8 #, python-format msgid "Swap these terminations for circuit %(circuit)s?" msgstr "" "Поменять местами эти эти точки подключения в канале связи %(circuit)s?" -#: netbox/templates/circuits/circuit_terminations_swap.html:14 +#: templates/circuits/circuit_terminations_swap.html:14 msgid "A side" msgstr "Сторона" -#: netbox/templates/circuits/circuit_terminations_swap.html:22 +#: templates/circuits/circuit_terminations_swap.html:22 msgid "Z side" msgstr "Сторона Z" -#: netbox/templates/circuits/circuitgroup.html:16 +#: templates/circuits/circuitgroup.html:16 msgid "Assign Circuit" msgstr "Назначить цепь" -#: netbox/templates/circuits/circuitgroupassignment.html:19 +#: templates/circuits/circuitgroupassignment.html:19 msgid "Circuit Group Assignment" msgstr "Назначение группы цепей" -#: netbox/templates/circuits/circuittype.html:10 +#: templates/circuits/circuittype.html:10 msgid "Add Circuit" msgstr "Добавить канал связи" -#: netbox/templates/circuits/circuittype.html:19 +#: templates/circuits/circuittype.html:19 msgid "Circuit Type" msgstr "Тип канала связи" -#: netbox/templates/circuits/inc/circuit_termination.html:10 -#: netbox/templates/dcim/devicetype/component_templates.html:33 -#: netbox/templates/dcim/manufacturer.html:11 -#: netbox/templates/dcim/moduletype/component_templates.html:29 -#: netbox/templates/generic/bulk_add_component.html:22 -#: netbox/templates/users/objectpermission.html:38 -#: netbox/utilities/templates/buttons/add.html:4 -#: netbox/utilities/templates/helpers/table_config_form.html:20 +#: templates/circuits/inc/circuit_termination.html:10 +#: templates/dcim/manufacturer.html:11 +#: templates/generic/bulk_add_component.html:22 +#: templates/users/objectpermission.html:38 +#: utilities/templates/buttons/add.html:4 +#: utilities/templates/helpers/table_config_form.html:20 msgid "Add" msgstr "Добавить" -#: netbox/templates/circuits/inc/circuit_termination.html:15 -#: netbox/templates/circuits/inc/circuit_termination_fields.html:36 -#: netbox/templates/dcim/inc/panels/inventory_items.html:32 -#: netbox/templates/dcim/moduletype/component_templates.html:20 -#: netbox/templates/dcim/powerpanel.html:56 -#: netbox/templates/extras/script_list.html:30 -#: netbox/templates/generic/object_edit.html:47 -#: netbox/templates/ipam/inc/ipaddress_edit_header.html:7 -#: netbox/templates/ipam/inc/panels/fhrp_groups.html:43 -#: netbox/utilities/templates/buttons/edit.html:3 +#: templates/circuits/inc/circuit_termination.html:15 +#: templates/circuits/inc/circuit_termination_fields.html:36 +#: templates/dcim/inc/panels/inventory_items.html:32 +#: templates/dcim/powerpanel.html:56 templates/extras/script_list.html:30 +#: templates/generic/object_edit.html:47 +#: templates/ipam/inc/ipaddress_edit_header.html:7 +#: templates/ipam/inc/panels/fhrp_groups.html:43 +#: utilities/templates/buttons/edit.html:3 msgid "Edit" msgstr "Редактировать" -#: netbox/templates/circuits/inc/circuit_termination.html:18 +#: templates/circuits/inc/circuit_termination.html:18 msgid "Swap" msgstr "Обмен" -#: netbox/templates/circuits/inc/circuit_termination_fields.html:19 -#: netbox/templates/dcim/consoleport.html:59 -#: netbox/templates/dcim/consoleserverport.html:60 -#: netbox/templates/dcim/powerfeed.html:114 +#: templates/circuits/inc/circuit_termination_fields.html:19 +#: templates/dcim/consoleport.html:59 templates/dcim/consoleserverport.html:60 +#: templates/dcim/powerfeed.html:114 msgid "Marked as connected" msgstr "Отмечено как подключенное" -#: netbox/templates/circuits/inc/circuit_termination_fields.html:21 +#: templates/circuits/inc/circuit_termination_fields.html:21 msgid "to" msgstr "к" -#: netbox/templates/circuits/inc/circuit_termination_fields.html:31 -#: netbox/templates/circuits/inc/circuit_termination_fields.html:32 -#: netbox/templates/dcim/frontport.html:80 -#: netbox/templates/dcim/inc/connection_endpoints.html:7 -#: netbox/templates/dcim/interface.html:154 -#: netbox/templates/dcim/rearport.html:76 +#: templates/circuits/inc/circuit_termination_fields.html:31 +#: templates/circuits/inc/circuit_termination_fields.html:32 +#: templates/dcim/frontport.html:80 +#: templates/dcim/inc/connection_endpoints.html:7 +#: templates/dcim/interface.html:154 templates/dcim/rearport.html:76 msgid "Trace" msgstr "Следить" -#: netbox/templates/circuits/inc/circuit_termination_fields.html:35 +#: templates/circuits/inc/circuit_termination_fields.html:35 msgid "Edit cable" msgstr "Редактирование кабеля" -#: netbox/templates/circuits/inc/circuit_termination_fields.html:40 +#: templates/circuits/inc/circuit_termination_fields.html:40 msgid "Remove cable" msgstr "Извлеките кабель" -#: netbox/templates/circuits/inc/circuit_termination_fields.html:41 -#: netbox/templates/dcim/bulk_disconnect.html:5 -#: netbox/templates/dcim/device/consoleports.html:12 -#: netbox/templates/dcim/device/consoleserverports.html:12 -#: netbox/templates/dcim/device/frontports.html:12 -#: netbox/templates/dcim/device/interfaces.html:16 -#: netbox/templates/dcim/device/poweroutlets.html:12 -#: netbox/templates/dcim/device/powerports.html:12 -#: netbox/templates/dcim/device/rearports.html:12 -#: netbox/templates/dcim/powerpanel.html:61 +#: templates/circuits/inc/circuit_termination_fields.html:41 +#: templates/dcim/bulk_disconnect.html:5 +#: templates/dcim/device/consoleports.html:12 +#: templates/dcim/device/consoleserverports.html:12 +#: templates/dcim/device/frontports.html:12 +#: templates/dcim/device/interfaces.html:16 +#: templates/dcim/device/poweroutlets.html:12 +#: templates/dcim/device/powerports.html:12 +#: templates/dcim/device/rearports.html:12 templates/dcim/powerpanel.html:61 msgid "Disconnect" msgstr "Отключить" -#: netbox/templates/circuits/inc/circuit_termination_fields.html:48 -#: netbox/templates/dcim/consoleport.html:69 -#: netbox/templates/dcim/consoleserverport.html:70 -#: netbox/templates/dcim/frontport.html:102 -#: netbox/templates/dcim/interface.html:180 -#: netbox/templates/dcim/interface.html:200 -#: netbox/templates/dcim/powerfeed.html:127 -#: netbox/templates/dcim/poweroutlet.html:71 -#: netbox/templates/dcim/poweroutlet.html:72 -#: netbox/templates/dcim/powerport.html:73 -#: netbox/templates/dcim/rearport.html:98 +#: templates/circuits/inc/circuit_termination_fields.html:48 +#: templates/dcim/consoleport.html:69 templates/dcim/consoleserverport.html:70 +#: templates/dcim/frontport.html:102 templates/dcim/interface.html:180 +#: templates/dcim/interface.html:200 templates/dcim/powerfeed.html:127 +#: templates/dcim/poweroutlet.html:71 templates/dcim/poweroutlet.html:72 +#: templates/dcim/powerport.html:73 templates/dcim/rearport.html:98 msgid "Connect" msgstr "Подключить" -#: netbox/templates/circuits/inc/circuit_termination_fields.html:70 +#: templates/circuits/inc/circuit_termination_fields.html:70 msgid "Downstream" msgstr "Ниже по течению" -#: netbox/templates/circuits/inc/circuit_termination_fields.html:71 +#: templates/circuits/inc/circuit_termination_fields.html:71 msgid "Upstream" msgstr "Вверх по течению" -#: netbox/templates/circuits/inc/circuit_termination_fields.html:80 +#: templates/circuits/inc/circuit_termination_fields.html:80 msgid "Cross-Connect" msgstr "Кросс-коннект" -#: netbox/templates/circuits/inc/circuit_termination_fields.html:84 +#: templates/circuits/inc/circuit_termination_fields.html:84 msgid "Patch Panel/Port" msgstr "Патч-панель/порт" -#: netbox/templates/circuits/provider.html:11 +#: templates/circuits/provider.html:11 msgid "Add circuit" msgstr "Добавить канал связи" -#: netbox/templates/circuits/provideraccount.html:17 +#: templates/circuits/provideraccount.html:17 msgid "Provider Account" msgstr "Учетная запись поставщика" -#: netbox/templates/core/configrevision.html:35 +#: templates/core/configrevision.html:35 msgid "Configuration Data" msgstr "Конфигурационные данные" -#: netbox/templates/core/configrevision.html:40 +#: templates/core/configrevision.html:40 msgid "Comment" msgstr "Комментарий" -#: netbox/templates/core/configrevision_restore.html:8 -#: netbox/templates/core/configrevision_restore.html:25 -#: netbox/templates/core/configrevision_restore.html:64 +#: templates/core/configrevision_restore.html:8 +#: templates/core/configrevision_restore.html:25 +#: templates/core/configrevision_restore.html:64 msgid "Restore" msgstr "Восстановить" -#: netbox/templates/core/configrevision_restore.html:36 +#: templates/core/configrevision_restore.html:36 msgid "Parameter" msgstr "Параметр" -#: netbox/templates/core/configrevision_restore.html:37 +#: templates/core/configrevision_restore.html:37 msgid "Current Value" msgstr "Текущее значение" -#: netbox/templates/core/configrevision_restore.html:38 +#: templates/core/configrevision_restore.html:38 msgid "New Value" msgstr "Новое значение" -#: netbox/templates/core/configrevision_restore.html:50 +#: templates/core/configrevision_restore.html:50 msgid "Changed" msgstr "Изменено" -#: netbox/templates/core/datafile.html:42 -#: netbox/templates/ipam/iprange.html:25 -#: netbox/templates/virtualization/virtualdisk.html:29 -#: netbox/virtualization/tables/virtualmachines.py:198 +#: templates/core/datafile.html:42 templates/ipam/iprange.html:25 +#: templates/virtualization/virtualdisk.html:29 +#: virtualization/tables/virtualmachines.py:198 msgid "Size" msgstr "Размер" -#: netbox/templates/core/datafile.html:43 +#: templates/core/datafile.html:43 msgid "bytes" msgstr "байтов" -#: netbox/templates/core/datafile.html:46 +#: templates/core/datafile.html:46 msgid "SHA256 Hash" msgstr "Хэш SHA256" -#: netbox/templates/core/datasource.html:14 -#: netbox/templates/core/datasource.html:20 -#: netbox/utilities/templates/buttons/sync.html:5 +#: templates/core/datasource.html:14 templates/core/datasource.html:20 +#: utilities/templates/buttons/sync.html:5 msgid "Sync" msgstr "Синхронизация" -#: netbox/templates/core/datasource.html:50 +#: templates/core/datasource.html:50 msgid "Last synced" msgstr "Последняя синхронизация" -#: netbox/templates/core/datasource.html:84 +#: templates/core/datasource.html:84 msgid "Backend" msgstr "Серверная часть" -#: netbox/templates/core/datasource.html:99 +#: templates/core/datasource.html:99 msgid "No parameters defined" msgstr "Параметры не определены" -#: netbox/templates/core/datasource.html:114 +#: templates/core/datasource.html:114 msgid "Files" msgstr "файлы" -#: netbox/templates/core/inc/config_data.html:7 +#: templates/core/inc/config_data.html:7 msgid "Rack elevations" msgstr "Высота стеллажей" -#: netbox/templates/core/inc/config_data.html:10 +#: templates/core/inc/config_data.html:10 msgid "Default unit height" msgstr "Высота юнита по умолчанию" -#: netbox/templates/core/inc/config_data.html:14 +#: templates/core/inc/config_data.html:14 msgid "Default unit width" msgstr "Ширина юнита по умолчанию" -#: netbox/templates/core/inc/config_data.html:20 +#: templates/core/inc/config_data.html:20 msgid "Power feeds" msgstr "Источники питания" -#: netbox/templates/core/inc/config_data.html:23 +#: templates/core/inc/config_data.html:23 msgid "Default voltage" msgstr "Напряжение по умолчанию" -#: netbox/templates/core/inc/config_data.html:27 +#: templates/core/inc/config_data.html:27 msgid "Default amperage" msgstr "Сила тока по умолчанию" -#: netbox/templates/core/inc/config_data.html:31 +#: templates/core/inc/config_data.html:31 msgid "Default max utilization" msgstr "Максимальное использование по умолчанию" -#: netbox/templates/core/inc/config_data.html:40 +#: templates/core/inc/config_data.html:40 msgid "Enforce global unique" msgstr "Обеспечьте глобальную уникальность" -#: netbox/templates/core/inc/config_data.html:83 +#: templates/core/inc/config_data.html:83 msgid "Paginate count" msgstr "Количество страниц" -#: netbox/templates/core/inc/config_data.html:87 +#: templates/core/inc/config_data.html:87 msgid "Max page size" msgstr "Максимальный размер страницы" -#: netbox/templates/core/inc/config_data.html:114 +#: templates/core/inc/config_data.html:114 msgid "User preferences" msgstr "Пользовательские предпочтения" -#: netbox/templates/core/inc/config_data.html:141 +#: templates/core/inc/config_data.html:141 msgid "Job retention" msgstr "Сохранение рабочих мест" -#: netbox/templates/core/job.html:35 netbox/templates/core/rq_task.html:12 -#: netbox/templates/core/rq_task.html:49 netbox/templates/core/rq_task.html:58 +#: templates/core/job.html:35 templates/core/rq_task.html:12 +#: templates/core/rq_task.html:49 templates/core/rq_task.html:58 msgid "Job" msgstr "Задача" -#: netbox/templates/core/job.html:58 -#: netbox/templates/extras/journalentry.html:26 +#: templates/core/job.html:58 templates/extras/journalentry.html:26 msgid "Created By" msgstr "Создано" -#: netbox/templates/core/job.html:66 +#: templates/core/job.html:66 msgid "Scheduling" msgstr "Планирование" -#: netbox/templates/core/job.html:77 +#: templates/core/job.html:77 #, python-format msgid "every %(interval)s minutes" msgstr "каждый %(interval)s протокол" -#: netbox/templates/core/objectchange.html:29 -#: netbox/templates/users/objectpermission.html:42 +#: templates/core/objectchange.html:29 +#: templates/users/objectpermission.html:42 msgid "Change" msgstr "Изменить" -#: netbox/templates/core/objectchange.html:79 +#: templates/core/objectchange.html:79 msgid "Difference" msgstr "Разница" -#: netbox/templates/core/objectchange.html:82 +#: templates/core/objectchange.html:82 msgid "Previous" msgstr "Предыдущий" -#: netbox/templates/core/objectchange.html:85 +#: templates/core/objectchange.html:85 msgid "Next" msgstr "Следующий" -#: netbox/templates/core/objectchange.html:93 +#: templates/core/objectchange.html:93 msgid "Object Created" msgstr "Объект создан" -#: netbox/templates/core/objectchange.html:95 +#: templates/core/objectchange.html:95 msgid "Object Deleted" msgstr "Объект удален" -#: netbox/templates/core/objectchange.html:97 +#: templates/core/objectchange.html:97 msgid "No Changes" msgstr "Без изменений" -#: netbox/templates/core/objectchange.html:111 +#: templates/core/objectchange.html:111 msgid "Pre-Change Data" msgstr "Данные перед изменением" -#: netbox/templates/core/objectchange.html:122 +#: templates/core/objectchange.html:122 msgid "Warning: Comparing non-atomic change to previous change record" msgstr "" "Предупреждение: сравнение неатомарного изменения с предыдущей записью " "изменений" -#: netbox/templates/core/objectchange.html:131 +#: templates/core/objectchange.html:131 msgid "Post-Change Data" msgstr "Данные после изменений" -#: netbox/templates/core/objectchange.html:162 +#: templates/core/objectchange.html:162 #, python-format msgid "See All %(count)s Changes" msgstr "Показать все %(count)s Изменения" -#: netbox/templates/core/objectchange_list.html:9 -#: netbox/templates/extras/object_changelog.html:15 +#: templates/core/objectchange_list.html:9 +#: templates/extras/object_changelog.html:15 msgid "Change log retention" msgstr "Хранение журнала изменений" -#: netbox/templates/core/objectchange_list.html:9 -#: netbox/templates/extras/object_changelog.html:15 +#: templates/core/objectchange_list.html:9 +#: templates/extras/object_changelog.html:15 msgid "days" msgstr "дни" -#: netbox/templates/core/objectchange_list.html:9 -#: netbox/templates/extras/object_changelog.html:15 +#: templates/core/objectchange_list.html:9 +#: templates/extras/object_changelog.html:15 msgid "Indefinite" msgstr "Бессрочно" -#: netbox/templates/core/plugin.html:21 +#: templates/core/plugin.html:22 msgid "Not installed" msgstr "Не установлено" -#: netbox/templates/core/plugin.html:32 +#: templates/core/plugin.html:33 msgid "Overview" msgstr "Обзор" -#: netbox/templates/core/plugin.html:38 +#: templates/core/plugin.html:39 msgid "Install" msgstr "Установить" -#: netbox/templates/core/plugin.html:50 +#: templates/core/plugin.html:51 msgid "Plugin Details" msgstr "Сведения о плагине" -#: netbox/templates/core/plugin.html:57 +#: templates/core/plugin.html:58 msgid "Summary" msgstr "Резюме" -#: netbox/templates/core/plugin.html:75 +#: templates/core/plugin.html:76 msgid "License" msgstr "Лицензия" -#: netbox/templates/core/plugin.html:95 +#: templates/core/plugin.html:96 msgid "Version History" msgstr "История версий" -#: netbox/templates/core/plugin.html:106 +#: templates/core/plugin.html:107 msgid "Local Installation Instructions" msgstr "Инструкции по локальной установке" -#: netbox/templates/core/rq_queue_list.html:5 -#: netbox/templates/core/rq_queue_list.html:13 -#: netbox/templates/core/rq_task_list.html:14 -#: netbox/templates/core/rq_worker.html:7 +#: templates/core/rq_queue_list.html:5 templates/core/rq_queue_list.html:13 +#: templates/core/rq_task_list.html:14 templates/core/rq_worker.html:7 msgid "Background Queues" msgstr "Фоновые очереди" -#: netbox/templates/core/rq_queue_list.html:24 -#: netbox/templates/core/rq_queue_list.html:25 -#: netbox/templates/core/rq_worker_list.html:49 -#: netbox/templates/core/rq_worker_list.html:50 -#: netbox/templates/extras/script_result.html:67 -#: netbox/templates/extras/script_result.html:69 -#: netbox/templates/inc/table_controls_htmx.html:30 -#: netbox/templates/inc/table_controls_htmx.html:33 +#: templates/core/rq_queue_list.html:24 templates/core/rq_queue_list.html:25 +#: templates/core/rq_worker_list.html:49 templates/core/rq_worker_list.html:50 +#: templates/extras/script_result.html:67 +#: templates/extras/script_result.html:69 +#: templates/inc/table_controls_htmx.html:30 +#: templates/inc/table_controls_htmx.html:33 msgid "Configure Table" msgstr "Настроить таблицу" -#: netbox/templates/core/rq_task.html:29 +#: templates/core/rq_task.html:29 msgid "Stop" msgstr "Стоп" -#: netbox/templates/core/rq_task.html:34 +#: templates/core/rq_task.html:34 msgid "Requeue" msgstr "Запросить" -#: netbox/templates/core/rq_task.html:39 +#: templates/core/rq_task.html:39 msgid "Enqueue" msgstr "Поставить в очередь" -#: netbox/templates/core/rq_task.html:61 +#: templates/core/rq_task.html:61 msgid "Queue" msgstr "Очередь" -#: netbox/templates/core/rq_task.html:65 +#: templates/core/rq_task.html:65 msgid "Timeout" msgstr "Тайм-аут" -#: netbox/templates/core/rq_task.html:69 +#: templates/core/rq_task.html:69 msgid "Result TTL" msgstr "Результат TTL" -#: netbox/templates/core/rq_task.html:89 +#: templates/core/rq_task.html:89 msgid "Meta" msgstr "Мета" -#: netbox/templates/core/rq_task.html:93 +#: templates/core/rq_task.html:93 msgid "Arguments" msgstr "Аргументы" -#: netbox/templates/core/rq_task.html:97 +#: templates/core/rq_task.html:97 msgid "Keyword Arguments" msgstr "Аргументы ключевых слов" -#: netbox/templates/core/rq_task.html:103 +#: templates/core/rq_task.html:103 msgid "Depends on" msgstr "Зависит от" -#: netbox/templates/core/rq_task.html:109 +#: templates/core/rq_task.html:109 msgid "Exception" msgstr "Исключение" -#: netbox/templates/core/rq_task_list.html:28 +#: templates/core/rq_task_list.html:28 msgid "tasks in " msgstr "задачи в " -#: netbox/templates/core/rq_task_list.html:33 +#: templates/core/rq_task_list.html:33 msgid "Queued Jobs" msgstr "Задачи в очереди" -#: netbox/templates/core/rq_task_list.html:64 -#: netbox/templates/extras/script_result.html:86 +#: templates/core/rq_task_list.html:64 templates/extras/script_result.html:86 #, python-format msgid "" "Select all %(count)s %(object_type_plural)s matching query" @@ -12269,397 +11593,382 @@ msgstr "" "Выберите все %(count)s %(object_type_plural)s " "соответствующий запрос" -#: netbox/templates/core/rq_worker.html:10 +#: templates/core/rq_worker.html:10 msgid "Worker Info" msgstr "Информация о рабочем процессе" -#: netbox/templates/core/rq_worker.html:31 -#: netbox/templates/core/rq_worker.html:40 +#: templates/core/rq_worker.html:31 templates/core/rq_worker.html:40 msgid "Worker" msgstr "Рабочий процесс" -#: netbox/templates/core/rq_worker.html:55 +#: templates/core/rq_worker.html:55 msgid "Queues" msgstr "Очереди" -#: netbox/templates/core/rq_worker.html:63 +#: templates/core/rq_worker.html:63 msgid "Curent Job" msgstr "Текущая задача" -#: netbox/templates/core/rq_worker.html:67 +#: templates/core/rq_worker.html:67 msgid "Successful job count" msgstr "Количество успешных задач" -#: netbox/templates/core/rq_worker.html:71 +#: templates/core/rq_worker.html:71 msgid "Failed job count" msgstr "Количество неуспешных задач" -#: netbox/templates/core/rq_worker.html:75 +#: templates/core/rq_worker.html:75 msgid "Total working time" msgstr "Общее рабочее время" -#: netbox/templates/core/rq_worker.html:76 +#: templates/core/rq_worker.html:76 msgid "seconds" msgstr "секунды" -#: netbox/templates/core/rq_worker_list.html:13 -#: netbox/templates/core/rq_worker_list.html:21 +#: templates/core/rq_worker_list.html:13 templates/core/rq_worker_list.html:21 msgid "Background Workers" msgstr "Фоновые рабочие процессы" -#: netbox/templates/core/rq_worker_list.html:29 +#: templates/core/rq_worker_list.html:29 #, python-format msgid "Workers in %(queue_name)s" msgstr "Рабочие процессы в %(queue_name)s" -#: netbox/templates/core/system.html:11 -#: netbox/utilities/templates/buttons/export.html:4 +#: templates/core/system.html:11 utilities/templates/buttons/export.html:4 msgid "Export" msgstr "Экспорт" -#: netbox/templates/core/system.html:28 +#: templates/core/system.html:28 msgid "System Status" msgstr "Состояние системы" -#: netbox/templates/core/system.html:31 +#: templates/core/system.html:31 msgid "NetBox release" msgstr "Релиз NetBox" -#: netbox/templates/core/system.html:44 +#: templates/core/system.html:44 msgid "Django version" msgstr "Версия для Django" -#: netbox/templates/core/system.html:48 +#: templates/core/system.html:48 msgid "PostgreSQL version" msgstr "Версия PostgreSQL" -#: netbox/templates/core/system.html:52 +#: templates/core/system.html:52 msgid "Database name" msgstr "Имя базы данных" -#: netbox/templates/core/system.html:56 +#: templates/core/system.html:56 msgid "Database size" msgstr "Размер базы данных" -#: netbox/templates/core/system.html:61 +#: templates/core/system.html:61 msgid "Unavailable" msgstr "Недоступно" -#: netbox/templates/core/system.html:66 +#: templates/core/system.html:66 msgid "RQ workers" msgstr "Рабочие процессы RQ" -#: netbox/templates/core/system.html:69 +#: templates/core/system.html:69 msgid "default queue" msgstr "очередь по умолчанию" -#: netbox/templates/core/system.html:73 +#: templates/core/system.html:73 msgid "System time" msgstr "Системное время" -#: netbox/templates/core/system.html:85 +#: templates/core/system.html:85 msgid "Current Configuration" msgstr "Текущая конфигурация" -#: netbox/templates/dcim/bulk_disconnect.html:9 +#: templates/dcim/bulk_disconnect.html:9 #, python-format msgid "" "Are you sure you want to disconnect these %(count)s %(obj_type_plural)s?" msgstr "Вы действительно хотите отключить их? %(count)s %(obj_type_plural)s?" -#: netbox/templates/dcim/cable_trace.html:10 +#: templates/dcim/cable_trace.html:10 #, python-format msgid "Cable Trace for %(object_type)s %(object)s" msgstr "Трассировка кабелей для %(object_type)s %(object)s" -#: netbox/templates/dcim/cable_trace.html:24 -#: netbox/templates/dcim/inc/rack_elevation.html:7 +#: templates/dcim/cable_trace.html:24 templates/dcim/inc/rack_elevation.html:7 msgid "Download SVG" msgstr "Загрузить SVG" -#: netbox/templates/dcim/cable_trace.html:30 +#: templates/dcim/cable_trace.html:30 msgid "Asymmetric Path" msgstr "Асимметричный путь" -#: netbox/templates/dcim/cable_trace.html:31 +#: templates/dcim/cable_trace.html:31 msgid "The nodes below have no links and result in an asymmetric path" msgstr "" "Приведенные ниже узлы не имеют ссылок и обеспечивают асимметричный путь" -#: netbox/templates/dcim/cable_trace.html:38 +#: templates/dcim/cable_trace.html:38 msgid "Path split" msgstr "Разделение путей" -#: netbox/templates/dcim/cable_trace.html:39 +#: templates/dcim/cable_trace.html:39 msgid "Select a node below to continue" msgstr "Выберите узел ниже, чтобы продолжить" -#: netbox/templates/dcim/cable_trace.html:55 +#: templates/dcim/cable_trace.html:55 msgid "Trace Completed" msgstr "Трассировка завершена" -#: netbox/templates/dcim/cable_trace.html:58 +#: templates/dcim/cable_trace.html:58 msgid "Total segments" msgstr "Всего сегментов" -#: netbox/templates/dcim/cable_trace.html:62 +#: templates/dcim/cable_trace.html:62 msgid "Total length" msgstr "Общая длина" -#: netbox/templates/dcim/cable_trace.html:77 +#: templates/dcim/cable_trace.html:77 msgid "No paths found" msgstr "Пути не найдены" -#: netbox/templates/dcim/cable_trace.html:85 +#: templates/dcim/cable_trace.html:85 msgid "Related Paths" msgstr "Связанные пути" -#: netbox/templates/dcim/cable_trace.html:89 +#: templates/dcim/cable_trace.html:89 msgid "Origin" msgstr "Происхождение" -#: netbox/templates/dcim/cable_trace.html:90 +#: templates/dcim/cable_trace.html:90 msgid "Destination" msgstr "Пункт назначения" -#: netbox/templates/dcim/cable_trace.html:91 +#: templates/dcim/cable_trace.html:91 msgid "Segments" msgstr "Сегменты" -#: netbox/templates/dcim/cable_trace.html:104 +#: templates/dcim/cable_trace.html:104 msgid "Incomplete" msgstr "Неполный" -#: netbox/templates/dcim/component_list.html:14 +#: templates/dcim/component_list.html:14 msgid "Rename Selected" msgstr "Переименовать Выбранное" -#: netbox/templates/dcim/consoleport.html:65 -#: netbox/templates/dcim/consoleserverport.html:66 -#: netbox/templates/dcim/frontport.html:98 -#: netbox/templates/dcim/interface.html:176 -#: netbox/templates/dcim/poweroutlet.html:69 -#: netbox/templates/dcim/powerport.html:69 +#: templates/dcim/consoleport.html:65 templates/dcim/consoleserverport.html:66 +#: templates/dcim/frontport.html:98 templates/dcim/interface.html:176 +#: templates/dcim/poweroutlet.html:69 templates/dcim/powerport.html:69 msgid "Not Connected" msgstr "Не подключено" -#: netbox/templates/dcim/device.html:34 +#: templates/dcim/device.html:34 msgid "Highlight device in rack" msgstr "Выделите устройство в стойке" -#: netbox/templates/dcim/device.html:55 +#: templates/dcim/device.html:55 msgid "Not racked" msgstr "Не в стойке" -#: netbox/templates/dcim/device.html:62 netbox/templates/dcim/site.html:94 +#: templates/dcim/device.html:62 templates/dcim/site.html:94 msgid "GPS Coordinates" msgstr "Координаты GPS" -#: netbox/templates/dcim/device.html:68 netbox/templates/dcim/site.html:81 -#: netbox/templates/dcim/site.html:100 +#: templates/dcim/device.html:68 templates/dcim/site.html:81 +#: templates/dcim/site.html:100 msgid "Map" msgstr "Карта" -#: netbox/templates/dcim/device.html:108 -#: netbox/templates/dcim/inventoryitem.html:56 -#: netbox/templates/dcim/module.html:81 -#: netbox/templates/dcim/modulebay.html:74 netbox/templates/dcim/rack.html:61 +#: templates/dcim/device.html:108 templates/dcim/inventoryitem.html:56 +#: templates/dcim/module.html:81 templates/dcim/modulebay.html:74 +#: templates/dcim/rack.html:61 msgid "Asset Tag" msgstr "Тег актива" -#: netbox/templates/dcim/device.html:123 +#: templates/dcim/device.html:123 msgid "View Virtual Chassis" msgstr "Смотреть виртуальное шасси" -#: netbox/templates/dcim/device.html:164 +#: templates/dcim/device.html:164 msgid "Create VDC" msgstr "Создайте VDC" -#: netbox/templates/dcim/device.html:175 -#: netbox/templates/dcim/device_edit.html:64 -#: netbox/virtualization/forms/model_forms.py:223 +#: templates/dcim/device.html:175 templates/dcim/device_edit.html:64 +#: virtualization/forms/model_forms.py:223 msgid "Management" msgstr "Управление" -#: netbox/templates/dcim/device.html:195 netbox/templates/dcim/device.html:211 -#: netbox/templates/dcim/device.html:227 -#: netbox/templates/virtualization/virtualmachine.html:57 -#: netbox/templates/virtualization/virtualmachine.html:73 +#: templates/dcim/device.html:195 templates/dcim/device.html:211 +#: templates/dcim/device.html:227 +#: templates/virtualization/virtualmachine.html:57 +#: templates/virtualization/virtualmachine.html:73 msgid "NAT for" msgstr "NAT для" -#: netbox/templates/dcim/device.html:197 netbox/templates/dcim/device.html:213 -#: netbox/templates/dcim/device.html:229 -#: netbox/templates/virtualization/virtualmachine.html:59 -#: netbox/templates/virtualization/virtualmachine.html:75 +#: templates/dcim/device.html:197 templates/dcim/device.html:213 +#: templates/dcim/device.html:229 +#: templates/virtualization/virtualmachine.html:59 +#: templates/virtualization/virtualmachine.html:75 msgid "NAT" msgstr "КОТ" -#: netbox/templates/dcim/device.html:252 netbox/templates/dcim/rack.html:73 +#: templates/dcim/device.html:252 templates/dcim/rack.html:73 msgid "Power Utilization" msgstr "Использование энергии" -#: netbox/templates/dcim/device.html:256 +#: templates/dcim/device.html:256 msgid "Input" msgstr "Ввод" -#: netbox/templates/dcim/device.html:257 +#: templates/dcim/device.html:257 msgid "Outlets" msgstr "Торговые точки" -#: netbox/templates/dcim/device.html:258 +#: templates/dcim/device.html:258 msgid "Allocated" msgstr "Выделено" -#: netbox/templates/dcim/device.html:268 netbox/templates/dcim/device.html:270 -#: netbox/templates/dcim/device.html:286 -#: netbox/templates/dcim/powerfeed.html:67 +#: templates/dcim/device.html:268 templates/dcim/device.html:270 +#: templates/dcim/device.html:286 templates/dcim/powerfeed.html:67 msgid "VA" msgstr "ВА" -#: netbox/templates/dcim/device.html:280 +#: templates/dcim/device.html:280 msgctxt "Leg of a power feed" msgid "Leg" msgstr "Ножка" -#: netbox/templates/dcim/device.html:306 -#: netbox/templates/virtualization/virtualmachine.html:158 +#: templates/dcim/device.html:306 +#: templates/virtualization/virtualmachine.html:158 msgid "Add a service" msgstr "Добавить службу" -#: netbox/templates/dcim/device/base.html:21 -#: netbox/templates/dcim/device_list.html:9 -#: netbox/templates/dcim/devicetype/base.html:18 -#: netbox/templates/dcim/module.html:18 -#: netbox/templates/dcim/moduletype/base.html:18 -#: netbox/templates/virtualization/virtualmachine/base.html:22 -#: netbox/templates/virtualization/virtualmachine_list.html:8 +#: templates/dcim/device/base.html:21 templates/dcim/device_list.html:9 +#: templates/dcim/devicetype/base.html:18 +#: templates/dcim/inc/moduletype_buttons.html:9 templates/dcim/module.html:18 +#: templates/virtualization/virtualmachine/base.html:22 +#: templates/virtualization/virtualmachine_list.html:8 msgid "Add Components" msgstr "Добавить компоненты" -#: netbox/templates/dcim/device/consoleports.html:24 +#: templates/dcim/device/consoleports.html:24 msgid "Add Console Ports" msgstr "Добавить консольные порты" -#: netbox/templates/dcim/device/consoleserverports.html:24 +#: templates/dcim/device/consoleserverports.html:24 msgid "Add Console Server Ports" msgstr "Добавить порты консольного сервера" -#: netbox/templates/dcim/device/devicebays.html:10 +#: templates/dcim/device/devicebays.html:10 msgid "Add Device Bays" msgstr "Добавить отсеки для устройств" -#: netbox/templates/dcim/device/frontports.html:24 +#: templates/dcim/device/frontports.html:24 msgid "Add Front Ports" msgstr "Добавить передние порты" -#: netbox/templates/dcim/device/inc/interface_table_controls.html:9 +#: templates/dcim/device/inc/interface_table_controls.html:9 msgid "Hide Enabled" msgstr "Скрыть включено" -#: netbox/templates/dcim/device/inc/interface_table_controls.html:10 +#: templates/dcim/device/inc/interface_table_controls.html:10 msgid "Hide Disabled" msgstr "Скрыть отключено" -#: netbox/templates/dcim/device/inc/interface_table_controls.html:11 +#: templates/dcim/device/inc/interface_table_controls.html:11 msgid "Hide Virtual" msgstr "Скрыть виртуальное" -#: netbox/templates/dcim/device/inc/interface_table_controls.html:12 +#: templates/dcim/device/inc/interface_table_controls.html:12 msgid "Hide Disconnected" msgstr "Скрыть отключено" -#: netbox/templates/dcim/device/interfaces.html:27 +#: templates/dcim/device/interfaces.html:27 msgid "Add Interfaces" msgstr "Добавить интерфейсы" -#: netbox/templates/dcim/device/inventory.html:10 -#: netbox/templates/dcim/inc/panels/inventory_items.html:10 +#: templates/dcim/device/inventory.html:10 +#: templates/dcim/inc/panels/inventory_items.html:10 msgid "Add Inventory Item" msgstr "Добавить инвентарь" -#: netbox/templates/dcim/device/modulebays.html:10 +#: templates/dcim/device/modulebays.html:10 msgid "Add Module Bays" msgstr "Добавить отсеки для модулей" -#: netbox/templates/dcim/device/poweroutlets.html:24 +#: templates/dcim/device/poweroutlets.html:24 msgid "Add Power Outlets" msgstr "Добавить розетки питания" -#: netbox/templates/dcim/device/powerports.html:24 +#: templates/dcim/device/powerports.html:24 msgid "Add Power Port" msgstr "Добавить порт питания" -#: netbox/templates/dcim/device/rearports.html:24 +#: templates/dcim/device/rearports.html:24 msgid "Add Rear Ports" msgstr "Добавить задние порты" -#: netbox/templates/dcim/device/render_config.html:5 -#: netbox/templates/virtualization/virtualmachine/render_config.html:5 +#: templates/dcim/device/render_config.html:5 +#: templates/virtualization/virtualmachine/render_config.html:5 msgid "Config" msgstr "Конфигурация" -#: netbox/templates/dcim/device/render_config.html:35 -#: netbox/templates/virtualization/virtualmachine/render_config.html:35 +#: templates/dcim/device/render_config.html:35 +#: templates/virtualization/virtualmachine/render_config.html:35 msgid "Context Data" msgstr "Контекстные данные" -#: netbox/templates/dcim/device/render_config.html:53 -#: netbox/templates/virtualization/virtualmachine/render_config.html:53 +#: templates/dcim/device/render_config.html:53 +#: templates/virtualization/virtualmachine/render_config.html:53 msgid "Rendered Config" msgstr "Отображенная конфигурация" -#: netbox/templates/dcim/device/render_config.html:55 -#: netbox/templates/virtualization/virtualmachine/render_config.html:55 +#: templates/dcim/device/render_config.html:55 +#: templates/virtualization/virtualmachine/render_config.html:55 msgid "Download" msgstr "Скачать" -#: netbox/templates/dcim/device/render_config.html:61 -#: netbox/templates/virtualization/virtualmachine/render_config.html:61 +#: templates/dcim/device/render_config.html:61 +#: templates/virtualization/virtualmachine/render_config.html:61 msgid "No configuration template found" msgstr "Шаблон конфигурации не найден" -#: netbox/templates/dcim/device_edit.html:44 +#: templates/dcim/device_edit.html:44 msgid "Parent Bay" msgstr "Родительский залив" -#: netbox/templates/dcim/device_edit.html:48 -#: netbox/utilities/templates/form_helpers/render_field.html:22 +#: templates/dcim/device_edit.html:48 +#: utilities/templates/form_helpers/render_field.html:22 msgid "Regenerate Slug" msgstr "Сгенерировать Подстроку" -#: netbox/templates/dcim/device_edit.html:49 -#: netbox/templates/generic/bulk_remove.html:21 -#: netbox/utilities/templates/helpers/table_config_form.html:23 +#: templates/dcim/device_edit.html:49 templates/generic/bulk_remove.html:21 +#: utilities/templates/helpers/table_config_form.html:23 msgid "Remove" msgstr "Удалить" -#: netbox/templates/dcim/device_edit.html:110 +#: templates/dcim/device_edit.html:110 msgid "Local Config Context Data" msgstr "Контекстные данные локальной конфигурации" -#: netbox/templates/dcim/device_list.html:82 -#: netbox/templates/dcim/moduletype/component_templates.html:17 -#: netbox/templates/generic/bulk_rename.html:57 -#: netbox/templates/virtualization/virtualmachine/interfaces.html:11 -#: netbox/templates/virtualization/virtualmachine/virtual_disks.html:11 +#: templates/dcim/device_list.html:82 templates/generic/bulk_rename.html:57 +#: templates/virtualization/virtualmachine/interfaces.html:11 +#: templates/virtualization/virtualmachine/virtual_disks.html:11 msgid "Rename" msgstr "Переименовать" -#: netbox/templates/dcim/devicebay.html:17 +#: templates/dcim/devicebay.html:17 msgid "Device Bay" msgstr "Отсек для устройств" -#: netbox/templates/dcim/devicebay.html:43 +#: templates/dcim/devicebay.html:43 msgid "Installed Device" msgstr "Вставленное устройство" -#: netbox/templates/dcim/devicebay_depopulate.html:6 +#: templates/dcim/devicebay_depopulate.html:6 #, python-format msgid "Remove %(device)s from %(device_bay)s?" msgstr "Удалить %(device)s из %(device_bay)s?" -#: netbox/templates/dcim/devicebay_depopulate.html:13 +#: templates/dcim/devicebay_depopulate.html:13 #, python-format msgid "" "Are you sure you want to remove %(device)s from " @@ -12668,449 +11977,430 @@ msgstr "" "Вы действительно хотите удалить %(device)s из " "%(device_bay)s?" -#: netbox/templates/dcim/devicebay_populate.html:13 +#: templates/dcim/devicebay_populate.html:13 msgid "Populate" msgstr "Заселить" -#: netbox/templates/dcim/devicebay_populate.html:22 +#: templates/dcim/devicebay_populate.html:22 msgid "Bay" msgstr "залив" -#: netbox/templates/dcim/devicerole.html:14 -#: netbox/templates/dcim/platform.html:17 +#: templates/dcim/devicerole.html:14 templates/dcim/platform.html:17 msgid "Add Device" msgstr "Добавить устройство" -#: netbox/templates/dcim/devicerole.html:40 +#: templates/dcim/devicerole.html:40 msgid "VM Role" msgstr "Роль виртуальной машины" -#: netbox/templates/dcim/devicetype.html:18 -#: netbox/templates/dcim/moduletype.html:18 +#: templates/dcim/devicetype.html:18 templates/dcim/moduletype.html:29 msgid "Model Name" msgstr "Название модели" -#: netbox/templates/dcim/devicetype.html:25 -#: netbox/templates/dcim/moduletype.html:22 +#: templates/dcim/devicetype.html:25 templates/dcim/moduletype.html:33 msgid "Part Number" msgstr "Номер детали" -#: netbox/templates/dcim/devicetype.html:41 +#: templates/dcim/devicetype.html:41 msgid "Exclude From Utilization" msgstr "Исключить из использования" -#: netbox/templates/dcim/devicetype.html:59 +#: templates/dcim/devicetype.html:59 msgid "Parent/Child" msgstr "Родитель/ребенок" -#: netbox/templates/dcim/devicetype.html:71 +#: templates/dcim/devicetype.html:71 msgid "Front Image" msgstr "Изображение спереди" -#: netbox/templates/dcim/devicetype.html:83 +#: templates/dcim/devicetype.html:83 msgid "Rear Image" msgstr "Изображение сзади" -#: netbox/templates/dcim/frontport.html:54 +#: templates/dcim/frontport.html:54 msgid "Rear Port Position" msgstr "Положение заднего порта" -#: netbox/templates/dcim/frontport.html:72 -#: netbox/templates/dcim/interface.html:144 -#: netbox/templates/dcim/poweroutlet.html:63 -#: netbox/templates/dcim/powerport.html:63 -#: netbox/templates/dcim/rearport.html:68 +#: templates/dcim/frontport.html:72 templates/dcim/interface.html:144 +#: templates/dcim/poweroutlet.html:63 templates/dcim/powerport.html:63 +#: templates/dcim/rearport.html:68 msgid "Marked as Connected" msgstr "Отмечено как подключенное" -#: netbox/templates/dcim/frontport.html:86 -#: netbox/templates/dcim/rearport.html:82 +#: templates/dcim/frontport.html:86 templates/dcim/rearport.html:82 msgid "Connection Status" msgstr "Состояние подключения" -#: netbox/templates/dcim/htmx/cable_edit.html:10 +#: templates/dcim/htmx/cable_edit.html:10 msgid "A Side" msgstr "Сторона «А»" -#: netbox/templates/dcim/htmx/cable_edit.html:30 +#: templates/dcim/htmx/cable_edit.html:30 msgid "B Side" msgstr "Сторона «Б»" -#: netbox/templates/dcim/inc/cable_termination.html:65 +#: templates/dcim/inc/cable_termination.html:65 msgid "No termination" msgstr "Без окончания" -#: netbox/templates/dcim/inc/cable_toggle_buttons.html:3 +#: templates/dcim/inc/cable_toggle_buttons.html:3 msgid "Mark Planned" msgstr "Отметить как запланированное" -#: netbox/templates/dcim/inc/cable_toggle_buttons.html:6 +#: templates/dcim/inc/cable_toggle_buttons.html:6 msgid "Mark Installed" msgstr "Отметить как установленное" -#: netbox/templates/dcim/inc/connection_endpoints.html:13 +#: templates/dcim/inc/connection_endpoints.html:13 msgid "Path Status" msgstr "Состояние пути" -#: netbox/templates/dcim/inc/connection_endpoints.html:18 +#: templates/dcim/inc/connection_endpoints.html:18 msgid "Not Reachable" msgstr "Недоступно" -#: netbox/templates/dcim/inc/connection_endpoints.html:23 +#: templates/dcim/inc/connection_endpoints.html:23 msgid "Path Endpoints" msgstr "Конечные точки пути" -#: netbox/templates/dcim/inc/endpoint_connection.html:8 -#: netbox/templates/dcim/powerfeed.html:120 -#: netbox/templates/dcim/rearport.html:94 +#: templates/dcim/inc/endpoint_connection.html:8 +#: templates/dcim/powerfeed.html:120 templates/dcim/rearport.html:94 msgid "Not connected" msgstr "Не подключено" -#: netbox/templates/dcim/inc/interface_vlans_table.html:6 +#: templates/dcim/inc/interface_vlans_table.html:6 msgid "Untagged" msgstr "Без тегов" -#: netbox/templates/dcim/inc/interface_vlans_table.html:37 +#: templates/dcim/inc/interface_vlans_table.html:37 msgid "No VLANs Assigned" msgstr "VLAN не назначены" -#: netbox/templates/dcim/inc/interface_vlans_table.html:44 -#: netbox/templates/ipam/prefix_list.html:16 -#: netbox/templates/ipam/prefix_list.html:33 +#: templates/dcim/inc/interface_vlans_table.html:44 +#: templates/ipam/prefix_list.html:16 templates/ipam/prefix_list.html:33 msgid "Clear" msgstr "Чисто" -#: netbox/templates/dcim/inc/interface_vlans_table.html:47 +#: templates/dcim/inc/interface_vlans_table.html:47 msgid "Clear All" msgstr "Очистить все" -#: netbox/templates/dcim/inc/panels/racktype_dimensions.html:38 +#: templates/dcim/inc/panels/racktype_dimensions.html:38 msgid "Mounting Depth" msgstr "Глубина монтажа" -#: netbox/templates/dcim/inc/panels/racktype_numbering.html:6 +#: templates/dcim/inc/panels/racktype_numbering.html:6 msgid "Starting Unit" msgstr "Начальный юнит" -#: netbox/templates/dcim/inc/panels/racktype_numbering.html:10 +#: templates/dcim/inc/panels/racktype_numbering.html:10 msgid "Descending Units" msgstr "Единицы по убыванию" -#: netbox/templates/dcim/inc/rack_elevation.html:3 +#: templates/dcim/inc/rack_elevation.html:3 msgid "Rack elevation" msgstr "Высота стойки" -#: netbox/templates/dcim/interface.html:17 +#: templates/dcim/interface.html:17 msgid "Add Child Interface" msgstr "Добавить дочерний интерфейс" -#: netbox/templates/dcim/interface.html:50 +#: templates/dcim/interface.html:50 msgid "Speed/Duplex" msgstr "Скорость/дуплекс" -#: netbox/templates/dcim/interface.html:73 +#: templates/dcim/interface.html:73 msgid "PoE Mode" msgstr "Режим PoE" -#: netbox/templates/dcim/interface.html:77 +#: templates/dcim/interface.html:77 msgid "PoE Type" msgstr "Тип PoE" -#: netbox/templates/dcim/interface.html:81 -#: netbox/templates/virtualization/vminterface.html:63 +#: templates/dcim/interface.html:81 +#: templates/virtualization/vminterface.html:63 msgid "802.1Q Mode" msgstr "Режим 802.1Q" -#: netbox/templates/dcim/interface.html:125 -#: netbox/templates/virtualization/vminterface.html:59 +#: templates/dcim/interface.html:125 +#: templates/virtualization/vminterface.html:59 msgid "MAC Address" msgstr "MAC-адрес" -#: netbox/templates/dcim/interface.html:151 +#: templates/dcim/interface.html:151 msgid "Wireless Link" msgstr "Беспроводная связь" -#: netbox/templates/dcim/interface.html:218 netbox/vpn/choices.py:55 +#: templates/dcim/interface.html:218 vpn/choices.py:55 msgid "Peer" msgstr "Peer" -#: netbox/templates/dcim/interface.html:230 -#: netbox/templates/wireless/inc/wirelesslink_interface.html:26 +#: templates/dcim/interface.html:230 +#: templates/wireless/inc/wirelesslink_interface.html:26 msgid "Channel" msgstr "Канал" -#: netbox/templates/dcim/interface.html:239 -#: netbox/templates/wireless/inc/wirelesslink_interface.html:32 +#: templates/dcim/interface.html:239 +#: templates/wireless/inc/wirelesslink_interface.html:32 msgid "Channel Frequency" msgstr "Частота канала" -#: netbox/templates/dcim/interface.html:242 -#: netbox/templates/dcim/interface.html:250 -#: netbox/templates/dcim/interface.html:261 -#: netbox/templates/dcim/interface.html:269 +#: templates/dcim/interface.html:242 templates/dcim/interface.html:250 +#: templates/dcim/interface.html:261 templates/dcim/interface.html:269 msgid "MHz" msgstr "МГц" -#: netbox/templates/dcim/interface.html:258 -#: netbox/templates/wireless/inc/wirelesslink_interface.html:42 +#: templates/dcim/interface.html:258 +#: templates/wireless/inc/wirelesslink_interface.html:42 msgid "Channel Width" msgstr "Ширина канала" -#: netbox/templates/dcim/interface.html:285 -#: netbox/templates/wireless/wirelesslan.html:14 -#: netbox/templates/wireless/wirelesslink.html:21 -#: netbox/wireless/forms/bulk_edit.py:60 -#: netbox/wireless/forms/bulk_edit.py:102 -#: netbox/wireless/forms/filtersets.py:40 -#: netbox/wireless/forms/filtersets.py:80 netbox/wireless/models.py:82 -#: netbox/wireless/models.py:156 netbox/wireless/tables/wirelesslan.py:44 +#: templates/dcim/interface.html:285 templates/wireless/wirelesslan.html:14 +#: templates/wireless/wirelesslink.html:21 wireless/forms/bulk_edit.py:60 +#: wireless/forms/bulk_edit.py:102 wireless/forms/filtersets.py:40 +#: wireless/forms/filtersets.py:80 wireless/models.py:82 +#: wireless/models.py:156 wireless/tables/wirelesslan.py:44 msgid "SSID" msgstr "SSID" -#: netbox/templates/dcim/interface.html:305 +#: templates/dcim/interface.html:305 msgid "LAG Members" msgstr "Члены LAG" -#: netbox/templates/dcim/interface.html:323 +#: templates/dcim/interface.html:323 msgid "No member interfaces" msgstr "Нет интерфейсов участников" -#: netbox/templates/dcim/interface.html:343 -#: netbox/templates/ipam/fhrpgroup.html:73 -#: netbox/templates/ipam/iprange/ip_addresses.html:7 -#: netbox/templates/ipam/prefix/ip_addresses.html:7 -#: netbox/templates/virtualization/vminterface.html:89 +#: templates/dcim/interface.html:343 templates/ipam/fhrpgroup.html:73 +#: templates/ipam/iprange/ip_addresses.html:7 +#: templates/ipam/prefix/ip_addresses.html:7 +#: templates/virtualization/vminterface.html:89 msgid "Add IP Address" msgstr "Добавить IP-адрес" -#: netbox/templates/dcim/inventoryitem.html:24 +#: templates/dcim/inventoryitem.html:24 msgid "Parent Item" msgstr "Родительский товар" -#: netbox/templates/dcim/inventoryitem.html:48 +#: templates/dcim/inventoryitem.html:48 msgid "Part ID" msgstr "Номер модели" -#: netbox/templates/dcim/location.html:17 +#: templates/dcim/location.html:17 msgid "Add Child Location" msgstr "Добавить Дочернюю Локацию" -#: netbox/templates/dcim/location.html:77 +#: templates/dcim/location.html:77 msgid "Child Locations" msgstr "Дочерние Локации" -#: netbox/templates/dcim/location.html:81 netbox/templates/dcim/site.html:131 +#: templates/dcim/location.html:81 templates/dcim/site.html:131 msgid "Add a Location" msgstr "Добавить Локацию" -#: netbox/templates/dcim/location.html:94 netbox/templates/dcim/site.html:144 +#: templates/dcim/location.html:94 templates/dcim/site.html:144 msgid "Add a Device" msgstr "Добавить устройство" -#: netbox/templates/dcim/manufacturer.html:16 +#: templates/dcim/manufacturer.html:16 msgid "Add Device Type" msgstr "Добавить тип устройства" -#: netbox/templates/dcim/manufacturer.html:21 +#: templates/dcim/manufacturer.html:21 msgid "Add Module Type" msgstr "Добавить тип модуля" -#: netbox/templates/dcim/powerfeed.html:53 +#: templates/dcim/powerfeed.html:53 msgid "Connected Device" msgstr "Подключенное устройство" -#: netbox/templates/dcim/powerfeed.html:63 +#: templates/dcim/powerfeed.html:63 msgid "Utilization (Allocated" msgstr "Использование (распределенное)" -#: netbox/templates/dcim/powerfeed.html:80 +#: templates/dcim/powerfeed.html:80 msgid "Electrical Characteristics" msgstr "Электрические характеристики" -#: netbox/templates/dcim/powerfeed.html:88 +#: templates/dcim/powerfeed.html:88 msgctxt "Abbreviation for volts" msgid "V" msgstr "V" -#: netbox/templates/dcim/powerfeed.html:92 +#: templates/dcim/powerfeed.html:92 msgctxt "Abbreviation for amperes" msgid "A" msgstr "A" -#: netbox/templates/dcim/poweroutlet.html:48 +#: templates/dcim/poweroutlet.html:48 msgid "Feed Leg" msgstr "Фаза электропитания" -#: netbox/templates/dcim/powerpanel.html:72 +#: templates/dcim/powerpanel.html:72 msgid "Add Power Feeds" msgstr "Добавить каналы питания" -#: netbox/templates/dcim/powerport.html:44 +#: templates/dcim/powerport.html:44 msgid "Maximum Draw" msgstr "Максимальное потребление" -#: netbox/templates/dcim/powerport.html:48 +#: templates/dcim/powerport.html:48 msgid "Allocated Draw" msgstr "Выделенная мощность" -#: netbox/templates/dcim/rack.html:69 +#: templates/dcim/rack.html:69 msgid "Space Utilization" msgstr "Использование пространства" -#: netbox/templates/dcim/rack.html:84 netbox/templates/dcim/racktype.html:44 +#: templates/dcim/rack.html:84 templates/dcim/racktype.html:44 msgid "Rack Weight" msgstr "Вес стойки" -#: netbox/templates/dcim/rack.html:94 netbox/templates/dcim/racktype.html:54 +#: templates/dcim/rack.html:94 templates/dcim/racktype.html:54 msgid "Maximum Weight" msgstr "Максимальный вес" -#: netbox/templates/dcim/rack.html:104 +#: templates/dcim/rack.html:104 msgid "Total Weight" msgstr "Общий вес" -#: netbox/templates/dcim/rack.html:125 -#: netbox/templates/dcim/rack_elevation_list.html:15 +#: templates/dcim/rack.html:125 templates/dcim/rack_elevation_list.html:15 msgid "Images and Labels" msgstr "Изображения и лейблы" -#: netbox/templates/dcim/rack.html:126 -#: netbox/templates/dcim/rack_elevation_list.html:16 +#: templates/dcim/rack.html:126 templates/dcim/rack_elevation_list.html:16 msgid "Images only" msgstr "Только изображения" -#: netbox/templates/dcim/rack.html:127 -#: netbox/templates/dcim/rack_elevation_list.html:17 +#: templates/dcim/rack.html:127 templates/dcim/rack_elevation_list.html:17 msgid "Labels only" msgstr "Только лейблы" -#: netbox/templates/dcim/rack/reservations.html:8 +#: templates/dcim/rack/reservations.html:8 msgid "Add reservation" msgstr "Добавить бронирование" -#: netbox/templates/dcim/rack_elevation_list.html:12 +#: templates/dcim/rack_elevation_list.html:12 msgid "View List" msgstr "Показать список" -#: netbox/templates/dcim/rack_elevation_list.html:14 +#: templates/dcim/rack_elevation_list.html:14 msgid "Select rack view" msgstr "Выберите вид стойки" -#: netbox/templates/dcim/rack_elevation_list.html:25 +#: templates/dcim/rack_elevation_list.html:25 msgid "Sort By" msgstr "Сортировать по" -#: netbox/templates/dcim/rack_elevation_list.html:74 +#: templates/dcim/rack_elevation_list.html:74 msgid "No Racks Found" msgstr "Стойки не найдены" -#: netbox/templates/dcim/rack_list.html:8 +#: templates/dcim/rack_list.html:8 msgid "View Elevations" msgstr "Просмотр высот" -#: netbox/templates/dcim/rackreservation.html:42 +#: templates/dcim/rackreservation.html:42 msgid "Reservation Details" msgstr "Сведения о бронировании" -#: netbox/templates/dcim/rackrole.html:10 +#: templates/dcim/rackrole.html:10 msgid "Add Rack" msgstr "Добавить стойку" -#: netbox/templates/dcim/rearport.html:50 +#: templates/dcim/rearport.html:50 msgid "Positions" msgstr "Позиции" -#: netbox/templates/dcim/region.html:17 -#: netbox/templates/dcim/sitegroup.html:17 +#: templates/dcim/region.html:17 templates/dcim/sitegroup.html:17 msgid "Add Site" msgstr "Добавить сайт" -#: netbox/templates/dcim/region.html:55 +#: templates/dcim/region.html:55 msgid "Child Regions" msgstr "Дочерние регионы" -#: netbox/templates/dcim/region.html:59 +#: templates/dcim/region.html:59 msgid "Add Region" msgstr "Добавить регион" -#: netbox/templates/dcim/site.html:64 +#: templates/dcim/site.html:64 msgid "Time Zone" msgstr "Часовой пояс" -#: netbox/templates/dcim/site.html:67 +#: templates/dcim/site.html:67 msgid "UTC" msgstr "UTC" -#: netbox/templates/dcim/site.html:68 +#: templates/dcim/site.html:68 msgid "Site time" msgstr "Время работы сайта" -#: netbox/templates/dcim/site.html:75 +#: templates/dcim/site.html:75 msgid "Physical Address" msgstr "Физический адрес" -#: netbox/templates/dcim/site.html:90 +#: templates/dcim/site.html:90 msgid "Shipping Address" msgstr "Адрес доставки" -#: netbox/templates/dcim/sitegroup.html:55 -#: netbox/templates/tenancy/contactgroup.html:46 -#: netbox/templates/tenancy/tenantgroup.html:55 -#: netbox/templates/wireless/wirelesslangroup.html:55 +#: templates/dcim/sitegroup.html:55 templates/tenancy/contactgroup.html:46 +#: templates/tenancy/tenantgroup.html:55 +#: templates/wireless/wirelesslangroup.html:55 msgid "Child Groups" msgstr "Дочерние группы" -#: netbox/templates/dcim/sitegroup.html:59 +#: templates/dcim/sitegroup.html:59 msgid "Add Site Group" msgstr "Добавить группу сайтов" -#: netbox/templates/dcim/trace/attachment.html:5 -#: netbox/templates/extras/exporttemplate.html:31 +#: templates/dcim/trace/attachment.html:5 +#: templates/extras/exporttemplate.html:31 msgid "Attachment" msgstr "Вложение" -#: netbox/templates/dcim/virtualchassis.html:57 +#: templates/dcim/virtualchassis.html:57 msgid "Add Member" msgstr "Добавить участника" -#: netbox/templates/dcim/virtualchassis_add.html:18 +#: templates/dcim/virtualchassis_add.html:18 msgid "Member Devices" msgstr "Устройства для участников" -#: netbox/templates/dcim/virtualchassis_add_member.html:10 +#: templates/dcim/virtualchassis_add_member.html:10 #, python-format msgid "Add New Member to Virtual Chassis %(virtual_chassis)s" msgstr "Добавить нового участника в виртуальное шасси %(virtual_chassis)s" -#: netbox/templates/dcim/virtualchassis_add_member.html:19 +#: templates/dcim/virtualchassis_add_member.html:19 msgid "Add New Member" msgstr "Добавить нового участника" -#: netbox/templates/dcim/virtualchassis_add_member.html:27 -#: netbox/templates/generic/object_edit.html:78 -#: netbox/templates/users/objectpermission.html:31 -#: netbox/users/forms/filtersets.py:67 netbox/users/forms/model_forms.py:312 +#: templates/dcim/virtualchassis_add_member.html:27 +#: templates/generic/object_edit.html:78 +#: templates/users/objectpermission.html:31 users/forms/filtersets.py:67 +#: users/forms/model_forms.py:312 msgid "Actions" msgstr "Действия" -#: netbox/templates/dcim/virtualchassis_add_member.html:29 +#: templates/dcim/virtualchassis_add_member.html:29 msgid "Save & Add Another" msgstr "Сохранить и добавить еще" -#: netbox/templates/dcim/virtualchassis_edit.html:7 +#: templates/dcim/virtualchassis_edit.html:7 #, python-format msgid "Editing Virtual Chassis %(name)s" msgstr "Редактирование виртуального корпуса %(name)s" -#: netbox/templates/dcim/virtualchassis_edit.html:53 +#: templates/dcim/virtualchassis_edit.html:53 msgid "Rack/Unit" msgstr "Стойка/Юнит" -#: netbox/templates/dcim/virtualchassis_remove_member.html:5 +#: templates/dcim/virtualchassis_remove_member.html:5 msgid "Remove Virtual Chassis Member" msgstr "Удалить элемент виртуального шасси" -#: netbox/templates/dcim/virtualchassis_remove_member.html:9 +#: templates/dcim/virtualchassis_remove_member.html:9 #, python-format msgid "" "Are you sure you want to remove %(device)s from virtual " @@ -13119,12 +12409,11 @@ msgstr "" "Вы действительно хотите удалить %(device)s из виртуального " "шасси %(name)s?" -#: netbox/templates/dcim/virtualdevicecontext.html:26 -#: netbox/templates/vpn/l2vpn.html:18 +#: templates/dcim/virtualdevicecontext.html:26 templates/vpn/l2vpn.html:18 msgid "Identifier" msgstr "Идентификатор" -#: netbox/templates/exceptions/import_error.html:6 +#: templates/exceptions/import_error.html:6 msgid "" "A module import error occurred during this request. Common causes include " "the following:" @@ -13132,11 +12421,11 @@ msgstr "" "Во время этого запроса произошла ошибка импорта модуля. К распространенным " "причинам относятся следующие:" -#: netbox/templates/exceptions/import_error.html:10 +#: templates/exceptions/import_error.html:10 msgid "Missing required packages" msgstr "Отсутствуют необходимые пакеты" -#: netbox/templates/exceptions/import_error.html:11 +#: templates/exceptions/import_error.html:11 msgid "" "This installation of NetBox might be missing one or more required Python " "packages. These packages are listed in requirements.txt and " @@ -13152,11 +12441,11 @@ msgstr "" "запустите замораживание губ из консоли и сравните выходные " "данные со списком необходимых пакетов." -#: netbox/templates/exceptions/import_error.html:20 +#: templates/exceptions/import_error.html:20 msgid "WSGI service not restarted after upgrade" msgstr "Служба WSGI не перезапущена после обновления" -#: netbox/templates/exceptions/import_error.html:21 +#: templates/exceptions/import_error.html:21 msgid "" "If this installation has recently been upgraded, check that the WSGI service" " (e.g. gunicorn or uWSGI) has been restarted. This ensures that the new code" @@ -13166,7 +12455,7 @@ msgstr "" "(например, gunicorn или uWSGI) перезапущена. Это гарантирует, что новый код " "работает." -#: netbox/templates/exceptions/permission_error.html:6 +#: templates/exceptions/permission_error.html:6 msgid "" "A file permission error was detected while processing this request. Common " "causes include the following:" @@ -13174,11 +12463,11 @@ msgstr "" "При обработке этого запроса была обнаружена ошибка разрешения на доступ к " "файлу. К распространенным причинам относятся следующие:" -#: netbox/templates/exceptions/permission_error.html:10 +#: templates/exceptions/permission_error.html:10 msgid "Insufficient write permission to the media root" msgstr "Недостаточное разрешение на запись в корень носителя" -#: netbox/templates/exceptions/permission_error.html:11 +#: templates/exceptions/permission_error.html:11 #, python-format msgid "" "The configured media root is %(media_root)s. Ensure that the " @@ -13189,7 +12478,7 @@ msgstr "" "пользователь NetBox, запущенный от имени пользователя, имеет доступ к записи" " файлов во все места на этом пути." -#: netbox/templates/exceptions/programming_error.html:6 +#: templates/exceptions/programming_error.html:6 msgid "" "A database programming error was detected while processing this request. " "Common causes include the following:" @@ -13197,11 +12486,11 @@ msgstr "" "При обработке этого запроса была обнаружена ошибка программирования базы " "данных. К распространенным причинам относятся следующие:" -#: netbox/templates/exceptions/programming_error.html:10 +#: templates/exceptions/programming_error.html:10 msgid "Database migrations missing" msgstr "Отсутствует миграция баз данных" -#: netbox/templates/exceptions/programming_error.html:11 +#: templates/exceptions/programming_error.html:11 msgid "" "When upgrading to a new NetBox release, the upgrade script must be run to " "apply any new database migrations. You can run migrations manually by " @@ -13212,11 +12501,11 @@ msgstr "" "запустить вручную, выполнив Миграция manage.py на python3 из " "командной строки." -#: netbox/templates/exceptions/programming_error.html:18 +#: templates/exceptions/programming_error.html:18 msgid "Unsupported PostgreSQL version" msgstr "Неподдерживаемая версия PostgreSQL" -#: netbox/templates/exceptions/programming_error.html:19 +#: templates/exceptions/programming_error.html:19 msgid "" "Ensure that PostgreSQL version 12 or later is in use. You can check this by " "connecting to the database using NetBox's credentials and issuing a query " @@ -13226,102 +12515,99 @@ msgstr "" "можете проверить это, подключившись к базе данных NetBox, и отправив запрос " "на ВЫБЕРИТЕ ВЕРСИЮ ()." -#: netbox/templates/extras/configcontext.html:45 -#: netbox/templates/extras/configtemplate.html:37 -#: netbox/templates/extras/exporttemplate.html:51 +#: templates/extras/configcontext.html:45 +#: templates/extras/configtemplate.html:37 +#: templates/extras/exporttemplate.html:51 msgid "The data file associated with this object has been deleted" msgstr "Файл данных, связанный с этим объектом, был удален" -#: netbox/templates/extras/configcontext.html:54 -#: netbox/templates/extras/configtemplate.html:46 -#: netbox/templates/extras/exporttemplate.html:60 +#: templates/extras/configcontext.html:54 +#: templates/extras/configtemplate.html:46 +#: templates/extras/exporttemplate.html:60 msgid "Data Synced" msgstr "Синхронизация данных" -#: netbox/templates/extras/configcontext_list.html:7 -#: netbox/templates/extras/configtemplate_list.html:7 -#: netbox/templates/extras/exporttemplate_list.html:7 +#: templates/extras/configcontext_list.html:7 +#: templates/extras/configtemplate_list.html:7 +#: templates/extras/exporttemplate_list.html:7 msgid "Sync Data" msgstr "Синхронизация данных" -#: netbox/templates/extras/configtemplate.html:56 +#: templates/extras/configtemplate.html:56 msgid "Environment Parameters" msgstr "Параметры окружающей среды" -#: netbox/templates/extras/configtemplate.html:67 -#: netbox/templates/extras/exporttemplate.html:79 +#: templates/extras/configtemplate.html:67 +#: templates/extras/exporttemplate.html:79 msgid "Template" msgstr "Шаблон" -#: netbox/templates/extras/customfield.html:30 -#: netbox/templates/extras/customlink.html:21 +#: templates/extras/customfield.html:30 templates/extras/customlink.html:21 msgid "Group Name" msgstr "Название группы" -#: netbox/templates/extras/customfield.html:42 +#: templates/extras/customfield.html:42 msgid "Must be Unique" msgstr "Должен быть уникальным" -#: netbox/templates/extras/customfield.html:46 +#: templates/extras/customfield.html:46 msgid "Cloneable" msgstr "Клонируемый" -#: netbox/templates/extras/customfield.html:56 +#: templates/extras/customfield.html:56 msgid "Default Value" msgstr "Значение по умолчанию" -#: netbox/templates/extras/customfield.html:73 +#: templates/extras/customfield.html:73 msgid "Search Weight" msgstr "Вес поиска" -#: netbox/templates/extras/customfield.html:83 +#: templates/extras/customfield.html:83 msgid "Filter Logic" msgstr "Логика фильтрации" -#: netbox/templates/extras/customfield.html:87 +#: templates/extras/customfield.html:87 msgid "Display Weight" msgstr "Вес дисплея" -#: netbox/templates/extras/customfield.html:91 +#: templates/extras/customfield.html:91 msgid "UI Visible" msgstr "Видимый пользовательский интерфейс" -#: netbox/templates/extras/customfield.html:95 +#: templates/extras/customfield.html:95 msgid "UI Editable" msgstr "Редактируемый UI" -#: netbox/templates/extras/customfield.html:115 +#: templates/extras/customfield.html:115 msgid "Validation Rules" msgstr "Правила валидации" -#: netbox/templates/extras/customfield.html:126 +#: templates/extras/customfield.html:126 msgid "Regular Expression" msgstr "Регулярное выражение" -#: netbox/templates/extras/customlink.html:29 +#: templates/extras/customlink.html:29 msgid "Button Class" msgstr "Класс кнопок" -#: netbox/templates/extras/customlink.html:39 -#: netbox/templates/extras/exporttemplate.html:66 -#: netbox/templates/extras/savedfilter.html:39 +#: templates/extras/customlink.html:39 templates/extras/exporttemplate.html:66 +#: templates/extras/savedfilter.html:39 msgid "Assigned Models" msgstr "Назначенные модели" -#: netbox/templates/extras/customlink.html:52 +#: templates/extras/customlink.html:52 msgid "Link Text" msgstr "Текст ссылки" -#: netbox/templates/extras/customlink.html:58 +#: templates/extras/customlink.html:58 msgid "Link URL" msgstr "URL-адрес ссылки" -#: netbox/templates/extras/dashboard/reset.html:4 -#: netbox/templates/home.html:66 +#: templates/extras/dashboard/reset.html:4 templates/home.html:66 msgid "Reset Dashboard" msgstr "Сбросить панель управления" -#: netbox/templates/extras/dashboard/reset.html:8 +#: templates/extras/dashboard/reset.html:8 msgid "" "This will remove all configured widgets and restore the " "default dashboard configuration." @@ -13329,7 +12615,7 @@ msgstr "" "Это удалит все настроенные виджеты и восстановит настройку " "панели по умолчанию." -#: netbox/templates/extras/dashboard/reset.html:13 +#: templates/extras/dashboard/reset.html:13 msgid "" "This change affects only your dashboard, and will not impact other " "users." @@ -13337,156 +12623,154 @@ msgstr "" "Это изменение затрагивает только ваш панель управления и не повлияет " "на других пользователей." -#: netbox/templates/extras/dashboard/widget.html:21 +#: templates/extras/dashboard/widget.html:21 msgid "widget configuration" msgstr "конфигурация виджета" -#: netbox/templates/extras/dashboard/widget.html:36 +#: templates/extras/dashboard/widget.html:36 msgid "Close widget" msgstr "Закрыть виджет" -#: netbox/templates/extras/dashboard/widget_add.html:7 +#: templates/extras/dashboard/widget_add.html:7 msgid "Add a Widget" msgstr "Добавить виджет" -#: netbox/templates/extras/dashboard/widgets/bookmarks.html:14 +#: templates/extras/dashboard/widgets/bookmarks.html:14 msgid "No bookmarks have been added yet." msgstr "Пока не добавлено ни одной закладки." -#: netbox/templates/extras/dashboard/widgets/objectcounts.html:10 +#: templates/extras/dashboard/widgets/objectcounts.html:10 msgid "No permission" msgstr "Нет прав" -#: netbox/templates/extras/dashboard/widgets/objectlist.html:6 +#: templates/extras/dashboard/widgets/objectlist.html:6 msgid "No permission to view this content" msgstr "Нет прав на просмотр этого контента" -#: netbox/templates/extras/dashboard/widgets/objectlist.html:10 +#: templates/extras/dashboard/widgets/objectlist.html:10 msgid "Unable to load content. Invalid view name" msgstr "Невозможно загрузить содержимое. Неверное имя" -#: netbox/templates/extras/dashboard/widgets/rssfeed.html:12 +#: templates/extras/dashboard/widgets/rssfeed.html:12 msgid "No content found" msgstr "Контент не найден" -#: netbox/templates/extras/dashboard/widgets/rssfeed.html:18 +#: templates/extras/dashboard/widgets/rssfeed.html:18 msgid "There was a problem fetching the RSS feed" msgstr "Возникла проблема при загрузке RSS-канала" -#: netbox/templates/extras/dashboard/widgets/rssfeed.html:21 +#: templates/extras/dashboard/widgets/rssfeed.html:21 msgid "HTTP" msgstr "HTTP" -#: netbox/templates/extras/eventrule.html:61 +#: templates/extras/eventrule.html:61 msgid "Conditions" msgstr "условия" -#: netbox/templates/extras/exporttemplate.html:23 +#: templates/extras/exporttemplate.html:23 msgid "MIME Type" msgstr "Тип MIME" -#: netbox/templates/extras/exporttemplate.html:27 +#: templates/extras/exporttemplate.html:27 msgid "File Extension" msgstr "Расширение файла" -#: netbox/templates/extras/htmx/script_result.html:10 +#: templates/extras/htmx/script_result.html:10 msgid "Scheduled for" msgstr "Запланировано на" -#: netbox/templates/extras/htmx/script_result.html:15 +#: templates/extras/htmx/script_result.html:15 msgid "Duration" msgstr "Продолжительность" -#: netbox/templates/extras/htmx/script_result.html:23 +#: templates/extras/htmx/script_result.html:23 msgid "Test Summary" msgstr "Сводка теста" -#: netbox/templates/extras/htmx/script_result.html:43 +#: templates/extras/htmx/script_result.html:43 msgid "Log" msgstr "Журнал" -#: netbox/templates/extras/htmx/script_result.html:56 +#: templates/extras/htmx/script_result.html:56 msgid "Output" msgstr "Вывод" -#: netbox/templates/extras/inc/result_pending.html:4 +#: templates/extras/inc/result_pending.html:4 msgid "Loading" msgstr "Загрузка" -#: netbox/templates/extras/inc/result_pending.html:6 +#: templates/extras/inc/result_pending.html:6 msgid "Results pending" msgstr "Результаты ожидаются" -#: netbox/templates/extras/journalentry.html:15 +#: templates/extras/journalentry.html:15 msgid "Journal Entry" msgstr "Запись в журнале" -#: netbox/templates/extras/notificationgroup.html:11 +#: templates/extras/notificationgroup.html:11 msgid "Notification Group" msgstr "Группа уведомлений" -#: netbox/templates/extras/notificationgroup.html:36 -#: netbox/templates/extras/notificationgroup.html:46 -#: netbox/utilities/templates/widgets/clearable_file_input.html:12 +#: templates/extras/notificationgroup.html:36 +#: templates/extras/notificationgroup.html:46 +#: utilities/templates/widgets/clearable_file_input.html:12 msgid "None assigned" msgstr "Ничего не назначено" -#: netbox/templates/extras/object_configcontext.html:19 +#: templates/extras/object_configcontext.html:19 msgid "The local config context overwrites all source contexts" msgstr "Локальный контекст конфигурации перезаписывает все исходные контексты" -#: netbox/templates/extras/object_configcontext.html:25 +#: templates/extras/object_configcontext.html:25 msgid "Source Contexts" msgstr "Исходные контексты" -#: netbox/templates/extras/object_journal.html:17 +#: templates/extras/object_journal.html:17 msgid "New Journal Entry" msgstr "Новая запись в журнале" -#: netbox/templates/extras/report/base.html:30 +#: templates/extras/report/base.html:30 msgid "Report" msgstr "Отчет" -#: netbox/templates/extras/script.html:14 +#: templates/extras/script.html:14 msgid "You do not have permission to run scripts" msgstr "У вас нет разрешения на запуск скриптов" -#: netbox/templates/extras/script.html:41 -#: netbox/templates/extras/script.html:45 -#: netbox/templates/extras/script_list.html:86 +#: templates/extras/script.html:41 templates/extras/script.html:45 +#: templates/extras/script_list.html:86 msgid "Run Script" msgstr "Запустить скрипт" -#: netbox/templates/extras/script.html:51 -#: netbox/templates/extras/script/source.html:10 +#: templates/extras/script.html:51 templates/extras/script/source.html:10 msgid "Error loading script" msgstr "Ошибка при загрузке скрипта" -#: netbox/templates/extras/script/jobs.html:16 +#: templates/extras/script/jobs.html:16 msgid "Script no longer exists in the source file." msgstr "Скрипт больше не существует в исходном файле." -#: netbox/templates/extras/script_list.html:46 +#: templates/extras/script_list.html:46 msgid "Last Run" msgstr "Последний запуск" -#: netbox/templates/extras/script_list.html:61 +#: templates/extras/script_list.html:61 msgid "Script is no longer present in the source file" msgstr "Скрипт больше не присутствует в исходном файле" -#: netbox/templates/extras/script_list.html:74 +#: templates/extras/script_list.html:74 msgid "Never" msgstr "Никогда" -#: netbox/templates/extras/script_list.html:84 +#: templates/extras/script_list.html:84 msgid "Run Again" msgstr "Повторить" -#: netbox/templates/extras/script_list.html:138 +#: templates/extras/script_list.html:138 msgid "No Scripts Found" msgstr "Скрипты не найдены" -#: netbox/templates/extras/script_list.html:141 +#: templates/extras/script_list.html:141 #, python-format msgid "" "Get started by creating a script from " @@ -13495,83 +12779,81 @@ msgstr "" "Начните с создание сценария из " "загруженного файла или источника данных." -#: netbox/templates/extras/script_result.html:35 -#: netbox/templates/generic/object_list.html:50 -#: netbox/templates/search.html:13 +#: templates/extras/script_result.html:35 +#: templates/generic/object_list.html:50 templates/search.html:13 msgid "Results" msgstr "Результаты" -#: netbox/templates/extras/script_result.html:46 +#: templates/extras/script_result.html:46 msgid "Log threshold" msgstr "Пороговое значение журнала" -#: netbox/templates/extras/script_result.html:56 +#: templates/extras/script_result.html:56 msgid "All" msgstr "Все" -#: netbox/templates/extras/tag.html:32 +#: templates/extras/tag.html:32 msgid "Tagged Items" msgstr "Элементы с тэгом" -#: netbox/templates/extras/tag.html:43 +#: templates/extras/tag.html:43 msgid "Allowed Object Types" msgstr "Разрешенные типы объектов" -#: netbox/templates/extras/tag.html:51 +#: templates/extras/tag.html:51 msgid "Any" msgstr "Любое" -#: netbox/templates/extras/tag.html:57 +#: templates/extras/tag.html:57 msgid "Tagged Item Types" msgstr "Типы товаров с тегами" -#: netbox/templates/extras/tag.html:81 +#: templates/extras/tag.html:81 msgid "Tagged Objects" msgstr "Объекты с тегами" -#: netbox/templates/extras/webhook.html:26 +#: templates/extras/webhook.html:26 msgid "HTTP Method" msgstr "Метод HTTP" -#: netbox/templates/extras/webhook.html:34 +#: templates/extras/webhook.html:34 msgid "HTTP Content Type" msgstr "Тип содержимого HTTP" -#: netbox/templates/extras/webhook.html:47 +#: templates/extras/webhook.html:47 msgid "SSL Verification" msgstr "Проверка SSL" -#: netbox/templates/extras/webhook.html:60 +#: templates/extras/webhook.html:60 msgid "Additional Headers" msgstr "Дополнительные заголовки" -#: netbox/templates/extras/webhook.html:70 +#: templates/extras/webhook.html:70 msgid "Body Template" msgstr "Шаблон тела запроса" -#: netbox/templates/generic/bulk_add_component.html:29 +#: templates/generic/bulk_add_component.html:29 msgid "Bulk Creation" msgstr "Массовое создание" -#: netbox/templates/generic/bulk_add_component.html:34 -#: netbox/templates/generic/bulk_delete.html:32 -#: netbox/templates/generic/bulk_edit.html:33 +#: templates/generic/bulk_add_component.html:34 +#: templates/generic/bulk_delete.html:32 templates/generic/bulk_edit.html:33 msgid "Selected Objects" msgstr "Выбранные объекты" -#: netbox/templates/generic/bulk_add_component.html:58 +#: templates/generic/bulk_add_component.html:58 msgid "to Add" msgstr "добавить" -#: netbox/templates/generic/bulk_delete.html:27 +#: templates/generic/bulk_delete.html:27 msgid "Bulk Delete" msgstr "Массовое удаление" -#: netbox/templates/generic/bulk_delete.html:49 +#: templates/generic/bulk_delete.html:49 msgid "Confirm Bulk Deletion" msgstr "Подтвердить массовое удаление" -#: netbox/templates/generic/bulk_delete.html:50 +#: templates/generic/bulk_delete.html:50 #, python-format msgid "" "The following operation will delete %(count)s " @@ -13582,69 +12864,66 @@ msgstr "" "Пожалуйста, внимательно просмотрите выбранные объекты и подтвердите это " "действие." -#: netbox/templates/generic/bulk_edit.html:21 -#: netbox/templates/generic/object_edit.html:22 +#: templates/generic/bulk_edit.html:21 templates/generic/object_edit.html:22 msgid "Editing" msgstr "Редактирование" -#: netbox/templates/generic/bulk_edit.html:28 +#: templates/generic/bulk_edit.html:28 msgid "Bulk Edit" msgstr "Массовое редактирование" -#: netbox/templates/generic/bulk_edit.html:107 -#: netbox/templates/generic/bulk_rename.html:66 +#: templates/generic/bulk_edit.html:107 templates/generic/bulk_rename.html:66 msgid "Apply" msgstr "Подать заявку" -#: netbox/templates/generic/bulk_import.html:19 +#: templates/generic/bulk_import.html:19 msgid "Bulk Import" msgstr "Массовый импорт" -#: netbox/templates/generic/bulk_import.html:25 +#: templates/generic/bulk_import.html:25 msgid "Direct Import" msgstr "Прямой импорт" -#: netbox/templates/generic/bulk_import.html:30 +#: templates/generic/bulk_import.html:30 msgid "Upload File" msgstr "Загрузить файл" -#: netbox/templates/generic/bulk_import.html:58 -#: netbox/templates/generic/bulk_import.html:80 -#: netbox/templates/generic/bulk_import.html:102 +#: templates/generic/bulk_import.html:58 templates/generic/bulk_import.html:80 +#: templates/generic/bulk_import.html:102 msgid "Submit" msgstr "Отправить" -#: netbox/templates/generic/bulk_import.html:113 +#: templates/generic/bulk_import.html:113 msgid "Field Options" msgstr "Опции полей" -#: netbox/templates/generic/bulk_import.html:119 +#: templates/generic/bulk_import.html:119 msgid "Accessor" msgstr "Аксессор" -#: netbox/templates/generic/bulk_import.html:148 +#: templates/generic/bulk_import.html:148 msgid "choices" msgstr "выбор" -#: netbox/templates/generic/bulk_import.html:161 +#: templates/generic/bulk_import.html:161 msgid "Import Value" msgstr "Стоимость импорта" -#: netbox/templates/generic/bulk_import.html:181 +#: templates/generic/bulk_import.html:181 msgid "Format: YYYY-MM-DD" msgstr "Формат: ГГГГ-ММ-ДД" -#: netbox/templates/generic/bulk_import.html:183 +#: templates/generic/bulk_import.html:183 msgid "Specify true or false" msgstr "Укажите истину или ложь" -#: netbox/templates/generic/bulk_import.html:195 +#: templates/generic/bulk_import.html:195 msgid "Required fields must be specified for all objects." msgstr "" "Обязательные поля должен должно быть указано для всех " "объектов." -#: netbox/templates/generic/bulk_import.html:201 +#: templates/generic/bulk_import.html:201 #, python-format msgid "" "Related objects may be referenced by any unique attribute. For example, " @@ -13654,15 +12933,15 @@ msgstr "" "Например, %(example)s будет идентифицировать VRF по индикатору " "маршрута." -#: netbox/templates/generic/bulk_remove.html:28 +#: templates/generic/bulk_remove.html:28 msgid "Bulk Remove" msgstr "Массовое удаление" -#: netbox/templates/generic/bulk_remove.html:42 +#: templates/generic/bulk_remove.html:42 msgid "Confirm Bulk Removal" msgstr "Подтвердите массовое удаление" -#: netbox/templates/generic/bulk_remove.html:43 +#: templates/generic/bulk_remove.html:43 #, python-format msgid "" "The following operation will remove %(count)s %(obj_type_plural)s from " @@ -13673,72 +12952,72 @@ msgstr "" "Пожалуйста, внимательно ознакомьтесь с %(obj_type_plural)s должно быть " "удалено и подтверждено ниже." -#: netbox/templates/generic/bulk_remove.html:64 +#: templates/generic/bulk_remove.html:64 #, python-format msgid "Remove these %(count)s %(obj_type_plural)s" msgstr "Удалите эти %(count)s %(obj_type_plural)s" -#: netbox/templates/generic/bulk_rename.html:20 +#: templates/generic/bulk_rename.html:20 msgid "Renaming" msgstr "Переименование" -#: netbox/templates/generic/bulk_rename.html:27 +#: templates/generic/bulk_rename.html:27 msgid "Bulk Rename" msgstr "Массовое Переименование" -#: netbox/templates/generic/bulk_rename.html:39 +#: templates/generic/bulk_rename.html:39 msgid "Current Name" msgstr "Текущее Имя" -#: netbox/templates/generic/bulk_rename.html:40 +#: templates/generic/bulk_rename.html:40 msgid "New Name" msgstr "Новое Имя" -#: netbox/templates/generic/bulk_rename.html:64 -#: netbox/utilities/templates/widgets/markdown_input.html:11 +#: templates/generic/bulk_rename.html:64 +#: utilities/templates/widgets/markdown_input.html:11 msgid "Preview" msgstr "Предварительный просмотр" -#: netbox/templates/generic/confirmation_form.html:16 +#: templates/generic/confirmation_form.html:16 msgid "Are you sure" msgstr "Вы уверены" -#: netbox/templates/generic/confirmation_form.html:20 +#: templates/generic/confirmation_form.html:20 msgid "Confirm" msgstr "Подтвердить" -#: netbox/templates/generic/object_children.html:47 -#: netbox/utilities/templates/buttons/bulk_edit.html:4 +#: templates/generic/object_children.html:47 +#: utilities/templates/buttons/bulk_edit.html:4 msgid "Edit Selected" msgstr "Изменить выбранное" -#: netbox/templates/generic/object_children.html:61 -#: netbox/utilities/templates/buttons/bulk_delete.html:4 +#: templates/generic/object_children.html:61 +#: utilities/templates/buttons/bulk_delete.html:4 msgid "Delete Selected" msgstr "Удалить выбранное" -#: netbox/templates/generic/object_edit.html:24 +#: templates/generic/object_edit.html:24 #, python-format msgid "Add a new %(object_type)s" msgstr "Добавить новое %(object_type)s" -#: netbox/templates/generic/object_edit.html:35 +#: templates/generic/object_edit.html:35 msgid "View model documentation" msgstr "Смотреть документацию по модели" -#: netbox/templates/generic/object_edit.html:36 +#: templates/generic/object_edit.html:36 msgid "Help" msgstr "Помощь" -#: netbox/templates/generic/object_edit.html:83 +#: templates/generic/object_edit.html:83 msgid "Create & Add Another" msgstr "Создать и добавить еще" -#: netbox/templates/generic/object_list.html:57 +#: templates/generic/object_list.html:57 msgid "Filters" msgstr "Фильтры" -#: netbox/templates/generic/object_list.html:88 +#: templates/generic/object_list.html:88 #, python-format msgid "" "Select all %(count)s " @@ -13747,40 +13026,40 @@ msgstr "" "Выберите все %(count)s " "%(object_type_plural)s соответствующий запрос" -#: netbox/templates/home.html:15 +#: templates/home.html:15 msgid "New Release Available" msgstr "Доступен новый релиз" -#: netbox/templates/home.html:16 +#: templates/home.html:16 msgid "is available" msgstr "доступен" -#: netbox/templates/home.html:18 +#: templates/home.html:18 msgctxt "Document title" msgid "Upgrade Instructions" msgstr "Инструкции по обновлению" -#: netbox/templates/home.html:40 +#: templates/home.html:40 msgid "Unlock Dashboard" msgstr "Разблокируйте панель управления" -#: netbox/templates/home.html:49 +#: templates/home.html:49 msgid "Lock Dashboard" msgstr "Заблокировать панель управления" -#: netbox/templates/home.html:60 +#: templates/home.html:60 msgid "Add Widget" msgstr "Добавить виджет" -#: netbox/templates/home.html:63 +#: templates/home.html:63 msgid "Save Layout" msgstr "Сохранить макет" -#: netbox/templates/htmx/delete_form.html:7 +#: templates/htmx/delete_form.html:7 msgid "Confirm Deletion" msgstr "Подтвердить удаление" -#: netbox/templates/htmx/delete_form.html:11 +#: templates/htmx/delete_form.html:11 #, python-format msgid "" "Are you sure you want to delete " @@ -13789,40 +13068,40 @@ msgstr "" "Вы уверены, что хотите удалить " "%(object_type)s %(object)s?" -#: netbox/templates/htmx/delete_form.html:17 +#: templates/htmx/delete_form.html:17 msgid "The following objects will be deleted as a result of this action." msgstr "В результате этого действия следующие объекты будут удалены." -#: netbox/templates/htmx/notifications.html:15 +#: templates/htmx/notifications.html:15 msgid "ago" msgstr "тому назад" -#: netbox/templates/htmx/notifications.html:26 +#: templates/htmx/notifications.html:26 msgid "No unread notifications" msgstr "Нет непрочитанных уведомлений" -#: netbox/templates/htmx/notifications.html:31 +#: templates/htmx/notifications.html:31 msgid "All notifications" msgstr "Все уведомления" -#: netbox/templates/htmx/object_selector.html:5 +#: templates/htmx/object_selector.html:5 msgid "Select" msgstr "Выберите" -#: netbox/templates/inc/filter_list.html:42 -#: netbox/utilities/templates/helpers/table_config_form.html:39 +#: templates/inc/filter_list.html:43 +#: utilities/templates/helpers/table_config_form.html:39 msgid "Reset" msgstr "Сбросить" -#: netbox/templates/inc/light_toggle.html:4 +#: templates/inc/light_toggle.html:4 msgid "Enable dark mode" msgstr "Включить темный режим" -#: netbox/templates/inc/light_toggle.html:7 +#: templates/inc/light_toggle.html:7 msgid "Enable light mode" msgstr "Включить режим освещения" -#: netbox/templates/inc/missing_prerequisites.html:8 +#: templates/inc/missing_prerequisites.html:8 #, python-format msgid "" "Before you can add a %(model)s you must first create a " @@ -13831,283 +13110,281 @@ msgstr "" "Прежде чем вы сможете добавить %(model)s вы должны сначала создать " "%(prerequisite_model)s." -#: netbox/templates/inc/paginator.html:15 +#: templates/inc/paginator.html:15 msgid "Page selection" msgstr "Выбор страницы" -#: netbox/templates/inc/paginator.html:75 +#: templates/inc/paginator.html:75 #, python-format msgid "Showing %(start)s-%(end)s of %(total)s" msgstr "показывая %(start)s-%(end)s из %(total)s" -#: netbox/templates/inc/paginator.html:82 +#: templates/inc/paginator.html:82 msgid "Pagination options" msgstr "Варианты разбиения на страницы" -#: netbox/templates/inc/paginator.html:86 +#: templates/inc/paginator.html:86 msgid "Per Page" msgstr "На страницу" -#: netbox/templates/inc/panels/image_attachments.html:10 +#: templates/inc/panels/image_attachments.html:10 msgid "Attach an image" msgstr "Прикрепите изображение" -#: netbox/templates/inc/panels/related_objects.html:5 +#: templates/inc/panels/related_objects.html:5 msgid "Related Objects" msgstr "Связанные объекты" -#: netbox/templates/inc/panels/tags.html:11 +#: templates/inc/panels/tags.html:11 msgid "No tags assigned" msgstr "Теги не назначены" -#: netbox/templates/inc/sync_warning.html:10 +#: templates/inc/sync_warning.html:10 msgid "Data is out of sync with upstream file" msgstr "Данные не синхронизированы с вышестоящим файлом" -#: netbox/templates/inc/table_controls_htmx.html:7 +#: templates/inc/table_controls_htmx.html:7 msgid "Quick search" msgstr "Быстрый поиск" -#: netbox/templates/inc/table_controls_htmx.html:20 +#: templates/inc/table_controls_htmx.html:20 msgid "Saved filter" msgstr "Сохраненный фильтр" -#: netbox/templates/inc/table_htmx.html:18 +#: templates/inc/table_htmx.html:18 msgid "Clear ordering" msgstr "Очистить сортировку" -#: netbox/templates/inc/user_menu.html:6 +#: templates/inc/user_menu.html:6 msgid "Help center" msgstr "Справочный центр" -#: netbox/templates/inc/user_menu.html:41 +#: templates/inc/user_menu.html:41 msgid "Django Admin" msgstr "Администратор Джанго" -#: netbox/templates/inc/user_menu.html:61 +#: templates/inc/user_menu.html:61 msgid "Log Out" msgstr "Выйти" -#: netbox/templates/inc/user_menu.html:68 netbox/templates/login.html:38 +#: templates/inc/user_menu.html:68 templates/login.html:38 msgid "Log In" msgstr "Войти" -#: netbox/templates/ipam/aggregate.html:14 -#: netbox/templates/ipam/ipaddress.html:14 -#: netbox/templates/ipam/iprange.html:13 netbox/templates/ipam/prefix.html:15 +#: templates/ipam/aggregate.html:14 templates/ipam/ipaddress.html:14 +#: templates/ipam/iprange.html:13 templates/ipam/prefix.html:15 msgid "Family" msgstr "Семейство" -#: netbox/templates/ipam/aggregate.html:39 +#: templates/ipam/aggregate.html:39 msgid "Date Added" msgstr "Дата добавления" -#: netbox/templates/ipam/aggregate/prefixes.html:8 -#: netbox/templates/ipam/prefix/prefixes.html:8 -#: netbox/templates/ipam/role.html:10 +#: templates/ipam/aggregate/prefixes.html:8 +#: templates/ipam/prefix/prefixes.html:8 templates/ipam/role.html:10 msgid "Add Prefix" msgstr "Добавить префикс" -#: netbox/templates/ipam/asn.html:23 +#: templates/ipam/asn.html:23 msgid "AS Number" msgstr "Номер AS" -#: netbox/templates/ipam/fhrpgroup.html:52 +#: templates/ipam/fhrpgroup.html:52 msgid "Authentication Type" msgstr "Тип аутентификации" -#: netbox/templates/ipam/fhrpgroup.html:56 +#: templates/ipam/fhrpgroup.html:56 msgid "Authentication Key" msgstr "Ключ аутентификации" -#: netbox/templates/ipam/fhrpgroup.html:69 +#: templates/ipam/fhrpgroup.html:69 msgid "Virtual IP Addresses" msgstr "Виртуальные IP-адреса" -#: netbox/templates/ipam/inc/ipaddress_edit_header.html:13 +#: templates/ipam/inc/ipaddress_edit_header.html:13 msgid "Assign IP" msgstr "Назначить IP-адрес" -#: netbox/templates/ipam/inc/ipaddress_edit_header.html:19 +#: templates/ipam/inc/ipaddress_edit_header.html:19 msgid "Bulk Create" msgstr "Массовое создание" -#: netbox/templates/ipam/inc/panels/fhrp_groups.html:10 +#: templates/ipam/inc/panels/fhrp_groups.html:10 msgid "Create Group" msgstr "Создать группу" -#: netbox/templates/ipam/inc/panels/fhrp_groups.html:25 +#: templates/ipam/inc/panels/fhrp_groups.html:25 msgid "Virtual IPs" msgstr "Виртуальные IP-адреса" -#: netbox/templates/ipam/inc/toggle_available.html:7 +#: templates/ipam/inc/toggle_available.html:7 msgid "Show Assigned" msgstr "Показать назначенное" -#: netbox/templates/ipam/inc/toggle_available.html:10 +#: templates/ipam/inc/toggle_available.html:10 msgid "Show Available" msgstr "Показать доступные" -#: netbox/templates/ipam/inc/toggle_available.html:13 +#: templates/ipam/inc/toggle_available.html:13 msgid "Show All" msgstr "Показать все" -#: netbox/templates/ipam/ipaddress.html:23 -#: netbox/templates/ipam/iprange.html:45 netbox/templates/ipam/prefix.html:24 +#: templates/ipam/ipaddress.html:23 templates/ipam/iprange.html:45 +#: templates/ipam/prefix.html:24 msgid "Global" msgstr "Глобальный" -#: netbox/templates/ipam/ipaddress.html:85 +#: templates/ipam/ipaddress.html:85 msgid "NAT (outside)" msgstr "NAT (снаружи)" -#: netbox/templates/ipam/ipaddress_assign.html:8 +#: templates/ipam/ipaddress_assign.html:8 msgid "Assign an IP Address" msgstr "Назначьте IP-адрес" -#: netbox/templates/ipam/ipaddress_assign.html:22 +#: templates/ipam/ipaddress_assign.html:22 msgid "Select IP Address" msgstr "Выберите IP-адрес" -#: netbox/templates/ipam/ipaddress_assign.html:35 +#: templates/ipam/ipaddress_assign.html:35 msgid "Search Results" msgstr "Результаты поиска" -#: netbox/templates/ipam/ipaddress_bulk_add.html:6 +#: templates/ipam/ipaddress_bulk_add.html:6 msgid "Bulk Add IP Addresses" msgstr "Массовое добавление IP-адресов" -#: netbox/templates/ipam/iprange.html:17 +#: templates/ipam/iprange.html:17 msgid "Starting Address" msgstr "Начальный адрес" -#: netbox/templates/ipam/iprange.html:21 +#: templates/ipam/iprange.html:21 msgid "Ending Address" msgstr "Конечный адрес" -#: netbox/templates/ipam/iprange.html:33 netbox/templates/ipam/prefix.html:110 +#: templates/ipam/iprange.html:33 templates/ipam/prefix.html:110 msgid "Marked fully utilized" msgstr "Отмечено как полностью использованное" -#: netbox/templates/ipam/prefix.html:99 +#: templates/ipam/prefix.html:99 msgid "Addressing Details" msgstr "Детали адресации" -#: netbox/templates/ipam/prefix.html:118 +#: templates/ipam/prefix.html:118 msgid "Child IPs" msgstr "Зависимые IP-адреса" -#: netbox/templates/ipam/prefix.html:126 +#: templates/ipam/prefix.html:126 msgid "Available IPs" msgstr "Доступные IP-адреса" -#: netbox/templates/ipam/prefix.html:138 +#: templates/ipam/prefix.html:138 msgid "First available IP" msgstr "Первый доступный IP-адрес" -#: netbox/templates/ipam/prefix.html:179 +#: templates/ipam/prefix.html:179 msgid "Prefix Details" msgstr "Детали префикса" -#: netbox/templates/ipam/prefix.html:185 +#: templates/ipam/prefix.html:185 msgid "Network Address" msgstr "Сетевой адрес" -#: netbox/templates/ipam/prefix.html:189 +#: templates/ipam/prefix.html:189 msgid "Network Mask" msgstr "Сетевая маска" -#: netbox/templates/ipam/prefix.html:193 +#: templates/ipam/prefix.html:193 msgid "Wildcard Mask" msgstr "Обратная маска" -#: netbox/templates/ipam/prefix.html:197 +#: templates/ipam/prefix.html:197 msgid "Broadcast Address" msgstr "Адрес вещания" -#: netbox/templates/ipam/prefix/ip_ranges.html:7 +#: templates/ipam/prefix/ip_ranges.html:7 msgid "Add IP Range" msgstr "Добавить диапазон IP-адресов" -#: netbox/templates/ipam/prefix_list.html:7 +#: templates/ipam/prefix_list.html:7 msgid "Hide Depth Indicators" msgstr "Скрыть индикаторы глубины" -#: netbox/templates/ipam/prefix_list.html:11 +#: templates/ipam/prefix_list.html:11 msgid "Max Depth" msgstr "Максимальная глубина" -#: netbox/templates/ipam/prefix_list.html:28 +#: templates/ipam/prefix_list.html:28 msgid "Max Length" msgstr "Максимальная длина" -#: netbox/templates/ipam/rir.html:10 +#: templates/ipam/rir.html:10 msgid "Add Aggregate" msgstr "Добавить агрегат" -#: netbox/templates/ipam/routetarget.html:38 +#: templates/ipam/routetarget.html:38 msgid "Importing VRFs" msgstr "Импорт VRF" -#: netbox/templates/ipam/routetarget.html:44 +#: templates/ipam/routetarget.html:44 msgid "Exporting VRFs" msgstr "Экспорт VRF" -#: netbox/templates/ipam/routetarget.html:52 +#: templates/ipam/routetarget.html:52 msgid "Importing L2VPNs" msgstr "Импорт L2VPN" -#: netbox/templates/ipam/routetarget.html:58 +#: templates/ipam/routetarget.html:58 msgid "Exporting L2VPNs" msgstr "Экспорт L2VPN" -#: netbox/templates/ipam/vlan.html:88 +#: templates/ipam/vlan.html:88 msgid "Add a Prefix" msgstr "Добавить префикс" -#: netbox/templates/ipam/vlangroup.html:18 +#: templates/ipam/vlangroup.html:18 msgid "Add VLAN" msgstr "Добавить VLAN" -#: netbox/templates/ipam/vrf.html:16 +#: templates/ipam/vrf.html:16 msgid "Route Distinguisher" msgstr "RD" -#: netbox/templates/ipam/vrf.html:29 +#: templates/ipam/vrf.html:29 msgid "Unique IP Space" msgstr "Уникальное IP-пространство" -#: netbox/templates/login.html:29 -#: netbox/utilities/templates/form_helpers/render_errors.html:7 +#: templates/login.html:29 +#: utilities/templates/form_helpers/render_errors.html:7 msgid "Errors" msgstr "Ошибки" -#: netbox/templates/login.html:69 +#: templates/login.html:69 msgid "Sign In" msgstr "Войти" -#: netbox/templates/login.html:77 +#: templates/login.html:77 msgctxt "Denotes an alternative option" msgid "Or" msgstr "Или" -#: netbox/templates/media_failure.html:7 +#: templates/media_failure.html:7 msgid "Static Media Failure - NetBox" msgstr "Ошибка статичных медиа - NetBox" -#: netbox/templates/media_failure.html:21 +#: templates/media_failure.html:21 msgid "Static Media Failure" msgstr "Ошибка статичных медиа" -#: netbox/templates/media_failure.html:23 +#: templates/media_failure.html:23 msgid "The following static media file failed to load" msgstr "Не удалось загрузить следующий статический медиафайл" -#: netbox/templates/media_failure.html:26 +#: templates/media_failure.html:26 msgid "Check the following" msgstr "Проверьте следующее" -#: netbox/templates/media_failure.html:29 +#: templates/media_failure.html:29 msgid "" "manage.py collectstatic was run during the most recent upgrade." " This installs the most recent iteration of each static file into the static" @@ -14117,7 +13394,7 @@ msgstr "" "обновления. При этом последняя итерация каждого статического файла " "устанавливается в статический корневой путь." -#: netbox/templates/media_failure.html:35 +#: templates/media_failure.html:35 #, python-format msgid "" "The HTTP service (e.g. nginx or Apache) is configured to serve files from " @@ -14127,7 +13404,7 @@ msgstr "" "Служба HTTP (например, nginx или Apache) настроена на обслуживание файлов из пути STATIC_ROOT\n" " . Обратитесь к документация по установке для получения дополнительных рекомендаций." -#: netbox/templates/media_failure.html:47 +#: templates/media_failure.html:47 #, python-format msgid "" "The file %(filename)s exists in the static root directory and " @@ -14136,567 +13413,548 @@ msgstr "" "Файл %(filename)s существует в статическом корневом каталоге и " "доступен для чтения HTTP-сервером." -#: netbox/templates/media_failure.html:55 +#: templates/media_failure.html:55 #, python-format msgid "Click here to attempt loading NetBox again." msgstr "" "Нажмите здесь чтобы снова попытаться загрузить " "NetBox." -#: netbox/templates/tenancy/contact.html:18 netbox/tenancy/filtersets.py:147 -#: netbox/tenancy/forms/bulk_edit.py:137 -#: netbox/tenancy/forms/filtersets.py:102 netbox/tenancy/forms/forms.py:56 -#: netbox/tenancy/forms/model_forms.py:106 -#: netbox/tenancy/forms/model_forms.py:130 -#: netbox/tenancy/tables/contacts.py:98 +#: templates/tenancy/contact.html:18 tenancy/filtersets.py:147 +#: tenancy/forms/bulk_edit.py:137 tenancy/forms/filtersets.py:102 +#: tenancy/forms/forms.py:56 tenancy/forms/model_forms.py:106 +#: tenancy/forms/model_forms.py:130 tenancy/tables/contacts.py:98 msgid "Contact" msgstr "Связаться" -#: netbox/templates/tenancy/contact.html:29 -#: netbox/tenancy/forms/bulk_edit.py:99 +#: templates/tenancy/contact.html:29 tenancy/forms/bulk_edit.py:99 msgid "Title" msgstr "Заголовок" -#: netbox/templates/tenancy/contact.html:33 -#: netbox/tenancy/forms/bulk_edit.py:104 netbox/tenancy/tables/contacts.py:64 +#: templates/tenancy/contact.html:33 tenancy/forms/bulk_edit.py:104 +#: tenancy/tables/contacts.py:64 msgid "Phone" msgstr "Телефон" -#: netbox/templates/tenancy/contactgroup.html:18 -#: netbox/tenancy/forms/forms.py:66 netbox/tenancy/forms/model_forms.py:75 +#: templates/tenancy/contactgroup.html:18 tenancy/forms/forms.py:66 +#: tenancy/forms/model_forms.py:75 msgid "Contact Group" msgstr "Контактная группа" -#: netbox/templates/tenancy/contactgroup.html:50 +#: templates/tenancy/contactgroup.html:50 msgid "Add Contact Group" msgstr "Добавить контактную группу" -#: netbox/templates/tenancy/contactrole.html:15 -#: netbox/tenancy/filtersets.py:152 netbox/tenancy/forms/forms.py:61 -#: netbox/tenancy/forms/model_forms.py:87 +#: templates/tenancy/contactrole.html:15 tenancy/filtersets.py:152 +#: tenancy/forms/forms.py:61 tenancy/forms/model_forms.py:87 msgid "Contact Role" msgstr "Роль контакта" -#: netbox/templates/tenancy/object_contacts.html:9 +#: templates/tenancy/object_contacts.html:9 msgid "Add a contact" msgstr "Добавить контакт" -#: netbox/templates/tenancy/tenantgroup.html:17 +#: templates/tenancy/tenantgroup.html:17 msgid "Add Tenant" msgstr "Добавить арендатора" -#: netbox/templates/tenancy/tenantgroup.html:26 -#: netbox/tenancy/forms/model_forms.py:32 netbox/tenancy/tables/columns.py:51 -#: netbox/tenancy/tables/columns.py:61 +#: templates/tenancy/tenantgroup.html:26 tenancy/forms/model_forms.py:32 +#: tenancy/tables/columns.py:51 tenancy/tables/columns.py:61 msgid "Tenant Group" msgstr "Группа арендаторов" -#: netbox/templates/tenancy/tenantgroup.html:59 +#: templates/tenancy/tenantgroup.html:59 msgid "Add Tenant Group" msgstr "Добавить группу арендаторов" -#: netbox/templates/users/group.html:39 netbox/templates/users/user.html:63 +#: templates/users/group.html:39 templates/users/user.html:63 msgid "Assigned Permissions" msgstr "Назначенные разрешения" -#: netbox/templates/users/objectpermission.html:6 -#: netbox/templates/users/objectpermission.html:14 -#: netbox/users/forms/filtersets.py:66 +#: templates/users/objectpermission.html:6 +#: templates/users/objectpermission.html:14 users/forms/filtersets.py:66 msgid "Permission" msgstr "Разрешение" -#: netbox/templates/users/objectpermission.html:34 +#: templates/users/objectpermission.html:34 msgid "View" msgstr "Вид" -#: netbox/templates/users/objectpermission.html:52 -#: netbox/users/forms/model_forms.py:315 +#: templates/users/objectpermission.html:52 users/forms/model_forms.py:315 msgid "Constraints" msgstr "Ограничения" -#: netbox/templates/users/objectpermission.html:72 +#: templates/users/objectpermission.html:72 msgid "Assigned Users" msgstr "Назначенные пользователи" -#: netbox/templates/virtualization/cluster.html:52 +#: templates/virtualization/cluster.html:52 msgid "Allocated Resources" msgstr "Выделенные ресурсы" -#: netbox/templates/virtualization/cluster.html:55 -#: netbox/templates/virtualization/virtualmachine.html:125 +#: templates/virtualization/cluster.html:55 +#: templates/virtualization/virtualmachine.html:125 msgid "Virtual CPUs" msgstr "Виртуальные процессоры" -#: netbox/templates/virtualization/cluster.html:59 -#: netbox/templates/virtualization/virtualmachine.html:129 +#: templates/virtualization/cluster.html:59 +#: templates/virtualization/virtualmachine.html:129 msgid "Memory" msgstr "Память" -#: netbox/templates/virtualization/cluster.html:69 -#: netbox/templates/virtualization/virtualmachine.html:140 +#: templates/virtualization/cluster.html:69 +#: templates/virtualization/virtualmachine.html:140 msgid "Disk Space" msgstr "Дисковое пространство" -#: netbox/templates/virtualization/cluster/base.html:18 +#: templates/virtualization/cluster/base.html:18 msgid "Add Virtual Machine" msgstr "Добавить виртуальную машину" -#: netbox/templates/virtualization/cluster/base.html:24 +#: templates/virtualization/cluster/base.html:24 msgid "Assign Device" msgstr "Назначить устройство" -#: netbox/templates/virtualization/cluster/devices.html:10 +#: templates/virtualization/cluster/devices.html:10 msgid "Remove Selected" msgstr "Удалить выбранное" -#: netbox/templates/virtualization/cluster_add_devices.html:9 +#: templates/virtualization/cluster_add_devices.html:9 #, python-format msgid "Add Device to Cluster %(cluster)s" msgstr "Добавить устройство в кластер %(cluster)s" -#: netbox/templates/virtualization/cluster_add_devices.html:23 +#: templates/virtualization/cluster_add_devices.html:23 msgid "Device Selection" msgstr "Выбор устройства" -#: netbox/templates/virtualization/cluster_add_devices.html:31 +#: templates/virtualization/cluster_add_devices.html:31 msgid "Add Devices" msgstr "Добавить устройства" -#: netbox/templates/virtualization/clustergroup.html:10 -#: netbox/templates/virtualization/clustertype.html:10 +#: templates/virtualization/clustergroup.html:10 +#: templates/virtualization/clustertype.html:10 msgid "Add Cluster" msgstr "Добавить кластер" -#: netbox/templates/virtualization/clustergroup.html:19 -#: netbox/virtualization/forms/model_forms.py:50 +#: templates/virtualization/clustergroup.html:19 +#: virtualization/forms/model_forms.py:50 msgid "Cluster Group" msgstr "Кластерная группа" -#: netbox/templates/virtualization/clustertype.html:19 -#: netbox/templates/virtualization/virtualmachine.html:110 -#: netbox/virtualization/forms/model_forms.py:36 +#: templates/virtualization/clustertype.html:19 +#: templates/virtualization/virtualmachine.html:110 +#: virtualization/forms/model_forms.py:36 msgid "Cluster Type" msgstr "Тип кластера" -#: netbox/templates/virtualization/virtualdisk.html:18 +#: templates/virtualization/virtualdisk.html:18 msgid "Virtual Disk" msgstr "Виртуальный диск" -#: netbox/templates/virtualization/virtualmachine.html:122 -#: netbox/virtualization/forms/bulk_edit.py:190 -#: netbox/virtualization/forms/model_forms.py:224 +#: templates/virtualization/virtualmachine.html:122 +#: virtualization/forms/bulk_edit.py:190 +#: virtualization/forms/model_forms.py:224 msgid "Resources" msgstr "Ресурсы" -#: netbox/templates/virtualization/virtualmachine.html:178 +#: templates/virtualization/virtualmachine.html:178 msgid "Add Virtual Disk" msgstr "Добавить виртуальный диск" -#: netbox/templates/vpn/ikepolicy.html:10 -#: netbox/templates/vpn/ipsecprofile.html:33 netbox/vpn/tables/crypto.py:166 +#: templates/vpn/ikepolicy.html:10 templates/vpn/ipsecprofile.html:33 +#: vpn/tables/crypto.py:166 msgid "IKE Policy" msgstr "Политика IKE" -#: netbox/templates/vpn/ikepolicy.html:21 +#: templates/vpn/ikepolicy.html:21 msgid "IKE Version" msgstr "Версия IKE" -#: netbox/templates/vpn/ikepolicy.html:29 +#: templates/vpn/ikepolicy.html:29 msgid "Pre-Shared Key" msgstr "Pre-Shared ключ" -#: netbox/templates/vpn/ikepolicy.html:33 -#: netbox/templates/wireless/inc/authentication_attrs.html:20 +#: templates/vpn/ikepolicy.html:33 +#: templates/wireless/inc/authentication_attrs.html:20 msgid "Show Secret" msgstr "Показать секрет" -#: netbox/templates/vpn/ikepolicy.html:57 -#: netbox/templates/vpn/ipsecpolicy.html:45 -#: netbox/templates/vpn/ipsecprofile.html:52 -#: netbox/templates/vpn/ipsecprofile.html:77 -#: netbox/vpn/forms/model_forms.py:316 netbox/vpn/forms/model_forms.py:352 -#: netbox/vpn/tables/crypto.py:68 netbox/vpn/tables/crypto.py:134 +#: templates/vpn/ikepolicy.html:57 templates/vpn/ipsecpolicy.html:45 +#: templates/vpn/ipsecprofile.html:52 templates/vpn/ipsecprofile.html:77 +#: vpn/forms/model_forms.py:316 vpn/forms/model_forms.py:352 +#: vpn/tables/crypto.py:68 vpn/tables/crypto.py:134 msgid "Proposals" msgstr "Предложения" -#: netbox/templates/vpn/ikeproposal.html:10 +#: templates/vpn/ikeproposal.html:10 msgid "IKE Proposal" msgstr "Предложение IKE" -#: netbox/templates/vpn/ikeproposal.html:21 netbox/vpn/forms/bulk_edit.py:97 -#: netbox/vpn/forms/bulk_import.py:145 netbox/vpn/forms/filtersets.py:101 +#: templates/vpn/ikeproposal.html:21 vpn/forms/bulk_edit.py:97 +#: vpn/forms/bulk_import.py:145 vpn/forms/filtersets.py:101 msgid "Authentication method" msgstr "Метод аутентификации" -#: netbox/templates/vpn/ikeproposal.html:25 -#: netbox/templates/vpn/ipsecproposal.html:21 -#: netbox/vpn/forms/bulk_edit.py:102 netbox/vpn/forms/bulk_edit.py:172 -#: netbox/vpn/forms/bulk_import.py:149 netbox/vpn/forms/bulk_import.py:195 -#: netbox/vpn/forms/filtersets.py:106 netbox/vpn/forms/filtersets.py:154 +#: templates/vpn/ikeproposal.html:25 templates/vpn/ipsecproposal.html:21 +#: vpn/forms/bulk_edit.py:102 vpn/forms/bulk_edit.py:172 +#: vpn/forms/bulk_import.py:149 vpn/forms/bulk_import.py:195 +#: vpn/forms/filtersets.py:106 vpn/forms/filtersets.py:154 msgid "Encryption algorithm" msgstr "Алгоритм шифрования" -#: netbox/templates/vpn/ikeproposal.html:29 -#: netbox/templates/vpn/ipsecproposal.html:25 -#: netbox/vpn/forms/bulk_edit.py:107 netbox/vpn/forms/bulk_edit.py:177 -#: netbox/vpn/forms/bulk_import.py:153 netbox/vpn/forms/bulk_import.py:200 -#: netbox/vpn/forms/filtersets.py:111 netbox/vpn/forms/filtersets.py:159 +#: templates/vpn/ikeproposal.html:29 templates/vpn/ipsecproposal.html:25 +#: vpn/forms/bulk_edit.py:107 vpn/forms/bulk_edit.py:177 +#: vpn/forms/bulk_import.py:153 vpn/forms/bulk_import.py:200 +#: vpn/forms/filtersets.py:111 vpn/forms/filtersets.py:159 msgid "Authentication algorithm" msgstr "Алгоритм аутентификации" -#: netbox/templates/vpn/ikeproposal.html:33 +#: templates/vpn/ikeproposal.html:33 msgid "DH group" msgstr "Группа DH" -#: netbox/templates/vpn/ikeproposal.html:37 -#: netbox/templates/vpn/ipsecproposal.html:29 -#: netbox/vpn/forms/bulk_edit.py:182 netbox/vpn/models/crypto.py:146 +#: templates/vpn/ikeproposal.html:37 templates/vpn/ipsecproposal.html:29 +#: vpn/forms/bulk_edit.py:182 vpn/models/crypto.py:146 msgid "SA lifetime (seconds)" msgstr "Срок службы SA (в секундах)" -#: netbox/templates/vpn/ipsecpolicy.html:10 -#: netbox/templates/vpn/ipsecprofile.html:66 netbox/vpn/tables/crypto.py:170 +#: templates/vpn/ipsecpolicy.html:10 templates/vpn/ipsecprofile.html:66 +#: vpn/tables/crypto.py:170 msgid "IPSec Policy" msgstr "Политика IPsec" -#: netbox/templates/vpn/ipsecpolicy.html:21 netbox/vpn/forms/bulk_edit.py:210 -#: netbox/vpn/models/crypto.py:193 +#: templates/vpn/ipsecpolicy.html:21 vpn/forms/bulk_edit.py:210 +#: vpn/models/crypto.py:193 msgid "PFS group" msgstr "Группа PFS" -#: netbox/templates/vpn/ipsecprofile.html:10 -#: netbox/vpn/forms/model_forms.py:54 +#: templates/vpn/ipsecprofile.html:10 vpn/forms/model_forms.py:54 msgid "IPSec Profile" msgstr "Профиль IPsec" -#: netbox/templates/vpn/ipsecprofile.html:89 netbox/vpn/tables/crypto.py:137 +#: templates/vpn/ipsecprofile.html:89 vpn/tables/crypto.py:137 msgid "PFS Group" msgstr "Группа компаний PFS" -#: netbox/templates/vpn/ipsecproposal.html:10 +#: templates/vpn/ipsecproposal.html:10 msgid "IPSec Proposal" msgstr "Предложение IPsec" -#: netbox/templates/vpn/ipsecproposal.html:33 -#: netbox/vpn/forms/bulk_edit.py:186 netbox/vpn/models/crypto.py:152 +#: templates/vpn/ipsecproposal.html:33 vpn/forms/bulk_edit.py:186 +#: vpn/models/crypto.py:152 msgid "SA lifetime (KB)" msgstr "Срок службы (КБ)" -#: netbox/templates/vpn/l2vpn.html:11 -#: netbox/templates/vpn/l2vpntermination.html:9 +#: templates/vpn/l2vpn.html:11 templates/vpn/l2vpntermination.html:9 msgid "L2VPN Attributes" msgstr "Атрибуты L2VPN" -#: netbox/templates/vpn/l2vpn.html:60 netbox/templates/vpn/tunnel.html:76 +#: templates/vpn/l2vpn.html:60 templates/vpn/tunnel.html:76 msgid "Add a Termination" msgstr "Добавить окончание" -#: netbox/templates/vpn/tunnel.html:9 +#: templates/vpn/tunnel.html:9 msgid "Add Termination" msgstr "Добавить окончание" -#: netbox/templates/vpn/tunnel.html:37 netbox/vpn/forms/bulk_edit.py:49 -#: netbox/vpn/forms/bulk_import.py:48 netbox/vpn/forms/filtersets.py:57 +#: templates/vpn/tunnel.html:37 vpn/forms/bulk_edit.py:49 +#: vpn/forms/bulk_import.py:48 vpn/forms/filtersets.py:57 msgid "Encapsulation" msgstr "Инкапсуляция" -#: netbox/templates/vpn/tunnel.html:41 netbox/vpn/forms/bulk_edit.py:55 -#: netbox/vpn/forms/bulk_import.py:53 netbox/vpn/forms/filtersets.py:64 -#: netbox/vpn/models/crypto.py:250 netbox/vpn/tables/tunnels.py:51 +#: templates/vpn/tunnel.html:41 vpn/forms/bulk_edit.py:55 +#: vpn/forms/bulk_import.py:53 vpn/forms/filtersets.py:64 +#: vpn/models/crypto.py:250 vpn/tables/tunnels.py:51 msgid "IPSec profile" msgstr "Профиль IPsec" -#: netbox/templates/vpn/tunnel.html:45 netbox/vpn/forms/bulk_edit.py:69 -#: netbox/vpn/forms/filtersets.py:68 +#: templates/vpn/tunnel.html:45 vpn/forms/bulk_edit.py:69 +#: vpn/forms/filtersets.py:68 msgid "Tunnel ID" msgstr "Идентификатор туннеля" -#: netbox/templates/vpn/tunnelgroup.html:14 +#: templates/vpn/tunnelgroup.html:14 msgid "Add Tunnel" msgstr "Добавить туннель" -#: netbox/templates/vpn/tunnelgroup.html:23 netbox/vpn/forms/model_forms.py:36 -#: netbox/vpn/forms/model_forms.py:49 +#: templates/vpn/tunnelgroup.html:23 vpn/forms/model_forms.py:36 +#: vpn/forms/model_forms.py:49 msgid "Tunnel Group" msgstr "Туннельная группа" -#: netbox/templates/vpn/tunneltermination.html:10 +#: templates/vpn/tunneltermination.html:10 msgid "Tunnel Termination" msgstr "Окончание Туннеля" -#: netbox/templates/vpn/tunneltermination.html:35 -#: netbox/vpn/forms/bulk_import.py:107 netbox/vpn/forms/model_forms.py:102 -#: netbox/vpn/forms/model_forms.py:138 netbox/vpn/forms/model_forms.py:247 -#: netbox/vpn/tables/tunnels.py:101 +#: templates/vpn/tunneltermination.html:35 vpn/forms/bulk_import.py:107 +#: vpn/forms/model_forms.py:102 vpn/forms/model_forms.py:138 +#: vpn/forms/model_forms.py:247 vpn/tables/tunnels.py:101 msgid "Outside IP" msgstr "Внешний IP-адрес" -#: netbox/templates/vpn/tunneltermination.html:51 +#: templates/vpn/tunneltermination.html:51 msgid "Peer Terminations" msgstr "Конечные Точки" -#: netbox/templates/wireless/inc/authentication_attrs.html:12 +#: templates/wireless/inc/authentication_attrs.html:12 msgid "Cipher" msgstr "Шифр" -#: netbox/templates/wireless/inc/authentication_attrs.html:16 +#: templates/wireless/inc/authentication_attrs.html:16 msgid "PSK" msgstr "PSK" -#: netbox/templates/wireless/inc/wirelesslink_interface.html:35 -#: netbox/templates/wireless/inc/wirelesslink_interface.html:45 +#: templates/wireless/inc/wirelesslink_interface.html:35 +#: templates/wireless/inc/wirelesslink_interface.html:45 msgctxt "Abbreviation for megahertz" msgid "MHz" msgstr "МГц" -#: netbox/templates/wireless/wirelesslan.html:57 +#: templates/wireless/wirelesslan.html:57 msgid "Attached Interfaces" msgstr "Подключенные интерфейсы" -#: netbox/templates/wireless/wirelesslangroup.html:17 +#: templates/wireless/wirelesslangroup.html:17 msgid "Add Wireless LAN" msgstr "Добавить беспроводную локальную сеть" -#: netbox/templates/wireless/wirelesslangroup.html:26 -#: netbox/wireless/forms/model_forms.py:28 +#: templates/wireless/wirelesslangroup.html:26 +#: wireless/forms/model_forms.py:28 msgid "Wireless LAN Group" msgstr "Группа беспроводных локальных сетей" -#: netbox/templates/wireless/wirelesslangroup.html:59 +#: templates/wireless/wirelesslangroup.html:59 msgid "Add Wireless LAN Group" msgstr "Добавить группу беспроводной локальной сети" -#: netbox/templates/wireless/wirelesslink.html:14 +#: templates/wireless/wirelesslink.html:14 msgid "Link Properties" msgstr "Свойства ссылки" -#: netbox/templates/wireless/wirelesslink.html:38 -#: netbox/wireless/forms/bulk_edit.py:129 -#: netbox/wireless/forms/filtersets.py:102 -#: netbox/wireless/forms/model_forms.py:165 +#: templates/wireless/wirelesslink.html:38 wireless/forms/bulk_edit.py:129 +#: wireless/forms/filtersets.py:102 wireless/forms/model_forms.py:165 msgid "Distance" msgstr "Расстояние" -#: netbox/tenancy/filtersets.py:28 +#: tenancy/filtersets.py:28 msgid "Parent contact group (ID)" msgstr "Контактная группа родителей (ID)" -#: netbox/tenancy/filtersets.py:34 +#: tenancy/filtersets.py:34 msgid "Parent contact group (slug)" msgstr "Контактная группа родителей (подстрока)" -#: netbox/tenancy/filtersets.py:40 netbox/tenancy/filtersets.py:67 -#: netbox/tenancy/filtersets.py:110 +#: tenancy/filtersets.py:40 tenancy/filtersets.py:67 tenancy/filtersets.py:110 msgid "Contact group (ID)" msgstr "Контактная группа (ID)" -#: netbox/tenancy/filtersets.py:47 netbox/tenancy/filtersets.py:74 -#: netbox/tenancy/filtersets.py:117 +#: tenancy/filtersets.py:47 tenancy/filtersets.py:74 tenancy/filtersets.py:117 msgid "Contact group (slug)" msgstr "Группа контактов (подстрока)" -#: netbox/tenancy/filtersets.py:104 +#: tenancy/filtersets.py:104 msgid "Contact (ID)" msgstr "Контактное лицо (ID)" -#: netbox/tenancy/filtersets.py:121 +#: tenancy/filtersets.py:121 msgid "Contact role (ID)" msgstr "Роль контакта (ID)" -#: netbox/tenancy/filtersets.py:127 +#: tenancy/filtersets.py:127 msgid "Contact role (slug)" msgstr "Роль контакта (подстрока)" -#: netbox/tenancy/filtersets.py:158 +#: tenancy/filtersets.py:158 msgid "Contact group" msgstr "Контактная группа" -#: netbox/tenancy/filtersets.py:169 +#: tenancy/filtersets.py:169 msgid "Parent tenant group (ID)" msgstr "Родительская группа арендаторов (ID)" -#: netbox/tenancy/filtersets.py:175 +#: tenancy/filtersets.py:175 msgid "Parent tenant group (slug)" msgstr "Родительская группа арендаторов (подстрока)" -#: netbox/tenancy/filtersets.py:181 netbox/tenancy/filtersets.py:201 +#: tenancy/filtersets.py:181 tenancy/filtersets.py:201 msgid "Tenant group (ID)" msgstr "Группа арендаторов (ID)" -#: netbox/tenancy/filtersets.py:234 +#: tenancy/filtersets.py:234 msgid "Tenant Group (ID)" msgstr "Группа арендаторов (ID)" -#: netbox/tenancy/filtersets.py:241 +#: tenancy/filtersets.py:241 msgid "Tenant Group (slug)" msgstr "Группа арендаторов (подстрока)" -#: netbox/tenancy/forms/bulk_edit.py:66 +#: tenancy/forms/bulk_edit.py:66 msgid "Desciption" msgstr "Описание" -#: netbox/tenancy/forms/bulk_import.py:101 +#: tenancy/forms/bulk_import.py:101 msgid "Assigned contact" msgstr "Назначенный контакт" -#: netbox/tenancy/models/contacts.py:32 +#: tenancy/models/contacts.py:32 msgid "contact group" msgstr "контактная группа" -#: netbox/tenancy/models/contacts.py:33 +#: tenancy/models/contacts.py:33 msgid "contact groups" msgstr "контактные группы" -#: netbox/tenancy/models/contacts.py:48 +#: tenancy/models/contacts.py:48 msgid "contact role" msgstr "роль контакта" -#: netbox/tenancy/models/contacts.py:49 +#: tenancy/models/contacts.py:49 msgid "contact roles" msgstr "контактные роли" -#: netbox/tenancy/models/contacts.py:68 +#: tenancy/models/contacts.py:68 msgid "title" msgstr "название" -#: netbox/tenancy/models/contacts.py:73 +#: tenancy/models/contacts.py:73 msgid "phone" msgstr "телефон" -#: netbox/tenancy/models/contacts.py:78 +#: tenancy/models/contacts.py:78 msgid "email" msgstr "email" -#: netbox/tenancy/models/contacts.py:87 +#: tenancy/models/contacts.py:87 msgid "link" msgstr "ссылка на сайт" -#: netbox/tenancy/models/contacts.py:103 +#: tenancy/models/contacts.py:103 msgid "contact" msgstr "контакт" -#: netbox/tenancy/models/contacts.py:104 +#: tenancy/models/contacts.py:104 msgid "contacts" msgstr "контакты" -#: netbox/tenancy/models/contacts.py:153 +#: tenancy/models/contacts.py:153 msgid "contact assignment" msgstr "назначение контакта" -#: netbox/tenancy/models/contacts.py:154 +#: tenancy/models/contacts.py:154 msgid "contact assignments" msgstr "назначение контактов" -#: netbox/tenancy/models/contacts.py:170 +#: tenancy/models/contacts.py:170 #, python-brace-format msgid "Contacts cannot be assigned to this object type ({type})." msgstr "Контакты не могут быть присвоены этому типу объекта ({type})." -#: netbox/tenancy/models/tenants.py:32 +#: tenancy/models/tenants.py:32 msgid "tenant group" msgstr "группа арендаторов" -#: netbox/tenancy/models/tenants.py:33 +#: tenancy/models/tenants.py:33 msgid "tenant groups" msgstr "группы арендаторов" -#: netbox/tenancy/models/tenants.py:70 +#: tenancy/models/tenants.py:70 msgid "Tenant name must be unique per group." msgstr "Имя арендатора должно быть уникальным для каждой группы." -#: netbox/tenancy/models/tenants.py:80 +#: tenancy/models/tenants.py:80 msgid "Tenant slug must be unique per group." msgstr "Подстрока арендатора должна быть уникальной для каждой группы." -#: netbox/tenancy/models/tenants.py:88 +#: tenancy/models/tenants.py:88 msgid "tenant" msgstr "арендатор" -#: netbox/tenancy/models/tenants.py:89 +#: tenancy/models/tenants.py:89 msgid "tenants" msgstr "арендаторы" -#: netbox/tenancy/tables/contacts.py:112 +#: tenancy/tables/contacts.py:112 msgid "Contact Title" msgstr "Название контактного лица" -#: netbox/tenancy/tables/contacts.py:116 +#: tenancy/tables/contacts.py:116 msgid "Contact Phone" msgstr "Контактный телефон" -#: netbox/tenancy/tables/contacts.py:121 +#: tenancy/tables/contacts.py:121 msgid "Contact Email" msgstr "Контактный адрес электронной почты" -#: netbox/tenancy/tables/contacts.py:125 +#: tenancy/tables/contacts.py:125 msgid "Contact Address" msgstr "Контактный адрес" -#: netbox/tenancy/tables/contacts.py:129 +#: tenancy/tables/contacts.py:129 msgid "Contact Link" msgstr "Контактная ссылка" -#: netbox/tenancy/tables/contacts.py:133 +#: tenancy/tables/contacts.py:133 msgid "Contact Description" msgstr "Описание контакта" -#: netbox/users/filtersets.py:33 netbox/users/filtersets.py:73 +#: users/filtersets.py:33 users/filtersets.py:73 msgid "Permission (ID)" msgstr "Разрешение (ID)" -#: netbox/users/filtersets.py:38 netbox/users/filtersets.py:78 +#: users/filtersets.py:38 users/filtersets.py:78 msgid "Notification group (ID)" msgstr "Группа уведомлений (ID)" -#: netbox/users/forms/bulk_edit.py:26 +#: users/forms/bulk_edit.py:26 msgid "First name" msgstr "Имя" -#: netbox/users/forms/bulk_edit.py:31 +#: users/forms/bulk_edit.py:31 msgid "Last name" msgstr "Фамилия" -#: netbox/users/forms/bulk_edit.py:43 +#: users/forms/bulk_edit.py:43 msgid "Staff status" msgstr "Статус персонала" -#: netbox/users/forms/bulk_edit.py:48 +#: users/forms/bulk_edit.py:48 msgid "Superuser status" msgstr "Статус суперпользователя" -#: netbox/users/forms/bulk_import.py:41 +#: users/forms/bulk_import.py:41 msgid "If no key is provided, one will be generated automatically." msgstr "Если ключ не указан, он будет сгенерирован автоматически." -#: netbox/users/forms/filtersets.py:51 netbox/users/tables.py:42 +#: users/forms/filtersets.py:51 users/tables.py:42 msgid "Is Staff" msgstr "Является ли персонал" -#: netbox/users/forms/filtersets.py:58 netbox/users/tables.py:45 +#: users/forms/filtersets.py:58 users/tables.py:45 msgid "Is Superuser" msgstr "Является суперпользователем" -#: netbox/users/forms/filtersets.py:91 netbox/users/tables.py:86 +#: users/forms/filtersets.py:91 users/tables.py:86 msgid "Can View" msgstr "Может просматривать" -#: netbox/users/forms/filtersets.py:98 netbox/users/tables.py:89 +#: users/forms/filtersets.py:98 users/tables.py:89 msgid "Can Add" msgstr "Можно добавить" -#: netbox/users/forms/filtersets.py:105 netbox/users/tables.py:92 +#: users/forms/filtersets.py:105 users/tables.py:92 msgid "Can Change" msgstr "Может измениться" -#: netbox/users/forms/filtersets.py:112 netbox/users/tables.py:95 +#: users/forms/filtersets.py:112 users/tables.py:95 msgid "Can Delete" msgstr "Можно удалить" -#: netbox/users/forms/model_forms.py:62 +#: users/forms/model_forms.py:62 msgid "User Interface" msgstr "Пользовательский интерфейс" -#: netbox/users/forms/model_forms.py:114 +#: users/forms/model_forms.py:114 msgid "" "Keys must be at least 40 characters in length. Be sure to record " "your key prior to submitting this form, as it may no longer be " @@ -14706,7 +13964,7 @@ msgstr "" "свой ключ до отправки этой формы, так как после создания токена она" " может быть недоступна." -#: netbox/users/forms/model_forms.py:126 +#: users/forms/model_forms.py:126 msgid "" "Allowed IPv4/IPv6 networks from where the token can be used. Leave blank for" " no restrictions. Example: " @@ -14716,33 +13974,33 @@ msgstr "" "поле пустым, чтобы не было ограничений. Пример: 10.1.1.0/24, " "192.168.10.16/32, 2001:DB8:1::/64" -#: netbox/users/forms/model_forms.py:175 +#: users/forms/model_forms.py:175 msgid "Confirm password" msgstr "Подтвердите пароль" -#: netbox/users/forms/model_forms.py:178 +#: users/forms/model_forms.py:178 msgid "Enter the same password as before, for verification." msgstr "Введите тот же пароль, что и раньше, для проверки." -#: netbox/users/forms/model_forms.py:227 +#: users/forms/model_forms.py:227 msgid "Passwords do not match! Please check your input and try again." msgstr "" "Пароли не совпадают! Пожалуйста, проверьте введенные данные и попробуйте " "снова." -#: netbox/users/forms/model_forms.py:294 +#: users/forms/model_forms.py:294 msgid "Additional actions" msgstr "Дополнительные действия" -#: netbox/users/forms/model_forms.py:297 +#: users/forms/model_forms.py:297 msgid "Actions granted in addition to those listed above" msgstr "Действия, предпринятые в дополнение к перечисленным выше" -#: netbox/users/forms/model_forms.py:313 +#: users/forms/model_forms.py:313 msgid "Objects" msgstr "Объекты" -#: netbox/users/forms/model_forms.py:325 +#: users/forms/model_forms.py:325 msgid "" "JSON expression of a queryset filter that will return only permitted " "objects. Leave null to match all objects of this type. A list of multiple " @@ -14752,78 +14010,78 @@ msgstr "" "Оставьте значение null для соответствия всем объектам этого типа. Список из " "нескольких объектов приведет к логической операции ИЛИ." -#: netbox/users/forms/model_forms.py:364 +#: users/forms/model_forms.py:364 msgid "At least one action must be selected." msgstr "Должно быть выбрано хотя бы одно действие." -#: netbox/users/forms/model_forms.py:382 +#: users/forms/model_forms.py:382 #, python-brace-format msgid "Invalid filter for {model}: {error}" msgstr "Неверный фильтр для {model}: {error}" -#: netbox/users/models/permissions.py:39 +#: users/models/permissions.py:39 msgid "The list of actions granted by this permission" msgstr "Список действий, предусмотренных этим разрешением" -#: netbox/users/models/permissions.py:44 +#: users/models/permissions.py:44 msgid "constraints" msgstr "ограничения" -#: netbox/users/models/permissions.py:45 +#: users/models/permissions.py:45 msgid "" "Queryset filter matching the applicable objects of the selected type(s)" msgstr "" "Фильтр Queryset, соответствующий применимым объектам выбранного типа (типов)" -#: netbox/users/models/permissions.py:52 +#: users/models/permissions.py:52 msgid "permission" msgstr "разрешение" -#: netbox/users/models/permissions.py:53 netbox/users/models/users.py:47 +#: users/models/permissions.py:53 users/models/users.py:47 msgid "permissions" msgstr "разрешения" -#: netbox/users/models/preferences.py:29 netbox/users/models/preferences.py:30 +#: users/models/preferences.py:29 users/models/preferences.py:30 msgid "user preferences" msgstr "пользовательские настройки" -#: netbox/users/models/preferences.py:97 +#: users/models/preferences.py:97 #, python-brace-format msgid "Key '{path}' is a leaf node; cannot assign new keys" msgstr "Ключ '{path}'является листовым узлом; не может назначать новые ключи" -#: netbox/users/models/preferences.py:109 +#: users/models/preferences.py:109 #, python-brace-format msgid "Key '{path}' is a dictionary; cannot assign a non-dictionary value" msgstr "" "Ключ '{path}'— словарь; не может присвоить значение, отличное от словаря" -#: netbox/users/models/tokens.py:36 +#: users/models/tokens.py:36 msgid "expires" msgstr "истекает" -#: netbox/users/models/tokens.py:41 +#: users/models/tokens.py:41 msgid "last used" msgstr "последний раз использованный" -#: netbox/users/models/tokens.py:46 +#: users/models/tokens.py:46 msgid "key" msgstr "ключ" -#: netbox/users/models/tokens.py:52 +#: users/models/tokens.py:52 msgid "write enabled" msgstr "запись включена" -#: netbox/users/models/tokens.py:54 +#: users/models/tokens.py:54 msgid "Permit create/update/delete operations using this key" msgstr "" "Разрешить операции создания/обновления/удаления с использованием этого ключа" -#: netbox/users/models/tokens.py:65 +#: users/models/tokens.py:65 msgid "allowed IPs" msgstr "разрешенные IP-адреса" -#: netbox/users/models/tokens.py:67 +#: users/models/tokens.py:67 msgid "" "Allowed IPv4/IPv6 networks from where the token can be used. Leave blank for" " no restrictions. Ex: \"10.1.1.0/24, 192.168.10.16/32, 2001:DB8:1::/64\"" @@ -14832,43 +14090,43 @@ msgstr "" "поле пустым, чтобы не было ограничений. Пример: «10.1.1.0/24, " "192.168.10.16/32, 2001:DB8:1::/64»" -#: netbox/users/models/tokens.py:75 +#: users/models/tokens.py:75 msgid "token" msgstr "токен" -#: netbox/users/models/tokens.py:76 +#: users/models/tokens.py:76 msgid "tokens" msgstr "токены" -#: netbox/users/models/users.py:57 netbox/vpn/models/crypto.py:42 +#: users/models/users.py:57 vpn/models/crypto.py:42 msgid "group" msgstr "группа" -#: netbox/users/models/users.py:92 +#: users/models/users.py:92 msgid "user" msgstr "пользователя" -#: netbox/users/models/users.py:104 +#: users/models/users.py:104 msgid "A user with this username already exists." msgstr "Пользователь с таким именем уже существует." -#: netbox/users/tables.py:98 +#: users/tables.py:98 msgid "Custom Actions" msgstr "Настраиваемые Действия" -#: netbox/utilities/api.py:153 +#: utilities/api.py:153 #, python-brace-format msgid "Related object not found using the provided attributes: {params}" msgstr "" "Связанный объект не найден с использованием предоставленных атрибутов: " "{params}" -#: netbox/utilities/api.py:156 +#: utilities/api.py:156 #, python-brace-format msgid "Multiple objects match the provided attributes: {params}" msgstr "Предоставленным атрибутам соответствуют несколько объектов: {params}" -#: netbox/utilities/api.py:168 +#: utilities/api.py:168 #, python-brace-format msgid "" "Related objects must be referenced by numeric ID or by dictionary of " @@ -14877,43 +14135,43 @@ msgstr "" "На связанные объекты следует ссылаться с помощью числового идентификатора " "или словаря атрибутов. Получено нераспознанное значение: {value}" -#: netbox/utilities/api.py:177 +#: utilities/api.py:177 #, python-brace-format msgid "Related object not found using the provided numeric ID: {id}" msgstr "" "Связанный объект не найден с использованием предоставленного числового " "идентификатора: {id}" -#: netbox/utilities/choices.py:19 +#: utilities/choices.py:19 #, python-brace-format msgid "{name} has a key defined but CHOICES is not a list" msgstr "{name} имеет определенный ключ, но CHOICES не является списком" -#: netbox/utilities/conversion.py:19 +#: utilities/conversion.py:19 msgid "Weight must be a positive number" msgstr "Вес должен быть положительным числом" -#: netbox/utilities/conversion.py:21 +#: utilities/conversion.py:21 #, python-brace-format msgid "Invalid value '{weight}' for weight (must be a number)" msgstr "Неверное значение '{weight}'для веса (должно быть число)" -#: netbox/utilities/conversion.py:32 netbox/utilities/conversion.py:62 +#: utilities/conversion.py:32 utilities/conversion.py:62 #, python-brace-format msgid "Unknown unit {unit}. Must be one of the following: {valid_units}" msgstr "" "Неизвестная единица {unit}. Должно быть одно из следующих: {valid_units}" -#: netbox/utilities/conversion.py:45 +#: utilities/conversion.py:45 msgid "Length must be a positive number" msgstr "Длина должна быть положительным числом" -#: netbox/utilities/conversion.py:47 +#: utilities/conversion.py:47 #, python-brace-format msgid "Invalid value '{length}' for length (must be a number)" msgstr "Неверное значение '{length}'для длины (должно быть число)" -#: netbox/utilities/error_handlers.py:31 +#: utilities/error_handlers.py:31 #, python-brace-format msgid "" "Unable to delete {objects}. {count} dependent objects were " @@ -14922,15 +14180,15 @@ msgstr "" "Невозможно удалить {objects}. {count} найдены зависимые " "объекты: " -#: netbox/utilities/error_handlers.py:33 +#: utilities/error_handlers.py:33 msgid "More than 50" msgstr "Более 50" -#: netbox/utilities/fields.py:30 +#: utilities/fields.py:30 msgid "RGB color in hexadecimal. Example: " msgstr "Цвет RGB в шестнадцатеричном формате. Пример:" -#: netbox/utilities/fields.py:159 +#: utilities/fields.py:159 #, python-format msgid "" "%s(%r) is invalid. to_model parameter to CounterCacheField must be a string " @@ -14939,7 +14197,7 @@ msgstr "" "%s(%r) недействителен. Параметр to_model для CounterCacheField должен быть " "строкой в формате app.model" -#: netbox/utilities/fields.py:169 +#: utilities/fields.py:169 #, python-format msgid "" "%s(%r) is invalid. to_field parameter to CounterCacheField must be a string " @@ -14948,36 +14206,36 @@ msgstr "" "%s(%r) недействителен. Параметр to_field для CounterCacheField должен быть " "строкой в формате «поле»" -#: netbox/utilities/forms/bulk_import.py:23 +#: utilities/forms/bulk_import.py:23 msgid "Enter object data in CSV, JSON or YAML format." msgstr "Введите объектные данные в формате CSV, JSON или YAML." -#: netbox/utilities/forms/bulk_import.py:36 +#: utilities/forms/bulk_import.py:36 msgid "CSV delimiter" msgstr "CSV-разделитель" -#: netbox/utilities/forms/bulk_import.py:37 +#: utilities/forms/bulk_import.py:37 msgid "The character which delimits CSV fields. Applies only to CSV format." msgstr "Символ, ограничивающий поля CSV. Применяется только к формату CSV." -#: netbox/utilities/forms/bulk_import.py:51 +#: utilities/forms/bulk_import.py:51 msgid "Form data must be empty when uploading/selecting a file." msgstr "При загрузке/выборе файла данные формы должны быть пустыми." -#: netbox/utilities/forms/bulk_import.py:80 +#: utilities/forms/bulk_import.py:80 #, python-brace-format msgid "Unknown data format: {format}" msgstr "Неизвестный формат данных: {format}" -#: netbox/utilities/forms/bulk_import.py:100 +#: utilities/forms/bulk_import.py:100 msgid "Unable to detect data format. Please specify." msgstr "Не удалось определить формат данных. Пожалуйста, укажите." -#: netbox/utilities/forms/bulk_import.py:123 +#: utilities/forms/bulk_import.py:123 msgid "Invalid CSV delimiter" msgstr "Неверный разделитель CSV" -#: netbox/utilities/forms/bulk_import.py:167 +#: utilities/forms/bulk_import.py:167 msgid "" "Invalid YAML data. Data must be in the form of multiple documents, or a " "single document comprising a list of dictionaries." @@ -14985,7 +14243,7 @@ msgstr "" "Неверные данные YAML. Данные должны быть в форме нескольких документов или " "одного документа, содержащего список словарей." -#: netbox/utilities/forms/fields/array.py:20 +#: utilities/forms/fields/array.py:20 #, python-brace-format msgid "" "Invalid list ({value}). Must be numeric and ranges must be in ascending " @@ -14994,7 +14252,7 @@ msgstr "" "Неверный список ({value}). Должен быть числовым, а диапазоны — в порядке " "возрастания." -#: netbox/utilities/forms/fields/array.py:40 +#: utilities/forms/fields/array.py:40 msgid "" "Specify one or more numeric ranges separated by commas. Example: " "1-5,20-30" @@ -15002,7 +14260,7 @@ msgstr "" "Укажите один или несколько числовых диапазонов, разделенных запятыми. " "Пример: 1-5, 20-30" -#: netbox/utilities/forms/fields/array.py:47 +#: utilities/forms/fields/array.py:47 #, python-brace-format msgid "" "Invalid ranges ({value}). Must be a range of integers in ascending order." @@ -15010,18 +14268,17 @@ msgstr "" "Неверные диапазоны ({value}). Должен быть диапазон целых чисел в порядке " "возрастания." -#: netbox/utilities/forms/fields/csv.py:44 +#: utilities/forms/fields/csv.py:44 #, python-brace-format msgid "Invalid value for a multiple choice field: {value}" msgstr "Неверное значение для поля с несколькими вариантами ответов: {value}" -#: netbox/utilities/forms/fields/csv.py:57 -#: netbox/utilities/forms/fields/csv.py:78 +#: utilities/forms/fields/csv.py:57 utilities/forms/fields/csv.py:78 #, python-format msgid "Object not found: %(value)s" msgstr "Объект не найден: %(value)s" -#: netbox/utilities/forms/fields/csv.py:65 +#: utilities/forms/fields/csv.py:65 #, python-brace-format msgid "" "\"{value}\" is not a unique value for this field; multiple objects were " @@ -15030,20 +14287,20 @@ msgstr "" "«{value}\"не является уникальным значением для этого поля; найдено несколько" " объектов" -#: netbox/utilities/forms/fields/csv.py:69 +#: utilities/forms/fields/csv.py:69 #, python-brace-format msgid "\"{field_name}\" is an invalid accessor field name." msgstr "\"{field_name}\" — неправильное имя поля доступа." -#: netbox/utilities/forms/fields/csv.py:101 +#: utilities/forms/fields/csv.py:101 msgid "Object type must be specified as \".\"" msgstr "Тип объекта должен быть указан как».»" -#: netbox/utilities/forms/fields/csv.py:105 +#: utilities/forms/fields/csv.py:105 msgid "Invalid object type" msgstr "Неверный тип объекта" -#: netbox/utilities/forms/fields/expandable.py:25 +#: utilities/forms/fields/expandable.py:25 msgid "" "Alphanumeric ranges are supported for bulk creation. Mixed cases and types " "within a single range are not supported (example: " @@ -15053,7 +14310,7 @@ msgstr "" "Смешанные регистр и типы в одном диапазоне не поддерживаются (например: " "[возраст, пол] -0/0/ [0-9])." -#: netbox/utilities/forms/fields/expandable.py:46 +#: utilities/forms/fields/expandable.py:46 msgid "" "Specify a numeric range to create multiple IPs.
Example: " "192.0.2.[1,5,100-254]/24" @@ -15061,7 +14318,7 @@ msgstr "" "Укажите числовой диапазон для создания нескольких IP-адресов.
Пример: " "192.0.2 [1,5,100-254] /24" -#: netbox/utilities/forms/fields/fields.py:31 +#: utilities/forms/fields/fields.py:31 #, python-brace-format msgid "" " Уценка поддерживается синтаксис" -#: netbox/utilities/forms/fields/fields.py:48 +#: utilities/forms/fields/fields.py:48 msgid "URL-friendly unique shorthand" msgstr "Уникальное сокращение, удобное для URL-адресов" -#: netbox/utilities/forms/fields/fields.py:101 +#: utilities/forms/fields/fields.py:101 msgid "Enter context data in JSON format." msgstr "" "Введите контекстные данные в JSON формат." -#: netbox/utilities/forms/fields/fields.py:124 +#: utilities/forms/fields/fields.py:124 msgid "MAC address must be in EUI-48 format" msgstr "MAC-адрес должен быть в формате EUI-48" -#: netbox/utilities/forms/forms.py:52 +#: utilities/forms/forms.py:52 msgid "Use regular expressions" msgstr "Используйте регулярные выражения" -#: netbox/utilities/forms/forms.py:75 +#: utilities/forms/forms.py:75 msgid "" "Numeric ID of an existing object to update (if not creating a new object)" msgstr "" "Числовой ID существующего объекта для обновления (если не создается новый " "объект)" -#: netbox/utilities/forms/forms.py:92 +#: utilities/forms/forms.py:92 #, python-brace-format msgid "Unrecognized header: {name}" msgstr "Неизвестный заголовок: {name}" -#: netbox/utilities/forms/forms.py:118 +#: utilities/forms/forms.py:118 msgid "Available Columns" msgstr "Доступные столбцы" -#: netbox/utilities/forms/forms.py:126 +#: utilities/forms/forms.py:126 msgid "Selected Columns" msgstr "Выбранные столбцы" -#: netbox/utilities/forms/mixins.py:44 +#: utilities/forms/mixins.py:44 msgid "" "This object has been modified since the form was rendered. Please consult " "the object's change log for details." @@ -15115,13 +14372,13 @@ msgstr "" "Этот объект был изменен с момента визуализации формы. Подробности см. в " "журнале изменений объекта." -#: netbox/utilities/forms/utils.py:42 netbox/utilities/forms/utils.py:68 -#: netbox/utilities/forms/utils.py:85 netbox/utilities/forms/utils.py:87 +#: utilities/forms/utils.py:42 utilities/forms/utils.py:68 +#: utilities/forms/utils.py:85 utilities/forms/utils.py:87 #, python-brace-format msgid "Range \"{value}\" is invalid." msgstr "Ассортимент»{value}\"недействительно." -#: netbox/utilities/forms/utils.py:74 +#: utilities/forms/utils.py:74 #, python-brace-format msgid "" "Invalid range: Ending value ({end}) must be greater than beginning value " @@ -15130,70 +14387,70 @@ msgstr "" "Неверный диапазон: конечное значение ({end}) должно быть больше начального " "значения ({begin})." -#: netbox/utilities/forms/utils.py:232 +#: utilities/forms/utils.py:232 #, python-brace-format msgid "Duplicate or conflicting column header for \"{field}\"" msgstr "Повторяющийся или конфликтующий заголовок столбца для»{field}»" -#: netbox/utilities/forms/utils.py:238 +#: utilities/forms/utils.py:238 #, python-brace-format msgid "Duplicate or conflicting column header for \"{header}\"" msgstr "Повторяющийся или конфликтующий заголовок столбца для»{header}»" -#: netbox/utilities/forms/utils.py:247 +#: utilities/forms/utils.py:247 #, python-brace-format msgid "Row {row}: Expected {count_expected} columns but found {count_found}" msgstr "" "Ряд {row}: Ожидается {count_expected} столбцы, но найдены {count_found}" -#: netbox/utilities/forms/utils.py:270 +#: utilities/forms/utils.py:270 #, python-brace-format msgid "Unexpected column header \"{field}\" found." msgstr "Неожиданный заголовок столбца»{field}«найдено." -#: netbox/utilities/forms/utils.py:272 +#: utilities/forms/utils.py:272 #, python-brace-format msgid "Column \"{field}\" is not a related object; cannot use dots" msgstr "" "Столбец»{field}\"не является родственным объектом; нельзя использовать точки" -#: netbox/utilities/forms/utils.py:276 +#: utilities/forms/utils.py:276 #, python-brace-format msgid "Invalid related object attribute for column \"{field}\": {to_field}" msgstr "Неверный атрибут связанного объекта для столбца»{field}«: {to_field}" -#: netbox/utilities/forms/utils.py:284 +#: utilities/forms/utils.py:284 #, python-brace-format msgid "Required column header \"{header}\" not found." msgstr "Обязательный заголовок столбца»{header}\"не найден." -#: netbox/utilities/forms/widgets/apiselect.py:124 +#: utilities/forms/widgets/apiselect.py:124 #, python-brace-format msgid "Missing required value for dynamic query param: '{dynamic_params}'" msgstr "" "Отсутствует обязательное значение параметра динамического запроса: " "'{dynamic_params}'" -#: netbox/utilities/forms/widgets/apiselect.py:141 +#: utilities/forms/widgets/apiselect.py:141 #, python-brace-format msgid "Missing required value for static query param: '{static_params}'" msgstr "" "Отсутствует обязательное значение для статического параметра запроса: " "'{static_params}'" -#: netbox/utilities/password_validation.py:13 +#: utilities/password_validation.py:13 msgid "Password must have at least one numeral." msgstr "Пароль должен содержать хотя бы одну цифру." -#: netbox/utilities/password_validation.py:18 +#: utilities/password_validation.py:18 msgid "Password must have at least one uppercase letter." msgstr "Пароль должен содержать хотя бы одну прописную букву." -#: netbox/utilities/password_validation.py:23 +#: utilities/password_validation.py:23 msgid "Password must have at least one lowercase letter." msgstr "Пароль должен содержать хотя бы одну строчную букву." -#: netbox/utilities/password_validation.py:27 +#: utilities/password_validation.py:27 msgid "" "Your password must contain at least one numeral, one uppercase letter and " "one lowercase letter." @@ -15201,7 +14458,7 @@ msgstr "" "Пароль должен содержать как минимум одну цифру, одну прописную и одну " "строчную букву." -#: netbox/utilities/permissions.py:42 +#: utilities/permissions.py:42 #, python-brace-format msgid "" "Invalid permission name: {name}. Must be in the format " @@ -15210,127 +14467,127 @@ msgstr "" "Неверное имя правила доступа: {name}. Должно быть в формате " "._" -#: netbox/utilities/permissions.py:60 +#: utilities/permissions.py:60 #, python-brace-format msgid "Unknown app_label/model_name for {name}" msgstr "Неизвестный app_label/model_name для {name}" -#: netbox/utilities/request.py:76 +#: utilities/request.py:76 #, python-brace-format msgid "Invalid IP address set for {header}: {ip}" msgstr "Неверный IP-адрес установлен для {header}: {ip}" -#: netbox/utilities/tables.py:47 +#: utilities/tables.py:47 #, python-brace-format msgid "A column named {name} is already defined for table {table_name}" msgstr "Столбец с именем {name} уже определено для таблицы {table_name}" -#: netbox/utilities/templates/builtins/customfield_value.html:30 +#: utilities/templates/builtins/customfield_value.html:30 msgid "Not defined" msgstr "Не определено" -#: netbox/utilities/templates/buttons/bookmark.html:9 +#: utilities/templates/buttons/bookmark.html:9 msgid "Unbookmark" msgstr "Удалить закладки" -#: netbox/utilities/templates/buttons/bookmark.html:13 +#: utilities/templates/buttons/bookmark.html:13 msgid "Bookmark" msgstr "Закладка" -#: netbox/utilities/templates/buttons/clone.html:4 +#: utilities/templates/buttons/clone.html:4 msgid "Clone" msgstr "Клонировать" -#: netbox/utilities/templates/buttons/export.html:7 +#: utilities/templates/buttons/export.html:7 msgid "Current View" msgstr "Текущий вид" -#: netbox/utilities/templates/buttons/export.html:8 +#: utilities/templates/buttons/export.html:8 msgid "All Data" msgstr "Все данные" -#: netbox/utilities/templates/buttons/export.html:28 +#: utilities/templates/buttons/export.html:28 msgid "Add export template" msgstr "Добавить шаблон экспорта" -#: netbox/utilities/templates/buttons/import.html:4 +#: utilities/templates/buttons/import.html:4 msgid "Import" msgstr "Импорт" -#: netbox/utilities/templates/buttons/subscribe.html:10 +#: utilities/templates/buttons/subscribe.html:10 msgid "Unsubscribe" msgstr "Отписаться" -#: netbox/utilities/templates/buttons/subscribe.html:14 +#: utilities/templates/buttons/subscribe.html:14 msgid "Subscribe" msgstr "Подписаться" -#: netbox/utilities/templates/form_helpers/render_field.html:41 +#: utilities/templates/form_helpers/render_field.html:41 msgid "Copy to clipboard" msgstr "Скопировать в буфер обмена" -#: netbox/utilities/templates/form_helpers/render_field.html:57 +#: utilities/templates/form_helpers/render_field.html:57 msgid "This field is required" msgstr "Это поле обязательно" -#: netbox/utilities/templates/form_helpers/render_field.html:70 +#: utilities/templates/form_helpers/render_field.html:70 msgid "Set Null" msgstr "Установить значение Null" -#: netbox/utilities/templates/helpers/applied_filters.html:11 +#: utilities/templates/helpers/applied_filters.html:11 msgid "Clear all" msgstr "Очистить все" -#: netbox/utilities/templates/helpers/table_config_form.html:8 +#: utilities/templates/helpers/table_config_form.html:8 msgid "Table Configuration" msgstr "Конфигурация таблицы" -#: netbox/utilities/templates/helpers/table_config_form.html:31 +#: utilities/templates/helpers/table_config_form.html:31 msgid "Move Up" msgstr "Двигаться вверх" -#: netbox/utilities/templates/helpers/table_config_form.html:34 +#: utilities/templates/helpers/table_config_form.html:34 msgid "Move Down" msgstr "Переместить вниз" -#: netbox/utilities/templates/navigation/menu.html:14 +#: utilities/templates/navigation/menu.html:14 msgid "Search…" msgstr "Поиск..." -#: netbox/utilities/templates/navigation/menu.html:14 +#: utilities/templates/navigation/menu.html:14 msgid "Search NetBox" msgstr "Поиск в NetBox" -#: netbox/utilities/templates/widgets/apiselect.html:7 +#: utilities/templates/widgets/apiselect.html:7 msgid "Open selector" msgstr "Открыть селектор" -#: netbox/utilities/templates/widgets/markdown_input.html:6 +#: utilities/templates/widgets/markdown_input.html:6 msgid "Write" msgstr "Текст" -#: netbox/utilities/testing/views.py:632 +#: utilities/testing/views.py:632 msgid "The test must define csv_update_data." msgstr "Тест должен определить csv_update_data." -#: netbox/utilities/validators.py:65 +#: utilities/validators.py:65 #, python-brace-format msgid "{value} is not a valid regular expression." msgstr "{value} не является допустимым регулярным выражением." -#: netbox/utilities/views.py:57 +#: utilities/views.py:57 #, python-brace-format msgid "{self.__class__.__name__} must implement get_required_permission()" msgstr "" "{self.__class__.__name__} должен реализовать функцию get_required_permission" " ()" -#: netbox/utilities/views.py:93 +#: utilities/views.py:93 #, python-brace-format msgid "{class_name} must implement get_required_permission()" msgstr "{class_name} должен реализовать функцию get_required_permission ()" -#: netbox/utilities/views.py:117 +#: utilities/views.py:117 #, python-brace-format msgid "" "{class_name} has no queryset defined. ObjectPermissionRequiredMixin may only" @@ -15340,63 +14597,61 @@ msgstr "" "ObjectPermissionRequiredMixin можно использовать только в представлениях, " "определяющих базовый набор запросов" -#: netbox/virtualization/filtersets.py:79 +#: virtualization/filtersets.py:79 msgid "Parent group (ID)" msgstr "Родительская группа (ID)" -#: netbox/virtualization/filtersets.py:85 +#: virtualization/filtersets.py:85 msgid "Parent group (slug)" msgstr "Родительская группа (подстрока)" -#: netbox/virtualization/filtersets.py:89 -#: netbox/virtualization/filtersets.py:141 +#: virtualization/filtersets.py:89 virtualization/filtersets.py:141 msgid "Cluster type (ID)" msgstr "Тип кластера (ID)" -#: netbox/virtualization/filtersets.py:151 -#: netbox/virtualization/filtersets.py:271 +#: virtualization/filtersets.py:151 virtualization/filtersets.py:271 msgid "Cluster (ID)" msgstr "Кластер (ID)" -#: netbox/virtualization/forms/bulk_edit.py:166 -#: netbox/virtualization/models/virtualmachines.py:115 +#: virtualization/forms/bulk_edit.py:166 +#: virtualization/models/virtualmachines.py:115 msgid "vCPUs" msgstr "Виртуальные процессоры" -#: netbox/virtualization/forms/bulk_edit.py:170 +#: virtualization/forms/bulk_edit.py:170 msgid "Memory (MB)" msgstr "Память (МБ)" -#: netbox/virtualization/forms/bulk_edit.py:174 +#: virtualization/forms/bulk_edit.py:174 msgid "Disk (GB)" msgstr "Диск (ГБ)" -#: netbox/virtualization/forms/bulk_edit.py:334 -#: netbox/virtualization/forms/filtersets.py:251 +#: virtualization/forms/bulk_edit.py:334 +#: virtualization/forms/filtersets.py:251 msgid "Size (GB)" msgstr "Размер (ГБ)" -#: netbox/virtualization/forms/bulk_import.py:44 +#: virtualization/forms/bulk_import.py:44 msgid "Type of cluster" msgstr "Тип кластера" -#: netbox/virtualization/forms/bulk_import.py:51 +#: virtualization/forms/bulk_import.py:51 msgid "Assigned cluster group" msgstr "Назначенная кластерная группа" -#: netbox/virtualization/forms/bulk_import.py:96 +#: virtualization/forms/bulk_import.py:96 msgid "Assigned cluster" msgstr "Назначенный кластер" -#: netbox/virtualization/forms/bulk_import.py:103 +#: virtualization/forms/bulk_import.py:103 msgid "Assigned device within cluster" msgstr "Назначенное устройство в кластере" -#: netbox/virtualization/forms/filtersets.py:183 +#: virtualization/forms/filtersets.py:183 msgid "Serial number" msgstr "Серийный номер" -#: netbox/virtualization/forms/model_forms.py:153 +#: virtualization/forms/model_forms.py:153 #, python-brace-format msgid "" "{device} belongs to a different site ({device_site}) than the cluster " @@ -15405,50 +14660,50 @@ msgstr "" "{device} принадлежит другому сайту ({device_site}), чем кластер " "({cluster_site})" -#: netbox/virtualization/forms/model_forms.py:192 +#: virtualization/forms/model_forms.py:192 msgid "Optionally pin this VM to a specific host device within the cluster" msgstr "" "Дополнительно подключите эту виртуальную машину к определенному хост-" "устройству в кластере." -#: netbox/virtualization/forms/model_forms.py:221 +#: virtualization/forms/model_forms.py:221 msgid "Site/Cluster" msgstr "Сайт/кластер" -#: netbox/virtualization/forms/model_forms.py:244 +#: virtualization/forms/model_forms.py:244 msgid "Disk size is managed via the attachment of virtual disks." msgstr "Размер диска регулируется путем вложения виртуальных дисков." -#: netbox/virtualization/forms/model_forms.py:372 -#: netbox/virtualization/tables/virtualmachines.py:111 +#: virtualization/forms/model_forms.py:372 +#: virtualization/tables/virtualmachines.py:111 msgid "Disk" msgstr "Диск" -#: netbox/virtualization/models/clusters.py:25 +#: virtualization/models/clusters.py:25 msgid "cluster type" msgstr "тип кластера" -#: netbox/virtualization/models/clusters.py:26 +#: virtualization/models/clusters.py:26 msgid "cluster types" msgstr "типы кластеров" -#: netbox/virtualization/models/clusters.py:45 +#: virtualization/models/clusters.py:45 msgid "cluster group" msgstr "кластерная группа" -#: netbox/virtualization/models/clusters.py:46 +#: virtualization/models/clusters.py:46 msgid "cluster groups" msgstr "кластерные группы" -#: netbox/virtualization/models/clusters.py:121 +#: virtualization/models/clusters.py:121 msgid "cluster" msgstr "кластер" -#: netbox/virtualization/models/clusters.py:122 +#: virtualization/models/clusters.py:122 msgid "clusters" msgstr "кластеры" -#: netbox/virtualization/models/clusters.py:141 +#: virtualization/models/clusters.py:141 #, python-brace-format msgid "" "{count} devices are assigned as hosts for this cluster but are not in site " @@ -15457,48 +14712,48 @@ msgstr "" "{count} устройства назначены в качестве хостов для этого кластера, но их нет" " на сайте {site}" -#: netbox/virtualization/models/virtualmachines.py:123 +#: virtualization/models/virtualmachines.py:123 msgid "memory (MB)" msgstr "память (МБ)" -#: netbox/virtualization/models/virtualmachines.py:128 +#: virtualization/models/virtualmachines.py:128 msgid "disk (MB)" msgstr "диск (МБ)" -#: netbox/virtualization/models/virtualmachines.py:166 +#: virtualization/models/virtualmachines.py:166 msgid "Virtual machine name must be unique per cluster." msgstr "Имя виртуальной машины должно быть уникальным для каждого кластера." -#: netbox/virtualization/models/virtualmachines.py:169 +#: virtualization/models/virtualmachines.py:169 msgid "virtual machine" msgstr "виртуальная машина" -#: netbox/virtualization/models/virtualmachines.py:170 +#: virtualization/models/virtualmachines.py:170 msgid "virtual machines" msgstr "виртуальные машины" -#: netbox/virtualization/models/virtualmachines.py:184 +#: virtualization/models/virtualmachines.py:184 msgid "A virtual machine must be assigned to a site and/or cluster." msgstr "Виртуальная машина должна быть назначена сайту и/или кластеру." -#: netbox/virtualization/models/virtualmachines.py:191 +#: virtualization/models/virtualmachines.py:191 #, python-brace-format msgid "" "The selected cluster ({cluster}) is not assigned to this site ({site})." msgstr "Выбранный кластер ({cluster}) не относится к этому сайту ({site})." -#: netbox/virtualization/models/virtualmachines.py:198 +#: virtualization/models/virtualmachines.py:198 msgid "Must specify a cluster when assigning a host device." msgstr "При назначении хост-устройства необходимо указать кластер." -#: netbox/virtualization/models/virtualmachines.py:203 +#: virtualization/models/virtualmachines.py:203 #, python-brace-format msgid "" "The selected device ({device}) is not assigned to this cluster ({cluster})." msgstr "" "Выбранное устройство ({device}) не относится к этому кластеру ({cluster})." -#: netbox/virtualization/models/virtualmachines.py:215 +#: virtualization/models/virtualmachines.py:215 #, python-brace-format msgid "" "The specified disk size ({size}) must match the aggregate size of assigned " @@ -15507,18 +14762,18 @@ msgstr "" "Указанный размер диска ({size}) должен соответствовать совокупному размеру " "назначенных виртуальных дисков ({total_size})." -#: netbox/virtualization/models/virtualmachines.py:229 +#: virtualization/models/virtualmachines.py:229 #, python-brace-format msgid "Must be an IPv{family} address. ({ip} is an IPv{version} address.)" msgstr "" "Должен быть IPV{family} адрес. ({ip} является IP-адресом{version} адрес.)" -#: netbox/virtualization/models/virtualmachines.py:238 +#: virtualization/models/virtualmachines.py:238 #, python-brace-format msgid "The specified IP address ({ip}) is not assigned to this VM." msgstr "Указанный IP-адрес ({ip}) не назначено этой виртуальной машине." -#: netbox/virtualization/models/virtualmachines.py:396 +#: virtualization/models/virtualmachines.py:396 #, python-brace-format msgid "" "The selected parent interface ({parent}) belongs to a different virtual " @@ -15527,7 +14782,7 @@ msgstr "" "Выбранный родительский интерфейс ({parent}) принадлежит другой виртуальной " "машине ({virtual_machine})." -#: netbox/virtualization/models/virtualmachines.py:411 +#: virtualization/models/virtualmachines.py:411 #, python-brace-format msgid "" "The selected bridge interface ({bridge}) belongs to a different virtual " @@ -15536,7 +14791,7 @@ msgstr "" "Выбранный интерфейс моста ({bridge}) принадлежит другой виртуальной машине " "({virtual_machine})." -#: netbox/virtualization/models/virtualmachines.py:422 +#: virtualization/models/virtualmachines.py:422 #, python-brace-format msgid "" "The untagged VLAN ({untagged_vlan}) must belong to the same site as the " @@ -15545,400 +14800,393 @@ msgstr "" "VLAN без тегов ({untagged_vlan}) должна принадлежать тому же сайту, что и " "родительская виртуальная машина интерфейса, или она должна быть глобальной." -#: netbox/virtualization/models/virtualmachines.py:434 +#: virtualization/models/virtualmachines.py:434 msgid "size (MB)" msgstr "размер (МБ)" -#: netbox/virtualization/models/virtualmachines.py:438 +#: virtualization/models/virtualmachines.py:438 msgid "virtual disk" msgstr "виртуальный диск" -#: netbox/virtualization/models/virtualmachines.py:439 +#: virtualization/models/virtualmachines.py:439 msgid "virtual disks" msgstr "виртуальные диски" -#: netbox/virtualization/views.py:275 +#: virtualization/views.py:275 #, python-brace-format msgid "Added {count} devices to cluster {cluster}" msgstr "Добавлено {count} устройств(-а) для кластеризации {cluster}" -#: netbox/virtualization/views.py:310 +#: virtualization/views.py:310 #, python-brace-format msgid "Removed {count} devices from cluster {cluster}" msgstr "Удалено {count} устройств(-а) из кластера {cluster}" -#: netbox/vpn/choices.py:31 +#: vpn/choices.py:31 msgid "IPsec - Transport" msgstr "IPsec — транспорт" -#: netbox/vpn/choices.py:32 +#: vpn/choices.py:32 msgid "IPsec - Tunnel" msgstr "IPsec — туннель" -#: netbox/vpn/choices.py:33 +#: vpn/choices.py:33 msgid "IP-in-IP" msgstr "IP-адрес в IP-адресе" -#: netbox/vpn/choices.py:34 +#: vpn/choices.py:34 msgid "GRE" msgstr "GRE" -#: netbox/vpn/choices.py:56 +#: vpn/choices.py:56 msgid "Hub" msgstr "Hub" -#: netbox/vpn/choices.py:57 +#: vpn/choices.py:57 msgid "Spoke" msgstr "Spoke" -#: netbox/vpn/choices.py:80 +#: vpn/choices.py:80 msgid "Aggressive" msgstr "Агрессивный" -#: netbox/vpn/choices.py:81 +#: vpn/choices.py:81 msgid "Main" msgstr "Главная" -#: netbox/vpn/choices.py:92 +#: vpn/choices.py:92 msgid "Pre-shared keys" msgstr "PSK" -#: netbox/vpn/choices.py:93 +#: vpn/choices.py:93 msgid "Certificates" msgstr "Сертификаты" -#: netbox/vpn/choices.py:94 +#: vpn/choices.py:94 msgid "RSA signatures" msgstr "Подписи RSA" -#: netbox/vpn/choices.py:95 +#: vpn/choices.py:95 msgid "DSA signatures" msgstr "Подписи DSA" -#: netbox/vpn/choices.py:178 netbox/vpn/choices.py:179 -#: netbox/vpn/choices.py:180 netbox/vpn/choices.py:181 -#: netbox/vpn/choices.py:182 netbox/vpn/choices.py:183 -#: netbox/vpn/choices.py:184 netbox/vpn/choices.py:185 -#: netbox/vpn/choices.py:186 netbox/vpn/choices.py:187 -#: netbox/vpn/choices.py:188 netbox/vpn/choices.py:189 -#: netbox/vpn/choices.py:190 netbox/vpn/choices.py:191 -#: netbox/vpn/choices.py:192 netbox/vpn/choices.py:193 -#: netbox/vpn/choices.py:194 netbox/vpn/choices.py:195 -#: netbox/vpn/choices.py:196 netbox/vpn/choices.py:197 -#: netbox/vpn/choices.py:198 netbox/vpn/choices.py:199 -#: netbox/vpn/choices.py:200 netbox/vpn/choices.py:201 +#: vpn/choices.py:178 vpn/choices.py:179 vpn/choices.py:180 vpn/choices.py:181 +#: vpn/choices.py:182 vpn/choices.py:183 vpn/choices.py:184 vpn/choices.py:185 +#: vpn/choices.py:186 vpn/choices.py:187 vpn/choices.py:188 vpn/choices.py:189 +#: vpn/choices.py:190 vpn/choices.py:191 vpn/choices.py:192 vpn/choices.py:193 +#: vpn/choices.py:194 vpn/choices.py:195 vpn/choices.py:196 vpn/choices.py:197 +#: vpn/choices.py:198 vpn/choices.py:199 vpn/choices.py:200 vpn/choices.py:201 #, python-brace-format msgid "Group {n}" msgstr "Группа {n}" -#: netbox/vpn/choices.py:243 +#: vpn/choices.py:243 msgid "Ethernet Private LAN" msgstr "Частная локальная сеть Ethernet" -#: netbox/vpn/choices.py:244 +#: vpn/choices.py:244 msgid "Ethernet Virtual Private LAN" msgstr "Виртуальная частная локальная сеть Ethernet" -#: netbox/vpn/choices.py:247 +#: vpn/choices.py:247 msgid "Ethernet Private Tree" msgstr "Частное дерево Ethernet" -#: netbox/vpn/choices.py:248 +#: vpn/choices.py:248 msgid "Ethernet Virtual Private Tree" msgstr "Виртуальное частное дерево Ethernet" -#: netbox/vpn/filtersets.py:41 +#: vpn/filtersets.py:41 msgid "Tunnel group (ID)" msgstr "Группа туннелей (ID)" -#: netbox/vpn/filtersets.py:47 +#: vpn/filtersets.py:47 msgid "Tunnel group (slug)" msgstr "Группа туннелей (подстрока)" -#: netbox/vpn/filtersets.py:54 +#: vpn/filtersets.py:54 msgid "IPSec profile (ID)" msgstr "Профиль IPsec (ID)" -#: netbox/vpn/filtersets.py:60 +#: vpn/filtersets.py:60 msgid "IPSec profile (name)" msgstr "Профиль IPsec (имя)" -#: netbox/vpn/filtersets.py:81 +#: vpn/filtersets.py:81 msgid "Tunnel (ID)" msgstr "Туннель (ID)" -#: netbox/vpn/filtersets.py:87 +#: vpn/filtersets.py:87 msgid "Tunnel (name)" msgstr "Туннель (название)" -#: netbox/vpn/filtersets.py:118 +#: vpn/filtersets.py:118 msgid "Outside IP (ID)" msgstr "Внешний IP-адрес (ID)" -#: netbox/vpn/filtersets.py:130 netbox/vpn/filtersets.py:263 +#: vpn/filtersets.py:130 vpn/filtersets.py:263 msgid "IKE policy (ID)" msgstr "Политика IKE (ID)" -#: netbox/vpn/filtersets.py:136 netbox/vpn/filtersets.py:269 +#: vpn/filtersets.py:136 vpn/filtersets.py:269 msgid "IKE policy (name)" msgstr "Политика IKE (название)" -#: netbox/vpn/filtersets.py:200 netbox/vpn/filtersets.py:273 +#: vpn/filtersets.py:200 vpn/filtersets.py:273 msgid "IPSec policy (ID)" msgstr "Политика IPsec (ID)" -#: netbox/vpn/filtersets.py:206 netbox/vpn/filtersets.py:279 +#: vpn/filtersets.py:206 vpn/filtersets.py:279 msgid "IPSec policy (name)" msgstr "Политика IPsec (имя)" -#: netbox/vpn/filtersets.py:348 +#: vpn/filtersets.py:348 msgid "L2VPN (slug)" msgstr "L2VPN (подстрока)" -#: netbox/vpn/filtersets.py:412 +#: vpn/filtersets.py:412 msgid "VM Interface (ID)" msgstr "Интерфейс виртуальной машины (ID)" -#: netbox/vpn/filtersets.py:418 +#: vpn/filtersets.py:418 msgid "VLAN (name)" msgstr "VLAN (название)" -#: netbox/vpn/forms/bulk_edit.py:45 netbox/vpn/forms/bulk_import.py:42 -#: netbox/vpn/forms/filtersets.py:54 +#: vpn/forms/bulk_edit.py:45 vpn/forms/bulk_import.py:42 +#: vpn/forms/filtersets.py:54 msgid "Tunnel group" msgstr "Группа туннелей" -#: netbox/vpn/forms/bulk_edit.py:117 netbox/vpn/models/crypto.py:47 +#: vpn/forms/bulk_edit.py:117 vpn/models/crypto.py:47 msgid "SA lifetime" msgstr "Время жизни SA" -#: netbox/vpn/forms/bulk_edit.py:151 netbox/wireless/forms/bulk_edit.py:79 -#: netbox/wireless/forms/bulk_edit.py:126 -#: netbox/wireless/forms/filtersets.py:64 -#: netbox/wireless/forms/filtersets.py:98 +#: vpn/forms/bulk_edit.py:151 wireless/forms/bulk_edit.py:79 +#: wireless/forms/bulk_edit.py:126 wireless/forms/filtersets.py:64 +#: wireless/forms/filtersets.py:98 msgid "Pre-shared key" msgstr "Предварительный общий ключ" -#: netbox/vpn/forms/bulk_edit.py:237 netbox/vpn/forms/bulk_import.py:239 -#: netbox/vpn/forms/filtersets.py:199 netbox/vpn/forms/model_forms.py:370 -#: netbox/vpn/models/crypto.py:104 +#: vpn/forms/bulk_edit.py:237 vpn/forms/bulk_import.py:239 +#: vpn/forms/filtersets.py:199 vpn/forms/model_forms.py:370 +#: vpn/models/crypto.py:104 msgid "IKE policy" msgstr "Политика IKE" -#: netbox/vpn/forms/bulk_edit.py:242 netbox/vpn/forms/bulk_import.py:244 -#: netbox/vpn/forms/filtersets.py:204 netbox/vpn/forms/model_forms.py:374 -#: netbox/vpn/models/crypto.py:209 +#: vpn/forms/bulk_edit.py:242 vpn/forms/bulk_import.py:244 +#: vpn/forms/filtersets.py:204 vpn/forms/model_forms.py:374 +#: vpn/models/crypto.py:209 msgid "IPSec policy" msgstr "Политика IPsec" -#: netbox/vpn/forms/bulk_import.py:50 +#: vpn/forms/bulk_import.py:50 msgid "Tunnel encapsulation" msgstr "Инкапсуляция туннелей" -#: netbox/vpn/forms/bulk_import.py:83 +#: vpn/forms/bulk_import.py:83 msgid "Operational role" msgstr "Операционная роль" -#: netbox/vpn/forms/bulk_import.py:90 +#: vpn/forms/bulk_import.py:90 msgid "Parent device of assigned interface" msgstr "Родительское устройство назначенного интерфейса" -#: netbox/vpn/forms/bulk_import.py:97 +#: vpn/forms/bulk_import.py:97 msgid "Parent VM of assigned interface" msgstr "Родительская виртуальная машина назначенного интерфейса" -#: netbox/vpn/forms/bulk_import.py:104 +#: vpn/forms/bulk_import.py:104 msgid "Device or virtual machine interface" msgstr "Интерфейс устройства или виртуальной машины" -#: netbox/vpn/forms/bulk_import.py:183 +#: vpn/forms/bulk_import.py:183 msgid "IKE proposal(s)" msgstr "Предложение (предложения) IKE" -#: netbox/vpn/forms/bulk_import.py:215 netbox/vpn/models/crypto.py:197 +#: vpn/forms/bulk_import.py:215 vpn/models/crypto.py:197 msgid "Diffie-Hellman group for Perfect Forward Secrecy" msgstr "Группа Диффи-Хеллмана за Perfect Forward Secrecy" -#: netbox/vpn/forms/bulk_import.py:222 +#: vpn/forms/bulk_import.py:222 msgid "IPSec proposal(s)" msgstr "Предложение (предложения) IPsec" -#: netbox/vpn/forms/bulk_import.py:236 +#: vpn/forms/bulk_import.py:236 msgid "IPSec protocol" msgstr "Протокол IPsec" -#: netbox/vpn/forms/bulk_import.py:266 +#: vpn/forms/bulk_import.py:266 msgid "L2VPN type" msgstr "Тип L2VPN" -#: netbox/vpn/forms/bulk_import.py:287 +#: vpn/forms/bulk_import.py:287 msgid "Parent device (for interface)" msgstr "Родительское устройство (для интерфейса)" -#: netbox/vpn/forms/bulk_import.py:294 +#: vpn/forms/bulk_import.py:294 msgid "Parent virtual machine (for interface)" msgstr "Родительская виртуальная машина (для интерфейса)" -#: netbox/vpn/forms/bulk_import.py:301 +#: vpn/forms/bulk_import.py:301 msgid "Assigned interface (device or VM)" msgstr "Назначенный интерфейс (устройство или виртуальная машина)" -#: netbox/vpn/forms/bulk_import.py:334 +#: vpn/forms/bulk_import.py:334 msgid "Cannot import device and VM interface terminations simultaneously." msgstr "" "Невозможно одновременно сетевые окончания интерфейса устройства и " "виртуальной машины." -#: netbox/vpn/forms/bulk_import.py:336 +#: vpn/forms/bulk_import.py:336 msgid "Each termination must specify either an interface or a VLAN." msgstr "Каждое оконечное устройство должно указывать интерфейс или VLAN." -#: netbox/vpn/forms/bulk_import.py:338 +#: vpn/forms/bulk_import.py:338 msgid "Cannot assign both an interface and a VLAN." msgstr "Невозможно назначить одновременно интерфейс и VLAN." -#: netbox/vpn/forms/filtersets.py:130 +#: vpn/forms/filtersets.py:130 msgid "IKE version" msgstr "Версия IKE" -#: netbox/vpn/forms/filtersets.py:142 netbox/vpn/forms/filtersets.py:175 -#: netbox/vpn/forms/model_forms.py:298 netbox/vpn/forms/model_forms.py:334 +#: vpn/forms/filtersets.py:142 vpn/forms/filtersets.py:175 +#: vpn/forms/model_forms.py:298 vpn/forms/model_forms.py:334 msgid "Proposal" msgstr "Предложение" -#: netbox/vpn/forms/filtersets.py:251 +#: vpn/forms/filtersets.py:251 msgid "Assigned Object Type" msgstr "Назначенный тип объекта" -#: netbox/vpn/forms/model_forms.py:95 netbox/vpn/forms/model_forms.py:130 -#: netbox/vpn/forms/model_forms.py:240 netbox/vpn/tables/tunnels.py:91 +#: vpn/forms/model_forms.py:95 vpn/forms/model_forms.py:130 +#: vpn/forms/model_forms.py:240 vpn/tables/tunnels.py:91 msgid "Tunnel interface" msgstr "Туннельный интерфейс" -#: netbox/vpn/forms/model_forms.py:150 +#: vpn/forms/model_forms.py:150 msgid "First Termination" msgstr "Первая точка" -#: netbox/vpn/forms/model_forms.py:153 +#: vpn/forms/model_forms.py:153 msgid "Second Termination" msgstr "Вторая точка" -#: netbox/vpn/forms/model_forms.py:197 +#: vpn/forms/model_forms.py:197 msgid "This parameter is required when defining a termination." msgstr "Этот параметр необходим при определении точки." -#: netbox/vpn/forms/model_forms.py:320 netbox/vpn/forms/model_forms.py:356 +#: vpn/forms/model_forms.py:320 vpn/forms/model_forms.py:356 msgid "Policy" msgstr "Политика" -#: netbox/vpn/forms/model_forms.py:487 +#: vpn/forms/model_forms.py:487 msgid "A termination must specify an interface or VLAN." msgstr "В терминации должен быть указан интерфейс или VLAN." -#: netbox/vpn/forms/model_forms.py:489 +#: vpn/forms/model_forms.py:489 msgid "" "A termination can only have one terminating object (an interface or VLAN)." msgstr "" "Терминал может иметь только один конечный объект (интерфейс или VLAN)." -#: netbox/vpn/models/crypto.py:33 +#: vpn/models/crypto.py:33 msgid "encryption algorithm" msgstr "алгоритм шифрования" -#: netbox/vpn/models/crypto.py:37 +#: vpn/models/crypto.py:37 msgid "authentication algorithm" msgstr "алгоритм аутентификации" -#: netbox/vpn/models/crypto.py:44 +#: vpn/models/crypto.py:44 msgid "Diffie-Hellman group ID" msgstr "Идентификатор группы Диффи-Хеллман" -#: netbox/vpn/models/crypto.py:50 +#: vpn/models/crypto.py:50 msgid "Security association lifetime (in seconds)" msgstr "Срок службы охранной ассоциации (в секундах)" -#: netbox/vpn/models/crypto.py:59 +#: vpn/models/crypto.py:59 msgid "IKE proposal" msgstr "Предложение IKE" -#: netbox/vpn/models/crypto.py:60 +#: vpn/models/crypto.py:60 msgid "IKE proposals" msgstr "Предложения IKE" -#: netbox/vpn/models/crypto.py:76 +#: vpn/models/crypto.py:76 msgid "version" msgstr "версия" -#: netbox/vpn/models/crypto.py:88 netbox/vpn/models/crypto.py:190 +#: vpn/models/crypto.py:88 vpn/models/crypto.py:190 msgid "proposals" msgstr "предложений" -#: netbox/vpn/models/crypto.py:91 netbox/wireless/models.py:39 +#: vpn/models/crypto.py:91 wireless/models.py:39 msgid "pre-shared key" msgstr "предварительный общий ключ" -#: netbox/vpn/models/crypto.py:105 +#: vpn/models/crypto.py:105 msgid "IKE policies" msgstr "Политики IKE" -#: netbox/vpn/models/crypto.py:118 +#: vpn/models/crypto.py:118 msgid "Mode is required for selected IKE version" msgstr "Режим необходим для выбранной версии IKE" -#: netbox/vpn/models/crypto.py:122 +#: vpn/models/crypto.py:122 msgid "Mode cannot be used for selected IKE version" msgstr "Режим не может быть использован для выбранной версии IKE" -#: netbox/vpn/models/crypto.py:136 +#: vpn/models/crypto.py:136 msgid "encryption" msgstr "шифрование" -#: netbox/vpn/models/crypto.py:141 +#: vpn/models/crypto.py:141 msgid "authentication" msgstr "аутентификация" -#: netbox/vpn/models/crypto.py:149 +#: vpn/models/crypto.py:149 msgid "Security association lifetime (seconds)" msgstr "Срок действия ассоциации безопасности (в секундах)" -#: netbox/vpn/models/crypto.py:155 +#: vpn/models/crypto.py:155 msgid "Security association lifetime (in kilobytes)" msgstr "Срок действия ассоциации безопасности (в килобайтах)" -#: netbox/vpn/models/crypto.py:164 +#: vpn/models/crypto.py:164 msgid "IPSec proposal" msgstr "Предложение IPsec" -#: netbox/vpn/models/crypto.py:165 +#: vpn/models/crypto.py:165 msgid "IPSec proposals" msgstr "Предложения IPsec" -#: netbox/vpn/models/crypto.py:178 +#: vpn/models/crypto.py:178 msgid "Encryption and/or authentication algorithm must be defined" msgstr "Необходимо определить алгоритм шифрования и/или аутентификации" -#: netbox/vpn/models/crypto.py:210 +#: vpn/models/crypto.py:210 msgid "IPSec policies" msgstr "Политики IPsec" -#: netbox/vpn/models/crypto.py:251 +#: vpn/models/crypto.py:251 msgid "IPSec profiles" msgstr "Профили IPsec" -#: netbox/vpn/models/l2vpn.py:116 +#: vpn/models/l2vpn.py:116 msgid "L2VPN termination" msgstr "L2VPN соединение" -#: netbox/vpn/models/l2vpn.py:117 +#: vpn/models/l2vpn.py:117 msgid "L2VPN terminations" msgstr "L2VPN соединения" -#: netbox/vpn/models/l2vpn.py:135 +#: vpn/models/l2vpn.py:135 #, python-brace-format msgid "L2VPN Termination already assigned ({assigned_object})" msgstr "Терминация L2VPN уже назначена ({assigned_object})" -#: netbox/vpn/models/l2vpn.py:147 +#: vpn/models/l2vpn.py:147 #, python-brace-format msgid "" "{l2vpn_type} L2VPNs cannot have more than two terminations; found " @@ -15947,195 +15195,187 @@ msgstr "" "{l2vpn_type} У L2VPN не может быть более двух терминаций; найдено " "{terminations_count} уже определено." -#: netbox/vpn/models/tunnels.py:26 +#: vpn/models/tunnels.py:26 msgid "tunnel group" msgstr "группа туннелей" -#: netbox/vpn/models/tunnels.py:27 +#: vpn/models/tunnels.py:27 msgid "tunnel groups" msgstr "группы туннелей" -#: netbox/vpn/models/tunnels.py:53 +#: vpn/models/tunnels.py:53 msgid "encapsulation" msgstr "инкапсуляция" -#: netbox/vpn/models/tunnels.py:72 +#: vpn/models/tunnels.py:72 msgid "tunnel ID" msgstr "идентификатор туннеля" -#: netbox/vpn/models/tunnels.py:94 +#: vpn/models/tunnels.py:94 msgid "tunnel" msgstr "туннель" -#: netbox/vpn/models/tunnels.py:95 +#: vpn/models/tunnels.py:95 msgid "tunnels" msgstr "туннели" -#: netbox/vpn/models/tunnels.py:153 +#: vpn/models/tunnels.py:153 msgid "An object may be terminated to only one tunnel at a time." msgstr "Одновременно объект может быть отправлен только в один туннель." -#: netbox/vpn/models/tunnels.py:156 +#: vpn/models/tunnels.py:156 msgid "tunnel termination" msgstr "точка подключения туннеля" -#: netbox/vpn/models/tunnels.py:157 +#: vpn/models/tunnels.py:157 msgid "tunnel terminations" msgstr "точки подключения туннеля" -#: netbox/vpn/models/tunnels.py:174 +#: vpn/models/tunnels.py:174 #, python-brace-format msgid "{name} is already attached to a tunnel ({tunnel})." msgstr "{name} уже подключен к туннелю ({tunnel})." -#: netbox/vpn/tables/crypto.py:22 +#: vpn/tables/crypto.py:22 msgid "Authentication Method" msgstr "Метод аутентификации" -#: netbox/vpn/tables/crypto.py:25 netbox/vpn/tables/crypto.py:97 +#: vpn/tables/crypto.py:25 vpn/tables/crypto.py:97 msgid "Encryption Algorithm" msgstr "Алгоритм шифрования" -#: netbox/vpn/tables/crypto.py:28 netbox/vpn/tables/crypto.py:100 +#: vpn/tables/crypto.py:28 vpn/tables/crypto.py:100 msgid "Authentication Algorithm" msgstr "Алгоритм аутентификации" -#: netbox/vpn/tables/crypto.py:34 +#: vpn/tables/crypto.py:34 msgid "SA Lifetime" msgstr "Срок службы" -#: netbox/vpn/tables/crypto.py:71 +#: vpn/tables/crypto.py:71 msgid "Pre-shared Key" msgstr "Предварительный общий ключ" -#: netbox/vpn/tables/crypto.py:103 +#: vpn/tables/crypto.py:103 msgid "SA Lifetime (Seconds)" msgstr "Срок службы SA (в секундах)" -#: netbox/vpn/tables/crypto.py:106 +#: vpn/tables/crypto.py:106 msgid "SA Lifetime (KB)" msgstr "Срок службы SA (КБ)" -#: netbox/vpn/tables/l2vpn.py:69 +#: vpn/tables/l2vpn.py:69 msgid "Object Parent" msgstr "Родитель объекта" -#: netbox/vpn/tables/l2vpn.py:74 +#: vpn/tables/l2vpn.py:74 msgid "Object Site" msgstr "Сайт объекта" -#: netbox/wireless/choices.py:11 +#: wireless/choices.py:11 msgid "Access point" msgstr "Точка доступа" -#: netbox/wireless/choices.py:12 +#: wireless/choices.py:12 msgid "Station" msgstr "Станция" -#: netbox/wireless/choices.py:467 +#: wireless/choices.py:467 msgid "Open" msgstr "Открыть" -#: netbox/wireless/choices.py:469 +#: wireless/choices.py:469 msgid "WPA Personal (PSK)" msgstr "Персонал WPA (PSK)" -#: netbox/wireless/choices.py:470 +#: wireless/choices.py:470 msgid "WPA Enterprise" msgstr "Предприятие WPA" -#: netbox/wireless/forms/bulk_edit.py:73 -#: netbox/wireless/forms/bulk_edit.py:120 -#: netbox/wireless/forms/bulk_import.py:68 -#: netbox/wireless/forms/bulk_import.py:71 -#: netbox/wireless/forms/bulk_import.py:110 -#: netbox/wireless/forms/bulk_import.py:113 -#: netbox/wireless/forms/filtersets.py:59 -#: netbox/wireless/forms/filtersets.py:93 +#: wireless/forms/bulk_edit.py:73 wireless/forms/bulk_edit.py:120 +#: wireless/forms/bulk_import.py:68 wireless/forms/bulk_import.py:71 +#: wireless/forms/bulk_import.py:110 wireless/forms/bulk_import.py:113 +#: wireless/forms/filtersets.py:59 wireless/forms/filtersets.py:93 msgid "Authentication cipher" msgstr "Шифр аутентификации" -#: netbox/wireless/forms/bulk_edit.py:134 -#: netbox/wireless/forms/bulk_import.py:116 -#: netbox/wireless/forms/bulk_import.py:119 -#: netbox/wireless/forms/filtersets.py:106 +#: wireless/forms/bulk_edit.py:134 wireless/forms/bulk_import.py:116 +#: wireless/forms/bulk_import.py:119 wireless/forms/filtersets.py:106 msgid "Distance unit" msgstr "Единица измерения расстояний" -#: netbox/wireless/forms/bulk_import.py:52 +#: wireless/forms/bulk_import.py:52 msgid "Bridged VLAN" msgstr "Мостовая VLAN" -#: netbox/wireless/forms/bulk_import.py:89 -#: netbox/wireless/tables/wirelesslink.py:28 +#: wireless/forms/bulk_import.py:89 wireless/tables/wirelesslink.py:28 msgid "Interface A" msgstr "Интерфейс A" -#: netbox/wireless/forms/bulk_import.py:93 -#: netbox/wireless/tables/wirelesslink.py:37 +#: wireless/forms/bulk_import.py:93 wireless/tables/wirelesslink.py:37 msgid "Interface B" msgstr "Интерфейс B" -#: netbox/wireless/forms/model_forms.py:161 +#: wireless/forms/model_forms.py:161 msgid "Side B" msgstr "Сторона B" -#: netbox/wireless/models.py:31 +#: wireless/models.py:31 msgid "authentication cipher" msgstr "шифр аутентификации" -#: netbox/wireless/models.py:69 +#: wireless/models.py:69 msgid "wireless LAN group" msgstr "группа беспроводной локальной сети" -#: netbox/wireless/models.py:70 +#: wireless/models.py:70 msgid "wireless LAN groups" msgstr "группы беспроводной локальной сети" -#: netbox/wireless/models.py:116 +#: wireless/models.py:116 msgid "wireless LAN" msgstr "беспроводная локальная сеть" -#: netbox/wireless/models.py:144 +#: wireless/models.py:144 msgid "interface A" msgstr "Интерфейс A" -#: netbox/wireless/models.py:151 +#: wireless/models.py:151 msgid "interface B" msgstr "Интерфейс B" -#: netbox/wireless/models.py:165 +#: wireless/models.py:165 msgid "distance" msgstr "расстояние" -#: netbox/wireless/models.py:172 +#: wireless/models.py:172 msgid "distance unit" msgstr "единица измерения расстояний" -#: netbox/wireless/models.py:219 +#: wireless/models.py:219 msgid "wireless link" msgstr "беспроводное соединение" -#: netbox/wireless/models.py:220 +#: wireless/models.py:220 msgid "wireless links" msgstr "беспроводные соединения" -#: netbox/wireless/models.py:236 +#: wireless/models.py:236 msgid "Must specify a unit when setting a wireless distance" msgstr "" "При настройке беспроводного расстояния необходимо указать единицу измерения" -#: netbox/wireless/models.py:242 netbox/wireless/models.py:248 +#: wireless/models.py:242 wireless/models.py:248 #, python-brace-format msgid "{type} is not a wireless interface." msgstr "{type} не является беспроводным интерфейсом." -#: netbox/wireless/utils.py:16 +#: wireless/utils.py:16 #, python-brace-format msgid "Invalid channel value: {channel}" msgstr "Неверное значение канала: {channel}" -#: netbox/wireless/utils.py:26 +#: wireless/utils.py:26 #, python-brace-format msgid "Invalid channel attribute: {name}" msgstr "Неверный атрибут канала: {name}" diff --git a/netbox/translations/tr/LC_MESSAGES/django.po b/netbox/translations/tr/LC_MESSAGES/django.po index 34544341e..aec1ef71e 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: 2024-10-12 05:02+0000\n" +"POT-Creation-Date: 2024-10-28 19:20+0000\n" "PO-Revision-Date: 2023-10-30 17:48+0000\n" "Last-Translator: Jeremy Stretch, 2024\n" "Language-Team: Turkish (https://app.transifex.com/netbox-community/teams/178115/tr/)\n" @@ -23,2138 +23,1869 @@ msgstr "" "Language: tr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: netbox/account/tables.py:27 netbox/templates/account/token.html:22 -#: netbox/templates/users/token.html:17 netbox/users/forms/bulk_import.py:39 -#: netbox/users/forms/model_forms.py:112 +#: account/tables.py:27 templates/account/token.html:22 +#: templates/users/token.html:17 users/forms/bulk_import.py:39 +#: users/forms/model_forms.py:112 msgid "Key" msgstr "Anahtar" -#: netbox/account/tables.py:31 netbox/users/forms/filtersets.py:132 +#: account/tables.py:31 users/forms/filtersets.py:132 msgid "Write Enabled" msgstr "Yazma Etkin" -#: netbox/account/tables.py:35 netbox/core/choices.py:86 -#: netbox/core/tables/jobs.py:29 netbox/core/tables/tasks.py:79 -#: netbox/extras/tables/tables.py:335 netbox/extras/tables/tables.py:566 -#: netbox/templates/account/token.html:43 -#: netbox/templates/core/configrevision.html:26 -#: netbox/templates/core/configrevision_restore.html:12 -#: netbox/templates/core/job.html:69 netbox/templates/core/rq_task.html:16 -#: netbox/templates/core/rq_task.html:73 -#: netbox/templates/core/rq_worker.html:14 -#: netbox/templates/extras/htmx/script_result.html:12 -#: netbox/templates/extras/journalentry.html:22 -#: netbox/templates/generic/object.html:58 -#: netbox/templates/users/token.html:35 +#: account/tables.py:35 core/choices.py:86 core/tables/jobs.py:29 +#: core/tables/tasks.py:79 extras/tables/tables.py:335 +#: extras/tables/tables.py:566 templates/account/token.html:43 +#: templates/core/configrevision.html:26 +#: templates/core/configrevision_restore.html:12 templates/core/job.html:69 +#: templates/core/rq_task.html:16 templates/core/rq_task.html:73 +#: templates/core/rq_worker.html:14 +#: templates/extras/htmx/script_result.html:12 +#: templates/extras/journalentry.html:22 templates/generic/object.html:58 +#: templates/users/token.html:35 msgid "Created" msgstr "Oluşturuldu" -#: netbox/account/tables.py:39 netbox/templates/account/token.html:47 -#: netbox/templates/users/token.html:39 netbox/users/forms/bulk_edit.py:117 -#: netbox/users/forms/filtersets.py:136 +#: account/tables.py:39 templates/account/token.html:47 +#: templates/users/token.html:39 users/forms/bulk_edit.py:117 +#: users/forms/filtersets.py:136 msgid "Expires" msgstr "Süre bitiş tarihi" -#: netbox/account/tables.py:42 netbox/users/forms/filtersets.py:141 +#: account/tables.py:42 users/forms/filtersets.py:141 msgid "Last Used" msgstr "Son Kullanım" -#: netbox/account/tables.py:45 netbox/templates/account/token.html:55 -#: netbox/templates/users/token.html:47 netbox/users/forms/bulk_edit.py:122 -#: netbox/users/forms/model_forms.py:124 +#: account/tables.py:45 templates/account/token.html:55 +#: templates/users/token.html:47 users/forms/bulk_edit.py:122 +#: users/forms/model_forms.py:124 msgid "Allowed IPs" msgstr "İzin verilen IP'ler" -#: netbox/account/views.py:114 +#: account/views.py:114 #, python-brace-format msgid "Logged in as {user}." msgstr "Olarak oturum açtı {user}." -#: netbox/account/views.py:164 +#: account/views.py:164 msgid "You have logged out." msgstr "Oturumu kapattınız." -#: netbox/account/views.py:216 +#: account/views.py:216 msgid "Your preferences have been updated." msgstr "Tercihleriniz güncellendi." -#: netbox/account/views.py:239 +#: account/views.py:239 msgid "LDAP-authenticated user credentials cannot be changed within NetBox." msgstr "" "LDAP kimliği doğrulanmış kullanıcı kimlik bilgileri NetBox içinde " "değiştirilemez." -#: netbox/account/views.py:254 +#: account/views.py:254 msgid "Your password has been changed successfully." 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:185 -#: netbox/dcim/choices.py:237 netbox/dcim/choices.py:1530 -#: netbox/dcim/choices.py:1606 netbox/dcim/choices.py:1656 -#: netbox/virtualization/choices.py:20 netbox/virtualization/choices.py:45 -#: netbox/vpn/choices.py:18 +#: circuits/choices.py:21 dcim/choices.py:20 dcim/choices.py:102 +#: dcim/choices.py:185 dcim/choices.py:237 dcim/choices.py:1530 +#: dcim/choices.py:1606 dcim/choices.py:1656 virtualization/choices.py:20 +#: virtualization/choices.py:45 vpn/choices.py:18 msgid "Planned" msgstr "Planlanan" -#: netbox/circuits/choices.py:22 netbox/netbox/navigation/menu.py:305 +#: circuits/choices.py:22 netbox/navigation/menu.py:305 msgid "Provisioning" msgstr "Tedarik" -#: netbox/circuits/choices.py:23 netbox/core/tables/tasks.py:22 -#: netbox/dcim/choices.py:22 netbox/dcim/choices.py:103 -#: netbox/dcim/choices.py:184 netbox/dcim/choices.py:236 -#: netbox/dcim/choices.py:1605 netbox/dcim/choices.py:1655 -#: netbox/extras/tables/tables.py:495 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:25 -#: netbox/templates/users/user.html:37 netbox/users/forms/bulk_edit.py:38 -#: netbox/virtualization/choices.py:22 netbox/virtualization/choices.py:44 -#: netbox/vpn/choices.py:19 netbox/wireless/choices.py:25 +#: circuits/choices.py:23 core/tables/tasks.py:22 dcim/choices.py:22 +#: dcim/choices.py:103 dcim/choices.py:184 dcim/choices.py:236 +#: dcim/choices.py:1605 dcim/choices.py:1655 extras/tables/tables.py:495 +#: ipam/choices.py:31 ipam/choices.py:49 ipam/choices.py:69 +#: ipam/choices.py:154 templates/extras/configcontext.html:25 +#: templates/users/user.html:37 users/forms/bulk_edit.py:38 +#: virtualization/choices.py:22 virtualization/choices.py:44 vpn/choices.py:19 +#: wireless/choices.py:25 msgid "Active" msgstr "Aktif" -#: netbox/circuits/choices.py:24 netbox/dcim/choices.py:183 -#: netbox/dcim/choices.py:235 netbox/dcim/choices.py:1604 -#: netbox/dcim/choices.py:1657 netbox/virtualization/choices.py:24 -#: netbox/virtualization/choices.py:43 +#: circuits/choices.py:24 dcim/choices.py:183 dcim/choices.py:235 +#: dcim/choices.py:1604 dcim/choices.py:1657 virtualization/choices.py:24 +#: virtualization/choices.py:43 msgid "Offline" msgstr "Çevrim dışı" -#: netbox/circuits/choices.py:25 +#: circuits/choices.py:25 msgid "Deprovisioning" msgstr "Hazırlıktan Kaldırma" -#: netbox/circuits/choices.py:26 +#: circuits/choices.py:26 msgid "Decommissioned" msgstr "Hizmet dışı bırakıldı" -#: netbox/circuits/choices.py:90 netbox/dcim/choices.py:1617 -#: netbox/tenancy/choices.py:17 +#: circuits/choices.py:90 dcim/choices.py:1617 tenancy/choices.py:17 msgid "Primary" msgstr "Birincil" -#: netbox/circuits/choices.py:91 netbox/ipam/choices.py:90 -#: netbox/tenancy/choices.py:18 +#: circuits/choices.py:91 ipam/choices.py:90 tenancy/choices.py:18 msgid "Secondary" msgstr "İkincil" -#: netbox/circuits/choices.py:92 netbox/tenancy/choices.py:19 +#: circuits/choices.py:92 tenancy/choices.py:19 msgid "Tertiary" msgstr "Üçüncül" -#: netbox/circuits/choices.py:93 netbox/tenancy/choices.py:20 +#: circuits/choices.py:93 tenancy/choices.py:20 msgid "Inactive" msgstr "Etkin Olmayan" -#: netbox/circuits/filtersets.py:31 netbox/circuits/filtersets.py:198 -#: netbox/dcim/filtersets.py:98 netbox/dcim/filtersets.py:152 -#: netbox/dcim/filtersets.py:212 netbox/dcim/filtersets.py:333 -#: netbox/dcim/filtersets.py:464 netbox/dcim/filtersets.py:1021 -#: netbox/dcim/filtersets.py:1368 netbox/dcim/filtersets.py:1903 -#: netbox/dcim/filtersets.py:2146 netbox/dcim/filtersets.py:2204 -#: netbox/ipam/filtersets.py:339 netbox/ipam/filtersets.py:959 -#: netbox/virtualization/filtersets.py:45 -#: netbox/virtualization/filtersets.py:173 netbox/vpn/filtersets.py:358 +#: circuits/filtersets.py:31 circuits/filtersets.py:198 dcim/filtersets.py:98 +#: dcim/filtersets.py:152 dcim/filtersets.py:212 dcim/filtersets.py:333 +#: dcim/filtersets.py:464 dcim/filtersets.py:1021 dcim/filtersets.py:1368 +#: dcim/filtersets.py:1903 dcim/filtersets.py:2146 dcim/filtersets.py:2204 +#: ipam/filtersets.py:339 ipam/filtersets.py:959 +#: virtualization/filtersets.py:45 virtualization/filtersets.py:173 +#: vpn/filtersets.py:358 msgid "Region (ID)" msgstr "Bölge (ID)" -#: netbox/circuits/filtersets.py:38 netbox/circuits/filtersets.py:205 -#: netbox/dcim/filtersets.py:105 netbox/dcim/filtersets.py:158 -#: netbox/dcim/filtersets.py:219 netbox/dcim/filtersets.py:340 -#: netbox/dcim/filtersets.py:471 netbox/dcim/filtersets.py:1028 -#: netbox/dcim/filtersets.py:1375 netbox/dcim/filtersets.py:1910 -#: netbox/dcim/filtersets.py:2153 netbox/dcim/filtersets.py:2211 -#: netbox/extras/filtersets.py:509 netbox/ipam/filtersets.py:346 -#: netbox/ipam/filtersets.py:966 netbox/virtualization/filtersets.py:52 -#: netbox/virtualization/filtersets.py:180 netbox/vpn/filtersets.py:353 +#: circuits/filtersets.py:38 circuits/filtersets.py:205 dcim/filtersets.py:105 +#: dcim/filtersets.py:158 dcim/filtersets.py:219 dcim/filtersets.py:340 +#: dcim/filtersets.py:471 dcim/filtersets.py:1028 dcim/filtersets.py:1375 +#: dcim/filtersets.py:1910 dcim/filtersets.py:2153 dcim/filtersets.py:2211 +#: extras/filtersets.py:509 ipam/filtersets.py:346 ipam/filtersets.py:966 +#: virtualization/filtersets.py:52 virtualization/filtersets.py:180 +#: vpn/filtersets.py:353 msgid "Region (slug)" msgstr "Bölge (kısa ad)" -#: netbox/circuits/filtersets.py:44 netbox/circuits/filtersets.py:211 -#: netbox/dcim/filtersets.py:128 netbox/dcim/filtersets.py:225 -#: netbox/dcim/filtersets.py:346 netbox/dcim/filtersets.py:477 -#: netbox/dcim/filtersets.py:1034 netbox/dcim/filtersets.py:1381 -#: netbox/dcim/filtersets.py:1916 netbox/dcim/filtersets.py:2159 -#: netbox/dcim/filtersets.py:2217 netbox/ipam/filtersets.py:352 -#: netbox/ipam/filtersets.py:972 netbox/virtualization/filtersets.py:58 -#: netbox/virtualization/filtersets.py:186 +#: circuits/filtersets.py:44 circuits/filtersets.py:211 dcim/filtersets.py:128 +#: dcim/filtersets.py:225 dcim/filtersets.py:346 dcim/filtersets.py:477 +#: dcim/filtersets.py:1034 dcim/filtersets.py:1381 dcim/filtersets.py:1916 +#: dcim/filtersets.py:2159 dcim/filtersets.py:2217 ipam/filtersets.py:352 +#: ipam/filtersets.py:972 virtualization/filtersets.py:58 +#: virtualization/filtersets.py:186 msgid "Site group (ID)" msgstr "Site grubu (ID)" -#: netbox/circuits/filtersets.py:51 netbox/circuits/filtersets.py:218 -#: netbox/dcim/filtersets.py:135 netbox/dcim/filtersets.py:232 -#: netbox/dcim/filtersets.py:353 netbox/dcim/filtersets.py:484 -#: netbox/dcim/filtersets.py:1041 netbox/dcim/filtersets.py:1388 -#: netbox/dcim/filtersets.py:1923 netbox/dcim/filtersets.py:2166 -#: netbox/dcim/filtersets.py:2224 netbox/extras/filtersets.py:515 -#: netbox/ipam/filtersets.py:359 netbox/ipam/filtersets.py:979 -#: netbox/virtualization/filtersets.py:65 -#: netbox/virtualization/filtersets.py:193 +#: circuits/filtersets.py:51 circuits/filtersets.py:218 dcim/filtersets.py:135 +#: dcim/filtersets.py:232 dcim/filtersets.py:353 dcim/filtersets.py:484 +#: dcim/filtersets.py:1041 dcim/filtersets.py:1388 dcim/filtersets.py:1923 +#: dcim/filtersets.py:2166 dcim/filtersets.py:2224 extras/filtersets.py:515 +#: ipam/filtersets.py:359 ipam/filtersets.py:979 +#: virtualization/filtersets.py:65 virtualization/filtersets.py:193 msgid "Site group (slug)" msgstr "Site grubu (kısa ad)" -#: netbox/circuits/filtersets.py:56 netbox/circuits/forms/bulk_edit.py:188 -#: netbox/circuits/forms/bulk_edit.py:216 -#: netbox/circuits/forms/bulk_import.py:124 -#: netbox/circuits/forms/filtersets.py:51 -#: netbox/circuits/forms/filtersets.py:171 -#: netbox/circuits/forms/filtersets.py:209 -#: netbox/circuits/forms/model_forms.py:138 -#: netbox/circuits/forms/model_forms.py:154 -#: netbox/circuits/tables/circuits.py:113 netbox/dcim/forms/bulk_edit.py:168 -#: netbox/dcim/forms/bulk_edit.py:329 netbox/dcim/forms/bulk_edit.py:677 -#: netbox/dcim/forms/bulk_edit.py:873 netbox/dcim/forms/bulk_import.py:131 -#: netbox/dcim/forms/bulk_import.py:230 netbox/dcim/forms/bulk_import.py:309 -#: netbox/dcim/forms/bulk_import.py:540 netbox/dcim/forms/bulk_import.py:1311 -#: netbox/dcim/forms/bulk_import.py:1339 netbox/dcim/forms/filtersets.py:87 -#: netbox/dcim/forms/filtersets.py:225 netbox/dcim/forms/filtersets.py:342 -#: netbox/dcim/forms/filtersets.py:439 netbox/dcim/forms/filtersets.py:753 -#: netbox/dcim/forms/filtersets.py:997 netbox/dcim/forms/filtersets.py:1021 -#: netbox/dcim/forms/filtersets.py:1111 netbox/dcim/forms/filtersets.py:1149 -#: netbox/dcim/forms/filtersets.py:1584 netbox/dcim/forms/filtersets.py:1608 -#: netbox/dcim/forms/filtersets.py:1632 netbox/dcim/forms/model_forms.py:137 -#: netbox/dcim/forms/model_forms.py:165 netbox/dcim/forms/model_forms.py:238 -#: netbox/dcim/forms/model_forms.py:463 netbox/dcim/forms/model_forms.py:723 -#: netbox/dcim/forms/object_create.py:391 netbox/dcim/tables/devices.py:153 -#: netbox/dcim/tables/power.py:26 netbox/dcim/tables/power.py:93 -#: netbox/dcim/tables/racks.py:122 netbox/dcim/tables/racks.py:207 -#: netbox/dcim/tables/sites.py:134 netbox/extras/filtersets.py:525 -#: netbox/ipam/forms/bulk_edit.py:217 netbox/ipam/forms/bulk_edit.py:284 -#: netbox/ipam/forms/bulk_edit.py:451 netbox/ipam/forms/bulk_edit.py:529 -#: netbox/ipam/forms/bulk_import.py:171 netbox/ipam/forms/bulk_import.py:429 -#: netbox/ipam/forms/filtersets.py:153 netbox/ipam/forms/filtersets.py:231 -#: netbox/ipam/forms/filtersets.py:432 netbox/ipam/forms/filtersets.py:489 -#: netbox/ipam/forms/model_forms.py:205 netbox/ipam/forms/model_forms.py:636 -#: netbox/ipam/tables/ip.py:245 netbox/ipam/tables/vlans.py:118 -#: netbox/ipam/tables/vlans.py:221 -#: netbox/templates/circuits/inc/circuit_termination_fields.html:6 -#: netbox/templates/dcim/device.html:22 -#: netbox/templates/dcim/inc/cable_termination.html:8 -#: netbox/templates/dcim/inc/cable_termination.html:33 -#: netbox/templates/dcim/location.html:37 -#: netbox/templates/dcim/powerpanel.html:22 netbox/templates/dcim/rack.html:20 -#: netbox/templates/dcim/rackreservation.html:28 -#: netbox/templates/dcim/site.html:28 netbox/templates/ipam/prefix.html:56 -#: netbox/templates/ipam/vlan.html:23 netbox/templates/ipam/vlan_edit.html:40 -#: netbox/templates/virtualization/cluster.html:42 -#: netbox/templates/virtualization/virtualmachine.html:95 -#: netbox/virtualization/forms/bulk_edit.py:91 -#: netbox/virtualization/forms/bulk_edit.py:109 -#: netbox/virtualization/forms/bulk_edit.py:124 -#: netbox/virtualization/forms/bulk_import.py:59 -#: netbox/virtualization/forms/bulk_import.py:85 -#: netbox/virtualization/forms/filtersets.py:79 -#: netbox/virtualization/forms/filtersets.py:148 -#: netbox/virtualization/forms/model_forms.py:71 -#: netbox/virtualization/forms/model_forms.py:104 -#: netbox/virtualization/forms/model_forms.py:171 -#: netbox/virtualization/tables/clusters.py:77 -#: netbox/virtualization/tables/virtualmachines.py:63 -#: netbox/vpn/forms/filtersets.py:266 netbox/wireless/forms/model_forms.py:76 -#: netbox/wireless/forms/model_forms.py:118 +#: circuits/filtersets.py:56 circuits/forms/bulk_edit.py:188 +#: circuits/forms/bulk_edit.py:216 circuits/forms/bulk_import.py:124 +#: circuits/forms/filtersets.py:51 circuits/forms/filtersets.py:171 +#: circuits/forms/filtersets.py:209 circuits/forms/model_forms.py:138 +#: circuits/forms/model_forms.py:154 circuits/tables/circuits.py:113 +#: dcim/forms/bulk_edit.py:168 dcim/forms/bulk_edit.py:329 +#: dcim/forms/bulk_edit.py:677 dcim/forms/bulk_edit.py:873 +#: dcim/forms/bulk_import.py:131 dcim/forms/bulk_import.py:230 +#: dcim/forms/bulk_import.py:309 dcim/forms/bulk_import.py:540 +#: dcim/forms/bulk_import.py:1311 dcim/forms/bulk_import.py:1339 +#: dcim/forms/filtersets.py:87 dcim/forms/filtersets.py:225 +#: dcim/forms/filtersets.py:342 dcim/forms/filtersets.py:439 +#: dcim/forms/filtersets.py:753 dcim/forms/filtersets.py:997 +#: dcim/forms/filtersets.py:1021 dcim/forms/filtersets.py:1111 +#: dcim/forms/filtersets.py:1149 dcim/forms/filtersets.py:1584 +#: dcim/forms/filtersets.py:1608 dcim/forms/filtersets.py:1632 +#: dcim/forms/model_forms.py:137 dcim/forms/model_forms.py:165 +#: dcim/forms/model_forms.py:238 dcim/forms/model_forms.py:463 +#: dcim/forms/model_forms.py:723 dcim/forms/object_create.py:391 +#: dcim/tables/devices.py:153 dcim/tables/power.py:26 dcim/tables/power.py:93 +#: dcim/tables/racks.py:122 dcim/tables/racks.py:207 dcim/tables/sites.py:134 +#: extras/filtersets.py:525 ipam/forms/bulk_edit.py:218 +#: ipam/forms/bulk_edit.py:285 ipam/forms/bulk_edit.py:484 +#: ipam/forms/bulk_import.py:171 ipam/forms/bulk_import.py:429 +#: ipam/forms/filtersets.py:153 ipam/forms/filtersets.py:231 +#: ipam/forms/filtersets.py:432 ipam/forms/filtersets.py:489 +#: ipam/forms/model_forms.py:205 ipam/forms/model_forms.py:636 +#: ipam/tables/ip.py:245 ipam/tables/vlans.py:118 ipam/tables/vlans.py:221 +#: templates/circuits/inc/circuit_termination_fields.html:6 +#: templates/dcim/device.html:22 templates/dcim/inc/cable_termination.html:8 +#: templates/dcim/inc/cable_termination.html:33 +#: templates/dcim/location.html:37 templates/dcim/powerpanel.html:22 +#: templates/dcim/rack.html:20 templates/dcim/rackreservation.html:28 +#: templates/dcim/site.html:28 templates/ipam/prefix.html:56 +#: templates/ipam/vlan.html:23 templates/ipam/vlan_edit.html:40 +#: templates/virtualization/cluster.html:42 +#: templates/virtualization/virtualmachine.html:95 +#: virtualization/forms/bulk_edit.py:91 virtualization/forms/bulk_edit.py:109 +#: virtualization/forms/bulk_edit.py:124 +#: virtualization/forms/bulk_import.py:59 +#: virtualization/forms/bulk_import.py:85 +#: virtualization/forms/filtersets.py:79 +#: virtualization/forms/filtersets.py:148 +#: virtualization/forms/model_forms.py:71 +#: virtualization/forms/model_forms.py:104 +#: virtualization/forms/model_forms.py:171 +#: virtualization/tables/clusters.py:77 +#: virtualization/tables/virtualmachines.py:63 vpn/forms/filtersets.py:266 +#: wireless/forms/model_forms.py:76 wireless/forms/model_forms.py:118 msgid "Site" msgstr "Site" -#: netbox/circuits/filtersets.py:62 netbox/circuits/filtersets.py:229 -#: netbox/circuits/filtersets.py:274 netbox/dcim/filtersets.py:242 -#: netbox/dcim/filtersets.py:363 netbox/dcim/filtersets.py:458 -#: netbox/extras/filtersets.py:531 netbox/ipam/filtersets.py:238 -#: netbox/ipam/filtersets.py:369 netbox/ipam/filtersets.py:989 -#: netbox/virtualization/filtersets.py:75 -#: netbox/virtualization/filtersets.py:203 netbox/vpn/filtersets.py:363 +#: circuits/filtersets.py:62 circuits/filtersets.py:229 +#: circuits/filtersets.py:274 dcim/filtersets.py:242 dcim/filtersets.py:363 +#: dcim/filtersets.py:458 extras/filtersets.py:531 ipam/filtersets.py:238 +#: ipam/filtersets.py:369 ipam/filtersets.py:989 +#: virtualization/filtersets.py:75 virtualization/filtersets.py:203 +#: vpn/filtersets.py:363 msgid "Site (slug)" msgstr "Site (kısa ad)" -#: netbox/circuits/filtersets.py:67 +#: circuits/filtersets.py:67 msgid "ASN (ID)" msgstr "ASN (ID)" -#: netbox/circuits/filtersets.py:73 netbox/circuits/forms/filtersets.py:31 -#: netbox/ipam/forms/model_forms.py:159 netbox/ipam/models/asns.py:108 -#: netbox/ipam/models/asns.py:125 netbox/ipam/tables/asn.py:41 -#: netbox/templates/ipam/asn.html:20 +#: circuits/filtersets.py:73 circuits/forms/filtersets.py:31 +#: ipam/forms/model_forms.py:159 ipam/models/asns.py:108 +#: ipam/models/asns.py:125 ipam/tables/asn.py:41 templates/ipam/asn.html:20 msgid "ASN" msgstr "ASN" -#: netbox/circuits/filtersets.py:95 netbox/circuits/filtersets.py:122 -#: netbox/circuits/filtersets.py:156 netbox/circuits/filtersets.py:283 -#: netbox/circuits/filtersets.py:325 netbox/ipam/filtersets.py:243 +#: circuits/filtersets.py:95 circuits/filtersets.py:122 +#: circuits/filtersets.py:156 circuits/filtersets.py:283 +#: circuits/filtersets.py:325 ipam/filtersets.py:243 msgid "Provider (ID)" msgstr "Sağlayıcı (ID)" -#: netbox/circuits/filtersets.py:101 netbox/circuits/filtersets.py:128 -#: netbox/circuits/filtersets.py:162 netbox/circuits/filtersets.py:289 -#: netbox/circuits/filtersets.py:331 netbox/ipam/filtersets.py:249 +#: circuits/filtersets.py:101 circuits/filtersets.py:128 +#: circuits/filtersets.py:162 circuits/filtersets.py:289 +#: circuits/filtersets.py:331 ipam/filtersets.py:249 msgid "Provider (slug)" msgstr "Sağlayıcı (kısa ad)" -#: netbox/circuits/filtersets.py:167 +#: circuits/filtersets.py:167 msgid "Provider account (ID)" msgstr "Sağlayıcı hesabı (ID)" -#: netbox/circuits/filtersets.py:173 +#: circuits/filtersets.py:173 msgid "Provider account (account)" msgstr "Sağlayıcı hesabı (hesap)" -#: netbox/circuits/filtersets.py:178 +#: circuits/filtersets.py:178 msgid "Provider network (ID)" msgstr "Sağlayıcı ağı (ID)" -#: netbox/circuits/filtersets.py:182 +#: circuits/filtersets.py:182 msgid "Circuit type (ID)" msgstr "Devre tipi (ID)" -#: netbox/circuits/filtersets.py:188 +#: circuits/filtersets.py:188 msgid "Circuit type (slug)" msgstr "Devre tipi (kısa ad)" -#: netbox/circuits/filtersets.py:223 netbox/circuits/filtersets.py:268 -#: netbox/dcim/filtersets.py:236 netbox/dcim/filtersets.py:357 -#: netbox/dcim/filtersets.py:452 netbox/dcim/filtersets.py:1045 -#: netbox/dcim/filtersets.py:1393 netbox/dcim/filtersets.py:1928 -#: netbox/dcim/filtersets.py:2170 netbox/dcim/filtersets.py:2229 -#: netbox/ipam/filtersets.py:232 netbox/ipam/filtersets.py:363 -#: netbox/ipam/filtersets.py:983 netbox/virtualization/filtersets.py:69 -#: netbox/virtualization/filtersets.py:197 netbox/vpn/filtersets.py:368 +#: circuits/filtersets.py:223 circuits/filtersets.py:268 +#: dcim/filtersets.py:236 dcim/filtersets.py:357 dcim/filtersets.py:452 +#: dcim/filtersets.py:1045 dcim/filtersets.py:1393 dcim/filtersets.py:1928 +#: dcim/filtersets.py:2170 dcim/filtersets.py:2229 ipam/filtersets.py:232 +#: ipam/filtersets.py:363 ipam/filtersets.py:983 +#: virtualization/filtersets.py:69 virtualization/filtersets.py:197 +#: vpn/filtersets.py:368 msgid "Site (ID)" msgstr "Site (ID)" -#: netbox/circuits/filtersets.py:233 netbox/circuits/filtersets.py:237 +#: circuits/filtersets.py:233 circuits/filtersets.py:237 msgid "Termination A (ID)" msgstr "Fesih A (ID)" -#: netbox/circuits/filtersets.py:260 netbox/circuits/filtersets.py:320 -#: netbox/core/filtersets.py:77 netbox/core/filtersets.py:136 -#: netbox/core/filtersets.py:173 netbox/dcim/filtersets.py:751 -#: netbox/dcim/filtersets.py:1362 netbox/dcim/filtersets.py:2277 -#: netbox/extras/filtersets.py:41 netbox/extras/filtersets.py:63 -#: netbox/extras/filtersets.py:92 netbox/extras/filtersets.py:132 -#: netbox/extras/filtersets.py:181 netbox/extras/filtersets.py:209 -#: netbox/extras/filtersets.py:239 netbox/extras/filtersets.py:276 -#: netbox/extras/filtersets.py:348 netbox/extras/filtersets.py:391 -#: netbox/extras/filtersets.py:438 netbox/extras/filtersets.py:498 -#: netbox/extras/filtersets.py:657 netbox/extras/filtersets.py:703 -#: netbox/ipam/forms/model_forms.py:449 netbox/netbox/filtersets.py:282 -#: netbox/netbox/forms/__init__.py:22 netbox/netbox/forms/base.py:167 -#: netbox/templates/htmx/object_selector.html:28 -#: netbox/templates/inc/filter_list.html:45 -#: netbox/templates/ipam/ipaddress_assign.html:29 -#: netbox/templates/search.html:7 netbox/templates/search.html:26 -#: netbox/tenancy/filtersets.py:99 netbox/users/filtersets.py:23 -#: netbox/users/filtersets.py:57 netbox/users/filtersets.py:102 -#: netbox/users/filtersets.py:150 netbox/utilities/forms/forms.py:104 -#: netbox/utilities/templates/navigation/menu.html:16 +#: circuits/filtersets.py:260 circuits/filtersets.py:320 core/filtersets.py:77 +#: core/filtersets.py:136 core/filtersets.py:173 dcim/filtersets.py:751 +#: dcim/filtersets.py:1362 dcim/filtersets.py:2277 extras/filtersets.py:41 +#: extras/filtersets.py:63 extras/filtersets.py:92 extras/filtersets.py:132 +#: extras/filtersets.py:181 extras/filtersets.py:209 extras/filtersets.py:239 +#: extras/filtersets.py:276 extras/filtersets.py:348 extras/filtersets.py:391 +#: extras/filtersets.py:438 extras/filtersets.py:498 extras/filtersets.py:657 +#: extras/filtersets.py:703 ipam/forms/model_forms.py:449 +#: netbox/filtersets.py:282 netbox/forms/__init__.py:22 +#: netbox/forms/base.py:167 templates/htmx/object_selector.html:28 +#: templates/inc/filter_list.html:46 templates/ipam/ipaddress_assign.html:29 +#: templates/search.html:7 templates/search.html:26 tenancy/filtersets.py:99 +#: users/filtersets.py:23 users/filtersets.py:57 users/filtersets.py:102 +#: users/filtersets.py:150 utilities/forms/forms.py:104 +#: utilities/templates/navigation/menu.html:16 msgid "Search" msgstr "Arama" -#: netbox/circuits/filtersets.py:264 netbox/circuits/forms/bulk_edit.py:172 -#: netbox/circuits/forms/bulk_edit.py:246 -#: netbox/circuits/forms/bulk_import.py:115 -#: netbox/circuits/forms/filtersets.py:198 -#: netbox/circuits/forms/filtersets.py:214 -#: netbox/circuits/forms/filtersets.py:260 -#: netbox/circuits/forms/model_forms.py:111 -#: netbox/circuits/forms/model_forms.py:133 -#: netbox/circuits/forms/model_forms.py:199 -#: netbox/circuits/tables/circuits.py:104 -#: netbox/circuits/tables/circuits.py:164 netbox/dcim/forms/connections.py:73 -#: netbox/templates/circuits/circuit.html:15 -#: netbox/templates/circuits/circuitgroupassignment.html:26 -#: netbox/templates/circuits/circuittermination.html:19 -#: netbox/templates/dcim/inc/cable_termination.html:55 -#: netbox/templates/dcim/trace/circuit.html:4 +#: circuits/filtersets.py:264 circuits/forms/bulk_edit.py:172 +#: circuits/forms/bulk_edit.py:246 circuits/forms/bulk_import.py:115 +#: circuits/forms/filtersets.py:198 circuits/forms/filtersets.py:214 +#: circuits/forms/filtersets.py:260 circuits/forms/model_forms.py:111 +#: circuits/forms/model_forms.py:133 circuits/forms/model_forms.py:199 +#: circuits/tables/circuits.py:104 circuits/tables/circuits.py:164 +#: dcim/forms/connections.py:73 templates/circuits/circuit.html:15 +#: templates/circuits/circuitgroupassignment.html:26 +#: templates/circuits/circuittermination.html:19 +#: templates/dcim/inc/cable_termination.html:55 +#: templates/dcim/trace/circuit.html:4 msgid "Circuit" msgstr "Devre" -#: netbox/circuits/filtersets.py:278 +#: circuits/filtersets.py:278 msgid "ProviderNetwork (ID)" msgstr "Sağlayıcı Ağı (ID)" -#: netbox/circuits/filtersets.py:335 +#: circuits/filtersets.py:335 msgid "Circuit (ID)" msgstr "Devre (ID)" -#: netbox/circuits/filtersets.py:341 +#: circuits/filtersets.py:341 msgid "Circuit (CID)" msgstr "Devre (CID)" -#: netbox/circuits/filtersets.py:345 +#: circuits/filtersets.py:345 msgid "Circuit group (ID)" msgstr "Devre grubu (ID)" -#: netbox/circuits/filtersets.py:351 +#: circuits/filtersets.py:351 msgid "Circuit group (slug)" msgstr "Devre grubu (sümüklü böcek)" -#: netbox/circuits/forms/bulk_edit.py:30 -#: netbox/circuits/forms/filtersets.py:56 -#: netbox/circuits/forms/model_forms.py:29 -#: netbox/circuits/tables/providers.py:33 netbox/dcim/forms/bulk_edit.py:128 -#: netbox/dcim/forms/filtersets.py:195 netbox/dcim/forms/model_forms.py:123 -#: netbox/dcim/tables/sites.py:94 netbox/ipam/models/asns.py:126 -#: netbox/ipam/tables/asn.py:27 netbox/ipam/views.py:213 -#: netbox/netbox/navigation/menu.py:172 netbox/netbox/navigation/menu.py:175 -#: netbox/templates/circuits/provider.html:23 +#: circuits/forms/bulk_edit.py:30 circuits/forms/filtersets.py:56 +#: circuits/forms/model_forms.py:29 circuits/tables/providers.py:33 +#: dcim/forms/bulk_edit.py:128 dcim/forms/filtersets.py:195 +#: dcim/forms/model_forms.py:123 dcim/tables/sites.py:94 +#: ipam/models/asns.py:126 ipam/tables/asn.py:27 ipam/views.py:213 +#: netbox/navigation/menu.py:172 netbox/navigation/menu.py:175 +#: templates/circuits/provider.html:23 msgid "ASNs" msgstr "ASN'ler" -#: netbox/circuits/forms/bulk_edit.py:34 netbox/circuits/forms/bulk_edit.py:56 -#: netbox/circuits/forms/bulk_edit.py:83 -#: netbox/circuits/forms/bulk_edit.py:104 -#: netbox/circuits/forms/bulk_edit.py:164 -#: netbox/circuits/forms/bulk_edit.py:183 -#: netbox/circuits/forms/bulk_edit.py:228 netbox/core/forms/bulk_edit.py:28 -#: netbox/dcim/forms/bulk_create.py:35 netbox/dcim/forms/bulk_edit.py:73 -#: netbox/dcim/forms/bulk_edit.py:92 netbox/dcim/forms/bulk_edit.py:151 -#: netbox/dcim/forms/bulk_edit.py:192 netbox/dcim/forms/bulk_edit.py:210 -#: netbox/dcim/forms/bulk_edit.py:288 netbox/dcim/forms/bulk_edit.py:432 -#: netbox/dcim/forms/bulk_edit.py:466 netbox/dcim/forms/bulk_edit.py:481 -#: netbox/dcim/forms/bulk_edit.py:540 netbox/dcim/forms/bulk_edit.py:584 -#: netbox/dcim/forms/bulk_edit.py:618 netbox/dcim/forms/bulk_edit.py:642 -#: netbox/dcim/forms/bulk_edit.py:715 netbox/dcim/forms/bulk_edit.py:767 -#: netbox/dcim/forms/bulk_edit.py:819 netbox/dcim/forms/bulk_edit.py:842 -#: netbox/dcim/forms/bulk_edit.py:890 netbox/dcim/forms/bulk_edit.py:960 -#: netbox/dcim/forms/bulk_edit.py:1013 netbox/dcim/forms/bulk_edit.py:1048 -#: netbox/dcim/forms/bulk_edit.py:1088 netbox/dcim/forms/bulk_edit.py:1132 -#: netbox/dcim/forms/bulk_edit.py:1177 netbox/dcim/forms/bulk_edit.py:1204 -#: netbox/dcim/forms/bulk_edit.py:1222 netbox/dcim/forms/bulk_edit.py:1240 -#: netbox/dcim/forms/bulk_edit.py:1258 netbox/dcim/forms/bulk_edit.py:1682 -#: netbox/extras/forms/bulk_edit.py:39 netbox/extras/forms/bulk_edit.py:149 -#: netbox/extras/forms/bulk_edit.py:178 netbox/extras/forms/bulk_edit.py:208 -#: netbox/extras/forms/bulk_edit.py:256 netbox/extras/forms/bulk_edit.py:274 -#: netbox/extras/forms/bulk_edit.py:298 netbox/extras/forms/bulk_edit.py:312 -#: netbox/extras/forms/bulk_edit.py:339 netbox/extras/tables/tables.py:79 -#: netbox/ipam/forms/bulk_edit.py:52 netbox/ipam/forms/bulk_edit.py:72 -#: netbox/ipam/forms/bulk_edit.py:92 netbox/ipam/forms/bulk_edit.py:116 -#: netbox/ipam/forms/bulk_edit.py:145 netbox/ipam/forms/bulk_edit.py:174 -#: netbox/ipam/forms/bulk_edit.py:193 netbox/ipam/forms/bulk_edit.py:275 -#: netbox/ipam/forms/bulk_edit.py:320 netbox/ipam/forms/bulk_edit.py:368 -#: netbox/ipam/forms/bulk_edit.py:411 netbox/ipam/forms/bulk_edit.py:427 -#: netbox/ipam/forms/bulk_edit.py:561 netbox/ipam/forms/bulk_edit.py:592 -#: netbox/templates/account/token.html:35 -#: netbox/templates/circuits/circuit.html:59 -#: netbox/templates/circuits/circuitgroup.html:32 -#: netbox/templates/circuits/circuittype.html:26 -#: netbox/templates/circuits/inc/circuit_termination_fields.html:88 -#: netbox/templates/circuits/provider.html:33 -#: netbox/templates/circuits/providernetwork.html:32 -#: netbox/templates/core/datasource.html:54 -#: netbox/templates/core/plugin.html:79 netbox/templates/dcim/cable.html:36 -#: netbox/templates/dcim/consoleport.html:44 -#: netbox/templates/dcim/consoleserverport.html:44 -#: netbox/templates/dcim/device.html:94 -#: netbox/templates/dcim/devicebay.html:32 -#: netbox/templates/dcim/devicerole.html:30 -#: netbox/templates/dcim/devicetype.html:33 -#: netbox/templates/dcim/frontport.html:58 -#: netbox/templates/dcim/interface.html:69 -#: netbox/templates/dcim/inventoryitem.html:60 -#: netbox/templates/dcim/inventoryitemrole.html:22 -#: netbox/templates/dcim/location.html:33 -#: netbox/templates/dcim/manufacturer.html:40 -#: netbox/templates/dcim/module.html:73 -#: netbox/templates/dcim/modulebay.html:42 -#: netbox/templates/dcim/moduletype.html:26 -#: netbox/templates/dcim/platform.html:33 -#: netbox/templates/dcim/powerfeed.html:40 -#: netbox/templates/dcim/poweroutlet.html:40 -#: netbox/templates/dcim/powerpanel.html:30 -#: netbox/templates/dcim/powerport.html:40 netbox/templates/dcim/rack.html:53 -#: netbox/templates/dcim/rackreservation.html:62 -#: netbox/templates/dcim/rackrole.html:26 -#: netbox/templates/dcim/racktype.html:24 -#: netbox/templates/dcim/rearport.html:54 netbox/templates/dcim/region.html:33 -#: netbox/templates/dcim/site.html:60 netbox/templates/dcim/sitegroup.html:33 -#: netbox/templates/dcim/virtualchassis.html:31 -#: netbox/templates/extras/configcontext.html:21 -#: netbox/templates/extras/configtemplate.html:17 -#: netbox/templates/extras/customfield.html:34 -#: netbox/templates/extras/dashboard/widget_add.html:14 -#: netbox/templates/extras/eventrule.html:21 -#: netbox/templates/extras/exporttemplate.html:19 -#: netbox/templates/extras/notificationgroup.html:20 -#: netbox/templates/extras/savedfilter.html:17 -#: netbox/templates/extras/script_list.html:45 -#: netbox/templates/extras/tag.html:20 netbox/templates/extras/webhook.html:17 -#: netbox/templates/generic/bulk_import.html:120 -#: netbox/templates/ipam/aggregate.html:43 netbox/templates/ipam/asn.html:42 -#: netbox/templates/ipam/asnrange.html:38 -#: netbox/templates/ipam/fhrpgroup.html:34 -#: netbox/templates/ipam/ipaddress.html:55 -#: netbox/templates/ipam/iprange.html:67 netbox/templates/ipam/prefix.html:81 -#: netbox/templates/ipam/rir.html:26 netbox/templates/ipam/role.html:26 -#: netbox/templates/ipam/routetarget.html:21 -#: netbox/templates/ipam/service.html:50 -#: netbox/templates/ipam/servicetemplate.html:27 -#: netbox/templates/ipam/vlan.html:62 netbox/templates/ipam/vlangroup.html:34 -#: netbox/templates/ipam/vrf.html:33 netbox/templates/tenancy/contact.html:67 -#: netbox/templates/tenancy/contactgroup.html:25 -#: netbox/templates/tenancy/contactrole.html:22 -#: netbox/templates/tenancy/tenant.html:24 -#: netbox/templates/tenancy/tenantgroup.html:33 -#: netbox/templates/users/group.html:21 -#: netbox/templates/users/objectpermission.html:21 -#: netbox/templates/users/token.html:27 -#: netbox/templates/virtualization/cluster.html:25 -#: netbox/templates/virtualization/clustergroup.html:26 -#: netbox/templates/virtualization/clustertype.html:26 -#: netbox/templates/virtualization/virtualdisk.html:39 -#: netbox/templates/virtualization/virtualmachine.html:31 -#: netbox/templates/virtualization/vminterface.html:51 -#: netbox/templates/vpn/ikepolicy.html:17 -#: netbox/templates/vpn/ikeproposal.html:17 -#: netbox/templates/vpn/ipsecpolicy.html:17 -#: netbox/templates/vpn/ipsecprofile.html:17 -#: netbox/templates/vpn/ipsecprofile.html:40 -#: netbox/templates/vpn/ipsecprofile.html:73 -#: netbox/templates/vpn/ipsecproposal.html:17 -#: netbox/templates/vpn/l2vpn.html:26 netbox/templates/vpn/tunnel.html:33 -#: netbox/templates/vpn/tunnelgroup.html:30 -#: netbox/templates/wireless/wirelesslan.html:26 -#: netbox/templates/wireless/wirelesslangroup.html:33 -#: netbox/templates/wireless/wirelesslink.html:34 -#: netbox/tenancy/forms/bulk_edit.py:32 netbox/tenancy/forms/bulk_edit.py:80 -#: netbox/tenancy/forms/bulk_edit.py:122 netbox/users/forms/bulk_edit.py:64 -#: netbox/users/forms/bulk_edit.py:82 netbox/users/forms/bulk_edit.py:112 -#: netbox/virtualization/forms/bulk_edit.py:32 -#: netbox/virtualization/forms/bulk_edit.py:46 -#: netbox/virtualization/forms/bulk_edit.py:100 -#: netbox/virtualization/forms/bulk_edit.py:177 -#: netbox/virtualization/forms/bulk_edit.py:228 -#: netbox/virtualization/forms/bulk_edit.py:337 -#: netbox/vpn/forms/bulk_edit.py:28 netbox/vpn/forms/bulk_edit.py:64 -#: netbox/vpn/forms/bulk_edit.py:121 netbox/vpn/forms/bulk_edit.py:155 -#: netbox/vpn/forms/bulk_edit.py:190 netbox/vpn/forms/bulk_edit.py:215 -#: netbox/vpn/forms/bulk_edit.py:247 netbox/vpn/forms/bulk_edit.py:274 -#: netbox/wireless/forms/bulk_edit.py:29 netbox/wireless/forms/bulk_edit.py:82 -#: netbox/wireless/forms/bulk_edit.py:140 +#: circuits/forms/bulk_edit.py:34 circuits/forms/bulk_edit.py:56 +#: circuits/forms/bulk_edit.py:83 circuits/forms/bulk_edit.py:104 +#: circuits/forms/bulk_edit.py:164 circuits/forms/bulk_edit.py:183 +#: circuits/forms/bulk_edit.py:228 core/forms/bulk_edit.py:28 +#: dcim/forms/bulk_create.py:35 dcim/forms/bulk_edit.py:73 +#: dcim/forms/bulk_edit.py:92 dcim/forms/bulk_edit.py:151 +#: dcim/forms/bulk_edit.py:192 dcim/forms/bulk_edit.py:210 +#: dcim/forms/bulk_edit.py:288 dcim/forms/bulk_edit.py:432 +#: dcim/forms/bulk_edit.py:466 dcim/forms/bulk_edit.py:481 +#: dcim/forms/bulk_edit.py:540 dcim/forms/bulk_edit.py:584 +#: dcim/forms/bulk_edit.py:618 dcim/forms/bulk_edit.py:642 +#: dcim/forms/bulk_edit.py:715 dcim/forms/bulk_edit.py:767 +#: dcim/forms/bulk_edit.py:819 dcim/forms/bulk_edit.py:842 +#: dcim/forms/bulk_edit.py:890 dcim/forms/bulk_edit.py:960 +#: dcim/forms/bulk_edit.py:1013 dcim/forms/bulk_edit.py:1048 +#: dcim/forms/bulk_edit.py:1088 dcim/forms/bulk_edit.py:1132 +#: dcim/forms/bulk_edit.py:1177 dcim/forms/bulk_edit.py:1204 +#: dcim/forms/bulk_edit.py:1222 dcim/forms/bulk_edit.py:1240 +#: dcim/forms/bulk_edit.py:1258 dcim/forms/bulk_edit.py:1682 +#: extras/forms/bulk_edit.py:39 extras/forms/bulk_edit.py:149 +#: extras/forms/bulk_edit.py:178 extras/forms/bulk_edit.py:208 +#: extras/forms/bulk_edit.py:256 extras/forms/bulk_edit.py:274 +#: extras/forms/bulk_edit.py:298 extras/forms/bulk_edit.py:312 +#: extras/forms/bulk_edit.py:339 extras/tables/tables.py:79 +#: ipam/forms/bulk_edit.py:53 ipam/forms/bulk_edit.py:73 +#: ipam/forms/bulk_edit.py:93 ipam/forms/bulk_edit.py:117 +#: ipam/forms/bulk_edit.py:146 ipam/forms/bulk_edit.py:175 +#: ipam/forms/bulk_edit.py:194 ipam/forms/bulk_edit.py:276 +#: ipam/forms/bulk_edit.py:321 ipam/forms/bulk_edit.py:369 +#: ipam/forms/bulk_edit.py:412 ipam/forms/bulk_edit.py:428 +#: ipam/forms/bulk_edit.py:516 ipam/forms/bulk_edit.py:547 +#: templates/account/token.html:35 templates/circuits/circuit.html:59 +#: templates/circuits/circuitgroup.html:32 +#: templates/circuits/circuittype.html:26 +#: templates/circuits/inc/circuit_termination_fields.html:88 +#: templates/circuits/provider.html:33 +#: templates/circuits/providernetwork.html:32 +#: templates/core/datasource.html:54 templates/core/plugin.html:80 +#: templates/dcim/cable.html:36 templates/dcim/consoleport.html:44 +#: templates/dcim/consoleserverport.html:44 templates/dcim/device.html:94 +#: templates/dcim/devicebay.html:32 templates/dcim/devicerole.html:30 +#: templates/dcim/devicetype.html:33 templates/dcim/frontport.html:58 +#: templates/dcim/interface.html:69 templates/dcim/inventoryitem.html:60 +#: templates/dcim/inventoryitemrole.html:22 templates/dcim/location.html:33 +#: templates/dcim/manufacturer.html:40 templates/dcim/module.html:73 +#: templates/dcim/modulebay.html:42 templates/dcim/moduletype.html:37 +#: templates/dcim/platform.html:33 templates/dcim/powerfeed.html:40 +#: templates/dcim/poweroutlet.html:40 templates/dcim/powerpanel.html:30 +#: templates/dcim/powerport.html:40 templates/dcim/rack.html:53 +#: templates/dcim/rackreservation.html:62 templates/dcim/rackrole.html:26 +#: templates/dcim/racktype.html:24 templates/dcim/rearport.html:54 +#: templates/dcim/region.html:33 templates/dcim/site.html:60 +#: templates/dcim/sitegroup.html:33 templates/dcim/virtualchassis.html:31 +#: templates/extras/configcontext.html:21 +#: templates/extras/configtemplate.html:17 +#: templates/extras/customfield.html:34 +#: templates/extras/dashboard/widget_add.html:14 +#: templates/extras/eventrule.html:21 templates/extras/exporttemplate.html:19 +#: templates/extras/notificationgroup.html:20 +#: templates/extras/savedfilter.html:17 templates/extras/script_list.html:45 +#: templates/extras/tag.html:20 templates/extras/webhook.html:17 +#: templates/generic/bulk_import.html:120 templates/ipam/aggregate.html:43 +#: templates/ipam/asn.html:42 templates/ipam/asnrange.html:38 +#: templates/ipam/fhrpgroup.html:34 templates/ipam/ipaddress.html:55 +#: templates/ipam/iprange.html:67 templates/ipam/prefix.html:81 +#: templates/ipam/rir.html:26 templates/ipam/role.html:26 +#: templates/ipam/routetarget.html:21 templates/ipam/service.html:50 +#: templates/ipam/servicetemplate.html:27 templates/ipam/vlan.html:62 +#: templates/ipam/vlangroup.html:34 templates/ipam/vrf.html:33 +#: templates/tenancy/contact.html:67 templates/tenancy/contactgroup.html:25 +#: templates/tenancy/contactrole.html:22 templates/tenancy/tenant.html:24 +#: templates/tenancy/tenantgroup.html:33 templates/users/group.html:21 +#: templates/users/objectpermission.html:21 templates/users/token.html:27 +#: templates/virtualization/cluster.html:25 +#: templates/virtualization/clustergroup.html:26 +#: templates/virtualization/clustertype.html:26 +#: templates/virtualization/virtualdisk.html:39 +#: templates/virtualization/virtualmachine.html:31 +#: templates/virtualization/vminterface.html:51 +#: templates/vpn/ikepolicy.html:17 templates/vpn/ikeproposal.html:17 +#: templates/vpn/ipsecpolicy.html:17 templates/vpn/ipsecprofile.html:17 +#: templates/vpn/ipsecprofile.html:40 templates/vpn/ipsecprofile.html:73 +#: templates/vpn/ipsecproposal.html:17 templates/vpn/l2vpn.html:26 +#: templates/vpn/tunnel.html:33 templates/vpn/tunnelgroup.html:30 +#: templates/wireless/wirelesslan.html:26 +#: templates/wireless/wirelesslangroup.html:33 +#: templates/wireless/wirelesslink.html:34 tenancy/forms/bulk_edit.py:32 +#: tenancy/forms/bulk_edit.py:80 tenancy/forms/bulk_edit.py:122 +#: users/forms/bulk_edit.py:64 users/forms/bulk_edit.py:82 +#: users/forms/bulk_edit.py:112 virtualization/forms/bulk_edit.py:32 +#: virtualization/forms/bulk_edit.py:46 virtualization/forms/bulk_edit.py:100 +#: virtualization/forms/bulk_edit.py:177 virtualization/forms/bulk_edit.py:228 +#: virtualization/forms/bulk_edit.py:337 vpn/forms/bulk_edit.py:28 +#: vpn/forms/bulk_edit.py:64 vpn/forms/bulk_edit.py:121 +#: vpn/forms/bulk_edit.py:155 vpn/forms/bulk_edit.py:190 +#: vpn/forms/bulk_edit.py:215 vpn/forms/bulk_edit.py:247 +#: vpn/forms/bulk_edit.py:274 wireless/forms/bulk_edit.py:29 +#: wireless/forms/bulk_edit.py:82 wireless/forms/bulk_edit.py:140 msgid "Description" msgstr "Açıklama" -#: netbox/circuits/forms/bulk_edit.py:51 netbox/circuits/forms/bulk_edit.py:73 -#: netbox/circuits/forms/bulk_edit.py:123 -#: netbox/circuits/forms/bulk_import.py:36 -#: netbox/circuits/forms/bulk_import.py:51 -#: netbox/circuits/forms/bulk_import.py:74 -#: netbox/circuits/forms/filtersets.py:70 -#: netbox/circuits/forms/filtersets.py:88 -#: netbox/circuits/forms/filtersets.py:116 -#: netbox/circuits/forms/filtersets.py:131 -#: netbox/circuits/forms/filtersets.py:199 -#: netbox/circuits/forms/filtersets.py:232 -#: netbox/circuits/forms/filtersets.py:255 -#: netbox/circuits/forms/model_forms.py:47 -#: netbox/circuits/forms/model_forms.py:61 -#: netbox/circuits/forms/model_forms.py:93 -#: netbox/circuits/tables/circuits.py:58 -#: netbox/circuits/tables/circuits.py:108 -#: netbox/circuits/tables/circuits.py:160 -#: netbox/circuits/tables/providers.py:72 -#: netbox/circuits/tables/providers.py:103 -#: netbox/templates/circuits/circuit.html:18 -#: netbox/templates/circuits/circuittermination.html:25 -#: netbox/templates/circuits/provider.html:20 -#: netbox/templates/circuits/provideraccount.html:20 -#: netbox/templates/circuits/providernetwork.html:20 -#: netbox/templates/dcim/inc/cable_termination.html:51 +#: circuits/forms/bulk_edit.py:51 circuits/forms/bulk_edit.py:73 +#: circuits/forms/bulk_edit.py:123 circuits/forms/bulk_import.py:36 +#: circuits/forms/bulk_import.py:51 circuits/forms/bulk_import.py:74 +#: circuits/forms/filtersets.py:70 circuits/forms/filtersets.py:88 +#: circuits/forms/filtersets.py:116 circuits/forms/filtersets.py:131 +#: circuits/forms/filtersets.py:199 circuits/forms/filtersets.py:232 +#: circuits/forms/filtersets.py:255 circuits/forms/model_forms.py:47 +#: circuits/forms/model_forms.py:61 circuits/forms/model_forms.py:93 +#: circuits/tables/circuits.py:58 circuits/tables/circuits.py:108 +#: circuits/tables/circuits.py:160 circuits/tables/providers.py:72 +#: circuits/tables/providers.py:103 templates/circuits/circuit.html:18 +#: templates/circuits/circuittermination.html:25 +#: templates/circuits/provider.html:20 +#: templates/circuits/provideraccount.html:20 +#: templates/circuits/providernetwork.html:20 +#: templates/dcim/inc/cable_termination.html:51 msgid "Provider" msgstr "Sağlayıcı" -#: netbox/circuits/forms/bulk_edit.py:80 -#: netbox/circuits/forms/filtersets.py:91 -#: netbox/templates/circuits/providernetwork.html:28 +#: circuits/forms/bulk_edit.py:80 circuits/forms/filtersets.py:91 +#: templates/circuits/providernetwork.html:28 msgid "Service ID" msgstr "Servis ID" -#: netbox/circuits/forms/bulk_edit.py:100 -#: netbox/circuits/forms/filtersets.py:107 netbox/dcim/forms/bulk_edit.py:206 -#: netbox/dcim/forms/bulk_edit.py:604 netbox/dcim/forms/bulk_edit.py:804 -#: netbox/dcim/forms/bulk_edit.py:1173 netbox/dcim/forms/bulk_edit.py:1200 -#: netbox/dcim/forms/bulk_edit.py:1678 netbox/dcim/forms/filtersets.py:1064 -#: netbox/dcim/forms/filtersets.py:1455 netbox/dcim/forms/filtersets.py:1479 -#: netbox/dcim/tables/devices.py:704 netbox/dcim/tables/devices.py:761 -#: netbox/dcim/tables/devices.py:1003 netbox/dcim/tables/devicetypes.py:249 -#: netbox/dcim/tables/devicetypes.py:264 netbox/dcim/tables/racks.py:33 -#: netbox/extras/forms/bulk_edit.py:270 netbox/extras/tables/tables.py:443 -#: netbox/templates/circuits/circuittype.html:30 -#: netbox/templates/dcim/cable.html:40 -#: netbox/templates/dcim/devicerole.html:34 -#: netbox/templates/dcim/frontport.html:40 -#: netbox/templates/dcim/inventoryitemrole.html:26 -#: netbox/templates/dcim/rackrole.html:30 -#: netbox/templates/dcim/rearport.html:40 netbox/templates/extras/tag.html:26 +#: circuits/forms/bulk_edit.py:100 circuits/forms/filtersets.py:107 +#: dcim/forms/bulk_edit.py:206 dcim/forms/bulk_edit.py:604 +#: dcim/forms/bulk_edit.py:804 dcim/forms/bulk_edit.py:1173 +#: dcim/forms/bulk_edit.py:1200 dcim/forms/bulk_edit.py:1678 +#: dcim/forms/filtersets.py:1064 dcim/forms/filtersets.py:1455 +#: dcim/forms/filtersets.py:1479 dcim/tables/devices.py:704 +#: dcim/tables/devices.py:761 dcim/tables/devices.py:1003 +#: dcim/tables/devicetypes.py:249 dcim/tables/devicetypes.py:264 +#: dcim/tables/racks.py:33 extras/forms/bulk_edit.py:270 +#: extras/tables/tables.py:443 templates/circuits/circuittype.html:30 +#: templates/dcim/cable.html:40 templates/dcim/devicerole.html:34 +#: templates/dcim/frontport.html:40 templates/dcim/inventoryitemrole.html:26 +#: templates/dcim/rackrole.html:30 templates/dcim/rearport.html:40 +#: templates/extras/tag.html:26 msgid "Color" msgstr "Renk" -#: netbox/circuits/forms/bulk_edit.py:118 -#: netbox/circuits/forms/bulk_import.py:87 -#: netbox/circuits/forms/filtersets.py:126 netbox/core/forms/bulk_edit.py:18 -#: netbox/core/forms/filtersets.py:33 netbox/core/tables/change_logging.py:32 -#: netbox/core/tables/data.py:20 netbox/core/tables/jobs.py:18 -#: netbox/dcim/forms/bulk_edit.py:782 netbox/dcim/forms/bulk_edit.py:921 -#: netbox/dcim/forms/bulk_edit.py:989 netbox/dcim/forms/bulk_edit.py:1008 -#: netbox/dcim/forms/bulk_edit.py:1031 netbox/dcim/forms/bulk_edit.py:1073 -#: netbox/dcim/forms/bulk_edit.py:1117 netbox/dcim/forms/bulk_edit.py:1168 -#: netbox/dcim/forms/bulk_edit.py:1195 netbox/dcim/forms/bulk_import.py:188 -#: netbox/dcim/forms/bulk_import.py:260 netbox/dcim/forms/bulk_import.py:708 -#: netbox/dcim/forms/bulk_import.py:734 netbox/dcim/forms/bulk_import.py:760 -#: netbox/dcim/forms/bulk_import.py:780 netbox/dcim/forms/bulk_import.py:863 -#: netbox/dcim/forms/bulk_import.py:957 netbox/dcim/forms/bulk_import.py:999 -#: netbox/dcim/forms/bulk_import.py:1213 netbox/dcim/forms/bulk_import.py:1376 -#: netbox/dcim/forms/filtersets.py:955 netbox/dcim/forms/filtersets.py:1054 -#: netbox/dcim/forms/filtersets.py:1175 netbox/dcim/forms/filtersets.py:1247 -#: netbox/dcim/forms/filtersets.py:1272 netbox/dcim/forms/filtersets.py:1296 -#: netbox/dcim/forms/filtersets.py:1316 netbox/dcim/forms/filtersets.py:1353 -#: netbox/dcim/forms/filtersets.py:1450 netbox/dcim/forms/filtersets.py:1474 -#: netbox/dcim/forms/model_forms.py:703 netbox/dcim/forms/model_forms.py:709 -#: netbox/dcim/forms/object_import.py:84 -#: netbox/dcim/forms/object_import.py:113 -#: netbox/dcim/forms/object_import.py:145 netbox/dcim/tables/devices.py:178 -#: netbox/dcim/tables/devices.py:814 netbox/dcim/tables/power.py:77 -#: netbox/dcim/tables/racks.py:138 netbox/extras/forms/bulk_import.py:42 -#: netbox/extras/tables/tables.py:405 netbox/extras/tables/tables.py:465 -#: netbox/netbox/tables/tables.py:240 -#: netbox/templates/circuits/circuit.html:30 -#: netbox/templates/core/datasource.html:38 -#: netbox/templates/dcim/cable.html:15 -#: netbox/templates/dcim/consoleport.html:36 -#: netbox/templates/dcim/consoleserverport.html:36 -#: netbox/templates/dcim/frontport.html:36 -#: netbox/templates/dcim/interface.html:46 -#: netbox/templates/dcim/interface.html:169 -#: netbox/templates/dcim/interface.html:311 -#: netbox/templates/dcim/powerfeed.html:32 -#: netbox/templates/dcim/poweroutlet.html:36 -#: netbox/templates/dcim/powerport.html:36 -#: netbox/templates/dcim/rearport.html:36 -#: netbox/templates/extras/eventrule.html:74 -#: netbox/templates/virtualization/cluster.html:17 -#: netbox/templates/vpn/l2vpn.html:22 -#: netbox/templates/wireless/inc/authentication_attrs.html:8 -#: netbox/templates/wireless/inc/wirelesslink_interface.html:14 -#: netbox/virtualization/forms/bulk_edit.py:60 -#: netbox/virtualization/forms/bulk_import.py:41 -#: netbox/virtualization/forms/filtersets.py:54 -#: netbox/virtualization/forms/model_forms.py:62 -#: netbox/virtualization/tables/clusters.py:66 -#: netbox/vpn/forms/bulk_edit.py:264 netbox/vpn/forms/bulk_import.py:264 -#: netbox/vpn/forms/filtersets.py:217 netbox/vpn/forms/model_forms.py:84 -#: netbox/vpn/forms/model_forms.py:119 netbox/vpn/forms/model_forms.py:231 +#: circuits/forms/bulk_edit.py:118 circuits/forms/bulk_import.py:87 +#: circuits/forms/filtersets.py:126 core/forms/bulk_edit.py:18 +#: core/forms/filtersets.py:33 core/tables/change_logging.py:32 +#: core/tables/data.py:20 core/tables/jobs.py:18 dcim/forms/bulk_edit.py:782 +#: dcim/forms/bulk_edit.py:921 dcim/forms/bulk_edit.py:989 +#: dcim/forms/bulk_edit.py:1008 dcim/forms/bulk_edit.py:1031 +#: dcim/forms/bulk_edit.py:1073 dcim/forms/bulk_edit.py:1117 +#: dcim/forms/bulk_edit.py:1168 dcim/forms/bulk_edit.py:1195 +#: dcim/forms/bulk_import.py:188 dcim/forms/bulk_import.py:260 +#: dcim/forms/bulk_import.py:708 dcim/forms/bulk_import.py:734 +#: dcim/forms/bulk_import.py:760 dcim/forms/bulk_import.py:780 +#: dcim/forms/bulk_import.py:863 dcim/forms/bulk_import.py:957 +#: dcim/forms/bulk_import.py:999 dcim/forms/bulk_import.py:1213 +#: dcim/forms/bulk_import.py:1376 dcim/forms/filtersets.py:955 +#: dcim/forms/filtersets.py:1054 dcim/forms/filtersets.py:1175 +#: dcim/forms/filtersets.py:1247 dcim/forms/filtersets.py:1272 +#: dcim/forms/filtersets.py:1296 dcim/forms/filtersets.py:1316 +#: dcim/forms/filtersets.py:1353 dcim/forms/filtersets.py:1450 +#: dcim/forms/filtersets.py:1474 dcim/forms/model_forms.py:703 +#: dcim/forms/model_forms.py:709 dcim/forms/object_import.py:84 +#: dcim/forms/object_import.py:113 dcim/forms/object_import.py:145 +#: dcim/tables/devices.py:178 dcim/tables/devices.py:814 +#: dcim/tables/power.py:77 dcim/tables/racks.py:138 +#: extras/forms/bulk_import.py:42 extras/tables/tables.py:405 +#: extras/tables/tables.py:465 netbox/tables/tables.py:240 +#: templates/circuits/circuit.html:30 templates/core/datasource.html:38 +#: templates/dcim/cable.html:15 templates/dcim/consoleport.html:36 +#: templates/dcim/consoleserverport.html:36 templates/dcim/frontport.html:36 +#: templates/dcim/interface.html:46 templates/dcim/interface.html:169 +#: templates/dcim/interface.html:311 templates/dcim/powerfeed.html:32 +#: templates/dcim/poweroutlet.html:36 templates/dcim/powerport.html:36 +#: templates/dcim/rearport.html:36 templates/extras/eventrule.html:74 +#: templates/virtualization/cluster.html:17 templates/vpn/l2vpn.html:22 +#: templates/wireless/inc/authentication_attrs.html:8 +#: templates/wireless/inc/wirelesslink_interface.html:14 +#: virtualization/forms/bulk_edit.py:60 virtualization/forms/bulk_import.py:41 +#: virtualization/forms/filtersets.py:54 +#: virtualization/forms/model_forms.py:62 virtualization/tables/clusters.py:66 +#: vpn/forms/bulk_edit.py:264 vpn/forms/bulk_import.py:264 +#: vpn/forms/filtersets.py:217 vpn/forms/model_forms.py:84 +#: vpn/forms/model_forms.py:119 vpn/forms/model_forms.py:231 msgid "Type" msgstr "Tür" -#: netbox/circuits/forms/bulk_edit.py:128 -#: netbox/circuits/forms/bulk_import.py:80 -#: netbox/circuits/forms/filtersets.py:139 -#: netbox/circuits/forms/model_forms.py:98 +#: circuits/forms/bulk_edit.py:128 circuits/forms/bulk_import.py:80 +#: circuits/forms/filtersets.py:139 circuits/forms/model_forms.py:98 msgid "Provider account" msgstr "Sağlayıcı hesabı" -#: netbox/circuits/forms/bulk_edit.py:136 -#: netbox/circuits/forms/bulk_import.py:93 -#: netbox/circuits/forms/filtersets.py:150 netbox/core/forms/filtersets.py:38 -#: netbox/core/forms/filtersets.py:79 netbox/core/tables/data.py:23 -#: netbox/core/tables/jobs.py:26 netbox/core/tables/tasks.py:88 -#: netbox/dcim/forms/bulk_edit.py:106 netbox/dcim/forms/bulk_edit.py:181 -#: netbox/dcim/forms/bulk_edit.py:351 netbox/dcim/forms/bulk_edit.py:700 -#: netbox/dcim/forms/bulk_edit.py:756 netbox/dcim/forms/bulk_edit.py:788 -#: netbox/dcim/forms/bulk_edit.py:915 netbox/dcim/forms/bulk_edit.py:1701 -#: netbox/dcim/forms/bulk_import.py:88 netbox/dcim/forms/bulk_import.py:147 -#: netbox/dcim/forms/bulk_import.py:248 netbox/dcim/forms/bulk_import.py:505 -#: netbox/dcim/forms/bulk_import.py:659 netbox/dcim/forms/bulk_import.py:1207 -#: netbox/dcim/forms/bulk_import.py:1371 netbox/dcim/forms/bulk_import.py:1435 -#: netbox/dcim/forms/filtersets.py:178 netbox/dcim/forms/filtersets.py:237 -#: netbox/dcim/forms/filtersets.py:359 netbox/dcim/forms/filtersets.py:799 -#: netbox/dcim/forms/filtersets.py:924 netbox/dcim/forms/filtersets.py:958 -#: netbox/dcim/forms/filtersets.py:1059 netbox/dcim/forms/filtersets.py:1170 -#: netbox/dcim/tables/devices.py:140 netbox/dcim/tables/devices.py:817 -#: netbox/dcim/tables/devices.py:1063 netbox/dcim/tables/modules.py:69 -#: netbox/dcim/tables/power.py:74 netbox/dcim/tables/racks.py:126 -#: netbox/dcim/tables/sites.py:82 netbox/dcim/tables/sites.py:138 -#: netbox/ipam/forms/bulk_edit.py:255 netbox/ipam/forms/bulk_edit.py:305 -#: netbox/ipam/forms/bulk_edit.py:353 netbox/ipam/forms/bulk_edit.py:551 -#: netbox/ipam/forms/bulk_import.py:192 netbox/ipam/forms/bulk_import.py:257 -#: netbox/ipam/forms/bulk_import.py:293 netbox/ipam/forms/bulk_import.py:450 -#: netbox/ipam/forms/filtersets.py:210 netbox/ipam/forms/filtersets.py:281 -#: netbox/ipam/forms/filtersets.py:355 netbox/ipam/forms/filtersets.py:501 -#: netbox/ipam/forms/model_forms.py:468 netbox/ipam/tables/ip.py:237 -#: netbox/ipam/tables/ip.py:312 netbox/ipam/tables/ip.py:363 -#: netbox/ipam/tables/ip.py:426 netbox/ipam/tables/ip.py:453 -#: netbox/ipam/tables/vlans.py:126 netbox/ipam/tables/vlans.py:232 -#: netbox/templates/circuits/circuit.html:34 -#: netbox/templates/core/datasource.html:46 netbox/templates/core/job.html:48 -#: netbox/templates/core/rq_task.html:81 netbox/templates/core/system.html:18 -#: netbox/templates/dcim/cable.html:19 netbox/templates/dcim/device.html:178 -#: netbox/templates/dcim/location.html:45 netbox/templates/dcim/module.html:69 -#: netbox/templates/dcim/powerfeed.html:36 netbox/templates/dcim/rack.html:41 -#: netbox/templates/dcim/site.html:43 -#: netbox/templates/extras/script_list.html:47 -#: netbox/templates/ipam/ipaddress.html:37 -#: netbox/templates/ipam/iprange.html:54 netbox/templates/ipam/prefix.html:73 -#: netbox/templates/ipam/vlan.html:48 -#: netbox/templates/virtualization/cluster.html:21 -#: netbox/templates/virtualization/virtualmachine.html:19 -#: netbox/templates/vpn/tunnel.html:25 -#: netbox/templates/wireless/wirelesslan.html:22 -#: netbox/templates/wireless/wirelesslink.html:17 -#: netbox/users/forms/filtersets.py:32 netbox/users/forms/model_forms.py:194 -#: netbox/virtualization/forms/bulk_edit.py:70 -#: netbox/virtualization/forms/bulk_edit.py:118 -#: netbox/virtualization/forms/bulk_import.py:54 -#: netbox/virtualization/forms/bulk_import.py:80 -#: netbox/virtualization/forms/filtersets.py:62 -#: netbox/virtualization/forms/filtersets.py:160 -#: netbox/virtualization/tables/clusters.py:74 -#: netbox/virtualization/tables/virtualmachines.py:60 -#: netbox/vpn/forms/bulk_edit.py:39 netbox/vpn/forms/bulk_import.py:37 -#: netbox/vpn/forms/filtersets.py:47 netbox/vpn/tables/tunnels.py:48 -#: netbox/wireless/forms/bulk_edit.py:43 -#: netbox/wireless/forms/bulk_edit.py:105 -#: netbox/wireless/forms/bulk_import.py:43 -#: netbox/wireless/forms/bulk_import.py:84 -#: netbox/wireless/forms/filtersets.py:49 -#: netbox/wireless/forms/filtersets.py:83 -#: netbox/wireless/tables/wirelesslan.py:52 -#: netbox/wireless/tables/wirelesslink.py:20 +#: circuits/forms/bulk_edit.py:136 circuits/forms/bulk_import.py:93 +#: circuits/forms/filtersets.py:150 core/forms/filtersets.py:38 +#: core/forms/filtersets.py:79 core/tables/data.py:23 core/tables/jobs.py:26 +#: core/tables/tasks.py:88 dcim/forms/bulk_edit.py:106 +#: dcim/forms/bulk_edit.py:181 dcim/forms/bulk_edit.py:351 +#: dcim/forms/bulk_edit.py:700 dcim/forms/bulk_edit.py:756 +#: dcim/forms/bulk_edit.py:788 dcim/forms/bulk_edit.py:915 +#: dcim/forms/bulk_edit.py:1701 dcim/forms/bulk_import.py:88 +#: dcim/forms/bulk_import.py:147 dcim/forms/bulk_import.py:248 +#: dcim/forms/bulk_import.py:505 dcim/forms/bulk_import.py:659 +#: dcim/forms/bulk_import.py:1207 dcim/forms/bulk_import.py:1371 +#: dcim/forms/bulk_import.py:1435 dcim/forms/filtersets.py:178 +#: dcim/forms/filtersets.py:237 dcim/forms/filtersets.py:359 +#: dcim/forms/filtersets.py:799 dcim/forms/filtersets.py:924 +#: dcim/forms/filtersets.py:958 dcim/forms/filtersets.py:1059 +#: dcim/forms/filtersets.py:1170 dcim/tables/devices.py:140 +#: dcim/tables/devices.py:817 dcim/tables/devices.py:1063 +#: dcim/tables/modules.py:69 dcim/tables/power.py:74 dcim/tables/racks.py:126 +#: dcim/tables/sites.py:82 dcim/tables/sites.py:138 +#: ipam/forms/bulk_edit.py:256 ipam/forms/bulk_edit.py:306 +#: ipam/forms/bulk_edit.py:354 ipam/forms/bulk_edit.py:506 +#: ipam/forms/bulk_import.py:192 ipam/forms/bulk_import.py:257 +#: ipam/forms/bulk_import.py:293 ipam/forms/bulk_import.py:450 +#: ipam/forms/filtersets.py:210 ipam/forms/filtersets.py:281 +#: ipam/forms/filtersets.py:355 ipam/forms/filtersets.py:501 +#: ipam/forms/model_forms.py:468 ipam/tables/ip.py:237 ipam/tables/ip.py:312 +#: ipam/tables/ip.py:363 ipam/tables/ip.py:426 ipam/tables/ip.py:453 +#: ipam/tables/vlans.py:126 ipam/tables/vlans.py:232 +#: templates/circuits/circuit.html:34 templates/core/datasource.html:46 +#: templates/core/job.html:48 templates/core/rq_task.html:81 +#: templates/core/system.html:18 templates/dcim/cable.html:19 +#: templates/dcim/device.html:178 templates/dcim/location.html:45 +#: templates/dcim/module.html:69 templates/dcim/powerfeed.html:36 +#: templates/dcim/rack.html:41 templates/dcim/site.html:43 +#: templates/extras/script_list.html:47 templates/ipam/ipaddress.html:37 +#: templates/ipam/iprange.html:54 templates/ipam/prefix.html:73 +#: templates/ipam/vlan.html:48 templates/virtualization/cluster.html:21 +#: templates/virtualization/virtualmachine.html:19 +#: templates/vpn/tunnel.html:25 templates/wireless/wirelesslan.html:22 +#: templates/wireless/wirelesslink.html:17 users/forms/filtersets.py:32 +#: users/forms/model_forms.py:194 virtualization/forms/bulk_edit.py:70 +#: virtualization/forms/bulk_edit.py:118 +#: virtualization/forms/bulk_import.py:54 +#: virtualization/forms/bulk_import.py:80 +#: virtualization/forms/filtersets.py:62 +#: virtualization/forms/filtersets.py:160 virtualization/tables/clusters.py:74 +#: virtualization/tables/virtualmachines.py:60 vpn/forms/bulk_edit.py:39 +#: vpn/forms/bulk_import.py:37 vpn/forms/filtersets.py:47 +#: vpn/tables/tunnels.py:48 wireless/forms/bulk_edit.py:43 +#: wireless/forms/bulk_edit.py:105 wireless/forms/bulk_import.py:43 +#: wireless/forms/bulk_import.py:84 wireless/forms/filtersets.py:49 +#: wireless/forms/filtersets.py:83 wireless/tables/wirelesslan.py:52 +#: wireless/tables/wirelesslink.py:20 msgid "Status" msgstr "Durum" -#: netbox/circuits/forms/bulk_edit.py:142 -#: netbox/circuits/forms/bulk_edit.py:233 -#: netbox/circuits/forms/bulk_import.py:98 -#: netbox/circuits/forms/bulk_import.py:158 -#: netbox/circuits/forms/filtersets.py:119 -#: netbox/circuits/forms/filtersets.py:241 netbox/dcim/forms/bulk_edit.py:122 -#: netbox/dcim/forms/bulk_edit.py:187 netbox/dcim/forms/bulk_edit.py:346 -#: netbox/dcim/forms/bulk_edit.py:461 netbox/dcim/forms/bulk_edit.py:690 -#: netbox/dcim/forms/bulk_edit.py:794 netbox/dcim/forms/bulk_edit.py:1706 -#: netbox/dcim/forms/bulk_import.py:107 netbox/dcim/forms/bulk_import.py:152 -#: netbox/dcim/forms/bulk_import.py:241 netbox/dcim/forms/bulk_import.py:334 -#: netbox/dcim/forms/bulk_import.py:479 netbox/dcim/forms/bulk_import.py:1219 -#: netbox/dcim/forms/bulk_import.py:1428 netbox/dcim/forms/filtersets.py:173 -#: netbox/dcim/forms/filtersets.py:205 netbox/dcim/forms/filtersets.py:323 -#: netbox/dcim/forms/filtersets.py:399 netbox/dcim/forms/filtersets.py:420 -#: netbox/dcim/forms/filtersets.py:722 netbox/dcim/forms/filtersets.py:916 -#: netbox/dcim/forms/filtersets.py:978 netbox/dcim/forms/filtersets.py:1008 -#: netbox/dcim/forms/filtersets.py:1130 netbox/dcim/tables/power.py:88 -#: netbox/extras/filtersets.py:612 netbox/extras/forms/filtersets.py:323 -#: netbox/extras/forms/filtersets.py:396 netbox/ipam/forms/bulk_edit.py:42 -#: netbox/ipam/forms/bulk_edit.py:67 netbox/ipam/forms/bulk_edit.py:111 -#: netbox/ipam/forms/bulk_edit.py:140 netbox/ipam/forms/bulk_edit.py:165 -#: netbox/ipam/forms/bulk_edit.py:250 netbox/ipam/forms/bulk_edit.py:300 -#: netbox/ipam/forms/bulk_edit.py:348 netbox/ipam/forms/bulk_edit.py:546 -#: netbox/ipam/forms/bulk_import.py:38 netbox/ipam/forms/bulk_import.py:67 -#: netbox/ipam/forms/bulk_import.py:95 netbox/ipam/forms/bulk_import.py:115 -#: netbox/ipam/forms/bulk_import.py:135 netbox/ipam/forms/bulk_import.py:164 -#: netbox/ipam/forms/bulk_import.py:250 netbox/ipam/forms/bulk_import.py:286 -#: netbox/ipam/forms/bulk_import.py:443 netbox/ipam/forms/filtersets.py:48 -#: netbox/ipam/forms/filtersets.py:68 netbox/ipam/forms/filtersets.py:100 -#: netbox/ipam/forms/filtersets.py:120 netbox/ipam/forms/filtersets.py:143 -#: netbox/ipam/forms/filtersets.py:174 netbox/ipam/forms/filtersets.py:267 -#: netbox/ipam/forms/filtersets.py:310 netbox/ipam/forms/filtersets.py:469 -#: netbox/ipam/tables/ip.py:456 netbox/ipam/tables/vlans.py:229 -#: netbox/templates/circuits/circuit.html:38 -#: netbox/templates/circuits/circuitgroup.html:36 -#: netbox/templates/dcim/cable.html:23 netbox/templates/dcim/device.html:79 -#: netbox/templates/dcim/location.html:49 -#: netbox/templates/dcim/powerfeed.html:44 netbox/templates/dcim/rack.html:32 -#: netbox/templates/dcim/rackreservation.html:49 -#: netbox/templates/dcim/site.html:47 -#: netbox/templates/dcim/virtualdevicecontext.html:52 -#: netbox/templates/ipam/aggregate.html:30 netbox/templates/ipam/asn.html:33 -#: netbox/templates/ipam/asnrange.html:29 -#: netbox/templates/ipam/ipaddress.html:28 -#: netbox/templates/ipam/iprange.html:58 netbox/templates/ipam/prefix.html:29 -#: netbox/templates/ipam/routetarget.html:17 -#: netbox/templates/ipam/vlan.html:39 netbox/templates/ipam/vrf.html:20 -#: netbox/templates/tenancy/tenant.html:17 -#: netbox/templates/virtualization/cluster.html:33 -#: netbox/templates/virtualization/virtualmachine.html:39 -#: netbox/templates/vpn/l2vpn.html:30 netbox/templates/vpn/tunnel.html:49 -#: netbox/templates/wireless/wirelesslan.html:34 -#: netbox/templates/wireless/wirelesslink.html:25 -#: netbox/tenancy/forms/forms.py:25 netbox/tenancy/forms/forms.py:48 -#: netbox/tenancy/forms/model_forms.py:52 netbox/tenancy/tables/columns.py:64 -#: netbox/virtualization/forms/bulk_edit.py:76 -#: netbox/virtualization/forms/bulk_edit.py:155 -#: netbox/virtualization/forms/bulk_import.py:66 -#: netbox/virtualization/forms/bulk_import.py:115 -#: netbox/virtualization/forms/filtersets.py:47 -#: netbox/virtualization/forms/filtersets.py:105 -#: netbox/vpn/forms/bulk_edit.py:59 netbox/vpn/forms/bulk_edit.py:269 -#: netbox/vpn/forms/bulk_import.py:59 netbox/vpn/forms/bulk_import.py:258 -#: netbox/vpn/forms/filtersets.py:214 netbox/wireless/forms/bulk_edit.py:63 -#: netbox/wireless/forms/bulk_edit.py:110 -#: netbox/wireless/forms/bulk_import.py:55 -#: netbox/wireless/forms/bulk_import.py:97 -#: netbox/wireless/forms/filtersets.py:35 -#: netbox/wireless/forms/filtersets.py:75 +#: circuits/forms/bulk_edit.py:142 circuits/forms/bulk_edit.py:233 +#: circuits/forms/bulk_import.py:98 circuits/forms/bulk_import.py:158 +#: circuits/forms/filtersets.py:119 circuits/forms/filtersets.py:241 +#: dcim/forms/bulk_edit.py:122 dcim/forms/bulk_edit.py:187 +#: dcim/forms/bulk_edit.py:346 dcim/forms/bulk_edit.py:461 +#: dcim/forms/bulk_edit.py:690 dcim/forms/bulk_edit.py:794 +#: dcim/forms/bulk_edit.py:1706 dcim/forms/bulk_import.py:107 +#: dcim/forms/bulk_import.py:152 dcim/forms/bulk_import.py:241 +#: dcim/forms/bulk_import.py:334 dcim/forms/bulk_import.py:479 +#: dcim/forms/bulk_import.py:1219 dcim/forms/bulk_import.py:1428 +#: dcim/forms/filtersets.py:173 dcim/forms/filtersets.py:205 +#: dcim/forms/filtersets.py:323 dcim/forms/filtersets.py:399 +#: dcim/forms/filtersets.py:420 dcim/forms/filtersets.py:722 +#: dcim/forms/filtersets.py:916 dcim/forms/filtersets.py:978 +#: dcim/forms/filtersets.py:1008 dcim/forms/filtersets.py:1130 +#: dcim/tables/power.py:88 extras/filtersets.py:612 +#: extras/forms/filtersets.py:323 extras/forms/filtersets.py:396 +#: ipam/forms/bulk_edit.py:43 ipam/forms/bulk_edit.py:68 +#: ipam/forms/bulk_edit.py:112 ipam/forms/bulk_edit.py:141 +#: ipam/forms/bulk_edit.py:166 ipam/forms/bulk_edit.py:251 +#: ipam/forms/bulk_edit.py:301 ipam/forms/bulk_edit.py:349 +#: ipam/forms/bulk_edit.py:501 ipam/forms/bulk_import.py:38 +#: ipam/forms/bulk_import.py:67 ipam/forms/bulk_import.py:95 +#: ipam/forms/bulk_import.py:115 ipam/forms/bulk_import.py:135 +#: ipam/forms/bulk_import.py:164 ipam/forms/bulk_import.py:250 +#: ipam/forms/bulk_import.py:286 ipam/forms/bulk_import.py:443 +#: ipam/forms/filtersets.py:48 ipam/forms/filtersets.py:68 +#: ipam/forms/filtersets.py:100 ipam/forms/filtersets.py:120 +#: ipam/forms/filtersets.py:143 ipam/forms/filtersets.py:174 +#: ipam/forms/filtersets.py:267 ipam/forms/filtersets.py:310 +#: ipam/forms/filtersets.py:469 ipam/tables/ip.py:456 ipam/tables/vlans.py:229 +#: templates/circuits/circuit.html:38 templates/circuits/circuitgroup.html:36 +#: templates/dcim/cable.html:23 templates/dcim/device.html:79 +#: templates/dcim/location.html:49 templates/dcim/powerfeed.html:44 +#: templates/dcim/rack.html:32 templates/dcim/rackreservation.html:49 +#: templates/dcim/site.html:47 templates/dcim/virtualdevicecontext.html:52 +#: templates/ipam/aggregate.html:30 templates/ipam/asn.html:33 +#: templates/ipam/asnrange.html:29 templates/ipam/ipaddress.html:28 +#: templates/ipam/iprange.html:58 templates/ipam/prefix.html:29 +#: templates/ipam/routetarget.html:17 templates/ipam/vlan.html:39 +#: templates/ipam/vrf.html:20 templates/tenancy/tenant.html:17 +#: templates/virtualization/cluster.html:33 +#: templates/virtualization/virtualmachine.html:39 templates/vpn/l2vpn.html:30 +#: templates/vpn/tunnel.html:49 templates/wireless/wirelesslan.html:34 +#: templates/wireless/wirelesslink.html:25 tenancy/forms/forms.py:25 +#: tenancy/forms/forms.py:48 tenancy/forms/model_forms.py:52 +#: tenancy/tables/columns.py:64 virtualization/forms/bulk_edit.py:76 +#: virtualization/forms/bulk_edit.py:155 +#: virtualization/forms/bulk_import.py:66 +#: virtualization/forms/bulk_import.py:115 +#: virtualization/forms/filtersets.py:47 +#: virtualization/forms/filtersets.py:105 vpn/forms/bulk_edit.py:59 +#: vpn/forms/bulk_edit.py:269 vpn/forms/bulk_import.py:59 +#: vpn/forms/bulk_import.py:258 vpn/forms/filtersets.py:214 +#: wireless/forms/bulk_edit.py:63 wireless/forms/bulk_edit.py:110 +#: wireless/forms/bulk_import.py:55 wireless/forms/bulk_import.py:97 +#: wireless/forms/filtersets.py:35 wireless/forms/filtersets.py:75 msgid "Tenant" msgstr "Kiracı" -#: netbox/circuits/forms/bulk_edit.py:147 -#: netbox/circuits/forms/filtersets.py:174 +#: circuits/forms/bulk_edit.py:147 circuits/forms/filtersets.py:174 msgid "Install date" msgstr "Yükleme tarihi" -#: netbox/circuits/forms/bulk_edit.py:152 -#: netbox/circuits/forms/filtersets.py:179 +#: circuits/forms/bulk_edit.py:152 circuits/forms/filtersets.py:179 msgid "Termination date" msgstr "Fesih tarihi" -#: netbox/circuits/forms/bulk_edit.py:158 -#: netbox/circuits/forms/filtersets.py:186 +#: circuits/forms/bulk_edit.py:158 circuits/forms/filtersets.py:186 msgid "Commit rate (Kbps)" msgstr "Taahhüt oranı (Kbps)" -#: netbox/circuits/forms/bulk_edit.py:173 -#: netbox/circuits/forms/model_forms.py:112 +#: circuits/forms/bulk_edit.py:173 circuits/forms/model_forms.py:112 msgid "Service Parameters" msgstr "Servis Parametreleri" -#: netbox/circuits/forms/bulk_edit.py:174 -#: netbox/circuits/forms/model_forms.py:113 -#: netbox/circuits/forms/model_forms.py:183 -#: netbox/dcim/forms/model_forms.py:139 netbox/dcim/forms/model_forms.py:181 -#: netbox/dcim/forms/model_forms.py:266 netbox/dcim/forms/model_forms.py:323 -#: netbox/dcim/forms/model_forms.py:768 netbox/dcim/forms/model_forms.py:1692 -#: netbox/ipam/forms/model_forms.py:64 netbox/ipam/forms/model_forms.py:81 -#: netbox/ipam/forms/model_forms.py:115 netbox/ipam/forms/model_forms.py:136 -#: netbox/ipam/forms/model_forms.py:160 netbox/ipam/forms/model_forms.py:232 -#: netbox/ipam/forms/model_forms.py:261 netbox/ipam/forms/model_forms.py:316 -#: netbox/netbox/navigation/menu.py:24 -#: netbox/templates/dcim/device_edit.html:85 -#: netbox/templates/dcim/htmx/cable_edit.html:72 -#: netbox/templates/ipam/ipaddress_bulk_add.html:27 -#: netbox/templates/ipam/vlan_edit.html:22 -#: netbox/virtualization/forms/model_forms.py:80 -#: netbox/virtualization/forms/model_forms.py:222 -#: netbox/vpn/forms/bulk_edit.py:78 netbox/vpn/forms/filtersets.py:44 -#: netbox/vpn/forms/model_forms.py:62 netbox/vpn/forms/model_forms.py:147 -#: netbox/vpn/forms/model_forms.py:411 netbox/wireless/forms/model_forms.py:54 -#: netbox/wireless/forms/model_forms.py:170 +#: circuits/forms/bulk_edit.py:174 circuits/forms/model_forms.py:113 +#: circuits/forms/model_forms.py:183 dcim/forms/model_forms.py:139 +#: dcim/forms/model_forms.py:181 dcim/forms/model_forms.py:266 +#: dcim/forms/model_forms.py:323 dcim/forms/model_forms.py:768 +#: dcim/forms/model_forms.py:1692 ipam/forms/model_forms.py:64 +#: ipam/forms/model_forms.py:81 ipam/forms/model_forms.py:115 +#: ipam/forms/model_forms.py:136 ipam/forms/model_forms.py:160 +#: ipam/forms/model_forms.py:232 ipam/forms/model_forms.py:261 +#: ipam/forms/model_forms.py:316 netbox/navigation/menu.py:24 +#: templates/dcim/device_edit.html:85 templates/dcim/htmx/cable_edit.html:72 +#: templates/ipam/ipaddress_bulk_add.html:27 templates/ipam/vlan_edit.html:22 +#: virtualization/forms/model_forms.py:80 +#: virtualization/forms/model_forms.py:222 vpn/forms/bulk_edit.py:78 +#: vpn/forms/filtersets.py:44 vpn/forms/model_forms.py:62 +#: vpn/forms/model_forms.py:147 vpn/forms/model_forms.py:411 +#: wireless/forms/model_forms.py:54 wireless/forms/model_forms.py:170 msgid "Tenancy" msgstr "Kiracılık" -#: netbox/circuits/forms/bulk_edit.py:193 -#: netbox/circuits/forms/bulk_edit.py:217 -#: netbox/circuits/forms/model_forms.py:155 -#: netbox/circuits/tables/circuits.py:117 -#: netbox/templates/circuits/inc/circuit_termination_fields.html:62 -#: netbox/templates/circuits/providernetwork.html:17 +#: circuits/forms/bulk_edit.py:193 circuits/forms/bulk_edit.py:217 +#: circuits/forms/model_forms.py:155 circuits/tables/circuits.py:117 +#: templates/circuits/inc/circuit_termination_fields.html:62 +#: templates/circuits/providernetwork.html:17 msgid "Provider Network" msgstr "Sağlayıcı Ağı" -#: netbox/circuits/forms/bulk_edit.py:199 +#: circuits/forms/bulk_edit.py:199 msgid "Port speed (Kbps)" msgstr "Bağlantı noktası hızı (Kbps)" -#: netbox/circuits/forms/bulk_edit.py:203 +#: circuits/forms/bulk_edit.py:203 msgid "Upstream speed (Kbps)" msgstr "Yukarı akış hızı (Kbps)" -#: netbox/circuits/forms/bulk_edit.py:206 netbox/dcim/forms/bulk_edit.py:951 -#: netbox/dcim/forms/bulk_edit.py:1315 netbox/dcim/forms/bulk_edit.py:1332 -#: netbox/dcim/forms/bulk_edit.py:1349 netbox/dcim/forms/bulk_edit.py:1367 -#: netbox/dcim/forms/bulk_edit.py:1455 netbox/dcim/forms/bulk_edit.py:1594 -#: netbox/dcim/forms/bulk_edit.py:1611 +#: circuits/forms/bulk_edit.py:206 dcim/forms/bulk_edit.py:951 +#: dcim/forms/bulk_edit.py:1315 dcim/forms/bulk_edit.py:1332 +#: dcim/forms/bulk_edit.py:1349 dcim/forms/bulk_edit.py:1367 +#: dcim/forms/bulk_edit.py:1455 dcim/forms/bulk_edit.py:1594 +#: dcim/forms/bulk_edit.py:1611 msgid "Mark connected" msgstr "Bağlı olarak işaretle" -#: netbox/circuits/forms/bulk_edit.py:219 -#: netbox/circuits/forms/model_forms.py:157 -#: netbox/templates/circuits/inc/circuit_termination_fields.html:54 -#: netbox/templates/dcim/frontport.html:121 -#: netbox/templates/dcim/interface.html:193 -#: netbox/templates/dcim/rearport.html:111 +#: circuits/forms/bulk_edit.py:219 circuits/forms/model_forms.py:157 +#: templates/circuits/inc/circuit_termination_fields.html:54 +#: templates/dcim/frontport.html:121 templates/dcim/interface.html:193 +#: templates/dcim/rearport.html:111 msgid "Circuit Termination" msgstr "Devre Sonlandırma" -#: netbox/circuits/forms/bulk_edit.py:221 -#: netbox/circuits/forms/model_forms.py:159 +#: circuits/forms/bulk_edit.py:221 circuits/forms/model_forms.py:159 msgid "Termination Details" msgstr "Fesih Ayrıntıları" -#: netbox/circuits/forms/bulk_edit.py:251 -#: netbox/circuits/forms/filtersets.py:268 -#: netbox/circuits/tables/circuits.py:168 netbox/dcim/forms/model_forms.py:551 -#: netbox/templates/circuits/circuitgroupassignment.html:30 -#: netbox/templates/dcim/device.html:133 -#: netbox/templates/dcim/virtualchassis.html:68 -#: netbox/templates/dcim/virtualchassis_edit.html:56 -#: netbox/templates/ipam/inc/panels/fhrp_groups.html:26 -#: netbox/tenancy/forms/bulk_edit.py:147 -#: netbox/tenancy/forms/filtersets.py:110 +#: circuits/forms/bulk_edit.py:251 circuits/forms/filtersets.py:268 +#: circuits/tables/circuits.py:168 dcim/forms/model_forms.py:551 +#: templates/circuits/circuitgroupassignment.html:30 +#: templates/dcim/device.html:133 templates/dcim/virtualchassis.html:68 +#: templates/dcim/virtualchassis_edit.html:56 +#: templates/ipam/inc/panels/fhrp_groups.html:26 +#: tenancy/forms/bulk_edit.py:147 tenancy/forms/filtersets.py:110 msgid "Priority" msgstr "Öncelik" -#: netbox/circuits/forms/bulk_import.py:39 -#: netbox/circuits/forms/bulk_import.py:54 -#: netbox/circuits/forms/bulk_import.py:77 +#: circuits/forms/bulk_import.py:39 circuits/forms/bulk_import.py:54 +#: circuits/forms/bulk_import.py:77 msgid "Assigned provider" msgstr "Atanan sağlayıcı" -#: netbox/circuits/forms/bulk_import.py:83 +#: circuits/forms/bulk_import.py:83 msgid "Assigned provider account" msgstr "Atanan sağlayıcı hesabı" -#: netbox/circuits/forms/bulk_import.py:90 +#: circuits/forms/bulk_import.py:90 msgid "Type of circuit" msgstr "Devre tipi" -#: netbox/circuits/forms/bulk_import.py:95 netbox/dcim/forms/bulk_import.py:90 -#: netbox/dcim/forms/bulk_import.py:149 netbox/dcim/forms/bulk_import.py:250 -#: netbox/dcim/forms/bulk_import.py:507 netbox/dcim/forms/bulk_import.py:661 -#: netbox/dcim/forms/bulk_import.py:1373 netbox/ipam/forms/bulk_import.py:194 -#: netbox/ipam/forms/bulk_import.py:259 netbox/ipam/forms/bulk_import.py:295 -#: netbox/ipam/forms/bulk_import.py:452 -#: netbox/virtualization/forms/bulk_import.py:56 -#: netbox/virtualization/forms/bulk_import.py:82 -#: netbox/vpn/forms/bulk_import.py:39 netbox/wireless/forms/bulk_import.py:45 +#: circuits/forms/bulk_import.py:95 dcim/forms/bulk_import.py:90 +#: dcim/forms/bulk_import.py:149 dcim/forms/bulk_import.py:250 +#: dcim/forms/bulk_import.py:507 dcim/forms/bulk_import.py:661 +#: dcim/forms/bulk_import.py:1373 ipam/forms/bulk_import.py:194 +#: ipam/forms/bulk_import.py:259 ipam/forms/bulk_import.py:295 +#: ipam/forms/bulk_import.py:452 virtualization/forms/bulk_import.py:56 +#: virtualization/forms/bulk_import.py:82 vpn/forms/bulk_import.py:39 +#: wireless/forms/bulk_import.py:45 msgid "Operational status" msgstr "Operasyonel durum" -#: netbox/circuits/forms/bulk_import.py:102 -#: netbox/circuits/forms/bulk_import.py:162 -#: netbox/dcim/forms/bulk_import.py:111 netbox/dcim/forms/bulk_import.py:156 -#: netbox/dcim/forms/bulk_import.py:338 netbox/dcim/forms/bulk_import.py:483 -#: netbox/dcim/forms/bulk_import.py:1223 netbox/dcim/forms/bulk_import.py:1368 -#: netbox/dcim/forms/bulk_import.py:1432 netbox/ipam/forms/bulk_import.py:42 -#: netbox/ipam/forms/bulk_import.py:71 netbox/ipam/forms/bulk_import.py:99 -#: netbox/ipam/forms/bulk_import.py:119 netbox/ipam/forms/bulk_import.py:139 -#: netbox/ipam/forms/bulk_import.py:168 netbox/ipam/forms/bulk_import.py:254 -#: netbox/ipam/forms/bulk_import.py:290 netbox/ipam/forms/bulk_import.py:447 -#: netbox/virtualization/forms/bulk_import.py:70 -#: netbox/virtualization/forms/bulk_import.py:119 -#: netbox/vpn/forms/bulk_import.py:63 netbox/wireless/forms/bulk_import.py:59 -#: netbox/wireless/forms/bulk_import.py:101 +#: circuits/forms/bulk_import.py:102 circuits/forms/bulk_import.py:162 +#: dcim/forms/bulk_import.py:111 dcim/forms/bulk_import.py:156 +#: dcim/forms/bulk_import.py:338 dcim/forms/bulk_import.py:483 +#: dcim/forms/bulk_import.py:1223 dcim/forms/bulk_import.py:1368 +#: dcim/forms/bulk_import.py:1432 ipam/forms/bulk_import.py:42 +#: ipam/forms/bulk_import.py:71 ipam/forms/bulk_import.py:99 +#: ipam/forms/bulk_import.py:119 ipam/forms/bulk_import.py:139 +#: ipam/forms/bulk_import.py:168 ipam/forms/bulk_import.py:254 +#: ipam/forms/bulk_import.py:290 ipam/forms/bulk_import.py:447 +#: virtualization/forms/bulk_import.py:70 +#: virtualization/forms/bulk_import.py:119 vpn/forms/bulk_import.py:63 +#: wireless/forms/bulk_import.py:59 wireless/forms/bulk_import.py:101 msgid "Assigned tenant" msgstr "Atanan kiracı" -#: netbox/circuits/forms/bulk_import.py:120 -#: netbox/templates/circuits/inc/circuit_termination.html:6 -#: netbox/templates/circuits/inc/circuit_termination_fields.html:15 -#: netbox/templates/dcim/cable.html:68 netbox/templates/dcim/cable.html:72 -#: netbox/vpn/forms/bulk_import.py:100 netbox/vpn/forms/filtersets.py:77 +#: circuits/forms/bulk_import.py:120 +#: templates/circuits/inc/circuit_termination.html:6 +#: templates/circuits/inc/circuit_termination_fields.html:15 +#: templates/dcim/cable.html:68 templates/dcim/cable.html:72 +#: vpn/forms/bulk_import.py:100 vpn/forms/filtersets.py:77 msgid "Termination" msgstr "Fesih" -#: netbox/circuits/forms/bulk_import.py:130 -#: netbox/circuits/forms/filtersets.py:147 -#: netbox/circuits/forms/filtersets.py:227 -#: netbox/circuits/forms/model_forms.py:144 +#: circuits/forms/bulk_import.py:130 circuits/forms/filtersets.py:147 +#: circuits/forms/filtersets.py:227 circuits/forms/model_forms.py:144 msgid "Provider network" msgstr "Sağlayıcı ağı" -#: netbox/circuits/forms/filtersets.py:30 -#: netbox/circuits/forms/filtersets.py:118 -#: netbox/circuits/forms/filtersets.py:200 netbox/dcim/forms/bulk_edit.py:338 -#: netbox/dcim/forms/bulk_edit.py:441 netbox/dcim/forms/bulk_edit.py:682 -#: netbox/dcim/forms/bulk_edit.py:729 netbox/dcim/forms/bulk_edit.py:882 -#: netbox/dcim/forms/bulk_import.py:235 netbox/dcim/forms/bulk_import.py:315 -#: netbox/dcim/forms/bulk_import.py:546 netbox/dcim/forms/bulk_import.py:1317 -#: netbox/dcim/forms/bulk_import.py:1351 netbox/dcim/forms/filtersets.py:95 -#: netbox/dcim/forms/filtersets.py:322 netbox/dcim/forms/filtersets.py:356 -#: netbox/dcim/forms/filtersets.py:396 netbox/dcim/forms/filtersets.py:447 -#: netbox/dcim/forms/filtersets.py:719 netbox/dcim/forms/filtersets.py:762 -#: netbox/dcim/forms/filtersets.py:977 netbox/dcim/forms/filtersets.py:1006 -#: netbox/dcim/forms/filtersets.py:1026 netbox/dcim/forms/filtersets.py:1090 -#: netbox/dcim/forms/filtersets.py:1120 netbox/dcim/forms/filtersets.py:1129 -#: netbox/dcim/forms/filtersets.py:1240 netbox/dcim/forms/filtersets.py:1264 -#: netbox/dcim/forms/filtersets.py:1289 netbox/dcim/forms/filtersets.py:1308 -#: netbox/dcim/forms/filtersets.py:1331 netbox/dcim/forms/filtersets.py:1442 -#: netbox/dcim/forms/filtersets.py:1466 netbox/dcim/forms/filtersets.py:1490 -#: netbox/dcim/forms/filtersets.py:1508 netbox/dcim/forms/filtersets.py:1525 -#: netbox/dcim/forms/model_forms.py:180 netbox/dcim/forms/model_forms.py:243 -#: netbox/dcim/forms/model_forms.py:468 netbox/dcim/forms/model_forms.py:728 -#: netbox/dcim/tables/devices.py:157 netbox/dcim/tables/power.py:30 -#: netbox/dcim/tables/racks.py:118 netbox/dcim/tables/racks.py:212 -#: netbox/extras/filtersets.py:536 netbox/extras/forms/filtersets.py:320 -#: netbox/ipam/forms/bulk_edit.py:460 netbox/ipam/forms/filtersets.py:173 -#: netbox/ipam/forms/filtersets.py:414 netbox/ipam/forms/filtersets.py:437 -#: netbox/ipam/forms/filtersets.py:467 netbox/templates/dcim/device.html:26 -#: netbox/templates/dcim/device_edit.html:30 -#: netbox/templates/dcim/inc/cable_termination.html:12 -#: netbox/templates/dcim/location.html:26 -#: netbox/templates/dcim/powerpanel.html:26 netbox/templates/dcim/rack.html:24 -#: netbox/templates/dcim/rackreservation.html:32 -#: netbox/virtualization/forms/filtersets.py:46 -#: netbox/virtualization/forms/filtersets.py:100 -#: netbox/wireless/forms/model_forms.py:87 -#: netbox/wireless/forms/model_forms.py:129 +#: circuits/forms/filtersets.py:30 circuits/forms/filtersets.py:118 +#: circuits/forms/filtersets.py:200 dcim/forms/bulk_edit.py:338 +#: dcim/forms/bulk_edit.py:441 dcim/forms/bulk_edit.py:682 +#: dcim/forms/bulk_edit.py:729 dcim/forms/bulk_edit.py:882 +#: dcim/forms/bulk_import.py:235 dcim/forms/bulk_import.py:315 +#: dcim/forms/bulk_import.py:546 dcim/forms/bulk_import.py:1317 +#: dcim/forms/bulk_import.py:1351 dcim/forms/filtersets.py:95 +#: dcim/forms/filtersets.py:322 dcim/forms/filtersets.py:356 +#: dcim/forms/filtersets.py:396 dcim/forms/filtersets.py:447 +#: dcim/forms/filtersets.py:719 dcim/forms/filtersets.py:762 +#: dcim/forms/filtersets.py:977 dcim/forms/filtersets.py:1006 +#: dcim/forms/filtersets.py:1026 dcim/forms/filtersets.py:1090 +#: dcim/forms/filtersets.py:1120 dcim/forms/filtersets.py:1129 +#: dcim/forms/filtersets.py:1240 dcim/forms/filtersets.py:1264 +#: dcim/forms/filtersets.py:1289 dcim/forms/filtersets.py:1308 +#: dcim/forms/filtersets.py:1331 dcim/forms/filtersets.py:1442 +#: dcim/forms/filtersets.py:1466 dcim/forms/filtersets.py:1490 +#: dcim/forms/filtersets.py:1508 dcim/forms/filtersets.py:1525 +#: dcim/forms/model_forms.py:180 dcim/forms/model_forms.py:243 +#: dcim/forms/model_forms.py:468 dcim/forms/model_forms.py:728 +#: dcim/tables/devices.py:157 dcim/tables/power.py:30 dcim/tables/racks.py:118 +#: dcim/tables/racks.py:212 extras/filtersets.py:536 +#: extras/forms/filtersets.py:320 ipam/forms/filtersets.py:173 +#: ipam/forms/filtersets.py:414 ipam/forms/filtersets.py:437 +#: ipam/forms/filtersets.py:467 templates/dcim/device.html:26 +#: templates/dcim/device_edit.html:30 +#: templates/dcim/inc/cable_termination.html:12 +#: templates/dcim/location.html:26 templates/dcim/powerpanel.html:26 +#: templates/dcim/rack.html:24 templates/dcim/rackreservation.html:32 +#: virtualization/forms/filtersets.py:46 +#: virtualization/forms/filtersets.py:100 wireless/forms/model_forms.py:87 +#: wireless/forms/model_forms.py:129 msgid "Location" msgstr "Konum" -#: netbox/circuits/forms/filtersets.py:32 -#: netbox/circuits/forms/filtersets.py:120 netbox/dcim/forms/filtersets.py:144 -#: netbox/dcim/forms/filtersets.py:158 netbox/dcim/forms/filtersets.py:174 -#: netbox/dcim/forms/filtersets.py:206 netbox/dcim/forms/filtersets.py:328 -#: netbox/dcim/forms/filtersets.py:400 netbox/dcim/forms/filtersets.py:471 -#: netbox/dcim/forms/filtersets.py:723 netbox/dcim/forms/filtersets.py:1091 -#: netbox/netbox/navigation/menu.py:31 netbox/netbox/navigation/menu.py:33 -#: netbox/tenancy/forms/filtersets.py:42 netbox/tenancy/tables/columns.py:70 -#: netbox/tenancy/tables/contacts.py:25 netbox/tenancy/views.py:19 -#: netbox/virtualization/forms/filtersets.py:37 -#: netbox/virtualization/forms/filtersets.py:48 -#: netbox/virtualization/forms/filtersets.py:106 +#: circuits/forms/filtersets.py:32 circuits/forms/filtersets.py:120 +#: dcim/forms/filtersets.py:144 dcim/forms/filtersets.py:158 +#: dcim/forms/filtersets.py:174 dcim/forms/filtersets.py:206 +#: dcim/forms/filtersets.py:328 dcim/forms/filtersets.py:400 +#: dcim/forms/filtersets.py:471 dcim/forms/filtersets.py:723 +#: dcim/forms/filtersets.py:1091 netbox/navigation/menu.py:31 +#: netbox/navigation/menu.py:33 tenancy/forms/filtersets.py:42 +#: tenancy/tables/columns.py:70 tenancy/tables/contacts.py:25 +#: tenancy/views.py:19 virtualization/forms/filtersets.py:37 +#: virtualization/forms/filtersets.py:48 +#: virtualization/forms/filtersets.py:106 msgid "Contacts" msgstr "İletişim" -#: netbox/circuits/forms/filtersets.py:37 -#: netbox/circuits/forms/filtersets.py:157 netbox/dcim/forms/bulk_edit.py:112 -#: netbox/dcim/forms/bulk_edit.py:313 netbox/dcim/forms/bulk_edit.py:857 -#: netbox/dcim/forms/bulk_import.py:93 netbox/dcim/forms/filtersets.py:73 -#: netbox/dcim/forms/filtersets.py:185 netbox/dcim/forms/filtersets.py:211 -#: netbox/dcim/forms/filtersets.py:334 netbox/dcim/forms/filtersets.py:425 -#: netbox/dcim/forms/filtersets.py:739 netbox/dcim/forms/filtersets.py:983 -#: netbox/dcim/forms/filtersets.py:1013 netbox/dcim/forms/filtersets.py:1097 -#: netbox/dcim/forms/filtersets.py:1136 netbox/dcim/forms/filtersets.py:1576 -#: netbox/dcim/forms/filtersets.py:1600 netbox/dcim/forms/filtersets.py:1624 -#: netbox/dcim/forms/model_forms.py:112 netbox/dcim/forms/object_create.py:375 -#: netbox/dcim/tables/devices.py:143 netbox/dcim/tables/sites.py:85 -#: netbox/extras/filtersets.py:503 netbox/ipam/forms/bulk_edit.py:207 -#: netbox/ipam/forms/bulk_edit.py:441 netbox/ipam/forms/bulk_edit.py:519 -#: netbox/ipam/forms/filtersets.py:217 netbox/ipam/forms/filtersets.py:422 -#: netbox/ipam/forms/filtersets.py:475 netbox/templates/dcim/device.html:18 -#: netbox/templates/dcim/rack.html:16 -#: netbox/templates/dcim/rackreservation.html:22 -#: netbox/templates/dcim/region.html:26 netbox/templates/dcim/site.html:31 -#: netbox/templates/ipam/prefix.html:49 netbox/templates/ipam/vlan.html:16 -#: netbox/virtualization/forms/bulk_edit.py:81 -#: netbox/virtualization/forms/filtersets.py:59 -#: netbox/virtualization/forms/filtersets.py:133 -#: netbox/virtualization/forms/model_forms.py:92 -#: netbox/vpn/forms/filtersets.py:257 +#: circuits/forms/filtersets.py:37 circuits/forms/filtersets.py:157 +#: dcim/forms/bulk_edit.py:112 dcim/forms/bulk_edit.py:313 +#: dcim/forms/bulk_edit.py:857 dcim/forms/bulk_import.py:93 +#: dcim/forms/filtersets.py:73 dcim/forms/filtersets.py:185 +#: dcim/forms/filtersets.py:211 dcim/forms/filtersets.py:334 +#: dcim/forms/filtersets.py:425 dcim/forms/filtersets.py:739 +#: dcim/forms/filtersets.py:983 dcim/forms/filtersets.py:1013 +#: dcim/forms/filtersets.py:1097 dcim/forms/filtersets.py:1136 +#: dcim/forms/filtersets.py:1576 dcim/forms/filtersets.py:1600 +#: dcim/forms/filtersets.py:1624 dcim/forms/model_forms.py:112 +#: dcim/forms/object_create.py:375 dcim/tables/devices.py:143 +#: dcim/tables/sites.py:85 extras/filtersets.py:503 +#: ipam/forms/bulk_edit.py:208 ipam/forms/bulk_edit.py:474 +#: ipam/forms/filtersets.py:217 ipam/forms/filtersets.py:422 +#: ipam/forms/filtersets.py:475 templates/dcim/device.html:18 +#: templates/dcim/rack.html:16 templates/dcim/rackreservation.html:22 +#: templates/dcim/region.html:26 templates/dcim/site.html:31 +#: templates/ipam/prefix.html:49 templates/ipam/vlan.html:16 +#: virtualization/forms/bulk_edit.py:81 virtualization/forms/filtersets.py:59 +#: virtualization/forms/filtersets.py:133 +#: virtualization/forms/model_forms.py:92 vpn/forms/filtersets.py:257 msgid "Region" msgstr "Bölge" -#: netbox/circuits/forms/filtersets.py:42 -#: netbox/circuits/forms/filtersets.py:162 netbox/dcim/forms/bulk_edit.py:321 -#: netbox/dcim/forms/bulk_edit.py:865 netbox/dcim/forms/filtersets.py:78 -#: netbox/dcim/forms/filtersets.py:190 netbox/dcim/forms/filtersets.py:216 -#: netbox/dcim/forms/filtersets.py:347 netbox/dcim/forms/filtersets.py:430 -#: netbox/dcim/forms/filtersets.py:744 netbox/dcim/forms/filtersets.py:988 -#: netbox/dcim/forms/filtersets.py:1102 netbox/dcim/forms/filtersets.py:1141 -#: netbox/dcim/forms/object_create.py:383 netbox/extras/filtersets.py:520 -#: netbox/ipam/forms/bulk_edit.py:212 netbox/ipam/forms/bulk_edit.py:448 -#: netbox/ipam/forms/bulk_edit.py:524 netbox/ipam/forms/filtersets.py:222 -#: netbox/ipam/forms/filtersets.py:427 netbox/ipam/forms/filtersets.py:480 -#: netbox/virtualization/forms/bulk_edit.py:86 -#: netbox/virtualization/forms/filtersets.py:69 -#: netbox/virtualization/forms/filtersets.py:138 -#: netbox/virtualization/forms/model_forms.py:98 +#: circuits/forms/filtersets.py:42 circuits/forms/filtersets.py:162 +#: dcim/forms/bulk_edit.py:321 dcim/forms/bulk_edit.py:865 +#: dcim/forms/filtersets.py:78 dcim/forms/filtersets.py:190 +#: dcim/forms/filtersets.py:216 dcim/forms/filtersets.py:347 +#: dcim/forms/filtersets.py:430 dcim/forms/filtersets.py:744 +#: dcim/forms/filtersets.py:988 dcim/forms/filtersets.py:1102 +#: dcim/forms/filtersets.py:1141 dcim/forms/object_create.py:383 +#: extras/filtersets.py:520 ipam/forms/bulk_edit.py:213 +#: ipam/forms/bulk_edit.py:479 ipam/forms/filtersets.py:222 +#: ipam/forms/filtersets.py:427 ipam/forms/filtersets.py:480 +#: virtualization/forms/bulk_edit.py:86 virtualization/forms/filtersets.py:69 +#: virtualization/forms/filtersets.py:138 +#: virtualization/forms/model_forms.py:98 msgid "Site group" msgstr "Site grubu" -#: netbox/circuits/forms/filtersets.py:65 -#: netbox/circuits/forms/filtersets.py:83 -#: netbox/circuits/forms/filtersets.py:102 -#: netbox/circuits/forms/filtersets.py:117 netbox/core/forms/filtersets.py:67 -#: netbox/core/forms/filtersets.py:135 netbox/dcim/forms/bulk_edit.py:828 -#: netbox/dcim/forms/filtersets.py:172 netbox/dcim/forms/filtersets.py:204 -#: netbox/dcim/forms/filtersets.py:915 netbox/dcim/forms/filtersets.py:1007 -#: netbox/dcim/forms/filtersets.py:1131 netbox/dcim/forms/filtersets.py:1239 -#: netbox/dcim/forms/filtersets.py:1263 netbox/dcim/forms/filtersets.py:1288 -#: netbox/dcim/forms/filtersets.py:1307 netbox/dcim/forms/filtersets.py:1327 -#: netbox/dcim/forms/filtersets.py:1441 netbox/dcim/forms/filtersets.py:1465 -#: netbox/dcim/forms/filtersets.py:1489 netbox/dcim/forms/filtersets.py:1507 -#: netbox/dcim/forms/filtersets.py:1523 netbox/extras/forms/bulk_edit.py:90 -#: netbox/extras/forms/filtersets.py:44 netbox/extras/forms/filtersets.py:134 -#: netbox/extras/forms/filtersets.py:165 netbox/extras/forms/filtersets.py:205 -#: netbox/extras/forms/filtersets.py:221 netbox/extras/forms/filtersets.py:252 -#: netbox/extras/forms/filtersets.py:276 netbox/extras/forms/filtersets.py:441 -#: netbox/ipam/forms/filtersets.py:99 netbox/ipam/forms/filtersets.py:266 -#: netbox/ipam/forms/filtersets.py:307 netbox/ipam/forms/filtersets.py:382 -#: netbox/ipam/forms/filtersets.py:468 netbox/ipam/forms/filtersets.py:527 -#: netbox/ipam/forms/filtersets.py:545 netbox/netbox/tables/tables.py:256 -#: netbox/virtualization/forms/filtersets.py:45 -#: netbox/virtualization/forms/filtersets.py:103 -#: netbox/virtualization/forms/filtersets.py:198 -#: netbox/virtualization/forms/filtersets.py:243 -#: netbox/vpn/forms/filtersets.py:213 netbox/wireless/forms/bulk_edit.py:150 -#: netbox/wireless/forms/filtersets.py:34 -#: netbox/wireless/forms/filtersets.py:74 +#: circuits/forms/filtersets.py:65 circuits/forms/filtersets.py:83 +#: circuits/forms/filtersets.py:102 circuits/forms/filtersets.py:117 +#: core/forms/filtersets.py:67 core/forms/filtersets.py:135 +#: dcim/forms/bulk_edit.py:828 dcim/forms/filtersets.py:172 +#: dcim/forms/filtersets.py:204 dcim/forms/filtersets.py:915 +#: dcim/forms/filtersets.py:1007 dcim/forms/filtersets.py:1131 +#: dcim/forms/filtersets.py:1239 dcim/forms/filtersets.py:1263 +#: dcim/forms/filtersets.py:1288 dcim/forms/filtersets.py:1307 +#: dcim/forms/filtersets.py:1327 dcim/forms/filtersets.py:1441 +#: dcim/forms/filtersets.py:1465 dcim/forms/filtersets.py:1489 +#: dcim/forms/filtersets.py:1507 dcim/forms/filtersets.py:1523 +#: extras/forms/bulk_edit.py:90 extras/forms/filtersets.py:44 +#: extras/forms/filtersets.py:134 extras/forms/filtersets.py:165 +#: extras/forms/filtersets.py:205 extras/forms/filtersets.py:221 +#: extras/forms/filtersets.py:252 extras/forms/filtersets.py:276 +#: extras/forms/filtersets.py:441 ipam/forms/filtersets.py:99 +#: ipam/forms/filtersets.py:266 ipam/forms/filtersets.py:307 +#: ipam/forms/filtersets.py:382 ipam/forms/filtersets.py:468 +#: ipam/forms/filtersets.py:527 ipam/forms/filtersets.py:545 +#: netbox/tables/tables.py:256 virtualization/forms/filtersets.py:45 +#: virtualization/forms/filtersets.py:103 +#: virtualization/forms/filtersets.py:198 +#: virtualization/forms/filtersets.py:243 vpn/forms/filtersets.py:213 +#: wireless/forms/bulk_edit.py:150 wireless/forms/filtersets.py:34 +#: wireless/forms/filtersets.py:74 msgid "Attributes" msgstr "Öznitellikler" -#: netbox/circuits/forms/filtersets.py:73 -#: netbox/circuits/tables/circuits.py:63 -#: netbox/circuits/tables/providers.py:66 -#: netbox/templates/circuits/circuit.html:22 -#: netbox/templates/circuits/provideraccount.html:24 +#: circuits/forms/filtersets.py:73 circuits/tables/circuits.py:63 +#: circuits/tables/providers.py:66 templates/circuits/circuit.html:22 +#: templates/circuits/provideraccount.html:24 msgid "Account" msgstr "Hesap" -#: netbox/circuits/forms/filtersets.py:217 +#: circuits/forms/filtersets.py:217 msgid "Term Side" msgstr "Dönem Tarafı" -#: netbox/circuits/forms/filtersets.py:250 -#: netbox/extras/forms/model_forms.py:582 netbox/ipam/forms/filtersets.py:142 -#: netbox/ipam/forms/filtersets.py:546 netbox/ipam/forms/model_forms.py:323 -#: netbox/templates/extras/configcontext.html:60 -#: netbox/templates/ipam/ipaddress.html:59 -#: netbox/templates/ipam/vlan_edit.html:30 -#: netbox/tenancy/forms/filtersets.py:87 netbox/users/forms/model_forms.py:314 +#: circuits/forms/filtersets.py:250 extras/forms/model_forms.py:582 +#: ipam/forms/filtersets.py:142 ipam/forms/filtersets.py:546 +#: ipam/forms/model_forms.py:323 templates/extras/configcontext.html:60 +#: templates/ipam/ipaddress.html:59 templates/ipam/vlan_edit.html:30 +#: tenancy/forms/filtersets.py:87 users/forms/model_forms.py:314 msgid "Assignment" msgstr "Ödev" -#: netbox/circuits/forms/filtersets.py:265 -#: netbox/circuits/forms/model_forms.py:195 -#: netbox/circuits/tables/circuits.py:155 netbox/dcim/forms/bulk_edit.py:117 -#: netbox/dcim/forms/bulk_import.py:100 netbox/dcim/forms/model_forms.py:117 -#: netbox/dcim/tables/sites.py:89 netbox/extras/forms/filtersets.py:480 -#: netbox/ipam/filtersets.py:999 netbox/ipam/forms/bulk_edit.py:538 -#: netbox/ipam/forms/bulk_import.py:436 netbox/ipam/forms/model_forms.py:528 -#: netbox/ipam/tables/fhrp.py:67 netbox/ipam/tables/vlans.py:122 -#: netbox/ipam/tables/vlans.py:226 -#: netbox/templates/circuits/circuitgroupassignment.html:22 -#: netbox/templates/dcim/interface.html:284 netbox/templates/dcim/site.html:37 -#: netbox/templates/ipam/inc/panels/fhrp_groups.html:23 -#: netbox/templates/ipam/vlan.html:27 netbox/templates/tenancy/contact.html:21 -#: netbox/templates/tenancy/tenant.html:20 netbox/templates/users/group.html:6 -#: netbox/templates/users/group.html:14 -#: netbox/templates/virtualization/cluster.html:29 -#: netbox/templates/vpn/tunnel.html:29 -#: netbox/templates/wireless/wirelesslan.html:18 -#: netbox/tenancy/forms/bulk_edit.py:43 netbox/tenancy/forms/bulk_edit.py:94 -#: netbox/tenancy/forms/bulk_import.py:40 -#: netbox/tenancy/forms/bulk_import.py:81 -#: netbox/tenancy/forms/filtersets.py:48 netbox/tenancy/forms/filtersets.py:78 -#: netbox/tenancy/forms/filtersets.py:97 -#: netbox/tenancy/forms/model_forms.py:45 -#: netbox/tenancy/forms/model_forms.py:97 -#: netbox/tenancy/forms/model_forms.py:122 -#: netbox/tenancy/tables/contacts.py:60 netbox/tenancy/tables/contacts.py:107 -#: netbox/tenancy/tables/tenants.py:42 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 -#: netbox/virtualization/forms/bulk_edit.py:65 -#: netbox/virtualization/forms/bulk_import.py:47 -#: netbox/virtualization/forms/filtersets.py:85 -#: netbox/virtualization/forms/model_forms.py:66 -#: netbox/virtualization/tables/clusters.py:70 -#: netbox/vpn/forms/bulk_edit.py:112 netbox/vpn/forms/bulk_import.py:158 -#: netbox/vpn/forms/filtersets.py:116 netbox/vpn/tables/crypto.py:31 -#: netbox/vpn/tables/tunnels.py:44 netbox/wireless/forms/bulk_edit.py:48 -#: netbox/wireless/forms/bulk_import.py:36 -#: netbox/wireless/forms/filtersets.py:46 -#: netbox/wireless/forms/model_forms.py:40 -#: netbox/wireless/tables/wirelesslan.py:48 +#: circuits/forms/filtersets.py:265 circuits/forms/model_forms.py:195 +#: circuits/tables/circuits.py:155 dcim/forms/bulk_edit.py:117 +#: dcim/forms/bulk_import.py:100 dcim/forms/model_forms.py:117 +#: dcim/tables/sites.py:89 extras/forms/filtersets.py:480 +#: ipam/filtersets.py:999 ipam/forms/bulk_edit.py:493 +#: ipam/forms/bulk_import.py:436 ipam/forms/model_forms.py:528 +#: ipam/tables/fhrp.py:67 ipam/tables/vlans.py:122 ipam/tables/vlans.py:226 +#: templates/circuits/circuitgroupassignment.html:22 +#: templates/dcim/interface.html:284 templates/dcim/site.html:37 +#: templates/ipam/inc/panels/fhrp_groups.html:23 templates/ipam/vlan.html:27 +#: templates/tenancy/contact.html:21 templates/tenancy/tenant.html:20 +#: templates/users/group.html:6 templates/users/group.html:14 +#: templates/virtualization/cluster.html:29 templates/vpn/tunnel.html:29 +#: templates/wireless/wirelesslan.html:18 tenancy/forms/bulk_edit.py:43 +#: tenancy/forms/bulk_edit.py:94 tenancy/forms/bulk_import.py:40 +#: tenancy/forms/bulk_import.py:81 tenancy/forms/filtersets.py:48 +#: tenancy/forms/filtersets.py:78 tenancy/forms/filtersets.py:97 +#: tenancy/forms/model_forms.py:45 tenancy/forms/model_forms.py:97 +#: tenancy/forms/model_forms.py:122 tenancy/tables/contacts.py:60 +#: tenancy/tables/contacts.py:107 tenancy/tables/tenants.py:42 +#: users/filtersets.py:62 users/filtersets.py:185 users/forms/filtersets.py:31 +#: users/forms/filtersets.py:37 users/forms/filtersets.py:79 +#: virtualization/forms/bulk_edit.py:65 virtualization/forms/bulk_import.py:47 +#: virtualization/forms/filtersets.py:85 +#: virtualization/forms/model_forms.py:66 virtualization/tables/clusters.py:70 +#: vpn/forms/bulk_edit.py:112 vpn/forms/bulk_import.py:158 +#: vpn/forms/filtersets.py:116 vpn/tables/crypto.py:31 +#: vpn/tables/tunnels.py:44 wireless/forms/bulk_edit.py:48 +#: wireless/forms/bulk_import.py:36 wireless/forms/filtersets.py:46 +#: wireless/forms/model_forms.py:40 wireless/tables/wirelesslan.py:48 msgid "Group" msgstr "Grup" -#: netbox/circuits/forms/model_forms.py:182 -#: netbox/templates/circuits/circuitgroup.html:25 +#: circuits/forms/model_forms.py:182 templates/circuits/circuitgroup.html:25 msgid "Circuit Group" msgstr "Devre Grubu" -#: netbox/circuits/models/circuits.py:27 netbox/dcim/models/cables.py:67 -#: netbox/dcim/models/device_component_templates.py:517 -#: netbox/dcim/models/device_component_templates.py:617 -#: netbox/dcim/models/device_components.py:975 -#: netbox/dcim/models/device_components.py:1049 -#: netbox/dcim/models/device_components.py:1204 -#: netbox/dcim/models/devices.py:479 netbox/dcim/models/racks.py:224 -#: netbox/extras/models/tags.py:28 +#: circuits/models/circuits.py:27 dcim/models/cables.py:67 +#: dcim/models/device_component_templates.py:517 +#: dcim/models/device_component_templates.py:617 +#: dcim/models/device_components.py:975 dcim/models/device_components.py:1049 +#: dcim/models/device_components.py:1204 dcim/models/devices.py:479 +#: dcim/models/racks.py:224 extras/models/tags.py:28 msgid "color" msgstr "renk" -#: netbox/circuits/models/circuits.py:36 +#: circuits/models/circuits.py:36 msgid "circuit type" msgstr "devre tipi" -#: netbox/circuits/models/circuits.py:37 +#: circuits/models/circuits.py:37 msgid "circuit types" msgstr "devre türleri" -#: netbox/circuits/models/circuits.py:48 +#: circuits/models/circuits.py:48 msgid "circuit ID" msgstr "devre ID" -#: netbox/circuits/models/circuits.py:49 +#: circuits/models/circuits.py:49 msgid "Unique circuit ID" msgstr "Benzersiz devre ID" -#: netbox/circuits/models/circuits.py:69 netbox/core/models/data.py:52 -#: netbox/core/models/jobs.py:84 netbox/dcim/models/cables.py:49 -#: netbox/dcim/models/devices.py:653 netbox/dcim/models/devices.py:1173 -#: netbox/dcim/models/devices.py:1399 netbox/dcim/models/power.py:96 -#: netbox/dcim/models/racks.py:297 netbox/dcim/models/sites.py:154 -#: netbox/dcim/models/sites.py:266 netbox/ipam/models/ip.py:253 -#: netbox/ipam/models/ip.py:522 netbox/ipam/models/ip.py:730 -#: netbox/ipam/models/vlans.py:195 netbox/virtualization/models/clusters.py:74 -#: netbox/virtualization/models/virtualmachines.py:84 -#: netbox/vpn/models/tunnels.py:40 netbox/wireless/models.py:95 -#: netbox/wireless/models.py:159 +#: circuits/models/circuits.py:69 core/models/data.py:52 +#: core/models/jobs.py:84 dcim/models/cables.py:49 dcim/models/devices.py:653 +#: dcim/models/devices.py:1173 dcim/models/devices.py:1399 +#: dcim/models/power.py:96 dcim/models/racks.py:297 dcim/models/sites.py:154 +#: dcim/models/sites.py:266 ipam/models/ip.py:253 ipam/models/ip.py:522 +#: ipam/models/ip.py:730 ipam/models/vlans.py:195 +#: virtualization/models/clusters.py:74 +#: virtualization/models/virtualmachines.py:84 vpn/models/tunnels.py:40 +#: wireless/models.py:95 wireless/models.py:159 msgid "status" msgstr "durum" -#: netbox/circuits/models/circuits.py:84 netbox/templates/core/plugin.html:19 +#: circuits/models/circuits.py:84 templates/core/plugin.html:20 msgid "installed" msgstr "kurulmuş" -#: netbox/circuits/models/circuits.py:89 +#: circuits/models/circuits.py:89 msgid "terminates" msgstr "sonlandırır" -#: netbox/circuits/models/circuits.py:94 +#: circuits/models/circuits.py:94 msgid "commit rate (Kbps)" msgstr "taahhüt oranı (Kbps)" -#: netbox/circuits/models/circuits.py:95 +#: circuits/models/circuits.py:95 msgid "Committed rate" msgstr "Taahhüt oranı" -#: netbox/circuits/models/circuits.py:137 +#: circuits/models/circuits.py:137 msgid "circuit" msgstr "devre" -#: netbox/circuits/models/circuits.py:138 +#: circuits/models/circuits.py:138 msgid "circuits" msgstr "devreler" -#: netbox/circuits/models/circuits.py:170 +#: circuits/models/circuits.py:170 msgid "circuit group" msgstr "devre grubu" -#: netbox/circuits/models/circuits.py:171 +#: circuits/models/circuits.py:171 msgid "circuit groups" msgstr "devre grupları" -#: netbox/circuits/models/circuits.py:195 netbox/ipam/models/fhrp.py:93 -#: netbox/tenancy/models/contacts.py:134 +#: circuits/models/circuits.py:195 ipam/models/fhrp.py:93 +#: tenancy/models/contacts.py:134 msgid "priority" msgstr "öncelik" -#: netbox/circuits/models/circuits.py:213 +#: circuits/models/circuits.py:213 msgid "Circuit group assignment" msgstr "Devre grubu ataması" -#: netbox/circuits/models/circuits.py:214 +#: circuits/models/circuits.py:214 msgid "Circuit group assignments" msgstr "Devre grubu atamaları" -#: netbox/circuits/models/circuits.py:240 +#: circuits/models/circuits.py:240 msgid "termination" msgstr "sonlandırma" -#: netbox/circuits/models/circuits.py:257 +#: circuits/models/circuits.py:257 msgid "port speed (Kbps)" msgstr "bağlantı noktası hızı (Kbps)" -#: netbox/circuits/models/circuits.py:260 +#: circuits/models/circuits.py:260 msgid "Physical circuit speed" msgstr "Fiziksel devre hızı" -#: netbox/circuits/models/circuits.py:265 +#: circuits/models/circuits.py:265 msgid "upstream speed (Kbps)" msgstr "yukarı akış hızı (Kbps)" -#: netbox/circuits/models/circuits.py:266 +#: circuits/models/circuits.py:266 msgid "Upstream speed, if different from port speed" msgstr "Bağlantı noktası hızından farklıysa yukarı akış hızı" -#: netbox/circuits/models/circuits.py:271 +#: circuits/models/circuits.py:271 msgid "cross-connect ID" msgstr "çapraz bağlantı kimliği" -#: netbox/circuits/models/circuits.py:272 +#: circuits/models/circuits.py:272 msgid "ID of the local cross-connect" msgstr "Yerel çapraz bağlantının kimliği" -#: netbox/circuits/models/circuits.py:277 +#: circuits/models/circuits.py:277 msgid "patch panel/port(s)" msgstr "bağlantı paneli/port(lar)" -#: netbox/circuits/models/circuits.py:278 +#: circuits/models/circuits.py:278 msgid "Patch panel ID and port number(s)" msgstr "Bağlantı paneli ID ve port numaraları" -#: netbox/circuits/models/circuits.py:281 -#: netbox/dcim/models/device_component_templates.py:61 -#: netbox/dcim/models/device_components.py:68 netbox/dcim/models/racks.py:685 -#: netbox/extras/models/configs.py:45 netbox/extras/models/configs.py:219 -#: netbox/extras/models/customfields.py:125 netbox/extras/models/models.py:61 -#: netbox/extras/models/models.py:158 netbox/extras/models/models.py:396 -#: netbox/extras/models/models.py:511 -#: netbox/extras/models/notifications.py:131 -#: netbox/extras/models/staging.py:31 netbox/extras/models/tags.py:32 -#: netbox/netbox/models/__init__.py:110 netbox/netbox/models/__init__.py:145 -#: netbox/netbox/models/__init__.py:191 netbox/users/models/permissions.py:24 -#: netbox/users/models/tokens.py:57 netbox/users/models/users.py:33 -#: netbox/virtualization/models/virtualmachines.py:289 +#: circuits/models/circuits.py:281 +#: dcim/models/device_component_templates.py:61 +#: dcim/models/device_components.py:68 dcim/models/racks.py:685 +#: extras/models/configs.py:45 extras/models/configs.py:219 +#: extras/models/customfields.py:125 extras/models/models.py:61 +#: extras/models/models.py:158 extras/models/models.py:396 +#: extras/models/models.py:511 extras/models/notifications.py:131 +#: extras/models/staging.py:31 extras/models/tags.py:32 +#: netbox/models/__init__.py:110 netbox/models/__init__.py:145 +#: netbox/models/__init__.py:191 users/models/permissions.py:24 +#: users/models/tokens.py:57 users/models/users.py:33 +#: virtualization/models/virtualmachines.py:289 msgid "description" msgstr "açıklama" -#: netbox/circuits/models/circuits.py:294 +#: circuits/models/circuits.py:294 msgid "circuit termination" msgstr "devre sonlandırma" -#: netbox/circuits/models/circuits.py:295 +#: circuits/models/circuits.py:295 msgid "circuit terminations" msgstr "devre sonlandırmaları" -#: netbox/circuits/models/circuits.py:308 +#: circuits/models/circuits.py:308 msgid "" "A circuit termination must attach to either a site or a provider network." msgstr "" "Bir devre sonlandırma, bir siteye veya bir sağlayıcı ağına bağlanmalıdır." -#: netbox/circuits/models/circuits.py:310 +#: circuits/models/circuits.py:310 msgid "" "A circuit termination cannot attach to both a site and a provider network." msgstr "Devre sonlandırma hem siteye hem de sağlayıcı ağına bağlanamaz." -#: netbox/circuits/models/providers.py:22 -#: netbox/circuits/models/providers.py:66 -#: netbox/circuits/models/providers.py:104 netbox/core/models/data.py:39 -#: netbox/core/models/jobs.py:45 -#: netbox/dcim/models/device_component_templates.py:43 -#: netbox/dcim/models/device_components.py:53 -#: netbox/dcim/models/devices.py:593 netbox/dcim/models/devices.py:1330 -#: netbox/dcim/models/devices.py:1395 netbox/dcim/models/power.py:39 -#: netbox/dcim/models/power.py:92 netbox/dcim/models/racks.py:262 -#: netbox/dcim/models/sites.py:138 netbox/extras/models/configs.py:36 -#: netbox/extras/models/configs.py:215 netbox/extras/models/customfields.py:92 -#: netbox/extras/models/models.py:56 netbox/extras/models/models.py:153 -#: netbox/extras/models/models.py:296 netbox/extras/models/models.py:392 -#: netbox/extras/models/models.py:501 netbox/extras/models/models.py:596 -#: netbox/extras/models/notifications.py:126 -#: netbox/extras/models/scripts.py:30 netbox/extras/models/staging.py:26 -#: netbox/ipam/models/asns.py:18 netbox/ipam/models/fhrp.py:25 -#: netbox/ipam/models/services.py:52 netbox/ipam/models/services.py:88 -#: netbox/ipam/models/vlans.py:36 netbox/ipam/models/vlans.py:184 -#: netbox/ipam/models/vrfs.py:22 netbox/ipam/models/vrfs.py:79 -#: netbox/netbox/models/__init__.py:137 netbox/netbox/models/__init__.py:181 -#: netbox/tenancy/models/contacts.py:64 netbox/tenancy/models/tenants.py:20 -#: netbox/tenancy/models/tenants.py:45 netbox/users/models/permissions.py:20 -#: netbox/users/models/users.py:28 netbox/virtualization/models/clusters.py:57 -#: netbox/virtualization/models/virtualmachines.py:72 -#: netbox/virtualization/models/virtualmachines.py:279 -#: netbox/vpn/models/crypto.py:24 netbox/vpn/models/crypto.py:71 -#: netbox/vpn/models/crypto.py:131 netbox/vpn/models/crypto.py:183 -#: netbox/vpn/models/crypto.py:221 netbox/vpn/models/l2vpn.py:22 -#: netbox/vpn/models/tunnels.py:35 netbox/wireless/models.py:51 +#: circuits/models/providers.py:22 circuits/models/providers.py:66 +#: circuits/models/providers.py:104 core/models/data.py:39 +#: core/models/jobs.py:45 dcim/models/device_component_templates.py:43 +#: dcim/models/device_components.py:53 dcim/models/devices.py:593 +#: dcim/models/devices.py:1330 dcim/models/devices.py:1395 +#: dcim/models/power.py:39 dcim/models/power.py:92 dcim/models/racks.py:262 +#: dcim/models/sites.py:138 extras/models/configs.py:36 +#: extras/models/configs.py:215 extras/models/customfields.py:92 +#: extras/models/models.py:56 extras/models/models.py:153 +#: extras/models/models.py:296 extras/models/models.py:392 +#: extras/models/models.py:501 extras/models/models.py:596 +#: extras/models/notifications.py:126 extras/models/scripts.py:30 +#: extras/models/staging.py:26 ipam/models/asns.py:18 ipam/models/fhrp.py:25 +#: ipam/models/services.py:52 ipam/models/services.py:88 +#: ipam/models/vlans.py:36 ipam/models/vlans.py:184 ipam/models/vrfs.py:22 +#: ipam/models/vrfs.py:79 netbox/models/__init__.py:137 +#: netbox/models/__init__.py:181 tenancy/models/contacts.py:64 +#: tenancy/models/tenants.py:20 tenancy/models/tenants.py:45 +#: users/models/permissions.py:20 users/models/users.py:28 +#: virtualization/models/clusters.py:57 +#: virtualization/models/virtualmachines.py:72 +#: virtualization/models/virtualmachines.py:279 vpn/models/crypto.py:24 +#: vpn/models/crypto.py:71 vpn/models/crypto.py:131 vpn/models/crypto.py:183 +#: vpn/models/crypto.py:221 vpn/models/l2vpn.py:22 vpn/models/tunnels.py:35 +#: wireless/models.py:51 msgid "name" msgstr "ad" -#: netbox/circuits/models/providers.py:25 +#: circuits/models/providers.py:25 msgid "Full name of the provider" msgstr "Sağlayıcının tam adı" -#: netbox/circuits/models/providers.py:28 netbox/dcim/models/devices.py:86 -#: netbox/dcim/models/racks.py:137 netbox/dcim/models/sites.py:149 -#: netbox/extras/models/models.py:506 netbox/ipam/models/asns.py:23 -#: netbox/ipam/models/vlans.py:40 netbox/netbox/models/__init__.py:141 -#: netbox/netbox/models/__init__.py:186 netbox/tenancy/models/tenants.py:25 -#: netbox/tenancy/models/tenants.py:49 netbox/vpn/models/l2vpn.py:27 -#: netbox/wireless/models.py:56 +#: circuits/models/providers.py:28 dcim/models/devices.py:86 +#: dcim/models/racks.py:137 dcim/models/sites.py:149 +#: extras/models/models.py:506 ipam/models/asns.py:23 ipam/models/vlans.py:40 +#: netbox/models/__init__.py:141 netbox/models/__init__.py:186 +#: tenancy/models/tenants.py:25 tenancy/models/tenants.py:49 +#: vpn/models/l2vpn.py:27 wireless/models.py:56 msgid "slug" msgstr "kısa ad" -#: netbox/circuits/models/providers.py:42 +#: circuits/models/providers.py:42 msgid "provider" msgstr "sağlayıcı" -#: netbox/circuits/models/providers.py:43 +#: circuits/models/providers.py:43 msgid "providers" msgstr "sağlayıcılar" -#: netbox/circuits/models/providers.py:63 +#: circuits/models/providers.py:63 msgid "account ID" msgstr "hesap kimliği" -#: netbox/circuits/models/providers.py:86 +#: circuits/models/providers.py:86 msgid "provider account" msgstr "sağlayıcı hesabı" -#: netbox/circuits/models/providers.py:87 +#: circuits/models/providers.py:87 msgid "provider accounts" msgstr "sağlayıcı hesapları" -#: netbox/circuits/models/providers.py:115 +#: circuits/models/providers.py:115 msgid "service ID" msgstr "servis kimliği" -#: netbox/circuits/models/providers.py:126 +#: circuits/models/providers.py:126 msgid "provider network" msgstr "sağlayıcı ağı" -#: netbox/circuits/models/providers.py:127 +#: circuits/models/providers.py:127 msgid "provider networks" msgstr "sağlayıcı ağları" -#: netbox/circuits/tables/circuits.py:32 -#: netbox/circuits/tables/circuits.py:132 -#: netbox/circuits/tables/providers.py:18 -#: netbox/circuits/tables/providers.py:69 -#: netbox/circuits/tables/providers.py:99 netbox/core/tables/data.py:16 -#: netbox/core/tables/jobs.py:14 netbox/core/tables/plugins.py:44 -#: netbox/core/tables/tasks.py:11 netbox/core/tables/tasks.py:115 -#: netbox/dcim/forms/filtersets.py:63 netbox/dcim/forms/object_create.py:43 -#: netbox/dcim/tables/devices.py:52 netbox/dcim/tables/devices.py:92 -#: netbox/dcim/tables/devices.py:134 netbox/dcim/tables/devices.py:289 -#: netbox/dcim/tables/devices.py:392 netbox/dcim/tables/devices.py:433 -#: netbox/dcim/tables/devices.py:482 netbox/dcim/tables/devices.py:531 -#: netbox/dcim/tables/devices.py:648 netbox/dcim/tables/devices.py:731 -#: netbox/dcim/tables/devices.py:778 netbox/dcim/tables/devices.py:841 -#: netbox/dcim/tables/devices.py:911 netbox/dcim/tables/devices.py:974 -#: netbox/dcim/tables/devices.py:994 netbox/dcim/tables/devices.py:1023 -#: netbox/dcim/tables/devices.py:1053 netbox/dcim/tables/devicetypes.py:31 -#: netbox/dcim/tables/power.py:22 netbox/dcim/tables/power.py:62 -#: netbox/dcim/tables/racks.py:24 netbox/dcim/tables/racks.py:113 -#: netbox/dcim/tables/sites.py:24 netbox/dcim/tables/sites.py:51 -#: netbox/dcim/tables/sites.py:78 netbox/dcim/tables/sites.py:130 -#: netbox/extras/forms/filtersets.py:213 netbox/extras/tables/tables.py:58 -#: netbox/extras/tables/tables.py:122 netbox/extras/tables/tables.py:155 -#: netbox/extras/tables/tables.py:180 netbox/extras/tables/tables.py:246 -#: netbox/extras/tables/tables.py:361 netbox/extras/tables/tables.py:378 -#: netbox/extras/tables/tables.py:401 netbox/extras/tables/tables.py:439 -#: netbox/extras/tables/tables.py:491 netbox/extras/tables/tables.py:514 -#: netbox/ipam/forms/bulk_edit.py:406 netbox/ipam/forms/filtersets.py:386 -#: netbox/ipam/tables/asn.py:16 netbox/ipam/tables/ip.py:85 -#: netbox/ipam/tables/ip.py:160 netbox/ipam/tables/services.py:15 -#: netbox/ipam/tables/services.py:40 netbox/ipam/tables/vlans.py:64 -#: netbox/ipam/tables/vlans.py:114 netbox/ipam/tables/vrfs.py:26 -#: netbox/ipam/tables/vrfs.py:68 -#: netbox/templates/circuits/circuitgroup.html:28 -#: netbox/templates/circuits/circuittype.html:22 -#: netbox/templates/circuits/provideraccount.html:28 -#: netbox/templates/circuits/providernetwork.html:24 -#: netbox/templates/core/datasource.html:34 netbox/templates/core/job.html:44 -#: netbox/templates/core/plugin.html:53 -#: netbox/templates/core/rq_worker.html:43 -#: netbox/templates/dcim/consoleport.html:28 -#: netbox/templates/dcim/consoleserverport.html:28 -#: netbox/templates/dcim/devicebay.html:24 -#: netbox/templates/dcim/devicerole.html:26 -#: netbox/templates/dcim/frontport.html:28 -#: netbox/templates/dcim/inc/interface_vlans_table.html:5 -#: netbox/templates/dcim/inc/panels/inventory_items.html:18 -#: netbox/templates/dcim/interface.html:38 -#: netbox/templates/dcim/interface.html:165 -#: netbox/templates/dcim/inventoryitem.html:28 -#: netbox/templates/dcim/inventoryitemrole.html:18 -#: netbox/templates/dcim/location.html:29 -#: netbox/templates/dcim/manufacturer.html:36 -#: netbox/templates/dcim/modulebay.html:30 -#: netbox/templates/dcim/platform.html:29 -#: netbox/templates/dcim/poweroutlet.html:28 -#: netbox/templates/dcim/powerport.html:28 -#: netbox/templates/dcim/rackrole.html:22 -#: netbox/templates/dcim/rearport.html:28 netbox/templates/dcim/region.html:29 -#: netbox/templates/dcim/sitegroup.html:29 -#: netbox/templates/dcim/virtualdevicecontext.html:18 -#: netbox/templates/extras/configcontext.html:13 -#: netbox/templates/extras/configtemplate.html:13 -#: netbox/templates/extras/customfield.html:13 -#: netbox/templates/extras/customlink.html:13 -#: netbox/templates/extras/eventrule.html:13 -#: netbox/templates/extras/exporttemplate.html:15 -#: netbox/templates/extras/notificationgroup.html:14 -#: netbox/templates/extras/savedfilter.html:13 -#: netbox/templates/extras/script_list.html:44 -#: netbox/templates/extras/tag.html:14 netbox/templates/extras/webhook.html:13 -#: netbox/templates/ipam/asnrange.html:15 -#: netbox/templates/ipam/fhrpgroup.html:30 netbox/templates/ipam/rir.html:22 -#: netbox/templates/ipam/role.html:22 -#: netbox/templates/ipam/routetarget.html:13 -#: netbox/templates/ipam/service.html:24 -#: netbox/templates/ipam/servicetemplate.html:15 -#: netbox/templates/ipam/vlan.html:35 netbox/templates/ipam/vlangroup.html:30 -#: netbox/templates/tenancy/contact.html:25 -#: netbox/templates/tenancy/contactgroup.html:21 -#: netbox/templates/tenancy/contactrole.html:18 -#: netbox/templates/tenancy/tenantgroup.html:29 -#: netbox/templates/users/group.html:17 -#: netbox/templates/users/objectpermission.html:17 -#: netbox/templates/virtualization/cluster.html:13 -#: netbox/templates/virtualization/clustergroup.html:22 -#: netbox/templates/virtualization/clustertype.html:22 -#: netbox/templates/virtualization/virtualdisk.html:25 -#: netbox/templates/virtualization/virtualmachine.html:15 -#: netbox/templates/virtualization/vminterface.html:25 -#: netbox/templates/vpn/ikepolicy.html:13 -#: netbox/templates/vpn/ikeproposal.html:13 -#: netbox/templates/vpn/ipsecpolicy.html:13 -#: netbox/templates/vpn/ipsecprofile.html:13 -#: netbox/templates/vpn/ipsecprofile.html:36 -#: netbox/templates/vpn/ipsecprofile.html:69 -#: netbox/templates/vpn/ipsecproposal.html:13 -#: netbox/templates/vpn/l2vpn.html:14 netbox/templates/vpn/tunnel.html:21 -#: netbox/templates/vpn/tunnelgroup.html:26 -#: netbox/templates/wireless/wirelesslangroup.html:29 -#: netbox/tenancy/tables/contacts.py:19 netbox/tenancy/tables/contacts.py:41 -#: netbox/tenancy/tables/contacts.py:56 netbox/tenancy/tables/tenants.py:16 -#: netbox/tenancy/tables/tenants.py:38 netbox/users/tables.py:62 -#: netbox/users/tables.py:76 netbox/virtualization/forms/bulk_create.py:20 -#: netbox/virtualization/forms/object_create.py:13 -#: netbox/virtualization/forms/object_create.py:23 -#: netbox/virtualization/tables/clusters.py:17 -#: netbox/virtualization/tables/clusters.py:39 -#: netbox/virtualization/tables/clusters.py:62 -#: netbox/virtualization/tables/virtualmachines.py:55 -#: netbox/virtualization/tables/virtualmachines.py:139 -#: netbox/virtualization/tables/virtualmachines.py:194 -#: netbox/vpn/tables/crypto.py:18 netbox/vpn/tables/crypto.py:57 -#: netbox/vpn/tables/crypto.py:93 netbox/vpn/tables/crypto.py:129 -#: netbox/vpn/tables/crypto.py:158 netbox/vpn/tables/l2vpn.py:23 -#: netbox/vpn/tables/tunnels.py:18 netbox/vpn/tables/tunnels.py:40 -#: netbox/wireless/tables/wirelesslan.py:18 -#: netbox/wireless/tables/wirelesslan.py:79 +#: circuits/tables/circuits.py:32 circuits/tables/circuits.py:132 +#: circuits/tables/providers.py:18 circuits/tables/providers.py:69 +#: circuits/tables/providers.py:99 core/tables/data.py:16 +#: core/tables/jobs.py:14 core/tables/plugins.py:44 core/tables/tasks.py:11 +#: core/tables/tasks.py:115 dcim/forms/filtersets.py:63 +#: dcim/forms/object_create.py:43 dcim/tables/devices.py:52 +#: dcim/tables/devices.py:92 dcim/tables/devices.py:134 +#: dcim/tables/devices.py:289 dcim/tables/devices.py:392 +#: dcim/tables/devices.py:433 dcim/tables/devices.py:482 +#: dcim/tables/devices.py:531 dcim/tables/devices.py:648 +#: dcim/tables/devices.py:731 dcim/tables/devices.py:778 +#: dcim/tables/devices.py:841 dcim/tables/devices.py:911 +#: dcim/tables/devices.py:974 dcim/tables/devices.py:994 +#: dcim/tables/devices.py:1023 dcim/tables/devices.py:1053 +#: dcim/tables/devicetypes.py:31 dcim/tables/power.py:22 +#: dcim/tables/power.py:62 dcim/tables/racks.py:24 dcim/tables/racks.py:113 +#: dcim/tables/sites.py:24 dcim/tables/sites.py:51 dcim/tables/sites.py:78 +#: dcim/tables/sites.py:130 extras/forms/filtersets.py:213 +#: extras/tables/tables.py:58 extras/tables/tables.py:122 +#: extras/tables/tables.py:155 extras/tables/tables.py:180 +#: extras/tables/tables.py:246 extras/tables/tables.py:361 +#: extras/tables/tables.py:378 extras/tables/tables.py:401 +#: extras/tables/tables.py:439 extras/tables/tables.py:491 +#: extras/tables/tables.py:514 ipam/forms/bulk_edit.py:407 +#: ipam/forms/filtersets.py:386 ipam/tables/asn.py:16 ipam/tables/ip.py:85 +#: ipam/tables/ip.py:160 ipam/tables/services.py:15 ipam/tables/services.py:40 +#: ipam/tables/vlans.py:64 ipam/tables/vlans.py:114 ipam/tables/vrfs.py:26 +#: ipam/tables/vrfs.py:68 templates/circuits/circuitgroup.html:28 +#: templates/circuits/circuittype.html:22 +#: templates/circuits/provideraccount.html:28 +#: templates/circuits/providernetwork.html:24 +#: templates/core/datasource.html:34 templates/core/job.html:44 +#: templates/core/plugin.html:54 templates/core/rq_worker.html:43 +#: templates/dcim/consoleport.html:28 templates/dcim/consoleserverport.html:28 +#: templates/dcim/devicebay.html:24 templates/dcim/devicerole.html:26 +#: templates/dcim/frontport.html:28 +#: templates/dcim/inc/interface_vlans_table.html:5 +#: templates/dcim/inc/panels/inventory_items.html:18 +#: templates/dcim/interface.html:38 templates/dcim/interface.html:165 +#: templates/dcim/inventoryitem.html:28 +#: templates/dcim/inventoryitemrole.html:18 templates/dcim/location.html:29 +#: templates/dcim/manufacturer.html:36 templates/dcim/modulebay.html:30 +#: templates/dcim/platform.html:29 templates/dcim/poweroutlet.html:28 +#: templates/dcim/powerport.html:28 templates/dcim/rackrole.html:22 +#: templates/dcim/rearport.html:28 templates/dcim/region.html:29 +#: templates/dcim/sitegroup.html:29 +#: templates/dcim/virtualdevicecontext.html:18 +#: templates/extras/configcontext.html:13 +#: templates/extras/configtemplate.html:13 +#: templates/extras/customfield.html:13 templates/extras/customlink.html:13 +#: templates/extras/eventrule.html:13 templates/extras/exporttemplate.html:15 +#: templates/extras/notificationgroup.html:14 +#: templates/extras/savedfilter.html:13 templates/extras/script_list.html:44 +#: templates/extras/tag.html:14 templates/extras/webhook.html:13 +#: templates/ipam/asnrange.html:15 templates/ipam/fhrpgroup.html:30 +#: templates/ipam/rir.html:22 templates/ipam/role.html:22 +#: templates/ipam/routetarget.html:13 templates/ipam/service.html:24 +#: templates/ipam/servicetemplate.html:15 templates/ipam/vlan.html:35 +#: templates/ipam/vlangroup.html:30 templates/tenancy/contact.html:25 +#: templates/tenancy/contactgroup.html:21 +#: templates/tenancy/contactrole.html:18 templates/tenancy/tenantgroup.html:29 +#: templates/users/group.html:17 templates/users/objectpermission.html:17 +#: templates/virtualization/cluster.html:13 +#: templates/virtualization/clustergroup.html:22 +#: templates/virtualization/clustertype.html:22 +#: templates/virtualization/virtualdisk.html:25 +#: templates/virtualization/virtualmachine.html:15 +#: templates/virtualization/vminterface.html:25 +#: templates/vpn/ikepolicy.html:13 templates/vpn/ikeproposal.html:13 +#: templates/vpn/ipsecpolicy.html:13 templates/vpn/ipsecprofile.html:13 +#: templates/vpn/ipsecprofile.html:36 templates/vpn/ipsecprofile.html:69 +#: templates/vpn/ipsecproposal.html:13 templates/vpn/l2vpn.html:14 +#: templates/vpn/tunnel.html:21 templates/vpn/tunnelgroup.html:26 +#: templates/wireless/wirelesslangroup.html:29 tenancy/tables/contacts.py:19 +#: tenancy/tables/contacts.py:41 tenancy/tables/contacts.py:56 +#: tenancy/tables/tenants.py:16 tenancy/tables/tenants.py:38 +#: users/tables.py:62 users/tables.py:76 +#: virtualization/forms/bulk_create.py:20 +#: virtualization/forms/object_create.py:13 +#: virtualization/forms/object_create.py:23 +#: virtualization/tables/clusters.py:17 virtualization/tables/clusters.py:39 +#: virtualization/tables/clusters.py:62 +#: virtualization/tables/virtualmachines.py:55 +#: virtualization/tables/virtualmachines.py:139 +#: virtualization/tables/virtualmachines.py:194 vpn/tables/crypto.py:18 +#: vpn/tables/crypto.py:57 vpn/tables/crypto.py:93 vpn/tables/crypto.py:129 +#: vpn/tables/crypto.py:158 vpn/tables/l2vpn.py:23 vpn/tables/tunnels.py:18 +#: vpn/tables/tunnels.py:40 wireless/tables/wirelesslan.py:18 +#: wireless/tables/wirelesslan.py:79 msgid "Name" msgstr "İsim" -#: netbox/circuits/tables/circuits.py:41 -#: netbox/circuits/tables/circuits.py:138 -#: netbox/circuits/tables/providers.py:45 -#: netbox/circuits/tables/providers.py:79 netbox/netbox/navigation/menu.py:266 -#: netbox/netbox/navigation/menu.py:270 netbox/netbox/navigation/menu.py:272 -#: netbox/templates/circuits/provider.html:57 -#: netbox/templates/circuits/provideraccount.html:44 -#: netbox/templates/circuits/providernetwork.html:50 +#: circuits/tables/circuits.py:41 circuits/tables/circuits.py:138 +#: circuits/tables/providers.py:45 circuits/tables/providers.py:79 +#: netbox/navigation/menu.py:266 netbox/navigation/menu.py:270 +#: netbox/navigation/menu.py:272 templates/circuits/provider.html:57 +#: templates/circuits/provideraccount.html:44 +#: templates/circuits/providernetwork.html:50 msgid "Circuits" msgstr "Devreler" -#: netbox/circuits/tables/circuits.py:55 -#: netbox/templates/circuits/circuit.html:26 +#: circuits/tables/circuits.py:55 templates/circuits/circuit.html:26 msgid "Circuit ID" msgstr "Devre ID" -#: netbox/circuits/tables/circuits.py:69 -#: netbox/wireless/forms/model_forms.py:160 +#: circuits/tables/circuits.py:69 wireless/forms/model_forms.py:160 msgid "Side A" msgstr "A Tarafı" -#: netbox/circuits/tables/circuits.py:74 +#: circuits/tables/circuits.py:74 msgid "Side Z" msgstr "Z Tarafı" -#: netbox/circuits/tables/circuits.py:77 -#: netbox/templates/circuits/circuit.html:55 +#: circuits/tables/circuits.py:77 templates/circuits/circuit.html:55 msgid "Commit Rate" msgstr "Taahhüt Oranı" -#: netbox/circuits/tables/circuits.py:80 -#: netbox/circuits/tables/providers.py:48 -#: netbox/circuits/tables/providers.py:82 -#: netbox/circuits/tables/providers.py:107 netbox/dcim/tables/devices.py:1036 -#: netbox/dcim/tables/devicetypes.py:92 netbox/dcim/tables/modules.py:29 -#: netbox/dcim/tables/modules.py:72 netbox/dcim/tables/power.py:39 -#: netbox/dcim/tables/power.py:96 netbox/dcim/tables/racks.py:84 -#: netbox/dcim/tables/racks.py:145 netbox/dcim/tables/racks.py:225 -#: netbox/dcim/tables/sites.py:108 netbox/extras/tables/tables.py:582 -#: netbox/ipam/tables/asn.py:69 netbox/ipam/tables/fhrp.py:34 -#: netbox/ipam/tables/ip.py:136 netbox/ipam/tables/ip.py:275 -#: netbox/ipam/tables/ip.py:329 netbox/ipam/tables/ip.py:397 -#: netbox/ipam/tables/services.py:24 netbox/ipam/tables/services.py:54 -#: netbox/ipam/tables/vlans.py:145 netbox/ipam/tables/vrfs.py:47 -#: netbox/ipam/tables/vrfs.py:72 netbox/templates/dcim/htmx/cable_edit.html:89 -#: netbox/templates/generic/bulk_edit.html:86 -#: netbox/templates/inc/panels/comments.html:5 -#: netbox/tenancy/tables/contacts.py:68 netbox/tenancy/tables/tenants.py:46 -#: netbox/utilities/forms/fields/fields.py:29 -#: netbox/virtualization/tables/clusters.py:91 -#: netbox/virtualization/tables/virtualmachines.py:82 -#: netbox/vpn/tables/crypto.py:37 netbox/vpn/tables/crypto.py:74 -#: netbox/vpn/tables/crypto.py:109 netbox/vpn/tables/crypto.py:140 -#: netbox/vpn/tables/crypto.py:173 netbox/vpn/tables/l2vpn.py:37 -#: netbox/vpn/tables/tunnels.py:61 netbox/wireless/tables/wirelesslan.py:27 -#: netbox/wireless/tables/wirelesslan.py:58 +#: circuits/tables/circuits.py:80 circuits/tables/providers.py:48 +#: circuits/tables/providers.py:82 circuits/tables/providers.py:107 +#: dcim/tables/devices.py:1036 dcim/tables/devicetypes.py:92 +#: dcim/tables/modules.py:29 dcim/tables/modules.py:72 dcim/tables/power.py:39 +#: dcim/tables/power.py:96 dcim/tables/racks.py:84 dcim/tables/racks.py:145 +#: dcim/tables/racks.py:225 dcim/tables/sites.py:108 +#: extras/tables/tables.py:582 ipam/tables/asn.py:69 ipam/tables/fhrp.py:34 +#: ipam/tables/ip.py:136 ipam/tables/ip.py:275 ipam/tables/ip.py:329 +#: ipam/tables/ip.py:397 ipam/tables/services.py:24 ipam/tables/services.py:54 +#: ipam/tables/vlans.py:145 ipam/tables/vrfs.py:47 ipam/tables/vrfs.py:72 +#: templates/dcim/htmx/cable_edit.html:89 templates/generic/bulk_edit.html:86 +#: templates/inc/panels/comments.html:5 tenancy/tables/contacts.py:68 +#: tenancy/tables/tenants.py:46 utilities/forms/fields/fields.py:29 +#: virtualization/tables/clusters.py:91 +#: virtualization/tables/virtualmachines.py:82 vpn/tables/crypto.py:37 +#: vpn/tables/crypto.py:74 vpn/tables/crypto.py:109 vpn/tables/crypto.py:140 +#: vpn/tables/crypto.py:173 vpn/tables/l2vpn.py:37 vpn/tables/tunnels.py:61 +#: wireless/tables/wirelesslan.py:27 wireless/tables/wirelesslan.py:58 msgid "Comments" msgstr "Yorumlar" -#: netbox/circuits/tables/circuits.py:86 -#: netbox/templates/tenancy/contact.html:84 -#: netbox/tenancy/tables/contacts.py:73 +#: circuits/tables/circuits.py:86 templates/tenancy/contact.html:84 +#: tenancy/tables/contacts.py:73 msgid "Assignments" msgstr "Ödevler" -#: netbox/circuits/tables/providers.py:23 +#: circuits/tables/providers.py:23 msgid "Accounts" msgstr "Hesaplar" -#: netbox/circuits/tables/providers.py:29 +#: circuits/tables/providers.py:29 msgid "Account Count" msgstr "Hesap Sayısı" -#: netbox/circuits/tables/providers.py:39 netbox/dcim/tables/sites.py:100 +#: circuits/tables/providers.py:39 dcim/tables/sites.py:100 msgid "ASN Count" msgstr "ASN Sayısı" -#: netbox/circuits/views.py:331 +#: circuits/views.py:331 #, python-brace-format msgid "No terminations have been defined for circuit {circuit}." msgstr "Devre için sonlandırma tanımlanmamıştır {circuit}." -#: netbox/circuits/views.py:380 +#: circuits/views.py:380 #, python-brace-format msgid "Swapped terminations for circuit {circuit}." msgstr "Devre için değiştirilmiş sonlandırmalar {circuit}." -#: netbox/core/api/views.py:39 +#: core/api/views.py:39 msgid "This user does not have permission to synchronize this data source." msgstr "Bu kullanıcının bu veri kaynağını senkronize etme izni yoktur." -#: netbox/core/choices.py:18 +#: core/choices.py:18 msgid "New" msgstr "Yeni" -#: netbox/core/choices.py:19 netbox/core/constants.py:18 -#: netbox/core/tables/tasks.py:15 netbox/templates/core/rq_task.html:77 +#: core/choices.py:19 core/constants.py:18 core/tables/tasks.py:15 +#: templates/core/rq_task.html:77 msgid "Queued" msgstr "Kuyruğa alındı" -#: netbox/core/choices.py:20 +#: core/choices.py:20 msgid "Syncing" msgstr "Senkronizasyon" -#: netbox/core/choices.py:21 netbox/core/choices.py:57 -#: netbox/core/tables/jobs.py:41 netbox/templates/core/job.html:86 +#: core/choices.py:21 core/choices.py:57 core/tables/jobs.py:41 +#: templates/core/job.html:86 msgid "Completed" msgstr "Tamamlandı" -#: netbox/core/choices.py:22 netbox/core/choices.py:59 -#: netbox/core/constants.py:20 netbox/core/tables/tasks.py:34 -#: netbox/dcim/choices.py:187 netbox/dcim/choices.py:239 -#: netbox/dcim/choices.py:1607 netbox/virtualization/choices.py:47 +#: core/choices.py:22 core/choices.py:59 core/constants.py:20 +#: core/tables/tasks.py:34 dcim/choices.py:187 dcim/choices.py:239 +#: dcim/choices.py:1607 virtualization/choices.py:47 msgid "Failed" msgstr "Başarısız" -#: netbox/core/choices.py:35 netbox/netbox/navigation/menu.py:335 -#: netbox/netbox/navigation/menu.py:339 -#: netbox/templates/extras/script/base.html:14 -#: netbox/templates/extras/script_list.html:7 -#: netbox/templates/extras/script_list.html:12 -#: netbox/templates/extras/script_result.html:17 +#: core/choices.py:35 netbox/navigation/menu.py:335 +#: netbox/navigation/menu.py:339 templates/extras/script/base.html:14 +#: templates/extras/script_list.html:7 templates/extras/script_list.html:12 +#: templates/extras/script_result.html:17 msgid "Scripts" msgstr "Komut Dosyaları" -#: netbox/core/choices.py:36 netbox/templates/extras/report/base.html:13 +#: core/choices.py:36 templates/extras/report/base.html:13 msgid "Reports" msgstr "Raporlar" -#: netbox/core/choices.py:54 +#: core/choices.py:54 msgid "Pending" msgstr "Beklemede" -#: netbox/core/choices.py:55 netbox/core/constants.py:23 -#: netbox/core/tables/jobs.py:32 netbox/core/tables/tasks.py:38 -#: netbox/templates/core/job.html:73 +#: core/choices.py:55 core/constants.py:23 core/tables/jobs.py:32 +#: core/tables/tasks.py:38 templates/core/job.html:73 msgid "Scheduled" msgstr "Zamanlanmış" -#: netbox/core/choices.py:56 +#: core/choices.py:56 msgid "Running" msgstr "Koşu" -#: netbox/core/choices.py:58 +#: core/choices.py:58 msgid "Errored" msgstr "Hatalı" -#: netbox/core/choices.py:87 netbox/core/tables/plugins.py:63 -#: netbox/templates/generic/object.html:61 +#: core/choices.py:87 core/tables/plugins.py:63 +#: templates/generic/object.html:61 msgid "Updated" msgstr "Güncellendi" -#: netbox/core/choices.py:88 +#: core/choices.py:88 msgid "Deleted" msgstr "Silinmiş" -#: netbox/core/constants.py:19 netbox/core/tables/tasks.py:30 +#: core/constants.py:19 core/tables/tasks.py:30 msgid "Finished" msgstr "Bitmiş" -#: netbox/core/constants.py:21 netbox/core/tables/jobs.py:38 -#: netbox/templates/core/job.html:82 -#: netbox/templates/extras/htmx/script_result.html:8 +#: core/constants.py:21 core/tables/jobs.py:38 templates/core/job.html:82 +#: templates/extras/htmx/script_result.html:8 msgid "Started" msgstr "Başladı" -#: netbox/core/constants.py:22 netbox/core/tables/tasks.py:26 +#: core/constants.py:22 core/tables/tasks.py:26 msgid "Deferred" msgstr "Ertelenmiş" -#: netbox/core/constants.py:24 +#: core/constants.py:24 msgid "Stopped" msgstr "Durduruldu" -#: netbox/core/constants.py:25 +#: core/constants.py:25 msgid "Cancelled" msgstr "İptal Edildi" -#: netbox/core/data_backends.py:32 netbox/core/tables/plugins.py:51 -#: netbox/templates/core/plugin.html:87 -#: netbox/templates/dcim/interface.html:216 +#: core/data_backends.py:32 core/tables/plugins.py:51 +#: templates/core/plugin.html:88 templates/dcim/interface.html:216 msgid "Local" msgstr "Yerel" -#: netbox/core/data_backends.py:50 netbox/core/tables/change_logging.py:20 -#: netbox/templates/account/profile.html:15 -#: netbox/templates/users/user.html:17 netbox/users/tables.py:31 +#: core/data_backends.py:50 core/tables/change_logging.py:20 +#: templates/account/profile.html:15 templates/users/user.html:17 +#: users/tables.py:31 msgid "Username" msgstr "Kullanıcı Adı" -#: netbox/core/data_backends.py:52 netbox/core/data_backends.py:58 +#: core/data_backends.py:52 core/data_backends.py:58 msgid "Only used for cloning with HTTP(S)" msgstr "Sadece HTTP(S) ile klonlama için kullanılır" -#: netbox/core/data_backends.py:56 netbox/templates/account/base.html:23 -#: netbox/templates/account/password.html:12 -#: netbox/users/forms/model_forms.py:170 +#: core/data_backends.py:56 templates/account/base.html:23 +#: templates/account/password.html:12 users/forms/model_forms.py:170 msgid "Password" msgstr "Şifre" -#: netbox/core/data_backends.py:62 +#: core/data_backends.py:62 msgid "Branch" msgstr "Şube" -#: netbox/core/data_backends.py:120 +#: core/data_backends.py:120 #, python-brace-format msgid "Fetching remote data failed ({name}): {error}" msgstr "Uzaktan veri getirilemedi ({name}): {error}" -#: netbox/core/data_backends.py:133 +#: core/data_backends.py:133 msgid "AWS access key ID" msgstr "AWS erişim anahtarı kimliği" -#: netbox/core/data_backends.py:137 +#: core/data_backends.py:137 msgid "AWS secret access key" msgstr "AWS gizli erişim anahtarı" -#: netbox/core/events.py:27 +#: core/events.py:27 msgid "Object created" msgstr "Oluşturulan nesne" -#: netbox/core/events.py:28 +#: core/events.py:28 msgid "Object updated" msgstr "Nesne güncellendi" -#: netbox/core/events.py:29 +#: core/events.py:29 msgid "Object deleted" msgstr "Nesne silindi" -#: netbox/core/events.py:30 +#: core/events.py:30 msgid "Job started" msgstr "İş başladı" -#: netbox/core/events.py:31 +#: core/events.py:31 msgid "Job completed" msgstr "İş tamamlandı" -#: netbox/core/events.py:32 +#: core/events.py:32 msgid "Job failed" msgstr "İş başarısız oldu" -#: netbox/core/events.py:33 +#: core/events.py:33 msgid "Job errored" msgstr "İş hatası" -#: netbox/core/filtersets.py:53 netbox/extras/filtersets.py:250 -#: netbox/extras/filtersets.py:633 netbox/extras/filtersets.py:661 +#: core/filtersets.py:53 extras/filtersets.py:250 extras/filtersets.py:633 +#: extras/filtersets.py:661 msgid "Data source (ID)" msgstr "Veri kaynağı (ID)" -#: netbox/core/filtersets.py:59 +#: core/filtersets.py:59 msgid "Data source (name)" msgstr "Veri kaynağı (isim)" -#: netbox/core/filtersets.py:145 netbox/dcim/filtersets.py:501 -#: netbox/extras/filtersets.py:287 netbox/extras/filtersets.py:331 -#: netbox/extras/filtersets.py:353 netbox/extras/filtersets.py:413 -#: netbox/users/filtersets.py:28 +#: core/filtersets.py:145 dcim/filtersets.py:501 extras/filtersets.py:287 +#: extras/filtersets.py:331 extras/filtersets.py:353 extras/filtersets.py:413 +#: users/filtersets.py:28 msgid "User (ID)" msgstr "Kullanıcı (ID)" -#: netbox/core/filtersets.py:151 +#: core/filtersets.py:151 msgid "User name" msgstr "Kullanıcı adı" -#: netbox/core/forms/bulk_edit.py:25 netbox/core/forms/filtersets.py:43 -#: netbox/core/tables/data.py:26 netbox/dcim/forms/bulk_edit.py:1122 -#: netbox/dcim/forms/bulk_edit.py:1400 netbox/dcim/forms/filtersets.py:1370 -#: netbox/dcim/tables/devices.py:553 netbox/dcim/tables/devicetypes.py:224 -#: netbox/extras/forms/bulk_edit.py:123 netbox/extras/forms/bulk_edit.py:187 -#: netbox/extras/forms/bulk_edit.py:246 netbox/extras/forms/filtersets.py:142 -#: netbox/extras/forms/filtersets.py:229 netbox/extras/forms/filtersets.py:294 -#: netbox/extras/tables/tables.py:162 netbox/extras/tables/tables.py:253 -#: netbox/extras/tables/tables.py:415 netbox/netbox/preferences.py:22 -#: netbox/templates/core/datasource.html:42 -#: netbox/templates/dcim/interface.html:61 -#: netbox/templates/extras/customlink.html:17 -#: netbox/templates/extras/eventrule.html:17 -#: netbox/templates/extras/savedfilter.html:25 -#: netbox/templates/users/objectpermission.html:25 -#: netbox/templates/virtualization/vminterface.html:29 -#: netbox/users/forms/bulk_edit.py:89 netbox/users/forms/filtersets.py:70 -#: netbox/users/tables.py:83 netbox/virtualization/forms/bulk_edit.py:217 -#: netbox/virtualization/forms/filtersets.py:215 +#: core/forms/bulk_edit.py:25 core/forms/filtersets.py:43 +#: core/tables/data.py:26 dcim/forms/bulk_edit.py:1122 +#: dcim/forms/bulk_edit.py:1400 dcim/forms/filtersets.py:1370 +#: dcim/tables/devices.py:553 dcim/tables/devicetypes.py:224 +#: extras/forms/bulk_edit.py:123 extras/forms/bulk_edit.py:187 +#: extras/forms/bulk_edit.py:246 extras/forms/filtersets.py:142 +#: extras/forms/filtersets.py:229 extras/forms/filtersets.py:294 +#: extras/tables/tables.py:162 extras/tables/tables.py:253 +#: extras/tables/tables.py:415 netbox/preferences.py:22 +#: templates/core/datasource.html:42 templates/dcim/interface.html:61 +#: templates/extras/customlink.html:17 templates/extras/eventrule.html:17 +#: templates/extras/savedfilter.html:25 +#: templates/users/objectpermission.html:25 +#: templates/virtualization/vminterface.html:29 users/forms/bulk_edit.py:89 +#: users/forms/filtersets.py:70 users/tables.py:83 +#: virtualization/forms/bulk_edit.py:217 +#: virtualization/forms/filtersets.py:215 msgid "Enabled" msgstr "Etkin" -#: netbox/core/forms/bulk_edit.py:34 netbox/extras/forms/model_forms.py:285 -#: netbox/templates/extras/savedfilter.html:52 -#: netbox/vpn/forms/filtersets.py:97 netbox/vpn/forms/filtersets.py:127 -#: netbox/vpn/forms/filtersets.py:151 netbox/vpn/forms/filtersets.py:170 -#: netbox/vpn/forms/model_forms.py:301 netbox/vpn/forms/model_forms.py:321 -#: netbox/vpn/forms/model_forms.py:337 netbox/vpn/forms/model_forms.py:357 -#: netbox/vpn/forms/model_forms.py:380 +#: core/forms/bulk_edit.py:34 extras/forms/model_forms.py:285 +#: templates/extras/savedfilter.html:52 vpn/forms/filtersets.py:97 +#: vpn/forms/filtersets.py:127 vpn/forms/filtersets.py:151 +#: vpn/forms/filtersets.py:170 vpn/forms/model_forms.py:301 +#: vpn/forms/model_forms.py:321 vpn/forms/model_forms.py:337 +#: vpn/forms/model_forms.py:357 vpn/forms/model_forms.py:380 msgid "Parameters" msgstr "Parametreler" -#: netbox/core/forms/bulk_edit.py:38 netbox/templates/core/datasource.html:68 +#: core/forms/bulk_edit.py:38 templates/core/datasource.html:68 msgid "Ignore rules" msgstr "Kuralları yok sayın" -#: netbox/core/forms/filtersets.py:30 netbox/core/forms/model_forms.py:97 -#: netbox/extras/forms/model_forms.py:248 -#: netbox/extras/forms/model_forms.py:578 -#: netbox/extras/forms/model_forms.py:632 netbox/extras/tables/tables.py:191 -#: netbox/extras/tables/tables.py:483 netbox/extras/tables/tables.py:518 -#: netbox/templates/core/datasource.html:31 -#: netbox/templates/dcim/device/render_config.html:18 -#: netbox/templates/extras/configcontext.html:29 -#: netbox/templates/extras/configtemplate.html:21 -#: netbox/templates/extras/exporttemplate.html:35 -#: netbox/templates/virtualization/virtualmachine/render_config.html:18 +#: core/forms/filtersets.py:30 core/forms/model_forms.py:97 +#: extras/forms/model_forms.py:248 extras/forms/model_forms.py:578 +#: extras/forms/model_forms.py:632 extras/tables/tables.py:191 +#: extras/tables/tables.py:483 extras/tables/tables.py:518 +#: templates/core/datasource.html:31 +#: templates/dcim/device/render_config.html:18 +#: templates/extras/configcontext.html:29 +#: templates/extras/configtemplate.html:21 +#: templates/extras/exporttemplate.html:35 +#: templates/virtualization/virtualmachine/render_config.html:18 msgid "Data Source" msgstr "Veri Kaynağı" -#: netbox/core/forms/filtersets.py:55 netbox/core/forms/mixins.py:21 +#: core/forms/filtersets.py:55 core/forms/mixins.py:21 msgid "File" msgstr "Dosya" -#: netbox/core/forms/filtersets.py:60 netbox/core/forms/mixins.py:16 -#: netbox/extras/forms/filtersets.py:170 netbox/extras/forms/filtersets.py:328 -#: netbox/extras/forms/filtersets.py:413 +#: core/forms/filtersets.py:60 core/forms/mixins.py:16 +#: extras/forms/filtersets.py:170 extras/forms/filtersets.py:328 +#: extras/forms/filtersets.py:413 msgid "Data source" msgstr "Veri kaynağı" -#: netbox/core/forms/filtersets.py:70 netbox/extras/forms/filtersets.py:440 +#: core/forms/filtersets.py:70 extras/forms/filtersets.py:440 msgid "Creation" msgstr "Oluşturma" -#: netbox/core/forms/filtersets.py:74 netbox/core/forms/filtersets.py:160 -#: netbox/extras/forms/filtersets.py:461 netbox/extras/tables/tables.py:220 -#: netbox/extras/tables/tables.py:294 netbox/extras/tables/tables.py:326 -#: netbox/extras/tables/tables.py:571 netbox/templates/core/job.html:38 -#: netbox/templates/core/objectchange.html:52 -#: netbox/tenancy/tables/contacts.py:90 netbox/vpn/tables/l2vpn.py:59 +#: core/forms/filtersets.py:74 core/forms/filtersets.py:160 +#: extras/forms/filtersets.py:461 extras/tables/tables.py:220 +#: extras/tables/tables.py:294 extras/tables/tables.py:326 +#: extras/tables/tables.py:571 templates/core/job.html:38 +#: templates/core/objectchange.html:52 tenancy/tables/contacts.py:90 +#: vpn/tables/l2vpn.py:59 msgid "Object Type" msgstr "Nesne Türü" -#: netbox/core/forms/filtersets.py:84 +#: core/forms/filtersets.py:84 msgid "Created after" msgstr "Sonra oluşturuldu" -#: netbox/core/forms/filtersets.py:89 +#: core/forms/filtersets.py:89 msgid "Created before" msgstr "Daha önce oluşturuldu" -#: netbox/core/forms/filtersets.py:94 +#: core/forms/filtersets.py:94 msgid "Scheduled after" msgstr "Sonrasında planlandı" -#: netbox/core/forms/filtersets.py:99 +#: core/forms/filtersets.py:99 msgid "Scheduled before" msgstr "Önceden planlanmış" -#: netbox/core/forms/filtersets.py:104 +#: core/forms/filtersets.py:104 msgid "Started after" msgstr "Sonra başladı" -#: netbox/core/forms/filtersets.py:109 +#: core/forms/filtersets.py:109 msgid "Started before" msgstr "Daha önce başladı" -#: netbox/core/forms/filtersets.py:114 +#: core/forms/filtersets.py:114 msgid "Completed after" msgstr "Sonrasında tamamlandı" -#: netbox/core/forms/filtersets.py:119 +#: core/forms/filtersets.py:119 msgid "Completed before" msgstr "Daha önce tamamlandı" -#: netbox/core/forms/filtersets.py:126 netbox/core/forms/filtersets.py:155 -#: netbox/dcim/forms/bulk_edit.py:456 netbox/dcim/forms/filtersets.py:418 -#: netbox/dcim/forms/filtersets.py:462 netbox/dcim/forms/model_forms.py:316 -#: netbox/extras/forms/filtersets.py:456 netbox/extras/forms/filtersets.py:475 -#: netbox/extras/tables/tables.py:302 netbox/extras/tables/tables.py:342 -#: netbox/templates/core/objectchange.html:36 -#: netbox/templates/dcim/rackreservation.html:58 -#: netbox/templates/extras/savedfilter.html:21 -#: netbox/templates/inc/user_menu.html:33 netbox/templates/users/token.html:21 -#: netbox/templates/users/user.html:6 netbox/templates/users/user.html:14 -#: netbox/users/filtersets.py:107 netbox/users/filtersets.py:174 -#: netbox/users/forms/filtersets.py:84 netbox/users/forms/filtersets.py:125 -#: netbox/users/forms/model_forms.py:155 netbox/users/forms/model_forms.py:192 -#: netbox/users/tables.py:19 +#: core/forms/filtersets.py:126 core/forms/filtersets.py:155 +#: dcim/forms/bulk_edit.py:456 dcim/forms/filtersets.py:418 +#: dcim/forms/filtersets.py:462 dcim/forms/model_forms.py:316 +#: extras/forms/filtersets.py:456 extras/forms/filtersets.py:475 +#: extras/tables/tables.py:302 extras/tables/tables.py:342 +#: templates/core/objectchange.html:36 templates/dcim/rackreservation.html:58 +#: templates/extras/savedfilter.html:21 templates/inc/user_menu.html:33 +#: templates/users/token.html:21 templates/users/user.html:6 +#: templates/users/user.html:14 users/filtersets.py:107 +#: users/filtersets.py:174 users/forms/filtersets.py:84 +#: users/forms/filtersets.py:125 users/forms/model_forms.py:155 +#: users/forms/model_forms.py:192 users/tables.py:19 msgid "User" msgstr "Kullanıcı" -#: netbox/core/forms/filtersets.py:134 netbox/core/tables/change_logging.py:15 -#: netbox/extras/tables/tables.py:609 netbox/extras/tables/tables.py:646 -#: netbox/templates/core/objectchange.html:32 +#: core/forms/filtersets.py:134 core/tables/change_logging.py:15 +#: extras/tables/tables.py:609 extras/tables/tables.py:646 +#: templates/core/objectchange.html:32 msgid "Time" msgstr "Zaman" -#: netbox/core/forms/filtersets.py:139 netbox/extras/forms/filtersets.py:445 +#: core/forms/filtersets.py:139 extras/forms/filtersets.py:445 msgid "After" msgstr "Sonra" -#: netbox/core/forms/filtersets.py:144 netbox/extras/forms/filtersets.py:450 +#: core/forms/filtersets.py:144 extras/forms/filtersets.py:450 msgid "Before" msgstr "Önce" -#: netbox/core/forms/filtersets.py:148 netbox/core/tables/change_logging.py:29 -#: netbox/extras/forms/model_forms.py:396 -#: netbox/templates/core/objectchange.html:46 -#: netbox/templates/extras/eventrule.html:71 +#: core/forms/filtersets.py:148 core/tables/change_logging.py:29 +#: extras/forms/model_forms.py:396 templates/core/objectchange.html:46 +#: templates/extras/eventrule.html:71 msgid "Action" msgstr "Eylem" -#: netbox/core/forms/model_forms.py:54 netbox/core/tables/data.py:46 -#: netbox/templates/core/datafile.html:27 -#: netbox/templates/extras/report/base.html:33 -#: netbox/templates/extras/script/base.html:32 +#: core/forms/model_forms.py:54 core/tables/data.py:46 +#: templates/core/datafile.html:27 templates/extras/report/base.html:33 +#: templates/extras/script/base.html:32 msgid "Source" msgstr "Kaynak" -#: netbox/core/forms/model_forms.py:58 +#: core/forms/model_forms.py:58 msgid "Backend Parameters" msgstr "Arka Uç Parametreleri" -#: netbox/core/forms/model_forms.py:96 +#: core/forms/model_forms.py:96 msgid "File Upload" msgstr "Dosya Yükleme" -#: netbox/core/forms/model_forms.py:108 +#: core/forms/model_forms.py:108 msgid "Cannot upload a file and sync from an existing file" msgstr "Dosya yüklenemiyor ve varolan bir dosyadan senkronize edilemiyor" -#: netbox/core/forms/model_forms.py:110 +#: core/forms/model_forms.py:110 msgid "Must upload a file or select a data file to sync" msgstr "" "Senkronize etmek için bir dosya yüklemeniz veya bir veri dosyası seçmeniz " "gerekir" -#: netbox/core/forms/model_forms.py:153 -#: netbox/templates/dcim/rack_elevation_list.html:6 +#: core/forms/model_forms.py:153 templates/dcim/rack_elevation_list.html:6 msgid "Rack Elevations" msgstr "Raf Yükseltmeleri" -#: netbox/core/forms/model_forms.py:157 netbox/dcim/choices.py:1518 -#: netbox/dcim/forms/bulk_edit.py:969 netbox/dcim/forms/bulk_edit.py:1357 -#: netbox/dcim/forms/bulk_edit.py:1375 netbox/dcim/tables/racks.py:158 -#: netbox/netbox/navigation/menu.py:291 netbox/netbox/navigation/menu.py:295 +#: core/forms/model_forms.py:157 dcim/choices.py:1518 +#: dcim/forms/bulk_edit.py:969 dcim/forms/bulk_edit.py:1357 +#: dcim/forms/bulk_edit.py:1375 dcim/tables/racks.py:158 +#: netbox/navigation/menu.py:291 netbox/navigation/menu.py:295 msgid "Power" msgstr "Güç" -#: netbox/core/forms/model_forms.py:159 netbox/netbox/navigation/menu.py:154 -#: netbox/templates/core/inc/config_data.html:37 +#: core/forms/model_forms.py:159 netbox/navigation/menu.py:154 +#: templates/core/inc/config_data.html:37 msgid "IPAM" msgstr "IPAM" -#: netbox/core/forms/model_forms.py:160 netbox/netbox/navigation/menu.py:230 -#: netbox/templates/core/inc/config_data.html:50 -#: netbox/vpn/forms/bulk_edit.py:77 netbox/vpn/forms/filtersets.py:43 -#: netbox/vpn/forms/model_forms.py:61 netbox/vpn/forms/model_forms.py:146 +#: core/forms/model_forms.py:160 netbox/navigation/menu.py:230 +#: templates/core/inc/config_data.html:50 vpn/forms/bulk_edit.py:77 +#: vpn/forms/filtersets.py:43 vpn/forms/model_forms.py:61 +#: vpn/forms/model_forms.py:146 msgid "Security" msgstr "Güvenlik" -#: netbox/core/forms/model_forms.py:161 -#: netbox/templates/core/inc/config_data.html:59 +#: core/forms/model_forms.py:161 templates/core/inc/config_data.html:59 msgid "Banners" msgstr "Afişler" -#: netbox/core/forms/model_forms.py:162 -#: netbox/templates/core/inc/config_data.html:80 +#: core/forms/model_forms.py:162 templates/core/inc/config_data.html:80 msgid "Pagination" msgstr "Sayfalandırma" -#: netbox/core/forms/model_forms.py:163 netbox/extras/forms/bulk_edit.py:92 -#: netbox/extras/forms/filtersets.py:47 netbox/extras/forms/model_forms.py:116 -#: netbox/extras/forms/model_forms.py:129 -#: netbox/templates/core/inc/config_data.html:93 +#: core/forms/model_forms.py:163 extras/forms/bulk_edit.py:92 +#: extras/forms/filtersets.py:47 extras/forms/model_forms.py:116 +#: extras/forms/model_forms.py:129 templates/core/inc/config_data.html:93 msgid "Validation" msgstr "Doğrulama" -#: netbox/core/forms/model_forms.py:164 -#: netbox/templates/account/preferences.html:6 +#: core/forms/model_forms.py:164 templates/account/preferences.html:6 msgid "User Preferences" msgstr "Kullanıcı Tercihleri" -#: netbox/core/forms/model_forms.py:167 netbox/dcim/forms/filtersets.py:732 -#: netbox/templates/core/inc/config_data.html:127 -#: netbox/users/forms/model_forms.py:64 +#: core/forms/model_forms.py:167 dcim/forms/filtersets.py:732 +#: templates/core/inc/config_data.html:127 users/forms/model_forms.py:64 msgid "Miscellaneous" msgstr "Çeşitli" -#: netbox/core/forms/model_forms.py:169 +#: core/forms/model_forms.py:169 msgid "Config Revision" msgstr "Yapılandırma Revizyonu" -#: netbox/core/forms/model_forms.py:208 +#: core/forms/model_forms.py:208 msgid "This parameter has been defined statically and cannot be modified." msgstr "Bu parametre statik olarak tanımlanmıştır ve değiştirilemez." -#: netbox/core/forms/model_forms.py:216 +#: core/forms/model_forms.py:216 #, python-brace-format msgid "Current value: {value}" msgstr "Mevcut değer: {value}" -#: netbox/core/forms/model_forms.py:218 +#: core/forms/model_forms.py:218 msgid " (default)" msgstr " (varsayılan)" -#: netbox/core/models/change_logging.py:29 +#: core/models/change_logging.py:29 msgid "time" msgstr "zaman" -#: netbox/core/models/change_logging.py:42 +#: core/models/change_logging.py:42 msgid "user name" msgstr "kullanıcı adı" -#: netbox/core/models/change_logging.py:47 +#: core/models/change_logging.py:47 msgid "request ID" msgstr "istek kimliği" -#: netbox/core/models/change_logging.py:52 netbox/extras/models/staging.py:69 +#: core/models/change_logging.py:52 extras/models/staging.py:69 msgid "action" msgstr "aksiyon" -#: netbox/core/models/change_logging.py:86 +#: core/models/change_logging.py:86 msgid "pre-change data" msgstr "değişiklik öncesi veriler" -#: netbox/core/models/change_logging.py:92 +#: core/models/change_logging.py:92 msgid "post-change data" msgstr "değişim sonrası veriler" -#: netbox/core/models/change_logging.py:106 +#: core/models/change_logging.py:106 msgid "object change" msgstr "nesne değişikliği" -#: netbox/core/models/change_logging.py:107 +#: core/models/change_logging.py:107 msgid "object changes" msgstr "nesne değişiklikleri" -#: netbox/core/models/change_logging.py:123 +#: core/models/change_logging.py:123 #, python-brace-format msgid "Change logging is not supported for this object type ({type})." msgstr "Değişiklik günlüğü bu nesne türü için desteklenmez ({type})." -#: netbox/core/models/config.py:18 netbox/core/models/data.py:266 -#: netbox/core/models/files.py:27 netbox/core/models/jobs.py:49 -#: netbox/extras/models/models.py:730 netbox/extras/models/notifications.py:39 -#: netbox/extras/models/notifications.py:186 -#: netbox/netbox/models/features.py:53 netbox/users/models/tokens.py:32 +#: core/models/config.py:18 core/models/data.py:266 core/models/files.py:27 +#: core/models/jobs.py:49 extras/models/models.py:730 +#: extras/models/notifications.py:39 extras/models/notifications.py:186 +#: netbox/models/features.py:53 users/models/tokens.py:32 msgid "created" msgstr "oluşturulan" -#: netbox/core/models/config.py:22 +#: core/models/config.py:22 msgid "comment" msgstr "yorum Yap" -#: netbox/core/models/config.py:29 +#: core/models/config.py:29 msgid "configuration data" msgstr "yapılandırma verileri" -#: netbox/core/models/config.py:36 +#: core/models/config.py:36 msgid "config revision" msgstr "yapılandırma revizyonu" -#: netbox/core/models/config.py:37 +#: core/models/config.py:37 msgid "config revisions" msgstr "yapılandırma revizyonları" -#: netbox/core/models/config.py:41 +#: core/models/config.py:41 msgid "Default configuration" msgstr "Varsayılan yapılandırma" -#: netbox/core/models/config.py:43 +#: core/models/config.py:43 msgid "Current configuration" msgstr "Geçerli yapılandırma" -#: netbox/core/models/config.py:44 +#: core/models/config.py:44 #, python-brace-format msgid "Config revision #{id}" msgstr "Yapılandırma revizyonu #{id}" -#: netbox/core/models/data.py:44 netbox/dcim/models/cables.py:43 -#: netbox/dcim/models/device_component_templates.py:203 -#: netbox/dcim/models/device_component_templates.py:237 -#: netbox/dcim/models/device_component_templates.py:272 -#: netbox/dcim/models/device_component_templates.py:334 -#: netbox/dcim/models/device_component_templates.py:413 -#: netbox/dcim/models/device_component_templates.py:512 -#: netbox/dcim/models/device_component_templates.py:612 -#: netbox/dcim/models/device_components.py:283 -#: netbox/dcim/models/device_components.py:312 -#: netbox/dcim/models/device_components.py:345 -#: netbox/dcim/models/device_components.py:463 -#: netbox/dcim/models/device_components.py:605 -#: netbox/dcim/models/device_components.py:970 -#: netbox/dcim/models/device_components.py:1044 -#: netbox/dcim/models/power.py:102 netbox/extras/models/customfields.py:78 -#: netbox/extras/models/search.py:41 -#: netbox/virtualization/models/clusters.py:61 netbox/vpn/models/l2vpn.py:32 +#: core/models/data.py:44 dcim/models/cables.py:43 +#: dcim/models/device_component_templates.py:203 +#: dcim/models/device_component_templates.py:237 +#: dcim/models/device_component_templates.py:272 +#: dcim/models/device_component_templates.py:334 +#: dcim/models/device_component_templates.py:413 +#: dcim/models/device_component_templates.py:512 +#: dcim/models/device_component_templates.py:612 +#: dcim/models/device_components.py:283 dcim/models/device_components.py:312 +#: dcim/models/device_components.py:345 dcim/models/device_components.py:463 +#: dcim/models/device_components.py:605 dcim/models/device_components.py:970 +#: dcim/models/device_components.py:1044 dcim/models/power.py:102 +#: extras/models/customfields.py:78 extras/models/search.py:41 +#: virtualization/models/clusters.py:61 vpn/models/l2vpn.py:32 msgid "type" msgstr "türü" -#: netbox/core/models/data.py:49 netbox/extras/choices.py:37 -#: netbox/extras/models/models.py:164 netbox/extras/tables/tables.py:656 -#: netbox/templates/core/datasource.html:58 -#: netbox/templates/core/plugin.html:65 +#: core/models/data.py:49 extras/choices.py:37 extras/models/models.py:164 +#: extras/tables/tables.py:656 templates/core/datasource.html:58 +#: templates/core/plugin.html:66 msgid "URL" msgstr "URL" -#: netbox/core/models/data.py:59 -#: netbox/dcim/models/device_component_templates.py:418 -#: netbox/dcim/models/device_components.py:512 -#: netbox/extras/models/models.py:70 netbox/extras/models/models.py:301 -#: netbox/extras/models/models.py:526 netbox/users/models/permissions.py:29 +#: core/models/data.py:59 dcim/models/device_component_templates.py:418 +#: dcim/models/device_components.py:512 extras/models/models.py:70 +#: extras/models/models.py:301 extras/models/models.py:526 +#: users/models/permissions.py:29 msgid "enabled" msgstr "etkin" -#: netbox/core/models/data.py:63 +#: core/models/data.py:63 msgid "ignore rules" msgstr "kuralları yok sayın" -#: netbox/core/models/data.py:65 +#: core/models/data.py:65 msgid "Patterns (one per line) matching files to ignore when syncing" msgstr "" "Senkronizasyon sırasında yok sayılacak dosyalarla eşleşen desenler (satır " "başına bir tane)" -#: netbox/core/models/data.py:68 netbox/extras/models/models.py:534 +#: core/models/data.py:68 extras/models/models.py:534 msgid "parameters" msgstr "parametreler" -#: netbox/core/models/data.py:73 +#: core/models/data.py:73 msgid "last synced" msgstr "son senkronize edildi" -#: netbox/core/models/data.py:81 +#: core/models/data.py:81 msgid "data source" msgstr "veri kaynağı" -#: netbox/core/models/data.py:82 +#: core/models/data.py:82 msgid "data sources" msgstr "veri kaynakları" -#: netbox/core/models/data.py:122 +#: core/models/data.py:122 #, python-brace-format msgid "Unknown backend type: {type}" msgstr "Bilinmeyen arka uç türü: {type}" -#: netbox/core/models/data.py:164 +#: core/models/data.py:164 msgid "Cannot initiate sync; syncing already in progress." msgstr "Senkronizasyon başlatılamıyor; senkronizasyon zaten devam ediyor." -#: netbox/core/models/data.py:177 +#: core/models/data.py:177 msgid "" "There was an error initializing the backend. A dependency needs to be " "installed: " @@ -2162,1283 +1893,1221 @@ msgstr "" "Arka ucu başlatırken bir hata oluştu. Bir bağımlılığın yüklenmesi gerekiyor:" " " -#: netbox/core/models/data.py:270 netbox/core/models/files.py:31 -#: netbox/netbox/models/features.py:59 +#: core/models/data.py:270 core/models/files.py:31 +#: netbox/models/features.py:59 msgid "last updated" msgstr "son güncellendi" -#: netbox/core/models/data.py:280 netbox/dcim/models/cables.py:444 +#: core/models/data.py:280 dcim/models/cables.py:444 msgid "path" msgstr "yol" -#: netbox/core/models/data.py:283 +#: core/models/data.py:283 msgid "File path relative to the data source's root" msgstr "Veri kaynağının köküne göre dosya yolu" -#: netbox/core/models/data.py:287 netbox/ipam/models/ip.py:503 +#: core/models/data.py:287 ipam/models/ip.py:503 msgid "size" msgstr "boyut" -#: netbox/core/models/data.py:290 +#: core/models/data.py:290 msgid "hash" msgstr "kare" -#: netbox/core/models/data.py:294 +#: core/models/data.py:294 msgid "Length must be 64 hexadecimal characters." msgstr "Uzunluk 64 onaltılık karakter olmalıdır." -#: netbox/core/models/data.py:296 +#: core/models/data.py:296 msgid "SHA256 hash of the file data" msgstr "Dosya verilerinin SHA256 karması" -#: netbox/core/models/data.py:313 +#: core/models/data.py:313 msgid "data file" msgstr "veri dosyası" -#: netbox/core/models/data.py:314 +#: core/models/data.py:314 msgid "data files" msgstr "veri dosyaları" -#: netbox/core/models/data.py:401 +#: core/models/data.py:401 msgid "auto sync record" msgstr "otomatik senkronizasyon kaydı" -#: netbox/core/models/data.py:402 +#: core/models/data.py:402 msgid "auto sync records" msgstr "otomatik senkronizasyon kayıtları" -#: netbox/core/models/files.py:37 +#: core/models/files.py:37 msgid "file root" msgstr "dosya kökü" -#: netbox/core/models/files.py:42 +#: core/models/files.py:42 msgid "file path" msgstr "dosya yolu" -#: netbox/core/models/files.py:44 +#: core/models/files.py:44 msgid "File path relative to the designated root path" msgstr "Belirlenen kök yoluna göre dosya yolu" -#: netbox/core/models/files.py:61 +#: core/models/files.py:61 msgid "managed file" msgstr "yönetilen dosya" -#: netbox/core/models/files.py:62 +#: core/models/files.py:62 msgid "managed files" msgstr "yönetilen dosyalar" -#: netbox/core/models/jobs.py:53 +#: core/models/jobs.py:53 msgid "scheduled" msgstr "planlanmış" -#: netbox/core/models/jobs.py:58 +#: core/models/jobs.py:58 msgid "interval" msgstr "aralık" -#: netbox/core/models/jobs.py:64 +#: core/models/jobs.py:64 msgid "Recurrence interval (in minutes)" msgstr "Tekrarlama aralığı (dakika cinsinden)" -#: netbox/core/models/jobs.py:67 +#: core/models/jobs.py:67 msgid "started" msgstr "başladı" -#: netbox/core/models/jobs.py:72 +#: core/models/jobs.py:72 msgid "completed" msgstr "tamamlandı" -#: netbox/core/models/jobs.py:90 netbox/extras/models/models.py:101 -#: netbox/extras/models/staging.py:87 +#: core/models/jobs.py:90 extras/models/models.py:101 +#: extras/models/staging.py:87 msgid "data" msgstr "veri" -#: netbox/core/models/jobs.py:95 +#: core/models/jobs.py:95 msgid "error" msgstr "hata" -#: netbox/core/models/jobs.py:100 +#: core/models/jobs.py:100 msgid "job ID" msgstr "görev ID" -#: netbox/core/models/jobs.py:111 +#: core/models/jobs.py:111 msgid "job" msgstr "görev" -#: netbox/core/models/jobs.py:112 +#: core/models/jobs.py:112 msgid "jobs" msgstr "görevler" -#: netbox/core/models/jobs.py:135 +#: core/models/jobs.py:135 #, python-brace-format msgid "Jobs cannot be assigned to this object type ({type})." msgstr "İşler bu nesne türüne atanamaz ({type})." -#: netbox/core/models/jobs.py:185 +#: core/models/jobs.py:185 #, python-brace-format msgid "Invalid status for job termination. Choices are: {choices}" msgstr "" "İşin sonlandırılması için geçersiz durum. Seçenekler şunlardır: {choices}" -#: netbox/core/models/jobs.py:216 +#: core/models/jobs.py:216 msgid "" "enqueue() cannot be called with values for both schedule_at and immediate." msgstr "enqueue () hem schedule_at hem de imediat değerleriyle çağrılamaz." -#: netbox/core/signals.py:126 +#: core/signals.py:126 #, python-brace-format msgid "Deletion is prevented by a protection rule: {message}" msgstr "Silme işlemi bir koruma kuralı tarafından engellenir: {message}" -#: netbox/core/tables/change_logging.py:25 -#: netbox/templates/account/profile.html:19 -#: netbox/templates/users/user.html:21 +#: core/tables/change_logging.py:25 templates/account/profile.html:19 +#: templates/users/user.html:21 msgid "Full Name" msgstr "Ad Soyad" -#: netbox/core/tables/change_logging.py:37 netbox/core/tables/jobs.py:21 -#: netbox/extras/choices.py:41 netbox/extras/tables/tables.py:279 -#: netbox/extras/tables/tables.py:297 netbox/extras/tables/tables.py:329 -#: netbox/extras/tables/tables.py:409 netbox/extras/tables/tables.py:470 -#: netbox/extras/tables/tables.py:576 netbox/extras/tables/tables.py:616 -#: netbox/extras/tables/tables.py:653 netbox/netbox/tables/tables.py:244 -#: netbox/templates/core/objectchange.html:58 -#: netbox/templates/extras/eventrule.html:78 -#: netbox/templates/extras/journalentry.html:18 -#: netbox/tenancy/tables/contacts.py:93 netbox/vpn/tables/l2vpn.py:64 +#: core/tables/change_logging.py:37 core/tables/jobs.py:21 +#: extras/choices.py:41 extras/tables/tables.py:279 +#: extras/tables/tables.py:297 extras/tables/tables.py:329 +#: extras/tables/tables.py:409 extras/tables/tables.py:470 +#: extras/tables/tables.py:576 extras/tables/tables.py:616 +#: extras/tables/tables.py:653 netbox/tables/tables.py:244 +#: templates/core/objectchange.html:58 templates/extras/eventrule.html:78 +#: templates/extras/journalentry.html:18 tenancy/tables/contacts.py:93 +#: vpn/tables/l2vpn.py:64 msgid "Object" msgstr "Nesne" -#: netbox/core/tables/change_logging.py:42 -#: netbox/templates/core/objectchange.html:68 +#: core/tables/change_logging.py:42 templates/core/objectchange.html:68 msgid "Request ID" msgstr "İstek Kimliği" -#: netbox/core/tables/config.py:21 netbox/users/forms/filtersets.py:44 -#: netbox/users/tables.py:39 +#: core/tables/config.py:21 users/forms/filtersets.py:44 users/tables.py:39 msgid "Is Active" msgstr "Aktif mi" -#: netbox/core/tables/data.py:50 netbox/templates/core/datafile.html:31 +#: core/tables/data.py:50 templates/core/datafile.html:31 msgid "Path" msgstr "Yol" -#: netbox/core/tables/data.py:54 -#: netbox/templates/extras/inc/result_pending.html:7 +#: core/tables/data.py:54 templates/extras/inc/result_pending.html:7 msgid "Last updated" msgstr "Son Güncelleme" -#: netbox/core/tables/jobs.py:10 netbox/core/tables/tasks.py:76 -#: netbox/dcim/tables/devicetypes.py:164 netbox/extras/tables/tables.py:216 -#: netbox/extras/tables/tables.py:460 netbox/netbox/tables/tables.py:189 -#: netbox/templates/dcim/virtualchassis_edit.html:52 -#: netbox/utilities/forms/forms.py:73 -#: netbox/wireless/tables/wirelesslink.py:17 +#: core/tables/jobs.py:10 core/tables/tasks.py:76 +#: dcim/tables/devicetypes.py:164 extras/tables/tables.py:216 +#: extras/tables/tables.py:460 netbox/tables/tables.py:189 +#: templates/dcim/virtualchassis_edit.html:52 utilities/forms/forms.py:73 +#: wireless/tables/wirelesslink.py:17 msgid "ID" msgstr "KİMLİK" -#: netbox/core/tables/jobs.py:35 +#: core/tables/jobs.py:35 msgid "Interval" msgstr "Aralık" -#: netbox/core/tables/plugins.py:14 netbox/templates/vpn/ipsecprofile.html:44 -#: netbox/vpn/forms/bulk_edit.py:141 netbox/vpn/forms/bulk_import.py:172 -#: netbox/vpn/tables/crypto.py:61 +#: core/tables/plugins.py:14 templates/vpn/ipsecprofile.html:44 +#: vpn/forms/bulk_edit.py:141 vpn/forms/bulk_import.py:172 +#: vpn/tables/crypto.py:61 msgid "Version" msgstr "Versiyon" -#: netbox/core/tables/plugins.py:19 netbox/templates/core/datafile.html:38 +#: core/tables/plugins.py:19 templates/core/datafile.html:38 msgid "Last Updated" msgstr "Son Güncelleme" -#: netbox/core/tables/plugins.py:23 +#: core/tables/plugins.py:23 msgid "Minimum NetBox Version" msgstr "Minimum NetBox Sürümü" -#: netbox/core/tables/plugins.py:27 +#: core/tables/plugins.py:27 msgid "Maximum NetBox Version" msgstr "Maksimum NetBox Sürümü" -#: netbox/core/tables/plugins.py:31 netbox/core/tables/plugins.py:74 +#: core/tables/plugins.py:31 core/tables/plugins.py:74 msgid "No plugin data found" msgstr "Eklenti verisi bulunamadı" -#: netbox/core/tables/plugins.py:48 netbox/templates/core/plugin.html:61 +#: core/tables/plugins.py:48 templates/core/plugin.html:62 msgid "Author" msgstr "Yazar" -#: netbox/core/tables/plugins.py:54 +#: core/tables/plugins.py:54 msgid "Installed" msgstr "Kurulmuş" -#: netbox/core/tables/plugins.py:57 netbox/templates/core/plugin.html:83 +#: core/tables/plugins.py:57 templates/core/plugin.html:84 msgid "Certified" msgstr "Sertifikalı" -#: netbox/core/tables/plugins.py:60 +#: core/tables/plugins.py:60 msgid "Published" msgstr "Yayınlandı" -#: netbox/core/tables/plugins.py:66 +#: core/tables/plugins.py:66 msgid "Installed Version" msgstr "Yüklü Sürüm" -#: netbox/core/tables/plugins.py:70 +#: core/tables/plugins.py:70 msgid "Latest Version" msgstr "Son Sürüm" -#: netbox/core/tables/tasks.py:18 +#: core/tables/tasks.py:18 msgid "Oldest Task" msgstr "En Eski Görev" -#: netbox/core/tables/tasks.py:42 netbox/templates/core/rq_worker_list.html:39 +#: core/tables/tasks.py:42 templates/core/rq_worker_list.html:39 msgid "Workers" msgstr "İşçiler" -#: netbox/core/tables/tasks.py:46 netbox/vpn/tables/tunnels.py:88 +#: core/tables/tasks.py:46 vpn/tables/tunnels.py:88 msgid "Host" msgstr "Ana bilgisayar" -#: netbox/core/tables/tasks.py:50 netbox/ipam/forms/filtersets.py:535 +#: core/tables/tasks.py:50 ipam/forms/filtersets.py:535 msgid "Port" msgstr "Port" -#: netbox/core/tables/tasks.py:54 +#: core/tables/tasks.py:54 msgid "DB" msgstr "DB" -#: netbox/core/tables/tasks.py:58 +#: core/tables/tasks.py:58 msgid "Scheduler PID" msgstr "Zamanlayıcı PID" -#: netbox/core/tables/tasks.py:62 +#: core/tables/tasks.py:62 msgid "No queues found" msgstr "Kuyruk bulunamadı" -#: netbox/core/tables/tasks.py:82 +#: core/tables/tasks.py:82 msgid "Enqueued" msgstr "Sıraya alındı" -#: netbox/core/tables/tasks.py:85 +#: core/tables/tasks.py:85 msgid "Ended" msgstr "Bitti" -#: netbox/core/tables/tasks.py:93 netbox/templates/core/rq_task.html:85 +#: core/tables/tasks.py:93 templates/core/rq_task.html:85 msgid "Callable" msgstr "Çağrılabilir" -#: netbox/core/tables/tasks.py:97 +#: core/tables/tasks.py:97 msgid "No tasks found" msgstr "Görev bulunamadı" -#: netbox/core/tables/tasks.py:118 netbox/templates/core/rq_worker.html:47 +#: core/tables/tasks.py:118 templates/core/rq_worker.html:47 msgid "State" msgstr "Eyalet" -#: netbox/core/tables/tasks.py:121 netbox/templates/core/rq_worker.html:51 +#: core/tables/tasks.py:121 templates/core/rq_worker.html:51 msgid "Birth" msgstr "Doğum" -#: netbox/core/tables/tasks.py:124 netbox/templates/core/rq_worker.html:59 +#: core/tables/tasks.py:124 templates/core/rq_worker.html:59 msgid "PID" msgstr "PID" -#: netbox/core/tables/tasks.py:128 +#: core/tables/tasks.py:128 msgid "No workers found" msgstr "İşçi bulunamadı" -#: netbox/core/views.py:90 +#: core/views.py:90 #, python-brace-format msgid "Queued job #{id} to sync {datasource}" msgstr "Sıraya alınmış iş #{id} senkronize etmek {datasource}" -#: netbox/core/views.py:319 +#: core/views.py:319 #, python-brace-format msgid "Restored configuration revision #{id}" msgstr "Geri yüklenen yapılandırma revizyonu #{id}" -#: netbox/core/views.py:412 netbox/core/views.py:455 netbox/core/views.py:531 +#: core/views.py:412 core/views.py:455 core/views.py:531 #, python-brace-format msgid "Job {job_id} not found" msgstr "İş {job_id} bulunamadı" -#: netbox/core/views.py:463 +#: core/views.py:463 #, python-brace-format msgid "Job {id} has been deleted." msgstr "İş {id} silindi." -#: netbox/core/views.py:465 +#: core/views.py:465 #, python-brace-format msgid "Error deleting job {id}: {error}" msgstr "İş silinirken hata oluştu {id}: {error}" -#: netbox/core/views.py:478 netbox/core/views.py:496 +#: core/views.py:478 core/views.py:496 #, python-brace-format msgid "Job {id} not found." msgstr "İş {id} bulunamadı." -#: netbox/core/views.py:484 +#: core/views.py:484 #, python-brace-format msgid "Job {id} has been re-enqueued." msgstr "İş {id} yeniden sıraya alındı." -#: netbox/core/views.py:519 +#: core/views.py:519 #, python-brace-format msgid "Job {id} has been enqueued." msgstr "İş {id} sıraya alındı." -#: netbox/core/views.py:538 +#: core/views.py:538 #, python-brace-format msgid "Job {id} has been stopped." msgstr "İş {id} durduruldu." -#: netbox/core/views.py:540 +#: core/views.py:540 #, python-brace-format msgid "Failed to stop job {id}" msgstr "İş durdurulamadı {id}" -#: netbox/core/views.py:678 +#: core/views.py:678 msgid "Plugins catalog could not be loaded" msgstr "Eklentiler kataloğu yüklenemedi" -#: netbox/core/views.py:712 +#: core/views.py:712 #, python-brace-format msgid "Plugin {name} not found" msgstr "Eklenti {name} bulunamadı" -#: netbox/dcim/api/serializers_/devices.py:49 -#: netbox/dcim/api/serializers_/devicetypes.py:25 +#: dcim/api/serializers_/devices.py:49 dcim/api/serializers_/devicetypes.py:25 msgid "Position (U)" msgstr "Pozisyon (U)" -#: netbox/dcim/api/serializers_/racks.py:112 -#: netbox/templates/dcim/rack.html:28 +#: dcim/api/serializers_/racks.py:112 templates/dcim/rack.html:28 msgid "Facility ID" msgstr "Tesis Kimliği" -#: netbox/dcim/choices.py:21 netbox/virtualization/choices.py:21 +#: dcim/choices.py:21 virtualization/choices.py:21 msgid "Staging" msgstr "Sahneleme" -#: netbox/dcim/choices.py:23 netbox/dcim/choices.py:189 -#: netbox/dcim/choices.py:240 netbox/dcim/choices.py:1531 -#: netbox/virtualization/choices.py:23 netbox/virtualization/choices.py:48 +#: dcim/choices.py:23 dcim/choices.py:189 dcim/choices.py:240 +#: dcim/choices.py:1531 virtualization/choices.py:23 +#: virtualization/choices.py:48 msgid "Decommissioning" msgstr "Hizmetten çıkarma" -#: netbox/dcim/choices.py:24 +#: dcim/choices.py:24 msgid "Retired" msgstr "Emekli" -#: netbox/dcim/choices.py:65 +#: dcim/choices.py:65 msgid "2-post frame" msgstr "2 direkli çerçeve" -#: netbox/dcim/choices.py:66 +#: dcim/choices.py:66 msgid "4-post frame" msgstr "4 direkli çerçeve" -#: netbox/dcim/choices.py:67 +#: dcim/choices.py:67 msgid "4-post cabinet" msgstr "4 direkli dolap" -#: netbox/dcim/choices.py:68 +#: dcim/choices.py:68 msgid "Wall-mounted frame" msgstr "Duvara monte çerçeve" -#: netbox/dcim/choices.py:69 +#: dcim/choices.py:69 msgid "Wall-mounted frame (vertical)" msgstr "Duvara monte çerçeve (dikey)" -#: netbox/dcim/choices.py:70 +#: dcim/choices.py:70 msgid "Wall-mounted cabinet" msgstr "Duvara monte dolap" -#: netbox/dcim/choices.py:71 +#: dcim/choices.py:71 msgid "Wall-mounted cabinet (vertical)" msgstr "Duvara monte dolap (dikey)" -#: netbox/dcim/choices.py:83 netbox/dcim/choices.py:84 -#: netbox/dcim/choices.py:85 netbox/dcim/choices.py:86 +#: dcim/choices.py:83 dcim/choices.py:84 dcim/choices.py:85 dcim/choices.py:86 #, python-brace-format msgid "{n} inches" msgstr "{n} inç" -#: netbox/dcim/choices.py:100 netbox/ipam/choices.py:32 -#: netbox/ipam/choices.py:50 netbox/ipam/choices.py:70 -#: netbox/ipam/choices.py:155 netbox/wireless/choices.py:26 +#: dcim/choices.py:100 ipam/choices.py:32 ipam/choices.py:50 +#: ipam/choices.py:70 ipam/choices.py:155 wireless/choices.py:26 msgid "Reserved" msgstr "Rezerve edilmiş" -#: netbox/dcim/choices.py:101 netbox/templates/dcim/device.html:259 +#: dcim/choices.py:101 templates/dcim/device.html:259 msgid "Available" msgstr "Mevcut" -#: netbox/dcim/choices.py:104 netbox/ipam/choices.py:33 -#: netbox/ipam/choices.py:51 netbox/ipam/choices.py:71 -#: netbox/ipam/choices.py:156 netbox/wireless/choices.py:28 +#: dcim/choices.py:104 ipam/choices.py:33 ipam/choices.py:51 +#: ipam/choices.py:71 ipam/choices.py:156 wireless/choices.py:28 msgid "Deprecated" msgstr "Kullanımdan kaldırıldı" -#: netbox/dcim/choices.py:114 -#: netbox/templates/dcim/inc/panels/racktype_dimensions.html:41 +#: dcim/choices.py:114 templates/dcim/inc/panels/racktype_dimensions.html:41 msgid "Millimeters" msgstr "Milimetre" -#: netbox/dcim/choices.py:115 netbox/dcim/choices.py:1553 +#: dcim/choices.py:115 dcim/choices.py:1553 msgid "Inches" msgstr "İnç" -#: netbox/dcim/choices.py:136 netbox/dcim/choices.py:207 -#: netbox/dcim/choices.py:254 +#: dcim/choices.py:136 dcim/choices.py:207 dcim/choices.py:254 msgid "Front to rear" msgstr "Önden arkaya" -#: netbox/dcim/choices.py:137 netbox/dcim/choices.py:208 -#: netbox/dcim/choices.py:255 +#: dcim/choices.py:137 dcim/choices.py:208 dcim/choices.py:255 msgid "Rear to front" msgstr "Arkadan öne" -#: netbox/dcim/choices.py:151 netbox/dcim/forms/bulk_edit.py:68 -#: netbox/dcim/forms/bulk_edit.py:87 netbox/dcim/forms/bulk_edit.py:173 -#: netbox/dcim/forms/bulk_edit.py:1405 netbox/dcim/forms/bulk_import.py:60 -#: netbox/dcim/forms/bulk_import.py:74 netbox/dcim/forms/bulk_import.py:137 -#: netbox/dcim/forms/bulk_import.py:566 netbox/dcim/forms/bulk_import.py:833 -#: netbox/dcim/forms/bulk_import.py:1088 netbox/dcim/forms/filtersets.py:234 -#: netbox/dcim/forms/model_forms.py:74 netbox/dcim/forms/model_forms.py:93 -#: netbox/dcim/forms/model_forms.py:170 netbox/dcim/forms/model_forms.py:1062 -#: netbox/dcim/forms/model_forms.py:1502 -#: netbox/dcim/forms/object_import.py:176 netbox/dcim/tables/devices.py:656 -#: netbox/dcim/tables/devices.py:869 netbox/dcim/tables/devices.py:954 -#: netbox/extras/tables/tables.py:223 netbox/ipam/tables/fhrp.py:59 -#: netbox/ipam/tables/ip.py:378 netbox/ipam/tables/services.py:44 -#: netbox/templates/dcim/interface.html:102 -#: netbox/templates/dcim/interface.html:309 -#: netbox/templates/dcim/location.html:41 netbox/templates/dcim/region.html:37 -#: netbox/templates/dcim/sitegroup.html:37 -#: netbox/templates/ipam/service.html:28 -#: netbox/templates/tenancy/contactgroup.html:29 -#: netbox/templates/tenancy/tenantgroup.html:37 -#: netbox/templates/virtualization/vminterface.html:39 -#: netbox/templates/wireless/wirelesslangroup.html:37 -#: netbox/tenancy/forms/bulk_edit.py:27 netbox/tenancy/forms/bulk_edit.py:61 -#: netbox/tenancy/forms/bulk_import.py:24 -#: netbox/tenancy/forms/bulk_import.py:58 -#: netbox/tenancy/forms/model_forms.py:25 -#: netbox/tenancy/forms/model_forms.py:68 -#: netbox/virtualization/forms/bulk_edit.py:207 -#: netbox/virtualization/forms/bulk_import.py:151 -#: netbox/virtualization/tables/virtualmachines.py:162 -#: netbox/wireless/forms/bulk_edit.py:24 -#: netbox/wireless/forms/bulk_import.py:21 -#: netbox/wireless/forms/model_forms.py:21 +#: dcim/choices.py:151 dcim/forms/bulk_edit.py:68 dcim/forms/bulk_edit.py:87 +#: dcim/forms/bulk_edit.py:173 dcim/forms/bulk_edit.py:1405 +#: dcim/forms/bulk_import.py:60 dcim/forms/bulk_import.py:74 +#: dcim/forms/bulk_import.py:137 dcim/forms/bulk_import.py:566 +#: dcim/forms/bulk_import.py:833 dcim/forms/bulk_import.py:1088 +#: dcim/forms/filtersets.py:234 dcim/forms/model_forms.py:74 +#: dcim/forms/model_forms.py:93 dcim/forms/model_forms.py:170 +#: dcim/forms/model_forms.py:1062 dcim/forms/model_forms.py:1502 +#: dcim/forms/object_import.py:176 dcim/tables/devices.py:656 +#: dcim/tables/devices.py:869 dcim/tables/devices.py:954 +#: extras/tables/tables.py:223 ipam/tables/fhrp.py:59 ipam/tables/ip.py:378 +#: ipam/tables/services.py:44 templates/dcim/interface.html:102 +#: templates/dcim/interface.html:309 templates/dcim/location.html:41 +#: templates/dcim/region.html:37 templates/dcim/sitegroup.html:37 +#: templates/ipam/service.html:28 templates/tenancy/contactgroup.html:29 +#: templates/tenancy/tenantgroup.html:37 +#: templates/virtualization/vminterface.html:39 +#: templates/wireless/wirelesslangroup.html:37 tenancy/forms/bulk_edit.py:27 +#: tenancy/forms/bulk_edit.py:61 tenancy/forms/bulk_import.py:24 +#: tenancy/forms/bulk_import.py:58 tenancy/forms/model_forms.py:25 +#: tenancy/forms/model_forms.py:68 virtualization/forms/bulk_edit.py:207 +#: virtualization/forms/bulk_import.py:151 +#: virtualization/tables/virtualmachines.py:162 wireless/forms/bulk_edit.py:24 +#: wireless/forms/bulk_import.py:21 wireless/forms/model_forms.py:21 msgid "Parent" msgstr "Ebeveyn" -#: netbox/dcim/choices.py:152 +#: dcim/choices.py:152 msgid "Child" msgstr "Çocuk" -#: netbox/dcim/choices.py:166 netbox/templates/dcim/device.html:340 -#: netbox/templates/dcim/rack.html:133 -#: netbox/templates/dcim/rack_elevation_list.html:20 -#: netbox/templates/dcim/rackreservation.html:76 +#: dcim/choices.py:166 templates/dcim/device.html:340 +#: templates/dcim/rack.html:133 templates/dcim/rack_elevation_list.html:20 +#: templates/dcim/rackreservation.html:76 msgid "Front" msgstr "Ön" -#: netbox/dcim/choices.py:167 netbox/templates/dcim/device.html:346 -#: netbox/templates/dcim/rack.html:139 -#: netbox/templates/dcim/rack_elevation_list.html:21 -#: netbox/templates/dcim/rackreservation.html:82 +#: dcim/choices.py:167 templates/dcim/device.html:346 +#: templates/dcim/rack.html:139 templates/dcim/rack_elevation_list.html:21 +#: templates/dcim/rackreservation.html:82 msgid "Rear" msgstr "Arka" -#: netbox/dcim/choices.py:186 netbox/dcim/choices.py:238 -#: netbox/virtualization/choices.py:46 +#: dcim/choices.py:186 dcim/choices.py:238 virtualization/choices.py:46 msgid "Staged" msgstr "Sahnelenmiş" -#: netbox/dcim/choices.py:188 +#: dcim/choices.py:188 msgid "Inventory" msgstr "Envanter" -#: netbox/dcim/choices.py:209 netbox/dcim/choices.py:256 +#: dcim/choices.py:209 dcim/choices.py:256 msgid "Left to right" msgstr "Soldan sağa" -#: netbox/dcim/choices.py:210 netbox/dcim/choices.py:257 +#: dcim/choices.py:210 dcim/choices.py:257 msgid "Right to left" msgstr "Sağdan sola" -#: netbox/dcim/choices.py:211 netbox/dcim/choices.py:258 +#: dcim/choices.py:211 dcim/choices.py:258 msgid "Side to rear" msgstr "Yandan arkaya" -#: netbox/dcim/choices.py:212 +#: dcim/choices.py:212 msgid "Rear to side" msgstr "Arkadan yana" -#: netbox/dcim/choices.py:213 +#: dcim/choices.py:213 msgid "Bottom to top" msgstr "Aşağıdan yukarıya" -#: netbox/dcim/choices.py:214 +#: dcim/choices.py:214 msgid "Top to bottom" msgstr "Yukarıdan aşağıya" -#: netbox/dcim/choices.py:215 netbox/dcim/choices.py:259 -#: netbox/dcim/choices.py:1303 +#: dcim/choices.py:215 dcim/choices.py:259 dcim/choices.py:1303 msgid "Passive" msgstr "Pasif" -#: netbox/dcim/choices.py:216 +#: dcim/choices.py:216 msgid "Mixed" msgstr "Karışık" -#: netbox/dcim/choices.py:484 netbox/dcim/choices.py:733 +#: dcim/choices.py:484 dcim/choices.py:733 msgid "NEMA (Non-locking)" msgstr "NEMA (Kilitsiz)" -#: netbox/dcim/choices.py:506 netbox/dcim/choices.py:755 +#: dcim/choices.py:506 dcim/choices.py:755 msgid "NEMA (Locking)" msgstr "NEMA (Kilitleme)" -#: netbox/dcim/choices.py:530 netbox/dcim/choices.py:779 +#: dcim/choices.py:530 dcim/choices.py:779 msgid "California Style" msgstr "Kaliforniya Tarzı" -#: netbox/dcim/choices.py:538 +#: dcim/choices.py:538 msgid "International/ITA" msgstr "Uluslararası/ITA" -#: netbox/dcim/choices.py:573 netbox/dcim/choices.py:814 +#: dcim/choices.py:573 dcim/choices.py:814 msgid "Proprietary" msgstr "Tescilli" -#: netbox/dcim/choices.py:581 netbox/dcim/choices.py:824 -#: netbox/dcim/choices.py:1219 netbox/dcim/choices.py:1221 -#: netbox/dcim/choices.py:1447 netbox/dcim/choices.py:1449 -#: netbox/netbox/navigation/menu.py:200 +#: dcim/choices.py:581 dcim/choices.py:824 dcim/choices.py:1219 +#: dcim/choices.py:1221 dcim/choices.py:1447 dcim/choices.py:1449 +#: netbox/navigation/menu.py:200 msgid "Other" msgstr "Diğer" -#: netbox/dcim/choices.py:787 +#: dcim/choices.py:787 msgid "ITA/International" msgstr "ITA/Uluslararası" -#: netbox/dcim/choices.py:854 +#: dcim/choices.py:854 msgid "Physical" msgstr "Fiziksel" -#: netbox/dcim/choices.py:855 netbox/dcim/choices.py:1023 +#: dcim/choices.py:855 dcim/choices.py:1023 msgid "Virtual" msgstr "Sanal" -#: netbox/dcim/choices.py:856 netbox/dcim/choices.py:1097 -#: netbox/dcim/forms/bulk_edit.py:1515 netbox/dcim/forms/filtersets.py:1330 -#: netbox/dcim/forms/model_forms.py:988 netbox/dcim/forms/model_forms.py:1397 -#: netbox/netbox/navigation/menu.py:140 netbox/netbox/navigation/menu.py:144 -#: netbox/templates/dcim/interface.html:210 +#: dcim/choices.py:856 dcim/choices.py:1097 dcim/forms/bulk_edit.py:1515 +#: dcim/forms/filtersets.py:1330 dcim/forms/model_forms.py:988 +#: dcim/forms/model_forms.py:1397 netbox/navigation/menu.py:140 +#: netbox/navigation/menu.py:144 templates/dcim/interface.html:210 msgid "Wireless" msgstr "Kablosuz" -#: netbox/dcim/choices.py:1021 +#: dcim/choices.py:1021 msgid "Virtual interfaces" msgstr "Sanal arayüzler" -#: netbox/dcim/choices.py:1024 netbox/dcim/forms/bulk_edit.py:1410 -#: netbox/dcim/forms/bulk_import.py:840 netbox/dcim/forms/model_forms.py:974 -#: netbox/dcim/tables/devices.py:660 netbox/templates/dcim/interface.html:106 -#: netbox/templates/virtualization/vminterface.html:43 -#: netbox/virtualization/forms/bulk_edit.py:212 -#: netbox/virtualization/forms/bulk_import.py:158 -#: netbox/virtualization/tables/virtualmachines.py:166 +#: dcim/choices.py:1024 dcim/forms/bulk_edit.py:1410 +#: dcim/forms/bulk_import.py:840 dcim/forms/model_forms.py:974 +#: dcim/tables/devices.py:660 templates/dcim/interface.html:106 +#: templates/virtualization/vminterface.html:43 +#: virtualization/forms/bulk_edit.py:212 +#: virtualization/forms/bulk_import.py:158 +#: virtualization/tables/virtualmachines.py:166 msgid "Bridge" msgstr "Köprü" -#: netbox/dcim/choices.py:1025 +#: dcim/choices.py:1025 msgid "Link Aggregation Group (LAG)" msgstr "Bağlantı Toplama Grubu (LAG)" -#: netbox/dcim/choices.py:1029 +#: dcim/choices.py:1029 msgid "Ethernet (fixed)" msgstr "Ethernet (sabit)" -#: netbox/dcim/choices.py:1044 +#: dcim/choices.py:1044 msgid "Ethernet (modular)" msgstr "Ethernet (modüler)" -#: netbox/dcim/choices.py:1081 +#: dcim/choices.py:1081 msgid "Ethernet (backplane)" msgstr "Ethernet (arka panel)" -#: netbox/dcim/choices.py:1113 +#: dcim/choices.py:1113 msgid "Cellular" msgstr "Hücresel" -#: netbox/dcim/choices.py:1165 netbox/dcim/forms/filtersets.py:383 -#: netbox/dcim/forms/filtersets.py:809 netbox/dcim/forms/filtersets.py:963 -#: netbox/dcim/forms/filtersets.py:1542 -#: netbox/templates/dcim/inventoryitem.html:52 -#: netbox/templates/dcim/virtualchassis_edit.html:54 +#: dcim/choices.py:1165 dcim/forms/filtersets.py:383 +#: dcim/forms/filtersets.py:809 dcim/forms/filtersets.py:963 +#: dcim/forms/filtersets.py:1542 templates/dcim/inventoryitem.html:52 +#: templates/dcim/virtualchassis_edit.html:54 msgid "Serial" msgstr "Seri" -#: netbox/dcim/choices.py:1180 +#: dcim/choices.py:1180 msgid "Coaxial" msgstr "Koaksiyel" -#: netbox/dcim/choices.py:1200 +#: dcim/choices.py:1200 msgid "Stacking" msgstr "İstifleme" -#: netbox/dcim/choices.py:1250 +#: dcim/choices.py:1250 msgid "Half" msgstr "Yarım" -#: netbox/dcim/choices.py:1251 +#: dcim/choices.py:1251 msgid "Full" msgstr "Dolu" -#: netbox/dcim/choices.py:1252 netbox/netbox/preferences.py:31 -#: netbox/wireless/choices.py:480 +#: dcim/choices.py:1252 netbox/preferences.py:31 wireless/choices.py:480 msgid "Auto" msgstr "Oto" -#: netbox/dcim/choices.py:1263 +#: dcim/choices.py:1263 msgid "Access" msgstr "Erişim" -#: netbox/dcim/choices.py:1264 netbox/ipam/tables/vlans.py:172 -#: netbox/ipam/tables/vlans.py:217 -#: netbox/templates/dcim/inc/interface_vlans_table.html:7 +#: dcim/choices.py:1264 ipam/tables/vlans.py:172 ipam/tables/vlans.py:217 +#: templates/dcim/inc/interface_vlans_table.html:7 msgid "Tagged" msgstr "Etiketlenmiş" -#: netbox/dcim/choices.py:1265 +#: dcim/choices.py:1265 msgid "Tagged (All)" msgstr "Etiketlenmiş (Tümü)" -#: netbox/dcim/choices.py:1294 +#: dcim/choices.py:1294 msgid "IEEE Standard" msgstr "IEEE Standardı" -#: netbox/dcim/choices.py:1305 +#: dcim/choices.py:1305 msgid "Passive 24V (2-pair)" msgstr "Pasif 24V (2 çift)" -#: netbox/dcim/choices.py:1306 +#: dcim/choices.py:1306 msgid "Passive 24V (4-pair)" msgstr "Pasif 24V (4 çift)" -#: netbox/dcim/choices.py:1307 +#: dcim/choices.py:1307 msgid "Passive 48V (2-pair)" msgstr "Pasif 48V (2 çift)" -#: netbox/dcim/choices.py:1308 +#: dcim/choices.py:1308 msgid "Passive 48V (4-pair)" msgstr "Pasif 48V (4 çift)" -#: netbox/dcim/choices.py:1378 netbox/dcim/choices.py:1488 +#: dcim/choices.py:1378 dcim/choices.py:1488 msgid "Copper" msgstr "Bakır" -#: netbox/dcim/choices.py:1401 +#: dcim/choices.py:1401 msgid "Fiber Optic" msgstr "Fiber Optik" -#: netbox/dcim/choices.py:1434 netbox/dcim/choices.py:1517 +#: dcim/choices.py:1434 dcim/choices.py:1517 msgid "USB" msgstr "USB" -#: netbox/dcim/choices.py:1504 +#: dcim/choices.py:1504 msgid "Fiber" msgstr "Fiber" -#: netbox/dcim/choices.py:1529 netbox/dcim/forms/filtersets.py:1227 +#: dcim/choices.py:1529 dcim/forms/filtersets.py:1227 msgid "Connected" msgstr "Bağlı" -#: netbox/dcim/choices.py:1548 netbox/wireless/choices.py:497 +#: dcim/choices.py:1548 wireless/choices.py:497 msgid "Kilometers" msgstr "Kilometre" -#: netbox/dcim/choices.py:1549 netbox/templates/dcim/cable_trace.html:65 -#: netbox/wireless/choices.py:498 +#: dcim/choices.py:1549 templates/dcim/cable_trace.html:65 +#: wireless/choices.py:498 msgid "Meters" msgstr "Sayaçlar" -#: netbox/dcim/choices.py:1550 +#: dcim/choices.py:1550 msgid "Centimeters" msgstr "Santimetre" -#: netbox/dcim/choices.py:1551 netbox/wireless/choices.py:499 +#: dcim/choices.py:1551 wireless/choices.py:499 msgid "Miles" msgstr "Mil" -#: netbox/dcim/choices.py:1552 netbox/templates/dcim/cable_trace.html:66 -#: netbox/wireless/choices.py:500 +#: dcim/choices.py:1552 templates/dcim/cable_trace.html:66 +#: wireless/choices.py:500 msgid "Feet" msgstr "Feet" -#: netbox/dcim/choices.py:1568 netbox/templates/dcim/device.html:327 -#: netbox/templates/dcim/rack.html:107 +#: dcim/choices.py:1568 templates/dcim/device.html:327 +#: templates/dcim/rack.html:107 msgid "Kilograms" msgstr "Kilogram" -#: netbox/dcim/choices.py:1569 +#: dcim/choices.py:1569 msgid "Grams" msgstr "Gramlar" -#: netbox/dcim/choices.py:1570 netbox/templates/dcim/device.html:328 -#: netbox/templates/dcim/rack.html:108 +#: dcim/choices.py:1570 templates/dcim/device.html:328 +#: templates/dcim/rack.html:108 msgid "Pounds" msgstr "Pound'lar" -#: netbox/dcim/choices.py:1571 +#: dcim/choices.py:1571 msgid "Ounces" msgstr "ons" -#: netbox/dcim/choices.py:1618 +#: dcim/choices.py:1618 msgid "Redundant" msgstr "Yedekli" -#: netbox/dcim/choices.py:1639 +#: dcim/choices.py:1639 msgid "Single phase" msgstr "Tek fazlı" -#: netbox/dcim/choices.py:1640 +#: dcim/choices.py:1640 msgid "Three-phase" msgstr "Üç fazlı" -#: netbox/dcim/fields.py:45 +#: dcim/fields.py:45 #, python-brace-format msgid "Invalid MAC address format: {value}" msgstr "Geçersiz MAC adresi biçimi: {value}" -#: netbox/dcim/fields.py:71 +#: dcim/fields.py:71 #, python-brace-format msgid "Invalid WWN format: {value}" msgstr "Geçersiz WWN biçimi: {value}" -#: netbox/dcim/filtersets.py:86 +#: dcim/filtersets.py:86 msgid "Parent region (ID)" msgstr "Ana bölge (ID)" -#: netbox/dcim/filtersets.py:92 +#: dcim/filtersets.py:92 msgid "Parent region (slug)" msgstr "Ana bölge (kısa ad)" -#: netbox/dcim/filtersets.py:116 +#: dcim/filtersets.py:116 msgid "Parent site group (ID)" msgstr "Ana site grubu (ID)" -#: netbox/dcim/filtersets.py:122 +#: dcim/filtersets.py:122 msgid "Parent site group (slug)" msgstr "Ana site grubu (kısa ad)" -#: netbox/dcim/filtersets.py:164 netbox/extras/filtersets.py:364 -#: netbox/ipam/filtersets.py:841 netbox/ipam/filtersets.py:993 +#: dcim/filtersets.py:164 extras/filtersets.py:364 ipam/filtersets.py:841 +#: ipam/filtersets.py:993 msgid "Group (ID)" msgstr "Grup (ID)" -#: netbox/dcim/filtersets.py:170 +#: dcim/filtersets.py:170 msgid "Group (slug)" msgstr "Grup (kısa ad)" -#: netbox/dcim/filtersets.py:176 netbox/dcim/filtersets.py:181 +#: dcim/filtersets.py:176 dcim/filtersets.py:181 msgid "AS (ID)" msgstr "AS (ID)" -#: netbox/dcim/filtersets.py:246 +#: dcim/filtersets.py:246 msgid "Parent location (ID)" msgstr "Ana konum (ID)" -#: netbox/dcim/filtersets.py:252 +#: dcim/filtersets.py:252 msgid "Parent location (slug)" msgstr "Ana konum (kısa ad)" -#: netbox/dcim/filtersets.py:258 netbox/dcim/filtersets.py:369 -#: netbox/dcim/filtersets.py:490 netbox/dcim/filtersets.py:1057 -#: netbox/dcim/filtersets.py:1404 netbox/dcim/filtersets.py:2182 +#: dcim/filtersets.py:258 dcim/filtersets.py:369 dcim/filtersets.py:490 +#: dcim/filtersets.py:1057 dcim/filtersets.py:1404 dcim/filtersets.py:2182 msgid "Location (ID)" msgstr "Konum (ID)" -#: netbox/dcim/filtersets.py:265 netbox/dcim/filtersets.py:376 -#: netbox/dcim/filtersets.py:497 netbox/dcim/filtersets.py:1410 -#: netbox/extras/filtersets.py:542 +#: dcim/filtersets.py:265 dcim/filtersets.py:376 dcim/filtersets.py:497 +#: dcim/filtersets.py:1410 extras/filtersets.py:542 msgid "Location (slug)" msgstr "Konum (kısa ad)" -#: netbox/dcim/filtersets.py:296 netbox/dcim/filtersets.py:381 -#: netbox/dcim/filtersets.py:539 netbox/dcim/filtersets.py:678 -#: netbox/dcim/filtersets.py:882 netbox/dcim/filtersets.py:933 -#: netbox/dcim/filtersets.py:973 netbox/dcim/filtersets.py:1306 -#: netbox/dcim/filtersets.py:1840 +#: dcim/filtersets.py:296 dcim/filtersets.py:381 dcim/filtersets.py:539 +#: dcim/filtersets.py:678 dcim/filtersets.py:882 dcim/filtersets.py:933 +#: dcim/filtersets.py:973 dcim/filtersets.py:1306 dcim/filtersets.py:1840 msgid "Manufacturer (ID)" msgstr "Üretici (ID)" -#: netbox/dcim/filtersets.py:302 netbox/dcim/filtersets.py:387 -#: netbox/dcim/filtersets.py:545 netbox/dcim/filtersets.py:684 -#: netbox/dcim/filtersets.py:888 netbox/dcim/filtersets.py:939 -#: netbox/dcim/filtersets.py:979 netbox/dcim/filtersets.py:1312 -#: netbox/dcim/filtersets.py:1846 +#: dcim/filtersets.py:302 dcim/filtersets.py:387 dcim/filtersets.py:545 +#: dcim/filtersets.py:684 dcim/filtersets.py:888 dcim/filtersets.py:939 +#: dcim/filtersets.py:979 dcim/filtersets.py:1312 dcim/filtersets.py:1846 msgid "Manufacturer (slug)" msgstr "Üretici (kısa ad)" -#: netbox/dcim/filtersets.py:393 +#: dcim/filtersets.py:393 msgid "Rack type (slug)" msgstr "Raf tipi (sümüklü böcek)" -#: netbox/dcim/filtersets.py:397 +#: dcim/filtersets.py:397 msgid "Rack type (ID)" msgstr "Raf tipi (ID)" -#: netbox/dcim/filtersets.py:411 netbox/dcim/filtersets.py:892 -#: netbox/dcim/filtersets.py:994 netbox/dcim/filtersets.py:1850 -#: netbox/ipam/filtersets.py:381 netbox/ipam/filtersets.py:493 -#: netbox/ipam/filtersets.py:1003 netbox/virtualization/filtersets.py:210 +#: dcim/filtersets.py:411 dcim/filtersets.py:892 dcim/filtersets.py:994 +#: dcim/filtersets.py:1850 ipam/filtersets.py:381 ipam/filtersets.py:493 +#: ipam/filtersets.py:1003 virtualization/filtersets.py:210 msgid "Role (ID)" msgstr "Rol (ID)" -#: netbox/dcim/filtersets.py:417 netbox/dcim/filtersets.py:898 -#: netbox/dcim/filtersets.py:1000 netbox/dcim/filtersets.py:1856 -#: netbox/extras/filtersets.py:558 netbox/ipam/filtersets.py:387 -#: netbox/ipam/filtersets.py:499 netbox/ipam/filtersets.py:1009 -#: netbox/virtualization/filtersets.py:216 +#: dcim/filtersets.py:417 dcim/filtersets.py:898 dcim/filtersets.py:1000 +#: dcim/filtersets.py:1856 extras/filtersets.py:558 ipam/filtersets.py:387 +#: ipam/filtersets.py:499 ipam/filtersets.py:1009 +#: virtualization/filtersets.py:216 msgid "Role (slug)" msgstr "Rol (kısa ad)" -#: netbox/dcim/filtersets.py:447 netbox/dcim/filtersets.py:1062 -#: netbox/dcim/filtersets.py:1415 netbox/dcim/filtersets.py:2244 +#: dcim/filtersets.py:447 dcim/filtersets.py:1062 dcim/filtersets.py:1415 +#: dcim/filtersets.py:2244 msgid "Rack (ID)" msgstr "Raf (ID)" -#: netbox/dcim/filtersets.py:507 netbox/extras/filtersets.py:293 -#: netbox/extras/filtersets.py:337 netbox/extras/filtersets.py:359 -#: netbox/extras/filtersets.py:419 netbox/users/filtersets.py:113 -#: netbox/users/filtersets.py:180 +#: dcim/filtersets.py:507 extras/filtersets.py:293 extras/filtersets.py:337 +#: extras/filtersets.py:359 extras/filtersets.py:419 users/filtersets.py:113 +#: users/filtersets.py:180 msgid "User (name)" msgstr "Kullanıcı (isim)" -#: netbox/dcim/filtersets.py:549 +#: dcim/filtersets.py:549 msgid "Default platform (ID)" msgstr "Varsayılan platform (ID)" -#: netbox/dcim/filtersets.py:555 +#: dcim/filtersets.py:555 msgid "Default platform (slug)" msgstr "Varsayılan platform (kısa ad)" -#: netbox/dcim/filtersets.py:558 netbox/dcim/forms/filtersets.py:517 +#: dcim/filtersets.py:558 dcim/forms/filtersets.py:517 msgid "Has a front image" msgstr "Ön resmi var" -#: netbox/dcim/filtersets.py:562 netbox/dcim/forms/filtersets.py:524 +#: dcim/filtersets.py:562 dcim/forms/filtersets.py:524 msgid "Has a rear image" msgstr "Arka görüntüsü var" -#: netbox/dcim/filtersets.py:567 netbox/dcim/filtersets.py:688 -#: netbox/dcim/filtersets.py:1131 netbox/dcim/forms/filtersets.py:531 -#: netbox/dcim/forms/filtersets.py:627 netbox/dcim/forms/filtersets.py:848 +#: dcim/filtersets.py:567 dcim/filtersets.py:688 dcim/filtersets.py:1131 +#: dcim/forms/filtersets.py:531 dcim/forms/filtersets.py:627 +#: dcim/forms/filtersets.py:848 msgid "Has console ports" msgstr "Konsol bağlantı noktaları vardır" -#: netbox/dcim/filtersets.py:571 netbox/dcim/filtersets.py:692 -#: netbox/dcim/filtersets.py:1135 netbox/dcim/forms/filtersets.py:538 -#: netbox/dcim/forms/filtersets.py:634 netbox/dcim/forms/filtersets.py:855 +#: dcim/filtersets.py:571 dcim/filtersets.py:692 dcim/filtersets.py:1135 +#: dcim/forms/filtersets.py:538 dcim/forms/filtersets.py:634 +#: dcim/forms/filtersets.py:855 msgid "Has console server ports" msgstr "Konsol sunucusu bağlantı noktaları vardır" -#: netbox/dcim/filtersets.py:575 netbox/dcim/filtersets.py:696 -#: netbox/dcim/filtersets.py:1139 netbox/dcim/forms/filtersets.py:545 -#: netbox/dcim/forms/filtersets.py:641 netbox/dcim/forms/filtersets.py:862 +#: dcim/filtersets.py:575 dcim/filtersets.py:696 dcim/filtersets.py:1139 +#: dcim/forms/filtersets.py:545 dcim/forms/filtersets.py:641 +#: dcim/forms/filtersets.py:862 msgid "Has power ports" msgstr "Güç bağlantı noktaları vardır" -#: netbox/dcim/filtersets.py:579 netbox/dcim/filtersets.py:700 -#: netbox/dcim/filtersets.py:1143 netbox/dcim/forms/filtersets.py:552 -#: netbox/dcim/forms/filtersets.py:648 netbox/dcim/forms/filtersets.py:869 +#: dcim/filtersets.py:579 dcim/filtersets.py:700 dcim/filtersets.py:1143 +#: dcim/forms/filtersets.py:552 dcim/forms/filtersets.py:648 +#: dcim/forms/filtersets.py:869 msgid "Has power outlets" msgstr "Elektrik prizleri var" -#: netbox/dcim/filtersets.py:583 netbox/dcim/filtersets.py:704 -#: netbox/dcim/filtersets.py:1147 netbox/dcim/forms/filtersets.py:559 -#: netbox/dcim/forms/filtersets.py:655 netbox/dcim/forms/filtersets.py:876 +#: dcim/filtersets.py:583 dcim/filtersets.py:704 dcim/filtersets.py:1147 +#: dcim/forms/filtersets.py:559 dcim/forms/filtersets.py:655 +#: dcim/forms/filtersets.py:876 msgid "Has interfaces" msgstr "Arayüzleri vardır" -#: netbox/dcim/filtersets.py:587 netbox/dcim/filtersets.py:708 -#: netbox/dcim/filtersets.py:1151 netbox/dcim/forms/filtersets.py:566 -#: netbox/dcim/forms/filtersets.py:662 netbox/dcim/forms/filtersets.py:883 +#: dcim/filtersets.py:587 dcim/filtersets.py:708 dcim/filtersets.py:1151 +#: dcim/forms/filtersets.py:566 dcim/forms/filtersets.py:662 +#: dcim/forms/filtersets.py:883 msgid "Has pass-through ports" msgstr "Geçiş bağlantı noktaları vardır" -#: netbox/dcim/filtersets.py:591 netbox/dcim/filtersets.py:1155 -#: netbox/dcim/forms/filtersets.py:580 +#: dcim/filtersets.py:591 dcim/filtersets.py:1155 dcim/forms/filtersets.py:580 msgid "Has module bays" msgstr "Modül yuvaları vardır" -#: netbox/dcim/filtersets.py:595 netbox/dcim/filtersets.py:1159 -#: netbox/dcim/forms/filtersets.py:573 +#: dcim/filtersets.py:595 dcim/filtersets.py:1159 dcim/forms/filtersets.py:573 msgid "Has device bays" msgstr "Cihaz yuvaları var" -#: netbox/dcim/filtersets.py:599 netbox/dcim/forms/filtersets.py:587 +#: dcim/filtersets.py:599 dcim/forms/filtersets.py:587 msgid "Has inventory items" msgstr "Envanter kalemleri var" -#: netbox/dcim/filtersets.py:756 netbox/dcim/filtersets.py:989 -#: netbox/dcim/filtersets.py:1436 +#: dcim/filtersets.py:756 dcim/filtersets.py:989 dcim/filtersets.py:1436 msgid "Device type (ID)" msgstr "Cihaz tipi (ID)" -#: netbox/dcim/filtersets.py:772 netbox/dcim/filtersets.py:1317 +#: dcim/filtersets.py:772 dcim/filtersets.py:1317 msgid "Module type (ID)" msgstr "Modül tipi (ID)" -#: netbox/dcim/filtersets.py:804 netbox/dcim/filtersets.py:1591 +#: dcim/filtersets.py:804 dcim/filtersets.py:1591 msgid "Power port (ID)" msgstr "Güç bağlantı noktası (ID)" -#: netbox/dcim/filtersets.py:878 netbox/dcim/filtersets.py:1836 +#: dcim/filtersets.py:878 dcim/filtersets.py:1836 msgid "Parent inventory item (ID)" msgstr "Ana envanter kalemi (ID)" -#: netbox/dcim/filtersets.py:921 netbox/dcim/filtersets.py:947 -#: netbox/dcim/filtersets.py:1127 netbox/virtualization/filtersets.py:238 +#: dcim/filtersets.py:921 dcim/filtersets.py:947 dcim/filtersets.py:1127 +#: virtualization/filtersets.py:238 msgid "Config template (ID)" msgstr "Yapılandırma şablonu (ID)" -#: netbox/dcim/filtersets.py:985 +#: dcim/filtersets.py:985 msgid "Device type (slug)" msgstr "Cihaz tipi (kısa ad)" -#: netbox/dcim/filtersets.py:1005 +#: dcim/filtersets.py:1005 msgid "Parent Device (ID)" msgstr "Ana Cihaz (ID)" -#: netbox/dcim/filtersets.py:1009 netbox/virtualization/filtersets.py:220 +#: dcim/filtersets.py:1009 virtualization/filtersets.py:220 msgid "Platform (ID)" msgstr "Platform (ID)" -#: netbox/dcim/filtersets.py:1015 netbox/extras/filtersets.py:569 -#: netbox/virtualization/filtersets.py:226 +#: dcim/filtersets.py:1015 extras/filtersets.py:569 +#: virtualization/filtersets.py:226 msgid "Platform (slug)" msgstr "Platform (kısa ad)" -#: netbox/dcim/filtersets.py:1051 netbox/dcim/filtersets.py:1399 -#: netbox/dcim/filtersets.py:1934 netbox/dcim/filtersets.py:2176 -#: netbox/dcim/filtersets.py:2235 +#: dcim/filtersets.py:1051 dcim/filtersets.py:1399 dcim/filtersets.py:1934 +#: dcim/filtersets.py:2176 dcim/filtersets.py:2235 msgid "Site name (slug)" msgstr "Site adı (kısa ad)" -#: netbox/dcim/filtersets.py:1067 +#: dcim/filtersets.py:1067 msgid "Parent bay (ID)" msgstr "Ebeveyn bölmesi (ID)" -#: netbox/dcim/filtersets.py:1071 +#: dcim/filtersets.py:1071 msgid "VM cluster (ID)" msgstr "VM kümesi (ID)" -#: netbox/dcim/filtersets.py:1077 netbox/extras/filtersets.py:591 -#: netbox/virtualization/filtersets.py:136 +#: dcim/filtersets.py:1077 extras/filtersets.py:591 +#: virtualization/filtersets.py:136 msgid "Cluster group (slug)" msgstr "Küme grubu (kısa ad)" -#: netbox/dcim/filtersets.py:1082 netbox/virtualization/filtersets.py:130 +#: dcim/filtersets.py:1082 virtualization/filtersets.py:130 msgid "Cluster group (ID)" msgstr "Küme grubu (ID)" -#: netbox/dcim/filtersets.py:1088 +#: dcim/filtersets.py:1088 msgid "Device model (slug)" msgstr "Cihaz modeli (kısa ad)" -#: netbox/dcim/filtersets.py:1099 netbox/dcim/forms/bulk_edit.py:516 +#: dcim/filtersets.py:1099 dcim/forms/bulk_edit.py:516 msgid "Is full depth" msgstr "Tam derinlik mi" -#: netbox/dcim/filtersets.py:1103 netbox/dcim/forms/common.py:18 -#: netbox/dcim/forms/filtersets.py:818 netbox/dcim/forms/filtersets.py:1385 -#: netbox/dcim/models/device_components.py:518 -#: netbox/virtualization/filtersets.py:230 -#: netbox/virtualization/filtersets.py:301 -#: netbox/virtualization/forms/filtersets.py:172 -#: netbox/virtualization/forms/filtersets.py:223 +#: dcim/filtersets.py:1103 dcim/forms/common.py:18 +#: dcim/forms/filtersets.py:818 dcim/forms/filtersets.py:1385 +#: dcim/models/device_components.py:518 virtualization/filtersets.py:230 +#: virtualization/filtersets.py:301 virtualization/forms/filtersets.py:172 +#: virtualization/forms/filtersets.py:223 msgid "MAC address" msgstr "MAC adresi" -#: netbox/dcim/filtersets.py:1110 netbox/dcim/filtersets.py:1274 -#: netbox/dcim/forms/filtersets.py:827 netbox/dcim/forms/filtersets.py:930 -#: netbox/virtualization/filtersets.py:234 -#: netbox/virtualization/forms/filtersets.py:176 +#: dcim/filtersets.py:1110 dcim/filtersets.py:1274 +#: dcim/forms/filtersets.py:827 dcim/forms/filtersets.py:930 +#: virtualization/filtersets.py:234 virtualization/forms/filtersets.py:176 msgid "Has a primary IP" msgstr "Birincil IP'ye sahiptir" -#: netbox/dcim/filtersets.py:1114 +#: dcim/filtersets.py:1114 msgid "Has an out-of-band IP" msgstr "Bant dışı bir IP'ye sahiptir" -#: netbox/dcim/filtersets.py:1119 +#: dcim/filtersets.py:1119 msgid "Virtual chassis (ID)" msgstr "Sanal kasa (ID)" -#: netbox/dcim/filtersets.py:1123 +#: dcim/filtersets.py:1123 msgid "Is a virtual chassis member" msgstr "Sanal bir şasi üyesidir" -#: netbox/dcim/filtersets.py:1164 +#: dcim/filtersets.py:1164 msgid "OOB IP (ID)" msgstr "OOB İP (KİMLİĞİ)" -#: netbox/dcim/filtersets.py:1168 +#: dcim/filtersets.py:1168 msgid "Has virtual device context" msgstr "Sanal cihaz bağlamına sahiptir" -#: netbox/dcim/filtersets.py:1257 +#: dcim/filtersets.py:1257 msgid "VDC (ID)" msgstr "VDC (KİMLİK)" -#: netbox/dcim/filtersets.py:1262 +#: dcim/filtersets.py:1262 msgid "Device model" msgstr "Cihaz modeli" -#: netbox/dcim/filtersets.py:1267 netbox/ipam/filtersets.py:632 -#: netbox/vpn/filtersets.py:102 netbox/vpn/filtersets.py:401 +#: dcim/filtersets.py:1267 ipam/filtersets.py:632 vpn/filtersets.py:102 +#: vpn/filtersets.py:401 msgid "Interface (ID)" msgstr "Arayüz (ID)" -#: netbox/dcim/filtersets.py:1323 +#: dcim/filtersets.py:1323 msgid "Module type (model)" msgstr "Modül tipi (model)" -#: netbox/dcim/filtersets.py:1329 +#: dcim/filtersets.py:1329 msgid "Module bay (ID)" msgstr "Modül yuvası (ID)" -#: netbox/dcim/filtersets.py:1333 netbox/dcim/filtersets.py:1425 -#: netbox/ipam/filtersets.py:611 netbox/ipam/filtersets.py:851 -#: netbox/ipam/filtersets.py:1115 netbox/virtualization/filtersets.py:161 -#: netbox/vpn/filtersets.py:379 +#: dcim/filtersets.py:1333 dcim/filtersets.py:1425 ipam/filtersets.py:611 +#: ipam/filtersets.py:851 ipam/filtersets.py:1115 +#: virtualization/filtersets.py:161 vpn/filtersets.py:379 msgid "Device (ID)" msgstr "Cihaz (ID)" -#: netbox/dcim/filtersets.py:1421 +#: dcim/filtersets.py:1421 msgid "Rack (name)" msgstr "Raf (isim)" -#: netbox/dcim/filtersets.py:1431 netbox/ipam/filtersets.py:606 -#: netbox/ipam/filtersets.py:846 netbox/ipam/filtersets.py:1121 -#: netbox/vpn/filtersets.py:374 +#: dcim/filtersets.py:1431 ipam/filtersets.py:606 ipam/filtersets.py:846 +#: ipam/filtersets.py:1121 vpn/filtersets.py:374 msgid "Device (name)" msgstr "Cihaz (isim)" -#: netbox/dcim/filtersets.py:1442 +#: dcim/filtersets.py:1442 msgid "Device type (model)" msgstr "Cihaz tipi (model)" -#: netbox/dcim/filtersets.py:1447 +#: dcim/filtersets.py:1447 msgid "Device role (ID)" msgstr "Cihaz rolü (ID)" -#: netbox/dcim/filtersets.py:1453 +#: dcim/filtersets.py:1453 msgid "Device role (slug)" msgstr "Cihaz rolü (kısa ad)" -#: netbox/dcim/filtersets.py:1458 +#: dcim/filtersets.py:1458 msgid "Virtual Chassis (ID)" msgstr "Sanal Kasa (ID)" -#: netbox/dcim/filtersets.py:1464 netbox/dcim/forms/filtersets.py:109 -#: netbox/dcim/tables/devices.py:206 netbox/netbox/navigation/menu.py:79 -#: netbox/templates/dcim/device.html:120 -#: netbox/templates/dcim/device_edit.html:93 -#: netbox/templates/dcim/virtualchassis.html:20 -#: netbox/templates/dcim/virtualchassis_add.html:8 -#: netbox/templates/dcim/virtualchassis_edit.html:24 +#: dcim/filtersets.py:1464 dcim/forms/filtersets.py:109 +#: dcim/tables/devices.py:206 netbox/navigation/menu.py:79 +#: templates/dcim/device.html:120 templates/dcim/device_edit.html:93 +#: templates/dcim/virtualchassis.html:20 +#: templates/dcim/virtualchassis_add.html:8 +#: templates/dcim/virtualchassis_edit.html:24 msgid "Virtual Chassis" msgstr "Sanal Şasi" -#: netbox/dcim/filtersets.py:1488 +#: dcim/filtersets.py:1488 msgid "Module (ID)" msgstr "Modül (ID)" -#: netbox/dcim/filtersets.py:1495 +#: dcim/filtersets.py:1495 msgid "Cable (ID)" msgstr "Kablo (ID)" -#: netbox/dcim/filtersets.py:1604 netbox/ipam/forms/bulk_import.py:189 -#: netbox/vpn/forms/bulk_import.py:308 +#: dcim/filtersets.py:1604 ipam/forms/bulk_import.py:189 +#: vpn/forms/bulk_import.py:308 msgid "Assigned VLAN" msgstr "Atanmış VLAN" -#: netbox/dcim/filtersets.py:1608 +#: dcim/filtersets.py:1608 msgid "Assigned VID" msgstr "Atanmış VID" -#: netbox/dcim/filtersets.py:1613 netbox/dcim/forms/bulk_edit.py:1489 -#: netbox/dcim/forms/bulk_import.py:891 netbox/dcim/forms/filtersets.py:1428 -#: netbox/dcim/forms/model_forms.py:1378 -#: netbox/dcim/models/device_components.py:711 -#: netbox/dcim/tables/devices.py:626 netbox/ipam/filtersets.py:316 -#: netbox/ipam/filtersets.py:327 netbox/ipam/filtersets.py:483 -#: netbox/ipam/filtersets.py:584 netbox/ipam/filtersets.py:595 -#: netbox/ipam/forms/bulk_edit.py:241 netbox/ipam/forms/bulk_edit.py:297 -#: netbox/ipam/forms/bulk_edit.py:339 netbox/ipam/forms/bulk_import.py:157 -#: netbox/ipam/forms/bulk_import.py:243 netbox/ipam/forms/bulk_import.py:279 -#: netbox/ipam/forms/filtersets.py:67 netbox/ipam/forms/filtersets.py:172 -#: netbox/ipam/forms/filtersets.py:309 netbox/ipam/forms/model_forms.py:62 -#: netbox/ipam/forms/model_forms.py:202 netbox/ipam/forms/model_forms.py:247 -#: netbox/ipam/forms/model_forms.py:300 netbox/ipam/forms/model_forms.py:431 -#: netbox/ipam/forms/model_forms.py:445 netbox/ipam/forms/model_forms.py:459 -#: netbox/ipam/models/ip.py:233 netbox/ipam/models/ip.py:512 -#: netbox/ipam/models/ip.py:720 netbox/ipam/models/vrfs.py:62 -#: netbox/ipam/tables/ip.py:242 netbox/ipam/tables/ip.py:309 -#: netbox/ipam/tables/ip.py:360 netbox/ipam/tables/ip.py:450 -#: netbox/templates/dcim/interface.html:133 -#: netbox/templates/ipam/ipaddress.html:18 -#: netbox/templates/ipam/iprange.html:40 netbox/templates/ipam/prefix.html:19 -#: netbox/templates/ipam/vrf.html:7 netbox/templates/ipam/vrf.html:13 -#: netbox/templates/virtualization/vminterface.html:47 -#: netbox/virtualization/forms/bulk_edit.py:261 -#: netbox/virtualization/forms/bulk_import.py:171 -#: netbox/virtualization/forms/filtersets.py:228 -#: netbox/virtualization/forms/model_forms.py:344 -#: netbox/virtualization/models/virtualmachines.py:355 -#: netbox/virtualization/tables/virtualmachines.py:143 +#: dcim/filtersets.py:1613 dcim/forms/bulk_edit.py:1489 +#: dcim/forms/bulk_import.py:891 dcim/forms/filtersets.py:1428 +#: dcim/forms/model_forms.py:1378 dcim/models/device_components.py:711 +#: dcim/tables/devices.py:626 ipam/filtersets.py:316 ipam/filtersets.py:327 +#: ipam/filtersets.py:483 ipam/filtersets.py:584 ipam/filtersets.py:595 +#: ipam/forms/bulk_edit.py:242 ipam/forms/bulk_edit.py:298 +#: ipam/forms/bulk_edit.py:340 ipam/forms/bulk_import.py:157 +#: ipam/forms/bulk_import.py:243 ipam/forms/bulk_import.py:279 +#: ipam/forms/filtersets.py:67 ipam/forms/filtersets.py:172 +#: ipam/forms/filtersets.py:309 ipam/forms/model_forms.py:62 +#: ipam/forms/model_forms.py:202 ipam/forms/model_forms.py:247 +#: ipam/forms/model_forms.py:300 ipam/forms/model_forms.py:431 +#: ipam/forms/model_forms.py:445 ipam/forms/model_forms.py:459 +#: ipam/models/ip.py:233 ipam/models/ip.py:512 ipam/models/ip.py:720 +#: ipam/models/vrfs.py:62 ipam/tables/ip.py:242 ipam/tables/ip.py:309 +#: ipam/tables/ip.py:360 ipam/tables/ip.py:450 +#: templates/dcim/interface.html:133 templates/ipam/ipaddress.html:18 +#: templates/ipam/iprange.html:40 templates/ipam/prefix.html:19 +#: templates/ipam/vrf.html:7 templates/ipam/vrf.html:13 +#: templates/virtualization/vminterface.html:47 +#: virtualization/forms/bulk_edit.py:261 +#: virtualization/forms/bulk_import.py:171 +#: virtualization/forms/filtersets.py:228 +#: virtualization/forms/model_forms.py:344 +#: virtualization/models/virtualmachines.py:355 +#: virtualization/tables/virtualmachines.py:143 msgid "VRF" msgstr "VRF" -#: netbox/dcim/filtersets.py:1619 netbox/ipam/filtersets.py:322 -#: netbox/ipam/filtersets.py:333 netbox/ipam/filtersets.py:489 -#: netbox/ipam/filtersets.py:590 netbox/ipam/filtersets.py:601 +#: dcim/filtersets.py:1619 ipam/filtersets.py:322 ipam/filtersets.py:333 +#: ipam/filtersets.py:489 ipam/filtersets.py:590 ipam/filtersets.py:601 msgid "VRF (RD)" msgstr "VRF (RD)" -#: netbox/dcim/filtersets.py:1624 netbox/ipam/filtersets.py:1030 -#: netbox/vpn/filtersets.py:342 +#: dcim/filtersets.py:1624 ipam/filtersets.py:1030 vpn/filtersets.py:342 msgid "L2VPN (ID)" msgstr "L2VPN (KİMLİĞİ)" -#: netbox/dcim/filtersets.py:1630 netbox/dcim/forms/filtersets.py:1433 -#: netbox/dcim/tables/devices.py:570 netbox/ipam/filtersets.py:1036 -#: netbox/ipam/forms/filtersets.py:518 netbox/ipam/tables/vlans.py:137 -#: netbox/templates/dcim/interface.html:93 netbox/templates/ipam/vlan.html:66 -#: netbox/templates/vpn/l2vpntermination.html:12 -#: netbox/virtualization/forms/filtersets.py:233 -#: netbox/vpn/forms/bulk_import.py:280 netbox/vpn/forms/filtersets.py:246 -#: netbox/vpn/forms/model_forms.py:409 netbox/vpn/forms/model_forms.py:427 -#: netbox/vpn/models/l2vpn.py:63 netbox/vpn/tables/l2vpn.py:55 +#: dcim/filtersets.py:1630 dcim/forms/filtersets.py:1433 +#: dcim/tables/devices.py:570 ipam/filtersets.py:1036 +#: ipam/forms/filtersets.py:518 ipam/tables/vlans.py:137 +#: templates/dcim/interface.html:93 templates/ipam/vlan.html:66 +#: templates/vpn/l2vpntermination.html:12 +#: virtualization/forms/filtersets.py:233 vpn/forms/bulk_import.py:280 +#: vpn/forms/filtersets.py:246 vpn/forms/model_forms.py:409 +#: vpn/forms/model_forms.py:427 vpn/models/l2vpn.py:63 vpn/tables/l2vpn.py:55 msgid "L2VPN" msgstr "L2VPN" -#: netbox/dcim/filtersets.py:1662 +#: dcim/filtersets.py:1662 msgid "Virtual Chassis Interfaces for Device" msgstr "Cihaz için Sanal Şasi Arayüzleri" -#: netbox/dcim/filtersets.py:1667 +#: dcim/filtersets.py:1667 msgid "Virtual Chassis Interfaces for Device (ID)" msgstr "Cihaz için Sanal Şasi Arayüzleri (ID)" -#: netbox/dcim/filtersets.py:1671 +#: dcim/filtersets.py:1671 msgid "Kind of interface" msgstr "Arayüz türü" -#: netbox/dcim/filtersets.py:1676 netbox/virtualization/filtersets.py:293 +#: dcim/filtersets.py:1676 virtualization/filtersets.py:293 msgid "Parent interface (ID)" msgstr "Ebeveyn arabirimi (ID)" -#: netbox/dcim/filtersets.py:1681 netbox/virtualization/filtersets.py:298 +#: dcim/filtersets.py:1681 virtualization/filtersets.py:298 msgid "Bridged interface (ID)" msgstr "Köprülü arayüz (ID)" -#: netbox/dcim/filtersets.py:1686 +#: dcim/filtersets.py:1686 msgid "LAG interface (ID)" msgstr "LAG arabirimi (ID)" -#: netbox/dcim/filtersets.py:1713 netbox/dcim/filtersets.py:1725 -#: netbox/dcim/forms/filtersets.py:1345 netbox/dcim/forms/model_forms.py:1690 -#: netbox/templates/dcim/virtualdevicecontext.html:15 +#: dcim/filtersets.py:1713 dcim/filtersets.py:1725 +#: dcim/forms/filtersets.py:1345 dcim/forms/model_forms.py:1690 +#: templates/dcim/virtualdevicecontext.html:15 msgid "Virtual Device Context" msgstr "Sanal Cihaz Bağlamı" -#: netbox/dcim/filtersets.py:1719 +#: dcim/filtersets.py:1719 msgid "Virtual Device Context (Identifier)" msgstr "Sanal Cihaz Bağlamı (Tanımlayıcı)" -#: netbox/dcim/filtersets.py:1730 -#: netbox/templates/wireless/wirelesslan.html:11 -#: netbox/wireless/forms/model_forms.py:53 +#: dcim/filtersets.py:1730 templates/wireless/wirelesslan.html:11 +#: wireless/forms/model_forms.py:53 msgid "Wireless LAN" msgstr "Kablosuz LAN" -#: netbox/dcim/filtersets.py:1734 netbox/dcim/tables/devices.py:613 +#: dcim/filtersets.py:1734 dcim/tables/devices.py:613 msgid "Wireless link" msgstr "Kablosuz bağlantı" -#: netbox/dcim/filtersets.py:1803 +#: dcim/filtersets.py:1803 msgid "Parent module bay (ID)" msgstr "Ana modül yuvası (ID)" -#: netbox/dcim/filtersets.py:1808 +#: dcim/filtersets.py:1808 msgid "Installed module (ID)" msgstr "Yüklü modül (ID)" -#: netbox/dcim/filtersets.py:1819 +#: dcim/filtersets.py:1819 msgid "Installed device (ID)" msgstr "Yüklü cihaz (ID)" -#: netbox/dcim/filtersets.py:1825 +#: dcim/filtersets.py:1825 msgid "Installed device (name)" msgstr "Yüklü cihaz (isim)" -#: netbox/dcim/filtersets.py:1891 +#: dcim/filtersets.py:1891 msgid "Master (ID)" msgstr "Master (ID)" -#: netbox/dcim/filtersets.py:1897 +#: dcim/filtersets.py:1897 msgid "Master (name)" msgstr "Master (isim)" -#: netbox/dcim/filtersets.py:1939 netbox/tenancy/filtersets.py:245 +#: dcim/filtersets.py:1939 tenancy/filtersets.py:245 msgid "Tenant (ID)" msgstr "Kiracı (ID)" -#: netbox/dcim/filtersets.py:1945 netbox/extras/filtersets.py:618 -#: netbox/tenancy/filtersets.py:251 +#: dcim/filtersets.py:1945 extras/filtersets.py:618 tenancy/filtersets.py:251 msgid "Tenant (slug)" msgstr "Kiracı (kısa ad)" -#: netbox/dcim/filtersets.py:1981 netbox/dcim/forms/filtersets.py:1077 +#: dcim/filtersets.py:1981 dcim/forms/filtersets.py:1077 msgid "Unterminated" msgstr "Sonlandırılmamış" -#: netbox/dcim/filtersets.py:2239 +#: dcim/filtersets.py:2239 msgid "Power panel (ID)" msgstr "Güç paneli (ID)" -#: netbox/dcim/forms/bulk_create.py:40 netbox/extras/forms/filtersets.py:401 -#: netbox/extras/forms/model_forms.py:567 -#: netbox/extras/forms/model_forms.py:619 netbox/netbox/forms/base.py:86 -#: netbox/netbox/forms/mixins.py:81 netbox/netbox/tables/columns.py:478 -#: netbox/templates/circuits/inc/circuit_termination.html:32 -#: netbox/templates/generic/bulk_edit.html:65 -#: netbox/templates/inc/panels/tags.html:5 -#: netbox/utilities/forms/fields/fields.py:81 +#: dcim/forms/bulk_create.py:40 extras/forms/filtersets.py:401 +#: extras/forms/model_forms.py:567 extras/forms/model_forms.py:619 +#: netbox/forms/base.py:86 netbox/forms/mixins.py:81 +#: netbox/tables/columns.py:478 +#: templates/circuits/inc/circuit_termination.html:32 +#: templates/generic/bulk_edit.html:65 templates/inc/panels/tags.html:5 +#: utilities/forms/fields/fields.py:81 msgid "Tags" msgstr "Etiketler" -#: netbox/dcim/forms/bulk_create.py:112 netbox/dcim/forms/filtersets.py:1498 -#: netbox/dcim/forms/model_forms.py:488 netbox/dcim/forms/model_forms.py:546 -#: netbox/dcim/forms/object_create.py:197 -#: netbox/dcim/forms/object_create.py:353 netbox/dcim/tables/devices.py:165 -#: netbox/dcim/tables/devices.py:707 netbox/dcim/tables/devicetypes.py:246 -#: netbox/templates/dcim/device.html:43 netbox/templates/dcim/device.html:131 -#: netbox/templates/dcim/modulebay.html:38 -#: netbox/templates/dcim/virtualchassis.html:66 -#: netbox/templates/dcim/virtualchassis_edit.html:55 +#: dcim/forms/bulk_create.py:112 dcim/forms/filtersets.py:1498 +#: dcim/forms/model_forms.py:488 dcim/forms/model_forms.py:546 +#: dcim/forms/object_create.py:197 dcim/forms/object_create.py:353 +#: dcim/tables/devices.py:165 dcim/tables/devices.py:707 +#: dcim/tables/devicetypes.py:246 templates/dcim/device.html:43 +#: templates/dcim/device.html:131 templates/dcim/modulebay.html:38 +#: templates/dcim/virtualchassis.html:66 +#: templates/dcim/virtualchassis_edit.html:55 msgid "Position" msgstr "Pozisyon" -#: netbox/dcim/forms/bulk_create.py:114 +#: dcim/forms/bulk_create.py:114 msgid "" "Alphanumeric ranges are supported. (Must match the number of names being " "created.)" @@ -3446,885 +3115,823 @@ msgstr "" "Alfasayısal aralıklar desteklenir. (Oluşturulan isim sayısıyla " "eşleşmelidir.)" -#: netbox/dcim/forms/bulk_edit.py:132 +#: dcim/forms/bulk_edit.py:132 msgid "Contact name" msgstr "İrtibat Kişisi Adı" -#: netbox/dcim/forms/bulk_edit.py:137 +#: dcim/forms/bulk_edit.py:137 msgid "Contact phone" msgstr "İletişim telefonu" -#: netbox/dcim/forms/bulk_edit.py:143 +#: dcim/forms/bulk_edit.py:143 msgid "Contact E-mail" msgstr "İletişim E-posta" -#: netbox/dcim/forms/bulk_edit.py:146 netbox/dcim/forms/bulk_import.py:123 -#: netbox/dcim/forms/model_forms.py:128 +#: dcim/forms/bulk_edit.py:146 dcim/forms/bulk_import.py:123 +#: dcim/forms/model_forms.py:128 msgid "Time zone" msgstr "Saat dilimi" -#: netbox/dcim/forms/bulk_edit.py:224 netbox/dcim/forms/bulk_edit.py:495 -#: netbox/dcim/forms/bulk_edit.py:559 netbox/dcim/forms/bulk_edit.py:632 -#: netbox/dcim/forms/bulk_edit.py:656 netbox/dcim/forms/bulk_edit.py:740 -#: netbox/dcim/forms/bulk_edit.py:1267 netbox/dcim/forms/bulk_edit.py:1660 -#: netbox/dcim/forms/bulk_import.py:182 netbox/dcim/forms/bulk_import.py:371 -#: netbox/dcim/forms/bulk_import.py:405 netbox/dcim/forms/bulk_import.py:450 -#: netbox/dcim/forms/bulk_import.py:486 netbox/dcim/forms/bulk_import.py:1082 -#: netbox/dcim/forms/filtersets.py:313 netbox/dcim/forms/filtersets.py:372 -#: netbox/dcim/forms/filtersets.py:494 netbox/dcim/forms/filtersets.py:619 -#: netbox/dcim/forms/filtersets.py:700 netbox/dcim/forms/filtersets.py:782 -#: netbox/dcim/forms/filtersets.py:947 netbox/dcim/forms/filtersets.py:1539 -#: netbox/dcim/forms/model_forms.py:207 netbox/dcim/forms/model_forms.py:337 -#: netbox/dcim/forms/model_forms.py:349 netbox/dcim/forms/model_forms.py:395 -#: netbox/dcim/forms/model_forms.py:436 netbox/dcim/forms/model_forms.py:1075 -#: netbox/dcim/forms/model_forms.py:1515 -#: netbox/dcim/forms/object_import.py:187 netbox/dcim/tables/devices.py:96 -#: netbox/dcim/tables/devices.py:172 netbox/dcim/tables/devices.py:940 -#: netbox/dcim/tables/devicetypes.py:80 netbox/dcim/tables/devicetypes.py:308 -#: netbox/dcim/tables/modules.py:20 netbox/dcim/tables/modules.py:60 -#: netbox/dcim/tables/racks.py:58 netbox/dcim/tables/racks.py:132 -#: netbox/templates/dcim/devicetype.html:14 -#: netbox/templates/dcim/inventoryitem.html:44 -#: netbox/templates/dcim/manufacturer.html:33 -#: netbox/templates/dcim/modulebay.html:62 -#: netbox/templates/dcim/moduletype.html:14 -#: netbox/templates/dcim/platform.html:37 -#: netbox/templates/dcim/racktype.html:16 +#: dcim/forms/bulk_edit.py:224 dcim/forms/bulk_edit.py:495 +#: dcim/forms/bulk_edit.py:559 dcim/forms/bulk_edit.py:632 +#: dcim/forms/bulk_edit.py:656 dcim/forms/bulk_edit.py:740 +#: dcim/forms/bulk_edit.py:1267 dcim/forms/bulk_edit.py:1660 +#: dcim/forms/bulk_import.py:182 dcim/forms/bulk_import.py:371 +#: dcim/forms/bulk_import.py:405 dcim/forms/bulk_import.py:450 +#: dcim/forms/bulk_import.py:486 dcim/forms/bulk_import.py:1082 +#: dcim/forms/filtersets.py:313 dcim/forms/filtersets.py:372 +#: dcim/forms/filtersets.py:494 dcim/forms/filtersets.py:619 +#: dcim/forms/filtersets.py:700 dcim/forms/filtersets.py:782 +#: dcim/forms/filtersets.py:947 dcim/forms/filtersets.py:1539 +#: dcim/forms/model_forms.py:207 dcim/forms/model_forms.py:337 +#: dcim/forms/model_forms.py:349 dcim/forms/model_forms.py:395 +#: dcim/forms/model_forms.py:436 dcim/forms/model_forms.py:1075 +#: dcim/forms/model_forms.py:1515 dcim/forms/object_import.py:187 +#: dcim/tables/devices.py:96 dcim/tables/devices.py:172 +#: dcim/tables/devices.py:940 dcim/tables/devicetypes.py:80 +#: dcim/tables/devicetypes.py:308 dcim/tables/modules.py:20 +#: dcim/tables/modules.py:60 dcim/tables/racks.py:58 dcim/tables/racks.py:132 +#: templates/dcim/devicetype.html:14 templates/dcim/inventoryitem.html:44 +#: templates/dcim/manufacturer.html:33 templates/dcim/modulebay.html:62 +#: templates/dcim/moduletype.html:25 templates/dcim/platform.html:37 +#: templates/dcim/racktype.html:16 msgid "Manufacturer" msgstr "Üretici" -#: netbox/dcim/forms/bulk_edit.py:229 netbox/dcim/forms/bulk_edit.py:372 -#: netbox/dcim/forms/bulk_import.py:191 netbox/dcim/forms/bulk_import.py:263 -#: netbox/dcim/forms/filtersets.py:255 -#: netbox/templates/dcim/inc/panels/racktype_dimensions.html:6 +#: dcim/forms/bulk_edit.py:229 dcim/forms/bulk_edit.py:372 +#: dcim/forms/bulk_import.py:191 dcim/forms/bulk_import.py:263 +#: dcim/forms/filtersets.py:255 +#: templates/dcim/inc/panels/racktype_dimensions.html:6 msgid "Form factor" msgstr "Form faktörü" -#: netbox/dcim/forms/bulk_edit.py:234 netbox/dcim/forms/bulk_edit.py:377 -#: netbox/dcim/forms/bulk_import.py:199 netbox/dcim/forms/bulk_import.py:266 -#: netbox/dcim/forms/filtersets.py:260 -#: netbox/templates/dcim/inc/panels/racktype_dimensions.html:10 +#: dcim/forms/bulk_edit.py:234 dcim/forms/bulk_edit.py:377 +#: dcim/forms/bulk_import.py:199 dcim/forms/bulk_import.py:266 +#: dcim/forms/filtersets.py:260 +#: templates/dcim/inc/panels/racktype_dimensions.html:10 msgid "Width" msgstr "Genişlik" -#: netbox/dcim/forms/bulk_edit.py:240 netbox/dcim/forms/bulk_edit.py:383 -#: netbox/templates/dcim/devicetype.html:37 +#: dcim/forms/bulk_edit.py:240 dcim/forms/bulk_edit.py:383 +#: templates/dcim/devicetype.html:37 msgid "Height (U)" msgstr "Yükseklik (U)" -#: netbox/dcim/forms/bulk_edit.py:249 netbox/dcim/forms/bulk_edit.py:388 -#: netbox/dcim/forms/filtersets.py:274 +#: dcim/forms/bulk_edit.py:249 dcim/forms/bulk_edit.py:388 +#: dcim/forms/filtersets.py:274 msgid "Descending units" msgstr "Azalan birimler" -#: netbox/dcim/forms/bulk_edit.py:252 netbox/dcim/forms/bulk_edit.py:391 +#: dcim/forms/bulk_edit.py:252 dcim/forms/bulk_edit.py:391 msgid "Outer width" msgstr "Dış genişlik" -#: netbox/dcim/forms/bulk_edit.py:257 netbox/dcim/forms/bulk_edit.py:396 +#: dcim/forms/bulk_edit.py:257 dcim/forms/bulk_edit.py:396 msgid "Outer depth" msgstr "Dış derinlik" -#: netbox/dcim/forms/bulk_edit.py:262 netbox/dcim/forms/bulk_edit.py:401 -#: netbox/dcim/forms/bulk_import.py:204 netbox/dcim/forms/bulk_import.py:271 +#: dcim/forms/bulk_edit.py:262 dcim/forms/bulk_edit.py:401 +#: dcim/forms/bulk_import.py:204 dcim/forms/bulk_import.py:271 msgid "Outer unit" msgstr "Dış ünite" -#: netbox/dcim/forms/bulk_edit.py:267 netbox/dcim/forms/bulk_edit.py:406 +#: dcim/forms/bulk_edit.py:267 dcim/forms/bulk_edit.py:406 msgid "Mounting depth" msgstr "Montaj derinliği" -#: netbox/dcim/forms/bulk_edit.py:272 netbox/dcim/forms/bulk_edit.py:299 -#: netbox/dcim/forms/bulk_edit.py:416 netbox/dcim/forms/bulk_edit.py:446 -#: netbox/dcim/forms/bulk_edit.py:529 netbox/dcim/forms/bulk_edit.py:552 -#: netbox/dcim/forms/bulk_edit.py:573 netbox/dcim/forms/bulk_edit.py:595 -#: netbox/dcim/forms/bulk_import.py:384 netbox/dcim/forms/bulk_import.py:416 -#: netbox/dcim/forms/filtersets.py:285 netbox/dcim/forms/filtersets.py:307 -#: netbox/dcim/forms/filtersets.py:327 netbox/dcim/forms/filtersets.py:401 -#: netbox/dcim/forms/filtersets.py:488 netbox/dcim/forms/filtersets.py:594 -#: netbox/dcim/forms/filtersets.py:613 netbox/dcim/forms/filtersets.py:674 -#: netbox/dcim/forms/model_forms.py:221 netbox/dcim/forms/model_forms.py:298 -#: netbox/dcim/tables/devicetypes.py:106 netbox/dcim/tables/modules.py:35 -#: netbox/dcim/tables/racks.py:74 netbox/dcim/tables/racks.py:172 -#: netbox/extras/forms/bulk_edit.py:53 netbox/extras/forms/bulk_edit.py:133 -#: netbox/extras/forms/bulk_edit.py:183 netbox/extras/forms/bulk_edit.py:288 -#: netbox/extras/forms/filtersets.py:64 netbox/extras/forms/filtersets.py:156 -#: netbox/extras/forms/filtersets.py:243 netbox/ipam/forms/bulk_edit.py:189 -#: netbox/templates/dcim/device.html:324 -#: netbox/templates/dcim/devicetype.html:49 -#: netbox/templates/dcim/moduletype.html:34 netbox/templates/dcim/rack.html:81 -#: netbox/templates/dcim/racktype.html:41 -#: netbox/templates/extras/configcontext.html:17 -#: netbox/templates/extras/customlink.html:25 -#: netbox/templates/extras/savedfilter.html:33 -#: netbox/templates/ipam/role.html:30 +#: dcim/forms/bulk_edit.py:272 dcim/forms/bulk_edit.py:299 +#: dcim/forms/bulk_edit.py:416 dcim/forms/bulk_edit.py:446 +#: dcim/forms/bulk_edit.py:529 dcim/forms/bulk_edit.py:552 +#: dcim/forms/bulk_edit.py:573 dcim/forms/bulk_edit.py:595 +#: dcim/forms/bulk_import.py:384 dcim/forms/bulk_import.py:416 +#: dcim/forms/filtersets.py:285 dcim/forms/filtersets.py:307 +#: dcim/forms/filtersets.py:327 dcim/forms/filtersets.py:401 +#: dcim/forms/filtersets.py:488 dcim/forms/filtersets.py:594 +#: dcim/forms/filtersets.py:613 dcim/forms/filtersets.py:674 +#: dcim/forms/model_forms.py:221 dcim/forms/model_forms.py:298 +#: dcim/tables/devicetypes.py:106 dcim/tables/modules.py:35 +#: dcim/tables/racks.py:74 dcim/tables/racks.py:172 +#: extras/forms/bulk_edit.py:53 extras/forms/bulk_edit.py:133 +#: extras/forms/bulk_edit.py:183 extras/forms/bulk_edit.py:288 +#: extras/forms/filtersets.py:64 extras/forms/filtersets.py:156 +#: extras/forms/filtersets.py:243 ipam/forms/bulk_edit.py:190 +#: templates/dcim/device.html:324 templates/dcim/devicetype.html:49 +#: templates/dcim/moduletype.html:45 templates/dcim/rack.html:81 +#: templates/dcim/racktype.html:41 templates/extras/configcontext.html:17 +#: templates/extras/customlink.html:25 templates/extras/savedfilter.html:33 +#: templates/ipam/role.html:30 msgid "Weight" msgstr "Ağırlığı" -#: netbox/dcim/forms/bulk_edit.py:277 netbox/dcim/forms/bulk_edit.py:421 -#: netbox/dcim/forms/filtersets.py:290 +#: dcim/forms/bulk_edit.py:277 dcim/forms/bulk_edit.py:421 +#: dcim/forms/filtersets.py:290 msgid "Max weight" msgstr "Maksimum ağırlık" -#: netbox/dcim/forms/bulk_edit.py:282 netbox/dcim/forms/bulk_edit.py:426 -#: netbox/dcim/forms/bulk_edit.py:534 netbox/dcim/forms/bulk_edit.py:578 -#: netbox/dcim/forms/bulk_import.py:210 netbox/dcim/forms/bulk_import.py:283 -#: netbox/dcim/forms/bulk_import.py:389 netbox/dcim/forms/bulk_import.py:421 -#: netbox/dcim/forms/filtersets.py:295 netbox/dcim/forms/filtersets.py:598 -#: netbox/dcim/forms/filtersets.py:678 +#: dcim/forms/bulk_edit.py:282 dcim/forms/bulk_edit.py:426 +#: dcim/forms/bulk_edit.py:534 dcim/forms/bulk_edit.py:578 +#: dcim/forms/bulk_import.py:210 dcim/forms/bulk_import.py:283 +#: dcim/forms/bulk_import.py:389 dcim/forms/bulk_import.py:421 +#: dcim/forms/filtersets.py:295 dcim/forms/filtersets.py:598 +#: dcim/forms/filtersets.py:678 msgid "Weight unit" msgstr "Ağırlık birimi" -#: netbox/dcim/forms/bulk_edit.py:296 netbox/dcim/forms/filtersets.py:305 -#: netbox/dcim/forms/model_forms.py:217 netbox/dcim/forms/model_forms.py:256 -#: netbox/templates/dcim/rack.html:45 netbox/templates/dcim/racktype.html:13 +#: dcim/forms/bulk_edit.py:296 dcim/forms/filtersets.py:305 +#: dcim/forms/model_forms.py:217 dcim/forms/model_forms.py:256 +#: templates/dcim/rack.html:45 templates/dcim/racktype.html:13 msgid "Rack Type" msgstr "Raf Tipi" -#: netbox/dcim/forms/bulk_edit.py:298 netbox/dcim/forms/model_forms.py:220 -#: netbox/dcim/forms/model_forms.py:297 +#: dcim/forms/bulk_edit.py:298 dcim/forms/model_forms.py:220 +#: dcim/forms/model_forms.py:297 msgid "Outer Dimensions" msgstr "Dış Ölçüler" -#: netbox/dcim/forms/bulk_edit.py:301 netbox/dcim/forms/model_forms.py:222 -#: netbox/dcim/forms/model_forms.py:299 netbox/templates/dcim/device.html:315 -#: netbox/templates/dcim/inc/panels/racktype_dimensions.html:3 +#: dcim/forms/bulk_edit.py:301 dcim/forms/model_forms.py:222 +#: dcim/forms/model_forms.py:299 templates/dcim/device.html:315 +#: templates/dcim/inc/panels/racktype_dimensions.html:3 msgid "Dimensions" msgstr "Ölçüler" -#: netbox/dcim/forms/bulk_edit.py:303 netbox/dcim/forms/filtersets.py:306 -#: netbox/dcim/forms/filtersets.py:326 netbox/dcim/forms/model_forms.py:224 -#: netbox/templates/dcim/inc/panels/racktype_numbering.html:3 +#: dcim/forms/bulk_edit.py:303 dcim/forms/filtersets.py:306 +#: dcim/forms/filtersets.py:326 dcim/forms/model_forms.py:224 +#: templates/dcim/inc/panels/racktype_numbering.html:3 msgid "Numbering" msgstr "Numaralandırma" -#: netbox/dcim/forms/bulk_edit.py:357 netbox/dcim/forms/bulk_edit.py:1262 -#: netbox/dcim/forms/bulk_edit.py:1655 netbox/dcim/forms/bulk_import.py:253 -#: netbox/dcim/forms/bulk_import.py:1076 netbox/dcim/forms/filtersets.py:367 -#: netbox/dcim/forms/filtersets.py:777 netbox/dcim/forms/filtersets.py:1534 -#: netbox/dcim/forms/model_forms.py:251 netbox/dcim/forms/model_forms.py:1070 -#: netbox/dcim/forms/model_forms.py:1510 -#: netbox/dcim/forms/object_import.py:181 netbox/dcim/tables/devices.py:169 -#: netbox/dcim/tables/devices.py:809 netbox/dcim/tables/devices.py:937 -#: netbox/dcim/tables/devicetypes.py:304 netbox/dcim/tables/racks.py:129 -#: netbox/extras/filtersets.py:552 netbox/ipam/forms/bulk_edit.py:260 -#: netbox/ipam/forms/bulk_edit.py:310 netbox/ipam/forms/bulk_edit.py:358 -#: netbox/ipam/forms/bulk_edit.py:556 netbox/ipam/forms/bulk_import.py:197 -#: netbox/ipam/forms/bulk_import.py:262 netbox/ipam/forms/bulk_import.py:298 -#: netbox/ipam/forms/bulk_import.py:455 netbox/ipam/forms/filtersets.py:237 -#: netbox/ipam/forms/filtersets.py:289 netbox/ipam/forms/filtersets.py:360 -#: netbox/ipam/forms/filtersets.py:509 netbox/ipam/forms/model_forms.py:188 -#: netbox/ipam/forms/model_forms.py:221 netbox/ipam/forms/model_forms.py:250 -#: netbox/ipam/forms/model_forms.py:643 netbox/ipam/tables/ip.py:258 -#: netbox/ipam/tables/ip.py:316 netbox/ipam/tables/ip.py:367 -#: netbox/ipam/tables/vlans.py:130 netbox/ipam/tables/vlans.py:235 -#: netbox/templates/dcim/device.html:182 -#: netbox/templates/dcim/inc/panels/inventory_items.html:20 -#: netbox/templates/dcim/interface.html:223 -#: netbox/templates/dcim/inventoryitem.html:36 -#: netbox/templates/dcim/rack.html:49 netbox/templates/ipam/ipaddress.html:41 -#: netbox/templates/ipam/iprange.html:50 netbox/templates/ipam/prefix.html:77 -#: netbox/templates/ipam/role.html:19 netbox/templates/ipam/vlan.html:52 -#: netbox/templates/virtualization/virtualmachine.html:23 -#: netbox/templates/vpn/tunneltermination.html:17 -#: netbox/templates/wireless/inc/wirelesslink_interface.html:20 -#: netbox/tenancy/forms/bulk_edit.py:142 -#: netbox/tenancy/forms/filtersets.py:107 -#: netbox/tenancy/forms/model_forms.py:137 -#: netbox/tenancy/tables/contacts.py:102 -#: netbox/virtualization/forms/bulk_edit.py:145 -#: netbox/virtualization/forms/bulk_import.py:106 -#: netbox/virtualization/forms/filtersets.py:157 -#: netbox/virtualization/forms/model_forms.py:195 -#: netbox/virtualization/tables/virtualmachines.py:75 -#: netbox/vpn/forms/bulk_edit.py:87 netbox/vpn/forms/bulk_import.py:81 -#: netbox/vpn/forms/filtersets.py:85 netbox/vpn/forms/model_forms.py:78 -#: netbox/vpn/forms/model_forms.py:113 netbox/vpn/tables/tunnels.py:82 +#: dcim/forms/bulk_edit.py:357 dcim/forms/bulk_edit.py:1262 +#: dcim/forms/bulk_edit.py:1655 dcim/forms/bulk_import.py:253 +#: dcim/forms/bulk_import.py:1076 dcim/forms/filtersets.py:367 +#: dcim/forms/filtersets.py:777 dcim/forms/filtersets.py:1534 +#: dcim/forms/model_forms.py:251 dcim/forms/model_forms.py:1070 +#: dcim/forms/model_forms.py:1510 dcim/forms/object_import.py:181 +#: dcim/tables/devices.py:169 dcim/tables/devices.py:809 +#: dcim/tables/devices.py:937 dcim/tables/devicetypes.py:304 +#: dcim/tables/racks.py:129 extras/filtersets.py:552 +#: ipam/forms/bulk_edit.py:261 ipam/forms/bulk_edit.py:311 +#: ipam/forms/bulk_edit.py:359 ipam/forms/bulk_edit.py:511 +#: ipam/forms/bulk_import.py:197 ipam/forms/bulk_import.py:262 +#: ipam/forms/bulk_import.py:298 ipam/forms/bulk_import.py:455 +#: ipam/forms/filtersets.py:237 ipam/forms/filtersets.py:289 +#: ipam/forms/filtersets.py:360 ipam/forms/filtersets.py:509 +#: ipam/forms/model_forms.py:188 ipam/forms/model_forms.py:221 +#: ipam/forms/model_forms.py:250 ipam/forms/model_forms.py:643 +#: ipam/tables/ip.py:258 ipam/tables/ip.py:316 ipam/tables/ip.py:367 +#: ipam/tables/vlans.py:130 ipam/tables/vlans.py:235 +#: templates/dcim/device.html:182 +#: templates/dcim/inc/panels/inventory_items.html:20 +#: templates/dcim/interface.html:223 templates/dcim/inventoryitem.html:36 +#: templates/dcim/rack.html:49 templates/ipam/ipaddress.html:41 +#: templates/ipam/iprange.html:50 templates/ipam/prefix.html:77 +#: templates/ipam/role.html:19 templates/ipam/vlan.html:52 +#: templates/virtualization/virtualmachine.html:23 +#: templates/vpn/tunneltermination.html:17 +#: templates/wireless/inc/wirelesslink_interface.html:20 +#: tenancy/forms/bulk_edit.py:142 tenancy/forms/filtersets.py:107 +#: tenancy/forms/model_forms.py:137 tenancy/tables/contacts.py:102 +#: virtualization/forms/bulk_edit.py:145 +#: virtualization/forms/bulk_import.py:106 +#: virtualization/forms/filtersets.py:157 +#: virtualization/forms/model_forms.py:195 +#: virtualization/tables/virtualmachines.py:75 vpn/forms/bulk_edit.py:87 +#: vpn/forms/bulk_import.py:81 vpn/forms/filtersets.py:85 +#: vpn/forms/model_forms.py:78 vpn/forms/model_forms.py:113 +#: vpn/tables/tunnels.py:82 msgid "Role" msgstr "Rol" -#: netbox/dcim/forms/bulk_edit.py:364 netbox/dcim/forms/bulk_edit.py:712 -#: netbox/dcim/forms/bulk_edit.py:764 netbox/templates/dcim/device.html:104 -#: netbox/templates/dcim/module.html:77 -#: netbox/templates/dcim/modulebay.html:70 netbox/templates/dcim/rack.html:57 -#: netbox/templates/virtualization/virtualmachine.html:35 +#: dcim/forms/bulk_edit.py:364 dcim/forms/bulk_edit.py:712 +#: dcim/forms/bulk_edit.py:764 templates/dcim/device.html:104 +#: templates/dcim/module.html:77 templates/dcim/modulebay.html:70 +#: templates/dcim/rack.html:57 templates/virtualization/virtualmachine.html:35 msgid "Serial Number" msgstr "Seri Numarası" -#: netbox/dcim/forms/bulk_edit.py:367 netbox/dcim/forms/filtersets.py:387 -#: netbox/dcim/forms/filtersets.py:813 netbox/dcim/forms/filtersets.py:967 -#: netbox/dcim/forms/filtersets.py:1546 +#: dcim/forms/bulk_edit.py:367 dcim/forms/filtersets.py:387 +#: dcim/forms/filtersets.py:813 dcim/forms/filtersets.py:967 +#: dcim/forms/filtersets.py:1546 msgid "Asset tag" msgstr "Varlık etiketi" -#: netbox/dcim/forms/bulk_edit.py:411 netbox/dcim/forms/bulk_edit.py:524 -#: netbox/dcim/forms/bulk_edit.py:568 netbox/dcim/forms/bulk_edit.py:705 -#: netbox/dcim/forms/bulk_import.py:277 netbox/dcim/forms/bulk_import.py:410 -#: netbox/dcim/forms/bulk_import.py:580 netbox/dcim/forms/filtersets.py:280 -#: netbox/dcim/forms/filtersets.py:511 netbox/dcim/forms/filtersets.py:669 -#: netbox/dcim/forms/filtersets.py:804 netbox/templates/dcim/device.html:98 -#: netbox/templates/dcim/devicetype.html:65 -#: netbox/templates/dcim/moduletype.html:30 netbox/templates/dcim/rack.html:65 -#: netbox/templates/dcim/racktype.html:28 +#: dcim/forms/bulk_edit.py:411 dcim/forms/bulk_edit.py:524 +#: dcim/forms/bulk_edit.py:568 dcim/forms/bulk_edit.py:705 +#: dcim/forms/bulk_import.py:277 dcim/forms/bulk_import.py:410 +#: dcim/forms/bulk_import.py:580 dcim/forms/filtersets.py:280 +#: dcim/forms/filtersets.py:511 dcim/forms/filtersets.py:669 +#: dcim/forms/filtersets.py:804 templates/dcim/device.html:98 +#: templates/dcim/devicetype.html:65 templates/dcim/moduletype.html:41 +#: templates/dcim/rack.html:65 templates/dcim/racktype.html:28 msgid "Airflow" msgstr "Hava akışı" -#: netbox/dcim/forms/bulk_edit.py:440 netbox/dcim/forms/bulk_edit.py:910 -#: netbox/dcim/forms/bulk_import.py:322 netbox/dcim/forms/bulk_import.py:325 -#: netbox/dcim/forms/bulk_import.py:553 netbox/dcim/forms/bulk_import.py:1358 -#: netbox/dcim/forms/bulk_import.py:1362 netbox/dcim/forms/filtersets.py:104 -#: netbox/dcim/forms/filtersets.py:324 netbox/dcim/forms/filtersets.py:405 -#: netbox/dcim/forms/filtersets.py:419 netbox/dcim/forms/filtersets.py:457 -#: netbox/dcim/forms/filtersets.py:772 netbox/dcim/forms/filtersets.py:1035 -#: netbox/dcim/forms/filtersets.py:1167 netbox/dcim/forms/model_forms.py:264 -#: netbox/dcim/forms/model_forms.py:306 netbox/dcim/forms/model_forms.py:479 -#: netbox/dcim/forms/model_forms.py:755 netbox/dcim/forms/object_create.py:400 -#: netbox/dcim/tables/devices.py:161 netbox/dcim/tables/power.py:70 -#: netbox/dcim/tables/racks.py:217 netbox/ipam/forms/bulk_edit.py:468 -#: netbox/ipam/forms/filtersets.py:442 netbox/templates/dcim/device.html:30 -#: netbox/templates/dcim/inc/cable_termination.html:16 -#: netbox/templates/dcim/powerfeed.html:28 netbox/templates/dcim/rack.html:13 -#: netbox/templates/dcim/rack/base.html:4 -#: netbox/templates/dcim/rackreservation.html:19 -#: netbox/templates/dcim/rackreservation.html:36 -#: netbox/virtualization/forms/model_forms.py:113 +#: dcim/forms/bulk_edit.py:440 dcim/forms/bulk_edit.py:910 +#: dcim/forms/bulk_import.py:322 dcim/forms/bulk_import.py:325 +#: dcim/forms/bulk_import.py:553 dcim/forms/bulk_import.py:1358 +#: dcim/forms/bulk_import.py:1362 dcim/forms/filtersets.py:104 +#: dcim/forms/filtersets.py:324 dcim/forms/filtersets.py:405 +#: dcim/forms/filtersets.py:419 dcim/forms/filtersets.py:457 +#: dcim/forms/filtersets.py:772 dcim/forms/filtersets.py:1035 +#: dcim/forms/filtersets.py:1167 dcim/forms/model_forms.py:264 +#: dcim/forms/model_forms.py:306 dcim/forms/model_forms.py:479 +#: dcim/forms/model_forms.py:755 dcim/forms/object_create.py:400 +#: dcim/tables/devices.py:161 dcim/tables/power.py:70 dcim/tables/racks.py:217 +#: ipam/forms/filtersets.py:442 templates/dcim/device.html:30 +#: templates/dcim/inc/cable_termination.html:16 +#: templates/dcim/powerfeed.html:28 templates/dcim/rack.html:13 +#: templates/dcim/rack/base.html:4 templates/dcim/rackreservation.html:19 +#: templates/dcim/rackreservation.html:36 +#: virtualization/forms/model_forms.py:113 msgid "Rack" msgstr "Raf" -#: netbox/dcim/forms/bulk_edit.py:444 netbox/dcim/forms/bulk_edit.py:730 -#: netbox/dcim/forms/filtersets.py:325 netbox/dcim/forms/filtersets.py:398 -#: netbox/dcim/forms/filtersets.py:481 netbox/dcim/forms/filtersets.py:608 -#: netbox/dcim/forms/filtersets.py:721 netbox/dcim/forms/filtersets.py:942 -#: netbox/dcim/forms/model_forms.py:670 netbox/dcim/forms/model_forms.py:1580 -#: netbox/templates/dcim/device_edit.html:20 +#: dcim/forms/bulk_edit.py:444 dcim/forms/bulk_edit.py:730 +#: dcim/forms/filtersets.py:325 dcim/forms/filtersets.py:398 +#: dcim/forms/filtersets.py:481 dcim/forms/filtersets.py:608 +#: dcim/forms/filtersets.py:721 dcim/forms/filtersets.py:942 +#: dcim/forms/model_forms.py:670 dcim/forms/model_forms.py:1580 +#: templates/dcim/device_edit.html:20 msgid "Hardware" msgstr "Donanım" -#: netbox/dcim/forms/bulk_edit.py:500 netbox/dcim/forms/bulk_import.py:377 -#: netbox/dcim/forms/filtersets.py:499 netbox/dcim/forms/model_forms.py:353 +#: dcim/forms/bulk_edit.py:500 dcim/forms/bulk_import.py:377 +#: dcim/forms/filtersets.py:499 dcim/forms/model_forms.py:353 msgid "Default platform" msgstr "Varsayılan platform" -#: netbox/dcim/forms/bulk_edit.py:505 netbox/dcim/forms/bulk_edit.py:564 -#: netbox/dcim/forms/filtersets.py:502 netbox/dcim/forms/filtersets.py:622 +#: dcim/forms/bulk_edit.py:505 dcim/forms/bulk_edit.py:564 +#: dcim/forms/filtersets.py:502 dcim/forms/filtersets.py:622 msgid "Part number" msgstr "Parça numarası" -#: netbox/dcim/forms/bulk_edit.py:509 +#: dcim/forms/bulk_edit.py:509 msgid "U height" msgstr "U yüksekliği" -#: netbox/dcim/forms/bulk_edit.py:521 netbox/dcim/tables/devicetypes.py:102 +#: dcim/forms/bulk_edit.py:521 dcim/tables/devicetypes.py:102 msgid "Exclude from utilization" msgstr "Kullanımdan hariç tut" -#: netbox/dcim/forms/bulk_edit.py:550 netbox/dcim/forms/model_forms.py:368 -#: netbox/dcim/tables/devicetypes.py:77 netbox/templates/dcim/device.html:88 -#: netbox/templates/dcim/devicebay.html:52 -#: netbox/templates/dcim/module.html:61 +#: dcim/forms/bulk_edit.py:550 dcim/forms/model_forms.py:368 +#: dcim/tables/devicetypes.py:77 templates/dcim/device.html:88 +#: templates/dcim/devicebay.html:52 templates/dcim/module.html:61 msgid "Device Type" msgstr "Cihaz Türü" -#: netbox/dcim/forms/bulk_edit.py:592 netbox/dcim/forms/model_forms.py:401 -#: netbox/dcim/tables/modules.py:17 netbox/dcim/tables/modules.py:65 -#: netbox/templates/dcim/module.html:65 -#: netbox/templates/dcim/modulebay.html:66 -#: netbox/templates/dcim/moduletype.html:11 +#: dcim/forms/bulk_edit.py:592 dcim/forms/model_forms.py:401 +#: dcim/tables/modules.py:17 dcim/tables/modules.py:65 +#: templates/dcim/module.html:65 templates/dcim/modulebay.html:66 +#: templates/dcim/moduletype.html:22 msgid "Module Type" msgstr "Modül Türü" -#: netbox/dcim/forms/bulk_edit.py:596 netbox/dcim/forms/model_forms.py:371 -#: netbox/dcim/forms/model_forms.py:402 -#: netbox/templates/dcim/devicetype.html:11 +#: dcim/forms/bulk_edit.py:596 dcim/forms/model_forms.py:371 +#: dcim/forms/model_forms.py:402 templates/dcim/devicetype.html:11 msgid "Chassis" msgstr "Şasi" -#: netbox/dcim/forms/bulk_edit.py:610 netbox/dcim/models/devices.py:484 -#: netbox/dcim/tables/devices.py:67 +#: dcim/forms/bulk_edit.py:610 dcim/models/devices.py:484 +#: dcim/tables/devices.py:67 msgid "VM role" msgstr "VM rolü" -#: netbox/dcim/forms/bulk_edit.py:613 netbox/dcim/forms/bulk_edit.py:637 -#: netbox/dcim/forms/bulk_edit.py:720 netbox/dcim/forms/bulk_import.py:434 -#: netbox/dcim/forms/bulk_import.py:438 netbox/dcim/forms/bulk_import.py:457 -#: netbox/dcim/forms/bulk_import.py:461 netbox/dcim/forms/bulk_import.py:586 -#: netbox/dcim/forms/bulk_import.py:590 netbox/dcim/forms/filtersets.py:689 -#: netbox/dcim/forms/filtersets.py:705 netbox/dcim/forms/filtersets.py:823 -#: netbox/dcim/forms/model_forms.py:415 netbox/dcim/forms/model_forms.py:441 -#: netbox/dcim/forms/model_forms.py:555 -#: netbox/virtualization/forms/bulk_import.py:132 -#: netbox/virtualization/forms/bulk_import.py:133 -#: netbox/virtualization/forms/filtersets.py:188 -#: netbox/virtualization/forms/model_forms.py:215 +#: dcim/forms/bulk_edit.py:613 dcim/forms/bulk_edit.py:637 +#: dcim/forms/bulk_edit.py:720 dcim/forms/bulk_import.py:434 +#: dcim/forms/bulk_import.py:438 dcim/forms/bulk_import.py:457 +#: dcim/forms/bulk_import.py:461 dcim/forms/bulk_import.py:586 +#: dcim/forms/bulk_import.py:590 dcim/forms/filtersets.py:689 +#: dcim/forms/filtersets.py:705 dcim/forms/filtersets.py:823 +#: dcim/forms/model_forms.py:415 dcim/forms/model_forms.py:441 +#: dcim/forms/model_forms.py:555 virtualization/forms/bulk_import.py:132 +#: virtualization/forms/bulk_import.py:133 +#: virtualization/forms/filtersets.py:188 +#: virtualization/forms/model_forms.py:215 msgid "Config template" msgstr "Yapılandırma şablonu" -#: netbox/dcim/forms/bulk_edit.py:661 netbox/dcim/forms/bulk_edit.py:1061 -#: netbox/dcim/forms/bulk_import.py:492 netbox/dcim/forms/filtersets.py:114 -#: netbox/dcim/forms/model_forms.py:501 netbox/dcim/forms/model_forms.py:872 -#: netbox/dcim/forms/model_forms.py:889 netbox/extras/filtersets.py:547 +#: dcim/forms/bulk_edit.py:661 dcim/forms/bulk_edit.py:1061 +#: dcim/forms/bulk_import.py:492 dcim/forms/filtersets.py:114 +#: dcim/forms/model_forms.py:501 dcim/forms/model_forms.py:872 +#: dcim/forms/model_forms.py:889 extras/filtersets.py:547 msgid "Device type" msgstr "Cihaz tipi" -#: netbox/dcim/forms/bulk_edit.py:672 netbox/dcim/forms/bulk_import.py:473 -#: netbox/dcim/forms/filtersets.py:119 netbox/dcim/forms/model_forms.py:509 +#: dcim/forms/bulk_edit.py:672 dcim/forms/bulk_import.py:473 +#: dcim/forms/filtersets.py:119 dcim/forms/model_forms.py:509 msgid "Device role" msgstr "Cihaz rolü" -#: netbox/dcim/forms/bulk_edit.py:695 netbox/dcim/forms/bulk_import.py:498 -#: netbox/dcim/forms/filtersets.py:796 netbox/dcim/forms/model_forms.py:451 -#: netbox/dcim/forms/model_forms.py:513 netbox/dcim/tables/devices.py:182 -#: netbox/extras/filtersets.py:563 netbox/templates/dcim/device.html:186 -#: netbox/templates/dcim/platform.html:26 -#: netbox/templates/virtualization/virtualmachine.html:27 -#: netbox/virtualization/forms/bulk_edit.py:160 -#: netbox/virtualization/forms/bulk_import.py:122 -#: netbox/virtualization/forms/filtersets.py:168 -#: netbox/virtualization/forms/model_forms.py:203 -#: netbox/virtualization/tables/virtualmachines.py:79 +#: dcim/forms/bulk_edit.py:695 dcim/forms/bulk_import.py:498 +#: dcim/forms/filtersets.py:796 dcim/forms/model_forms.py:451 +#: dcim/forms/model_forms.py:513 dcim/tables/devices.py:182 +#: extras/filtersets.py:563 templates/dcim/device.html:186 +#: templates/dcim/platform.html:26 +#: templates/virtualization/virtualmachine.html:27 +#: virtualization/forms/bulk_edit.py:160 +#: virtualization/forms/bulk_import.py:122 +#: virtualization/forms/filtersets.py:168 +#: virtualization/forms/model_forms.py:203 +#: virtualization/tables/virtualmachines.py:79 msgid "Platform" msgstr "Platform" -#: netbox/dcim/forms/bulk_edit.py:728 netbox/dcim/forms/bulk_edit.py:1281 -#: netbox/dcim/forms/bulk_edit.py:1650 netbox/dcim/forms/bulk_edit.py:1696 -#: netbox/dcim/forms/bulk_import.py:641 netbox/dcim/forms/bulk_import.py:703 -#: netbox/dcim/forms/bulk_import.py:729 netbox/dcim/forms/bulk_import.py:755 -#: netbox/dcim/forms/bulk_import.py:775 netbox/dcim/forms/bulk_import.py:828 -#: netbox/dcim/forms/bulk_import.py:946 netbox/dcim/forms/bulk_import.py:994 -#: netbox/dcim/forms/bulk_import.py:1011 netbox/dcim/forms/bulk_import.py:1023 -#: netbox/dcim/forms/bulk_import.py:1071 netbox/dcim/forms/bulk_import.py:1422 -#: netbox/dcim/forms/connections.py:24 netbox/dcim/forms/filtersets.py:131 -#: netbox/dcim/forms/filtersets.py:921 netbox/dcim/forms/filtersets.py:1051 -#: netbox/dcim/forms/filtersets.py:1242 netbox/dcim/forms/filtersets.py:1267 -#: netbox/dcim/forms/filtersets.py:1291 netbox/dcim/forms/filtersets.py:1311 -#: netbox/dcim/forms/filtersets.py:1334 netbox/dcim/forms/filtersets.py:1444 -#: netbox/dcim/forms/filtersets.py:1469 netbox/dcim/forms/filtersets.py:1493 -#: netbox/dcim/forms/filtersets.py:1511 netbox/dcim/forms/filtersets.py:1528 -#: netbox/dcim/forms/filtersets.py:1592 netbox/dcim/forms/filtersets.py:1616 -#: netbox/dcim/forms/filtersets.py:1640 netbox/dcim/forms/model_forms.py:633 -#: netbox/dcim/forms/model_forms.py:849 netbox/dcim/forms/model_forms.py:1208 -#: netbox/dcim/forms/model_forms.py:1664 -#: netbox/dcim/forms/object_create.py:257 netbox/dcim/tables/connections.py:22 -#: netbox/dcim/tables/connections.py:41 netbox/dcim/tables/connections.py:60 -#: netbox/dcim/tables/devices.py:285 netbox/dcim/tables/devices.py:371 -#: netbox/dcim/tables/devices.py:412 netbox/dcim/tables/devices.py:454 -#: netbox/dcim/tables/devices.py:505 netbox/dcim/tables/devices.py:597 -#: netbox/dcim/tables/devices.py:697 netbox/dcim/tables/devices.py:754 -#: netbox/dcim/tables/devices.py:801 netbox/dcim/tables/devices.py:861 -#: netbox/dcim/tables/devices.py:930 netbox/dcim/tables/devices.py:1057 -#: netbox/dcim/tables/modules.py:52 netbox/extras/forms/filtersets.py:321 -#: netbox/ipam/forms/bulk_import.py:304 netbox/ipam/forms/bulk_import.py:481 -#: netbox/ipam/forms/filtersets.py:551 netbox/ipam/forms/model_forms.py:319 -#: netbox/ipam/forms/model_forms.py:679 netbox/ipam/forms/model_forms.py:712 -#: netbox/ipam/forms/model_forms.py:738 netbox/ipam/tables/vlans.py:180 -#: netbox/templates/dcim/consoleport.html:20 -#: netbox/templates/dcim/consoleserverport.html:20 -#: netbox/templates/dcim/device.html:15 netbox/templates/dcim/device.html:130 -#: netbox/templates/dcim/device_edit.html:10 -#: netbox/templates/dcim/devicebay.html:20 -#: netbox/templates/dcim/devicebay.html:48 -#: netbox/templates/dcim/frontport.html:20 -#: netbox/templates/dcim/interface.html:30 -#: netbox/templates/dcim/interface.html:161 -#: netbox/templates/dcim/inventoryitem.html:20 -#: netbox/templates/dcim/module.html:57 -#: netbox/templates/dcim/modulebay.html:20 -#: netbox/templates/dcim/poweroutlet.html:20 -#: netbox/templates/dcim/powerport.html:20 -#: netbox/templates/dcim/rearport.html:20 -#: netbox/templates/dcim/virtualchassis.html:65 -#: netbox/templates/dcim/virtualchassis_edit.html:51 -#: netbox/templates/dcim/virtualdevicecontext.html:22 -#: netbox/templates/virtualization/virtualmachine.html:114 -#: netbox/templates/vpn/tunneltermination.html:23 -#: netbox/templates/wireless/inc/wirelesslink_interface.html:6 -#: netbox/virtualization/filtersets.py:167 -#: netbox/virtualization/forms/bulk_edit.py:137 -#: netbox/virtualization/forms/bulk_import.py:99 -#: netbox/virtualization/forms/filtersets.py:128 -#: netbox/virtualization/forms/model_forms.py:185 -#: netbox/virtualization/tables/virtualmachines.py:71 netbox/vpn/choices.py:44 -#: netbox/vpn/forms/bulk_import.py:86 netbox/vpn/forms/bulk_import.py:283 -#: netbox/vpn/forms/filtersets.py:275 netbox/vpn/forms/model_forms.py:90 -#: netbox/vpn/forms/model_forms.py:125 netbox/vpn/forms/model_forms.py:236 -#: netbox/vpn/forms/model_forms.py:453 netbox/wireless/forms/model_forms.py:99 -#: netbox/wireless/forms/model_forms.py:141 -#: netbox/wireless/tables/wirelesslan.py:75 +#: dcim/forms/bulk_edit.py:728 dcim/forms/bulk_edit.py:1281 +#: dcim/forms/bulk_edit.py:1650 dcim/forms/bulk_edit.py:1696 +#: dcim/forms/bulk_import.py:641 dcim/forms/bulk_import.py:703 +#: dcim/forms/bulk_import.py:729 dcim/forms/bulk_import.py:755 +#: dcim/forms/bulk_import.py:775 dcim/forms/bulk_import.py:828 +#: dcim/forms/bulk_import.py:946 dcim/forms/bulk_import.py:994 +#: dcim/forms/bulk_import.py:1011 dcim/forms/bulk_import.py:1023 +#: dcim/forms/bulk_import.py:1071 dcim/forms/bulk_import.py:1422 +#: dcim/forms/connections.py:24 dcim/forms/filtersets.py:131 +#: dcim/forms/filtersets.py:921 dcim/forms/filtersets.py:1051 +#: dcim/forms/filtersets.py:1242 dcim/forms/filtersets.py:1267 +#: dcim/forms/filtersets.py:1291 dcim/forms/filtersets.py:1311 +#: dcim/forms/filtersets.py:1334 dcim/forms/filtersets.py:1444 +#: dcim/forms/filtersets.py:1469 dcim/forms/filtersets.py:1493 +#: dcim/forms/filtersets.py:1511 dcim/forms/filtersets.py:1528 +#: dcim/forms/filtersets.py:1592 dcim/forms/filtersets.py:1616 +#: dcim/forms/filtersets.py:1640 dcim/forms/model_forms.py:633 +#: dcim/forms/model_forms.py:849 dcim/forms/model_forms.py:1208 +#: dcim/forms/model_forms.py:1664 dcim/forms/object_create.py:257 +#: dcim/tables/connections.py:22 dcim/tables/connections.py:41 +#: dcim/tables/connections.py:60 dcim/tables/devices.py:285 +#: dcim/tables/devices.py:371 dcim/tables/devices.py:412 +#: dcim/tables/devices.py:454 dcim/tables/devices.py:505 +#: dcim/tables/devices.py:597 dcim/tables/devices.py:697 +#: dcim/tables/devices.py:754 dcim/tables/devices.py:801 +#: dcim/tables/devices.py:861 dcim/tables/devices.py:930 +#: dcim/tables/devices.py:1057 dcim/tables/modules.py:52 +#: extras/forms/filtersets.py:321 ipam/forms/bulk_import.py:304 +#: ipam/forms/bulk_import.py:481 ipam/forms/filtersets.py:551 +#: ipam/forms/model_forms.py:319 ipam/forms/model_forms.py:679 +#: ipam/forms/model_forms.py:712 ipam/forms/model_forms.py:738 +#: ipam/tables/vlans.py:180 templates/dcim/consoleport.html:20 +#: templates/dcim/consoleserverport.html:20 templates/dcim/device.html:15 +#: templates/dcim/device.html:130 templates/dcim/device_edit.html:10 +#: templates/dcim/devicebay.html:20 templates/dcim/devicebay.html:48 +#: templates/dcim/frontport.html:20 templates/dcim/interface.html:30 +#: templates/dcim/interface.html:161 templates/dcim/inventoryitem.html:20 +#: templates/dcim/module.html:57 templates/dcim/modulebay.html:20 +#: templates/dcim/poweroutlet.html:20 templates/dcim/powerport.html:20 +#: templates/dcim/rearport.html:20 templates/dcim/virtualchassis.html:65 +#: templates/dcim/virtualchassis_edit.html:51 +#: templates/dcim/virtualdevicecontext.html:22 +#: templates/virtualization/virtualmachine.html:114 +#: templates/vpn/tunneltermination.html:23 +#: templates/wireless/inc/wirelesslink_interface.html:6 +#: virtualization/filtersets.py:167 virtualization/forms/bulk_edit.py:137 +#: virtualization/forms/bulk_import.py:99 +#: virtualization/forms/filtersets.py:128 +#: virtualization/forms/model_forms.py:185 +#: virtualization/tables/virtualmachines.py:71 vpn/choices.py:44 +#: vpn/forms/bulk_import.py:86 vpn/forms/bulk_import.py:283 +#: vpn/forms/filtersets.py:275 vpn/forms/model_forms.py:90 +#: vpn/forms/model_forms.py:125 vpn/forms/model_forms.py:236 +#: vpn/forms/model_forms.py:453 wireless/forms/model_forms.py:99 +#: wireless/forms/model_forms.py:141 wireless/tables/wirelesslan.py:75 msgid "Device" msgstr "Cihaz" -#: netbox/dcim/forms/bulk_edit.py:731 -#: netbox/templates/extras/dashboard/widget_config.html:7 -#: netbox/virtualization/forms/bulk_edit.py:191 +#: dcim/forms/bulk_edit.py:731 templates/extras/dashboard/widget_config.html:7 +#: virtualization/forms/bulk_edit.py:191 msgid "Configuration" msgstr "Yapılandırma" -#: netbox/dcim/forms/bulk_edit.py:745 netbox/dcim/forms/bulk_import.py:653 -#: netbox/dcim/forms/model_forms.py:647 netbox/dcim/forms/model_forms.py:897 +#: dcim/forms/bulk_edit.py:745 dcim/forms/bulk_import.py:653 +#: dcim/forms/model_forms.py:647 dcim/forms/model_forms.py:897 msgid "Module type" msgstr "Modül tipi" -#: netbox/dcim/forms/bulk_edit.py:799 netbox/dcim/forms/bulk_edit.py:984 -#: netbox/dcim/forms/bulk_edit.py:1003 netbox/dcim/forms/bulk_edit.py:1026 -#: netbox/dcim/forms/bulk_edit.py:1068 netbox/dcim/forms/bulk_edit.py:1112 -#: netbox/dcim/forms/bulk_edit.py:1163 netbox/dcim/forms/bulk_edit.py:1190 -#: netbox/dcim/forms/bulk_edit.py:1217 netbox/dcim/forms/bulk_edit.py:1235 -#: netbox/dcim/forms/bulk_edit.py:1253 netbox/dcim/forms/filtersets.py:67 -#: netbox/dcim/forms/object_create.py:46 netbox/templates/dcim/cable.html:32 -#: netbox/templates/dcim/consoleport.html:32 -#: netbox/templates/dcim/consoleserverport.html:32 -#: netbox/templates/dcim/devicebay.html:28 -#: netbox/templates/dcim/frontport.html:32 -#: netbox/templates/dcim/inc/panels/inventory_items.html:19 -#: netbox/templates/dcim/interface.html:42 -#: netbox/templates/dcim/inventoryitem.html:32 -#: netbox/templates/dcim/modulebay.html:34 -#: netbox/templates/dcim/poweroutlet.html:32 -#: netbox/templates/dcim/powerport.html:32 -#: netbox/templates/dcim/rearport.html:32 -#: netbox/templates/extras/customfield.html:26 -#: netbox/templates/generic/bulk_import.html:162 +#: dcim/forms/bulk_edit.py:799 dcim/forms/bulk_edit.py:984 +#: dcim/forms/bulk_edit.py:1003 dcim/forms/bulk_edit.py:1026 +#: dcim/forms/bulk_edit.py:1068 dcim/forms/bulk_edit.py:1112 +#: dcim/forms/bulk_edit.py:1163 dcim/forms/bulk_edit.py:1190 +#: dcim/forms/bulk_edit.py:1217 dcim/forms/bulk_edit.py:1235 +#: dcim/forms/bulk_edit.py:1253 dcim/forms/filtersets.py:67 +#: dcim/forms/object_create.py:46 templates/dcim/cable.html:32 +#: templates/dcim/consoleport.html:32 templates/dcim/consoleserverport.html:32 +#: templates/dcim/devicebay.html:28 templates/dcim/frontport.html:32 +#: templates/dcim/inc/panels/inventory_items.html:19 +#: templates/dcim/interface.html:42 templates/dcim/inventoryitem.html:32 +#: templates/dcim/modulebay.html:34 templates/dcim/poweroutlet.html:32 +#: templates/dcim/powerport.html:32 templates/dcim/rearport.html:32 +#: templates/extras/customfield.html:26 templates/generic/bulk_import.html:162 msgid "Label" msgstr "etiket" -#: netbox/dcim/forms/bulk_edit.py:808 netbox/dcim/forms/filtersets.py:1068 -#: netbox/templates/dcim/cable.html:50 +#: dcim/forms/bulk_edit.py:808 dcim/forms/filtersets.py:1068 +#: templates/dcim/cable.html:50 msgid "Length" msgstr "Uzunluk" -#: netbox/dcim/forms/bulk_edit.py:813 netbox/dcim/forms/bulk_import.py:1226 -#: netbox/dcim/forms/bulk_import.py:1229 netbox/dcim/forms/filtersets.py:1072 +#: dcim/forms/bulk_edit.py:813 dcim/forms/bulk_import.py:1226 +#: dcim/forms/bulk_import.py:1229 dcim/forms/filtersets.py:1072 msgid "Length unit" msgstr "Uzunluk birimi" -#: netbox/dcim/forms/bulk_edit.py:837 -#: netbox/templates/dcim/virtualchassis.html:23 +#: dcim/forms/bulk_edit.py:837 templates/dcim/virtualchassis.html:23 msgid "Domain" msgstr "Alan adı" -#: netbox/dcim/forms/bulk_edit.py:905 netbox/dcim/forms/bulk_import.py:1345 -#: netbox/dcim/forms/filtersets.py:1158 netbox/dcim/forms/model_forms.py:750 +#: dcim/forms/bulk_edit.py:905 dcim/forms/bulk_import.py:1345 +#: dcim/forms/filtersets.py:1158 dcim/forms/model_forms.py:750 msgid "Power panel" msgstr "Güç paneli" -#: netbox/dcim/forms/bulk_edit.py:927 netbox/dcim/forms/bulk_import.py:1381 -#: netbox/dcim/forms/filtersets.py:1180 -#: netbox/templates/dcim/powerfeed.html:83 +#: dcim/forms/bulk_edit.py:927 dcim/forms/bulk_import.py:1381 +#: dcim/forms/filtersets.py:1180 templates/dcim/powerfeed.html:83 msgid "Supply" msgstr "Tedarik" -#: netbox/dcim/forms/bulk_edit.py:933 netbox/dcim/forms/bulk_import.py:1386 -#: netbox/dcim/forms/filtersets.py:1185 -#: netbox/templates/dcim/powerfeed.html:95 +#: dcim/forms/bulk_edit.py:933 dcim/forms/bulk_import.py:1386 +#: dcim/forms/filtersets.py:1185 templates/dcim/powerfeed.html:95 msgid "Phase" msgstr "Faz" -#: netbox/dcim/forms/bulk_edit.py:939 netbox/dcim/forms/filtersets.py:1190 -#: netbox/templates/dcim/powerfeed.html:87 +#: dcim/forms/bulk_edit.py:939 dcim/forms/filtersets.py:1190 +#: templates/dcim/powerfeed.html:87 msgid "Voltage" msgstr "Gerilim" -#: netbox/dcim/forms/bulk_edit.py:943 netbox/dcim/forms/filtersets.py:1194 -#: netbox/templates/dcim/powerfeed.html:91 +#: dcim/forms/bulk_edit.py:943 dcim/forms/filtersets.py:1194 +#: templates/dcim/powerfeed.html:91 msgid "Amperage" msgstr "Amper" -#: netbox/dcim/forms/bulk_edit.py:947 netbox/dcim/forms/filtersets.py:1198 +#: dcim/forms/bulk_edit.py:947 dcim/forms/filtersets.py:1198 msgid "Max utilization" msgstr "Maksimum kullanım" -#: netbox/dcim/forms/bulk_edit.py:1036 +#: dcim/forms/bulk_edit.py:1036 msgid "Maximum draw" msgstr "Maksimum çekiliş" -#: netbox/dcim/forms/bulk_edit.py:1039 -#: netbox/dcim/models/device_component_templates.py:282 -#: netbox/dcim/models/device_components.py:356 +#: dcim/forms/bulk_edit.py:1039 dcim/models/device_component_templates.py:282 +#: dcim/models/device_components.py:356 msgid "Maximum power draw (watts)" msgstr "Maksimum güç çekimi (watt)" -#: netbox/dcim/forms/bulk_edit.py:1042 +#: dcim/forms/bulk_edit.py:1042 msgid "Allocated draw" msgstr "Tahsis edilen çekiliş" -#: netbox/dcim/forms/bulk_edit.py:1045 -#: netbox/dcim/models/device_component_templates.py:289 -#: netbox/dcim/models/device_components.py:363 +#: dcim/forms/bulk_edit.py:1045 dcim/models/device_component_templates.py:289 +#: dcim/models/device_components.py:363 msgid "Allocated power draw (watts)" msgstr "Tahsis edilen güç çekimi (watt)" -#: netbox/dcim/forms/bulk_edit.py:1078 netbox/dcim/forms/bulk_import.py:786 -#: netbox/dcim/forms/model_forms.py:953 netbox/dcim/forms/model_forms.py:1278 -#: netbox/dcim/forms/model_forms.py:1567 netbox/dcim/forms/object_import.py:55 +#: dcim/forms/bulk_edit.py:1078 dcim/forms/bulk_import.py:786 +#: dcim/forms/model_forms.py:953 dcim/forms/model_forms.py:1278 +#: dcim/forms/model_forms.py:1567 dcim/forms/object_import.py:55 msgid "Power port" msgstr "Güç bağlantı noktası" -#: netbox/dcim/forms/bulk_edit.py:1083 netbox/dcim/forms/bulk_import.py:793 +#: dcim/forms/bulk_edit.py:1083 dcim/forms/bulk_import.py:793 msgid "Feed leg" msgstr "Besleme bacağı" -#: netbox/dcim/forms/bulk_edit.py:1129 netbox/dcim/forms/bulk_edit.py:1440 +#: dcim/forms/bulk_edit.py:1129 dcim/forms/bulk_edit.py:1440 msgid "Management only" msgstr "Yalnızca yönetim" -#: netbox/dcim/forms/bulk_edit.py:1139 netbox/dcim/forms/bulk_edit.py:1446 -#: netbox/dcim/forms/bulk_import.py:876 netbox/dcim/forms/filtersets.py:1394 -#: netbox/dcim/forms/object_import.py:90 -#: netbox/dcim/models/device_component_templates.py:437 -#: netbox/dcim/models/device_components.py:670 +#: dcim/forms/bulk_edit.py:1139 dcim/forms/bulk_edit.py:1446 +#: dcim/forms/bulk_import.py:876 dcim/forms/filtersets.py:1394 +#: dcim/forms/object_import.py:90 +#: dcim/models/device_component_templates.py:437 +#: dcim/models/device_components.py:670 msgid "PoE mode" msgstr "PoE modu" -#: netbox/dcim/forms/bulk_edit.py:1145 netbox/dcim/forms/bulk_edit.py:1452 -#: netbox/dcim/forms/bulk_import.py:882 netbox/dcim/forms/filtersets.py:1399 -#: netbox/dcim/forms/object_import.py:95 -#: netbox/dcim/models/device_component_templates.py:443 -#: netbox/dcim/models/device_components.py:676 +#: dcim/forms/bulk_edit.py:1145 dcim/forms/bulk_edit.py:1452 +#: dcim/forms/bulk_import.py:882 dcim/forms/filtersets.py:1399 +#: dcim/forms/object_import.py:95 +#: dcim/models/device_component_templates.py:443 +#: dcim/models/device_components.py:676 msgid "PoE type" msgstr "PoE tipi" -#: netbox/dcim/forms/bulk_edit.py:1151 netbox/dcim/forms/filtersets.py:1404 -#: netbox/dcim/forms/object_import.py:100 +#: dcim/forms/bulk_edit.py:1151 dcim/forms/filtersets.py:1404 +#: dcim/forms/object_import.py:100 msgid "Wireless role" msgstr "Kablosuz rolü" -#: netbox/dcim/forms/bulk_edit.py:1288 netbox/dcim/forms/model_forms.py:669 -#: netbox/dcim/forms/model_forms.py:1223 netbox/dcim/tables/devices.py:313 -#: netbox/templates/dcim/consoleport.html:24 -#: netbox/templates/dcim/consoleserverport.html:24 -#: netbox/templates/dcim/frontport.html:24 -#: netbox/templates/dcim/interface.html:34 -#: netbox/templates/dcim/module.html:54 -#: netbox/templates/dcim/modulebay.html:26 -#: netbox/templates/dcim/modulebay.html:58 -#: netbox/templates/dcim/poweroutlet.html:24 -#: netbox/templates/dcim/powerport.html:24 -#: netbox/templates/dcim/rearport.html:24 +#: dcim/forms/bulk_edit.py:1288 dcim/forms/model_forms.py:669 +#: dcim/forms/model_forms.py:1223 dcim/tables/devices.py:313 +#: templates/dcim/consoleport.html:24 templates/dcim/consoleserverport.html:24 +#: templates/dcim/frontport.html:24 templates/dcim/interface.html:34 +#: templates/dcim/module.html:54 templates/dcim/modulebay.html:26 +#: templates/dcim/modulebay.html:58 templates/dcim/poweroutlet.html:24 +#: templates/dcim/powerport.html:24 templates/dcim/rearport.html:24 msgid "Module" msgstr "Modül" -#: netbox/dcim/forms/bulk_edit.py:1420 netbox/dcim/tables/devices.py:665 -#: netbox/templates/dcim/interface.html:110 +#: dcim/forms/bulk_edit.py:1420 dcim/tables/devices.py:665 +#: templates/dcim/interface.html:110 msgid "LAG" msgstr "GECİKME" -#: netbox/dcim/forms/bulk_edit.py:1425 netbox/dcim/forms/model_forms.py:1305 +#: dcim/forms/bulk_edit.py:1425 dcim/forms/model_forms.py:1305 msgid "Virtual device contexts" msgstr "Sanal cihaz bağlamları" -#: netbox/dcim/forms/bulk_edit.py:1431 netbox/dcim/forms/bulk_import.py:714 -#: netbox/dcim/forms/bulk_import.py:740 netbox/dcim/forms/filtersets.py:1252 -#: netbox/dcim/forms/filtersets.py:1277 netbox/dcim/forms/filtersets.py:1358 -#: netbox/dcim/tables/devices.py:610 -#: netbox/templates/circuits/inc/circuit_termination_fields.html:67 -#: netbox/templates/dcim/consoleport.html:40 -#: netbox/templates/dcim/consoleserverport.html:40 +#: dcim/forms/bulk_edit.py:1431 dcim/forms/bulk_import.py:714 +#: dcim/forms/bulk_import.py:740 dcim/forms/filtersets.py:1252 +#: dcim/forms/filtersets.py:1277 dcim/forms/filtersets.py:1358 +#: dcim/tables/devices.py:610 +#: templates/circuits/inc/circuit_termination_fields.html:67 +#: templates/dcim/consoleport.html:40 templates/dcim/consoleserverport.html:40 msgid "Speed" msgstr "Hız" -#: netbox/dcim/forms/bulk_edit.py:1460 netbox/dcim/forms/bulk_import.py:885 -#: netbox/templates/vpn/ikepolicy.html:25 -#: netbox/templates/vpn/ipsecprofile.html:21 -#: netbox/templates/vpn/ipsecprofile.html:48 -#: netbox/virtualization/forms/bulk_edit.py:233 -#: netbox/virtualization/forms/bulk_import.py:165 -#: netbox/vpn/forms/bulk_edit.py:146 netbox/vpn/forms/bulk_edit.py:232 -#: netbox/vpn/forms/bulk_import.py:176 netbox/vpn/forms/bulk_import.py:234 -#: netbox/vpn/forms/filtersets.py:135 netbox/vpn/forms/filtersets.py:178 -#: netbox/vpn/forms/filtersets.py:192 netbox/vpn/tables/crypto.py:64 -#: netbox/vpn/tables/crypto.py:162 +#: dcim/forms/bulk_edit.py:1460 dcim/forms/bulk_import.py:885 +#: templates/vpn/ikepolicy.html:25 templates/vpn/ipsecprofile.html:21 +#: templates/vpn/ipsecprofile.html:48 virtualization/forms/bulk_edit.py:233 +#: virtualization/forms/bulk_import.py:165 vpn/forms/bulk_edit.py:146 +#: vpn/forms/bulk_edit.py:232 vpn/forms/bulk_import.py:176 +#: vpn/forms/bulk_import.py:234 vpn/forms/filtersets.py:135 +#: vpn/forms/filtersets.py:178 vpn/forms/filtersets.py:192 +#: vpn/tables/crypto.py:64 vpn/tables/crypto.py:162 msgid "Mode" msgstr "Modu" -#: netbox/dcim/forms/bulk_edit.py:1468 netbox/dcim/forms/model_forms.py:1354 -#: netbox/ipam/forms/bulk_import.py:178 netbox/ipam/forms/filtersets.py:498 -#: netbox/ipam/models/vlans.py:84 netbox/virtualization/forms/bulk_edit.py:240 -#: netbox/virtualization/forms/model_forms.py:321 +#: dcim/forms/bulk_edit.py:1468 dcim/forms/model_forms.py:1354 +#: ipam/forms/bulk_import.py:178 ipam/forms/filtersets.py:498 +#: ipam/models/vlans.py:84 virtualization/forms/bulk_edit.py:240 +#: virtualization/forms/model_forms.py:321 msgid "VLAN group" msgstr "VLAN grubu" -#: netbox/dcim/forms/bulk_edit.py:1476 netbox/dcim/forms/model_forms.py:1360 -#: netbox/dcim/tables/devices.py:579 -#: netbox/virtualization/forms/bulk_edit.py:248 -#: netbox/virtualization/forms/model_forms.py:326 +#: dcim/forms/bulk_edit.py:1476 dcim/forms/model_forms.py:1360 +#: dcim/tables/devices.py:579 virtualization/forms/bulk_edit.py:248 +#: virtualization/forms/model_forms.py:326 msgid "Untagged VLAN" msgstr "Etiketsiz VLAN" -#: netbox/dcim/forms/bulk_edit.py:1484 netbox/dcim/forms/model_forms.py:1369 -#: netbox/dcim/tables/devices.py:585 -#: netbox/virtualization/forms/bulk_edit.py:256 -#: netbox/virtualization/forms/model_forms.py:335 +#: dcim/forms/bulk_edit.py:1484 dcim/forms/model_forms.py:1369 +#: dcim/tables/devices.py:585 virtualization/forms/bulk_edit.py:256 +#: virtualization/forms/model_forms.py:335 msgid "Tagged VLANs" msgstr "Etiketli VLAN'lar" -#: netbox/dcim/forms/bulk_edit.py:1494 netbox/dcim/forms/model_forms.py:1341 +#: dcim/forms/bulk_edit.py:1494 dcim/forms/model_forms.py:1341 msgid "Wireless LAN group" msgstr "Kablosuz LAN grubu" -#: netbox/dcim/forms/bulk_edit.py:1499 netbox/dcim/forms/model_forms.py:1346 -#: netbox/dcim/tables/devices.py:619 netbox/netbox/navigation/menu.py:146 -#: netbox/templates/dcim/interface.html:280 -#: netbox/wireless/tables/wirelesslan.py:24 +#: dcim/forms/bulk_edit.py:1499 dcim/forms/model_forms.py:1346 +#: dcim/tables/devices.py:619 netbox/navigation/menu.py:146 +#: templates/dcim/interface.html:280 wireless/tables/wirelesslan.py:24 msgid "Wireless LANs" msgstr "Kablosuz LAN'lar" -#: netbox/dcim/forms/bulk_edit.py:1508 netbox/dcim/forms/filtersets.py:1328 -#: netbox/dcim/forms/model_forms.py:1390 netbox/ipam/forms/bulk_edit.py:285 -#: netbox/ipam/forms/bulk_edit.py:377 netbox/ipam/forms/filtersets.py:169 -#: netbox/templates/dcim/interface.html:122 -#: netbox/templates/ipam/prefix.html:95 -#: netbox/virtualization/forms/model_forms.py:349 +#: dcim/forms/bulk_edit.py:1508 dcim/forms/filtersets.py:1328 +#: dcim/forms/model_forms.py:1390 ipam/forms/bulk_edit.py:286 +#: ipam/forms/bulk_edit.py:378 ipam/forms/filtersets.py:169 +#: templates/dcim/interface.html:122 templates/ipam/prefix.html:95 +#: virtualization/forms/model_forms.py:349 msgid "Addressing" msgstr "Adresleme" -#: netbox/dcim/forms/bulk_edit.py:1509 netbox/dcim/forms/filtersets.py:720 -#: netbox/dcim/forms/model_forms.py:1391 -#: netbox/virtualization/forms/model_forms.py:350 +#: dcim/forms/bulk_edit.py:1509 dcim/forms/filtersets.py:720 +#: dcim/forms/model_forms.py:1391 virtualization/forms/model_forms.py:350 msgid "Operation" msgstr "Operasyon" -#: netbox/dcim/forms/bulk_edit.py:1510 netbox/dcim/forms/filtersets.py:1329 -#: netbox/dcim/forms/model_forms.py:987 netbox/dcim/forms/model_forms.py:1393 +#: dcim/forms/bulk_edit.py:1510 dcim/forms/filtersets.py:1329 +#: dcim/forms/model_forms.py:987 dcim/forms/model_forms.py:1393 msgid "PoE" msgstr "PoE" -#: netbox/dcim/forms/bulk_edit.py:1511 netbox/dcim/forms/model_forms.py:1392 -#: netbox/templates/dcim/interface.html:99 -#: netbox/virtualization/forms/bulk_edit.py:267 -#: netbox/virtualization/forms/model_forms.py:351 +#: dcim/forms/bulk_edit.py:1511 dcim/forms/model_forms.py:1392 +#: templates/dcim/interface.html:99 virtualization/forms/bulk_edit.py:267 +#: virtualization/forms/model_forms.py:351 msgid "Related Interfaces" msgstr "İlgili Arayüzler" -#: netbox/dcim/forms/bulk_edit.py:1512 netbox/dcim/forms/model_forms.py:1394 -#: netbox/virtualization/forms/bulk_edit.py:268 -#: netbox/virtualization/forms/model_forms.py:352 +#: dcim/forms/bulk_edit.py:1512 dcim/forms/model_forms.py:1394 +#: virtualization/forms/bulk_edit.py:268 +#: virtualization/forms/model_forms.py:352 msgid "802.1Q Switching" msgstr "802.1Q Anahtarlama" -#: netbox/dcim/forms/bulk_edit.py:1574 netbox/dcim/forms/bulk_edit.py:1576 +#: dcim/forms/bulk_edit.py:1574 dcim/forms/bulk_edit.py:1576 msgid "Interface mode must be specified to assign VLANs" msgstr "VLAN'ları atamak için arayüz modu belirtilmelidir" -#: netbox/dcim/forms/bulk_edit.py:1581 netbox/dcim/forms/common.py:50 +#: dcim/forms/bulk_edit.py:1581 dcim/forms/common.py:50 msgid "An access interface cannot have tagged VLANs assigned." msgstr "Bir erişim arabirimi VLAN'ları etiketlemiş olamaz." -#: netbox/dcim/forms/bulk_import.py:64 +#: dcim/forms/bulk_import.py:64 msgid "Name of parent region" msgstr "Ana bölgenin adı" -#: netbox/dcim/forms/bulk_import.py:78 +#: dcim/forms/bulk_import.py:78 msgid "Name of parent site group" msgstr "Üst site grubunun adı" -#: netbox/dcim/forms/bulk_import.py:97 +#: dcim/forms/bulk_import.py:97 msgid "Assigned region" msgstr "Atanan bölge" -#: netbox/dcim/forms/bulk_import.py:104 netbox/tenancy/forms/bulk_import.py:44 -#: netbox/tenancy/forms/bulk_import.py:85 -#: netbox/wireless/forms/bulk_import.py:40 +#: dcim/forms/bulk_import.py:104 tenancy/forms/bulk_import.py:44 +#: tenancy/forms/bulk_import.py:85 wireless/forms/bulk_import.py:40 msgid "Assigned group" msgstr "Atanan grup" -#: netbox/dcim/forms/bulk_import.py:123 +#: dcim/forms/bulk_import.py:123 msgid "available options" msgstr "mevcut seçenekler" -#: netbox/dcim/forms/bulk_import.py:134 netbox/dcim/forms/bulk_import.py:543 -#: netbox/dcim/forms/bulk_import.py:1342 netbox/ipam/forms/bulk_import.py:175 -#: netbox/ipam/forms/bulk_import.py:433 -#: netbox/virtualization/forms/bulk_import.py:63 -#: netbox/virtualization/forms/bulk_import.py:89 +#: dcim/forms/bulk_import.py:134 dcim/forms/bulk_import.py:543 +#: dcim/forms/bulk_import.py:1342 ipam/forms/bulk_import.py:175 +#: ipam/forms/bulk_import.py:433 virtualization/forms/bulk_import.py:63 +#: virtualization/forms/bulk_import.py:89 msgid "Assigned site" msgstr "Atanan site" -#: netbox/dcim/forms/bulk_import.py:141 +#: dcim/forms/bulk_import.py:141 msgid "Parent location" msgstr "Ana konum" -#: netbox/dcim/forms/bulk_import.py:143 +#: dcim/forms/bulk_import.py:143 msgid "Location not found." msgstr "Konum bulunamadı." -#: netbox/dcim/forms/bulk_import.py:185 +#: dcim/forms/bulk_import.py:185 msgid "The manufacturer of this rack type" msgstr "Bu raf tipinin üreticisi" -#: netbox/dcim/forms/bulk_import.py:196 +#: dcim/forms/bulk_import.py:196 msgid "The lowest-numbered position in the rack" msgstr "Raftaki en düşük numaralı konum" -#: netbox/dcim/forms/bulk_import.py:201 netbox/dcim/forms/bulk_import.py:268 +#: dcim/forms/bulk_import.py:201 dcim/forms/bulk_import.py:268 msgid "Rail-to-rail width (in inches)" msgstr "Ray-ray genişliği (inç cinsinden)" -#: netbox/dcim/forms/bulk_import.py:207 netbox/dcim/forms/bulk_import.py:274 +#: dcim/forms/bulk_import.py:207 dcim/forms/bulk_import.py:274 msgid "Unit for outer dimensions" msgstr "Dış boyutlar için birim" -#: netbox/dcim/forms/bulk_import.py:213 netbox/dcim/forms/bulk_import.py:286 +#: dcim/forms/bulk_import.py:213 dcim/forms/bulk_import.py:286 msgid "Unit for rack weights" msgstr "Raf ağırlıkları için ünite" -#: netbox/dcim/forms/bulk_import.py:245 +#: dcim/forms/bulk_import.py:245 msgid "Name of assigned tenant" msgstr "Atanan kiracının adı" -#: netbox/dcim/forms/bulk_import.py:257 +#: dcim/forms/bulk_import.py:257 msgid "Name of assigned role" msgstr "Atanan rolün adı" -#: netbox/dcim/forms/bulk_import.py:280 netbox/dcim/forms/bulk_import.py:413 -#: netbox/dcim/forms/bulk_import.py:583 +#: dcim/forms/bulk_import.py:280 dcim/forms/bulk_import.py:413 +#: dcim/forms/bulk_import.py:583 msgid "Airflow direction" msgstr "Hava akışı yönü" -#: netbox/dcim/forms/bulk_import.py:312 +#: dcim/forms/bulk_import.py:312 msgid "Parent site" msgstr "Ana site" -#: netbox/dcim/forms/bulk_import.py:319 netbox/dcim/forms/bulk_import.py:1355 +#: dcim/forms/bulk_import.py:319 dcim/forms/bulk_import.py:1355 msgid "Rack's location (if any)" msgstr "Rafın konumu (varsa)" -#: netbox/dcim/forms/bulk_import.py:328 netbox/dcim/forms/model_forms.py:311 -#: netbox/dcim/tables/racks.py:222 -#: netbox/templates/dcim/rackreservation.html:12 -#: netbox/templates/dcim/rackreservation.html:45 +#: dcim/forms/bulk_import.py:328 dcim/forms/model_forms.py:311 +#: dcim/tables/racks.py:222 templates/dcim/rackreservation.html:12 +#: templates/dcim/rackreservation.html:45 msgid "Units" msgstr "Birimler" -#: netbox/dcim/forms/bulk_import.py:331 +#: dcim/forms/bulk_import.py:331 msgid "Comma-separated list of individual unit numbers" msgstr "Bireysel birim numaralarının virgülle ayrılmış listesi" -#: netbox/dcim/forms/bulk_import.py:374 +#: dcim/forms/bulk_import.py:374 msgid "The manufacturer which produces this device type" msgstr "Bu cihaz tipini üreten üretici" -#: netbox/dcim/forms/bulk_import.py:381 +#: dcim/forms/bulk_import.py:381 msgid "The default platform for devices of this type (optional)" msgstr "Bu tür cihazlar için varsayılan platform (isteğe bağlı)" -#: netbox/dcim/forms/bulk_import.py:386 +#: dcim/forms/bulk_import.py:386 msgid "Device weight" msgstr "Cihaz ağırlığı" -#: netbox/dcim/forms/bulk_import.py:392 +#: dcim/forms/bulk_import.py:392 msgid "Unit for device weight" msgstr "Cihaz ağırlığı için birim" -#: netbox/dcim/forms/bulk_import.py:418 +#: dcim/forms/bulk_import.py:418 msgid "Module weight" msgstr "Modül ağırlığı" -#: netbox/dcim/forms/bulk_import.py:424 +#: dcim/forms/bulk_import.py:424 msgid "Unit for module weight" msgstr "Modül ağırlığı için birim" -#: netbox/dcim/forms/bulk_import.py:454 +#: dcim/forms/bulk_import.py:454 msgid "Limit platform assignments to this manufacturer" msgstr "Platform atamalarını bu üreticiye sınırlayın" -#: netbox/dcim/forms/bulk_import.py:476 netbox/dcim/forms/bulk_import.py:1425 -#: netbox/tenancy/forms/bulk_import.py:106 +#: dcim/forms/bulk_import.py:476 dcim/forms/bulk_import.py:1425 +#: tenancy/forms/bulk_import.py:106 msgid "Assigned role" msgstr "Atanan rol" -#: netbox/dcim/forms/bulk_import.py:489 +#: dcim/forms/bulk_import.py:489 msgid "Device type manufacturer" msgstr "Cihaz tipi üreticisi" -#: netbox/dcim/forms/bulk_import.py:495 +#: dcim/forms/bulk_import.py:495 msgid "Device type model" msgstr "Cihaz tipi modeli" -#: netbox/dcim/forms/bulk_import.py:502 -#: netbox/virtualization/forms/bulk_import.py:126 +#: dcim/forms/bulk_import.py:502 virtualization/forms/bulk_import.py:126 msgid "Assigned platform" msgstr "Atanan platform" -#: netbox/dcim/forms/bulk_import.py:510 netbox/dcim/forms/bulk_import.py:514 -#: netbox/dcim/forms/model_forms.py:536 +#: dcim/forms/bulk_import.py:510 dcim/forms/bulk_import.py:514 +#: dcim/forms/model_forms.py:536 msgid "Virtual chassis" msgstr "Sanal şasi" -#: netbox/dcim/forms/bulk_import.py:517 netbox/dcim/forms/filtersets.py:728 -#: netbox/dcim/forms/filtersets.py:898 netbox/dcim/forms/model_forms.py:522 -#: netbox/dcim/tables/devices.py:202 netbox/extras/filtersets.py:596 -#: netbox/extras/forms/filtersets.py:322 netbox/ipam/forms/bulk_edit.py:482 -#: netbox/ipam/forms/filtersets.py:415 netbox/ipam/forms/filtersets.py:447 -#: netbox/templates/dcim/device.html:239 -#: netbox/templates/virtualization/cluster.html:10 -#: netbox/templates/virtualization/virtualmachine.html:92 -#: netbox/templates/virtualization/virtualmachine.html:101 -#: netbox/virtualization/filtersets.py:157 -#: netbox/virtualization/filtersets.py:277 -#: netbox/virtualization/forms/bulk_edit.py:129 -#: netbox/virtualization/forms/bulk_import.py:92 -#: netbox/virtualization/forms/filtersets.py:99 -#: netbox/virtualization/forms/filtersets.py:123 -#: netbox/virtualization/forms/filtersets.py:204 -#: netbox/virtualization/forms/model_forms.py:79 -#: netbox/virtualization/forms/model_forms.py:176 -#: netbox/virtualization/tables/virtualmachines.py:67 +#: dcim/forms/bulk_import.py:517 dcim/forms/filtersets.py:728 +#: dcim/forms/filtersets.py:898 dcim/forms/model_forms.py:522 +#: dcim/tables/devices.py:202 extras/filtersets.py:596 +#: extras/forms/filtersets.py:322 ipam/forms/filtersets.py:415 +#: ipam/forms/filtersets.py:447 templates/dcim/device.html:239 +#: templates/virtualization/cluster.html:10 +#: templates/virtualization/virtualmachine.html:92 +#: templates/virtualization/virtualmachine.html:101 +#: virtualization/filtersets.py:157 virtualization/filtersets.py:277 +#: virtualization/forms/bulk_edit.py:129 +#: virtualization/forms/bulk_import.py:92 +#: virtualization/forms/filtersets.py:99 +#: virtualization/forms/filtersets.py:123 +#: virtualization/forms/filtersets.py:204 +#: virtualization/forms/model_forms.py:79 +#: virtualization/forms/model_forms.py:176 +#: virtualization/tables/virtualmachines.py:67 msgid "Cluster" msgstr "Küme" -#: netbox/dcim/forms/bulk_import.py:521 +#: dcim/forms/bulk_import.py:521 msgid "Virtualization cluster" msgstr "Sanallaştırma kümesi" -#: netbox/dcim/forms/bulk_import.py:550 +#: dcim/forms/bulk_import.py:550 msgid "Assigned location (if any)" msgstr "Atanan konum (varsa)" -#: netbox/dcim/forms/bulk_import.py:557 +#: dcim/forms/bulk_import.py:557 msgid "Assigned rack (if any)" msgstr "Atanmış raf (varsa)" -#: netbox/dcim/forms/bulk_import.py:560 +#: dcim/forms/bulk_import.py:560 msgid "Face" msgstr "Yüz" -#: netbox/dcim/forms/bulk_import.py:563 +#: dcim/forms/bulk_import.py:563 msgid "Mounted rack face" msgstr "Monte edilmiş raf yüzü" -#: netbox/dcim/forms/bulk_import.py:570 +#: dcim/forms/bulk_import.py:570 msgid "Parent device (for child devices)" msgstr "Ana cihaz (alt cihazlar için)" -#: netbox/dcim/forms/bulk_import.py:573 +#: dcim/forms/bulk_import.py:573 msgid "Device bay" msgstr "Cihaz yuvası" -#: netbox/dcim/forms/bulk_import.py:577 +#: dcim/forms/bulk_import.py:577 msgid "Device bay in which this device is installed (for child devices)" msgstr "Bu cihazın kurulu olduğu cihaz yuvası (alt cihazlar için)" -#: netbox/dcim/forms/bulk_import.py:644 +#: dcim/forms/bulk_import.py:644 msgid "The device in which this module is installed" msgstr "Bu modülün kurulu olduğu cihaz" -#: netbox/dcim/forms/bulk_import.py:647 netbox/dcim/forms/model_forms.py:640 +#: dcim/forms/bulk_import.py:647 dcim/forms/model_forms.py:640 msgid "Module bay" msgstr "Modül yuvası" -#: netbox/dcim/forms/bulk_import.py:650 +#: dcim/forms/bulk_import.py:650 msgid "The module bay in which this module is installed" msgstr "Bu modülün kurulu olduğu modül yuvası" -#: netbox/dcim/forms/bulk_import.py:656 +#: dcim/forms/bulk_import.py:656 msgid "The type of module" msgstr "Modül türü" -#: netbox/dcim/forms/bulk_import.py:664 netbox/dcim/forms/model_forms.py:656 +#: dcim/forms/bulk_import.py:664 dcim/forms/model_forms.py:656 msgid "Replicate components" msgstr "Bileşenleri çoğaltın" -#: netbox/dcim/forms/bulk_import.py:666 +#: dcim/forms/bulk_import.py:666 msgid "" "Automatically populate components associated with this module type (enabled " "by default)" @@ -4332,271 +3939,264 @@ msgstr "" "Bu modül türüyle ilişkili bileşenleri otomatik olarak doldurun (varsayılan " "olarak etkindir)" -#: netbox/dcim/forms/bulk_import.py:669 netbox/dcim/forms/model_forms.py:662 +#: dcim/forms/bulk_import.py:669 dcim/forms/model_forms.py:662 msgid "Adopt components" msgstr "Bileşenleri benimseyin" -#: netbox/dcim/forms/bulk_import.py:671 netbox/dcim/forms/model_forms.py:665 +#: dcim/forms/bulk_import.py:671 dcim/forms/model_forms.py:665 msgid "Adopt already existing components" msgstr "Mevcut bileşenleri benimseyin" -#: netbox/dcim/forms/bulk_import.py:711 netbox/dcim/forms/bulk_import.py:737 -#: netbox/dcim/forms/bulk_import.py:763 +#: dcim/forms/bulk_import.py:711 dcim/forms/bulk_import.py:737 +#: dcim/forms/bulk_import.py:763 msgid "Port type" msgstr "Bağlantı noktası tipi" -#: netbox/dcim/forms/bulk_import.py:719 netbox/dcim/forms/bulk_import.py:745 +#: dcim/forms/bulk_import.py:719 dcim/forms/bulk_import.py:745 msgid "Port speed in bps" msgstr "Bps cinsinden bağlantı noktası hızı" -#: netbox/dcim/forms/bulk_import.py:783 +#: dcim/forms/bulk_import.py:783 msgid "Outlet type" msgstr "Çıkış tipi" -#: netbox/dcim/forms/bulk_import.py:790 +#: dcim/forms/bulk_import.py:790 msgid "Local power port which feeds this outlet" msgstr "Bu prizi besleyen yerel güç portu" -#: netbox/dcim/forms/bulk_import.py:796 +#: dcim/forms/bulk_import.py:796 msgid "Electrical phase (for three-phase circuits)" msgstr "Elektrik fazı (üç fazlı devreler için)" -#: netbox/dcim/forms/bulk_import.py:837 netbox/dcim/forms/model_forms.py:1316 -#: netbox/virtualization/forms/bulk_import.py:155 -#: netbox/virtualization/forms/model_forms.py:305 +#: dcim/forms/bulk_import.py:837 dcim/forms/model_forms.py:1316 +#: virtualization/forms/bulk_import.py:155 +#: virtualization/forms/model_forms.py:305 msgid "Parent interface" msgstr "Ebeveyn arayüzü" -#: netbox/dcim/forms/bulk_import.py:844 netbox/dcim/forms/model_forms.py:1324 -#: netbox/virtualization/forms/bulk_import.py:162 -#: netbox/virtualization/forms/model_forms.py:313 +#: dcim/forms/bulk_import.py:844 dcim/forms/model_forms.py:1324 +#: virtualization/forms/bulk_import.py:162 +#: virtualization/forms/model_forms.py:313 msgid "Bridged interface" msgstr "Köprülü arayüz" -#: netbox/dcim/forms/bulk_import.py:847 +#: dcim/forms/bulk_import.py:847 msgid "Lag" msgstr "Gecikme" -#: netbox/dcim/forms/bulk_import.py:851 +#: dcim/forms/bulk_import.py:851 msgid "Parent LAG interface" msgstr "Ebeveyn LAG arayüzü" -#: netbox/dcim/forms/bulk_import.py:854 +#: dcim/forms/bulk_import.py:854 msgid "Vdcs" msgstr "Vdcs" -#: netbox/dcim/forms/bulk_import.py:859 +#: dcim/forms/bulk_import.py:859 msgid "VDC names separated by commas, encased with double quotes. Example:" msgstr "" "VDC isimleri virgülle ayrılmış, çift tırnak işareti ile çevrelenmiştir. " "Örnek:" -#: netbox/dcim/forms/bulk_import.py:865 +#: dcim/forms/bulk_import.py:865 msgid "Physical medium" msgstr "Fiziksel ortam" -#: netbox/dcim/forms/bulk_import.py:868 netbox/dcim/forms/filtersets.py:1365 +#: dcim/forms/bulk_import.py:868 dcim/forms/filtersets.py:1365 msgid "Duplex" msgstr "Dubleks" -#: netbox/dcim/forms/bulk_import.py:873 +#: dcim/forms/bulk_import.py:873 msgid "Poe mode" msgstr "Poe modu" -#: netbox/dcim/forms/bulk_import.py:879 +#: dcim/forms/bulk_import.py:879 msgid "Poe type" msgstr "Poe tipi" -#: netbox/dcim/forms/bulk_import.py:888 -#: netbox/virtualization/forms/bulk_import.py:168 +#: dcim/forms/bulk_import.py:888 virtualization/forms/bulk_import.py:168 msgid "IEEE 802.1Q operational mode (for L2 interfaces)" msgstr "IEEE 802.1Q çalışma modu (L2 arayüzleri için)" -#: netbox/dcim/forms/bulk_import.py:895 netbox/ipam/forms/bulk_import.py:161 -#: netbox/ipam/forms/bulk_import.py:247 netbox/ipam/forms/bulk_import.py:283 -#: netbox/ipam/forms/filtersets.py:201 netbox/ipam/forms/filtersets.py:277 -#: netbox/ipam/forms/filtersets.py:336 -#: netbox/virtualization/forms/bulk_import.py:175 +#: dcim/forms/bulk_import.py:895 ipam/forms/bulk_import.py:161 +#: ipam/forms/bulk_import.py:247 ipam/forms/bulk_import.py:283 +#: ipam/forms/filtersets.py:201 ipam/forms/filtersets.py:277 +#: ipam/forms/filtersets.py:336 virtualization/forms/bulk_import.py:175 msgid "Assigned VRF" msgstr "Atanmış VRF" -#: netbox/dcim/forms/bulk_import.py:898 +#: dcim/forms/bulk_import.py:898 msgid "Rf role" msgstr "Rf rolü" -#: netbox/dcim/forms/bulk_import.py:901 +#: dcim/forms/bulk_import.py:901 msgid "Wireless role (AP/station)" msgstr "Kablosuz rolü (AP/istasyon)" -#: netbox/dcim/forms/bulk_import.py:937 +#: dcim/forms/bulk_import.py:937 #, python-brace-format msgid "VDC {vdc} is not assigned to device {device}" msgstr "VDC {vdc} cihaza atanmadı {device}" -#: netbox/dcim/forms/bulk_import.py:951 netbox/dcim/forms/model_forms.py:1000 -#: netbox/dcim/forms/model_forms.py:1575 -#: netbox/dcim/forms/object_import.py:117 +#: dcim/forms/bulk_import.py:951 dcim/forms/model_forms.py:1000 +#: dcim/forms/model_forms.py:1575 dcim/forms/object_import.py:117 msgid "Rear port" msgstr "Arka bağlantı noktası" -#: netbox/dcim/forms/bulk_import.py:954 +#: dcim/forms/bulk_import.py:954 msgid "Corresponding rear port" msgstr "İlgili arka bağlantı noktası" -#: netbox/dcim/forms/bulk_import.py:959 netbox/dcim/forms/bulk_import.py:1000 -#: netbox/dcim/forms/bulk_import.py:1216 +#: dcim/forms/bulk_import.py:959 dcim/forms/bulk_import.py:1000 +#: dcim/forms/bulk_import.py:1216 msgid "Physical medium classification" msgstr "Fiziksel ortam sınıflandırması" -#: netbox/dcim/forms/bulk_import.py:1028 netbox/dcim/tables/devices.py:822 +#: dcim/forms/bulk_import.py:1028 dcim/tables/devices.py:822 msgid "Installed device" msgstr "Yüklü cihaz" -#: netbox/dcim/forms/bulk_import.py:1032 +#: dcim/forms/bulk_import.py:1032 msgid "Child device installed within this bay" msgstr "Bu bölmeye takılan çocuk cihazı" -#: netbox/dcim/forms/bulk_import.py:1034 +#: dcim/forms/bulk_import.py:1034 msgid "Child device not found." msgstr "Çocuk cihazı bulunamadı." -#: netbox/dcim/forms/bulk_import.py:1092 +#: dcim/forms/bulk_import.py:1092 msgid "Parent inventory item" msgstr "Ana envanter kalemi" -#: netbox/dcim/forms/bulk_import.py:1095 +#: dcim/forms/bulk_import.py:1095 msgid "Component type" msgstr "Bileşen tipi" -#: netbox/dcim/forms/bulk_import.py:1099 +#: dcim/forms/bulk_import.py:1099 msgid "Component Type" msgstr "Bileşen Türü" -#: netbox/dcim/forms/bulk_import.py:1102 +#: dcim/forms/bulk_import.py:1102 msgid "Compnent name" msgstr "Bileşen adı" -#: netbox/dcim/forms/bulk_import.py:1104 +#: dcim/forms/bulk_import.py:1104 msgid "Component Name" msgstr "Bileşen Adı" -#: netbox/dcim/forms/bulk_import.py:1146 +#: dcim/forms/bulk_import.py:1146 #, python-brace-format msgid "Component not found: {device} - {component_name}" msgstr "Bileşen bulunamadı: {device} - {component_name}" -#: netbox/dcim/forms/bulk_import.py:1171 +#: dcim/forms/bulk_import.py:1171 msgid "Side A device" msgstr "A Tarafı Cihazı" -#: netbox/dcim/forms/bulk_import.py:1174 netbox/dcim/forms/bulk_import.py:1192 +#: dcim/forms/bulk_import.py:1174 dcim/forms/bulk_import.py:1192 msgid "Device name" msgstr "Cihaz adı" -#: netbox/dcim/forms/bulk_import.py:1177 +#: dcim/forms/bulk_import.py:1177 msgid "Side A type" msgstr "Taraf A tipi" -#: netbox/dcim/forms/bulk_import.py:1180 netbox/dcim/forms/bulk_import.py:1198 +#: dcim/forms/bulk_import.py:1180 dcim/forms/bulk_import.py:1198 msgid "Termination type" msgstr "Sonlandırma türü" -#: netbox/dcim/forms/bulk_import.py:1183 +#: dcim/forms/bulk_import.py:1183 msgid "Side A name" msgstr "A Tarafı adı" -#: netbox/dcim/forms/bulk_import.py:1184 netbox/dcim/forms/bulk_import.py:1202 +#: dcim/forms/bulk_import.py:1184 dcim/forms/bulk_import.py:1202 msgid "Termination name" msgstr "Fesih adı" -#: netbox/dcim/forms/bulk_import.py:1189 +#: dcim/forms/bulk_import.py:1189 msgid "Side B device" msgstr "B tarafı cihazı" -#: netbox/dcim/forms/bulk_import.py:1195 +#: dcim/forms/bulk_import.py:1195 msgid "Side B type" msgstr "Taraf B tipi" -#: netbox/dcim/forms/bulk_import.py:1201 +#: dcim/forms/bulk_import.py:1201 msgid "Side B name" msgstr "B tarafı adı" -#: netbox/dcim/forms/bulk_import.py:1210 -#: netbox/wireless/forms/bulk_import.py:86 +#: dcim/forms/bulk_import.py:1210 wireless/forms/bulk_import.py:86 msgid "Connection status" msgstr "Bağlantı durumu" -#: netbox/dcim/forms/bulk_import.py:1262 +#: dcim/forms/bulk_import.py:1262 #, python-brace-format msgid "Side {side_upper}: {device} {termination_object} is already connected" msgstr "Yan {side_upper}: {device} {termination_object} zaten bağlı" -#: netbox/dcim/forms/bulk_import.py:1268 +#: dcim/forms/bulk_import.py:1268 #, python-brace-format msgid "{side_upper} side termination not found: {device} {name}" msgstr "{side_upper} yan sonlandırma bulunamadı: {device} {name}" -#: netbox/dcim/forms/bulk_import.py:1293 netbox/dcim/forms/model_forms.py:785 -#: netbox/dcim/tables/devices.py:1027 netbox/templates/dcim/device.html:132 -#: netbox/templates/dcim/virtualchassis.html:27 -#: netbox/templates/dcim/virtualchassis.html:67 +#: dcim/forms/bulk_import.py:1293 dcim/forms/model_forms.py:785 +#: dcim/tables/devices.py:1027 templates/dcim/device.html:132 +#: templates/dcim/virtualchassis.html:27 templates/dcim/virtualchassis.html:67 msgid "Master" msgstr "Usta" -#: netbox/dcim/forms/bulk_import.py:1297 +#: dcim/forms/bulk_import.py:1297 msgid "Master device" msgstr "Ana cihaz" -#: netbox/dcim/forms/bulk_import.py:1314 +#: dcim/forms/bulk_import.py:1314 msgid "Name of parent site" msgstr "Ana sitenin adı" -#: netbox/dcim/forms/bulk_import.py:1348 +#: dcim/forms/bulk_import.py:1348 msgid "Upstream power panel" msgstr "Yukarı akış güç paneli" -#: netbox/dcim/forms/bulk_import.py:1378 +#: dcim/forms/bulk_import.py:1378 msgid "Primary or redundant" msgstr "Birincil veya gereksiz" -#: netbox/dcim/forms/bulk_import.py:1383 +#: dcim/forms/bulk_import.py:1383 msgid "Supply type (AC/DC)" msgstr "Besleme tipi (AC/DC)" -#: netbox/dcim/forms/bulk_import.py:1388 +#: dcim/forms/bulk_import.py:1388 msgid "Single or three-phase" msgstr "Tek veya üç fazlı" -#: netbox/dcim/forms/bulk_import.py:1439 netbox/dcim/forms/model_forms.py:1670 -#: netbox/templates/dcim/device.html:190 -#: netbox/templates/dcim/virtualdevicecontext.html:30 -#: netbox/templates/virtualization/virtualmachine.html:52 +#: dcim/forms/bulk_import.py:1439 dcim/forms/model_forms.py:1670 +#: templates/dcim/device.html:190 templates/dcim/virtualdevicecontext.html:30 +#: templates/virtualization/virtualmachine.html:52 msgid "Primary IPv4" msgstr "Birincil IPv4" -#: netbox/dcim/forms/bulk_import.py:1443 +#: dcim/forms/bulk_import.py:1443 msgid "IPv4 address with mask, e.g. 1.2.3.4/24" msgstr "Maskeli IPv4 adresi, örn. 1.2.3.4/24" -#: netbox/dcim/forms/bulk_import.py:1446 netbox/dcim/forms/model_forms.py:1679 -#: netbox/templates/dcim/device.html:206 -#: netbox/templates/dcim/virtualdevicecontext.html:41 -#: netbox/templates/virtualization/virtualmachine.html:68 +#: dcim/forms/bulk_import.py:1446 dcim/forms/model_forms.py:1679 +#: templates/dcim/device.html:206 templates/dcim/virtualdevicecontext.html:41 +#: templates/virtualization/virtualmachine.html:68 msgid "Primary IPv6" msgstr "Birincil IPv6" -#: netbox/dcim/forms/bulk_import.py:1450 +#: dcim/forms/bulk_import.py:1450 msgid "IPv6 address with prefix length, e.g. 2001:db8::1/64" msgstr "Önek uzunluğuna sahip IPv6 adresi, örn. 2001:db8: :1/64" -#: netbox/dcim/forms/common.py:24 netbox/dcim/models/device_components.py:527 -#: netbox/templates/dcim/interface.html:57 -#: netbox/templates/virtualization/vminterface.html:55 -#: netbox/virtualization/forms/bulk_edit.py:225 +#: dcim/forms/common.py:24 dcim/models/device_components.py:527 +#: templates/dcim/interface.html:57 +#: templates/virtualization/vminterface.html:55 +#: virtualization/forms/bulk_edit.py:225 msgid "MTU" msgstr "MTU" -#: netbox/dcim/forms/common.py:65 +#: dcim/forms/common.py:65 #, python-brace-format msgid "" "The tagged VLANs ({vlans}) must belong to the same site as the interface's " @@ -4605,7 +4205,7 @@ msgstr "" "Etiketli VLAN'lar ({vlans}) arayüzün ana cihazı/sanal makinesiyle aynı " "siteye ait olmalı veya global olmalıdır" -#: netbox/dcim/forms/common.py:126 +#: dcim/forms/common.py:126 msgid "" "Cannot install module with placeholder values in a module bay with no " "position defined." @@ -4613,7 +4213,7 @@ msgstr "" "Konum tanımlanmamış bir modül yuvasına yer tutucu değerleri olan modül " "yüklenemiyor." -#: netbox/dcim/forms/common.py:131 +#: dcim/forms/common.py:131 #, python-brace-format msgid "" "Cannot install module with placeholder values in a module bay tree {level} " @@ -4622,203 +4222,188 @@ msgstr "" "Modül defne ağacına yer tutucu değerleri olan modül yüklenemiyor {level} " "Ağaçta ama {tokens} verilen yer tutucular." -#: netbox/dcim/forms/common.py:144 +#: dcim/forms/common.py:144 #, python-brace-format msgid "Cannot adopt {model} {name} as it already belongs to a module" msgstr "Evlat edinemiyor {model} {name} zaten bir modüle ait olduğu için" -#: netbox/dcim/forms/common.py:153 +#: dcim/forms/common.py:153 #, python-brace-format msgid "A {model} named {name} already exists" msgstr "BİR {model} adlandırmak {name} zaten var" -#: netbox/dcim/forms/connections.py:49 netbox/dcim/forms/model_forms.py:738 -#: netbox/dcim/tables/power.py:66 -#: netbox/templates/dcim/inc/cable_termination.html:37 -#: netbox/templates/dcim/powerfeed.html:24 -#: netbox/templates/dcim/powerpanel.html:19 -#: netbox/templates/dcim/trace/powerpanel.html:4 +#: dcim/forms/connections.py:49 dcim/forms/model_forms.py:738 +#: dcim/tables/power.py:66 templates/dcim/inc/cable_termination.html:37 +#: templates/dcim/powerfeed.html:24 templates/dcim/powerpanel.html:19 +#: templates/dcim/trace/powerpanel.html:4 msgid "Power Panel" msgstr "Güç Paneli" -#: netbox/dcim/forms/connections.py:58 netbox/dcim/forms/model_forms.py:765 -#: netbox/templates/dcim/powerfeed.html:21 -#: netbox/templates/dcim/powerport.html:80 +#: dcim/forms/connections.py:58 dcim/forms/model_forms.py:765 +#: templates/dcim/powerfeed.html:21 templates/dcim/powerport.html:80 msgid "Power Feed" msgstr "Güç Beslemesi" -#: netbox/dcim/forms/connections.py:81 +#: dcim/forms/connections.py:81 msgid "Side" msgstr "Yan" -#: netbox/dcim/forms/filtersets.py:136 netbox/dcim/tables/devices.py:295 +#: dcim/forms/filtersets.py:136 dcim/tables/devices.py:295 msgid "Device Status" msgstr "Cihaz Durumu" -#: netbox/dcim/forms/filtersets.py:149 +#: dcim/forms/filtersets.py:149 msgid "Parent region" msgstr "Ana bölge" -#: netbox/dcim/forms/filtersets.py:163 netbox/tenancy/forms/bulk_import.py:28 -#: netbox/tenancy/forms/bulk_import.py:62 -#: netbox/tenancy/forms/filtersets.py:33 netbox/tenancy/forms/filtersets.py:62 -#: netbox/wireless/forms/bulk_import.py:25 -#: netbox/wireless/forms/filtersets.py:25 +#: dcim/forms/filtersets.py:163 tenancy/forms/bulk_import.py:28 +#: tenancy/forms/bulk_import.py:62 tenancy/forms/filtersets.py:33 +#: tenancy/forms/filtersets.py:62 wireless/forms/bulk_import.py:25 +#: wireless/forms/filtersets.py:25 msgid "Parent group" msgstr "Ebeveyn grubu" -#: netbox/dcim/forms/filtersets.py:242 netbox/templates/dcim/location.html:58 -#: netbox/templates/dcim/site.html:56 +#: dcim/forms/filtersets.py:242 templates/dcim/location.html:58 +#: templates/dcim/site.html:56 msgid "Facility" msgstr "Tesis" -#: netbox/dcim/forms/filtersets.py:380 +#: dcim/forms/filtersets.py:380 msgid "Rack type" msgstr "Raf tipi" -#: netbox/dcim/forms/filtersets.py:397 +#: dcim/forms/filtersets.py:397 msgid "Function" msgstr "Fonksiyon" -#: netbox/dcim/forms/filtersets.py:483 netbox/dcim/forms/model_forms.py:373 -#: netbox/templates/inc/panels/image_attachments.html:6 +#: dcim/forms/filtersets.py:483 dcim/forms/model_forms.py:373 +#: templates/inc/panels/image_attachments.html:6 msgid "Images" msgstr "Görüntüler" -#: netbox/dcim/forms/filtersets.py:486 netbox/dcim/forms/filtersets.py:611 -#: netbox/dcim/forms/filtersets.py:726 +#: dcim/forms/filtersets.py:486 dcim/forms/filtersets.py:611 +#: dcim/forms/filtersets.py:726 msgid "Components" msgstr "Bileşenleri" -#: netbox/dcim/forms/filtersets.py:506 +#: dcim/forms/filtersets.py:506 msgid "Subdevice role" msgstr "Alt aygıt rolü" -#: netbox/dcim/forms/filtersets.py:790 netbox/dcim/tables/racks.py:54 -#: netbox/templates/dcim/racktype.html:20 +#: dcim/forms/filtersets.py:790 dcim/tables/racks.py:54 +#: templates/dcim/racktype.html:20 msgid "Model" msgstr "Modeli" -#: netbox/dcim/forms/filtersets.py:834 +#: dcim/forms/filtersets.py:834 msgid "Has an OOB IP" msgstr "OOB IP'ye sahiptir" -#: netbox/dcim/forms/filtersets.py:841 +#: dcim/forms/filtersets.py:841 msgid "Virtual chassis member" msgstr "Sanal şasi elemanı" -#: netbox/dcim/forms/filtersets.py:890 +#: dcim/forms/filtersets.py:890 msgid "Has virtual device contexts" msgstr "Sanal cihaz bağlamlarına sahiptir" -#: netbox/dcim/forms/filtersets.py:903 netbox/extras/filtersets.py:585 -#: netbox/ipam/forms/bulk_edit.py:479 netbox/ipam/forms/filtersets.py:452 -#: netbox/virtualization/forms/filtersets.py:112 +#: dcim/forms/filtersets.py:903 extras/filtersets.py:585 +#: ipam/forms/filtersets.py:452 virtualization/forms/filtersets.py:112 msgid "Cluster group" msgstr "Küme grubu" -#: netbox/dcim/forms/filtersets.py:1210 +#: dcim/forms/filtersets.py:1210 msgid "Cabled" msgstr "Kablolu" -#: netbox/dcim/forms/filtersets.py:1217 +#: dcim/forms/filtersets.py:1217 msgid "Occupied" msgstr "işgal" -#: netbox/dcim/forms/filtersets.py:1244 netbox/dcim/forms/filtersets.py:1269 -#: netbox/dcim/forms/filtersets.py:1293 netbox/dcim/forms/filtersets.py:1313 -#: netbox/dcim/forms/filtersets.py:1336 netbox/dcim/tables/devices.py:364 -#: netbox/templates/dcim/consoleport.html:55 -#: netbox/templates/dcim/consoleserverport.html:55 -#: netbox/templates/dcim/frontport.html:69 -#: netbox/templates/dcim/interface.html:140 -#: netbox/templates/dcim/powerfeed.html:110 -#: netbox/templates/dcim/poweroutlet.html:59 -#: netbox/templates/dcim/powerport.html:59 -#: netbox/templates/dcim/rearport.html:65 +#: dcim/forms/filtersets.py:1244 dcim/forms/filtersets.py:1269 +#: dcim/forms/filtersets.py:1293 dcim/forms/filtersets.py:1313 +#: dcim/forms/filtersets.py:1336 dcim/tables/devices.py:364 +#: templates/dcim/consoleport.html:55 templates/dcim/consoleserverport.html:55 +#: templates/dcim/frontport.html:69 templates/dcim/interface.html:140 +#: templates/dcim/powerfeed.html:110 templates/dcim/poweroutlet.html:59 +#: templates/dcim/powerport.html:59 templates/dcim/rearport.html:65 msgid "Connection" msgstr "Bağlantı" -#: netbox/dcim/forms/filtersets.py:1348 netbox/extras/forms/bulk_edit.py:326 -#: netbox/extras/forms/bulk_import.py:247 -#: netbox/extras/forms/filtersets.py:464 -#: netbox/extras/forms/model_forms.py:675 netbox/extras/tables/tables.py:579 -#: netbox/templates/extras/journalentry.html:30 +#: dcim/forms/filtersets.py:1348 extras/forms/bulk_edit.py:326 +#: extras/forms/bulk_import.py:247 extras/forms/filtersets.py:464 +#: extras/forms/model_forms.py:675 extras/tables/tables.py:579 +#: templates/extras/journalentry.html:30 msgid "Kind" msgstr "Tür" -#: netbox/dcim/forms/filtersets.py:1377 +#: dcim/forms/filtersets.py:1377 msgid "Mgmt only" msgstr "Sadece Mgmt" -#: netbox/dcim/forms/filtersets.py:1389 netbox/dcim/forms/model_forms.py:1383 -#: netbox/dcim/models/device_components.py:629 -#: netbox/templates/dcim/interface.html:129 +#: dcim/forms/filtersets.py:1389 dcim/forms/model_forms.py:1383 +#: dcim/models/device_components.py:629 templates/dcim/interface.html:129 msgid "WWN" msgstr "WWN" -#: netbox/dcim/forms/filtersets.py:1409 +#: dcim/forms/filtersets.py:1409 msgid "Wireless channel" msgstr "Kablosuz kanal" -#: netbox/dcim/forms/filtersets.py:1413 +#: dcim/forms/filtersets.py:1413 msgid "Channel frequency (MHz)" msgstr "Kanal frekansı (MHz)" -#: netbox/dcim/forms/filtersets.py:1417 +#: dcim/forms/filtersets.py:1417 msgid "Channel width (MHz)" msgstr "Kanal genişliği (MHz)" -#: netbox/dcim/forms/filtersets.py:1421 -#: netbox/templates/dcim/interface.html:85 +#: dcim/forms/filtersets.py:1421 templates/dcim/interface.html:85 msgid "Transmit power (dBm)" msgstr "İletim gücü (dBm)" -#: netbox/dcim/forms/filtersets.py:1446 netbox/dcim/forms/filtersets.py:1471 -#: netbox/dcim/tables/devices.py:327 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:50 -#: netbox/templates/dcim/inc/connection_endpoints.html:4 -#: netbox/templates/dcim/rearport.html:73 -#: netbox/templates/dcim/trace/cable.html:7 +#: dcim/forms/filtersets.py:1446 dcim/forms/filtersets.py:1471 +#: dcim/tables/devices.py:327 templates/dcim/cable.html:12 +#: templates/dcim/cable_trace.html:46 templates/dcim/frontport.html:77 +#: templates/dcim/htmx/cable_edit.html:50 +#: templates/dcim/inc/connection_endpoints.html:4 +#: templates/dcim/rearport.html:73 templates/dcim/trace/cable.html:7 msgid "Cable" msgstr "Kablo" -#: netbox/dcim/forms/filtersets.py:1550 netbox/dcim/tables/devices.py:949 +#: dcim/forms/filtersets.py:1550 dcim/tables/devices.py:949 msgid "Discovered" msgstr "Keşfedildi" -#: netbox/dcim/forms/formsets.py:20 +#: dcim/forms/formsets.py:20 #, python-brace-format msgid "A virtual chassis member already exists in position {vc_position}." msgstr "Bir sanal kasa elemanı zaten yerinde var {vc_position}." -#: netbox/dcim/forms/model_forms.py:140 +#: dcim/forms/model_forms.py:140 msgid "Contact Info" msgstr "İletişim Bilgisi" -#: netbox/dcim/forms/model_forms.py:195 netbox/templates/dcim/rackrole.html:19 +#: dcim/forms/model_forms.py:195 templates/dcim/rackrole.html:19 msgid "Rack Role" msgstr "Raf Rolü" -#: netbox/dcim/forms/model_forms.py:212 netbox/dcim/forms/model_forms.py:362 -#: netbox/dcim/forms/model_forms.py:446 -#: netbox/utilities/forms/fields/fields.py:47 +#: dcim/forms/model_forms.py:212 dcim/forms/model_forms.py:362 +#: dcim/forms/model_forms.py:446 utilities/forms/fields/fields.py:47 msgid "Slug" msgstr "Kısa isim" -#: netbox/dcim/forms/model_forms.py:259 +#: dcim/forms/model_forms.py:259 msgid "Select a pre-defined rack type, or set physical characteristics below." msgstr "" "Önceden tanımlanmış bir raf tipi seçin veya aşağıda fiziksel özellikleri " "ayarlayın." -#: netbox/dcim/forms/model_forms.py:265 +#: dcim/forms/model_forms.py:265 msgid "Inventory Control" msgstr "Envanter Kontrolü" -#: netbox/dcim/forms/model_forms.py:313 +#: dcim/forms/model_forms.py:313 msgid "" "Comma-separated list of numeric unit IDs. A range may be specified using a " "hyphen." @@ -4826,161 +4411,144 @@ msgstr "" "Virgülle ayrılmış sayısal birim kimlikleri listesi. Bir aralık bir tire " "kullanılarak belirtilebilir." -#: netbox/dcim/forms/model_forms.py:322 netbox/dcim/tables/racks.py:202 +#: dcim/forms/model_forms.py:322 dcim/tables/racks.py:202 msgid "Reservation" msgstr "Rezervasyon" -#: netbox/dcim/forms/model_forms.py:423 -#: netbox/templates/dcim/devicerole.html:23 +#: dcim/forms/model_forms.py:423 templates/dcim/devicerole.html:23 msgid "Device Role" msgstr "Cİhaz Rolü" -#: netbox/dcim/forms/model_forms.py:490 netbox/dcim/models/devices.py:644 +#: dcim/forms/model_forms.py:490 dcim/models/devices.py:644 msgid "The lowest-numbered unit occupied by the device" msgstr "Cihazın kullandığı en düşük numaralı birim" -#: netbox/dcim/forms/model_forms.py:547 +#: dcim/forms/model_forms.py:547 msgid "The position in the virtual chassis this device is identified by" msgstr "Bu cihazın sanal kasadaki konumu tanımlanır" -#: netbox/dcim/forms/model_forms.py:552 +#: dcim/forms/model_forms.py:552 msgid "The priority of the device in the virtual chassis" msgstr "Sanal kasadaki cihazın önceliği" -#: netbox/dcim/forms/model_forms.py:659 +#: dcim/forms/model_forms.py:659 msgid "Automatically populate components associated with this module type" msgstr "Bu modül türüyle ilişkili bileşenleri otomatik olarak doldurun" -#: netbox/dcim/forms/model_forms.py:767 +#: dcim/forms/model_forms.py:767 msgid "Characteristics" msgstr "ÖZELLİKLERİ" -#: netbox/dcim/forms/model_forms.py:1087 +#: dcim/forms/model_forms.py:1087 msgid "Console port template" msgstr "Konsol bağlantı noktası şablonu" -#: netbox/dcim/forms/model_forms.py:1095 +#: dcim/forms/model_forms.py:1095 msgid "Console server port template" msgstr "Konsol sunucusu bağlantı noktası şablonu" -#: netbox/dcim/forms/model_forms.py:1103 +#: dcim/forms/model_forms.py:1103 msgid "Front port template" msgstr "Ön bağlantı noktası şablonu" -#: netbox/dcim/forms/model_forms.py:1111 +#: dcim/forms/model_forms.py:1111 msgid "Interface template" msgstr "Arayüz şablonu" -#: netbox/dcim/forms/model_forms.py:1119 +#: dcim/forms/model_forms.py:1119 msgid "Power outlet template" msgstr "Elektrik prizi şablonu" -#: netbox/dcim/forms/model_forms.py:1127 +#: dcim/forms/model_forms.py:1127 msgid "Power port template" msgstr "Güç bağlantı noktası şablonu" -#: netbox/dcim/forms/model_forms.py:1135 +#: dcim/forms/model_forms.py:1135 msgid "Rear port template" msgstr "Arka bağlantı noktası şablonu" -#: netbox/dcim/forms/model_forms.py:1144 netbox/dcim/forms/model_forms.py:1388 -#: netbox/dcim/forms/model_forms.py:1551 netbox/dcim/forms/model_forms.py:1583 -#: netbox/dcim/tables/connections.py:65 netbox/ipam/forms/bulk_import.py:318 -#: netbox/ipam/forms/model_forms.py:280 netbox/ipam/forms/model_forms.py:289 -#: netbox/ipam/tables/fhrp.py:64 netbox/ipam/tables/ip.py:372 -#: netbox/ipam/tables/vlans.py:169 -#: netbox/templates/circuits/inc/circuit_termination_fields.html:51 -#: netbox/templates/dcim/frontport.html:106 -#: netbox/templates/dcim/interface.html:27 -#: netbox/templates/dcim/interface.html:184 -#: netbox/templates/dcim/interface.html:310 -#: netbox/templates/dcim/rearport.html:102 -#: netbox/templates/virtualization/vminterface.html:18 -#: netbox/templates/vpn/tunneltermination.html:31 -#: netbox/templates/wireless/inc/wirelesslink_interface.html:10 -#: netbox/templates/wireless/wirelesslink.html:10 -#: netbox/templates/wireless/wirelesslink.html:55 -#: netbox/virtualization/forms/model_forms.py:348 -#: netbox/vpn/forms/bulk_import.py:297 netbox/vpn/forms/model_forms.py:436 -#: netbox/vpn/forms/model_forms.py:445 -#: netbox/wireless/forms/model_forms.py:113 -#: netbox/wireless/forms/model_forms.py:155 +#: dcim/forms/model_forms.py:1144 dcim/forms/model_forms.py:1388 +#: dcim/forms/model_forms.py:1551 dcim/forms/model_forms.py:1583 +#: dcim/tables/connections.py:65 ipam/forms/bulk_import.py:318 +#: ipam/forms/model_forms.py:280 ipam/forms/model_forms.py:289 +#: ipam/tables/fhrp.py:64 ipam/tables/ip.py:372 ipam/tables/vlans.py:169 +#: templates/circuits/inc/circuit_termination_fields.html:51 +#: templates/dcim/frontport.html:106 templates/dcim/interface.html:27 +#: templates/dcim/interface.html:184 templates/dcim/interface.html:310 +#: templates/dcim/rearport.html:102 +#: templates/virtualization/vminterface.html:18 +#: templates/vpn/tunneltermination.html:31 +#: templates/wireless/inc/wirelesslink_interface.html:10 +#: templates/wireless/wirelesslink.html:10 +#: templates/wireless/wirelesslink.html:55 +#: virtualization/forms/model_forms.py:348 vpn/forms/bulk_import.py:297 +#: vpn/forms/model_forms.py:436 vpn/forms/model_forms.py:445 +#: wireless/forms/model_forms.py:113 wireless/forms/model_forms.py:155 msgid "Interface" msgstr "Arayüz" -#: netbox/dcim/forms/model_forms.py:1145 netbox/dcim/forms/model_forms.py:1584 -#: netbox/dcim/tables/connections.py:27 -#: netbox/templates/dcim/consoleport.html:17 -#: netbox/templates/dcim/consoleserverport.html:74 -#: netbox/templates/dcim/frontport.html:112 +#: dcim/forms/model_forms.py:1145 dcim/forms/model_forms.py:1584 +#: dcim/tables/connections.py:27 templates/dcim/consoleport.html:17 +#: templates/dcim/consoleserverport.html:74 templates/dcim/frontport.html:112 msgid "Console Port" msgstr "Konsol Bağlantı Noktası" -#: netbox/dcim/forms/model_forms.py:1146 netbox/dcim/forms/model_forms.py:1585 -#: netbox/templates/dcim/consoleport.html:73 -#: netbox/templates/dcim/consoleserverport.html:17 -#: netbox/templates/dcim/frontport.html:109 +#: dcim/forms/model_forms.py:1146 dcim/forms/model_forms.py:1585 +#: templates/dcim/consoleport.html:73 templates/dcim/consoleserverport.html:17 +#: templates/dcim/frontport.html:109 msgid "Console Server Port" msgstr "Konsol Sunucusu Bağlantı Noktası" -#: netbox/dcim/forms/model_forms.py:1147 netbox/dcim/forms/model_forms.py:1586 -#: netbox/templates/circuits/inc/circuit_termination_fields.html:52 -#: netbox/templates/dcim/consoleport.html:76 -#: netbox/templates/dcim/consoleserverport.html:77 -#: netbox/templates/dcim/frontport.html:17 -#: netbox/templates/dcim/frontport.html:115 -#: netbox/templates/dcim/interface.html:187 -#: netbox/templates/dcim/rearport.html:105 +#: dcim/forms/model_forms.py:1147 dcim/forms/model_forms.py:1586 +#: templates/circuits/inc/circuit_termination_fields.html:52 +#: templates/dcim/consoleport.html:76 templates/dcim/consoleserverport.html:77 +#: templates/dcim/frontport.html:17 templates/dcim/frontport.html:115 +#: templates/dcim/interface.html:187 templates/dcim/rearport.html:105 msgid "Front Port" msgstr "Ön Bağlantı Noktası" -#: netbox/dcim/forms/model_forms.py:1148 netbox/dcim/forms/model_forms.py:1587 -#: netbox/dcim/tables/devices.py:710 -#: netbox/templates/circuits/inc/circuit_termination_fields.html:53 -#: netbox/templates/dcim/consoleport.html:79 -#: netbox/templates/dcim/consoleserverport.html:80 -#: netbox/templates/dcim/frontport.html:50 -#: netbox/templates/dcim/frontport.html:118 -#: netbox/templates/dcim/interface.html:190 -#: netbox/templates/dcim/rearport.html:17 -#: netbox/templates/dcim/rearport.html:108 +#: dcim/forms/model_forms.py:1148 dcim/forms/model_forms.py:1587 +#: dcim/tables/devices.py:710 +#: templates/circuits/inc/circuit_termination_fields.html:53 +#: templates/dcim/consoleport.html:79 templates/dcim/consoleserverport.html:80 +#: templates/dcim/frontport.html:50 templates/dcim/frontport.html:118 +#: templates/dcim/interface.html:190 templates/dcim/rearport.html:17 +#: templates/dcim/rearport.html:108 msgid "Rear Port" msgstr "Arka Bağlantı Noktası" -#: netbox/dcim/forms/model_forms.py:1149 netbox/dcim/forms/model_forms.py:1588 -#: netbox/dcim/tables/connections.py:46 netbox/dcim/tables/devices.py:512 -#: netbox/templates/dcim/poweroutlet.html:44 -#: netbox/templates/dcim/powerport.html:17 +#: dcim/forms/model_forms.py:1149 dcim/forms/model_forms.py:1588 +#: dcim/tables/connections.py:46 dcim/tables/devices.py:512 +#: templates/dcim/poweroutlet.html:44 templates/dcim/powerport.html:17 msgid "Power Port" msgstr "Güç Bağlantı Noktası" -#: netbox/dcim/forms/model_forms.py:1150 netbox/dcim/forms/model_forms.py:1589 -#: netbox/templates/dcim/poweroutlet.html:17 -#: netbox/templates/dcim/powerport.html:77 +#: dcim/forms/model_forms.py:1150 dcim/forms/model_forms.py:1589 +#: templates/dcim/poweroutlet.html:17 templates/dcim/powerport.html:77 msgid "Power Outlet" msgstr "Güç Çıkışı" -#: netbox/dcim/forms/model_forms.py:1152 netbox/dcim/forms/model_forms.py:1591 +#: dcim/forms/model_forms.py:1152 dcim/forms/model_forms.py:1591 msgid "Component Assignment" msgstr "Bileşen Ataması" -#: netbox/dcim/forms/model_forms.py:1195 netbox/dcim/forms/model_forms.py:1638 +#: dcim/forms/model_forms.py:1195 dcim/forms/model_forms.py:1638 msgid "An InventoryItem can only be assigned to a single component." msgstr "Bir InventoryItem yalnızca tek bir bileşene atanabilir." -#: netbox/dcim/forms/model_forms.py:1332 +#: dcim/forms/model_forms.py:1332 msgid "LAG interface" msgstr "LAG arayüzü" -#: netbox/dcim/forms/model_forms.py:1355 +#: dcim/forms/model_forms.py:1355 msgid "Filter VLANs available for assignment by group." msgstr "Gruba göre atama için mevcut VLAN'ları filtreleyin." -#: netbox/dcim/forms/model_forms.py:1484 +#: dcim/forms/model_forms.py:1484 msgid "Child Device" msgstr "Çocuk Cihazı" -#: netbox/dcim/forms/model_forms.py:1485 +#: dcim/forms/model_forms.py:1485 msgid "" "Child devices must first be created and assigned to the site and rack of the" " parent device." @@ -4988,35 +4556,32 @@ msgstr "" "Alt aygıtlar önce oluşturulmalı ve ana aygıtın sahasına ve rafına " "atanmalıdır." -#: netbox/dcim/forms/model_forms.py:1527 +#: dcim/forms/model_forms.py:1527 msgid "Console port" msgstr "Konsol bağlantı noktası" -#: netbox/dcim/forms/model_forms.py:1535 +#: dcim/forms/model_forms.py:1535 msgid "Console server port" msgstr "Konsol sunucusu bağlantı noktası" -#: netbox/dcim/forms/model_forms.py:1543 +#: dcim/forms/model_forms.py:1543 msgid "Front port" msgstr "Ön bağlantı noktası" -#: netbox/dcim/forms/model_forms.py:1559 +#: dcim/forms/model_forms.py:1559 msgid "Power outlet" msgstr "Güç çıkışı" -#: netbox/dcim/forms/model_forms.py:1579 -#: netbox/templates/dcim/inventoryitem.html:17 +#: dcim/forms/model_forms.py:1579 templates/dcim/inventoryitem.html:17 msgid "Inventory Item" msgstr "Envanter Öğesi" -#: netbox/dcim/forms/model_forms.py:1652 -#: netbox/templates/dcim/inventoryitemrole.html:15 +#: dcim/forms/model_forms.py:1652 templates/dcim/inventoryitemrole.html:15 msgid "Inventory Item Role" msgstr "Envanter Öğesi Rolü" -#: netbox/dcim/forms/object_create.py:48 -#: netbox/dcim/forms/object_create.py:199 -#: netbox/dcim/forms/object_create.py:355 +#: dcim/forms/object_create.py:48 dcim/forms/object_create.py:199 +#: dcim/forms/object_create.py:355 msgid "" "Alphanumeric ranges are supported. (Must match the number of objects being " "created.)" @@ -5024,7 +4589,7 @@ msgstr "" "Alfasayısal aralıklar desteklenir. (Oluşturulan nesnelerin sayısıyla " "eşleşmelidir.)" -#: netbox/dcim/forms/object_create.py:68 +#: dcim/forms/object_create.py:68 #, python-brace-format msgid "" "The provided pattern specifies {value_count} values, but {pattern_count} are" @@ -5033,19 +4598,18 @@ msgstr "" "Sağlanan desen belirtir {value_count} Değerler, ama {pattern_count} " "bekleniyor." -#: netbox/dcim/forms/object_create.py:110 -#: netbox/dcim/forms/object_create.py:271 netbox/dcim/tables/devices.py:252 +#: dcim/forms/object_create.py:110 dcim/forms/object_create.py:271 +#: dcim/tables/devices.py:252 msgid "Rear ports" msgstr "Arka bağlantı noktaları" -#: netbox/dcim/forms/object_create.py:111 -#: netbox/dcim/forms/object_create.py:272 +#: dcim/forms/object_create.py:111 dcim/forms/object_create.py:272 msgid "Select one rear port assignment for each front port being created." msgstr "" "Oluşturulan her ön bağlantı noktası için bir arka bağlantı noktası ataması " "seçin." -#: netbox/dcim/forms/object_create.py:164 +#: dcim/forms/object_create.py:164 #, python-brace-format msgid "" "The number of front port templates to be created ({frontport_count}) must " @@ -5054,7 +4618,7 @@ msgstr "" "Oluşturulacak ön bağlantı noktası şablonları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:251 +#: dcim/forms/object_create.py:251 #, python-brace-format msgid "" "The string {module} will be replaced with the position of the " @@ -5063,7 +4627,7 @@ msgstr "" "Dize {module} varsa atanan modülün konumu ile " "değiştirilecektir." -#: netbox/dcim/forms/object_create.py:320 +#: dcim/forms/object_create.py:320 #, python-brace-format msgid "" "The number of front ports to be created ({frontport_count}) must match the " @@ -5072,84 +4636,81 @@ 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:409 netbox/dcim/tables/devices.py:1033 -#: netbox/ipam/tables/fhrp.py:31 netbox/templates/dcim/virtualchassis.html:53 -#: netbox/templates/dcim/virtualchassis_edit.html:47 -#: netbox/templates/ipam/fhrpgroup.html:38 +#: dcim/forms/object_create.py:409 dcim/tables/devices.py:1033 +#: ipam/tables/fhrp.py:31 templates/dcim/virtualchassis.html:53 +#: templates/dcim/virtualchassis_edit.html:47 templates/ipam/fhrpgroup.html:38 msgid "Members" msgstr "Üyeler" -#: netbox/dcim/forms/object_create.py:418 +#: dcim/forms/object_create.py:418 msgid "Initial position" msgstr "Başlangıç pozisyonu" -#: netbox/dcim/forms/object_create.py:421 +#: dcim/forms/object_create.py:421 msgid "" "Position of the first member device. Increases by one for each additional " "member." msgstr "İlk üye cihazın konumu. Her ek üye için bir artar." -#: netbox/dcim/forms/object_create.py:435 +#: dcim/forms/object_create.py:435 msgid "A position must be specified for the first VC member." msgstr "İlk VC üyesi için bir pozisyon belirtilmelidir." -#: netbox/dcim/models/cables.py:62 -#: netbox/dcim/models/device_component_templates.py:55 -#: netbox/dcim/models/device_components.py:62 -#: netbox/extras/models/customfields.py:111 +#: dcim/models/cables.py:62 dcim/models/device_component_templates.py:55 +#: dcim/models/device_components.py:62 extras/models/customfields.py:111 msgid "label" msgstr "etiketlemek" -#: netbox/dcim/models/cables.py:71 +#: dcim/models/cables.py:71 msgid "length" msgstr "uzunluk" -#: netbox/dcim/models/cables.py:78 +#: dcim/models/cables.py:78 msgid "length unit" msgstr "uzunluk birimi" -#: netbox/dcim/models/cables.py:95 +#: dcim/models/cables.py:95 msgid "cable" msgstr "kablo" -#: netbox/dcim/models/cables.py:96 +#: dcim/models/cables.py:96 msgid "cables" msgstr "kablolar" -#: netbox/dcim/models/cables.py:165 +#: dcim/models/cables.py:165 msgid "Must specify a unit when setting a cable length" msgstr "Kablo uzunluğu ayarlarken bir birim belirtmeniz gerekir" -#: netbox/dcim/models/cables.py:168 +#: dcim/models/cables.py:168 msgid "Must define A and B terminations when creating a new cable." msgstr "Yeni bir kablo oluştururken A ve B sonlandırmalarını tanımlamalıdır." -#: netbox/dcim/models/cables.py:175 +#: dcim/models/cables.py:175 msgid "Cannot connect different termination types to same end of cable." msgstr "Farklı sonlandırma türleri kablonun aynı ucuna bağlanamaz." -#: netbox/dcim/models/cables.py:183 +#: dcim/models/cables.py:183 #, python-brace-format msgid "Incompatible termination types: {type_a} and {type_b}" msgstr "Uyumsuz sonlandırma türleri: {type_a} ve {type_b}" -#: netbox/dcim/models/cables.py:193 +#: dcim/models/cables.py:193 msgid "A and B terminations cannot connect to the same object." msgstr "A ve B sonlandırmaları aynı nesneye bağlanamaz." -#: netbox/dcim/models/cables.py:260 netbox/ipam/models/asns.py:37 +#: dcim/models/cables.py:260 ipam/models/asns.py:37 msgid "end" msgstr "son" -#: netbox/dcim/models/cables.py:313 +#: dcim/models/cables.py:313 msgid "cable termination" msgstr "kablo sonlandırma" -#: netbox/dcim/models/cables.py:314 +#: dcim/models/cables.py:314 msgid "cable terminations" msgstr "kablo sonlandırmaları" -#: netbox/dcim/models/cables.py:333 +#: dcim/models/cables.py:333 #, python-brace-format msgid "" "Duplicate termination found for {app_label}.{model} {termination_id}: cable " @@ -5158,36 +4719,36 @@ msgstr "" "Yinelenen sonlandırma bulundu {app_label}.{model} {termination_id}: kablo " "{cable_pk}" -#: netbox/dcim/models/cables.py:343 +#: dcim/models/cables.py:343 #, python-brace-format msgid "Cables cannot be terminated to {type_display} interfaces" msgstr "Kablolar sonlandırılamaz {type_display} arayüzleri" -#: netbox/dcim/models/cables.py:350 +#: dcim/models/cables.py:350 msgid "Circuit terminations attached to a provider network may not be cabled." msgstr "Bir sağlayıcı ağına bağlı devre sonlandırmaları kablolanmayabilir." -#: netbox/dcim/models/cables.py:448 netbox/extras/models/configs.py:50 +#: dcim/models/cables.py:448 extras/models/configs.py:50 msgid "is active" msgstr "aktiftir" -#: netbox/dcim/models/cables.py:452 +#: dcim/models/cables.py:452 msgid "is complete" msgstr "tamamlandı" -#: netbox/dcim/models/cables.py:456 +#: dcim/models/cables.py:456 msgid "is split" msgstr "bölünmüş" -#: netbox/dcim/models/cables.py:464 +#: dcim/models/cables.py:464 msgid "cable path" msgstr "kablo yolu" -#: netbox/dcim/models/cables.py:465 +#: dcim/models/cables.py:465 msgid "cable paths" msgstr "kablo yolları" -#: netbox/dcim/models/device_component_templates.py:46 +#: dcim/models/device_component_templates.py:46 #, python-brace-format msgid "" "{module} is accepted as a substitution for the module bay position when " @@ -5196,23 +4757,23 @@ msgstr "" "{module} bir modül tipine bağlandığında modül yuvası konumunun yerine kabul " "edilir." -#: netbox/dcim/models/device_component_templates.py:58 -#: netbox/dcim/models/device_components.py:65 +#: dcim/models/device_component_templates.py:58 +#: dcim/models/device_components.py:65 msgid "Physical label" msgstr "Fiziksel etiket" -#: netbox/dcim/models/device_component_templates.py:103 +#: dcim/models/device_component_templates.py:103 msgid "Component templates cannot be moved to a different device type." msgstr "Bileşen şablonları farklı bir aygıt türüne taşınamaz." -#: netbox/dcim/models/device_component_templates.py:154 +#: dcim/models/device_component_templates.py:154 msgid "" "A component template cannot be associated with both a device type and a " "module type." msgstr "" "Bir bileşen şablonu hem aygıt türü hem de modül türüyle ilişkilendirilemez." -#: netbox/dcim/models/device_component_templates.py:158 +#: dcim/models/device_component_templates.py:158 msgid "" "A component template must be associated with either a device type or a " "module type." @@ -5220,134 +4781,134 @@ msgstr "" "Bir bileşen şablonu, bir aygıt türü veya bir modül türüyle " "ilişkilendirilmelidir." -#: netbox/dcim/models/device_component_templates.py:212 +#: dcim/models/device_component_templates.py:212 msgid "console port template" msgstr "konsol bağlantı noktası şablonu" -#: netbox/dcim/models/device_component_templates.py:213 +#: dcim/models/device_component_templates.py:213 msgid "console port templates" msgstr "konsol bağlantı noktası şablonları" -#: netbox/dcim/models/device_component_templates.py:246 +#: dcim/models/device_component_templates.py:246 msgid "console server port template" msgstr "konsol sunucusu bağlantı noktası şablonu" -#: netbox/dcim/models/device_component_templates.py:247 +#: dcim/models/device_component_templates.py:247 msgid "console server port templates" msgstr "konsol sunucusu bağlantı noktası şablonları" -#: netbox/dcim/models/device_component_templates.py:278 -#: netbox/dcim/models/device_components.py:352 +#: dcim/models/device_component_templates.py:278 +#: dcim/models/device_components.py:352 msgid "maximum draw" msgstr "maksimum çekiliş" -#: netbox/dcim/models/device_component_templates.py:285 -#: netbox/dcim/models/device_components.py:359 +#: dcim/models/device_component_templates.py:285 +#: dcim/models/device_components.py:359 msgid "allocated draw" msgstr "tahsis edilen çekiliş" -#: netbox/dcim/models/device_component_templates.py:295 +#: dcim/models/device_component_templates.py:295 msgid "power port template" msgstr "güç bağlantı noktası şablonu" -#: netbox/dcim/models/device_component_templates.py:296 +#: dcim/models/device_component_templates.py:296 msgid "power port templates" msgstr "güç bağlantı noktası şablonları" -#: netbox/dcim/models/device_component_templates.py:315 -#: netbox/dcim/models/device_components.py:382 +#: dcim/models/device_component_templates.py:315 +#: dcim/models/device_components.py:382 #, python-brace-format msgid "Allocated draw cannot exceed the maximum draw ({maximum_draw}W)." msgstr "Tahsis edilen çekiliş maksimum çekilişi aşamaz ({maximum_draw}W)." -#: netbox/dcim/models/device_component_templates.py:347 -#: netbox/dcim/models/device_components.py:477 +#: dcim/models/device_component_templates.py:347 +#: dcim/models/device_components.py:477 msgid "feed leg" msgstr "besleme bacağı" -#: netbox/dcim/models/device_component_templates.py:351 -#: netbox/dcim/models/device_components.py:481 +#: dcim/models/device_component_templates.py:351 +#: dcim/models/device_components.py:481 msgid "Phase (for three-phase feeds)" msgstr "Faz (üç fazlı beslemeler için)" -#: netbox/dcim/models/device_component_templates.py:357 +#: dcim/models/device_component_templates.py:357 msgid "power outlet template" msgstr "elektrik prizi şablonu" -#: netbox/dcim/models/device_component_templates.py:358 +#: dcim/models/device_component_templates.py:358 msgid "power outlet templates" msgstr "elektrik prizi şablonları" -#: netbox/dcim/models/device_component_templates.py:367 +#: dcim/models/device_component_templates.py:367 #, python-brace-format msgid "Parent power port ({power_port}) must belong to the same device type" msgstr "" "Ana güç bağlantı noktası ({power_port}) aynı cihaz türüne ait olmalıdır" -#: netbox/dcim/models/device_component_templates.py:371 +#: dcim/models/device_component_templates.py:371 #, python-brace-format msgid "Parent power port ({power_port}) must belong to the same module type" msgstr "" "Ana güç bağlantı noktası ({power_port}) aynı modül türüne ait olmalıdır" -#: netbox/dcim/models/device_component_templates.py:423 -#: netbox/dcim/models/device_components.py:611 +#: dcim/models/device_component_templates.py:423 +#: dcim/models/device_components.py:611 msgid "management only" msgstr "sadece yönetim" -#: netbox/dcim/models/device_component_templates.py:431 -#: netbox/dcim/models/device_components.py:550 +#: dcim/models/device_component_templates.py:431 +#: dcim/models/device_components.py:550 msgid "bridge interface" msgstr "köprü arayüzü" -#: netbox/dcim/models/device_component_templates.py:449 -#: netbox/dcim/models/device_components.py:636 +#: dcim/models/device_component_templates.py:449 +#: dcim/models/device_components.py:636 msgid "wireless role" msgstr "kablosuz rolü" -#: netbox/dcim/models/device_component_templates.py:455 +#: dcim/models/device_component_templates.py:455 msgid "interface template" msgstr "arayüz şablonu" -#: netbox/dcim/models/device_component_templates.py:456 +#: dcim/models/device_component_templates.py:456 msgid "interface templates" msgstr "arayüz şablonları" -#: netbox/dcim/models/device_component_templates.py:463 -#: netbox/dcim/models/device_components.py:804 -#: netbox/virtualization/models/virtualmachines.py:405 +#: dcim/models/device_component_templates.py:463 +#: dcim/models/device_components.py:804 +#: virtualization/models/virtualmachines.py:405 msgid "An interface cannot be bridged to itself." msgstr "Bir arayüz kendi başına köprülenemez." -#: netbox/dcim/models/device_component_templates.py:466 +#: dcim/models/device_component_templates.py:466 #, python-brace-format msgid "Bridge interface ({bridge}) must belong to the same device type" msgstr "Köprü arayüzü ({bridge}) aynı cihaz türüne ait olmalıdır" -#: netbox/dcim/models/device_component_templates.py:470 +#: dcim/models/device_component_templates.py:470 #, python-brace-format msgid "Bridge interface ({bridge}) must belong to the same module type" msgstr "Köprü arayüzü ({bridge}) aynı modül türüne ait olmalıdır" -#: netbox/dcim/models/device_component_templates.py:526 -#: netbox/dcim/models/device_components.py:984 +#: dcim/models/device_component_templates.py:526 +#: dcim/models/device_components.py:984 msgid "rear port position" msgstr "arka port konumu" -#: netbox/dcim/models/device_component_templates.py:551 +#: dcim/models/device_component_templates.py:551 msgid "front port template" msgstr "ön bağlantı noktası şablonu" -#: netbox/dcim/models/device_component_templates.py:552 +#: dcim/models/device_component_templates.py:552 msgid "front port templates" msgstr "ön bağlantı noktası şablonları" -#: netbox/dcim/models/device_component_templates.py:562 +#: dcim/models/device_component_templates.py:562 #, python-brace-format msgid "Rear port ({name}) must belong to the same device type" msgstr "Arka bağlantı noktası ({name}) aynı cihaz türüne ait olmalıdır" -#: netbox/dcim/models/device_component_templates.py:568 +#: dcim/models/device_component_templates.py:568 #, python-brace-format msgid "" "Invalid rear port position ({position}); rear port {name} has only {count} " @@ -5356,46 +4917,46 @@ msgstr "" "Geçersiz arka bağlantı noktası konumu ({position}); arka bağlantı noktası " "{name} sadece var {count} pozisyonlar" -#: netbox/dcim/models/device_component_templates.py:621 -#: netbox/dcim/models/device_components.py:1053 +#: dcim/models/device_component_templates.py:621 +#: dcim/models/device_components.py:1053 msgid "positions" msgstr "pozisyonlar" -#: netbox/dcim/models/device_component_templates.py:632 +#: dcim/models/device_component_templates.py:632 msgid "rear port template" msgstr "arka bağlantı noktası şablonu" -#: netbox/dcim/models/device_component_templates.py:633 +#: dcim/models/device_component_templates.py:633 msgid "rear port templates" msgstr "arka bağlantı noktası şablonları" -#: netbox/dcim/models/device_component_templates.py:662 -#: netbox/dcim/models/device_components.py:1103 +#: dcim/models/device_component_templates.py:662 +#: dcim/models/device_components.py:1103 msgid "position" msgstr "pozisyon" -#: netbox/dcim/models/device_component_templates.py:665 -#: netbox/dcim/models/device_components.py:1106 +#: dcim/models/device_component_templates.py:665 +#: dcim/models/device_components.py:1106 msgid "Identifier to reference when renaming installed components" msgstr "Yüklü bileşenleri yeniden adlandırırken başvurulacak tanımlayıcı" -#: netbox/dcim/models/device_component_templates.py:671 +#: dcim/models/device_component_templates.py:671 msgid "module bay template" msgstr "modül bölmesi şablonu" -#: netbox/dcim/models/device_component_templates.py:672 +#: dcim/models/device_component_templates.py:672 msgid "module bay templates" msgstr "modül bölmesi şablonları" -#: netbox/dcim/models/device_component_templates.py:699 +#: dcim/models/device_component_templates.py:699 msgid "device bay template" msgstr "cihaz yuvası şablonu" -#: netbox/dcim/models/device_component_templates.py:700 +#: dcim/models/device_component_templates.py:700 msgid "device bay templates" msgstr "cihaz yuvası şablonları" -#: netbox/dcim/models/device_component_templates.py:713 +#: dcim/models/device_component_templates.py:713 #, python-brace-format msgid "" "Subdevice role of device type ({device_type}) must be set to \"parent\" to " @@ -5404,205 +4965,200 @@ msgstr "" "Aygıt türünün alt cihaz rolü ({device_type}) cihaz bölmelerine izin vermek " "için “ebeveyn” olarak ayarlanmalıdır." -#: netbox/dcim/models/device_component_templates.py:768 -#: netbox/dcim/models/device_components.py:1262 +#: dcim/models/device_component_templates.py:768 +#: dcim/models/device_components.py:1262 msgid "part ID" msgstr "parça kimliği" -#: netbox/dcim/models/device_component_templates.py:770 -#: netbox/dcim/models/device_components.py:1264 +#: dcim/models/device_component_templates.py:770 +#: dcim/models/device_components.py:1264 msgid "Manufacturer-assigned part identifier" msgstr "Üretici tarafından atanan parça tanımlayıcısı" -#: netbox/dcim/models/device_component_templates.py:787 +#: dcim/models/device_component_templates.py:787 msgid "inventory item template" msgstr "envanter öğesi şablonu" -#: netbox/dcim/models/device_component_templates.py:788 +#: dcim/models/device_component_templates.py:788 msgid "inventory item templates" msgstr "envanter öğe şablonları" -#: netbox/dcim/models/device_components.py:105 +#: dcim/models/device_components.py:105 msgid "Components cannot be moved to a different device." msgstr "Bileşenler farklı bir cihaza taşınamaz." -#: netbox/dcim/models/device_components.py:144 +#: dcim/models/device_components.py:144 msgid "cable end" msgstr "kablo ucu" -#: netbox/dcim/models/device_components.py:150 +#: dcim/models/device_components.py:150 msgid "mark connected" msgstr "bağlı olarak işaretle" -#: netbox/dcim/models/device_components.py:152 +#: dcim/models/device_components.py:152 msgid "Treat as if a cable is connected" msgstr "Bir kablo bağlıymış gibi davranın" -#: netbox/dcim/models/device_components.py:170 +#: dcim/models/device_components.py:170 msgid "Must specify cable end (A or B) when attaching a cable." msgstr "Kablo takarken kablo ucunu (A veya B) belirtmelisiniz." -#: netbox/dcim/models/device_components.py:174 +#: dcim/models/device_components.py:174 msgid "Cable end must not be set without a cable." msgstr "Kablo ucu kablo olmadan ayarlanmamalıdır." -#: netbox/dcim/models/device_components.py:178 +#: dcim/models/device_components.py:178 msgid "Cannot mark as connected with a cable attached." msgstr "Takılı bir kabloyla bağlı olarak işaretlenemiyor." -#: netbox/dcim/models/device_components.py:202 +#: dcim/models/device_components.py:202 #, python-brace-format msgid "{class_name} models must declare a parent_object property" msgstr "{class_name} modeller bir parent_object özelliği bildirmelidir" -#: netbox/dcim/models/device_components.py:287 -#: netbox/dcim/models/device_components.py:316 -#: netbox/dcim/models/device_components.py:349 -#: netbox/dcim/models/device_components.py:467 +#: dcim/models/device_components.py:287 dcim/models/device_components.py:316 +#: dcim/models/device_components.py:349 dcim/models/device_components.py:467 msgid "Physical port type" msgstr "Fiziksel bağlantı noktası tipi" -#: netbox/dcim/models/device_components.py:290 -#: netbox/dcim/models/device_components.py:319 +#: dcim/models/device_components.py:290 dcim/models/device_components.py:319 msgid "speed" msgstr "sürat" -#: netbox/dcim/models/device_components.py:294 -#: netbox/dcim/models/device_components.py:323 +#: dcim/models/device_components.py:294 dcim/models/device_components.py:323 msgid "Port speed in bits per second" msgstr "Saniyede bit cinsinden port hızı" -#: netbox/dcim/models/device_components.py:300 +#: dcim/models/device_components.py:300 msgid "console port" msgstr "konsol bağlantı noktası" -#: netbox/dcim/models/device_components.py:301 +#: dcim/models/device_components.py:301 msgid "console ports" msgstr "konsol bağlantı noktaları" -#: netbox/dcim/models/device_components.py:329 +#: dcim/models/device_components.py:329 msgid "console server port" msgstr "konsol sunucusu bağlantı noktası" -#: netbox/dcim/models/device_components.py:330 +#: dcim/models/device_components.py:330 msgid "console server ports" msgstr "konsol sunucusu bağlantı noktaları" -#: netbox/dcim/models/device_components.py:369 +#: dcim/models/device_components.py:369 msgid "power port" msgstr "güç bağlantı noktası" -#: netbox/dcim/models/device_components.py:370 +#: dcim/models/device_components.py:370 msgid "power ports" msgstr "güç bağlantı noktaları" -#: netbox/dcim/models/device_components.py:487 +#: dcim/models/device_components.py:487 msgid "power outlet" msgstr "elektrik prizi" -#: netbox/dcim/models/device_components.py:488 +#: dcim/models/device_components.py:488 msgid "power outlets" msgstr "elektrik prizleri" -#: netbox/dcim/models/device_components.py:499 +#: dcim/models/device_components.py:499 #, python-brace-format msgid "Parent power port ({power_port}) must belong to the same device" msgstr "Ana güç bağlantı noktası ({power_port}) aynı cihaza ait olmalıdır" -#: netbox/dcim/models/device_components.py:530 netbox/vpn/models/crypto.py:81 -#: netbox/vpn/models/crypto.py:226 +#: dcim/models/device_components.py:530 vpn/models/crypto.py:81 +#: vpn/models/crypto.py:226 msgid "mode" msgstr "mod" -#: netbox/dcim/models/device_components.py:534 +#: dcim/models/device_components.py:534 msgid "IEEE 802.1Q tagging strategy" msgstr "IEEE 802.1Q etiketleme stratejisi" -#: netbox/dcim/models/device_components.py:542 +#: dcim/models/device_components.py:542 msgid "parent interface" msgstr "ebeveyn arabirimi" -#: netbox/dcim/models/device_components.py:602 +#: dcim/models/device_components.py:602 msgid "parent LAG" msgstr "ebeveyn LAG" -#: netbox/dcim/models/device_components.py:612 +#: dcim/models/device_components.py:612 msgid "This interface is used only for out-of-band management" msgstr "Bu arayüz yalnızca bant dışı yönetim için kullanılır" -#: netbox/dcim/models/device_components.py:617 +#: dcim/models/device_components.py:617 msgid "speed (Kbps)" msgstr "hız (Kbps)" -#: netbox/dcim/models/device_components.py:620 +#: dcim/models/device_components.py:620 msgid "duplex" msgstr "dubleks" -#: netbox/dcim/models/device_components.py:630 +#: dcim/models/device_components.py:630 msgid "64-bit World Wide Name" msgstr "64 bit Dünya Çapında Adı" -#: netbox/dcim/models/device_components.py:642 +#: dcim/models/device_components.py:642 msgid "wireless channel" msgstr "kablosuz kanal" -#: netbox/dcim/models/device_components.py:649 +#: dcim/models/device_components.py:649 msgid "channel frequency (MHz)" msgstr "kanal frekansı (MHz)" -#: netbox/dcim/models/device_components.py:650 -#: netbox/dcim/models/device_components.py:658 +#: dcim/models/device_components.py:650 dcim/models/device_components.py:658 msgid "Populated by selected channel (if set)" msgstr "Seçilen kanala göre doldurulur (ayarlanmışsa)" -#: netbox/dcim/models/device_components.py:664 +#: dcim/models/device_components.py:664 msgid "transmit power (dBm)" msgstr "iletim gücü (dBm)" -#: netbox/dcim/models/device_components.py:689 netbox/wireless/models.py:117 +#: dcim/models/device_components.py:689 wireless/models.py:117 msgid "wireless LANs" msgstr "kablosuz LAN'lar" -#: netbox/dcim/models/device_components.py:697 -#: netbox/virtualization/models/virtualmachines.py:335 +#: dcim/models/device_components.py:697 +#: virtualization/models/virtualmachines.py:335 msgid "untagged VLAN" msgstr "etiketsiz VLAN" -#: netbox/dcim/models/device_components.py:703 -#: netbox/virtualization/models/virtualmachines.py:341 +#: dcim/models/device_components.py:703 +#: virtualization/models/virtualmachines.py:341 msgid "tagged VLANs" msgstr "etiketli VLAN'lar" -#: netbox/dcim/models/device_components.py:745 -#: netbox/virtualization/models/virtualmachines.py:377 +#: dcim/models/device_components.py:745 +#: virtualization/models/virtualmachines.py:377 msgid "interface" msgstr "arayüz" -#: netbox/dcim/models/device_components.py:746 -#: netbox/virtualization/models/virtualmachines.py:378 +#: dcim/models/device_components.py:746 +#: virtualization/models/virtualmachines.py:378 msgid "interfaces" msgstr "arayüzleri" -#: netbox/dcim/models/device_components.py:757 +#: dcim/models/device_components.py:757 #, python-brace-format msgid "{display_type} interfaces cannot have a cable attached." msgstr "{display_type} arabirimlerde kablo takılı olamaz." -#: netbox/dcim/models/device_components.py:765 +#: dcim/models/device_components.py:765 #, python-brace-format msgid "{display_type} interfaces cannot be marked as connected." msgstr "{display_type} arayüzler bağlı olarak işaretlenemez." -#: netbox/dcim/models/device_components.py:774 -#: netbox/virtualization/models/virtualmachines.py:390 +#: dcim/models/device_components.py:774 +#: virtualization/models/virtualmachines.py:390 msgid "An interface cannot be its own parent." msgstr "Bir arayüz kendi ebeveyni olamaz." -#: netbox/dcim/models/device_components.py:778 +#: dcim/models/device_components.py:778 msgid "Only virtual interfaces may be assigned to a parent interface." msgstr "Bir üst arabirime yalnızca sanal arabirimler atanabilir." -#: netbox/dcim/models/device_components.py:785 +#: dcim/models/device_components.py:785 #, python-brace-format msgid "" "The selected parent interface ({interface}) belongs to a different device " @@ -5610,7 +5166,7 @@ msgid "" msgstr "" "Seçilen üst arabirim ({interface}) farklı bir cihaza aittir ({device})" -#: netbox/dcim/models/device_components.py:791 +#: dcim/models/device_components.py:791 #, python-brace-format msgid "" "The selected parent interface ({interface}) belongs to {device}, which is " @@ -5619,14 +5175,14 @@ msgstr "" "Seçilen üst arabirim ({interface}) aittir {device}, sanal kasanın bir " "parçası olmayan {virtual_chassis}." -#: netbox/dcim/models/device_components.py:811 +#: dcim/models/device_components.py:811 #, python-brace-format msgid "" "The selected bridge interface ({bridge}) belongs to a different device " "({device})." msgstr "Seçilen köprü arayüzü ({bridge}) farklı bir cihaza aittir ({device})." -#: netbox/dcim/models/device_components.py:817 +#: dcim/models/device_components.py:817 #, python-brace-format msgid "" "The selected bridge interface ({interface}) belongs to {device}, which is " @@ -5635,21 +5191,21 @@ msgstr "" "Seçilen köprü arayüzü ({interface}) aittir {device}, sanal kasanın bir " "parçası olmayan {virtual_chassis}." -#: netbox/dcim/models/device_components.py:828 +#: dcim/models/device_components.py:828 msgid "Virtual interfaces cannot have a parent LAG interface." msgstr "Sanal arabirimlerin üst LAG arabirimi olamaz." -#: netbox/dcim/models/device_components.py:832 +#: dcim/models/device_components.py:832 msgid "A LAG interface cannot be its own parent." msgstr "Bir LAG arabirimi kendi ana arabirimi olamaz." -#: netbox/dcim/models/device_components.py:839 +#: dcim/models/device_components.py:839 #, python-brace-format msgid "" "The selected LAG interface ({lag}) belongs to a different device ({device})." msgstr "Seçilen LAG arayüzü ({lag}) farklı bir cihaza aittir ({device})." -#: netbox/dcim/models/device_components.py:845 +#: dcim/models/device_components.py:845 #, python-brace-format msgid "" "The selected LAG interface ({lag}) belongs to {device}, which is not part of" @@ -5658,43 +5214,43 @@ msgstr "" "Seçilen LAG arayüzü ({lag}) aittir {device}, sanal kasanın bir parçası " "olmayan {virtual_chassis}." -#: netbox/dcim/models/device_components.py:856 +#: dcim/models/device_components.py:856 msgid "Virtual interfaces cannot have a PoE mode." msgstr "Sanal arabirimler PoE moduna sahip olamaz." -#: netbox/dcim/models/device_components.py:860 +#: dcim/models/device_components.py:860 msgid "Virtual interfaces cannot have a PoE type." msgstr "Sanal arabirimler PoE tipine sahip olamaz." -#: netbox/dcim/models/device_components.py:866 +#: dcim/models/device_components.py:866 msgid "Must specify PoE mode when designating a PoE type." msgstr "Bir PoE türü belirlerken PoE modunu belirtmelisiniz." -#: netbox/dcim/models/device_components.py:873 +#: dcim/models/device_components.py:873 msgid "Wireless role may be set only on wireless interfaces." msgstr "Kablosuz rolü yalnızca kablosuz arayüzlerde ayarlanabilir." -#: netbox/dcim/models/device_components.py:875 +#: dcim/models/device_components.py:875 msgid "Channel may be set only on wireless interfaces." msgstr "Kanal sadece kablosuz arayüzlerde ayarlanabilir." -#: netbox/dcim/models/device_components.py:881 +#: dcim/models/device_components.py:881 msgid "Channel frequency may be set only on wireless interfaces." msgstr "Kanal frekansı yalnızca kablosuz arayüzlerde ayarlanabilir." -#: netbox/dcim/models/device_components.py:885 +#: dcim/models/device_components.py:885 msgid "Cannot specify custom frequency with channel selected." msgstr "Seçili kanal ile özel frekans belirlenemiyor." -#: netbox/dcim/models/device_components.py:891 +#: dcim/models/device_components.py:891 msgid "Channel width may be set only on wireless interfaces." msgstr "Kanal genişliği yalnızca kablosuz arayüzlerde ayarlanabilir." -#: netbox/dcim/models/device_components.py:893 +#: dcim/models/device_components.py:893 msgid "Cannot specify custom width with channel selected." msgstr "Seçili kanal ile özel genişlik belirlenemiyor." -#: netbox/dcim/models/device_components.py:901 +#: dcim/models/device_components.py:901 #, python-brace-format msgid "" "The untagged VLAN ({untagged_vlan}) must belong to the same site as the " @@ -5703,24 +5259,24 @@ msgstr "" "Etiketlenmemiş VLAN ({untagged_vlan}) arayüzün ana cihazıyla aynı siteye ait" " olmalı veya global olmalıdır." -#: netbox/dcim/models/device_components.py:990 +#: dcim/models/device_components.py:990 msgid "Mapped position on corresponding rear port" msgstr "İlgili arka bağlantı noktasında eşlenmiş konum" -#: netbox/dcim/models/device_components.py:1006 +#: dcim/models/device_components.py:1006 msgid "front port" msgstr "ön bağlantı noktası" -#: netbox/dcim/models/device_components.py:1007 +#: dcim/models/device_components.py:1007 msgid "front ports" msgstr "ön bağlantı noktaları" -#: netbox/dcim/models/device_components.py:1021 +#: dcim/models/device_components.py:1021 #, python-brace-format msgid "Rear port ({rear_port}) must belong to the same device" msgstr "Arka bağlantı noktası ({rear_port}) aynı cihaza ait olmalıdır" -#: netbox/dcim/models/device_components.py:1029 +#: dcim/models/device_components.py:1029 #, python-brace-format msgid "" "Invalid rear port position ({rear_port_position}): Rear port {name} has only" @@ -5729,19 +5285,19 @@ msgstr "" "Geçersiz arka bağlantı noktası konumu ({rear_port_position}): Arka bağlantı " "noktası {name} sadece var {positions} pozisyonları." -#: netbox/dcim/models/device_components.py:1059 +#: dcim/models/device_components.py:1059 msgid "Number of front ports which may be mapped" msgstr "Eşlenebilecek ön bağlantı noktalarının sayısı" -#: netbox/dcim/models/device_components.py:1064 +#: dcim/models/device_components.py:1064 msgid "rear port" msgstr "arka bağlantı noktası" -#: netbox/dcim/models/device_components.py:1065 +#: dcim/models/device_components.py:1065 msgid "rear ports" msgstr "arka bağlantı noktaları" -#: netbox/dcim/models/device_components.py:1079 +#: dcim/models/device_components.py:1079 #, python-brace-format msgid "" "The number of positions cannot be less than the number of mapped front ports" @@ -5750,149 +5306,146 @@ msgstr "" "Konum sayısı, eşlenen ön bağlantı noktalarının sayısından az olamaz " "({frontport_count})" -#: netbox/dcim/models/device_components.py:1120 +#: dcim/models/device_components.py:1120 msgid "module bay" msgstr "modül yuvası" -#: netbox/dcim/models/device_components.py:1121 +#: dcim/models/device_components.py:1121 msgid "module bays" msgstr "modül bölmeleri" -#: netbox/dcim/models/device_components.py:1138 -#: netbox/dcim/models/devices.py:1224 +#: dcim/models/device_components.py:1138 dcim/models/devices.py:1224 msgid "A module bay cannot belong to a module installed within it." msgstr "Bir modül yuvası, içinde kurulu bir modüle ait olamaz." -#: netbox/dcim/models/device_components.py:1164 +#: dcim/models/device_components.py:1164 msgid "device bay" msgstr "cihaz yuvası" -#: netbox/dcim/models/device_components.py:1165 +#: dcim/models/device_components.py:1165 msgid "device bays" msgstr "cihaz yuvaları" -#: netbox/dcim/models/device_components.py:1175 +#: dcim/models/device_components.py:1175 #, python-brace-format msgid "This type of device ({device_type}) does not support device bays." msgstr "Bu tür bir cihaz ({device_type}) cihaz bölmelerini desteklemez." -#: netbox/dcim/models/device_components.py:1181 +#: dcim/models/device_components.py:1181 msgid "Cannot install a device into itself." msgstr "Bir cihaz kendi içine yüklenemiyor." -#: netbox/dcim/models/device_components.py:1189 +#: dcim/models/device_components.py:1189 #, python-brace-format msgid "" "Cannot install the specified device; device is already installed in {bay}." msgstr "Belirtilen cihaz yüklenemiyor; cihaz zaten yüklü {bay}." -#: netbox/dcim/models/device_components.py:1210 +#: dcim/models/device_components.py:1210 msgid "inventory item role" msgstr "envanter kalemi rolü" -#: netbox/dcim/models/device_components.py:1211 +#: dcim/models/device_components.py:1211 msgid "inventory item roles" msgstr "envanter kalemi rolleri" -#: netbox/dcim/models/device_components.py:1268 -#: netbox/dcim/models/devices.py:607 netbox/dcim/models/devices.py:1181 -#: netbox/dcim/models/racks.py:313 -#: netbox/virtualization/models/virtualmachines.py:131 +#: dcim/models/device_components.py:1268 dcim/models/devices.py:607 +#: dcim/models/devices.py:1181 dcim/models/racks.py:313 +#: virtualization/models/virtualmachines.py:131 msgid "serial number" msgstr "seri numarası" -#: netbox/dcim/models/device_components.py:1276 -#: netbox/dcim/models/devices.py:615 netbox/dcim/models/devices.py:1188 -#: netbox/dcim/models/racks.py:320 +#: dcim/models/device_components.py:1276 dcim/models/devices.py:615 +#: dcim/models/devices.py:1188 dcim/models/racks.py:320 msgid "asset tag" msgstr "varlık etiketi" -#: netbox/dcim/models/device_components.py:1277 +#: dcim/models/device_components.py:1277 msgid "A unique tag used to identify this item" msgstr "Bu öğeyi tanımlamak için kullanılan benzersiz bir etiket" -#: netbox/dcim/models/device_components.py:1280 +#: dcim/models/device_components.py:1280 msgid "discovered" msgstr "keşfedilen" -#: netbox/dcim/models/device_components.py:1282 +#: dcim/models/device_components.py:1282 msgid "This item was automatically discovered" msgstr "Bu öğe otomatik olarak keşfedildi" -#: netbox/dcim/models/device_components.py:1300 +#: dcim/models/device_components.py:1300 msgid "inventory item" msgstr "envanter kalemi" -#: netbox/dcim/models/device_components.py:1301 +#: dcim/models/device_components.py:1301 msgid "inventory items" msgstr "envanter kalemleri" -#: netbox/dcim/models/device_components.py:1312 +#: dcim/models/device_components.py:1312 msgid "Cannot assign self as parent." msgstr "Kendisi ebeveyn olarak atanamıyor." -#: netbox/dcim/models/device_components.py:1320 +#: dcim/models/device_components.py:1320 msgid "Parent inventory item does not belong to the same device." msgstr "Ana envanter kalemi aynı cihaza ait değildir." -#: netbox/dcim/models/device_components.py:1326 +#: dcim/models/device_components.py:1326 msgid "Cannot move an inventory item with dependent children" msgstr "Bağımlı çocuklarla bir envanter öğesi taşınamıyor" -#: netbox/dcim/models/device_components.py:1334 +#: dcim/models/device_components.py:1334 msgid "Cannot assign inventory item to component on another device" msgstr "Başka bir cihazdaki bileşene envanter öğesi atanamıyor" -#: netbox/dcim/models/devices.py:54 +#: dcim/models/devices.py:54 msgid "manufacturer" msgstr "üretici firma" -#: netbox/dcim/models/devices.py:55 +#: dcim/models/devices.py:55 msgid "manufacturers" msgstr "üreticiler" -#: netbox/dcim/models/devices.py:82 netbox/dcim/models/devices.py:382 -#: netbox/dcim/models/racks.py:133 +#: dcim/models/devices.py:82 dcim/models/devices.py:382 +#: dcim/models/racks.py:133 msgid "model" msgstr "model" -#: netbox/dcim/models/devices.py:95 +#: dcim/models/devices.py:95 msgid "default platform" msgstr "varsayılan platform" -#: netbox/dcim/models/devices.py:98 netbox/dcim/models/devices.py:386 +#: dcim/models/devices.py:98 dcim/models/devices.py:386 msgid "part number" msgstr "parça numarası" -#: netbox/dcim/models/devices.py:101 netbox/dcim/models/devices.py:389 +#: dcim/models/devices.py:101 dcim/models/devices.py:389 msgid "Discrete part number (optional)" msgstr "Ayrık parça numarası (isteğe bağlı)" -#: netbox/dcim/models/devices.py:107 netbox/dcim/models/racks.py:54 +#: dcim/models/devices.py:107 dcim/models/racks.py:54 msgid "height (U)" msgstr "yükseklik (U)" -#: netbox/dcim/models/devices.py:111 +#: dcim/models/devices.py:111 msgid "exclude from utilization" msgstr "kullanımdan hariç tut" -#: netbox/dcim/models/devices.py:112 +#: dcim/models/devices.py:112 msgid "Devices of this type are excluded when calculating rack utilization." msgstr "Raf kullanımı hesaplanırken bu tip cihazlar hariç tutulur." -#: netbox/dcim/models/devices.py:116 +#: dcim/models/devices.py:116 msgid "is full depth" msgstr "tam derinliktir" -#: netbox/dcim/models/devices.py:117 +#: dcim/models/devices.py:117 msgid "Device consumes both front and rear rack faces." msgstr "Cihaz hem ön hem de arka kabin yüzlerini tüketir." -#: netbox/dcim/models/devices.py:123 +#: dcim/models/devices.py:123 msgid "parent/child status" msgstr "ebeveyn/çocuk durumu" -#: netbox/dcim/models/devices.py:124 +#: dcim/models/devices.py:124 msgid "" "Parent devices house child devices in device bays. Leave blank if this " "device type is neither a parent nor a child." @@ -5900,24 +5453,24 @@ msgstr "" "Ana cihazlar, alt cihazarı cihaz yuvalarında barındırır. Bu cihaz türü ana " "veya alt cihaz değilse boş bırakın." -#: netbox/dcim/models/devices.py:128 netbox/dcim/models/devices.py:392 -#: netbox/dcim/models/devices.py:659 netbox/dcim/models/racks.py:324 +#: dcim/models/devices.py:128 dcim/models/devices.py:392 +#: dcim/models/devices.py:659 dcim/models/racks.py:324 msgid "airflow" msgstr "hava akımı" -#: netbox/dcim/models/devices.py:204 +#: dcim/models/devices.py:204 msgid "device type" msgstr "cihaz tipi" -#: netbox/dcim/models/devices.py:205 +#: dcim/models/devices.py:205 msgid "device types" msgstr "cihaz türleri" -#: netbox/dcim/models/devices.py:290 +#: dcim/models/devices.py:290 msgid "U height must be in increments of 0.5 rack units." msgstr "U yüksekliği 0,5 raf ünitesi artışlarla olmalıdır." -#: netbox/dcim/models/devices.py:307 +#: dcim/models/devices.py:307 #, python-brace-format msgid "" "Device {device} in rack {rack} does not have sufficient space to accommodate" @@ -5926,7 +5479,7 @@ msgstr "" "{rack} kabininde {device} cihazını {height}U yüksekliğinde barındırmak için " "yeterli alan bulunmamaktadır" -#: netbox/dcim/models/devices.py:322 +#: dcim/models/devices.py:322 #, python-brace-format msgid "" "Unable to set 0U height: Found {racked_instance_count} " @@ -5936,7 +5489,7 @@ msgstr "" "href=\"{url}\">{racked_instance_count} örnekler zaten raflara monte " "edilmiştir." -#: netbox/dcim/models/devices.py:331 +#: dcim/models/devices.py:331 msgid "" "Must delete all device bay templates associated with this device before " "declassifying it as a parent device." @@ -5944,164 +5497,164 @@ msgstr "" "Ana cihaz olarak sınıflandırmadan önce bu cihazla ilişkili tüm cihaz yuvası " "şablonlarını silmeniz gerekir." -#: netbox/dcim/models/devices.py:337 +#: dcim/models/devices.py:337 msgid "Child device types must be 0U." msgstr "Çocuk cihaz türleri 0U olmalıdır." -#: netbox/dcim/models/devices.py:411 +#: dcim/models/devices.py:411 msgid "module type" msgstr "modül tipi" -#: netbox/dcim/models/devices.py:412 +#: dcim/models/devices.py:412 msgid "module types" msgstr "modül türleri" -#: netbox/dcim/models/devices.py:485 +#: dcim/models/devices.py:485 msgid "Virtual machines may be assigned to this role" msgstr "Sanal makineler bu role atanabilir" -#: netbox/dcim/models/devices.py:497 +#: dcim/models/devices.py:497 msgid "device role" msgstr "cihaz rolü" -#: netbox/dcim/models/devices.py:498 +#: dcim/models/devices.py:498 msgid "device roles" msgstr "cihaz rolleri" -#: netbox/dcim/models/devices.py:515 +#: dcim/models/devices.py:515 msgid "Optionally limit this platform to devices of a certain manufacturer" msgstr "" "İsteğe bağlı olarak bu platformu belirli bir üreticinin cihazlarıyla " "sınırlayın" -#: netbox/dcim/models/devices.py:527 +#: dcim/models/devices.py:527 msgid "platform" msgstr "platform" -#: netbox/dcim/models/devices.py:528 +#: dcim/models/devices.py:528 msgid "platforms" msgstr "platformlar" -#: netbox/dcim/models/devices.py:576 +#: dcim/models/devices.py:576 msgid "The function this device serves" msgstr "Bu cihazın hizmet ettiği işlev" -#: netbox/dcim/models/devices.py:608 +#: dcim/models/devices.py:608 msgid "Chassis serial number, assigned by the manufacturer" msgstr "Üretici tarafından atanan şasi seri numarası" -#: netbox/dcim/models/devices.py:616 netbox/dcim/models/devices.py:1189 +#: dcim/models/devices.py:616 dcim/models/devices.py:1189 msgid "A unique tag used to identify this device" msgstr "Bu cihazı tanımlamak için kullanılan benzersiz bir etiket" -#: netbox/dcim/models/devices.py:643 +#: dcim/models/devices.py:643 msgid "position (U)" msgstr "pozisyon (U)" -#: netbox/dcim/models/devices.py:650 +#: dcim/models/devices.py:650 msgid "rack face" msgstr "raf yüzü" -#: netbox/dcim/models/devices.py:670 netbox/dcim/models/devices.py:1415 -#: netbox/virtualization/models/virtualmachines.py:100 +#: dcim/models/devices.py:670 dcim/models/devices.py:1415 +#: virtualization/models/virtualmachines.py:100 msgid "primary IPv4" msgstr "birincil IPv4" -#: netbox/dcim/models/devices.py:678 netbox/dcim/models/devices.py:1423 -#: netbox/virtualization/models/virtualmachines.py:108 +#: dcim/models/devices.py:678 dcim/models/devices.py:1423 +#: virtualization/models/virtualmachines.py:108 msgid "primary IPv6" msgstr "birincil IPv6" -#: netbox/dcim/models/devices.py:686 +#: dcim/models/devices.py:686 msgid "out-of-band IP" msgstr "bant dışı IP" -#: netbox/dcim/models/devices.py:703 +#: dcim/models/devices.py:703 msgid "VC position" msgstr "VC pozisyonu" -#: netbox/dcim/models/devices.py:706 +#: dcim/models/devices.py:706 msgid "Virtual chassis position" msgstr "Sanal şasi konumu" -#: netbox/dcim/models/devices.py:709 +#: dcim/models/devices.py:709 msgid "VC priority" msgstr "VC önceliği" -#: netbox/dcim/models/devices.py:713 +#: dcim/models/devices.py:713 msgid "Virtual chassis master election priority" msgstr "Sanal şasi ana seçim önceliği" -#: netbox/dcim/models/devices.py:716 netbox/dcim/models/sites.py:207 +#: dcim/models/devices.py:716 dcim/models/sites.py:207 msgid "latitude" msgstr "enlem" -#: netbox/dcim/models/devices.py:721 netbox/dcim/models/devices.py:729 -#: netbox/dcim/models/sites.py:212 netbox/dcim/models/sites.py:220 +#: dcim/models/devices.py:721 dcim/models/devices.py:729 +#: dcim/models/sites.py:212 dcim/models/sites.py:220 msgid "GPS coordinate in decimal format (xx.yyyyyy)" msgstr "Ondalık formatta GPS koordinatı (xx.yyyyyy)" -#: netbox/dcim/models/devices.py:724 netbox/dcim/models/sites.py:215 +#: dcim/models/devices.py:724 dcim/models/sites.py:215 msgid "longitude" msgstr "boylam" -#: netbox/dcim/models/devices.py:797 +#: dcim/models/devices.py:797 msgid "Device name must be unique per site." msgstr "Aygıt adı site başına benzersiz olmalıdır." -#: netbox/dcim/models/devices.py:808 netbox/ipam/models/services.py:75 +#: dcim/models/devices.py:808 ipam/models/services.py:75 msgid "device" msgstr "cihaz" -#: netbox/dcim/models/devices.py:809 +#: dcim/models/devices.py:809 msgid "devices" msgstr "cihazlar" -#: netbox/dcim/models/devices.py:835 +#: dcim/models/devices.py:835 #, python-brace-format msgid "Rack {rack} does not belong to site {site}." msgstr "Raf {rack} siteye ait değil {site}." -#: netbox/dcim/models/devices.py:840 +#: dcim/models/devices.py:840 #, python-brace-format msgid "Location {location} does not belong to site {site}." msgstr "{location} Konum {site} adlı siteye ait değil." -#: netbox/dcim/models/devices.py:846 +#: dcim/models/devices.py:846 #, python-brace-format msgid "Rack {rack} does not belong to location {location}." msgstr "{rack} rafı {location} adlı konuma ait değil." -#: netbox/dcim/models/devices.py:853 +#: dcim/models/devices.py:853 msgid "Cannot select a rack face without assigning a rack." msgstr "Bir raf atamadan raf yüzü seçilemez." -#: netbox/dcim/models/devices.py:857 +#: dcim/models/devices.py:857 msgid "Cannot select a rack position without assigning a rack." msgstr "Bir raf atamadan raf konumu seçilemez." -#: netbox/dcim/models/devices.py:863 +#: dcim/models/devices.py:863 msgid "Position must be in increments of 0.5 rack units." msgstr "Konum 0,5 raf ünitesinin artışlarında olmalıdır." -#: netbox/dcim/models/devices.py:867 +#: dcim/models/devices.py:867 msgid "Must specify rack face when defining rack position." msgstr "Raf konumunu tanımlarken raf yüzü belirtilmelidir." -#: netbox/dcim/models/devices.py:875 +#: dcim/models/devices.py:875 #, python-brace-format msgid "" "A 0U device type ({device_type}) cannot be assigned to a rack position." msgstr "Bir 0U cihaz tipi ({device_type}) bir raf konumuna atanamaz." -#: netbox/dcim/models/devices.py:886 +#: dcim/models/devices.py:886 msgid "" "Child device types cannot be assigned to a rack face. This is an attribute " "of the parent device." msgstr "" "Alt aygıt türleri bir raf yüzüne atanamaz. Bu, ana cihazın bir özelliğidir." -#: netbox/dcim/models/devices.py:893 +#: dcim/models/devices.py:893 msgid "" "Child device types cannot be assigned to a rack position. This is an " "attribute of the parent device." @@ -6109,7 +5662,7 @@ msgstr "" "Alt aygıt türleri bir raf konumuna atanamaz. Bu, ana aygıtın bir " "özelliğidir." -#: netbox/dcim/models/devices.py:907 +#: dcim/models/devices.py:907 #, python-brace-format msgid "" "U{position} is already occupied or does not have sufficient space to " @@ -6118,22 +5671,22 @@ msgstr "" "U{position} zaten işgal edilmiş veya bu cihaz tipini barındırmak için " "yeterli alana sahip değil: {device_type} ({u_height}U)" -#: netbox/dcim/models/devices.py:922 +#: dcim/models/devices.py:922 #, python-brace-format msgid "{ip} is not an IPv4 address." msgstr "{ip} Bu bir IPv4 adresi değildir." -#: netbox/dcim/models/devices.py:931 netbox/dcim/models/devices.py:946 +#: dcim/models/devices.py:931 dcim/models/devices.py:946 #, python-brace-format msgid "The specified IP address ({ip}) is not assigned to this device." msgstr "Belirtilen IP adresi ({ip}) bu cihaza atanmamıştır." -#: netbox/dcim/models/devices.py:937 +#: dcim/models/devices.py:937 #, python-brace-format msgid "{ip} is not an IPv6 address." msgstr "{ip} Bu bir IPv6 adresi değildir." -#: netbox/dcim/models/devices.py:964 +#: dcim/models/devices.py:964 #, python-brace-format msgid "" "The assigned platform is limited to {platform_manufacturer} device types, " @@ -6142,16 +5695,16 @@ msgstr "" "Atanan platform aşağıdakilerle sınırlıdır {platform_manufacturer} cihaz " "türleri, ancak bu cihazın türü şunlara aittir {devicetype_manufacturer}." -#: netbox/dcim/models/devices.py:975 +#: dcim/models/devices.py:975 #, python-brace-format msgid "The assigned cluster belongs to a different site ({site})" msgstr "Atanan küme farklı bir siteye aittir ({site})" -#: netbox/dcim/models/devices.py:983 +#: dcim/models/devices.py:983 msgid "A device assigned to a virtual chassis must have its position defined." msgstr "Sanal bir kasaya atanan bir aygıtın konumu tanımlanmış olmalıdır." -#: netbox/dcim/models/devices.py:988 +#: dcim/models/devices.py:988 #, python-brace-format msgid "" "Device cannot be removed from virtual chassis {virtual_chassis} because it " @@ -6160,36 +5713,36 @@ msgstr "" "Cihaz sanal kasadan kaldırılamıyor {virtual_chassis} çünkü şu anda efendisi " "olarak belirlenmiştir." -#: netbox/dcim/models/devices.py:1196 +#: dcim/models/devices.py:1196 msgid "module" msgstr "modül" -#: netbox/dcim/models/devices.py:1197 +#: dcim/models/devices.py:1197 msgid "modules" msgstr "modülleri" -#: netbox/dcim/models/devices.py:1213 +#: dcim/models/devices.py:1213 #, python-brace-format msgid "" "Module must be installed within a module bay belonging to the assigned " "device ({device})." msgstr "Modül, atanan cihaza ait bir modül bölmesine kurulmalıdır ({device})." -#: netbox/dcim/models/devices.py:1334 +#: dcim/models/devices.py:1334 msgid "domain" msgstr "domain" -#: netbox/dcim/models/devices.py:1347 netbox/dcim/models/devices.py:1348 +#: dcim/models/devices.py:1347 dcim/models/devices.py:1348 msgid "virtual chassis" msgstr "sanal kasa" -#: netbox/dcim/models/devices.py:1363 +#: dcim/models/devices.py:1363 #, python-brace-format msgid "" "The selected master ({master}) is not assigned to this virtual chassis." msgstr "Seçilen usta ({master}) bu sanal kasaya atanmamıştır." -#: netbox/dcim/models/devices.py:1379 +#: dcim/models/devices.py:1379 #, python-brace-format msgid "" "Unable to delete virtual chassis {self}. There are member interfaces which " @@ -6198,102 +5751,102 @@ msgstr "" "Sanal kasa silinemiyor {self}. Çapraz şasi LAG arabirimleri oluşturan üye " "arayüzleri vardır." -#: netbox/dcim/models/devices.py:1404 netbox/vpn/models/l2vpn.py:37 +#: dcim/models/devices.py:1404 vpn/models/l2vpn.py:37 msgid "identifier" msgstr "belirlemek" -#: netbox/dcim/models/devices.py:1405 +#: dcim/models/devices.py:1405 msgid "Numeric identifier unique to the parent device" msgstr "Ana aygıta benzersiz sayısal tanımlayıcı" -#: netbox/dcim/models/devices.py:1433 netbox/extras/models/customfields.py:225 -#: netbox/extras/models/models.py:107 netbox/extras/models/models.py:694 -#: netbox/netbox/models/__init__.py:115 +#: dcim/models/devices.py:1433 extras/models/customfields.py:225 +#: extras/models/models.py:107 extras/models/models.py:694 +#: netbox/models/__init__.py:115 msgid "comments" msgstr "yorumlar" -#: netbox/dcim/models/devices.py:1449 +#: dcim/models/devices.py:1449 msgid "virtual device context" msgstr "sanal cihaz bağlamı" -#: netbox/dcim/models/devices.py:1450 +#: dcim/models/devices.py:1450 msgid "virtual device contexts" msgstr "sanal cihaz bağlamları" -#: netbox/dcim/models/devices.py:1482 +#: dcim/models/devices.py:1482 #, python-brace-format msgid "{ip} is not an IPv{family} address." msgstr "{ip} IPV değil{family} adres." -#: netbox/dcim/models/devices.py:1488 +#: dcim/models/devices.py:1488 msgid "Primary IP address must belong to an interface on the assigned device." msgstr "Birincil IP adresi, atanan cihazdaki bir arayüze ait olmalıdır." -#: netbox/dcim/models/mixins.py:15 netbox/extras/models/configs.py:41 -#: netbox/extras/models/models.py:313 netbox/extras/models/models.py:522 -#: netbox/extras/models/search.py:48 netbox/ipam/models/ip.py:194 +#: dcim/models/mixins.py:15 extras/models/configs.py:41 +#: extras/models/models.py:313 extras/models/models.py:522 +#: extras/models/search.py:48 ipam/models/ip.py:194 msgid "weight" msgstr "ağırlık" -#: netbox/dcim/models/mixins.py:22 +#: dcim/models/mixins.py:22 msgid "weight unit" msgstr "ağırlık birimi" -#: netbox/dcim/models/mixins.py:51 +#: dcim/models/mixins.py:51 msgid "Must specify a unit when setting a weight" msgstr "Ağırlık ayarlarken bir birim belirtmelisiniz" -#: netbox/dcim/models/power.py:55 +#: dcim/models/power.py:55 msgid "power panel" msgstr "güç paneli" -#: netbox/dcim/models/power.py:56 +#: dcim/models/power.py:56 msgid "power panels" msgstr "güç panelleri" -#: netbox/dcim/models/power.py:70 +#: dcim/models/power.py:70 #, python-brace-format msgid "" "Location {location} ({location_site}) is in a different site than {site}" msgstr "{location} ({location_site}) adlı konum, {site} adlı sitede değil." -#: netbox/dcim/models/power.py:108 +#: dcim/models/power.py:108 msgid "supply" msgstr "sağlamak" -#: netbox/dcim/models/power.py:114 +#: dcim/models/power.py:114 msgid "phase" msgstr "faz" -#: netbox/dcim/models/power.py:120 +#: dcim/models/power.py:120 msgid "voltage" msgstr "voltaj" -#: netbox/dcim/models/power.py:125 +#: dcim/models/power.py:125 msgid "amperage" msgstr "amper" -#: netbox/dcim/models/power.py:130 +#: dcim/models/power.py:130 msgid "max utilization" msgstr "maksimum kullanım" -#: netbox/dcim/models/power.py:133 +#: dcim/models/power.py:133 msgid "Maximum permissible draw (percentage)" msgstr "İzin verilen maksimum çekiliş (yüzde)" -#: netbox/dcim/models/power.py:136 +#: dcim/models/power.py:136 msgid "available power" msgstr "mevcut güç" -#: netbox/dcim/models/power.py:164 +#: dcim/models/power.py:164 msgid "power feed" msgstr "güç beslemesi" -#: netbox/dcim/models/power.py:165 +#: dcim/models/power.py:165 msgid "power feeds" msgstr "güç beslemeleri" -#: netbox/dcim/models/power.py:179 +#: dcim/models/power.py:179 #, python-brace-format msgid "" "Rack {rack} ({rack_site}) and power panel {powerpanel} ({powerpanel_site}) " @@ -6302,63 +5855,63 @@ msgstr "" "Raf {rack} ({rack_site}) ve güç paneli {powerpanel} ({powerpanel_site}) " "farklı sitelerdedir." -#: netbox/dcim/models/power.py:190 +#: dcim/models/power.py:190 msgid "Voltage cannot be negative for AC supply" msgstr "AC beslemesi için voltaj negatif olamaz" -#: netbox/dcim/models/racks.py:47 +#: dcim/models/racks.py:47 msgid "width" msgstr "genişlik" -#: netbox/dcim/models/racks.py:48 +#: dcim/models/racks.py:48 msgid "Rail-to-rail width" msgstr "Ray-ray genişliği" -#: netbox/dcim/models/racks.py:56 +#: dcim/models/racks.py:56 msgid "Height in rack units" msgstr "Raf ünitelerinde yükseklik" -#: netbox/dcim/models/racks.py:60 +#: dcim/models/racks.py:60 msgid "starting unit" msgstr "başlangıç ünitesi" -#: netbox/dcim/models/racks.py:62 +#: dcim/models/racks.py:62 msgid "Starting unit for rack" msgstr "Raf için başlangıç ünitesi" -#: netbox/dcim/models/racks.py:66 +#: dcim/models/racks.py:66 msgid "descending units" msgstr "azalan birimler" -#: netbox/dcim/models/racks.py:67 +#: dcim/models/racks.py:67 msgid "Units are numbered top-to-bottom" msgstr "Birimler yukarıdan aşağıya numaralandırılmıştır" -#: netbox/dcim/models/racks.py:72 +#: dcim/models/racks.py:72 msgid "outer width" msgstr "dış genişlik" -#: netbox/dcim/models/racks.py:75 +#: dcim/models/racks.py:75 msgid "Outer dimension of rack (width)" msgstr "Rafın dış boyutu (genişlik)" -#: netbox/dcim/models/racks.py:78 +#: dcim/models/racks.py:78 msgid "outer depth" msgstr "dış derinlik" -#: netbox/dcim/models/racks.py:81 +#: dcim/models/racks.py:81 msgid "Outer dimension of rack (depth)" msgstr "Rafın dış boyutu (derinlik)" -#: netbox/dcim/models/racks.py:84 +#: dcim/models/racks.py:84 msgid "outer unit" msgstr "dış ünite" -#: netbox/dcim/models/racks.py:90 +#: dcim/models/racks.py:90 msgid "mounting depth" msgstr "montaj derinliği" -#: netbox/dcim/models/racks.py:94 +#: dcim/models/racks.py:94 msgid "" "Maximum depth of a mounted device, in millimeters. For four-post racks, this" " is the distance between the front and rear rails." @@ -6366,75 +5919,74 @@ msgstr "" "Monte edilmiş bir cihazın milimetre cinsinden maksimum derinliği. Dört " "direkli raflar için bu, ön ve arka raylar arasındaki mesafedir." -#: netbox/dcim/models/racks.py:102 +#: dcim/models/racks.py:102 msgid "max weight" msgstr "maksimum ağırlık" -#: netbox/dcim/models/racks.py:105 +#: dcim/models/racks.py:105 msgid "Maximum load capacity for the rack" msgstr "Raf için maksimum yük kapasitesi" -#: netbox/dcim/models/racks.py:125 netbox/dcim/models/racks.py:252 +#: dcim/models/racks.py:125 dcim/models/racks.py:252 msgid "form factor" msgstr "form faktörü" -#: netbox/dcim/models/racks.py:162 +#: dcim/models/racks.py:162 msgid "rack type" msgstr "raf tipi" -#: netbox/dcim/models/racks.py:163 +#: dcim/models/racks.py:163 msgid "rack types" msgstr "raf türleri" -#: netbox/dcim/models/racks.py:180 netbox/dcim/models/racks.py:379 +#: dcim/models/racks.py:180 dcim/models/racks.py:379 msgid "Must specify a unit when setting an outer width/depth" msgstr "Dış genişlik/derinlik ayarlarken bir birim belirtmelidir" -#: netbox/dcim/models/racks.py:184 netbox/dcim/models/racks.py:383 +#: dcim/models/racks.py:184 dcim/models/racks.py:383 msgid "Must specify a unit when setting a maximum weight" msgstr "Maksimum ağırlık ayarlarken bir birim belirtmelisiniz" -#: netbox/dcim/models/racks.py:230 +#: dcim/models/racks.py:230 msgid "rack role" msgstr "raf rolü" -#: netbox/dcim/models/racks.py:231 +#: dcim/models/racks.py:231 msgid "rack roles" msgstr "raf rolleri" -#: netbox/dcim/models/racks.py:274 +#: dcim/models/racks.py:274 msgid "facility ID" msgstr "tesis kimliği" -#: netbox/dcim/models/racks.py:275 +#: dcim/models/racks.py:275 msgid "Locally-assigned identifier" msgstr "Yerel olarak atanmış tanımlayıcı" -#: netbox/dcim/models/racks.py:308 netbox/ipam/forms/bulk_import.py:201 -#: netbox/ipam/forms/bulk_import.py:266 netbox/ipam/forms/bulk_import.py:301 -#: netbox/ipam/forms/bulk_import.py:459 -#: netbox/virtualization/forms/bulk_import.py:112 +#: dcim/models/racks.py:308 ipam/forms/bulk_import.py:201 +#: ipam/forms/bulk_import.py:266 ipam/forms/bulk_import.py:301 +#: ipam/forms/bulk_import.py:459 virtualization/forms/bulk_import.py:112 msgid "Functional role" msgstr "Fonksiyonel rol" -#: netbox/dcim/models/racks.py:321 +#: dcim/models/racks.py:321 msgid "A unique tag used to identify this rack" msgstr "Bu rafı tanımlamak için kullanılan benzersiz bir etiket" -#: netbox/dcim/models/racks.py:359 +#: dcim/models/racks.py:359 msgid "rack" msgstr "raf" -#: netbox/dcim/models/racks.py:360 +#: dcim/models/racks.py:360 msgid "racks" msgstr "rafları" -#: netbox/dcim/models/racks.py:375 +#: dcim/models/racks.py:375 #, python-brace-format msgid "Assigned location must belong to parent site ({site})." msgstr "Atanan konum üst siteye ait olmalıdır ({site})." -#: netbox/dcim/models/racks.py:393 +#: dcim/models/racks.py:393 #, python-brace-format msgid "" "Rack must be at least {min_height}U tall to house currently installed " @@ -6443,7 +5995,7 @@ msgstr "" "Raf en az olmalıdır {min_height}Şu anda yüklü cihazları barındırmak için " "yeterli." -#: netbox/dcim/models/racks.py:400 +#: dcim/models/racks.py:400 #, python-brace-format msgid "" "Rack unit numbering must begin at {position} or less to house currently " @@ -6452,952 +6004,889 @@ msgstr "" "Raf ünitesi numaralandırması şu adreste başlamalıdır: {position} veya şu " "anda yüklü cihazları barındırmak için daha az." -#: netbox/dcim/models/racks.py:408 +#: dcim/models/racks.py:408 #, python-brace-format msgid "Location must be from the same site, {site}." msgstr "Konum aynı siteden olmalı, {site}." -#: netbox/dcim/models/racks.py:670 +#: dcim/models/racks.py:670 msgid "units" msgstr "birimler" -#: netbox/dcim/models/racks.py:696 +#: dcim/models/racks.py:696 msgid "rack reservation" msgstr "raf rezervasyonu" -#: netbox/dcim/models/racks.py:697 +#: dcim/models/racks.py:697 msgid "rack reservations" msgstr "raf rezervasyonları" -#: netbox/dcim/models/racks.py:714 +#: dcim/models/racks.py:714 #, python-brace-format msgid "Invalid unit(s) for {height}U rack: {unit_list}" msgstr "Geçersiz birim (ler) i {height}U rafı: {unit_list}" -#: netbox/dcim/models/racks.py:727 +#: dcim/models/racks.py:727 #, python-brace-format msgid "The following units have already been reserved: {unit_list}" msgstr "Aşağıdaki birimler zaten rezerve edilmiştir: {unit_list}" -#: netbox/dcim/models/sites.py:49 +#: dcim/models/sites.py:49 msgid "A top-level region with this name already exists." msgstr "Bu ada sahip üst düzey bir bölge zaten var." -#: netbox/dcim/models/sites.py:59 +#: dcim/models/sites.py:59 msgid "A top-level region with this slug already exists." msgstr "Bu kısa adı içeren üst düzey bir bölge zaten var." -#: netbox/dcim/models/sites.py:62 +#: dcim/models/sites.py:62 msgid "region" msgstr "bölge" -#: netbox/dcim/models/sites.py:63 +#: dcim/models/sites.py:63 msgid "regions" msgstr "bölgeler" -#: netbox/dcim/models/sites.py:102 +#: dcim/models/sites.py:102 msgid "A top-level site group with this name already exists." msgstr "Bu ada sahip üst düzey bir site grubu zaten var." -#: netbox/dcim/models/sites.py:112 +#: dcim/models/sites.py:112 msgid "A top-level site group with this slug already exists." msgstr "Bu kısa adı içeren üst düzey bir site grubu zaten var." -#: netbox/dcim/models/sites.py:115 +#: dcim/models/sites.py:115 msgid "site group" msgstr "site grubu" -#: netbox/dcim/models/sites.py:116 +#: dcim/models/sites.py:116 msgid "site groups" msgstr "site grupları" -#: netbox/dcim/models/sites.py:141 +#: dcim/models/sites.py:141 msgid "Full name of the site" msgstr "Sitenin tam adı" -#: netbox/dcim/models/sites.py:181 netbox/dcim/models/sites.py:279 +#: dcim/models/sites.py:181 dcim/models/sites.py:279 msgid "facility" msgstr "tesise" -#: netbox/dcim/models/sites.py:184 netbox/dcim/models/sites.py:282 +#: dcim/models/sites.py:184 dcim/models/sites.py:282 msgid "Local facility ID or description" msgstr "Yerel tesis kimliği veya açıklaması" -#: netbox/dcim/models/sites.py:195 +#: dcim/models/sites.py:195 msgid "physical address" msgstr "fiziksel adres" -#: netbox/dcim/models/sites.py:198 +#: dcim/models/sites.py:198 msgid "Physical location of the building" msgstr "Binanın fiziksel konumu" -#: netbox/dcim/models/sites.py:201 +#: dcim/models/sites.py:201 msgid "shipping address" msgstr "teslimat adresi" -#: netbox/dcim/models/sites.py:204 +#: dcim/models/sites.py:204 msgid "If different from the physical address" msgstr "Fiziksel adresden farklıysa" -#: netbox/dcim/models/sites.py:238 +#: dcim/models/sites.py:238 msgid "site" msgstr "sitesi" -#: netbox/dcim/models/sites.py:239 +#: dcim/models/sites.py:239 msgid "sites" msgstr "siteler" -#: netbox/dcim/models/sites.py:309 +#: dcim/models/sites.py:309 msgid "A location with this name already exists within the specified site." msgstr "Belirtilen sitede bu ada sahip bir konum zaten var." -#: netbox/dcim/models/sites.py:319 +#: dcim/models/sites.py:319 msgid "A location with this slug already exists within the specified site." msgstr "Belirtilen sitede bu kısa ada sahip bir konum zaten var." -#: netbox/dcim/models/sites.py:322 +#: dcim/models/sites.py:322 msgid "location" msgstr "konum" -#: netbox/dcim/models/sites.py:323 +#: dcim/models/sites.py:323 msgid "locations" msgstr "konumlar" -#: netbox/dcim/models/sites.py:337 +#: dcim/models/sites.py:337 #, python-brace-format msgid "Parent location ({parent}) must belong to the same site ({site})." msgstr "Ana konum ({parent}) aynı siteye ({site}) ait olmalıdır." -#: netbox/dcim/tables/cables.py:55 +#: dcim/tables/cables.py:55 msgid "Termination A" msgstr "Fesih A" -#: netbox/dcim/tables/cables.py:60 +#: dcim/tables/cables.py:60 msgid "Termination B" msgstr "Sonlandırma B" -#: netbox/dcim/tables/cables.py:66 netbox/wireless/tables/wirelesslink.py:23 +#: dcim/tables/cables.py:66 wireless/tables/wirelesslink.py:23 msgid "Device A" msgstr "Aygıt A" -#: netbox/dcim/tables/cables.py:72 netbox/wireless/tables/wirelesslink.py:32 +#: dcim/tables/cables.py:72 wireless/tables/wirelesslink.py:32 msgid "Device B" msgstr "Aygıt B" -#: netbox/dcim/tables/cables.py:78 +#: dcim/tables/cables.py:78 msgid "Location A" msgstr "Konum A" -#: netbox/dcim/tables/cables.py:84 +#: dcim/tables/cables.py:84 msgid "Location B" msgstr "Konum B" -#: netbox/dcim/tables/cables.py:90 +#: dcim/tables/cables.py:90 msgid "Rack A" msgstr "Raf A" -#: netbox/dcim/tables/cables.py:96 +#: dcim/tables/cables.py:96 msgid "Rack B" msgstr "Raf B" -#: netbox/dcim/tables/cables.py:102 +#: dcim/tables/cables.py:102 msgid "Site A" msgstr "Site A" -#: netbox/dcim/tables/cables.py:108 +#: dcim/tables/cables.py:108 msgid "Site B" msgstr "Site B" -#: netbox/dcim/tables/connections.py:31 netbox/dcim/tables/connections.py:50 -#: netbox/dcim/tables/connections.py:71 -#: netbox/templates/dcim/inc/connection_endpoints.html:16 +#: dcim/tables/connections.py:31 dcim/tables/connections.py:50 +#: dcim/tables/connections.py:71 +#: templates/dcim/inc/connection_endpoints.html:16 msgid "Reachable" msgstr "Ulaşılabilir" -#: netbox/dcim/tables/devices.py:58 netbox/dcim/tables/devices.py:106 -#: netbox/dcim/tables/racks.py:150 netbox/dcim/tables/sites.py:105 -#: netbox/dcim/tables/sites.py:148 netbox/extras/tables/tables.py:545 -#: netbox/netbox/navigation/menu.py:69 netbox/netbox/navigation/menu.py:73 -#: netbox/netbox/navigation/menu.py:75 -#: netbox/virtualization/forms/model_forms.py:122 -#: netbox/virtualization/tables/clusters.py:83 -#: netbox/virtualization/views.py:206 +#: dcim/tables/devices.py:58 dcim/tables/devices.py:106 +#: dcim/tables/racks.py:150 dcim/tables/sites.py:105 dcim/tables/sites.py:148 +#: extras/tables/tables.py:545 netbox/navigation/menu.py:69 +#: netbox/navigation/menu.py:73 netbox/navigation/menu.py:75 +#: virtualization/forms/model_forms.py:122 +#: virtualization/tables/clusters.py:83 virtualization/views.py:206 msgid "Devices" msgstr "Aygıtlar" -#: netbox/dcim/tables/devices.py:63 netbox/dcim/tables/devices.py:111 -#: netbox/virtualization/tables/clusters.py:88 +#: dcim/tables/devices.py:63 dcim/tables/devices.py:111 +#: virtualization/tables/clusters.py:88 msgid "VMs" msgstr "Sanal Makineler" -#: netbox/dcim/tables/devices.py:100 netbox/dcim/tables/devices.py:216 -#: netbox/extras/forms/model_forms.py:630 -#: netbox/templates/dcim/device.html:112 -#: netbox/templates/dcim/device/render_config.html:11 -#: netbox/templates/dcim/device/render_config.html:14 -#: netbox/templates/dcim/devicerole.html:44 -#: netbox/templates/dcim/platform.html:41 -#: netbox/templates/extras/configtemplate.html:10 -#: netbox/templates/virtualization/virtualmachine.html:48 -#: netbox/templates/virtualization/virtualmachine/render_config.html:11 -#: netbox/templates/virtualization/virtualmachine/render_config.html:14 -#: netbox/virtualization/tables/virtualmachines.py:107 +#: dcim/tables/devices.py:100 dcim/tables/devices.py:216 +#: extras/forms/model_forms.py:630 templates/dcim/device.html:112 +#: templates/dcim/device/render_config.html:11 +#: templates/dcim/device/render_config.html:14 +#: templates/dcim/devicerole.html:44 templates/dcim/platform.html:41 +#: templates/extras/configtemplate.html:10 +#: templates/virtualization/virtualmachine.html:48 +#: templates/virtualization/virtualmachine/render_config.html:11 +#: templates/virtualization/virtualmachine/render_config.html:14 +#: virtualization/tables/virtualmachines.py:107 msgid "Config Template" msgstr "Yapılandırma Şablonu" -#: netbox/dcim/tables/devices.py:150 netbox/templates/dcim/sitegroup.html:26 +#: dcim/tables/devices.py:150 templates/dcim/sitegroup.html:26 msgid "Site Group" msgstr "Site Grubu" -#: netbox/dcim/tables/devices.py:187 netbox/dcim/tables/devices.py:1068 -#: netbox/ipam/forms/bulk_import.py:503 netbox/ipam/forms/model_forms.py:306 -#: netbox/ipam/forms/model_forms.py:315 netbox/ipam/tables/ip.py:356 -#: netbox/ipam/tables/ip.py:423 netbox/ipam/tables/ip.py:446 -#: netbox/templates/ipam/ipaddress.html:11 -#: netbox/virtualization/tables/virtualmachines.py:95 +#: dcim/tables/devices.py:187 dcim/tables/devices.py:1068 +#: ipam/forms/bulk_import.py:503 ipam/forms/model_forms.py:306 +#: ipam/forms/model_forms.py:315 ipam/tables/ip.py:356 ipam/tables/ip.py:423 +#: ipam/tables/ip.py:446 templates/ipam/ipaddress.html:11 +#: virtualization/tables/virtualmachines.py:95 msgid "IP Address" msgstr "IP Adresi" -#: netbox/dcim/tables/devices.py:191 netbox/dcim/tables/devices.py:1072 -#: netbox/virtualization/tables/virtualmachines.py:86 +#: dcim/tables/devices.py:191 dcim/tables/devices.py:1072 +#: virtualization/tables/virtualmachines.py:86 msgid "IPv4 Address" msgstr "IPv4 Adresi" -#: netbox/dcim/tables/devices.py:195 netbox/dcim/tables/devices.py:1076 -#: netbox/virtualization/tables/virtualmachines.py:90 +#: dcim/tables/devices.py:195 dcim/tables/devices.py:1076 +#: virtualization/tables/virtualmachines.py:90 msgid "IPv6 Address" msgstr "IPv6 Adresi" -#: netbox/dcim/tables/devices.py:210 +#: dcim/tables/devices.py:210 msgid "VC Position" msgstr "VC Pozisyonu" -#: netbox/dcim/tables/devices.py:213 +#: dcim/tables/devices.py:213 msgid "VC Priority" msgstr "VC Önceliği" -#: netbox/dcim/tables/devices.py:220 netbox/templates/dcim/device_edit.html:38 -#: netbox/templates/dcim/devicebay_populate.html:16 +#: dcim/tables/devices.py:220 templates/dcim/device_edit.html:38 +#: templates/dcim/devicebay_populate.html:16 msgid "Parent Device" msgstr "Ebeveyn Aygıtı" -#: netbox/dcim/tables/devices.py:225 +#: dcim/tables/devices.py:225 msgid "Position (Device Bay)" msgstr "Konum (Aygıt Yuvası)" -#: netbox/dcim/tables/devices.py:234 +#: dcim/tables/devices.py:234 msgid "Console ports" msgstr "Konsol bağlantı noktaları" -#: netbox/dcim/tables/devices.py:237 +#: dcim/tables/devices.py:237 msgid "Console server ports" msgstr "Konsol sunucusu bağlantı noktaları" -#: netbox/dcim/tables/devices.py:240 +#: dcim/tables/devices.py:240 msgid "Power ports" msgstr "Güç bağlantı noktaları" -#: netbox/dcim/tables/devices.py:243 +#: dcim/tables/devices.py:243 msgid "Power outlets" msgstr "Elektrik prizleri" -#: netbox/dcim/tables/devices.py:246 netbox/dcim/tables/devices.py:1081 -#: netbox/dcim/tables/devicetypes.py:128 netbox/dcim/views.py:1042 -#: netbox/dcim/views.py:1281 netbox/dcim/views.py:1977 -#: netbox/netbox/navigation/menu.py:94 netbox/netbox/navigation/menu.py:250 -#: netbox/templates/dcim/device/base.html:37 -#: netbox/templates/dcim/device_list.html:43 -#: netbox/templates/dcim/devicetype/base.html:34 -#: netbox/templates/dcim/module.html:34 -#: netbox/templates/dcim/moduletype/base.html:34 -#: netbox/templates/dcim/virtualdevicecontext.html:61 -#: netbox/templates/dcim/virtualdevicecontext.html:81 -#: netbox/templates/virtualization/virtualmachine/base.html:27 -#: netbox/templates/virtualization/virtualmachine_list.html:14 -#: netbox/virtualization/tables/virtualmachines.py:101 -#: netbox/virtualization/views.py:366 netbox/wireless/tables/wirelesslan.py:55 +#: dcim/tables/devices.py:246 dcim/tables/devices.py:1081 +#: dcim/tables/devicetypes.py:128 dcim/views.py:1042 dcim/views.py:1281 +#: dcim/views.py:1977 netbox/navigation/menu.py:94 +#: netbox/navigation/menu.py:250 templates/dcim/device/base.html:37 +#: templates/dcim/device_list.html:43 templates/dcim/devicetype/base.html:34 +#: templates/dcim/inc/moduletype_buttons.html:25 templates/dcim/module.html:34 +#: templates/dcim/virtualdevicecontext.html:61 +#: templates/dcim/virtualdevicecontext.html:81 +#: templates/virtualization/virtualmachine/base.html:27 +#: templates/virtualization/virtualmachine_list.html:14 +#: virtualization/tables/virtualmachines.py:101 virtualization/views.py:366 +#: wireless/tables/wirelesslan.py:55 msgid "Interfaces" msgstr "Arayüzler" -#: netbox/dcim/tables/devices.py:249 +#: dcim/tables/devices.py:249 msgid "Front ports" msgstr "Ön bağlantı noktaları" -#: netbox/dcim/tables/devices.py:255 +#: dcim/tables/devices.py:255 msgid "Device bays" msgstr "Cihaz yuvaları" -#: netbox/dcim/tables/devices.py:258 +#: dcim/tables/devices.py:258 msgid "Module bays" msgstr "Modül bölmeleri" -#: netbox/dcim/tables/devices.py:261 +#: dcim/tables/devices.py:261 msgid "Inventory items" msgstr "Envanter kalemleri" -#: netbox/dcim/tables/devices.py:305 netbox/dcim/tables/modules.py:56 -#: netbox/templates/dcim/modulebay.html:17 +#: dcim/tables/devices.py:305 dcim/tables/modules.py:56 +#: templates/dcim/modulebay.html:17 msgid "Module Bay" msgstr "Modül Yuvası" -#: netbox/dcim/tables/devices.py:318 netbox/dcim/tables/devicetypes.py:47 -#: netbox/dcim/tables/devicetypes.py:143 netbox/dcim/views.py:1117 -#: netbox/dcim/views.py:2075 netbox/netbox/navigation/menu.py:103 -#: netbox/templates/dcim/device/base.html:52 -#: netbox/templates/dcim/device_list.html:71 -#: netbox/templates/dcim/devicetype/base.html:49 -#: netbox/templates/dcim/inc/panels/inventory_items.html:6 -#: netbox/templates/dcim/inventoryitemrole.html:32 +#: dcim/tables/devices.py:318 dcim/tables/devicetypes.py:47 +#: dcim/tables/devicetypes.py:143 dcim/views.py:1117 dcim/views.py:2075 +#: netbox/navigation/menu.py:103 templates/dcim/device/base.html:52 +#: templates/dcim/device_list.html:71 templates/dcim/devicetype/base.html:49 +#: templates/dcim/inc/panels/inventory_items.html:6 +#: templates/dcim/inventoryitemrole.html:32 msgid "Inventory Items" msgstr "Envanter Öğeleri" -#: netbox/dcim/tables/devices.py:333 +#: dcim/tables/devices.py:333 msgid "Cable Color" msgstr "Kablo Rengi" -#: netbox/dcim/tables/devices.py:339 +#: dcim/tables/devices.py:339 msgid "Link Peers" msgstr "Meslektaşları Bağla" -#: netbox/dcim/tables/devices.py:342 +#: dcim/tables/devices.py:342 msgid "Mark Connected" msgstr "Bağlı İşaretle" -#: netbox/dcim/tables/devices.py:461 +#: dcim/tables/devices.py:461 msgid "Maximum draw (W)" msgstr "Maksimum çekim (W)" -#: netbox/dcim/tables/devices.py:464 +#: dcim/tables/devices.py:464 msgid "Allocated draw (W)" msgstr "Tahsis edilen çekiliş (W)" -#: netbox/dcim/tables/devices.py:558 netbox/ipam/forms/model_forms.py:701 -#: netbox/ipam/tables/fhrp.py:28 netbox/ipam/views.py:596 -#: netbox/ipam/views.py:696 netbox/netbox/navigation/menu.py:158 -#: netbox/netbox/navigation/menu.py:160 -#: netbox/templates/dcim/interface.html:339 -#: netbox/templates/ipam/ipaddress_bulk_add.html:15 -#: netbox/templates/ipam/service.html:40 -#: netbox/templates/virtualization/vminterface.html:85 -#: netbox/vpn/tables/tunnels.py:98 +#: dcim/tables/devices.py:558 ipam/forms/model_forms.py:701 +#: ipam/tables/fhrp.py:28 ipam/views.py:596 ipam/views.py:696 +#: netbox/navigation/menu.py:158 netbox/navigation/menu.py:160 +#: templates/dcim/interface.html:339 templates/ipam/ipaddress_bulk_add.html:15 +#: templates/ipam/service.html:40 templates/virtualization/vminterface.html:85 +#: vpn/tables/tunnels.py:98 msgid "IP Addresses" msgstr "IP Adresleri" -#: netbox/dcim/tables/devices.py:564 netbox/netbox/navigation/menu.py:202 -#: netbox/templates/ipam/inc/panels/fhrp_groups.html:6 +#: dcim/tables/devices.py:564 netbox/navigation/menu.py:202 +#: templates/ipam/inc/panels/fhrp_groups.html:6 msgid "FHRP Groups" msgstr "FHRP Grupları" -#: netbox/dcim/tables/devices.py:576 netbox/templates/dcim/interface.html:89 -#: netbox/templates/virtualization/vminterface.html:67 -#: netbox/templates/vpn/tunnel.html:18 -#: netbox/templates/vpn/tunneltermination.html:13 -#: netbox/vpn/forms/bulk_edit.py:76 netbox/vpn/forms/bulk_import.py:76 -#: netbox/vpn/forms/filtersets.py:42 netbox/vpn/forms/filtersets.py:82 -#: netbox/vpn/forms/model_forms.py:60 netbox/vpn/forms/model_forms.py:145 -#: netbox/vpn/tables/tunnels.py:78 +#: dcim/tables/devices.py:576 templates/dcim/interface.html:89 +#: templates/virtualization/vminterface.html:67 templates/vpn/tunnel.html:18 +#: templates/vpn/tunneltermination.html:13 vpn/forms/bulk_edit.py:76 +#: vpn/forms/bulk_import.py:76 vpn/forms/filtersets.py:42 +#: vpn/forms/filtersets.py:82 vpn/forms/model_forms.py:60 +#: vpn/forms/model_forms.py:145 vpn/tables/tunnels.py:78 msgid "Tunnel" msgstr "Tünel" -#: netbox/dcim/tables/devices.py:604 netbox/dcim/tables/devicetypes.py:227 -#: netbox/templates/dcim/interface.html:65 +#: dcim/tables/devices.py:604 dcim/tables/devicetypes.py:227 +#: templates/dcim/interface.html:65 msgid "Management Only" msgstr "Yalnızca Yönetim" -#: netbox/dcim/tables/devices.py:623 +#: dcim/tables/devices.py:623 msgid "VDCs" msgstr "VDC'ler" -#: netbox/dcim/tables/devices.py:873 netbox/templates/dcim/modulebay.html:53 +#: dcim/tables/devices.py:873 templates/dcim/modulebay.html:53 msgid "Installed Module" msgstr "Yüklü Modül" -#: netbox/dcim/tables/devices.py:876 +#: dcim/tables/devices.py:876 msgid "Module Serial" msgstr "Modül Seri" -#: netbox/dcim/tables/devices.py:880 +#: dcim/tables/devices.py:880 msgid "Module Asset Tag" msgstr "Modül Varlık Etiketi" -#: netbox/dcim/tables/devices.py:889 +#: dcim/tables/devices.py:889 msgid "Module Status" msgstr "Modül Durumu" -#: netbox/dcim/tables/devices.py:944 netbox/dcim/tables/devicetypes.py:312 -#: netbox/templates/dcim/inventoryitem.html:40 +#: dcim/tables/devices.py:944 dcim/tables/devicetypes.py:312 +#: templates/dcim/inventoryitem.html:40 msgid "Component" msgstr "Bileşen" -#: netbox/dcim/tables/devices.py:1000 +#: dcim/tables/devices.py:1000 msgid "Items" msgstr "Öğeler" -#: netbox/dcim/tables/devicetypes.py:37 netbox/netbox/navigation/menu.py:84 -#: netbox/netbox/navigation/menu.py:86 +#: dcim/tables/devicetypes.py:37 netbox/navigation/menu.py:84 +#: netbox/navigation/menu.py:86 msgid "Device Types" msgstr "Cihaz Türleri" -#: netbox/dcim/tables/devicetypes.py:42 netbox/netbox/navigation/menu.py:87 +#: dcim/tables/devicetypes.py:42 netbox/navigation/menu.py:87 msgid "Module Types" msgstr "Modül Çeşitleri" -#: netbox/dcim/tables/devicetypes.py:52 netbox/extras/forms/filtersets.py:371 -#: netbox/extras/forms/model_forms.py:537 netbox/extras/tables/tables.py:540 -#: netbox/netbox/navigation/menu.py:78 +#: dcim/tables/devicetypes.py:52 extras/forms/filtersets.py:371 +#: extras/forms/model_forms.py:537 extras/tables/tables.py:540 +#: netbox/navigation/menu.py:78 msgid "Platforms" msgstr "Platformlar" -#: netbox/dcim/tables/devicetypes.py:84 -#: netbox/templates/dcim/devicetype.html:29 +#: dcim/tables/devicetypes.py:84 templates/dcim/devicetype.html:29 msgid "Default Platform" msgstr "Varsayılan Platform" -#: netbox/dcim/tables/devicetypes.py:88 -#: netbox/templates/dcim/devicetype.html:45 +#: dcim/tables/devicetypes.py:88 templates/dcim/devicetype.html:45 msgid "Full Depth" msgstr "Tam Derinlik" -#: netbox/dcim/tables/devicetypes.py:98 +#: dcim/tables/devicetypes.py:98 msgid "U Height" msgstr "U Yüksekliği" -#: netbox/dcim/tables/devicetypes.py:113 netbox/dcim/tables/modules.py:26 -#: netbox/dcim/tables/racks.py:89 +#: dcim/tables/devicetypes.py:113 dcim/tables/modules.py:26 +#: dcim/tables/racks.py:89 msgid "Instances" msgstr "Örnekler" -#: netbox/dcim/tables/devicetypes.py:116 netbox/dcim/views.py:982 -#: netbox/dcim/views.py:1221 netbox/dcim/views.py:1913 -#: netbox/netbox/navigation/menu.py:97 -#: netbox/templates/dcim/device/base.html:25 -#: netbox/templates/dcim/device_list.html:15 -#: netbox/templates/dcim/devicetype/base.html:22 -#: netbox/templates/dcim/module.html:22 -#: netbox/templates/dcim/moduletype/base.html:22 +#: dcim/tables/devicetypes.py:116 dcim/views.py:982 dcim/views.py:1221 +#: dcim/views.py:1913 netbox/navigation/menu.py:97 +#: templates/dcim/device/base.html:25 templates/dcim/device_list.html:15 +#: templates/dcim/devicetype/base.html:22 +#: templates/dcim/inc/moduletype_buttons.html:13 templates/dcim/module.html:22 msgid "Console Ports" msgstr "Konsol Bağlantı Noktaları" -#: netbox/dcim/tables/devicetypes.py:119 netbox/dcim/views.py:997 -#: netbox/dcim/views.py:1236 netbox/dcim/views.py:1929 -#: netbox/netbox/navigation/menu.py:98 -#: netbox/templates/dcim/device/base.html:28 -#: netbox/templates/dcim/device_list.html:22 -#: netbox/templates/dcim/devicetype/base.html:25 -#: netbox/templates/dcim/module.html:25 -#: netbox/templates/dcim/moduletype/base.html:25 +#: dcim/tables/devicetypes.py:119 dcim/views.py:997 dcim/views.py:1236 +#: dcim/views.py:1929 netbox/navigation/menu.py:98 +#: templates/dcim/device/base.html:28 templates/dcim/device_list.html:22 +#: templates/dcim/devicetype/base.html:25 +#: templates/dcim/inc/moduletype_buttons.html:16 templates/dcim/module.html:25 msgid "Console Server Ports" msgstr "Konsol Sunucusu Bağlantı Noktaları" -#: netbox/dcim/tables/devicetypes.py:122 netbox/dcim/views.py:1012 -#: netbox/dcim/views.py:1251 netbox/dcim/views.py:1945 -#: netbox/netbox/navigation/menu.py:99 -#: netbox/templates/dcim/device/base.html:31 -#: netbox/templates/dcim/device_list.html:29 -#: netbox/templates/dcim/devicetype/base.html:28 -#: netbox/templates/dcim/module.html:28 -#: netbox/templates/dcim/moduletype/base.html:28 +#: dcim/tables/devicetypes.py:122 dcim/views.py:1012 dcim/views.py:1251 +#: dcim/views.py:1945 netbox/navigation/menu.py:99 +#: templates/dcim/device/base.html:31 templates/dcim/device_list.html:29 +#: templates/dcim/devicetype/base.html:28 +#: templates/dcim/inc/moduletype_buttons.html:19 templates/dcim/module.html:28 msgid "Power Ports" msgstr "Güç Bağlantı Noktaları" -#: netbox/dcim/tables/devicetypes.py:125 netbox/dcim/views.py:1027 -#: netbox/dcim/views.py:1266 netbox/dcim/views.py:1961 -#: netbox/netbox/navigation/menu.py:100 -#: netbox/templates/dcim/device/base.html:34 -#: netbox/templates/dcim/device_list.html:36 -#: netbox/templates/dcim/devicetype/base.html:31 -#: netbox/templates/dcim/module.html:31 -#: netbox/templates/dcim/moduletype/base.html:31 +#: dcim/tables/devicetypes.py:125 dcim/views.py:1027 dcim/views.py:1266 +#: dcim/views.py:1961 netbox/navigation/menu.py:100 +#: templates/dcim/device/base.html:34 templates/dcim/device_list.html:36 +#: templates/dcim/devicetype/base.html:31 +#: templates/dcim/inc/moduletype_buttons.html:22 templates/dcim/module.html:31 msgid "Power Outlets" msgstr "Elektrik Prizleri" -#: netbox/dcim/tables/devicetypes.py:131 netbox/dcim/views.py:1057 -#: netbox/dcim/views.py:1296 netbox/dcim/views.py:1999 -#: netbox/netbox/navigation/menu.py:95 -#: netbox/templates/dcim/device/base.html:40 -#: netbox/templates/dcim/devicetype/base.html:37 -#: netbox/templates/dcim/module.html:37 -#: netbox/templates/dcim/moduletype/base.html:37 +#: dcim/tables/devicetypes.py:131 dcim/views.py:1057 dcim/views.py:1296 +#: dcim/views.py:1999 netbox/navigation/menu.py:95 +#: templates/dcim/device/base.html:40 templates/dcim/devicetype/base.html:37 +#: templates/dcim/inc/moduletype_buttons.html:28 templates/dcim/module.html:37 msgid "Front Ports" msgstr "Ön Bağlantı Noktaları" -#: netbox/dcim/tables/devicetypes.py:134 netbox/dcim/views.py:1072 -#: netbox/dcim/views.py:1311 netbox/dcim/views.py:2015 -#: netbox/netbox/navigation/menu.py:96 -#: netbox/templates/dcim/device/base.html:43 -#: netbox/templates/dcim/device_list.html:50 -#: netbox/templates/dcim/devicetype/base.html:40 -#: netbox/templates/dcim/module.html:40 -#: netbox/templates/dcim/moduletype/base.html:40 +#: dcim/tables/devicetypes.py:134 dcim/views.py:1072 dcim/views.py:1311 +#: dcim/views.py:2015 netbox/navigation/menu.py:96 +#: templates/dcim/device/base.html:43 templates/dcim/device_list.html:50 +#: templates/dcim/devicetype/base.html:40 +#: templates/dcim/inc/moduletype_buttons.html:31 templates/dcim/module.html:40 msgid "Rear Ports" msgstr "Arka Bağlantı Noktaları" -#: netbox/dcim/tables/devicetypes.py:137 netbox/dcim/views.py:1102 -#: netbox/dcim/views.py:2055 netbox/netbox/navigation/menu.py:102 -#: netbox/templates/dcim/device/base.html:49 -#: netbox/templates/dcim/device_list.html:57 -#: netbox/templates/dcim/devicetype/base.html:46 +#: dcim/tables/devicetypes.py:137 dcim/views.py:1102 dcim/views.py:2055 +#: netbox/navigation/menu.py:102 templates/dcim/device/base.html:49 +#: templates/dcim/device_list.html:57 templates/dcim/devicetype/base.html:46 msgid "Device Bays" msgstr "Cihaz Yuvaları" -#: netbox/dcim/tables/devicetypes.py:140 netbox/dcim/views.py:1087 -#: netbox/dcim/views.py:1326 netbox/dcim/views.py:2035 -#: netbox/netbox/navigation/menu.py:101 -#: netbox/templates/dcim/device/base.html:46 -#: netbox/templates/dcim/device_list.html:64 -#: netbox/templates/dcim/devicetype/base.html:43 -#: netbox/templates/dcim/module.html:43 -#: netbox/templates/dcim/moduletype/base.html:43 +#: dcim/tables/devicetypes.py:140 dcim/views.py:1087 dcim/views.py:1326 +#: dcim/views.py:2035 netbox/navigation/menu.py:101 +#: templates/dcim/device/base.html:46 templates/dcim/device_list.html:64 +#: templates/dcim/devicetype/base.html:43 +#: templates/dcim/inc/moduletype_buttons.html:34 templates/dcim/module.html:43 msgid "Module Bays" msgstr "Modül Bölmeleri" -#: netbox/dcim/tables/power.py:36 netbox/netbox/navigation/menu.py:297 -#: netbox/templates/dcim/powerpanel.html:51 +#: dcim/tables/power.py:36 netbox/navigation/menu.py:297 +#: templates/dcim/powerpanel.html:51 msgid "Power Feeds" msgstr "Güç Beslemeleri" -#: netbox/dcim/tables/power.py:80 netbox/templates/dcim/powerfeed.html:99 +#: dcim/tables/power.py:80 templates/dcim/powerfeed.html:99 msgid "Max Utilization" msgstr "Maksimum Kullanım" -#: netbox/dcim/tables/power.py:84 +#: dcim/tables/power.py:84 msgid "Available Power (VA)" msgstr "Kullanılabilir Güç (VA)" -#: netbox/dcim/tables/racks.py:30 netbox/dcim/tables/sites.py:143 -#: netbox/netbox/navigation/menu.py:43 netbox/netbox/navigation/menu.py:47 -#: netbox/netbox/navigation/menu.py:49 +#: dcim/tables/racks.py:30 dcim/tables/sites.py:143 +#: netbox/navigation/menu.py:43 netbox/navigation/menu.py:47 +#: netbox/navigation/menu.py:49 msgid "Racks" msgstr "Raflar" -#: netbox/dcim/tables/racks.py:63 netbox/dcim/tables/racks.py:142 -#: netbox/templates/dcim/device.html:318 -#: netbox/templates/dcim/inc/panels/racktype_dimensions.html:14 +#: dcim/tables/racks.py:63 dcim/tables/racks.py:142 +#: templates/dcim/device.html:318 +#: templates/dcim/inc/panels/racktype_dimensions.html:14 msgid "Height" msgstr "Yükseklik" -#: netbox/dcim/tables/racks.py:67 netbox/dcim/tables/racks.py:165 -#: netbox/templates/dcim/inc/panels/racktype_dimensions.html:18 +#: dcim/tables/racks.py:67 dcim/tables/racks.py:165 +#: templates/dcim/inc/panels/racktype_dimensions.html:18 msgid "Outer Width" msgstr "Dış genişlik" -#: netbox/dcim/tables/racks.py:71 netbox/dcim/tables/racks.py:169 -#: netbox/templates/dcim/inc/panels/racktype_dimensions.html:28 +#: dcim/tables/racks.py:71 dcim/tables/racks.py:169 +#: templates/dcim/inc/panels/racktype_dimensions.html:28 msgid "Outer Depth" msgstr "Dış Derinlik" -#: netbox/dcim/tables/racks.py:79 netbox/dcim/tables/racks.py:177 +#: dcim/tables/racks.py:79 dcim/tables/racks.py:177 msgid "Max Weight" msgstr "Maksimum Ağırlık" -#: netbox/dcim/tables/racks.py:154 +#: dcim/tables/racks.py:154 msgid "Space" msgstr "Uzay" -#: netbox/dcim/tables/sites.py:30 netbox/dcim/tables/sites.py:57 -#: netbox/extras/forms/filtersets.py:351 -#: netbox/extras/forms/model_forms.py:517 netbox/ipam/forms/bulk_edit.py:130 -#: netbox/ipam/forms/model_forms.py:153 netbox/ipam/tables/asn.py:66 -#: netbox/netbox/navigation/menu.py:15 netbox/netbox/navigation/menu.py:17 +#: dcim/tables/sites.py:30 dcim/tables/sites.py:57 +#: extras/forms/filtersets.py:351 extras/forms/model_forms.py:517 +#: ipam/forms/bulk_edit.py:131 ipam/forms/model_forms.py:153 +#: ipam/tables/asn.py:66 netbox/navigation/menu.py:15 +#: netbox/navigation/menu.py:17 msgid "Sites" msgstr "Siteler" -#: netbox/dcim/tests/test_api.py:47 +#: dcim/tests/test_api.py:47 msgid "Test case must set peer_termination_type" msgstr "Test senaryosu peer_termination_type ayarlamalıdır" -#: netbox/dcim/views.py:140 +#: dcim/views.py:140 #, python-brace-format msgid "Disconnected {count} {type}" msgstr "Bağlantısı kesildi {count} {type}" -#: netbox/dcim/views.py:740 netbox/netbox/navigation/menu.py:51 +#: dcim/views.py:740 netbox/navigation/menu.py:51 msgid "Reservations" msgstr "Rezervasyon" -#: netbox/dcim/views.py:759 netbox/templates/dcim/location.html:90 -#: netbox/templates/dcim/site.html:140 +#: dcim/views.py:759 templates/dcim/location.html:90 +#: templates/dcim/site.html:140 msgid "Non-Racked Devices" msgstr "Raf Olmayan Cihazlar" -#: netbox/dcim/views.py:2088 netbox/extras/forms/model_forms.py:577 -#: netbox/templates/extras/configcontext.html:10 -#: netbox/virtualization/forms/model_forms.py:225 -#: netbox/virtualization/views.py:407 +#: dcim/views.py:2088 extras/forms/model_forms.py:577 +#: templates/extras/configcontext.html:10 +#: virtualization/forms/model_forms.py:225 virtualization/views.py:407 msgid "Config Context" msgstr "Yapılandırma Bağlamı" -#: netbox/dcim/views.py:2098 netbox/virtualization/views.py:417 +#: dcim/views.py:2098 virtualization/views.py:417 msgid "Render Config" msgstr "Oluştur Yapılandırması" -#: netbox/dcim/views.py:2131 netbox/virtualization/views.py:450 +#: dcim/views.py:2131 virtualization/views.py:450 #, python-brace-format msgid "An error occurred while rendering the template: {error}" msgstr "Şablon oluşturulurken bir hata oluştu: {error}" -#: netbox/dcim/views.py:2149 netbox/extras/tables/tables.py:550 -#: netbox/netbox/navigation/menu.py:247 netbox/netbox/navigation/menu.py:249 -#: netbox/virtualization/views.py:180 +#: dcim/views.py:2149 extras/tables/tables.py:550 +#: netbox/navigation/menu.py:247 netbox/navigation/menu.py:249 +#: virtualization/views.py:180 msgid "Virtual Machines" msgstr "Sanal Makineler" -#: netbox/dcim/views.py:2897 +#: dcim/views.py:2897 #, python-brace-format msgid "Installed device {device} in bay {device_bay}." msgstr "Yüklü cihaz {device} körfezde {device_bay}." -#: netbox/dcim/views.py:2938 +#: dcim/views.py:2938 #, python-brace-format msgid "Removed device {device} from bay {device_bay}." msgstr "Kaldırılan cihaz {device} körfezden {device_bay}." -#: netbox/dcim/views.py:3044 netbox/ipam/tables/ip.py:234 +#: dcim/views.py:3044 ipam/tables/ip.py:234 msgid "Children" msgstr "Çocuklar" -#: netbox/dcim/views.py:3510 +#: dcim/views.py:3510 #, python-brace-format msgid "Added member {device}" msgstr "Eklenen üye {device}" -#: netbox/dcim/views.py:3557 +#: dcim/views.py:3557 #, python-brace-format msgid "Unable to remove master device {device} from the virtual chassis." msgstr "Ana aygıt kaldırılamıyor {device} sanal kasadan." -#: netbox/dcim/views.py:3570 +#: dcim/views.py:3570 #, python-brace-format msgid "Removed {device} from virtual chassis {chassis}" msgstr "Kaldırıldı {device} sanal kasadan {chassis}" -#: netbox/extras/api/customfields.py:89 +#: extras/api/customfields.py:89 #, python-brace-format msgid "Unknown related object(s): {name}" msgstr "Bilinmeyen ilgili nesne (ler): {name}" -#: netbox/extras/api/serializers_/customfields.py:73 +#: extras/api/serializers_/customfields.py:73 msgid "Changing the type of custom fields is not supported." msgstr "Özel alanların türünü değiştirmek desteklenmez." -#: netbox/extras/api/serializers_/scripts.py:70 -#: netbox/extras/api/serializers_/scripts.py:75 +#: extras/api/serializers_/scripts.py:70 extras/api/serializers_/scripts.py:75 msgid "Scheduling is not enabled for this script." msgstr "Bu komut dosyası için zamanlama etkin değil." -#: netbox/extras/choices.py:30 netbox/extras/forms/misc.py:14 +#: extras/choices.py:30 extras/forms/misc.py:14 msgid "Text" msgstr "Metin" -#: netbox/extras/choices.py:31 +#: extras/choices.py:31 msgid "Text (long)" msgstr "Metin (uzun)" -#: netbox/extras/choices.py:32 +#: extras/choices.py:32 msgid "Integer" msgstr "Tamsayı" -#: netbox/extras/choices.py:33 +#: extras/choices.py:33 msgid "Decimal" msgstr "Ondalık" -#: netbox/extras/choices.py:34 +#: extras/choices.py:34 msgid "Boolean (true/false)" msgstr "Boolean (doğru/yanlış)" -#: netbox/extras/choices.py:35 +#: extras/choices.py:35 msgid "Date" msgstr "TARİH" -#: netbox/extras/choices.py:36 +#: extras/choices.py:36 msgid "Date & time" msgstr "Tarih ve saat" -#: netbox/extras/choices.py:38 +#: extras/choices.py:38 msgid "JSON" msgstr "JSON" -#: netbox/extras/choices.py:39 +#: extras/choices.py:39 msgid "Selection" msgstr "Seçim" -#: netbox/extras/choices.py:40 +#: extras/choices.py:40 msgid "Multiple selection" msgstr "Çoklu seçim" -#: netbox/extras/choices.py:42 +#: extras/choices.py:42 msgid "Multiple objects" msgstr "Birden çok nesne" -#: netbox/extras/choices.py:53 netbox/netbox/preferences.py:21 -#: netbox/templates/extras/customfield.html:78 netbox/vpn/choices.py:20 -#: netbox/wireless/choices.py:27 +#: extras/choices.py:53 netbox/preferences.py:21 +#: templates/extras/customfield.html:78 vpn/choices.py:20 +#: wireless/choices.py:27 msgid "Disabled" msgstr "Engelli" -#: netbox/extras/choices.py:54 +#: extras/choices.py:54 msgid "Loose" msgstr "Gevşek" -#: netbox/extras/choices.py:55 +#: extras/choices.py:55 msgid "Exact" msgstr "Kesin" -#: netbox/extras/choices.py:66 +#: extras/choices.py:66 msgid "Always" msgstr "Her zaman" -#: netbox/extras/choices.py:67 +#: extras/choices.py:67 msgid "If set" msgstr "Ayarlanmışsa" -#: netbox/extras/choices.py:68 netbox/extras/choices.py:81 +#: extras/choices.py:68 extras/choices.py:81 msgid "Hidden" msgstr "Gizli" -#: netbox/extras/choices.py:79 +#: extras/choices.py:79 msgid "Yes" msgstr "Evet" -#: netbox/extras/choices.py:80 +#: extras/choices.py:80 msgid "No" msgstr "Hayır" -#: netbox/extras/choices.py:108 netbox/templates/tenancy/contact.html:57 -#: netbox/tenancy/forms/bulk_edit.py:118 -#: netbox/wireless/forms/model_forms.py:168 +#: extras/choices.py:108 templates/tenancy/contact.html:57 +#: tenancy/forms/bulk_edit.py:118 wireless/forms/model_forms.py:168 msgid "Link" msgstr "Bağlantı" -#: netbox/extras/choices.py:124 +#: extras/choices.py:124 msgid "Newest" msgstr "En yeni" -#: netbox/extras/choices.py:125 +#: extras/choices.py:125 msgid "Oldest" msgstr "En eski" -#: netbox/extras/choices.py:126 +#: extras/choices.py:126 msgid "Alphabetical (A-Z)" msgstr "Alfabetik (A-Z)" -#: netbox/extras/choices.py:127 +#: extras/choices.py:127 msgid "Alphabetical (Z-A)" msgstr "Alfabetik (Z-A)" -#: netbox/extras/choices.py:144 netbox/extras/choices.py:167 +#: extras/choices.py:144 extras/choices.py:167 msgid "Info" msgstr "Bilgi" -#: netbox/extras/choices.py:145 netbox/extras/choices.py:168 +#: extras/choices.py:145 extras/choices.py:168 msgid "Success" msgstr "Başarı" -#: netbox/extras/choices.py:146 netbox/extras/choices.py:169 +#: extras/choices.py:146 extras/choices.py:169 msgid "Warning" msgstr "Uyarı" -#: netbox/extras/choices.py:147 +#: extras/choices.py:147 msgid "Danger" msgstr "Tehlike" -#: netbox/extras/choices.py:165 +#: extras/choices.py:165 msgid "Debug" msgstr "Hata ayıklama" -#: netbox/extras/choices.py:166 netbox/netbox/choices.py:101 +#: extras/choices.py:166 netbox/choices.py:101 msgid "Default" msgstr "Varsayılan" -#: netbox/extras/choices.py:170 +#: extras/choices.py:170 msgid "Failure" msgstr "Başarısızlık" -#: netbox/extras/choices.py:186 +#: extras/choices.py:186 msgid "Hourly" msgstr "Saatlik" -#: netbox/extras/choices.py:187 +#: extras/choices.py:187 msgid "12 hours" msgstr "12 saat" -#: netbox/extras/choices.py:188 +#: extras/choices.py:188 msgid "Daily" msgstr "Günlük" -#: netbox/extras/choices.py:189 +#: extras/choices.py:189 msgid "Weekly" msgstr "Haftalık" -#: netbox/extras/choices.py:190 +#: extras/choices.py:190 msgid "30 days" msgstr "30 gün" -#: netbox/extras/choices.py:226 -#: netbox/templates/dcim/virtualchassis_edit.html:107 -#: netbox/templates/generic/bulk_add_component.html:68 -#: netbox/templates/generic/object_edit.html:47 -#: netbox/templates/generic/object_edit.html:80 -#: netbox/templates/ipam/inc/ipaddress_edit_header.html:7 +#: extras/choices.py:226 templates/dcim/virtualchassis_edit.html:107 +#: templates/generic/bulk_add_component.html:68 +#: templates/generic/object_edit.html:47 templates/generic/object_edit.html:80 +#: templates/ipam/inc/ipaddress_edit_header.html:7 msgid "Create" msgstr "Oluştur" -#: netbox/extras/choices.py:227 +#: extras/choices.py:227 msgid "Update" msgstr "Güncelleme" -#: netbox/extras/choices.py:228 -#: netbox/templates/circuits/inc/circuit_termination.html:23 -#: netbox/templates/dcim/inc/panels/inventory_items.html:37 -#: netbox/templates/dcim/moduletype/component_templates.html:23 -#: netbox/templates/dcim/powerpanel.html:66 -#: netbox/templates/extras/script_list.html:35 -#: netbox/templates/generic/bulk_delete.html:20 -#: netbox/templates/generic/bulk_delete.html:66 -#: netbox/templates/generic/object_delete.html:19 -#: netbox/templates/htmx/delete_form.html:57 -#: netbox/templates/ipam/inc/panels/fhrp_groups.html:48 -#: netbox/templates/users/objectpermission.html:46 -#: netbox/utilities/templates/buttons/delete.html:11 +#: extras/choices.py:228 templates/circuits/inc/circuit_termination.html:23 +#: templates/dcim/inc/panels/inventory_items.html:37 +#: templates/dcim/powerpanel.html:66 templates/extras/script_list.html:35 +#: templates/generic/bulk_delete.html:20 templates/generic/bulk_delete.html:66 +#: templates/generic/object_delete.html:19 templates/htmx/delete_form.html:57 +#: templates/ipam/inc/panels/fhrp_groups.html:48 +#: templates/users/objectpermission.html:46 +#: utilities/templates/buttons/delete.html:11 msgid "Delete" msgstr "Sil" -#: netbox/extras/choices.py:252 netbox/netbox/choices.py:57 -#: netbox/netbox/choices.py:102 +#: extras/choices.py:252 netbox/choices.py:57 netbox/choices.py:102 msgid "Blue" msgstr "Mavi" -#: netbox/extras/choices.py:253 netbox/netbox/choices.py:56 -#: netbox/netbox/choices.py:103 +#: extras/choices.py:253 netbox/choices.py:56 netbox/choices.py:103 msgid "Indigo" msgstr "çivit mavisi" -#: netbox/extras/choices.py:254 netbox/netbox/choices.py:54 -#: netbox/netbox/choices.py:104 +#: extras/choices.py:254 netbox/choices.py:54 netbox/choices.py:104 msgid "Purple" msgstr "Mor" -#: netbox/extras/choices.py:255 netbox/netbox/choices.py:51 -#: netbox/netbox/choices.py:105 +#: extras/choices.py:255 netbox/choices.py:51 netbox/choices.py:105 msgid "Pink" msgstr "Pembe" -#: netbox/extras/choices.py:256 netbox/netbox/choices.py:50 -#: netbox/netbox/choices.py:106 +#: extras/choices.py:256 netbox/choices.py:50 netbox/choices.py:106 msgid "Red" msgstr "Kırmızı" -#: netbox/extras/choices.py:257 netbox/netbox/choices.py:68 -#: netbox/netbox/choices.py:107 +#: extras/choices.py:257 netbox/choices.py:68 netbox/choices.py:107 msgid "Orange" msgstr "Portakal" -#: netbox/extras/choices.py:258 netbox/netbox/choices.py:66 -#: netbox/netbox/choices.py:108 +#: extras/choices.py:258 netbox/choices.py:66 netbox/choices.py:108 msgid "Yellow" msgstr "Sarı" -#: netbox/extras/choices.py:259 netbox/netbox/choices.py:63 -#: netbox/netbox/choices.py:109 +#: extras/choices.py:259 netbox/choices.py:63 netbox/choices.py:109 msgid "Green" msgstr "Yeşil" -#: netbox/extras/choices.py:260 netbox/netbox/choices.py:60 -#: netbox/netbox/choices.py:110 +#: extras/choices.py:260 netbox/choices.py:60 netbox/choices.py:110 msgid "Teal" msgstr "çamurcun" -#: netbox/extras/choices.py:261 netbox/netbox/choices.py:59 -#: netbox/netbox/choices.py:111 +#: extras/choices.py:261 netbox/choices.py:59 netbox/choices.py:111 msgid "Cyan" msgstr "Mavi" -#: netbox/extras/choices.py:262 netbox/netbox/choices.py:112 +#: extras/choices.py:262 netbox/choices.py:112 msgid "Gray" msgstr "Gri" -#: netbox/extras/choices.py:263 netbox/netbox/choices.py:74 -#: netbox/netbox/choices.py:113 +#: extras/choices.py:263 netbox/choices.py:74 netbox/choices.py:113 msgid "Black" msgstr "Siyah" -#: netbox/extras/choices.py:264 netbox/netbox/choices.py:75 -#: netbox/netbox/choices.py:114 +#: extras/choices.py:264 netbox/choices.py:75 netbox/choices.py:114 msgid "White" msgstr "Beyaz" -#: netbox/extras/choices.py:279 netbox/extras/forms/model_forms.py:353 -#: netbox/extras/forms/model_forms.py:430 -#: netbox/templates/extras/webhook.html:10 +#: extras/choices.py:279 extras/forms/model_forms.py:353 +#: extras/forms/model_forms.py:430 templates/extras/webhook.html:10 msgid "Webhook" msgstr "Web kancası" -#: netbox/extras/choices.py:280 netbox/extras/forms/model_forms.py:418 -#: netbox/templates/extras/script/base.html:29 +#: extras/choices.py:280 extras/forms/model_forms.py:418 +#: templates/extras/script/base.html:29 msgid "Script" msgstr "Senaryo" -#: netbox/extras/choices.py:281 +#: extras/choices.py:281 msgid "Notification" msgstr "Bildirim" -#: netbox/extras/conditions.py:54 +#: extras/conditions.py:54 #, python-brace-format msgid "Unknown operator: {op}. Must be one of: {operators}" msgstr "Bilinmeyen operatör: {op}. Şunlardan biri olmalı: {operators}" -#: netbox/extras/conditions.py:58 +#: extras/conditions.py:58 #, python-brace-format msgid "Unsupported value type: {value}" msgstr "Desteklenmeyen değer türü: {value}" -#: netbox/extras/conditions.py:60 +#: extras/conditions.py:60 #, python-brace-format msgid "Invalid type for {op} operation: {value}" msgstr "Geçersiz tür {op} operasyon: {value}" -#: netbox/extras/conditions.py:137 +#: extras/conditions.py:137 #, python-brace-format msgid "Ruleset must be a dictionary, not {ruleset}." msgstr "Kural seti bir sözlük olmalı, değil {ruleset}." -#: netbox/extras/conditions.py:142 +#: extras/conditions.py:142 msgid "Invalid logic type: must be 'AND' or 'OR'. Please check documentation." msgstr "" "Geçersiz mantık türü: 'AND' veya 'OR' olmalıdır. Lütfen belgeleri kontrol " "edin." -#: netbox/extras/conditions.py:154 +#: extras/conditions.py:154 msgid "Incorrect key(s) informed. Please check documentation." msgstr "Yanlış anahtar (ler) bilgilendirildi. Lütfen belgeleri kontrol edin." -#: netbox/extras/dashboard/forms.py:38 +#: extras/dashboard/forms.py:38 msgid "Widget type" msgstr "Widget türü" -#: netbox/extras/dashboard/utils.py:36 +#: extras/dashboard/utils.py:36 #, python-brace-format msgid "Unregistered widget class: {name}" msgstr "Kayıtlı olmayan widget sınıfı: {name}" -#: netbox/extras/dashboard/widgets.py:125 +#: extras/dashboard/widgets.py:125 #, python-brace-format msgid "{class_name} must define a render() method." msgstr "{class_name} bir render () yöntemi tanımlamalıdır." -#: netbox/extras/dashboard/widgets.py:144 +#: extras/dashboard/widgets.py:144 msgid "Note" msgstr "Not" -#: netbox/extras/dashboard/widgets.py:145 +#: extras/dashboard/widgets.py:145 msgid "Display some arbitrary custom content. Markdown is supported." msgstr "Bazı rastgele özel içerikleri görüntüleyin. Markdown desteklenir." -#: netbox/extras/dashboard/widgets.py:158 +#: extras/dashboard/widgets.py:158 msgid "Object Counts" msgstr "Nesne Sayıları" -#: netbox/extras/dashboard/widgets.py:159 +#: extras/dashboard/widgets.py:159 msgid "" "Display a set of NetBox models and the number of objects created for each " "type." @@ -7405,289 +6894,267 @@ msgstr "" "Bir dizi NetBox modeli ve her tür için oluşturulan nesne sayısını " "görüntüleyin." -#: netbox/extras/dashboard/widgets.py:169 +#: extras/dashboard/widgets.py:169 msgid "Filters to apply when counting the number of objects" msgstr "Nesne sayısını sayarken uygulanacak filtreler" -#: netbox/extras/dashboard/widgets.py:177 +#: extras/dashboard/widgets.py:177 msgid "Invalid format. Object filters must be passed as a dictionary." msgstr "Geçersiz biçim. Nesne filtreleri sözlük olarak iletilmelidir." -#: netbox/extras/dashboard/widgets.py:208 +#: extras/dashboard/widgets.py:208 msgid "Object List" msgstr "Nesne Listesi" -#: netbox/extras/dashboard/widgets.py:209 +#: extras/dashboard/widgets.py:209 msgid "Display an arbitrary list of objects." msgstr "İsteğe bağlı bir nesne listesi görüntüleyin." -#: netbox/extras/dashboard/widgets.py:222 +#: extras/dashboard/widgets.py:222 msgid "The default number of objects to display" msgstr "Görüntülenecek nesnelerin varsayılan sayısı" -#: netbox/extras/dashboard/widgets.py:234 +#: extras/dashboard/widgets.py:234 msgid "Invalid format. URL parameters must be passed as a dictionary." msgstr "Geçersiz biçim. URL parametreleri sözlük olarak iletilmelidir." -#: netbox/extras/dashboard/widgets.py:274 +#: extras/dashboard/widgets.py:274 msgid "RSS Feed" msgstr "RSS Beslemesi" -#: netbox/extras/dashboard/widgets.py:279 +#: extras/dashboard/widgets.py:279 msgid "Embed an RSS feed from an external website." msgstr "Harici bir web sitesinden bir RSS beslemesi ekleyin." -#: netbox/extras/dashboard/widgets.py:286 +#: extras/dashboard/widgets.py:286 msgid "Feed URL" msgstr "Akış URL'si" -#: netbox/extras/dashboard/widgets.py:291 +#: extras/dashboard/widgets.py:291 msgid "The maximum number of objects to display" msgstr "Görüntülenecek maksimum nesne sayısı" -#: netbox/extras/dashboard/widgets.py:296 +#: extras/dashboard/widgets.py:296 msgid "How long to stored the cached content (in seconds)" msgstr "" "Önbelleğe alınan içeriğin ne kadar süre saklanacağı (saniye cinsinden)" -#: netbox/extras/dashboard/widgets.py:348 -#: netbox/templates/account/base.html:10 -#: netbox/templates/account/bookmarks.html:7 -#: netbox/templates/inc/user_menu.html:48 +#: extras/dashboard/widgets.py:348 templates/account/base.html:10 +#: templates/account/bookmarks.html:7 templates/inc/user_menu.html:48 msgid "Bookmarks" msgstr "Yer İşaretleri" -#: netbox/extras/dashboard/widgets.py:352 +#: extras/dashboard/widgets.py:352 msgid "Show your personal bookmarks" msgstr "Kişisel yer imlerinizi gösterin" -#: netbox/extras/events.py:147 +#: extras/events.py:147 #, python-brace-format msgid "Unknown action type for an event rule: {action_type}" msgstr "Bir olay kuralı için bilinmeyen eylem türü: {action_type}" -#: netbox/extras/events.py:192 +#: extras/events.py:192 #, python-brace-format msgid "Cannot import events pipeline {name} error: {error}" msgstr "Olaylar boru hattı içe aktarılamıyor {name} hata: {error}" -#: netbox/extras/filtersets.py:45 +#: extras/filtersets.py:45 msgid "Script module (ID)" msgstr "Komut dosyası modülü (ID)" -#: netbox/extras/filtersets.py:254 netbox/extras/filtersets.py:637 -#: netbox/extras/filtersets.py:665 +#: extras/filtersets.py:254 extras/filtersets.py:637 extras/filtersets.py:665 msgid "Data file (ID)" msgstr "Veri dosyası (ID)" -#: netbox/extras/filtersets.py:370 netbox/users/filtersets.py:68 -#: netbox/users/filtersets.py:191 +#: extras/filtersets.py:370 users/filtersets.py:68 users/filtersets.py:191 msgid "Group (name)" msgstr "Grup (isim)" -#: netbox/extras/filtersets.py:574 -#: netbox/virtualization/forms/filtersets.py:118 +#: extras/filtersets.py:574 virtualization/forms/filtersets.py:118 msgid "Cluster type" msgstr "Küme türü" -#: netbox/extras/filtersets.py:580 netbox/virtualization/filtersets.py:95 -#: netbox/virtualization/filtersets.py:147 +#: extras/filtersets.py:580 virtualization/filtersets.py:95 +#: virtualization/filtersets.py:147 msgid "Cluster type (slug)" msgstr "Küme tipi (kısa ad)" -#: netbox/extras/filtersets.py:601 netbox/tenancy/forms/forms.py:16 -#: netbox/tenancy/forms/forms.py:39 +#: extras/filtersets.py:601 tenancy/forms/forms.py:16 +#: tenancy/forms/forms.py:39 msgid "Tenant group" msgstr "Kiracı grubu" -#: netbox/extras/filtersets.py:607 netbox/tenancy/filtersets.py:188 -#: netbox/tenancy/filtersets.py:208 +#: extras/filtersets.py:607 tenancy/filtersets.py:188 +#: tenancy/filtersets.py:208 msgid "Tenant group (slug)" msgstr "Kiracı grubu (kısa ad)" -#: netbox/extras/filtersets.py:623 netbox/extras/forms/model_forms.py:495 -#: netbox/templates/extras/tag.html:11 +#: extras/filtersets.py:623 extras/forms/model_forms.py:495 +#: templates/extras/tag.html:11 msgid "Tag" msgstr "etiket" -#: netbox/extras/filtersets.py:629 +#: extras/filtersets.py:629 msgid "Tag (slug)" msgstr "Etiket (kısa ad)" -#: netbox/extras/filtersets.py:689 netbox/extras/forms/filtersets.py:429 +#: extras/filtersets.py:689 extras/forms/filtersets.py:429 msgid "Has local config context data" msgstr "Yerel yapılandırma bağlam verilerine sahiptir" -#: netbox/extras/forms/bulk_edit.py:35 netbox/extras/forms/filtersets.py:60 +#: extras/forms/bulk_edit.py:35 extras/forms/filtersets.py:60 msgid "Group name" msgstr "Grup adı" -#: netbox/extras/forms/bulk_edit.py:43 netbox/extras/forms/filtersets.py:68 -#: netbox/extras/tables/tables.py:65 -#: netbox/templates/extras/customfield.html:38 -#: netbox/templates/generic/bulk_import.html:118 +#: extras/forms/bulk_edit.py:43 extras/forms/filtersets.py:68 +#: extras/tables/tables.py:65 templates/extras/customfield.html:38 +#: templates/generic/bulk_import.html:118 msgid "Required" msgstr "Gerekli" -#: netbox/extras/forms/bulk_edit.py:48 netbox/extras/forms/filtersets.py:75 +#: extras/forms/bulk_edit.py:48 extras/forms/filtersets.py:75 msgid "Must be unique" msgstr "Benzersiz olmalı" -#: netbox/extras/forms/bulk_edit.py:61 netbox/extras/forms/bulk_import.py:60 -#: netbox/extras/forms/filtersets.py:89 -#: netbox/extras/models/customfields.py:209 +#: extras/forms/bulk_edit.py:61 extras/forms/bulk_import.py:60 +#: extras/forms/filtersets.py:89 extras/models/customfields.py:209 msgid "UI visible" msgstr "Kullanıcı arayüzü görünür" -#: netbox/extras/forms/bulk_edit.py:66 netbox/extras/forms/bulk_import.py:66 -#: netbox/extras/forms/filtersets.py:94 -#: netbox/extras/models/customfields.py:216 +#: extras/forms/bulk_edit.py:66 extras/forms/bulk_import.py:66 +#: extras/forms/filtersets.py:94 extras/models/customfields.py:216 msgid "UI editable" msgstr "UI düzenlenebilir" -#: netbox/extras/forms/bulk_edit.py:71 netbox/extras/forms/filtersets.py:97 +#: extras/forms/bulk_edit.py:71 extras/forms/filtersets.py:97 msgid "Is cloneable" msgstr "Klonlanabilir mi" -#: netbox/extras/forms/bulk_edit.py:76 netbox/extras/forms/filtersets.py:104 +#: extras/forms/bulk_edit.py:76 extras/forms/filtersets.py:104 msgid "Minimum value" msgstr "Minimum değer" -#: netbox/extras/forms/bulk_edit.py:80 netbox/extras/forms/filtersets.py:108 +#: extras/forms/bulk_edit.py:80 extras/forms/filtersets.py:108 msgid "Maximum value" msgstr "Maksimum değer" -#: netbox/extras/forms/bulk_edit.py:84 netbox/extras/forms/filtersets.py:112 +#: extras/forms/bulk_edit.py:84 extras/forms/filtersets.py:112 msgid "Validation regex" msgstr "Doğrulama regex" -#: netbox/extras/forms/bulk_edit.py:91 netbox/extras/forms/filtersets.py:46 -#: netbox/extras/forms/model_forms.py:76 -#: netbox/templates/extras/customfield.html:70 +#: extras/forms/bulk_edit.py:91 extras/forms/filtersets.py:46 +#: extras/forms/model_forms.py:76 templates/extras/customfield.html:70 msgid "Behavior" msgstr "Davranış" -#: netbox/extras/forms/bulk_edit.py:128 netbox/extras/forms/filtersets.py:149 +#: extras/forms/bulk_edit.py:128 extras/forms/filtersets.py:149 msgid "New window" msgstr "Yeni pencere" -#: netbox/extras/forms/bulk_edit.py:137 +#: extras/forms/bulk_edit.py:137 msgid "Button class" msgstr "Düğme sınıfı" -#: netbox/extras/forms/bulk_edit.py:154 netbox/extras/forms/filtersets.py:187 -#: netbox/extras/models/models.py:409 +#: extras/forms/bulk_edit.py:154 extras/forms/filtersets.py:187 +#: extras/models/models.py:409 msgid "MIME type" msgstr "MIME türü" -#: netbox/extras/forms/bulk_edit.py:159 netbox/extras/forms/filtersets.py:190 +#: extras/forms/bulk_edit.py:159 extras/forms/filtersets.py:190 msgid "File extension" msgstr "Dosya uzantısı" -#: netbox/extras/forms/bulk_edit.py:164 netbox/extras/forms/filtersets.py:194 +#: extras/forms/bulk_edit.py:164 extras/forms/filtersets.py:194 msgid "As attachment" msgstr "Ek olarak" -#: netbox/extras/forms/bulk_edit.py:192 netbox/extras/forms/filtersets.py:236 -#: netbox/extras/tables/tables.py:256 -#: netbox/templates/extras/savedfilter.html:29 +#: extras/forms/bulk_edit.py:192 extras/forms/filtersets.py:236 +#: extras/tables/tables.py:256 templates/extras/savedfilter.html:29 msgid "Shared" msgstr "Paylaşılan" -#: netbox/extras/forms/bulk_edit.py:215 netbox/extras/forms/filtersets.py:265 -#: netbox/extras/models/models.py:174 +#: extras/forms/bulk_edit.py:215 extras/forms/filtersets.py:265 +#: extras/models/models.py:174 msgid "HTTP method" msgstr "HTTP yöntemi" -#: netbox/extras/forms/bulk_edit.py:219 netbox/extras/forms/filtersets.py:259 -#: netbox/templates/extras/webhook.html:30 +#: extras/forms/bulk_edit.py:219 extras/forms/filtersets.py:259 +#: templates/extras/webhook.html:30 msgid "Payload URL" msgstr "Yük URL'si" -#: netbox/extras/forms/bulk_edit.py:224 netbox/extras/models/models.py:214 +#: extras/forms/bulk_edit.py:224 extras/models/models.py:214 msgid "SSL verification" msgstr "SSL doğrulama" -#: netbox/extras/forms/bulk_edit.py:227 -#: netbox/templates/extras/webhook.html:38 +#: extras/forms/bulk_edit.py:227 templates/extras/webhook.html:38 msgid "Secret" msgstr "Gizli" -#: netbox/extras/forms/bulk_edit.py:232 +#: extras/forms/bulk_edit.py:232 msgid "CA file path" msgstr "CA dosya yolu" -#: netbox/extras/forms/bulk_edit.py:253 netbox/extras/forms/bulk_import.py:192 -#: netbox/extras/forms/model_forms.py:377 +#: extras/forms/bulk_edit.py:253 extras/forms/bulk_import.py:192 +#: extras/forms/model_forms.py:377 msgid "Event types" msgstr "Etkinlik türleri" -#: netbox/extras/forms/bulk_edit.py:293 +#: extras/forms/bulk_edit.py:293 msgid "Is active" msgstr "Aktif" -#: netbox/extras/forms/bulk_import.py:37 -#: netbox/extras/forms/bulk_import.py:118 -#: netbox/extras/forms/bulk_import.py:139 -#: netbox/extras/forms/bulk_import.py:162 -#: netbox/extras/forms/bulk_import.py:186 -#: netbox/extras/forms/filtersets.py:137 netbox/extras/forms/filtersets.py:224 -#: netbox/extras/forms/model_forms.py:47 -#: netbox/extras/forms/model_forms.py:205 -#: netbox/extras/forms/model_forms.py:237 -#: netbox/extras/forms/model_forms.py:278 -#: netbox/extras/forms/model_forms.py:372 -#: netbox/extras/forms/model_forms.py:489 -#: netbox/users/forms/model_forms.py:276 +#: extras/forms/bulk_import.py:37 extras/forms/bulk_import.py:118 +#: extras/forms/bulk_import.py:139 extras/forms/bulk_import.py:162 +#: extras/forms/bulk_import.py:186 extras/forms/filtersets.py:137 +#: extras/forms/filtersets.py:224 extras/forms/model_forms.py:47 +#: extras/forms/model_forms.py:205 extras/forms/model_forms.py:237 +#: extras/forms/model_forms.py:278 extras/forms/model_forms.py:372 +#: extras/forms/model_forms.py:489 users/forms/model_forms.py:276 msgid "Object types" msgstr "Nesne türleri" -#: netbox/extras/forms/bulk_import.py:39 -#: netbox/extras/forms/bulk_import.py:120 -#: netbox/extras/forms/bulk_import.py:141 -#: netbox/extras/forms/bulk_import.py:164 -#: netbox/extras/forms/bulk_import.py:188 -#: netbox/tenancy/forms/bulk_import.py:96 +#: extras/forms/bulk_import.py:39 extras/forms/bulk_import.py:120 +#: extras/forms/bulk_import.py:141 extras/forms/bulk_import.py:164 +#: extras/forms/bulk_import.py:188 tenancy/forms/bulk_import.py:96 msgid "One or more assigned object types" msgstr "Bir veya daha fazla atanmış nesne türü" -#: netbox/extras/forms/bulk_import.py:44 +#: extras/forms/bulk_import.py:44 msgid "Field data type (e.g. text, integer, etc.)" msgstr "Alan veri türü (örn. Metin, tamsayı vb.)" -#: netbox/extras/forms/bulk_import.py:47 netbox/extras/forms/filtersets.py:208 -#: netbox/extras/forms/filtersets.py:281 -#: netbox/extras/forms/model_forms.py:304 -#: netbox/extras/forms/model_forms.py:341 -#: netbox/tenancy/forms/filtersets.py:92 +#: extras/forms/bulk_import.py:47 extras/forms/filtersets.py:208 +#: extras/forms/filtersets.py:281 extras/forms/model_forms.py:304 +#: extras/forms/model_forms.py:341 tenancy/forms/filtersets.py:92 msgid "Object type" msgstr "Nesne türü" -#: netbox/extras/forms/bulk_import.py:50 +#: extras/forms/bulk_import.py:50 msgid "Object type (for object or multi-object fields)" msgstr "Nesne türü (nesne veya çoklu nesne alanları için)" -#: netbox/extras/forms/bulk_import.py:53 netbox/extras/forms/filtersets.py:84 +#: extras/forms/bulk_import.py:53 extras/forms/filtersets.py:84 msgid "Choice set" msgstr "Seçim seti" -#: netbox/extras/forms/bulk_import.py:57 +#: extras/forms/bulk_import.py:57 msgid "Choice set (for selection fields)" msgstr "Seçim kümesi (seçim alanları için)" -#: netbox/extras/forms/bulk_import.py:63 +#: extras/forms/bulk_import.py:63 msgid "Whether the custom field is displayed in the UI" msgstr "Özel alanın kullanıcı arayüzünde görüntülenip görüntülenmediği" -#: netbox/extras/forms/bulk_import.py:69 +#: extras/forms/bulk_import.py:69 msgid "Whether the custom field is editable in the UI" msgstr "Özel alanın kullanıcı arayüzünde düzenlenebilir olup olmadığı" -#: netbox/extras/forms/bulk_import.py:85 +#: extras/forms/bulk_import.py:85 msgid "The base set of predefined choices to use (if any)" msgstr "Kullanılacak önceden tanımlanmış seçeneklerin temel kümesi (varsa)" -#: netbox/extras/forms/bulk_import.py:91 +#: extras/forms/bulk_import.py:91 msgid "" "Quoted string of comma-separated field choices with optional labels " "separated by colon: \"choice1:First Choice,choice2:Second Choice\"" @@ -7696,201 +7163,185 @@ msgstr "" "seçeneklerinin alıntılanmış dizesi: “Seçim1:First Choice, Choice2:Second " "Choice”" -#: netbox/extras/forms/bulk_import.py:123 netbox/extras/models/models.py:323 +#: extras/forms/bulk_import.py:123 extras/models/models.py:323 msgid "button class" msgstr "düğme sınıfı" -#: netbox/extras/forms/bulk_import.py:126 netbox/extras/models/models.py:327 +#: extras/forms/bulk_import.py:126 extras/models/models.py:327 msgid "" "The class of the first link in a group will be used for the dropdown button" msgstr "" "Bir gruptaki ilk bağlantının sınıfı açılır düğme için kullanılacaktır." -#: netbox/extras/forms/bulk_import.py:193 +#: extras/forms/bulk_import.py:193 msgid "The event type(s) which will trigger this rule" msgstr "Bu kuralı tetikleyecek olay türü (ler)" -#: netbox/extras/forms/bulk_import.py:196 +#: extras/forms/bulk_import.py:196 msgid "Action object" msgstr "Eylem nesnesi" -#: netbox/extras/forms/bulk_import.py:198 +#: extras/forms/bulk_import.py:198 msgid "Webhook name or script as dotted path module.Class" msgstr "Noktalı yol olarak Webhook adı veya komut dosyası module.Class" -#: netbox/extras/forms/bulk_import.py:219 +#: extras/forms/bulk_import.py:219 #, python-brace-format msgid "Webhook {name} not found" msgstr "Web kancası {name} bulunamadı" -#: netbox/extras/forms/bulk_import.py:228 +#: extras/forms/bulk_import.py:228 #, python-brace-format msgid "Script {name} not found" msgstr "Senaryo {name} bulunamadı" -#: netbox/extras/forms/bulk_import.py:244 +#: extras/forms/bulk_import.py:244 msgid "Assigned object type" msgstr "Atanan nesne türü" -#: netbox/extras/forms/bulk_import.py:249 +#: extras/forms/bulk_import.py:249 msgid "The classification of entry" msgstr "Girişin sınıflandırılması" -#: netbox/extras/forms/bulk_import.py:261 -#: netbox/extras/forms/model_forms.py:320 netbox/netbox/navigation/menu.py:390 -#: netbox/templates/extras/notificationgroup.html:41 -#: netbox/templates/users/group.html:29 netbox/users/forms/model_forms.py:236 -#: netbox/users/forms/model_forms.py:248 netbox/users/forms/model_forms.py:300 -#: netbox/users/tables.py:102 +#: extras/forms/bulk_import.py:261 extras/forms/model_forms.py:320 +#: netbox/navigation/menu.py:390 templates/extras/notificationgroup.html:41 +#: templates/users/group.html:29 users/forms/model_forms.py:236 +#: users/forms/model_forms.py:248 users/forms/model_forms.py:300 +#: users/tables.py:102 msgid "Users" msgstr "Kullanıcılar" -#: netbox/extras/forms/bulk_import.py:265 +#: extras/forms/bulk_import.py:265 msgid "User names separated by commas, encased with double quotes" msgstr "" "Virgülle ayrılmış, çift tırnak işareti ile çevrelenmiş kullanıcı adları" -#: netbox/extras/forms/bulk_import.py:268 -#: netbox/extras/forms/model_forms.py:315 netbox/netbox/navigation/menu.py:410 -#: netbox/templates/extras/notificationgroup.html:31 -#: netbox/users/forms/model_forms.py:181 netbox/users/forms/model_forms.py:193 -#: netbox/users/forms/model_forms.py:305 netbox/users/tables.py:35 -#: netbox/users/tables.py:106 +#: extras/forms/bulk_import.py:268 extras/forms/model_forms.py:315 +#: netbox/navigation/menu.py:410 templates/extras/notificationgroup.html:31 +#: users/forms/model_forms.py:181 users/forms/model_forms.py:193 +#: users/forms/model_forms.py:305 users/tables.py:35 users/tables.py:106 msgid "Groups" msgstr "Gruplar" -#: netbox/extras/forms/bulk_import.py:272 +#: extras/forms/bulk_import.py:272 msgid "Group names separated by commas, encased with double quotes" msgstr "Virgülle ayrılmış, çift tırnak işareti ile çevrelenmiş grup adları" -#: netbox/extras/forms/filtersets.py:52 netbox/extras/forms/model_forms.py:56 +#: extras/forms/filtersets.py:52 extras/forms/model_forms.py:56 msgid "Related object type" msgstr "İlgili nesne türü" -#: netbox/extras/forms/filtersets.py:57 +#: extras/forms/filtersets.py:57 msgid "Field type" msgstr "Alan tipi" -#: netbox/extras/forms/filtersets.py:120 -#: netbox/extras/forms/model_forms.py:157 netbox/extras/tables/tables.py:91 -#: netbox/templates/generic/bulk_import.html:154 +#: extras/forms/filtersets.py:120 extras/forms/model_forms.py:157 +#: extras/tables/tables.py:91 templates/generic/bulk_import.html:154 msgid "Choices" msgstr "Seçenekler" -#: netbox/extras/forms/filtersets.py:164 netbox/extras/forms/filtersets.py:319 -#: netbox/extras/forms/filtersets.py:408 -#: netbox/extras/forms/model_forms.py:572 netbox/templates/core/job.html:96 -#: netbox/templates/extras/eventrule.html:84 +#: extras/forms/filtersets.py:164 extras/forms/filtersets.py:319 +#: extras/forms/filtersets.py:408 extras/forms/model_forms.py:572 +#: templates/core/job.html:96 templates/extras/eventrule.html:84 msgid "Data" msgstr "Veriler" -#: netbox/extras/forms/filtersets.py:175 netbox/extras/forms/filtersets.py:333 -#: netbox/extras/forms/filtersets.py:418 netbox/netbox/choices.py:130 -#: netbox/utilities/forms/bulk_import.py:26 +#: extras/forms/filtersets.py:175 extras/forms/filtersets.py:333 +#: extras/forms/filtersets.py:418 netbox/choices.py:130 +#: utilities/forms/bulk_import.py:26 msgid "Data file" msgstr "Veri dosyası" -#: netbox/extras/forms/filtersets.py:183 +#: extras/forms/filtersets.py:183 msgid "Content types" msgstr "İçerik türleri" -#: netbox/extras/forms/filtersets.py:255 netbox/extras/models/models.py:179 +#: extras/forms/filtersets.py:255 extras/models/models.py:179 msgid "HTTP content type" msgstr "HTTP içerik türü" -#: netbox/extras/forms/filtersets.py:286 +#: extras/forms/filtersets.py:286 msgid "Event type" msgstr "Etkinlik türü" -#: netbox/extras/forms/filtersets.py:291 +#: extras/forms/filtersets.py:291 msgid "Action type" msgstr "Eylem türü" -#: netbox/extras/forms/filtersets.py:307 +#: extras/forms/filtersets.py:307 msgid "Tagged object type" msgstr "Etiketli nesne türü" -#: netbox/extras/forms/filtersets.py:312 +#: extras/forms/filtersets.py:312 msgid "Allowed object type" msgstr "İzin verilen nesne türü" -#: netbox/extras/forms/filtersets.py:341 -#: netbox/extras/forms/model_forms.py:507 netbox/netbox/navigation/menu.py:18 +#: extras/forms/filtersets.py:341 extras/forms/model_forms.py:507 +#: netbox/navigation/menu.py:18 msgid "Regions" msgstr "Bölgeler" -#: netbox/extras/forms/filtersets.py:346 -#: netbox/extras/forms/model_forms.py:512 +#: extras/forms/filtersets.py:346 extras/forms/model_forms.py:512 msgid "Site groups" msgstr "Site grupları" -#: netbox/extras/forms/filtersets.py:356 -#: netbox/extras/forms/model_forms.py:522 netbox/netbox/navigation/menu.py:20 -#: netbox/templates/dcim/site.html:127 +#: extras/forms/filtersets.py:356 extras/forms/model_forms.py:522 +#: netbox/navigation/menu.py:20 templates/dcim/site.html:127 msgid "Locations" msgstr "Konumlar" -#: netbox/extras/forms/filtersets.py:361 -#: netbox/extras/forms/model_forms.py:527 +#: extras/forms/filtersets.py:361 extras/forms/model_forms.py:527 msgid "Device types" msgstr "Cihaz türleri" -#: netbox/extras/forms/filtersets.py:366 -#: netbox/extras/forms/model_forms.py:532 +#: extras/forms/filtersets.py:366 extras/forms/model_forms.py:532 msgid "Roles" msgstr "Roller" -#: netbox/extras/forms/filtersets.py:376 -#: netbox/extras/forms/model_forms.py:542 +#: extras/forms/filtersets.py:376 extras/forms/model_forms.py:542 msgid "Cluster types" msgstr "Küme türleri" -#: netbox/extras/forms/filtersets.py:381 -#: netbox/extras/forms/model_forms.py:547 +#: extras/forms/filtersets.py:381 extras/forms/model_forms.py:547 msgid "Cluster groups" msgstr "Küme grupları" -#: netbox/extras/forms/filtersets.py:386 -#: netbox/extras/forms/model_forms.py:552 netbox/netbox/navigation/menu.py:255 -#: netbox/netbox/navigation/menu.py:257 -#: netbox/templates/virtualization/clustertype.html:30 -#: netbox/virtualization/tables/clusters.py:23 -#: netbox/virtualization/tables/clusters.py:45 +#: extras/forms/filtersets.py:386 extras/forms/model_forms.py:552 +#: netbox/navigation/menu.py:255 netbox/navigation/menu.py:257 +#: templates/virtualization/clustertype.html:30 +#: virtualization/tables/clusters.py:23 virtualization/tables/clusters.py:45 msgid "Clusters" msgstr "Kümeler" -#: netbox/extras/forms/filtersets.py:391 -#: netbox/extras/forms/model_forms.py:557 +#: extras/forms/filtersets.py:391 extras/forms/model_forms.py:557 msgid "Tenant groups" msgstr "Kiracı grupları" -#: netbox/extras/forms/model_forms.py:49 +#: extras/forms/model_forms.py:49 msgid "The type(s) of object that have this custom field" msgstr "Bu özel alana sahip nesnenin türü (leri) i" -#: netbox/extras/forms/model_forms.py:52 +#: extras/forms/model_forms.py:52 msgid "Default value" msgstr "Varsayılan değer" -#: netbox/extras/forms/model_forms.py:58 +#: extras/forms/model_forms.py:58 msgid "Type of the related object (for object/multi-object fields only)" msgstr "İlgili nesnenin türü (yalnızca nesne/çoklu nesne alanları için)" -#: netbox/extras/forms/model_forms.py:61 -#: netbox/templates/extras/customfield.html:60 +#: extras/forms/model_forms.py:61 templates/extras/customfield.html:60 msgid "Related object filter" msgstr "İlgili nesne filtresi" -#: netbox/extras/forms/model_forms.py:63 +#: extras/forms/model_forms.py:63 msgid "Specify query parameters as a JSON object." msgstr "Sorgu parametrelerini JSON nesnesi olarak belirtin." -#: netbox/extras/forms/model_forms.py:73 -#: netbox/templates/extras/customfield.html:10 +#: extras/forms/model_forms.py:73 templates/extras/customfield.html:10 msgid "Custom Field" msgstr "Özel Alan" -#: netbox/extras/forms/model_forms.py:85 +#: extras/forms/model_forms.py:85 msgid "" "The type of data stored in this field. For object/multi-object fields, " "select the related object type below." @@ -7898,7 +7349,7 @@ msgstr "" "Bu alanda depolanan veri türü. Nesne/çoklu nesne alanları için aşağıda " "ilgili nesne türünü seçin." -#: netbox/extras/forms/model_forms.py:88 +#: extras/forms/model_forms.py:88 msgid "" "This will be displayed as help text for the form field. Markdown is " "supported." @@ -7906,11 +7357,11 @@ msgstr "" "Bu, form alanı için yardım metni olarak görüntülenecektir. Markdown " "desteklenir." -#: netbox/extras/forms/model_forms.py:143 +#: extras/forms/model_forms.py:143 msgid "Related Object" msgstr "İlgili Nesne" -#: netbox/extras/forms/model_forms.py:169 +#: extras/forms/model_forms.py:169 msgid "" "Enter one choice per line. An optional label may be specified for each " "choice by appending it with a colon. Example:" @@ -7918,16 +7369,15 @@ msgstr "" "Satır başına bir seçenek girin. Her seçim için iki nokta üst üste eklenerek " "isteğe bağlı bir etiket belirtilebilir. Örnek:" -#: netbox/extras/forms/model_forms.py:212 -#: netbox/templates/extras/customlink.html:10 +#: extras/forms/model_forms.py:212 templates/extras/customlink.html:10 msgid "Custom Link" msgstr "Özel Bağlantı" -#: netbox/extras/forms/model_forms.py:214 +#: extras/forms/model_forms.py:214 msgid "Templates" msgstr "Şablonlar" -#: netbox/extras/forms/model_forms.py:226 +#: extras/forms/model_forms.py:226 #, python-brace-format msgid "" "Jinja2 template code for the link text. Reference the object as {example}. " @@ -7936,7 +7386,7 @@ msgstr "" "Bağlantı metni için Jinja2 şablon kodu. Nesneyi {example} şeklinde referans " "alabilirsiniz. Boş metin olarak görüntülenen bağlantılar görüntülenmez." -#: netbox/extras/forms/model_forms.py:230 +#: extras/forms/model_forms.py:230 #, python-brace-format msgid "" "Jinja2 template code for the link URL. Reference the object as {example}." @@ -7944,58 +7394,52 @@ msgstr "" "Bağlantı metni için Jinja2 şablon kodu. Nesneyi {example} şeklinde referans " "alabilirsiniz. " -#: netbox/extras/forms/model_forms.py:241 -#: netbox/extras/forms/model_forms.py:624 +#: extras/forms/model_forms.py:241 extras/forms/model_forms.py:624 msgid "Template code" msgstr "Şablon kodu" -#: netbox/extras/forms/model_forms.py:247 -#: netbox/templates/extras/exporttemplate.html:12 +#: extras/forms/model_forms.py:247 templates/extras/exporttemplate.html:12 msgid "Export Template" msgstr "Dışa Aktarma Şablonu" -#: netbox/extras/forms/model_forms.py:249 +#: extras/forms/model_forms.py:249 msgid "Rendering" msgstr "Oluşturma" -#: netbox/extras/forms/model_forms.py:263 -#: netbox/extras/forms/model_forms.py:649 +#: extras/forms/model_forms.py:263 extras/forms/model_forms.py:649 msgid "Template content is populated from the remote source selected below." msgstr "Şablon içeriği aşağıda seçilen uzak kaynaktan doldurulur." -#: netbox/extras/forms/model_forms.py:270 -#: netbox/extras/forms/model_forms.py:656 +#: extras/forms/model_forms.py:270 extras/forms/model_forms.py:656 msgid "Must specify either local content or a data file" msgstr "Yerel içerik veya veri dosyası belirtmelidir" -#: netbox/extras/forms/model_forms.py:284 netbox/netbox/forms/mixins.py:70 -#: netbox/templates/extras/savedfilter.html:10 +#: extras/forms/model_forms.py:284 netbox/forms/mixins.py:70 +#: templates/extras/savedfilter.html:10 msgid "Saved Filter" msgstr "Kaydedilen Filtre" -#: netbox/extras/forms/model_forms.py:334 +#: extras/forms/model_forms.py:334 msgid "A notification group specify at least one user or group." msgstr "Bir bildirim grubu en az bir kullanıcı veya grup belirtir." -#: netbox/extras/forms/model_forms.py:356 -#: netbox/templates/extras/webhook.html:23 +#: extras/forms/model_forms.py:356 templates/extras/webhook.html:23 msgid "HTTP Request" msgstr "HTTP isteği" -#: netbox/extras/forms/model_forms.py:358 -#: netbox/templates/extras/webhook.html:44 +#: extras/forms/model_forms.py:358 templates/extras/webhook.html:44 msgid "SSL" msgstr "SSL" -#: netbox/extras/forms/model_forms.py:380 +#: extras/forms/model_forms.py:380 msgid "Action choice" msgstr "Eylem seçimi" -#: netbox/extras/forms/model_forms.py:385 +#: extras/forms/model_forms.py:385 msgid "Enter conditions in JSON format." msgstr "Koşulları girin JSON biçim." -#: netbox/extras/forms/model_forms.py:389 +#: extras/forms/model_forms.py:389 msgid "" "Enter parameters to pass to the action in JSON format." @@ -8003,113 +7447,111 @@ msgstr "" "Eyleme iletilecek parametreleri girin JSON" " biçim." -#: netbox/extras/forms/model_forms.py:394 -#: netbox/templates/extras/eventrule.html:10 +#: extras/forms/model_forms.py:394 templates/extras/eventrule.html:10 msgid "Event Rule" msgstr "Etkinlik Kuralı" -#: netbox/extras/forms/model_forms.py:395 +#: extras/forms/model_forms.py:395 msgid "Triggers" msgstr "Tetikleyiciler" -#: netbox/extras/forms/model_forms.py:442 +#: extras/forms/model_forms.py:442 msgid "Notification group" msgstr "Bildirim grubu" -#: netbox/extras/forms/model_forms.py:562 netbox/netbox/navigation/menu.py:26 -#: netbox/tenancy/tables/tenants.py:22 +#: extras/forms/model_forms.py:562 netbox/navigation/menu.py:26 +#: tenancy/tables/tenants.py:22 msgid "Tenants" msgstr "Kiracılar" -#: netbox/extras/forms/model_forms.py:606 +#: extras/forms/model_forms.py:606 msgid "Data is populated from the remote source selected below." msgstr "Veriler aşağıda seçilen uzak kaynaktan doldurulur." -#: netbox/extras/forms/model_forms.py:612 +#: extras/forms/model_forms.py:612 msgid "Must specify either local data or a data file" msgstr "Yerel veri veya veri dosyası belirtmelidir" -#: netbox/extras/forms/model_forms.py:631 -#: netbox/templates/core/datafile.html:55 +#: extras/forms/model_forms.py:631 templates/core/datafile.html:55 msgid "Content" msgstr "İçerik" -#: netbox/extras/forms/reports.py:17 netbox/extras/forms/scripts.py:23 +#: extras/forms/reports.py:17 extras/forms/scripts.py:23 msgid "Schedule at" msgstr "Şurada programlayın" -#: netbox/extras/forms/reports.py:18 +#: extras/forms/reports.py:18 msgid "Schedule execution of report to a set time" msgstr "Raporun yürütülmesini belirli bir zamana planlayın" -#: netbox/extras/forms/reports.py:23 netbox/extras/forms/scripts.py:29 +#: extras/forms/reports.py:23 extras/forms/scripts.py:29 msgid "Recurs every" msgstr "Her birini tekrarlar" -#: netbox/extras/forms/reports.py:27 +#: extras/forms/reports.py:27 msgid "Interval at which this report is re-run (in minutes)" msgstr "Bu raporun yeniden çalıştırıldığı aralık (dakika cinsinden)" -#: netbox/extras/forms/reports.py:35 netbox/extras/forms/scripts.py:41 +#: extras/forms/reports.py:35 extras/forms/scripts.py:41 #, python-brace-format msgid " (current time: {now})" msgstr " (Geçerli saat: {now})" -#: netbox/extras/forms/reports.py:45 netbox/extras/forms/scripts.py:51 +#: extras/forms/reports.py:45 extras/forms/scripts.py:51 msgid "Scheduled time must be in the future." msgstr "Planlanan zaman gelecekte olmalıdır." -#: netbox/extras/forms/scripts.py:17 +#: extras/forms/scripts.py:17 msgid "Commit changes" msgstr "Değişiklikleri gerçekleştirme" -#: netbox/extras/forms/scripts.py:18 +#: extras/forms/scripts.py:18 msgid "Commit changes to the database (uncheck for a dry-run)" msgstr "" "Veritabanındaki değişiklikleri ilet (kuru çalıştırma için işaretini " "kaldırın)" -#: netbox/extras/forms/scripts.py:24 +#: extras/forms/scripts.py:24 msgid "Schedule execution of script to a set time" msgstr "Komut dosyasının yürütülmesini belirli bir zamana planlayın" -#: netbox/extras/forms/scripts.py:33 +#: extras/forms/scripts.py:33 msgid "Interval at which this script is re-run (in minutes)" msgstr "Bu komut dosyasının yeniden çalıştırıldığı aralık (dakika cinsinden)" -#: netbox/extras/jobs.py:49 +#: extras/jobs.py:49 msgid "Database changes have been reverted automatically." msgstr "Veritabanı değişiklikleri otomatik olarak geri alındı." -#: netbox/extras/jobs.py:56 +#: extras/jobs.py:55 msgid "Script aborted with error: " msgstr "Komut dosyası hatayla iptal edildi: " -#: netbox/extras/jobs.py:66 +#: extras/jobs.py:65 msgid "An exception occurred: " msgstr "Bir istisna oluştu: " -#: netbox/extras/jobs.py:71 +#: extras/jobs.py:70 msgid "Database changes have been reverted due to error." msgstr "Veritabanı değişiklikleri hata nedeniyle geri alındı." -#: netbox/extras/management/commands/reindex.py:66 +#: extras/management/commands/reindex.py:66 msgid "No indexers found!" msgstr "Dizinleyici bulunamadı!" -#: netbox/extras/models/configs.py:130 +#: extras/models/configs.py:130 msgid "config context" msgstr "yapılandırma bağlamı" -#: netbox/extras/models/configs.py:131 +#: extras/models/configs.py:131 msgid "config contexts" msgstr "yapılandırma bağlamları" -#: netbox/extras/models/configs.py:149 netbox/extras/models/configs.py:205 +#: extras/models/configs.py:149 extras/models/configs.py:205 msgid "JSON data must be in object form. Example:" msgstr "JSON verileri nesne biçiminde olmalıdır. Örnek:" -#: netbox/extras/models/configs.py:169 +#: extras/models/configs.py:169 msgid "" "Local config context data takes precedence over source contexts in the final" " rendered config context" @@ -8117,19 +7559,19 @@ msgstr "" "Yerel yapılandırma bağlamı verileri, nihai işlenmiş yapılandırma bağlamında " "kaynak bağlamlara göre önceliklidir" -#: netbox/extras/models/configs.py:224 +#: extras/models/configs.py:224 msgid "template code" msgstr "şablon kodu" -#: netbox/extras/models/configs.py:225 +#: extras/models/configs.py:225 msgid "Jinja2 template code." msgstr "Jinja2 şablon kodu." -#: netbox/extras/models/configs.py:228 +#: extras/models/configs.py:228 msgid "environment parameters" msgstr "çevre parametreleri" -#: netbox/extras/models/configs.py:233 +#: extras/models/configs.py:233 msgid "" "Any additional" @@ -8139,39 +7581,39 @@ msgstr "" "href=\"https://jinja.palletsprojects.com/en/3.1.x/api/#jinja2.Environment\">ek" " parametreler Jinja2 ortamını inşa ederken geçmek." -#: netbox/extras/models/configs.py:240 +#: extras/models/configs.py:240 msgid "config template" msgstr "yapılandırma şablonu" -#: netbox/extras/models/configs.py:241 +#: extras/models/configs.py:241 msgid "config templates" msgstr "yapılandırma şablonları" -#: netbox/extras/models/customfields.py:75 +#: extras/models/customfields.py:75 msgid "The object(s) to which this field applies." msgstr "Bu alanın geçerli olduğu nesne (ler) dir." -#: netbox/extras/models/customfields.py:82 +#: extras/models/customfields.py:82 msgid "The type of data this custom field holds" msgstr "Bu özel alanın tuttuğu veri türü" -#: netbox/extras/models/customfields.py:89 +#: extras/models/customfields.py:89 msgid "The type of NetBox object this field maps to (for object fields)" msgstr "Bu alanın eşlendiği NetBox nesnesinin türü (nesne alanları için)" -#: netbox/extras/models/customfields.py:95 +#: extras/models/customfields.py:95 msgid "Internal field name" msgstr "İç alan adı" -#: netbox/extras/models/customfields.py:99 +#: extras/models/customfields.py:99 msgid "Only alphanumeric characters and underscores are allowed." msgstr "Yalnızca alfasayısal karakterlere ve alt çizgilere izin verilir." -#: netbox/extras/models/customfields.py:104 +#: extras/models/customfields.py:104 msgid "Double underscores are not permitted in custom field names." msgstr "Özel alan adlarında çift alt çizgilere izin verilmez." -#: netbox/extras/models/customfields.py:115 +#: extras/models/customfields.py:115 msgid "" "Name of the field as displayed to users (if not provided, 'the field's name " "will be used)" @@ -8179,19 +7621,19 @@ msgstr "" "Kullanıcılara görüntülenen alanın adı (belirtilmezse, 'alanın adı " "kullanılacaktır)" -#: netbox/extras/models/customfields.py:119 netbox/extras/models/models.py:317 +#: extras/models/customfields.py:119 extras/models/models.py:317 msgid "group name" msgstr "grup adı" -#: netbox/extras/models/customfields.py:122 +#: extras/models/customfields.py:122 msgid "Custom fields within the same group will be displayed together" msgstr "Aynı gruptaki özel alanlar birlikte görüntülenecektir" -#: netbox/extras/models/customfields.py:130 +#: extras/models/customfields.py:130 msgid "required" msgstr "gereklidir" -#: netbox/extras/models/customfields.py:132 +#: extras/models/customfields.py:132 msgid "" "This field is required when creating new objects or editing an existing " "object." @@ -8199,19 +7641,19 @@ msgstr "" "Yeni nesneler oluştururken veya mevcut bir nesneyi düzenlerken bu alan " "gereklidir." -#: netbox/extras/models/customfields.py:135 +#: extras/models/customfields.py:135 msgid "must be unique" msgstr "benzersiz olmalı" -#: netbox/extras/models/customfields.py:137 +#: extras/models/customfields.py:137 msgid "The value of this field must be unique for the assigned object" msgstr "Bu alanın değeri atanan nesne için benzersiz olmalıdır" -#: netbox/extras/models/customfields.py:140 +#: extras/models/customfields.py:140 msgid "search weight" msgstr "arama ağırlığı" -#: netbox/extras/models/customfields.py:143 +#: extras/models/customfields.py:143 msgid "" "Weighting for search. Lower values are considered more important. Fields " "with a search weight of zero will be ignored." @@ -8219,11 +7661,11 @@ msgstr "" "Arama için ağırlıklandırma. Düşük değerler daha önemli kabul edilir. Arama " "ağırlığı sıfır olan alanlar göz ardı edilecektir." -#: netbox/extras/models/customfields.py:148 +#: extras/models/customfields.py:148 msgid "filter logic" msgstr "filtre mantığı" -#: netbox/extras/models/customfields.py:152 +#: extras/models/customfields.py:152 msgid "" "Loose matches any instance of a given string; exact matches the entire " "field." @@ -8231,11 +7673,11 @@ msgstr "" "Loose, belirli bir dizgenin herhangi bir örneğiyle eşleşir; tam olarak tüm " "alanla eşleşir." -#: netbox/extras/models/customfields.py:155 +#: extras/models/customfields.py:155 msgid "default" msgstr "varsayılan" -#: netbox/extras/models/customfields.py:159 +#: extras/models/customfields.py:159 msgid "" "Default value for the field (must be a JSON value). Encapsulate strings with" " double quotes (e.g. \"Foo\")." @@ -8243,7 +7685,7 @@ msgstr "" "Alan için varsayılan değer (JSON değeri olmalıdır). Dizeleri çift tırnak " "işaretleriyle kapsülleyin (örn. “Foo”)." -#: netbox/extras/models/customfields.py:166 +#: extras/models/customfields.py:166 msgid "" "Filter the object selection choices using a query_params dict (must be a " "JSON value).Encapsulate strings with double quotes (e.g. \"Foo\")." @@ -8252,35 +7694,35 @@ msgstr "" "JSON değeri olmalıdır). Dizeleri çift tırnak işareti ile kapsülleyin (örn. " "“Foo”)." -#: netbox/extras/models/customfields.py:172 +#: extras/models/customfields.py:172 msgid "display weight" msgstr "ekran ağırlığı" -#: netbox/extras/models/customfields.py:173 +#: extras/models/customfields.py:173 msgid "Fields with higher weights appear lower in a form." msgstr "Daha yüksek ağırlığa sahip alanlar bir formda daha düşük görünür." -#: netbox/extras/models/customfields.py:178 +#: extras/models/customfields.py:178 msgid "minimum value" msgstr "minimum değer" -#: netbox/extras/models/customfields.py:179 +#: extras/models/customfields.py:179 msgid "Minimum allowed value (for numeric fields)" msgstr "İzin verilen minimum değer (sayısal alanlar için)" -#: netbox/extras/models/customfields.py:184 +#: extras/models/customfields.py:184 msgid "maximum value" msgstr "maksimum değer" -#: netbox/extras/models/customfields.py:185 +#: extras/models/customfields.py:185 msgid "Maximum allowed value (for numeric fields)" msgstr "İzin verilen maksimum değer (sayısal alanlar için)" -#: netbox/extras/models/customfields.py:191 +#: extras/models/customfields.py:191 msgid "validation regex" msgstr "doğrulama regex" -#: netbox/extras/models/customfields.py:193 +#: extras/models/customfields.py:193 #, python-brace-format msgid "" "Regular expression to enforce on text field values. Use ^ and $ to force " @@ -8291,192 +7733,190 @@ msgstr "" "zorlamak için ^ ve $ kullanın. Örneğin, ^ [A-Z]{3}$ değerleri " "tam olarak üç büyük harfle sınırlayacaktır." -#: netbox/extras/models/customfields.py:201 +#: extras/models/customfields.py:201 msgid "choice set" msgstr "seçim seti" -#: netbox/extras/models/customfields.py:210 +#: extras/models/customfields.py:210 msgid "Specifies whether the custom field is displayed in the UI" msgstr "" "Özel alanın kullanıcı arayüzünde görüntülenip görüntülenmeyeceğini belirtir" -#: netbox/extras/models/customfields.py:217 +#: extras/models/customfields.py:217 msgid "Specifies whether the custom field value can be edited in the UI" msgstr "" "Özel alan değerinin kullanıcı arayüzünde düzenlenip düzenlenemeyeceğini " "belirtir" -#: netbox/extras/models/customfields.py:221 +#: extras/models/customfields.py:221 msgid "is cloneable" msgstr "klonlanabilir" -#: netbox/extras/models/customfields.py:222 +#: extras/models/customfields.py:222 msgid "Replicate this value when cloning objects" msgstr "Nesneleri klonlarken bu değeri çoğaltın" -#: netbox/extras/models/customfields.py:239 +#: extras/models/customfields.py:239 msgid "custom field" msgstr "özel alan" -#: netbox/extras/models/customfields.py:240 +#: extras/models/customfields.py:240 msgid "custom fields" msgstr "özel alanlar" -#: netbox/extras/models/customfields.py:329 +#: extras/models/customfields.py:329 #, python-brace-format msgid "Invalid default value \"{value}\": {error}" msgstr "Geçersiz varsayılan değer”{value}“: {error}" -#: netbox/extras/models/customfields.py:336 +#: extras/models/customfields.py:336 msgid "A minimum value may be set only for numeric fields" msgstr "Minimum değer yalnızca sayısal alanlar için ayarlanabilir" -#: netbox/extras/models/customfields.py:338 +#: extras/models/customfields.py:338 msgid "A maximum value may be set only for numeric fields" msgstr "Maksimum değer yalnızca sayısal alanlar için ayarlanabilir" -#: netbox/extras/models/customfields.py:348 +#: extras/models/customfields.py:348 msgid "" "Regular expression validation is supported only for text and URL fields" msgstr "" "Düzenli ifade doğrulaması yalnızca metin ve URL alanları için desteklenir" -#: netbox/extras/models/customfields.py:354 +#: extras/models/customfields.py:354 msgid "Uniqueness cannot be enforced for boolean fields" msgstr "Boole alanları için benzersizlik uygulanamaz" -#: netbox/extras/models/customfields.py:364 +#: extras/models/customfields.py:364 msgid "Selection fields must specify a set of choices." msgstr "Seçim alanları bir dizi seçenek belirtmelidir." -#: netbox/extras/models/customfields.py:368 +#: extras/models/customfields.py:368 msgid "Choices may be set only on selection fields." msgstr "Seçenekler yalnızca seçim alanlarında ayarlanabilir." -#: netbox/extras/models/customfields.py:375 +#: extras/models/customfields.py:375 msgid "Object fields must define an object type." msgstr "Nesne alanları bir nesne türü tanımlamalıdır." -#: netbox/extras/models/customfields.py:379 +#: extras/models/customfields.py:379 #, python-brace-format msgid "{type} fields may not define an object type." msgstr "{type} alanlar bir nesne türü tanımlayamaz." -#: netbox/extras/models/customfields.py:386 +#: extras/models/customfields.py:386 msgid "A related object filter can be defined only for object fields." msgstr "" "İlgili bir nesne filtresi yalnızca nesne alanları için tanımlanabilir." -#: netbox/extras/models/customfields.py:390 +#: extras/models/customfields.py:390 msgid "Filter must be defined as a dictionary mapping attributes to values." msgstr "" "Filtre, öznitelikleri değerlerle eşleyen bir sözlük olarak tanımlanmalıdır." -#: netbox/extras/models/customfields.py:469 +#: extras/models/customfields.py:469 msgid "True" msgstr "Doğru" -#: netbox/extras/models/customfields.py:470 +#: extras/models/customfields.py:470 msgid "False" msgstr "Yanlış" -#: netbox/extras/models/customfields.py:560 +#: extras/models/customfields.py:560 #, python-brace-format msgid "Values must match this regex: {regex}" msgstr "Değerler bu normal ifadeyle eşleşmelidir: {regex}" -#: netbox/extras/models/customfields.py:654 +#: extras/models/customfields.py:654 msgid "Value must be a string." msgstr "Değer bir dize olmalıdır." -#: netbox/extras/models/customfields.py:656 +#: extras/models/customfields.py:656 #, python-brace-format msgid "Value must match regex '{regex}'" msgstr "Değer regex ile eşleşmelidir '{regex}'" -#: netbox/extras/models/customfields.py:661 +#: extras/models/customfields.py:661 msgid "Value must be an integer." msgstr "Değer bir tamsayı olmalıdır." -#: netbox/extras/models/customfields.py:664 -#: netbox/extras/models/customfields.py:679 +#: extras/models/customfields.py:664 extras/models/customfields.py:679 #, python-brace-format msgid "Value must be at least {minimum}" msgstr "Değer en az olmalıdır {minimum}" -#: netbox/extras/models/customfields.py:668 -#: netbox/extras/models/customfields.py:683 +#: extras/models/customfields.py:668 extras/models/customfields.py:683 #, python-brace-format msgid "Value must not exceed {maximum}" msgstr "Değer geçmemelidir {maximum}" -#: netbox/extras/models/customfields.py:676 +#: extras/models/customfields.py:676 msgid "Value must be a decimal." msgstr "Değer ondalık olmalıdır." -#: netbox/extras/models/customfields.py:688 +#: extras/models/customfields.py:688 msgid "Value must be true or false." msgstr "Değer doğru veya yanlış olmalıdır." -#: netbox/extras/models/customfields.py:696 +#: extras/models/customfields.py:696 msgid "Date values must be in ISO 8601 format (YYYY-MM-DD)." msgstr "Tarih değerleri ISO 8601 biçiminde olmalıdır (YYYY-AA-GG)." -#: netbox/extras/models/customfields.py:705 +#: extras/models/customfields.py:705 msgid "Date and time values must be in ISO 8601 format (YYYY-MM-DD HH:MM:SS)." msgstr "" "Tarih ve saat değerleri ISO 8601 biçiminde olmalıdır (YYYY-MM-DD HH:MM:SS)." -#: netbox/extras/models/customfields.py:712 +#: extras/models/customfields.py:712 #, python-brace-format msgid "Invalid choice ({value}) for choice set {choiceset}." msgstr "Geçersiz seçim ({value}) seçim seti için {choiceset}." -#: netbox/extras/models/customfields.py:722 +#: extras/models/customfields.py:722 #, python-brace-format msgid "Invalid choice(s) ({value}) for choice set {choiceset}." msgstr "Geçersiz seçim (ler) ({value}) seçim seti için {choiceset}." -#: netbox/extras/models/customfields.py:731 +#: extras/models/customfields.py:731 #, python-brace-format msgid "Value must be an object ID, not {type}" msgstr "Değer bir nesne kimliği olmalıdır, değil {type}" -#: netbox/extras/models/customfields.py:737 +#: extras/models/customfields.py:737 #, python-brace-format msgid "Value must be a list of object IDs, not {type}" msgstr "Değer, nesne kimliklerinin bir listesi olmalıdır, değil {type}" -#: netbox/extras/models/customfields.py:741 +#: extras/models/customfields.py:741 #, python-brace-format msgid "Found invalid object ID: {id}" msgstr "Geçersiz nesne kimliği bulundu: {id}" -#: netbox/extras/models/customfields.py:744 +#: extras/models/customfields.py:744 msgid "Required field cannot be empty." msgstr "Zorunlu alan boş olamaz." -#: netbox/extras/models/customfields.py:763 +#: extras/models/customfields.py:763 msgid "Base set of predefined choices (optional)" msgstr "Önceden tanımlanmış seçeneklerin temel kümesi (isteğe bağlı)" -#: netbox/extras/models/customfields.py:775 +#: extras/models/customfields.py:775 msgid "Choices are automatically ordered alphabetically" msgstr "Seçenekler otomatik olarak alfabetik olarak sıralanır" -#: netbox/extras/models/customfields.py:782 +#: extras/models/customfields.py:782 msgid "custom field choice set" msgstr "özel alan seçim kümesi" -#: netbox/extras/models/customfields.py:783 +#: extras/models/customfields.py:783 msgid "custom field choice sets" msgstr "özel alan seçim kümeleri" -#: netbox/extras/models/customfields.py:825 +#: extras/models/customfields.py:825 msgid "Must define base or extra choices." msgstr "Temel veya ekstra seçenekleri tanımlamalıdır." -#: netbox/extras/models/customfields.py:849 +#: extras/models/customfields.py:849 #, python-brace-format msgid "" "Cannot remove choice {choice} as there are {model} objects which reference " @@ -8485,60 +7925,60 @@ msgstr "" "Seçim kaldırılamıyor {choice} olduğu gibi {model} Ona referans veren " "nesneler." -#: netbox/extras/models/dashboard.py:18 +#: extras/models/dashboard.py:18 msgid "layout" msgstr "plan" -#: netbox/extras/models/dashboard.py:22 +#: extras/models/dashboard.py:22 msgid "config" msgstr "yapılandırma" -#: netbox/extras/models/dashboard.py:27 +#: extras/models/dashboard.py:27 msgid "dashboard" msgstr "gösterge paneli" -#: netbox/extras/models/dashboard.py:28 +#: extras/models/dashboard.py:28 msgid "dashboards" msgstr "gösterge tabloları" -#: netbox/extras/models/models.py:52 +#: extras/models/models.py:52 msgid "object types" msgstr "nesne türleri" -#: netbox/extras/models/models.py:53 +#: extras/models/models.py:53 msgid "The object(s) to which this rule applies." msgstr "Bu kuralın geçerli olduğu nesne (ler) dir." -#: netbox/extras/models/models.py:67 +#: extras/models/models.py:67 msgid "The types of event which will trigger this rule." msgstr "Bu kuralı tetikleyecek olay türleri." -#: netbox/extras/models/models.py:74 +#: extras/models/models.py:74 msgid "conditions" msgstr "koşullar" -#: netbox/extras/models/models.py:77 +#: extras/models/models.py:77 msgid "" "A set of conditions which determine whether the event will be generated." msgstr "Olayın oluşturulup oluşturulmayacağını belirleyen bir dizi koşul." -#: netbox/extras/models/models.py:85 +#: extras/models/models.py:85 msgid "action type" msgstr "eylem türü" -#: netbox/extras/models/models.py:104 +#: extras/models/models.py:104 msgid "Additional data to pass to the action object" msgstr "Eylem nesnesine iletilecek ek veriler" -#: netbox/extras/models/models.py:116 +#: extras/models/models.py:116 msgid "event rule" msgstr "olay kuralı" -#: netbox/extras/models/models.py:117 +#: extras/models/models.py:117 msgid "event rules" msgstr "etkinlik kuralları" -#: netbox/extras/models/models.py:166 +#: extras/models/models.py:166 msgid "" "This URL will be called using the HTTP method defined when the webhook is " "called. Jinja2 template processing is supported with the same context as the" @@ -8548,7 +7988,7 @@ msgstr "" "çağrılacaktır. Jinja2 şablon işleme, istek gövdesi ile aynı bağlamda " "desteklenir." -#: netbox/extras/models/models.py:181 +#: extras/models/models.py:181 msgid "" "The complete list of official content types is available burada." -#: netbox/extras/models/models.py:186 +#: extras/models/models.py:186 msgid "additional headers" msgstr "ek başlıklar" -#: netbox/extras/models/models.py:189 +#: extras/models/models.py:189 msgid "" "User-supplied HTTP headers to be sent with the request in addition to the " "HTTP content type. Headers should be defined in the format Name: " @@ -8574,11 +8014,11 @@ msgstr "" "İsim: Değer. Jinja2 şablon işleme, istek gövdesi ile aynı " "bağlamda desteklenir (aşağıda)." -#: netbox/extras/models/models.py:195 +#: extras/models/models.py:195 msgid "body template" msgstr "vücut şablonu" -#: netbox/extras/models/models.py:198 +#: extras/models/models.py:198 msgid "" "Jinja2 template for a custom request body. If blank, a JSON object " "representing the change will be included. Available context data includes: " @@ -8591,11 +8031,11 @@ msgstr "" "Kullanıcı adı, istek_kimliği, ve " "veri." -#: netbox/extras/models/models.py:204 +#: extras/models/models.py:204 msgid "secret" msgstr "gizli" -#: netbox/extras/models/models.py:208 +#: extras/models/models.py:208 msgid "" "When provided, the request will include a X-Hook-Signature " "header containing a HMAC hex digest of the payload body using the secret as " @@ -8605,16 +8045,16 @@ msgstr "" "olarak sırrı kullanan yük gövdesinin bir HMAC hex özetini içeren başlık. Sır" " istekte iletilmez." -#: netbox/extras/models/models.py:215 +#: extras/models/models.py:215 msgid "Enable SSL certificate verification. Disable with caution!" msgstr "" "SSL sertifikası doğrulamasını etkinleştirin. Dikkatle devre dışı bırakın!" -#: netbox/extras/models/models.py:221 netbox/templates/extras/webhook.html:51 +#: extras/models/models.py:221 templates/extras/webhook.html:51 msgid "CA File Path" msgstr "CA Dosya Yolu" -#: netbox/extras/models/models.py:223 +#: extras/models/models.py:223 msgid "" "The specific CA certificate file to use for SSL verification. Leave blank to" " use the system defaults." @@ -8622,65 +8062,65 @@ msgstr "" "SSL doğrulaması için kullanılacak belirli CA sertifika dosyası. Sistem " "varsayılanlarını kullanmak için boş bırakın." -#: netbox/extras/models/models.py:234 +#: extras/models/models.py:234 msgid "webhook" msgstr "web kancası" -#: netbox/extras/models/models.py:235 +#: extras/models/models.py:235 msgid "webhooks" msgstr "web kancaları" -#: netbox/extras/models/models.py:253 +#: extras/models/models.py:253 msgid "Do not specify a CA certificate file if SSL verification is disabled." msgstr "" "SSL doğrulaması devre dışı bırakılmışsa bir CA sertifika dosyası " "belirtmeyin." -#: netbox/extras/models/models.py:293 +#: extras/models/models.py:293 msgid "The object type(s) to which this link applies." msgstr "Bu bağlantının geçerli olduğu nesne türü (ler) dir." -#: netbox/extras/models/models.py:305 +#: extras/models/models.py:305 msgid "link text" msgstr "bağlantı metni" -#: netbox/extras/models/models.py:306 +#: extras/models/models.py:306 msgid "Jinja2 template code for link text" msgstr "Bağlantı metni için Jinja2 şablon kodu" -#: netbox/extras/models/models.py:309 +#: extras/models/models.py:309 msgid "link URL" msgstr "bağlantı URL'si" -#: netbox/extras/models/models.py:310 +#: extras/models/models.py:310 msgid "Jinja2 template code for link URL" msgstr "Bağlantı URL'si için Jinja2 şablon kodu" -#: netbox/extras/models/models.py:320 +#: extras/models/models.py:320 msgid "Links with the same group will appear as a dropdown menu" msgstr "Aynı gruba sahip bağlantılar açılır menü olarak görünecektir" -#: netbox/extras/models/models.py:330 +#: extras/models/models.py:330 msgid "new window" msgstr "yeni pencere" -#: netbox/extras/models/models.py:332 +#: extras/models/models.py:332 msgid "Force link to open in a new window" msgstr "Bağlantıyı yeni bir pencerede açmaya zorla" -#: netbox/extras/models/models.py:341 +#: extras/models/models.py:341 msgid "custom link" msgstr "özel bağlantı" -#: netbox/extras/models/models.py:342 +#: extras/models/models.py:342 msgid "custom links" msgstr "özel bağlantılar" -#: netbox/extras/models/models.py:389 +#: extras/models/models.py:389 msgid "The object type(s) to which this template applies." msgstr "Bu şablonun uygulandığı nesne türü (ler) dir." -#: netbox/extras/models/models.py:402 +#: extras/models/models.py:402 msgid "" "Jinja2 template code. The list of objects being exported is passed as a " "context variable named queryset." @@ -8688,1114 +8128,1078 @@ msgstr "" "Jinja2 şablon kodu. Dışa aktarılan nesnelerin listesi, adı verilen bir " "bağlam değişkeni olarak iletilir sorgulama." -#: netbox/extras/models/models.py:410 +#: extras/models/models.py:410 msgid "Defaults to text/plain; charset=utf-8" msgstr "Varsayılan olarak metin/düz; karakter kümesi = utf-8" -#: netbox/extras/models/models.py:413 +#: extras/models/models.py:413 msgid "file extension" msgstr "dosya uzantısı" -#: netbox/extras/models/models.py:416 +#: extras/models/models.py:416 msgid "Extension to append to the rendered filename" msgstr "Oluşturulan dosya adına eklenecek uzantı" -#: netbox/extras/models/models.py:419 +#: extras/models/models.py:419 msgid "as attachment" msgstr "ek olarak" -#: netbox/extras/models/models.py:421 +#: extras/models/models.py:421 msgid "Download file as attachment" msgstr "Dosya ek olarak indir" -#: netbox/extras/models/models.py:430 +#: extras/models/models.py:430 msgid "export template" msgstr "dışa aktarma şablonu" -#: netbox/extras/models/models.py:431 +#: extras/models/models.py:431 msgid "export templates" msgstr "dışa aktarma şablonları" -#: netbox/extras/models/models.py:448 +#: extras/models/models.py:448 #, python-brace-format msgid "\"{name}\" is a reserved name. Please choose a different name." msgstr "“{name}“ayrılmış bir isimdir. Lütfen farklı bir isim seçin." -#: netbox/extras/models/models.py:498 +#: extras/models/models.py:498 msgid "The object type(s) to which this filter applies." msgstr "Bu filtrenin uygulandığı nesne türü (ler) dir." -#: netbox/extras/models/models.py:530 +#: extras/models/models.py:530 msgid "shared" msgstr "paylaşılan" -#: netbox/extras/models/models.py:543 +#: extras/models/models.py:543 msgid "saved filter" msgstr "kaydedilmiş filtre" -#: netbox/extras/models/models.py:544 +#: extras/models/models.py:544 msgid "saved filters" msgstr "kaydedilmiş filtreler" -#: netbox/extras/models/models.py:562 +#: extras/models/models.py:562 msgid "Filter parameters must be stored as a dictionary of keyword arguments." msgstr "" "Filtre parametreleri, anahtar kelime argümanları sözlüğü olarak " "saklanmalıdır." -#: netbox/extras/models/models.py:590 +#: extras/models/models.py:590 msgid "image height" msgstr "görüntü yüksekliği" -#: netbox/extras/models/models.py:593 +#: extras/models/models.py:593 msgid "image width" msgstr "görüntü genişliği" -#: netbox/extras/models/models.py:610 +#: extras/models/models.py:610 msgid "image attachment" msgstr "görüntü eki" -#: netbox/extras/models/models.py:611 +#: extras/models/models.py:611 msgid "image attachments" msgstr "görüntü ekleri" -#: netbox/extras/models/models.py:625 +#: extras/models/models.py:625 #, python-brace-format msgid "Image attachments cannot be assigned to this object type ({type})." msgstr "Görüntü ekleri bu nesne türüne atanamaz ({type})." -#: netbox/extras/models/models.py:688 +#: extras/models/models.py:688 msgid "kind" msgstr "çeşit" -#: netbox/extras/models/models.py:702 +#: extras/models/models.py:702 msgid "journal entry" msgstr "dergi girişi" -#: netbox/extras/models/models.py:703 +#: extras/models/models.py:703 msgid "journal entries" msgstr "dergi girişleri" -#: netbox/extras/models/models.py:718 +#: extras/models/models.py:718 #, python-brace-format msgid "Journaling is not supported for this object type ({type})." msgstr "Günlüğe kaydetme bu nesne türü için desteklenmez ({type})." -#: netbox/extras/models/models.py:760 +#: extras/models/models.py:760 msgid "bookmark" msgstr "yer imi" -#: netbox/extras/models/models.py:761 +#: extras/models/models.py:761 msgid "bookmarks" msgstr "yer imleri" -#: netbox/extras/models/models.py:774 +#: extras/models/models.py:774 #, python-brace-format msgid "Bookmarks cannot be assigned to this object type ({type})." msgstr "Yer imleri bu nesne türüne atanamaz ({type})." -#: netbox/extras/models/notifications.py:43 +#: extras/models/notifications.py:43 msgid "read" msgstr "okumak" -#: netbox/extras/models/notifications.py:66 +#: extras/models/notifications.py:66 msgid "event" msgstr "olay" -#: netbox/extras/models/notifications.py:84 +#: extras/models/notifications.py:84 msgid "notification" msgstr "bildirim" -#: netbox/extras/models/notifications.py:85 +#: extras/models/notifications.py:85 msgid "notifications" msgstr "bildirimleri" -#: netbox/extras/models/notifications.py:99 -#: netbox/extras/models/notifications.py:234 +#: extras/models/notifications.py:99 extras/models/notifications.py:234 #, python-brace-format msgid "Objects of this type ({type}) do not support notifications." msgstr "Bu tür nesneler ({type}) bildirimleri desteklemez." -#: netbox/extras/models/notifications.py:137 netbox/users/models/users.py:58 -#: netbox/users/models/users.py:77 +#: extras/models/notifications.py:137 users/models/users.py:58 +#: users/models/users.py:77 msgid "groups" msgstr "gruplar" -#: netbox/extras/models/notifications.py:143 netbox/users/models/users.py:93 +#: extras/models/notifications.py:143 users/models/users.py:93 msgid "users" msgstr "kullanıcıları" -#: netbox/extras/models/notifications.py:152 +#: extras/models/notifications.py:152 msgid "notification group" msgstr "bildirim grubu" -#: netbox/extras/models/notifications.py:153 +#: extras/models/notifications.py:153 msgid "notification groups" msgstr "bildirim grupları" -#: netbox/extras/models/notifications.py:217 +#: extras/models/notifications.py:217 msgid "subscription" msgstr "abonelik" -#: netbox/extras/models/notifications.py:218 +#: extras/models/notifications.py:218 msgid "subscriptions" msgstr "abonelikler" -#: netbox/extras/models/scripts.py:42 +#: extras/models/scripts.py:42 msgid "is executable" msgstr "yürütülebilir" -#: netbox/extras/models/scripts.py:64 +#: extras/models/scripts.py:64 msgid "script" msgstr "senaryo" -#: netbox/extras/models/scripts.py:65 +#: extras/models/scripts.py:65 msgid "scripts" msgstr "senaryolar" -#: netbox/extras/models/scripts.py:111 +#: extras/models/scripts.py:111 msgid "script module" msgstr "komut dosyası modülü" -#: netbox/extras/models/scripts.py:112 +#: extras/models/scripts.py:112 msgid "script modules" msgstr "komut dosyası modülleri" -#: netbox/extras/models/search.py:22 +#: extras/models/search.py:22 msgid "timestamp" msgstr "zaman damgası" -#: netbox/extras/models/search.py:37 +#: extras/models/search.py:37 msgid "field" msgstr "tarla" -#: netbox/extras/models/search.py:45 +#: extras/models/search.py:45 msgid "value" msgstr "değer" -#: netbox/extras/models/search.py:56 +#: extras/models/search.py:56 msgid "cached value" msgstr "önbelleğe alınan değer" -#: netbox/extras/models/search.py:57 +#: extras/models/search.py:57 msgid "cached values" msgstr "önbelleğe alınan değerler" -#: netbox/extras/models/staging.py:44 +#: extras/models/staging.py:44 msgid "branch" msgstr "şube" -#: netbox/extras/models/staging.py:45 +#: extras/models/staging.py:45 msgid "branches" msgstr "dallar" -#: netbox/extras/models/staging.py:97 +#: extras/models/staging.py:97 msgid "staged change" msgstr "aşamalı değişim" -#: netbox/extras/models/staging.py:98 +#: extras/models/staging.py:98 msgid "staged changes" msgstr "aşamalı değişiklikler" -#: netbox/extras/models/tags.py:40 +#: extras/models/tags.py:40 msgid "The object type(s) to which this tag can be applied." msgstr "Bu etiketin uygulanabileceği nesne türü (ler) dir." -#: netbox/extras/models/tags.py:49 +#: extras/models/tags.py:49 msgid "tag" msgstr "etiket" -#: netbox/extras/models/tags.py:50 +#: extras/models/tags.py:50 msgid "tags" msgstr "etiketler" -#: netbox/extras/models/tags.py:78 +#: extras/models/tags.py:78 msgid "tagged item" msgstr "etiketli öğe" -#: netbox/extras/models/tags.py:79 +#: extras/models/tags.py:79 msgid "tagged items" msgstr "etiketli öğeler" -#: netbox/extras/scripts.py:429 +#: extras/scripts.py:429 msgid "Script Data" msgstr "Komut Dosyası Verileri" -#: netbox/extras/scripts.py:433 +#: extras/scripts.py:433 msgid "Script Execution Parameters" msgstr "Script Yürütme Parametreleri" -#: netbox/extras/tables/columns.py:12 -#: netbox/templates/htmx/notifications.html:18 +#: extras/tables/columns.py:12 templates/htmx/notifications.html:18 msgid "Dismiss" msgstr "Görevden alma" -#: netbox/extras/tables/tables.py:62 netbox/extras/tables/tables.py:159 -#: netbox/extras/tables/tables.py:184 netbox/extras/tables/tables.py:250 -#: netbox/extras/tables/tables.py:276 netbox/extras/tables/tables.py:412 -#: netbox/extras/tables/tables.py:446 -#: netbox/templates/extras/customfield.html:105 -#: netbox/templates/extras/eventrule.html:27 -#: netbox/templates/users/objectpermission.html:64 netbox/users/tables.py:80 +#: extras/tables/tables.py:62 extras/tables/tables.py:159 +#: extras/tables/tables.py:184 extras/tables/tables.py:250 +#: extras/tables/tables.py:276 extras/tables/tables.py:412 +#: extras/tables/tables.py:446 templates/extras/customfield.html:105 +#: templates/extras/eventrule.html:27 templates/users/objectpermission.html:64 +#: users/tables.py:80 msgid "Object Types" msgstr "Nesne Türleri" -#: netbox/extras/tables/tables.py:69 +#: extras/tables/tables.py:69 msgid "Validate Uniqueness" msgstr "Benzersizliği Doğrula" -#: netbox/extras/tables/tables.py:73 +#: extras/tables/tables.py:73 msgid "Visible" msgstr "Görünür" -#: netbox/extras/tables/tables.py:76 +#: extras/tables/tables.py:76 msgid "Editable" msgstr "Düzenlenebilir" -#: netbox/extras/tables/tables.py:82 +#: extras/tables/tables.py:82 msgid "Related Object Type" msgstr "İlgili Nesne Türü" -#: netbox/extras/tables/tables.py:86 -#: netbox/templates/extras/customfield.html:51 +#: extras/tables/tables.py:86 templates/extras/customfield.html:51 msgid "Choice Set" msgstr "Seçim Seti" -#: netbox/extras/tables/tables.py:94 +#: extras/tables/tables.py:94 msgid "Is Cloneable" msgstr "Klonlanabilir mi" -#: netbox/extras/tables/tables.py:98 -#: netbox/templates/extras/customfield.html:118 +#: extras/tables/tables.py:98 templates/extras/customfield.html:118 msgid "Minimum Value" msgstr "Minimum Değer" -#: netbox/extras/tables/tables.py:101 -#: netbox/templates/extras/customfield.html:122 +#: extras/tables/tables.py:101 templates/extras/customfield.html:122 msgid "Maximum Value" msgstr "Maksimum Değer" -#: netbox/extras/tables/tables.py:104 +#: extras/tables/tables.py:104 msgid "Validation Regex" msgstr "Doğrulama Regex" -#: netbox/extras/tables/tables.py:137 +#: extras/tables/tables.py:137 msgid "Count" msgstr "Saymak" -#: netbox/extras/tables/tables.py:140 +#: extras/tables/tables.py:140 msgid "Order Alphabetically" msgstr "Alfabetik olarak sıralayın" -#: netbox/extras/tables/tables.py:165 -#: netbox/templates/extras/customlink.html:33 +#: extras/tables/tables.py:165 templates/extras/customlink.html:33 msgid "New Window" msgstr "Yeni Pencere" -#: netbox/extras/tables/tables.py:187 +#: extras/tables/tables.py:187 msgid "As Attachment" msgstr "Ek Olarak" -#: netbox/extras/tables/tables.py:195 netbox/extras/tables/tables.py:487 -#: netbox/extras/tables/tables.py:522 netbox/templates/core/datafile.html:24 -#: netbox/templates/dcim/device/render_config.html:22 -#: netbox/templates/extras/configcontext.html:39 -#: netbox/templates/extras/configtemplate.html:31 -#: netbox/templates/extras/exporttemplate.html:45 -#: netbox/templates/generic/bulk_import.html:35 -#: netbox/templates/virtualization/virtualmachine/render_config.html:22 +#: extras/tables/tables.py:195 extras/tables/tables.py:487 +#: extras/tables/tables.py:522 templates/core/datafile.html:24 +#: templates/dcim/device/render_config.html:22 +#: templates/extras/configcontext.html:39 +#: templates/extras/configtemplate.html:31 +#: templates/extras/exporttemplate.html:45 +#: templates/generic/bulk_import.html:35 +#: templates/virtualization/virtualmachine/render_config.html:22 msgid "Data File" msgstr "Veri Dosyası" -#: netbox/extras/tables/tables.py:200 netbox/extras/tables/tables.py:499 -#: netbox/extras/tables/tables.py:527 +#: extras/tables/tables.py:200 extras/tables/tables.py:499 +#: extras/tables/tables.py:527 msgid "Synced" msgstr "Senkronize" -#: netbox/extras/tables/tables.py:227 +#: extras/tables/tables.py:227 msgid "Image" msgstr "Görüntü" -#: netbox/extras/tables/tables.py:232 +#: extras/tables/tables.py:232 msgid "Size (Bytes)" msgstr "Boyut (Bayt)" -#: netbox/extras/tables/tables.py:339 +#: extras/tables/tables.py:339 msgid "Read" msgstr "Okumak" -#: netbox/extras/tables/tables.py:382 +#: extras/tables/tables.py:382 msgid "SSL Validation" msgstr "SSL Doğrulama" -#: netbox/extras/tables/tables.py:418 -#: netbox/templates/extras/eventrule.html:37 +#: extras/tables/tables.py:418 templates/extras/eventrule.html:37 msgid "Event Types" msgstr "Etkinlik Türleri" -#: netbox/extras/tables/tables.py:535 netbox/netbox/navigation/menu.py:77 -#: netbox/templates/dcim/devicerole.html:8 +#: extras/tables/tables.py:535 netbox/navigation/menu.py:77 +#: templates/dcim/devicerole.html:8 msgid "Device Roles" msgstr "Cihaz Rolleri" -#: netbox/extras/tables/tables.py:587 +#: extras/tables/tables.py:587 msgid "Comments (Short)" msgstr "Yorumlar (Kısa)" -#: netbox/extras/tables/tables.py:606 netbox/extras/tables/tables.py:640 +#: extras/tables/tables.py:606 extras/tables/tables.py:640 msgid "Line" msgstr "Çizgi" -#: netbox/extras/tables/tables.py:613 netbox/extras/tables/tables.py:650 +#: extras/tables/tables.py:613 extras/tables/tables.py:650 msgid "Level" msgstr "Seviye" -#: netbox/extras/tables/tables.py:619 netbox/extras/tables/tables.py:659 +#: extras/tables/tables.py:619 extras/tables/tables.py:659 msgid "Message" msgstr "Mesaj" -#: netbox/extras/tables/tables.py:643 +#: extras/tables/tables.py:643 msgid "Method" msgstr "Yöntemi" -#: netbox/extras/validators.py:15 +#: extras/validators.py:15 #, python-format msgid "Ensure this value is equal to %(limit_value)s." msgstr "Bu değerin eşit olduğundan emin olun %(limit_value)s." -#: netbox/extras/validators.py:26 +#: extras/validators.py:26 #, python-format msgid "Ensure this value does not equal %(limit_value)s." msgstr "Bu değerin eşit olmadığından emin olun %(limit_value)s." -#: netbox/extras/validators.py:37 +#: extras/validators.py:37 msgid "This field must be empty." msgstr "Bu alan boş olmalıdır." -#: netbox/extras/validators.py:52 +#: extras/validators.py:52 msgid "This field must not be empty." msgstr "Bu alan boş olmamalıdır." -#: netbox/extras/validators.py:94 +#: extras/validators.py:94 msgid "Validation rules must be passed as a dictionary" msgstr "Doğrulama kuralları sözlük olarak geçirilmelidir" -#: netbox/extras/validators.py:119 +#: extras/validators.py:119 #, python-brace-format msgid "Custom validation failed for {attribute}: {exception}" msgstr "Özel doğrulama başarısız oldu {attribute}: {exception}" -#: netbox/extras/validators.py:133 +#: extras/validators.py:133 #, python-brace-format msgid "Invalid attribute \"{name}\" for request" msgstr "Geçersiz öznitelik”{name}“istek için" -#: netbox/extras/validators.py:150 +#: extras/validators.py:150 #, python-brace-format msgid "Invalid attribute \"{name}\" for {model}" msgstr "\"{name}\" niteliği {model} için geçerli değil." -#: netbox/extras/views.py:960 +#: extras/views.py:960 msgid "Your dashboard has been reset." msgstr "Kontrol paneliniz sıfırlandı." -#: netbox/extras/views.py:1006 +#: extras/views.py:1006 msgid "Added widget: " msgstr "Eklenen widget: " -#: netbox/extras/views.py:1047 +#: extras/views.py:1047 msgid "Updated widget: " msgstr "Güncellenmiş widget: " -#: netbox/extras/views.py:1083 +#: extras/views.py:1083 msgid "Deleted widget: " msgstr "Silinen widget: " -#: netbox/extras/views.py:1085 +#: extras/views.py:1085 msgid "Error deleting widget: " msgstr "Widget silinirken hata oluştu: " -#: netbox/extras/views.py:1172 +#: extras/views.py:1172 msgid "Unable to run script: RQ worker process not running." msgstr "Komut dosyası çalıştırılamıyor: RQ işçi işlemi çalışmıyor." -#: netbox/ipam/api/field_serializers.py:17 +#: ipam/api/field_serializers.py:17 msgid "Enter a valid IPv4 or IPv6 address with optional mask." msgstr "İsteğe bağlı maske ile geçerli bir IPv4 veya IPv6 adresi girin." -#: netbox/ipam/api/field_serializers.py:24 +#: ipam/api/field_serializers.py:24 #, python-brace-format msgid "Invalid IP address format: {data}" msgstr "Geçersiz IP adresi biçimi: {data}" -#: netbox/ipam/api/field_serializers.py:37 +#: ipam/api/field_serializers.py:37 msgid "Enter a valid IPv4 or IPv6 prefix and mask in CIDR notation." msgstr "CIDR gösteriminde geçerli bir IPv4 veya IPv6 öneki ve maske girin." -#: netbox/ipam/api/field_serializers.py:44 +#: ipam/api/field_serializers.py:44 #, python-brace-format msgid "Invalid IP prefix format: {data}" msgstr "Geçersiz IP önek biçimi: {data}" -#: netbox/ipam/api/views.py:358 +#: ipam/api/views.py:358 msgid "" "Insufficient space is available to accommodate the requested prefix size(s)" msgstr "İstenen önek boyutlarını barındırmak için yetersiz alan mevcut değil" -#: netbox/ipam/choices.py:30 +#: ipam/choices.py:30 msgid "Container" msgstr "Konteyner" -#: netbox/ipam/choices.py:72 +#: ipam/choices.py:72 msgid "DHCP" msgstr "DHCP" -#: netbox/ipam/choices.py:73 +#: ipam/choices.py:73 msgid "SLAAC" msgstr "ZÜMRÜT" -#: netbox/ipam/choices.py:89 +#: ipam/choices.py:89 msgid "Loopback" msgstr "Geri döngü" -#: netbox/ipam/choices.py:91 +#: ipam/choices.py:91 msgid "Anycast" msgstr "Anycast" -#: netbox/ipam/choices.py:115 +#: ipam/choices.py:115 msgid "Standard" msgstr "Standart" -#: netbox/ipam/choices.py:120 +#: ipam/choices.py:120 msgid "CheckPoint" msgstr "Kontrol Noktası" -#: netbox/ipam/choices.py:123 +#: ipam/choices.py:123 msgid "Cisco" msgstr "Cisco" -#: netbox/ipam/choices.py:137 +#: ipam/choices.py:137 msgid "Plaintext" msgstr "Düz metin" -#: netbox/ipam/fields.py:36 +#: ipam/fields.py:36 #, python-brace-format msgid "Invalid IP address format: {address}" msgstr "Geçersiz IP adresi biçimi: {address}" -#: netbox/ipam/filtersets.py:48 netbox/vpn/filtersets.py:304 +#: ipam/filtersets.py:48 vpn/filtersets.py:304 msgid "Import target" msgstr "Hedefi içe aktarma" -#: netbox/ipam/filtersets.py:54 netbox/vpn/filtersets.py:310 +#: ipam/filtersets.py:54 vpn/filtersets.py:310 msgid "Import target (name)" msgstr "Hedefi içe aktarma (isim)" -#: netbox/ipam/filtersets.py:59 netbox/vpn/filtersets.py:315 +#: ipam/filtersets.py:59 vpn/filtersets.py:315 msgid "Export target" msgstr "Dışa aktarma hedefi" -#: netbox/ipam/filtersets.py:65 netbox/vpn/filtersets.py:321 +#: ipam/filtersets.py:65 vpn/filtersets.py:321 msgid "Export target (name)" msgstr "Dışa aktarma hedefi (isim)" -#: netbox/ipam/filtersets.py:86 +#: ipam/filtersets.py:86 msgid "Importing VRF" msgstr "VRF'yi içe aktarma" -#: netbox/ipam/filtersets.py:92 +#: ipam/filtersets.py:92 msgid "Import VRF (RD)" msgstr "VRF'yi içe aktarın (RD)" -#: netbox/ipam/filtersets.py:97 +#: ipam/filtersets.py:97 msgid "Exporting VRF" msgstr "VRF'yi dışa aktarma" -#: netbox/ipam/filtersets.py:103 +#: ipam/filtersets.py:103 msgid "Export VRF (RD)" msgstr "VRF'yi (RD) dışa aktarma" -#: netbox/ipam/filtersets.py:108 +#: ipam/filtersets.py:108 msgid "Importing L2VPN" msgstr "L2VPN'i içe aktarma" -#: netbox/ipam/filtersets.py:114 +#: ipam/filtersets.py:114 msgid "Importing L2VPN (identifier)" msgstr "L2VPN'i içe aktarma (tanımlayıcı)" -#: netbox/ipam/filtersets.py:119 +#: ipam/filtersets.py:119 msgid "Exporting L2VPN" msgstr "L2VPN'i dışa aktarma" -#: netbox/ipam/filtersets.py:125 +#: ipam/filtersets.py:125 msgid "Exporting L2VPN (identifier)" msgstr "L2VPN'i dışa aktarma (tanımlayıcı)" -#: netbox/ipam/filtersets.py:155 netbox/ipam/filtersets.py:281 -#: netbox/ipam/forms/model_forms.py:229 netbox/ipam/tables/ip.py:212 -#: netbox/templates/ipam/prefix.html:12 +#: ipam/filtersets.py:155 ipam/filtersets.py:281 ipam/forms/model_forms.py:229 +#: ipam/tables/ip.py:212 templates/ipam/prefix.html:12 msgid "Prefix" msgstr "Önek" -#: netbox/ipam/filtersets.py:159 netbox/ipam/filtersets.py:198 -#: netbox/ipam/filtersets.py:221 +#: ipam/filtersets.py:159 ipam/filtersets.py:198 ipam/filtersets.py:221 msgid "RIR (ID)" msgstr "RİR (İD)" -#: netbox/ipam/filtersets.py:165 netbox/ipam/filtersets.py:204 -#: netbox/ipam/filtersets.py:227 +#: ipam/filtersets.py:165 ipam/filtersets.py:204 ipam/filtersets.py:227 msgid "RIR (slug)" msgstr "RIR (kısa ad)" -#: netbox/ipam/filtersets.py:285 +#: ipam/filtersets.py:285 msgid "Within prefix" msgstr "Önek içinde" -#: netbox/ipam/filtersets.py:289 +#: ipam/filtersets.py:289 msgid "Within and including prefix" msgstr "Önek içinde ve dahil olmak üzere" -#: netbox/ipam/filtersets.py:293 +#: ipam/filtersets.py:293 msgid "Prefixes which contain this prefix or IP" msgstr "Bu önek veya IP'yi içeren önekler" -#: netbox/ipam/filtersets.py:304 netbox/ipam/filtersets.py:572 -#: netbox/ipam/forms/bulk_edit.py:342 netbox/ipam/forms/filtersets.py:196 -#: netbox/ipam/forms/filtersets.py:331 +#: ipam/filtersets.py:304 ipam/filtersets.py:572 ipam/forms/bulk_edit.py:343 +#: ipam/forms/filtersets.py:196 ipam/forms/filtersets.py:331 msgid "Mask length" msgstr "Maske uzunluğu" -#: netbox/ipam/filtersets.py:373 netbox/vpn/filtersets.py:427 +#: ipam/filtersets.py:373 vpn/filtersets.py:427 msgid "VLAN (ID)" msgstr "VLAN (KİMLİĞİ)" -#: netbox/ipam/filtersets.py:377 netbox/vpn/filtersets.py:422 +#: ipam/filtersets.py:377 vpn/filtersets.py:422 msgid "VLAN number (1-4094)" msgstr "VLAN numarası (1-4094)" -#: netbox/ipam/filtersets.py:471 netbox/ipam/filtersets.py:475 -#: netbox/ipam/filtersets.py:567 netbox/ipam/forms/model_forms.py:463 -#: netbox/templates/tenancy/contact.html:53 -#: netbox/tenancy/forms/bulk_edit.py:113 +#: ipam/filtersets.py:471 ipam/filtersets.py:475 ipam/filtersets.py:567 +#: ipam/forms/model_forms.py:463 templates/tenancy/contact.html:53 +#: tenancy/forms/bulk_edit.py:113 msgid "Address" msgstr "Adres" -#: netbox/ipam/filtersets.py:479 +#: ipam/filtersets.py:479 msgid "Ranges which contain this prefix or IP" msgstr "Bu önek veya IP'yi içeren aralıklar" -#: netbox/ipam/filtersets.py:507 netbox/ipam/filtersets.py:563 +#: ipam/filtersets.py:507 ipam/filtersets.py:563 msgid "Parent prefix" msgstr "Ebeveyn öneki" -#: netbox/ipam/filtersets.py:616 netbox/ipam/filtersets.py:856 -#: netbox/ipam/filtersets.py:1131 netbox/vpn/filtersets.py:385 +#: ipam/filtersets.py:616 ipam/filtersets.py:856 ipam/filtersets.py:1131 +#: vpn/filtersets.py:385 msgid "Virtual machine (name)" msgstr "Sanal makine (isim)" -#: netbox/ipam/filtersets.py:621 netbox/ipam/filtersets.py:861 -#: netbox/ipam/filtersets.py:1125 netbox/virtualization/filtersets.py:282 -#: netbox/virtualization/filtersets.py:321 netbox/vpn/filtersets.py:390 +#: ipam/filtersets.py:621 ipam/filtersets.py:861 ipam/filtersets.py:1125 +#: virtualization/filtersets.py:282 virtualization/filtersets.py:321 +#: vpn/filtersets.py:390 msgid "Virtual machine (ID)" msgstr "Sanal makine (ID)" -#: netbox/ipam/filtersets.py:627 netbox/vpn/filtersets.py:97 -#: netbox/vpn/filtersets.py:396 +#: ipam/filtersets.py:627 vpn/filtersets.py:97 vpn/filtersets.py:396 msgid "Interface (name)" msgstr "Arayüz (isim)" -#: netbox/ipam/filtersets.py:638 netbox/vpn/filtersets.py:108 -#: netbox/vpn/filtersets.py:407 +#: ipam/filtersets.py:638 vpn/filtersets.py:108 vpn/filtersets.py:407 msgid "VM interface (name)" msgstr "VM arabirimi (isim)" -#: netbox/ipam/filtersets.py:643 netbox/vpn/filtersets.py:113 +#: ipam/filtersets.py:643 vpn/filtersets.py:113 msgid "VM interface (ID)" msgstr "VM arabirimi (ID)" -#: netbox/ipam/filtersets.py:648 +#: ipam/filtersets.py:648 msgid "FHRP group (ID)" msgstr "FHRP grubu (ID)" -#: netbox/ipam/filtersets.py:652 +#: ipam/filtersets.py:652 msgid "Is assigned to an interface" msgstr "Bir arayüze atanır" -#: netbox/ipam/filtersets.py:656 +#: ipam/filtersets.py:656 msgid "Is assigned" msgstr "Atanmıştır" -#: netbox/ipam/filtersets.py:668 +#: ipam/filtersets.py:668 msgid "Service (ID)" msgstr "Hizmet (ID)" -#: netbox/ipam/filtersets.py:673 +#: ipam/filtersets.py:673 msgid "NAT inside IP address (ID)" msgstr "IP adresi içinde NAT (ID)" -#: netbox/ipam/filtersets.py:1041 netbox/ipam/forms/bulk_import.py:322 +#: ipam/filtersets.py:1041 ipam/forms/bulk_import.py:322 msgid "Assigned interface" msgstr "Atanmış arayüz" -#: netbox/ipam/filtersets.py:1046 +#: ipam/filtersets.py:1046 msgid "Assigned VM interface" msgstr "Atanmış VM arabirimi" -#: netbox/ipam/filtersets.py:1136 +#: ipam/filtersets.py:1136 msgid "IP address (ID)" msgstr "IP adresi (ID)" -#: netbox/ipam/filtersets.py:1142 netbox/ipam/models/ip.py:788 +#: ipam/filtersets.py:1142 ipam/models/ip.py:788 msgid "IP address" msgstr "IP adresi" -#: netbox/ipam/filtersets.py:1167 +#: ipam/filtersets.py:1167 msgid "Primary IPv4 (ID)" msgstr "Birincil IPv4 (ID)" -#: netbox/ipam/filtersets.py:1172 +#: ipam/filtersets.py:1172 msgid "Primary IPv6 (ID)" msgstr "Birincil IPv6 (ID)" -#: netbox/ipam/formfields.py:14 +#: ipam/formfields.py:14 msgid "Enter a valid IPv4 or IPv6 address (without a mask)." msgstr "Geçerli bir IPv4 veya IPv6 adresi girin (maske olmadan)." -#: netbox/ipam/formfields.py:32 +#: ipam/formfields.py:32 #, python-brace-format msgid "Invalid IPv4/IPv6 address format: {address}" msgstr "Geçersiz IPv4/IPv6 adres biçimi: {address}" -#: netbox/ipam/formfields.py:37 +#: ipam/formfields.py:37 msgid "This field requires an IP address without a mask." msgstr "Bu alan maskesiz bir IP adresi gerektirir." -#: netbox/ipam/formfields.py:39 netbox/ipam/formfields.py:61 +#: ipam/formfields.py:39 ipam/formfields.py:61 msgid "Please specify a valid IPv4 or IPv6 address." msgstr "Lütfen geçerli bir IPv4 veya IPv6 adresi belirtin." -#: netbox/ipam/formfields.py:44 +#: ipam/formfields.py:44 msgid "Enter a valid IPv4 or IPv6 address (with CIDR mask)." msgstr "Geçerli bir IPv4 veya IPv6 adresi girin (CIDR maskesi ile)." -#: netbox/ipam/formfields.py:56 +#: ipam/formfields.py:56 msgid "CIDR mask (e.g. /24) is required." msgstr "CIDR maskesi (örn. /24) gereklidir." -#: netbox/ipam/forms/bulk_create.py:13 +#: ipam/forms/bulk_create.py:13 msgid "Address pattern" msgstr "Adres deseni" -#: netbox/ipam/forms/bulk_edit.py:49 +#: ipam/forms/bulk_edit.py:50 msgid "Enforce unique space" msgstr "Benzersiz alanı uygulayın" -#: netbox/ipam/forms/bulk_edit.py:87 +#: ipam/forms/bulk_edit.py:88 msgid "Is private" msgstr "Özeldir" -#: netbox/ipam/forms/bulk_edit.py:108 netbox/ipam/forms/bulk_edit.py:137 -#: netbox/ipam/forms/bulk_edit.py:162 netbox/ipam/forms/bulk_import.py:89 -#: netbox/ipam/forms/bulk_import.py:109 netbox/ipam/forms/bulk_import.py:129 -#: netbox/ipam/forms/filtersets.py:110 netbox/ipam/forms/filtersets.py:125 -#: netbox/ipam/forms/filtersets.py:148 netbox/ipam/forms/model_forms.py:96 -#: netbox/ipam/forms/model_forms.py:109 netbox/ipam/forms/model_forms.py:131 -#: netbox/ipam/forms/model_forms.py:149 netbox/ipam/models/asns.py:31 -#: netbox/ipam/models/asns.py:103 netbox/ipam/models/ip.py:71 -#: netbox/ipam/models/ip.py:90 netbox/ipam/tables/asn.py:20 -#: netbox/ipam/tables/asn.py:45 netbox/templates/ipam/aggregate.html:18 -#: netbox/templates/ipam/asn.html:27 netbox/templates/ipam/asnrange.html:19 -#: netbox/templates/ipam/rir.html:19 +#: ipam/forms/bulk_edit.py:109 ipam/forms/bulk_edit.py:138 +#: ipam/forms/bulk_edit.py:163 ipam/forms/bulk_import.py:89 +#: ipam/forms/bulk_import.py:109 ipam/forms/bulk_import.py:129 +#: ipam/forms/filtersets.py:110 ipam/forms/filtersets.py:125 +#: ipam/forms/filtersets.py:148 ipam/forms/model_forms.py:96 +#: ipam/forms/model_forms.py:109 ipam/forms/model_forms.py:131 +#: ipam/forms/model_forms.py:149 ipam/models/asns.py:31 +#: ipam/models/asns.py:103 ipam/models/ip.py:71 ipam/models/ip.py:90 +#: ipam/tables/asn.py:20 ipam/tables/asn.py:45 +#: templates/ipam/aggregate.html:18 templates/ipam/asn.html:27 +#: templates/ipam/asnrange.html:19 templates/ipam/rir.html:19 msgid "RIR" msgstr "ZIVIR" -#: netbox/ipam/forms/bulk_edit.py:170 +#: ipam/forms/bulk_edit.py:171 msgid "Date added" msgstr "Eklenen tarih" -#: netbox/ipam/forms/bulk_edit.py:228 netbox/ipam/forms/model_forms.py:586 -#: netbox/ipam/forms/model_forms.py:633 netbox/ipam/tables/ip.py:251 -#: netbox/templates/ipam/vlan_edit.html:37 -#: netbox/templates/ipam/vlangroup.html:27 +#: ipam/forms/bulk_edit.py:229 ipam/forms/model_forms.py:586 +#: ipam/forms/model_forms.py:633 ipam/tables/ip.py:251 +#: templates/ipam/vlan_edit.html:37 templates/ipam/vlangroup.html:27 msgid "VLAN Group" msgstr "VLAN Grubu" -#: netbox/ipam/forms/bulk_edit.py:233 netbox/ipam/forms/bulk_import.py:185 -#: netbox/ipam/forms/filtersets.py:256 netbox/ipam/forms/model_forms.py:218 -#: netbox/ipam/models/vlans.py:234 netbox/ipam/tables/ip.py:255 -#: netbox/templates/ipam/prefix.html:60 netbox/templates/ipam/vlan.html:12 -#: netbox/templates/ipam/vlan/base.html:6 -#: netbox/templates/ipam/vlan_edit.html:10 -#: netbox/templates/wireless/wirelesslan.html:30 -#: netbox/vpn/forms/bulk_import.py:304 netbox/vpn/forms/filtersets.py:284 -#: netbox/vpn/forms/model_forms.py:433 netbox/vpn/forms/model_forms.py:452 -#: netbox/wireless/forms/bulk_edit.py:55 -#: netbox/wireless/forms/bulk_import.py:48 -#: netbox/wireless/forms/model_forms.py:48 netbox/wireless/models.py:102 +#: ipam/forms/bulk_edit.py:234 ipam/forms/bulk_import.py:185 +#: ipam/forms/filtersets.py:256 ipam/forms/model_forms.py:218 +#: ipam/models/vlans.py:234 ipam/tables/ip.py:255 +#: templates/ipam/prefix.html:60 templates/ipam/vlan.html:12 +#: templates/ipam/vlan/base.html:6 templates/ipam/vlan_edit.html:10 +#: templates/wireless/wirelesslan.html:30 vpn/forms/bulk_import.py:304 +#: vpn/forms/filtersets.py:284 vpn/forms/model_forms.py:433 +#: vpn/forms/model_forms.py:452 wireless/forms/bulk_edit.py:55 +#: wireless/forms/bulk_import.py:48 wireless/forms/model_forms.py:48 +#: wireless/models.py:102 msgid "VLAN" msgstr "VLAN" -#: netbox/ipam/forms/bulk_edit.py:244 +#: ipam/forms/bulk_edit.py:245 msgid "Prefix length" msgstr "Önek uzunluğu" -#: netbox/ipam/forms/bulk_edit.py:267 netbox/ipam/forms/filtersets.py:241 -#: netbox/templates/ipam/prefix.html:85 +#: ipam/forms/bulk_edit.py:268 ipam/forms/filtersets.py:241 +#: templates/ipam/prefix.html:85 msgid "Is a pool" msgstr "Havuz mu" -#: netbox/ipam/forms/bulk_edit.py:272 netbox/ipam/forms/bulk_edit.py:317 -#: netbox/ipam/forms/filtersets.py:248 netbox/ipam/forms/filtersets.py:293 -#: netbox/ipam/models/ip.py:272 netbox/ipam/models/ip.py:539 +#: ipam/forms/bulk_edit.py:273 ipam/forms/bulk_edit.py:318 +#: ipam/forms/filtersets.py:248 ipam/forms/filtersets.py:293 +#: ipam/models/ip.py:272 ipam/models/ip.py:539 msgid "Treat as fully utilized" msgstr "Tamamen kullanılmış gibi davran" -#: netbox/ipam/forms/bulk_edit.py:286 netbox/ipam/forms/filtersets.py:171 +#: ipam/forms/bulk_edit.py:287 ipam/forms/filtersets.py:171 msgid "VLAN Assignment" msgstr "VLAN Ataması" -#: netbox/ipam/forms/bulk_edit.py:365 netbox/ipam/models/ip.py:772 +#: ipam/forms/bulk_edit.py:366 ipam/models/ip.py:772 msgid "DNS name" msgstr "DNS adı" -#: netbox/ipam/forms/bulk_edit.py:386 netbox/ipam/forms/bulk_edit.py:579 -#: netbox/ipam/forms/bulk_import.py:394 netbox/ipam/forms/bulk_import.py:469 -#: netbox/ipam/forms/bulk_import.py:495 netbox/ipam/forms/filtersets.py:390 -#: netbox/ipam/forms/filtersets.py:530 netbox/templates/ipam/fhrpgroup.html:22 -#: netbox/templates/ipam/inc/panels/fhrp_groups.html:24 -#: netbox/templates/ipam/service.html:32 -#: netbox/templates/ipam/servicetemplate.html:19 +#: ipam/forms/bulk_edit.py:387 ipam/forms/bulk_edit.py:534 +#: ipam/forms/bulk_import.py:394 ipam/forms/bulk_import.py:469 +#: ipam/forms/bulk_import.py:495 ipam/forms/filtersets.py:390 +#: ipam/forms/filtersets.py:530 templates/ipam/fhrpgroup.html:22 +#: templates/ipam/inc/panels/fhrp_groups.html:24 +#: templates/ipam/service.html:32 templates/ipam/servicetemplate.html:19 msgid "Protocol" msgstr "Protokol" -#: netbox/ipam/forms/bulk_edit.py:393 netbox/ipam/forms/filtersets.py:397 -#: netbox/ipam/tables/fhrp.py:22 netbox/templates/ipam/fhrpgroup.html:26 +#: ipam/forms/bulk_edit.py:394 ipam/forms/filtersets.py:397 +#: ipam/tables/fhrp.py:22 templates/ipam/fhrpgroup.html:26 msgid "Group ID" msgstr "Grup Kimliği" -#: netbox/ipam/forms/bulk_edit.py:398 netbox/ipam/forms/filtersets.py:402 -#: netbox/wireless/forms/bulk_edit.py:68 -#: netbox/wireless/forms/bulk_edit.py:115 -#: netbox/wireless/forms/bulk_import.py:62 -#: netbox/wireless/forms/bulk_import.py:65 -#: netbox/wireless/forms/bulk_import.py:104 -#: netbox/wireless/forms/bulk_import.py:107 -#: netbox/wireless/forms/filtersets.py:54 -#: netbox/wireless/forms/filtersets.py:88 +#: ipam/forms/bulk_edit.py:399 ipam/forms/filtersets.py:402 +#: wireless/forms/bulk_edit.py:68 wireless/forms/bulk_edit.py:115 +#: wireless/forms/bulk_import.py:62 wireless/forms/bulk_import.py:65 +#: wireless/forms/bulk_import.py:104 wireless/forms/bulk_import.py:107 +#: wireless/forms/filtersets.py:54 wireless/forms/filtersets.py:88 msgid "Authentication type" msgstr "Kimlik doğrulama türü" -#: netbox/ipam/forms/bulk_edit.py:403 netbox/ipam/forms/filtersets.py:406 +#: ipam/forms/bulk_edit.py:404 ipam/forms/filtersets.py:406 msgid "Authentication key" msgstr "Kimlik doğrulama anahtarı" -#: netbox/ipam/forms/bulk_edit.py:420 netbox/ipam/forms/filtersets.py:383 -#: netbox/ipam/forms/model_forms.py:474 netbox/netbox/navigation/menu.py:386 -#: netbox/templates/ipam/fhrpgroup.html:49 -#: netbox/templates/wireless/inc/authentication_attrs.html:5 -#: netbox/wireless/forms/bulk_edit.py:91 -#: netbox/wireless/forms/bulk_edit.py:149 -#: netbox/wireless/forms/filtersets.py:36 -#: netbox/wireless/forms/filtersets.py:76 -#: netbox/wireless/forms/model_forms.py:55 -#: netbox/wireless/forms/model_forms.py:171 +#: ipam/forms/bulk_edit.py:421 ipam/forms/filtersets.py:383 +#: ipam/forms/model_forms.py:474 netbox/navigation/menu.py:386 +#: templates/ipam/fhrpgroup.html:49 +#: templates/wireless/inc/authentication_attrs.html:5 +#: wireless/forms/bulk_edit.py:91 wireless/forms/bulk_edit.py:149 +#: wireless/forms/filtersets.py:36 wireless/forms/filtersets.py:76 +#: wireless/forms/model_forms.py:55 wireless/forms/model_forms.py:171 msgid "Authentication" msgstr "Kimlik Doğrulama" -#: netbox/ipam/forms/bulk_edit.py:432 netbox/ipam/forms/model_forms.py:575 +#: ipam/forms/bulk_edit.py:436 ipam/forms/model_forms.py:575 msgid "Scope type" msgstr "Kapsam türü" -#: netbox/ipam/forms/bulk_edit.py:490 netbox/ipam/models/vlans.py:60 -msgid "VLAN ID ranges" -msgstr "VLAN ID aralıkları" - -#: netbox/ipam/forms/bulk_edit.py:498 netbox/ipam/forms/model_forms.py:578 -#: netbox/ipam/forms/model_forms.py:588 netbox/ipam/tables/vlans.py:71 -#: netbox/templates/ipam/vlangroup.html:38 +#: ipam/forms/bulk_edit.py:439 ipam/forms/bulk_edit.py:453 +#: ipam/forms/model_forms.py:578 ipam/forms/model_forms.py:588 +#: ipam/tables/vlans.py:71 templates/ipam/vlangroup.html:38 msgid "Scope" msgstr "Kapsam" -#: netbox/ipam/forms/bulk_edit.py:570 +#: ipam/forms/bulk_edit.py:446 ipam/models/vlans.py:60 +msgid "VLAN ID ranges" +msgstr "VLAN ID aralıkları" + +#: ipam/forms/bulk_edit.py:525 msgid "Site & Group" msgstr "Site ve Grup" -#: netbox/ipam/forms/bulk_edit.py:584 netbox/ipam/forms/model_forms.py:659 -#: netbox/ipam/forms/model_forms.py:691 netbox/ipam/tables/services.py:19 -#: netbox/ipam/tables/services.py:49 netbox/templates/ipam/service.html:36 -#: netbox/templates/ipam/servicetemplate.html:23 +#: ipam/forms/bulk_edit.py:539 ipam/forms/model_forms.py:659 +#: ipam/forms/model_forms.py:691 ipam/tables/services.py:19 +#: ipam/tables/services.py:49 templates/ipam/service.html:36 +#: templates/ipam/servicetemplate.html:23 msgid "Ports" msgstr "Limanlar" -#: netbox/ipam/forms/bulk_import.py:48 +#: ipam/forms/bulk_import.py:48 msgid "Import route targets" msgstr "Rota hedeflerini içe aktarma" -#: netbox/ipam/forms/bulk_import.py:54 +#: ipam/forms/bulk_import.py:54 msgid "Export route targets" msgstr "Rota hedeflerini dışa aktarma" -#: netbox/ipam/forms/bulk_import.py:92 netbox/ipam/forms/bulk_import.py:112 -#: netbox/ipam/forms/bulk_import.py:132 +#: ipam/forms/bulk_import.py:92 ipam/forms/bulk_import.py:112 +#: ipam/forms/bulk_import.py:132 msgid "Assigned RIR" msgstr "Atanmış RIR" -#: netbox/ipam/forms/bulk_import.py:182 +#: ipam/forms/bulk_import.py:182 msgid "VLAN's group (if any)" msgstr "VLAN grubu (varsa)" -#: netbox/ipam/forms/bulk_import.py:308 +#: ipam/forms/bulk_import.py:308 msgid "Parent device of assigned interface (if any)" msgstr "Atanan arayüzün ana cihazı (varsa)" -#: netbox/ipam/forms/bulk_import.py:311 netbox/ipam/forms/bulk_import.py:488 -#: netbox/ipam/forms/model_forms.py:685 -#: netbox/virtualization/filtersets.py:288 -#: netbox/virtualization/filtersets.py:327 -#: netbox/virtualization/forms/bulk_edit.py:200 -#: netbox/virtualization/forms/bulk_edit.py:326 -#: netbox/virtualization/forms/bulk_import.py:146 -#: netbox/virtualization/forms/bulk_import.py:207 -#: netbox/virtualization/forms/filtersets.py:212 -#: netbox/virtualization/forms/filtersets.py:248 -#: netbox/virtualization/forms/model_forms.py:288 -#: netbox/vpn/forms/bulk_import.py:93 netbox/vpn/forms/bulk_import.py:290 +#: ipam/forms/bulk_import.py:311 ipam/forms/bulk_import.py:488 +#: ipam/forms/model_forms.py:685 virtualization/filtersets.py:288 +#: virtualization/filtersets.py:327 virtualization/forms/bulk_edit.py:200 +#: virtualization/forms/bulk_edit.py:326 +#: virtualization/forms/bulk_import.py:146 +#: virtualization/forms/bulk_import.py:207 +#: virtualization/forms/filtersets.py:212 +#: virtualization/forms/filtersets.py:248 +#: virtualization/forms/model_forms.py:288 vpn/forms/bulk_import.py:93 +#: vpn/forms/bulk_import.py:290 msgid "Virtual machine" msgstr "Sanal makine" -#: netbox/ipam/forms/bulk_import.py:315 +#: ipam/forms/bulk_import.py:315 msgid "Parent VM of assigned interface (if any)" msgstr "Atanan arabirimin üst VM'si (varsa)" -#: netbox/ipam/forms/bulk_import.py:325 +#: ipam/forms/bulk_import.py:325 msgid "Is primary" msgstr "Birincildir" -#: netbox/ipam/forms/bulk_import.py:326 +#: ipam/forms/bulk_import.py:326 msgid "Make this the primary IP for the assigned device" msgstr "Bunu atanan cihaz için birincil IP yapın" -#: netbox/ipam/forms/bulk_import.py:365 +#: ipam/forms/bulk_import.py:365 msgid "No device or virtual machine specified; cannot set as primary IP" msgstr "" "Aygıt veya sanal makine belirtilmemiş; birincil IP olarak ayarlanamıyor" -#: netbox/ipam/forms/bulk_import.py:369 +#: ipam/forms/bulk_import.py:369 msgid "No interface specified; cannot set as primary IP" msgstr "Arayüz belirtilmedi; birincil IP olarak ayarlanamıyor" -#: netbox/ipam/forms/bulk_import.py:398 +#: ipam/forms/bulk_import.py:398 msgid "Auth type" msgstr "Kimlik doğrulama türü" -#: netbox/ipam/forms/bulk_import.py:413 +#: ipam/forms/bulk_import.py:413 msgid "Scope type (app & model)" msgstr "Kapsam türü (uygulama ve model)" -#: netbox/ipam/forms/bulk_import.py:440 +#: ipam/forms/bulk_import.py:440 msgid "Assigned VLAN group" msgstr "Atanmış VLAN grubu" -#: netbox/ipam/forms/bulk_import.py:471 netbox/ipam/forms/bulk_import.py:497 +#: ipam/forms/bulk_import.py:471 ipam/forms/bulk_import.py:497 msgid "IP protocol" msgstr "IP protokolü" -#: netbox/ipam/forms/bulk_import.py:485 +#: ipam/forms/bulk_import.py:485 msgid "Required if not assigned to a VM" msgstr "Bir VM'ye atanmadıysa gereklidir" -#: netbox/ipam/forms/bulk_import.py:492 +#: ipam/forms/bulk_import.py:492 msgid "Required if not assigned to a device" msgstr "Bir cihaza atanmadıysa gereklidir" -#: netbox/ipam/forms/bulk_import.py:517 +#: ipam/forms/bulk_import.py:517 #, python-brace-format msgid "{ip} is not assigned to this device/VM." msgstr "{ip} bu cihaza/VM'ye atanmamıştır." -#: netbox/ipam/forms/filtersets.py:47 netbox/ipam/forms/model_forms.py:63 -#: netbox/netbox/navigation/menu.py:189 netbox/vpn/forms/model_forms.py:410 +#: ipam/forms/filtersets.py:47 ipam/forms/model_forms.py:63 +#: netbox/navigation/menu.py:189 vpn/forms/model_forms.py:410 msgid "Route Targets" msgstr "Rota Hedefleri" -#: netbox/ipam/forms/filtersets.py:53 netbox/ipam/forms/model_forms.py:50 -#: netbox/vpn/forms/filtersets.py:224 netbox/vpn/forms/model_forms.py:397 +#: ipam/forms/filtersets.py:53 ipam/forms/model_forms.py:50 +#: vpn/forms/filtersets.py:224 vpn/forms/model_forms.py:397 msgid "Import targets" msgstr "Hedefleri içe aktarma" -#: netbox/ipam/forms/filtersets.py:58 netbox/ipam/forms/model_forms.py:55 -#: netbox/vpn/forms/filtersets.py:229 netbox/vpn/forms/model_forms.py:402 +#: ipam/forms/filtersets.py:58 ipam/forms/model_forms.py:55 +#: vpn/forms/filtersets.py:229 vpn/forms/model_forms.py:402 msgid "Export targets" msgstr "İhracat hedefleri" -#: netbox/ipam/forms/filtersets.py:73 +#: ipam/forms/filtersets.py:73 msgid "Imported by VRF" msgstr "VRF tarafından ithal" -#: netbox/ipam/forms/filtersets.py:78 +#: ipam/forms/filtersets.py:78 msgid "Exported by VRF" msgstr "VRF tarafından ihraç edildi" -#: netbox/ipam/forms/filtersets.py:87 netbox/ipam/tables/ip.py:89 -#: netbox/templates/ipam/rir.html:30 +#: ipam/forms/filtersets.py:87 ipam/tables/ip.py:89 templates/ipam/rir.html:30 msgid "Private" msgstr "Özel" -#: netbox/ipam/forms/filtersets.py:105 netbox/ipam/forms/filtersets.py:191 -#: netbox/ipam/forms/filtersets.py:272 netbox/ipam/forms/filtersets.py:326 +#: ipam/forms/filtersets.py:105 ipam/forms/filtersets.py:191 +#: ipam/forms/filtersets.py:272 ipam/forms/filtersets.py:326 msgid "Address family" msgstr "Adres ailesi" -#: netbox/ipam/forms/filtersets.py:119 netbox/templates/ipam/asnrange.html:25 +#: ipam/forms/filtersets.py:119 templates/ipam/asnrange.html:25 msgid "Range" msgstr "Menzil" -#: netbox/ipam/forms/filtersets.py:128 +#: ipam/forms/filtersets.py:128 msgid "Start" msgstr "Başlat" -#: netbox/ipam/forms/filtersets.py:132 +#: ipam/forms/filtersets.py:132 msgid "End" msgstr "Bitiş" -#: netbox/ipam/forms/filtersets.py:186 +#: ipam/forms/filtersets.py:186 msgid "Search within" msgstr "İçinde ara" -#: netbox/ipam/forms/filtersets.py:207 netbox/ipam/forms/filtersets.py:342 +#: ipam/forms/filtersets.py:207 ipam/forms/filtersets.py:342 msgid "Present in VRF" msgstr "VRF'de mevcut" -#: netbox/ipam/forms/filtersets.py:311 +#: ipam/forms/filtersets.py:311 msgid "Device/VM" msgstr "Cihaz/VM" -#: netbox/ipam/forms/filtersets.py:321 +#: ipam/forms/filtersets.py:321 msgid "Parent Prefix" msgstr "Ebeveyn Öneki" -#: netbox/ipam/forms/filtersets.py:347 +#: ipam/forms/filtersets.py:347 msgid "Assigned Device" msgstr "Atanan Cihaz" -#: netbox/ipam/forms/filtersets.py:352 +#: ipam/forms/filtersets.py:352 msgid "Assigned VM" msgstr "Atanmış VM" -#: netbox/ipam/forms/filtersets.py:366 +#: ipam/forms/filtersets.py:366 msgid "Assigned to an interface" msgstr "Bir arayüze atandı" -#: netbox/ipam/forms/filtersets.py:373 netbox/templates/ipam/ipaddress.html:51 +#: ipam/forms/filtersets.py:373 templates/ipam/ipaddress.html:51 msgid "DNS Name" msgstr "DNS Adı" -#: netbox/ipam/forms/filtersets.py:416 netbox/ipam/models/vlans.py:235 -#: netbox/ipam/tables/ip.py:176 netbox/ipam/tables/vlans.py:82 -#: netbox/ipam/views.py:971 netbox/netbox/navigation/menu.py:193 -#: netbox/netbox/navigation/menu.py:195 +#: ipam/forms/filtersets.py:416 ipam/models/vlans.py:235 ipam/tables/ip.py:176 +#: ipam/tables/vlans.py:82 ipam/views.py:971 netbox/navigation/menu.py:193 +#: netbox/navigation/menu.py:195 msgid "VLANs" msgstr "VLAN'lar" -#: netbox/ipam/forms/filtersets.py:457 +#: ipam/forms/filtersets.py:457 msgid "Contains VLAN ID" msgstr "VLAN Kimliği içerir" -#: netbox/ipam/forms/filtersets.py:513 netbox/ipam/models/vlans.py:176 -#: netbox/templates/ipam/vlan.html:31 +#: ipam/forms/filtersets.py:513 ipam/models/vlans.py:176 +#: templates/ipam/vlan.html:31 msgid "VLAN ID" msgstr "VLAN KİMLİĞİ" -#: netbox/ipam/forms/filtersets.py:556 netbox/ipam/forms/model_forms.py:320 -#: netbox/ipam/forms/model_forms.py:713 netbox/ipam/forms/model_forms.py:739 -#: netbox/ipam/tables/vlans.py:195 -#: netbox/templates/virtualization/virtualdisk.html:21 -#: netbox/templates/virtualization/virtualmachine.html:12 -#: netbox/templates/virtualization/vminterface.html:21 -#: netbox/templates/vpn/tunneltermination.html:25 -#: netbox/virtualization/forms/filtersets.py:197 -#: netbox/virtualization/forms/filtersets.py:242 -#: netbox/virtualization/forms/model_forms.py:220 -#: netbox/virtualization/tables/virtualmachines.py:135 -#: netbox/virtualization/tables/virtualmachines.py:190 -#: netbox/vpn/choices.py:45 netbox/vpn/forms/filtersets.py:293 -#: netbox/vpn/forms/model_forms.py:160 netbox/vpn/forms/model_forms.py:171 -#: netbox/vpn/forms/model_forms.py:273 netbox/vpn/forms/model_forms.py:454 +#: ipam/forms/filtersets.py:556 ipam/forms/model_forms.py:320 +#: ipam/forms/model_forms.py:713 ipam/forms/model_forms.py:739 +#: ipam/tables/vlans.py:195 templates/virtualization/virtualdisk.html:21 +#: templates/virtualization/virtualmachine.html:12 +#: templates/virtualization/vminterface.html:21 +#: templates/vpn/tunneltermination.html:25 +#: virtualization/forms/filtersets.py:197 +#: virtualization/forms/filtersets.py:242 +#: virtualization/forms/model_forms.py:220 +#: virtualization/tables/virtualmachines.py:135 +#: virtualization/tables/virtualmachines.py:190 vpn/choices.py:45 +#: vpn/forms/filtersets.py:293 vpn/forms/model_forms.py:160 +#: vpn/forms/model_forms.py:171 vpn/forms/model_forms.py:273 +#: vpn/forms/model_forms.py:454 msgid "Virtual Machine" msgstr "Sanal Makine" -#: netbox/ipam/forms/model_forms.py:80 -#: netbox/templates/ipam/routetarget.html:10 +#: ipam/forms/model_forms.py:80 templates/ipam/routetarget.html:10 msgid "Route Target" msgstr "Rota Hedefi" -#: netbox/ipam/forms/model_forms.py:114 netbox/ipam/tables/ip.py:117 -#: netbox/templates/ipam/aggregate.html:11 -#: netbox/templates/ipam/prefix.html:38 +#: ipam/forms/model_forms.py:114 ipam/tables/ip.py:117 +#: templates/ipam/aggregate.html:11 templates/ipam/prefix.html:38 msgid "Aggregate" msgstr "Agrega" -#: netbox/ipam/forms/model_forms.py:135 netbox/templates/ipam/asnrange.html:12 +#: ipam/forms/model_forms.py:135 templates/ipam/asnrange.html:12 msgid "ASN Range" msgstr "ASN Aralığı" -#: netbox/ipam/forms/model_forms.py:231 +#: ipam/forms/model_forms.py:231 msgid "Site/VLAN Assignment" msgstr "Site/VLAN Ataması" -#: netbox/ipam/forms/model_forms.py:259 netbox/templates/ipam/iprange.html:10 +#: ipam/forms/model_forms.py:259 templates/ipam/iprange.html:10 msgid "IP Range" msgstr "IP Aralığı" -#: netbox/ipam/forms/model_forms.py:295 netbox/ipam/forms/model_forms.py:321 -#: netbox/ipam/forms/model_forms.py:473 -#: netbox/templates/ipam/fhrpgroup.html:19 +#: ipam/forms/model_forms.py:295 ipam/forms/model_forms.py:321 +#: ipam/forms/model_forms.py:473 templates/ipam/fhrpgroup.html:19 msgid "FHRP Group" msgstr "FHRP Grubu" -#: netbox/ipam/forms/model_forms.py:310 +#: ipam/forms/model_forms.py:310 msgid "Make this the primary IP for the device/VM" msgstr "Bunu cihaz/VM için birincil IP yapın" -#: netbox/ipam/forms/model_forms.py:325 +#: ipam/forms/model_forms.py:325 msgid "NAT IP (Inside)" msgstr "NAT IP (İç)" -#: netbox/ipam/forms/model_forms.py:384 +#: ipam/forms/model_forms.py:384 msgid "An IP address can only be assigned to a single object." msgstr "IP adresi yalnızca tek bir nesneye atanabilir." -#: netbox/ipam/forms/model_forms.py:390 netbox/ipam/models/ip.py:897 +#: ipam/forms/model_forms.py:390 ipam/models/ip.py:897 msgid "" "Cannot reassign IP address while it is designated as the primary IP for the " "parent object" msgstr "" "Üst nesne için birincil IP olarak belirlenirken IP adresi yeniden atanamıyor" -#: netbox/ipam/forms/model_forms.py:400 +#: ipam/forms/model_forms.py:400 msgid "" "Only IP addresses assigned to an interface can be designated as primary IPs." msgstr "" "Yalnızca bir arayüze atanan IP adresleri birincil IP olarak belirlenebilir." -#: netbox/ipam/forms/model_forms.py:475 +#: ipam/forms/model_forms.py:475 msgid "Virtual IP Address" msgstr "Sanal IP Adresi" -#: netbox/ipam/forms/model_forms.py:560 +#: ipam/forms/model_forms.py:560 msgid "Assignment already exists" msgstr "Atama zaten var" -#: netbox/ipam/forms/model_forms.py:569 -#: netbox/templates/ipam/vlangroup.html:42 +#: ipam/forms/model_forms.py:569 templates/ipam/vlangroup.html:42 msgid "VLAN IDs" msgstr "VLAN kimlikleri" -#: netbox/ipam/forms/model_forms.py:587 +#: ipam/forms/model_forms.py:587 msgid "Child VLANs" msgstr "Çocuk VLAN'ları" -#: netbox/ipam/forms/model_forms.py:664 netbox/ipam/forms/model_forms.py:696 +#: ipam/forms/model_forms.py:664 ipam/forms/model_forms.py:696 msgid "" "Comma-separated list of one or more port numbers. A range may be specified " "using a hyphen." @@ -9803,133 +9207,132 @@ msgstr "" "Bir veya daha fazla bağlantı noktası numarasının virgülle ayrılmış listesi. " "Bir aralık bir tire kullanılarak belirtilebilir." -#: netbox/ipam/forms/model_forms.py:669 -#: netbox/templates/ipam/servicetemplate.html:12 +#: ipam/forms/model_forms.py:669 templates/ipam/servicetemplate.html:12 msgid "Service Template" msgstr "Hizmet Şablonu" -#: netbox/ipam/forms/model_forms.py:716 +#: ipam/forms/model_forms.py:716 msgid "Port(s)" msgstr "Liman (lar)" -#: netbox/ipam/forms/model_forms.py:717 netbox/ipam/forms/model_forms.py:745 -#: netbox/templates/ipam/service.html:21 +#: ipam/forms/model_forms.py:717 ipam/forms/model_forms.py:745 +#: templates/ipam/service.html:21 msgid "Service" msgstr "Hizmet" -#: netbox/ipam/forms/model_forms.py:730 +#: ipam/forms/model_forms.py:730 msgid "Service template" msgstr "Hizmet şablonu" -#: netbox/ipam/forms/model_forms.py:742 +#: ipam/forms/model_forms.py:742 msgid "From Template" msgstr "Şablondan" -#: netbox/ipam/forms/model_forms.py:743 +#: ipam/forms/model_forms.py:743 msgid "Custom" msgstr "Özel" -#: netbox/ipam/forms/model_forms.py:773 +#: ipam/forms/model_forms.py:773 msgid "" "Must specify name, protocol, and port(s) if not using a service template." msgstr "" "Hizmet şablonu kullanmıyorsanız ad, protokol ve bağlantı noktası (lar) ı " "belirtmeniz gerekir." -#: netbox/ipam/models/asns.py:34 +#: ipam/models/asns.py:34 msgid "start" msgstr "başlangıç" -#: netbox/ipam/models/asns.py:51 +#: ipam/models/asns.py:51 msgid "ASN range" msgstr "ASN aralığı" -#: netbox/ipam/models/asns.py:52 +#: ipam/models/asns.py:52 msgid "ASN ranges" msgstr "ASN aralıkları" -#: netbox/ipam/models/asns.py:72 +#: ipam/models/asns.py:72 #, python-brace-format msgid "Starting ASN ({start}) must be lower than ending ASN ({end})." msgstr "Başlangıç ASN'si ({start}), son ASN'den ({end}) daha küçük olmalıdır." -#: netbox/ipam/models/asns.py:104 +#: ipam/models/asns.py:104 msgid "Regional Internet Registry responsible for this AS number space" msgstr "Bu ASN alanından sorumlu Bölgesel İnternet Kaydı" -#: netbox/ipam/models/asns.py:109 +#: ipam/models/asns.py:109 msgid "16- or 32-bit autonomous system number" msgstr "16 veya 32 bit otonom sistem numarası" -#: netbox/ipam/models/fhrp.py:22 +#: ipam/models/fhrp.py:22 msgid "group ID" msgstr "grup kimliği" -#: netbox/ipam/models/fhrp.py:30 netbox/ipam/models/services.py:22 +#: ipam/models/fhrp.py:30 ipam/models/services.py:22 msgid "protocol" msgstr "protokol" -#: netbox/ipam/models/fhrp.py:38 netbox/wireless/models.py:28 +#: ipam/models/fhrp.py:38 wireless/models.py:28 msgid "authentication type" msgstr "kimlik doğrulama türü" -#: netbox/ipam/models/fhrp.py:43 +#: ipam/models/fhrp.py:43 msgid "authentication key" msgstr "kimlik doğrulama anahtarı" -#: netbox/ipam/models/fhrp.py:56 +#: ipam/models/fhrp.py:56 msgid "FHRP group" msgstr "FHRP grubu" -#: netbox/ipam/models/fhrp.py:57 +#: ipam/models/fhrp.py:57 msgid "FHRP groups" msgstr "FHRP grupları" -#: netbox/ipam/models/fhrp.py:113 +#: ipam/models/fhrp.py:113 msgid "FHRP group assignment" msgstr "FHRP grup ataması" -#: netbox/ipam/models/fhrp.py:114 +#: ipam/models/fhrp.py:114 msgid "FHRP group assignments" msgstr "FHRP grup ödevleri" -#: netbox/ipam/models/ip.py:65 +#: ipam/models/ip.py:65 msgid "private" msgstr "özel" -#: netbox/ipam/models/ip.py:66 +#: ipam/models/ip.py:66 msgid "IP space managed by this RIR is considered private" msgstr "Bu RIR tarafından yönetilen IP alanı özel olarak kabul edilir" -#: netbox/ipam/models/ip.py:72 netbox/netbox/navigation/menu.py:182 +#: ipam/models/ip.py:72 netbox/navigation/menu.py:182 msgid "RIRs" msgstr "RIR'ler" -#: netbox/ipam/models/ip.py:84 +#: ipam/models/ip.py:84 msgid "IPv4 or IPv6 network" msgstr "IPv4 veya IPv6 ağı" -#: netbox/ipam/models/ip.py:91 +#: ipam/models/ip.py:91 msgid "Regional Internet Registry responsible for this IP space" msgstr "Bu IP alanından sorumlu Bölgesel İnternet Kaydı" -#: netbox/ipam/models/ip.py:101 +#: ipam/models/ip.py:101 msgid "date added" msgstr "tarih eklendi" -#: netbox/ipam/models/ip.py:115 +#: ipam/models/ip.py:115 msgid "aggregate" msgstr "toplamak" -#: netbox/ipam/models/ip.py:116 +#: ipam/models/ip.py:116 msgid "aggregates" msgstr "toplar" -#: netbox/ipam/models/ip.py:132 +#: ipam/models/ip.py:132 msgid "Cannot create aggregate with /0 mask." msgstr "/0 maskesi ile toplama oluşturulamıyor." -#: netbox/ipam/models/ip.py:144 +#: ipam/models/ip.py:144 #, python-brace-format msgid "" "Aggregates cannot overlap. {prefix} is already covered by an existing " @@ -9938,7 +9341,7 @@ msgstr "" "Agremalar üst üste gelemez. {prefix} zaten mevcut bir toplama tarafından " "kapsanmıştır ({aggregate})." -#: netbox/ipam/models/ip.py:158 +#: ipam/models/ip.py:158 #, python-brace-format msgid "" "Prefixes cannot overlap aggregates. {prefix} covers an existing aggregate " @@ -9947,223 +9350,221 @@ msgstr "" "Önekler toplamalarla örtüşemez. {prefix} mevcut bir toplamı kapsar " "({aggregate})." -#: netbox/ipam/models/ip.py:200 netbox/ipam/models/ip.py:737 -#: netbox/vpn/models/tunnels.py:114 +#: ipam/models/ip.py:200 ipam/models/ip.py:737 vpn/models/tunnels.py:114 msgid "role" msgstr "rol" -#: netbox/ipam/models/ip.py:201 +#: ipam/models/ip.py:201 msgid "roles" msgstr "rolleri" -#: netbox/ipam/models/ip.py:217 netbox/ipam/models/ip.py:293 +#: ipam/models/ip.py:217 ipam/models/ip.py:293 msgid "prefix" msgstr "önek" -#: netbox/ipam/models/ip.py:218 +#: ipam/models/ip.py:218 msgid "IPv4 or IPv6 network with mask" msgstr "Maskeli IPv4 veya IPv6 ağı" -#: netbox/ipam/models/ip.py:254 +#: ipam/models/ip.py:254 msgid "Operational status of this prefix" msgstr "Bu önekin operasyonel durumu" -#: netbox/ipam/models/ip.py:262 +#: ipam/models/ip.py:262 msgid "The primary function of this prefix" msgstr "Bu önekin birincil işlevi" -#: netbox/ipam/models/ip.py:265 +#: ipam/models/ip.py:265 msgid "is a pool" msgstr "bir havuz" -#: netbox/ipam/models/ip.py:267 +#: ipam/models/ip.py:267 msgid "All IP addresses within this prefix are considered usable" msgstr "Bu önek içindeki tüm IP adresleri kullanılabilir kabul edilir" -#: netbox/ipam/models/ip.py:270 netbox/ipam/models/ip.py:537 +#: ipam/models/ip.py:270 ipam/models/ip.py:537 msgid "mark utilized" msgstr "kullanılan işaret" -#: netbox/ipam/models/ip.py:294 +#: ipam/models/ip.py:294 msgid "prefixes" msgstr "önekleri" -#: netbox/ipam/models/ip.py:317 +#: ipam/models/ip.py:317 msgid "Cannot create prefix with /0 mask." msgstr "/0 maskesi ile önek oluşturulamıyor." -#: netbox/ipam/models/ip.py:324 netbox/ipam/models/ip.py:874 +#: ipam/models/ip.py:324 ipam/models/ip.py:874 #, python-brace-format msgid "VRF {vrf}" msgstr "VRF {vrf}" -#: netbox/ipam/models/ip.py:324 netbox/ipam/models/ip.py:874 +#: ipam/models/ip.py:324 ipam/models/ip.py:874 msgid "global table" msgstr "küresel tablo" -#: netbox/ipam/models/ip.py:326 +#: ipam/models/ip.py:326 #, python-brace-format msgid "Duplicate prefix found in {table}: {prefix}" msgstr "Yinelenen önek şurada bulundu {table}: {prefix}" -#: netbox/ipam/models/ip.py:495 +#: ipam/models/ip.py:495 msgid "start address" msgstr "başlangıç adresi" -#: netbox/ipam/models/ip.py:496 netbox/ipam/models/ip.py:500 -#: netbox/ipam/models/ip.py:712 +#: ipam/models/ip.py:496 ipam/models/ip.py:500 ipam/models/ip.py:712 msgid "IPv4 or IPv6 address (with mask)" msgstr "IPv4 veya IPv6 adresi (maske ile)" -#: netbox/ipam/models/ip.py:499 +#: ipam/models/ip.py:499 msgid "end address" msgstr "bitiş adresi" -#: netbox/ipam/models/ip.py:526 +#: ipam/models/ip.py:526 msgid "Operational status of this range" msgstr "Bu aralığın çalışma durumu" -#: netbox/ipam/models/ip.py:534 +#: ipam/models/ip.py:534 msgid "The primary function of this range" msgstr "Bu aralığın birincil işlevi" -#: netbox/ipam/models/ip.py:548 +#: ipam/models/ip.py:548 msgid "IP range" msgstr "IP aralığı" -#: netbox/ipam/models/ip.py:549 +#: ipam/models/ip.py:549 msgid "IP ranges" msgstr "IP aralıkları" -#: netbox/ipam/models/ip.py:565 +#: ipam/models/ip.py:565 msgid "Starting and ending IP address versions must match" msgstr "Başlangıç ve bitiş IP adresi sürümleri eşleşmelidir" -#: netbox/ipam/models/ip.py:571 +#: ipam/models/ip.py:571 msgid "Starting and ending IP address masks must match" msgstr "Başlangıç ve bitiş IP adresi maskeleri eşleşmelidir" -#: netbox/ipam/models/ip.py:578 +#: ipam/models/ip.py:578 #, python-brace-format msgid "" "Ending address must be greater than the starting address ({start_address})" msgstr "" "Bitiş adresi başlangıç adresinden daha büyük olmalıdır ({start_address})" -#: netbox/ipam/models/ip.py:590 +#: ipam/models/ip.py:590 #, python-brace-format msgid "Defined addresses overlap with range {overlapping_range} in VRF {vrf}" msgstr "" "Tanımlanan adresler aralık ile örtüşüyor {overlapping_range} VRF'de {vrf}" -#: netbox/ipam/models/ip.py:599 +#: ipam/models/ip.py:599 #, python-brace-format msgid "Defined range exceeds maximum supported size ({max_size})" msgstr "Tanımlanan aralık maksimum desteklenen boyutu aşıyor ({max_size})" -#: netbox/ipam/models/ip.py:711 netbox/tenancy/models/contacts.py:82 +#: ipam/models/ip.py:711 tenancy/models/contacts.py:82 msgid "address" msgstr "adres" -#: netbox/ipam/models/ip.py:734 +#: ipam/models/ip.py:734 msgid "The operational status of this IP" msgstr "Bu IP'nin operasyonel durumu" -#: netbox/ipam/models/ip.py:741 +#: ipam/models/ip.py:741 msgid "The functional role of this IP" msgstr "Bu IP'nin işlevsel rolü" -#: netbox/ipam/models/ip.py:765 netbox/templates/ipam/ipaddress.html:72 +#: ipam/models/ip.py:765 templates/ipam/ipaddress.html:72 msgid "NAT (inside)" msgstr "NAT (iç)" -#: netbox/ipam/models/ip.py:766 +#: ipam/models/ip.py:766 msgid "The IP for which this address is the \"outside\" IP" msgstr "Bu adresin “dış” IP olduğu IP" -#: netbox/ipam/models/ip.py:773 +#: ipam/models/ip.py:773 msgid "Hostname or FQDN (not case-sensitive)" msgstr "Ana bilgisayar adı veya FQDN (büyük/küçük harfe duyarlı değil)" -#: netbox/ipam/models/ip.py:789 netbox/ipam/models/services.py:94 +#: ipam/models/ip.py:789 ipam/models/services.py:94 msgid "IP addresses" msgstr "IP adresleri" -#: netbox/ipam/models/ip.py:845 +#: ipam/models/ip.py:845 msgid "Cannot create IP address with /0 mask." msgstr "/0 maskesi ile IP adresi oluşturulamıyor." -#: netbox/ipam/models/ip.py:851 +#: ipam/models/ip.py:851 #, python-brace-format msgid "{ip} is a network ID, which may not be assigned to an interface." msgstr "{ip} bir arayüze atanamayacak bir ağ kimliğidir." -#: netbox/ipam/models/ip.py:862 +#: ipam/models/ip.py:862 #, python-brace-format msgid "" "{ip} is a broadcast address, which may not be assigned to an interface." msgstr "{ip} bir arayüze atanamayacak bir yayın adresidir." -#: netbox/ipam/models/ip.py:876 +#: ipam/models/ip.py:876 #, python-brace-format msgid "Duplicate IP address found in {table}: {ipaddress}" msgstr "Yinelenen IP adresi şurada bulundu {table}: {ipaddress}" -#: netbox/ipam/models/ip.py:903 +#: ipam/models/ip.py:903 msgid "Only IPv6 addresses can be assigned SLAAC status" msgstr "Yalnızca IPv6 adreslerine SLAAC durumu atanabilir" -#: netbox/ipam/models/services.py:33 +#: ipam/models/services.py:33 msgid "port numbers" msgstr "port numaraları" -#: netbox/ipam/models/services.py:59 +#: ipam/models/services.py:59 msgid "service template" msgstr "hizmet şablonu" -#: netbox/ipam/models/services.py:60 +#: ipam/models/services.py:60 msgid "service templates" msgstr "servis şablonları" -#: netbox/ipam/models/services.py:95 +#: ipam/models/services.py:95 msgid "The specific IP addresses (if any) to which this service is bound" msgstr "Bu hizmetin bağlı olduğu belirli IP adresleri (varsa)" -#: netbox/ipam/models/services.py:102 +#: ipam/models/services.py:102 msgid "service" msgstr "hizmet" -#: netbox/ipam/models/services.py:103 +#: ipam/models/services.py:103 msgid "services" msgstr "servisler" -#: netbox/ipam/models/services.py:117 +#: ipam/models/services.py:117 msgid "" "A service cannot be associated with both a device and a virtual machine." msgstr "Bir hizmet hem cihaz hem de sanal makine ile ilişkilendirilemez." -#: netbox/ipam/models/services.py:119 +#: ipam/models/services.py:119 msgid "" "A service must be associated with either a device or a virtual machine." msgstr "Bir hizmet, bir cihaz veya sanal makine ile ilişkilendirilmelidir." -#: netbox/ipam/models/vlans.py:85 +#: ipam/models/vlans.py:85 msgid "VLAN groups" msgstr "VLAN grupları" -#: netbox/ipam/models/vlans.py:95 +#: ipam/models/vlans.py:95 msgid "Cannot set scope_type without scope_id." msgstr "scope_id olmadan scope_type ayarlanamıyor." -#: netbox/ipam/models/vlans.py:97 +#: ipam/models/vlans.py:97 msgid "Cannot set scope_id without scope_type." msgstr "scope_type olmadan scope_id ayarlanamıyor." -#: netbox/ipam/models/vlans.py:101 +#: ipam/models/vlans.py:101 msgid "Ranges cannot overlap." msgstr "Aralıklar üst üste gelemez." -#: netbox/ipam/models/vlans.py:106 +#: ipam/models/vlans.py:106 #, python-brace-format msgid "" "Maximum child VID must be greater than or equal to minimum child VID " @@ -10172,27 +9573,27 @@ msgstr "" "Maksimum çocuk VID, minimum çocuk VID'den büyük veya ona eşit olmalıdır " "({value})" -#: netbox/ipam/models/vlans.py:165 +#: ipam/models/vlans.py:165 msgid "The specific site to which this VLAN is assigned (if any)" msgstr "Bu VLAN'ın atandığı belirli site (varsa)" -#: netbox/ipam/models/vlans.py:173 +#: ipam/models/vlans.py:173 msgid "VLAN group (optional)" msgstr "VLAN grubu (isteğe bağlı)" -#: netbox/ipam/models/vlans.py:181 +#: ipam/models/vlans.py:181 msgid "Numeric VLAN ID (1-4094)" msgstr "Sayısal VLAN Kimliği (1-4094)" -#: netbox/ipam/models/vlans.py:199 +#: ipam/models/vlans.py:199 msgid "Operational status of this VLAN" msgstr "Bu VLAN'ın operasyonel durumu" -#: netbox/ipam/models/vlans.py:207 +#: ipam/models/vlans.py:207 msgid "The primary function of this VLAN" msgstr "Bu VLAN'ın birincil işlevi" -#: netbox/ipam/models/vlans.py:250 +#: ipam/models/vlans.py:250 #, python-brace-format msgid "" "VLAN is assigned to group {group} (scope: {scope}); cannot also assign to " @@ -10201,166 +9602,164 @@ msgstr "" "VLAN {group} adlı gruba (kapsam: {scope}) atandığı için; {site} adlı siteye " "de atanamaz ." -#: netbox/ipam/models/vlans.py:259 +#: ipam/models/vlans.py:259 #, python-brace-format msgid "VID must be in ranges {ranges} for VLANs in group {group}" msgstr "VID aralıklarda olmalıdır {ranges} gruptaki VLAN'lar için {group}" -#: netbox/ipam/models/vrfs.py:30 +#: ipam/models/vrfs.py:30 msgid "route distinguisher" msgstr "rota ayırt edici" -#: netbox/ipam/models/vrfs.py:31 +#: ipam/models/vrfs.py:31 msgid "Unique route distinguisher (as defined in RFC 4364)" msgstr "Benzersiz rota ayırt edici (RFC 4364'te tanımlandığı gibi)" -#: netbox/ipam/models/vrfs.py:42 +#: ipam/models/vrfs.py:42 msgid "enforce unique space" msgstr "benzersiz alanı zorunlu kılmak" -#: netbox/ipam/models/vrfs.py:43 +#: ipam/models/vrfs.py:43 msgid "Prevent duplicate prefixes/IP addresses within this VRF" msgstr "Bu VRF içinde yinelenen önek/IP adreslerini önleyin" -#: netbox/ipam/models/vrfs.py:63 netbox/netbox/navigation/menu.py:186 -#: netbox/netbox/navigation/menu.py:188 +#: ipam/models/vrfs.py:63 netbox/navigation/menu.py:186 +#: netbox/navigation/menu.py:188 msgid "VRFs" msgstr "VRF'ler" -#: netbox/ipam/models/vrfs.py:82 +#: ipam/models/vrfs.py:82 msgid "Route target value (formatted in accordance with RFC 4360)" msgstr "Rota hedef değeri (RFC 4360'a göre biçimlendirilmiş)" -#: netbox/ipam/models/vrfs.py:94 +#: ipam/models/vrfs.py:94 msgid "route target" msgstr "rota hedefi" -#: netbox/ipam/models/vrfs.py:95 +#: ipam/models/vrfs.py:95 msgid "route targets" msgstr "rota hedefleri" -#: netbox/ipam/tables/asn.py:52 +#: ipam/tables/asn.py:52 msgid "ASDOT" msgstr "ASDOT" -#: netbox/ipam/tables/asn.py:57 +#: ipam/tables/asn.py:57 msgid "Site Count" msgstr "Site Sayısı" -#: netbox/ipam/tables/asn.py:62 +#: ipam/tables/asn.py:62 msgid "Provider Count" msgstr "Sağlayıcı Sayısı" -#: netbox/ipam/tables/ip.py:95 netbox/netbox/navigation/menu.py:179 -#: netbox/netbox/navigation/menu.py:181 +#: ipam/tables/ip.py:95 netbox/navigation/menu.py:179 +#: netbox/navigation/menu.py:181 msgid "Aggregates" msgstr "Agregalar" -#: netbox/ipam/tables/ip.py:125 +#: ipam/tables/ip.py:125 msgid "Added" msgstr "Eklendi" -#: netbox/ipam/tables/ip.py:128 netbox/ipam/tables/ip.py:166 -#: netbox/ipam/tables/vlans.py:142 netbox/ipam/views.py:346 -#: netbox/netbox/navigation/menu.py:165 netbox/netbox/navigation/menu.py:167 -#: netbox/templates/ipam/vlan.html:84 +#: ipam/tables/ip.py:128 ipam/tables/ip.py:166 ipam/tables/vlans.py:142 +#: ipam/views.py:346 netbox/navigation/menu.py:165 +#: netbox/navigation/menu.py:167 templates/ipam/vlan.html:84 msgid "Prefixes" msgstr "Önekler" -#: netbox/ipam/tables/ip.py:131 netbox/ipam/tables/ip.py:270 -#: netbox/ipam/tables/ip.py:324 netbox/ipam/tables/vlans.py:86 -#: netbox/templates/dcim/device.html:260 -#: netbox/templates/ipam/aggregate.html:24 -#: netbox/templates/ipam/iprange.html:29 netbox/templates/ipam/prefix.html:106 +#: ipam/tables/ip.py:131 ipam/tables/ip.py:270 ipam/tables/ip.py:324 +#: ipam/tables/vlans.py:86 templates/dcim/device.html:260 +#: templates/ipam/aggregate.html:24 templates/ipam/iprange.html:29 +#: templates/ipam/prefix.html:106 msgid "Utilization" msgstr "Kullanımı" -#: netbox/ipam/tables/ip.py:171 netbox/netbox/navigation/menu.py:161 +#: ipam/tables/ip.py:171 netbox/navigation/menu.py:161 msgid "IP Ranges" msgstr "IP Aralıkları" -#: netbox/ipam/tables/ip.py:221 +#: ipam/tables/ip.py:221 msgid "Prefix (Flat)" msgstr "Önek (Düz)" -#: netbox/ipam/tables/ip.py:225 +#: ipam/tables/ip.py:225 msgid "Depth" msgstr "Derinlik" -#: netbox/ipam/tables/ip.py:262 +#: ipam/tables/ip.py:262 msgid "Pool" msgstr "Havuz" -#: netbox/ipam/tables/ip.py:266 netbox/ipam/tables/ip.py:320 +#: ipam/tables/ip.py:266 ipam/tables/ip.py:320 msgid "Marked Utilized" msgstr "İşaretli Kullanıldı" -#: netbox/ipam/tables/ip.py:304 +#: ipam/tables/ip.py:304 msgid "Start address" msgstr "Başlangıç adresi" -#: netbox/ipam/tables/ip.py:383 +#: ipam/tables/ip.py:383 msgid "NAT (Inside)" msgstr "NAT (İç)" -#: netbox/ipam/tables/ip.py:388 +#: ipam/tables/ip.py:388 msgid "NAT (Outside)" msgstr "NAT (Dış)" -#: netbox/ipam/tables/ip.py:393 +#: ipam/tables/ip.py:393 msgid "Assigned" msgstr "Atanmış" -#: netbox/ipam/tables/ip.py:429 netbox/templates/vpn/l2vpntermination.html:16 -#: netbox/vpn/forms/filtersets.py:240 +#: ipam/tables/ip.py:429 templates/vpn/l2vpntermination.html:16 +#: vpn/forms/filtersets.py:240 msgid "Assigned Object" msgstr "Atanan Nesne" -#: netbox/ipam/tables/vlans.py:68 +#: ipam/tables/vlans.py:68 msgid "Scope Type" msgstr "Kapsam Türü" -#: netbox/ipam/tables/vlans.py:76 +#: ipam/tables/vlans.py:76 msgid "VID Ranges" msgstr "VID Aralıkları" -#: netbox/ipam/tables/vlans.py:111 netbox/ipam/tables/vlans.py:214 -#: netbox/templates/dcim/inc/interface_vlans_table.html:4 +#: ipam/tables/vlans.py:111 ipam/tables/vlans.py:214 +#: templates/dcim/inc/interface_vlans_table.html:4 msgid "VID" msgstr "VİDEO" -#: netbox/ipam/tables/vrfs.py:30 +#: ipam/tables/vrfs.py:30 msgid "RD" msgstr "RD" -#: netbox/ipam/tables/vrfs.py:33 +#: ipam/tables/vrfs.py:33 msgid "Unique" msgstr "Benzersiz" -#: netbox/ipam/tables/vrfs.py:37 netbox/vpn/tables/l2vpn.py:27 +#: ipam/tables/vrfs.py:37 vpn/tables/l2vpn.py:27 msgid "Import Targets" msgstr "Hedefleri İçe Aktar" -#: netbox/ipam/tables/vrfs.py:42 netbox/vpn/tables/l2vpn.py:32 +#: ipam/tables/vrfs.py:42 vpn/tables/l2vpn.py:32 msgid "Export Targets" msgstr "İhracat Hedefleri" -#: netbox/ipam/validators.py:9 +#: ipam/validators.py:9 #, python-brace-format msgid "{prefix} is not a valid prefix. Did you mean {suggested}?" msgstr "{prefix} geçerli bir önek değildir. Demek istedin {suggested}?" -#: netbox/ipam/validators.py:16 +#: ipam/validators.py:16 #, python-format msgid "The prefix length must be less than or equal to %(limit_value)s." msgstr "Önek uzunluğu şunlardan küçük veya eşit olmalıdır %(limit_value)s." -#: netbox/ipam/validators.py:24 +#: ipam/validators.py:24 #, python-format msgid "The prefix length must be greater than or equal to %(limit_value)s." msgstr "Önek uzunluğu şunlardan büyük veya eşit olmalıdır %(limit_value)s." -#: netbox/ipam/validators.py:33 +#: ipam/validators.py:33 msgid "" "Only alphanumeric characters, asterisks, hyphens, periods, and underscores " "are allowed in DNS names" @@ -10368,31 +9767,31 @@ msgstr "" "DNS adlarında yalnızca alfanümerik karakterlere, yıldızlara, tirelere, " "noktalara ve alt çizgilere izin verilir" -#: netbox/ipam/views.py:533 +#: ipam/views.py:533 msgid "Child Prefixes" msgstr "Çocuk Önekleri" -#: netbox/ipam/views.py:569 +#: ipam/views.py:569 msgid "Child Ranges" msgstr "Çocuk Aralıkları" -#: netbox/ipam/views.py:898 +#: ipam/views.py:898 msgid "Related IPs" msgstr "İlgili IP'ler" -#: netbox/ipam/views.py:1127 +#: ipam/views.py:1127 msgid "Device Interfaces" msgstr "Cihaz Arayüzleri" -#: netbox/ipam/views.py:1145 +#: ipam/views.py:1145 msgid "VM Interfaces" msgstr "VM Arayüzleri" -#: netbox/netbox/api/fields.py:65 +#: netbox/api/fields.py:65 msgid "This field may not be blank." msgstr "Bu alan boş olmayabilir." -#: netbox/netbox/api/fields.py:70 +#: netbox/api/fields.py:70 msgid "" "Value must be passed directly (e.g. \"foo\": 123); do not use a dictionary " "or list." @@ -10400,342 +9799,329 @@ msgstr "" "Değer doğrudan iletilmelidir (örn. “foo”: 123); sözlük veya liste " "kullanmayın." -#: netbox/netbox/api/fields.py:91 +#: netbox/api/fields.py:91 #, python-brace-format msgid "{value} is not a valid choice." msgstr "{value} geçerli bir seçim değildir." -#: netbox/netbox/api/fields.py:104 +#: netbox/api/fields.py:104 #, python-brace-format msgid "Invalid content type: {content_type}" msgstr "Geçersiz içerik türü: {content_type}" -#: netbox/netbox/api/fields.py:105 +#: netbox/api/fields.py:105 msgid "Invalid value. Specify a content type as '.'." msgstr "" "Geçersiz değer. İçerik türünü 'olarak belirtin.'." -#: netbox/netbox/api/fields.py:167 +#: netbox/api/fields.py:167 msgid "Ranges must be specified in the form (lower, upper)." msgstr "Aralıklar formda belirtilmelidir (alt, üst)." -#: netbox/netbox/api/fields.py:169 +#: netbox/api/fields.py:169 msgid "Range boundaries must be defined as integers." msgstr "Menzil sınırları tamsayılar olarak tanımlanmalıdır." -#: netbox/netbox/api/serializers/fields.py:40 +#: netbox/api/serializers/fields.py:40 #, python-brace-format msgid "{class_name} must implement get_view_name()" msgstr "{class_name} get_view_name () uygulamasını uygulamalıdır" -#: netbox/netbox/authentication/__init__.py:138 +#: netbox/authentication/__init__.py:138 #, python-brace-format msgid "Invalid permission {permission} for model {model}" msgstr "Geçersiz izin {permission} model için {model}" -#: netbox/netbox/choices.py:49 +#: netbox/choices.py:49 msgid "Dark Red" msgstr "Koyu Kırmızı" -#: netbox/netbox/choices.py:52 +#: netbox/choices.py:52 msgid "Rose" msgstr "Gül" -#: netbox/netbox/choices.py:53 +#: netbox/choices.py:53 msgid "Fuchsia" msgstr "Fuşya" -#: netbox/netbox/choices.py:55 +#: netbox/choices.py:55 msgid "Dark Purple" msgstr "Koyu Mor" -#: netbox/netbox/choices.py:58 +#: netbox/choices.py:58 msgid "Light Blue" msgstr "Açık Mavi" -#: netbox/netbox/choices.py:61 +#: netbox/choices.py:61 msgid "Aqua" msgstr "su" -#: netbox/netbox/choices.py:62 +#: netbox/choices.py:62 msgid "Dark Green" msgstr "Koyu Yeşil" -#: netbox/netbox/choices.py:64 +#: netbox/choices.py:64 msgid "Light Green" msgstr "Açık Yeşil" -#: netbox/netbox/choices.py:65 +#: netbox/choices.py:65 msgid "Lime" msgstr "Kireç" -#: netbox/netbox/choices.py:67 +#: netbox/choices.py:67 msgid "Amber" msgstr "Kehribar" -#: netbox/netbox/choices.py:69 +#: netbox/choices.py:69 msgid "Dark Orange" msgstr "Koyu Turuncu" -#: netbox/netbox/choices.py:70 +#: netbox/choices.py:70 msgid "Brown" msgstr "Kahverengi" -#: netbox/netbox/choices.py:71 +#: netbox/choices.py:71 msgid "Light Grey" msgstr "Açık gri" -#: netbox/netbox/choices.py:72 +#: netbox/choices.py:72 msgid "Grey" msgstr "Gri" -#: netbox/netbox/choices.py:73 +#: netbox/choices.py:73 msgid "Dark Grey" msgstr "Koyu gri" -#: netbox/netbox/choices.py:128 +#: netbox/choices.py:128 msgid "Direct" msgstr "Doğrudan" -#: netbox/netbox/choices.py:129 +#: netbox/choices.py:129 msgid "Upload" msgstr "Yükleme" -#: netbox/netbox/choices.py:141 netbox/netbox/choices.py:155 +#: netbox/choices.py:141 netbox/choices.py:155 msgid "Auto-detect" msgstr "Otomatik algılama" -#: netbox/netbox/choices.py:156 +#: netbox/choices.py:156 msgid "Comma" msgstr "Virgül" -#: netbox/netbox/choices.py:157 +#: netbox/choices.py:157 msgid "Semicolon" msgstr "Noktalı virgül" -#: netbox/netbox/choices.py:158 +#: netbox/choices.py:158 msgid "Tab" msgstr "Sekme" -#: netbox/netbox/config/__init__.py:67 +#: netbox/config/__init__.py:67 #, python-brace-format msgid "Invalid configuration parameter: {item}" msgstr "Geçersiz yapılandırma parametresi: {item}" -#: netbox/netbox/config/parameters.py:22 -#: netbox/templates/core/inc/config_data.html:62 +#: netbox/config/parameters.py:22 templates/core/inc/config_data.html:62 msgid "Login banner" msgstr "Giriş başlığı" -#: netbox/netbox/config/parameters.py:24 +#: netbox/config/parameters.py:24 msgid "Additional content to display on the login page" msgstr "Giriş sayfasında görüntülenecek ek içerik" -#: netbox/netbox/config/parameters.py:33 -#: netbox/templates/core/inc/config_data.html:66 +#: netbox/config/parameters.py:33 templates/core/inc/config_data.html:66 msgid "Maintenance banner" msgstr "Bakım afişi" -#: netbox/netbox/config/parameters.py:35 +#: netbox/config/parameters.py:35 msgid "Additional content to display when in maintenance mode" msgstr "Bakım modundayken görüntülenecek ek içerik" -#: netbox/netbox/config/parameters.py:44 -#: netbox/templates/core/inc/config_data.html:70 +#: netbox/config/parameters.py:44 templates/core/inc/config_data.html:70 msgid "Top banner" msgstr "En iyi afiş" -#: netbox/netbox/config/parameters.py:46 +#: netbox/config/parameters.py:46 msgid "Additional content to display at the top of every page" msgstr "Her sayfanın üst kısmında görüntülenecek ek içerik" -#: netbox/netbox/config/parameters.py:55 -#: netbox/templates/core/inc/config_data.html:74 +#: netbox/config/parameters.py:55 templates/core/inc/config_data.html:74 msgid "Bottom banner" msgstr "Alt afiş" -#: netbox/netbox/config/parameters.py:57 +#: netbox/config/parameters.py:57 msgid "Additional content to display at the bottom of every page" msgstr "Her sayfanın altında görüntülenecek ek içerik" -#: netbox/netbox/config/parameters.py:68 +#: netbox/config/parameters.py:68 msgid "Globally unique IP space" msgstr "Küresel olarak benzersiz IP alanı" -#: netbox/netbox/config/parameters.py:70 +#: netbox/config/parameters.py:70 msgid "Enforce unique IP addressing within the global table" msgstr "Genel tablo içinde benzersiz IP adreslemesini uygulayın" -#: netbox/netbox/config/parameters.py:75 -#: netbox/templates/core/inc/config_data.html:44 +#: netbox/config/parameters.py:75 templates/core/inc/config_data.html:44 msgid "Prefer IPv4" msgstr "IPv4'ü tercih et" -#: netbox/netbox/config/parameters.py:77 +#: netbox/config/parameters.py:77 msgid "Prefer IPv4 addresses over IPv6" msgstr "IPv4 adreslerini IPv6 yerine tercih edin" -#: netbox/netbox/config/parameters.py:84 +#: netbox/config/parameters.py:84 msgid "Rack unit height" msgstr "Raf ünitesi yüksekliği" -#: netbox/netbox/config/parameters.py:86 +#: netbox/config/parameters.py:86 msgid "Default unit height for rendered rack elevations" msgstr "Oluşturulan raf yükseklikleri için varsayılan birim yüksekliği" -#: netbox/netbox/config/parameters.py:91 +#: netbox/config/parameters.py:91 msgid "Rack unit width" msgstr "Raf ünitesi genişliği" -#: netbox/netbox/config/parameters.py:93 +#: netbox/config/parameters.py:93 msgid "Default unit width for rendered rack elevations" msgstr "Oluşturulan raf yükseklikleri için varsayılan birim genişliği" -#: netbox/netbox/config/parameters.py:100 +#: netbox/config/parameters.py:100 msgid "Powerfeed voltage" msgstr "Güç besleme gerilimi" -#: netbox/netbox/config/parameters.py:102 +#: netbox/config/parameters.py:102 msgid "Default voltage for powerfeeds" msgstr "Güç beslemeleri için varsayılan voltaj" -#: netbox/netbox/config/parameters.py:107 +#: netbox/config/parameters.py:107 msgid "Powerfeed amperage" msgstr "Güç besleme amperi" -#: netbox/netbox/config/parameters.py:109 +#: netbox/config/parameters.py:109 msgid "Default amperage for powerfeeds" msgstr "Güç beslemeleri için varsayılan amper" -#: netbox/netbox/config/parameters.py:114 +#: netbox/config/parameters.py:114 msgid "Powerfeed max utilization" msgstr "Powerfeed maksimum kullanımı" -#: netbox/netbox/config/parameters.py:116 +#: netbox/config/parameters.py:116 msgid "Default max utilization for powerfeeds" msgstr "Güç beslemeleri için varsayılan maksimum kullanım" -#: netbox/netbox/config/parameters.py:123 -#: netbox/templates/core/inc/config_data.html:53 +#: netbox/config/parameters.py:123 templates/core/inc/config_data.html:53 msgid "Allowed URL schemes" msgstr "İzin verilen URL şemaları" -#: netbox/netbox/config/parameters.py:128 +#: netbox/config/parameters.py:128 msgid "Permitted schemes for URLs in user-provided content" msgstr "" "Kullanıcı tarafından sağlanan içerikteki URL'ler için izin verilen şemalar" -#: netbox/netbox/config/parameters.py:136 +#: netbox/config/parameters.py:136 msgid "Default page size" msgstr "Varsayılan sayfa boyutu" -#: netbox/netbox/config/parameters.py:142 +#: netbox/config/parameters.py:142 msgid "Maximum page size" msgstr "Maksimum sayfa boyutu" -#: netbox/netbox/config/parameters.py:150 -#: netbox/templates/core/inc/config_data.html:96 +#: netbox/config/parameters.py:150 templates/core/inc/config_data.html:96 msgid "Custom validators" msgstr "Özel doğrulayıcılar" -#: netbox/netbox/config/parameters.py:152 +#: netbox/config/parameters.py:152 msgid "Custom validation rules (JSON)" msgstr "Özel doğrulama kuralları (JSON)" -#: netbox/netbox/config/parameters.py:160 -#: netbox/templates/core/inc/config_data.html:104 +#: netbox/config/parameters.py:160 templates/core/inc/config_data.html:104 msgid "Protection rules" msgstr "Koruma kuralları" -#: netbox/netbox/config/parameters.py:162 +#: netbox/config/parameters.py:162 msgid "Deletion protection rules (JSON)" msgstr "Silme koruma kuralları (JSON)" -#: netbox/netbox/config/parameters.py:172 -#: netbox/templates/core/inc/config_data.html:117 +#: netbox/config/parameters.py:172 templates/core/inc/config_data.html:117 msgid "Default preferences" msgstr "Varsayılan tercihler" -#: netbox/netbox/config/parameters.py:174 +#: netbox/config/parameters.py:174 msgid "Default preferences for new users" msgstr "Yeni kullanıcılar için varsayılan tercihler" -#: netbox/netbox/config/parameters.py:181 -#: netbox/templates/core/inc/config_data.html:129 +#: netbox/config/parameters.py:181 templates/core/inc/config_data.html:129 msgid "Maintenance mode" msgstr "Bakım modu" -#: netbox/netbox/config/parameters.py:183 +#: netbox/config/parameters.py:183 msgid "Enable maintenance mode" msgstr "Bakım modunu etkinleştir" -#: netbox/netbox/config/parameters.py:188 -#: netbox/templates/core/inc/config_data.html:133 +#: netbox/config/parameters.py:188 templates/core/inc/config_data.html:133 msgid "GraphQL enabled" msgstr "GraphQL etkin" -#: netbox/netbox/config/parameters.py:190 +#: netbox/config/parameters.py:190 msgid "Enable the GraphQL API" msgstr "GraphQL API'sini etkinleştirin" -#: netbox/netbox/config/parameters.py:195 -#: netbox/templates/core/inc/config_data.html:137 +#: netbox/config/parameters.py:195 templates/core/inc/config_data.html:137 msgid "Changelog retention" msgstr "Değişiklik günlüğü tutma" -#: netbox/netbox/config/parameters.py:197 +#: netbox/config/parameters.py:197 msgid "Days to retain changelog history (set to zero for unlimited)" msgstr "" "Değişiklik günlüğü geçmişini korumak için günler (sınırsız olarak sıfıra " "ayarlayın)" -#: netbox/netbox/config/parameters.py:202 +#: netbox/config/parameters.py:202 msgid "Job result retention" msgstr "İş sonucunun korunması" -#: netbox/netbox/config/parameters.py:204 +#: netbox/config/parameters.py:204 msgid "Days to retain job result history (set to zero for unlimited)" msgstr "" "İş sonucu geçmişini tutmak için günler (sınırsız olarak sıfıra ayarlayın)" -#: netbox/netbox/config/parameters.py:209 -#: netbox/templates/core/inc/config_data.html:145 +#: netbox/config/parameters.py:209 templates/core/inc/config_data.html:145 msgid "Maps URL" msgstr "Haritalar URL'si" -#: netbox/netbox/config/parameters.py:211 +#: netbox/config/parameters.py:211 msgid "Base URL for mapping geographic locations" msgstr "Coğrafi konumları haritalamak için temel URL" -#: netbox/netbox/forms/__init__.py:12 +#: netbox/forms/__init__.py:12 msgid "Partial match" msgstr "Kısmi eşleşme" -#: netbox/netbox/forms/__init__.py:13 +#: netbox/forms/__init__.py:13 msgid "Exact match" msgstr "Tam eşleşme" -#: netbox/netbox/forms/__init__.py:14 +#: netbox/forms/__init__.py:14 msgid "Starts with" msgstr "Şununla başlar" -#: netbox/netbox/forms/__init__.py:15 +#: netbox/forms/__init__.py:15 msgid "Ends with" msgstr "İle bitiyor" -#: netbox/netbox/forms/__init__.py:16 +#: netbox/forms/__init__.py:16 msgid "Regex" msgstr "Regeks" -#: netbox/netbox/forms/__init__.py:34 +#: netbox/forms/__init__.py:34 msgid "Object type(s)" msgstr "Nesne türü (ler)" -#: netbox/netbox/forms/__init__.py:40 +#: netbox/forms/__init__.py:40 msgid "Lookup" msgstr "Aramak" -#: netbox/netbox/forms/base.py:90 +#: netbox/forms/base.py:90 msgid "" "Tag slugs separated by commas, encased with double quotes (e.g. " "\"tag1,tag2,tag3\")" @@ -10743,431 +10129,415 @@ msgstr "" "Çift tırnak işaretleriyle çevrelenmiş, virgülle ayrılmış sümüklü böcekleri " "etiketleyin (örn. “tag1, tag2, tag3\")" -#: netbox/netbox/forms/base.py:120 +#: netbox/forms/base.py:120 msgid "Add tags" msgstr "Etiket ekle" -#: netbox/netbox/forms/base.py:125 +#: netbox/forms/base.py:125 msgid "Remove tags" msgstr "Etiketleri kaldır" -#: netbox/netbox/forms/mixins.py:38 +#: netbox/forms/mixins.py:38 #, python-brace-format msgid "{class_name} must specify a model class." msgstr "{class_name} bir model sınıfı belirtmelidir." -#: netbox/netbox/models/features.py:280 +#: netbox/models/features.py:280 #, python-brace-format msgid "Unknown field name '{name}' in custom field data." msgstr "Bilinmeyen alan adı '{name}'özel alan verilerinde." -#: netbox/netbox/models/features.py:286 +#: netbox/models/features.py:286 #, python-brace-format msgid "Invalid value for custom field '{name}': {error}" msgstr "Özel alan için geçersiz değer '{name}': {error}" -#: netbox/netbox/models/features.py:295 +#: netbox/models/features.py:295 #, python-brace-format msgid "Custom field '{name}' must have a unique value." msgstr "Özel alan '{name}'benzersiz bir değere sahip olmalıdır." -#: netbox/netbox/models/features.py:302 +#: netbox/models/features.py:302 #, python-brace-format msgid "Missing required custom field '{name}'." msgstr "Gerekli özel alan eksik '{name}'." -#: netbox/netbox/models/features.py:462 +#: netbox/models/features.py:462 msgid "Remote data source" msgstr "Uzak veri kaynağı" -#: netbox/netbox/models/features.py:472 +#: netbox/models/features.py:472 msgid "data path" msgstr "veri yolu" -#: netbox/netbox/models/features.py:476 +#: netbox/models/features.py:476 msgid "Path to remote file (relative to data source root)" msgstr "Uzak dosyanın yolu (veri kaynağı köküne göre)" -#: netbox/netbox/models/features.py:479 +#: netbox/models/features.py:479 msgid "auto sync enabled" msgstr "otomatik senkronizasyon etkin" -#: netbox/netbox/models/features.py:481 +#: netbox/models/features.py:481 msgid "Enable automatic synchronization of data when the data file is updated" msgstr "" "Veri dosyası güncellendiğinde verilerin otomatik senkronizasyonunu " "etkinleştir" -#: netbox/netbox/models/features.py:484 +#: netbox/models/features.py:484 msgid "date synced" msgstr "senkronize edilen tarih" -#: netbox/netbox/models/features.py:578 +#: netbox/models/features.py:578 #, python-brace-format msgid "{class_name} must implement a sync_data() method." msgstr "{class_name} bir sync_data () yöntemi uygulamalıdır." -#: netbox/netbox/navigation/menu.py:11 +#: netbox/navigation/menu.py:11 msgid "Organization" msgstr "Organizasyon" -#: netbox/netbox/navigation/menu.py:19 +#: netbox/navigation/menu.py:19 msgid "Site Groups" msgstr "Site Grupları" -#: netbox/netbox/navigation/menu.py:27 +#: netbox/navigation/menu.py:27 msgid "Tenant Groups" msgstr "Kiracı Grupları" -#: netbox/netbox/navigation/menu.py:34 +#: netbox/navigation/menu.py:34 msgid "Contact Groups" msgstr "İletişim Grupları" -#: netbox/netbox/navigation/menu.py:35 -#: netbox/templates/tenancy/contactrole.html:8 +#: netbox/navigation/menu.py:35 templates/tenancy/contactrole.html:8 msgid "Contact Roles" msgstr "İletişim Rolleri" -#: netbox/netbox/navigation/menu.py:36 +#: netbox/navigation/menu.py:36 msgid "Contact Assignments" msgstr "İletişim Atamaları" -#: netbox/netbox/navigation/menu.py:50 +#: netbox/navigation/menu.py:50 msgid "Rack Roles" msgstr "Raf Rolleri" -#: netbox/netbox/navigation/menu.py:54 +#: netbox/navigation/menu.py:54 msgid "Elevations" msgstr "Yükselmeler" -#: netbox/netbox/navigation/menu.py:60 netbox/netbox/navigation/menu.py:62 +#: netbox/navigation/menu.py:60 netbox/navigation/menu.py:62 msgid "Rack Types" msgstr "Raf Çeşitleri" -#: netbox/netbox/navigation/menu.py:76 +#: netbox/navigation/menu.py:76 msgid "Modules" msgstr "Modüller" -#: netbox/netbox/navigation/menu.py:80 netbox/templates/dcim/device.html:160 -#: netbox/templates/dcim/virtualdevicecontext.html:8 +#: netbox/navigation/menu.py:80 templates/dcim/device.html:160 +#: templates/dcim/virtualdevicecontext.html:8 msgid "Virtual Device Contexts" msgstr "Sanal Cihaz Bağlamları" -#: netbox/netbox/navigation/menu.py:88 +#: netbox/navigation/menu.py:88 msgid "Manufacturers" msgstr "İmalatçıları" -#: netbox/netbox/navigation/menu.py:92 +#: netbox/navigation/menu.py:92 msgid "Device Components" msgstr "Cihaz Bileşenleri" -#: netbox/netbox/navigation/menu.py:104 -#: netbox/templates/dcim/inventoryitemrole.html:8 +#: netbox/navigation/menu.py:104 templates/dcim/inventoryitemrole.html:8 msgid "Inventory Item Roles" msgstr "Envanter Öğesi Rolleri" -#: netbox/netbox/navigation/menu.py:111 netbox/netbox/navigation/menu.py:115 +#: netbox/navigation/menu.py:111 netbox/navigation/menu.py:115 msgid "Connections" msgstr "Bağlantılar" -#: netbox/netbox/navigation/menu.py:117 +#: netbox/navigation/menu.py:117 msgid "Cables" msgstr "Kablolar" -#: netbox/netbox/navigation/menu.py:118 +#: netbox/navigation/menu.py:118 msgid "Wireless Links" msgstr "Kablosuz Bağlantılar" -#: netbox/netbox/navigation/menu.py:121 +#: netbox/navigation/menu.py:121 msgid "Interface Connections" msgstr "Arayüz Bağlantıları" -#: netbox/netbox/navigation/menu.py:126 +#: netbox/navigation/menu.py:126 msgid "Console Connections" msgstr "Konsol Bağlantıları" -#: netbox/netbox/navigation/menu.py:131 +#: netbox/navigation/menu.py:131 msgid "Power Connections" msgstr "Güç Bağlantıları" -#: netbox/netbox/navigation/menu.py:147 +#: netbox/navigation/menu.py:147 msgid "Wireless LAN Groups" msgstr "Kablosuz LAN Grupları" -#: netbox/netbox/navigation/menu.py:168 +#: netbox/navigation/menu.py:168 msgid "Prefix & VLAN Roles" msgstr "Önek ve VLAN Rolleri" -#: netbox/netbox/navigation/menu.py:174 +#: netbox/navigation/menu.py:174 msgid "ASN Ranges" msgstr "ASN Aralıkları" -#: netbox/netbox/navigation/menu.py:196 +#: netbox/navigation/menu.py:196 msgid "VLAN Groups" msgstr "VLAN Grupları" -#: netbox/netbox/navigation/menu.py:203 +#: netbox/navigation/menu.py:203 msgid "Service Templates" msgstr "Hizmet Şablonları" -#: netbox/netbox/navigation/menu.py:204 netbox/templates/dcim/device.html:302 -#: netbox/templates/ipam/ipaddress.html:118 -#: netbox/templates/virtualization/virtualmachine.html:154 +#: netbox/navigation/menu.py:204 templates/dcim/device.html:302 +#: templates/ipam/ipaddress.html:118 +#: templates/virtualization/virtualmachine.html:154 msgid "Services" msgstr "HİZMETLER" -#: netbox/netbox/navigation/menu.py:211 +#: netbox/navigation/menu.py:211 msgid "VPN" msgstr "VPN" -#: netbox/netbox/navigation/menu.py:215 netbox/netbox/navigation/menu.py:217 -#: netbox/vpn/tables/tunnels.py:24 +#: netbox/navigation/menu.py:215 netbox/navigation/menu.py:217 +#: vpn/tables/tunnels.py:24 msgid "Tunnels" msgstr "Tüneller" -#: netbox/netbox/navigation/menu.py:218 -#: netbox/templates/vpn/tunnelgroup.html:8 +#: netbox/navigation/menu.py:218 templates/vpn/tunnelgroup.html:8 msgid "Tunnel Groups" msgstr "Tünel Grupları" -#: netbox/netbox/navigation/menu.py:219 +#: netbox/navigation/menu.py:219 msgid "Tunnel Terminations" msgstr "Tünel Sonlandırmaları" -#: netbox/netbox/navigation/menu.py:223 netbox/netbox/navigation/menu.py:225 -#: netbox/vpn/models/l2vpn.py:64 +#: netbox/navigation/menu.py:223 netbox/navigation/menu.py:225 +#: vpn/models/l2vpn.py:64 msgid "L2VPNs" msgstr "L2VPN'ler" -#: netbox/netbox/navigation/menu.py:226 netbox/templates/vpn/l2vpn.html:56 -#: netbox/templates/vpn/tunnel.html:72 netbox/vpn/tables/tunnels.py:58 +#: netbox/navigation/menu.py:226 templates/vpn/l2vpn.html:56 +#: templates/vpn/tunnel.html:72 vpn/tables/tunnels.py:58 msgid "Terminations" msgstr "Fesih" -#: netbox/netbox/navigation/menu.py:232 +#: netbox/navigation/menu.py:232 msgid "IKE Proposals" msgstr "IKE Teklifleri" -#: netbox/netbox/navigation/menu.py:233 -#: netbox/templates/vpn/ikeproposal.html:41 +#: netbox/navigation/menu.py:233 templates/vpn/ikeproposal.html:41 msgid "IKE Policies" msgstr "IKE Politikaları" -#: netbox/netbox/navigation/menu.py:234 +#: netbox/navigation/menu.py:234 msgid "IPSec Proposals" msgstr "IPSec Önerileri" -#: netbox/netbox/navigation/menu.py:235 -#: netbox/templates/vpn/ipsecproposal.html:37 +#: netbox/navigation/menu.py:235 templates/vpn/ipsecproposal.html:37 msgid "IPSec Policies" msgstr "IPsec İlkeleri" -#: netbox/netbox/navigation/menu.py:236 netbox/templates/vpn/ikepolicy.html:38 -#: netbox/templates/vpn/ipsecpolicy.html:25 +#: netbox/navigation/menu.py:236 templates/vpn/ikepolicy.html:38 +#: templates/vpn/ipsecpolicy.html:25 msgid "IPSec Profiles" msgstr "IPsec Profilleri" -#: netbox/netbox/navigation/menu.py:243 -#: netbox/templates/dcim/device_edit.html:78 +#: netbox/navigation/menu.py:243 templates/dcim/device_edit.html:78 msgid "Virtualization" msgstr "Sanallaştırma" -#: netbox/netbox/navigation/menu.py:251 -#: netbox/templates/virtualization/virtualmachine.html:174 -#: netbox/templates/virtualization/virtualmachine/base.html:32 -#: netbox/templates/virtualization/virtualmachine_list.html:21 -#: netbox/virtualization/tables/virtualmachines.py:104 -#: netbox/virtualization/views.py:388 +#: netbox/navigation/menu.py:251 +#: templates/virtualization/virtualmachine.html:174 +#: templates/virtualization/virtualmachine/base.html:32 +#: templates/virtualization/virtualmachine_list.html:21 +#: virtualization/tables/virtualmachines.py:104 virtualization/views.py:388 msgid "Virtual Disks" msgstr "Sanal Diskler" -#: netbox/netbox/navigation/menu.py:258 +#: netbox/navigation/menu.py:258 msgid "Cluster Types" msgstr "Küme Türleri" -#: netbox/netbox/navigation/menu.py:259 +#: netbox/navigation/menu.py:259 msgid "Cluster Groups" msgstr "Küme Grupları" -#: netbox/netbox/navigation/menu.py:273 +#: netbox/navigation/menu.py:273 msgid "Circuit Types" msgstr "Devre Türleri" -#: netbox/netbox/navigation/menu.py:274 +#: netbox/navigation/menu.py:274 msgid "Circuit Groups" msgstr "Devre Grupları" -#: netbox/netbox/navigation/menu.py:275 -#: netbox/templates/circuits/circuit.html:66 +#: netbox/navigation/menu.py:275 templates/circuits/circuit.html:66 msgid "Group Assignments" msgstr "Grup Ödevleri" -#: netbox/netbox/navigation/menu.py:276 +#: netbox/navigation/menu.py:276 msgid "Circuit Terminations" msgstr "Devre Sonlandırmaları" -#: netbox/netbox/navigation/menu.py:280 netbox/netbox/navigation/menu.py:282 +#: netbox/navigation/menu.py:280 netbox/navigation/menu.py:282 msgid "Providers" msgstr "Sağlayıcılar" -#: netbox/netbox/navigation/menu.py:283 -#: netbox/templates/circuits/provider.html:51 +#: netbox/navigation/menu.py:283 templates/circuits/provider.html:51 msgid "Provider Accounts" msgstr "Sağlayıcı Hesapları" -#: netbox/netbox/navigation/menu.py:284 +#: netbox/navigation/menu.py:284 msgid "Provider Networks" msgstr "Sağlayıcı Ağları" -#: netbox/netbox/navigation/menu.py:298 +#: netbox/navigation/menu.py:298 msgid "Power Panels" msgstr "Güç Panelleri" -#: netbox/netbox/navigation/menu.py:309 +#: netbox/navigation/menu.py:309 msgid "Configurations" msgstr "Yapılandırmalar" -#: netbox/netbox/navigation/menu.py:311 +#: netbox/navigation/menu.py:311 msgid "Config Contexts" msgstr "Yapılandırma Bağlamları" -#: netbox/netbox/navigation/menu.py:312 +#: netbox/navigation/menu.py:312 msgid "Config Templates" msgstr "Yapılandırma Şablonları" -#: netbox/netbox/navigation/menu.py:319 netbox/netbox/navigation/menu.py:323 +#: netbox/navigation/menu.py:319 netbox/navigation/menu.py:323 msgid "Customization" msgstr "Özelleştirme" -#: netbox/netbox/navigation/menu.py:325 -#: netbox/templates/dcim/device_edit.html:103 -#: netbox/templates/dcim/htmx/cable_edit.html:81 -#: netbox/templates/dcim/virtualchassis_add.html:31 -#: netbox/templates/dcim/virtualchassis_edit.html:40 -#: netbox/templates/generic/bulk_edit.html:76 -#: netbox/templates/htmx/form.html:19 netbox/templates/inc/filter_list.html:30 -#: netbox/templates/inc/panels/custom_fields.html:7 -#: netbox/templates/ipam/ipaddress_bulk_add.html:35 -#: netbox/templates/ipam/vlan_edit.html:59 +#: netbox/navigation/menu.py:325 templates/dcim/device_edit.html:103 +#: templates/dcim/htmx/cable_edit.html:81 +#: templates/dcim/virtualchassis_add.html:31 +#: templates/dcim/virtualchassis_edit.html:40 +#: templates/generic/bulk_edit.html:76 templates/htmx/form.html:19 +#: templates/inc/filter_list.html:30 templates/inc/panels/custom_fields.html:7 +#: templates/ipam/ipaddress_bulk_add.html:35 templates/ipam/vlan_edit.html:59 msgid "Custom Fields" msgstr "Özel Alanlar" -#: netbox/netbox/navigation/menu.py:326 +#: netbox/navigation/menu.py:326 msgid "Custom Field Choices" msgstr "Özel Alan Seçenekleri" -#: netbox/netbox/navigation/menu.py:327 +#: netbox/navigation/menu.py:327 msgid "Custom Links" msgstr "Özel Bağlantılar" -#: netbox/netbox/navigation/menu.py:328 +#: netbox/navigation/menu.py:328 msgid "Export Templates" msgstr "Şablonları Dışa Aktar" -#: netbox/netbox/navigation/menu.py:329 +#: netbox/navigation/menu.py:329 msgid "Saved Filters" msgstr "Kaydedilen Filtreler" -#: netbox/netbox/navigation/menu.py:331 +#: netbox/navigation/menu.py:331 msgid "Image Attachments" msgstr "Görüntü Ekleri" -#: netbox/netbox/navigation/menu.py:349 +#: netbox/navigation/menu.py:349 msgid "Operations" msgstr "Operasyonlar" -#: netbox/netbox/navigation/menu.py:353 +#: netbox/navigation/menu.py:353 msgid "Integrations" msgstr "Entegrasyonlar" -#: netbox/netbox/navigation/menu.py:355 +#: netbox/navigation/menu.py:355 msgid "Data Sources" msgstr "Veri Kaynakları" -#: netbox/netbox/navigation/menu.py:356 +#: netbox/navigation/menu.py:356 msgid "Event Rules" msgstr "Etkinlik Kuralları" -#: netbox/netbox/navigation/menu.py:357 +#: netbox/navigation/menu.py:357 msgid "Webhooks" msgstr "Web kancaları" -#: netbox/netbox/navigation/menu.py:361 netbox/netbox/navigation/menu.py:365 -#: netbox/netbox/views/generic/feature_views.py:153 -#: netbox/templates/extras/report/base.html:37 -#: netbox/templates/extras/script/base.html:36 +#: netbox/navigation/menu.py:361 netbox/navigation/menu.py:365 +#: netbox/views/generic/feature_views.py:153 +#: templates/extras/report/base.html:37 templates/extras/script/base.html:36 msgid "Jobs" msgstr "Meslekler" -#: netbox/netbox/navigation/menu.py:371 +#: netbox/navigation/menu.py:371 msgid "Logging" msgstr "Günlüğe kaydetme" -#: netbox/netbox/navigation/menu.py:373 +#: netbox/navigation/menu.py:373 msgid "Notification Groups" msgstr "Bildirim Grupları" -#: netbox/netbox/navigation/menu.py:374 +#: netbox/navigation/menu.py:374 msgid "Journal Entries" msgstr "Dergi Girişleri" -#: netbox/netbox/navigation/menu.py:375 -#: netbox/templates/core/objectchange.html:9 -#: netbox/templates/core/objectchange_list.html:4 +#: netbox/navigation/menu.py:375 templates/core/objectchange.html:9 +#: templates/core/objectchange_list.html:4 msgid "Change Log" msgstr "Değişim Günlüğü" -#: netbox/netbox/navigation/menu.py:382 netbox/templates/inc/user_menu.html:29 +#: netbox/navigation/menu.py:382 templates/inc/user_menu.html:29 msgid "Admin" msgstr "Yönetici" -#: netbox/netbox/navigation/menu.py:430 netbox/templates/account/base.html:27 -#: netbox/templates/inc/user_menu.html:57 +#: netbox/navigation/menu.py:430 templates/account/base.html:27 +#: templates/inc/user_menu.html:57 msgid "API Tokens" msgstr "API Belirteçleri" -#: netbox/netbox/navigation/menu.py:437 netbox/users/forms/model_forms.py:187 -#: netbox/users/forms/model_forms.py:195 netbox/users/forms/model_forms.py:242 -#: netbox/users/forms/model_forms.py:249 +#: netbox/navigation/menu.py:437 users/forms/model_forms.py:187 +#: users/forms/model_forms.py:195 users/forms/model_forms.py:242 +#: users/forms/model_forms.py:249 msgid "Permissions" msgstr "İzinler" -#: netbox/netbox/navigation/menu.py:445 netbox/netbox/navigation/menu.py:449 -#: netbox/templates/core/system.html:7 +#: netbox/navigation/menu.py:445 netbox/navigation/menu.py:449 +#: templates/core/system.html:7 msgid "System" msgstr "Sistem" -#: netbox/netbox/navigation/menu.py:454 netbox/netbox/navigation/menu.py:502 -#: netbox/templates/500.html:35 netbox/templates/account/preferences.html:22 -#: netbox/templates/core/plugin.html:12 -#: netbox/templates/core/plugin_list.html:7 -#: netbox/templates/core/plugin_list.html:12 +#: netbox/navigation/menu.py:454 netbox/navigation/menu.py:502 +#: templates/500.html:35 templates/account/preferences.html:22 +#: templates/core/plugin.html:13 templates/core/plugin_list.html:7 +#: templates/core/plugin_list.html:12 msgid "Plugins" msgstr "Eklentiler" -#: netbox/netbox/navigation/menu.py:459 +#: netbox/navigation/menu.py:459 msgid "Configuration History" msgstr "Yapılandırma Geçmişi" -#: netbox/netbox/navigation/menu.py:465 netbox/templates/core/rq_task.html:8 -#: netbox/templates/core/rq_task_list.html:22 +#: netbox/navigation/menu.py:465 templates/core/rq_task.html:8 +#: templates/core/rq_task_list.html:22 msgid "Background Tasks" msgstr "Arka Plan Görevleri" -#: netbox/netbox/plugins/navigation.py:47 -#: netbox/netbox/plugins/navigation.py:69 +#: netbox/plugins/navigation.py:47 netbox/plugins/navigation.py:69 msgid "Permissions must be passed as a tuple or list." msgstr "İzinler bir küme veya liste olarak iletilmelidir." -#: netbox/netbox/plugins/navigation.py:51 +#: netbox/plugins/navigation.py:51 msgid "Buttons must be passed as a tuple or list." msgstr "Düğmeler bir küme veya liste olarak iletilmelidir." -#: netbox/netbox/plugins/navigation.py:73 +#: netbox/plugins/navigation.py:73 msgid "Button color must be a choice within ButtonColorChoices." msgstr "Düğme rengi ButtonColorChoices içinde bir seçim olmalıdır." -#: netbox/netbox/plugins/registration.py:25 +#: netbox/plugins/registration.py:25 #, python-brace-format msgid "" "PluginTemplateExtension class {template_extension} was passed as an " @@ -11176,7 +10546,7 @@ msgstr "" "PluginTemplateExtension sınıfı {template_extension} Örnek olarak kabul " "edildi!" -#: netbox/netbox/plugins/registration.py:31 +#: netbox/plugins/registration.py:31 #, python-brace-format msgid "" "{template_extension} is not a subclass of " @@ -11185,195 +10555,194 @@ msgstr "" "{template_extension} Netbox.plugins.pluginTemplateExtension'ın bir alt " "sınıfı değildir!" -#: netbox/netbox/plugins/registration.py:51 +#: netbox/plugins/registration.py:51 #, python-brace-format msgid "{item} must be an instance of netbox.plugins.PluginMenuItem" msgstr "{item} Netbox.Plugins.PluginMenuItem örneği olmalıdır" -#: netbox/netbox/plugins/registration.py:62 +#: netbox/plugins/registration.py:62 #, python-brace-format msgid "{menu_link} must be an instance of netbox.plugins.PluginMenuItem" msgstr "{menu_link} Netbox.Plugins.PluginMenuItem örneği olmalıdır" -#: netbox/netbox/plugins/registration.py:67 +#: netbox/plugins/registration.py:67 #, python-brace-format msgid "{button} must be an instance of netbox.plugins.PluginMenuButton" msgstr "{button} Netbox.Plugins.PluginMenuButton örneği olmalıdır" -#: netbox/netbox/plugins/templates.py:37 +#: netbox/plugins/templates.py:37 msgid "extra_context must be a dictionary" msgstr "extra_context bir sözlük olmalıdır" -#: netbox/netbox/preferences.py:19 +#: netbox/preferences.py:19 msgid "HTMX Navigation" msgstr "HTMX Navigasyon" -#: netbox/netbox/preferences.py:24 +#: netbox/preferences.py:24 msgid "Enable dynamic UI navigation" msgstr "Dinamik kullanıcı arayüzü gezinmesini etkinleştir" -#: netbox/netbox/preferences.py:26 +#: netbox/preferences.py:26 msgid "Experimental feature" msgstr "Deneysel özellik" -#: netbox/netbox/preferences.py:29 +#: netbox/preferences.py:29 msgid "Language" msgstr "Dil" -#: netbox/netbox/preferences.py:34 +#: netbox/preferences.py:34 msgid "Forces UI translation to the specified language" msgstr "Kullanıcı arabirimi çevirisini belirtilen dile zorlar" -#: netbox/netbox/preferences.py:36 +#: netbox/preferences.py:36 msgid "Support for translation has been disabled locally" msgstr "Çeviri desteği yerel olarak devre dışı bırakıldı" -#: netbox/netbox/preferences.py:42 +#: netbox/preferences.py:42 msgid "Page length" msgstr "Sayfa uzunluğu" -#: netbox/netbox/preferences.py:44 +#: netbox/preferences.py:44 msgid "The default number of objects to display per page" msgstr "Sayfa başına görüntülenecek varsayılan nesne sayısı" -#: netbox/netbox/preferences.py:48 +#: netbox/preferences.py:48 msgid "Paginator placement" msgstr "Paginator yerleşimi" -#: netbox/netbox/preferences.py:50 +#: netbox/preferences.py:50 msgid "Bottom" msgstr "Alt" -#: netbox/netbox/preferences.py:51 +#: netbox/preferences.py:51 msgid "Top" msgstr "Üst" -#: netbox/netbox/preferences.py:52 +#: netbox/preferences.py:52 msgid "Both" msgstr "İkisi de" -#: netbox/netbox/preferences.py:55 +#: netbox/preferences.py:55 msgid "Where the paginator controls will be displayed relative to a table" msgstr "Paginator kontrollerinin bir tabloya göre görüntüleneceği yer" -#: netbox/netbox/preferences.py:60 +#: netbox/preferences.py:60 msgid "Data format" msgstr "Veri biçimi" -#: netbox/netbox/preferences.py:65 +#: netbox/preferences.py:65 msgid "The preferred syntax for displaying generic data within the UI" msgstr "" "Kullanıcı arayüzünde genel verileri görüntülemek için tercih edilen " "sözdizimi" -#: netbox/netbox/registry.py:14 +#: netbox/registry.py:14 #, python-brace-format msgid "Invalid store: {key}" msgstr "Geçersiz mağaza: {key}" -#: netbox/netbox/registry.py:17 +#: netbox/registry.py:17 msgid "Cannot add stores to registry after initialization" msgstr "Başlatıldıktan sonra kayıt defterine mağazalar eklenemiyor" -#: netbox/netbox/registry.py:20 +#: netbox/registry.py:20 msgid "Cannot delete stores from registry" msgstr "Mağazalar kayıt defterinden silinemiyor" -#: netbox/netbox/settings.py:760 +#: netbox/settings.py:760 msgid "Czech" msgstr "Çek" -#: netbox/netbox/settings.py:761 +#: netbox/settings.py:761 msgid "Danish" msgstr "Danca" -#: netbox/netbox/settings.py:762 +#: netbox/settings.py:762 msgid "German" msgstr "Alman" -#: netbox/netbox/settings.py:763 +#: netbox/settings.py:763 msgid "English" msgstr "İngilizce" -#: netbox/netbox/settings.py:764 +#: netbox/settings.py:764 msgid "Spanish" msgstr "İspanyolca" -#: netbox/netbox/settings.py:765 +#: netbox/settings.py:765 msgid "French" msgstr "Fransızca" -#: netbox/netbox/settings.py:766 +#: netbox/settings.py:766 msgid "Italian" msgstr "İtalyan" -#: netbox/netbox/settings.py:767 +#: netbox/settings.py:767 msgid "Japanese" msgstr "Japonca" -#: netbox/netbox/settings.py:768 +#: netbox/settings.py:768 msgid "Dutch" msgstr "Hollandalı" -#: netbox/netbox/settings.py:769 +#: netbox/settings.py:769 msgid "Polish" msgstr "Lehçe" -#: netbox/netbox/settings.py:770 +#: netbox/settings.py:770 msgid "Portuguese" msgstr "Portekizce" -#: netbox/netbox/settings.py:771 +#: netbox/settings.py:771 msgid "Russian" msgstr "Rusça" -#: netbox/netbox/settings.py:772 +#: netbox/settings.py:772 msgid "Turkish" msgstr "Türkçe" -#: netbox/netbox/settings.py:773 +#: netbox/settings.py:773 msgid "Ukrainian" msgstr "Ukraynalı" -#: netbox/netbox/settings.py:774 +#: netbox/settings.py:774 msgid "Chinese" msgstr "Çince" -#: netbox/netbox/tables/columns.py:176 +#: netbox/tables/columns.py:176 msgid "Select all" msgstr "Tümünü seç" -#: netbox/netbox/tables/columns.py:189 +#: netbox/tables/columns.py:189 msgid "Toggle all" msgstr "Tümünü değiştir" -#: netbox/netbox/tables/columns.py:300 +#: netbox/tables/columns.py:300 msgid "Toggle Dropdown" msgstr "Açılır menüyü Aç/Kapat" -#: netbox/netbox/tables/columns.py:572 netbox/templates/core/job.html:53 +#: netbox/tables/columns.py:572 templates/core/job.html:53 msgid "Error" msgstr "Hata" -#: netbox/netbox/tables/tables.py:58 +#: netbox/tables/tables.py:58 #, python-brace-format msgid "No {model_name} found" msgstr "Hayır {model_name} bulunan" -#: netbox/netbox/tables/tables.py:249 -#: netbox/templates/generic/bulk_import.html:117 +#: netbox/tables/tables.py:249 templates/generic/bulk_import.html:117 msgid "Field" msgstr "Tarla" -#: netbox/netbox/tables/tables.py:252 +#: netbox/tables/tables.py:252 msgid "Value" msgstr "Değer" -#: netbox/netbox/tests/dummy_plugin/navigation.py:29 +#: netbox/tests/dummy_plugin/navigation.py:29 msgid "Dummy Plugin" msgstr "Sahte Eklenti" -#: netbox/netbox/views/generic/bulk_views.py:114 +#: netbox/views/generic/bulk_views.py:114 #, python-brace-format msgid "" "There was an error rendering the selected export template ({template}): " @@ -11382,56 +10751,56 @@ msgstr "" "Seçilen dışa aktarma şablonunu oluştururken bir hata oluştu ({template}): " "{error}" -#: netbox/netbox/views/generic/bulk_views.py:416 +#: netbox/views/generic/bulk_views.py:416 #, python-brace-format msgid "Row {i}: Object with ID {id} does not exist" msgstr "Satır {i}: Kimliği olan nesne {id} mevcut değil" -#: netbox/netbox/views/generic/bulk_views.py:699 -#: netbox/netbox/views/generic/bulk_views.py:897 -#: netbox/netbox/views/generic/bulk_views.py:945 +#: netbox/views/generic/bulk_views.py:702 +#: netbox/views/generic/bulk_views.py:900 +#: netbox/views/generic/bulk_views.py:948 #, python-brace-format msgid "No {object_type} were selected." msgstr "Hayır {object_type} seçildi." -#: netbox/netbox/views/generic/bulk_views.py:779 +#: netbox/views/generic/bulk_views.py:782 #, python-brace-format msgid "Renamed {count} {object_type}" msgstr "Yeniden adlandırıldı {count} {object_type}" -#: netbox/netbox/views/generic/bulk_views.py:875 +#: netbox/views/generic/bulk_views.py:878 #, python-brace-format msgid "Deleted {count} {object_type}" msgstr "Silinmiş {count} {object_type}" -#: netbox/netbox/views/generic/feature_views.py:40 +#: netbox/views/generic/feature_views.py:40 msgid "Changelog" msgstr "Değişiklik Günlüğü" -#: netbox/netbox/views/generic/feature_views.py:93 +#: netbox/views/generic/feature_views.py:93 msgid "Journal" msgstr "dergi" -#: netbox/netbox/views/generic/feature_views.py:207 +#: netbox/views/generic/feature_views.py:207 msgid "Unable to synchronize data: No data file set." msgstr "Veriler senkronize edilemiyor: Veri dosyası kümesi yok." -#: netbox/netbox/views/generic/feature_views.py:211 +#: netbox/views/generic/feature_views.py:211 #, python-brace-format msgid "Synchronized data for {object_type} {object}." msgstr "Senkronize edilmiş veriler {object_type} {object}." -#: netbox/netbox/views/generic/feature_views.py:236 +#: netbox/views/generic/feature_views.py:236 #, python-brace-format msgid "Synced {count} {object_type}" msgstr "Senkronize {count} {object_type}" -#: netbox/netbox/views/generic/object_views.py:108 +#: netbox/views/generic/object_views.py:108 #, python-brace-format msgid "{class_name} must implement get_children()" msgstr "{class_name} get_children () uygulamasını uygulamalıdır" -#: netbox/netbox/views/misc.py:44 +#: netbox/views/misc.py:44 msgid "" "There was an error loading the dashboard configuration. A default dashboard " "is in use." @@ -11439,748 +10808,703 @@ msgstr "" "Kontrol paneli yapılandırması yüklenirken bir hata oluştu. Varsayılan bir " "gösterge tablosu kullanımda." -#: netbox/templates/403.html:4 +#: templates/403.html:4 msgid "Access Denied" msgstr "Erişim Reddedildi" -#: netbox/templates/403.html:9 +#: templates/403.html:9 msgid "You do not have permission to access this page" msgstr "Bu sayfaya erişim izniniz yok" -#: netbox/templates/404.html:4 +#: templates/404.html:4 msgid "Page Not Found" msgstr "Sayfa Bulunamadı" -#: netbox/templates/404.html:9 +#: templates/404.html:9 msgid "The requested page does not exist" msgstr "İstenen sayfa mevcut değil" -#: netbox/templates/500.html:7 netbox/templates/500.html:18 +#: templates/500.html:7 templates/500.html:18 msgid "Server Error" msgstr "Sunucu Hatası" -#: netbox/templates/500.html:23 +#: templates/500.html:23 msgid "There was a problem with your request. Please contact an administrator" msgstr "İsteğinizle ilgili bir sorun oluştu. Lütfen bir yöneticiye başvurun" -#: netbox/templates/500.html:28 +#: templates/500.html:28 msgid "The complete exception is provided below" msgstr "Tam istisna aşağıda verilmiştir" -#: netbox/templates/500.html:33 netbox/templates/core/system.html:40 +#: templates/500.html:33 templates/core/system.html:40 msgid "Python version" msgstr "Python sürümü" -#: netbox/templates/500.html:34 +#: templates/500.html:34 msgid "NetBox version" msgstr "NetBox sürümü" -#: netbox/templates/500.html:36 +#: templates/500.html:36 msgid "None installed" msgstr "Yüklü yok" -#: netbox/templates/500.html:39 +#: templates/500.html:39 msgid "If further assistance is required, please post to the" msgstr "Daha fazla yardım gerekiyorsa, lütfen şu adrese gönderin" -#: netbox/templates/500.html:39 +#: templates/500.html:39 msgid "NetBox discussion forum" msgstr "NetBox tartışma forumu" -#: netbox/templates/500.html:39 +#: templates/500.html:39 msgid "on GitHub" msgstr "GitHub'da" -#: netbox/templates/500.html:42 netbox/templates/base/40x.html:17 +#: templates/500.html:42 templates/base/40x.html:17 msgid "Home Page" msgstr "Ana Sayfa" -#: netbox/templates/account/base.html:7 netbox/templates/inc/user_menu.html:45 -#: netbox/vpn/forms/bulk_edit.py:255 netbox/vpn/forms/filtersets.py:189 -#: netbox/vpn/forms/model_forms.py:379 +#: templates/account/base.html:7 templates/inc/user_menu.html:45 +#: vpn/forms/bulk_edit.py:255 vpn/forms/filtersets.py:189 +#: vpn/forms/model_forms.py:379 msgid "Profile" msgstr "Profil" -#: netbox/templates/account/base.html:13 -#: netbox/templates/account/notifications.html:7 -#: netbox/templates/inc/user_menu.html:15 +#: templates/account/base.html:13 templates/account/notifications.html:7 +#: templates/inc/user_menu.html:15 msgid "Notifications" msgstr "Bildirimler" -#: netbox/templates/account/base.html:16 -#: netbox/templates/account/subscriptions.html:7 -#: netbox/templates/inc/user_menu.html:51 +#: templates/account/base.html:16 templates/account/subscriptions.html:7 +#: templates/inc/user_menu.html:51 msgid "Subscriptions" msgstr "Abonelikler" -#: netbox/templates/account/base.html:19 -#: netbox/templates/inc/user_menu.html:54 +#: templates/account/base.html:19 templates/inc/user_menu.html:54 msgid "Preferences" msgstr "Tercihler" -#: netbox/templates/account/password.html:5 +#: templates/account/password.html:5 msgid "Change Password" msgstr "Şifreyi Değiştir" -#: netbox/templates/account/password.html:19 -#: netbox/templates/account/preferences.html:77 -#: netbox/templates/core/configrevision_restore.html:63 -#: netbox/templates/dcim/devicebay_populate.html:34 -#: netbox/templates/dcim/virtualchassis_add_member.html:26 -#: netbox/templates/dcim/virtualchassis_edit.html:103 -#: netbox/templates/extras/object_journal.html:26 -#: netbox/templates/extras/script.html:38 -#: netbox/templates/generic/bulk_add_component.html:67 -#: netbox/templates/generic/bulk_delete.html:65 -#: netbox/templates/generic/bulk_edit.html:106 -#: netbox/templates/generic/bulk_import.html:56 -#: netbox/templates/generic/bulk_import.html:78 -#: netbox/templates/generic/bulk_import.html:100 -#: netbox/templates/generic/bulk_remove.html:62 -#: netbox/templates/generic/bulk_rename.html:63 -#: netbox/templates/generic/confirmation_form.html:19 -#: netbox/templates/generic/object_edit.html:72 -#: netbox/templates/htmx/delete_form.html:53 -#: netbox/templates/htmx/delete_form.html:55 -#: netbox/templates/ipam/ipaddress_assign.html:28 -#: netbox/templates/virtualization/cluster_add_devices.html:30 +#: templates/account/password.html:19 templates/account/preferences.html:77 +#: templates/core/configrevision_restore.html:63 +#: templates/dcim/devicebay_populate.html:34 +#: templates/dcim/virtualchassis_add_member.html:26 +#: templates/dcim/virtualchassis_edit.html:103 +#: templates/extras/object_journal.html:26 templates/extras/script.html:38 +#: templates/generic/bulk_add_component.html:67 +#: templates/generic/bulk_delete.html:65 templates/generic/bulk_edit.html:106 +#: templates/generic/bulk_import.html:56 templates/generic/bulk_import.html:78 +#: templates/generic/bulk_import.html:100 +#: templates/generic/bulk_remove.html:62 templates/generic/bulk_rename.html:63 +#: templates/generic/confirmation_form.html:19 +#: templates/generic/object_edit.html:72 templates/htmx/delete_form.html:53 +#: templates/htmx/delete_form.html:55 templates/ipam/ipaddress_assign.html:28 +#: templates/virtualization/cluster_add_devices.html:30 msgid "Cancel" msgstr "İptal" -#: netbox/templates/account/password.html:20 -#: netbox/templates/account/preferences.html:78 -#: netbox/templates/dcim/devicebay_populate.html:35 -#: netbox/templates/dcim/virtualchassis_add_member.html:28 -#: netbox/templates/dcim/virtualchassis_edit.html:105 -#: netbox/templates/extras/dashboard/widget_add.html:26 -#: netbox/templates/extras/dashboard/widget_config.html:19 -#: netbox/templates/extras/object_journal.html:27 -#: netbox/templates/generic/object_edit.html:75 -#: netbox/utilities/templates/helpers/applied_filters.html:16 -#: netbox/utilities/templates/helpers/table_config_form.html:40 +#: templates/account/password.html:20 templates/account/preferences.html:78 +#: templates/dcim/devicebay_populate.html:35 +#: templates/dcim/virtualchassis_add_member.html:28 +#: templates/dcim/virtualchassis_edit.html:105 +#: templates/extras/dashboard/widget_add.html:26 +#: templates/extras/dashboard/widget_config.html:19 +#: templates/extras/object_journal.html:27 +#: templates/generic/object_edit.html:75 +#: utilities/templates/helpers/applied_filters.html:16 +#: utilities/templates/helpers/table_config_form.html:40 msgid "Save" msgstr "Kaydet" -#: netbox/templates/account/preferences.html:34 +#: templates/account/preferences.html:34 msgid "Table Configurations" msgstr "Tablo Yapılandırmaları" -#: netbox/templates/account/preferences.html:39 +#: templates/account/preferences.html:39 msgid "Clear table preferences" msgstr "Tablo tercihlerini temizle" -#: netbox/templates/account/preferences.html:47 +#: templates/account/preferences.html:47 msgid "Toggle All" msgstr "Tümünü Değiştir" -#: netbox/templates/account/preferences.html:49 +#: templates/account/preferences.html:49 msgid "Table" msgstr "Tablo" -#: netbox/templates/account/preferences.html:50 +#: templates/account/preferences.html:50 msgid "Ordering" msgstr "Sipariş" -#: netbox/templates/account/preferences.html:51 +#: templates/account/preferences.html:51 msgid "Columns" msgstr "Sütunlar" -#: netbox/templates/account/preferences.html:71 -#: netbox/templates/dcim/cable_trace.html:113 -#: netbox/templates/extras/object_configcontext.html:43 +#: templates/account/preferences.html:71 templates/dcim/cable_trace.html:113 +#: templates/extras/object_configcontext.html:43 msgid "None found" msgstr "Hiçbiri bulunamadı" -#: netbox/templates/account/profile.html:6 +#: templates/account/profile.html:6 msgid "User Profile" msgstr "Kullanıcı Profili" -#: netbox/templates/account/profile.html:12 +#: templates/account/profile.html:12 msgid "Account Details" msgstr "Hesap Ayrıntıları" -#: netbox/templates/account/profile.html:29 -#: netbox/templates/tenancy/contact.html:43 -#: netbox/templates/users/user.html:25 netbox/tenancy/forms/bulk_edit.py:109 +#: templates/account/profile.html:29 templates/tenancy/contact.html:43 +#: templates/users/user.html:25 tenancy/forms/bulk_edit.py:109 msgid "Email" msgstr "E-posta" -#: netbox/templates/account/profile.html:33 -#: netbox/templates/users/user.html:29 +#: templates/account/profile.html:33 templates/users/user.html:29 msgid "Account Created" msgstr "Hesap Oluşturuldu" -#: netbox/templates/account/profile.html:37 -#: netbox/templates/users/user.html:33 +#: templates/account/profile.html:37 templates/users/user.html:33 msgid "Last Login" msgstr "Son Giriş" -#: netbox/templates/account/profile.html:41 -#: netbox/templates/users/user.html:45 +#: templates/account/profile.html:41 templates/users/user.html:45 msgid "Superuser" msgstr "Süper kullanıcı" -#: netbox/templates/account/profile.html:45 -#: netbox/templates/inc/user_menu.html:31 netbox/templates/users/user.html:41 +#: templates/account/profile.html:45 templates/inc/user_menu.html:31 +#: templates/users/user.html:41 msgid "Staff" msgstr "Personel" -#: netbox/templates/account/profile.html:53 -#: netbox/templates/users/objectpermission.html:82 -#: netbox/templates/users/user.html:53 +#: templates/account/profile.html:53 templates/users/objectpermission.html:82 +#: templates/users/user.html:53 msgid "Assigned Groups" msgstr "Atanan Gruplar" -#: netbox/templates/account/profile.html:58 -#: netbox/templates/circuits/circuit_terminations_swap.html:18 -#: netbox/templates/circuits/circuit_terminations_swap.html:26 -#: netbox/templates/circuits/circuittermination.html:34 -#: netbox/templates/circuits/inc/circuit_termination.html:68 -#: netbox/templates/core/objectchange.html:124 -#: netbox/templates/core/objectchange.html:142 -#: netbox/templates/dcim/devicebay.html:59 -#: netbox/templates/dcim/inc/panels/inventory_items.html:45 -#: netbox/templates/dcim/interface.html:296 -#: netbox/templates/dcim/modulebay.html:80 -#: netbox/templates/extras/configcontext.html:70 -#: netbox/templates/extras/eventrule.html:66 -#: netbox/templates/extras/htmx/script_result.html:60 -#: netbox/templates/extras/webhook.html:65 -#: netbox/templates/extras/webhook.html:75 -#: netbox/templates/inc/panel_table.html:13 -#: netbox/templates/inc/panels/comments.html:10 -#: netbox/templates/ipam/inc/panels/fhrp_groups.html:56 -#: netbox/templates/users/group.html:34 netbox/templates/users/group.html:44 -#: netbox/templates/users/objectpermission.html:77 -#: netbox/templates/users/objectpermission.html:87 -#: netbox/templates/users/user.html:58 netbox/templates/users/user.html:68 +#: templates/account/profile.html:58 +#: templates/circuits/circuit_terminations_swap.html:18 +#: templates/circuits/circuit_terminations_swap.html:26 +#: templates/circuits/circuittermination.html:34 +#: templates/circuits/inc/circuit_termination.html:68 +#: templates/core/objectchange.html:124 templates/core/objectchange.html:142 +#: templates/dcim/devicebay.html:59 +#: templates/dcim/inc/panels/inventory_items.html:45 +#: templates/dcim/interface.html:296 templates/dcim/modulebay.html:80 +#: templates/extras/configcontext.html:70 templates/extras/eventrule.html:66 +#: templates/extras/htmx/script_result.html:60 +#: templates/extras/webhook.html:65 templates/extras/webhook.html:75 +#: templates/inc/panel_table.html:13 templates/inc/panels/comments.html:10 +#: templates/ipam/inc/panels/fhrp_groups.html:56 templates/users/group.html:34 +#: templates/users/group.html:44 templates/users/objectpermission.html:77 +#: templates/users/objectpermission.html:87 templates/users/user.html:58 +#: templates/users/user.html:68 msgid "None" msgstr "Yok" -#: netbox/templates/account/profile.html:68 -#: netbox/templates/users/user.html:78 +#: templates/account/profile.html:68 templates/users/user.html:78 msgid "Recent Activity" msgstr "Son Etkinlik" -#: netbox/templates/account/token.html:8 -#: netbox/templates/account/token_list.html:6 +#: templates/account/token.html:8 templates/account/token_list.html:6 msgid "My API Tokens" msgstr "API Belirteçlerim" -#: netbox/templates/account/token.html:11 -#: netbox/templates/account/token.html:19 netbox/templates/users/token.html:6 -#: netbox/templates/users/token.html:14 netbox/users/forms/filtersets.py:120 +#: templates/account/token.html:11 templates/account/token.html:19 +#: templates/users/token.html:6 templates/users/token.html:14 +#: users/forms/filtersets.py:120 msgid "Token" msgstr "Simge" -#: netbox/templates/account/token.html:39 netbox/templates/users/token.html:31 -#: netbox/users/forms/bulk_edit.py:107 +#: templates/account/token.html:39 templates/users/token.html:31 +#: users/forms/bulk_edit.py:107 msgid "Write enabled" msgstr "Yazma etkin" -#: netbox/templates/account/token.html:51 netbox/templates/users/token.html:43 +#: templates/account/token.html:51 templates/users/token.html:43 msgid "Last used" msgstr "En son kullanılmış" -#: netbox/templates/account/token_list.html:12 +#: templates/account/token_list.html:12 msgid "Add a Token" msgstr "Bir Jeton Ekle" -#: netbox/templates/base/base.html:22 netbox/templates/home.html:27 +#: templates/base/base.html:22 templates/home.html:27 msgid "Home" msgstr "Ana Sayfa" -#: netbox/templates/base/layout.html:25 +#: templates/base/layout.html:25 msgid "NetBox Motif" msgstr "NetBox Motif" -#: netbox/templates/base/layout.html:38 netbox/templates/base/layout.html:39 -#: netbox/templates/login.html:14 netbox/templates/login.html:15 +#: templates/base/layout.html:38 templates/base/layout.html:39 +#: templates/login.html:14 templates/login.html:15 msgid "NetBox Logo" msgstr "NetBox Logosu" -#: netbox/templates/base/layout.html:150 netbox/templates/base/layout.html:151 +#: templates/base/layout.html:150 templates/base/layout.html:151 msgid "Docs" msgstr "Dokümanlar" -#: netbox/templates/base/layout.html:156 netbox/templates/base/layout.html:157 -#: netbox/templates/rest_framework/api.html:10 +#: templates/base/layout.html:156 templates/base/layout.html:157 +#: templates/rest_framework/api.html:10 msgid "REST API" msgstr "REST API" -#: netbox/templates/base/layout.html:162 netbox/templates/base/layout.html:163 +#: templates/base/layout.html:162 templates/base/layout.html:163 msgid "REST API documentation" msgstr "REST API belgeleri" -#: netbox/templates/base/layout.html:169 netbox/templates/base/layout.html:170 +#: templates/base/layout.html:169 templates/base/layout.html:170 msgid "GraphQL API" msgstr "GraphQL API" -#: netbox/templates/base/layout.html:185 netbox/templates/base/layout.html:186 +#: templates/base/layout.html:185 templates/base/layout.html:186 msgid "NetBox Labs Support" msgstr "NetBox Labs Desteği" -#: netbox/templates/base/layout.html:194 netbox/templates/base/layout.html:195 +#: templates/base/layout.html:194 templates/base/layout.html:195 msgid "Source Code" msgstr "Kaynak Kodu" -#: netbox/templates/base/layout.html:200 netbox/templates/base/layout.html:201 +#: templates/base/layout.html:200 templates/base/layout.html:201 msgid "Community" msgstr "Topluluk" -#: netbox/templates/circuits/circuit.html:47 +#: templates/circuits/circuit.html:47 msgid "Install Date" msgstr "Yükleme Tarihi" -#: netbox/templates/circuits/circuit.html:51 +#: templates/circuits/circuit.html:51 msgid "Termination Date" msgstr "Fesih Tarihi" -#: netbox/templates/circuits/circuit.html:70 -#: netbox/templates/ipam/inc/panels/fhrp_groups.html:15 +#: templates/circuits/circuit.html:70 +#: templates/ipam/inc/panels/fhrp_groups.html:15 msgid "Assign Group" msgstr "Grup Atama" -#: netbox/templates/circuits/circuit_terminations_swap.html:4 +#: templates/circuits/circuit_terminations_swap.html:4 msgid "Swap Circuit Terminations" msgstr "Takas Devresi Sonlandırmaları" -#: netbox/templates/circuits/circuit_terminations_swap.html:8 +#: templates/circuits/circuit_terminations_swap.html:8 #, python-format msgid "Swap these terminations for circuit %(circuit)s?" msgstr "%(circuit)s devre için bu sonlandırmaların yerini değiştirin ?" -#: netbox/templates/circuits/circuit_terminations_swap.html:14 +#: templates/circuits/circuit_terminations_swap.html:14 msgid "A side" msgstr "Bir taraf" -#: netbox/templates/circuits/circuit_terminations_swap.html:22 +#: templates/circuits/circuit_terminations_swap.html:22 msgid "Z side" msgstr "Z tarafı" -#: netbox/templates/circuits/circuitgroup.html:16 +#: templates/circuits/circuitgroup.html:16 msgid "Assign Circuit" msgstr "Devre Atama" -#: netbox/templates/circuits/circuitgroupassignment.html:19 +#: templates/circuits/circuitgroupassignment.html:19 msgid "Circuit Group Assignment" msgstr "Devre Grubu Ataması" -#: netbox/templates/circuits/circuittype.html:10 +#: templates/circuits/circuittype.html:10 msgid "Add Circuit" msgstr "Devre Ekle" -#: netbox/templates/circuits/circuittype.html:19 +#: templates/circuits/circuittype.html:19 msgid "Circuit Type" msgstr "Devre Tipi" -#: netbox/templates/circuits/inc/circuit_termination.html:10 -#: netbox/templates/dcim/devicetype/component_templates.html:33 -#: netbox/templates/dcim/manufacturer.html:11 -#: netbox/templates/dcim/moduletype/component_templates.html:29 -#: netbox/templates/generic/bulk_add_component.html:22 -#: netbox/templates/users/objectpermission.html:38 -#: netbox/utilities/templates/buttons/add.html:4 -#: netbox/utilities/templates/helpers/table_config_form.html:20 +#: templates/circuits/inc/circuit_termination.html:10 +#: templates/dcim/manufacturer.html:11 +#: templates/generic/bulk_add_component.html:22 +#: templates/users/objectpermission.html:38 +#: utilities/templates/buttons/add.html:4 +#: utilities/templates/helpers/table_config_form.html:20 msgid "Add" msgstr "Ekle" -#: netbox/templates/circuits/inc/circuit_termination.html:15 -#: netbox/templates/circuits/inc/circuit_termination_fields.html:36 -#: netbox/templates/dcim/inc/panels/inventory_items.html:32 -#: netbox/templates/dcim/moduletype/component_templates.html:20 -#: netbox/templates/dcim/powerpanel.html:56 -#: netbox/templates/extras/script_list.html:30 -#: netbox/templates/generic/object_edit.html:47 -#: netbox/templates/ipam/inc/ipaddress_edit_header.html:7 -#: netbox/templates/ipam/inc/panels/fhrp_groups.html:43 -#: netbox/utilities/templates/buttons/edit.html:3 +#: templates/circuits/inc/circuit_termination.html:15 +#: templates/circuits/inc/circuit_termination_fields.html:36 +#: templates/dcim/inc/panels/inventory_items.html:32 +#: templates/dcim/powerpanel.html:56 templates/extras/script_list.html:30 +#: templates/generic/object_edit.html:47 +#: templates/ipam/inc/ipaddress_edit_header.html:7 +#: templates/ipam/inc/panels/fhrp_groups.html:43 +#: utilities/templates/buttons/edit.html:3 msgid "Edit" msgstr "Düzenle" -#: netbox/templates/circuits/inc/circuit_termination.html:18 +#: templates/circuits/inc/circuit_termination.html:18 msgid "Swap" msgstr "Takas" -#: netbox/templates/circuits/inc/circuit_termination_fields.html:19 -#: netbox/templates/dcim/consoleport.html:59 -#: netbox/templates/dcim/consoleserverport.html:60 -#: netbox/templates/dcim/powerfeed.html:114 +#: templates/circuits/inc/circuit_termination_fields.html:19 +#: templates/dcim/consoleport.html:59 templates/dcim/consoleserverport.html:60 +#: templates/dcim/powerfeed.html:114 msgid "Marked as connected" msgstr "Bağlı olarak işaretlendi" -#: netbox/templates/circuits/inc/circuit_termination_fields.html:21 +#: templates/circuits/inc/circuit_termination_fields.html:21 msgid "to" msgstr "doğru" -#: netbox/templates/circuits/inc/circuit_termination_fields.html:31 -#: netbox/templates/circuits/inc/circuit_termination_fields.html:32 -#: netbox/templates/dcim/frontport.html:80 -#: netbox/templates/dcim/inc/connection_endpoints.html:7 -#: netbox/templates/dcim/interface.html:154 -#: netbox/templates/dcim/rearport.html:76 +#: templates/circuits/inc/circuit_termination_fields.html:31 +#: templates/circuits/inc/circuit_termination_fields.html:32 +#: templates/dcim/frontport.html:80 +#: templates/dcim/inc/connection_endpoints.html:7 +#: templates/dcim/interface.html:154 templates/dcim/rearport.html:76 msgid "Trace" msgstr "İzleme" -#: netbox/templates/circuits/inc/circuit_termination_fields.html:35 +#: templates/circuits/inc/circuit_termination_fields.html:35 msgid "Edit cable" msgstr "Kabloyu düzenle" -#: netbox/templates/circuits/inc/circuit_termination_fields.html:40 +#: templates/circuits/inc/circuit_termination_fields.html:40 msgid "Remove cable" msgstr "Kabloyu çıkarın" -#: netbox/templates/circuits/inc/circuit_termination_fields.html:41 -#: netbox/templates/dcim/bulk_disconnect.html:5 -#: netbox/templates/dcim/device/consoleports.html:12 -#: netbox/templates/dcim/device/consoleserverports.html:12 -#: netbox/templates/dcim/device/frontports.html:12 -#: netbox/templates/dcim/device/interfaces.html:16 -#: netbox/templates/dcim/device/poweroutlets.html:12 -#: netbox/templates/dcim/device/powerports.html:12 -#: netbox/templates/dcim/device/rearports.html:12 -#: netbox/templates/dcim/powerpanel.html:61 +#: templates/circuits/inc/circuit_termination_fields.html:41 +#: templates/dcim/bulk_disconnect.html:5 +#: templates/dcim/device/consoleports.html:12 +#: templates/dcim/device/consoleserverports.html:12 +#: templates/dcim/device/frontports.html:12 +#: templates/dcim/device/interfaces.html:16 +#: templates/dcim/device/poweroutlets.html:12 +#: templates/dcim/device/powerports.html:12 +#: templates/dcim/device/rearports.html:12 templates/dcim/powerpanel.html:61 msgid "Disconnect" msgstr "Bağlantıyı kes" -#: netbox/templates/circuits/inc/circuit_termination_fields.html:48 -#: netbox/templates/dcim/consoleport.html:69 -#: netbox/templates/dcim/consoleserverport.html:70 -#: netbox/templates/dcim/frontport.html:102 -#: netbox/templates/dcim/interface.html:180 -#: netbox/templates/dcim/interface.html:200 -#: netbox/templates/dcim/powerfeed.html:127 -#: netbox/templates/dcim/poweroutlet.html:71 -#: netbox/templates/dcim/poweroutlet.html:72 -#: netbox/templates/dcim/powerport.html:73 -#: netbox/templates/dcim/rearport.html:98 +#: templates/circuits/inc/circuit_termination_fields.html:48 +#: templates/dcim/consoleport.html:69 templates/dcim/consoleserverport.html:70 +#: templates/dcim/frontport.html:102 templates/dcim/interface.html:180 +#: templates/dcim/interface.html:200 templates/dcim/powerfeed.html:127 +#: templates/dcim/poweroutlet.html:71 templates/dcim/poweroutlet.html:72 +#: templates/dcim/powerport.html:73 templates/dcim/rearport.html:98 msgid "Connect" msgstr "Bağlan" -#: netbox/templates/circuits/inc/circuit_termination_fields.html:70 +#: templates/circuits/inc/circuit_termination_fields.html:70 msgid "Downstream" msgstr "Aşağı doğru" -#: netbox/templates/circuits/inc/circuit_termination_fields.html:71 +#: templates/circuits/inc/circuit_termination_fields.html:71 msgid "Upstream" msgstr "Yukarı akış" -#: netbox/templates/circuits/inc/circuit_termination_fields.html:80 +#: templates/circuits/inc/circuit_termination_fields.html:80 msgid "Cross-Connect" msgstr "Çapraz Bağlantı" -#: netbox/templates/circuits/inc/circuit_termination_fields.html:84 +#: templates/circuits/inc/circuit_termination_fields.html:84 msgid "Patch Panel/Port" msgstr "Yama Paneli/Bağlantı Noktası" -#: netbox/templates/circuits/provider.html:11 +#: templates/circuits/provider.html:11 msgid "Add circuit" msgstr "Devre ekle" -#: netbox/templates/circuits/provideraccount.html:17 +#: templates/circuits/provideraccount.html:17 msgid "Provider Account" msgstr "Sağlayıcı Hesabı" -#: netbox/templates/core/configrevision.html:35 +#: templates/core/configrevision.html:35 msgid "Configuration Data" msgstr "Yapılandırma Verileri" -#: netbox/templates/core/configrevision.html:40 +#: templates/core/configrevision.html:40 msgid "Comment" msgstr "Yorum" -#: netbox/templates/core/configrevision_restore.html:8 -#: netbox/templates/core/configrevision_restore.html:25 -#: netbox/templates/core/configrevision_restore.html:64 +#: templates/core/configrevision_restore.html:8 +#: templates/core/configrevision_restore.html:25 +#: templates/core/configrevision_restore.html:64 msgid "Restore" msgstr "Geri Yükleme" -#: netbox/templates/core/configrevision_restore.html:36 +#: templates/core/configrevision_restore.html:36 msgid "Parameter" msgstr "Parametre" -#: netbox/templates/core/configrevision_restore.html:37 +#: templates/core/configrevision_restore.html:37 msgid "Current Value" msgstr "Mevcut Değer" -#: netbox/templates/core/configrevision_restore.html:38 +#: templates/core/configrevision_restore.html:38 msgid "New Value" msgstr "Yeni Değer" -#: netbox/templates/core/configrevision_restore.html:50 +#: templates/core/configrevision_restore.html:50 msgid "Changed" msgstr "Değişti" -#: netbox/templates/core/datafile.html:42 -#: netbox/templates/ipam/iprange.html:25 -#: netbox/templates/virtualization/virtualdisk.html:29 -#: netbox/virtualization/tables/virtualmachines.py:198 +#: templates/core/datafile.html:42 templates/ipam/iprange.html:25 +#: templates/virtualization/virtualdisk.html:29 +#: virtualization/tables/virtualmachines.py:198 msgid "Size" msgstr "Boyut" -#: netbox/templates/core/datafile.html:43 +#: templates/core/datafile.html:43 msgid "bytes" msgstr "bayt" -#: netbox/templates/core/datafile.html:46 +#: templates/core/datafile.html:46 msgid "SHA256 Hash" msgstr "SHA256 Karması" -#: netbox/templates/core/datasource.html:14 -#: netbox/templates/core/datasource.html:20 -#: netbox/utilities/templates/buttons/sync.html:5 +#: templates/core/datasource.html:14 templates/core/datasource.html:20 +#: utilities/templates/buttons/sync.html:5 msgid "Sync" msgstr "Senkronizasyon" -#: netbox/templates/core/datasource.html:50 +#: templates/core/datasource.html:50 msgid "Last synced" msgstr "Son senkronize edildi" -#: netbox/templates/core/datasource.html:84 +#: templates/core/datasource.html:84 msgid "Backend" msgstr "Arka uç" -#: netbox/templates/core/datasource.html:99 +#: templates/core/datasource.html:99 msgid "No parameters defined" msgstr "Parametre tanımlanmadı" -#: netbox/templates/core/datasource.html:114 +#: templates/core/datasource.html:114 msgid "Files" msgstr "Dosyalar" -#: netbox/templates/core/inc/config_data.html:7 +#: templates/core/inc/config_data.html:7 msgid "Rack elevations" msgstr "Raf yükseklikleri" -#: netbox/templates/core/inc/config_data.html:10 +#: templates/core/inc/config_data.html:10 msgid "Default unit height" msgstr "Varsayılan birim yüksekliği" -#: netbox/templates/core/inc/config_data.html:14 +#: templates/core/inc/config_data.html:14 msgid "Default unit width" msgstr "Varsayılan birim genişliği" -#: netbox/templates/core/inc/config_data.html:20 +#: templates/core/inc/config_data.html:20 msgid "Power feeds" msgstr "Güç beslemeleri" -#: netbox/templates/core/inc/config_data.html:23 +#: templates/core/inc/config_data.html:23 msgid "Default voltage" msgstr "Varsayılan voltaj" -#: netbox/templates/core/inc/config_data.html:27 +#: templates/core/inc/config_data.html:27 msgid "Default amperage" msgstr "Varsayılan amper" -#: netbox/templates/core/inc/config_data.html:31 +#: templates/core/inc/config_data.html:31 msgid "Default max utilization" msgstr "Varsayılan maksimum kullanım" -#: netbox/templates/core/inc/config_data.html:40 +#: templates/core/inc/config_data.html:40 msgid "Enforce global unique" msgstr "Küresel benzersiz uygulamayı uygulayın" -#: netbox/templates/core/inc/config_data.html:83 +#: templates/core/inc/config_data.html:83 msgid "Paginate count" msgstr "Sayfalandırma sayısı" -#: netbox/templates/core/inc/config_data.html:87 +#: templates/core/inc/config_data.html:87 msgid "Max page size" msgstr "Maksimum sayfa boyutu" -#: netbox/templates/core/inc/config_data.html:114 +#: templates/core/inc/config_data.html:114 msgid "User preferences" msgstr "Kullanıcı tercihleri" -#: netbox/templates/core/inc/config_data.html:141 +#: templates/core/inc/config_data.html:141 msgid "Job retention" msgstr "İş tutma" -#: netbox/templates/core/job.html:35 netbox/templates/core/rq_task.html:12 -#: netbox/templates/core/rq_task.html:49 netbox/templates/core/rq_task.html:58 +#: templates/core/job.html:35 templates/core/rq_task.html:12 +#: templates/core/rq_task.html:49 templates/core/rq_task.html:58 msgid "Job" msgstr "İş" -#: netbox/templates/core/job.html:58 -#: netbox/templates/extras/journalentry.html:26 +#: templates/core/job.html:58 templates/extras/journalentry.html:26 msgid "Created By" msgstr "Tarafından Oluşturuldu" -#: netbox/templates/core/job.html:66 +#: templates/core/job.html:66 msgid "Scheduling" msgstr "Çizelgeleme" -#: netbox/templates/core/job.html:77 +#: templates/core/job.html:77 #, python-format msgid "every %(interval)s minutes" msgstr "her bir %(interval)s dakikalar" -#: netbox/templates/core/objectchange.html:29 -#: netbox/templates/users/objectpermission.html:42 +#: templates/core/objectchange.html:29 +#: templates/users/objectpermission.html:42 msgid "Change" msgstr "Değişim" -#: netbox/templates/core/objectchange.html:79 +#: templates/core/objectchange.html:79 msgid "Difference" msgstr "Farkı" -#: netbox/templates/core/objectchange.html:82 +#: templates/core/objectchange.html:82 msgid "Previous" msgstr "Önceki" -#: netbox/templates/core/objectchange.html:85 +#: templates/core/objectchange.html:85 msgid "Next" msgstr "Sonraki" -#: netbox/templates/core/objectchange.html:93 +#: templates/core/objectchange.html:93 msgid "Object Created" msgstr "Nesne Oluşturuldu" -#: netbox/templates/core/objectchange.html:95 +#: templates/core/objectchange.html:95 msgid "Object Deleted" msgstr "Nesne Silindi" -#: netbox/templates/core/objectchange.html:97 +#: templates/core/objectchange.html:97 msgid "No Changes" msgstr "Değişiklik Yok" -#: netbox/templates/core/objectchange.html:111 +#: templates/core/objectchange.html:111 msgid "Pre-Change Data" msgstr "Ön Değişim Verileri" -#: netbox/templates/core/objectchange.html:122 +#: templates/core/objectchange.html:122 msgid "Warning: Comparing non-atomic change to previous change record" msgstr "" "Uyarı: Atomik olmayan değişimin önceki değişiklik kaydıyla karşılaştırılması" -#: netbox/templates/core/objectchange.html:131 +#: templates/core/objectchange.html:131 msgid "Post-Change Data" msgstr "Değişim Sonrası Veriler" -#: netbox/templates/core/objectchange.html:162 +#: templates/core/objectchange.html:162 #, python-format msgid "See All %(count)s Changes" msgstr "Tümünü Gör %(count)s Değişiklikler" -#: netbox/templates/core/objectchange_list.html:9 -#: netbox/templates/extras/object_changelog.html:15 +#: templates/core/objectchange_list.html:9 +#: templates/extras/object_changelog.html:15 msgid "Change log retention" msgstr "Günlük tutma işlemini değiştir" -#: netbox/templates/core/objectchange_list.html:9 -#: netbox/templates/extras/object_changelog.html:15 +#: templates/core/objectchange_list.html:9 +#: templates/extras/object_changelog.html:15 msgid "days" msgstr "günler" -#: netbox/templates/core/objectchange_list.html:9 -#: netbox/templates/extras/object_changelog.html:15 +#: templates/core/objectchange_list.html:9 +#: templates/extras/object_changelog.html:15 msgid "Indefinite" msgstr "belirsiz" -#: netbox/templates/core/plugin.html:21 +#: templates/core/plugin.html:22 msgid "Not installed" msgstr "Yüklü değil" -#: netbox/templates/core/plugin.html:32 +#: templates/core/plugin.html:33 msgid "Overview" msgstr "Genel Bakış" -#: netbox/templates/core/plugin.html:38 +#: templates/core/plugin.html:39 msgid "Install" msgstr "Yüklemek" -#: netbox/templates/core/plugin.html:50 +#: templates/core/plugin.html:51 msgid "Plugin Details" msgstr "Eklenti Ayrıntıları" -#: netbox/templates/core/plugin.html:57 +#: templates/core/plugin.html:58 msgid "Summary" msgstr "Özet" -#: netbox/templates/core/plugin.html:75 +#: templates/core/plugin.html:76 msgid "License" msgstr "Lisans" -#: netbox/templates/core/plugin.html:95 +#: templates/core/plugin.html:96 msgid "Version History" msgstr "Sürüm Geçmişi" -#: netbox/templates/core/plugin.html:106 +#: templates/core/plugin.html:107 msgid "Local Installation Instructions" msgstr "Yerel Kurulum Talimatları" -#: netbox/templates/core/rq_queue_list.html:5 -#: netbox/templates/core/rq_queue_list.html:13 -#: netbox/templates/core/rq_task_list.html:14 -#: netbox/templates/core/rq_worker.html:7 +#: templates/core/rq_queue_list.html:5 templates/core/rq_queue_list.html:13 +#: templates/core/rq_task_list.html:14 templates/core/rq_worker.html:7 msgid "Background Queues" msgstr "Arka Plan Kuyrukları" -#: netbox/templates/core/rq_queue_list.html:24 -#: netbox/templates/core/rq_queue_list.html:25 -#: netbox/templates/core/rq_worker_list.html:49 -#: netbox/templates/core/rq_worker_list.html:50 -#: netbox/templates/extras/script_result.html:67 -#: netbox/templates/extras/script_result.html:69 -#: netbox/templates/inc/table_controls_htmx.html:30 -#: netbox/templates/inc/table_controls_htmx.html:33 +#: templates/core/rq_queue_list.html:24 templates/core/rq_queue_list.html:25 +#: templates/core/rq_worker_list.html:49 templates/core/rq_worker_list.html:50 +#: templates/extras/script_result.html:67 +#: templates/extras/script_result.html:69 +#: templates/inc/table_controls_htmx.html:30 +#: templates/inc/table_controls_htmx.html:33 msgid "Configure Table" msgstr "Tabloyu Yapılandır" -#: netbox/templates/core/rq_task.html:29 +#: templates/core/rq_task.html:29 msgid "Stop" msgstr "Dur" -#: netbox/templates/core/rq_task.html:34 +#: templates/core/rq_task.html:34 msgid "Requeue" msgstr "Requeue" -#: netbox/templates/core/rq_task.html:39 +#: templates/core/rq_task.html:39 msgid "Enqueue" msgstr "Sıraya girin" -#: netbox/templates/core/rq_task.html:61 +#: templates/core/rq_task.html:61 msgid "Queue" msgstr "Kuyruk" -#: netbox/templates/core/rq_task.html:65 +#: templates/core/rq_task.html:65 msgid "Timeout" msgstr "Zaman aşımı" -#: netbox/templates/core/rq_task.html:69 +#: templates/core/rq_task.html:69 msgid "Result TTL" msgstr "Sonuç TTL" -#: netbox/templates/core/rq_task.html:89 +#: templates/core/rq_task.html:89 msgid "Meta" msgstr "Meta" -#: netbox/templates/core/rq_task.html:93 +#: templates/core/rq_task.html:93 msgid "Arguments" msgstr "Argümanlar" -#: netbox/templates/core/rq_task.html:97 +#: templates/core/rq_task.html:97 msgid "Keyword Arguments" msgstr "Anahtar Kelime Argümanları" -#: netbox/templates/core/rq_task.html:103 +#: templates/core/rq_task.html:103 msgid "Depends on" msgstr "Bağlı" -#: netbox/templates/core/rq_task.html:109 +#: templates/core/rq_task.html:109 msgid "Exception" msgstr "İstisna" -#: netbox/templates/core/rq_task_list.html:28 +#: templates/core/rq_task_list.html:28 msgid "tasks in " msgstr "Görevler " -#: netbox/templates/core/rq_task_list.html:33 +#: templates/core/rq_task_list.html:33 msgid "Queued Jobs" msgstr "Kuyruklu İşler" -#: netbox/templates/core/rq_task_list.html:64 -#: netbox/templates/extras/script_result.html:86 +#: templates/core/rq_task_list.html:64 templates/extras/script_result.html:86 #, python-format msgid "" "Select all %(count)s %(object_type_plural)s matching query" @@ -12188,99 +11512,96 @@ msgstr "" "Seçiniz bütün %(count)s %(object_type_plural)s eşleşen " "sorgu" -#: netbox/templates/core/rq_worker.html:10 +#: templates/core/rq_worker.html:10 msgid "Worker Info" msgstr "İşçi Bilgisi" -#: netbox/templates/core/rq_worker.html:31 -#: netbox/templates/core/rq_worker.html:40 +#: templates/core/rq_worker.html:31 templates/core/rq_worker.html:40 msgid "Worker" msgstr "İşçi" -#: netbox/templates/core/rq_worker.html:55 +#: templates/core/rq_worker.html:55 msgid "Queues" msgstr "Kuyruklar" -#: netbox/templates/core/rq_worker.html:63 +#: templates/core/rq_worker.html:63 msgid "Curent Job" msgstr "Geçerli İş" -#: netbox/templates/core/rq_worker.html:67 +#: templates/core/rq_worker.html:67 msgid "Successful job count" msgstr "Başarılı iş sayısı" -#: netbox/templates/core/rq_worker.html:71 +#: templates/core/rq_worker.html:71 msgid "Failed job count" msgstr "Başarısız iş sayısı" -#: netbox/templates/core/rq_worker.html:75 +#: templates/core/rq_worker.html:75 msgid "Total working time" msgstr "Toplam çalışma süresi" -#: netbox/templates/core/rq_worker.html:76 +#: templates/core/rq_worker.html:76 msgid "seconds" msgstr "saniyeler" -#: netbox/templates/core/rq_worker_list.html:13 -#: netbox/templates/core/rq_worker_list.html:21 +#: templates/core/rq_worker_list.html:13 templates/core/rq_worker_list.html:21 msgid "Background Workers" msgstr "Arka Plan Çalışanları" -#: netbox/templates/core/rq_worker_list.html:29 +#: templates/core/rq_worker_list.html:29 #, python-format msgid "Workers in %(queue_name)s" msgstr "İçindeki işçiler %(queue_name)s" -#: netbox/templates/core/system.html:11 -#: netbox/utilities/templates/buttons/export.html:4 +#: templates/core/system.html:11 utilities/templates/buttons/export.html:4 msgid "Export" msgstr "Dışa Aktar" -#: netbox/templates/core/system.html:28 +#: templates/core/system.html:28 msgid "System Status" msgstr "Sistem Durumu" -#: netbox/templates/core/system.html:31 +#: templates/core/system.html:31 msgid "NetBox release" msgstr "NetBox sürümü" -#: netbox/templates/core/system.html:44 +#: templates/core/system.html:44 msgid "Django version" msgstr "Django sürümü" -#: netbox/templates/core/system.html:48 +#: templates/core/system.html:48 msgid "PostgreSQL version" msgstr "PostgreSQL sürümü" -#: netbox/templates/core/system.html:52 +#: templates/core/system.html:52 msgid "Database name" msgstr "Veritabanı adı" -#: netbox/templates/core/system.html:56 +#: templates/core/system.html:56 msgid "Database size" msgstr "Veritabanı boyutu" -#: netbox/templates/core/system.html:61 +#: templates/core/system.html:61 msgid "Unavailable" msgstr "Kullanılamıyor" -#: netbox/templates/core/system.html:66 +#: templates/core/system.html:66 msgid "RQ workers" msgstr "RQ çalışanları" -#: netbox/templates/core/system.html:69 +#: templates/core/system.html:69 msgid "default queue" msgstr "varsayılan kuyruk" -#: netbox/templates/core/system.html:73 +#: templates/core/system.html:73 msgid "System time" msgstr "Sistem zamanı" -#: netbox/templates/core/system.html:85 +#: templates/core/system.html:85 msgid "Current Configuration" msgstr "Geçerli Yapılandırma" -#: netbox/templates/dcim/bulk_disconnect.html:9 +#: templates/dcim/bulk_disconnect.html:9 #, python-format msgid "" "Are you sure you want to disconnect these %(count)s %(obj_type_plural)s?" @@ -12288,299 +11609,287 @@ msgstr "" "Bunların bağlantısını kesmek istediğinizden emin misiniz %(count)s " "%(obj_type_plural)s?" -#: netbox/templates/dcim/cable_trace.html:10 +#: templates/dcim/cable_trace.html:10 #, python-format msgid "Cable Trace for %(object_type)s %(object)s" msgstr "Kablo İzleme için %(object_type)s %(object)s" -#: netbox/templates/dcim/cable_trace.html:24 -#: netbox/templates/dcim/inc/rack_elevation.html:7 +#: templates/dcim/cable_trace.html:24 templates/dcim/inc/rack_elevation.html:7 msgid "Download SVG" msgstr "SVG indir" -#: netbox/templates/dcim/cable_trace.html:30 +#: templates/dcim/cable_trace.html:30 msgid "Asymmetric Path" msgstr "Asimetrik Yol" -#: netbox/templates/dcim/cable_trace.html:31 +#: templates/dcim/cable_trace.html:31 msgid "The nodes below have no links and result in an asymmetric path" msgstr "" "Aşağıdaki düğümlerin bağlantısı yoktur ve asimetrik bir yol ile sonuçlanır" -#: netbox/templates/dcim/cable_trace.html:38 +#: templates/dcim/cable_trace.html:38 msgid "Path split" msgstr "Yol bölünmesi" -#: netbox/templates/dcim/cable_trace.html:39 +#: templates/dcim/cable_trace.html:39 msgid "Select a node below to continue" msgstr "Devamlamak için aşağıdan bir düğüm seçin" -#: netbox/templates/dcim/cable_trace.html:55 +#: templates/dcim/cable_trace.html:55 msgid "Trace Completed" msgstr "İzleme Tamamlandı" -#: netbox/templates/dcim/cable_trace.html:58 +#: templates/dcim/cable_trace.html:58 msgid "Total segments" msgstr "Toplam segmentler" -#: netbox/templates/dcim/cable_trace.html:62 +#: templates/dcim/cable_trace.html:62 msgid "Total length" msgstr "Toplam uzunluk" -#: netbox/templates/dcim/cable_trace.html:77 +#: templates/dcim/cable_trace.html:77 msgid "No paths found" msgstr "Yol bulunamadı" -#: netbox/templates/dcim/cable_trace.html:85 +#: templates/dcim/cable_trace.html:85 msgid "Related Paths" msgstr "İlgili Yollar" -#: netbox/templates/dcim/cable_trace.html:89 +#: templates/dcim/cable_trace.html:89 msgid "Origin" msgstr "Menşei" -#: netbox/templates/dcim/cable_trace.html:90 +#: templates/dcim/cable_trace.html:90 msgid "Destination" msgstr "Hedef" -#: netbox/templates/dcim/cable_trace.html:91 +#: templates/dcim/cable_trace.html:91 msgid "Segments" msgstr "Segmentler" -#: netbox/templates/dcim/cable_trace.html:104 +#: templates/dcim/cable_trace.html:104 msgid "Incomplete" msgstr "Tamamlanmamış" -#: netbox/templates/dcim/component_list.html:14 +#: templates/dcim/component_list.html:14 msgid "Rename Selected" msgstr "Seçili Yeniden Adlandır" -#: netbox/templates/dcim/consoleport.html:65 -#: netbox/templates/dcim/consoleserverport.html:66 -#: netbox/templates/dcim/frontport.html:98 -#: netbox/templates/dcim/interface.html:176 -#: netbox/templates/dcim/poweroutlet.html:69 -#: netbox/templates/dcim/powerport.html:69 +#: templates/dcim/consoleport.html:65 templates/dcim/consoleserverport.html:66 +#: templates/dcim/frontport.html:98 templates/dcim/interface.html:176 +#: templates/dcim/poweroutlet.html:69 templates/dcim/powerport.html:69 msgid "Not Connected" msgstr "Bağlı Değil" -#: netbox/templates/dcim/device.html:34 +#: templates/dcim/device.html:34 msgid "Highlight device in rack" msgstr "Kabindeki cihazı vurgulayın" -#: netbox/templates/dcim/device.html:55 +#: templates/dcim/device.html:55 msgid "Not racked" msgstr "Kabine bağlı değil" -#: netbox/templates/dcim/device.html:62 netbox/templates/dcim/site.html:94 +#: templates/dcim/device.html:62 templates/dcim/site.html:94 msgid "GPS Coordinates" msgstr "GPS Koordinatları" -#: netbox/templates/dcim/device.html:68 netbox/templates/dcim/site.html:81 -#: netbox/templates/dcim/site.html:100 +#: templates/dcim/device.html:68 templates/dcim/site.html:81 +#: templates/dcim/site.html:100 msgid "Map" msgstr "Harita" -#: netbox/templates/dcim/device.html:108 -#: netbox/templates/dcim/inventoryitem.html:56 -#: netbox/templates/dcim/module.html:81 -#: netbox/templates/dcim/modulebay.html:74 netbox/templates/dcim/rack.html:61 +#: templates/dcim/device.html:108 templates/dcim/inventoryitem.html:56 +#: templates/dcim/module.html:81 templates/dcim/modulebay.html:74 +#: templates/dcim/rack.html:61 msgid "Asset Tag" msgstr "Varlık Etiketi" -#: netbox/templates/dcim/device.html:123 +#: templates/dcim/device.html:123 msgid "View Virtual Chassis" msgstr "Sanal Kasayı Görüntüle" -#: netbox/templates/dcim/device.html:164 +#: templates/dcim/device.html:164 msgid "Create VDC" msgstr "VDC oluştur" -#: netbox/templates/dcim/device.html:175 -#: netbox/templates/dcim/device_edit.html:64 -#: netbox/virtualization/forms/model_forms.py:223 +#: templates/dcim/device.html:175 templates/dcim/device_edit.html:64 +#: virtualization/forms/model_forms.py:223 msgid "Management" msgstr "Yönetim" -#: netbox/templates/dcim/device.html:195 netbox/templates/dcim/device.html:211 -#: netbox/templates/dcim/device.html:227 -#: netbox/templates/virtualization/virtualmachine.html:57 -#: netbox/templates/virtualization/virtualmachine.html:73 +#: templates/dcim/device.html:195 templates/dcim/device.html:211 +#: templates/dcim/device.html:227 +#: templates/virtualization/virtualmachine.html:57 +#: templates/virtualization/virtualmachine.html:73 msgid "NAT for" msgstr "NAT için" -#: netbox/templates/dcim/device.html:197 netbox/templates/dcim/device.html:213 -#: netbox/templates/dcim/device.html:229 -#: netbox/templates/virtualization/virtualmachine.html:59 -#: netbox/templates/virtualization/virtualmachine.html:75 +#: templates/dcim/device.html:197 templates/dcim/device.html:213 +#: templates/dcim/device.html:229 +#: templates/virtualization/virtualmachine.html:59 +#: templates/virtualization/virtualmachine.html:75 msgid "NAT" msgstr "NAT" -#: netbox/templates/dcim/device.html:252 netbox/templates/dcim/rack.html:73 +#: templates/dcim/device.html:252 templates/dcim/rack.html:73 msgid "Power Utilization" msgstr "Güç Kullanımı" -#: netbox/templates/dcim/device.html:256 +#: templates/dcim/device.html:256 msgid "Input" msgstr "Giriş" -#: netbox/templates/dcim/device.html:257 +#: templates/dcim/device.html:257 msgid "Outlets" msgstr "Satış noktaları" -#: netbox/templates/dcim/device.html:258 +#: templates/dcim/device.html:258 msgid "Allocated" msgstr "Tahsis edilmiş" -#: netbox/templates/dcim/device.html:268 netbox/templates/dcim/device.html:270 -#: netbox/templates/dcim/device.html:286 -#: netbox/templates/dcim/powerfeed.html:67 +#: templates/dcim/device.html:268 templates/dcim/device.html:270 +#: templates/dcim/device.html:286 templates/dcim/powerfeed.html:67 msgid "VA" msgstr "İL" -#: netbox/templates/dcim/device.html:280 +#: templates/dcim/device.html:280 msgctxt "Leg of a power feed" msgid "Leg" msgstr "Bacak" -#: netbox/templates/dcim/device.html:306 -#: netbox/templates/virtualization/virtualmachine.html:158 +#: templates/dcim/device.html:306 +#: templates/virtualization/virtualmachine.html:158 msgid "Add a service" msgstr "Hizmet ekle" -#: netbox/templates/dcim/device/base.html:21 -#: netbox/templates/dcim/device_list.html:9 -#: netbox/templates/dcim/devicetype/base.html:18 -#: netbox/templates/dcim/module.html:18 -#: netbox/templates/dcim/moduletype/base.html:18 -#: netbox/templates/virtualization/virtualmachine/base.html:22 -#: netbox/templates/virtualization/virtualmachine_list.html:8 +#: templates/dcim/device/base.html:21 templates/dcim/device_list.html:9 +#: templates/dcim/devicetype/base.html:18 +#: templates/dcim/inc/moduletype_buttons.html:9 templates/dcim/module.html:18 +#: templates/virtualization/virtualmachine/base.html:22 +#: templates/virtualization/virtualmachine_list.html:8 msgid "Add Components" msgstr "Bileşenler Ekle" -#: netbox/templates/dcim/device/consoleports.html:24 +#: templates/dcim/device/consoleports.html:24 msgid "Add Console Ports" msgstr "Konsol Bağlantı Noktaları Ekle" -#: netbox/templates/dcim/device/consoleserverports.html:24 +#: templates/dcim/device/consoleserverports.html:24 msgid "Add Console Server Ports" msgstr "Konsol Sunucusu Bağlantı Noktaları Ekle" -#: netbox/templates/dcim/device/devicebays.html:10 +#: templates/dcim/device/devicebays.html:10 msgid "Add Device Bays" msgstr "Cihaz Yuvaları Ekle" -#: netbox/templates/dcim/device/frontports.html:24 +#: templates/dcim/device/frontports.html:24 msgid "Add Front Ports" msgstr "Ön Bağlantı Noktaları Ekle" -#: netbox/templates/dcim/device/inc/interface_table_controls.html:9 +#: templates/dcim/device/inc/interface_table_controls.html:9 msgid "Hide Enabled" msgstr "Gizle Etkin" -#: netbox/templates/dcim/device/inc/interface_table_controls.html:10 +#: templates/dcim/device/inc/interface_table_controls.html:10 msgid "Hide Disabled" msgstr "Gizle Devre Dışı" -#: netbox/templates/dcim/device/inc/interface_table_controls.html:11 +#: templates/dcim/device/inc/interface_table_controls.html:11 msgid "Hide Virtual" msgstr "Sanal Gizle" -#: netbox/templates/dcim/device/inc/interface_table_controls.html:12 +#: templates/dcim/device/inc/interface_table_controls.html:12 msgid "Hide Disconnected" msgstr "Bağlantısızlığı Gizle" -#: netbox/templates/dcim/device/interfaces.html:27 +#: templates/dcim/device/interfaces.html:27 msgid "Add Interfaces" msgstr "Arayüzler Ekle" -#: netbox/templates/dcim/device/inventory.html:10 -#: netbox/templates/dcim/inc/panels/inventory_items.html:10 +#: templates/dcim/device/inventory.html:10 +#: templates/dcim/inc/panels/inventory_items.html:10 msgid "Add Inventory Item" msgstr "Envanter Öğesi Ekle" -#: netbox/templates/dcim/device/modulebays.html:10 +#: templates/dcim/device/modulebays.html:10 msgid "Add Module Bays" msgstr "Modül Yuvaları Ekle" -#: netbox/templates/dcim/device/poweroutlets.html:24 +#: templates/dcim/device/poweroutlets.html:24 msgid "Add Power Outlets" msgstr "Elektrik Prizleri Ekle" -#: netbox/templates/dcim/device/powerports.html:24 +#: templates/dcim/device/powerports.html:24 msgid "Add Power Port" msgstr "Güç Bağlantı Noktası Ekle" -#: netbox/templates/dcim/device/rearports.html:24 +#: templates/dcim/device/rearports.html:24 msgid "Add Rear Ports" msgstr "Arka Bağlantı Noktaları Ekle" -#: netbox/templates/dcim/device/render_config.html:5 -#: netbox/templates/virtualization/virtualmachine/render_config.html:5 +#: templates/dcim/device/render_config.html:5 +#: templates/virtualization/virtualmachine/render_config.html:5 msgid "Config" msgstr "Yapılandırma" -#: netbox/templates/dcim/device/render_config.html:35 -#: netbox/templates/virtualization/virtualmachine/render_config.html:35 +#: templates/dcim/device/render_config.html:35 +#: templates/virtualization/virtualmachine/render_config.html:35 msgid "Context Data" msgstr "Bağlam Verileri" -#: netbox/templates/dcim/device/render_config.html:53 -#: netbox/templates/virtualization/virtualmachine/render_config.html:53 +#: templates/dcim/device/render_config.html:53 +#: templates/virtualization/virtualmachine/render_config.html:53 msgid "Rendered Config" msgstr "Oluşturulan Yapılandırma" -#: netbox/templates/dcim/device/render_config.html:55 -#: netbox/templates/virtualization/virtualmachine/render_config.html:55 +#: templates/dcim/device/render_config.html:55 +#: templates/virtualization/virtualmachine/render_config.html:55 msgid "Download" msgstr "İndir" -#: netbox/templates/dcim/device/render_config.html:61 -#: netbox/templates/virtualization/virtualmachine/render_config.html:61 +#: templates/dcim/device/render_config.html:61 +#: templates/virtualization/virtualmachine/render_config.html:61 msgid "No configuration template found" msgstr "Yapılandırma şablonu bulunamadı" -#: netbox/templates/dcim/device_edit.html:44 +#: templates/dcim/device_edit.html:44 msgid "Parent Bay" msgstr "Ebeveyn Körfezi" -#: netbox/templates/dcim/device_edit.html:48 -#: netbox/utilities/templates/form_helpers/render_field.html:22 +#: templates/dcim/device_edit.html:48 +#: utilities/templates/form_helpers/render_field.html:22 msgid "Regenerate Slug" msgstr "Yeniden kısa ad oluştur" -#: netbox/templates/dcim/device_edit.html:49 -#: netbox/templates/generic/bulk_remove.html:21 -#: netbox/utilities/templates/helpers/table_config_form.html:23 +#: templates/dcim/device_edit.html:49 templates/generic/bulk_remove.html:21 +#: utilities/templates/helpers/table_config_form.html:23 msgid "Remove" msgstr "Kaldır" -#: netbox/templates/dcim/device_edit.html:110 +#: templates/dcim/device_edit.html:110 msgid "Local Config Context Data" msgstr "Yerel Yapılandırma Bağlam Verileri" -#: netbox/templates/dcim/device_list.html:82 -#: netbox/templates/dcim/moduletype/component_templates.html:17 -#: netbox/templates/generic/bulk_rename.html:57 -#: netbox/templates/virtualization/virtualmachine/interfaces.html:11 -#: netbox/templates/virtualization/virtualmachine/virtual_disks.html:11 +#: templates/dcim/device_list.html:82 templates/generic/bulk_rename.html:57 +#: templates/virtualization/virtualmachine/interfaces.html:11 +#: templates/virtualization/virtualmachine/virtual_disks.html:11 msgid "Rename" msgstr "Yeniden Adlandır" -#: netbox/templates/dcim/devicebay.html:17 +#: templates/dcim/devicebay.html:17 msgid "Device Bay" msgstr "Cihaz Yuvası" -#: netbox/templates/dcim/devicebay.html:43 +#: templates/dcim/devicebay.html:43 msgid "Installed Device" msgstr "Yüklü Cihaz" -#: netbox/templates/dcim/devicebay_depopulate.html:6 +#: templates/dcim/devicebay_depopulate.html:6 #, python-format msgid "Remove %(device)s from %(device_bay)s?" msgstr "Kaldır %(device)s beri %(device_bay)s?" -#: netbox/templates/dcim/devicebay_depopulate.html:13 +#: templates/dcim/devicebay_depopulate.html:13 #, python-format msgid "" "Are you sure you want to remove %(device)s from " @@ -12589,449 +11898,430 @@ msgstr "" "Kaldırmak istediğinizden emin misiniz? %(device)s beri " "%(device_bay)s?" -#: netbox/templates/dcim/devicebay_populate.html:13 +#: templates/dcim/devicebay_populate.html:13 msgid "Populate" msgstr "Doldurmak" -#: netbox/templates/dcim/devicebay_populate.html:22 +#: templates/dcim/devicebay_populate.html:22 msgid "Bay" msgstr "Körfez" -#: netbox/templates/dcim/devicerole.html:14 -#: netbox/templates/dcim/platform.html:17 +#: templates/dcim/devicerole.html:14 templates/dcim/platform.html:17 msgid "Add Device" msgstr "Cihaz Ekle" -#: netbox/templates/dcim/devicerole.html:40 +#: templates/dcim/devicerole.html:40 msgid "VM Role" msgstr "VM Rolü" -#: netbox/templates/dcim/devicetype.html:18 -#: netbox/templates/dcim/moduletype.html:18 +#: templates/dcim/devicetype.html:18 templates/dcim/moduletype.html:29 msgid "Model Name" msgstr "Model Adı" -#: netbox/templates/dcim/devicetype.html:25 -#: netbox/templates/dcim/moduletype.html:22 +#: templates/dcim/devicetype.html:25 templates/dcim/moduletype.html:33 msgid "Part Number" msgstr "Parça Numarası" -#: netbox/templates/dcim/devicetype.html:41 +#: templates/dcim/devicetype.html:41 msgid "Exclude From Utilization" msgstr "Kullanımdan Hariç Tutma" -#: netbox/templates/dcim/devicetype.html:59 +#: templates/dcim/devicetype.html:59 msgid "Parent/Child" msgstr "Ebeveyn/Çocuk" -#: netbox/templates/dcim/devicetype.html:71 +#: templates/dcim/devicetype.html:71 msgid "Front Image" msgstr "Ön Görüntü" -#: netbox/templates/dcim/devicetype.html:83 +#: templates/dcim/devicetype.html:83 msgid "Rear Image" msgstr "Arka Görüntü" -#: netbox/templates/dcim/frontport.html:54 +#: templates/dcim/frontport.html:54 msgid "Rear Port Position" msgstr "Arka Bağlantı Noktası Konumu" -#: netbox/templates/dcim/frontport.html:72 -#: netbox/templates/dcim/interface.html:144 -#: netbox/templates/dcim/poweroutlet.html:63 -#: netbox/templates/dcim/powerport.html:63 -#: netbox/templates/dcim/rearport.html:68 +#: templates/dcim/frontport.html:72 templates/dcim/interface.html:144 +#: templates/dcim/poweroutlet.html:63 templates/dcim/powerport.html:63 +#: templates/dcim/rearport.html:68 msgid "Marked as Connected" msgstr "Bağlı olarak işaretlendi" -#: netbox/templates/dcim/frontport.html:86 -#: netbox/templates/dcim/rearport.html:82 +#: templates/dcim/frontport.html:86 templates/dcim/rearport.html:82 msgid "Connection Status" msgstr "Bağlantı Durumu" -#: netbox/templates/dcim/htmx/cable_edit.html:10 +#: templates/dcim/htmx/cable_edit.html:10 msgid "A Side" msgstr "A Tarafı" -#: netbox/templates/dcim/htmx/cable_edit.html:30 +#: templates/dcim/htmx/cable_edit.html:30 msgid "B Side" msgstr "B Tarafı" -#: netbox/templates/dcim/inc/cable_termination.html:65 +#: templates/dcim/inc/cable_termination.html:65 msgid "No termination" msgstr "Fesih yok" -#: netbox/templates/dcim/inc/cable_toggle_buttons.html:3 +#: templates/dcim/inc/cable_toggle_buttons.html:3 msgid "Mark Planned" msgstr "Planlanan İşaretle" -#: netbox/templates/dcim/inc/cable_toggle_buttons.html:6 +#: templates/dcim/inc/cable_toggle_buttons.html:6 msgid "Mark Installed" msgstr "Mark Yüklü" -#: netbox/templates/dcim/inc/connection_endpoints.html:13 +#: templates/dcim/inc/connection_endpoints.html:13 msgid "Path Status" msgstr "Yol Durumu" -#: netbox/templates/dcim/inc/connection_endpoints.html:18 +#: templates/dcim/inc/connection_endpoints.html:18 msgid "Not Reachable" msgstr "Ulaşılamıyor" -#: netbox/templates/dcim/inc/connection_endpoints.html:23 +#: templates/dcim/inc/connection_endpoints.html:23 msgid "Path Endpoints" msgstr "Yol Bitiş Noktaları" -#: netbox/templates/dcim/inc/endpoint_connection.html:8 -#: netbox/templates/dcim/powerfeed.html:120 -#: netbox/templates/dcim/rearport.html:94 +#: templates/dcim/inc/endpoint_connection.html:8 +#: templates/dcim/powerfeed.html:120 templates/dcim/rearport.html:94 msgid "Not connected" msgstr "Bağlı değil" -#: netbox/templates/dcim/inc/interface_vlans_table.html:6 +#: templates/dcim/inc/interface_vlans_table.html:6 msgid "Untagged" msgstr "Etiketsiz" -#: netbox/templates/dcim/inc/interface_vlans_table.html:37 +#: templates/dcim/inc/interface_vlans_table.html:37 msgid "No VLANs Assigned" msgstr "Atanmamış VLAN" -#: netbox/templates/dcim/inc/interface_vlans_table.html:44 -#: netbox/templates/ipam/prefix_list.html:16 -#: netbox/templates/ipam/prefix_list.html:33 +#: templates/dcim/inc/interface_vlans_table.html:44 +#: templates/ipam/prefix_list.html:16 templates/ipam/prefix_list.html:33 msgid "Clear" msgstr "Temiz" -#: netbox/templates/dcim/inc/interface_vlans_table.html:47 +#: templates/dcim/inc/interface_vlans_table.html:47 msgid "Clear All" msgstr "Tümünü Temizle" -#: netbox/templates/dcim/inc/panels/racktype_dimensions.html:38 +#: templates/dcim/inc/panels/racktype_dimensions.html:38 msgid "Mounting Depth" msgstr "Montaj Derinliği" -#: netbox/templates/dcim/inc/panels/racktype_numbering.html:6 +#: templates/dcim/inc/panels/racktype_numbering.html:6 msgid "Starting Unit" msgstr "Başlangıç Ünitesi" -#: netbox/templates/dcim/inc/panels/racktype_numbering.html:10 +#: templates/dcim/inc/panels/racktype_numbering.html:10 msgid "Descending Units" msgstr "Azalan Birimler" -#: netbox/templates/dcim/inc/rack_elevation.html:3 +#: templates/dcim/inc/rack_elevation.html:3 msgid "Rack elevation" msgstr "Raf yüksekliği" -#: netbox/templates/dcim/interface.html:17 +#: templates/dcim/interface.html:17 msgid "Add Child Interface" msgstr "Çocuk Arayüzü Ekle" -#: netbox/templates/dcim/interface.html:50 +#: templates/dcim/interface.html:50 msgid "Speed/Duplex" msgstr "Hız/Dubleks" -#: netbox/templates/dcim/interface.html:73 +#: templates/dcim/interface.html:73 msgid "PoE Mode" msgstr "PoE Modu" -#: netbox/templates/dcim/interface.html:77 +#: templates/dcim/interface.html:77 msgid "PoE Type" msgstr "PoE Tipi" -#: netbox/templates/dcim/interface.html:81 -#: netbox/templates/virtualization/vminterface.html:63 +#: templates/dcim/interface.html:81 +#: templates/virtualization/vminterface.html:63 msgid "802.1Q Mode" msgstr "802.1Q Modu" -#: netbox/templates/dcim/interface.html:125 -#: netbox/templates/virtualization/vminterface.html:59 +#: templates/dcim/interface.html:125 +#: templates/virtualization/vminterface.html:59 msgid "MAC Address" msgstr "MAC Adresi" -#: netbox/templates/dcim/interface.html:151 +#: templates/dcim/interface.html:151 msgid "Wireless Link" msgstr "Kablosuz Bağlantı" -#: netbox/templates/dcim/interface.html:218 netbox/vpn/choices.py:55 +#: templates/dcim/interface.html:218 vpn/choices.py:55 msgid "Peer" msgstr "Akran" -#: netbox/templates/dcim/interface.html:230 -#: netbox/templates/wireless/inc/wirelesslink_interface.html:26 +#: templates/dcim/interface.html:230 +#: templates/wireless/inc/wirelesslink_interface.html:26 msgid "Channel" msgstr "Kanal" -#: netbox/templates/dcim/interface.html:239 -#: netbox/templates/wireless/inc/wirelesslink_interface.html:32 +#: templates/dcim/interface.html:239 +#: templates/wireless/inc/wirelesslink_interface.html:32 msgid "Channel Frequency" msgstr "Kanal Frekansı" -#: netbox/templates/dcim/interface.html:242 -#: netbox/templates/dcim/interface.html:250 -#: netbox/templates/dcim/interface.html:261 -#: netbox/templates/dcim/interface.html:269 +#: templates/dcim/interface.html:242 templates/dcim/interface.html:250 +#: templates/dcim/interface.html:261 templates/dcim/interface.html:269 msgid "MHz" msgstr "MHz" -#: netbox/templates/dcim/interface.html:258 -#: netbox/templates/wireless/inc/wirelesslink_interface.html:42 +#: templates/dcim/interface.html:258 +#: templates/wireless/inc/wirelesslink_interface.html:42 msgid "Channel Width" msgstr "Kanal Genişliği" -#: netbox/templates/dcim/interface.html:285 -#: netbox/templates/wireless/wirelesslan.html:14 -#: netbox/templates/wireless/wirelesslink.html:21 -#: netbox/wireless/forms/bulk_edit.py:60 -#: netbox/wireless/forms/bulk_edit.py:102 -#: netbox/wireless/forms/filtersets.py:40 -#: netbox/wireless/forms/filtersets.py:80 netbox/wireless/models.py:82 -#: netbox/wireless/models.py:156 netbox/wireless/tables/wirelesslan.py:44 +#: templates/dcim/interface.html:285 templates/wireless/wirelesslan.html:14 +#: templates/wireless/wirelesslink.html:21 wireless/forms/bulk_edit.py:60 +#: wireless/forms/bulk_edit.py:102 wireless/forms/filtersets.py:40 +#: wireless/forms/filtersets.py:80 wireless/models.py:82 +#: wireless/models.py:156 wireless/tables/wirelesslan.py:44 msgid "SSID" msgstr "SSID" -#: netbox/templates/dcim/interface.html:305 +#: templates/dcim/interface.html:305 msgid "LAG Members" msgstr "LAG Üyeleri" -#: netbox/templates/dcim/interface.html:323 +#: templates/dcim/interface.html:323 msgid "No member interfaces" msgstr "Üye arabirimi yok" -#: netbox/templates/dcim/interface.html:343 -#: netbox/templates/ipam/fhrpgroup.html:73 -#: netbox/templates/ipam/iprange/ip_addresses.html:7 -#: netbox/templates/ipam/prefix/ip_addresses.html:7 -#: netbox/templates/virtualization/vminterface.html:89 +#: templates/dcim/interface.html:343 templates/ipam/fhrpgroup.html:73 +#: templates/ipam/iprange/ip_addresses.html:7 +#: templates/ipam/prefix/ip_addresses.html:7 +#: templates/virtualization/vminterface.html:89 msgid "Add IP Address" msgstr "IP Adresi Ekle" -#: netbox/templates/dcim/inventoryitem.html:24 +#: templates/dcim/inventoryitem.html:24 msgid "Parent Item" msgstr "Ana Öğe" -#: netbox/templates/dcim/inventoryitem.html:48 +#: templates/dcim/inventoryitem.html:48 msgid "Part ID" msgstr "Parça Kimliği" -#: netbox/templates/dcim/location.html:17 +#: templates/dcim/location.html:17 msgid "Add Child Location" msgstr "Alt Konumu Ekle" -#: netbox/templates/dcim/location.html:77 +#: templates/dcim/location.html:77 msgid "Child Locations" msgstr "Alt Konumlar" -#: netbox/templates/dcim/location.html:81 netbox/templates/dcim/site.html:131 +#: templates/dcim/location.html:81 templates/dcim/site.html:131 msgid "Add a Location" msgstr "Konum Ekle" -#: netbox/templates/dcim/location.html:94 netbox/templates/dcim/site.html:144 +#: templates/dcim/location.html:94 templates/dcim/site.html:144 msgid "Add a Device" msgstr "Cihaz Ekle" -#: netbox/templates/dcim/manufacturer.html:16 +#: templates/dcim/manufacturer.html:16 msgid "Add Device Type" msgstr "Cihaz Türü Ekle" -#: netbox/templates/dcim/manufacturer.html:21 +#: templates/dcim/manufacturer.html:21 msgid "Add Module Type" msgstr "Modül Türü Ekle" -#: netbox/templates/dcim/powerfeed.html:53 +#: templates/dcim/powerfeed.html:53 msgid "Connected Device" msgstr "Bağlı Cihaz" -#: netbox/templates/dcim/powerfeed.html:63 +#: templates/dcim/powerfeed.html:63 msgid "Utilization (Allocated" msgstr "Kullanım (Tahsis Edildi" -#: netbox/templates/dcim/powerfeed.html:80 +#: templates/dcim/powerfeed.html:80 msgid "Electrical Characteristics" msgstr "Elektriksel Özellikler" -#: netbox/templates/dcim/powerfeed.html:88 +#: templates/dcim/powerfeed.html:88 msgctxt "Abbreviation for volts" msgid "V" msgstr "V" -#: netbox/templates/dcim/powerfeed.html:92 +#: templates/dcim/powerfeed.html:92 msgctxt "Abbreviation for amperes" msgid "A" msgstr "A" -#: netbox/templates/dcim/poweroutlet.html:48 +#: templates/dcim/poweroutlet.html:48 msgid "Feed Leg" msgstr "Besleme ayağı" -#: netbox/templates/dcim/powerpanel.html:72 +#: templates/dcim/powerpanel.html:72 msgid "Add Power Feeds" msgstr "Güç Beslemeleri Ekle" -#: netbox/templates/dcim/powerport.html:44 +#: templates/dcim/powerport.html:44 msgid "Maximum Draw" msgstr "Maksimum Çekiliş" -#: netbox/templates/dcim/powerport.html:48 +#: templates/dcim/powerport.html:48 msgid "Allocated Draw" msgstr "Tahsis Edilen Çekiliş" -#: netbox/templates/dcim/rack.html:69 +#: templates/dcim/rack.html:69 msgid "Space Utilization" msgstr "Alan Kullanımı" -#: netbox/templates/dcim/rack.html:84 netbox/templates/dcim/racktype.html:44 +#: templates/dcim/rack.html:84 templates/dcim/racktype.html:44 msgid "Rack Weight" msgstr "Raf Ağırlığı" -#: netbox/templates/dcim/rack.html:94 netbox/templates/dcim/racktype.html:54 +#: templates/dcim/rack.html:94 templates/dcim/racktype.html:54 msgid "Maximum Weight" msgstr "Maksimum Ağırlık" -#: netbox/templates/dcim/rack.html:104 +#: templates/dcim/rack.html:104 msgid "Total Weight" msgstr "Toplam Ağırlık" -#: netbox/templates/dcim/rack.html:125 -#: netbox/templates/dcim/rack_elevation_list.html:15 +#: templates/dcim/rack.html:125 templates/dcim/rack_elevation_list.html:15 msgid "Images and Labels" msgstr "Resimler ve Etiketler" -#: netbox/templates/dcim/rack.html:126 -#: netbox/templates/dcim/rack_elevation_list.html:16 +#: templates/dcim/rack.html:126 templates/dcim/rack_elevation_list.html:16 msgid "Images only" msgstr "Yalnızca resimler" -#: netbox/templates/dcim/rack.html:127 -#: netbox/templates/dcim/rack_elevation_list.html:17 +#: templates/dcim/rack.html:127 templates/dcim/rack_elevation_list.html:17 msgid "Labels only" msgstr "Yalnızca etiketler" -#: netbox/templates/dcim/rack/reservations.html:8 +#: templates/dcim/rack/reservations.html:8 msgid "Add reservation" msgstr "Rezervasyon ekle" -#: netbox/templates/dcim/rack_elevation_list.html:12 +#: templates/dcim/rack_elevation_list.html:12 msgid "View List" msgstr "Listeyi Görüntüle" -#: netbox/templates/dcim/rack_elevation_list.html:14 +#: templates/dcim/rack_elevation_list.html:14 msgid "Select rack view" msgstr "Raf görünümünü seçin" -#: netbox/templates/dcim/rack_elevation_list.html:25 +#: templates/dcim/rack_elevation_list.html:25 msgid "Sort By" msgstr "Sıralamaya Göre" -#: netbox/templates/dcim/rack_elevation_list.html:74 +#: templates/dcim/rack_elevation_list.html:74 msgid "No Racks Found" msgstr "Raf Bulunamadı" -#: netbox/templates/dcim/rack_list.html:8 +#: templates/dcim/rack_list.html:8 msgid "View Elevations" msgstr "Yükseklikleri Görüntüle" -#: netbox/templates/dcim/rackreservation.html:42 +#: templates/dcim/rackreservation.html:42 msgid "Reservation Details" msgstr "Rezervasyon Detayları" -#: netbox/templates/dcim/rackrole.html:10 +#: templates/dcim/rackrole.html:10 msgid "Add Rack" msgstr "Raf Ekle" -#: netbox/templates/dcim/rearport.html:50 +#: templates/dcim/rearport.html:50 msgid "Positions" msgstr "Pozisyonlar" -#: netbox/templates/dcim/region.html:17 -#: netbox/templates/dcim/sitegroup.html:17 +#: templates/dcim/region.html:17 templates/dcim/sitegroup.html:17 msgid "Add Site" msgstr "Site Ekle" -#: netbox/templates/dcim/region.html:55 +#: templates/dcim/region.html:55 msgid "Child Regions" msgstr "Alt Bölgeler" -#: netbox/templates/dcim/region.html:59 +#: templates/dcim/region.html:59 msgid "Add Region" msgstr "Bölge Ekle" -#: netbox/templates/dcim/site.html:64 +#: templates/dcim/site.html:64 msgid "Time Zone" msgstr "Saat dilimi" -#: netbox/templates/dcim/site.html:67 +#: templates/dcim/site.html:67 msgid "UTC" msgstr "UTC" -#: netbox/templates/dcim/site.html:68 +#: templates/dcim/site.html:68 msgid "Site time" msgstr "Site zamanı" -#: netbox/templates/dcim/site.html:75 +#: templates/dcim/site.html:75 msgid "Physical Address" msgstr "Fiziksel Adres" -#: netbox/templates/dcim/site.html:90 +#: templates/dcim/site.html:90 msgid "Shipping Address" msgstr "Kargo Adresi" -#: netbox/templates/dcim/sitegroup.html:55 -#: netbox/templates/tenancy/contactgroup.html:46 -#: netbox/templates/tenancy/tenantgroup.html:55 -#: netbox/templates/wireless/wirelesslangroup.html:55 +#: templates/dcim/sitegroup.html:55 templates/tenancy/contactgroup.html:46 +#: templates/tenancy/tenantgroup.html:55 +#: templates/wireless/wirelesslangroup.html:55 msgid "Child Groups" msgstr "Çocuk Grupları" -#: netbox/templates/dcim/sitegroup.html:59 +#: templates/dcim/sitegroup.html:59 msgid "Add Site Group" msgstr "Site Grubu Ekle" -#: netbox/templates/dcim/trace/attachment.html:5 -#: netbox/templates/extras/exporttemplate.html:31 +#: templates/dcim/trace/attachment.html:5 +#: templates/extras/exporttemplate.html:31 msgid "Attachment" msgstr "Ataşman" -#: netbox/templates/dcim/virtualchassis.html:57 +#: templates/dcim/virtualchassis.html:57 msgid "Add Member" msgstr "Üye Ekle" -#: netbox/templates/dcim/virtualchassis_add.html:18 +#: templates/dcim/virtualchassis_add.html:18 msgid "Member Devices" msgstr "Üye Cihazları" -#: netbox/templates/dcim/virtualchassis_add_member.html:10 +#: templates/dcim/virtualchassis_add_member.html:10 #, python-format msgid "Add New Member to Virtual Chassis %(virtual_chassis)s" msgstr "Sanal Şasiye Yeni Üye Ekle %(virtual_chassis)s" -#: netbox/templates/dcim/virtualchassis_add_member.html:19 +#: templates/dcim/virtualchassis_add_member.html:19 msgid "Add New Member" msgstr "Yeni Üye Ekle" -#: netbox/templates/dcim/virtualchassis_add_member.html:27 -#: netbox/templates/generic/object_edit.html:78 -#: netbox/templates/users/objectpermission.html:31 -#: netbox/users/forms/filtersets.py:67 netbox/users/forms/model_forms.py:312 +#: templates/dcim/virtualchassis_add_member.html:27 +#: templates/generic/object_edit.html:78 +#: templates/users/objectpermission.html:31 users/forms/filtersets.py:67 +#: users/forms/model_forms.py:312 msgid "Actions" msgstr "Eylemler" -#: netbox/templates/dcim/virtualchassis_add_member.html:29 +#: templates/dcim/virtualchassis_add_member.html:29 msgid "Save & Add Another" msgstr "Kaydet ve Başka Ekle" -#: netbox/templates/dcim/virtualchassis_edit.html:7 +#: templates/dcim/virtualchassis_edit.html:7 #, python-format msgid "Editing Virtual Chassis %(name)s" msgstr "Sanal Kasayı Düzenleme %(name)s" -#: netbox/templates/dcim/virtualchassis_edit.html:53 +#: templates/dcim/virtualchassis_edit.html:53 msgid "Rack/Unit" msgstr "Raf/Birim" -#: netbox/templates/dcim/virtualchassis_remove_member.html:5 +#: templates/dcim/virtualchassis_remove_member.html:5 msgid "Remove Virtual Chassis Member" msgstr "Sanal Kasa Üyesini Kaldır" -#: netbox/templates/dcim/virtualchassis_remove_member.html:9 +#: templates/dcim/virtualchassis_remove_member.html:9 #, python-format msgid "" "Are you sure you want to remove %(device)s from virtual " @@ -13040,12 +12330,11 @@ msgstr "" "Kaldırmak istediğinizden emin misiniz? %(device)s sanal " "kasadan %(name)s?" -#: netbox/templates/dcim/virtualdevicecontext.html:26 -#: netbox/templates/vpn/l2vpn.html:18 +#: templates/dcim/virtualdevicecontext.html:26 templates/vpn/l2vpn.html:18 msgid "Identifier" msgstr "Tanımlayıcı" -#: netbox/templates/exceptions/import_error.html:6 +#: templates/exceptions/import_error.html:6 msgid "" "A module import error occurred during this request. Common causes include " "the following:" @@ -13053,11 +12342,11 @@ msgstr "" "Bu istek sırasında bir modül içe aktarma hatası oluştu. Yaygın nedenler " "aşağıdakileri içerir:" -#: netbox/templates/exceptions/import_error.html:10 +#: templates/exceptions/import_error.html:10 msgid "Missing required packages" msgstr "Gerekli paketler eksik" -#: netbox/templates/exceptions/import_error.html:11 +#: templates/exceptions/import_error.html:11 msgid "" "This installation of NetBox might be missing one or more required Python " "packages. These packages are listed in requirements.txt and " @@ -13073,11 +12362,11 @@ msgstr "" "çalıştırın pip dondurma konsoldan ve çıktıyı gerekli paketlerin" " listesiyle karşılaştırın." -#: netbox/templates/exceptions/import_error.html:20 +#: templates/exceptions/import_error.html:20 msgid "WSGI service not restarted after upgrade" msgstr "WSGI hizmeti yükseltmeden sonra yeniden başlatılmadı" -#: netbox/templates/exceptions/import_error.html:21 +#: templates/exceptions/import_error.html:21 msgid "" "If this installation has recently been upgraded, check that the WSGI service" " (e.g. gunicorn or uWSGI) has been restarted. This ensures that the new code" @@ -13087,7 +12376,7 @@ msgstr "" "veya uWSGi) yeniden başlatıldığını kontrol edin. Bu, yeni kodun çalışmasını " "sağlar." -#: netbox/templates/exceptions/permission_error.html:6 +#: templates/exceptions/permission_error.html:6 msgid "" "A file permission error was detected while processing this request. Common " "causes include the following:" @@ -13095,11 +12384,11 @@ msgstr "" "Bu istek işlenirken bir dosya izni hatası tespit edildi. Yaygın nedenler " "aşağıdakileri içerir:" -#: netbox/templates/exceptions/permission_error.html:10 +#: templates/exceptions/permission_error.html:10 msgid "Insufficient write permission to the media root" msgstr "Medya köküne yetersiz yazma izni" -#: netbox/templates/exceptions/permission_error.html:11 +#: templates/exceptions/permission_error.html:11 #, python-format msgid "" "The configured media root is %(media_root)s. Ensure that the " @@ -13110,7 +12399,7 @@ msgstr "" "kullanıcısının, bu yoldaki tüm konumlara dosya yazmak için erişimi olduğu " "gibi çalıştığından emin olun." -#: netbox/templates/exceptions/programming_error.html:6 +#: templates/exceptions/programming_error.html:6 msgid "" "A database programming error was detected while processing this request. " "Common causes include the following:" @@ -13118,11 +12407,11 @@ msgstr "" "Bu istek işlenirken bir veritabanı programlama hatası tespit edildi. Yaygın " "nedenler aşağıdakileri içerir:" -#: netbox/templates/exceptions/programming_error.html:10 +#: templates/exceptions/programming_error.html:10 msgid "Database migrations missing" msgstr "Veritabanı geçişleri eksik" -#: netbox/templates/exceptions/programming_error.html:11 +#: templates/exceptions/programming_error.html:11 msgid "" "When upgrading to a new NetBox release, the upgrade script must be run to " "apply any new database migrations. You can run migrations manually by " @@ -13133,11 +12422,11 @@ msgstr "" " manuel olarak çalıştırabilirsiniz python3 manage.py geçişi " "komut satırından." -#: netbox/templates/exceptions/programming_error.html:18 +#: templates/exceptions/programming_error.html:18 msgid "Unsupported PostgreSQL version" msgstr "Desteklenmeyen PostgreSQL sürümü" -#: netbox/templates/exceptions/programming_error.html:19 +#: templates/exceptions/programming_error.html:19 msgid "" "Ensure that PostgreSQL version 12 or later is in use. You can check this by " "connecting to the database using NetBox's credentials and issuing a query " @@ -13147,102 +12436,99 @@ msgstr "" "NetBox'ın kimlik bilgilerini kullanarak veritabanına bağlanarak ve bir sorgu" " düzenleyerek bunu kontrol edebilirsiniz. SÜRÜMÜ SEÇİN ()." -#: netbox/templates/extras/configcontext.html:45 -#: netbox/templates/extras/configtemplate.html:37 -#: netbox/templates/extras/exporttemplate.html:51 +#: templates/extras/configcontext.html:45 +#: templates/extras/configtemplate.html:37 +#: templates/extras/exporttemplate.html:51 msgid "The data file associated with this object has been deleted" msgstr "Bu nesneyle ilişkili veri dosyası silindi" -#: netbox/templates/extras/configcontext.html:54 -#: netbox/templates/extras/configtemplate.html:46 -#: netbox/templates/extras/exporttemplate.html:60 +#: templates/extras/configcontext.html:54 +#: templates/extras/configtemplate.html:46 +#: templates/extras/exporttemplate.html:60 msgid "Data Synced" msgstr "Veriler Senkronize Edildi" -#: netbox/templates/extras/configcontext_list.html:7 -#: netbox/templates/extras/configtemplate_list.html:7 -#: netbox/templates/extras/exporttemplate_list.html:7 +#: templates/extras/configcontext_list.html:7 +#: templates/extras/configtemplate_list.html:7 +#: templates/extras/exporttemplate_list.html:7 msgid "Sync Data" msgstr "Verileri Senkronize Et" -#: netbox/templates/extras/configtemplate.html:56 +#: templates/extras/configtemplate.html:56 msgid "Environment Parameters" msgstr "Çevre Parametreleri" -#: netbox/templates/extras/configtemplate.html:67 -#: netbox/templates/extras/exporttemplate.html:79 +#: templates/extras/configtemplate.html:67 +#: templates/extras/exporttemplate.html:79 msgid "Template" msgstr "Şablon" -#: netbox/templates/extras/customfield.html:30 -#: netbox/templates/extras/customlink.html:21 +#: templates/extras/customfield.html:30 templates/extras/customlink.html:21 msgid "Group Name" msgstr "Grup Adı" -#: netbox/templates/extras/customfield.html:42 +#: templates/extras/customfield.html:42 msgid "Must be Unique" msgstr "Benzersiz Olmalı" -#: netbox/templates/extras/customfield.html:46 +#: templates/extras/customfield.html:46 msgid "Cloneable" msgstr "Klonlanabilir" -#: netbox/templates/extras/customfield.html:56 +#: templates/extras/customfield.html:56 msgid "Default Value" msgstr "Varsayılan Değer" -#: netbox/templates/extras/customfield.html:73 +#: templates/extras/customfield.html:73 msgid "Search Weight" msgstr "Arama Ağırlığı" -#: netbox/templates/extras/customfield.html:83 +#: templates/extras/customfield.html:83 msgid "Filter Logic" msgstr "Filtre Mantığı" -#: netbox/templates/extras/customfield.html:87 +#: templates/extras/customfield.html:87 msgid "Display Weight" msgstr "Ekran Ağırlığı" -#: netbox/templates/extras/customfield.html:91 +#: templates/extras/customfield.html:91 msgid "UI Visible" msgstr "Kullanıcı Arayüzü Görünür" -#: netbox/templates/extras/customfield.html:95 +#: templates/extras/customfield.html:95 msgid "UI Editable" msgstr "UI Düzenlenebilir" -#: netbox/templates/extras/customfield.html:115 +#: templates/extras/customfield.html:115 msgid "Validation Rules" msgstr "Doğrulama Kuralları" -#: netbox/templates/extras/customfield.html:126 +#: templates/extras/customfield.html:126 msgid "Regular Expression" msgstr "Düzenli İfade" -#: netbox/templates/extras/customlink.html:29 +#: templates/extras/customlink.html:29 msgid "Button Class" msgstr "Düğme Sınıfı" -#: netbox/templates/extras/customlink.html:39 -#: netbox/templates/extras/exporttemplate.html:66 -#: netbox/templates/extras/savedfilter.html:39 +#: templates/extras/customlink.html:39 templates/extras/exporttemplate.html:66 +#: templates/extras/savedfilter.html:39 msgid "Assigned Models" msgstr "Atanan Modeller" -#: netbox/templates/extras/customlink.html:52 +#: templates/extras/customlink.html:52 msgid "Link Text" msgstr "Bağlantı Metni" -#: netbox/templates/extras/customlink.html:58 +#: templates/extras/customlink.html:58 msgid "Link URL" msgstr "Bağlantı URL'si" -#: netbox/templates/extras/dashboard/reset.html:4 -#: netbox/templates/home.html:66 +#: templates/extras/dashboard/reset.html:4 templates/home.html:66 msgid "Reset Dashboard" msgstr "Kontrol Panelini Sıfırla" -#: netbox/templates/extras/dashboard/reset.html:8 +#: templates/extras/dashboard/reset.html:8 msgid "" "This will remove all configured widgets and restore the " "default dashboard configuration." @@ -13250,7 +12536,7 @@ msgstr "" "Bu kaldıracak bütün widget'ları yapılandırın ve varsayılan " "gösterge paneli yapılandırmasını geri yükleyin." -#: netbox/templates/extras/dashboard/reset.html:13 +#: templates/extras/dashboard/reset.html:13 msgid "" "This change affects only your dashboard, and will not impact other " "users." @@ -13258,156 +12544,154 @@ msgstr "" "Bu değişiklik sadece etkiliyor sizin kontrol paneli, ve diğer " "kullanıcıları etkilemeyecektir." -#: netbox/templates/extras/dashboard/widget.html:21 +#: templates/extras/dashboard/widget.html:21 msgid "widget configuration" msgstr "widget yapılandırması" -#: netbox/templates/extras/dashboard/widget.html:36 +#: templates/extras/dashboard/widget.html:36 msgid "Close widget" msgstr "Widget'ı kapat" -#: netbox/templates/extras/dashboard/widget_add.html:7 +#: templates/extras/dashboard/widget_add.html:7 msgid "Add a Widget" msgstr "Widget Ekle" -#: netbox/templates/extras/dashboard/widgets/bookmarks.html:14 +#: templates/extras/dashboard/widgets/bookmarks.html:14 msgid "No bookmarks have been added yet." msgstr "Henüz yer imi eklenmedi." -#: netbox/templates/extras/dashboard/widgets/objectcounts.html:10 +#: templates/extras/dashboard/widgets/objectcounts.html:10 msgid "No permission" msgstr "İzin yok" -#: netbox/templates/extras/dashboard/widgets/objectlist.html:6 +#: templates/extras/dashboard/widgets/objectlist.html:6 msgid "No permission to view this content" msgstr "Bu içeriği görüntüleme izni yok" -#: netbox/templates/extras/dashboard/widgets/objectlist.html:10 +#: templates/extras/dashboard/widgets/objectlist.html:10 msgid "Unable to load content. Invalid view name" msgstr "İçerik yüklenemiyor. Geçersiz görünüm adı" -#: netbox/templates/extras/dashboard/widgets/rssfeed.html:12 +#: templates/extras/dashboard/widgets/rssfeed.html:12 msgid "No content found" msgstr "İçerik bulunamadı" -#: netbox/templates/extras/dashboard/widgets/rssfeed.html:18 +#: templates/extras/dashboard/widgets/rssfeed.html:18 msgid "There was a problem fetching the RSS feed" msgstr "RSS beslemesini getirirken bir sorun oluştu" -#: netbox/templates/extras/dashboard/widgets/rssfeed.html:21 +#: templates/extras/dashboard/widgets/rssfeed.html:21 msgid "HTTP" msgstr "HTTP" -#: netbox/templates/extras/eventrule.html:61 +#: templates/extras/eventrule.html:61 msgid "Conditions" msgstr "Koşullar" -#: netbox/templates/extras/exporttemplate.html:23 +#: templates/extras/exporttemplate.html:23 msgid "MIME Type" msgstr "MIME Türü" -#: netbox/templates/extras/exporttemplate.html:27 +#: templates/extras/exporttemplate.html:27 msgid "File Extension" msgstr "Dosya uzantısı" -#: netbox/templates/extras/htmx/script_result.html:10 +#: templates/extras/htmx/script_result.html:10 msgid "Scheduled for" msgstr "İçin planlanmış" -#: netbox/templates/extras/htmx/script_result.html:15 +#: templates/extras/htmx/script_result.html:15 msgid "Duration" msgstr "Süre" -#: netbox/templates/extras/htmx/script_result.html:23 +#: templates/extras/htmx/script_result.html:23 msgid "Test Summary" msgstr "Test Özeti" -#: netbox/templates/extras/htmx/script_result.html:43 +#: templates/extras/htmx/script_result.html:43 msgid "Log" msgstr "Günlüğe" -#: netbox/templates/extras/htmx/script_result.html:56 +#: templates/extras/htmx/script_result.html:56 msgid "Output" msgstr "Çıktı" -#: netbox/templates/extras/inc/result_pending.html:4 +#: templates/extras/inc/result_pending.html:4 msgid "Loading" msgstr "Yükleniyor" -#: netbox/templates/extras/inc/result_pending.html:6 +#: templates/extras/inc/result_pending.html:6 msgid "Results pending" msgstr "Sonuçlar beklemede" -#: netbox/templates/extras/journalentry.html:15 +#: templates/extras/journalentry.html:15 msgid "Journal Entry" msgstr "Dergi Girişi" -#: netbox/templates/extras/notificationgroup.html:11 +#: templates/extras/notificationgroup.html:11 msgid "Notification Group" msgstr "Bildirim Grubu" -#: netbox/templates/extras/notificationgroup.html:36 -#: netbox/templates/extras/notificationgroup.html:46 -#: netbox/utilities/templates/widgets/clearable_file_input.html:12 +#: templates/extras/notificationgroup.html:36 +#: templates/extras/notificationgroup.html:46 +#: utilities/templates/widgets/clearable_file_input.html:12 msgid "None assigned" msgstr "Atanmadı" -#: netbox/templates/extras/object_configcontext.html:19 +#: templates/extras/object_configcontext.html:19 msgid "The local config context overwrites all source contexts" msgstr "Yerel yapılandırma bağlamı tüm kaynak bağlamların üzerine yazar" -#: netbox/templates/extras/object_configcontext.html:25 +#: templates/extras/object_configcontext.html:25 msgid "Source Contexts" msgstr "Kaynak Bağlamları" -#: netbox/templates/extras/object_journal.html:17 +#: templates/extras/object_journal.html:17 msgid "New Journal Entry" msgstr "Yeni Dergi Girişi" -#: netbox/templates/extras/report/base.html:30 +#: templates/extras/report/base.html:30 msgid "Report" msgstr "Rapor" -#: netbox/templates/extras/script.html:14 +#: templates/extras/script.html:14 msgid "You do not have permission to run scripts" msgstr "Komut dosyalarını çalıştırma izniniz yok" -#: netbox/templates/extras/script.html:41 -#: netbox/templates/extras/script.html:45 -#: netbox/templates/extras/script_list.html:86 +#: templates/extras/script.html:41 templates/extras/script.html:45 +#: templates/extras/script_list.html:86 msgid "Run Script" msgstr "Komut Dosyasını Çalıştır" -#: netbox/templates/extras/script.html:51 -#: netbox/templates/extras/script/source.html:10 +#: templates/extras/script.html:51 templates/extras/script/source.html:10 msgid "Error loading script" msgstr "Komut dosyası yüklenirken hata oluştu" -#: netbox/templates/extras/script/jobs.html:16 +#: templates/extras/script/jobs.html:16 msgid "Script no longer exists in the source file." msgstr "Kaynak dosyada komut dosyası artık mevcut değil." -#: netbox/templates/extras/script_list.html:46 +#: templates/extras/script_list.html:46 msgid "Last Run" msgstr "Son Koşu" -#: netbox/templates/extras/script_list.html:61 +#: templates/extras/script_list.html:61 msgid "Script is no longer present in the source file" msgstr "Komut dosyası artık kaynak dosyada mevcut değil" -#: netbox/templates/extras/script_list.html:74 +#: templates/extras/script_list.html:74 msgid "Never" msgstr "Asla" -#: netbox/templates/extras/script_list.html:84 +#: templates/extras/script_list.html:84 msgid "Run Again" msgstr "Tekrar koş" -#: netbox/templates/extras/script_list.html:138 +#: templates/extras/script_list.html:138 msgid "No Scripts Found" msgstr "Komut Dosyası Bulunamadı" -#: netbox/templates/extras/script_list.html:141 +#: templates/extras/script_list.html:141 #, python-format msgid "" "Get started by creating a script from " @@ -13416,83 +12700,81 @@ msgstr "" "Şuradan başlayın bir komut dosyası " "oluşturma yüklenen bir dosyadan veya veri kaynağından." -#: netbox/templates/extras/script_result.html:35 -#: netbox/templates/generic/object_list.html:50 -#: netbox/templates/search.html:13 +#: templates/extras/script_result.html:35 +#: templates/generic/object_list.html:50 templates/search.html:13 msgid "Results" msgstr "Sonuçlar" -#: netbox/templates/extras/script_result.html:46 +#: templates/extras/script_result.html:46 msgid "Log threshold" msgstr "Günlük eşiği" -#: netbox/templates/extras/script_result.html:56 +#: templates/extras/script_result.html:56 msgid "All" msgstr "Hepsi" -#: netbox/templates/extras/tag.html:32 +#: templates/extras/tag.html:32 msgid "Tagged Items" msgstr "Etiketli Öğeler" -#: netbox/templates/extras/tag.html:43 +#: templates/extras/tag.html:43 msgid "Allowed Object Types" msgstr "İzin Verilen Nesne Türleri" -#: netbox/templates/extras/tag.html:51 +#: templates/extras/tag.html:51 msgid "Any" msgstr "Herhangi bir" -#: netbox/templates/extras/tag.html:57 +#: templates/extras/tag.html:57 msgid "Tagged Item Types" msgstr "Etiketli Öğe Türleri" -#: netbox/templates/extras/tag.html:81 +#: templates/extras/tag.html:81 msgid "Tagged Objects" msgstr "Etiketli Nesneler" -#: netbox/templates/extras/webhook.html:26 +#: templates/extras/webhook.html:26 msgid "HTTP Method" msgstr "HTTP Yöntemi" -#: netbox/templates/extras/webhook.html:34 +#: templates/extras/webhook.html:34 msgid "HTTP Content Type" msgstr "HTTP İçerik Türü" -#: netbox/templates/extras/webhook.html:47 +#: templates/extras/webhook.html:47 msgid "SSL Verification" msgstr "SSL Doğrulama" -#: netbox/templates/extras/webhook.html:60 +#: templates/extras/webhook.html:60 msgid "Additional Headers" msgstr "Ek Başlıklar" -#: netbox/templates/extras/webhook.html:70 +#: templates/extras/webhook.html:70 msgid "Body Template" msgstr "Vücut Şablonu" -#: netbox/templates/generic/bulk_add_component.html:29 +#: templates/generic/bulk_add_component.html:29 msgid "Bulk Creation" msgstr "Toplu Oluşturma" -#: netbox/templates/generic/bulk_add_component.html:34 -#: netbox/templates/generic/bulk_delete.html:32 -#: netbox/templates/generic/bulk_edit.html:33 +#: templates/generic/bulk_add_component.html:34 +#: templates/generic/bulk_delete.html:32 templates/generic/bulk_edit.html:33 msgid "Selected Objects" msgstr "Seçili Nesneler" -#: netbox/templates/generic/bulk_add_component.html:58 +#: templates/generic/bulk_add_component.html:58 msgid "to Add" msgstr "Eklemek için" -#: netbox/templates/generic/bulk_delete.html:27 +#: templates/generic/bulk_delete.html:27 msgid "Bulk Delete" msgstr "Toplu Silme" -#: netbox/templates/generic/bulk_delete.html:49 +#: templates/generic/bulk_delete.html:49 msgid "Confirm Bulk Deletion" msgstr "Toplu Silmeyi Onayla" -#: netbox/templates/generic/bulk_delete.html:50 +#: templates/generic/bulk_delete.html:50 #, python-format msgid "" "The following operation will delete %(count)s " @@ -13502,67 +12784,64 @@ msgstr "" "Aşağıdaki işlem silinecek %(count)s %(type_plural)s. Lütfen" " seçilen nesneleri dikkatlice inceleyin ve bu işlemi onaylayın." -#: netbox/templates/generic/bulk_edit.html:21 -#: netbox/templates/generic/object_edit.html:22 +#: templates/generic/bulk_edit.html:21 templates/generic/object_edit.html:22 msgid "Editing" msgstr "Düzenleme" -#: netbox/templates/generic/bulk_edit.html:28 +#: templates/generic/bulk_edit.html:28 msgid "Bulk Edit" msgstr "Toplu Düzenleme" -#: netbox/templates/generic/bulk_edit.html:107 -#: netbox/templates/generic/bulk_rename.html:66 +#: templates/generic/bulk_edit.html:107 templates/generic/bulk_rename.html:66 msgid "Apply" msgstr "Uygula" -#: netbox/templates/generic/bulk_import.html:19 +#: templates/generic/bulk_import.html:19 msgid "Bulk Import" msgstr "Toplu İçe Aktar" -#: netbox/templates/generic/bulk_import.html:25 +#: templates/generic/bulk_import.html:25 msgid "Direct Import" msgstr "Doğrudan İçe Aktar" -#: netbox/templates/generic/bulk_import.html:30 +#: templates/generic/bulk_import.html:30 msgid "Upload File" msgstr "Dosya Yükle" -#: netbox/templates/generic/bulk_import.html:58 -#: netbox/templates/generic/bulk_import.html:80 -#: netbox/templates/generic/bulk_import.html:102 +#: templates/generic/bulk_import.html:58 templates/generic/bulk_import.html:80 +#: templates/generic/bulk_import.html:102 msgid "Submit" msgstr "Gönder" -#: netbox/templates/generic/bulk_import.html:113 +#: templates/generic/bulk_import.html:113 msgid "Field Options" msgstr "Alan Seçenekleri" -#: netbox/templates/generic/bulk_import.html:119 +#: templates/generic/bulk_import.html:119 msgid "Accessor" msgstr "Aksesuar" -#: netbox/templates/generic/bulk_import.html:148 +#: templates/generic/bulk_import.html:148 msgid "choices" msgstr "seçimler" -#: netbox/templates/generic/bulk_import.html:161 +#: templates/generic/bulk_import.html:161 msgid "Import Value" msgstr "İthalat Değeri" -#: netbox/templates/generic/bulk_import.html:181 +#: templates/generic/bulk_import.html:181 msgid "Format: YYYY-MM-DD" msgstr "Biçim: YYYY-MM-DD" -#: netbox/templates/generic/bulk_import.html:183 +#: templates/generic/bulk_import.html:183 msgid "Specify true or false" msgstr "Doğru veya yanlış belirtin" -#: netbox/templates/generic/bulk_import.html:195 +#: templates/generic/bulk_import.html:195 msgid "Required fields must be specified for all objects." msgstr "Zorunlu alanlar şart tüm nesneler için belirtilir." -#: netbox/templates/generic/bulk_import.html:201 +#: templates/generic/bulk_import.html:201 #, python-format msgid "" "Related objects may be referenced by any unique attribute. For example, " @@ -13572,15 +12851,15 @@ msgstr "" " Örneğin, %(example)s bir VRF'yi rota ayırt edicisi ile " "tanımlar." -#: netbox/templates/generic/bulk_remove.html:28 +#: templates/generic/bulk_remove.html:28 msgid "Bulk Remove" msgstr "Toplu Kaldırma" -#: netbox/templates/generic/bulk_remove.html:42 +#: templates/generic/bulk_remove.html:42 msgid "Confirm Bulk Removal" msgstr "Toplu Kaldırmayı Onayla" -#: netbox/templates/generic/bulk_remove.html:43 +#: templates/generic/bulk_remove.html:43 #, python-format msgid "" "The following operation will remove %(count)s %(obj_type_plural)s from " @@ -13591,72 +12870,72 @@ msgstr "" "%(parent_obj)s. Lütfen dikkatlice inceleyin %(obj_type_plural)s kaldırılacak" " ve aşağıda onaylanacak." -#: netbox/templates/generic/bulk_remove.html:64 +#: templates/generic/bulk_remove.html:64 #, python-format msgid "Remove these %(count)s %(obj_type_plural)s" msgstr "Bunları kaldır %(count)s %(obj_type_plural)s" -#: netbox/templates/generic/bulk_rename.html:20 +#: templates/generic/bulk_rename.html:20 msgid "Renaming" msgstr "Yeniden Adlandırma" -#: netbox/templates/generic/bulk_rename.html:27 +#: templates/generic/bulk_rename.html:27 msgid "Bulk Rename" msgstr "Toplu Yeniden Adlandırma" -#: netbox/templates/generic/bulk_rename.html:39 +#: templates/generic/bulk_rename.html:39 msgid "Current Name" msgstr "Geçerli İsim" -#: netbox/templates/generic/bulk_rename.html:40 +#: templates/generic/bulk_rename.html:40 msgid "New Name" msgstr "Yeni İsim" -#: netbox/templates/generic/bulk_rename.html:64 -#: netbox/utilities/templates/widgets/markdown_input.html:11 +#: templates/generic/bulk_rename.html:64 +#: utilities/templates/widgets/markdown_input.html:11 msgid "Preview" msgstr "Önizleme" -#: netbox/templates/generic/confirmation_form.html:16 +#: templates/generic/confirmation_form.html:16 msgid "Are you sure" msgstr "Emin misin" -#: netbox/templates/generic/confirmation_form.html:20 +#: templates/generic/confirmation_form.html:20 msgid "Confirm" msgstr "Onayla" -#: netbox/templates/generic/object_children.html:47 -#: netbox/utilities/templates/buttons/bulk_edit.html:4 +#: templates/generic/object_children.html:47 +#: utilities/templates/buttons/bulk_edit.html:4 msgid "Edit Selected" msgstr "Seçili Düzenle" -#: netbox/templates/generic/object_children.html:61 -#: netbox/utilities/templates/buttons/bulk_delete.html:4 +#: templates/generic/object_children.html:61 +#: utilities/templates/buttons/bulk_delete.html:4 msgid "Delete Selected" msgstr "Seçili Sil" -#: netbox/templates/generic/object_edit.html:24 +#: templates/generic/object_edit.html:24 #, python-format msgid "Add a new %(object_type)s" msgstr "Yeni ekle %(object_type)s" -#: netbox/templates/generic/object_edit.html:35 +#: templates/generic/object_edit.html:35 msgid "View model documentation" msgstr "Model belgelerini görüntüleyin" -#: netbox/templates/generic/object_edit.html:36 +#: templates/generic/object_edit.html:36 msgid "Help" msgstr "Yardım" -#: netbox/templates/generic/object_edit.html:83 +#: templates/generic/object_edit.html:83 msgid "Create & Add Another" msgstr "Başka Oluştur ve Ekle" -#: netbox/templates/generic/object_list.html:57 +#: templates/generic/object_list.html:57 msgid "Filters" msgstr "Filtreler" -#: netbox/templates/generic/object_list.html:88 +#: templates/generic/object_list.html:88 #, python-format msgid "" "Select all %(count)s " @@ -13665,40 +12944,40 @@ msgstr "" "Seçiniz bütün %(count)s " "%(object_type_plural)s eşleşen sorgu" -#: netbox/templates/home.html:15 +#: templates/home.html:15 msgid "New Release Available" msgstr "Yeni Sürüm Mevcut" -#: netbox/templates/home.html:16 +#: templates/home.html:16 msgid "is available" msgstr "mevcuttur" -#: netbox/templates/home.html:18 +#: templates/home.html:18 msgctxt "Document title" msgid "Upgrade Instructions" msgstr "Yükseltme Talimatları" -#: netbox/templates/home.html:40 +#: templates/home.html:40 msgid "Unlock Dashboard" msgstr "Panelin Kilidini Açın" -#: netbox/templates/home.html:49 +#: templates/home.html:49 msgid "Lock Dashboard" msgstr "Kontrol Panelini Kilitle" -#: netbox/templates/home.html:60 +#: templates/home.html:60 msgid "Add Widget" msgstr "Widget Ekle" -#: netbox/templates/home.html:63 +#: templates/home.html:63 msgid "Save Layout" msgstr "Düzeni Kaydet" -#: netbox/templates/htmx/delete_form.html:7 +#: templates/htmx/delete_form.html:7 msgid "Confirm Deletion" msgstr "Silmeyi Onayla" -#: netbox/templates/htmx/delete_form.html:11 +#: templates/htmx/delete_form.html:11 #, python-format msgid "" "Are you sure you want to delete " @@ -13707,40 +12986,40 @@ msgstr "" "İstediğinizden emin misiniz silmek " "%(object_type)s %(object)s?" -#: netbox/templates/htmx/delete_form.html:17 +#: templates/htmx/delete_form.html:17 msgid "The following objects will be deleted as a result of this action." msgstr "Bu işlem sonucunda aşağıdaki nesneler silinecektir." -#: netbox/templates/htmx/notifications.html:15 +#: templates/htmx/notifications.html:15 msgid "ago" msgstr "önce" -#: netbox/templates/htmx/notifications.html:26 +#: templates/htmx/notifications.html:26 msgid "No unread notifications" msgstr "Okunmamış bildirim yok" -#: netbox/templates/htmx/notifications.html:31 +#: templates/htmx/notifications.html:31 msgid "All notifications" msgstr "Tüm bildirimler" -#: netbox/templates/htmx/object_selector.html:5 +#: templates/htmx/object_selector.html:5 msgid "Select" msgstr "Seçiniz" -#: netbox/templates/inc/filter_list.html:42 -#: netbox/utilities/templates/helpers/table_config_form.html:39 +#: templates/inc/filter_list.html:43 +#: utilities/templates/helpers/table_config_form.html:39 msgid "Reset" msgstr "Sıfırla" -#: netbox/templates/inc/light_toggle.html:4 +#: templates/inc/light_toggle.html:4 msgid "Enable dark mode" msgstr "Karanlık modu etkinleştir" -#: netbox/templates/inc/light_toggle.html:7 +#: templates/inc/light_toggle.html:7 msgid "Enable light mode" msgstr "Işık modunu etkinleştir" -#: netbox/templates/inc/missing_prerequisites.html:8 +#: templates/inc/missing_prerequisites.html:8 #, python-format msgid "" "Before you can add a %(model)s you must first create a " @@ -13749,283 +13028,281 @@ msgstr "" "%(model)s eklemeden önce %(prerequisite_model)s " "oluşturmalısınız." -#: netbox/templates/inc/paginator.html:15 +#: templates/inc/paginator.html:15 msgid "Page selection" msgstr "Sayfa seçimi" -#: netbox/templates/inc/paginator.html:75 +#: templates/inc/paginator.html:75 #, python-format msgid "Showing %(start)s-%(end)s of %(total)s" msgstr "Gösterme %(start)s-%(end)s dan %(total)s" -#: netbox/templates/inc/paginator.html:82 +#: templates/inc/paginator.html:82 msgid "Pagination options" msgstr "Sayfalama seçenekleri" -#: netbox/templates/inc/paginator.html:86 +#: templates/inc/paginator.html:86 msgid "Per Page" msgstr "Sayfa Başına" -#: netbox/templates/inc/panels/image_attachments.html:10 +#: templates/inc/panels/image_attachments.html:10 msgid "Attach an image" msgstr "Bir resim ekle" -#: netbox/templates/inc/panels/related_objects.html:5 +#: templates/inc/panels/related_objects.html:5 msgid "Related Objects" msgstr "İlgili Nesneler" -#: netbox/templates/inc/panels/tags.html:11 +#: templates/inc/panels/tags.html:11 msgid "No tags assigned" msgstr "Hiçbir etiket atanmadı" -#: netbox/templates/inc/sync_warning.html:10 +#: templates/inc/sync_warning.html:10 msgid "Data is out of sync with upstream file" msgstr "Veriler yukarı akış dosyasıyla senkronize değil" -#: netbox/templates/inc/table_controls_htmx.html:7 +#: templates/inc/table_controls_htmx.html:7 msgid "Quick search" msgstr "Hızlı arama" -#: netbox/templates/inc/table_controls_htmx.html:20 +#: templates/inc/table_controls_htmx.html:20 msgid "Saved filter" msgstr "Kaydedilen filtre" -#: netbox/templates/inc/table_htmx.html:18 +#: templates/inc/table_htmx.html:18 msgid "Clear ordering" msgstr "Net sipariş" -#: netbox/templates/inc/user_menu.html:6 +#: templates/inc/user_menu.html:6 msgid "Help center" msgstr "Yardım Merkezi" -#: netbox/templates/inc/user_menu.html:41 +#: templates/inc/user_menu.html:41 msgid "Django Admin" msgstr "Django Yöneticisi" -#: netbox/templates/inc/user_menu.html:61 +#: templates/inc/user_menu.html:61 msgid "Log Out" msgstr "Oturumu Kapat" -#: netbox/templates/inc/user_menu.html:68 netbox/templates/login.html:38 +#: templates/inc/user_menu.html:68 templates/login.html:38 msgid "Log In" msgstr "Oturum aç" -#: netbox/templates/ipam/aggregate.html:14 -#: netbox/templates/ipam/ipaddress.html:14 -#: netbox/templates/ipam/iprange.html:13 netbox/templates/ipam/prefix.html:15 +#: templates/ipam/aggregate.html:14 templates/ipam/ipaddress.html:14 +#: templates/ipam/iprange.html:13 templates/ipam/prefix.html:15 msgid "Family" msgstr "Aile" -#: netbox/templates/ipam/aggregate.html:39 +#: templates/ipam/aggregate.html:39 msgid "Date Added" msgstr "Ekleme Tarihi" -#: netbox/templates/ipam/aggregate/prefixes.html:8 -#: netbox/templates/ipam/prefix/prefixes.html:8 -#: netbox/templates/ipam/role.html:10 +#: templates/ipam/aggregate/prefixes.html:8 +#: templates/ipam/prefix/prefixes.html:8 templates/ipam/role.html:10 msgid "Add Prefix" msgstr "Önek Ekle" -#: netbox/templates/ipam/asn.html:23 +#: templates/ipam/asn.html:23 msgid "AS Number" msgstr "AS Numarası" -#: netbox/templates/ipam/fhrpgroup.html:52 +#: templates/ipam/fhrpgroup.html:52 msgid "Authentication Type" msgstr "Kimlik Doğrulama Türü" -#: netbox/templates/ipam/fhrpgroup.html:56 +#: templates/ipam/fhrpgroup.html:56 msgid "Authentication Key" msgstr "Kimlik Doğrulama Anahtarı" -#: netbox/templates/ipam/fhrpgroup.html:69 +#: templates/ipam/fhrpgroup.html:69 msgid "Virtual IP Addresses" msgstr "Sanal IP Adresleri" -#: netbox/templates/ipam/inc/ipaddress_edit_header.html:13 +#: templates/ipam/inc/ipaddress_edit_header.html:13 msgid "Assign IP" msgstr "IP atayın" -#: netbox/templates/ipam/inc/ipaddress_edit_header.html:19 +#: templates/ipam/inc/ipaddress_edit_header.html:19 msgid "Bulk Create" msgstr "Toplu Oluşturma" -#: netbox/templates/ipam/inc/panels/fhrp_groups.html:10 +#: templates/ipam/inc/panels/fhrp_groups.html:10 msgid "Create Group" msgstr "Grup Oluştur" -#: netbox/templates/ipam/inc/panels/fhrp_groups.html:25 +#: templates/ipam/inc/panels/fhrp_groups.html:25 msgid "Virtual IPs" msgstr "Sanal IP'ler" -#: netbox/templates/ipam/inc/toggle_available.html:7 +#: templates/ipam/inc/toggle_available.html:7 msgid "Show Assigned" msgstr "Atananları Göster" -#: netbox/templates/ipam/inc/toggle_available.html:10 +#: templates/ipam/inc/toggle_available.html:10 msgid "Show Available" msgstr "Mevcut Göster" -#: netbox/templates/ipam/inc/toggle_available.html:13 +#: templates/ipam/inc/toggle_available.html:13 msgid "Show All" msgstr "Tümünü Göster" -#: netbox/templates/ipam/ipaddress.html:23 -#: netbox/templates/ipam/iprange.html:45 netbox/templates/ipam/prefix.html:24 +#: templates/ipam/ipaddress.html:23 templates/ipam/iprange.html:45 +#: templates/ipam/prefix.html:24 msgid "Global" msgstr "Küresel" -#: netbox/templates/ipam/ipaddress.html:85 +#: templates/ipam/ipaddress.html:85 msgid "NAT (outside)" msgstr "NAT (dış)" -#: netbox/templates/ipam/ipaddress_assign.html:8 +#: templates/ipam/ipaddress_assign.html:8 msgid "Assign an IP Address" msgstr "IP Adresi Atama" -#: netbox/templates/ipam/ipaddress_assign.html:22 +#: templates/ipam/ipaddress_assign.html:22 msgid "Select IP Address" msgstr "IP Adresini Seçin" -#: netbox/templates/ipam/ipaddress_assign.html:35 +#: templates/ipam/ipaddress_assign.html:35 msgid "Search Results" msgstr "Arama Sonuçları" -#: netbox/templates/ipam/ipaddress_bulk_add.html:6 +#: templates/ipam/ipaddress_bulk_add.html:6 msgid "Bulk Add IP Addresses" msgstr "Toplu IP Adresleri Ekleme" -#: netbox/templates/ipam/iprange.html:17 +#: templates/ipam/iprange.html:17 msgid "Starting Address" msgstr "Başlangıç Adresi" -#: netbox/templates/ipam/iprange.html:21 +#: templates/ipam/iprange.html:21 msgid "Ending Address" msgstr "Bitiş Adresi" -#: netbox/templates/ipam/iprange.html:33 netbox/templates/ipam/prefix.html:110 +#: templates/ipam/iprange.html:33 templates/ipam/prefix.html:110 msgid "Marked fully utilized" msgstr "Tamamen kullanılmış olarak işaretlenmiş" -#: netbox/templates/ipam/prefix.html:99 +#: templates/ipam/prefix.html:99 msgid "Addressing Details" msgstr "Adresleme Ayrıntıları" -#: netbox/templates/ipam/prefix.html:118 +#: templates/ipam/prefix.html:118 msgid "Child IPs" msgstr "Çocuk IP'leri" -#: netbox/templates/ipam/prefix.html:126 +#: templates/ipam/prefix.html:126 msgid "Available IPs" msgstr "Kullanılabilir IP'ler" -#: netbox/templates/ipam/prefix.html:138 +#: templates/ipam/prefix.html:138 msgid "First available IP" msgstr "İlk kullanılabilir IP" -#: netbox/templates/ipam/prefix.html:179 +#: templates/ipam/prefix.html:179 msgid "Prefix Details" msgstr "Önek Ayrıntıları" -#: netbox/templates/ipam/prefix.html:185 +#: templates/ipam/prefix.html:185 msgid "Network Address" msgstr "Ağ Adresi" -#: netbox/templates/ipam/prefix.html:189 +#: templates/ipam/prefix.html:189 msgid "Network Mask" msgstr "Ağ Maskesi" -#: netbox/templates/ipam/prefix.html:193 +#: templates/ipam/prefix.html:193 msgid "Wildcard Mask" msgstr "Joker Karakter Maskesi" -#: netbox/templates/ipam/prefix.html:197 +#: templates/ipam/prefix.html:197 msgid "Broadcast Address" msgstr "Yayın Adresi" -#: netbox/templates/ipam/prefix/ip_ranges.html:7 +#: templates/ipam/prefix/ip_ranges.html:7 msgid "Add IP Range" msgstr "IP Aralığı Ekle" -#: netbox/templates/ipam/prefix_list.html:7 +#: templates/ipam/prefix_list.html:7 msgid "Hide Depth Indicators" msgstr "Derinlik Göstergelerini Gizle" -#: netbox/templates/ipam/prefix_list.html:11 +#: templates/ipam/prefix_list.html:11 msgid "Max Depth" msgstr "Maksimum Derinlik" -#: netbox/templates/ipam/prefix_list.html:28 +#: templates/ipam/prefix_list.html:28 msgid "Max Length" msgstr "Maksimum Uzunluk" -#: netbox/templates/ipam/rir.html:10 +#: templates/ipam/rir.html:10 msgid "Add Aggregate" msgstr "Toplama Ekle" -#: netbox/templates/ipam/routetarget.html:38 +#: templates/ipam/routetarget.html:38 msgid "Importing VRFs" msgstr "VRF'leri içe aktarma" -#: netbox/templates/ipam/routetarget.html:44 +#: templates/ipam/routetarget.html:44 msgid "Exporting VRFs" msgstr "VRF'leri Dışa Aktarma" -#: netbox/templates/ipam/routetarget.html:52 +#: templates/ipam/routetarget.html:52 msgid "Importing L2VPNs" msgstr "L2VPN'leri içe aktarma" -#: netbox/templates/ipam/routetarget.html:58 +#: templates/ipam/routetarget.html:58 msgid "Exporting L2VPNs" msgstr "L2VPN'leri Dışa Aktarma" -#: netbox/templates/ipam/vlan.html:88 +#: templates/ipam/vlan.html:88 msgid "Add a Prefix" msgstr "Önek Ekle" -#: netbox/templates/ipam/vlangroup.html:18 +#: templates/ipam/vlangroup.html:18 msgid "Add VLAN" msgstr "VLAN ekle" -#: netbox/templates/ipam/vrf.html:16 +#: templates/ipam/vrf.html:16 msgid "Route Distinguisher" msgstr "Rota Ayırt Edici" -#: netbox/templates/ipam/vrf.html:29 +#: templates/ipam/vrf.html:29 msgid "Unique IP Space" msgstr "Benzersiz IP Alanı" -#: netbox/templates/login.html:29 -#: netbox/utilities/templates/form_helpers/render_errors.html:7 +#: templates/login.html:29 +#: utilities/templates/form_helpers/render_errors.html:7 msgid "Errors" msgstr "Hatalar" -#: netbox/templates/login.html:69 +#: templates/login.html:69 msgid "Sign In" msgstr "Oturum aç" -#: netbox/templates/login.html:77 +#: templates/login.html:77 msgctxt "Denotes an alternative option" msgid "Or" msgstr "Veya" -#: netbox/templates/media_failure.html:7 +#: templates/media_failure.html:7 msgid "Static Media Failure - NetBox" msgstr "Statik Ortam Hatası - NetBox" -#: netbox/templates/media_failure.html:21 +#: templates/media_failure.html:21 msgid "Static Media Failure" msgstr "Statik Ortam Arızası" -#: netbox/templates/media_failure.html:23 +#: templates/media_failure.html:23 msgid "The following static media file failed to load" msgstr "Aşağıdaki statik medya dosyası yüklenemedi" -#: netbox/templates/media_failure.html:26 +#: templates/media_failure.html:26 msgid "Check the following" msgstr "Aşağıdakileri kontrol edin" -#: netbox/templates/media_failure.html:29 +#: templates/media_failure.html:29 msgid "" "manage.py collectstatic was run during the most recent upgrade." " This installs the most recent iteration of each static file into the static" @@ -14035,7 +13312,7 @@ msgstr "" "çalıştırıldı. Bu, her statik dosyanın en son yinelemesini statik kök yoluna " "yükler." -#: netbox/templates/media_failure.html:35 +#: templates/media_failure.html:35 #, python-format msgid "" "The HTTP service (e.g. nginx or Apache) is configured to serve files from " @@ -14046,7 +13323,7 @@ msgstr "" "yapılandırılmıştır. STATİC_ROOT yol. Bakınız kurulum belgeleri Daha fazla rehberlik için." -#: netbox/templates/media_failure.html:47 +#: templates/media_failure.html:47 #, python-format msgid "" "The file %(filename)s exists in the static root directory and " @@ -14055,567 +13332,548 @@ msgstr "" "Dosya %(filename)s statik kök dizinde bulunur ve HTTP sunucusu " "tarafından okunabilir." -#: netbox/templates/media_failure.html:55 +#: templates/media_failure.html:55 #, python-format msgid "Click here to attempt loading NetBox again." msgstr "" "Tıklayın burada NetBox'ı tekrar yüklemeyi " "denemek için." -#: netbox/templates/tenancy/contact.html:18 netbox/tenancy/filtersets.py:147 -#: netbox/tenancy/forms/bulk_edit.py:137 -#: netbox/tenancy/forms/filtersets.py:102 netbox/tenancy/forms/forms.py:56 -#: netbox/tenancy/forms/model_forms.py:106 -#: netbox/tenancy/forms/model_forms.py:130 -#: netbox/tenancy/tables/contacts.py:98 +#: templates/tenancy/contact.html:18 tenancy/filtersets.py:147 +#: tenancy/forms/bulk_edit.py:137 tenancy/forms/filtersets.py:102 +#: tenancy/forms/forms.py:56 tenancy/forms/model_forms.py:106 +#: tenancy/forms/model_forms.py:130 tenancy/tables/contacts.py:98 msgid "Contact" msgstr "İletişim" -#: netbox/templates/tenancy/contact.html:29 -#: netbox/tenancy/forms/bulk_edit.py:99 +#: templates/tenancy/contact.html:29 tenancy/forms/bulk_edit.py:99 msgid "Title" msgstr "Başlık" -#: netbox/templates/tenancy/contact.html:33 -#: netbox/tenancy/forms/bulk_edit.py:104 netbox/tenancy/tables/contacts.py:64 +#: templates/tenancy/contact.html:33 tenancy/forms/bulk_edit.py:104 +#: tenancy/tables/contacts.py:64 msgid "Phone" msgstr "Telefon" -#: netbox/templates/tenancy/contactgroup.html:18 -#: netbox/tenancy/forms/forms.py:66 netbox/tenancy/forms/model_forms.py:75 +#: templates/tenancy/contactgroup.html:18 tenancy/forms/forms.py:66 +#: tenancy/forms/model_forms.py:75 msgid "Contact Group" msgstr "İletişim Grubu" -#: netbox/templates/tenancy/contactgroup.html:50 +#: templates/tenancy/contactgroup.html:50 msgid "Add Contact Group" msgstr "Kişi Grubu Ekle" -#: netbox/templates/tenancy/contactrole.html:15 -#: netbox/tenancy/filtersets.py:152 netbox/tenancy/forms/forms.py:61 -#: netbox/tenancy/forms/model_forms.py:87 +#: templates/tenancy/contactrole.html:15 tenancy/filtersets.py:152 +#: tenancy/forms/forms.py:61 tenancy/forms/model_forms.py:87 msgid "Contact Role" msgstr "İletişim Rolü" -#: netbox/templates/tenancy/object_contacts.html:9 +#: templates/tenancy/object_contacts.html:9 msgid "Add a contact" msgstr "Kişi ekle" -#: netbox/templates/tenancy/tenantgroup.html:17 +#: templates/tenancy/tenantgroup.html:17 msgid "Add Tenant" msgstr "Kiracı Ekle" -#: netbox/templates/tenancy/tenantgroup.html:26 -#: netbox/tenancy/forms/model_forms.py:32 netbox/tenancy/tables/columns.py:51 -#: netbox/tenancy/tables/columns.py:61 +#: templates/tenancy/tenantgroup.html:26 tenancy/forms/model_forms.py:32 +#: tenancy/tables/columns.py:51 tenancy/tables/columns.py:61 msgid "Tenant Group" msgstr "Kiracı Grubu" -#: netbox/templates/tenancy/tenantgroup.html:59 +#: templates/tenancy/tenantgroup.html:59 msgid "Add Tenant Group" msgstr "Kiracı Grubu Ekle" -#: netbox/templates/users/group.html:39 netbox/templates/users/user.html:63 +#: templates/users/group.html:39 templates/users/user.html:63 msgid "Assigned Permissions" msgstr "Atanan İzinler" -#: netbox/templates/users/objectpermission.html:6 -#: netbox/templates/users/objectpermission.html:14 -#: netbox/users/forms/filtersets.py:66 +#: templates/users/objectpermission.html:6 +#: templates/users/objectpermission.html:14 users/forms/filtersets.py:66 msgid "Permission" msgstr "İzin" -#: netbox/templates/users/objectpermission.html:34 +#: templates/users/objectpermission.html:34 msgid "View" msgstr "Görünüm" -#: netbox/templates/users/objectpermission.html:52 -#: netbox/users/forms/model_forms.py:315 +#: templates/users/objectpermission.html:52 users/forms/model_forms.py:315 msgid "Constraints" msgstr "Kısıtlamalar" -#: netbox/templates/users/objectpermission.html:72 +#: templates/users/objectpermission.html:72 msgid "Assigned Users" msgstr "Atanan Kullanıcılar" -#: netbox/templates/virtualization/cluster.html:52 +#: templates/virtualization/cluster.html:52 msgid "Allocated Resources" msgstr "Tahsis Edilen Kaynaklar" -#: netbox/templates/virtualization/cluster.html:55 -#: netbox/templates/virtualization/virtualmachine.html:125 +#: templates/virtualization/cluster.html:55 +#: templates/virtualization/virtualmachine.html:125 msgid "Virtual CPUs" msgstr "Sanal CPU'lar" -#: netbox/templates/virtualization/cluster.html:59 -#: netbox/templates/virtualization/virtualmachine.html:129 +#: templates/virtualization/cluster.html:59 +#: templates/virtualization/virtualmachine.html:129 msgid "Memory" msgstr "Bellek" -#: netbox/templates/virtualization/cluster.html:69 -#: netbox/templates/virtualization/virtualmachine.html:140 +#: templates/virtualization/cluster.html:69 +#: templates/virtualization/virtualmachine.html:140 msgid "Disk Space" msgstr "Disk Alanı" -#: netbox/templates/virtualization/cluster/base.html:18 +#: templates/virtualization/cluster/base.html:18 msgid "Add Virtual Machine" msgstr "Sanal Makine Ekle" -#: netbox/templates/virtualization/cluster/base.html:24 +#: templates/virtualization/cluster/base.html:24 msgid "Assign Device" msgstr "Aygıt Atama" -#: netbox/templates/virtualization/cluster/devices.html:10 +#: templates/virtualization/cluster/devices.html:10 msgid "Remove Selected" msgstr "Seçili Kaldır" -#: netbox/templates/virtualization/cluster_add_devices.html:9 +#: templates/virtualization/cluster_add_devices.html:9 #, python-format msgid "Add Device to Cluster %(cluster)s" msgstr "Kümeye Aygıt Ekle %(cluster)s" -#: netbox/templates/virtualization/cluster_add_devices.html:23 +#: templates/virtualization/cluster_add_devices.html:23 msgid "Device Selection" msgstr "Cihaz Seçimi" -#: netbox/templates/virtualization/cluster_add_devices.html:31 +#: templates/virtualization/cluster_add_devices.html:31 msgid "Add Devices" msgstr "Cihaz Ekle" -#: netbox/templates/virtualization/clustergroup.html:10 -#: netbox/templates/virtualization/clustertype.html:10 +#: templates/virtualization/clustergroup.html:10 +#: templates/virtualization/clustertype.html:10 msgid "Add Cluster" msgstr "Küme Ekle" -#: netbox/templates/virtualization/clustergroup.html:19 -#: netbox/virtualization/forms/model_forms.py:50 +#: templates/virtualization/clustergroup.html:19 +#: virtualization/forms/model_forms.py:50 msgid "Cluster Group" msgstr "Küme Grubu" -#: netbox/templates/virtualization/clustertype.html:19 -#: netbox/templates/virtualization/virtualmachine.html:110 -#: netbox/virtualization/forms/model_forms.py:36 +#: templates/virtualization/clustertype.html:19 +#: templates/virtualization/virtualmachine.html:110 +#: virtualization/forms/model_forms.py:36 msgid "Cluster Type" msgstr "Küme Türü" -#: netbox/templates/virtualization/virtualdisk.html:18 +#: templates/virtualization/virtualdisk.html:18 msgid "Virtual Disk" msgstr "Sanal Disk" -#: netbox/templates/virtualization/virtualmachine.html:122 -#: netbox/virtualization/forms/bulk_edit.py:190 -#: netbox/virtualization/forms/model_forms.py:224 +#: templates/virtualization/virtualmachine.html:122 +#: virtualization/forms/bulk_edit.py:190 +#: virtualization/forms/model_forms.py:224 msgid "Resources" msgstr "Kaynaklar" -#: netbox/templates/virtualization/virtualmachine.html:178 +#: templates/virtualization/virtualmachine.html:178 msgid "Add Virtual Disk" msgstr "Sanal Disk Ekle" -#: netbox/templates/vpn/ikepolicy.html:10 -#: netbox/templates/vpn/ipsecprofile.html:33 netbox/vpn/tables/crypto.py:166 +#: templates/vpn/ikepolicy.html:10 templates/vpn/ipsecprofile.html:33 +#: vpn/tables/crypto.py:166 msgid "IKE Policy" msgstr "IKE İlkesi" -#: netbox/templates/vpn/ikepolicy.html:21 +#: templates/vpn/ikepolicy.html:21 msgid "IKE Version" msgstr "IKE Versiyonu" -#: netbox/templates/vpn/ikepolicy.html:29 +#: templates/vpn/ikepolicy.html:29 msgid "Pre-Shared Key" msgstr "Önceden Paylaşılan Anahtar" -#: netbox/templates/vpn/ikepolicy.html:33 -#: netbox/templates/wireless/inc/authentication_attrs.html:20 +#: templates/vpn/ikepolicy.html:33 +#: templates/wireless/inc/authentication_attrs.html:20 msgid "Show Secret" msgstr "Sırrı Göster" -#: netbox/templates/vpn/ikepolicy.html:57 -#: netbox/templates/vpn/ipsecpolicy.html:45 -#: netbox/templates/vpn/ipsecprofile.html:52 -#: netbox/templates/vpn/ipsecprofile.html:77 -#: netbox/vpn/forms/model_forms.py:316 netbox/vpn/forms/model_forms.py:352 -#: netbox/vpn/tables/crypto.py:68 netbox/vpn/tables/crypto.py:134 +#: templates/vpn/ikepolicy.html:57 templates/vpn/ipsecpolicy.html:45 +#: templates/vpn/ipsecprofile.html:52 templates/vpn/ipsecprofile.html:77 +#: vpn/forms/model_forms.py:316 vpn/forms/model_forms.py:352 +#: vpn/tables/crypto.py:68 vpn/tables/crypto.py:134 msgid "Proposals" msgstr "Teklifler" -#: netbox/templates/vpn/ikeproposal.html:10 +#: templates/vpn/ikeproposal.html:10 msgid "IKE Proposal" msgstr "IKE Teklifi" -#: netbox/templates/vpn/ikeproposal.html:21 netbox/vpn/forms/bulk_edit.py:97 -#: netbox/vpn/forms/bulk_import.py:145 netbox/vpn/forms/filtersets.py:101 +#: templates/vpn/ikeproposal.html:21 vpn/forms/bulk_edit.py:97 +#: vpn/forms/bulk_import.py:145 vpn/forms/filtersets.py:101 msgid "Authentication method" msgstr "Kimlik doğrulama yöntemi" -#: netbox/templates/vpn/ikeproposal.html:25 -#: netbox/templates/vpn/ipsecproposal.html:21 -#: netbox/vpn/forms/bulk_edit.py:102 netbox/vpn/forms/bulk_edit.py:172 -#: netbox/vpn/forms/bulk_import.py:149 netbox/vpn/forms/bulk_import.py:195 -#: netbox/vpn/forms/filtersets.py:106 netbox/vpn/forms/filtersets.py:154 +#: templates/vpn/ikeproposal.html:25 templates/vpn/ipsecproposal.html:21 +#: vpn/forms/bulk_edit.py:102 vpn/forms/bulk_edit.py:172 +#: vpn/forms/bulk_import.py:149 vpn/forms/bulk_import.py:195 +#: vpn/forms/filtersets.py:106 vpn/forms/filtersets.py:154 msgid "Encryption algorithm" msgstr "Şifreleme algoritması" -#: netbox/templates/vpn/ikeproposal.html:29 -#: netbox/templates/vpn/ipsecproposal.html:25 -#: netbox/vpn/forms/bulk_edit.py:107 netbox/vpn/forms/bulk_edit.py:177 -#: netbox/vpn/forms/bulk_import.py:153 netbox/vpn/forms/bulk_import.py:200 -#: netbox/vpn/forms/filtersets.py:111 netbox/vpn/forms/filtersets.py:159 +#: templates/vpn/ikeproposal.html:29 templates/vpn/ipsecproposal.html:25 +#: vpn/forms/bulk_edit.py:107 vpn/forms/bulk_edit.py:177 +#: vpn/forms/bulk_import.py:153 vpn/forms/bulk_import.py:200 +#: vpn/forms/filtersets.py:111 vpn/forms/filtersets.py:159 msgid "Authentication algorithm" msgstr "Kimlik doğrulama algoritması" -#: netbox/templates/vpn/ikeproposal.html:33 +#: templates/vpn/ikeproposal.html:33 msgid "DH group" msgstr "DH grubu" -#: netbox/templates/vpn/ikeproposal.html:37 -#: netbox/templates/vpn/ipsecproposal.html:29 -#: netbox/vpn/forms/bulk_edit.py:182 netbox/vpn/models/crypto.py:146 +#: templates/vpn/ikeproposal.html:37 templates/vpn/ipsecproposal.html:29 +#: vpn/forms/bulk_edit.py:182 vpn/models/crypto.py:146 msgid "SA lifetime (seconds)" msgstr "SA ömrü (saniye)" -#: netbox/templates/vpn/ipsecpolicy.html:10 -#: netbox/templates/vpn/ipsecprofile.html:66 netbox/vpn/tables/crypto.py:170 +#: templates/vpn/ipsecpolicy.html:10 templates/vpn/ipsecprofile.html:66 +#: vpn/tables/crypto.py:170 msgid "IPSec Policy" msgstr "IPSec İlkesi" -#: netbox/templates/vpn/ipsecpolicy.html:21 netbox/vpn/forms/bulk_edit.py:210 -#: netbox/vpn/models/crypto.py:193 +#: templates/vpn/ipsecpolicy.html:21 vpn/forms/bulk_edit.py:210 +#: vpn/models/crypto.py:193 msgid "PFS group" msgstr "PFS grubu" -#: netbox/templates/vpn/ipsecprofile.html:10 -#: netbox/vpn/forms/model_forms.py:54 +#: templates/vpn/ipsecprofile.html:10 vpn/forms/model_forms.py:54 msgid "IPSec Profile" msgstr "IPsec Profili" -#: netbox/templates/vpn/ipsecprofile.html:89 netbox/vpn/tables/crypto.py:137 +#: templates/vpn/ipsecprofile.html:89 vpn/tables/crypto.py:137 msgid "PFS Group" msgstr "PFS Grubu" -#: netbox/templates/vpn/ipsecproposal.html:10 +#: templates/vpn/ipsecproposal.html:10 msgid "IPSec Proposal" msgstr "IPsec Teklifi" -#: netbox/templates/vpn/ipsecproposal.html:33 -#: netbox/vpn/forms/bulk_edit.py:186 netbox/vpn/models/crypto.py:152 +#: templates/vpn/ipsecproposal.html:33 vpn/forms/bulk_edit.py:186 +#: vpn/models/crypto.py:152 msgid "SA lifetime (KB)" msgstr "SA ömrü (KB)" -#: netbox/templates/vpn/l2vpn.html:11 -#: netbox/templates/vpn/l2vpntermination.html:9 +#: templates/vpn/l2vpn.html:11 templates/vpn/l2vpntermination.html:9 msgid "L2VPN Attributes" msgstr "L2VPN Öznitellikler" -#: netbox/templates/vpn/l2vpn.html:60 netbox/templates/vpn/tunnel.html:76 +#: templates/vpn/l2vpn.html:60 templates/vpn/tunnel.html:76 msgid "Add a Termination" msgstr "Sonlandırma Ekle" -#: netbox/templates/vpn/tunnel.html:9 +#: templates/vpn/tunnel.html:9 msgid "Add Termination" msgstr "Sonlandırma Ekle" -#: netbox/templates/vpn/tunnel.html:37 netbox/vpn/forms/bulk_edit.py:49 -#: netbox/vpn/forms/bulk_import.py:48 netbox/vpn/forms/filtersets.py:57 +#: templates/vpn/tunnel.html:37 vpn/forms/bulk_edit.py:49 +#: vpn/forms/bulk_import.py:48 vpn/forms/filtersets.py:57 msgid "Encapsulation" msgstr "Kapsülleme" -#: netbox/templates/vpn/tunnel.html:41 netbox/vpn/forms/bulk_edit.py:55 -#: netbox/vpn/forms/bulk_import.py:53 netbox/vpn/forms/filtersets.py:64 -#: netbox/vpn/models/crypto.py:250 netbox/vpn/tables/tunnels.py:51 +#: templates/vpn/tunnel.html:41 vpn/forms/bulk_edit.py:55 +#: vpn/forms/bulk_import.py:53 vpn/forms/filtersets.py:64 +#: vpn/models/crypto.py:250 vpn/tables/tunnels.py:51 msgid "IPSec profile" msgstr "IPsec profili" -#: netbox/templates/vpn/tunnel.html:45 netbox/vpn/forms/bulk_edit.py:69 -#: netbox/vpn/forms/filtersets.py:68 +#: templates/vpn/tunnel.html:45 vpn/forms/bulk_edit.py:69 +#: vpn/forms/filtersets.py:68 msgid "Tunnel ID" msgstr "Tünel Kimliği" -#: netbox/templates/vpn/tunnelgroup.html:14 +#: templates/vpn/tunnelgroup.html:14 msgid "Add Tunnel" msgstr "Tünel Ekle" -#: netbox/templates/vpn/tunnelgroup.html:23 netbox/vpn/forms/model_forms.py:36 -#: netbox/vpn/forms/model_forms.py:49 +#: templates/vpn/tunnelgroup.html:23 vpn/forms/model_forms.py:36 +#: vpn/forms/model_forms.py:49 msgid "Tunnel Group" msgstr "Tünel Grubu" -#: netbox/templates/vpn/tunneltermination.html:10 +#: templates/vpn/tunneltermination.html:10 msgid "Tunnel Termination" msgstr "Tünel Sonlandırma" -#: netbox/templates/vpn/tunneltermination.html:35 -#: netbox/vpn/forms/bulk_import.py:107 netbox/vpn/forms/model_forms.py:102 -#: netbox/vpn/forms/model_forms.py:138 netbox/vpn/forms/model_forms.py:247 -#: netbox/vpn/tables/tunnels.py:101 +#: templates/vpn/tunneltermination.html:35 vpn/forms/bulk_import.py:107 +#: vpn/forms/model_forms.py:102 vpn/forms/model_forms.py:138 +#: vpn/forms/model_forms.py:247 vpn/tables/tunnels.py:101 msgid "Outside IP" msgstr "Dış IP" -#: netbox/templates/vpn/tunneltermination.html:51 +#: templates/vpn/tunneltermination.html:51 msgid "Peer Terminations" msgstr "Akran Sonlandırmaları" -#: netbox/templates/wireless/inc/authentication_attrs.html:12 +#: templates/wireless/inc/authentication_attrs.html:12 msgid "Cipher" msgstr "Şifre" -#: netbox/templates/wireless/inc/authentication_attrs.html:16 +#: templates/wireless/inc/authentication_attrs.html:16 msgid "PSK" msgstr "PSK" -#: netbox/templates/wireless/inc/wirelesslink_interface.html:35 -#: netbox/templates/wireless/inc/wirelesslink_interface.html:45 +#: templates/wireless/inc/wirelesslink_interface.html:35 +#: templates/wireless/inc/wirelesslink_interface.html:45 msgctxt "Abbreviation for megahertz" msgid "MHz" msgstr "MHz" -#: netbox/templates/wireless/wirelesslan.html:57 +#: templates/wireless/wirelesslan.html:57 msgid "Attached Interfaces" msgstr "Ekli Arayüzler" -#: netbox/templates/wireless/wirelesslangroup.html:17 +#: templates/wireless/wirelesslangroup.html:17 msgid "Add Wireless LAN" msgstr "Kablosuz LAN Ekle" -#: netbox/templates/wireless/wirelesslangroup.html:26 -#: netbox/wireless/forms/model_forms.py:28 +#: templates/wireless/wirelesslangroup.html:26 +#: wireless/forms/model_forms.py:28 msgid "Wireless LAN Group" msgstr "Kablosuz LAN Grubu" -#: netbox/templates/wireless/wirelesslangroup.html:59 +#: templates/wireless/wirelesslangroup.html:59 msgid "Add Wireless LAN Group" msgstr "Kablosuz LAN Grubu Ekle" -#: netbox/templates/wireless/wirelesslink.html:14 +#: templates/wireless/wirelesslink.html:14 msgid "Link Properties" msgstr "Bağlantı Özellikleri" -#: netbox/templates/wireless/wirelesslink.html:38 -#: netbox/wireless/forms/bulk_edit.py:129 -#: netbox/wireless/forms/filtersets.py:102 -#: netbox/wireless/forms/model_forms.py:165 +#: templates/wireless/wirelesslink.html:38 wireless/forms/bulk_edit.py:129 +#: wireless/forms/filtersets.py:102 wireless/forms/model_forms.py:165 msgid "Distance" msgstr "Mesafe" -#: netbox/tenancy/filtersets.py:28 +#: tenancy/filtersets.py:28 msgid "Parent contact group (ID)" msgstr "Ebeveyn iletişim grubu (ID)" -#: netbox/tenancy/filtersets.py:34 +#: tenancy/filtersets.py:34 msgid "Parent contact group (slug)" msgstr "Ebeveyn iletişim grubu (kısa ad)" -#: netbox/tenancy/filtersets.py:40 netbox/tenancy/filtersets.py:67 -#: netbox/tenancy/filtersets.py:110 +#: tenancy/filtersets.py:40 tenancy/filtersets.py:67 tenancy/filtersets.py:110 msgid "Contact group (ID)" msgstr "İletişim grubu (ID)" -#: netbox/tenancy/filtersets.py:47 netbox/tenancy/filtersets.py:74 -#: netbox/tenancy/filtersets.py:117 +#: tenancy/filtersets.py:47 tenancy/filtersets.py:74 tenancy/filtersets.py:117 msgid "Contact group (slug)" msgstr "İletişim grubu (kısa ad)" -#: netbox/tenancy/filtersets.py:104 +#: tenancy/filtersets.py:104 msgid "Contact (ID)" msgstr "İletişim (ID)" -#: netbox/tenancy/filtersets.py:121 +#: tenancy/filtersets.py:121 msgid "Contact role (ID)" msgstr "Kişi rolü (ID)" -#: netbox/tenancy/filtersets.py:127 +#: tenancy/filtersets.py:127 msgid "Contact role (slug)" msgstr "İletişim rolü (kısa ad)" -#: netbox/tenancy/filtersets.py:158 +#: tenancy/filtersets.py:158 msgid "Contact group" msgstr "İletişim grubu" -#: netbox/tenancy/filtersets.py:169 +#: tenancy/filtersets.py:169 msgid "Parent tenant group (ID)" msgstr "Ana kiracı grubu (ID)" -#: netbox/tenancy/filtersets.py:175 +#: tenancy/filtersets.py:175 msgid "Parent tenant group (slug)" msgstr "Ana kiracı grubu (kısa ad)" -#: netbox/tenancy/filtersets.py:181 netbox/tenancy/filtersets.py:201 +#: tenancy/filtersets.py:181 tenancy/filtersets.py:201 msgid "Tenant group (ID)" msgstr "Kiracı grubu (ID)" -#: netbox/tenancy/filtersets.py:234 +#: tenancy/filtersets.py:234 msgid "Tenant Group (ID)" msgstr "Kiracı Grubu (ID)" -#: netbox/tenancy/filtersets.py:241 +#: tenancy/filtersets.py:241 msgid "Tenant Group (slug)" msgstr "Kiracı Grubu (kısa ad)" -#: netbox/tenancy/forms/bulk_edit.py:66 +#: tenancy/forms/bulk_edit.py:66 msgid "Desciption" msgstr "Tanımlama" -#: netbox/tenancy/forms/bulk_import.py:101 +#: tenancy/forms/bulk_import.py:101 msgid "Assigned contact" msgstr "Atanan kişi" -#: netbox/tenancy/models/contacts.py:32 +#: tenancy/models/contacts.py:32 msgid "contact group" msgstr "iletişim grubu" -#: netbox/tenancy/models/contacts.py:33 +#: tenancy/models/contacts.py:33 msgid "contact groups" msgstr "iletişim grupları" -#: netbox/tenancy/models/contacts.py:48 +#: tenancy/models/contacts.py:48 msgid "contact role" msgstr "iletişim rolü" -#: netbox/tenancy/models/contacts.py:49 +#: tenancy/models/contacts.py:49 msgid "contact roles" msgstr "iletişim rolleri" -#: netbox/tenancy/models/contacts.py:68 +#: tenancy/models/contacts.py:68 msgid "title" msgstr "başlık" -#: netbox/tenancy/models/contacts.py:73 +#: tenancy/models/contacts.py:73 msgid "phone" msgstr "telefon" -#: netbox/tenancy/models/contacts.py:78 +#: tenancy/models/contacts.py:78 msgid "email" msgstr "E-posta" -#: netbox/tenancy/models/contacts.py:87 +#: tenancy/models/contacts.py:87 msgid "link" msgstr "bağlantı" -#: netbox/tenancy/models/contacts.py:103 +#: tenancy/models/contacts.py:103 msgid "contact" msgstr "temas" -#: netbox/tenancy/models/contacts.py:104 +#: tenancy/models/contacts.py:104 msgid "contacts" msgstr "kişileri" -#: netbox/tenancy/models/contacts.py:153 +#: tenancy/models/contacts.py:153 msgid "contact assignment" msgstr "iletişim ataması" -#: netbox/tenancy/models/contacts.py:154 +#: tenancy/models/contacts.py:154 msgid "contact assignments" msgstr "iletişim atamaları" -#: netbox/tenancy/models/contacts.py:170 +#: tenancy/models/contacts.py:170 #, python-brace-format msgid "Contacts cannot be assigned to this object type ({type})." msgstr "Kişiler bu nesne türüne atanamaz ({type})." -#: netbox/tenancy/models/tenants.py:32 +#: tenancy/models/tenants.py:32 msgid "tenant group" msgstr "kiracı grubu" -#: netbox/tenancy/models/tenants.py:33 +#: tenancy/models/tenants.py:33 msgid "tenant groups" msgstr "kiracı grupları" -#: netbox/tenancy/models/tenants.py:70 +#: tenancy/models/tenants.py:70 msgid "Tenant name must be unique per group." msgstr "Kiracı adı, her grup için benzersiz olmalıdır." -#: netbox/tenancy/models/tenants.py:80 +#: tenancy/models/tenants.py:80 msgid "Tenant slug must be unique per group." msgstr "Kiracı kısa adı, her grup için benzersiz olmalıdır." -#: netbox/tenancy/models/tenants.py:88 +#: tenancy/models/tenants.py:88 msgid "tenant" msgstr "kiracı" -#: netbox/tenancy/models/tenants.py:89 +#: tenancy/models/tenants.py:89 msgid "tenants" msgstr "kiracılar" -#: netbox/tenancy/tables/contacts.py:112 +#: tenancy/tables/contacts.py:112 msgid "Contact Title" msgstr "İletişim Başlığı" -#: netbox/tenancy/tables/contacts.py:116 +#: tenancy/tables/contacts.py:116 msgid "Contact Phone" msgstr "İletişim Telefonu" -#: netbox/tenancy/tables/contacts.py:121 +#: tenancy/tables/contacts.py:121 msgid "Contact Email" msgstr "İletişim E-posta" -#: netbox/tenancy/tables/contacts.py:125 +#: tenancy/tables/contacts.py:125 msgid "Contact Address" msgstr "İletişim Adresi" -#: netbox/tenancy/tables/contacts.py:129 +#: tenancy/tables/contacts.py:129 msgid "Contact Link" msgstr "İletişim Bağlantısı" -#: netbox/tenancy/tables/contacts.py:133 +#: tenancy/tables/contacts.py:133 msgid "Contact Description" msgstr "İletişim Açıklaması" -#: netbox/users/filtersets.py:33 netbox/users/filtersets.py:73 +#: users/filtersets.py:33 users/filtersets.py:73 msgid "Permission (ID)" msgstr "İzin (ID)" -#: netbox/users/filtersets.py:38 netbox/users/filtersets.py:78 +#: users/filtersets.py:38 users/filtersets.py:78 msgid "Notification group (ID)" msgstr "Bildirim grubu (ID)" -#: netbox/users/forms/bulk_edit.py:26 +#: users/forms/bulk_edit.py:26 msgid "First name" msgstr "İlk isim" -#: netbox/users/forms/bulk_edit.py:31 +#: users/forms/bulk_edit.py:31 msgid "Last name" msgstr "Soyadı" -#: netbox/users/forms/bulk_edit.py:43 +#: users/forms/bulk_edit.py:43 msgid "Staff status" msgstr "Personel durumu" -#: netbox/users/forms/bulk_edit.py:48 +#: users/forms/bulk_edit.py:48 msgid "Superuser status" msgstr "Süper kullanıcı durumu" -#: netbox/users/forms/bulk_import.py:41 +#: users/forms/bulk_import.py:41 msgid "If no key is provided, one will be generated automatically." msgstr "Anahtar sağlanmazsa, bir anahtar otomatik olarak oluşturulur." -#: netbox/users/forms/filtersets.py:51 netbox/users/tables.py:42 +#: users/forms/filtersets.py:51 users/tables.py:42 msgid "Is Staff" msgstr "Personel mi" -#: netbox/users/forms/filtersets.py:58 netbox/users/tables.py:45 +#: users/forms/filtersets.py:58 users/tables.py:45 msgid "Is Superuser" msgstr "Süper kullanıcı mı" -#: netbox/users/forms/filtersets.py:91 netbox/users/tables.py:86 +#: users/forms/filtersets.py:91 users/tables.py:86 msgid "Can View" msgstr "Görebilir" -#: netbox/users/forms/filtersets.py:98 netbox/users/tables.py:89 +#: users/forms/filtersets.py:98 users/tables.py:89 msgid "Can Add" msgstr "Ekleyebilir" -#: netbox/users/forms/filtersets.py:105 netbox/users/tables.py:92 +#: users/forms/filtersets.py:105 users/tables.py:92 msgid "Can Change" msgstr "Değişebilir" -#: netbox/users/forms/filtersets.py:112 netbox/users/tables.py:95 +#: users/forms/filtersets.py:112 users/tables.py:95 msgid "Can Delete" msgstr "Silebilir" -#: netbox/users/forms/model_forms.py:62 +#: users/forms/model_forms.py:62 msgid "User Interface" msgstr "Kullanıcı Arayüzü" -#: netbox/users/forms/model_forms.py:114 +#: users/forms/model_forms.py:114 msgid "" "Keys must be at least 40 characters in length. Be sure to record " "your key prior to submitting this form, as it may no longer be " @@ -14625,7 +13883,7 @@ msgstr "" "kaydettiğinizden emin olun belirteç oluşturulduktan sonra artık " "erişilemeyebileceğinden, bu formu göndermeden önce." -#: netbox/users/forms/model_forms.py:126 +#: users/forms/model_forms.py:126 msgid "" "Allowed IPv4/IPv6 networks from where the token can be used. Leave blank for" " no restrictions. Example: " @@ -14635,32 +13893,32 @@ msgstr "" "olmadan boş bırakın. Örnek: 10.1.1.0/24.192.168.10.16/32,2001: db 8:1:" " :/64" -#: netbox/users/forms/model_forms.py:175 +#: users/forms/model_forms.py:175 msgid "Confirm password" msgstr "Şifreyi onayla" -#: netbox/users/forms/model_forms.py:178 +#: users/forms/model_forms.py:178 msgid "Enter the same password as before, for verification." msgstr "Doğrulama için öncekiyle aynı şifreyi girin." -#: netbox/users/forms/model_forms.py:227 +#: users/forms/model_forms.py:227 msgid "Passwords do not match! Please check your input and try again." msgstr "" "Şifreler eşleşmiyor! Lütfen girdilerinizi kontrol edin ve tekrar deneyin." -#: netbox/users/forms/model_forms.py:294 +#: users/forms/model_forms.py:294 msgid "Additional actions" msgstr "Ek eylemler" -#: netbox/users/forms/model_forms.py:297 +#: users/forms/model_forms.py:297 msgid "Actions granted in addition to those listed above" msgstr "Yukarıda listelenenlere ek olarak verilen eylemler" -#: netbox/users/forms/model_forms.py:313 +#: users/forms/model_forms.py:313 msgid "Objects" msgstr "Nesneler" -#: netbox/users/forms/model_forms.py:325 +#: users/forms/model_forms.py:325 msgid "" "JSON expression of a queryset filter that will return only permitted " "objects. Leave null to match all objects of this type. A list of multiple " @@ -14670,76 +13928,76 @@ msgstr "" "ifadesi. Bu türdeki tüm nesneleri eşleştirmek için null bırakın. Birden çok " "nesnenin listesi mantıksal bir OR işlemi ile sonuçlanır." -#: netbox/users/forms/model_forms.py:364 +#: users/forms/model_forms.py:364 msgid "At least one action must be selected." msgstr "En az bir eylem seçilmelidir." -#: netbox/users/forms/model_forms.py:382 +#: users/forms/model_forms.py:382 #, python-brace-format msgid "Invalid filter for {model}: {error}" msgstr "Geçersiz filtre {model}: {error}" -#: netbox/users/models/permissions.py:39 +#: users/models/permissions.py:39 msgid "The list of actions granted by this permission" msgstr "Bu izin tarafından verilen eylemlerin listesi" -#: netbox/users/models/permissions.py:44 +#: users/models/permissions.py:44 msgid "constraints" msgstr "kısıtlamaları" -#: netbox/users/models/permissions.py:45 +#: users/models/permissions.py:45 msgid "" "Queryset filter matching the applicable objects of the selected type(s)" msgstr "Seçili türlerin uygulanabilir nesneleriyle eşleşen Queryset filtresi" -#: netbox/users/models/permissions.py:52 +#: users/models/permissions.py:52 msgid "permission" msgstr "izin" -#: netbox/users/models/permissions.py:53 netbox/users/models/users.py:47 +#: users/models/permissions.py:53 users/models/users.py:47 msgid "permissions" msgstr "izinler" -#: netbox/users/models/preferences.py:29 netbox/users/models/preferences.py:30 +#: users/models/preferences.py:29 users/models/preferences.py:30 msgid "user preferences" msgstr "kullanıcı tercihleri" -#: netbox/users/models/preferences.py:97 +#: users/models/preferences.py:97 #, python-brace-format msgid "Key '{path}' is a leaf node; cannot assign new keys" msgstr "Anahtar '{path}'bir yaprak düğümüdür; yeni anahtarlar atanamıyor" -#: netbox/users/models/preferences.py:109 +#: users/models/preferences.py:109 #, python-brace-format msgid "Key '{path}' is a dictionary; cannot assign a non-dictionary value" msgstr "Anahtar '{path}'bir sözlüktür; sözlük dışı bir değer atayamaz" -#: netbox/users/models/tokens.py:36 +#: users/models/tokens.py:36 msgid "expires" msgstr "süresi dolmak" -#: netbox/users/models/tokens.py:41 +#: users/models/tokens.py:41 msgid "last used" msgstr "son kullanılan" -#: netbox/users/models/tokens.py:46 +#: users/models/tokens.py:46 msgid "key" msgstr "anahtar" -#: netbox/users/models/tokens.py:52 +#: users/models/tokens.py:52 msgid "write enabled" msgstr "yazma etkin" -#: netbox/users/models/tokens.py:54 +#: users/models/tokens.py:54 msgid "Permit create/update/delete operations using this key" msgstr "" "Bu anahtarı kullanarak oluşturma/güncelleme/silme işlemlerine izin verin" -#: netbox/users/models/tokens.py:65 +#: users/models/tokens.py:65 msgid "allowed IPs" msgstr "izin verilen IP'ler" -#: netbox/users/models/tokens.py:67 +#: users/models/tokens.py:67 msgid "" "Allowed IPv4/IPv6 networks from where the token can be used. Leave blank for" " no restrictions. Ex: \"10.1.1.0/24, 192.168.10.16/32, 2001:DB8:1::/64\"" @@ -14748,41 +14006,41 @@ msgstr "" "olmadan boş bırakın. Örn: “10.1.1.0/24, 192.168.10.16/32, 2001: DB 8:1: " ":/64\"" -#: netbox/users/models/tokens.py:75 +#: users/models/tokens.py:75 msgid "token" msgstr "jeton" -#: netbox/users/models/tokens.py:76 +#: users/models/tokens.py:76 msgid "tokens" msgstr "jetonlar" -#: netbox/users/models/users.py:57 netbox/vpn/models/crypto.py:42 +#: users/models/users.py:57 vpn/models/crypto.py:42 msgid "group" msgstr "grup" -#: netbox/users/models/users.py:92 +#: users/models/users.py:92 msgid "user" msgstr "kullanıcı" -#: netbox/users/models/users.py:104 +#: users/models/users.py:104 msgid "A user with this username already exists." msgstr "Bu kullanıcı adına sahip bir kullanıcı zaten var." -#: netbox/users/tables.py:98 +#: users/tables.py:98 msgid "Custom Actions" msgstr "Özel Eylemler" -#: netbox/utilities/api.py:153 +#: utilities/api.py:153 #, python-brace-format msgid "Related object not found using the provided attributes: {params}" msgstr "Sağlanan öznitelikler kullanılarak ilgili nesne bulunamadı: {params}" -#: netbox/utilities/api.py:156 +#: utilities/api.py:156 #, python-brace-format msgid "Multiple objects match the provided attributes: {params}" msgstr "Birden çok nesne sağlanan özniteliklerle eşleşir: {params}" -#: netbox/utilities/api.py:168 +#: utilities/api.py:168 #, python-brace-format msgid "" "Related objects must be referenced by numeric ID or by dictionary of " @@ -14791,41 +14049,41 @@ msgstr "" "İlgili nesnelere sayısal kimlik veya öznitelikler sözlüğü ile " "başvurulmalıdır. Tanınmayan bir değer alındı: {value}" -#: netbox/utilities/api.py:177 +#: utilities/api.py:177 #, python-brace-format msgid "Related object not found using the provided numeric ID: {id}" msgstr "Sağlanan sayısal kimlik kullanılarak ilgili nesne bulunamadı: {id}" -#: netbox/utilities/choices.py:19 +#: utilities/choices.py:19 #, python-brace-format msgid "{name} has a key defined but CHOICES is not a list" msgstr "{name} tanımlanmış bir anahtarı var ama SEÇENEKLER bir liste değil" -#: netbox/utilities/conversion.py:19 +#: utilities/conversion.py:19 msgid "Weight must be a positive number" msgstr "Ağırlık pozitif bir sayı olmalıdır" -#: netbox/utilities/conversion.py:21 +#: utilities/conversion.py:21 #, python-brace-format msgid "Invalid value '{weight}' for weight (must be a number)" msgstr "Geçersiz değer '{weight}'ağırlık için (bir sayı olmalıdır)" -#: netbox/utilities/conversion.py:32 netbox/utilities/conversion.py:62 +#: utilities/conversion.py:32 utilities/conversion.py:62 #, python-brace-format msgid "Unknown unit {unit}. Must be one of the following: {valid_units}" msgstr "" "Bilinmeyen birim {unit}. Aşağıdakilerden biri olmalıdır: {valid_units}" -#: netbox/utilities/conversion.py:45 +#: utilities/conversion.py:45 msgid "Length must be a positive number" msgstr "Uzunluk pozitif bir sayı olmalıdır" -#: netbox/utilities/conversion.py:47 +#: utilities/conversion.py:47 #, python-brace-format msgid "Invalid value '{length}' for length (must be a number)" msgstr "Geçersiz değer '{length}'uzunluk için (bir sayı olmalıdır)" -#: netbox/utilities/error_handlers.py:31 +#: utilities/error_handlers.py:31 #, python-brace-format msgid "" "Unable to delete {objects}. {count} dependent objects were " @@ -14833,15 +14091,15 @@ msgid "" msgstr "" "Silinemiyor {objects}. {count} bağımlı nesneler bulundu: " -#: netbox/utilities/error_handlers.py:33 +#: utilities/error_handlers.py:33 msgid "More than 50" msgstr "50'den fazla" -#: netbox/utilities/fields.py:30 +#: utilities/fields.py:30 msgid "RGB color in hexadecimal. Example: " msgstr "Onaltılık olarak RGB rengi. Örnek: " -#: netbox/utilities/fields.py:159 +#: utilities/fields.py:159 #, python-format msgid "" "%s(%r) is invalid. to_model parameter to CounterCacheField must be a string " @@ -14850,7 +14108,7 @@ msgstr "" "%s(%r) geçersiz. counterCacheField için to_model parametresi 'app.model' " "biçiminde bir dize olmalıdır" -#: netbox/utilities/fields.py:169 +#: utilities/fields.py:169 #, python-format msgid "" "%s(%r) is invalid. to_field parameter to CounterCacheField must be a string " @@ -14859,37 +14117,37 @@ msgstr "" "%s(%r) geçersiz. counterCacheField için to_field parametresi 'field' " "biçiminde bir dize olmalıdır" -#: netbox/utilities/forms/bulk_import.py:23 +#: utilities/forms/bulk_import.py:23 msgid "Enter object data in CSV, JSON or YAML format." msgstr "Nesne verilerini CSV, JSON veya YAML biçiminde girin." -#: netbox/utilities/forms/bulk_import.py:36 +#: utilities/forms/bulk_import.py:36 msgid "CSV delimiter" msgstr "CSV sınırlayıcı" -#: netbox/utilities/forms/bulk_import.py:37 +#: utilities/forms/bulk_import.py:37 msgid "The character which delimits CSV fields. Applies only to CSV format." msgstr "" "CSV alanlarını sınırlayan karakter. Yalnızca CSV formatı için geçerlidir." -#: netbox/utilities/forms/bulk_import.py:51 +#: utilities/forms/bulk_import.py:51 msgid "Form data must be empty when uploading/selecting a file." msgstr "Bir dosya yüklerken/seçerken form verileri boş olmalıdır." -#: netbox/utilities/forms/bulk_import.py:80 +#: utilities/forms/bulk_import.py:80 #, python-brace-format msgid "Unknown data format: {format}" msgstr "Bilinmeyen veri biçimi: {format}" -#: netbox/utilities/forms/bulk_import.py:100 +#: utilities/forms/bulk_import.py:100 msgid "Unable to detect data format. Please specify." msgstr "Veri biçimi tespit edilemiyor. Lütfen belirtin." -#: netbox/utilities/forms/bulk_import.py:123 +#: utilities/forms/bulk_import.py:123 msgid "Invalid CSV delimiter" msgstr "Geçersiz CSV sınırlayıcı" -#: netbox/utilities/forms/bulk_import.py:167 +#: utilities/forms/bulk_import.py:167 msgid "" "Invalid YAML data. Data must be in the form of multiple documents, or a " "single document comprising a list of dictionaries." @@ -14897,7 +14155,7 @@ msgstr "" "Geçersiz YAML verileri. Veriler birden fazla belge veya bir sözlük listesi " "içeren tek bir belge şeklinde olmalıdır." -#: netbox/utilities/forms/fields/array.py:20 +#: utilities/forms/fields/array.py:20 #, python-brace-format msgid "" "Invalid list ({value}). Must be numeric and ranges must be in ascending " @@ -14906,7 +14164,7 @@ msgstr "" "Geçersiz liste ({value}). Sayısal olmalı ve aralıklar artan sırada " "olmalıdır." -#: netbox/utilities/forms/fields/array.py:40 +#: utilities/forms/fields/array.py:40 msgid "" "Specify one or more numeric ranges separated by commas. Example: " "1-5,20-30" @@ -14914,25 +14172,24 @@ msgstr "" "Virgülle ayrılmış bir veya daha fazla sayısal aralık belirtin. Örnek: " "1-5,20-30" -#: netbox/utilities/forms/fields/array.py:47 +#: utilities/forms/fields/array.py:47 #, python-brace-format msgid "" "Invalid ranges ({value}). Must be a range of integers in ascending order." msgstr "" "Geçersiz aralıklar ({value}). Artan sırada bir tamsayı aralığı olmalıdır." -#: netbox/utilities/forms/fields/csv.py:44 +#: utilities/forms/fields/csv.py:44 #, python-brace-format msgid "Invalid value for a multiple choice field: {value}" msgstr "Çoktan seçmeli alan için geçersiz değer: {value}" -#: netbox/utilities/forms/fields/csv.py:57 -#: netbox/utilities/forms/fields/csv.py:78 +#: utilities/forms/fields/csv.py:57 utilities/forms/fields/csv.py:78 #, python-format msgid "Object not found: %(value)s" msgstr "Nesne bulunamadı: %(value)s" -#: netbox/utilities/forms/fields/csv.py:65 +#: utilities/forms/fields/csv.py:65 #, python-brace-format msgid "" "\"{value}\" is not a unique value for this field; multiple objects were " @@ -14940,20 +14197,20 @@ msgid "" msgstr "" "“{value}“bu alan için benzersiz bir değer değil; birden fazla nesne bulundu" -#: netbox/utilities/forms/fields/csv.py:69 +#: utilities/forms/fields/csv.py:69 #, python-brace-format msgid "\"{field_name}\" is an invalid accessor field name." msgstr "“{field_name}“geçersiz bir erişici alan adıdır." -#: netbox/utilities/forms/fields/csv.py:101 +#: utilities/forms/fields/csv.py:101 msgid "Object type must be specified as \".\"" msgstr "Nesne türü şu şekilde belirtilmelidir”.“" -#: netbox/utilities/forms/fields/csv.py:105 +#: utilities/forms/fields/csv.py:105 msgid "Invalid object type" msgstr "Geçersiz nesne türü" -#: netbox/utilities/forms/fields/expandable.py:25 +#: utilities/forms/fields/expandable.py:25 msgid "" "Alphanumeric ranges are supported for bulk creation. Mixed cases and types " "within a single range are not supported (example: " @@ -14963,7 +14220,7 @@ msgstr "" "karışık durumlar ve türler desteklenmez (örnek: [ge, xe] -0/0/ " "[0-9])." -#: netbox/utilities/forms/fields/expandable.py:46 +#: utilities/forms/fields/expandable.py:46 msgid "" "Specify a numeric range to create multiple IPs.
Example: " "192.0.2.[1,5,100-254]/24" @@ -14971,7 +14228,7 @@ msgstr "" "Birden çok IP oluşturmak için sayısal bir aralık belirtin.
Örnek: " "192.0.2. [1.5,100-254] /24" -#: netbox/utilities/forms/fields/fields.py:31 +#: utilities/forms/fields/fields.py:31 #, python-brace-format msgid "" " İndirim sözdizimi desteklenir" -#: netbox/utilities/forms/fields/fields.py:48 +#: utilities/forms/fields/fields.py:48 msgid "URL-friendly unique shorthand" msgstr "URL dostu benzersiz stenografi" -#: netbox/utilities/forms/fields/fields.py:101 +#: utilities/forms/fields/fields.py:101 msgid "Enter context data in JSON format." msgstr "" "İçeriğe bağlam verilerini girin JSON " "biçim." -#: netbox/utilities/forms/fields/fields.py:124 +#: utilities/forms/fields/fields.py:124 msgid "MAC address must be in EUI-48 format" msgstr "MAC adresi EUI-48 formatında olmalıdır" -#: netbox/utilities/forms/forms.py:52 +#: utilities/forms/forms.py:52 msgid "Use regular expressions" msgstr "Düzenli ifadeler kullan" -#: netbox/utilities/forms/forms.py:75 +#: utilities/forms/forms.py:75 msgid "" "Numeric ID of an existing object to update (if not creating a new object)" msgstr "" "Güncellenecek mevcut bir nesnenin sayısal kimliği (yeni bir nesne " "oluşturmuyorsa)" -#: netbox/utilities/forms/forms.py:92 +#: utilities/forms/forms.py:92 #, python-brace-format msgid "Unrecognized header: {name}" msgstr "Tanınmayan başlık: {name}" -#: netbox/utilities/forms/forms.py:118 +#: utilities/forms/forms.py:118 msgid "Available Columns" msgstr "Kullanılabilir Sütunlar" -#: netbox/utilities/forms/forms.py:126 +#: utilities/forms/forms.py:126 msgid "Selected Columns" msgstr "Seçili Sütunlar" -#: netbox/utilities/forms/mixins.py:44 +#: utilities/forms/mixins.py:44 msgid "" "This object has been modified since the form was rendered. Please consult " "the object's change log for details." @@ -15026,13 +14283,13 @@ msgstr "" "Bu nesne, form oluşturulduğundan beri değiştirildi. Ayrıntılar için lütfen " "nesnenin değişiklik günlüğüne bakın." -#: netbox/utilities/forms/utils.py:42 netbox/utilities/forms/utils.py:68 -#: netbox/utilities/forms/utils.py:85 netbox/utilities/forms/utils.py:87 +#: utilities/forms/utils.py:42 utilities/forms/utils.py:68 +#: utilities/forms/utils.py:85 utilities/forms/utils.py:87 #, python-brace-format msgid "Range \"{value}\" is invalid." msgstr "Menzil”{value}“geçersiz." -#: netbox/utilities/forms/utils.py:74 +#: utilities/forms/utils.py:74 #, python-brace-format msgid "" "Invalid range: Ending value ({end}) must be greater than beginning value " @@ -15041,73 +14298,73 @@ msgstr "" "Geçersiz aralık: Bitiş değeri ({end}) başlangıç değerinden büyük olmalıdır " "({begin})." -#: netbox/utilities/forms/utils.py:232 +#: utilities/forms/utils.py:232 #, python-brace-format msgid "Duplicate or conflicting column header for \"{field}\"" msgstr "Yinelenen veya çakışan sütun başlığı”{field}“" -#: netbox/utilities/forms/utils.py:238 +#: utilities/forms/utils.py:238 #, python-brace-format msgid "Duplicate or conflicting column header for \"{header}\"" msgstr "Yinelenen veya çakışan sütun başlığı”{header}“" -#: netbox/utilities/forms/utils.py:247 +#: utilities/forms/utils.py:247 #, python-brace-format msgid "Row {row}: Expected {count_expected} columns but found {count_found}" msgstr "" "Satır {row}: Bekleniyor {count_expected} sütunlar ama bulundu {count_found}" -#: netbox/utilities/forms/utils.py:270 +#: utilities/forms/utils.py:270 #, python-brace-format msgid "Unexpected column header \"{field}\" found." msgstr "Beklenmeyen sütun başlığı”{field}“bulundu." -#: netbox/utilities/forms/utils.py:272 +#: utilities/forms/utils.py:272 #, python-brace-format msgid "Column \"{field}\" is not a related object; cannot use dots" msgstr "Sütun”{field}“ilgili bir nesne değildir; nokta kullanamaz" -#: netbox/utilities/forms/utils.py:276 +#: utilities/forms/utils.py:276 #, python-brace-format msgid "Invalid related object attribute for column \"{field}\": {to_field}" msgstr "Sütun için geçersiz ilgili nesne özniteliği”{field}“: {to_field}" -#: netbox/utilities/forms/utils.py:284 +#: utilities/forms/utils.py:284 #, python-brace-format msgid "Required column header \"{header}\" not found." msgstr "Gerekli sütun başlığı”{header}“Bulunamadı." -#: netbox/utilities/forms/widgets/apiselect.py:124 +#: utilities/forms/widgets/apiselect.py:124 #, python-brace-format msgid "Missing required value for dynamic query param: '{dynamic_params}'" msgstr "" "Dinamik sorgu parametresi için gerekli değer eksik: '{dynamic_params}'" -#: netbox/utilities/forms/widgets/apiselect.py:141 +#: utilities/forms/widgets/apiselect.py:141 #, python-brace-format msgid "Missing required value for static query param: '{static_params}'" msgstr "Statik sorgu parametresi için gerekli değer eksik: '{static_params}'" -#: netbox/utilities/password_validation.py:13 +#: utilities/password_validation.py:13 msgid "Password must have at least one numeral." msgstr "Şifre en az bir rakamdan oluşmalıdır." -#: netbox/utilities/password_validation.py:18 +#: utilities/password_validation.py:18 msgid "Password must have at least one uppercase letter." msgstr "Şifre en az bir büyük harf içermelidir." -#: netbox/utilities/password_validation.py:23 +#: utilities/password_validation.py:23 msgid "Password must have at least one lowercase letter." msgstr "Şifre en az bir küçük harf içermelidir." -#: netbox/utilities/password_validation.py:27 +#: utilities/password_validation.py:27 msgid "" "Your password must contain at least one numeral, one uppercase letter and " "one lowercase letter." msgstr "" "Şifreniz en az bir rakamı, bir büyük harf ve bir küçük harf içermelidir." -#: netbox/utilities/permissions.py:42 +#: utilities/permissions.py:42 #, python-brace-format msgid "" "Invalid permission name: {name}. Must be in the format " @@ -15115,127 +14372,127 @@ msgid "" msgstr "" "Geçersiz izin adı: {name}. Formatında olmalı ._" -#: netbox/utilities/permissions.py:60 +#: utilities/permissions.py:60 #, python-brace-format msgid "Unknown app_label/model_name for {name}" msgstr "Bilinmeyen app_label/model_name {name}" -#: netbox/utilities/request.py:76 +#: utilities/request.py:76 #, python-brace-format msgid "Invalid IP address set for {header}: {ip}" msgstr "Geçersiz IP adresi ayarlandı {header}: {ip}" -#: netbox/utilities/tables.py:47 +#: utilities/tables.py:47 #, python-brace-format msgid "A column named {name} is already defined for table {table_name}" msgstr "Adlı bir sütun {name} tablo için zaten tanımlanmıştır {table_name}" -#: netbox/utilities/templates/builtins/customfield_value.html:30 +#: utilities/templates/builtins/customfield_value.html:30 msgid "Not defined" msgstr "Tanımlanmamış" -#: netbox/utilities/templates/buttons/bookmark.html:9 +#: utilities/templates/buttons/bookmark.html:9 msgid "Unbookmark" msgstr "Yer İşaretini Kaldır" -#: netbox/utilities/templates/buttons/bookmark.html:13 +#: utilities/templates/buttons/bookmark.html:13 msgid "Bookmark" msgstr "Yer işareti" -#: netbox/utilities/templates/buttons/clone.html:4 +#: utilities/templates/buttons/clone.html:4 msgid "Clone" msgstr "Klon" -#: netbox/utilities/templates/buttons/export.html:7 +#: utilities/templates/buttons/export.html:7 msgid "Current View" msgstr "Geçerli Görünüm" -#: netbox/utilities/templates/buttons/export.html:8 +#: utilities/templates/buttons/export.html:8 msgid "All Data" msgstr "Tüm Veriler" -#: netbox/utilities/templates/buttons/export.html:28 +#: utilities/templates/buttons/export.html:28 msgid "Add export template" msgstr "Dışa aktarma şablonu ekle" -#: netbox/utilities/templates/buttons/import.html:4 +#: utilities/templates/buttons/import.html:4 msgid "Import" msgstr "İçe aktar" -#: netbox/utilities/templates/buttons/subscribe.html:10 +#: utilities/templates/buttons/subscribe.html:10 msgid "Unsubscribe" msgstr "Aboneliği iptal et" -#: netbox/utilities/templates/buttons/subscribe.html:14 +#: utilities/templates/buttons/subscribe.html:14 msgid "Subscribe" msgstr "Abone ol" -#: netbox/utilities/templates/form_helpers/render_field.html:41 +#: utilities/templates/form_helpers/render_field.html:41 msgid "Copy to clipboard" msgstr "Panoya kopyala" -#: netbox/utilities/templates/form_helpers/render_field.html:57 +#: 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 +#: utilities/templates/form_helpers/render_field.html:70 msgid "Set Null" msgstr "Sıfır Ayarla" -#: netbox/utilities/templates/helpers/applied_filters.html:11 +#: utilities/templates/helpers/applied_filters.html:11 msgid "Clear all" msgstr "Hepsini temizle" -#: netbox/utilities/templates/helpers/table_config_form.html:8 +#: utilities/templates/helpers/table_config_form.html:8 msgid "Table Configuration" msgstr "Tablo Yapılandırması" -#: netbox/utilities/templates/helpers/table_config_form.html:31 +#: utilities/templates/helpers/table_config_form.html:31 msgid "Move Up" msgstr "Yukarı hareket et" -#: netbox/utilities/templates/helpers/table_config_form.html:34 +#: utilities/templates/helpers/table_config_form.html:34 msgid "Move Down" msgstr "Aşağı hareket et" -#: netbox/utilities/templates/navigation/menu.html:14 +#: utilities/templates/navigation/menu.html:14 msgid "Search…" msgstr "Arama..." -#: netbox/utilities/templates/navigation/menu.html:14 +#: utilities/templates/navigation/menu.html:14 msgid "Search NetBox" msgstr "Arama NetBox" -#: netbox/utilities/templates/widgets/apiselect.html:7 +#: utilities/templates/widgets/apiselect.html:7 msgid "Open selector" msgstr "Seçiciyi aç" -#: netbox/utilities/templates/widgets/markdown_input.html:6 +#: utilities/templates/widgets/markdown_input.html:6 msgid "Write" msgstr "Yazmak" -#: netbox/utilities/testing/views.py:632 +#: utilities/testing/views.py:632 msgid "The test must define csv_update_data." msgstr "Test csv_update_data tanımlamalıdır." -#: netbox/utilities/validators.py:65 +#: utilities/validators.py:65 #, python-brace-format msgid "{value} is not a valid regular expression." msgstr "{value} geçerli bir normal ifade değildir." -#: netbox/utilities/views.py:57 +#: utilities/views.py:57 #, python-brace-format msgid "{self.__class__.__name__} must implement get_required_permission()" msgstr "" "{self.__class__.__name__} get_required_permissions () uygulamasını " "uygulamalıdır" -#: netbox/utilities/views.py:93 +#: utilities/views.py:93 #, python-brace-format msgid "{class_name} must implement get_required_permission()" msgstr "{class_name} get_required_permissions () uygulamasını uygulamalıdır" -#: netbox/utilities/views.py:117 +#: utilities/views.py:117 #, python-brace-format msgid "" "{class_name} has no queryset defined. ObjectPermissionRequiredMixin may only" @@ -15244,63 +14501,61 @@ msgstr "" "{class_name} tanımlanmış bir sorgu seti yok. ObjectPermissionRequiredMixin " "yalnızca temel sorgu kümesini tanımlayan görünümlerde kullanılabilir" -#: netbox/virtualization/filtersets.py:79 +#: virtualization/filtersets.py:79 msgid "Parent group (ID)" msgstr "Ana grup (ID)" -#: netbox/virtualization/filtersets.py:85 +#: virtualization/filtersets.py:85 msgid "Parent group (slug)" msgstr "Ebeveyn grubu (kısa ad)" -#: netbox/virtualization/filtersets.py:89 -#: netbox/virtualization/filtersets.py:141 +#: virtualization/filtersets.py:89 virtualization/filtersets.py:141 msgid "Cluster type (ID)" msgstr "Küme türü (ID)" -#: netbox/virtualization/filtersets.py:151 -#: netbox/virtualization/filtersets.py:271 +#: virtualization/filtersets.py:151 virtualization/filtersets.py:271 msgid "Cluster (ID)" msgstr "Küme (ID)" -#: netbox/virtualization/forms/bulk_edit.py:166 -#: netbox/virtualization/models/virtualmachines.py:115 +#: virtualization/forms/bulk_edit.py:166 +#: virtualization/models/virtualmachines.py:115 msgid "vCPUs" msgstr "vCPU'lar" -#: netbox/virtualization/forms/bulk_edit.py:170 +#: virtualization/forms/bulk_edit.py:170 msgid "Memory (MB)" msgstr "Bellek (MB)" -#: netbox/virtualization/forms/bulk_edit.py:174 +#: virtualization/forms/bulk_edit.py:174 msgid "Disk (GB)" msgstr "Disk (GB)" -#: netbox/virtualization/forms/bulk_edit.py:334 -#: netbox/virtualization/forms/filtersets.py:251 +#: virtualization/forms/bulk_edit.py:334 +#: virtualization/forms/filtersets.py:251 msgid "Size (GB)" msgstr "Boyut (GB)" -#: netbox/virtualization/forms/bulk_import.py:44 +#: virtualization/forms/bulk_import.py:44 msgid "Type of cluster" msgstr "Küme türü" -#: netbox/virtualization/forms/bulk_import.py:51 +#: virtualization/forms/bulk_import.py:51 msgid "Assigned cluster group" msgstr "Atanmış küme grubu" -#: netbox/virtualization/forms/bulk_import.py:96 +#: virtualization/forms/bulk_import.py:96 msgid "Assigned cluster" msgstr "Atanmış küme" -#: netbox/virtualization/forms/bulk_import.py:103 +#: virtualization/forms/bulk_import.py:103 msgid "Assigned device within cluster" msgstr "Küme içinde atanan aygıt" -#: netbox/virtualization/forms/filtersets.py:183 +#: virtualization/forms/filtersets.py:183 msgid "Serial number" msgstr "Seri numarası" -#: netbox/virtualization/forms/model_forms.py:153 +#: virtualization/forms/model_forms.py:153 #, python-brace-format msgid "" "{device} belongs to a different site ({device_site}) than the cluster " @@ -15309,50 +14564,50 @@ msgstr "" "{device} adlı aygıt, ({cluster_site}) kümesinden farklı bir siteye " "({device_site}) aittir" -#: netbox/virtualization/forms/model_forms.py:192 +#: virtualization/forms/model_forms.py:192 msgid "Optionally pin this VM to a specific host device within the cluster" msgstr "" "İsteğe bağlı olarak bu sanal makineyi küme içindeki belirli bir ana aygıta " "sabitleyin" -#: netbox/virtualization/forms/model_forms.py:221 +#: virtualization/forms/model_forms.py:221 msgid "Site/Cluster" msgstr "Site/Küme" -#: netbox/virtualization/forms/model_forms.py:244 +#: virtualization/forms/model_forms.py:244 msgid "Disk size is managed via the attachment of virtual disks." msgstr "Disk boyutu sanal disklerin eklenmesiyle yönetilir." -#: netbox/virtualization/forms/model_forms.py:372 -#: netbox/virtualization/tables/virtualmachines.py:111 +#: virtualization/forms/model_forms.py:372 +#: virtualization/tables/virtualmachines.py:111 msgid "Disk" msgstr "Disk" -#: netbox/virtualization/models/clusters.py:25 +#: virtualization/models/clusters.py:25 msgid "cluster type" msgstr "küme türü" -#: netbox/virtualization/models/clusters.py:26 +#: virtualization/models/clusters.py:26 msgid "cluster types" msgstr "küme türleri" -#: netbox/virtualization/models/clusters.py:45 +#: virtualization/models/clusters.py:45 msgid "cluster group" msgstr "küme grubu" -#: netbox/virtualization/models/clusters.py:46 +#: virtualization/models/clusters.py:46 msgid "cluster groups" msgstr "küme grupları" -#: netbox/virtualization/models/clusters.py:121 +#: virtualization/models/clusters.py:121 msgid "cluster" msgstr "küme" -#: netbox/virtualization/models/clusters.py:122 +#: virtualization/models/clusters.py:122 msgid "clusters" msgstr "kümeleri" -#: netbox/virtualization/models/clusters.py:141 +#: virtualization/models/clusters.py:141 #, python-brace-format msgid "" "{count} devices are assigned as hosts for this cluster but are not in site " @@ -15361,47 +14616,47 @@ msgstr "" "{count} aygıt bu küme için ana bilgisayar olarak atanır, ancak {site} isimli" " site için için atanmaz" -#: netbox/virtualization/models/virtualmachines.py:123 +#: virtualization/models/virtualmachines.py:123 msgid "memory (MB)" msgstr "bellek (MB)" -#: netbox/virtualization/models/virtualmachines.py:128 +#: virtualization/models/virtualmachines.py:128 msgid "disk (MB)" msgstr "disk (MB)" -#: netbox/virtualization/models/virtualmachines.py:166 +#: virtualization/models/virtualmachines.py:166 msgid "Virtual machine name must be unique per cluster." msgstr "Sanal makine adı küme başına benzersiz olmalıdır." -#: netbox/virtualization/models/virtualmachines.py:169 +#: virtualization/models/virtualmachines.py:169 msgid "virtual machine" msgstr "sanal makine" -#: netbox/virtualization/models/virtualmachines.py:170 +#: virtualization/models/virtualmachines.py:170 msgid "virtual machines" msgstr "sanal makineler" -#: netbox/virtualization/models/virtualmachines.py:184 +#: virtualization/models/virtualmachines.py:184 msgid "A virtual machine must be assigned to a site and/or cluster." msgstr "Bir sanal makine bir siteye ve/veya kümeye atanmalıdır." -#: netbox/virtualization/models/virtualmachines.py:191 +#: virtualization/models/virtualmachines.py:191 #, python-brace-format msgid "" "The selected cluster ({cluster}) is not assigned to this site ({site})." msgstr "Seçilen küme ({cluster}) bu siteye atanmamıştır ({site})." -#: netbox/virtualization/models/virtualmachines.py:198 +#: virtualization/models/virtualmachines.py:198 msgid "Must specify a cluster when assigning a host device." msgstr "Ana aygıt atarken bir küme belirtmeniz gerekir." -#: netbox/virtualization/models/virtualmachines.py:203 +#: virtualization/models/virtualmachines.py:203 #, python-brace-format msgid "" "The selected device ({device}) is not assigned to this cluster ({cluster})." msgstr "Seçilen cihaz ({device}) bu kümeye atanmadı ({cluster})." -#: netbox/virtualization/models/virtualmachines.py:215 +#: virtualization/models/virtualmachines.py:215 #, python-brace-format msgid "" "The specified disk size ({size}) must match the aggregate size of assigned " @@ -15410,17 +14665,17 @@ msgstr "" "Belirtilen disk boyutu ({size}) atanmış sanal disklerin toplam boyutuyla " "eşleşmelidir ({total_size})." -#: netbox/virtualization/models/virtualmachines.py:229 +#: virtualization/models/virtualmachines.py:229 #, python-brace-format msgid "Must be an IPv{family} address. ({ip} is an IPv{version} address.)" msgstr "IPV olmalı{family} adres. ({ip} bir IPV{version} adres.)" -#: netbox/virtualization/models/virtualmachines.py:238 +#: virtualization/models/virtualmachines.py:238 #, python-brace-format msgid "The specified IP address ({ip}) is not assigned to this VM." msgstr "Belirtilen IP adresi ({ip}) bu VM'ye atanmadı." -#: netbox/virtualization/models/virtualmachines.py:396 +#: virtualization/models/virtualmachines.py:396 #, python-brace-format msgid "" "The selected parent interface ({parent}) belongs to a different virtual " @@ -15429,7 +14684,7 @@ msgstr "" "Seçilen üst arabirim ({parent}) farklı bir sanal makineye aittir " "({virtual_machine})." -#: netbox/virtualization/models/virtualmachines.py:411 +#: virtualization/models/virtualmachines.py:411 #, python-brace-format msgid "" "The selected bridge interface ({bridge}) belongs to a different virtual " @@ -15438,7 +14693,7 @@ msgstr "" "Seçilen köprü arayüzü ({bridge}) farklı bir sanal makineye aittir " "({virtual_machine})." -#: netbox/virtualization/models/virtualmachines.py:422 +#: virtualization/models/virtualmachines.py:422 #, python-brace-format msgid "" "The untagged VLAN ({untagged_vlan}) must belong to the same site as the " @@ -15447,399 +14702,392 @@ msgstr "" "Etiketlenmemiş VLAN ({untagged_vlan}) arabirimin ana sanal makinesiyle aynı " "siteye ait olmalı veya global olmalıdır." -#: netbox/virtualization/models/virtualmachines.py:434 +#: virtualization/models/virtualmachines.py:434 msgid "size (MB)" msgstr "boyut (MB)" -#: netbox/virtualization/models/virtualmachines.py:438 +#: virtualization/models/virtualmachines.py:438 msgid "virtual disk" msgstr "sanal disk" -#: netbox/virtualization/models/virtualmachines.py:439 +#: virtualization/models/virtualmachines.py:439 msgid "virtual disks" msgstr "sanal diskler" -#: netbox/virtualization/views.py:275 +#: virtualization/views.py:275 #, python-brace-format msgid "Added {count} devices to cluster {cluster}" msgstr "Eklendi {count} kümelenecek cihazlar {cluster}" -#: netbox/virtualization/views.py:310 +#: virtualization/views.py:310 #, python-brace-format msgid "Removed {count} devices from cluster {cluster}" msgstr "Kaldırıldı {count} kümeden aygıtlar {cluster}" -#: netbox/vpn/choices.py:31 +#: vpn/choices.py:31 msgid "IPsec - Transport" msgstr "IPsec - Taşıma" -#: netbox/vpn/choices.py:32 +#: vpn/choices.py:32 msgid "IPsec - Tunnel" msgstr "IPsec - Tünel" -#: netbox/vpn/choices.py:33 +#: vpn/choices.py:33 msgid "IP-in-IP" msgstr "IP içinde IP" -#: netbox/vpn/choices.py:34 +#: vpn/choices.py:34 msgid "GRE" msgstr "GREC" -#: netbox/vpn/choices.py:56 +#: vpn/choices.py:56 msgid "Hub" msgstr "göbek" -#: netbox/vpn/choices.py:57 +#: vpn/choices.py:57 msgid "Spoke" msgstr "konuştu" -#: netbox/vpn/choices.py:80 +#: vpn/choices.py:80 msgid "Aggressive" msgstr "Agresif" -#: netbox/vpn/choices.py:81 +#: vpn/choices.py:81 msgid "Main" msgstr "Ana" -#: netbox/vpn/choices.py:92 +#: vpn/choices.py:92 msgid "Pre-shared keys" msgstr "Önceden paylaşılan anahtarlar" -#: netbox/vpn/choices.py:93 +#: vpn/choices.py:93 msgid "Certificates" msgstr "Sertifikalar" -#: netbox/vpn/choices.py:94 +#: vpn/choices.py:94 msgid "RSA signatures" msgstr "RSA imzaları" -#: netbox/vpn/choices.py:95 +#: vpn/choices.py:95 msgid "DSA signatures" msgstr "DSA imzaları" -#: netbox/vpn/choices.py:178 netbox/vpn/choices.py:179 -#: netbox/vpn/choices.py:180 netbox/vpn/choices.py:181 -#: netbox/vpn/choices.py:182 netbox/vpn/choices.py:183 -#: netbox/vpn/choices.py:184 netbox/vpn/choices.py:185 -#: netbox/vpn/choices.py:186 netbox/vpn/choices.py:187 -#: netbox/vpn/choices.py:188 netbox/vpn/choices.py:189 -#: netbox/vpn/choices.py:190 netbox/vpn/choices.py:191 -#: netbox/vpn/choices.py:192 netbox/vpn/choices.py:193 -#: netbox/vpn/choices.py:194 netbox/vpn/choices.py:195 -#: netbox/vpn/choices.py:196 netbox/vpn/choices.py:197 -#: netbox/vpn/choices.py:198 netbox/vpn/choices.py:199 -#: netbox/vpn/choices.py:200 netbox/vpn/choices.py:201 +#: vpn/choices.py:178 vpn/choices.py:179 vpn/choices.py:180 vpn/choices.py:181 +#: vpn/choices.py:182 vpn/choices.py:183 vpn/choices.py:184 vpn/choices.py:185 +#: vpn/choices.py:186 vpn/choices.py:187 vpn/choices.py:188 vpn/choices.py:189 +#: vpn/choices.py:190 vpn/choices.py:191 vpn/choices.py:192 vpn/choices.py:193 +#: vpn/choices.py:194 vpn/choices.py:195 vpn/choices.py:196 vpn/choices.py:197 +#: vpn/choices.py:198 vpn/choices.py:199 vpn/choices.py:200 vpn/choices.py:201 #, python-brace-format msgid "Group {n}" msgstr "Grup {n}" -#: netbox/vpn/choices.py:243 +#: vpn/choices.py:243 msgid "Ethernet Private LAN" msgstr "Ethernet Özel LAN" -#: netbox/vpn/choices.py:244 +#: vpn/choices.py:244 msgid "Ethernet Virtual Private LAN" msgstr "Ethernet Sanal Özel LAN" -#: netbox/vpn/choices.py:247 +#: vpn/choices.py:247 msgid "Ethernet Private Tree" msgstr "Ethernet Özel Ağacı" -#: netbox/vpn/choices.py:248 +#: vpn/choices.py:248 msgid "Ethernet Virtual Private Tree" msgstr "Ethernet Sanal Özel Ağacı" -#: netbox/vpn/filtersets.py:41 +#: vpn/filtersets.py:41 msgid "Tunnel group (ID)" msgstr "Tünel grubu (ID)" -#: netbox/vpn/filtersets.py:47 +#: vpn/filtersets.py:47 msgid "Tunnel group (slug)" msgstr "Tünel grubu (kısa ad)" -#: netbox/vpn/filtersets.py:54 +#: vpn/filtersets.py:54 msgid "IPSec profile (ID)" msgstr "IPsec profili (ID)" -#: netbox/vpn/filtersets.py:60 +#: vpn/filtersets.py:60 msgid "IPSec profile (name)" msgstr "IPsec profili (ad)" -#: netbox/vpn/filtersets.py:81 +#: vpn/filtersets.py:81 msgid "Tunnel (ID)" msgstr "Tünel (ID)" -#: netbox/vpn/filtersets.py:87 +#: vpn/filtersets.py:87 msgid "Tunnel (name)" msgstr "Tünel (isim)" -#: netbox/vpn/filtersets.py:118 +#: vpn/filtersets.py:118 msgid "Outside IP (ID)" msgstr "Dış IP (ID)" -#: netbox/vpn/filtersets.py:130 netbox/vpn/filtersets.py:263 +#: vpn/filtersets.py:130 vpn/filtersets.py:263 msgid "IKE policy (ID)" msgstr "IKE ilkesi (ID)" -#: netbox/vpn/filtersets.py:136 netbox/vpn/filtersets.py:269 +#: vpn/filtersets.py:136 vpn/filtersets.py:269 msgid "IKE policy (name)" msgstr "IKE ilkesi (isim)" -#: netbox/vpn/filtersets.py:200 netbox/vpn/filtersets.py:273 +#: vpn/filtersets.py:200 vpn/filtersets.py:273 msgid "IPSec policy (ID)" msgstr "IPsec ilkesi (ID)" -#: netbox/vpn/filtersets.py:206 netbox/vpn/filtersets.py:279 +#: vpn/filtersets.py:206 vpn/filtersets.py:279 msgid "IPSec policy (name)" msgstr "IPsec ilkesi (ad)" -#: netbox/vpn/filtersets.py:348 +#: vpn/filtersets.py:348 msgid "L2VPN (slug)" msgstr "L2VPN (kısa ad)" -#: netbox/vpn/filtersets.py:412 +#: vpn/filtersets.py:412 msgid "VM Interface (ID)" msgstr "VM Arabirimi (ID)" -#: netbox/vpn/filtersets.py:418 +#: vpn/filtersets.py:418 msgid "VLAN (name)" msgstr "VLAN (isim)" -#: netbox/vpn/forms/bulk_edit.py:45 netbox/vpn/forms/bulk_import.py:42 -#: netbox/vpn/forms/filtersets.py:54 +#: vpn/forms/bulk_edit.py:45 vpn/forms/bulk_import.py:42 +#: vpn/forms/filtersets.py:54 msgid "Tunnel group" msgstr "Tünel grubu" -#: netbox/vpn/forms/bulk_edit.py:117 netbox/vpn/models/crypto.py:47 +#: vpn/forms/bulk_edit.py:117 vpn/models/crypto.py:47 msgid "SA lifetime" msgstr "SA ömrü" -#: netbox/vpn/forms/bulk_edit.py:151 netbox/wireless/forms/bulk_edit.py:79 -#: netbox/wireless/forms/bulk_edit.py:126 -#: netbox/wireless/forms/filtersets.py:64 -#: netbox/wireless/forms/filtersets.py:98 +#: vpn/forms/bulk_edit.py:151 wireless/forms/bulk_edit.py:79 +#: wireless/forms/bulk_edit.py:126 wireless/forms/filtersets.py:64 +#: wireless/forms/filtersets.py:98 msgid "Pre-shared key" msgstr "Önceden paylaşılan anahtar" -#: netbox/vpn/forms/bulk_edit.py:237 netbox/vpn/forms/bulk_import.py:239 -#: netbox/vpn/forms/filtersets.py:199 netbox/vpn/forms/model_forms.py:370 -#: netbox/vpn/models/crypto.py:104 +#: vpn/forms/bulk_edit.py:237 vpn/forms/bulk_import.py:239 +#: vpn/forms/filtersets.py:199 vpn/forms/model_forms.py:370 +#: vpn/models/crypto.py:104 msgid "IKE policy" msgstr "IKE ilkesi" -#: netbox/vpn/forms/bulk_edit.py:242 netbox/vpn/forms/bulk_import.py:244 -#: netbox/vpn/forms/filtersets.py:204 netbox/vpn/forms/model_forms.py:374 -#: netbox/vpn/models/crypto.py:209 +#: vpn/forms/bulk_edit.py:242 vpn/forms/bulk_import.py:244 +#: vpn/forms/filtersets.py:204 vpn/forms/model_forms.py:374 +#: vpn/models/crypto.py:209 msgid "IPSec policy" msgstr "IPsec ilkesi" -#: netbox/vpn/forms/bulk_import.py:50 +#: vpn/forms/bulk_import.py:50 msgid "Tunnel encapsulation" msgstr "Tünel kapsülleme" -#: netbox/vpn/forms/bulk_import.py:83 +#: vpn/forms/bulk_import.py:83 msgid "Operational role" msgstr "Operasyonel rol" -#: netbox/vpn/forms/bulk_import.py:90 +#: vpn/forms/bulk_import.py:90 msgid "Parent device of assigned interface" msgstr "Atanan arayüzün ana aygıtı" -#: netbox/vpn/forms/bulk_import.py:97 +#: vpn/forms/bulk_import.py:97 msgid "Parent VM of assigned interface" msgstr "Atanan arabirimin üst VM'si" -#: netbox/vpn/forms/bulk_import.py:104 +#: vpn/forms/bulk_import.py:104 msgid "Device or virtual machine interface" msgstr "Aygıt veya sanal makine arayüzü" -#: netbox/vpn/forms/bulk_import.py:183 +#: vpn/forms/bulk_import.py:183 msgid "IKE proposal(s)" msgstr "IKE teklifi (lar)" -#: netbox/vpn/forms/bulk_import.py:215 netbox/vpn/models/crypto.py:197 +#: vpn/forms/bulk_import.py:215 vpn/models/crypto.py:197 msgid "Diffie-Hellman group for Perfect Forward Secrecy" msgstr "Perfect Forward Secrecy için Diffie-Hellman grubu" -#: netbox/vpn/forms/bulk_import.py:222 +#: vpn/forms/bulk_import.py:222 msgid "IPSec proposal(s)" msgstr "IPsec teklifleri" -#: netbox/vpn/forms/bulk_import.py:236 +#: vpn/forms/bulk_import.py:236 msgid "IPSec protocol" msgstr "IPsec protokolü" -#: netbox/vpn/forms/bulk_import.py:266 +#: vpn/forms/bulk_import.py:266 msgid "L2VPN type" msgstr "L2VPN türü" -#: netbox/vpn/forms/bulk_import.py:287 +#: vpn/forms/bulk_import.py:287 msgid "Parent device (for interface)" msgstr "Ana cihaz (arayüz için)" -#: netbox/vpn/forms/bulk_import.py:294 +#: vpn/forms/bulk_import.py:294 msgid "Parent virtual machine (for interface)" msgstr "Ana sanal makine (arayüz için)" -#: netbox/vpn/forms/bulk_import.py:301 +#: vpn/forms/bulk_import.py:301 msgid "Assigned interface (device or VM)" msgstr "Atanmış arayüz (cihaz veya VM)" -#: netbox/vpn/forms/bulk_import.py:334 +#: vpn/forms/bulk_import.py:334 msgid "Cannot import device and VM interface terminations simultaneously." msgstr "Aygıt ve VM arabirimi sonlandırmaları aynı anda içe aktarılamıyor." -#: netbox/vpn/forms/bulk_import.py:336 +#: vpn/forms/bulk_import.py:336 msgid "Each termination must specify either an interface or a VLAN." msgstr "Her sonlandırma bir arabirim veya bir VLAN belirtmelidir." -#: netbox/vpn/forms/bulk_import.py:338 +#: vpn/forms/bulk_import.py:338 msgid "Cannot assign both an interface and a VLAN." msgstr "Hem arabirim hem de VLAN atanamıyor." -#: netbox/vpn/forms/filtersets.py:130 +#: vpn/forms/filtersets.py:130 msgid "IKE version" msgstr "IKE versiyonu" -#: netbox/vpn/forms/filtersets.py:142 netbox/vpn/forms/filtersets.py:175 -#: netbox/vpn/forms/model_forms.py:298 netbox/vpn/forms/model_forms.py:334 +#: vpn/forms/filtersets.py:142 vpn/forms/filtersets.py:175 +#: vpn/forms/model_forms.py:298 vpn/forms/model_forms.py:334 msgid "Proposal" msgstr "Teklif" -#: netbox/vpn/forms/filtersets.py:251 +#: vpn/forms/filtersets.py:251 msgid "Assigned Object Type" msgstr "Atanan Nesne Türü" -#: netbox/vpn/forms/model_forms.py:95 netbox/vpn/forms/model_forms.py:130 -#: netbox/vpn/forms/model_forms.py:240 netbox/vpn/tables/tunnels.py:91 +#: vpn/forms/model_forms.py:95 vpn/forms/model_forms.py:130 +#: vpn/forms/model_forms.py:240 vpn/tables/tunnels.py:91 msgid "Tunnel interface" msgstr "Tünel arayüzü" -#: netbox/vpn/forms/model_forms.py:150 +#: vpn/forms/model_forms.py:150 msgid "First Termination" msgstr "İlk Fesih" -#: netbox/vpn/forms/model_forms.py:153 +#: vpn/forms/model_forms.py:153 msgid "Second Termination" msgstr "İkinci Sonlandırma" -#: netbox/vpn/forms/model_forms.py:197 +#: vpn/forms/model_forms.py:197 msgid "This parameter is required when defining a termination." msgstr "Bir sonlandırma tanımlarken bu parametre gereklidir." -#: netbox/vpn/forms/model_forms.py:320 netbox/vpn/forms/model_forms.py:356 +#: vpn/forms/model_forms.py:320 vpn/forms/model_forms.py:356 msgid "Policy" msgstr "İlke" -#: netbox/vpn/forms/model_forms.py:487 +#: vpn/forms/model_forms.py:487 msgid "A termination must specify an interface or VLAN." msgstr "Bir sonlandırma bir arayüz veya VLAN belirtmelidir." -#: netbox/vpn/forms/model_forms.py:489 +#: vpn/forms/model_forms.py:489 msgid "" "A termination can only have one terminating object (an interface or VLAN)." msgstr "" "Bir sonlandırma yalnızca bir sonlandırma nesnesine (bir arayüz veya VLAN) " "sahip olabilir." -#: netbox/vpn/models/crypto.py:33 +#: vpn/models/crypto.py:33 msgid "encryption algorithm" msgstr "şifreleme algoritması" -#: netbox/vpn/models/crypto.py:37 +#: vpn/models/crypto.py:37 msgid "authentication algorithm" msgstr "kimlik doğrulama algoritması" -#: netbox/vpn/models/crypto.py:44 +#: vpn/models/crypto.py:44 msgid "Diffie-Hellman group ID" msgstr "Diffie-Hellman grup kimliği" -#: netbox/vpn/models/crypto.py:50 +#: vpn/models/crypto.py:50 msgid "Security association lifetime (in seconds)" msgstr "Güvenlik ilişkilendirmesi ömrü (saniye cinsinden)" -#: netbox/vpn/models/crypto.py:59 +#: vpn/models/crypto.py:59 msgid "IKE proposal" msgstr "IKE teklifi" -#: netbox/vpn/models/crypto.py:60 +#: vpn/models/crypto.py:60 msgid "IKE proposals" msgstr "IKE teklifleri" -#: netbox/vpn/models/crypto.py:76 +#: vpn/models/crypto.py:76 msgid "version" msgstr "versiyon" -#: netbox/vpn/models/crypto.py:88 netbox/vpn/models/crypto.py:190 +#: vpn/models/crypto.py:88 vpn/models/crypto.py:190 msgid "proposals" msgstr "öneriler" -#: netbox/vpn/models/crypto.py:91 netbox/wireless/models.py:39 +#: vpn/models/crypto.py:91 wireless/models.py:39 msgid "pre-shared key" msgstr "önceden paylaşılan anahtar" -#: netbox/vpn/models/crypto.py:105 +#: vpn/models/crypto.py:105 msgid "IKE policies" msgstr "IKE politikaları" -#: netbox/vpn/models/crypto.py:118 +#: vpn/models/crypto.py:118 msgid "Mode is required for selected IKE version" msgstr "Seçilen IKE sürümü için mod gereklidir" -#: netbox/vpn/models/crypto.py:122 +#: vpn/models/crypto.py:122 msgid "Mode cannot be used for selected IKE version" msgstr "Seçilen IKE sürümü için mod kullanılamaz" -#: netbox/vpn/models/crypto.py:136 +#: vpn/models/crypto.py:136 msgid "encryption" msgstr "şifreleme" -#: netbox/vpn/models/crypto.py:141 +#: vpn/models/crypto.py:141 msgid "authentication" msgstr "onaylama" -#: netbox/vpn/models/crypto.py:149 +#: vpn/models/crypto.py:149 msgid "Security association lifetime (seconds)" msgstr "Güvenlik ilişkilendirmesi ömrü (saniye)" -#: netbox/vpn/models/crypto.py:155 +#: vpn/models/crypto.py:155 msgid "Security association lifetime (in kilobytes)" msgstr "Güvenlik ilişkilendirmesi ömrü (kilobayt cinsinden)" -#: netbox/vpn/models/crypto.py:164 +#: vpn/models/crypto.py:164 msgid "IPSec proposal" msgstr "IPsec teklifi" -#: netbox/vpn/models/crypto.py:165 +#: vpn/models/crypto.py:165 msgid "IPSec proposals" msgstr "IPsec önerileri" -#: netbox/vpn/models/crypto.py:178 +#: vpn/models/crypto.py:178 msgid "Encryption and/or authentication algorithm must be defined" msgstr "Şifreleme ve/veya kimlik doğrulama algoritması tanımlanmalıdır" -#: netbox/vpn/models/crypto.py:210 +#: vpn/models/crypto.py:210 msgid "IPSec policies" msgstr "IPsec ilkeleri" -#: netbox/vpn/models/crypto.py:251 +#: vpn/models/crypto.py:251 msgid "IPSec profiles" msgstr "IPsec profilleri" -#: netbox/vpn/models/l2vpn.py:116 +#: vpn/models/l2vpn.py:116 msgid "L2VPN termination" msgstr "L2VPN sonlandırma" -#: netbox/vpn/models/l2vpn.py:117 +#: vpn/models/l2vpn.py:117 msgid "L2VPN terminations" msgstr "L2VPN sonlandırmaları" -#: netbox/vpn/models/l2vpn.py:135 +#: vpn/models/l2vpn.py:135 #, python-brace-format msgid "L2VPN Termination already assigned ({assigned_object})" msgstr "L2VPN Sonlandırma zaten atanmış ({assigned_object})" -#: netbox/vpn/models/l2vpn.py:147 +#: vpn/models/l2vpn.py:147 #, python-brace-format msgid "" "{l2vpn_type} L2VPNs cannot have more than two terminations; found " @@ -15848,194 +15096,186 @@ msgstr "" "{l2vpn_type} L2VPN'ler ikiden fazla sonlandırmaya sahip olamaz; bulundu " "{terminations_count} zaten tanımlanmış." -#: netbox/vpn/models/tunnels.py:26 +#: vpn/models/tunnels.py:26 msgid "tunnel group" msgstr "tünel grubu" -#: netbox/vpn/models/tunnels.py:27 +#: vpn/models/tunnels.py:27 msgid "tunnel groups" msgstr "tünel grupları" -#: netbox/vpn/models/tunnels.py:53 +#: vpn/models/tunnels.py:53 msgid "encapsulation" msgstr "kapsülleme" -#: netbox/vpn/models/tunnels.py:72 +#: vpn/models/tunnels.py:72 msgid "tunnel ID" msgstr "tünel kimliği" -#: netbox/vpn/models/tunnels.py:94 +#: vpn/models/tunnels.py:94 msgid "tunnel" msgstr "tünel" -#: netbox/vpn/models/tunnels.py:95 +#: vpn/models/tunnels.py:95 msgid "tunnels" msgstr "tüneller" -#: netbox/vpn/models/tunnels.py:153 +#: vpn/models/tunnels.py:153 msgid "An object may be terminated to only one tunnel at a time." msgstr "Bir nesne aynı anda yalnızca bir tünele sonlandırılabilir." -#: netbox/vpn/models/tunnels.py:156 +#: vpn/models/tunnels.py:156 msgid "tunnel termination" msgstr "tünel sonlandırma" -#: netbox/vpn/models/tunnels.py:157 +#: vpn/models/tunnels.py:157 msgid "tunnel terminations" msgstr "tünel sonlandırmaları" -#: netbox/vpn/models/tunnels.py:174 +#: vpn/models/tunnels.py:174 #, python-brace-format msgid "{name} is already attached to a tunnel ({tunnel})." msgstr "{name} zaten bir tünele bağlı ({tunnel})." -#: netbox/vpn/tables/crypto.py:22 +#: vpn/tables/crypto.py:22 msgid "Authentication Method" msgstr "Kimlik Doğrulama Yöntemi" -#: netbox/vpn/tables/crypto.py:25 netbox/vpn/tables/crypto.py:97 +#: vpn/tables/crypto.py:25 vpn/tables/crypto.py:97 msgid "Encryption Algorithm" msgstr "Şifreleme Algoritması" -#: netbox/vpn/tables/crypto.py:28 netbox/vpn/tables/crypto.py:100 +#: vpn/tables/crypto.py:28 vpn/tables/crypto.py:100 msgid "Authentication Algorithm" msgstr "Kimlik Doğrulama Algoritması" -#: netbox/vpn/tables/crypto.py:34 +#: vpn/tables/crypto.py:34 msgid "SA Lifetime" msgstr "SA Ömrü" -#: netbox/vpn/tables/crypto.py:71 +#: vpn/tables/crypto.py:71 msgid "Pre-shared Key" msgstr "Önceden Paylaşılan Anahtar" -#: netbox/vpn/tables/crypto.py:103 +#: vpn/tables/crypto.py:103 msgid "SA Lifetime (Seconds)" msgstr "SA Ömrü (Saniye)" -#: netbox/vpn/tables/crypto.py:106 +#: vpn/tables/crypto.py:106 msgid "SA Lifetime (KB)" msgstr "SA Ömrü (KB)" -#: netbox/vpn/tables/l2vpn.py:69 +#: vpn/tables/l2vpn.py:69 msgid "Object Parent" msgstr "Nesne Ebeveyni" -#: netbox/vpn/tables/l2vpn.py:74 +#: vpn/tables/l2vpn.py:74 msgid "Object Site" msgstr "Nesne Sitesi" -#: netbox/wireless/choices.py:11 +#: wireless/choices.py:11 msgid "Access point" msgstr "Erişim noktası" -#: netbox/wireless/choices.py:12 +#: wireless/choices.py:12 msgid "Station" msgstr "İstasyon" -#: netbox/wireless/choices.py:467 +#: wireless/choices.py:467 msgid "Open" msgstr "Açık" -#: netbox/wireless/choices.py:469 +#: wireless/choices.py:469 msgid "WPA Personal (PSK)" msgstr "WPA Kişisel (PSK)" -#: netbox/wireless/choices.py:470 +#: wireless/choices.py:470 msgid "WPA Enterprise" msgstr "WPA Kurumsal" -#: netbox/wireless/forms/bulk_edit.py:73 -#: netbox/wireless/forms/bulk_edit.py:120 -#: netbox/wireless/forms/bulk_import.py:68 -#: netbox/wireless/forms/bulk_import.py:71 -#: netbox/wireless/forms/bulk_import.py:110 -#: netbox/wireless/forms/bulk_import.py:113 -#: netbox/wireless/forms/filtersets.py:59 -#: netbox/wireless/forms/filtersets.py:93 +#: wireless/forms/bulk_edit.py:73 wireless/forms/bulk_edit.py:120 +#: wireless/forms/bulk_import.py:68 wireless/forms/bulk_import.py:71 +#: wireless/forms/bulk_import.py:110 wireless/forms/bulk_import.py:113 +#: wireless/forms/filtersets.py:59 wireless/forms/filtersets.py:93 msgid "Authentication cipher" msgstr "Kimlik doğrulama şifresi" -#: netbox/wireless/forms/bulk_edit.py:134 -#: netbox/wireless/forms/bulk_import.py:116 -#: netbox/wireless/forms/bulk_import.py:119 -#: netbox/wireless/forms/filtersets.py:106 +#: wireless/forms/bulk_edit.py:134 wireless/forms/bulk_import.py:116 +#: wireless/forms/bulk_import.py:119 wireless/forms/filtersets.py:106 msgid "Distance unit" msgstr "Mesafe birimi" -#: netbox/wireless/forms/bulk_import.py:52 +#: wireless/forms/bulk_import.py:52 msgid "Bridged VLAN" msgstr "Köprülü VLAN" -#: netbox/wireless/forms/bulk_import.py:89 -#: netbox/wireless/tables/wirelesslink.py:28 +#: wireless/forms/bulk_import.py:89 wireless/tables/wirelesslink.py:28 msgid "Interface A" msgstr "Arayüz A" -#: netbox/wireless/forms/bulk_import.py:93 -#: netbox/wireless/tables/wirelesslink.py:37 +#: wireless/forms/bulk_import.py:93 wireless/tables/wirelesslink.py:37 msgid "Interface B" msgstr "Arayüz B" -#: netbox/wireless/forms/model_forms.py:161 +#: wireless/forms/model_forms.py:161 msgid "Side B" msgstr "B Tarafı" -#: netbox/wireless/models.py:31 +#: wireless/models.py:31 msgid "authentication cipher" msgstr "kimlik doğrulama şifresi" -#: netbox/wireless/models.py:69 +#: wireless/models.py:69 msgid "wireless LAN group" msgstr "kablosuz LAN grubu" -#: netbox/wireless/models.py:70 +#: wireless/models.py:70 msgid "wireless LAN groups" msgstr "kablosuz LAN grupları" -#: netbox/wireless/models.py:116 +#: wireless/models.py:116 msgid "wireless LAN" msgstr "kablosuz LAN" -#: netbox/wireless/models.py:144 +#: wireless/models.py:144 msgid "interface A" msgstr "arayüz A" -#: netbox/wireless/models.py:151 +#: wireless/models.py:151 msgid "interface B" msgstr "arayüz B" -#: netbox/wireless/models.py:165 +#: wireless/models.py:165 msgid "distance" msgstr "uzaklık" -#: netbox/wireless/models.py:172 +#: wireless/models.py:172 msgid "distance unit" msgstr "mesafe birimi" -#: netbox/wireless/models.py:219 +#: wireless/models.py:219 msgid "wireless link" msgstr "kablosuz bağlantı" -#: netbox/wireless/models.py:220 +#: wireless/models.py:220 msgid "wireless links" msgstr "kablosuz bağlantılar" -#: netbox/wireless/models.py:236 +#: wireless/models.py:236 msgid "Must specify a unit when setting a wireless distance" msgstr "Kablosuz mesafeyi ayarlarken bir birim belirtmelisiniz" -#: netbox/wireless/models.py:242 netbox/wireless/models.py:248 +#: wireless/models.py:242 wireless/models.py:248 #, python-brace-format msgid "{type} is not a wireless interface." msgstr "{type} kablosuz bir arayüz değildir." -#: netbox/wireless/utils.py:16 +#: wireless/utils.py:16 #, python-brace-format msgid "Invalid channel value: {channel}" msgstr "Geçersiz kanal değeri: {channel}" -#: netbox/wireless/utils.py:26 +#: wireless/utils.py:26 #, python-brace-format msgid "Invalid channel attribute: {name}" msgstr "Geçersiz kanal özniteliği: {name}" diff --git a/netbox/translations/uk/LC_MESSAGES/django.po b/netbox/translations/uk/LC_MESSAGES/django.po index 39cbf3bda..de7d910b3 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: 2024-10-12 05:02+0000\n" +"POT-Creation-Date: 2024-10-28 19:20+0000\n" "PO-Revision-Date: 2023-10-30 17:48+0000\n" "Last-Translator: Vladyslav V. Prodan, 2024\n" "Language-Team: Ukrainian (https://app.transifex.com/netbox-community/teams/178115/uk/)\n" @@ -23,3423 +23,3092 @@ msgstr "" "Language: uk\n" "Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != 11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || (n % 100 >=11 && n % 100 <=14 )) ? 2: 3);\n" -#: netbox/account/tables.py:27 netbox/templates/account/token.html:22 -#: netbox/templates/users/token.html:17 netbox/users/forms/bulk_import.py:39 -#: netbox/users/forms/model_forms.py:112 +#: account/tables.py:27 templates/account/token.html:22 +#: templates/users/token.html:17 users/forms/bulk_import.py:39 +#: users/forms/model_forms.py:112 msgid "Key" msgstr "Ключ" -#: netbox/account/tables.py:31 netbox/users/forms/filtersets.py:132 +#: account/tables.py:31 users/forms/filtersets.py:132 msgid "Write Enabled" msgstr "Запис дозволено" -#: netbox/account/tables.py:35 netbox/core/choices.py:86 -#: netbox/core/tables/jobs.py:29 netbox/core/tables/tasks.py:79 -#: netbox/extras/tables/tables.py:335 netbox/extras/tables/tables.py:566 -#: netbox/templates/account/token.html:43 -#: netbox/templates/core/configrevision.html:26 -#: netbox/templates/core/configrevision_restore.html:12 -#: netbox/templates/core/job.html:69 netbox/templates/core/rq_task.html:16 -#: netbox/templates/core/rq_task.html:73 -#: netbox/templates/core/rq_worker.html:14 -#: netbox/templates/extras/htmx/script_result.html:12 -#: netbox/templates/extras/journalentry.html:22 -#: netbox/templates/generic/object.html:58 -#: netbox/templates/users/token.html:35 +#: account/tables.py:35 core/choices.py:86 core/tables/jobs.py:29 +#: core/tables/tasks.py:79 extras/tables/tables.py:335 +#: extras/tables/tables.py:566 templates/account/token.html:43 +#: templates/core/configrevision.html:26 +#: templates/core/configrevision_restore.html:12 templates/core/job.html:69 +#: templates/core/rq_task.html:16 templates/core/rq_task.html:73 +#: templates/core/rq_worker.html:14 +#: templates/extras/htmx/script_result.html:12 +#: templates/extras/journalentry.html:22 templates/generic/object.html:58 +#: templates/users/token.html:35 msgid "Created" msgstr "Створено" -#: netbox/account/tables.py:39 netbox/templates/account/token.html:47 -#: netbox/templates/users/token.html:39 netbox/users/forms/bulk_edit.py:117 -#: netbox/users/forms/filtersets.py:136 +#: account/tables.py:39 templates/account/token.html:47 +#: templates/users/token.html:39 users/forms/bulk_edit.py:117 +#: users/forms/filtersets.py:136 msgid "Expires" msgstr "Термін дії закінчується" -#: netbox/account/tables.py:42 netbox/users/forms/filtersets.py:141 +#: account/tables.py:42 users/forms/filtersets.py:141 msgid "Last Used" msgstr "Використано востаннє" -#: netbox/account/tables.py:45 netbox/templates/account/token.html:55 -#: netbox/templates/users/token.html:47 netbox/users/forms/bulk_edit.py:122 -#: netbox/users/forms/model_forms.py:124 +#: account/tables.py:45 templates/account/token.html:55 +#: templates/users/token.html:47 users/forms/bulk_edit.py:122 +#: users/forms/model_forms.py:124 msgid "Allowed IPs" msgstr "Дозволені IP-адреси" -#: netbox/account/views.py:114 +#: account/views.py:114 #, python-brace-format msgid "Logged in as {user}." msgstr "Ввійшов в систему як {user}." -#: netbox/account/views.py:164 +#: account/views.py:164 msgid "You have logged out." msgstr "Ви вийшли з системи." -#: netbox/account/views.py:216 +#: account/views.py:216 msgid "Your preferences have been updated." msgstr "Ваші налаштування було оновлено." -#: netbox/account/views.py:239 +#: account/views.py:239 msgid "LDAP-authenticated user credentials cannot be changed within NetBox." msgstr "" "Облікові дані користувача, підтверджені LDAP, неможливо змінити в NetBox." -#: netbox/account/views.py:254 +#: account/views.py:254 msgid "Your password has been changed successfully." msgstr "Ваш пароль успішно змінено." -#: netbox/circuits/choices.py:21 netbox/dcim/choices.py:20 -#: netbox/dcim/choices.py:102 netbox/dcim/choices.py:185 -#: netbox/dcim/choices.py:237 netbox/dcim/choices.py:1530 -#: netbox/dcim/choices.py:1606 netbox/dcim/choices.py:1656 -#: netbox/virtualization/choices.py:20 netbox/virtualization/choices.py:45 -#: netbox/vpn/choices.py:18 +#: circuits/choices.py:21 dcim/choices.py:20 dcim/choices.py:102 +#: dcim/choices.py:185 dcim/choices.py:237 dcim/choices.py:1530 +#: dcim/choices.py:1606 dcim/choices.py:1656 virtualization/choices.py:20 +#: virtualization/choices.py:45 vpn/choices.py:18 msgid "Planned" msgstr "Заплановано" -#: netbox/circuits/choices.py:22 netbox/netbox/navigation/menu.py:305 +#: circuits/choices.py:22 netbox/navigation/menu.py:305 msgid "Provisioning" msgstr "Забезпечення" -#: netbox/circuits/choices.py:23 netbox/core/tables/tasks.py:22 -#: netbox/dcim/choices.py:22 netbox/dcim/choices.py:103 -#: netbox/dcim/choices.py:184 netbox/dcim/choices.py:236 -#: netbox/dcim/choices.py:1605 netbox/dcim/choices.py:1655 -#: netbox/extras/tables/tables.py:495 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:25 -#: netbox/templates/users/user.html:37 netbox/users/forms/bulk_edit.py:38 -#: netbox/virtualization/choices.py:22 netbox/virtualization/choices.py:44 -#: netbox/vpn/choices.py:19 netbox/wireless/choices.py:25 +#: circuits/choices.py:23 core/tables/tasks.py:22 dcim/choices.py:22 +#: dcim/choices.py:103 dcim/choices.py:184 dcim/choices.py:236 +#: dcim/choices.py:1605 dcim/choices.py:1655 extras/tables/tables.py:495 +#: ipam/choices.py:31 ipam/choices.py:49 ipam/choices.py:69 +#: ipam/choices.py:154 templates/extras/configcontext.html:25 +#: templates/users/user.html:37 users/forms/bulk_edit.py:38 +#: virtualization/choices.py:22 virtualization/choices.py:44 vpn/choices.py:19 +#: wireless/choices.py:25 msgid "Active" msgstr "Активний" -#: netbox/circuits/choices.py:24 netbox/dcim/choices.py:183 -#: netbox/dcim/choices.py:235 netbox/dcim/choices.py:1604 -#: netbox/dcim/choices.py:1657 netbox/virtualization/choices.py:24 -#: netbox/virtualization/choices.py:43 +#: circuits/choices.py:24 dcim/choices.py:183 dcim/choices.py:235 +#: dcim/choices.py:1604 dcim/choices.py:1657 virtualization/choices.py:24 +#: virtualization/choices.py:43 msgid "Offline" msgstr "Офлайн" -#: netbox/circuits/choices.py:25 +#: circuits/choices.py:25 msgid "Deprovisioning" msgstr "Зняття з експлуатації" -#: netbox/circuits/choices.py:26 +#: circuits/choices.py:26 msgid "Decommissioned" msgstr "Виведені з експлуатації" -#: netbox/circuits/choices.py:90 netbox/dcim/choices.py:1617 -#: netbox/tenancy/choices.py:17 +#: circuits/choices.py:90 dcim/choices.py:1617 tenancy/choices.py:17 msgid "Primary" msgstr "Первинний" -#: netbox/circuits/choices.py:91 netbox/ipam/choices.py:90 -#: netbox/tenancy/choices.py:18 +#: circuits/choices.py:91 ipam/choices.py:90 tenancy/choices.py:18 msgid "Secondary" msgstr "Вторинний" -#: netbox/circuits/choices.py:92 netbox/tenancy/choices.py:19 +#: circuits/choices.py:92 tenancy/choices.py:19 msgid "Tertiary" msgstr "Третинний" -#: netbox/circuits/choices.py:93 netbox/tenancy/choices.py:20 +#: circuits/choices.py:93 tenancy/choices.py:20 msgid "Inactive" msgstr "Неактивний" -#: netbox/circuits/filtersets.py:31 netbox/circuits/filtersets.py:198 -#: netbox/dcim/filtersets.py:98 netbox/dcim/filtersets.py:152 -#: netbox/dcim/filtersets.py:212 netbox/dcim/filtersets.py:333 -#: netbox/dcim/filtersets.py:464 netbox/dcim/filtersets.py:1021 -#: netbox/dcim/filtersets.py:1368 netbox/dcim/filtersets.py:1903 -#: netbox/dcim/filtersets.py:2146 netbox/dcim/filtersets.py:2204 -#: netbox/ipam/filtersets.py:339 netbox/ipam/filtersets.py:959 -#: netbox/virtualization/filtersets.py:45 -#: netbox/virtualization/filtersets.py:173 netbox/vpn/filtersets.py:358 +#: circuits/filtersets.py:31 circuits/filtersets.py:198 dcim/filtersets.py:98 +#: dcim/filtersets.py:152 dcim/filtersets.py:212 dcim/filtersets.py:333 +#: dcim/filtersets.py:464 dcim/filtersets.py:1021 dcim/filtersets.py:1368 +#: dcim/filtersets.py:1903 dcim/filtersets.py:2146 dcim/filtersets.py:2204 +#: ipam/filtersets.py:339 ipam/filtersets.py:959 +#: virtualization/filtersets.py:45 virtualization/filtersets.py:173 +#: vpn/filtersets.py:358 msgid "Region (ID)" msgstr "Регіон (ідентифікатор)" -#: netbox/circuits/filtersets.py:38 netbox/circuits/filtersets.py:205 -#: netbox/dcim/filtersets.py:105 netbox/dcim/filtersets.py:158 -#: netbox/dcim/filtersets.py:219 netbox/dcim/filtersets.py:340 -#: netbox/dcim/filtersets.py:471 netbox/dcim/filtersets.py:1028 -#: netbox/dcim/filtersets.py:1375 netbox/dcim/filtersets.py:1910 -#: netbox/dcim/filtersets.py:2153 netbox/dcim/filtersets.py:2211 -#: netbox/extras/filtersets.py:509 netbox/ipam/filtersets.py:346 -#: netbox/ipam/filtersets.py:966 netbox/virtualization/filtersets.py:52 -#: netbox/virtualization/filtersets.py:180 netbox/vpn/filtersets.py:353 +#: circuits/filtersets.py:38 circuits/filtersets.py:205 dcim/filtersets.py:105 +#: dcim/filtersets.py:158 dcim/filtersets.py:219 dcim/filtersets.py:340 +#: dcim/filtersets.py:471 dcim/filtersets.py:1028 dcim/filtersets.py:1375 +#: dcim/filtersets.py:1910 dcim/filtersets.py:2153 dcim/filtersets.py:2211 +#: extras/filtersets.py:509 ipam/filtersets.py:346 ipam/filtersets.py:966 +#: virtualization/filtersets.py:52 virtualization/filtersets.py:180 +#: vpn/filtersets.py:353 msgid "Region (slug)" msgstr "Регіон (скорочення)" -#: netbox/circuits/filtersets.py:44 netbox/circuits/filtersets.py:211 -#: netbox/dcim/filtersets.py:128 netbox/dcim/filtersets.py:225 -#: netbox/dcim/filtersets.py:346 netbox/dcim/filtersets.py:477 -#: netbox/dcim/filtersets.py:1034 netbox/dcim/filtersets.py:1381 -#: netbox/dcim/filtersets.py:1916 netbox/dcim/filtersets.py:2159 -#: netbox/dcim/filtersets.py:2217 netbox/ipam/filtersets.py:352 -#: netbox/ipam/filtersets.py:972 netbox/virtualization/filtersets.py:58 -#: netbox/virtualization/filtersets.py:186 +#: circuits/filtersets.py:44 circuits/filtersets.py:211 dcim/filtersets.py:128 +#: dcim/filtersets.py:225 dcim/filtersets.py:346 dcim/filtersets.py:477 +#: dcim/filtersets.py:1034 dcim/filtersets.py:1381 dcim/filtersets.py:1916 +#: dcim/filtersets.py:2159 dcim/filtersets.py:2217 ipam/filtersets.py:352 +#: ipam/filtersets.py:972 virtualization/filtersets.py:58 +#: virtualization/filtersets.py:186 msgid "Site group (ID)" msgstr "Група тех. майданчиків (ідентифікатор)" -#: netbox/circuits/filtersets.py:51 netbox/circuits/filtersets.py:218 -#: netbox/dcim/filtersets.py:135 netbox/dcim/filtersets.py:232 -#: netbox/dcim/filtersets.py:353 netbox/dcim/filtersets.py:484 -#: netbox/dcim/filtersets.py:1041 netbox/dcim/filtersets.py:1388 -#: netbox/dcim/filtersets.py:1923 netbox/dcim/filtersets.py:2166 -#: netbox/dcim/filtersets.py:2224 netbox/extras/filtersets.py:515 -#: netbox/ipam/filtersets.py:359 netbox/ipam/filtersets.py:979 -#: netbox/virtualization/filtersets.py:65 -#: netbox/virtualization/filtersets.py:193 +#: circuits/filtersets.py:51 circuits/filtersets.py:218 dcim/filtersets.py:135 +#: dcim/filtersets.py:232 dcim/filtersets.py:353 dcim/filtersets.py:484 +#: dcim/filtersets.py:1041 dcim/filtersets.py:1388 dcim/filtersets.py:1923 +#: dcim/filtersets.py:2166 dcim/filtersets.py:2224 extras/filtersets.py:515 +#: ipam/filtersets.py:359 ipam/filtersets.py:979 +#: virtualization/filtersets.py:65 virtualization/filtersets.py:193 msgid "Site group (slug)" msgstr "Група тех. майданчиків (скорочення)" -#: netbox/circuits/filtersets.py:56 netbox/circuits/forms/bulk_edit.py:188 -#: netbox/circuits/forms/bulk_edit.py:216 -#: netbox/circuits/forms/bulk_import.py:124 -#: netbox/circuits/forms/filtersets.py:51 -#: netbox/circuits/forms/filtersets.py:171 -#: netbox/circuits/forms/filtersets.py:209 -#: netbox/circuits/forms/model_forms.py:138 -#: netbox/circuits/forms/model_forms.py:154 -#: netbox/circuits/tables/circuits.py:113 netbox/dcim/forms/bulk_edit.py:168 -#: netbox/dcim/forms/bulk_edit.py:329 netbox/dcim/forms/bulk_edit.py:677 -#: netbox/dcim/forms/bulk_edit.py:873 netbox/dcim/forms/bulk_import.py:131 -#: netbox/dcim/forms/bulk_import.py:230 netbox/dcim/forms/bulk_import.py:309 -#: netbox/dcim/forms/bulk_import.py:540 netbox/dcim/forms/bulk_import.py:1311 -#: netbox/dcim/forms/bulk_import.py:1339 netbox/dcim/forms/filtersets.py:87 -#: netbox/dcim/forms/filtersets.py:225 netbox/dcim/forms/filtersets.py:342 -#: netbox/dcim/forms/filtersets.py:439 netbox/dcim/forms/filtersets.py:753 -#: netbox/dcim/forms/filtersets.py:997 netbox/dcim/forms/filtersets.py:1021 -#: netbox/dcim/forms/filtersets.py:1111 netbox/dcim/forms/filtersets.py:1149 -#: netbox/dcim/forms/filtersets.py:1584 netbox/dcim/forms/filtersets.py:1608 -#: netbox/dcim/forms/filtersets.py:1632 netbox/dcim/forms/model_forms.py:137 -#: netbox/dcim/forms/model_forms.py:165 netbox/dcim/forms/model_forms.py:238 -#: netbox/dcim/forms/model_forms.py:463 netbox/dcim/forms/model_forms.py:723 -#: netbox/dcim/forms/object_create.py:391 netbox/dcim/tables/devices.py:153 -#: netbox/dcim/tables/power.py:26 netbox/dcim/tables/power.py:93 -#: netbox/dcim/tables/racks.py:122 netbox/dcim/tables/racks.py:207 -#: netbox/dcim/tables/sites.py:134 netbox/extras/filtersets.py:525 -#: netbox/ipam/forms/bulk_edit.py:217 netbox/ipam/forms/bulk_edit.py:284 -#: netbox/ipam/forms/bulk_edit.py:451 netbox/ipam/forms/bulk_edit.py:529 -#: netbox/ipam/forms/bulk_import.py:171 netbox/ipam/forms/bulk_import.py:429 -#: netbox/ipam/forms/filtersets.py:153 netbox/ipam/forms/filtersets.py:231 -#: netbox/ipam/forms/filtersets.py:432 netbox/ipam/forms/filtersets.py:489 -#: netbox/ipam/forms/model_forms.py:205 netbox/ipam/forms/model_forms.py:636 -#: netbox/ipam/tables/ip.py:245 netbox/ipam/tables/vlans.py:118 -#: netbox/ipam/tables/vlans.py:221 -#: netbox/templates/circuits/inc/circuit_termination_fields.html:6 -#: netbox/templates/dcim/device.html:22 -#: netbox/templates/dcim/inc/cable_termination.html:8 -#: netbox/templates/dcim/inc/cable_termination.html:33 -#: netbox/templates/dcim/location.html:37 -#: netbox/templates/dcim/powerpanel.html:22 netbox/templates/dcim/rack.html:20 -#: netbox/templates/dcim/rackreservation.html:28 -#: netbox/templates/dcim/site.html:28 netbox/templates/ipam/prefix.html:56 -#: netbox/templates/ipam/vlan.html:23 netbox/templates/ipam/vlan_edit.html:40 -#: netbox/templates/virtualization/cluster.html:42 -#: netbox/templates/virtualization/virtualmachine.html:95 -#: netbox/virtualization/forms/bulk_edit.py:91 -#: netbox/virtualization/forms/bulk_edit.py:109 -#: netbox/virtualization/forms/bulk_edit.py:124 -#: netbox/virtualization/forms/bulk_import.py:59 -#: netbox/virtualization/forms/bulk_import.py:85 -#: netbox/virtualization/forms/filtersets.py:79 -#: netbox/virtualization/forms/filtersets.py:148 -#: netbox/virtualization/forms/model_forms.py:71 -#: netbox/virtualization/forms/model_forms.py:104 -#: netbox/virtualization/forms/model_forms.py:171 -#: netbox/virtualization/tables/clusters.py:77 -#: netbox/virtualization/tables/virtualmachines.py:63 -#: netbox/vpn/forms/filtersets.py:266 netbox/wireless/forms/model_forms.py:76 -#: netbox/wireless/forms/model_forms.py:118 +#: circuits/filtersets.py:56 circuits/forms/bulk_edit.py:188 +#: circuits/forms/bulk_edit.py:216 circuits/forms/bulk_import.py:124 +#: circuits/forms/filtersets.py:51 circuits/forms/filtersets.py:171 +#: circuits/forms/filtersets.py:209 circuits/forms/model_forms.py:138 +#: circuits/forms/model_forms.py:154 circuits/tables/circuits.py:113 +#: dcim/forms/bulk_edit.py:168 dcim/forms/bulk_edit.py:329 +#: dcim/forms/bulk_edit.py:677 dcim/forms/bulk_edit.py:873 +#: dcim/forms/bulk_import.py:131 dcim/forms/bulk_import.py:230 +#: dcim/forms/bulk_import.py:309 dcim/forms/bulk_import.py:540 +#: dcim/forms/bulk_import.py:1311 dcim/forms/bulk_import.py:1339 +#: dcim/forms/filtersets.py:87 dcim/forms/filtersets.py:225 +#: dcim/forms/filtersets.py:342 dcim/forms/filtersets.py:439 +#: dcim/forms/filtersets.py:753 dcim/forms/filtersets.py:997 +#: dcim/forms/filtersets.py:1021 dcim/forms/filtersets.py:1111 +#: dcim/forms/filtersets.py:1149 dcim/forms/filtersets.py:1584 +#: dcim/forms/filtersets.py:1608 dcim/forms/filtersets.py:1632 +#: dcim/forms/model_forms.py:137 dcim/forms/model_forms.py:165 +#: dcim/forms/model_forms.py:238 dcim/forms/model_forms.py:463 +#: dcim/forms/model_forms.py:723 dcim/forms/object_create.py:391 +#: dcim/tables/devices.py:153 dcim/tables/power.py:26 dcim/tables/power.py:93 +#: dcim/tables/racks.py:122 dcim/tables/racks.py:207 dcim/tables/sites.py:134 +#: extras/filtersets.py:525 ipam/forms/bulk_edit.py:218 +#: ipam/forms/bulk_edit.py:285 ipam/forms/bulk_edit.py:484 +#: ipam/forms/bulk_import.py:171 ipam/forms/bulk_import.py:429 +#: ipam/forms/filtersets.py:153 ipam/forms/filtersets.py:231 +#: ipam/forms/filtersets.py:432 ipam/forms/filtersets.py:489 +#: ipam/forms/model_forms.py:205 ipam/forms/model_forms.py:636 +#: ipam/tables/ip.py:245 ipam/tables/vlans.py:118 ipam/tables/vlans.py:221 +#: templates/circuits/inc/circuit_termination_fields.html:6 +#: templates/dcim/device.html:22 templates/dcim/inc/cable_termination.html:8 +#: templates/dcim/inc/cable_termination.html:33 +#: templates/dcim/location.html:37 templates/dcim/powerpanel.html:22 +#: templates/dcim/rack.html:20 templates/dcim/rackreservation.html:28 +#: templates/dcim/site.html:28 templates/ipam/prefix.html:56 +#: templates/ipam/vlan.html:23 templates/ipam/vlan_edit.html:40 +#: templates/virtualization/cluster.html:42 +#: templates/virtualization/virtualmachine.html:95 +#: virtualization/forms/bulk_edit.py:91 virtualization/forms/bulk_edit.py:109 +#: virtualization/forms/bulk_edit.py:124 +#: virtualization/forms/bulk_import.py:59 +#: virtualization/forms/bulk_import.py:85 +#: virtualization/forms/filtersets.py:79 +#: virtualization/forms/filtersets.py:148 +#: virtualization/forms/model_forms.py:71 +#: virtualization/forms/model_forms.py:104 +#: virtualization/forms/model_forms.py:171 +#: virtualization/tables/clusters.py:77 +#: virtualization/tables/virtualmachines.py:63 vpn/forms/filtersets.py:266 +#: wireless/forms/model_forms.py:76 wireless/forms/model_forms.py:118 msgid "Site" msgstr "Тех. майданчик" -#: netbox/circuits/filtersets.py:62 netbox/circuits/filtersets.py:229 -#: netbox/circuits/filtersets.py:274 netbox/dcim/filtersets.py:242 -#: netbox/dcim/filtersets.py:363 netbox/dcim/filtersets.py:458 -#: netbox/extras/filtersets.py:531 netbox/ipam/filtersets.py:238 -#: netbox/ipam/filtersets.py:369 netbox/ipam/filtersets.py:989 -#: netbox/virtualization/filtersets.py:75 -#: netbox/virtualization/filtersets.py:203 netbox/vpn/filtersets.py:363 +#: circuits/filtersets.py:62 circuits/filtersets.py:229 +#: circuits/filtersets.py:274 dcim/filtersets.py:242 dcim/filtersets.py:363 +#: dcim/filtersets.py:458 extras/filtersets.py:531 ipam/filtersets.py:238 +#: ipam/filtersets.py:369 ipam/filtersets.py:989 +#: virtualization/filtersets.py:75 virtualization/filtersets.py:203 +#: vpn/filtersets.py:363 msgid "Site (slug)" msgstr "Тех. майданчик (скорочення)" -#: netbox/circuits/filtersets.py:67 +#: circuits/filtersets.py:67 msgid "ASN (ID)" msgstr "ASN (ідентифікатор)" -#: netbox/circuits/filtersets.py:73 netbox/circuits/forms/filtersets.py:31 -#: netbox/ipam/forms/model_forms.py:159 netbox/ipam/models/asns.py:108 -#: netbox/ipam/models/asns.py:125 netbox/ipam/tables/asn.py:41 -#: netbox/templates/ipam/asn.html:20 +#: circuits/filtersets.py:73 circuits/forms/filtersets.py:31 +#: ipam/forms/model_forms.py:159 ipam/models/asns.py:108 +#: ipam/models/asns.py:125 ipam/tables/asn.py:41 templates/ipam/asn.html:20 msgid "ASN" msgstr "ASN" -#: netbox/circuits/filtersets.py:95 netbox/circuits/filtersets.py:122 -#: netbox/circuits/filtersets.py:156 netbox/circuits/filtersets.py:283 -#: netbox/circuits/filtersets.py:325 netbox/ipam/filtersets.py:243 +#: circuits/filtersets.py:95 circuits/filtersets.py:122 +#: circuits/filtersets.py:156 circuits/filtersets.py:283 +#: circuits/filtersets.py:325 ipam/filtersets.py:243 msgid "Provider (ID)" msgstr "Провайдер (ідентифікатор)" -#: netbox/circuits/filtersets.py:101 netbox/circuits/filtersets.py:128 -#: netbox/circuits/filtersets.py:162 netbox/circuits/filtersets.py:289 -#: netbox/circuits/filtersets.py:331 netbox/ipam/filtersets.py:249 +#: circuits/filtersets.py:101 circuits/filtersets.py:128 +#: circuits/filtersets.py:162 circuits/filtersets.py:289 +#: circuits/filtersets.py:331 ipam/filtersets.py:249 msgid "Provider (slug)" msgstr "Провайдер (скорочення)" -#: netbox/circuits/filtersets.py:167 +#: circuits/filtersets.py:167 msgid "Provider account (ID)" msgstr "Обліковий запис провайдера (ідентифікатор)" -#: netbox/circuits/filtersets.py:173 +#: circuits/filtersets.py:173 msgid "Provider account (account)" msgstr "Обліковий запис провайдера (обліковий запис)" -#: netbox/circuits/filtersets.py:178 +#: circuits/filtersets.py:178 msgid "Provider network (ID)" msgstr "Мережа провайдера (ідентифікатор)" -#: netbox/circuits/filtersets.py:182 +#: circuits/filtersets.py:182 msgid "Circuit type (ID)" msgstr "Тип каналу зв'язку (ідентифікатор)" -#: netbox/circuits/filtersets.py:188 +#: circuits/filtersets.py:188 msgid "Circuit type (slug)" msgstr "Тип каналу зв'язку (скорочення)" -#: netbox/circuits/filtersets.py:223 netbox/circuits/filtersets.py:268 -#: netbox/dcim/filtersets.py:236 netbox/dcim/filtersets.py:357 -#: netbox/dcim/filtersets.py:452 netbox/dcim/filtersets.py:1045 -#: netbox/dcim/filtersets.py:1393 netbox/dcim/filtersets.py:1928 -#: netbox/dcim/filtersets.py:2170 netbox/dcim/filtersets.py:2229 -#: netbox/ipam/filtersets.py:232 netbox/ipam/filtersets.py:363 -#: netbox/ipam/filtersets.py:983 netbox/virtualization/filtersets.py:69 -#: netbox/virtualization/filtersets.py:197 netbox/vpn/filtersets.py:368 +#: circuits/filtersets.py:223 circuits/filtersets.py:268 +#: dcim/filtersets.py:236 dcim/filtersets.py:357 dcim/filtersets.py:452 +#: dcim/filtersets.py:1045 dcim/filtersets.py:1393 dcim/filtersets.py:1928 +#: dcim/filtersets.py:2170 dcim/filtersets.py:2229 ipam/filtersets.py:232 +#: ipam/filtersets.py:363 ipam/filtersets.py:983 +#: virtualization/filtersets.py:69 virtualization/filtersets.py:197 +#: vpn/filtersets.py:368 msgid "Site (ID)" msgstr "Тех. майданчик (ідентифікатор)" -#: netbox/circuits/filtersets.py:233 netbox/circuits/filtersets.py:237 +#: circuits/filtersets.py:233 circuits/filtersets.py:237 msgid "Termination A (ID)" msgstr "Припинення A (ідентифікатор)" -#: netbox/circuits/filtersets.py:260 netbox/circuits/filtersets.py:320 -#: netbox/core/filtersets.py:77 netbox/core/filtersets.py:136 -#: netbox/core/filtersets.py:173 netbox/dcim/filtersets.py:751 -#: netbox/dcim/filtersets.py:1362 netbox/dcim/filtersets.py:2277 -#: netbox/extras/filtersets.py:41 netbox/extras/filtersets.py:63 -#: netbox/extras/filtersets.py:92 netbox/extras/filtersets.py:132 -#: netbox/extras/filtersets.py:181 netbox/extras/filtersets.py:209 -#: netbox/extras/filtersets.py:239 netbox/extras/filtersets.py:276 -#: netbox/extras/filtersets.py:348 netbox/extras/filtersets.py:391 -#: netbox/extras/filtersets.py:438 netbox/extras/filtersets.py:498 -#: netbox/extras/filtersets.py:657 netbox/extras/filtersets.py:703 -#: netbox/ipam/forms/model_forms.py:449 netbox/netbox/filtersets.py:282 -#: netbox/netbox/forms/__init__.py:22 netbox/netbox/forms/base.py:167 -#: netbox/templates/htmx/object_selector.html:28 -#: netbox/templates/inc/filter_list.html:45 -#: netbox/templates/ipam/ipaddress_assign.html:29 -#: netbox/templates/search.html:7 netbox/templates/search.html:26 -#: netbox/tenancy/filtersets.py:99 netbox/users/filtersets.py:23 -#: netbox/users/filtersets.py:57 netbox/users/filtersets.py:102 -#: netbox/users/filtersets.py:150 netbox/utilities/forms/forms.py:104 -#: netbox/utilities/templates/navigation/menu.html:16 +#: circuits/filtersets.py:260 circuits/filtersets.py:320 core/filtersets.py:77 +#: core/filtersets.py:136 core/filtersets.py:173 dcim/filtersets.py:751 +#: dcim/filtersets.py:1362 dcim/filtersets.py:2277 extras/filtersets.py:41 +#: extras/filtersets.py:63 extras/filtersets.py:92 extras/filtersets.py:132 +#: extras/filtersets.py:181 extras/filtersets.py:209 extras/filtersets.py:239 +#: extras/filtersets.py:276 extras/filtersets.py:348 extras/filtersets.py:391 +#: extras/filtersets.py:438 extras/filtersets.py:498 extras/filtersets.py:657 +#: extras/filtersets.py:703 ipam/forms/model_forms.py:449 +#: netbox/filtersets.py:282 netbox/forms/__init__.py:22 +#: netbox/forms/base.py:167 templates/htmx/object_selector.html:28 +#: templates/inc/filter_list.html:46 templates/ipam/ipaddress_assign.html:29 +#: templates/search.html:7 templates/search.html:26 tenancy/filtersets.py:99 +#: users/filtersets.py:23 users/filtersets.py:57 users/filtersets.py:102 +#: users/filtersets.py:150 utilities/forms/forms.py:104 +#: utilities/templates/navigation/menu.html:16 msgid "Search" msgstr "Пошук" -#: netbox/circuits/filtersets.py:264 netbox/circuits/forms/bulk_edit.py:172 -#: netbox/circuits/forms/bulk_edit.py:246 -#: netbox/circuits/forms/bulk_import.py:115 -#: netbox/circuits/forms/filtersets.py:198 -#: netbox/circuits/forms/filtersets.py:214 -#: netbox/circuits/forms/filtersets.py:260 -#: netbox/circuits/forms/model_forms.py:111 -#: netbox/circuits/forms/model_forms.py:133 -#: netbox/circuits/forms/model_forms.py:199 -#: netbox/circuits/tables/circuits.py:104 -#: netbox/circuits/tables/circuits.py:164 netbox/dcim/forms/connections.py:73 -#: netbox/templates/circuits/circuit.html:15 -#: netbox/templates/circuits/circuitgroupassignment.html:26 -#: netbox/templates/circuits/circuittermination.html:19 -#: netbox/templates/dcim/inc/cable_termination.html:55 -#: netbox/templates/dcim/trace/circuit.html:4 +#: circuits/filtersets.py:264 circuits/forms/bulk_edit.py:172 +#: circuits/forms/bulk_edit.py:246 circuits/forms/bulk_import.py:115 +#: circuits/forms/filtersets.py:198 circuits/forms/filtersets.py:214 +#: circuits/forms/filtersets.py:260 circuits/forms/model_forms.py:111 +#: circuits/forms/model_forms.py:133 circuits/forms/model_forms.py:199 +#: circuits/tables/circuits.py:104 circuits/tables/circuits.py:164 +#: dcim/forms/connections.py:73 templates/circuits/circuit.html:15 +#: templates/circuits/circuitgroupassignment.html:26 +#: templates/circuits/circuittermination.html:19 +#: templates/dcim/inc/cable_termination.html:55 +#: templates/dcim/trace/circuit.html:4 msgid "Circuit" msgstr "Канал зв'язку" -#: netbox/circuits/filtersets.py:278 +#: circuits/filtersets.py:278 msgid "ProviderNetwork (ID)" msgstr "Мережа провайдера (ідентифікатор)" -#: netbox/circuits/filtersets.py:335 +#: circuits/filtersets.py:335 msgid "Circuit (ID)" msgstr "Канал зв'язку (ідентифікатор)" -#: netbox/circuits/filtersets.py:341 +#: circuits/filtersets.py:341 msgid "Circuit (CID)" msgstr "Канал зв'язку (ідентифікатор вмісту)" -#: netbox/circuits/filtersets.py:345 +#: circuits/filtersets.py:345 msgid "Circuit group (ID)" msgstr "Группа каналів зв'язку (ідентифікатор)" -#: netbox/circuits/filtersets.py:351 +#: circuits/filtersets.py:351 msgid "Circuit group (slug)" msgstr "Группа каналів зв'язку (скорочення)" -#: netbox/circuits/forms/bulk_edit.py:30 -#: netbox/circuits/forms/filtersets.py:56 -#: netbox/circuits/forms/model_forms.py:29 -#: netbox/circuits/tables/providers.py:33 netbox/dcim/forms/bulk_edit.py:128 -#: netbox/dcim/forms/filtersets.py:195 netbox/dcim/forms/model_forms.py:123 -#: netbox/dcim/tables/sites.py:94 netbox/ipam/models/asns.py:126 -#: netbox/ipam/tables/asn.py:27 netbox/ipam/views.py:213 -#: netbox/netbox/navigation/menu.py:172 netbox/netbox/navigation/menu.py:175 -#: netbox/templates/circuits/provider.html:23 +#: circuits/forms/bulk_edit.py:30 circuits/forms/filtersets.py:56 +#: circuits/forms/model_forms.py:29 circuits/tables/providers.py:33 +#: dcim/forms/bulk_edit.py:128 dcim/forms/filtersets.py:195 +#: dcim/forms/model_forms.py:123 dcim/tables/sites.py:94 +#: ipam/models/asns.py:126 ipam/tables/asn.py:27 ipam/views.py:213 +#: netbox/navigation/menu.py:172 netbox/navigation/menu.py:175 +#: templates/circuits/provider.html:23 msgid "ASNs" msgstr "ASNs" -#: netbox/circuits/forms/bulk_edit.py:34 netbox/circuits/forms/bulk_edit.py:56 -#: netbox/circuits/forms/bulk_edit.py:83 -#: netbox/circuits/forms/bulk_edit.py:104 -#: netbox/circuits/forms/bulk_edit.py:164 -#: netbox/circuits/forms/bulk_edit.py:183 -#: netbox/circuits/forms/bulk_edit.py:228 netbox/core/forms/bulk_edit.py:28 -#: netbox/dcim/forms/bulk_create.py:35 netbox/dcim/forms/bulk_edit.py:73 -#: netbox/dcim/forms/bulk_edit.py:92 netbox/dcim/forms/bulk_edit.py:151 -#: netbox/dcim/forms/bulk_edit.py:192 netbox/dcim/forms/bulk_edit.py:210 -#: netbox/dcim/forms/bulk_edit.py:288 netbox/dcim/forms/bulk_edit.py:432 -#: netbox/dcim/forms/bulk_edit.py:466 netbox/dcim/forms/bulk_edit.py:481 -#: netbox/dcim/forms/bulk_edit.py:540 netbox/dcim/forms/bulk_edit.py:584 -#: netbox/dcim/forms/bulk_edit.py:618 netbox/dcim/forms/bulk_edit.py:642 -#: netbox/dcim/forms/bulk_edit.py:715 netbox/dcim/forms/bulk_edit.py:767 -#: netbox/dcim/forms/bulk_edit.py:819 netbox/dcim/forms/bulk_edit.py:842 -#: netbox/dcim/forms/bulk_edit.py:890 netbox/dcim/forms/bulk_edit.py:960 -#: netbox/dcim/forms/bulk_edit.py:1013 netbox/dcim/forms/bulk_edit.py:1048 -#: netbox/dcim/forms/bulk_edit.py:1088 netbox/dcim/forms/bulk_edit.py:1132 -#: netbox/dcim/forms/bulk_edit.py:1177 netbox/dcim/forms/bulk_edit.py:1204 -#: netbox/dcim/forms/bulk_edit.py:1222 netbox/dcim/forms/bulk_edit.py:1240 -#: netbox/dcim/forms/bulk_edit.py:1258 netbox/dcim/forms/bulk_edit.py:1682 -#: netbox/extras/forms/bulk_edit.py:39 netbox/extras/forms/bulk_edit.py:149 -#: netbox/extras/forms/bulk_edit.py:178 netbox/extras/forms/bulk_edit.py:208 -#: netbox/extras/forms/bulk_edit.py:256 netbox/extras/forms/bulk_edit.py:274 -#: netbox/extras/forms/bulk_edit.py:298 netbox/extras/forms/bulk_edit.py:312 -#: netbox/extras/forms/bulk_edit.py:339 netbox/extras/tables/tables.py:79 -#: netbox/ipam/forms/bulk_edit.py:52 netbox/ipam/forms/bulk_edit.py:72 -#: netbox/ipam/forms/bulk_edit.py:92 netbox/ipam/forms/bulk_edit.py:116 -#: netbox/ipam/forms/bulk_edit.py:145 netbox/ipam/forms/bulk_edit.py:174 -#: netbox/ipam/forms/bulk_edit.py:193 netbox/ipam/forms/bulk_edit.py:275 -#: netbox/ipam/forms/bulk_edit.py:320 netbox/ipam/forms/bulk_edit.py:368 -#: netbox/ipam/forms/bulk_edit.py:411 netbox/ipam/forms/bulk_edit.py:427 -#: netbox/ipam/forms/bulk_edit.py:561 netbox/ipam/forms/bulk_edit.py:592 -#: netbox/templates/account/token.html:35 -#: netbox/templates/circuits/circuit.html:59 -#: netbox/templates/circuits/circuitgroup.html:32 -#: netbox/templates/circuits/circuittype.html:26 -#: netbox/templates/circuits/inc/circuit_termination_fields.html:88 -#: netbox/templates/circuits/provider.html:33 -#: netbox/templates/circuits/providernetwork.html:32 -#: netbox/templates/core/datasource.html:54 -#: netbox/templates/core/plugin.html:79 netbox/templates/dcim/cable.html:36 -#: netbox/templates/dcim/consoleport.html:44 -#: netbox/templates/dcim/consoleserverport.html:44 -#: netbox/templates/dcim/device.html:94 -#: netbox/templates/dcim/devicebay.html:32 -#: netbox/templates/dcim/devicerole.html:30 -#: netbox/templates/dcim/devicetype.html:33 -#: netbox/templates/dcim/frontport.html:58 -#: netbox/templates/dcim/interface.html:69 -#: netbox/templates/dcim/inventoryitem.html:60 -#: netbox/templates/dcim/inventoryitemrole.html:22 -#: netbox/templates/dcim/location.html:33 -#: netbox/templates/dcim/manufacturer.html:40 -#: netbox/templates/dcim/module.html:73 -#: netbox/templates/dcim/modulebay.html:42 -#: netbox/templates/dcim/moduletype.html:26 -#: netbox/templates/dcim/platform.html:33 -#: netbox/templates/dcim/powerfeed.html:40 -#: netbox/templates/dcim/poweroutlet.html:40 -#: netbox/templates/dcim/powerpanel.html:30 -#: netbox/templates/dcim/powerport.html:40 netbox/templates/dcim/rack.html:53 -#: netbox/templates/dcim/rackreservation.html:62 -#: netbox/templates/dcim/rackrole.html:26 -#: netbox/templates/dcim/racktype.html:24 -#: netbox/templates/dcim/rearport.html:54 netbox/templates/dcim/region.html:33 -#: netbox/templates/dcim/site.html:60 netbox/templates/dcim/sitegroup.html:33 -#: netbox/templates/dcim/virtualchassis.html:31 -#: netbox/templates/extras/configcontext.html:21 -#: netbox/templates/extras/configtemplate.html:17 -#: netbox/templates/extras/customfield.html:34 -#: netbox/templates/extras/dashboard/widget_add.html:14 -#: netbox/templates/extras/eventrule.html:21 -#: netbox/templates/extras/exporttemplate.html:19 -#: netbox/templates/extras/notificationgroup.html:20 -#: netbox/templates/extras/savedfilter.html:17 -#: netbox/templates/extras/script_list.html:45 -#: netbox/templates/extras/tag.html:20 netbox/templates/extras/webhook.html:17 -#: netbox/templates/generic/bulk_import.html:120 -#: netbox/templates/ipam/aggregate.html:43 netbox/templates/ipam/asn.html:42 -#: netbox/templates/ipam/asnrange.html:38 -#: netbox/templates/ipam/fhrpgroup.html:34 -#: netbox/templates/ipam/ipaddress.html:55 -#: netbox/templates/ipam/iprange.html:67 netbox/templates/ipam/prefix.html:81 -#: netbox/templates/ipam/rir.html:26 netbox/templates/ipam/role.html:26 -#: netbox/templates/ipam/routetarget.html:21 -#: netbox/templates/ipam/service.html:50 -#: netbox/templates/ipam/servicetemplate.html:27 -#: netbox/templates/ipam/vlan.html:62 netbox/templates/ipam/vlangroup.html:34 -#: netbox/templates/ipam/vrf.html:33 netbox/templates/tenancy/contact.html:67 -#: netbox/templates/tenancy/contactgroup.html:25 -#: netbox/templates/tenancy/contactrole.html:22 -#: netbox/templates/tenancy/tenant.html:24 -#: netbox/templates/tenancy/tenantgroup.html:33 -#: netbox/templates/users/group.html:21 -#: netbox/templates/users/objectpermission.html:21 -#: netbox/templates/users/token.html:27 -#: netbox/templates/virtualization/cluster.html:25 -#: netbox/templates/virtualization/clustergroup.html:26 -#: netbox/templates/virtualization/clustertype.html:26 -#: netbox/templates/virtualization/virtualdisk.html:39 -#: netbox/templates/virtualization/virtualmachine.html:31 -#: netbox/templates/virtualization/vminterface.html:51 -#: netbox/templates/vpn/ikepolicy.html:17 -#: netbox/templates/vpn/ikeproposal.html:17 -#: netbox/templates/vpn/ipsecpolicy.html:17 -#: netbox/templates/vpn/ipsecprofile.html:17 -#: netbox/templates/vpn/ipsecprofile.html:40 -#: netbox/templates/vpn/ipsecprofile.html:73 -#: netbox/templates/vpn/ipsecproposal.html:17 -#: netbox/templates/vpn/l2vpn.html:26 netbox/templates/vpn/tunnel.html:33 -#: netbox/templates/vpn/tunnelgroup.html:30 -#: netbox/templates/wireless/wirelesslan.html:26 -#: netbox/templates/wireless/wirelesslangroup.html:33 -#: netbox/templates/wireless/wirelesslink.html:34 -#: netbox/tenancy/forms/bulk_edit.py:32 netbox/tenancy/forms/bulk_edit.py:80 -#: netbox/tenancy/forms/bulk_edit.py:122 netbox/users/forms/bulk_edit.py:64 -#: netbox/users/forms/bulk_edit.py:82 netbox/users/forms/bulk_edit.py:112 -#: netbox/virtualization/forms/bulk_edit.py:32 -#: netbox/virtualization/forms/bulk_edit.py:46 -#: netbox/virtualization/forms/bulk_edit.py:100 -#: netbox/virtualization/forms/bulk_edit.py:177 -#: netbox/virtualization/forms/bulk_edit.py:228 -#: netbox/virtualization/forms/bulk_edit.py:337 -#: netbox/vpn/forms/bulk_edit.py:28 netbox/vpn/forms/bulk_edit.py:64 -#: netbox/vpn/forms/bulk_edit.py:121 netbox/vpn/forms/bulk_edit.py:155 -#: netbox/vpn/forms/bulk_edit.py:190 netbox/vpn/forms/bulk_edit.py:215 -#: netbox/vpn/forms/bulk_edit.py:247 netbox/vpn/forms/bulk_edit.py:274 -#: netbox/wireless/forms/bulk_edit.py:29 netbox/wireless/forms/bulk_edit.py:82 -#: netbox/wireless/forms/bulk_edit.py:140 +#: circuits/forms/bulk_edit.py:34 circuits/forms/bulk_edit.py:56 +#: circuits/forms/bulk_edit.py:83 circuits/forms/bulk_edit.py:104 +#: circuits/forms/bulk_edit.py:164 circuits/forms/bulk_edit.py:183 +#: circuits/forms/bulk_edit.py:228 core/forms/bulk_edit.py:28 +#: dcim/forms/bulk_create.py:35 dcim/forms/bulk_edit.py:73 +#: dcim/forms/bulk_edit.py:92 dcim/forms/bulk_edit.py:151 +#: dcim/forms/bulk_edit.py:192 dcim/forms/bulk_edit.py:210 +#: dcim/forms/bulk_edit.py:288 dcim/forms/bulk_edit.py:432 +#: dcim/forms/bulk_edit.py:466 dcim/forms/bulk_edit.py:481 +#: dcim/forms/bulk_edit.py:540 dcim/forms/bulk_edit.py:584 +#: dcim/forms/bulk_edit.py:618 dcim/forms/bulk_edit.py:642 +#: dcim/forms/bulk_edit.py:715 dcim/forms/bulk_edit.py:767 +#: dcim/forms/bulk_edit.py:819 dcim/forms/bulk_edit.py:842 +#: dcim/forms/bulk_edit.py:890 dcim/forms/bulk_edit.py:960 +#: dcim/forms/bulk_edit.py:1013 dcim/forms/bulk_edit.py:1048 +#: dcim/forms/bulk_edit.py:1088 dcim/forms/bulk_edit.py:1132 +#: dcim/forms/bulk_edit.py:1177 dcim/forms/bulk_edit.py:1204 +#: dcim/forms/bulk_edit.py:1222 dcim/forms/bulk_edit.py:1240 +#: dcim/forms/bulk_edit.py:1258 dcim/forms/bulk_edit.py:1682 +#: extras/forms/bulk_edit.py:39 extras/forms/bulk_edit.py:149 +#: extras/forms/bulk_edit.py:178 extras/forms/bulk_edit.py:208 +#: extras/forms/bulk_edit.py:256 extras/forms/bulk_edit.py:274 +#: extras/forms/bulk_edit.py:298 extras/forms/bulk_edit.py:312 +#: extras/forms/bulk_edit.py:339 extras/tables/tables.py:79 +#: ipam/forms/bulk_edit.py:53 ipam/forms/bulk_edit.py:73 +#: ipam/forms/bulk_edit.py:93 ipam/forms/bulk_edit.py:117 +#: ipam/forms/bulk_edit.py:146 ipam/forms/bulk_edit.py:175 +#: ipam/forms/bulk_edit.py:194 ipam/forms/bulk_edit.py:276 +#: ipam/forms/bulk_edit.py:321 ipam/forms/bulk_edit.py:369 +#: ipam/forms/bulk_edit.py:412 ipam/forms/bulk_edit.py:428 +#: ipam/forms/bulk_edit.py:516 ipam/forms/bulk_edit.py:547 +#: templates/account/token.html:35 templates/circuits/circuit.html:59 +#: templates/circuits/circuitgroup.html:32 +#: templates/circuits/circuittype.html:26 +#: templates/circuits/inc/circuit_termination_fields.html:88 +#: templates/circuits/provider.html:33 +#: templates/circuits/providernetwork.html:32 +#: templates/core/datasource.html:54 templates/core/plugin.html:80 +#: templates/dcim/cable.html:36 templates/dcim/consoleport.html:44 +#: templates/dcim/consoleserverport.html:44 templates/dcim/device.html:94 +#: templates/dcim/devicebay.html:32 templates/dcim/devicerole.html:30 +#: templates/dcim/devicetype.html:33 templates/dcim/frontport.html:58 +#: templates/dcim/interface.html:69 templates/dcim/inventoryitem.html:60 +#: templates/dcim/inventoryitemrole.html:22 templates/dcim/location.html:33 +#: templates/dcim/manufacturer.html:40 templates/dcim/module.html:73 +#: templates/dcim/modulebay.html:42 templates/dcim/moduletype.html:37 +#: templates/dcim/platform.html:33 templates/dcim/powerfeed.html:40 +#: templates/dcim/poweroutlet.html:40 templates/dcim/powerpanel.html:30 +#: templates/dcim/powerport.html:40 templates/dcim/rack.html:53 +#: templates/dcim/rackreservation.html:62 templates/dcim/rackrole.html:26 +#: templates/dcim/racktype.html:24 templates/dcim/rearport.html:54 +#: templates/dcim/region.html:33 templates/dcim/site.html:60 +#: templates/dcim/sitegroup.html:33 templates/dcim/virtualchassis.html:31 +#: templates/extras/configcontext.html:21 +#: templates/extras/configtemplate.html:17 +#: templates/extras/customfield.html:34 +#: templates/extras/dashboard/widget_add.html:14 +#: templates/extras/eventrule.html:21 templates/extras/exporttemplate.html:19 +#: templates/extras/notificationgroup.html:20 +#: templates/extras/savedfilter.html:17 templates/extras/script_list.html:45 +#: templates/extras/tag.html:20 templates/extras/webhook.html:17 +#: templates/generic/bulk_import.html:120 templates/ipam/aggregate.html:43 +#: templates/ipam/asn.html:42 templates/ipam/asnrange.html:38 +#: templates/ipam/fhrpgroup.html:34 templates/ipam/ipaddress.html:55 +#: templates/ipam/iprange.html:67 templates/ipam/prefix.html:81 +#: templates/ipam/rir.html:26 templates/ipam/role.html:26 +#: templates/ipam/routetarget.html:21 templates/ipam/service.html:50 +#: templates/ipam/servicetemplate.html:27 templates/ipam/vlan.html:62 +#: templates/ipam/vlangroup.html:34 templates/ipam/vrf.html:33 +#: templates/tenancy/contact.html:67 templates/tenancy/contactgroup.html:25 +#: templates/tenancy/contactrole.html:22 templates/tenancy/tenant.html:24 +#: templates/tenancy/tenantgroup.html:33 templates/users/group.html:21 +#: templates/users/objectpermission.html:21 templates/users/token.html:27 +#: templates/virtualization/cluster.html:25 +#: templates/virtualization/clustergroup.html:26 +#: templates/virtualization/clustertype.html:26 +#: templates/virtualization/virtualdisk.html:39 +#: templates/virtualization/virtualmachine.html:31 +#: templates/virtualization/vminterface.html:51 +#: templates/vpn/ikepolicy.html:17 templates/vpn/ikeproposal.html:17 +#: templates/vpn/ipsecpolicy.html:17 templates/vpn/ipsecprofile.html:17 +#: templates/vpn/ipsecprofile.html:40 templates/vpn/ipsecprofile.html:73 +#: templates/vpn/ipsecproposal.html:17 templates/vpn/l2vpn.html:26 +#: templates/vpn/tunnel.html:33 templates/vpn/tunnelgroup.html:30 +#: templates/wireless/wirelesslan.html:26 +#: templates/wireless/wirelesslangroup.html:33 +#: templates/wireless/wirelesslink.html:34 tenancy/forms/bulk_edit.py:32 +#: tenancy/forms/bulk_edit.py:80 tenancy/forms/bulk_edit.py:122 +#: users/forms/bulk_edit.py:64 users/forms/bulk_edit.py:82 +#: users/forms/bulk_edit.py:112 virtualization/forms/bulk_edit.py:32 +#: virtualization/forms/bulk_edit.py:46 virtualization/forms/bulk_edit.py:100 +#: virtualization/forms/bulk_edit.py:177 virtualization/forms/bulk_edit.py:228 +#: virtualization/forms/bulk_edit.py:337 vpn/forms/bulk_edit.py:28 +#: vpn/forms/bulk_edit.py:64 vpn/forms/bulk_edit.py:121 +#: vpn/forms/bulk_edit.py:155 vpn/forms/bulk_edit.py:190 +#: vpn/forms/bulk_edit.py:215 vpn/forms/bulk_edit.py:247 +#: vpn/forms/bulk_edit.py:274 wireless/forms/bulk_edit.py:29 +#: wireless/forms/bulk_edit.py:82 wireless/forms/bulk_edit.py:140 msgid "Description" msgstr "Опис" -#: netbox/circuits/forms/bulk_edit.py:51 netbox/circuits/forms/bulk_edit.py:73 -#: netbox/circuits/forms/bulk_edit.py:123 -#: netbox/circuits/forms/bulk_import.py:36 -#: netbox/circuits/forms/bulk_import.py:51 -#: netbox/circuits/forms/bulk_import.py:74 -#: netbox/circuits/forms/filtersets.py:70 -#: netbox/circuits/forms/filtersets.py:88 -#: netbox/circuits/forms/filtersets.py:116 -#: netbox/circuits/forms/filtersets.py:131 -#: netbox/circuits/forms/filtersets.py:199 -#: netbox/circuits/forms/filtersets.py:232 -#: netbox/circuits/forms/filtersets.py:255 -#: netbox/circuits/forms/model_forms.py:47 -#: netbox/circuits/forms/model_forms.py:61 -#: netbox/circuits/forms/model_forms.py:93 -#: netbox/circuits/tables/circuits.py:58 -#: netbox/circuits/tables/circuits.py:108 -#: netbox/circuits/tables/circuits.py:160 -#: netbox/circuits/tables/providers.py:72 -#: netbox/circuits/tables/providers.py:103 -#: netbox/templates/circuits/circuit.html:18 -#: netbox/templates/circuits/circuittermination.html:25 -#: netbox/templates/circuits/provider.html:20 -#: netbox/templates/circuits/provideraccount.html:20 -#: netbox/templates/circuits/providernetwork.html:20 -#: netbox/templates/dcim/inc/cable_termination.html:51 +#: circuits/forms/bulk_edit.py:51 circuits/forms/bulk_edit.py:73 +#: circuits/forms/bulk_edit.py:123 circuits/forms/bulk_import.py:36 +#: circuits/forms/bulk_import.py:51 circuits/forms/bulk_import.py:74 +#: circuits/forms/filtersets.py:70 circuits/forms/filtersets.py:88 +#: circuits/forms/filtersets.py:116 circuits/forms/filtersets.py:131 +#: circuits/forms/filtersets.py:199 circuits/forms/filtersets.py:232 +#: circuits/forms/filtersets.py:255 circuits/forms/model_forms.py:47 +#: circuits/forms/model_forms.py:61 circuits/forms/model_forms.py:93 +#: circuits/tables/circuits.py:58 circuits/tables/circuits.py:108 +#: circuits/tables/circuits.py:160 circuits/tables/providers.py:72 +#: circuits/tables/providers.py:103 templates/circuits/circuit.html:18 +#: templates/circuits/circuittermination.html:25 +#: templates/circuits/provider.html:20 +#: templates/circuits/provideraccount.html:20 +#: templates/circuits/providernetwork.html:20 +#: templates/dcim/inc/cable_termination.html:51 msgid "Provider" msgstr "Провайдер" -#: netbox/circuits/forms/bulk_edit.py:80 -#: netbox/circuits/forms/filtersets.py:91 -#: netbox/templates/circuits/providernetwork.html:28 +#: circuits/forms/bulk_edit.py:80 circuits/forms/filtersets.py:91 +#: templates/circuits/providernetwork.html:28 msgid "Service ID" msgstr "Ідентифікатор служби" -#: netbox/circuits/forms/bulk_edit.py:100 -#: netbox/circuits/forms/filtersets.py:107 netbox/dcim/forms/bulk_edit.py:206 -#: netbox/dcim/forms/bulk_edit.py:604 netbox/dcim/forms/bulk_edit.py:804 -#: netbox/dcim/forms/bulk_edit.py:1173 netbox/dcim/forms/bulk_edit.py:1200 -#: netbox/dcim/forms/bulk_edit.py:1678 netbox/dcim/forms/filtersets.py:1064 -#: netbox/dcim/forms/filtersets.py:1455 netbox/dcim/forms/filtersets.py:1479 -#: netbox/dcim/tables/devices.py:704 netbox/dcim/tables/devices.py:761 -#: netbox/dcim/tables/devices.py:1003 netbox/dcim/tables/devicetypes.py:249 -#: netbox/dcim/tables/devicetypes.py:264 netbox/dcim/tables/racks.py:33 -#: netbox/extras/forms/bulk_edit.py:270 netbox/extras/tables/tables.py:443 -#: netbox/templates/circuits/circuittype.html:30 -#: netbox/templates/dcim/cable.html:40 -#: netbox/templates/dcim/devicerole.html:34 -#: netbox/templates/dcim/frontport.html:40 -#: netbox/templates/dcim/inventoryitemrole.html:26 -#: netbox/templates/dcim/rackrole.html:30 -#: netbox/templates/dcim/rearport.html:40 netbox/templates/extras/tag.html:26 +#: circuits/forms/bulk_edit.py:100 circuits/forms/filtersets.py:107 +#: dcim/forms/bulk_edit.py:206 dcim/forms/bulk_edit.py:604 +#: dcim/forms/bulk_edit.py:804 dcim/forms/bulk_edit.py:1173 +#: dcim/forms/bulk_edit.py:1200 dcim/forms/bulk_edit.py:1678 +#: dcim/forms/filtersets.py:1064 dcim/forms/filtersets.py:1455 +#: dcim/forms/filtersets.py:1479 dcim/tables/devices.py:704 +#: dcim/tables/devices.py:761 dcim/tables/devices.py:1003 +#: dcim/tables/devicetypes.py:249 dcim/tables/devicetypes.py:264 +#: dcim/tables/racks.py:33 extras/forms/bulk_edit.py:270 +#: extras/tables/tables.py:443 templates/circuits/circuittype.html:30 +#: templates/dcim/cable.html:40 templates/dcim/devicerole.html:34 +#: templates/dcim/frontport.html:40 templates/dcim/inventoryitemrole.html:26 +#: templates/dcim/rackrole.html:30 templates/dcim/rearport.html:40 +#: templates/extras/tag.html:26 msgid "Color" msgstr "Колір" -#: netbox/circuits/forms/bulk_edit.py:118 -#: netbox/circuits/forms/bulk_import.py:87 -#: netbox/circuits/forms/filtersets.py:126 netbox/core/forms/bulk_edit.py:18 -#: netbox/core/forms/filtersets.py:33 netbox/core/tables/change_logging.py:32 -#: netbox/core/tables/data.py:20 netbox/core/tables/jobs.py:18 -#: netbox/dcim/forms/bulk_edit.py:782 netbox/dcim/forms/bulk_edit.py:921 -#: netbox/dcim/forms/bulk_edit.py:989 netbox/dcim/forms/bulk_edit.py:1008 -#: netbox/dcim/forms/bulk_edit.py:1031 netbox/dcim/forms/bulk_edit.py:1073 -#: netbox/dcim/forms/bulk_edit.py:1117 netbox/dcim/forms/bulk_edit.py:1168 -#: netbox/dcim/forms/bulk_edit.py:1195 netbox/dcim/forms/bulk_import.py:188 -#: netbox/dcim/forms/bulk_import.py:260 netbox/dcim/forms/bulk_import.py:708 -#: netbox/dcim/forms/bulk_import.py:734 netbox/dcim/forms/bulk_import.py:760 -#: netbox/dcim/forms/bulk_import.py:780 netbox/dcim/forms/bulk_import.py:863 -#: netbox/dcim/forms/bulk_import.py:957 netbox/dcim/forms/bulk_import.py:999 -#: netbox/dcim/forms/bulk_import.py:1213 netbox/dcim/forms/bulk_import.py:1376 -#: netbox/dcim/forms/filtersets.py:955 netbox/dcim/forms/filtersets.py:1054 -#: netbox/dcim/forms/filtersets.py:1175 netbox/dcim/forms/filtersets.py:1247 -#: netbox/dcim/forms/filtersets.py:1272 netbox/dcim/forms/filtersets.py:1296 -#: netbox/dcim/forms/filtersets.py:1316 netbox/dcim/forms/filtersets.py:1353 -#: netbox/dcim/forms/filtersets.py:1450 netbox/dcim/forms/filtersets.py:1474 -#: netbox/dcim/forms/model_forms.py:703 netbox/dcim/forms/model_forms.py:709 -#: netbox/dcim/forms/object_import.py:84 -#: netbox/dcim/forms/object_import.py:113 -#: netbox/dcim/forms/object_import.py:145 netbox/dcim/tables/devices.py:178 -#: netbox/dcim/tables/devices.py:814 netbox/dcim/tables/power.py:77 -#: netbox/dcim/tables/racks.py:138 netbox/extras/forms/bulk_import.py:42 -#: netbox/extras/tables/tables.py:405 netbox/extras/tables/tables.py:465 -#: netbox/netbox/tables/tables.py:240 -#: netbox/templates/circuits/circuit.html:30 -#: netbox/templates/core/datasource.html:38 -#: netbox/templates/dcim/cable.html:15 -#: netbox/templates/dcim/consoleport.html:36 -#: netbox/templates/dcim/consoleserverport.html:36 -#: netbox/templates/dcim/frontport.html:36 -#: netbox/templates/dcim/interface.html:46 -#: netbox/templates/dcim/interface.html:169 -#: netbox/templates/dcim/interface.html:311 -#: netbox/templates/dcim/powerfeed.html:32 -#: netbox/templates/dcim/poweroutlet.html:36 -#: netbox/templates/dcim/powerport.html:36 -#: netbox/templates/dcim/rearport.html:36 -#: netbox/templates/extras/eventrule.html:74 -#: netbox/templates/virtualization/cluster.html:17 -#: netbox/templates/vpn/l2vpn.html:22 -#: netbox/templates/wireless/inc/authentication_attrs.html:8 -#: netbox/templates/wireless/inc/wirelesslink_interface.html:14 -#: netbox/virtualization/forms/bulk_edit.py:60 -#: netbox/virtualization/forms/bulk_import.py:41 -#: netbox/virtualization/forms/filtersets.py:54 -#: netbox/virtualization/forms/model_forms.py:62 -#: netbox/virtualization/tables/clusters.py:66 -#: netbox/vpn/forms/bulk_edit.py:264 netbox/vpn/forms/bulk_import.py:264 -#: netbox/vpn/forms/filtersets.py:217 netbox/vpn/forms/model_forms.py:84 -#: netbox/vpn/forms/model_forms.py:119 netbox/vpn/forms/model_forms.py:231 +#: circuits/forms/bulk_edit.py:118 circuits/forms/bulk_import.py:87 +#: circuits/forms/filtersets.py:126 core/forms/bulk_edit.py:18 +#: core/forms/filtersets.py:33 core/tables/change_logging.py:32 +#: core/tables/data.py:20 core/tables/jobs.py:18 dcim/forms/bulk_edit.py:782 +#: dcim/forms/bulk_edit.py:921 dcim/forms/bulk_edit.py:989 +#: dcim/forms/bulk_edit.py:1008 dcim/forms/bulk_edit.py:1031 +#: dcim/forms/bulk_edit.py:1073 dcim/forms/bulk_edit.py:1117 +#: dcim/forms/bulk_edit.py:1168 dcim/forms/bulk_edit.py:1195 +#: dcim/forms/bulk_import.py:188 dcim/forms/bulk_import.py:260 +#: dcim/forms/bulk_import.py:708 dcim/forms/bulk_import.py:734 +#: dcim/forms/bulk_import.py:760 dcim/forms/bulk_import.py:780 +#: dcim/forms/bulk_import.py:863 dcim/forms/bulk_import.py:957 +#: dcim/forms/bulk_import.py:999 dcim/forms/bulk_import.py:1213 +#: dcim/forms/bulk_import.py:1376 dcim/forms/filtersets.py:955 +#: dcim/forms/filtersets.py:1054 dcim/forms/filtersets.py:1175 +#: dcim/forms/filtersets.py:1247 dcim/forms/filtersets.py:1272 +#: dcim/forms/filtersets.py:1296 dcim/forms/filtersets.py:1316 +#: dcim/forms/filtersets.py:1353 dcim/forms/filtersets.py:1450 +#: dcim/forms/filtersets.py:1474 dcim/forms/model_forms.py:703 +#: dcim/forms/model_forms.py:709 dcim/forms/object_import.py:84 +#: dcim/forms/object_import.py:113 dcim/forms/object_import.py:145 +#: dcim/tables/devices.py:178 dcim/tables/devices.py:814 +#: dcim/tables/power.py:77 dcim/tables/racks.py:138 +#: extras/forms/bulk_import.py:42 extras/tables/tables.py:405 +#: extras/tables/tables.py:465 netbox/tables/tables.py:240 +#: templates/circuits/circuit.html:30 templates/core/datasource.html:38 +#: templates/dcim/cable.html:15 templates/dcim/consoleport.html:36 +#: templates/dcim/consoleserverport.html:36 templates/dcim/frontport.html:36 +#: templates/dcim/interface.html:46 templates/dcim/interface.html:169 +#: templates/dcim/interface.html:311 templates/dcim/powerfeed.html:32 +#: templates/dcim/poweroutlet.html:36 templates/dcim/powerport.html:36 +#: templates/dcim/rearport.html:36 templates/extras/eventrule.html:74 +#: templates/virtualization/cluster.html:17 templates/vpn/l2vpn.html:22 +#: templates/wireless/inc/authentication_attrs.html:8 +#: templates/wireless/inc/wirelesslink_interface.html:14 +#: virtualization/forms/bulk_edit.py:60 virtualization/forms/bulk_import.py:41 +#: virtualization/forms/filtersets.py:54 +#: virtualization/forms/model_forms.py:62 virtualization/tables/clusters.py:66 +#: vpn/forms/bulk_edit.py:264 vpn/forms/bulk_import.py:264 +#: vpn/forms/filtersets.py:217 vpn/forms/model_forms.py:84 +#: vpn/forms/model_forms.py:119 vpn/forms/model_forms.py:231 msgid "Type" msgstr "Тип" -#: netbox/circuits/forms/bulk_edit.py:128 -#: netbox/circuits/forms/bulk_import.py:80 -#: netbox/circuits/forms/filtersets.py:139 -#: netbox/circuits/forms/model_forms.py:98 +#: circuits/forms/bulk_edit.py:128 circuits/forms/bulk_import.py:80 +#: circuits/forms/filtersets.py:139 circuits/forms/model_forms.py:98 msgid "Provider account" msgstr "Обліковий запис постачальника" -#: netbox/circuits/forms/bulk_edit.py:136 -#: netbox/circuits/forms/bulk_import.py:93 -#: netbox/circuits/forms/filtersets.py:150 netbox/core/forms/filtersets.py:38 -#: netbox/core/forms/filtersets.py:79 netbox/core/tables/data.py:23 -#: netbox/core/tables/jobs.py:26 netbox/core/tables/tasks.py:88 -#: netbox/dcim/forms/bulk_edit.py:106 netbox/dcim/forms/bulk_edit.py:181 -#: netbox/dcim/forms/bulk_edit.py:351 netbox/dcim/forms/bulk_edit.py:700 -#: netbox/dcim/forms/bulk_edit.py:756 netbox/dcim/forms/bulk_edit.py:788 -#: netbox/dcim/forms/bulk_edit.py:915 netbox/dcim/forms/bulk_edit.py:1701 -#: netbox/dcim/forms/bulk_import.py:88 netbox/dcim/forms/bulk_import.py:147 -#: netbox/dcim/forms/bulk_import.py:248 netbox/dcim/forms/bulk_import.py:505 -#: netbox/dcim/forms/bulk_import.py:659 netbox/dcim/forms/bulk_import.py:1207 -#: netbox/dcim/forms/bulk_import.py:1371 netbox/dcim/forms/bulk_import.py:1435 -#: netbox/dcim/forms/filtersets.py:178 netbox/dcim/forms/filtersets.py:237 -#: netbox/dcim/forms/filtersets.py:359 netbox/dcim/forms/filtersets.py:799 -#: netbox/dcim/forms/filtersets.py:924 netbox/dcim/forms/filtersets.py:958 -#: netbox/dcim/forms/filtersets.py:1059 netbox/dcim/forms/filtersets.py:1170 -#: netbox/dcim/tables/devices.py:140 netbox/dcim/tables/devices.py:817 -#: netbox/dcim/tables/devices.py:1063 netbox/dcim/tables/modules.py:69 -#: netbox/dcim/tables/power.py:74 netbox/dcim/tables/racks.py:126 -#: netbox/dcim/tables/sites.py:82 netbox/dcim/tables/sites.py:138 -#: netbox/ipam/forms/bulk_edit.py:255 netbox/ipam/forms/bulk_edit.py:305 -#: netbox/ipam/forms/bulk_edit.py:353 netbox/ipam/forms/bulk_edit.py:551 -#: netbox/ipam/forms/bulk_import.py:192 netbox/ipam/forms/bulk_import.py:257 -#: netbox/ipam/forms/bulk_import.py:293 netbox/ipam/forms/bulk_import.py:450 -#: netbox/ipam/forms/filtersets.py:210 netbox/ipam/forms/filtersets.py:281 -#: netbox/ipam/forms/filtersets.py:355 netbox/ipam/forms/filtersets.py:501 -#: netbox/ipam/forms/model_forms.py:468 netbox/ipam/tables/ip.py:237 -#: netbox/ipam/tables/ip.py:312 netbox/ipam/tables/ip.py:363 -#: netbox/ipam/tables/ip.py:426 netbox/ipam/tables/ip.py:453 -#: netbox/ipam/tables/vlans.py:126 netbox/ipam/tables/vlans.py:232 -#: netbox/templates/circuits/circuit.html:34 -#: netbox/templates/core/datasource.html:46 netbox/templates/core/job.html:48 -#: netbox/templates/core/rq_task.html:81 netbox/templates/core/system.html:18 -#: netbox/templates/dcim/cable.html:19 netbox/templates/dcim/device.html:178 -#: netbox/templates/dcim/location.html:45 netbox/templates/dcim/module.html:69 -#: netbox/templates/dcim/powerfeed.html:36 netbox/templates/dcim/rack.html:41 -#: netbox/templates/dcim/site.html:43 -#: netbox/templates/extras/script_list.html:47 -#: netbox/templates/ipam/ipaddress.html:37 -#: netbox/templates/ipam/iprange.html:54 netbox/templates/ipam/prefix.html:73 -#: netbox/templates/ipam/vlan.html:48 -#: netbox/templates/virtualization/cluster.html:21 -#: netbox/templates/virtualization/virtualmachine.html:19 -#: netbox/templates/vpn/tunnel.html:25 -#: netbox/templates/wireless/wirelesslan.html:22 -#: netbox/templates/wireless/wirelesslink.html:17 -#: netbox/users/forms/filtersets.py:32 netbox/users/forms/model_forms.py:194 -#: netbox/virtualization/forms/bulk_edit.py:70 -#: netbox/virtualization/forms/bulk_edit.py:118 -#: netbox/virtualization/forms/bulk_import.py:54 -#: netbox/virtualization/forms/bulk_import.py:80 -#: netbox/virtualization/forms/filtersets.py:62 -#: netbox/virtualization/forms/filtersets.py:160 -#: netbox/virtualization/tables/clusters.py:74 -#: netbox/virtualization/tables/virtualmachines.py:60 -#: netbox/vpn/forms/bulk_edit.py:39 netbox/vpn/forms/bulk_import.py:37 -#: netbox/vpn/forms/filtersets.py:47 netbox/vpn/tables/tunnels.py:48 -#: netbox/wireless/forms/bulk_edit.py:43 -#: netbox/wireless/forms/bulk_edit.py:105 -#: netbox/wireless/forms/bulk_import.py:43 -#: netbox/wireless/forms/bulk_import.py:84 -#: netbox/wireless/forms/filtersets.py:49 -#: netbox/wireless/forms/filtersets.py:83 -#: netbox/wireless/tables/wirelesslan.py:52 -#: netbox/wireless/tables/wirelesslink.py:20 +#: circuits/forms/bulk_edit.py:136 circuits/forms/bulk_import.py:93 +#: circuits/forms/filtersets.py:150 core/forms/filtersets.py:38 +#: core/forms/filtersets.py:79 core/tables/data.py:23 core/tables/jobs.py:26 +#: core/tables/tasks.py:88 dcim/forms/bulk_edit.py:106 +#: dcim/forms/bulk_edit.py:181 dcim/forms/bulk_edit.py:351 +#: dcim/forms/bulk_edit.py:700 dcim/forms/bulk_edit.py:756 +#: dcim/forms/bulk_edit.py:788 dcim/forms/bulk_edit.py:915 +#: dcim/forms/bulk_edit.py:1701 dcim/forms/bulk_import.py:88 +#: dcim/forms/bulk_import.py:147 dcim/forms/bulk_import.py:248 +#: dcim/forms/bulk_import.py:505 dcim/forms/bulk_import.py:659 +#: dcim/forms/bulk_import.py:1207 dcim/forms/bulk_import.py:1371 +#: dcim/forms/bulk_import.py:1435 dcim/forms/filtersets.py:178 +#: dcim/forms/filtersets.py:237 dcim/forms/filtersets.py:359 +#: dcim/forms/filtersets.py:799 dcim/forms/filtersets.py:924 +#: dcim/forms/filtersets.py:958 dcim/forms/filtersets.py:1059 +#: dcim/forms/filtersets.py:1170 dcim/tables/devices.py:140 +#: dcim/tables/devices.py:817 dcim/tables/devices.py:1063 +#: dcim/tables/modules.py:69 dcim/tables/power.py:74 dcim/tables/racks.py:126 +#: dcim/tables/sites.py:82 dcim/tables/sites.py:138 +#: ipam/forms/bulk_edit.py:256 ipam/forms/bulk_edit.py:306 +#: ipam/forms/bulk_edit.py:354 ipam/forms/bulk_edit.py:506 +#: ipam/forms/bulk_import.py:192 ipam/forms/bulk_import.py:257 +#: ipam/forms/bulk_import.py:293 ipam/forms/bulk_import.py:450 +#: ipam/forms/filtersets.py:210 ipam/forms/filtersets.py:281 +#: ipam/forms/filtersets.py:355 ipam/forms/filtersets.py:501 +#: ipam/forms/model_forms.py:468 ipam/tables/ip.py:237 ipam/tables/ip.py:312 +#: ipam/tables/ip.py:363 ipam/tables/ip.py:426 ipam/tables/ip.py:453 +#: ipam/tables/vlans.py:126 ipam/tables/vlans.py:232 +#: templates/circuits/circuit.html:34 templates/core/datasource.html:46 +#: templates/core/job.html:48 templates/core/rq_task.html:81 +#: templates/core/system.html:18 templates/dcim/cable.html:19 +#: templates/dcim/device.html:178 templates/dcim/location.html:45 +#: templates/dcim/module.html:69 templates/dcim/powerfeed.html:36 +#: templates/dcim/rack.html:41 templates/dcim/site.html:43 +#: templates/extras/script_list.html:47 templates/ipam/ipaddress.html:37 +#: templates/ipam/iprange.html:54 templates/ipam/prefix.html:73 +#: templates/ipam/vlan.html:48 templates/virtualization/cluster.html:21 +#: templates/virtualization/virtualmachine.html:19 +#: templates/vpn/tunnel.html:25 templates/wireless/wirelesslan.html:22 +#: templates/wireless/wirelesslink.html:17 users/forms/filtersets.py:32 +#: users/forms/model_forms.py:194 virtualization/forms/bulk_edit.py:70 +#: virtualization/forms/bulk_edit.py:118 +#: virtualization/forms/bulk_import.py:54 +#: virtualization/forms/bulk_import.py:80 +#: virtualization/forms/filtersets.py:62 +#: virtualization/forms/filtersets.py:160 virtualization/tables/clusters.py:74 +#: virtualization/tables/virtualmachines.py:60 vpn/forms/bulk_edit.py:39 +#: vpn/forms/bulk_import.py:37 vpn/forms/filtersets.py:47 +#: vpn/tables/tunnels.py:48 wireless/forms/bulk_edit.py:43 +#: wireless/forms/bulk_edit.py:105 wireless/forms/bulk_import.py:43 +#: wireless/forms/bulk_import.py:84 wireless/forms/filtersets.py:49 +#: wireless/forms/filtersets.py:83 wireless/tables/wirelesslan.py:52 +#: wireless/tables/wirelesslink.py:20 msgid "Status" msgstr "Статус" -#: netbox/circuits/forms/bulk_edit.py:142 -#: netbox/circuits/forms/bulk_edit.py:233 -#: netbox/circuits/forms/bulk_import.py:98 -#: netbox/circuits/forms/bulk_import.py:158 -#: netbox/circuits/forms/filtersets.py:119 -#: netbox/circuits/forms/filtersets.py:241 netbox/dcim/forms/bulk_edit.py:122 -#: netbox/dcim/forms/bulk_edit.py:187 netbox/dcim/forms/bulk_edit.py:346 -#: netbox/dcim/forms/bulk_edit.py:461 netbox/dcim/forms/bulk_edit.py:690 -#: netbox/dcim/forms/bulk_edit.py:794 netbox/dcim/forms/bulk_edit.py:1706 -#: netbox/dcim/forms/bulk_import.py:107 netbox/dcim/forms/bulk_import.py:152 -#: netbox/dcim/forms/bulk_import.py:241 netbox/dcim/forms/bulk_import.py:334 -#: netbox/dcim/forms/bulk_import.py:479 netbox/dcim/forms/bulk_import.py:1219 -#: netbox/dcim/forms/bulk_import.py:1428 netbox/dcim/forms/filtersets.py:173 -#: netbox/dcim/forms/filtersets.py:205 netbox/dcim/forms/filtersets.py:323 -#: netbox/dcim/forms/filtersets.py:399 netbox/dcim/forms/filtersets.py:420 -#: netbox/dcim/forms/filtersets.py:722 netbox/dcim/forms/filtersets.py:916 -#: netbox/dcim/forms/filtersets.py:978 netbox/dcim/forms/filtersets.py:1008 -#: netbox/dcim/forms/filtersets.py:1130 netbox/dcim/tables/power.py:88 -#: netbox/extras/filtersets.py:612 netbox/extras/forms/filtersets.py:323 -#: netbox/extras/forms/filtersets.py:396 netbox/ipam/forms/bulk_edit.py:42 -#: netbox/ipam/forms/bulk_edit.py:67 netbox/ipam/forms/bulk_edit.py:111 -#: netbox/ipam/forms/bulk_edit.py:140 netbox/ipam/forms/bulk_edit.py:165 -#: netbox/ipam/forms/bulk_edit.py:250 netbox/ipam/forms/bulk_edit.py:300 -#: netbox/ipam/forms/bulk_edit.py:348 netbox/ipam/forms/bulk_edit.py:546 -#: netbox/ipam/forms/bulk_import.py:38 netbox/ipam/forms/bulk_import.py:67 -#: netbox/ipam/forms/bulk_import.py:95 netbox/ipam/forms/bulk_import.py:115 -#: netbox/ipam/forms/bulk_import.py:135 netbox/ipam/forms/bulk_import.py:164 -#: netbox/ipam/forms/bulk_import.py:250 netbox/ipam/forms/bulk_import.py:286 -#: netbox/ipam/forms/bulk_import.py:443 netbox/ipam/forms/filtersets.py:48 -#: netbox/ipam/forms/filtersets.py:68 netbox/ipam/forms/filtersets.py:100 -#: netbox/ipam/forms/filtersets.py:120 netbox/ipam/forms/filtersets.py:143 -#: netbox/ipam/forms/filtersets.py:174 netbox/ipam/forms/filtersets.py:267 -#: netbox/ipam/forms/filtersets.py:310 netbox/ipam/forms/filtersets.py:469 -#: netbox/ipam/tables/ip.py:456 netbox/ipam/tables/vlans.py:229 -#: netbox/templates/circuits/circuit.html:38 -#: netbox/templates/circuits/circuitgroup.html:36 -#: netbox/templates/dcim/cable.html:23 netbox/templates/dcim/device.html:79 -#: netbox/templates/dcim/location.html:49 -#: netbox/templates/dcim/powerfeed.html:44 netbox/templates/dcim/rack.html:32 -#: netbox/templates/dcim/rackreservation.html:49 -#: netbox/templates/dcim/site.html:47 -#: netbox/templates/dcim/virtualdevicecontext.html:52 -#: netbox/templates/ipam/aggregate.html:30 netbox/templates/ipam/asn.html:33 -#: netbox/templates/ipam/asnrange.html:29 -#: netbox/templates/ipam/ipaddress.html:28 -#: netbox/templates/ipam/iprange.html:58 netbox/templates/ipam/prefix.html:29 -#: netbox/templates/ipam/routetarget.html:17 -#: netbox/templates/ipam/vlan.html:39 netbox/templates/ipam/vrf.html:20 -#: netbox/templates/tenancy/tenant.html:17 -#: netbox/templates/virtualization/cluster.html:33 -#: netbox/templates/virtualization/virtualmachine.html:39 -#: netbox/templates/vpn/l2vpn.html:30 netbox/templates/vpn/tunnel.html:49 -#: netbox/templates/wireless/wirelesslan.html:34 -#: netbox/templates/wireless/wirelesslink.html:25 -#: netbox/tenancy/forms/forms.py:25 netbox/tenancy/forms/forms.py:48 -#: netbox/tenancy/forms/model_forms.py:52 netbox/tenancy/tables/columns.py:64 -#: netbox/virtualization/forms/bulk_edit.py:76 -#: netbox/virtualization/forms/bulk_edit.py:155 -#: netbox/virtualization/forms/bulk_import.py:66 -#: netbox/virtualization/forms/bulk_import.py:115 -#: netbox/virtualization/forms/filtersets.py:47 -#: netbox/virtualization/forms/filtersets.py:105 -#: netbox/vpn/forms/bulk_edit.py:59 netbox/vpn/forms/bulk_edit.py:269 -#: netbox/vpn/forms/bulk_import.py:59 netbox/vpn/forms/bulk_import.py:258 -#: netbox/vpn/forms/filtersets.py:214 netbox/wireless/forms/bulk_edit.py:63 -#: netbox/wireless/forms/bulk_edit.py:110 -#: netbox/wireless/forms/bulk_import.py:55 -#: netbox/wireless/forms/bulk_import.py:97 -#: netbox/wireless/forms/filtersets.py:35 -#: netbox/wireless/forms/filtersets.py:75 +#: circuits/forms/bulk_edit.py:142 circuits/forms/bulk_edit.py:233 +#: circuits/forms/bulk_import.py:98 circuits/forms/bulk_import.py:158 +#: circuits/forms/filtersets.py:119 circuits/forms/filtersets.py:241 +#: dcim/forms/bulk_edit.py:122 dcim/forms/bulk_edit.py:187 +#: dcim/forms/bulk_edit.py:346 dcim/forms/bulk_edit.py:461 +#: dcim/forms/bulk_edit.py:690 dcim/forms/bulk_edit.py:794 +#: dcim/forms/bulk_edit.py:1706 dcim/forms/bulk_import.py:107 +#: dcim/forms/bulk_import.py:152 dcim/forms/bulk_import.py:241 +#: dcim/forms/bulk_import.py:334 dcim/forms/bulk_import.py:479 +#: dcim/forms/bulk_import.py:1219 dcim/forms/bulk_import.py:1428 +#: dcim/forms/filtersets.py:173 dcim/forms/filtersets.py:205 +#: dcim/forms/filtersets.py:323 dcim/forms/filtersets.py:399 +#: dcim/forms/filtersets.py:420 dcim/forms/filtersets.py:722 +#: dcim/forms/filtersets.py:916 dcim/forms/filtersets.py:978 +#: dcim/forms/filtersets.py:1008 dcim/forms/filtersets.py:1130 +#: dcim/tables/power.py:88 extras/filtersets.py:612 +#: extras/forms/filtersets.py:323 extras/forms/filtersets.py:396 +#: ipam/forms/bulk_edit.py:43 ipam/forms/bulk_edit.py:68 +#: ipam/forms/bulk_edit.py:112 ipam/forms/bulk_edit.py:141 +#: ipam/forms/bulk_edit.py:166 ipam/forms/bulk_edit.py:251 +#: ipam/forms/bulk_edit.py:301 ipam/forms/bulk_edit.py:349 +#: ipam/forms/bulk_edit.py:501 ipam/forms/bulk_import.py:38 +#: ipam/forms/bulk_import.py:67 ipam/forms/bulk_import.py:95 +#: ipam/forms/bulk_import.py:115 ipam/forms/bulk_import.py:135 +#: ipam/forms/bulk_import.py:164 ipam/forms/bulk_import.py:250 +#: ipam/forms/bulk_import.py:286 ipam/forms/bulk_import.py:443 +#: ipam/forms/filtersets.py:48 ipam/forms/filtersets.py:68 +#: ipam/forms/filtersets.py:100 ipam/forms/filtersets.py:120 +#: ipam/forms/filtersets.py:143 ipam/forms/filtersets.py:174 +#: ipam/forms/filtersets.py:267 ipam/forms/filtersets.py:310 +#: ipam/forms/filtersets.py:469 ipam/tables/ip.py:456 ipam/tables/vlans.py:229 +#: templates/circuits/circuit.html:38 templates/circuits/circuitgroup.html:36 +#: templates/dcim/cable.html:23 templates/dcim/device.html:79 +#: templates/dcim/location.html:49 templates/dcim/powerfeed.html:44 +#: templates/dcim/rack.html:32 templates/dcim/rackreservation.html:49 +#: templates/dcim/site.html:47 templates/dcim/virtualdevicecontext.html:52 +#: templates/ipam/aggregate.html:30 templates/ipam/asn.html:33 +#: templates/ipam/asnrange.html:29 templates/ipam/ipaddress.html:28 +#: templates/ipam/iprange.html:58 templates/ipam/prefix.html:29 +#: templates/ipam/routetarget.html:17 templates/ipam/vlan.html:39 +#: templates/ipam/vrf.html:20 templates/tenancy/tenant.html:17 +#: templates/virtualization/cluster.html:33 +#: templates/virtualization/virtualmachine.html:39 templates/vpn/l2vpn.html:30 +#: templates/vpn/tunnel.html:49 templates/wireless/wirelesslan.html:34 +#: templates/wireless/wirelesslink.html:25 tenancy/forms/forms.py:25 +#: tenancy/forms/forms.py:48 tenancy/forms/model_forms.py:52 +#: tenancy/tables/columns.py:64 virtualization/forms/bulk_edit.py:76 +#: virtualization/forms/bulk_edit.py:155 +#: virtualization/forms/bulk_import.py:66 +#: virtualization/forms/bulk_import.py:115 +#: virtualization/forms/filtersets.py:47 +#: virtualization/forms/filtersets.py:105 vpn/forms/bulk_edit.py:59 +#: vpn/forms/bulk_edit.py:269 vpn/forms/bulk_import.py:59 +#: vpn/forms/bulk_import.py:258 vpn/forms/filtersets.py:214 +#: wireless/forms/bulk_edit.py:63 wireless/forms/bulk_edit.py:110 +#: wireless/forms/bulk_import.py:55 wireless/forms/bulk_import.py:97 +#: wireless/forms/filtersets.py:35 wireless/forms/filtersets.py:75 msgid "Tenant" msgstr "Орендар" -#: netbox/circuits/forms/bulk_edit.py:147 -#: netbox/circuits/forms/filtersets.py:174 +#: circuits/forms/bulk_edit.py:147 circuits/forms/filtersets.py:174 msgid "Install date" msgstr "Дата встановлення" -#: netbox/circuits/forms/bulk_edit.py:152 -#: netbox/circuits/forms/filtersets.py:179 +#: circuits/forms/bulk_edit.py:152 circuits/forms/filtersets.py:179 msgid "Termination date" msgstr "Дата припинення дії" -#: netbox/circuits/forms/bulk_edit.py:158 -#: netbox/circuits/forms/filtersets.py:186 +#: circuits/forms/bulk_edit.py:158 circuits/forms/filtersets.py:186 msgid "Commit rate (Kbps)" msgstr "Гарантована мінімальна швідкість (Кбіт/с)" -#: netbox/circuits/forms/bulk_edit.py:173 -#: netbox/circuits/forms/model_forms.py:112 +#: circuits/forms/bulk_edit.py:173 circuits/forms/model_forms.py:112 msgid "Service Parameters" msgstr "Параметри обслуговування" -#: netbox/circuits/forms/bulk_edit.py:174 -#: netbox/circuits/forms/model_forms.py:113 -#: netbox/circuits/forms/model_forms.py:183 -#: netbox/dcim/forms/model_forms.py:139 netbox/dcim/forms/model_forms.py:181 -#: netbox/dcim/forms/model_forms.py:266 netbox/dcim/forms/model_forms.py:323 -#: netbox/dcim/forms/model_forms.py:768 netbox/dcim/forms/model_forms.py:1692 -#: netbox/ipam/forms/model_forms.py:64 netbox/ipam/forms/model_forms.py:81 -#: netbox/ipam/forms/model_forms.py:115 netbox/ipam/forms/model_forms.py:136 -#: netbox/ipam/forms/model_forms.py:160 netbox/ipam/forms/model_forms.py:232 -#: netbox/ipam/forms/model_forms.py:261 netbox/ipam/forms/model_forms.py:316 -#: netbox/netbox/navigation/menu.py:24 -#: netbox/templates/dcim/device_edit.html:85 -#: netbox/templates/dcim/htmx/cable_edit.html:72 -#: netbox/templates/ipam/ipaddress_bulk_add.html:27 -#: netbox/templates/ipam/vlan_edit.html:22 -#: netbox/virtualization/forms/model_forms.py:80 -#: netbox/virtualization/forms/model_forms.py:222 -#: netbox/vpn/forms/bulk_edit.py:78 netbox/vpn/forms/filtersets.py:44 -#: netbox/vpn/forms/model_forms.py:62 netbox/vpn/forms/model_forms.py:147 -#: netbox/vpn/forms/model_forms.py:411 netbox/wireless/forms/model_forms.py:54 -#: netbox/wireless/forms/model_forms.py:170 +#: circuits/forms/bulk_edit.py:174 circuits/forms/model_forms.py:113 +#: circuits/forms/model_forms.py:183 dcim/forms/model_forms.py:139 +#: dcim/forms/model_forms.py:181 dcim/forms/model_forms.py:266 +#: dcim/forms/model_forms.py:323 dcim/forms/model_forms.py:768 +#: dcim/forms/model_forms.py:1692 ipam/forms/model_forms.py:64 +#: ipam/forms/model_forms.py:81 ipam/forms/model_forms.py:115 +#: ipam/forms/model_forms.py:136 ipam/forms/model_forms.py:160 +#: ipam/forms/model_forms.py:232 ipam/forms/model_forms.py:261 +#: ipam/forms/model_forms.py:316 netbox/navigation/menu.py:24 +#: templates/dcim/device_edit.html:85 templates/dcim/htmx/cable_edit.html:72 +#: templates/ipam/ipaddress_bulk_add.html:27 templates/ipam/vlan_edit.html:22 +#: virtualization/forms/model_forms.py:80 +#: virtualization/forms/model_forms.py:222 vpn/forms/bulk_edit.py:78 +#: vpn/forms/filtersets.py:44 vpn/forms/model_forms.py:62 +#: vpn/forms/model_forms.py:147 vpn/forms/model_forms.py:411 +#: wireless/forms/model_forms.py:54 wireless/forms/model_forms.py:170 msgid "Tenancy" msgstr "Оренда" -#: netbox/circuits/forms/bulk_edit.py:193 -#: netbox/circuits/forms/bulk_edit.py:217 -#: netbox/circuits/forms/model_forms.py:155 -#: netbox/circuits/tables/circuits.py:117 -#: netbox/templates/circuits/inc/circuit_termination_fields.html:62 -#: netbox/templates/circuits/providernetwork.html:17 +#: circuits/forms/bulk_edit.py:193 circuits/forms/bulk_edit.py:217 +#: circuits/forms/model_forms.py:155 circuits/tables/circuits.py:117 +#: templates/circuits/inc/circuit_termination_fields.html:62 +#: templates/circuits/providernetwork.html:17 msgid "Provider Network" msgstr "Мережа провайдерів" -#: netbox/circuits/forms/bulk_edit.py:199 +#: circuits/forms/bulk_edit.py:199 msgid "Port speed (Kbps)" msgstr "Швидкість порту (Кбіт/с)" -#: netbox/circuits/forms/bulk_edit.py:203 +#: circuits/forms/bulk_edit.py:203 msgid "Upstream speed (Kbps)" msgstr "Швидкість висхідного потоку (Кбіт/с)" -#: netbox/circuits/forms/bulk_edit.py:206 netbox/dcim/forms/bulk_edit.py:951 -#: netbox/dcim/forms/bulk_edit.py:1315 netbox/dcim/forms/bulk_edit.py:1332 -#: netbox/dcim/forms/bulk_edit.py:1349 netbox/dcim/forms/bulk_edit.py:1367 -#: netbox/dcim/forms/bulk_edit.py:1455 netbox/dcim/forms/bulk_edit.py:1594 -#: netbox/dcim/forms/bulk_edit.py:1611 +#: circuits/forms/bulk_edit.py:206 dcim/forms/bulk_edit.py:951 +#: dcim/forms/bulk_edit.py:1315 dcim/forms/bulk_edit.py:1332 +#: dcim/forms/bulk_edit.py:1349 dcim/forms/bulk_edit.py:1367 +#: dcim/forms/bulk_edit.py:1455 dcim/forms/bulk_edit.py:1594 +#: dcim/forms/bulk_edit.py:1611 msgid "Mark connected" msgstr "Позначка з'єднана" -#: netbox/circuits/forms/bulk_edit.py:219 -#: netbox/circuits/forms/model_forms.py:157 -#: netbox/templates/circuits/inc/circuit_termination_fields.html:54 -#: netbox/templates/dcim/frontport.html:121 -#: netbox/templates/dcim/interface.html:193 -#: netbox/templates/dcim/rearport.html:111 +#: circuits/forms/bulk_edit.py:219 circuits/forms/model_forms.py:157 +#: templates/circuits/inc/circuit_termination_fields.html:54 +#: templates/dcim/frontport.html:121 templates/dcim/interface.html:193 +#: templates/dcim/rearport.html:111 msgid "Circuit Termination" msgstr "Кінець каналу зв'язку" -#: netbox/circuits/forms/bulk_edit.py:221 -#: netbox/circuits/forms/model_forms.py:159 +#: circuits/forms/bulk_edit.py:221 circuits/forms/model_forms.py:159 msgid "Termination Details" msgstr "Деталі припинення" -#: netbox/circuits/forms/bulk_edit.py:251 -#: netbox/circuits/forms/filtersets.py:268 -#: netbox/circuits/tables/circuits.py:168 netbox/dcim/forms/model_forms.py:551 -#: netbox/templates/circuits/circuitgroupassignment.html:30 -#: netbox/templates/dcim/device.html:133 -#: netbox/templates/dcim/virtualchassis.html:68 -#: netbox/templates/dcim/virtualchassis_edit.html:56 -#: netbox/templates/ipam/inc/panels/fhrp_groups.html:26 -#: netbox/tenancy/forms/bulk_edit.py:147 -#: netbox/tenancy/forms/filtersets.py:110 +#: circuits/forms/bulk_edit.py:251 circuits/forms/filtersets.py:268 +#: circuits/tables/circuits.py:168 dcim/forms/model_forms.py:551 +#: templates/circuits/circuitgroupassignment.html:30 +#: templates/dcim/device.html:133 templates/dcim/virtualchassis.html:68 +#: templates/dcim/virtualchassis_edit.html:56 +#: templates/ipam/inc/panels/fhrp_groups.html:26 +#: tenancy/forms/bulk_edit.py:147 tenancy/forms/filtersets.py:110 msgid "Priority" msgstr "Пріоритет" -#: netbox/circuits/forms/bulk_import.py:39 -#: netbox/circuits/forms/bulk_import.py:54 -#: netbox/circuits/forms/bulk_import.py:77 +#: circuits/forms/bulk_import.py:39 circuits/forms/bulk_import.py:54 +#: circuits/forms/bulk_import.py:77 msgid "Assigned provider" msgstr "Призначений провайдер" -#: netbox/circuits/forms/bulk_import.py:83 +#: circuits/forms/bulk_import.py:83 msgid "Assigned provider account" msgstr "Призначений обліковий запис постачальника" -#: netbox/circuits/forms/bulk_import.py:90 +#: circuits/forms/bulk_import.py:90 msgid "Type of circuit" msgstr "Тип каналу зв'язку" -#: netbox/circuits/forms/bulk_import.py:95 netbox/dcim/forms/bulk_import.py:90 -#: netbox/dcim/forms/bulk_import.py:149 netbox/dcim/forms/bulk_import.py:250 -#: netbox/dcim/forms/bulk_import.py:507 netbox/dcim/forms/bulk_import.py:661 -#: netbox/dcim/forms/bulk_import.py:1373 netbox/ipam/forms/bulk_import.py:194 -#: netbox/ipam/forms/bulk_import.py:259 netbox/ipam/forms/bulk_import.py:295 -#: netbox/ipam/forms/bulk_import.py:452 -#: netbox/virtualization/forms/bulk_import.py:56 -#: netbox/virtualization/forms/bulk_import.py:82 -#: netbox/vpn/forms/bulk_import.py:39 netbox/wireless/forms/bulk_import.py:45 +#: circuits/forms/bulk_import.py:95 dcim/forms/bulk_import.py:90 +#: dcim/forms/bulk_import.py:149 dcim/forms/bulk_import.py:250 +#: dcim/forms/bulk_import.py:507 dcim/forms/bulk_import.py:661 +#: dcim/forms/bulk_import.py:1373 ipam/forms/bulk_import.py:194 +#: ipam/forms/bulk_import.py:259 ipam/forms/bulk_import.py:295 +#: ipam/forms/bulk_import.py:452 virtualization/forms/bulk_import.py:56 +#: virtualization/forms/bulk_import.py:82 vpn/forms/bulk_import.py:39 +#: wireless/forms/bulk_import.py:45 msgid "Operational status" msgstr "Операційний стан" -#: netbox/circuits/forms/bulk_import.py:102 -#: netbox/circuits/forms/bulk_import.py:162 -#: netbox/dcim/forms/bulk_import.py:111 netbox/dcim/forms/bulk_import.py:156 -#: netbox/dcim/forms/bulk_import.py:338 netbox/dcim/forms/bulk_import.py:483 -#: netbox/dcim/forms/bulk_import.py:1223 netbox/dcim/forms/bulk_import.py:1368 -#: netbox/dcim/forms/bulk_import.py:1432 netbox/ipam/forms/bulk_import.py:42 -#: netbox/ipam/forms/bulk_import.py:71 netbox/ipam/forms/bulk_import.py:99 -#: netbox/ipam/forms/bulk_import.py:119 netbox/ipam/forms/bulk_import.py:139 -#: netbox/ipam/forms/bulk_import.py:168 netbox/ipam/forms/bulk_import.py:254 -#: netbox/ipam/forms/bulk_import.py:290 netbox/ipam/forms/bulk_import.py:447 -#: netbox/virtualization/forms/bulk_import.py:70 -#: netbox/virtualization/forms/bulk_import.py:119 -#: netbox/vpn/forms/bulk_import.py:63 netbox/wireless/forms/bulk_import.py:59 -#: netbox/wireless/forms/bulk_import.py:101 +#: circuits/forms/bulk_import.py:102 circuits/forms/bulk_import.py:162 +#: dcim/forms/bulk_import.py:111 dcim/forms/bulk_import.py:156 +#: dcim/forms/bulk_import.py:338 dcim/forms/bulk_import.py:483 +#: dcim/forms/bulk_import.py:1223 dcim/forms/bulk_import.py:1368 +#: dcim/forms/bulk_import.py:1432 ipam/forms/bulk_import.py:42 +#: ipam/forms/bulk_import.py:71 ipam/forms/bulk_import.py:99 +#: ipam/forms/bulk_import.py:119 ipam/forms/bulk_import.py:139 +#: ipam/forms/bulk_import.py:168 ipam/forms/bulk_import.py:254 +#: ipam/forms/bulk_import.py:290 ipam/forms/bulk_import.py:447 +#: virtualization/forms/bulk_import.py:70 +#: virtualization/forms/bulk_import.py:119 vpn/forms/bulk_import.py:63 +#: wireless/forms/bulk_import.py:59 wireless/forms/bulk_import.py:101 msgid "Assigned tenant" msgstr "Призначений орендар" -#: netbox/circuits/forms/bulk_import.py:120 -#: netbox/templates/circuits/inc/circuit_termination.html:6 -#: netbox/templates/circuits/inc/circuit_termination_fields.html:15 -#: netbox/templates/dcim/cable.html:68 netbox/templates/dcim/cable.html:72 -#: netbox/vpn/forms/bulk_import.py:100 netbox/vpn/forms/filtersets.py:77 +#: circuits/forms/bulk_import.py:120 +#: templates/circuits/inc/circuit_termination.html:6 +#: templates/circuits/inc/circuit_termination_fields.html:15 +#: templates/dcim/cable.html:68 templates/dcim/cable.html:72 +#: vpn/forms/bulk_import.py:100 vpn/forms/filtersets.py:77 msgid "Termination" msgstr "Припинення" -#: netbox/circuits/forms/bulk_import.py:130 -#: netbox/circuits/forms/filtersets.py:147 -#: netbox/circuits/forms/filtersets.py:227 -#: netbox/circuits/forms/model_forms.py:144 +#: circuits/forms/bulk_import.py:130 circuits/forms/filtersets.py:147 +#: circuits/forms/filtersets.py:227 circuits/forms/model_forms.py:144 msgid "Provider network" msgstr "Мережа провайдерів" -#: netbox/circuits/forms/filtersets.py:30 -#: netbox/circuits/forms/filtersets.py:118 -#: netbox/circuits/forms/filtersets.py:200 netbox/dcim/forms/bulk_edit.py:338 -#: netbox/dcim/forms/bulk_edit.py:441 netbox/dcim/forms/bulk_edit.py:682 -#: netbox/dcim/forms/bulk_edit.py:729 netbox/dcim/forms/bulk_edit.py:882 -#: netbox/dcim/forms/bulk_import.py:235 netbox/dcim/forms/bulk_import.py:315 -#: netbox/dcim/forms/bulk_import.py:546 netbox/dcim/forms/bulk_import.py:1317 -#: netbox/dcim/forms/bulk_import.py:1351 netbox/dcim/forms/filtersets.py:95 -#: netbox/dcim/forms/filtersets.py:322 netbox/dcim/forms/filtersets.py:356 -#: netbox/dcim/forms/filtersets.py:396 netbox/dcim/forms/filtersets.py:447 -#: netbox/dcim/forms/filtersets.py:719 netbox/dcim/forms/filtersets.py:762 -#: netbox/dcim/forms/filtersets.py:977 netbox/dcim/forms/filtersets.py:1006 -#: netbox/dcim/forms/filtersets.py:1026 netbox/dcim/forms/filtersets.py:1090 -#: netbox/dcim/forms/filtersets.py:1120 netbox/dcim/forms/filtersets.py:1129 -#: netbox/dcim/forms/filtersets.py:1240 netbox/dcim/forms/filtersets.py:1264 -#: netbox/dcim/forms/filtersets.py:1289 netbox/dcim/forms/filtersets.py:1308 -#: netbox/dcim/forms/filtersets.py:1331 netbox/dcim/forms/filtersets.py:1442 -#: netbox/dcim/forms/filtersets.py:1466 netbox/dcim/forms/filtersets.py:1490 -#: netbox/dcim/forms/filtersets.py:1508 netbox/dcim/forms/filtersets.py:1525 -#: netbox/dcim/forms/model_forms.py:180 netbox/dcim/forms/model_forms.py:243 -#: netbox/dcim/forms/model_forms.py:468 netbox/dcim/forms/model_forms.py:728 -#: netbox/dcim/tables/devices.py:157 netbox/dcim/tables/power.py:30 -#: netbox/dcim/tables/racks.py:118 netbox/dcim/tables/racks.py:212 -#: netbox/extras/filtersets.py:536 netbox/extras/forms/filtersets.py:320 -#: netbox/ipam/forms/bulk_edit.py:460 netbox/ipam/forms/filtersets.py:173 -#: netbox/ipam/forms/filtersets.py:414 netbox/ipam/forms/filtersets.py:437 -#: netbox/ipam/forms/filtersets.py:467 netbox/templates/dcim/device.html:26 -#: netbox/templates/dcim/device_edit.html:30 -#: netbox/templates/dcim/inc/cable_termination.html:12 -#: netbox/templates/dcim/location.html:26 -#: netbox/templates/dcim/powerpanel.html:26 netbox/templates/dcim/rack.html:24 -#: netbox/templates/dcim/rackreservation.html:32 -#: netbox/virtualization/forms/filtersets.py:46 -#: netbox/virtualization/forms/filtersets.py:100 -#: netbox/wireless/forms/model_forms.py:87 -#: netbox/wireless/forms/model_forms.py:129 +#: circuits/forms/filtersets.py:30 circuits/forms/filtersets.py:118 +#: circuits/forms/filtersets.py:200 dcim/forms/bulk_edit.py:338 +#: dcim/forms/bulk_edit.py:441 dcim/forms/bulk_edit.py:682 +#: dcim/forms/bulk_edit.py:729 dcim/forms/bulk_edit.py:882 +#: dcim/forms/bulk_import.py:235 dcim/forms/bulk_import.py:315 +#: dcim/forms/bulk_import.py:546 dcim/forms/bulk_import.py:1317 +#: dcim/forms/bulk_import.py:1351 dcim/forms/filtersets.py:95 +#: dcim/forms/filtersets.py:322 dcim/forms/filtersets.py:356 +#: dcim/forms/filtersets.py:396 dcim/forms/filtersets.py:447 +#: dcim/forms/filtersets.py:719 dcim/forms/filtersets.py:762 +#: dcim/forms/filtersets.py:977 dcim/forms/filtersets.py:1006 +#: dcim/forms/filtersets.py:1026 dcim/forms/filtersets.py:1090 +#: dcim/forms/filtersets.py:1120 dcim/forms/filtersets.py:1129 +#: dcim/forms/filtersets.py:1240 dcim/forms/filtersets.py:1264 +#: dcim/forms/filtersets.py:1289 dcim/forms/filtersets.py:1308 +#: dcim/forms/filtersets.py:1331 dcim/forms/filtersets.py:1442 +#: dcim/forms/filtersets.py:1466 dcim/forms/filtersets.py:1490 +#: dcim/forms/filtersets.py:1508 dcim/forms/filtersets.py:1525 +#: dcim/forms/model_forms.py:180 dcim/forms/model_forms.py:243 +#: dcim/forms/model_forms.py:468 dcim/forms/model_forms.py:728 +#: dcim/tables/devices.py:157 dcim/tables/power.py:30 dcim/tables/racks.py:118 +#: dcim/tables/racks.py:212 extras/filtersets.py:536 +#: extras/forms/filtersets.py:320 ipam/forms/filtersets.py:173 +#: ipam/forms/filtersets.py:414 ipam/forms/filtersets.py:437 +#: ipam/forms/filtersets.py:467 templates/dcim/device.html:26 +#: templates/dcim/device_edit.html:30 +#: templates/dcim/inc/cable_termination.html:12 +#: templates/dcim/location.html:26 templates/dcim/powerpanel.html:26 +#: templates/dcim/rack.html:24 templates/dcim/rackreservation.html:32 +#: virtualization/forms/filtersets.py:46 +#: virtualization/forms/filtersets.py:100 wireless/forms/model_forms.py:87 +#: wireless/forms/model_forms.py:129 msgid "Location" msgstr "Розташування" -#: netbox/circuits/forms/filtersets.py:32 -#: netbox/circuits/forms/filtersets.py:120 netbox/dcim/forms/filtersets.py:144 -#: netbox/dcim/forms/filtersets.py:158 netbox/dcim/forms/filtersets.py:174 -#: netbox/dcim/forms/filtersets.py:206 netbox/dcim/forms/filtersets.py:328 -#: netbox/dcim/forms/filtersets.py:400 netbox/dcim/forms/filtersets.py:471 -#: netbox/dcim/forms/filtersets.py:723 netbox/dcim/forms/filtersets.py:1091 -#: netbox/netbox/navigation/menu.py:31 netbox/netbox/navigation/menu.py:33 -#: netbox/tenancy/forms/filtersets.py:42 netbox/tenancy/tables/columns.py:70 -#: netbox/tenancy/tables/contacts.py:25 netbox/tenancy/views.py:19 -#: netbox/virtualization/forms/filtersets.py:37 -#: netbox/virtualization/forms/filtersets.py:48 -#: netbox/virtualization/forms/filtersets.py:106 +#: circuits/forms/filtersets.py:32 circuits/forms/filtersets.py:120 +#: dcim/forms/filtersets.py:144 dcim/forms/filtersets.py:158 +#: dcim/forms/filtersets.py:174 dcim/forms/filtersets.py:206 +#: dcim/forms/filtersets.py:328 dcim/forms/filtersets.py:400 +#: dcim/forms/filtersets.py:471 dcim/forms/filtersets.py:723 +#: dcim/forms/filtersets.py:1091 netbox/navigation/menu.py:31 +#: netbox/navigation/menu.py:33 tenancy/forms/filtersets.py:42 +#: tenancy/tables/columns.py:70 tenancy/tables/contacts.py:25 +#: tenancy/views.py:19 virtualization/forms/filtersets.py:37 +#: virtualization/forms/filtersets.py:48 +#: virtualization/forms/filtersets.py:106 msgid "Contacts" msgstr "Контакти" -#: netbox/circuits/forms/filtersets.py:37 -#: netbox/circuits/forms/filtersets.py:157 netbox/dcim/forms/bulk_edit.py:112 -#: netbox/dcim/forms/bulk_edit.py:313 netbox/dcim/forms/bulk_edit.py:857 -#: netbox/dcim/forms/bulk_import.py:93 netbox/dcim/forms/filtersets.py:73 -#: netbox/dcim/forms/filtersets.py:185 netbox/dcim/forms/filtersets.py:211 -#: netbox/dcim/forms/filtersets.py:334 netbox/dcim/forms/filtersets.py:425 -#: netbox/dcim/forms/filtersets.py:739 netbox/dcim/forms/filtersets.py:983 -#: netbox/dcim/forms/filtersets.py:1013 netbox/dcim/forms/filtersets.py:1097 -#: netbox/dcim/forms/filtersets.py:1136 netbox/dcim/forms/filtersets.py:1576 -#: netbox/dcim/forms/filtersets.py:1600 netbox/dcim/forms/filtersets.py:1624 -#: netbox/dcim/forms/model_forms.py:112 netbox/dcim/forms/object_create.py:375 -#: netbox/dcim/tables/devices.py:143 netbox/dcim/tables/sites.py:85 -#: netbox/extras/filtersets.py:503 netbox/ipam/forms/bulk_edit.py:207 -#: netbox/ipam/forms/bulk_edit.py:441 netbox/ipam/forms/bulk_edit.py:519 -#: netbox/ipam/forms/filtersets.py:217 netbox/ipam/forms/filtersets.py:422 -#: netbox/ipam/forms/filtersets.py:475 netbox/templates/dcim/device.html:18 -#: netbox/templates/dcim/rack.html:16 -#: netbox/templates/dcim/rackreservation.html:22 -#: netbox/templates/dcim/region.html:26 netbox/templates/dcim/site.html:31 -#: netbox/templates/ipam/prefix.html:49 netbox/templates/ipam/vlan.html:16 -#: netbox/virtualization/forms/bulk_edit.py:81 -#: netbox/virtualization/forms/filtersets.py:59 -#: netbox/virtualization/forms/filtersets.py:133 -#: netbox/virtualization/forms/model_forms.py:92 -#: netbox/vpn/forms/filtersets.py:257 +#: circuits/forms/filtersets.py:37 circuits/forms/filtersets.py:157 +#: dcim/forms/bulk_edit.py:112 dcim/forms/bulk_edit.py:313 +#: dcim/forms/bulk_edit.py:857 dcim/forms/bulk_import.py:93 +#: dcim/forms/filtersets.py:73 dcim/forms/filtersets.py:185 +#: dcim/forms/filtersets.py:211 dcim/forms/filtersets.py:334 +#: dcim/forms/filtersets.py:425 dcim/forms/filtersets.py:739 +#: dcim/forms/filtersets.py:983 dcim/forms/filtersets.py:1013 +#: dcim/forms/filtersets.py:1097 dcim/forms/filtersets.py:1136 +#: dcim/forms/filtersets.py:1576 dcim/forms/filtersets.py:1600 +#: dcim/forms/filtersets.py:1624 dcim/forms/model_forms.py:112 +#: dcim/forms/object_create.py:375 dcim/tables/devices.py:143 +#: dcim/tables/sites.py:85 extras/filtersets.py:503 +#: ipam/forms/bulk_edit.py:208 ipam/forms/bulk_edit.py:474 +#: ipam/forms/filtersets.py:217 ipam/forms/filtersets.py:422 +#: ipam/forms/filtersets.py:475 templates/dcim/device.html:18 +#: templates/dcim/rack.html:16 templates/dcim/rackreservation.html:22 +#: templates/dcim/region.html:26 templates/dcim/site.html:31 +#: templates/ipam/prefix.html:49 templates/ipam/vlan.html:16 +#: virtualization/forms/bulk_edit.py:81 virtualization/forms/filtersets.py:59 +#: virtualization/forms/filtersets.py:133 +#: virtualization/forms/model_forms.py:92 vpn/forms/filtersets.py:257 msgid "Region" msgstr "Регіон" -#: netbox/circuits/forms/filtersets.py:42 -#: netbox/circuits/forms/filtersets.py:162 netbox/dcim/forms/bulk_edit.py:321 -#: netbox/dcim/forms/bulk_edit.py:865 netbox/dcim/forms/filtersets.py:78 -#: netbox/dcim/forms/filtersets.py:190 netbox/dcim/forms/filtersets.py:216 -#: netbox/dcim/forms/filtersets.py:347 netbox/dcim/forms/filtersets.py:430 -#: netbox/dcim/forms/filtersets.py:744 netbox/dcim/forms/filtersets.py:988 -#: netbox/dcim/forms/filtersets.py:1102 netbox/dcim/forms/filtersets.py:1141 -#: netbox/dcim/forms/object_create.py:383 netbox/extras/filtersets.py:520 -#: netbox/ipam/forms/bulk_edit.py:212 netbox/ipam/forms/bulk_edit.py:448 -#: netbox/ipam/forms/bulk_edit.py:524 netbox/ipam/forms/filtersets.py:222 -#: netbox/ipam/forms/filtersets.py:427 netbox/ipam/forms/filtersets.py:480 -#: netbox/virtualization/forms/bulk_edit.py:86 -#: netbox/virtualization/forms/filtersets.py:69 -#: netbox/virtualization/forms/filtersets.py:138 -#: netbox/virtualization/forms/model_forms.py:98 +#: circuits/forms/filtersets.py:42 circuits/forms/filtersets.py:162 +#: dcim/forms/bulk_edit.py:321 dcim/forms/bulk_edit.py:865 +#: dcim/forms/filtersets.py:78 dcim/forms/filtersets.py:190 +#: dcim/forms/filtersets.py:216 dcim/forms/filtersets.py:347 +#: dcim/forms/filtersets.py:430 dcim/forms/filtersets.py:744 +#: dcim/forms/filtersets.py:988 dcim/forms/filtersets.py:1102 +#: dcim/forms/filtersets.py:1141 dcim/forms/object_create.py:383 +#: extras/filtersets.py:520 ipam/forms/bulk_edit.py:213 +#: ipam/forms/bulk_edit.py:479 ipam/forms/filtersets.py:222 +#: ipam/forms/filtersets.py:427 ipam/forms/filtersets.py:480 +#: virtualization/forms/bulk_edit.py:86 virtualization/forms/filtersets.py:69 +#: virtualization/forms/filtersets.py:138 +#: virtualization/forms/model_forms.py:98 msgid "Site group" msgstr "Група тех. майданчиків" -#: netbox/circuits/forms/filtersets.py:65 -#: netbox/circuits/forms/filtersets.py:83 -#: netbox/circuits/forms/filtersets.py:102 -#: netbox/circuits/forms/filtersets.py:117 netbox/core/forms/filtersets.py:67 -#: netbox/core/forms/filtersets.py:135 netbox/dcim/forms/bulk_edit.py:828 -#: netbox/dcim/forms/filtersets.py:172 netbox/dcim/forms/filtersets.py:204 -#: netbox/dcim/forms/filtersets.py:915 netbox/dcim/forms/filtersets.py:1007 -#: netbox/dcim/forms/filtersets.py:1131 netbox/dcim/forms/filtersets.py:1239 -#: netbox/dcim/forms/filtersets.py:1263 netbox/dcim/forms/filtersets.py:1288 -#: netbox/dcim/forms/filtersets.py:1307 netbox/dcim/forms/filtersets.py:1327 -#: netbox/dcim/forms/filtersets.py:1441 netbox/dcim/forms/filtersets.py:1465 -#: netbox/dcim/forms/filtersets.py:1489 netbox/dcim/forms/filtersets.py:1507 -#: netbox/dcim/forms/filtersets.py:1523 netbox/extras/forms/bulk_edit.py:90 -#: netbox/extras/forms/filtersets.py:44 netbox/extras/forms/filtersets.py:134 -#: netbox/extras/forms/filtersets.py:165 netbox/extras/forms/filtersets.py:205 -#: netbox/extras/forms/filtersets.py:221 netbox/extras/forms/filtersets.py:252 -#: netbox/extras/forms/filtersets.py:276 netbox/extras/forms/filtersets.py:441 -#: netbox/ipam/forms/filtersets.py:99 netbox/ipam/forms/filtersets.py:266 -#: netbox/ipam/forms/filtersets.py:307 netbox/ipam/forms/filtersets.py:382 -#: netbox/ipam/forms/filtersets.py:468 netbox/ipam/forms/filtersets.py:527 -#: netbox/ipam/forms/filtersets.py:545 netbox/netbox/tables/tables.py:256 -#: netbox/virtualization/forms/filtersets.py:45 -#: netbox/virtualization/forms/filtersets.py:103 -#: netbox/virtualization/forms/filtersets.py:198 -#: netbox/virtualization/forms/filtersets.py:243 -#: netbox/vpn/forms/filtersets.py:213 netbox/wireless/forms/bulk_edit.py:150 -#: netbox/wireless/forms/filtersets.py:34 -#: netbox/wireless/forms/filtersets.py:74 +#: circuits/forms/filtersets.py:65 circuits/forms/filtersets.py:83 +#: circuits/forms/filtersets.py:102 circuits/forms/filtersets.py:117 +#: core/forms/filtersets.py:67 core/forms/filtersets.py:135 +#: dcim/forms/bulk_edit.py:828 dcim/forms/filtersets.py:172 +#: dcim/forms/filtersets.py:204 dcim/forms/filtersets.py:915 +#: dcim/forms/filtersets.py:1007 dcim/forms/filtersets.py:1131 +#: dcim/forms/filtersets.py:1239 dcim/forms/filtersets.py:1263 +#: dcim/forms/filtersets.py:1288 dcim/forms/filtersets.py:1307 +#: dcim/forms/filtersets.py:1327 dcim/forms/filtersets.py:1441 +#: dcim/forms/filtersets.py:1465 dcim/forms/filtersets.py:1489 +#: dcim/forms/filtersets.py:1507 dcim/forms/filtersets.py:1523 +#: extras/forms/bulk_edit.py:90 extras/forms/filtersets.py:44 +#: extras/forms/filtersets.py:134 extras/forms/filtersets.py:165 +#: extras/forms/filtersets.py:205 extras/forms/filtersets.py:221 +#: extras/forms/filtersets.py:252 extras/forms/filtersets.py:276 +#: extras/forms/filtersets.py:441 ipam/forms/filtersets.py:99 +#: ipam/forms/filtersets.py:266 ipam/forms/filtersets.py:307 +#: ipam/forms/filtersets.py:382 ipam/forms/filtersets.py:468 +#: ipam/forms/filtersets.py:527 ipam/forms/filtersets.py:545 +#: netbox/tables/tables.py:256 virtualization/forms/filtersets.py:45 +#: virtualization/forms/filtersets.py:103 +#: virtualization/forms/filtersets.py:198 +#: virtualization/forms/filtersets.py:243 vpn/forms/filtersets.py:213 +#: wireless/forms/bulk_edit.py:150 wireless/forms/filtersets.py:34 +#: wireless/forms/filtersets.py:74 msgid "Attributes" msgstr "Атрибути" -#: netbox/circuits/forms/filtersets.py:73 -#: netbox/circuits/tables/circuits.py:63 -#: netbox/circuits/tables/providers.py:66 -#: netbox/templates/circuits/circuit.html:22 -#: netbox/templates/circuits/provideraccount.html:24 +#: circuits/forms/filtersets.py:73 circuits/tables/circuits.py:63 +#: circuits/tables/providers.py:66 templates/circuits/circuit.html:22 +#: templates/circuits/provideraccount.html:24 msgid "Account" msgstr "Рахунок" -#: netbox/circuits/forms/filtersets.py:217 +#: circuits/forms/filtersets.py:217 msgid "Term Side" msgstr "Сторона терміну" -#: netbox/circuits/forms/filtersets.py:250 -#: netbox/extras/forms/model_forms.py:582 netbox/ipam/forms/filtersets.py:142 -#: netbox/ipam/forms/filtersets.py:546 netbox/ipam/forms/model_forms.py:323 -#: netbox/templates/extras/configcontext.html:60 -#: netbox/templates/ipam/ipaddress.html:59 -#: netbox/templates/ipam/vlan_edit.html:30 -#: netbox/tenancy/forms/filtersets.py:87 netbox/users/forms/model_forms.py:314 +#: circuits/forms/filtersets.py:250 extras/forms/model_forms.py:582 +#: ipam/forms/filtersets.py:142 ipam/forms/filtersets.py:546 +#: ipam/forms/model_forms.py:323 templates/extras/configcontext.html:60 +#: templates/ipam/ipaddress.html:59 templates/ipam/vlan_edit.html:30 +#: tenancy/forms/filtersets.py:87 users/forms/model_forms.py:314 msgid "Assignment" msgstr "Призначення" -#: netbox/circuits/forms/filtersets.py:265 -#: netbox/circuits/forms/model_forms.py:195 -#: netbox/circuits/tables/circuits.py:155 netbox/dcim/forms/bulk_edit.py:117 -#: netbox/dcim/forms/bulk_import.py:100 netbox/dcim/forms/model_forms.py:117 -#: netbox/dcim/tables/sites.py:89 netbox/extras/forms/filtersets.py:480 -#: netbox/ipam/filtersets.py:999 netbox/ipam/forms/bulk_edit.py:538 -#: netbox/ipam/forms/bulk_import.py:436 netbox/ipam/forms/model_forms.py:528 -#: netbox/ipam/tables/fhrp.py:67 netbox/ipam/tables/vlans.py:122 -#: netbox/ipam/tables/vlans.py:226 -#: netbox/templates/circuits/circuitgroupassignment.html:22 -#: netbox/templates/dcim/interface.html:284 netbox/templates/dcim/site.html:37 -#: netbox/templates/ipam/inc/panels/fhrp_groups.html:23 -#: netbox/templates/ipam/vlan.html:27 netbox/templates/tenancy/contact.html:21 -#: netbox/templates/tenancy/tenant.html:20 netbox/templates/users/group.html:6 -#: netbox/templates/users/group.html:14 -#: netbox/templates/virtualization/cluster.html:29 -#: netbox/templates/vpn/tunnel.html:29 -#: netbox/templates/wireless/wirelesslan.html:18 -#: netbox/tenancy/forms/bulk_edit.py:43 netbox/tenancy/forms/bulk_edit.py:94 -#: netbox/tenancy/forms/bulk_import.py:40 -#: netbox/tenancy/forms/bulk_import.py:81 -#: netbox/tenancy/forms/filtersets.py:48 netbox/tenancy/forms/filtersets.py:78 -#: netbox/tenancy/forms/filtersets.py:97 -#: netbox/tenancy/forms/model_forms.py:45 -#: netbox/tenancy/forms/model_forms.py:97 -#: netbox/tenancy/forms/model_forms.py:122 -#: netbox/tenancy/tables/contacts.py:60 netbox/tenancy/tables/contacts.py:107 -#: netbox/tenancy/tables/tenants.py:42 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 -#: netbox/virtualization/forms/bulk_edit.py:65 -#: netbox/virtualization/forms/bulk_import.py:47 -#: netbox/virtualization/forms/filtersets.py:85 -#: netbox/virtualization/forms/model_forms.py:66 -#: netbox/virtualization/tables/clusters.py:70 -#: netbox/vpn/forms/bulk_edit.py:112 netbox/vpn/forms/bulk_import.py:158 -#: netbox/vpn/forms/filtersets.py:116 netbox/vpn/tables/crypto.py:31 -#: netbox/vpn/tables/tunnels.py:44 netbox/wireless/forms/bulk_edit.py:48 -#: netbox/wireless/forms/bulk_import.py:36 -#: netbox/wireless/forms/filtersets.py:46 -#: netbox/wireless/forms/model_forms.py:40 -#: netbox/wireless/tables/wirelesslan.py:48 +#: circuits/forms/filtersets.py:265 circuits/forms/model_forms.py:195 +#: circuits/tables/circuits.py:155 dcim/forms/bulk_edit.py:117 +#: dcim/forms/bulk_import.py:100 dcim/forms/model_forms.py:117 +#: dcim/tables/sites.py:89 extras/forms/filtersets.py:480 +#: ipam/filtersets.py:999 ipam/forms/bulk_edit.py:493 +#: ipam/forms/bulk_import.py:436 ipam/forms/model_forms.py:528 +#: ipam/tables/fhrp.py:67 ipam/tables/vlans.py:122 ipam/tables/vlans.py:226 +#: templates/circuits/circuitgroupassignment.html:22 +#: templates/dcim/interface.html:284 templates/dcim/site.html:37 +#: templates/ipam/inc/panels/fhrp_groups.html:23 templates/ipam/vlan.html:27 +#: templates/tenancy/contact.html:21 templates/tenancy/tenant.html:20 +#: templates/users/group.html:6 templates/users/group.html:14 +#: templates/virtualization/cluster.html:29 templates/vpn/tunnel.html:29 +#: templates/wireless/wirelesslan.html:18 tenancy/forms/bulk_edit.py:43 +#: tenancy/forms/bulk_edit.py:94 tenancy/forms/bulk_import.py:40 +#: tenancy/forms/bulk_import.py:81 tenancy/forms/filtersets.py:48 +#: tenancy/forms/filtersets.py:78 tenancy/forms/filtersets.py:97 +#: tenancy/forms/model_forms.py:45 tenancy/forms/model_forms.py:97 +#: tenancy/forms/model_forms.py:122 tenancy/tables/contacts.py:60 +#: tenancy/tables/contacts.py:107 tenancy/tables/tenants.py:42 +#: users/filtersets.py:62 users/filtersets.py:185 users/forms/filtersets.py:31 +#: users/forms/filtersets.py:37 users/forms/filtersets.py:79 +#: virtualization/forms/bulk_edit.py:65 virtualization/forms/bulk_import.py:47 +#: virtualization/forms/filtersets.py:85 +#: virtualization/forms/model_forms.py:66 virtualization/tables/clusters.py:70 +#: vpn/forms/bulk_edit.py:112 vpn/forms/bulk_import.py:158 +#: vpn/forms/filtersets.py:116 vpn/tables/crypto.py:31 +#: vpn/tables/tunnels.py:44 wireless/forms/bulk_edit.py:48 +#: wireless/forms/bulk_import.py:36 wireless/forms/filtersets.py:46 +#: wireless/forms/model_forms.py:40 wireless/tables/wirelesslan.py:48 msgid "Group" msgstr "Група" -#: netbox/circuits/forms/model_forms.py:182 -#: netbox/templates/circuits/circuitgroup.html:25 +#: circuits/forms/model_forms.py:182 templates/circuits/circuitgroup.html:25 msgid "Circuit Group" msgstr "Група каналу зв'язку" -#: netbox/circuits/models/circuits.py:27 netbox/dcim/models/cables.py:67 -#: netbox/dcim/models/device_component_templates.py:517 -#: netbox/dcim/models/device_component_templates.py:617 -#: netbox/dcim/models/device_components.py:975 -#: netbox/dcim/models/device_components.py:1049 -#: netbox/dcim/models/device_components.py:1204 -#: netbox/dcim/models/devices.py:479 netbox/dcim/models/racks.py:224 -#: netbox/extras/models/tags.py:28 +#: circuits/models/circuits.py:27 dcim/models/cables.py:67 +#: dcim/models/device_component_templates.py:517 +#: dcim/models/device_component_templates.py:617 +#: dcim/models/device_components.py:975 dcim/models/device_components.py:1049 +#: dcim/models/device_components.py:1204 dcim/models/devices.py:479 +#: dcim/models/racks.py:224 extras/models/tags.py:28 msgid "color" msgstr "колір" -#: netbox/circuits/models/circuits.py:36 +#: circuits/models/circuits.py:36 msgid "circuit type" msgstr "тип каналу зв'язку" -#: netbox/circuits/models/circuits.py:37 +#: circuits/models/circuits.py:37 msgid "circuit types" msgstr "типи каналів зв'язку" -#: netbox/circuits/models/circuits.py:48 +#: circuits/models/circuits.py:48 msgid "circuit ID" msgstr "iдентифікатор каналу зв'язку" -#: netbox/circuits/models/circuits.py:49 +#: circuits/models/circuits.py:49 msgid "Unique circuit ID" msgstr "Унікальний ідентифікатор каналу зв'язку" -#: netbox/circuits/models/circuits.py:69 netbox/core/models/data.py:52 -#: netbox/core/models/jobs.py:84 netbox/dcim/models/cables.py:49 -#: netbox/dcim/models/devices.py:653 netbox/dcim/models/devices.py:1173 -#: netbox/dcim/models/devices.py:1399 netbox/dcim/models/power.py:96 -#: netbox/dcim/models/racks.py:297 netbox/dcim/models/sites.py:154 -#: netbox/dcim/models/sites.py:266 netbox/ipam/models/ip.py:253 -#: netbox/ipam/models/ip.py:522 netbox/ipam/models/ip.py:730 -#: netbox/ipam/models/vlans.py:195 netbox/virtualization/models/clusters.py:74 -#: netbox/virtualization/models/virtualmachines.py:84 -#: netbox/vpn/models/tunnels.py:40 netbox/wireless/models.py:95 -#: netbox/wireless/models.py:159 +#: circuits/models/circuits.py:69 core/models/data.py:52 +#: core/models/jobs.py:84 dcim/models/cables.py:49 dcim/models/devices.py:653 +#: dcim/models/devices.py:1173 dcim/models/devices.py:1399 +#: dcim/models/power.py:96 dcim/models/racks.py:297 dcim/models/sites.py:154 +#: dcim/models/sites.py:266 ipam/models/ip.py:253 ipam/models/ip.py:522 +#: ipam/models/ip.py:730 ipam/models/vlans.py:195 +#: virtualization/models/clusters.py:74 +#: virtualization/models/virtualmachines.py:84 vpn/models/tunnels.py:40 +#: wireless/models.py:95 wireless/models.py:159 msgid "status" msgstr "статус" -#: netbox/circuits/models/circuits.py:84 netbox/templates/core/plugin.html:19 +#: circuits/models/circuits.py:84 templates/core/plugin.html:20 msgid "installed" msgstr "встановлено" -#: netbox/circuits/models/circuits.py:89 +#: circuits/models/circuits.py:89 msgid "terminates" msgstr "припинється" -#: netbox/circuits/models/circuits.py:94 +#: circuits/models/circuits.py:94 msgid "commit rate (Kbps)" msgstr "гарантована мінімальна швідкість (Кбіт/с)" -#: netbox/circuits/models/circuits.py:95 +#: circuits/models/circuits.py:95 msgid "Committed rate" msgstr "Гарантирована швідкість" -#: netbox/circuits/models/circuits.py:137 +#: circuits/models/circuits.py:137 msgid "circuit" msgstr "канал зв'язку" -#: netbox/circuits/models/circuits.py:138 +#: circuits/models/circuits.py:138 msgid "circuits" msgstr "канали зв'язку" -#: netbox/circuits/models/circuits.py:170 +#: circuits/models/circuits.py:170 msgid "circuit group" msgstr "група каналу зв'язку" -#: netbox/circuits/models/circuits.py:171 +#: circuits/models/circuits.py:171 msgid "circuit groups" msgstr "групи каналів зв'язку" -#: netbox/circuits/models/circuits.py:195 netbox/ipam/models/fhrp.py:93 -#: netbox/tenancy/models/contacts.py:134 +#: circuits/models/circuits.py:195 ipam/models/fhrp.py:93 +#: tenancy/models/contacts.py:134 msgid "priority" msgstr "пріоритет" -#: netbox/circuits/models/circuits.py:213 +#: circuits/models/circuits.py:213 msgid "Circuit group assignment" msgstr "Призначення групи каналів зв'язку" -#: netbox/circuits/models/circuits.py:214 +#: circuits/models/circuits.py:214 msgid "Circuit group assignments" msgstr "Призначення групи каналів зв'язку" -#: netbox/circuits/models/circuits.py:240 +#: circuits/models/circuits.py:240 msgid "termination" msgstr "припинення" -#: netbox/circuits/models/circuits.py:257 +#: circuits/models/circuits.py:257 msgid "port speed (Kbps)" msgstr "швидкість порту (Кбіт/с)" -#: netbox/circuits/models/circuits.py:260 +#: circuits/models/circuits.py:260 msgid "Physical circuit speed" msgstr "Фізична швидкість каналу зв'язку" -#: netbox/circuits/models/circuits.py:265 +#: circuits/models/circuits.py:265 msgid "upstream speed (Kbps)" msgstr "швидкість висхідного потоку (Кбіт/с)" -#: netbox/circuits/models/circuits.py:266 +#: circuits/models/circuits.py:266 msgid "Upstream speed, if different from port speed" msgstr "Швидкість висхідного потоку, якщо відрізняється від швидкості порту" -#: netbox/circuits/models/circuits.py:271 +#: circuits/models/circuits.py:271 msgid "cross-connect ID" msgstr "ідентифікатор перехресного з'єднання" -#: netbox/circuits/models/circuits.py:272 +#: circuits/models/circuits.py:272 msgid "ID of the local cross-connect" msgstr "Ідентифікатор локального перехресного з'єднання" -#: netbox/circuits/models/circuits.py:277 +#: circuits/models/circuits.py:277 msgid "patch panel/port(s)" msgstr "патч-панель/порт(и)" -#: netbox/circuits/models/circuits.py:278 +#: circuits/models/circuits.py:278 msgid "Patch panel ID and port number(s)" msgstr "Ідентифікатор патч-панелі та номер(и) порту" -#: netbox/circuits/models/circuits.py:281 -#: netbox/dcim/models/device_component_templates.py:61 -#: netbox/dcim/models/device_components.py:68 netbox/dcim/models/racks.py:685 -#: netbox/extras/models/configs.py:45 netbox/extras/models/configs.py:219 -#: netbox/extras/models/customfields.py:125 netbox/extras/models/models.py:61 -#: netbox/extras/models/models.py:158 netbox/extras/models/models.py:396 -#: netbox/extras/models/models.py:511 -#: netbox/extras/models/notifications.py:131 -#: netbox/extras/models/staging.py:31 netbox/extras/models/tags.py:32 -#: netbox/netbox/models/__init__.py:110 netbox/netbox/models/__init__.py:145 -#: netbox/netbox/models/__init__.py:191 netbox/users/models/permissions.py:24 -#: netbox/users/models/tokens.py:57 netbox/users/models/users.py:33 -#: netbox/virtualization/models/virtualmachines.py:289 +#: circuits/models/circuits.py:281 +#: dcim/models/device_component_templates.py:61 +#: dcim/models/device_components.py:68 dcim/models/racks.py:685 +#: extras/models/configs.py:45 extras/models/configs.py:219 +#: extras/models/customfields.py:125 extras/models/models.py:61 +#: extras/models/models.py:158 extras/models/models.py:396 +#: extras/models/models.py:511 extras/models/notifications.py:131 +#: extras/models/staging.py:31 extras/models/tags.py:32 +#: netbox/models/__init__.py:110 netbox/models/__init__.py:145 +#: netbox/models/__init__.py:191 users/models/permissions.py:24 +#: users/models/tokens.py:57 users/models/users.py:33 +#: virtualization/models/virtualmachines.py:289 msgid "description" msgstr "опис" -#: netbox/circuits/models/circuits.py:294 +#: circuits/models/circuits.py:294 msgid "circuit termination" msgstr "кінець каналу зв'язку" -#: netbox/circuits/models/circuits.py:295 +#: circuits/models/circuits.py:295 msgid "circuit terminations" msgstr "кінці каналу зв'язку" -#: netbox/circuits/models/circuits.py:308 +#: circuits/models/circuits.py:308 msgid "" "A circuit termination must attach to either a site or a provider network." msgstr "" "Кінець каналу зв'язку повинно приєднатися або до тех. майданчику, або до " "мережі провайдера." -#: netbox/circuits/models/circuits.py:310 +#: circuits/models/circuits.py:310 msgid "" "A circuit termination cannot attach to both a site and a provider network." msgstr "" "Обідви кінці каналу зв'язку не може приєднатися як до тех. майданчику, так і" " до мережі провайдера." -#: netbox/circuits/models/providers.py:22 -#: netbox/circuits/models/providers.py:66 -#: netbox/circuits/models/providers.py:104 netbox/core/models/data.py:39 -#: netbox/core/models/jobs.py:45 -#: netbox/dcim/models/device_component_templates.py:43 -#: netbox/dcim/models/device_components.py:53 -#: netbox/dcim/models/devices.py:593 netbox/dcim/models/devices.py:1330 -#: netbox/dcim/models/devices.py:1395 netbox/dcim/models/power.py:39 -#: netbox/dcim/models/power.py:92 netbox/dcim/models/racks.py:262 -#: netbox/dcim/models/sites.py:138 netbox/extras/models/configs.py:36 -#: netbox/extras/models/configs.py:215 netbox/extras/models/customfields.py:92 -#: netbox/extras/models/models.py:56 netbox/extras/models/models.py:153 -#: netbox/extras/models/models.py:296 netbox/extras/models/models.py:392 -#: netbox/extras/models/models.py:501 netbox/extras/models/models.py:596 -#: netbox/extras/models/notifications.py:126 -#: netbox/extras/models/scripts.py:30 netbox/extras/models/staging.py:26 -#: netbox/ipam/models/asns.py:18 netbox/ipam/models/fhrp.py:25 -#: netbox/ipam/models/services.py:52 netbox/ipam/models/services.py:88 -#: netbox/ipam/models/vlans.py:36 netbox/ipam/models/vlans.py:184 -#: netbox/ipam/models/vrfs.py:22 netbox/ipam/models/vrfs.py:79 -#: netbox/netbox/models/__init__.py:137 netbox/netbox/models/__init__.py:181 -#: netbox/tenancy/models/contacts.py:64 netbox/tenancy/models/tenants.py:20 -#: netbox/tenancy/models/tenants.py:45 netbox/users/models/permissions.py:20 -#: netbox/users/models/users.py:28 netbox/virtualization/models/clusters.py:57 -#: netbox/virtualization/models/virtualmachines.py:72 -#: netbox/virtualization/models/virtualmachines.py:279 -#: netbox/vpn/models/crypto.py:24 netbox/vpn/models/crypto.py:71 -#: netbox/vpn/models/crypto.py:131 netbox/vpn/models/crypto.py:183 -#: netbox/vpn/models/crypto.py:221 netbox/vpn/models/l2vpn.py:22 -#: netbox/vpn/models/tunnels.py:35 netbox/wireless/models.py:51 +#: circuits/models/providers.py:22 circuits/models/providers.py:66 +#: circuits/models/providers.py:104 core/models/data.py:39 +#: core/models/jobs.py:45 dcim/models/device_component_templates.py:43 +#: dcim/models/device_components.py:53 dcim/models/devices.py:593 +#: dcim/models/devices.py:1330 dcim/models/devices.py:1395 +#: dcim/models/power.py:39 dcim/models/power.py:92 dcim/models/racks.py:262 +#: dcim/models/sites.py:138 extras/models/configs.py:36 +#: extras/models/configs.py:215 extras/models/customfields.py:92 +#: extras/models/models.py:56 extras/models/models.py:153 +#: extras/models/models.py:296 extras/models/models.py:392 +#: extras/models/models.py:501 extras/models/models.py:596 +#: extras/models/notifications.py:126 extras/models/scripts.py:30 +#: extras/models/staging.py:26 ipam/models/asns.py:18 ipam/models/fhrp.py:25 +#: ipam/models/services.py:52 ipam/models/services.py:88 +#: ipam/models/vlans.py:36 ipam/models/vlans.py:184 ipam/models/vrfs.py:22 +#: ipam/models/vrfs.py:79 netbox/models/__init__.py:137 +#: netbox/models/__init__.py:181 tenancy/models/contacts.py:64 +#: tenancy/models/tenants.py:20 tenancy/models/tenants.py:45 +#: users/models/permissions.py:20 users/models/users.py:28 +#: virtualization/models/clusters.py:57 +#: virtualization/models/virtualmachines.py:72 +#: virtualization/models/virtualmachines.py:279 vpn/models/crypto.py:24 +#: vpn/models/crypto.py:71 vpn/models/crypto.py:131 vpn/models/crypto.py:183 +#: vpn/models/crypto.py:221 vpn/models/l2vpn.py:22 vpn/models/tunnels.py:35 +#: wireless/models.py:51 msgid "name" msgstr "найменування" -#: netbox/circuits/models/providers.py:25 +#: circuits/models/providers.py:25 msgid "Full name of the provider" msgstr "Повне найменування провайдера" -#: netbox/circuits/models/providers.py:28 netbox/dcim/models/devices.py:86 -#: netbox/dcim/models/racks.py:137 netbox/dcim/models/sites.py:149 -#: netbox/extras/models/models.py:506 netbox/ipam/models/asns.py:23 -#: netbox/ipam/models/vlans.py:40 netbox/netbox/models/__init__.py:141 -#: netbox/netbox/models/__init__.py:186 netbox/tenancy/models/tenants.py:25 -#: netbox/tenancy/models/tenants.py:49 netbox/vpn/models/l2vpn.py:27 -#: netbox/wireless/models.py:56 +#: circuits/models/providers.py:28 dcim/models/devices.py:86 +#: dcim/models/racks.py:137 dcim/models/sites.py:149 +#: extras/models/models.py:506 ipam/models/asns.py:23 ipam/models/vlans.py:40 +#: netbox/models/__init__.py:141 netbox/models/__init__.py:186 +#: tenancy/models/tenants.py:25 tenancy/models/tenants.py:49 +#: vpn/models/l2vpn.py:27 wireless/models.py:56 msgid "slug" msgstr "скорочення" -#: netbox/circuits/models/providers.py:42 +#: circuits/models/providers.py:42 msgid "provider" msgstr "провайдер" -#: netbox/circuits/models/providers.py:43 +#: circuits/models/providers.py:43 msgid "providers" msgstr "провайдери" -#: netbox/circuits/models/providers.py:63 +#: circuits/models/providers.py:63 msgid "account ID" msgstr "iдентифікатор рахунку" -#: netbox/circuits/models/providers.py:86 +#: circuits/models/providers.py:86 msgid "provider account" msgstr "обліковий запис провайдера" -#: netbox/circuits/models/providers.py:87 +#: circuits/models/providers.py:87 msgid "provider accounts" msgstr "акаунти провайдера" -#: netbox/circuits/models/providers.py:115 +#: circuits/models/providers.py:115 msgid "service ID" msgstr "iдентифікатор послуги" -#: netbox/circuits/models/providers.py:126 +#: circuits/models/providers.py:126 msgid "provider network" msgstr "мережа провайдера" -#: netbox/circuits/models/providers.py:127 +#: circuits/models/providers.py:127 msgid "provider networks" msgstr "мережі провайдерів" -#: netbox/circuits/tables/circuits.py:32 -#: netbox/circuits/tables/circuits.py:132 -#: netbox/circuits/tables/providers.py:18 -#: netbox/circuits/tables/providers.py:69 -#: netbox/circuits/tables/providers.py:99 netbox/core/tables/data.py:16 -#: netbox/core/tables/jobs.py:14 netbox/core/tables/plugins.py:44 -#: netbox/core/tables/tasks.py:11 netbox/core/tables/tasks.py:115 -#: netbox/dcim/forms/filtersets.py:63 netbox/dcim/forms/object_create.py:43 -#: netbox/dcim/tables/devices.py:52 netbox/dcim/tables/devices.py:92 -#: netbox/dcim/tables/devices.py:134 netbox/dcim/tables/devices.py:289 -#: netbox/dcim/tables/devices.py:392 netbox/dcim/tables/devices.py:433 -#: netbox/dcim/tables/devices.py:482 netbox/dcim/tables/devices.py:531 -#: netbox/dcim/tables/devices.py:648 netbox/dcim/tables/devices.py:731 -#: netbox/dcim/tables/devices.py:778 netbox/dcim/tables/devices.py:841 -#: netbox/dcim/tables/devices.py:911 netbox/dcim/tables/devices.py:974 -#: netbox/dcim/tables/devices.py:994 netbox/dcim/tables/devices.py:1023 -#: netbox/dcim/tables/devices.py:1053 netbox/dcim/tables/devicetypes.py:31 -#: netbox/dcim/tables/power.py:22 netbox/dcim/tables/power.py:62 -#: netbox/dcim/tables/racks.py:24 netbox/dcim/tables/racks.py:113 -#: netbox/dcim/tables/sites.py:24 netbox/dcim/tables/sites.py:51 -#: netbox/dcim/tables/sites.py:78 netbox/dcim/tables/sites.py:130 -#: netbox/extras/forms/filtersets.py:213 netbox/extras/tables/tables.py:58 -#: netbox/extras/tables/tables.py:122 netbox/extras/tables/tables.py:155 -#: netbox/extras/tables/tables.py:180 netbox/extras/tables/tables.py:246 -#: netbox/extras/tables/tables.py:361 netbox/extras/tables/tables.py:378 -#: netbox/extras/tables/tables.py:401 netbox/extras/tables/tables.py:439 -#: netbox/extras/tables/tables.py:491 netbox/extras/tables/tables.py:514 -#: netbox/ipam/forms/bulk_edit.py:406 netbox/ipam/forms/filtersets.py:386 -#: netbox/ipam/tables/asn.py:16 netbox/ipam/tables/ip.py:85 -#: netbox/ipam/tables/ip.py:160 netbox/ipam/tables/services.py:15 -#: netbox/ipam/tables/services.py:40 netbox/ipam/tables/vlans.py:64 -#: netbox/ipam/tables/vlans.py:114 netbox/ipam/tables/vrfs.py:26 -#: netbox/ipam/tables/vrfs.py:68 -#: netbox/templates/circuits/circuitgroup.html:28 -#: netbox/templates/circuits/circuittype.html:22 -#: netbox/templates/circuits/provideraccount.html:28 -#: netbox/templates/circuits/providernetwork.html:24 -#: netbox/templates/core/datasource.html:34 netbox/templates/core/job.html:44 -#: netbox/templates/core/plugin.html:53 -#: netbox/templates/core/rq_worker.html:43 -#: netbox/templates/dcim/consoleport.html:28 -#: netbox/templates/dcim/consoleserverport.html:28 -#: netbox/templates/dcim/devicebay.html:24 -#: netbox/templates/dcim/devicerole.html:26 -#: netbox/templates/dcim/frontport.html:28 -#: netbox/templates/dcim/inc/interface_vlans_table.html:5 -#: netbox/templates/dcim/inc/panels/inventory_items.html:18 -#: netbox/templates/dcim/interface.html:38 -#: netbox/templates/dcim/interface.html:165 -#: netbox/templates/dcim/inventoryitem.html:28 -#: netbox/templates/dcim/inventoryitemrole.html:18 -#: netbox/templates/dcim/location.html:29 -#: netbox/templates/dcim/manufacturer.html:36 -#: netbox/templates/dcim/modulebay.html:30 -#: netbox/templates/dcim/platform.html:29 -#: netbox/templates/dcim/poweroutlet.html:28 -#: netbox/templates/dcim/powerport.html:28 -#: netbox/templates/dcim/rackrole.html:22 -#: netbox/templates/dcim/rearport.html:28 netbox/templates/dcim/region.html:29 -#: netbox/templates/dcim/sitegroup.html:29 -#: netbox/templates/dcim/virtualdevicecontext.html:18 -#: netbox/templates/extras/configcontext.html:13 -#: netbox/templates/extras/configtemplate.html:13 -#: netbox/templates/extras/customfield.html:13 -#: netbox/templates/extras/customlink.html:13 -#: netbox/templates/extras/eventrule.html:13 -#: netbox/templates/extras/exporttemplate.html:15 -#: netbox/templates/extras/notificationgroup.html:14 -#: netbox/templates/extras/savedfilter.html:13 -#: netbox/templates/extras/script_list.html:44 -#: netbox/templates/extras/tag.html:14 netbox/templates/extras/webhook.html:13 -#: netbox/templates/ipam/asnrange.html:15 -#: netbox/templates/ipam/fhrpgroup.html:30 netbox/templates/ipam/rir.html:22 -#: netbox/templates/ipam/role.html:22 -#: netbox/templates/ipam/routetarget.html:13 -#: netbox/templates/ipam/service.html:24 -#: netbox/templates/ipam/servicetemplate.html:15 -#: netbox/templates/ipam/vlan.html:35 netbox/templates/ipam/vlangroup.html:30 -#: netbox/templates/tenancy/contact.html:25 -#: netbox/templates/tenancy/contactgroup.html:21 -#: netbox/templates/tenancy/contactrole.html:18 -#: netbox/templates/tenancy/tenantgroup.html:29 -#: netbox/templates/users/group.html:17 -#: netbox/templates/users/objectpermission.html:17 -#: netbox/templates/virtualization/cluster.html:13 -#: netbox/templates/virtualization/clustergroup.html:22 -#: netbox/templates/virtualization/clustertype.html:22 -#: netbox/templates/virtualization/virtualdisk.html:25 -#: netbox/templates/virtualization/virtualmachine.html:15 -#: netbox/templates/virtualization/vminterface.html:25 -#: netbox/templates/vpn/ikepolicy.html:13 -#: netbox/templates/vpn/ikeproposal.html:13 -#: netbox/templates/vpn/ipsecpolicy.html:13 -#: netbox/templates/vpn/ipsecprofile.html:13 -#: netbox/templates/vpn/ipsecprofile.html:36 -#: netbox/templates/vpn/ipsecprofile.html:69 -#: netbox/templates/vpn/ipsecproposal.html:13 -#: netbox/templates/vpn/l2vpn.html:14 netbox/templates/vpn/tunnel.html:21 -#: netbox/templates/vpn/tunnelgroup.html:26 -#: netbox/templates/wireless/wirelesslangroup.html:29 -#: netbox/tenancy/tables/contacts.py:19 netbox/tenancy/tables/contacts.py:41 -#: netbox/tenancy/tables/contacts.py:56 netbox/tenancy/tables/tenants.py:16 -#: netbox/tenancy/tables/tenants.py:38 netbox/users/tables.py:62 -#: netbox/users/tables.py:76 netbox/virtualization/forms/bulk_create.py:20 -#: netbox/virtualization/forms/object_create.py:13 -#: netbox/virtualization/forms/object_create.py:23 -#: netbox/virtualization/tables/clusters.py:17 -#: netbox/virtualization/tables/clusters.py:39 -#: netbox/virtualization/tables/clusters.py:62 -#: netbox/virtualization/tables/virtualmachines.py:55 -#: netbox/virtualization/tables/virtualmachines.py:139 -#: netbox/virtualization/tables/virtualmachines.py:194 -#: netbox/vpn/tables/crypto.py:18 netbox/vpn/tables/crypto.py:57 -#: netbox/vpn/tables/crypto.py:93 netbox/vpn/tables/crypto.py:129 -#: netbox/vpn/tables/crypto.py:158 netbox/vpn/tables/l2vpn.py:23 -#: netbox/vpn/tables/tunnels.py:18 netbox/vpn/tables/tunnels.py:40 -#: netbox/wireless/tables/wirelesslan.py:18 -#: netbox/wireless/tables/wirelesslan.py:79 +#: circuits/tables/circuits.py:32 circuits/tables/circuits.py:132 +#: circuits/tables/providers.py:18 circuits/tables/providers.py:69 +#: circuits/tables/providers.py:99 core/tables/data.py:16 +#: core/tables/jobs.py:14 core/tables/plugins.py:44 core/tables/tasks.py:11 +#: core/tables/tasks.py:115 dcim/forms/filtersets.py:63 +#: dcim/forms/object_create.py:43 dcim/tables/devices.py:52 +#: dcim/tables/devices.py:92 dcim/tables/devices.py:134 +#: dcim/tables/devices.py:289 dcim/tables/devices.py:392 +#: dcim/tables/devices.py:433 dcim/tables/devices.py:482 +#: dcim/tables/devices.py:531 dcim/tables/devices.py:648 +#: dcim/tables/devices.py:731 dcim/tables/devices.py:778 +#: dcim/tables/devices.py:841 dcim/tables/devices.py:911 +#: dcim/tables/devices.py:974 dcim/tables/devices.py:994 +#: dcim/tables/devices.py:1023 dcim/tables/devices.py:1053 +#: dcim/tables/devicetypes.py:31 dcim/tables/power.py:22 +#: dcim/tables/power.py:62 dcim/tables/racks.py:24 dcim/tables/racks.py:113 +#: dcim/tables/sites.py:24 dcim/tables/sites.py:51 dcim/tables/sites.py:78 +#: dcim/tables/sites.py:130 extras/forms/filtersets.py:213 +#: extras/tables/tables.py:58 extras/tables/tables.py:122 +#: extras/tables/tables.py:155 extras/tables/tables.py:180 +#: extras/tables/tables.py:246 extras/tables/tables.py:361 +#: extras/tables/tables.py:378 extras/tables/tables.py:401 +#: extras/tables/tables.py:439 extras/tables/tables.py:491 +#: extras/tables/tables.py:514 ipam/forms/bulk_edit.py:407 +#: ipam/forms/filtersets.py:386 ipam/tables/asn.py:16 ipam/tables/ip.py:85 +#: ipam/tables/ip.py:160 ipam/tables/services.py:15 ipam/tables/services.py:40 +#: ipam/tables/vlans.py:64 ipam/tables/vlans.py:114 ipam/tables/vrfs.py:26 +#: ipam/tables/vrfs.py:68 templates/circuits/circuitgroup.html:28 +#: templates/circuits/circuittype.html:22 +#: templates/circuits/provideraccount.html:28 +#: templates/circuits/providernetwork.html:24 +#: templates/core/datasource.html:34 templates/core/job.html:44 +#: templates/core/plugin.html:54 templates/core/rq_worker.html:43 +#: templates/dcim/consoleport.html:28 templates/dcim/consoleserverport.html:28 +#: templates/dcim/devicebay.html:24 templates/dcim/devicerole.html:26 +#: templates/dcim/frontport.html:28 +#: templates/dcim/inc/interface_vlans_table.html:5 +#: templates/dcim/inc/panels/inventory_items.html:18 +#: templates/dcim/interface.html:38 templates/dcim/interface.html:165 +#: templates/dcim/inventoryitem.html:28 +#: templates/dcim/inventoryitemrole.html:18 templates/dcim/location.html:29 +#: templates/dcim/manufacturer.html:36 templates/dcim/modulebay.html:30 +#: templates/dcim/platform.html:29 templates/dcim/poweroutlet.html:28 +#: templates/dcim/powerport.html:28 templates/dcim/rackrole.html:22 +#: templates/dcim/rearport.html:28 templates/dcim/region.html:29 +#: templates/dcim/sitegroup.html:29 +#: templates/dcim/virtualdevicecontext.html:18 +#: templates/extras/configcontext.html:13 +#: templates/extras/configtemplate.html:13 +#: templates/extras/customfield.html:13 templates/extras/customlink.html:13 +#: templates/extras/eventrule.html:13 templates/extras/exporttemplate.html:15 +#: templates/extras/notificationgroup.html:14 +#: templates/extras/savedfilter.html:13 templates/extras/script_list.html:44 +#: templates/extras/tag.html:14 templates/extras/webhook.html:13 +#: templates/ipam/asnrange.html:15 templates/ipam/fhrpgroup.html:30 +#: templates/ipam/rir.html:22 templates/ipam/role.html:22 +#: templates/ipam/routetarget.html:13 templates/ipam/service.html:24 +#: templates/ipam/servicetemplate.html:15 templates/ipam/vlan.html:35 +#: templates/ipam/vlangroup.html:30 templates/tenancy/contact.html:25 +#: templates/tenancy/contactgroup.html:21 +#: templates/tenancy/contactrole.html:18 templates/tenancy/tenantgroup.html:29 +#: templates/users/group.html:17 templates/users/objectpermission.html:17 +#: templates/virtualization/cluster.html:13 +#: templates/virtualization/clustergroup.html:22 +#: templates/virtualization/clustertype.html:22 +#: templates/virtualization/virtualdisk.html:25 +#: templates/virtualization/virtualmachine.html:15 +#: templates/virtualization/vminterface.html:25 +#: templates/vpn/ikepolicy.html:13 templates/vpn/ikeproposal.html:13 +#: templates/vpn/ipsecpolicy.html:13 templates/vpn/ipsecprofile.html:13 +#: templates/vpn/ipsecprofile.html:36 templates/vpn/ipsecprofile.html:69 +#: templates/vpn/ipsecproposal.html:13 templates/vpn/l2vpn.html:14 +#: templates/vpn/tunnel.html:21 templates/vpn/tunnelgroup.html:26 +#: templates/wireless/wirelesslangroup.html:29 tenancy/tables/contacts.py:19 +#: tenancy/tables/contacts.py:41 tenancy/tables/contacts.py:56 +#: tenancy/tables/tenants.py:16 tenancy/tables/tenants.py:38 +#: users/tables.py:62 users/tables.py:76 +#: virtualization/forms/bulk_create.py:20 +#: virtualization/forms/object_create.py:13 +#: virtualization/forms/object_create.py:23 +#: virtualization/tables/clusters.py:17 virtualization/tables/clusters.py:39 +#: virtualization/tables/clusters.py:62 +#: virtualization/tables/virtualmachines.py:55 +#: virtualization/tables/virtualmachines.py:139 +#: virtualization/tables/virtualmachines.py:194 vpn/tables/crypto.py:18 +#: vpn/tables/crypto.py:57 vpn/tables/crypto.py:93 vpn/tables/crypto.py:129 +#: vpn/tables/crypto.py:158 vpn/tables/l2vpn.py:23 vpn/tables/tunnels.py:18 +#: vpn/tables/tunnels.py:40 wireless/tables/wirelesslan.py:18 +#: wireless/tables/wirelesslan.py:79 msgid "Name" msgstr "Назва" -#: netbox/circuits/tables/circuits.py:41 -#: netbox/circuits/tables/circuits.py:138 -#: netbox/circuits/tables/providers.py:45 -#: netbox/circuits/tables/providers.py:79 netbox/netbox/navigation/menu.py:266 -#: netbox/netbox/navigation/menu.py:270 netbox/netbox/navigation/menu.py:272 -#: netbox/templates/circuits/provider.html:57 -#: netbox/templates/circuits/provideraccount.html:44 -#: netbox/templates/circuits/providernetwork.html:50 +#: circuits/tables/circuits.py:41 circuits/tables/circuits.py:138 +#: circuits/tables/providers.py:45 circuits/tables/providers.py:79 +#: netbox/navigation/menu.py:266 netbox/navigation/menu.py:270 +#: netbox/navigation/menu.py:272 templates/circuits/provider.html:57 +#: templates/circuits/provideraccount.html:44 +#: templates/circuits/providernetwork.html:50 msgid "Circuits" msgstr "Канали зв'язку" -#: netbox/circuits/tables/circuits.py:55 -#: netbox/templates/circuits/circuit.html:26 +#: circuits/tables/circuits.py:55 templates/circuits/circuit.html:26 msgid "Circuit ID" msgstr "Ідентифікатор каналу зв'язку" -#: netbox/circuits/tables/circuits.py:69 -#: netbox/wireless/forms/model_forms.py:160 +#: circuits/tables/circuits.py:69 wireless/forms/model_forms.py:160 msgid "Side A" msgstr "Сторона А" -#: netbox/circuits/tables/circuits.py:74 +#: circuits/tables/circuits.py:74 msgid "Side Z" msgstr "Сторона Б" -#: netbox/circuits/tables/circuits.py:77 -#: netbox/templates/circuits/circuit.html:55 +#: circuits/tables/circuits.py:77 templates/circuits/circuit.html:55 msgid "Commit Rate" msgstr "Гарантований процент чи коефіцієнт доступності" -#: netbox/circuits/tables/circuits.py:80 -#: netbox/circuits/tables/providers.py:48 -#: netbox/circuits/tables/providers.py:82 -#: netbox/circuits/tables/providers.py:107 netbox/dcim/tables/devices.py:1036 -#: netbox/dcim/tables/devicetypes.py:92 netbox/dcim/tables/modules.py:29 -#: netbox/dcim/tables/modules.py:72 netbox/dcim/tables/power.py:39 -#: netbox/dcim/tables/power.py:96 netbox/dcim/tables/racks.py:84 -#: netbox/dcim/tables/racks.py:145 netbox/dcim/tables/racks.py:225 -#: netbox/dcim/tables/sites.py:108 netbox/extras/tables/tables.py:582 -#: netbox/ipam/tables/asn.py:69 netbox/ipam/tables/fhrp.py:34 -#: netbox/ipam/tables/ip.py:136 netbox/ipam/tables/ip.py:275 -#: netbox/ipam/tables/ip.py:329 netbox/ipam/tables/ip.py:397 -#: netbox/ipam/tables/services.py:24 netbox/ipam/tables/services.py:54 -#: netbox/ipam/tables/vlans.py:145 netbox/ipam/tables/vrfs.py:47 -#: netbox/ipam/tables/vrfs.py:72 netbox/templates/dcim/htmx/cable_edit.html:89 -#: netbox/templates/generic/bulk_edit.html:86 -#: netbox/templates/inc/panels/comments.html:5 -#: netbox/tenancy/tables/contacts.py:68 netbox/tenancy/tables/tenants.py:46 -#: netbox/utilities/forms/fields/fields.py:29 -#: netbox/virtualization/tables/clusters.py:91 -#: netbox/virtualization/tables/virtualmachines.py:82 -#: netbox/vpn/tables/crypto.py:37 netbox/vpn/tables/crypto.py:74 -#: netbox/vpn/tables/crypto.py:109 netbox/vpn/tables/crypto.py:140 -#: netbox/vpn/tables/crypto.py:173 netbox/vpn/tables/l2vpn.py:37 -#: netbox/vpn/tables/tunnels.py:61 netbox/wireless/tables/wirelesslan.py:27 -#: netbox/wireless/tables/wirelesslan.py:58 +#: circuits/tables/circuits.py:80 circuits/tables/providers.py:48 +#: circuits/tables/providers.py:82 circuits/tables/providers.py:107 +#: dcim/tables/devices.py:1036 dcim/tables/devicetypes.py:92 +#: dcim/tables/modules.py:29 dcim/tables/modules.py:72 dcim/tables/power.py:39 +#: dcim/tables/power.py:96 dcim/tables/racks.py:84 dcim/tables/racks.py:145 +#: dcim/tables/racks.py:225 dcim/tables/sites.py:108 +#: extras/tables/tables.py:582 ipam/tables/asn.py:69 ipam/tables/fhrp.py:34 +#: ipam/tables/ip.py:136 ipam/tables/ip.py:275 ipam/tables/ip.py:329 +#: ipam/tables/ip.py:397 ipam/tables/services.py:24 ipam/tables/services.py:54 +#: ipam/tables/vlans.py:145 ipam/tables/vrfs.py:47 ipam/tables/vrfs.py:72 +#: templates/dcim/htmx/cable_edit.html:89 templates/generic/bulk_edit.html:86 +#: templates/inc/panels/comments.html:5 tenancy/tables/contacts.py:68 +#: tenancy/tables/tenants.py:46 utilities/forms/fields/fields.py:29 +#: virtualization/tables/clusters.py:91 +#: virtualization/tables/virtualmachines.py:82 vpn/tables/crypto.py:37 +#: vpn/tables/crypto.py:74 vpn/tables/crypto.py:109 vpn/tables/crypto.py:140 +#: vpn/tables/crypto.py:173 vpn/tables/l2vpn.py:37 vpn/tables/tunnels.py:61 +#: wireless/tables/wirelesslan.py:27 wireless/tables/wirelesslan.py:58 msgid "Comments" msgstr "Коментарі" -#: netbox/circuits/tables/circuits.py:86 -#: netbox/templates/tenancy/contact.html:84 -#: netbox/tenancy/tables/contacts.py:73 +#: circuits/tables/circuits.py:86 templates/tenancy/contact.html:84 +#: tenancy/tables/contacts.py:73 msgid "Assignments" msgstr "Завдання" -#: netbox/circuits/tables/providers.py:23 +#: circuits/tables/providers.py:23 msgid "Accounts" msgstr "Рахунки" -#: netbox/circuits/tables/providers.py:29 +#: circuits/tables/providers.py:29 msgid "Account Count" msgstr "Кількість рахунків" -#: netbox/circuits/tables/providers.py:39 netbox/dcim/tables/sites.py:100 +#: circuits/tables/providers.py:39 dcim/tables/sites.py:100 msgid "ASN Count" msgstr "Кількість ASN" -#: netbox/circuits/views.py:331 +#: circuits/views.py:331 #, python-brace-format msgid "No terminations have been defined for circuit {circuit}." -msgstr "Не визначено кінців для каналу зв'язку{circuit}." +msgstr "Не визначено кінців для каналу зв'язку {circuit}." -#: netbox/circuits/views.py:380 +#: circuits/views.py:380 #, python-brace-format msgid "Swapped terminations for circuit {circuit}." msgstr "Замінені місцями кінці для каналу зв'язку {circuit}." -#: netbox/core/api/views.py:39 +#: core/api/views.py:39 msgid "This user does not have permission to synchronize this data source." msgstr "Цей користувач не має дозволу на синхронізацію цього джерела даних." -#: netbox/core/choices.py:18 +#: core/choices.py:18 msgid "New" msgstr "Нові" -#: netbox/core/choices.py:19 netbox/core/constants.py:18 -#: netbox/core/tables/tasks.py:15 netbox/templates/core/rq_task.html:77 +#: core/choices.py:19 core/constants.py:18 core/tables/tasks.py:15 +#: templates/core/rq_task.html:77 msgid "Queued" msgstr "У черзі" -#: netbox/core/choices.py:20 +#: core/choices.py:20 msgid "Syncing" msgstr "Синхронізація" -#: netbox/core/choices.py:21 netbox/core/choices.py:57 -#: netbox/core/tables/jobs.py:41 netbox/templates/core/job.html:86 +#: core/choices.py:21 core/choices.py:57 core/tables/jobs.py:41 +#: templates/core/job.html:86 msgid "Completed" msgstr "Завершено" -#: netbox/core/choices.py:22 netbox/core/choices.py:59 -#: netbox/core/constants.py:20 netbox/core/tables/tasks.py:34 -#: netbox/dcim/choices.py:187 netbox/dcim/choices.py:239 -#: netbox/dcim/choices.py:1607 netbox/virtualization/choices.py:47 +#: core/choices.py:22 core/choices.py:59 core/constants.py:20 +#: core/tables/tasks.py:34 dcim/choices.py:187 dcim/choices.py:239 +#: dcim/choices.py:1607 virtualization/choices.py:47 msgid "Failed" msgstr "Збій" -#: netbox/core/choices.py:35 netbox/netbox/navigation/menu.py:335 -#: netbox/netbox/navigation/menu.py:339 -#: netbox/templates/extras/script/base.html:14 -#: netbox/templates/extras/script_list.html:7 -#: netbox/templates/extras/script_list.html:12 -#: netbox/templates/extras/script_result.html:17 +#: core/choices.py:35 netbox/navigation/menu.py:335 +#: netbox/navigation/menu.py:339 templates/extras/script/base.html:14 +#: templates/extras/script_list.html:7 templates/extras/script_list.html:12 +#: templates/extras/script_result.html:17 msgid "Scripts" msgstr "Скрипти" -#: netbox/core/choices.py:36 netbox/templates/extras/report/base.html:13 +#: core/choices.py:36 templates/extras/report/base.html:13 msgid "Reports" msgstr "Звіти" -#: netbox/core/choices.py:54 +#: core/choices.py:54 msgid "Pending" msgstr "Очікується" -#: netbox/core/choices.py:55 netbox/core/constants.py:23 -#: netbox/core/tables/jobs.py:32 netbox/core/tables/tasks.py:38 -#: netbox/templates/core/job.html:73 +#: core/choices.py:55 core/constants.py:23 core/tables/jobs.py:32 +#: core/tables/tasks.py:38 templates/core/job.html:73 msgid "Scheduled" msgstr "Заплановано" -#: netbox/core/choices.py:56 +#: core/choices.py:56 msgid "Running" msgstr "Запущено" -#: netbox/core/choices.py:58 +#: core/choices.py:58 msgid "Errored" msgstr "Помилка" -#: netbox/core/choices.py:87 netbox/core/tables/plugins.py:63 -#: netbox/templates/generic/object.html:61 +#: core/choices.py:87 core/tables/plugins.py:63 +#: templates/generic/object.html:61 msgid "Updated" msgstr "Оновлено" -#: netbox/core/choices.py:88 +#: core/choices.py:88 msgid "Deleted" msgstr "Видалено" -#: netbox/core/constants.py:19 netbox/core/tables/tasks.py:30 +#: core/constants.py:19 core/tables/tasks.py:30 msgid "Finished" msgstr "Закінчено" -#: netbox/core/constants.py:21 netbox/core/tables/jobs.py:38 -#: netbox/templates/core/job.html:82 -#: netbox/templates/extras/htmx/script_result.html:8 +#: core/constants.py:21 core/tables/jobs.py:38 templates/core/job.html:82 +#: templates/extras/htmx/script_result.html:8 msgid "Started" msgstr "Почато" -#: netbox/core/constants.py:22 netbox/core/tables/tasks.py:26 +#: core/constants.py:22 core/tables/tasks.py:26 msgid "Deferred" msgstr "Відкладено" -#: netbox/core/constants.py:24 +#: core/constants.py:24 msgid "Stopped" msgstr "Зупинено" -#: netbox/core/constants.py:25 +#: core/constants.py:25 msgid "Cancelled" msgstr "Скасовано" -#: netbox/core/data_backends.py:32 netbox/core/tables/plugins.py:51 -#: netbox/templates/core/plugin.html:87 -#: netbox/templates/dcim/interface.html:216 +#: core/data_backends.py:32 core/tables/plugins.py:51 +#: templates/core/plugin.html:88 templates/dcim/interface.html:216 msgid "Local" msgstr "Місцеві" -#: netbox/core/data_backends.py:50 netbox/core/tables/change_logging.py:20 -#: netbox/templates/account/profile.html:15 -#: netbox/templates/users/user.html:17 netbox/users/tables.py:31 +#: core/data_backends.py:50 core/tables/change_logging.py:20 +#: templates/account/profile.html:15 templates/users/user.html:17 +#: users/tables.py:31 msgid "Username" msgstr "Ім'я користувача" -#: netbox/core/data_backends.py:52 netbox/core/data_backends.py:58 +#: core/data_backends.py:52 core/data_backends.py:58 msgid "Only used for cloning with HTTP(S)" msgstr "Використовується лише для клонування за допомогою HTTP(S)" -#: netbox/core/data_backends.py:56 netbox/templates/account/base.html:23 -#: netbox/templates/account/password.html:12 -#: netbox/users/forms/model_forms.py:170 +#: core/data_backends.py:56 templates/account/base.html:23 +#: templates/account/password.html:12 users/forms/model_forms.py:170 msgid "Password" msgstr "Пароль" -#: netbox/core/data_backends.py:62 +#: core/data_backends.py:62 msgid "Branch" msgstr "Відділення" -#: netbox/core/data_backends.py:120 +#: core/data_backends.py:120 #, python-brace-format msgid "Fetching remote data failed ({name}): {error}" msgstr "Не вдалося отримати збійні дані ({name}): {error}" -#: netbox/core/data_backends.py:133 +#: core/data_backends.py:133 msgid "AWS access key ID" msgstr "Ідентифікатор ключа доступу AWS" -#: netbox/core/data_backends.py:137 +#: core/data_backends.py:137 msgid "AWS secret access key" msgstr "Ключ таємничого доступу до AWS" -#: netbox/core/events.py:27 +#: core/events.py:27 msgid "Object created" msgstr "Об'єкт створений" -#: netbox/core/events.py:28 +#: core/events.py:28 msgid "Object updated" msgstr "Об'єкт оновлений" -#: netbox/core/events.py:29 +#: core/events.py:29 msgid "Object deleted" msgstr "Об'єкт видалений" -#: netbox/core/events.py:30 +#: core/events.py:30 msgid "Job started" msgstr "Завдання почалося" -#: netbox/core/events.py:31 +#: core/events.py:31 msgid "Job completed" msgstr "Завдання завершено" -#: netbox/core/events.py:32 +#: core/events.py:32 msgid "Job failed" msgstr "Збій завдання" -#: netbox/core/events.py:33 +#: core/events.py:33 msgid "Job errored" msgstr "Завдання завершено з помилкою" -#: netbox/core/filtersets.py:53 netbox/extras/filtersets.py:250 -#: netbox/extras/filtersets.py:633 netbox/extras/filtersets.py:661 +#: core/filtersets.py:53 extras/filtersets.py:250 extras/filtersets.py:633 +#: extras/filtersets.py:661 msgid "Data source (ID)" msgstr "Джерело даних (ідентифікатор)" -#: netbox/core/filtersets.py:59 +#: core/filtersets.py:59 msgid "Data source (name)" msgstr "Джерело даних (назва)" -#: netbox/core/filtersets.py:145 netbox/dcim/filtersets.py:501 -#: netbox/extras/filtersets.py:287 netbox/extras/filtersets.py:331 -#: netbox/extras/filtersets.py:353 netbox/extras/filtersets.py:413 -#: netbox/users/filtersets.py:28 +#: core/filtersets.py:145 dcim/filtersets.py:501 extras/filtersets.py:287 +#: extras/filtersets.py:331 extras/filtersets.py:353 extras/filtersets.py:413 +#: users/filtersets.py:28 msgid "User (ID)" msgstr "Користувач (ідентифікатор)" -#: netbox/core/filtersets.py:151 +#: core/filtersets.py:151 msgid "User name" msgstr "Ім'я користувача" -#: netbox/core/forms/bulk_edit.py:25 netbox/core/forms/filtersets.py:43 -#: netbox/core/tables/data.py:26 netbox/dcim/forms/bulk_edit.py:1122 -#: netbox/dcim/forms/bulk_edit.py:1400 netbox/dcim/forms/filtersets.py:1370 -#: netbox/dcim/tables/devices.py:553 netbox/dcim/tables/devicetypes.py:224 -#: netbox/extras/forms/bulk_edit.py:123 netbox/extras/forms/bulk_edit.py:187 -#: netbox/extras/forms/bulk_edit.py:246 netbox/extras/forms/filtersets.py:142 -#: netbox/extras/forms/filtersets.py:229 netbox/extras/forms/filtersets.py:294 -#: netbox/extras/tables/tables.py:162 netbox/extras/tables/tables.py:253 -#: netbox/extras/tables/tables.py:415 netbox/netbox/preferences.py:22 -#: netbox/templates/core/datasource.html:42 -#: netbox/templates/dcim/interface.html:61 -#: netbox/templates/extras/customlink.html:17 -#: netbox/templates/extras/eventrule.html:17 -#: netbox/templates/extras/savedfilter.html:25 -#: netbox/templates/users/objectpermission.html:25 -#: netbox/templates/virtualization/vminterface.html:29 -#: netbox/users/forms/bulk_edit.py:89 netbox/users/forms/filtersets.py:70 -#: netbox/users/tables.py:83 netbox/virtualization/forms/bulk_edit.py:217 -#: netbox/virtualization/forms/filtersets.py:215 +#: core/forms/bulk_edit.py:25 core/forms/filtersets.py:43 +#: core/tables/data.py:26 dcim/forms/bulk_edit.py:1122 +#: dcim/forms/bulk_edit.py:1400 dcim/forms/filtersets.py:1370 +#: dcim/tables/devices.py:553 dcim/tables/devicetypes.py:224 +#: extras/forms/bulk_edit.py:123 extras/forms/bulk_edit.py:187 +#: extras/forms/bulk_edit.py:246 extras/forms/filtersets.py:142 +#: extras/forms/filtersets.py:229 extras/forms/filtersets.py:294 +#: extras/tables/tables.py:162 extras/tables/tables.py:253 +#: extras/tables/tables.py:415 netbox/preferences.py:22 +#: templates/core/datasource.html:42 templates/dcim/interface.html:61 +#: templates/extras/customlink.html:17 templates/extras/eventrule.html:17 +#: templates/extras/savedfilter.html:25 +#: templates/users/objectpermission.html:25 +#: templates/virtualization/vminterface.html:29 users/forms/bulk_edit.py:89 +#: users/forms/filtersets.py:70 users/tables.py:83 +#: virtualization/forms/bulk_edit.py:217 +#: virtualization/forms/filtersets.py:215 msgid "Enabled" msgstr "Увімкнено" -#: netbox/core/forms/bulk_edit.py:34 netbox/extras/forms/model_forms.py:285 -#: netbox/templates/extras/savedfilter.html:52 -#: netbox/vpn/forms/filtersets.py:97 netbox/vpn/forms/filtersets.py:127 -#: netbox/vpn/forms/filtersets.py:151 netbox/vpn/forms/filtersets.py:170 -#: netbox/vpn/forms/model_forms.py:301 netbox/vpn/forms/model_forms.py:321 -#: netbox/vpn/forms/model_forms.py:337 netbox/vpn/forms/model_forms.py:357 -#: netbox/vpn/forms/model_forms.py:380 +#: core/forms/bulk_edit.py:34 extras/forms/model_forms.py:285 +#: templates/extras/savedfilter.html:52 vpn/forms/filtersets.py:97 +#: vpn/forms/filtersets.py:127 vpn/forms/filtersets.py:151 +#: vpn/forms/filtersets.py:170 vpn/forms/model_forms.py:301 +#: vpn/forms/model_forms.py:321 vpn/forms/model_forms.py:337 +#: vpn/forms/model_forms.py:357 vpn/forms/model_forms.py:380 msgid "Parameters" msgstr "Параметри" -#: netbox/core/forms/bulk_edit.py:38 netbox/templates/core/datasource.html:68 +#: core/forms/bulk_edit.py:38 templates/core/datasource.html:68 msgid "Ignore rules" msgstr "Ігнорувати правила" -#: netbox/core/forms/filtersets.py:30 netbox/core/forms/model_forms.py:97 -#: netbox/extras/forms/model_forms.py:248 -#: netbox/extras/forms/model_forms.py:578 -#: netbox/extras/forms/model_forms.py:632 netbox/extras/tables/tables.py:191 -#: netbox/extras/tables/tables.py:483 netbox/extras/tables/tables.py:518 -#: netbox/templates/core/datasource.html:31 -#: netbox/templates/dcim/device/render_config.html:18 -#: netbox/templates/extras/configcontext.html:29 -#: netbox/templates/extras/configtemplate.html:21 -#: netbox/templates/extras/exporttemplate.html:35 -#: netbox/templates/virtualization/virtualmachine/render_config.html:18 +#: core/forms/filtersets.py:30 core/forms/model_forms.py:97 +#: extras/forms/model_forms.py:248 extras/forms/model_forms.py:578 +#: extras/forms/model_forms.py:632 extras/tables/tables.py:191 +#: extras/tables/tables.py:483 extras/tables/tables.py:518 +#: templates/core/datasource.html:31 +#: templates/dcim/device/render_config.html:18 +#: templates/extras/configcontext.html:29 +#: templates/extras/configtemplate.html:21 +#: templates/extras/exporttemplate.html:35 +#: templates/virtualization/virtualmachine/render_config.html:18 msgid "Data Source" msgstr "Джерело даних" -#: netbox/core/forms/filtersets.py:55 netbox/core/forms/mixins.py:21 +#: core/forms/filtersets.py:55 core/forms/mixins.py:21 msgid "File" msgstr "Файл" -#: netbox/core/forms/filtersets.py:60 netbox/core/forms/mixins.py:16 -#: netbox/extras/forms/filtersets.py:170 netbox/extras/forms/filtersets.py:328 -#: netbox/extras/forms/filtersets.py:413 +#: core/forms/filtersets.py:60 core/forms/mixins.py:16 +#: extras/forms/filtersets.py:170 extras/forms/filtersets.py:328 +#: extras/forms/filtersets.py:413 msgid "Data source" msgstr "Джерело даних" -#: netbox/core/forms/filtersets.py:70 netbox/extras/forms/filtersets.py:440 +#: core/forms/filtersets.py:70 extras/forms/filtersets.py:440 msgid "Creation" msgstr "Творчість" -#: netbox/core/forms/filtersets.py:74 netbox/core/forms/filtersets.py:160 -#: netbox/extras/forms/filtersets.py:461 netbox/extras/tables/tables.py:220 -#: netbox/extras/tables/tables.py:294 netbox/extras/tables/tables.py:326 -#: netbox/extras/tables/tables.py:571 netbox/templates/core/job.html:38 -#: netbox/templates/core/objectchange.html:52 -#: netbox/tenancy/tables/contacts.py:90 netbox/vpn/tables/l2vpn.py:59 +#: core/forms/filtersets.py:74 core/forms/filtersets.py:160 +#: extras/forms/filtersets.py:461 extras/tables/tables.py:220 +#: extras/tables/tables.py:294 extras/tables/tables.py:326 +#: extras/tables/tables.py:571 templates/core/job.html:38 +#: templates/core/objectchange.html:52 tenancy/tables/contacts.py:90 +#: vpn/tables/l2vpn.py:59 msgid "Object Type" msgstr "Тип об'єкта" -#: netbox/core/forms/filtersets.py:84 +#: core/forms/filtersets.py:84 msgid "Created after" msgstr "Створено після" -#: netbox/core/forms/filtersets.py:89 +#: core/forms/filtersets.py:89 msgid "Created before" msgstr "Створено раніше" -#: netbox/core/forms/filtersets.py:94 +#: core/forms/filtersets.py:94 msgid "Scheduled after" msgstr "Заплановано після" -#: netbox/core/forms/filtersets.py:99 +#: core/forms/filtersets.py:99 msgid "Scheduled before" msgstr "Заплановано раніше" -#: netbox/core/forms/filtersets.py:104 +#: core/forms/filtersets.py:104 msgid "Started after" msgstr "Почнється після" -#: netbox/core/forms/filtersets.py:109 +#: core/forms/filtersets.py:109 msgid "Started before" msgstr "Почнється раніше" -#: netbox/core/forms/filtersets.py:114 +#: core/forms/filtersets.py:114 msgid "Completed after" msgstr "Завершено після" -#: netbox/core/forms/filtersets.py:119 +#: core/forms/filtersets.py:119 msgid "Completed before" msgstr "Завершено раніше" -#: netbox/core/forms/filtersets.py:126 netbox/core/forms/filtersets.py:155 -#: netbox/dcim/forms/bulk_edit.py:456 netbox/dcim/forms/filtersets.py:418 -#: netbox/dcim/forms/filtersets.py:462 netbox/dcim/forms/model_forms.py:316 -#: netbox/extras/forms/filtersets.py:456 netbox/extras/forms/filtersets.py:475 -#: netbox/extras/tables/tables.py:302 netbox/extras/tables/tables.py:342 -#: netbox/templates/core/objectchange.html:36 -#: netbox/templates/dcim/rackreservation.html:58 -#: netbox/templates/extras/savedfilter.html:21 -#: netbox/templates/inc/user_menu.html:33 netbox/templates/users/token.html:21 -#: netbox/templates/users/user.html:6 netbox/templates/users/user.html:14 -#: netbox/users/filtersets.py:107 netbox/users/filtersets.py:174 -#: netbox/users/forms/filtersets.py:84 netbox/users/forms/filtersets.py:125 -#: netbox/users/forms/model_forms.py:155 netbox/users/forms/model_forms.py:192 -#: netbox/users/tables.py:19 +#: core/forms/filtersets.py:126 core/forms/filtersets.py:155 +#: dcim/forms/bulk_edit.py:456 dcim/forms/filtersets.py:418 +#: dcim/forms/filtersets.py:462 dcim/forms/model_forms.py:316 +#: extras/forms/filtersets.py:456 extras/forms/filtersets.py:475 +#: extras/tables/tables.py:302 extras/tables/tables.py:342 +#: templates/core/objectchange.html:36 templates/dcim/rackreservation.html:58 +#: templates/extras/savedfilter.html:21 templates/inc/user_menu.html:33 +#: templates/users/token.html:21 templates/users/user.html:6 +#: templates/users/user.html:14 users/filtersets.py:107 +#: users/filtersets.py:174 users/forms/filtersets.py:84 +#: users/forms/filtersets.py:125 users/forms/model_forms.py:155 +#: users/forms/model_forms.py:192 users/tables.py:19 msgid "User" msgstr "Користувач" -#: netbox/core/forms/filtersets.py:134 netbox/core/tables/change_logging.py:15 -#: netbox/extras/tables/tables.py:609 netbox/extras/tables/tables.py:646 -#: netbox/templates/core/objectchange.html:32 +#: core/forms/filtersets.py:134 core/tables/change_logging.py:15 +#: extras/tables/tables.py:609 extras/tables/tables.py:646 +#: templates/core/objectchange.html:32 msgid "Time" msgstr "Час" -#: netbox/core/forms/filtersets.py:139 netbox/extras/forms/filtersets.py:445 +#: core/forms/filtersets.py:139 extras/forms/filtersets.py:445 msgid "After" msgstr "Після" -#: netbox/core/forms/filtersets.py:144 netbox/extras/forms/filtersets.py:450 +#: core/forms/filtersets.py:144 extras/forms/filtersets.py:450 msgid "Before" msgstr "Раніше" -#: netbox/core/forms/filtersets.py:148 netbox/core/tables/change_logging.py:29 -#: netbox/extras/forms/model_forms.py:396 -#: netbox/templates/core/objectchange.html:46 -#: netbox/templates/extras/eventrule.html:71 +#: core/forms/filtersets.py:148 core/tables/change_logging.py:29 +#: extras/forms/model_forms.py:396 templates/core/objectchange.html:46 +#: templates/extras/eventrule.html:71 msgid "Action" msgstr "Дія" -#: netbox/core/forms/model_forms.py:54 netbox/core/tables/data.py:46 -#: netbox/templates/core/datafile.html:27 -#: netbox/templates/extras/report/base.html:33 -#: netbox/templates/extras/script/base.html:32 +#: core/forms/model_forms.py:54 core/tables/data.py:46 +#: templates/core/datafile.html:27 templates/extras/report/base.html:33 +#: templates/extras/script/base.html:32 msgid "Source" msgstr "Джерело" -#: netbox/core/forms/model_forms.py:58 +#: core/forms/model_forms.py:58 msgid "Backend Parameters" msgstr "Параметри бекенду" -#: netbox/core/forms/model_forms.py:96 +#: core/forms/model_forms.py:96 msgid "File Upload" msgstr "Завантаження файлу" -#: netbox/core/forms/model_forms.py:108 +#: core/forms/model_forms.py:108 msgid "Cannot upload a file and sync from an existing file" msgstr "Не вдається завантажити файл і синхронізувати з існуючого файлу" -#: netbox/core/forms/model_forms.py:110 +#: core/forms/model_forms.py:110 msgid "Must upload a file or select a data file to sync" msgstr "Потрібно завантажити файл або вибрати файл даних для синхронізації" -#: netbox/core/forms/model_forms.py:153 -#: netbox/templates/dcim/rack_elevation_list.html:6 +#: core/forms/model_forms.py:153 templates/dcim/rack_elevation_list.html:6 msgid "Rack Elevations" msgstr "Висота стійки" -#: netbox/core/forms/model_forms.py:157 netbox/dcim/choices.py:1518 -#: netbox/dcim/forms/bulk_edit.py:969 netbox/dcim/forms/bulk_edit.py:1357 -#: netbox/dcim/forms/bulk_edit.py:1375 netbox/dcim/tables/racks.py:158 -#: netbox/netbox/navigation/menu.py:291 netbox/netbox/navigation/menu.py:295 +#: core/forms/model_forms.py:157 dcim/choices.py:1518 +#: dcim/forms/bulk_edit.py:969 dcim/forms/bulk_edit.py:1357 +#: dcim/forms/bulk_edit.py:1375 dcim/tables/racks.py:158 +#: netbox/navigation/menu.py:291 netbox/navigation/menu.py:295 msgid "Power" msgstr "Електрика" -#: netbox/core/forms/model_forms.py:159 netbox/netbox/navigation/menu.py:154 -#: netbox/templates/core/inc/config_data.html:37 +#: core/forms/model_forms.py:159 netbox/navigation/menu.py:154 +#: templates/core/inc/config_data.html:37 msgid "IPAM" msgstr "IPAM" -#: netbox/core/forms/model_forms.py:160 netbox/netbox/navigation/menu.py:230 -#: netbox/templates/core/inc/config_data.html:50 -#: netbox/vpn/forms/bulk_edit.py:77 netbox/vpn/forms/filtersets.py:43 -#: netbox/vpn/forms/model_forms.py:61 netbox/vpn/forms/model_forms.py:146 +#: core/forms/model_forms.py:160 netbox/navigation/menu.py:230 +#: templates/core/inc/config_data.html:50 vpn/forms/bulk_edit.py:77 +#: vpn/forms/filtersets.py:43 vpn/forms/model_forms.py:61 +#: vpn/forms/model_forms.py:146 msgid "Security" msgstr "Безпека" -#: netbox/core/forms/model_forms.py:161 -#: netbox/templates/core/inc/config_data.html:59 +#: core/forms/model_forms.py:161 templates/core/inc/config_data.html:59 msgid "Banners" msgstr "Банери" -#: netbox/core/forms/model_forms.py:162 -#: netbox/templates/core/inc/config_data.html:80 +#: core/forms/model_forms.py:162 templates/core/inc/config_data.html:80 msgid "Pagination" msgstr "Нумерація сторінок" -#: netbox/core/forms/model_forms.py:163 netbox/extras/forms/bulk_edit.py:92 -#: netbox/extras/forms/filtersets.py:47 netbox/extras/forms/model_forms.py:116 -#: netbox/extras/forms/model_forms.py:129 -#: netbox/templates/core/inc/config_data.html:93 +#: core/forms/model_forms.py:163 extras/forms/bulk_edit.py:92 +#: extras/forms/filtersets.py:47 extras/forms/model_forms.py:116 +#: extras/forms/model_forms.py:129 templates/core/inc/config_data.html:93 msgid "Validation" msgstr "Перевірка" -#: netbox/core/forms/model_forms.py:164 -#: netbox/templates/account/preferences.html:6 +#: core/forms/model_forms.py:164 templates/account/preferences.html:6 msgid "User Preferences" msgstr "Параметри користувача" -#: netbox/core/forms/model_forms.py:167 netbox/dcim/forms/filtersets.py:732 -#: netbox/templates/core/inc/config_data.html:127 -#: netbox/users/forms/model_forms.py:64 +#: core/forms/model_forms.py:167 dcim/forms/filtersets.py:732 +#: templates/core/inc/config_data.html:127 users/forms/model_forms.py:64 msgid "Miscellaneous" msgstr "Різне" -#: netbox/core/forms/model_forms.py:169 +#: core/forms/model_forms.py:169 msgid "Config Revision" msgstr "Ревізія конфігурації" -#: netbox/core/forms/model_forms.py:208 +#: core/forms/model_forms.py:208 msgid "This parameter has been defined statically and cannot be modified." msgstr "Цей параметр був визначений статично і не може бути змінений." -#: netbox/core/forms/model_forms.py:216 +#: core/forms/model_forms.py:216 #, python-brace-format msgid "Current value: {value}" msgstr "Поточне значення: {value}" -#: netbox/core/forms/model_forms.py:218 +#: core/forms/model_forms.py:218 msgid " (default)" msgstr " (за замовчуванням)" -#: netbox/core/models/change_logging.py:29 +#: core/models/change_logging.py:29 msgid "time" msgstr "час" -#: netbox/core/models/change_logging.py:42 +#: core/models/change_logging.py:42 msgid "user name" msgstr "ім'я користувача" -#: netbox/core/models/change_logging.py:47 +#: core/models/change_logging.py:47 msgid "request ID" msgstr "Ідентифікатор запиту" -#: netbox/core/models/change_logging.py:52 netbox/extras/models/staging.py:69 +#: core/models/change_logging.py:52 extras/models/staging.py:69 msgid "action" msgstr "дія" -#: netbox/core/models/change_logging.py:86 +#: core/models/change_logging.py:86 msgid "pre-change data" msgstr "дані перед зміною" -#: netbox/core/models/change_logging.py:92 +#: core/models/change_logging.py:92 msgid "post-change data" msgstr "дані після зміни" -#: netbox/core/models/change_logging.py:106 +#: core/models/change_logging.py:106 msgid "object change" msgstr "зміна об'єкта" -#: netbox/core/models/change_logging.py:107 +#: core/models/change_logging.py:107 msgid "object changes" msgstr "зміни об'єкта" -#: netbox/core/models/change_logging.py:123 +#: core/models/change_logging.py:123 #, python-brace-format msgid "Change logging is not supported for this object type ({type})." msgstr "Журнал змін не підтримується для цього типу об'єктів ({type})." -#: netbox/core/models/config.py:18 netbox/core/models/data.py:266 -#: netbox/core/models/files.py:27 netbox/core/models/jobs.py:49 -#: netbox/extras/models/models.py:730 netbox/extras/models/notifications.py:39 -#: netbox/extras/models/notifications.py:186 -#: netbox/netbox/models/features.py:53 netbox/users/models/tokens.py:32 +#: core/models/config.py:18 core/models/data.py:266 core/models/files.py:27 +#: core/models/jobs.py:49 extras/models/models.py:730 +#: extras/models/notifications.py:39 extras/models/notifications.py:186 +#: netbox/models/features.py:53 users/models/tokens.py:32 msgid "created" msgstr "створено" -#: netbox/core/models/config.py:22 +#: core/models/config.py:22 msgid "comment" msgstr "коментар" -#: netbox/core/models/config.py:29 +#: core/models/config.py:29 msgid "configuration data" msgstr "дані конфігурації" -#: netbox/core/models/config.py:36 +#: core/models/config.py:36 msgid "config revision" msgstr "версія конфігурації" -#: netbox/core/models/config.py:37 +#: core/models/config.py:37 msgid "config revisions" msgstr "версії конфігурації" -#: netbox/core/models/config.py:41 +#: core/models/config.py:41 msgid "Default configuration" msgstr "Налаштування за замовчуванням" -#: netbox/core/models/config.py:43 +#: core/models/config.py:43 msgid "Current configuration" msgstr "Поточне налаштування" -#: netbox/core/models/config.py:44 +#: core/models/config.py:44 #, python-brace-format msgid "Config revision #{id}" msgstr "Ревізія конфігурації #{id}" -#: netbox/core/models/data.py:44 netbox/dcim/models/cables.py:43 -#: netbox/dcim/models/device_component_templates.py:203 -#: netbox/dcim/models/device_component_templates.py:237 -#: netbox/dcim/models/device_component_templates.py:272 -#: netbox/dcim/models/device_component_templates.py:334 -#: netbox/dcim/models/device_component_templates.py:413 -#: netbox/dcim/models/device_component_templates.py:512 -#: netbox/dcim/models/device_component_templates.py:612 -#: netbox/dcim/models/device_components.py:283 -#: netbox/dcim/models/device_components.py:312 -#: netbox/dcim/models/device_components.py:345 -#: netbox/dcim/models/device_components.py:463 -#: netbox/dcim/models/device_components.py:605 -#: netbox/dcim/models/device_components.py:970 -#: netbox/dcim/models/device_components.py:1044 -#: netbox/dcim/models/power.py:102 netbox/extras/models/customfields.py:78 -#: netbox/extras/models/search.py:41 -#: netbox/virtualization/models/clusters.py:61 netbox/vpn/models/l2vpn.py:32 +#: core/models/data.py:44 dcim/models/cables.py:43 +#: dcim/models/device_component_templates.py:203 +#: dcim/models/device_component_templates.py:237 +#: dcim/models/device_component_templates.py:272 +#: dcim/models/device_component_templates.py:334 +#: dcim/models/device_component_templates.py:413 +#: dcim/models/device_component_templates.py:512 +#: dcim/models/device_component_templates.py:612 +#: dcim/models/device_components.py:283 dcim/models/device_components.py:312 +#: dcim/models/device_components.py:345 dcim/models/device_components.py:463 +#: dcim/models/device_components.py:605 dcim/models/device_components.py:970 +#: dcim/models/device_components.py:1044 dcim/models/power.py:102 +#: extras/models/customfields.py:78 extras/models/search.py:41 +#: virtualization/models/clusters.py:61 vpn/models/l2vpn.py:32 msgid "type" msgstr "тип" -#: netbox/core/models/data.py:49 netbox/extras/choices.py:37 -#: netbox/extras/models/models.py:164 netbox/extras/tables/tables.py:656 -#: netbox/templates/core/datasource.html:58 -#: netbox/templates/core/plugin.html:65 +#: core/models/data.py:49 extras/choices.py:37 extras/models/models.py:164 +#: extras/tables/tables.py:656 templates/core/datasource.html:58 +#: templates/core/plugin.html:66 msgid "URL" msgstr "URL" -#: netbox/core/models/data.py:59 -#: netbox/dcim/models/device_component_templates.py:418 -#: netbox/dcim/models/device_components.py:512 -#: netbox/extras/models/models.py:70 netbox/extras/models/models.py:301 -#: netbox/extras/models/models.py:526 netbox/users/models/permissions.py:29 +#: core/models/data.py:59 dcim/models/device_component_templates.py:418 +#: dcim/models/device_components.py:512 extras/models/models.py:70 +#: extras/models/models.py:301 extras/models/models.py:526 +#: users/models/permissions.py:29 msgid "enabled" msgstr "увімкнено" -#: netbox/core/models/data.py:63 +#: core/models/data.py:63 msgid "ignore rules" msgstr "ігнорувати правила" -#: netbox/core/models/data.py:65 +#: core/models/data.py:65 msgid "Patterns (one per line) matching files to ignore when syncing" msgstr "" "Шаблони (по одному на рядок), що відповідають файлам, які слід ігнорувати " "під час синхронізації" -#: netbox/core/models/data.py:68 netbox/extras/models/models.py:534 +#: core/models/data.py:68 extras/models/models.py:534 msgid "parameters" msgstr "параметри" -#: netbox/core/models/data.py:73 +#: core/models/data.py:73 msgid "last synced" msgstr "останній синхронізований" -#: netbox/core/models/data.py:81 +#: core/models/data.py:81 msgid "data source" msgstr "джерело даних" -#: netbox/core/models/data.py:82 +#: core/models/data.py:82 msgid "data sources" msgstr "джерела даних" -#: netbox/core/models/data.py:122 +#: core/models/data.py:122 #, python-brace-format msgid "Unknown backend type: {type}" msgstr "Невідомий тип бекенда: {type}" -#: netbox/core/models/data.py:164 +#: core/models/data.py:164 msgid "Cannot initiate sync; syncing already in progress." msgstr "Не вдається ініціювати синхронізацію; бо синхронізація вже триває." -#: netbox/core/models/data.py:177 +#: core/models/data.py:177 msgid "" "There was an error initializing the backend. A dependency needs to be " "installed: " msgstr "" "Виникла помилка при ініціалізації бекенду. Необхідно встановити залежність: " -#: netbox/core/models/data.py:270 netbox/core/models/files.py:31 -#: netbox/netbox/models/features.py:59 +#: core/models/data.py:270 core/models/files.py:31 +#: netbox/models/features.py:59 msgid "last updated" msgstr "останнє оновлення" -#: netbox/core/models/data.py:280 netbox/dcim/models/cables.py:444 +#: core/models/data.py:280 dcim/models/cables.py:444 msgid "path" msgstr "доріжка" -#: netbox/core/models/data.py:283 +#: core/models/data.py:283 msgid "File path relative to the data source's root" msgstr "Шляху до файлу відносно кореня джерела даних" -#: netbox/core/models/data.py:287 netbox/ipam/models/ip.py:503 +#: core/models/data.py:287 ipam/models/ip.py:503 msgid "size" msgstr "розмір" -#: netbox/core/models/data.py:290 +#: core/models/data.py:290 msgid "hash" msgstr "хеш" -#: netbox/core/models/data.py:294 +#: core/models/data.py:294 msgid "Length must be 64 hexadecimal characters." msgstr "Довжина повинна становити 64 шістнадцяткові символи." -#: netbox/core/models/data.py:296 +#: core/models/data.py:296 msgid "SHA256 hash of the file data" msgstr "SHA256 хеш даних файлу" -#: netbox/core/models/data.py:313 +#: core/models/data.py:313 msgid "data file" msgstr "файл даних" -#: netbox/core/models/data.py:314 +#: core/models/data.py:314 msgid "data files" msgstr "файли даних" -#: netbox/core/models/data.py:401 +#: core/models/data.py:401 msgid "auto sync record" msgstr "запис автоматичної синхронізації" -#: netbox/core/models/data.py:402 +#: core/models/data.py:402 msgid "auto sync records" msgstr "автоматична синхронізація записів" -#: netbox/core/models/files.py:37 +#: core/models/files.py:37 msgid "file root" msgstr "кореневий файл" -#: netbox/core/models/files.py:42 +#: core/models/files.py:42 msgid "file path" msgstr "шлях до файлу" -#: netbox/core/models/files.py:44 +#: core/models/files.py:44 msgid "File path relative to the designated root path" msgstr "Шляху до файлу відносно призначеного кореневого шляху" -#: netbox/core/models/files.py:61 +#: core/models/files.py:61 msgid "managed file" msgstr "керований файл" -#: netbox/core/models/files.py:62 +#: core/models/files.py:62 msgid "managed files" msgstr "керовані файли" -#: netbox/core/models/jobs.py:53 +#: core/models/jobs.py:53 msgid "scheduled" msgstr "заплановано" -#: netbox/core/models/jobs.py:58 +#: core/models/jobs.py:58 msgid "interval" msgstr "інтервал" -#: netbox/core/models/jobs.py:64 +#: core/models/jobs.py:64 msgid "Recurrence interval (in minutes)" msgstr "Інтервал рецидивів (у хвилинах)" -#: netbox/core/models/jobs.py:67 +#: core/models/jobs.py:67 msgid "started" msgstr "розпочато" -#: netbox/core/models/jobs.py:72 +#: core/models/jobs.py:72 msgid "completed" msgstr "завершено" -#: netbox/core/models/jobs.py:90 netbox/extras/models/models.py:101 -#: netbox/extras/models/staging.py:87 +#: core/models/jobs.py:90 extras/models/models.py:101 +#: extras/models/staging.py:87 msgid "data" msgstr "дані" -#: netbox/core/models/jobs.py:95 +#: core/models/jobs.py:95 msgid "error" msgstr "помилка" -#: netbox/core/models/jobs.py:100 +#: core/models/jobs.py:100 msgid "job ID" msgstr "iдентифікатор завдання" -#: netbox/core/models/jobs.py:111 +#: core/models/jobs.py:111 msgid "job" msgstr "завдання" -#: netbox/core/models/jobs.py:112 +#: core/models/jobs.py:112 msgid "jobs" msgstr "завдання" -#: netbox/core/models/jobs.py:135 +#: core/models/jobs.py:135 #, python-brace-format msgid "Jobs cannot be assigned to this object type ({type})." msgstr "Завдання не можуть бути призначені для цього типу об'єкта ({type})." -#: netbox/core/models/jobs.py:185 +#: core/models/jobs.py:185 #, python-brace-format msgid "Invalid status for job termination. Choices are: {choices}" msgstr "" "Невірний статус для припинення виконання завдання. Треба вибрати: {choices}" -#: netbox/core/models/jobs.py:216 +#: core/models/jobs.py:216 msgid "" "enqueue() cannot be called with values for both schedule_at and immediate." msgstr "" "enqueue() не можна викликати зі значеннями як для schedule_at, так і для " "imediate." -#: netbox/core/signals.py:126 +#: core/signals.py:126 #, python-brace-format msgid "Deletion is prevented by a protection rule: {message}" msgstr "Видалення запобігає правилу захисту: {message}" -#: netbox/core/tables/change_logging.py:25 -#: netbox/templates/account/profile.html:19 -#: netbox/templates/users/user.html:21 +#: core/tables/change_logging.py:25 templates/account/profile.html:19 +#: templates/users/user.html:21 msgid "Full Name" msgstr "П.І.Б." -#: netbox/core/tables/change_logging.py:37 netbox/core/tables/jobs.py:21 -#: netbox/extras/choices.py:41 netbox/extras/tables/tables.py:279 -#: netbox/extras/tables/tables.py:297 netbox/extras/tables/tables.py:329 -#: netbox/extras/tables/tables.py:409 netbox/extras/tables/tables.py:470 -#: netbox/extras/tables/tables.py:576 netbox/extras/tables/tables.py:616 -#: netbox/extras/tables/tables.py:653 netbox/netbox/tables/tables.py:244 -#: netbox/templates/core/objectchange.html:58 -#: netbox/templates/extras/eventrule.html:78 -#: netbox/templates/extras/journalentry.html:18 -#: netbox/tenancy/tables/contacts.py:93 netbox/vpn/tables/l2vpn.py:64 +#: core/tables/change_logging.py:37 core/tables/jobs.py:21 +#: extras/choices.py:41 extras/tables/tables.py:279 +#: extras/tables/tables.py:297 extras/tables/tables.py:329 +#: extras/tables/tables.py:409 extras/tables/tables.py:470 +#: extras/tables/tables.py:576 extras/tables/tables.py:616 +#: extras/tables/tables.py:653 netbox/tables/tables.py:244 +#: templates/core/objectchange.html:58 templates/extras/eventrule.html:78 +#: templates/extras/journalentry.html:18 tenancy/tables/contacts.py:93 +#: vpn/tables/l2vpn.py:64 msgid "Object" msgstr "Об'єкт" -#: netbox/core/tables/change_logging.py:42 -#: netbox/templates/core/objectchange.html:68 +#: core/tables/change_logging.py:42 templates/core/objectchange.html:68 msgid "Request ID" msgstr "Ідентифікатор запиту" -#: netbox/core/tables/config.py:21 netbox/users/forms/filtersets.py:44 -#: netbox/users/tables.py:39 +#: core/tables/config.py:21 users/forms/filtersets.py:44 users/tables.py:39 msgid "Is Active" msgstr "Є активним" -#: netbox/core/tables/data.py:50 netbox/templates/core/datafile.html:31 +#: core/tables/data.py:50 templates/core/datafile.html:31 msgid "Path" msgstr "Шляху" -#: netbox/core/tables/data.py:54 -#: netbox/templates/extras/inc/result_pending.html:7 +#: core/tables/data.py:54 templates/extras/inc/result_pending.html:7 msgid "Last updated" msgstr "Останнє оновлення" -#: netbox/core/tables/jobs.py:10 netbox/core/tables/tasks.py:76 -#: netbox/dcim/tables/devicetypes.py:164 netbox/extras/tables/tables.py:216 -#: netbox/extras/tables/tables.py:460 netbox/netbox/tables/tables.py:189 -#: netbox/templates/dcim/virtualchassis_edit.html:52 -#: netbox/utilities/forms/forms.py:73 -#: netbox/wireless/tables/wirelesslink.py:17 +#: core/tables/jobs.py:10 core/tables/tasks.py:76 +#: dcim/tables/devicetypes.py:164 extras/tables/tables.py:216 +#: extras/tables/tables.py:460 netbox/tables/tables.py:189 +#: templates/dcim/virtualchassis_edit.html:52 utilities/forms/forms.py:73 +#: wireless/tables/wirelesslink.py:17 msgid "ID" msgstr "Ідентифікатор" -#: netbox/core/tables/jobs.py:35 +#: core/tables/jobs.py:35 msgid "Interval" msgstr "інтервал" -#: netbox/core/tables/plugins.py:14 netbox/templates/vpn/ipsecprofile.html:44 -#: netbox/vpn/forms/bulk_edit.py:141 netbox/vpn/forms/bulk_import.py:172 -#: netbox/vpn/tables/crypto.py:61 +#: core/tables/plugins.py:14 templates/vpn/ipsecprofile.html:44 +#: vpn/forms/bulk_edit.py:141 vpn/forms/bulk_import.py:172 +#: vpn/tables/crypto.py:61 msgid "Version" msgstr "Версія" -#: netbox/core/tables/plugins.py:19 netbox/templates/core/datafile.html:38 +#: core/tables/plugins.py:19 templates/core/datafile.html:38 msgid "Last Updated" msgstr "Останнє оновлення" -#: netbox/core/tables/plugins.py:23 +#: core/tables/plugins.py:23 msgid "Minimum NetBox Version" msgstr "Мінімальна версія NetBox" -#: netbox/core/tables/plugins.py:27 +#: core/tables/plugins.py:27 msgid "Maximum NetBox Version" msgstr "Максимальна версія NetBox" -#: netbox/core/tables/plugins.py:31 netbox/core/tables/plugins.py:74 +#: core/tables/plugins.py:31 core/tables/plugins.py:74 msgid "No plugin data found" msgstr "Не знайдено даних плагіна" -#: netbox/core/tables/plugins.py:48 netbox/templates/core/plugin.html:61 +#: core/tables/plugins.py:48 templates/core/plugin.html:62 msgid "Author" msgstr "Автор" -#: netbox/core/tables/plugins.py:54 +#: core/tables/plugins.py:54 msgid "Installed" msgstr "Встановлено" -#: netbox/core/tables/plugins.py:57 netbox/templates/core/plugin.html:83 +#: core/tables/plugins.py:57 templates/core/plugin.html:84 msgid "Certified" msgstr "Сертифіковано" -#: netbox/core/tables/plugins.py:60 +#: core/tables/plugins.py:60 msgid "Published" msgstr "Опубліковано" -#: netbox/core/tables/plugins.py:66 +#: core/tables/plugins.py:66 msgid "Installed Version" msgstr "Встановлена версія" -#: netbox/core/tables/plugins.py:70 +#: core/tables/plugins.py:70 msgid "Latest Version" msgstr "Найновіша версія" -#: netbox/core/tables/tasks.py:18 +#: core/tables/tasks.py:18 msgid "Oldest Task" msgstr "Найстаріше завдання" -#: netbox/core/tables/tasks.py:42 netbox/templates/core/rq_worker_list.html:39 +#: core/tables/tasks.py:42 templates/core/rq_worker_list.html:39 msgid "Workers" msgstr "Робочі процеси" -#: netbox/core/tables/tasks.py:46 netbox/vpn/tables/tunnels.py:88 +#: core/tables/tasks.py:46 vpn/tables/tunnels.py:88 msgid "Host" msgstr "Ведучий" -#: netbox/core/tables/tasks.py:50 netbox/ipam/forms/filtersets.py:535 +#: core/tables/tasks.py:50 ipam/forms/filtersets.py:535 msgid "Port" msgstr "Порт" -#: netbox/core/tables/tasks.py:54 +#: core/tables/tasks.py:54 msgid "DB" msgstr "База данних" -#: netbox/core/tables/tasks.py:58 +#: core/tables/tasks.py:58 msgid "Scheduler PID" msgstr "Планувальник PID" -#: netbox/core/tables/tasks.py:62 +#: core/tables/tasks.py:62 msgid "No queues found" msgstr "Черг не знайдено" -#: netbox/core/tables/tasks.py:82 +#: core/tables/tasks.py:82 msgid "Enqueued" msgstr "У черзі" -#: netbox/core/tables/tasks.py:85 +#: core/tables/tasks.py:85 msgid "Ended" msgstr "Закінчився" -#: netbox/core/tables/tasks.py:93 netbox/templates/core/rq_task.html:85 +#: core/tables/tasks.py:93 templates/core/rq_task.html:85 msgid "Callable" msgstr "Дзвониться" -#: netbox/core/tables/tasks.py:97 +#: core/tables/tasks.py:97 msgid "No tasks found" msgstr "Завдань не знайдено" -#: netbox/core/tables/tasks.py:118 netbox/templates/core/rq_worker.html:47 +#: core/tables/tasks.py:118 templates/core/rq_worker.html:47 msgid "State" msgstr "Держава" -#: netbox/core/tables/tasks.py:121 netbox/templates/core/rq_worker.html:51 +#: core/tables/tasks.py:121 templates/core/rq_worker.html:51 msgid "Birth" msgstr "Народження" -#: netbox/core/tables/tasks.py:124 netbox/templates/core/rq_worker.html:59 +#: core/tables/tasks.py:124 templates/core/rq_worker.html:59 msgid "PID" msgstr "PID" -#: netbox/core/tables/tasks.py:128 +#: core/tables/tasks.py:128 msgid "No workers found" msgstr "Робочих процессів не знайдено" -#: netbox/core/views.py:90 +#: core/views.py:90 #, python-brace-format msgid "Queued job #{id} to sync {datasource}" msgstr "Завдання у черзі #{id} синхронізовано з {datasource}" -#: netbox/core/views.py:319 +#: core/views.py:319 #, python-brace-format msgid "Restored configuration revision #{id}" msgstr "Відновлена версія конфігурації #{id}" -#: netbox/core/views.py:412 netbox/core/views.py:455 netbox/core/views.py:531 +#: core/views.py:412 core/views.py:455 core/views.py:531 #, python-brace-format msgid "Job {job_id} not found" msgstr "Завдання {job_id} не знайдено" -#: netbox/core/views.py:463 +#: core/views.py:463 #, python-brace-format msgid "Job {id} has been deleted." msgstr "Завдання {id} було видалено." -#: netbox/core/views.py:465 +#: core/views.py:465 #, python-brace-format msgid "Error deleting job {id}: {error}" msgstr "Помилка при видаленні завдання {id}: {error}" -#: netbox/core/views.py:478 netbox/core/views.py:496 +#: core/views.py:478 core/views.py:496 #, python-brace-format msgid "Job {id} not found." msgstr "Завдання {id} не знайдено." -#: netbox/core/views.py:484 +#: core/views.py:484 #, python-brace-format msgid "Job {id} has been re-enqueued." msgstr "Завдання {id} було знову поставлено в чергу." -#: netbox/core/views.py:519 +#: core/views.py:519 #, python-brace-format msgid "Job {id} has been enqueued." msgstr "Завдання {id} був поставлений у чергу." -#: netbox/core/views.py:538 +#: core/views.py:538 #, python-brace-format msgid "Job {id} has been stopped." msgstr "Завдання {id} було зупинено." -#: netbox/core/views.py:540 +#: core/views.py:540 #, python-brace-format msgid "Failed to stop job {id}" msgstr "Не вдалося зупинити завдання {id}" -#: netbox/core/views.py:678 +#: core/views.py:678 msgid "Plugins catalog could not be loaded" msgstr "Не вдалося завантажити каталог плагінів" -#: netbox/core/views.py:712 +#: core/views.py:712 #, python-brace-format msgid "Plugin {name} not found" msgstr "Плагін {name} не знайдено" -#: netbox/dcim/api/serializers_/devices.py:49 -#: netbox/dcim/api/serializers_/devicetypes.py:25 +#: dcim/api/serializers_/devices.py:49 dcim/api/serializers_/devicetypes.py:25 msgid "Position (U)" msgstr "Позиція (U)" -#: netbox/dcim/api/serializers_/racks.py:112 -#: netbox/templates/dcim/rack.html:28 +#: dcim/api/serializers_/racks.py:112 templates/dcim/rack.html:28 msgid "Facility ID" msgstr "Ідентифікатор об'єкта" -#: netbox/dcim/choices.py:21 netbox/virtualization/choices.py:21 +#: dcim/choices.py:21 virtualization/choices.py:21 msgid "Staging" msgstr "Підготовка" -#: netbox/dcim/choices.py:23 netbox/dcim/choices.py:189 -#: netbox/dcim/choices.py:240 netbox/dcim/choices.py:1531 -#: netbox/virtualization/choices.py:23 netbox/virtualization/choices.py:48 +#: dcim/choices.py:23 dcim/choices.py:189 dcim/choices.py:240 +#: dcim/choices.py:1531 virtualization/choices.py:23 +#: virtualization/choices.py:48 msgid "Decommissioning" msgstr "Виведення з експлуатації" -#: netbox/dcim/choices.py:24 +#: dcim/choices.py:24 msgid "Retired" msgstr "Пенсіонер" -#: netbox/dcim/choices.py:65 +#: dcim/choices.py:65 msgid "2-post frame" msgstr "2-постова рамка" -#: netbox/dcim/choices.py:66 +#: dcim/choices.py:66 msgid "4-post frame" msgstr "4-х стовпчастий каркас" -#: netbox/dcim/choices.py:67 +#: dcim/choices.py:67 msgid "4-post cabinet" msgstr "Дворамна шафа" -#: netbox/dcim/choices.py:68 +#: dcim/choices.py:68 msgid "Wall-mounted frame" msgstr "Настінний каркас" -#: netbox/dcim/choices.py:69 +#: dcim/choices.py:69 msgid "Wall-mounted frame (vertical)" msgstr "Рама настінна (вертикальна)" -#: netbox/dcim/choices.py:70 +#: dcim/choices.py:70 msgid "Wall-mounted cabinet" msgstr "Настінна шафа" -#: netbox/dcim/choices.py:71 +#: dcim/choices.py:71 msgid "Wall-mounted cabinet (vertical)" msgstr "Настінна шафа (вертикальна)" -#: netbox/dcim/choices.py:83 netbox/dcim/choices.py:84 -#: netbox/dcim/choices.py:85 netbox/dcim/choices.py:86 +#: dcim/choices.py:83 dcim/choices.py:84 dcim/choices.py:85 dcim/choices.py:86 #, python-brace-format msgid "{n} inches" msgstr "{n} дюймів" -#: netbox/dcim/choices.py:100 netbox/ipam/choices.py:32 -#: netbox/ipam/choices.py:50 netbox/ipam/choices.py:70 -#: netbox/ipam/choices.py:155 netbox/wireless/choices.py:26 +#: dcim/choices.py:100 ipam/choices.py:32 ipam/choices.py:50 +#: ipam/choices.py:70 ipam/choices.py:155 wireless/choices.py:26 msgid "Reserved" msgstr "Зарезервовано" -#: netbox/dcim/choices.py:101 netbox/templates/dcim/device.html:259 +#: dcim/choices.py:101 templates/dcim/device.html:259 msgid "Available" msgstr "Доступний" -#: netbox/dcim/choices.py:104 netbox/ipam/choices.py:33 -#: netbox/ipam/choices.py:51 netbox/ipam/choices.py:71 -#: netbox/ipam/choices.py:156 netbox/wireless/choices.py:28 +#: dcim/choices.py:104 ipam/choices.py:33 ipam/choices.py:51 +#: ipam/choices.py:71 ipam/choices.py:156 wireless/choices.py:28 msgid "Deprecated" msgstr "Застарілий" -#: netbox/dcim/choices.py:114 -#: netbox/templates/dcim/inc/panels/racktype_dimensions.html:41 +#: dcim/choices.py:114 templates/dcim/inc/panels/racktype_dimensions.html:41 msgid "Millimeters" msgstr "Міліметри" -#: netbox/dcim/choices.py:115 netbox/dcim/choices.py:1553 +#: dcim/choices.py:115 dcim/choices.py:1553 msgid "Inches" msgstr "Дюйми" -#: netbox/dcim/choices.py:136 netbox/dcim/choices.py:207 -#: netbox/dcim/choices.py:254 +#: dcim/choices.py:136 dcim/choices.py:207 dcim/choices.py:254 msgid "Front to rear" msgstr "Спереду ззаду" -#: netbox/dcim/choices.py:137 netbox/dcim/choices.py:208 -#: netbox/dcim/choices.py:255 +#: dcim/choices.py:137 dcim/choices.py:208 dcim/choices.py:255 msgid "Rear to front" msgstr "Ззаду спереду" -#: netbox/dcim/choices.py:151 netbox/dcim/forms/bulk_edit.py:68 -#: netbox/dcim/forms/bulk_edit.py:87 netbox/dcim/forms/bulk_edit.py:173 -#: netbox/dcim/forms/bulk_edit.py:1405 netbox/dcim/forms/bulk_import.py:60 -#: netbox/dcim/forms/bulk_import.py:74 netbox/dcim/forms/bulk_import.py:137 -#: netbox/dcim/forms/bulk_import.py:566 netbox/dcim/forms/bulk_import.py:833 -#: netbox/dcim/forms/bulk_import.py:1088 netbox/dcim/forms/filtersets.py:234 -#: netbox/dcim/forms/model_forms.py:74 netbox/dcim/forms/model_forms.py:93 -#: netbox/dcim/forms/model_forms.py:170 netbox/dcim/forms/model_forms.py:1062 -#: netbox/dcim/forms/model_forms.py:1502 -#: netbox/dcim/forms/object_import.py:176 netbox/dcim/tables/devices.py:656 -#: netbox/dcim/tables/devices.py:869 netbox/dcim/tables/devices.py:954 -#: netbox/extras/tables/tables.py:223 netbox/ipam/tables/fhrp.py:59 -#: netbox/ipam/tables/ip.py:378 netbox/ipam/tables/services.py:44 -#: netbox/templates/dcim/interface.html:102 -#: netbox/templates/dcim/interface.html:309 -#: netbox/templates/dcim/location.html:41 netbox/templates/dcim/region.html:37 -#: netbox/templates/dcim/sitegroup.html:37 -#: netbox/templates/ipam/service.html:28 -#: netbox/templates/tenancy/contactgroup.html:29 -#: netbox/templates/tenancy/tenantgroup.html:37 -#: netbox/templates/virtualization/vminterface.html:39 -#: netbox/templates/wireless/wirelesslangroup.html:37 -#: netbox/tenancy/forms/bulk_edit.py:27 netbox/tenancy/forms/bulk_edit.py:61 -#: netbox/tenancy/forms/bulk_import.py:24 -#: netbox/tenancy/forms/bulk_import.py:58 -#: netbox/tenancy/forms/model_forms.py:25 -#: netbox/tenancy/forms/model_forms.py:68 -#: netbox/virtualization/forms/bulk_edit.py:207 -#: netbox/virtualization/forms/bulk_import.py:151 -#: netbox/virtualization/tables/virtualmachines.py:162 -#: netbox/wireless/forms/bulk_edit.py:24 -#: netbox/wireless/forms/bulk_import.py:21 -#: netbox/wireless/forms/model_forms.py:21 +#: dcim/choices.py:151 dcim/forms/bulk_edit.py:68 dcim/forms/bulk_edit.py:87 +#: dcim/forms/bulk_edit.py:173 dcim/forms/bulk_edit.py:1405 +#: dcim/forms/bulk_import.py:60 dcim/forms/bulk_import.py:74 +#: dcim/forms/bulk_import.py:137 dcim/forms/bulk_import.py:566 +#: dcim/forms/bulk_import.py:833 dcim/forms/bulk_import.py:1088 +#: dcim/forms/filtersets.py:234 dcim/forms/model_forms.py:74 +#: dcim/forms/model_forms.py:93 dcim/forms/model_forms.py:170 +#: dcim/forms/model_forms.py:1062 dcim/forms/model_forms.py:1502 +#: dcim/forms/object_import.py:176 dcim/tables/devices.py:656 +#: dcim/tables/devices.py:869 dcim/tables/devices.py:954 +#: extras/tables/tables.py:223 ipam/tables/fhrp.py:59 ipam/tables/ip.py:378 +#: ipam/tables/services.py:44 templates/dcim/interface.html:102 +#: templates/dcim/interface.html:309 templates/dcim/location.html:41 +#: templates/dcim/region.html:37 templates/dcim/sitegroup.html:37 +#: templates/ipam/service.html:28 templates/tenancy/contactgroup.html:29 +#: templates/tenancy/tenantgroup.html:37 +#: templates/virtualization/vminterface.html:39 +#: templates/wireless/wirelesslangroup.html:37 tenancy/forms/bulk_edit.py:27 +#: tenancy/forms/bulk_edit.py:61 tenancy/forms/bulk_import.py:24 +#: tenancy/forms/bulk_import.py:58 tenancy/forms/model_forms.py:25 +#: tenancy/forms/model_forms.py:68 virtualization/forms/bulk_edit.py:207 +#: virtualization/forms/bulk_import.py:151 +#: virtualization/tables/virtualmachines.py:162 wireless/forms/bulk_edit.py:24 +#: wireless/forms/bulk_import.py:21 wireless/forms/model_forms.py:21 msgid "Parent" msgstr "Прабатько" -#: netbox/dcim/choices.py:152 +#: dcim/choices.py:152 msgid "Child" msgstr "Підпорядкований" -#: netbox/dcim/choices.py:166 netbox/templates/dcim/device.html:340 -#: netbox/templates/dcim/rack.html:133 -#: netbox/templates/dcim/rack_elevation_list.html:20 -#: netbox/templates/dcim/rackreservation.html:76 +#: dcim/choices.py:166 templates/dcim/device.html:340 +#: templates/dcim/rack.html:133 templates/dcim/rack_elevation_list.html:20 +#: templates/dcim/rackreservation.html:76 msgid "Front" msgstr "Спереду" -#: netbox/dcim/choices.py:167 netbox/templates/dcim/device.html:346 -#: netbox/templates/dcim/rack.html:139 -#: netbox/templates/dcim/rack_elevation_list.html:21 -#: netbox/templates/dcim/rackreservation.html:82 +#: dcim/choices.py:167 templates/dcim/device.html:346 +#: templates/dcim/rack.html:139 templates/dcim/rack_elevation_list.html:21 +#: templates/dcim/rackreservation.html:82 msgid "Rear" msgstr "Ззаду" -#: netbox/dcim/choices.py:186 netbox/dcim/choices.py:238 -#: netbox/virtualization/choices.py:46 +#: dcim/choices.py:186 dcim/choices.py:238 virtualization/choices.py:46 msgid "Staged" msgstr "Підготовлено" -#: netbox/dcim/choices.py:188 +#: dcim/choices.py:188 msgid "Inventory" msgstr "Інвентар" -#: netbox/dcim/choices.py:209 netbox/dcim/choices.py:256 +#: dcim/choices.py:209 dcim/choices.py:256 msgid "Left to right" msgstr "Зліва направо" -#: netbox/dcim/choices.py:210 netbox/dcim/choices.py:257 +#: dcim/choices.py:210 dcim/choices.py:257 msgid "Right to left" msgstr "Праворуч наліво" -#: netbox/dcim/choices.py:211 netbox/dcim/choices.py:258 +#: dcim/choices.py:211 dcim/choices.py:258 msgid "Side to rear" msgstr "Збоку ззаду" -#: netbox/dcim/choices.py:212 +#: dcim/choices.py:212 msgid "Rear to side" msgstr "Ззаду в бік" -#: netbox/dcim/choices.py:213 +#: dcim/choices.py:213 msgid "Bottom to top" msgstr "Знизу вгору" -#: netbox/dcim/choices.py:214 +#: dcim/choices.py:214 msgid "Top to bottom" msgstr "Зверху вниз" -#: netbox/dcim/choices.py:215 netbox/dcim/choices.py:259 -#: netbox/dcim/choices.py:1303 +#: dcim/choices.py:215 dcim/choices.py:259 dcim/choices.py:1303 msgid "Passive" msgstr "Пасивний" -#: netbox/dcim/choices.py:216 +#: dcim/choices.py:216 msgid "Mixed" msgstr "Змішаний" -#: netbox/dcim/choices.py:484 netbox/dcim/choices.py:733 +#: dcim/choices.py:484 dcim/choices.py:733 msgid "NEMA (Non-locking)" msgstr "NEMA (без блокування)" -#: netbox/dcim/choices.py:506 netbox/dcim/choices.py:755 +#: dcim/choices.py:506 dcim/choices.py:755 msgid "NEMA (Locking)" msgstr "NEMA (з блокуванням)" -#: netbox/dcim/choices.py:530 netbox/dcim/choices.py:779 +#: dcim/choices.py:530 dcim/choices.py:779 msgid "California Style" msgstr "Каліфорнійський стиль" -#: netbox/dcim/choices.py:538 +#: dcim/choices.py:538 msgid "International/ITA" msgstr "Міжнародний/ITA" -#: netbox/dcim/choices.py:573 netbox/dcim/choices.py:814 +#: dcim/choices.py:573 dcim/choices.py:814 msgid "Proprietary" msgstr "Пропрієтарний" -#: netbox/dcim/choices.py:581 netbox/dcim/choices.py:824 -#: netbox/dcim/choices.py:1219 netbox/dcim/choices.py:1221 -#: netbox/dcim/choices.py:1447 netbox/dcim/choices.py:1449 -#: netbox/netbox/navigation/menu.py:200 +#: dcim/choices.py:581 dcim/choices.py:824 dcim/choices.py:1219 +#: dcim/choices.py:1221 dcim/choices.py:1447 dcim/choices.py:1449 +#: netbox/navigation/menu.py:200 msgid "Other" msgstr "Інше" -#: netbox/dcim/choices.py:787 +#: dcim/choices.py:787 msgid "ITA/International" msgstr "ITA/Міжнародні" -#: netbox/dcim/choices.py:854 +#: dcim/choices.py:854 msgid "Physical" msgstr "Фізичний" -#: netbox/dcim/choices.py:855 netbox/dcim/choices.py:1023 +#: dcim/choices.py:855 dcim/choices.py:1023 msgid "Virtual" msgstr "Віртуальний" -#: netbox/dcim/choices.py:856 netbox/dcim/choices.py:1097 -#: netbox/dcim/forms/bulk_edit.py:1515 netbox/dcim/forms/filtersets.py:1330 -#: netbox/dcim/forms/model_forms.py:988 netbox/dcim/forms/model_forms.py:1397 -#: netbox/netbox/navigation/menu.py:140 netbox/netbox/navigation/menu.py:144 -#: netbox/templates/dcim/interface.html:210 +#: dcim/choices.py:856 dcim/choices.py:1097 dcim/forms/bulk_edit.py:1515 +#: dcim/forms/filtersets.py:1330 dcim/forms/model_forms.py:988 +#: dcim/forms/model_forms.py:1397 netbox/navigation/menu.py:140 +#: netbox/navigation/menu.py:144 templates/dcim/interface.html:210 msgid "Wireless" msgstr "Бездротові мережі" -#: netbox/dcim/choices.py:1021 +#: dcim/choices.py:1021 msgid "Virtual interfaces" msgstr "Віртуальні інтерфейси" -#: netbox/dcim/choices.py:1024 netbox/dcim/forms/bulk_edit.py:1410 -#: netbox/dcim/forms/bulk_import.py:840 netbox/dcim/forms/model_forms.py:974 -#: netbox/dcim/tables/devices.py:660 netbox/templates/dcim/interface.html:106 -#: netbox/templates/virtualization/vminterface.html:43 -#: netbox/virtualization/forms/bulk_edit.py:212 -#: netbox/virtualization/forms/bulk_import.py:158 -#: netbox/virtualization/tables/virtualmachines.py:166 +#: dcim/choices.py:1024 dcim/forms/bulk_edit.py:1410 +#: dcim/forms/bulk_import.py:840 dcim/forms/model_forms.py:974 +#: dcim/tables/devices.py:660 templates/dcim/interface.html:106 +#: templates/virtualization/vminterface.html:43 +#: virtualization/forms/bulk_edit.py:212 +#: virtualization/forms/bulk_import.py:158 +#: virtualization/tables/virtualmachines.py:166 msgid "Bridge" msgstr "Міст" -#: netbox/dcim/choices.py:1025 +#: dcim/choices.py:1025 msgid "Link Aggregation Group (LAG)" msgstr "Група агрегації каналів (LAG)" -#: netbox/dcim/choices.py:1029 +#: dcim/choices.py:1029 msgid "Ethernet (fixed)" msgstr "Ethernet (фіксований)" -#: netbox/dcim/choices.py:1044 +#: dcim/choices.py:1044 msgid "Ethernet (modular)" msgstr "Ethernet (модульний)" -#: netbox/dcim/choices.py:1081 +#: dcim/choices.py:1081 msgid "Ethernet (backplane)" msgstr "Ethernet (панель)" -#: netbox/dcim/choices.py:1113 +#: dcim/choices.py:1113 msgid "Cellular" msgstr "Стільниковий" -#: netbox/dcim/choices.py:1165 netbox/dcim/forms/filtersets.py:383 -#: netbox/dcim/forms/filtersets.py:809 netbox/dcim/forms/filtersets.py:963 -#: netbox/dcim/forms/filtersets.py:1542 -#: netbox/templates/dcim/inventoryitem.html:52 -#: netbox/templates/dcim/virtualchassis_edit.html:54 +#: dcim/choices.py:1165 dcim/forms/filtersets.py:383 +#: dcim/forms/filtersets.py:809 dcim/forms/filtersets.py:963 +#: dcim/forms/filtersets.py:1542 templates/dcim/inventoryitem.html:52 +#: templates/dcim/virtualchassis_edit.html:54 msgid "Serial" msgstr "Серійний" -#: netbox/dcim/choices.py:1180 +#: dcim/choices.py:1180 msgid "Coaxial" msgstr "Коаксіальний" -#: netbox/dcim/choices.py:1200 +#: dcim/choices.py:1200 msgid "Stacking" msgstr "Стекований" -#: netbox/dcim/choices.py:1250 +#: dcim/choices.py:1250 msgid "Half" msgstr "Половинний" -#: netbox/dcim/choices.py:1251 +#: dcim/choices.py:1251 msgid "Full" msgstr "Повний" -#: netbox/dcim/choices.py:1252 netbox/netbox/preferences.py:31 -#: netbox/wireless/choices.py:480 +#: dcim/choices.py:1252 netbox/preferences.py:31 wireless/choices.py:480 msgid "Auto" msgstr "Авто" -#: netbox/dcim/choices.py:1263 +#: dcim/choices.py:1263 msgid "Access" msgstr "Доступ" -#: netbox/dcim/choices.py:1264 netbox/ipam/tables/vlans.py:172 -#: netbox/ipam/tables/vlans.py:217 -#: netbox/templates/dcim/inc/interface_vlans_table.html:7 +#: dcim/choices.py:1264 ipam/tables/vlans.py:172 ipam/tables/vlans.py:217 +#: templates/dcim/inc/interface_vlans_table.html:7 msgid "Tagged" msgstr "З мітками" -#: netbox/dcim/choices.py:1265 +#: dcim/choices.py:1265 msgid "Tagged (All)" msgstr "З мітками (Усі)" -#: netbox/dcim/choices.py:1294 +#: dcim/choices.py:1294 msgid "IEEE Standard" msgstr "Стандарт IEEE" -#: netbox/dcim/choices.py:1305 +#: dcim/choices.py:1305 msgid "Passive 24V (2-pair)" msgstr "Пасивний 24В (2-парний)" -#: netbox/dcim/choices.py:1306 +#: dcim/choices.py:1306 msgid "Passive 24V (4-pair)" msgstr "Пасивний 24В (4-парний)" -#: netbox/dcim/choices.py:1307 +#: dcim/choices.py:1307 msgid "Passive 48V (2-pair)" msgstr "Пасивний 48В (2-парний)" -#: netbox/dcim/choices.py:1308 +#: dcim/choices.py:1308 msgid "Passive 48V (4-pair)" msgstr "Пасивний 48В (4-парний)" -#: netbox/dcim/choices.py:1378 netbox/dcim/choices.py:1488 +#: dcim/choices.py:1378 dcim/choices.py:1488 msgid "Copper" msgstr "Мідний" -#: netbox/dcim/choices.py:1401 +#: dcim/choices.py:1401 msgid "Fiber Optic" msgstr "Волоконно-оптичний" -#: netbox/dcim/choices.py:1434 netbox/dcim/choices.py:1517 +#: dcim/choices.py:1434 dcim/choices.py:1517 msgid "USB" msgstr "USB" -#: netbox/dcim/choices.py:1504 +#: dcim/choices.py:1504 msgid "Fiber" msgstr "Волоконний" -#: netbox/dcim/choices.py:1529 netbox/dcim/forms/filtersets.py:1227 +#: dcim/choices.py:1529 dcim/forms/filtersets.py:1227 msgid "Connected" msgstr "Підключений" -#: netbox/dcim/choices.py:1548 netbox/wireless/choices.py:497 +#: dcim/choices.py:1548 wireless/choices.py:497 msgid "Kilometers" msgstr "Кілометри" -#: netbox/dcim/choices.py:1549 netbox/templates/dcim/cable_trace.html:65 -#: netbox/wireless/choices.py:498 +#: dcim/choices.py:1549 templates/dcim/cable_trace.html:65 +#: wireless/choices.py:498 msgid "Meters" msgstr "Метри" -#: netbox/dcim/choices.py:1550 +#: dcim/choices.py:1550 msgid "Centimeters" msgstr "Сантиметри" -#: netbox/dcim/choices.py:1551 netbox/wireless/choices.py:499 +#: dcim/choices.py:1551 wireless/choices.py:499 msgid "Miles" msgstr "Милі" -#: netbox/dcim/choices.py:1552 netbox/templates/dcim/cable_trace.html:66 -#: netbox/wireless/choices.py:500 +#: dcim/choices.py:1552 templates/dcim/cable_trace.html:66 +#: wireless/choices.py:500 msgid "Feet" msgstr "Фути" -#: netbox/dcim/choices.py:1568 netbox/templates/dcim/device.html:327 -#: netbox/templates/dcim/rack.html:107 +#: dcim/choices.py:1568 templates/dcim/device.html:327 +#: templates/dcim/rack.html:107 msgid "Kilograms" msgstr "Кілограми" -#: netbox/dcim/choices.py:1569 +#: dcim/choices.py:1569 msgid "Grams" msgstr "Грами" -#: netbox/dcim/choices.py:1570 netbox/templates/dcim/device.html:328 -#: netbox/templates/dcim/rack.html:108 +#: dcim/choices.py:1570 templates/dcim/device.html:328 +#: templates/dcim/rack.html:108 msgid "Pounds" msgstr "Фунтів" -#: netbox/dcim/choices.py:1571 +#: dcim/choices.py:1571 msgid "Ounces" msgstr "Унцій" -#: netbox/dcim/choices.py:1618 +#: dcim/choices.py:1618 msgid "Redundant" msgstr "Надлишковий" -#: netbox/dcim/choices.py:1639 +#: dcim/choices.py:1639 msgid "Single phase" msgstr "Однофазний" -#: netbox/dcim/choices.py:1640 +#: dcim/choices.py:1640 msgid "Three-phase" msgstr "Трифазний" -#: netbox/dcim/fields.py:45 +#: dcim/fields.py:45 #, python-brace-format msgid "Invalid MAC address format: {value}" msgstr "Невірний формат MAC-адреси: {value}" -#: netbox/dcim/fields.py:71 +#: dcim/fields.py:71 #, python-brace-format msgid "Invalid WWN format: {value}" msgstr "Невірний формат WWN: {value}" -#: netbox/dcim/filtersets.py:86 +#: dcim/filtersets.py:86 msgid "Parent region (ID)" msgstr "Батьківський регіон (ідентифікатор)" -#: netbox/dcim/filtersets.py:92 +#: dcim/filtersets.py:92 msgid "Parent region (slug)" msgstr "Батьківський регіон (скорочення)" -#: netbox/dcim/filtersets.py:116 +#: dcim/filtersets.py:116 msgid "Parent site group (ID)" msgstr "Батьківська група тех. майданчиків (ідентифікатор)" -#: netbox/dcim/filtersets.py:122 +#: dcim/filtersets.py:122 msgid "Parent site group (slug)" msgstr "Батьківська група тех. майданчиків (скорочення)" -#: netbox/dcim/filtersets.py:164 netbox/extras/filtersets.py:364 -#: netbox/ipam/filtersets.py:841 netbox/ipam/filtersets.py:993 +#: dcim/filtersets.py:164 extras/filtersets.py:364 ipam/filtersets.py:841 +#: ipam/filtersets.py:993 msgid "Group (ID)" msgstr "Група (ідентифікатор)" -#: netbox/dcim/filtersets.py:170 +#: dcim/filtersets.py:170 msgid "Group (slug)" msgstr "Група (скорочення)" -#: netbox/dcim/filtersets.py:176 netbox/dcim/filtersets.py:181 +#: dcim/filtersets.py:176 dcim/filtersets.py:181 msgid "AS (ID)" msgstr "AS (ідентифікатор)" -#: netbox/dcim/filtersets.py:246 +#: dcim/filtersets.py:246 msgid "Parent location (ID)" msgstr "Батьківське місцезнаходження (ідентифікатор)" -#: netbox/dcim/filtersets.py:252 +#: dcim/filtersets.py:252 msgid "Parent location (slug)" msgstr "Батьківське розташування (скорочення)" -#: netbox/dcim/filtersets.py:258 netbox/dcim/filtersets.py:369 -#: netbox/dcim/filtersets.py:490 netbox/dcim/filtersets.py:1057 -#: netbox/dcim/filtersets.py:1404 netbox/dcim/filtersets.py:2182 +#: dcim/filtersets.py:258 dcim/filtersets.py:369 dcim/filtersets.py:490 +#: dcim/filtersets.py:1057 dcim/filtersets.py:1404 dcim/filtersets.py:2182 msgid "Location (ID)" msgstr "Місцезнаходження (ідентифікатор)" -#: netbox/dcim/filtersets.py:265 netbox/dcim/filtersets.py:376 -#: netbox/dcim/filtersets.py:497 netbox/dcim/filtersets.py:1410 -#: netbox/extras/filtersets.py:542 +#: dcim/filtersets.py:265 dcim/filtersets.py:376 dcim/filtersets.py:497 +#: dcim/filtersets.py:1410 extras/filtersets.py:542 msgid "Location (slug)" msgstr "Місцезнаходження (скорочення)" -#: netbox/dcim/filtersets.py:296 netbox/dcim/filtersets.py:381 -#: netbox/dcim/filtersets.py:539 netbox/dcim/filtersets.py:678 -#: netbox/dcim/filtersets.py:882 netbox/dcim/filtersets.py:933 -#: netbox/dcim/filtersets.py:973 netbox/dcim/filtersets.py:1306 -#: netbox/dcim/filtersets.py:1840 +#: dcim/filtersets.py:296 dcim/filtersets.py:381 dcim/filtersets.py:539 +#: dcim/filtersets.py:678 dcim/filtersets.py:882 dcim/filtersets.py:933 +#: dcim/filtersets.py:973 dcim/filtersets.py:1306 dcim/filtersets.py:1840 msgid "Manufacturer (ID)" msgstr "Виробник (ідентифікатор)" -#: netbox/dcim/filtersets.py:302 netbox/dcim/filtersets.py:387 -#: netbox/dcim/filtersets.py:545 netbox/dcim/filtersets.py:684 -#: netbox/dcim/filtersets.py:888 netbox/dcim/filtersets.py:939 -#: netbox/dcim/filtersets.py:979 netbox/dcim/filtersets.py:1312 -#: netbox/dcim/filtersets.py:1846 +#: dcim/filtersets.py:302 dcim/filtersets.py:387 dcim/filtersets.py:545 +#: dcim/filtersets.py:684 dcim/filtersets.py:888 dcim/filtersets.py:939 +#: dcim/filtersets.py:979 dcim/filtersets.py:1312 dcim/filtersets.py:1846 msgid "Manufacturer (slug)" msgstr "Виробник (скорочення)" -#: netbox/dcim/filtersets.py:393 +#: dcim/filtersets.py:393 msgid "Rack type (slug)" msgstr "Тип стійки (скорочення)" -#: netbox/dcim/filtersets.py:397 +#: dcim/filtersets.py:397 msgid "Rack type (ID)" msgstr "Тип стійки (ідентифікатор)" -#: netbox/dcim/filtersets.py:411 netbox/dcim/filtersets.py:892 -#: netbox/dcim/filtersets.py:994 netbox/dcim/filtersets.py:1850 -#: netbox/ipam/filtersets.py:381 netbox/ipam/filtersets.py:493 -#: netbox/ipam/filtersets.py:1003 netbox/virtualization/filtersets.py:210 +#: dcim/filtersets.py:411 dcim/filtersets.py:892 dcim/filtersets.py:994 +#: dcim/filtersets.py:1850 ipam/filtersets.py:381 ipam/filtersets.py:493 +#: ipam/filtersets.py:1003 virtualization/filtersets.py:210 msgid "Role (ID)" msgstr "Роль (ідентифікатор)" -#: netbox/dcim/filtersets.py:417 netbox/dcim/filtersets.py:898 -#: netbox/dcim/filtersets.py:1000 netbox/dcim/filtersets.py:1856 -#: netbox/extras/filtersets.py:558 netbox/ipam/filtersets.py:387 -#: netbox/ipam/filtersets.py:499 netbox/ipam/filtersets.py:1009 -#: netbox/virtualization/filtersets.py:216 +#: dcim/filtersets.py:417 dcim/filtersets.py:898 dcim/filtersets.py:1000 +#: dcim/filtersets.py:1856 extras/filtersets.py:558 ipam/filtersets.py:387 +#: ipam/filtersets.py:499 ipam/filtersets.py:1009 +#: virtualization/filtersets.py:216 msgid "Role (slug)" msgstr "Роль (скорочення)" -#: netbox/dcim/filtersets.py:447 netbox/dcim/filtersets.py:1062 -#: netbox/dcim/filtersets.py:1415 netbox/dcim/filtersets.py:2244 +#: dcim/filtersets.py:447 dcim/filtersets.py:1062 dcim/filtersets.py:1415 +#: dcim/filtersets.py:2244 msgid "Rack (ID)" msgstr "Стійка (ідентифікатор)" -#: netbox/dcim/filtersets.py:507 netbox/extras/filtersets.py:293 -#: netbox/extras/filtersets.py:337 netbox/extras/filtersets.py:359 -#: netbox/extras/filtersets.py:419 netbox/users/filtersets.py:113 -#: netbox/users/filtersets.py:180 +#: dcim/filtersets.py:507 extras/filtersets.py:293 extras/filtersets.py:337 +#: extras/filtersets.py:359 extras/filtersets.py:419 users/filtersets.py:113 +#: users/filtersets.py:180 msgid "User (name)" msgstr "Користувач (ім'я)" -#: netbox/dcim/filtersets.py:549 +#: dcim/filtersets.py:549 msgid "Default platform (ID)" msgstr "Платформа за замовчуванням (ідентифікатор)" -#: netbox/dcim/filtersets.py:555 +#: dcim/filtersets.py:555 msgid "Default platform (slug)" msgstr "Платформа за замовчуванням (скорочення)" -#: netbox/dcim/filtersets.py:558 netbox/dcim/forms/filtersets.py:517 +#: dcim/filtersets.py:558 dcim/forms/filtersets.py:517 msgid "Has a front image" msgstr "Має фронтальне зображення" -#: netbox/dcim/filtersets.py:562 netbox/dcim/forms/filtersets.py:524 +#: dcim/filtersets.py:562 dcim/forms/filtersets.py:524 msgid "Has a rear image" msgstr "Має зображення ззаду" -#: netbox/dcim/filtersets.py:567 netbox/dcim/filtersets.py:688 -#: netbox/dcim/filtersets.py:1131 netbox/dcim/forms/filtersets.py:531 -#: netbox/dcim/forms/filtersets.py:627 netbox/dcim/forms/filtersets.py:848 +#: dcim/filtersets.py:567 dcim/filtersets.py:688 dcim/filtersets.py:1131 +#: dcim/forms/filtersets.py:531 dcim/forms/filtersets.py:627 +#: dcim/forms/filtersets.py:848 msgid "Has console ports" msgstr "Має консольні порти" -#: netbox/dcim/filtersets.py:571 netbox/dcim/filtersets.py:692 -#: netbox/dcim/filtersets.py:1135 netbox/dcim/forms/filtersets.py:538 -#: netbox/dcim/forms/filtersets.py:634 netbox/dcim/forms/filtersets.py:855 +#: dcim/filtersets.py:571 dcim/filtersets.py:692 dcim/filtersets.py:1135 +#: dcim/forms/filtersets.py:538 dcim/forms/filtersets.py:634 +#: dcim/forms/filtersets.py:855 msgid "Has console server ports" msgstr "Має порти консольного сервера" -#: netbox/dcim/filtersets.py:575 netbox/dcim/filtersets.py:696 -#: netbox/dcim/filtersets.py:1139 netbox/dcim/forms/filtersets.py:545 -#: netbox/dcim/forms/filtersets.py:641 netbox/dcim/forms/filtersets.py:862 +#: dcim/filtersets.py:575 dcim/filtersets.py:696 dcim/filtersets.py:1139 +#: dcim/forms/filtersets.py:545 dcim/forms/filtersets.py:641 +#: dcim/forms/filtersets.py:862 msgid "Has power ports" msgstr "Має порти живлення" -#: netbox/dcim/filtersets.py:579 netbox/dcim/filtersets.py:700 -#: netbox/dcim/filtersets.py:1143 netbox/dcim/forms/filtersets.py:552 -#: netbox/dcim/forms/filtersets.py:648 netbox/dcim/forms/filtersets.py:869 +#: dcim/filtersets.py:579 dcim/filtersets.py:700 dcim/filtersets.py:1143 +#: dcim/forms/filtersets.py:552 dcim/forms/filtersets.py:648 +#: dcim/forms/filtersets.py:869 msgid "Has power outlets" msgstr "Має розетки" -#: netbox/dcim/filtersets.py:583 netbox/dcim/filtersets.py:704 -#: netbox/dcim/filtersets.py:1147 netbox/dcim/forms/filtersets.py:559 -#: netbox/dcim/forms/filtersets.py:655 netbox/dcim/forms/filtersets.py:876 +#: dcim/filtersets.py:583 dcim/filtersets.py:704 dcim/filtersets.py:1147 +#: dcim/forms/filtersets.py:559 dcim/forms/filtersets.py:655 +#: dcim/forms/filtersets.py:876 msgid "Has interfaces" msgstr "Має інтерфейси" -#: netbox/dcim/filtersets.py:587 netbox/dcim/filtersets.py:708 -#: netbox/dcim/filtersets.py:1151 netbox/dcim/forms/filtersets.py:566 -#: netbox/dcim/forms/filtersets.py:662 netbox/dcim/forms/filtersets.py:883 +#: dcim/filtersets.py:587 dcim/filtersets.py:708 dcim/filtersets.py:1151 +#: dcim/forms/filtersets.py:566 dcim/forms/filtersets.py:662 +#: dcim/forms/filtersets.py:883 msgid "Has pass-through ports" msgstr "Має прохідні порти" -#: netbox/dcim/filtersets.py:591 netbox/dcim/filtersets.py:1155 -#: netbox/dcim/forms/filtersets.py:580 +#: dcim/filtersets.py:591 dcim/filtersets.py:1155 dcim/forms/filtersets.py:580 msgid "Has module bays" msgstr "Має модульні відсіки" -#: netbox/dcim/filtersets.py:595 netbox/dcim/filtersets.py:1159 -#: netbox/dcim/forms/filtersets.py:573 +#: dcim/filtersets.py:595 dcim/filtersets.py:1159 dcim/forms/filtersets.py:573 msgid "Has device bays" msgstr "Має відсіки для пристроїв" -#: netbox/dcim/filtersets.py:599 netbox/dcim/forms/filtersets.py:587 +#: dcim/filtersets.py:599 dcim/forms/filtersets.py:587 msgid "Has inventory items" msgstr "Має предмети інвентарю" -#: netbox/dcim/filtersets.py:756 netbox/dcim/filtersets.py:989 -#: netbox/dcim/filtersets.py:1436 +#: dcim/filtersets.py:756 dcim/filtersets.py:989 dcim/filtersets.py:1436 msgid "Device type (ID)" msgstr "Тип пристрою (ідентифікатор)" -#: netbox/dcim/filtersets.py:772 netbox/dcim/filtersets.py:1317 +#: dcim/filtersets.py:772 dcim/filtersets.py:1317 msgid "Module type (ID)" msgstr "Тип модуля (ідентифікатор)" -#: netbox/dcim/filtersets.py:804 netbox/dcim/filtersets.py:1591 +#: dcim/filtersets.py:804 dcim/filtersets.py:1591 msgid "Power port (ID)" msgstr "Порт живлення (ідентифікатор)" -#: netbox/dcim/filtersets.py:878 netbox/dcim/filtersets.py:1836 +#: dcim/filtersets.py:878 dcim/filtersets.py:1836 msgid "Parent inventory item (ID)" msgstr "Батьківський предмет інвентарю (ідентифікатор)" -#: netbox/dcim/filtersets.py:921 netbox/dcim/filtersets.py:947 -#: netbox/dcim/filtersets.py:1127 netbox/virtualization/filtersets.py:238 +#: dcim/filtersets.py:921 dcim/filtersets.py:947 dcim/filtersets.py:1127 +#: virtualization/filtersets.py:238 msgid "Config template (ID)" msgstr "Шаблон конфігурації (ідентифікатор)" -#: netbox/dcim/filtersets.py:985 +#: dcim/filtersets.py:985 msgid "Device type (slug)" msgstr "Тип пристрою (скорочення)" -#: netbox/dcim/filtersets.py:1005 +#: dcim/filtersets.py:1005 msgid "Parent Device (ID)" msgstr "Батьківський пристрій (ідентифікатор)" -#: netbox/dcim/filtersets.py:1009 netbox/virtualization/filtersets.py:220 +#: dcim/filtersets.py:1009 virtualization/filtersets.py:220 msgid "Platform (ID)" msgstr "Платформа (ідентифікатор)" -#: netbox/dcim/filtersets.py:1015 netbox/extras/filtersets.py:569 -#: netbox/virtualization/filtersets.py:226 +#: dcim/filtersets.py:1015 extras/filtersets.py:569 +#: virtualization/filtersets.py:226 msgid "Platform (slug)" msgstr "Платформа (скоречення)" -#: netbox/dcim/filtersets.py:1051 netbox/dcim/filtersets.py:1399 -#: netbox/dcim/filtersets.py:1934 netbox/dcim/filtersets.py:2176 -#: netbox/dcim/filtersets.py:2235 +#: dcim/filtersets.py:1051 dcim/filtersets.py:1399 dcim/filtersets.py:1934 +#: dcim/filtersets.py:2176 dcim/filtersets.py:2235 msgid "Site name (slug)" msgstr "Назва тех. майданчика (скоречення)" -#: netbox/dcim/filtersets.py:1067 +#: dcim/filtersets.py:1067 msgid "Parent bay (ID)" msgstr "Батьківська бухта (ідентифікатор)" -#: netbox/dcim/filtersets.py:1071 +#: dcim/filtersets.py:1071 msgid "VM cluster (ID)" msgstr "Кластер віртуальних машини (ідентифікатор)" -#: netbox/dcim/filtersets.py:1077 netbox/extras/filtersets.py:591 -#: netbox/virtualization/filtersets.py:136 +#: dcim/filtersets.py:1077 extras/filtersets.py:591 +#: virtualization/filtersets.py:136 msgid "Cluster group (slug)" msgstr "Кластерна група (скоречення)" -#: netbox/dcim/filtersets.py:1082 netbox/virtualization/filtersets.py:130 +#: dcim/filtersets.py:1082 virtualization/filtersets.py:130 msgid "Cluster group (ID)" msgstr "Група кластерів (ідентифікатор)" -#: netbox/dcim/filtersets.py:1088 +#: dcim/filtersets.py:1088 msgid "Device model (slug)" msgstr "Модель пристрою (скоречення)" -#: netbox/dcim/filtersets.py:1099 netbox/dcim/forms/bulk_edit.py:516 +#: dcim/filtersets.py:1099 dcim/forms/bulk_edit.py:516 msgid "Is full depth" msgstr "Це повна глибина" -#: netbox/dcim/filtersets.py:1103 netbox/dcim/forms/common.py:18 -#: netbox/dcim/forms/filtersets.py:818 netbox/dcim/forms/filtersets.py:1385 -#: netbox/dcim/models/device_components.py:518 -#: netbox/virtualization/filtersets.py:230 -#: netbox/virtualization/filtersets.py:301 -#: netbox/virtualization/forms/filtersets.py:172 -#: netbox/virtualization/forms/filtersets.py:223 +#: dcim/filtersets.py:1103 dcim/forms/common.py:18 +#: dcim/forms/filtersets.py:818 dcim/forms/filtersets.py:1385 +#: dcim/models/device_components.py:518 virtualization/filtersets.py:230 +#: virtualization/filtersets.py:301 virtualization/forms/filtersets.py:172 +#: virtualization/forms/filtersets.py:223 msgid "MAC address" msgstr "MAC-адреса" -#: netbox/dcim/filtersets.py:1110 netbox/dcim/filtersets.py:1274 -#: netbox/dcim/forms/filtersets.py:827 netbox/dcim/forms/filtersets.py:930 -#: netbox/virtualization/filtersets.py:234 -#: netbox/virtualization/forms/filtersets.py:176 +#: dcim/filtersets.py:1110 dcim/filtersets.py:1274 +#: dcim/forms/filtersets.py:827 dcim/forms/filtersets.py:930 +#: virtualization/filtersets.py:234 virtualization/forms/filtersets.py:176 msgid "Has a primary IP" msgstr "Має основний IP" -#: netbox/dcim/filtersets.py:1114 +#: dcim/filtersets.py:1114 msgid "Has an out-of-band IP" msgstr "Має IP для зовнішнього незалежного керування" -#: netbox/dcim/filtersets.py:1119 +#: dcim/filtersets.py:1119 msgid "Virtual chassis (ID)" msgstr "Віртуальне шасі (ідентифікатор)" -#: netbox/dcim/filtersets.py:1123 +#: dcim/filtersets.py:1123 msgid "Is a virtual chassis member" msgstr "Є віртуальним членом шасі" -#: netbox/dcim/filtersets.py:1164 +#: dcim/filtersets.py:1164 msgid "OOB IP (ID)" msgstr "IP для зовнішнього незалежного керування (ідентифікатор)" -#: netbox/dcim/filtersets.py:1168 +#: dcim/filtersets.py:1168 msgid "Has virtual device context" msgstr "Має контекст віртуального пристрою" -#: netbox/dcim/filtersets.py:1257 +#: dcim/filtersets.py:1257 msgid "VDC (ID)" msgstr "Імпульсне джерело живлення (ідентифікатор)" -#: netbox/dcim/filtersets.py:1262 +#: dcim/filtersets.py:1262 msgid "Device model" msgstr "Модель пристрою" -#: netbox/dcim/filtersets.py:1267 netbox/ipam/filtersets.py:632 -#: netbox/vpn/filtersets.py:102 netbox/vpn/filtersets.py:401 +#: dcim/filtersets.py:1267 ipam/filtersets.py:632 vpn/filtersets.py:102 +#: vpn/filtersets.py:401 msgid "Interface (ID)" msgstr "Інтерфейс (ідентифікатор)" -#: netbox/dcim/filtersets.py:1323 +#: dcim/filtersets.py:1323 msgid "Module type (model)" msgstr "Тип модуля (модель)" -#: netbox/dcim/filtersets.py:1329 +#: dcim/filtersets.py:1329 msgid "Module bay (ID)" msgstr "Відсік модуля (ідентифікатор)" -#: netbox/dcim/filtersets.py:1333 netbox/dcim/filtersets.py:1425 -#: netbox/ipam/filtersets.py:611 netbox/ipam/filtersets.py:851 -#: netbox/ipam/filtersets.py:1115 netbox/virtualization/filtersets.py:161 -#: netbox/vpn/filtersets.py:379 +#: dcim/filtersets.py:1333 dcim/filtersets.py:1425 ipam/filtersets.py:611 +#: ipam/filtersets.py:851 ipam/filtersets.py:1115 +#: virtualization/filtersets.py:161 vpn/filtersets.py:379 msgid "Device (ID)" msgstr "Пристрій (ідентифікатор)" -#: netbox/dcim/filtersets.py:1421 +#: dcim/filtersets.py:1421 msgid "Rack (name)" msgstr "Стійка (назва)" -#: netbox/dcim/filtersets.py:1431 netbox/ipam/filtersets.py:606 -#: netbox/ipam/filtersets.py:846 netbox/ipam/filtersets.py:1121 -#: netbox/vpn/filtersets.py:374 +#: dcim/filtersets.py:1431 ipam/filtersets.py:606 ipam/filtersets.py:846 +#: ipam/filtersets.py:1121 vpn/filtersets.py:374 msgid "Device (name)" msgstr "Пристрій (назва)" -#: netbox/dcim/filtersets.py:1442 +#: dcim/filtersets.py:1442 msgid "Device type (model)" msgstr "Тип пристрою (модель)" -#: netbox/dcim/filtersets.py:1447 +#: dcim/filtersets.py:1447 msgid "Device role (ID)" msgstr "Роль пристрою (ідентифікатор)" -#: netbox/dcim/filtersets.py:1453 +#: dcim/filtersets.py:1453 msgid "Device role (slug)" msgstr "Роль пристрою (скоречення)" -#: netbox/dcim/filtersets.py:1458 +#: dcim/filtersets.py:1458 msgid "Virtual Chassis (ID)" msgstr "Віртуальне шасі (ідентифікатор)" -#: netbox/dcim/filtersets.py:1464 netbox/dcim/forms/filtersets.py:109 -#: netbox/dcim/tables/devices.py:206 netbox/netbox/navigation/menu.py:79 -#: netbox/templates/dcim/device.html:120 -#: netbox/templates/dcim/device_edit.html:93 -#: netbox/templates/dcim/virtualchassis.html:20 -#: netbox/templates/dcim/virtualchassis_add.html:8 -#: netbox/templates/dcim/virtualchassis_edit.html:24 +#: dcim/filtersets.py:1464 dcim/forms/filtersets.py:109 +#: dcim/tables/devices.py:206 netbox/navigation/menu.py:79 +#: templates/dcim/device.html:120 templates/dcim/device_edit.html:93 +#: templates/dcim/virtualchassis.html:20 +#: templates/dcim/virtualchassis_add.html:8 +#: templates/dcim/virtualchassis_edit.html:24 msgid "Virtual Chassis" msgstr "Віртуальне шасі" -#: netbox/dcim/filtersets.py:1488 +#: dcim/filtersets.py:1488 msgid "Module (ID)" msgstr "Модуль (ідентифікатор)" -#: netbox/dcim/filtersets.py:1495 +#: dcim/filtersets.py:1495 msgid "Cable (ID)" msgstr "Кабель (ідентифікатор)" -#: netbox/dcim/filtersets.py:1604 netbox/ipam/forms/bulk_import.py:189 -#: netbox/vpn/forms/bulk_import.py:308 +#: dcim/filtersets.py:1604 ipam/forms/bulk_import.py:189 +#: vpn/forms/bulk_import.py:308 msgid "Assigned VLAN" msgstr "Призначений VLAN" -#: netbox/dcim/filtersets.py:1608 +#: dcim/filtersets.py:1608 msgid "Assigned VID" msgstr "Призначений VID" -#: netbox/dcim/filtersets.py:1613 netbox/dcim/forms/bulk_edit.py:1489 -#: netbox/dcim/forms/bulk_import.py:891 netbox/dcim/forms/filtersets.py:1428 -#: netbox/dcim/forms/model_forms.py:1378 -#: netbox/dcim/models/device_components.py:711 -#: netbox/dcim/tables/devices.py:626 netbox/ipam/filtersets.py:316 -#: netbox/ipam/filtersets.py:327 netbox/ipam/filtersets.py:483 -#: netbox/ipam/filtersets.py:584 netbox/ipam/filtersets.py:595 -#: netbox/ipam/forms/bulk_edit.py:241 netbox/ipam/forms/bulk_edit.py:297 -#: netbox/ipam/forms/bulk_edit.py:339 netbox/ipam/forms/bulk_import.py:157 -#: netbox/ipam/forms/bulk_import.py:243 netbox/ipam/forms/bulk_import.py:279 -#: netbox/ipam/forms/filtersets.py:67 netbox/ipam/forms/filtersets.py:172 -#: netbox/ipam/forms/filtersets.py:309 netbox/ipam/forms/model_forms.py:62 -#: netbox/ipam/forms/model_forms.py:202 netbox/ipam/forms/model_forms.py:247 -#: netbox/ipam/forms/model_forms.py:300 netbox/ipam/forms/model_forms.py:431 -#: netbox/ipam/forms/model_forms.py:445 netbox/ipam/forms/model_forms.py:459 -#: netbox/ipam/models/ip.py:233 netbox/ipam/models/ip.py:512 -#: netbox/ipam/models/ip.py:720 netbox/ipam/models/vrfs.py:62 -#: netbox/ipam/tables/ip.py:242 netbox/ipam/tables/ip.py:309 -#: netbox/ipam/tables/ip.py:360 netbox/ipam/tables/ip.py:450 -#: netbox/templates/dcim/interface.html:133 -#: netbox/templates/ipam/ipaddress.html:18 -#: netbox/templates/ipam/iprange.html:40 netbox/templates/ipam/prefix.html:19 -#: netbox/templates/ipam/vrf.html:7 netbox/templates/ipam/vrf.html:13 -#: netbox/templates/virtualization/vminterface.html:47 -#: netbox/virtualization/forms/bulk_edit.py:261 -#: netbox/virtualization/forms/bulk_import.py:171 -#: netbox/virtualization/forms/filtersets.py:228 -#: netbox/virtualization/forms/model_forms.py:344 -#: netbox/virtualization/models/virtualmachines.py:355 -#: netbox/virtualization/tables/virtualmachines.py:143 +#: dcim/filtersets.py:1613 dcim/forms/bulk_edit.py:1489 +#: dcim/forms/bulk_import.py:891 dcim/forms/filtersets.py:1428 +#: dcim/forms/model_forms.py:1378 dcim/models/device_components.py:711 +#: dcim/tables/devices.py:626 ipam/filtersets.py:316 ipam/filtersets.py:327 +#: ipam/filtersets.py:483 ipam/filtersets.py:584 ipam/filtersets.py:595 +#: ipam/forms/bulk_edit.py:242 ipam/forms/bulk_edit.py:298 +#: ipam/forms/bulk_edit.py:340 ipam/forms/bulk_import.py:157 +#: ipam/forms/bulk_import.py:243 ipam/forms/bulk_import.py:279 +#: ipam/forms/filtersets.py:67 ipam/forms/filtersets.py:172 +#: ipam/forms/filtersets.py:309 ipam/forms/model_forms.py:62 +#: ipam/forms/model_forms.py:202 ipam/forms/model_forms.py:247 +#: ipam/forms/model_forms.py:300 ipam/forms/model_forms.py:431 +#: ipam/forms/model_forms.py:445 ipam/forms/model_forms.py:459 +#: ipam/models/ip.py:233 ipam/models/ip.py:512 ipam/models/ip.py:720 +#: ipam/models/vrfs.py:62 ipam/tables/ip.py:242 ipam/tables/ip.py:309 +#: ipam/tables/ip.py:360 ipam/tables/ip.py:450 +#: templates/dcim/interface.html:133 templates/ipam/ipaddress.html:18 +#: templates/ipam/iprange.html:40 templates/ipam/prefix.html:19 +#: templates/ipam/vrf.html:7 templates/ipam/vrf.html:13 +#: templates/virtualization/vminterface.html:47 +#: virtualization/forms/bulk_edit.py:261 +#: virtualization/forms/bulk_import.py:171 +#: virtualization/forms/filtersets.py:228 +#: virtualization/forms/model_forms.py:344 +#: virtualization/models/virtualmachines.py:355 +#: virtualization/tables/virtualmachines.py:143 msgid "VRF" msgstr "VRF" -#: netbox/dcim/filtersets.py:1619 netbox/ipam/filtersets.py:322 -#: netbox/ipam/filtersets.py:333 netbox/ipam/filtersets.py:489 -#: netbox/ipam/filtersets.py:590 netbox/ipam/filtersets.py:601 +#: dcim/filtersets.py:1619 ipam/filtersets.py:322 ipam/filtersets.py:333 +#: ipam/filtersets.py:489 ipam/filtersets.py:590 ipam/filtersets.py:601 msgid "VRF (RD)" msgstr "VRF (RD)" -#: netbox/dcim/filtersets.py:1624 netbox/ipam/filtersets.py:1030 -#: netbox/vpn/filtersets.py:342 +#: dcim/filtersets.py:1624 ipam/filtersets.py:1030 vpn/filtersets.py:342 msgid "L2VPN (ID)" msgstr "L2VPN (ідентифікатор)" -#: netbox/dcim/filtersets.py:1630 netbox/dcim/forms/filtersets.py:1433 -#: netbox/dcim/tables/devices.py:570 netbox/ipam/filtersets.py:1036 -#: netbox/ipam/forms/filtersets.py:518 netbox/ipam/tables/vlans.py:137 -#: netbox/templates/dcim/interface.html:93 netbox/templates/ipam/vlan.html:66 -#: netbox/templates/vpn/l2vpntermination.html:12 -#: netbox/virtualization/forms/filtersets.py:233 -#: netbox/vpn/forms/bulk_import.py:280 netbox/vpn/forms/filtersets.py:246 -#: netbox/vpn/forms/model_forms.py:409 netbox/vpn/forms/model_forms.py:427 -#: netbox/vpn/models/l2vpn.py:63 netbox/vpn/tables/l2vpn.py:55 +#: dcim/filtersets.py:1630 dcim/forms/filtersets.py:1433 +#: dcim/tables/devices.py:570 ipam/filtersets.py:1036 +#: ipam/forms/filtersets.py:518 ipam/tables/vlans.py:137 +#: templates/dcim/interface.html:93 templates/ipam/vlan.html:66 +#: templates/vpn/l2vpntermination.html:12 +#: virtualization/forms/filtersets.py:233 vpn/forms/bulk_import.py:280 +#: vpn/forms/filtersets.py:246 vpn/forms/model_forms.py:409 +#: vpn/forms/model_forms.py:427 vpn/models/l2vpn.py:63 vpn/tables/l2vpn.py:55 msgid "L2VPN" msgstr "L2VPN" -#: netbox/dcim/filtersets.py:1662 +#: dcim/filtersets.py:1662 msgid "Virtual Chassis Interfaces for Device" msgstr "Віртуальні інтерфейси шасі для пристрою" -#: netbox/dcim/filtersets.py:1667 +#: dcim/filtersets.py:1667 msgid "Virtual Chassis Interfaces for Device (ID)" msgstr "Віртуальні інтерфейси шасі для пристрою (ідентифікатор)" -#: netbox/dcim/filtersets.py:1671 +#: dcim/filtersets.py:1671 msgid "Kind of interface" msgstr "Вид інтерфейсу" -#: netbox/dcim/filtersets.py:1676 netbox/virtualization/filtersets.py:293 +#: dcim/filtersets.py:1676 virtualization/filtersets.py:293 msgid "Parent interface (ID)" msgstr "Батьківський інтерфейс (ідентифікатор)" -#: netbox/dcim/filtersets.py:1681 netbox/virtualization/filtersets.py:298 +#: dcim/filtersets.py:1681 virtualization/filtersets.py:298 msgid "Bridged interface (ID)" msgstr "Мостовий інтерфейс (ідентифікатор)" -#: netbox/dcim/filtersets.py:1686 +#: dcim/filtersets.py:1686 msgid "LAG interface (ID)" msgstr "Інтерфейс LAG (ідентифікатор)" -#: netbox/dcim/filtersets.py:1713 netbox/dcim/filtersets.py:1725 -#: netbox/dcim/forms/filtersets.py:1345 netbox/dcim/forms/model_forms.py:1690 -#: netbox/templates/dcim/virtualdevicecontext.html:15 +#: dcim/filtersets.py:1713 dcim/filtersets.py:1725 +#: dcim/forms/filtersets.py:1345 dcim/forms/model_forms.py:1690 +#: templates/dcim/virtualdevicecontext.html:15 msgid "Virtual Device Context" msgstr "Контекст віртуального пристрою" -#: netbox/dcim/filtersets.py:1719 +#: dcim/filtersets.py:1719 msgid "Virtual Device Context (Identifier)" msgstr "Контекст віртуального пристрою (ідентифікатор)" -#: netbox/dcim/filtersets.py:1730 -#: netbox/templates/wireless/wirelesslan.html:11 -#: netbox/wireless/forms/model_forms.py:53 +#: dcim/filtersets.py:1730 templates/wireless/wirelesslan.html:11 +#: wireless/forms/model_forms.py:53 msgid "Wireless LAN" msgstr "Бездротова локальна мережа" -#: netbox/dcim/filtersets.py:1734 netbox/dcim/tables/devices.py:613 +#: dcim/filtersets.py:1734 dcim/tables/devices.py:613 msgid "Wireless link" msgstr "Бездротова зв'язок" -#: netbox/dcim/filtersets.py:1803 +#: dcim/filtersets.py:1803 msgid "Parent module bay (ID)" msgstr "Відсік батьківського модуля (iдентифікатор)" -#: netbox/dcim/filtersets.py:1808 +#: dcim/filtersets.py:1808 msgid "Installed module (ID)" msgstr "Встановлений модуль (ідентифікатор)" -#: netbox/dcim/filtersets.py:1819 +#: dcim/filtersets.py:1819 msgid "Installed device (ID)" msgstr "Встановлений пристрій (ідентифікатор)" -#: netbox/dcim/filtersets.py:1825 +#: dcim/filtersets.py:1825 msgid "Installed device (name)" msgstr "Встановлений пристрій (назва)" -#: netbox/dcim/filtersets.py:1891 +#: dcim/filtersets.py:1891 msgid "Master (ID)" msgstr "Майстер (ідентифікатор)" -#: netbox/dcim/filtersets.py:1897 +#: dcim/filtersets.py:1897 msgid "Master (name)" msgstr "Майстер (ім'я)" -#: netbox/dcim/filtersets.py:1939 netbox/tenancy/filtersets.py:245 +#: dcim/filtersets.py:1939 tenancy/filtersets.py:245 msgid "Tenant (ID)" msgstr "Орендар (ідентифікатор)" -#: netbox/dcim/filtersets.py:1945 netbox/extras/filtersets.py:618 -#: netbox/tenancy/filtersets.py:251 +#: dcim/filtersets.py:1945 extras/filtersets.py:618 tenancy/filtersets.py:251 msgid "Tenant (slug)" msgstr "Орендар (скоречення)" -#: netbox/dcim/filtersets.py:1981 netbox/dcim/forms/filtersets.py:1077 +#: dcim/filtersets.py:1981 dcim/forms/filtersets.py:1077 msgid "Unterminated" msgstr "Незакінчений" -#: netbox/dcim/filtersets.py:2239 +#: dcim/filtersets.py:2239 msgid "Power panel (ID)" msgstr "Панель живлення (ідентифікатор)" -#: netbox/dcim/forms/bulk_create.py:40 netbox/extras/forms/filtersets.py:401 -#: netbox/extras/forms/model_forms.py:567 -#: netbox/extras/forms/model_forms.py:619 netbox/netbox/forms/base.py:86 -#: netbox/netbox/forms/mixins.py:81 netbox/netbox/tables/columns.py:478 -#: netbox/templates/circuits/inc/circuit_termination.html:32 -#: netbox/templates/generic/bulk_edit.html:65 -#: netbox/templates/inc/panels/tags.html:5 -#: netbox/utilities/forms/fields/fields.py:81 +#: dcim/forms/bulk_create.py:40 extras/forms/filtersets.py:401 +#: extras/forms/model_forms.py:567 extras/forms/model_forms.py:619 +#: netbox/forms/base.py:86 netbox/forms/mixins.py:81 +#: netbox/tables/columns.py:478 +#: templates/circuits/inc/circuit_termination.html:32 +#: templates/generic/bulk_edit.html:65 templates/inc/panels/tags.html:5 +#: utilities/forms/fields/fields.py:81 msgid "Tags" msgstr "Мітки" -#: netbox/dcim/forms/bulk_create.py:112 netbox/dcim/forms/filtersets.py:1498 -#: netbox/dcim/forms/model_forms.py:488 netbox/dcim/forms/model_forms.py:546 -#: netbox/dcim/forms/object_create.py:197 -#: netbox/dcim/forms/object_create.py:353 netbox/dcim/tables/devices.py:165 -#: netbox/dcim/tables/devices.py:707 netbox/dcim/tables/devicetypes.py:246 -#: netbox/templates/dcim/device.html:43 netbox/templates/dcim/device.html:131 -#: netbox/templates/dcim/modulebay.html:38 -#: netbox/templates/dcim/virtualchassis.html:66 -#: netbox/templates/dcim/virtualchassis_edit.html:55 +#: dcim/forms/bulk_create.py:112 dcim/forms/filtersets.py:1498 +#: dcim/forms/model_forms.py:488 dcim/forms/model_forms.py:546 +#: dcim/forms/object_create.py:197 dcim/forms/object_create.py:353 +#: dcim/tables/devices.py:165 dcim/tables/devices.py:707 +#: dcim/tables/devicetypes.py:246 templates/dcim/device.html:43 +#: templates/dcim/device.html:131 templates/dcim/modulebay.html:38 +#: templates/dcim/virtualchassis.html:66 +#: templates/dcim/virtualchassis_edit.html:55 msgid "Position" msgstr "Позиція" -#: netbox/dcim/forms/bulk_create.py:114 +#: dcim/forms/bulk_create.py:114 msgid "" "Alphanumeric ranges are supported. (Must match the number of names being " "created.)" @@ -3447,887 +3116,825 @@ msgstr "" "Підтримуються буквено-цифрові діапазони. (Повинен збігатися з кількістю " "створених імен.)" -#: netbox/dcim/forms/bulk_edit.py:132 +#: dcim/forms/bulk_edit.py:132 msgid "Contact name" msgstr "Ім'я контакту" -#: netbox/dcim/forms/bulk_edit.py:137 +#: dcim/forms/bulk_edit.py:137 msgid "Contact phone" msgstr "Контактний телефон" -#: netbox/dcim/forms/bulk_edit.py:143 +#: dcim/forms/bulk_edit.py:143 msgid "Contact E-mail" msgstr "Контактна адреса електронної пошти" -#: netbox/dcim/forms/bulk_edit.py:146 netbox/dcim/forms/bulk_import.py:123 -#: netbox/dcim/forms/model_forms.py:128 +#: dcim/forms/bulk_edit.py:146 dcim/forms/bulk_import.py:123 +#: dcim/forms/model_forms.py:128 msgid "Time zone" msgstr "Часовий пояс" -#: netbox/dcim/forms/bulk_edit.py:224 netbox/dcim/forms/bulk_edit.py:495 -#: netbox/dcim/forms/bulk_edit.py:559 netbox/dcim/forms/bulk_edit.py:632 -#: netbox/dcim/forms/bulk_edit.py:656 netbox/dcim/forms/bulk_edit.py:740 -#: netbox/dcim/forms/bulk_edit.py:1267 netbox/dcim/forms/bulk_edit.py:1660 -#: netbox/dcim/forms/bulk_import.py:182 netbox/dcim/forms/bulk_import.py:371 -#: netbox/dcim/forms/bulk_import.py:405 netbox/dcim/forms/bulk_import.py:450 -#: netbox/dcim/forms/bulk_import.py:486 netbox/dcim/forms/bulk_import.py:1082 -#: netbox/dcim/forms/filtersets.py:313 netbox/dcim/forms/filtersets.py:372 -#: netbox/dcim/forms/filtersets.py:494 netbox/dcim/forms/filtersets.py:619 -#: netbox/dcim/forms/filtersets.py:700 netbox/dcim/forms/filtersets.py:782 -#: netbox/dcim/forms/filtersets.py:947 netbox/dcim/forms/filtersets.py:1539 -#: netbox/dcim/forms/model_forms.py:207 netbox/dcim/forms/model_forms.py:337 -#: netbox/dcim/forms/model_forms.py:349 netbox/dcim/forms/model_forms.py:395 -#: netbox/dcim/forms/model_forms.py:436 netbox/dcim/forms/model_forms.py:1075 -#: netbox/dcim/forms/model_forms.py:1515 -#: netbox/dcim/forms/object_import.py:187 netbox/dcim/tables/devices.py:96 -#: netbox/dcim/tables/devices.py:172 netbox/dcim/tables/devices.py:940 -#: netbox/dcim/tables/devicetypes.py:80 netbox/dcim/tables/devicetypes.py:308 -#: netbox/dcim/tables/modules.py:20 netbox/dcim/tables/modules.py:60 -#: netbox/dcim/tables/racks.py:58 netbox/dcim/tables/racks.py:132 -#: netbox/templates/dcim/devicetype.html:14 -#: netbox/templates/dcim/inventoryitem.html:44 -#: netbox/templates/dcim/manufacturer.html:33 -#: netbox/templates/dcim/modulebay.html:62 -#: netbox/templates/dcim/moduletype.html:14 -#: netbox/templates/dcim/platform.html:37 -#: netbox/templates/dcim/racktype.html:16 +#: dcim/forms/bulk_edit.py:224 dcim/forms/bulk_edit.py:495 +#: dcim/forms/bulk_edit.py:559 dcim/forms/bulk_edit.py:632 +#: dcim/forms/bulk_edit.py:656 dcim/forms/bulk_edit.py:740 +#: dcim/forms/bulk_edit.py:1267 dcim/forms/bulk_edit.py:1660 +#: dcim/forms/bulk_import.py:182 dcim/forms/bulk_import.py:371 +#: dcim/forms/bulk_import.py:405 dcim/forms/bulk_import.py:450 +#: dcim/forms/bulk_import.py:486 dcim/forms/bulk_import.py:1082 +#: dcim/forms/filtersets.py:313 dcim/forms/filtersets.py:372 +#: dcim/forms/filtersets.py:494 dcim/forms/filtersets.py:619 +#: dcim/forms/filtersets.py:700 dcim/forms/filtersets.py:782 +#: dcim/forms/filtersets.py:947 dcim/forms/filtersets.py:1539 +#: dcim/forms/model_forms.py:207 dcim/forms/model_forms.py:337 +#: dcim/forms/model_forms.py:349 dcim/forms/model_forms.py:395 +#: dcim/forms/model_forms.py:436 dcim/forms/model_forms.py:1075 +#: dcim/forms/model_forms.py:1515 dcim/forms/object_import.py:187 +#: dcim/tables/devices.py:96 dcim/tables/devices.py:172 +#: dcim/tables/devices.py:940 dcim/tables/devicetypes.py:80 +#: dcim/tables/devicetypes.py:308 dcim/tables/modules.py:20 +#: dcim/tables/modules.py:60 dcim/tables/racks.py:58 dcim/tables/racks.py:132 +#: templates/dcim/devicetype.html:14 templates/dcim/inventoryitem.html:44 +#: templates/dcim/manufacturer.html:33 templates/dcim/modulebay.html:62 +#: templates/dcim/moduletype.html:25 templates/dcim/platform.html:37 +#: templates/dcim/racktype.html:16 msgid "Manufacturer" msgstr "Виробник" -#: netbox/dcim/forms/bulk_edit.py:229 netbox/dcim/forms/bulk_edit.py:372 -#: netbox/dcim/forms/bulk_import.py:191 netbox/dcim/forms/bulk_import.py:263 -#: netbox/dcim/forms/filtersets.py:255 -#: netbox/templates/dcim/inc/panels/racktype_dimensions.html:6 +#: dcim/forms/bulk_edit.py:229 dcim/forms/bulk_edit.py:372 +#: dcim/forms/bulk_import.py:191 dcim/forms/bulk_import.py:263 +#: dcim/forms/filtersets.py:255 +#: templates/dcim/inc/panels/racktype_dimensions.html:6 msgid "Form factor" msgstr "Форм-фактор" -#: netbox/dcim/forms/bulk_edit.py:234 netbox/dcim/forms/bulk_edit.py:377 -#: netbox/dcim/forms/bulk_import.py:199 netbox/dcim/forms/bulk_import.py:266 -#: netbox/dcim/forms/filtersets.py:260 -#: netbox/templates/dcim/inc/panels/racktype_dimensions.html:10 +#: dcim/forms/bulk_edit.py:234 dcim/forms/bulk_edit.py:377 +#: dcim/forms/bulk_import.py:199 dcim/forms/bulk_import.py:266 +#: dcim/forms/filtersets.py:260 +#: templates/dcim/inc/panels/racktype_dimensions.html:10 msgid "Width" msgstr "Ширина" -#: netbox/dcim/forms/bulk_edit.py:240 netbox/dcim/forms/bulk_edit.py:383 -#: netbox/templates/dcim/devicetype.html:37 +#: dcim/forms/bulk_edit.py:240 dcim/forms/bulk_edit.py:383 +#: templates/dcim/devicetype.html:37 msgid "Height (U)" msgstr "Висота (U)" -#: netbox/dcim/forms/bulk_edit.py:249 netbox/dcim/forms/bulk_edit.py:388 -#: netbox/dcim/forms/filtersets.py:274 +#: dcim/forms/bulk_edit.py:249 dcim/forms/bulk_edit.py:388 +#: dcim/forms/filtersets.py:274 msgid "Descending units" msgstr "Юніти у низхідному порядку" -#: netbox/dcim/forms/bulk_edit.py:252 netbox/dcim/forms/bulk_edit.py:391 +#: dcim/forms/bulk_edit.py:252 dcim/forms/bulk_edit.py:391 msgid "Outer width" msgstr "Зовнішня ширина" -#: netbox/dcim/forms/bulk_edit.py:257 netbox/dcim/forms/bulk_edit.py:396 +#: dcim/forms/bulk_edit.py:257 dcim/forms/bulk_edit.py:396 msgid "Outer depth" msgstr "Зовнішня глибина" -#: netbox/dcim/forms/bulk_edit.py:262 netbox/dcim/forms/bulk_edit.py:401 -#: netbox/dcim/forms/bulk_import.py:204 netbox/dcim/forms/bulk_import.py:271 +#: dcim/forms/bulk_edit.py:262 dcim/forms/bulk_edit.py:401 +#: dcim/forms/bulk_import.py:204 dcim/forms/bulk_import.py:271 msgid "Outer unit" msgstr "Зовнішній блок" -#: netbox/dcim/forms/bulk_edit.py:267 netbox/dcim/forms/bulk_edit.py:406 +#: dcim/forms/bulk_edit.py:267 dcim/forms/bulk_edit.py:406 msgid "Mounting depth" msgstr "Глибина монтажу" -#: netbox/dcim/forms/bulk_edit.py:272 netbox/dcim/forms/bulk_edit.py:299 -#: netbox/dcim/forms/bulk_edit.py:416 netbox/dcim/forms/bulk_edit.py:446 -#: netbox/dcim/forms/bulk_edit.py:529 netbox/dcim/forms/bulk_edit.py:552 -#: netbox/dcim/forms/bulk_edit.py:573 netbox/dcim/forms/bulk_edit.py:595 -#: netbox/dcim/forms/bulk_import.py:384 netbox/dcim/forms/bulk_import.py:416 -#: netbox/dcim/forms/filtersets.py:285 netbox/dcim/forms/filtersets.py:307 -#: netbox/dcim/forms/filtersets.py:327 netbox/dcim/forms/filtersets.py:401 -#: netbox/dcim/forms/filtersets.py:488 netbox/dcim/forms/filtersets.py:594 -#: netbox/dcim/forms/filtersets.py:613 netbox/dcim/forms/filtersets.py:674 -#: netbox/dcim/forms/model_forms.py:221 netbox/dcim/forms/model_forms.py:298 -#: netbox/dcim/tables/devicetypes.py:106 netbox/dcim/tables/modules.py:35 -#: netbox/dcim/tables/racks.py:74 netbox/dcim/tables/racks.py:172 -#: netbox/extras/forms/bulk_edit.py:53 netbox/extras/forms/bulk_edit.py:133 -#: netbox/extras/forms/bulk_edit.py:183 netbox/extras/forms/bulk_edit.py:288 -#: netbox/extras/forms/filtersets.py:64 netbox/extras/forms/filtersets.py:156 -#: netbox/extras/forms/filtersets.py:243 netbox/ipam/forms/bulk_edit.py:189 -#: netbox/templates/dcim/device.html:324 -#: netbox/templates/dcim/devicetype.html:49 -#: netbox/templates/dcim/moduletype.html:34 netbox/templates/dcim/rack.html:81 -#: netbox/templates/dcim/racktype.html:41 -#: netbox/templates/extras/configcontext.html:17 -#: netbox/templates/extras/customlink.html:25 -#: netbox/templates/extras/savedfilter.html:33 -#: netbox/templates/ipam/role.html:30 +#: dcim/forms/bulk_edit.py:272 dcim/forms/bulk_edit.py:299 +#: dcim/forms/bulk_edit.py:416 dcim/forms/bulk_edit.py:446 +#: dcim/forms/bulk_edit.py:529 dcim/forms/bulk_edit.py:552 +#: dcim/forms/bulk_edit.py:573 dcim/forms/bulk_edit.py:595 +#: dcim/forms/bulk_import.py:384 dcim/forms/bulk_import.py:416 +#: dcim/forms/filtersets.py:285 dcim/forms/filtersets.py:307 +#: dcim/forms/filtersets.py:327 dcim/forms/filtersets.py:401 +#: dcim/forms/filtersets.py:488 dcim/forms/filtersets.py:594 +#: dcim/forms/filtersets.py:613 dcim/forms/filtersets.py:674 +#: dcim/forms/model_forms.py:221 dcim/forms/model_forms.py:298 +#: dcim/tables/devicetypes.py:106 dcim/tables/modules.py:35 +#: dcim/tables/racks.py:74 dcim/tables/racks.py:172 +#: extras/forms/bulk_edit.py:53 extras/forms/bulk_edit.py:133 +#: extras/forms/bulk_edit.py:183 extras/forms/bulk_edit.py:288 +#: extras/forms/filtersets.py:64 extras/forms/filtersets.py:156 +#: extras/forms/filtersets.py:243 ipam/forms/bulk_edit.py:190 +#: templates/dcim/device.html:324 templates/dcim/devicetype.html:49 +#: templates/dcim/moduletype.html:45 templates/dcim/rack.html:81 +#: templates/dcim/racktype.html:41 templates/extras/configcontext.html:17 +#: templates/extras/customlink.html:25 templates/extras/savedfilter.html:33 +#: templates/ipam/role.html:30 msgid "Weight" msgstr "Вага" -#: netbox/dcim/forms/bulk_edit.py:277 netbox/dcim/forms/bulk_edit.py:421 -#: netbox/dcim/forms/filtersets.py:290 +#: dcim/forms/bulk_edit.py:277 dcim/forms/bulk_edit.py:421 +#: dcim/forms/filtersets.py:290 msgid "Max weight" msgstr "Максимальна вага" -#: netbox/dcim/forms/bulk_edit.py:282 netbox/dcim/forms/bulk_edit.py:426 -#: netbox/dcim/forms/bulk_edit.py:534 netbox/dcim/forms/bulk_edit.py:578 -#: netbox/dcim/forms/bulk_import.py:210 netbox/dcim/forms/bulk_import.py:283 -#: netbox/dcim/forms/bulk_import.py:389 netbox/dcim/forms/bulk_import.py:421 -#: netbox/dcim/forms/filtersets.py:295 netbox/dcim/forms/filtersets.py:598 -#: netbox/dcim/forms/filtersets.py:678 +#: dcim/forms/bulk_edit.py:282 dcim/forms/bulk_edit.py:426 +#: dcim/forms/bulk_edit.py:534 dcim/forms/bulk_edit.py:578 +#: dcim/forms/bulk_import.py:210 dcim/forms/bulk_import.py:283 +#: dcim/forms/bulk_import.py:389 dcim/forms/bulk_import.py:421 +#: dcim/forms/filtersets.py:295 dcim/forms/filtersets.py:598 +#: dcim/forms/filtersets.py:678 msgid "Weight unit" msgstr "Вага юніта" -#: netbox/dcim/forms/bulk_edit.py:296 netbox/dcim/forms/filtersets.py:305 -#: netbox/dcim/forms/model_forms.py:217 netbox/dcim/forms/model_forms.py:256 -#: netbox/templates/dcim/rack.html:45 netbox/templates/dcim/racktype.html:13 +#: dcim/forms/bulk_edit.py:296 dcim/forms/filtersets.py:305 +#: dcim/forms/model_forms.py:217 dcim/forms/model_forms.py:256 +#: templates/dcim/rack.html:45 templates/dcim/racktype.html:13 msgid "Rack Type" msgstr "Тип стійки" -#: netbox/dcim/forms/bulk_edit.py:298 netbox/dcim/forms/model_forms.py:220 -#: netbox/dcim/forms/model_forms.py:297 +#: dcim/forms/bulk_edit.py:298 dcim/forms/model_forms.py:220 +#: dcim/forms/model_forms.py:297 msgid "Outer Dimensions" msgstr "Зовнішні розміри" -#: netbox/dcim/forms/bulk_edit.py:301 netbox/dcim/forms/model_forms.py:222 -#: netbox/dcim/forms/model_forms.py:299 netbox/templates/dcim/device.html:315 -#: netbox/templates/dcim/inc/panels/racktype_dimensions.html:3 +#: dcim/forms/bulk_edit.py:301 dcim/forms/model_forms.py:222 +#: dcim/forms/model_forms.py:299 templates/dcim/device.html:315 +#: templates/dcim/inc/panels/racktype_dimensions.html:3 msgid "Dimensions" msgstr "Габарити" -#: netbox/dcim/forms/bulk_edit.py:303 netbox/dcim/forms/filtersets.py:306 -#: netbox/dcim/forms/filtersets.py:326 netbox/dcim/forms/model_forms.py:224 -#: netbox/templates/dcim/inc/panels/racktype_numbering.html:3 +#: dcim/forms/bulk_edit.py:303 dcim/forms/filtersets.py:306 +#: dcim/forms/filtersets.py:326 dcim/forms/model_forms.py:224 +#: templates/dcim/inc/panels/racktype_numbering.html:3 msgid "Numbering" msgstr "Нумерація" -#: netbox/dcim/forms/bulk_edit.py:357 netbox/dcim/forms/bulk_edit.py:1262 -#: netbox/dcim/forms/bulk_edit.py:1655 netbox/dcim/forms/bulk_import.py:253 -#: netbox/dcim/forms/bulk_import.py:1076 netbox/dcim/forms/filtersets.py:367 -#: netbox/dcim/forms/filtersets.py:777 netbox/dcim/forms/filtersets.py:1534 -#: netbox/dcim/forms/model_forms.py:251 netbox/dcim/forms/model_forms.py:1070 -#: netbox/dcim/forms/model_forms.py:1510 -#: netbox/dcim/forms/object_import.py:181 netbox/dcim/tables/devices.py:169 -#: netbox/dcim/tables/devices.py:809 netbox/dcim/tables/devices.py:937 -#: netbox/dcim/tables/devicetypes.py:304 netbox/dcim/tables/racks.py:129 -#: netbox/extras/filtersets.py:552 netbox/ipam/forms/bulk_edit.py:260 -#: netbox/ipam/forms/bulk_edit.py:310 netbox/ipam/forms/bulk_edit.py:358 -#: netbox/ipam/forms/bulk_edit.py:556 netbox/ipam/forms/bulk_import.py:197 -#: netbox/ipam/forms/bulk_import.py:262 netbox/ipam/forms/bulk_import.py:298 -#: netbox/ipam/forms/bulk_import.py:455 netbox/ipam/forms/filtersets.py:237 -#: netbox/ipam/forms/filtersets.py:289 netbox/ipam/forms/filtersets.py:360 -#: netbox/ipam/forms/filtersets.py:509 netbox/ipam/forms/model_forms.py:188 -#: netbox/ipam/forms/model_forms.py:221 netbox/ipam/forms/model_forms.py:250 -#: netbox/ipam/forms/model_forms.py:643 netbox/ipam/tables/ip.py:258 -#: netbox/ipam/tables/ip.py:316 netbox/ipam/tables/ip.py:367 -#: netbox/ipam/tables/vlans.py:130 netbox/ipam/tables/vlans.py:235 -#: netbox/templates/dcim/device.html:182 -#: netbox/templates/dcim/inc/panels/inventory_items.html:20 -#: netbox/templates/dcim/interface.html:223 -#: netbox/templates/dcim/inventoryitem.html:36 -#: netbox/templates/dcim/rack.html:49 netbox/templates/ipam/ipaddress.html:41 -#: netbox/templates/ipam/iprange.html:50 netbox/templates/ipam/prefix.html:77 -#: netbox/templates/ipam/role.html:19 netbox/templates/ipam/vlan.html:52 -#: netbox/templates/virtualization/virtualmachine.html:23 -#: netbox/templates/vpn/tunneltermination.html:17 -#: netbox/templates/wireless/inc/wirelesslink_interface.html:20 -#: netbox/tenancy/forms/bulk_edit.py:142 -#: netbox/tenancy/forms/filtersets.py:107 -#: netbox/tenancy/forms/model_forms.py:137 -#: netbox/tenancy/tables/contacts.py:102 -#: netbox/virtualization/forms/bulk_edit.py:145 -#: netbox/virtualization/forms/bulk_import.py:106 -#: netbox/virtualization/forms/filtersets.py:157 -#: netbox/virtualization/forms/model_forms.py:195 -#: netbox/virtualization/tables/virtualmachines.py:75 -#: netbox/vpn/forms/bulk_edit.py:87 netbox/vpn/forms/bulk_import.py:81 -#: netbox/vpn/forms/filtersets.py:85 netbox/vpn/forms/model_forms.py:78 -#: netbox/vpn/forms/model_forms.py:113 netbox/vpn/tables/tunnels.py:82 +#: dcim/forms/bulk_edit.py:357 dcim/forms/bulk_edit.py:1262 +#: dcim/forms/bulk_edit.py:1655 dcim/forms/bulk_import.py:253 +#: dcim/forms/bulk_import.py:1076 dcim/forms/filtersets.py:367 +#: dcim/forms/filtersets.py:777 dcim/forms/filtersets.py:1534 +#: dcim/forms/model_forms.py:251 dcim/forms/model_forms.py:1070 +#: dcim/forms/model_forms.py:1510 dcim/forms/object_import.py:181 +#: dcim/tables/devices.py:169 dcim/tables/devices.py:809 +#: dcim/tables/devices.py:937 dcim/tables/devicetypes.py:304 +#: dcim/tables/racks.py:129 extras/filtersets.py:552 +#: ipam/forms/bulk_edit.py:261 ipam/forms/bulk_edit.py:311 +#: ipam/forms/bulk_edit.py:359 ipam/forms/bulk_edit.py:511 +#: ipam/forms/bulk_import.py:197 ipam/forms/bulk_import.py:262 +#: ipam/forms/bulk_import.py:298 ipam/forms/bulk_import.py:455 +#: ipam/forms/filtersets.py:237 ipam/forms/filtersets.py:289 +#: ipam/forms/filtersets.py:360 ipam/forms/filtersets.py:509 +#: ipam/forms/model_forms.py:188 ipam/forms/model_forms.py:221 +#: ipam/forms/model_forms.py:250 ipam/forms/model_forms.py:643 +#: ipam/tables/ip.py:258 ipam/tables/ip.py:316 ipam/tables/ip.py:367 +#: ipam/tables/vlans.py:130 ipam/tables/vlans.py:235 +#: templates/dcim/device.html:182 +#: templates/dcim/inc/panels/inventory_items.html:20 +#: templates/dcim/interface.html:223 templates/dcim/inventoryitem.html:36 +#: templates/dcim/rack.html:49 templates/ipam/ipaddress.html:41 +#: templates/ipam/iprange.html:50 templates/ipam/prefix.html:77 +#: templates/ipam/role.html:19 templates/ipam/vlan.html:52 +#: templates/virtualization/virtualmachine.html:23 +#: templates/vpn/tunneltermination.html:17 +#: templates/wireless/inc/wirelesslink_interface.html:20 +#: tenancy/forms/bulk_edit.py:142 tenancy/forms/filtersets.py:107 +#: tenancy/forms/model_forms.py:137 tenancy/tables/contacts.py:102 +#: virtualization/forms/bulk_edit.py:145 +#: virtualization/forms/bulk_import.py:106 +#: virtualization/forms/filtersets.py:157 +#: virtualization/forms/model_forms.py:195 +#: virtualization/tables/virtualmachines.py:75 vpn/forms/bulk_edit.py:87 +#: vpn/forms/bulk_import.py:81 vpn/forms/filtersets.py:85 +#: vpn/forms/model_forms.py:78 vpn/forms/model_forms.py:113 +#: vpn/tables/tunnels.py:82 msgid "Role" msgstr "Роль" -#: netbox/dcim/forms/bulk_edit.py:364 netbox/dcim/forms/bulk_edit.py:712 -#: netbox/dcim/forms/bulk_edit.py:764 netbox/templates/dcim/device.html:104 -#: netbox/templates/dcim/module.html:77 -#: netbox/templates/dcim/modulebay.html:70 netbox/templates/dcim/rack.html:57 -#: netbox/templates/virtualization/virtualmachine.html:35 +#: dcim/forms/bulk_edit.py:364 dcim/forms/bulk_edit.py:712 +#: dcim/forms/bulk_edit.py:764 templates/dcim/device.html:104 +#: templates/dcim/module.html:77 templates/dcim/modulebay.html:70 +#: templates/dcim/rack.html:57 templates/virtualization/virtualmachine.html:35 msgid "Serial Number" msgstr "Серійний номер" -#: netbox/dcim/forms/bulk_edit.py:367 netbox/dcim/forms/filtersets.py:387 -#: netbox/dcim/forms/filtersets.py:813 netbox/dcim/forms/filtersets.py:967 -#: netbox/dcim/forms/filtersets.py:1546 +#: dcim/forms/bulk_edit.py:367 dcim/forms/filtersets.py:387 +#: dcim/forms/filtersets.py:813 dcim/forms/filtersets.py:967 +#: dcim/forms/filtersets.py:1546 msgid "Asset tag" msgstr "Призначеня міток" -#: netbox/dcim/forms/bulk_edit.py:411 netbox/dcim/forms/bulk_edit.py:524 -#: netbox/dcim/forms/bulk_edit.py:568 netbox/dcim/forms/bulk_edit.py:705 -#: netbox/dcim/forms/bulk_import.py:277 netbox/dcim/forms/bulk_import.py:410 -#: netbox/dcim/forms/bulk_import.py:580 netbox/dcim/forms/filtersets.py:280 -#: netbox/dcim/forms/filtersets.py:511 netbox/dcim/forms/filtersets.py:669 -#: netbox/dcim/forms/filtersets.py:804 netbox/templates/dcim/device.html:98 -#: netbox/templates/dcim/devicetype.html:65 -#: netbox/templates/dcim/moduletype.html:30 netbox/templates/dcim/rack.html:65 -#: netbox/templates/dcim/racktype.html:28 +#: dcim/forms/bulk_edit.py:411 dcim/forms/bulk_edit.py:524 +#: dcim/forms/bulk_edit.py:568 dcim/forms/bulk_edit.py:705 +#: dcim/forms/bulk_import.py:277 dcim/forms/bulk_import.py:410 +#: dcim/forms/bulk_import.py:580 dcim/forms/filtersets.py:280 +#: dcim/forms/filtersets.py:511 dcim/forms/filtersets.py:669 +#: dcim/forms/filtersets.py:804 templates/dcim/device.html:98 +#: templates/dcim/devicetype.html:65 templates/dcim/moduletype.html:41 +#: templates/dcim/rack.html:65 templates/dcim/racktype.html:28 msgid "Airflow" msgstr "Потік повітря" -#: netbox/dcim/forms/bulk_edit.py:440 netbox/dcim/forms/bulk_edit.py:910 -#: netbox/dcim/forms/bulk_import.py:322 netbox/dcim/forms/bulk_import.py:325 -#: netbox/dcim/forms/bulk_import.py:553 netbox/dcim/forms/bulk_import.py:1358 -#: netbox/dcim/forms/bulk_import.py:1362 netbox/dcim/forms/filtersets.py:104 -#: netbox/dcim/forms/filtersets.py:324 netbox/dcim/forms/filtersets.py:405 -#: netbox/dcim/forms/filtersets.py:419 netbox/dcim/forms/filtersets.py:457 -#: netbox/dcim/forms/filtersets.py:772 netbox/dcim/forms/filtersets.py:1035 -#: netbox/dcim/forms/filtersets.py:1167 netbox/dcim/forms/model_forms.py:264 -#: netbox/dcim/forms/model_forms.py:306 netbox/dcim/forms/model_forms.py:479 -#: netbox/dcim/forms/model_forms.py:755 netbox/dcim/forms/object_create.py:400 -#: netbox/dcim/tables/devices.py:161 netbox/dcim/tables/power.py:70 -#: netbox/dcim/tables/racks.py:217 netbox/ipam/forms/bulk_edit.py:468 -#: netbox/ipam/forms/filtersets.py:442 netbox/templates/dcim/device.html:30 -#: netbox/templates/dcim/inc/cable_termination.html:16 -#: netbox/templates/dcim/powerfeed.html:28 netbox/templates/dcim/rack.html:13 -#: netbox/templates/dcim/rack/base.html:4 -#: netbox/templates/dcim/rackreservation.html:19 -#: netbox/templates/dcim/rackreservation.html:36 -#: netbox/virtualization/forms/model_forms.py:113 +#: dcim/forms/bulk_edit.py:440 dcim/forms/bulk_edit.py:910 +#: dcim/forms/bulk_import.py:322 dcim/forms/bulk_import.py:325 +#: dcim/forms/bulk_import.py:553 dcim/forms/bulk_import.py:1358 +#: dcim/forms/bulk_import.py:1362 dcim/forms/filtersets.py:104 +#: dcim/forms/filtersets.py:324 dcim/forms/filtersets.py:405 +#: dcim/forms/filtersets.py:419 dcim/forms/filtersets.py:457 +#: dcim/forms/filtersets.py:772 dcim/forms/filtersets.py:1035 +#: dcim/forms/filtersets.py:1167 dcim/forms/model_forms.py:264 +#: dcim/forms/model_forms.py:306 dcim/forms/model_forms.py:479 +#: dcim/forms/model_forms.py:755 dcim/forms/object_create.py:400 +#: dcim/tables/devices.py:161 dcim/tables/power.py:70 dcim/tables/racks.py:217 +#: ipam/forms/filtersets.py:442 templates/dcim/device.html:30 +#: templates/dcim/inc/cable_termination.html:16 +#: templates/dcim/powerfeed.html:28 templates/dcim/rack.html:13 +#: templates/dcim/rack/base.html:4 templates/dcim/rackreservation.html:19 +#: templates/dcim/rackreservation.html:36 +#: virtualization/forms/model_forms.py:113 msgid "Rack" msgstr "Стійка" -#: netbox/dcim/forms/bulk_edit.py:444 netbox/dcim/forms/bulk_edit.py:730 -#: netbox/dcim/forms/filtersets.py:325 netbox/dcim/forms/filtersets.py:398 -#: netbox/dcim/forms/filtersets.py:481 netbox/dcim/forms/filtersets.py:608 -#: netbox/dcim/forms/filtersets.py:721 netbox/dcim/forms/filtersets.py:942 -#: netbox/dcim/forms/model_forms.py:670 netbox/dcim/forms/model_forms.py:1580 -#: netbox/templates/dcim/device_edit.html:20 +#: dcim/forms/bulk_edit.py:444 dcim/forms/bulk_edit.py:730 +#: dcim/forms/filtersets.py:325 dcim/forms/filtersets.py:398 +#: dcim/forms/filtersets.py:481 dcim/forms/filtersets.py:608 +#: dcim/forms/filtersets.py:721 dcim/forms/filtersets.py:942 +#: dcim/forms/model_forms.py:670 dcim/forms/model_forms.py:1580 +#: templates/dcim/device_edit.html:20 msgid "Hardware" msgstr "Апаратне забезпечення" -#: netbox/dcim/forms/bulk_edit.py:500 netbox/dcim/forms/bulk_import.py:377 -#: netbox/dcim/forms/filtersets.py:499 netbox/dcim/forms/model_forms.py:353 +#: dcim/forms/bulk_edit.py:500 dcim/forms/bulk_import.py:377 +#: dcim/forms/filtersets.py:499 dcim/forms/model_forms.py:353 msgid "Default platform" msgstr "Платформа за замовчуванням" -#: netbox/dcim/forms/bulk_edit.py:505 netbox/dcim/forms/bulk_edit.py:564 -#: netbox/dcim/forms/filtersets.py:502 netbox/dcim/forms/filtersets.py:622 +#: dcim/forms/bulk_edit.py:505 dcim/forms/bulk_edit.py:564 +#: dcim/forms/filtersets.py:502 dcim/forms/filtersets.py:622 msgid "Part number" msgstr "Номер партії" -#: netbox/dcim/forms/bulk_edit.py:509 +#: dcim/forms/bulk_edit.py:509 msgid "U height" msgstr "Висота U" -#: netbox/dcim/forms/bulk_edit.py:521 netbox/dcim/tables/devicetypes.py:102 +#: dcim/forms/bulk_edit.py:521 dcim/tables/devicetypes.py:102 msgid "Exclude from utilization" msgstr "Виключити з утилізації" -#: netbox/dcim/forms/bulk_edit.py:550 netbox/dcim/forms/model_forms.py:368 -#: netbox/dcim/tables/devicetypes.py:77 netbox/templates/dcim/device.html:88 -#: netbox/templates/dcim/devicebay.html:52 -#: netbox/templates/dcim/module.html:61 +#: dcim/forms/bulk_edit.py:550 dcim/forms/model_forms.py:368 +#: dcim/tables/devicetypes.py:77 templates/dcim/device.html:88 +#: templates/dcim/devicebay.html:52 templates/dcim/module.html:61 msgid "Device Type" msgstr "Тип пристрою" -#: netbox/dcim/forms/bulk_edit.py:592 netbox/dcim/forms/model_forms.py:401 -#: netbox/dcim/tables/modules.py:17 netbox/dcim/tables/modules.py:65 -#: netbox/templates/dcim/module.html:65 -#: netbox/templates/dcim/modulebay.html:66 -#: netbox/templates/dcim/moduletype.html:11 +#: dcim/forms/bulk_edit.py:592 dcim/forms/model_forms.py:401 +#: dcim/tables/modules.py:17 dcim/tables/modules.py:65 +#: templates/dcim/module.html:65 templates/dcim/modulebay.html:66 +#: templates/dcim/moduletype.html:22 msgid "Module Type" msgstr "Тип модуля" -#: netbox/dcim/forms/bulk_edit.py:596 netbox/dcim/forms/model_forms.py:371 -#: netbox/dcim/forms/model_forms.py:402 -#: netbox/templates/dcim/devicetype.html:11 +#: dcim/forms/bulk_edit.py:596 dcim/forms/model_forms.py:371 +#: dcim/forms/model_forms.py:402 templates/dcim/devicetype.html:11 msgid "Chassis" msgstr "Шасі" -#: netbox/dcim/forms/bulk_edit.py:610 netbox/dcim/models/devices.py:484 -#: netbox/dcim/tables/devices.py:67 +#: dcim/forms/bulk_edit.py:610 dcim/models/devices.py:484 +#: dcim/tables/devices.py:67 msgid "VM role" msgstr "Роль віртуальної машини" -#: netbox/dcim/forms/bulk_edit.py:613 netbox/dcim/forms/bulk_edit.py:637 -#: netbox/dcim/forms/bulk_edit.py:720 netbox/dcim/forms/bulk_import.py:434 -#: netbox/dcim/forms/bulk_import.py:438 netbox/dcim/forms/bulk_import.py:457 -#: netbox/dcim/forms/bulk_import.py:461 netbox/dcim/forms/bulk_import.py:586 -#: netbox/dcim/forms/bulk_import.py:590 netbox/dcim/forms/filtersets.py:689 -#: netbox/dcim/forms/filtersets.py:705 netbox/dcim/forms/filtersets.py:823 -#: netbox/dcim/forms/model_forms.py:415 netbox/dcim/forms/model_forms.py:441 -#: netbox/dcim/forms/model_forms.py:555 -#: netbox/virtualization/forms/bulk_import.py:132 -#: netbox/virtualization/forms/bulk_import.py:133 -#: netbox/virtualization/forms/filtersets.py:188 -#: netbox/virtualization/forms/model_forms.py:215 +#: dcim/forms/bulk_edit.py:613 dcim/forms/bulk_edit.py:637 +#: dcim/forms/bulk_edit.py:720 dcim/forms/bulk_import.py:434 +#: dcim/forms/bulk_import.py:438 dcim/forms/bulk_import.py:457 +#: dcim/forms/bulk_import.py:461 dcim/forms/bulk_import.py:586 +#: dcim/forms/bulk_import.py:590 dcim/forms/filtersets.py:689 +#: dcim/forms/filtersets.py:705 dcim/forms/filtersets.py:823 +#: dcim/forms/model_forms.py:415 dcim/forms/model_forms.py:441 +#: dcim/forms/model_forms.py:555 virtualization/forms/bulk_import.py:132 +#: virtualization/forms/bulk_import.py:133 +#: virtualization/forms/filtersets.py:188 +#: virtualization/forms/model_forms.py:215 msgid "Config template" msgstr "Шаблон конфігурації" -#: netbox/dcim/forms/bulk_edit.py:661 netbox/dcim/forms/bulk_edit.py:1061 -#: netbox/dcim/forms/bulk_import.py:492 netbox/dcim/forms/filtersets.py:114 -#: netbox/dcim/forms/model_forms.py:501 netbox/dcim/forms/model_forms.py:872 -#: netbox/dcim/forms/model_forms.py:889 netbox/extras/filtersets.py:547 +#: dcim/forms/bulk_edit.py:661 dcim/forms/bulk_edit.py:1061 +#: dcim/forms/bulk_import.py:492 dcim/forms/filtersets.py:114 +#: dcim/forms/model_forms.py:501 dcim/forms/model_forms.py:872 +#: dcim/forms/model_forms.py:889 extras/filtersets.py:547 msgid "Device type" msgstr "Тип пристрою" -#: netbox/dcim/forms/bulk_edit.py:672 netbox/dcim/forms/bulk_import.py:473 -#: netbox/dcim/forms/filtersets.py:119 netbox/dcim/forms/model_forms.py:509 +#: dcim/forms/bulk_edit.py:672 dcim/forms/bulk_import.py:473 +#: dcim/forms/filtersets.py:119 dcim/forms/model_forms.py:509 msgid "Device role" msgstr "Роль пристрою" -#: netbox/dcim/forms/bulk_edit.py:695 netbox/dcim/forms/bulk_import.py:498 -#: netbox/dcim/forms/filtersets.py:796 netbox/dcim/forms/model_forms.py:451 -#: netbox/dcim/forms/model_forms.py:513 netbox/dcim/tables/devices.py:182 -#: netbox/extras/filtersets.py:563 netbox/templates/dcim/device.html:186 -#: netbox/templates/dcim/platform.html:26 -#: netbox/templates/virtualization/virtualmachine.html:27 -#: netbox/virtualization/forms/bulk_edit.py:160 -#: netbox/virtualization/forms/bulk_import.py:122 -#: netbox/virtualization/forms/filtersets.py:168 -#: netbox/virtualization/forms/model_forms.py:203 -#: netbox/virtualization/tables/virtualmachines.py:79 +#: dcim/forms/bulk_edit.py:695 dcim/forms/bulk_import.py:498 +#: dcim/forms/filtersets.py:796 dcim/forms/model_forms.py:451 +#: dcim/forms/model_forms.py:513 dcim/tables/devices.py:182 +#: extras/filtersets.py:563 templates/dcim/device.html:186 +#: templates/dcim/platform.html:26 +#: templates/virtualization/virtualmachine.html:27 +#: virtualization/forms/bulk_edit.py:160 +#: virtualization/forms/bulk_import.py:122 +#: virtualization/forms/filtersets.py:168 +#: virtualization/forms/model_forms.py:203 +#: virtualization/tables/virtualmachines.py:79 msgid "Platform" msgstr "Платформа" -#: netbox/dcim/forms/bulk_edit.py:728 netbox/dcim/forms/bulk_edit.py:1281 -#: netbox/dcim/forms/bulk_edit.py:1650 netbox/dcim/forms/bulk_edit.py:1696 -#: netbox/dcim/forms/bulk_import.py:641 netbox/dcim/forms/bulk_import.py:703 -#: netbox/dcim/forms/bulk_import.py:729 netbox/dcim/forms/bulk_import.py:755 -#: netbox/dcim/forms/bulk_import.py:775 netbox/dcim/forms/bulk_import.py:828 -#: netbox/dcim/forms/bulk_import.py:946 netbox/dcim/forms/bulk_import.py:994 -#: netbox/dcim/forms/bulk_import.py:1011 netbox/dcim/forms/bulk_import.py:1023 -#: netbox/dcim/forms/bulk_import.py:1071 netbox/dcim/forms/bulk_import.py:1422 -#: netbox/dcim/forms/connections.py:24 netbox/dcim/forms/filtersets.py:131 -#: netbox/dcim/forms/filtersets.py:921 netbox/dcim/forms/filtersets.py:1051 -#: netbox/dcim/forms/filtersets.py:1242 netbox/dcim/forms/filtersets.py:1267 -#: netbox/dcim/forms/filtersets.py:1291 netbox/dcim/forms/filtersets.py:1311 -#: netbox/dcim/forms/filtersets.py:1334 netbox/dcim/forms/filtersets.py:1444 -#: netbox/dcim/forms/filtersets.py:1469 netbox/dcim/forms/filtersets.py:1493 -#: netbox/dcim/forms/filtersets.py:1511 netbox/dcim/forms/filtersets.py:1528 -#: netbox/dcim/forms/filtersets.py:1592 netbox/dcim/forms/filtersets.py:1616 -#: netbox/dcim/forms/filtersets.py:1640 netbox/dcim/forms/model_forms.py:633 -#: netbox/dcim/forms/model_forms.py:849 netbox/dcim/forms/model_forms.py:1208 -#: netbox/dcim/forms/model_forms.py:1664 -#: netbox/dcim/forms/object_create.py:257 netbox/dcim/tables/connections.py:22 -#: netbox/dcim/tables/connections.py:41 netbox/dcim/tables/connections.py:60 -#: netbox/dcim/tables/devices.py:285 netbox/dcim/tables/devices.py:371 -#: netbox/dcim/tables/devices.py:412 netbox/dcim/tables/devices.py:454 -#: netbox/dcim/tables/devices.py:505 netbox/dcim/tables/devices.py:597 -#: netbox/dcim/tables/devices.py:697 netbox/dcim/tables/devices.py:754 -#: netbox/dcim/tables/devices.py:801 netbox/dcim/tables/devices.py:861 -#: netbox/dcim/tables/devices.py:930 netbox/dcim/tables/devices.py:1057 -#: netbox/dcim/tables/modules.py:52 netbox/extras/forms/filtersets.py:321 -#: netbox/ipam/forms/bulk_import.py:304 netbox/ipam/forms/bulk_import.py:481 -#: netbox/ipam/forms/filtersets.py:551 netbox/ipam/forms/model_forms.py:319 -#: netbox/ipam/forms/model_forms.py:679 netbox/ipam/forms/model_forms.py:712 -#: netbox/ipam/forms/model_forms.py:738 netbox/ipam/tables/vlans.py:180 -#: netbox/templates/dcim/consoleport.html:20 -#: netbox/templates/dcim/consoleserverport.html:20 -#: netbox/templates/dcim/device.html:15 netbox/templates/dcim/device.html:130 -#: netbox/templates/dcim/device_edit.html:10 -#: netbox/templates/dcim/devicebay.html:20 -#: netbox/templates/dcim/devicebay.html:48 -#: netbox/templates/dcim/frontport.html:20 -#: netbox/templates/dcim/interface.html:30 -#: netbox/templates/dcim/interface.html:161 -#: netbox/templates/dcim/inventoryitem.html:20 -#: netbox/templates/dcim/module.html:57 -#: netbox/templates/dcim/modulebay.html:20 -#: netbox/templates/dcim/poweroutlet.html:20 -#: netbox/templates/dcim/powerport.html:20 -#: netbox/templates/dcim/rearport.html:20 -#: netbox/templates/dcim/virtualchassis.html:65 -#: netbox/templates/dcim/virtualchassis_edit.html:51 -#: netbox/templates/dcim/virtualdevicecontext.html:22 -#: netbox/templates/virtualization/virtualmachine.html:114 -#: netbox/templates/vpn/tunneltermination.html:23 -#: netbox/templates/wireless/inc/wirelesslink_interface.html:6 -#: netbox/virtualization/filtersets.py:167 -#: netbox/virtualization/forms/bulk_edit.py:137 -#: netbox/virtualization/forms/bulk_import.py:99 -#: netbox/virtualization/forms/filtersets.py:128 -#: netbox/virtualization/forms/model_forms.py:185 -#: netbox/virtualization/tables/virtualmachines.py:71 netbox/vpn/choices.py:44 -#: netbox/vpn/forms/bulk_import.py:86 netbox/vpn/forms/bulk_import.py:283 -#: netbox/vpn/forms/filtersets.py:275 netbox/vpn/forms/model_forms.py:90 -#: netbox/vpn/forms/model_forms.py:125 netbox/vpn/forms/model_forms.py:236 -#: netbox/vpn/forms/model_forms.py:453 netbox/wireless/forms/model_forms.py:99 -#: netbox/wireless/forms/model_forms.py:141 -#: netbox/wireless/tables/wirelesslan.py:75 +#: dcim/forms/bulk_edit.py:728 dcim/forms/bulk_edit.py:1281 +#: dcim/forms/bulk_edit.py:1650 dcim/forms/bulk_edit.py:1696 +#: dcim/forms/bulk_import.py:641 dcim/forms/bulk_import.py:703 +#: dcim/forms/bulk_import.py:729 dcim/forms/bulk_import.py:755 +#: dcim/forms/bulk_import.py:775 dcim/forms/bulk_import.py:828 +#: dcim/forms/bulk_import.py:946 dcim/forms/bulk_import.py:994 +#: dcim/forms/bulk_import.py:1011 dcim/forms/bulk_import.py:1023 +#: dcim/forms/bulk_import.py:1071 dcim/forms/bulk_import.py:1422 +#: dcim/forms/connections.py:24 dcim/forms/filtersets.py:131 +#: dcim/forms/filtersets.py:921 dcim/forms/filtersets.py:1051 +#: dcim/forms/filtersets.py:1242 dcim/forms/filtersets.py:1267 +#: dcim/forms/filtersets.py:1291 dcim/forms/filtersets.py:1311 +#: dcim/forms/filtersets.py:1334 dcim/forms/filtersets.py:1444 +#: dcim/forms/filtersets.py:1469 dcim/forms/filtersets.py:1493 +#: dcim/forms/filtersets.py:1511 dcim/forms/filtersets.py:1528 +#: dcim/forms/filtersets.py:1592 dcim/forms/filtersets.py:1616 +#: dcim/forms/filtersets.py:1640 dcim/forms/model_forms.py:633 +#: dcim/forms/model_forms.py:849 dcim/forms/model_forms.py:1208 +#: dcim/forms/model_forms.py:1664 dcim/forms/object_create.py:257 +#: dcim/tables/connections.py:22 dcim/tables/connections.py:41 +#: dcim/tables/connections.py:60 dcim/tables/devices.py:285 +#: dcim/tables/devices.py:371 dcim/tables/devices.py:412 +#: dcim/tables/devices.py:454 dcim/tables/devices.py:505 +#: dcim/tables/devices.py:597 dcim/tables/devices.py:697 +#: dcim/tables/devices.py:754 dcim/tables/devices.py:801 +#: dcim/tables/devices.py:861 dcim/tables/devices.py:930 +#: dcim/tables/devices.py:1057 dcim/tables/modules.py:52 +#: extras/forms/filtersets.py:321 ipam/forms/bulk_import.py:304 +#: ipam/forms/bulk_import.py:481 ipam/forms/filtersets.py:551 +#: ipam/forms/model_forms.py:319 ipam/forms/model_forms.py:679 +#: ipam/forms/model_forms.py:712 ipam/forms/model_forms.py:738 +#: ipam/tables/vlans.py:180 templates/dcim/consoleport.html:20 +#: templates/dcim/consoleserverport.html:20 templates/dcim/device.html:15 +#: templates/dcim/device.html:130 templates/dcim/device_edit.html:10 +#: templates/dcim/devicebay.html:20 templates/dcim/devicebay.html:48 +#: templates/dcim/frontport.html:20 templates/dcim/interface.html:30 +#: templates/dcim/interface.html:161 templates/dcim/inventoryitem.html:20 +#: templates/dcim/module.html:57 templates/dcim/modulebay.html:20 +#: templates/dcim/poweroutlet.html:20 templates/dcim/powerport.html:20 +#: templates/dcim/rearport.html:20 templates/dcim/virtualchassis.html:65 +#: templates/dcim/virtualchassis_edit.html:51 +#: templates/dcim/virtualdevicecontext.html:22 +#: templates/virtualization/virtualmachine.html:114 +#: templates/vpn/tunneltermination.html:23 +#: templates/wireless/inc/wirelesslink_interface.html:6 +#: virtualization/filtersets.py:167 virtualization/forms/bulk_edit.py:137 +#: virtualization/forms/bulk_import.py:99 +#: virtualization/forms/filtersets.py:128 +#: virtualization/forms/model_forms.py:185 +#: virtualization/tables/virtualmachines.py:71 vpn/choices.py:44 +#: vpn/forms/bulk_import.py:86 vpn/forms/bulk_import.py:283 +#: vpn/forms/filtersets.py:275 vpn/forms/model_forms.py:90 +#: vpn/forms/model_forms.py:125 vpn/forms/model_forms.py:236 +#: vpn/forms/model_forms.py:453 wireless/forms/model_forms.py:99 +#: wireless/forms/model_forms.py:141 wireless/tables/wirelesslan.py:75 msgid "Device" msgstr "Пристрій" -#: netbox/dcim/forms/bulk_edit.py:731 -#: netbox/templates/extras/dashboard/widget_config.html:7 -#: netbox/virtualization/forms/bulk_edit.py:191 +#: dcim/forms/bulk_edit.py:731 templates/extras/dashboard/widget_config.html:7 +#: virtualization/forms/bulk_edit.py:191 msgid "Configuration" msgstr "Конфігурація" -#: netbox/dcim/forms/bulk_edit.py:745 netbox/dcim/forms/bulk_import.py:653 -#: netbox/dcim/forms/model_forms.py:647 netbox/dcim/forms/model_forms.py:897 +#: dcim/forms/bulk_edit.py:745 dcim/forms/bulk_import.py:653 +#: dcim/forms/model_forms.py:647 dcim/forms/model_forms.py:897 msgid "Module type" msgstr "Тип модуля" -#: netbox/dcim/forms/bulk_edit.py:799 netbox/dcim/forms/bulk_edit.py:984 -#: netbox/dcim/forms/bulk_edit.py:1003 netbox/dcim/forms/bulk_edit.py:1026 -#: netbox/dcim/forms/bulk_edit.py:1068 netbox/dcim/forms/bulk_edit.py:1112 -#: netbox/dcim/forms/bulk_edit.py:1163 netbox/dcim/forms/bulk_edit.py:1190 -#: netbox/dcim/forms/bulk_edit.py:1217 netbox/dcim/forms/bulk_edit.py:1235 -#: netbox/dcim/forms/bulk_edit.py:1253 netbox/dcim/forms/filtersets.py:67 -#: netbox/dcim/forms/object_create.py:46 netbox/templates/dcim/cable.html:32 -#: netbox/templates/dcim/consoleport.html:32 -#: netbox/templates/dcim/consoleserverport.html:32 -#: netbox/templates/dcim/devicebay.html:28 -#: netbox/templates/dcim/frontport.html:32 -#: netbox/templates/dcim/inc/panels/inventory_items.html:19 -#: netbox/templates/dcim/interface.html:42 -#: netbox/templates/dcim/inventoryitem.html:32 -#: netbox/templates/dcim/modulebay.html:34 -#: netbox/templates/dcim/poweroutlet.html:32 -#: netbox/templates/dcim/powerport.html:32 -#: netbox/templates/dcim/rearport.html:32 -#: netbox/templates/extras/customfield.html:26 -#: netbox/templates/generic/bulk_import.html:162 +#: dcim/forms/bulk_edit.py:799 dcim/forms/bulk_edit.py:984 +#: dcim/forms/bulk_edit.py:1003 dcim/forms/bulk_edit.py:1026 +#: dcim/forms/bulk_edit.py:1068 dcim/forms/bulk_edit.py:1112 +#: dcim/forms/bulk_edit.py:1163 dcim/forms/bulk_edit.py:1190 +#: dcim/forms/bulk_edit.py:1217 dcim/forms/bulk_edit.py:1235 +#: dcim/forms/bulk_edit.py:1253 dcim/forms/filtersets.py:67 +#: dcim/forms/object_create.py:46 templates/dcim/cable.html:32 +#: templates/dcim/consoleport.html:32 templates/dcim/consoleserverport.html:32 +#: templates/dcim/devicebay.html:28 templates/dcim/frontport.html:32 +#: templates/dcim/inc/panels/inventory_items.html:19 +#: templates/dcim/interface.html:42 templates/dcim/inventoryitem.html:32 +#: templates/dcim/modulebay.html:34 templates/dcim/poweroutlet.html:32 +#: templates/dcim/powerport.html:32 templates/dcim/rearport.html:32 +#: templates/extras/customfield.html:26 templates/generic/bulk_import.html:162 msgid "Label" msgstr "Етикетка" -#: netbox/dcim/forms/bulk_edit.py:808 netbox/dcim/forms/filtersets.py:1068 -#: netbox/templates/dcim/cable.html:50 +#: dcim/forms/bulk_edit.py:808 dcim/forms/filtersets.py:1068 +#: templates/dcim/cable.html:50 msgid "Length" msgstr "Довжина" -#: netbox/dcim/forms/bulk_edit.py:813 netbox/dcim/forms/bulk_import.py:1226 -#: netbox/dcim/forms/bulk_import.py:1229 netbox/dcim/forms/filtersets.py:1072 +#: dcim/forms/bulk_edit.py:813 dcim/forms/bulk_import.py:1226 +#: dcim/forms/bulk_import.py:1229 dcim/forms/filtersets.py:1072 msgid "Length unit" msgstr "Довжина юніта" -#: netbox/dcim/forms/bulk_edit.py:837 -#: netbox/templates/dcim/virtualchassis.html:23 +#: dcim/forms/bulk_edit.py:837 templates/dcim/virtualchassis.html:23 msgid "Domain" msgstr "Домен" -#: netbox/dcim/forms/bulk_edit.py:905 netbox/dcim/forms/bulk_import.py:1345 -#: netbox/dcim/forms/filtersets.py:1158 netbox/dcim/forms/model_forms.py:750 +#: dcim/forms/bulk_edit.py:905 dcim/forms/bulk_import.py:1345 +#: dcim/forms/filtersets.py:1158 dcim/forms/model_forms.py:750 msgid "Power panel" msgstr "Панель живлення" -#: netbox/dcim/forms/bulk_edit.py:927 netbox/dcim/forms/bulk_import.py:1381 -#: netbox/dcim/forms/filtersets.py:1180 -#: netbox/templates/dcim/powerfeed.html:83 +#: dcim/forms/bulk_edit.py:927 dcim/forms/bulk_import.py:1381 +#: dcim/forms/filtersets.py:1180 templates/dcim/powerfeed.html:83 msgid "Supply" msgstr "Постачання" -#: netbox/dcim/forms/bulk_edit.py:933 netbox/dcim/forms/bulk_import.py:1386 -#: netbox/dcim/forms/filtersets.py:1185 -#: netbox/templates/dcim/powerfeed.html:95 +#: dcim/forms/bulk_edit.py:933 dcim/forms/bulk_import.py:1386 +#: dcim/forms/filtersets.py:1185 templates/dcim/powerfeed.html:95 msgid "Phase" msgstr "Фаза" -#: netbox/dcim/forms/bulk_edit.py:939 netbox/dcim/forms/filtersets.py:1190 -#: netbox/templates/dcim/powerfeed.html:87 +#: dcim/forms/bulk_edit.py:939 dcim/forms/filtersets.py:1190 +#: templates/dcim/powerfeed.html:87 msgid "Voltage" msgstr "Напруга" -#: netbox/dcim/forms/bulk_edit.py:943 netbox/dcim/forms/filtersets.py:1194 -#: netbox/templates/dcim/powerfeed.html:91 +#: dcim/forms/bulk_edit.py:943 dcim/forms/filtersets.py:1194 +#: templates/dcim/powerfeed.html:91 msgid "Amperage" msgstr "Сила струму" -#: netbox/dcim/forms/bulk_edit.py:947 netbox/dcim/forms/filtersets.py:1198 +#: dcim/forms/bulk_edit.py:947 dcim/forms/filtersets.py:1198 msgid "Max utilization" msgstr "Максимальне використання" -#: netbox/dcim/forms/bulk_edit.py:1036 +#: dcim/forms/bulk_edit.py:1036 msgid "Maximum draw" msgstr "Максимальна потужність" -#: netbox/dcim/forms/bulk_edit.py:1039 -#: netbox/dcim/models/device_component_templates.py:282 -#: netbox/dcim/models/device_components.py:356 +#: dcim/forms/bulk_edit.py:1039 dcim/models/device_component_templates.py:282 +#: dcim/models/device_components.py:356 msgid "Maximum power draw (watts)" msgstr "Максимальна споживана потужність (Вт)" -#: netbox/dcim/forms/bulk_edit.py:1042 +#: dcim/forms/bulk_edit.py:1042 msgid "Allocated draw" msgstr "Виділена потужність" -#: netbox/dcim/forms/bulk_edit.py:1045 -#: netbox/dcim/models/device_component_templates.py:289 -#: netbox/dcim/models/device_components.py:363 +#: dcim/forms/bulk_edit.py:1045 dcim/models/device_component_templates.py:289 +#: dcim/models/device_components.py:363 msgid "Allocated power draw (watts)" msgstr "Виділена споживана потужність (Вт)" -#: netbox/dcim/forms/bulk_edit.py:1078 netbox/dcim/forms/bulk_import.py:786 -#: netbox/dcim/forms/model_forms.py:953 netbox/dcim/forms/model_forms.py:1278 -#: netbox/dcim/forms/model_forms.py:1567 netbox/dcim/forms/object_import.py:55 +#: dcim/forms/bulk_edit.py:1078 dcim/forms/bulk_import.py:786 +#: dcim/forms/model_forms.py:953 dcim/forms/model_forms.py:1278 +#: dcim/forms/model_forms.py:1567 dcim/forms/object_import.py:55 msgid "Power port" msgstr "Порт живлення" -#: netbox/dcim/forms/bulk_edit.py:1083 netbox/dcim/forms/bulk_import.py:793 +#: dcim/forms/bulk_edit.py:1083 dcim/forms/bulk_import.py:793 msgid "Feed leg" msgstr "Фідер живлення" -#: netbox/dcim/forms/bulk_edit.py:1129 netbox/dcim/forms/bulk_edit.py:1440 +#: dcim/forms/bulk_edit.py:1129 dcim/forms/bulk_edit.py:1440 msgid "Management only" msgstr "Тільки управління" -#: netbox/dcim/forms/bulk_edit.py:1139 netbox/dcim/forms/bulk_edit.py:1446 -#: netbox/dcim/forms/bulk_import.py:876 netbox/dcim/forms/filtersets.py:1394 -#: netbox/dcim/forms/object_import.py:90 -#: netbox/dcim/models/device_component_templates.py:437 -#: netbox/dcim/models/device_components.py:670 +#: dcim/forms/bulk_edit.py:1139 dcim/forms/bulk_edit.py:1446 +#: dcim/forms/bulk_import.py:876 dcim/forms/filtersets.py:1394 +#: dcim/forms/object_import.py:90 +#: dcim/models/device_component_templates.py:437 +#: dcim/models/device_components.py:670 msgid "PoE mode" msgstr "Режим PoE" -#: netbox/dcim/forms/bulk_edit.py:1145 netbox/dcim/forms/bulk_edit.py:1452 -#: netbox/dcim/forms/bulk_import.py:882 netbox/dcim/forms/filtersets.py:1399 -#: netbox/dcim/forms/object_import.py:95 -#: netbox/dcim/models/device_component_templates.py:443 -#: netbox/dcim/models/device_components.py:676 +#: dcim/forms/bulk_edit.py:1145 dcim/forms/bulk_edit.py:1452 +#: dcim/forms/bulk_import.py:882 dcim/forms/filtersets.py:1399 +#: dcim/forms/object_import.py:95 +#: dcim/models/device_component_templates.py:443 +#: dcim/models/device_components.py:676 msgid "PoE type" msgstr "Тип PoE" -#: netbox/dcim/forms/bulk_edit.py:1151 netbox/dcim/forms/filtersets.py:1404 -#: netbox/dcim/forms/object_import.py:100 +#: dcim/forms/bulk_edit.py:1151 dcim/forms/filtersets.py:1404 +#: dcim/forms/object_import.py:100 msgid "Wireless role" msgstr "Бездротова роль" -#: netbox/dcim/forms/bulk_edit.py:1288 netbox/dcim/forms/model_forms.py:669 -#: netbox/dcim/forms/model_forms.py:1223 netbox/dcim/tables/devices.py:313 -#: netbox/templates/dcim/consoleport.html:24 -#: netbox/templates/dcim/consoleserverport.html:24 -#: netbox/templates/dcim/frontport.html:24 -#: netbox/templates/dcim/interface.html:34 -#: netbox/templates/dcim/module.html:54 -#: netbox/templates/dcim/modulebay.html:26 -#: netbox/templates/dcim/modulebay.html:58 -#: netbox/templates/dcim/poweroutlet.html:24 -#: netbox/templates/dcim/powerport.html:24 -#: netbox/templates/dcim/rearport.html:24 +#: dcim/forms/bulk_edit.py:1288 dcim/forms/model_forms.py:669 +#: dcim/forms/model_forms.py:1223 dcim/tables/devices.py:313 +#: templates/dcim/consoleport.html:24 templates/dcim/consoleserverport.html:24 +#: templates/dcim/frontport.html:24 templates/dcim/interface.html:34 +#: templates/dcim/module.html:54 templates/dcim/modulebay.html:26 +#: templates/dcim/modulebay.html:58 templates/dcim/poweroutlet.html:24 +#: templates/dcim/powerport.html:24 templates/dcim/rearport.html:24 msgid "Module" msgstr "Модуль" -#: netbox/dcim/forms/bulk_edit.py:1420 netbox/dcim/tables/devices.py:665 -#: netbox/templates/dcim/interface.html:110 +#: dcim/forms/bulk_edit.py:1420 dcim/tables/devices.py:665 +#: templates/dcim/interface.html:110 msgid "LAG" msgstr "LAG" -#: netbox/dcim/forms/bulk_edit.py:1425 netbox/dcim/forms/model_forms.py:1305 +#: dcim/forms/bulk_edit.py:1425 dcim/forms/model_forms.py:1305 msgid "Virtual device contexts" msgstr "Контексти віртуальних пристроїв" -#: netbox/dcim/forms/bulk_edit.py:1431 netbox/dcim/forms/bulk_import.py:714 -#: netbox/dcim/forms/bulk_import.py:740 netbox/dcim/forms/filtersets.py:1252 -#: netbox/dcim/forms/filtersets.py:1277 netbox/dcim/forms/filtersets.py:1358 -#: netbox/dcim/tables/devices.py:610 -#: netbox/templates/circuits/inc/circuit_termination_fields.html:67 -#: netbox/templates/dcim/consoleport.html:40 -#: netbox/templates/dcim/consoleserverport.html:40 +#: dcim/forms/bulk_edit.py:1431 dcim/forms/bulk_import.py:714 +#: dcim/forms/bulk_import.py:740 dcim/forms/filtersets.py:1252 +#: dcim/forms/filtersets.py:1277 dcim/forms/filtersets.py:1358 +#: dcim/tables/devices.py:610 +#: templates/circuits/inc/circuit_termination_fields.html:67 +#: templates/dcim/consoleport.html:40 templates/dcim/consoleserverport.html:40 msgid "Speed" msgstr "Швидкість" -#: netbox/dcim/forms/bulk_edit.py:1460 netbox/dcim/forms/bulk_import.py:885 -#: netbox/templates/vpn/ikepolicy.html:25 -#: netbox/templates/vpn/ipsecprofile.html:21 -#: netbox/templates/vpn/ipsecprofile.html:48 -#: netbox/virtualization/forms/bulk_edit.py:233 -#: netbox/virtualization/forms/bulk_import.py:165 -#: netbox/vpn/forms/bulk_edit.py:146 netbox/vpn/forms/bulk_edit.py:232 -#: netbox/vpn/forms/bulk_import.py:176 netbox/vpn/forms/bulk_import.py:234 -#: netbox/vpn/forms/filtersets.py:135 netbox/vpn/forms/filtersets.py:178 -#: netbox/vpn/forms/filtersets.py:192 netbox/vpn/tables/crypto.py:64 -#: netbox/vpn/tables/crypto.py:162 +#: dcim/forms/bulk_edit.py:1460 dcim/forms/bulk_import.py:885 +#: templates/vpn/ikepolicy.html:25 templates/vpn/ipsecprofile.html:21 +#: templates/vpn/ipsecprofile.html:48 virtualization/forms/bulk_edit.py:233 +#: virtualization/forms/bulk_import.py:165 vpn/forms/bulk_edit.py:146 +#: vpn/forms/bulk_edit.py:232 vpn/forms/bulk_import.py:176 +#: vpn/forms/bulk_import.py:234 vpn/forms/filtersets.py:135 +#: vpn/forms/filtersets.py:178 vpn/forms/filtersets.py:192 +#: vpn/tables/crypto.py:64 vpn/tables/crypto.py:162 msgid "Mode" msgstr "Режим" -#: netbox/dcim/forms/bulk_edit.py:1468 netbox/dcim/forms/model_forms.py:1354 -#: netbox/ipam/forms/bulk_import.py:178 netbox/ipam/forms/filtersets.py:498 -#: netbox/ipam/models/vlans.py:84 netbox/virtualization/forms/bulk_edit.py:240 -#: netbox/virtualization/forms/model_forms.py:321 +#: dcim/forms/bulk_edit.py:1468 dcim/forms/model_forms.py:1354 +#: ipam/forms/bulk_import.py:178 ipam/forms/filtersets.py:498 +#: ipam/models/vlans.py:84 virtualization/forms/bulk_edit.py:240 +#: virtualization/forms/model_forms.py:321 msgid "VLAN group" msgstr "Група VLAN" -#: netbox/dcim/forms/bulk_edit.py:1476 netbox/dcim/forms/model_forms.py:1360 -#: netbox/dcim/tables/devices.py:579 -#: netbox/virtualization/forms/bulk_edit.py:248 -#: netbox/virtualization/forms/model_forms.py:326 +#: dcim/forms/bulk_edit.py:1476 dcim/forms/model_forms.py:1360 +#: dcim/tables/devices.py:579 virtualization/forms/bulk_edit.py:248 +#: virtualization/forms/model_forms.py:326 msgid "Untagged VLAN" msgstr "VLAN без міток" -#: netbox/dcim/forms/bulk_edit.py:1484 netbox/dcim/forms/model_forms.py:1369 -#: netbox/dcim/tables/devices.py:585 -#: netbox/virtualization/forms/bulk_edit.py:256 -#: netbox/virtualization/forms/model_forms.py:335 +#: dcim/forms/bulk_edit.py:1484 dcim/forms/model_forms.py:1369 +#: dcim/tables/devices.py:585 virtualization/forms/bulk_edit.py:256 +#: virtualization/forms/model_forms.py:335 msgid "Tagged VLANs" msgstr "VLAN з мітками" -#: netbox/dcim/forms/bulk_edit.py:1494 netbox/dcim/forms/model_forms.py:1341 +#: dcim/forms/bulk_edit.py:1494 dcim/forms/model_forms.py:1341 msgid "Wireless LAN group" msgstr "Група бездротової локальної мережі" -#: netbox/dcim/forms/bulk_edit.py:1499 netbox/dcim/forms/model_forms.py:1346 -#: netbox/dcim/tables/devices.py:619 netbox/netbox/navigation/menu.py:146 -#: netbox/templates/dcim/interface.html:280 -#: netbox/wireless/tables/wirelesslan.py:24 +#: dcim/forms/bulk_edit.py:1499 dcim/forms/model_forms.py:1346 +#: dcim/tables/devices.py:619 netbox/navigation/menu.py:146 +#: templates/dcim/interface.html:280 wireless/tables/wirelesslan.py:24 msgid "Wireless LANs" msgstr "Бездротові локальні мережі" -#: netbox/dcim/forms/bulk_edit.py:1508 netbox/dcim/forms/filtersets.py:1328 -#: netbox/dcim/forms/model_forms.py:1390 netbox/ipam/forms/bulk_edit.py:285 -#: netbox/ipam/forms/bulk_edit.py:377 netbox/ipam/forms/filtersets.py:169 -#: netbox/templates/dcim/interface.html:122 -#: netbox/templates/ipam/prefix.html:95 -#: netbox/virtualization/forms/model_forms.py:349 +#: dcim/forms/bulk_edit.py:1508 dcim/forms/filtersets.py:1328 +#: dcim/forms/model_forms.py:1390 ipam/forms/bulk_edit.py:286 +#: ipam/forms/bulk_edit.py:378 ipam/forms/filtersets.py:169 +#: templates/dcim/interface.html:122 templates/ipam/prefix.html:95 +#: virtualization/forms/model_forms.py:349 msgid "Addressing" msgstr "Адресація" -#: netbox/dcim/forms/bulk_edit.py:1509 netbox/dcim/forms/filtersets.py:720 -#: netbox/dcim/forms/model_forms.py:1391 -#: netbox/virtualization/forms/model_forms.py:350 +#: dcim/forms/bulk_edit.py:1509 dcim/forms/filtersets.py:720 +#: dcim/forms/model_forms.py:1391 virtualization/forms/model_forms.py:350 msgid "Operation" msgstr "Операція" -#: netbox/dcim/forms/bulk_edit.py:1510 netbox/dcim/forms/filtersets.py:1329 -#: netbox/dcim/forms/model_forms.py:987 netbox/dcim/forms/model_forms.py:1393 +#: dcim/forms/bulk_edit.py:1510 dcim/forms/filtersets.py:1329 +#: dcim/forms/model_forms.py:987 dcim/forms/model_forms.py:1393 msgid "PoE" msgstr "PoE" -#: netbox/dcim/forms/bulk_edit.py:1511 netbox/dcim/forms/model_forms.py:1392 -#: netbox/templates/dcim/interface.html:99 -#: netbox/virtualization/forms/bulk_edit.py:267 -#: netbox/virtualization/forms/model_forms.py:351 +#: dcim/forms/bulk_edit.py:1511 dcim/forms/model_forms.py:1392 +#: templates/dcim/interface.html:99 virtualization/forms/bulk_edit.py:267 +#: virtualization/forms/model_forms.py:351 msgid "Related Interfaces" msgstr "Пов'язані інтерфейси" -#: netbox/dcim/forms/bulk_edit.py:1512 netbox/dcim/forms/model_forms.py:1394 -#: netbox/virtualization/forms/bulk_edit.py:268 -#: netbox/virtualization/forms/model_forms.py:352 +#: dcim/forms/bulk_edit.py:1512 dcim/forms/model_forms.py:1394 +#: virtualization/forms/bulk_edit.py:268 +#: virtualization/forms/model_forms.py:352 msgid "802.1Q Switching" msgstr "Комутація 802.1Q" -#: netbox/dcim/forms/bulk_edit.py:1574 netbox/dcim/forms/bulk_edit.py:1576 +#: dcim/forms/bulk_edit.py:1574 dcim/forms/bulk_edit.py:1576 msgid "Interface mode must be specified to assign VLANs" msgstr "Для призначення VLANs необхідно вказати режим інтерфейсу" -#: netbox/dcim/forms/bulk_edit.py:1581 netbox/dcim/forms/common.py:50 +#: dcim/forms/bulk_edit.py:1581 dcim/forms/common.py:50 msgid "An access interface cannot have tagged VLANs assigned." msgstr "Інтерфейс доступу не може призначити VLAN'и з мітками." -#: netbox/dcim/forms/bulk_import.py:64 +#: dcim/forms/bulk_import.py:64 msgid "Name of parent region" msgstr "Назва батьківського регіону" -#: netbox/dcim/forms/bulk_import.py:78 +#: dcim/forms/bulk_import.py:78 msgid "Name of parent site group" msgstr "Назва батьківської групи тех. майданчиків" -#: netbox/dcim/forms/bulk_import.py:97 +#: dcim/forms/bulk_import.py:97 msgid "Assigned region" msgstr "Призначений регіон" -#: netbox/dcim/forms/bulk_import.py:104 netbox/tenancy/forms/bulk_import.py:44 -#: netbox/tenancy/forms/bulk_import.py:85 -#: netbox/wireless/forms/bulk_import.py:40 +#: dcim/forms/bulk_import.py:104 tenancy/forms/bulk_import.py:44 +#: tenancy/forms/bulk_import.py:85 wireless/forms/bulk_import.py:40 msgid "Assigned group" msgstr "Призначена група" -#: netbox/dcim/forms/bulk_import.py:123 +#: dcim/forms/bulk_import.py:123 msgid "available options" msgstr "доступні опції" -#: netbox/dcim/forms/bulk_import.py:134 netbox/dcim/forms/bulk_import.py:543 -#: netbox/dcim/forms/bulk_import.py:1342 netbox/ipam/forms/bulk_import.py:175 -#: netbox/ipam/forms/bulk_import.py:433 -#: netbox/virtualization/forms/bulk_import.py:63 -#: netbox/virtualization/forms/bulk_import.py:89 +#: dcim/forms/bulk_import.py:134 dcim/forms/bulk_import.py:543 +#: dcim/forms/bulk_import.py:1342 ipam/forms/bulk_import.py:175 +#: ipam/forms/bulk_import.py:433 virtualization/forms/bulk_import.py:63 +#: virtualization/forms/bulk_import.py:89 msgid "Assigned site" msgstr "Призначений тех. майданчик" -#: netbox/dcim/forms/bulk_import.py:141 +#: dcim/forms/bulk_import.py:141 msgid "Parent location" msgstr "Місцезнаходження прабатька" -#: netbox/dcim/forms/bulk_import.py:143 +#: dcim/forms/bulk_import.py:143 msgid "Location not found." msgstr "Місцезнаходження не знайдено." -#: netbox/dcim/forms/bulk_import.py:185 +#: dcim/forms/bulk_import.py:185 msgid "The manufacturer of this rack type" msgstr "Виробник даного стелажного типу" -#: netbox/dcim/forms/bulk_import.py:196 +#: dcim/forms/bulk_import.py:196 msgid "The lowest-numbered position in the rack" msgstr "Позиція з найменшою нумерованістю в стійці" -#: netbox/dcim/forms/bulk_import.py:201 netbox/dcim/forms/bulk_import.py:268 +#: dcim/forms/bulk_import.py:201 dcim/forms/bulk_import.py:268 msgid "Rail-to-rail width (in inches)" msgstr "Ширина рейки до рейки (у дюймах)" -#: netbox/dcim/forms/bulk_import.py:207 netbox/dcim/forms/bulk_import.py:274 +#: dcim/forms/bulk_import.py:207 dcim/forms/bulk_import.py:274 msgid "Unit for outer dimensions" msgstr "Блок для зовнішніх розмірів" -#: netbox/dcim/forms/bulk_import.py:213 netbox/dcim/forms/bulk_import.py:286 +#: dcim/forms/bulk_import.py:213 dcim/forms/bulk_import.py:286 msgid "Unit for rack weights" msgstr "Блок для стелажних ваг" -#: netbox/dcim/forms/bulk_import.py:245 +#: dcim/forms/bulk_import.py:245 msgid "Name of assigned tenant" msgstr "ПІБ призначеного орендаря" -#: netbox/dcim/forms/bulk_import.py:257 +#: dcim/forms/bulk_import.py:257 msgid "Name of assigned role" msgstr "Назва призначеної ролі" -#: netbox/dcim/forms/bulk_import.py:280 netbox/dcim/forms/bulk_import.py:413 -#: netbox/dcim/forms/bulk_import.py:583 +#: dcim/forms/bulk_import.py:280 dcim/forms/bulk_import.py:413 +#: dcim/forms/bulk_import.py:583 msgid "Airflow direction" msgstr "Напрямок повітряного потоку" -#: netbox/dcim/forms/bulk_import.py:312 +#: dcim/forms/bulk_import.py:312 msgid "Parent site" msgstr "Батьківський тех. майданчик" -#: netbox/dcim/forms/bulk_import.py:319 netbox/dcim/forms/bulk_import.py:1355 +#: dcim/forms/bulk_import.py:319 dcim/forms/bulk_import.py:1355 msgid "Rack's location (if any)" msgstr "Розташування стійки (якщо є)" -#: netbox/dcim/forms/bulk_import.py:328 netbox/dcim/forms/model_forms.py:311 -#: netbox/dcim/tables/racks.py:222 -#: netbox/templates/dcim/rackreservation.html:12 -#: netbox/templates/dcim/rackreservation.html:45 +#: dcim/forms/bulk_import.py:328 dcim/forms/model_forms.py:311 +#: dcim/tables/racks.py:222 templates/dcim/rackreservation.html:12 +#: templates/dcim/rackreservation.html:45 msgid "Units" msgstr "Юніти" -#: netbox/dcim/forms/bulk_import.py:331 +#: dcim/forms/bulk_import.py:331 msgid "Comma-separated list of individual unit numbers" msgstr "Список окремих номерів юнітів, розділених комами" -#: netbox/dcim/forms/bulk_import.py:374 +#: dcim/forms/bulk_import.py:374 msgid "The manufacturer which produces this device type" msgstr "Виробник, який випускає цей тип пристрою" -#: netbox/dcim/forms/bulk_import.py:381 +#: dcim/forms/bulk_import.py:381 msgid "The default platform for devices of this type (optional)" msgstr "Платформа за замовчуванням для пристроїв такого типу (опціонально)" -#: netbox/dcim/forms/bulk_import.py:386 +#: dcim/forms/bulk_import.py:386 msgid "Device weight" msgstr "Вага пристрою" -#: netbox/dcim/forms/bulk_import.py:392 +#: dcim/forms/bulk_import.py:392 msgid "Unit for device weight" msgstr "Вага пристрою на 1 юніт" -#: netbox/dcim/forms/bulk_import.py:418 +#: dcim/forms/bulk_import.py:418 msgid "Module weight" msgstr "Вага модуля" -#: netbox/dcim/forms/bulk_import.py:424 +#: dcim/forms/bulk_import.py:424 msgid "Unit for module weight" msgstr "Вага модуля на 1 юніт" -#: netbox/dcim/forms/bulk_import.py:454 +#: dcim/forms/bulk_import.py:454 msgid "Limit platform assignments to this manufacturer" msgstr "Обмежте призначення платформи цьому виробнику" -#: netbox/dcim/forms/bulk_import.py:476 netbox/dcim/forms/bulk_import.py:1425 -#: netbox/tenancy/forms/bulk_import.py:106 +#: dcim/forms/bulk_import.py:476 dcim/forms/bulk_import.py:1425 +#: tenancy/forms/bulk_import.py:106 msgid "Assigned role" msgstr "Призначена роль" -#: netbox/dcim/forms/bulk_import.py:489 +#: dcim/forms/bulk_import.py:489 msgid "Device type manufacturer" msgstr "Тип пристрою виробник" -#: netbox/dcim/forms/bulk_import.py:495 +#: dcim/forms/bulk_import.py:495 msgid "Device type model" msgstr "Модель типу пристрою" -#: netbox/dcim/forms/bulk_import.py:502 -#: netbox/virtualization/forms/bulk_import.py:126 +#: dcim/forms/bulk_import.py:502 virtualization/forms/bulk_import.py:126 msgid "Assigned platform" msgstr "Призначена платформа" -#: netbox/dcim/forms/bulk_import.py:510 netbox/dcim/forms/bulk_import.py:514 -#: netbox/dcim/forms/model_forms.py:536 +#: dcim/forms/bulk_import.py:510 dcim/forms/bulk_import.py:514 +#: dcim/forms/model_forms.py:536 msgid "Virtual chassis" msgstr "Віртуальне шасі" -#: netbox/dcim/forms/bulk_import.py:517 netbox/dcim/forms/filtersets.py:728 -#: netbox/dcim/forms/filtersets.py:898 netbox/dcim/forms/model_forms.py:522 -#: netbox/dcim/tables/devices.py:202 netbox/extras/filtersets.py:596 -#: netbox/extras/forms/filtersets.py:322 netbox/ipam/forms/bulk_edit.py:482 -#: netbox/ipam/forms/filtersets.py:415 netbox/ipam/forms/filtersets.py:447 -#: netbox/templates/dcim/device.html:239 -#: netbox/templates/virtualization/cluster.html:10 -#: netbox/templates/virtualization/virtualmachine.html:92 -#: netbox/templates/virtualization/virtualmachine.html:101 -#: netbox/virtualization/filtersets.py:157 -#: netbox/virtualization/filtersets.py:277 -#: netbox/virtualization/forms/bulk_edit.py:129 -#: netbox/virtualization/forms/bulk_import.py:92 -#: netbox/virtualization/forms/filtersets.py:99 -#: netbox/virtualization/forms/filtersets.py:123 -#: netbox/virtualization/forms/filtersets.py:204 -#: netbox/virtualization/forms/model_forms.py:79 -#: netbox/virtualization/forms/model_forms.py:176 -#: netbox/virtualization/tables/virtualmachines.py:67 +#: dcim/forms/bulk_import.py:517 dcim/forms/filtersets.py:728 +#: dcim/forms/filtersets.py:898 dcim/forms/model_forms.py:522 +#: dcim/tables/devices.py:202 extras/filtersets.py:596 +#: extras/forms/filtersets.py:322 ipam/forms/filtersets.py:415 +#: ipam/forms/filtersets.py:447 templates/dcim/device.html:239 +#: templates/virtualization/cluster.html:10 +#: templates/virtualization/virtualmachine.html:92 +#: templates/virtualization/virtualmachine.html:101 +#: virtualization/filtersets.py:157 virtualization/filtersets.py:277 +#: virtualization/forms/bulk_edit.py:129 +#: virtualization/forms/bulk_import.py:92 +#: virtualization/forms/filtersets.py:99 +#: virtualization/forms/filtersets.py:123 +#: virtualization/forms/filtersets.py:204 +#: virtualization/forms/model_forms.py:79 +#: virtualization/forms/model_forms.py:176 +#: virtualization/tables/virtualmachines.py:67 msgid "Cluster" msgstr "Кластер" -#: netbox/dcim/forms/bulk_import.py:521 +#: dcim/forms/bulk_import.py:521 msgid "Virtualization cluster" msgstr "Кластер віртуалізації" -#: netbox/dcim/forms/bulk_import.py:550 +#: dcim/forms/bulk_import.py:550 msgid "Assigned location (if any)" msgstr "Призначене місце розташування (якщо є)" -#: netbox/dcim/forms/bulk_import.py:557 +#: dcim/forms/bulk_import.py:557 msgid "Assigned rack (if any)" msgstr "Призначена стійка (якщо така є)" -#: netbox/dcim/forms/bulk_import.py:560 +#: dcim/forms/bulk_import.py:560 msgid "Face" msgstr "Лицева сторона" -#: netbox/dcim/forms/bulk_import.py:563 +#: dcim/forms/bulk_import.py:563 msgid "Mounted rack face" msgstr "Змонтована лицева сторона стійки" -#: netbox/dcim/forms/bulk_import.py:570 +#: dcim/forms/bulk_import.py:570 msgid "Parent device (for child devices)" msgstr "Батьківський пристрій (для підпорядкованих пристроїв)" -#: netbox/dcim/forms/bulk_import.py:573 +#: dcim/forms/bulk_import.py:573 msgid "Device bay" msgstr "Відсік для пристроїв" -#: netbox/dcim/forms/bulk_import.py:577 +#: dcim/forms/bulk_import.py:577 msgid "Device bay in which this device is installed (for child devices)" msgstr "" "Відсік для пристрою, в якому встановлено цей пристрій (для підпорядкованих " "пристроїв)" -#: netbox/dcim/forms/bulk_import.py:644 +#: dcim/forms/bulk_import.py:644 msgid "The device in which this module is installed" msgstr "Пристрій, в якому встановлений даний модуль" -#: netbox/dcim/forms/bulk_import.py:647 netbox/dcim/forms/model_forms.py:640 +#: dcim/forms/bulk_import.py:647 dcim/forms/model_forms.py:640 msgid "Module bay" msgstr "Відсік для модулів" -#: netbox/dcim/forms/bulk_import.py:650 +#: dcim/forms/bulk_import.py:650 msgid "The module bay in which this module is installed" msgstr "Відсік для модуля, в якому встановлений цей модуль" -#: netbox/dcim/forms/bulk_import.py:656 +#: dcim/forms/bulk_import.py:656 msgid "The type of module" msgstr "Тип модуля" -#: netbox/dcim/forms/bulk_import.py:664 netbox/dcim/forms/model_forms.py:656 +#: dcim/forms/bulk_import.py:664 dcim/forms/model_forms.py:656 msgid "Replicate components" msgstr "Повторювання компонентів" -#: netbox/dcim/forms/bulk_import.py:666 +#: dcim/forms/bulk_import.py:666 msgid "" "Automatically populate components associated with this module type (enabled " "by default)" @@ -4335,273 +3942,266 @@ msgstr "" "Автоматично заповнювати компоненти, пов'язані з цим типом модуля (увімкнено " "за замовчуванням)" -#: netbox/dcim/forms/bulk_import.py:669 netbox/dcim/forms/model_forms.py:662 +#: dcim/forms/bulk_import.py:669 dcim/forms/model_forms.py:662 msgid "Adopt components" msgstr "Прийняти компоненти" -#: netbox/dcim/forms/bulk_import.py:671 netbox/dcim/forms/model_forms.py:665 +#: dcim/forms/bulk_import.py:671 dcim/forms/model_forms.py:665 msgid "Adopt already existing components" msgstr "Прийняти вже існуючі компоненти" -#: netbox/dcim/forms/bulk_import.py:711 netbox/dcim/forms/bulk_import.py:737 -#: netbox/dcim/forms/bulk_import.py:763 +#: dcim/forms/bulk_import.py:711 dcim/forms/bulk_import.py:737 +#: dcim/forms/bulk_import.py:763 msgid "Port type" msgstr "Тип порту" -#: netbox/dcim/forms/bulk_import.py:719 netbox/dcim/forms/bulk_import.py:745 +#: dcim/forms/bulk_import.py:719 dcim/forms/bulk_import.py:745 msgid "Port speed in bps" msgstr "Швидкість порту в біт/с" -#: netbox/dcim/forms/bulk_import.py:783 +#: dcim/forms/bulk_import.py:783 msgid "Outlet type" msgstr "Тип розетки (живлення)" -#: netbox/dcim/forms/bulk_import.py:790 +#: dcim/forms/bulk_import.py:790 msgid "Local power port which feeds this outlet" msgstr "Локальний порт живлення, який живить цю розетку" -#: netbox/dcim/forms/bulk_import.py:796 +#: dcim/forms/bulk_import.py:796 msgid "Electrical phase (for three-phase circuits)" msgstr "Електрична фаза (для трифазних ланцюгів)" -#: netbox/dcim/forms/bulk_import.py:837 netbox/dcim/forms/model_forms.py:1316 -#: netbox/virtualization/forms/bulk_import.py:155 -#: netbox/virtualization/forms/model_forms.py:305 +#: dcim/forms/bulk_import.py:837 dcim/forms/model_forms.py:1316 +#: virtualization/forms/bulk_import.py:155 +#: virtualization/forms/model_forms.py:305 msgid "Parent interface" msgstr "Батьківський інтерфейс" -#: netbox/dcim/forms/bulk_import.py:844 netbox/dcim/forms/model_forms.py:1324 -#: netbox/virtualization/forms/bulk_import.py:162 -#: netbox/virtualization/forms/model_forms.py:313 +#: dcim/forms/bulk_import.py:844 dcim/forms/model_forms.py:1324 +#: virtualization/forms/bulk_import.py:162 +#: virtualization/forms/model_forms.py:313 msgid "Bridged interface" msgstr "Інтерфейс типу мост" -#: netbox/dcim/forms/bulk_import.py:847 +#: dcim/forms/bulk_import.py:847 msgid "Lag" msgstr "LAG" -#: netbox/dcim/forms/bulk_import.py:851 +#: dcim/forms/bulk_import.py:851 msgid "Parent LAG interface" msgstr "Батьківський інтерфейс LAG" -#: netbox/dcim/forms/bulk_import.py:854 +#: dcim/forms/bulk_import.py:854 msgid "Vdcs" msgstr "Джерела живлення постійного струму " -#: netbox/dcim/forms/bulk_import.py:859 +#: dcim/forms/bulk_import.py:859 msgid "VDC names separated by commas, encased with double quotes. Example:" msgstr "" "Імена джерел живлення постійного струму, розділені комами, укладені " "подвійними лапками. Приклад:" -#: netbox/dcim/forms/bulk_import.py:865 +#: dcim/forms/bulk_import.py:865 msgid "Physical medium" msgstr "Фізичне середовище" -#: netbox/dcim/forms/bulk_import.py:868 netbox/dcim/forms/filtersets.py:1365 +#: dcim/forms/bulk_import.py:868 dcim/forms/filtersets.py:1365 msgid "Duplex" msgstr "Дуплекс" -#: netbox/dcim/forms/bulk_import.py:873 +#: dcim/forms/bulk_import.py:873 msgid "Poe mode" msgstr "Режим PoE" -#: netbox/dcim/forms/bulk_import.py:879 +#: dcim/forms/bulk_import.py:879 msgid "Poe type" msgstr "Тип PoE" -#: netbox/dcim/forms/bulk_import.py:888 -#: netbox/virtualization/forms/bulk_import.py:168 +#: dcim/forms/bulk_import.py:888 virtualization/forms/bulk_import.py:168 msgid "IEEE 802.1Q operational mode (for L2 interfaces)" msgstr "Режим роботи IEEE 802.1Q (для інтерфейсів L2)" -#: netbox/dcim/forms/bulk_import.py:895 netbox/ipam/forms/bulk_import.py:161 -#: netbox/ipam/forms/bulk_import.py:247 netbox/ipam/forms/bulk_import.py:283 -#: netbox/ipam/forms/filtersets.py:201 netbox/ipam/forms/filtersets.py:277 -#: netbox/ipam/forms/filtersets.py:336 -#: netbox/virtualization/forms/bulk_import.py:175 +#: dcim/forms/bulk_import.py:895 ipam/forms/bulk_import.py:161 +#: ipam/forms/bulk_import.py:247 ipam/forms/bulk_import.py:283 +#: ipam/forms/filtersets.py:201 ipam/forms/filtersets.py:277 +#: ipam/forms/filtersets.py:336 virtualization/forms/bulk_import.py:175 msgid "Assigned VRF" msgstr "Призначений VRF" -#: netbox/dcim/forms/bulk_import.py:898 +#: dcim/forms/bulk_import.py:898 msgid "Rf role" msgstr "роль RF" -#: netbox/dcim/forms/bulk_import.py:901 +#: dcim/forms/bulk_import.py:901 msgid "Wireless role (AP/station)" msgstr "Бездротова роль (AP/станція)" -#: netbox/dcim/forms/bulk_import.py:937 +#: dcim/forms/bulk_import.py:937 #, python-brace-format msgid "VDC {vdc} is not assigned to device {device}" msgstr "" "Джерело живлення постійного струму {vdc} не призначається до пристрою " "{device}" -#: netbox/dcim/forms/bulk_import.py:951 netbox/dcim/forms/model_forms.py:1000 -#: netbox/dcim/forms/model_forms.py:1575 -#: netbox/dcim/forms/object_import.py:117 +#: dcim/forms/bulk_import.py:951 dcim/forms/model_forms.py:1000 +#: dcim/forms/model_forms.py:1575 dcim/forms/object_import.py:117 msgid "Rear port" msgstr "Задній порт" -#: netbox/dcim/forms/bulk_import.py:954 +#: dcim/forms/bulk_import.py:954 msgid "Corresponding rear port" msgstr "Відповідний задній порт" -#: netbox/dcim/forms/bulk_import.py:959 netbox/dcim/forms/bulk_import.py:1000 -#: netbox/dcim/forms/bulk_import.py:1216 +#: dcim/forms/bulk_import.py:959 dcim/forms/bulk_import.py:1000 +#: dcim/forms/bulk_import.py:1216 msgid "Physical medium classification" msgstr "Класифікація фізичного середовища" -#: netbox/dcim/forms/bulk_import.py:1028 netbox/dcim/tables/devices.py:822 +#: dcim/forms/bulk_import.py:1028 dcim/tables/devices.py:822 msgid "Installed device" msgstr "Встановлений пристрій" -#: netbox/dcim/forms/bulk_import.py:1032 +#: dcim/forms/bulk_import.py:1032 msgid "Child device installed within this bay" msgstr "Підпорядкований пристрій, встановлений у цьому відсіку" -#: netbox/dcim/forms/bulk_import.py:1034 +#: dcim/forms/bulk_import.py:1034 msgid "Child device not found." msgstr "Підпорядкований пристрій не знайдено." -#: netbox/dcim/forms/bulk_import.py:1092 +#: dcim/forms/bulk_import.py:1092 msgid "Parent inventory item" msgstr "Батьківський предмет інвентарю" -#: netbox/dcim/forms/bulk_import.py:1095 +#: dcim/forms/bulk_import.py:1095 msgid "Component type" msgstr "Тип компонента" -#: netbox/dcim/forms/bulk_import.py:1099 +#: dcim/forms/bulk_import.py:1099 msgid "Component Type" msgstr "Тип компонента" -#: netbox/dcim/forms/bulk_import.py:1102 +#: dcim/forms/bulk_import.py:1102 msgid "Compnent name" msgstr "Назва компонента" -#: netbox/dcim/forms/bulk_import.py:1104 +#: dcim/forms/bulk_import.py:1104 msgid "Component Name" msgstr "Назва компонента" -#: netbox/dcim/forms/bulk_import.py:1146 +#: dcim/forms/bulk_import.py:1146 #, python-brace-format msgid "Component not found: {device} - {component_name}" msgstr "Компонент не знайдено: {device} - {component_name}" -#: netbox/dcim/forms/bulk_import.py:1171 +#: dcim/forms/bulk_import.py:1171 msgid "Side A device" msgstr "Сторона А пристрою" -#: netbox/dcim/forms/bulk_import.py:1174 netbox/dcim/forms/bulk_import.py:1192 +#: dcim/forms/bulk_import.py:1174 dcim/forms/bulk_import.py:1192 msgid "Device name" msgstr "Назва пристрою" -#: netbox/dcim/forms/bulk_import.py:1177 +#: dcim/forms/bulk_import.py:1177 msgid "Side A type" msgstr "Тип сторони А" -#: netbox/dcim/forms/bulk_import.py:1180 netbox/dcim/forms/bulk_import.py:1198 +#: dcim/forms/bulk_import.py:1180 dcim/forms/bulk_import.py:1198 msgid "Termination type" msgstr "Тип припинення" -#: netbox/dcim/forms/bulk_import.py:1183 +#: dcim/forms/bulk_import.py:1183 msgid "Side A name" msgstr "Назва сторони A" -#: netbox/dcim/forms/bulk_import.py:1184 netbox/dcim/forms/bulk_import.py:1202 +#: dcim/forms/bulk_import.py:1184 dcim/forms/bulk_import.py:1202 msgid "Termination name" msgstr "Назва припинення" -#: netbox/dcim/forms/bulk_import.py:1189 +#: dcim/forms/bulk_import.py:1189 msgid "Side B device" msgstr "Сторона Б пристрою" -#: netbox/dcim/forms/bulk_import.py:1195 +#: dcim/forms/bulk_import.py:1195 msgid "Side B type" msgstr "Тип сторони Б" -#: netbox/dcim/forms/bulk_import.py:1201 +#: dcim/forms/bulk_import.py:1201 msgid "Side B name" msgstr "Назва сторони B" -#: netbox/dcim/forms/bulk_import.py:1210 -#: netbox/wireless/forms/bulk_import.py:86 +#: dcim/forms/bulk_import.py:1210 wireless/forms/bulk_import.py:86 msgid "Connection status" msgstr "Статус підключення" -#: netbox/dcim/forms/bulk_import.py:1262 +#: dcim/forms/bulk_import.py:1262 #, python-brace-format msgid "Side {side_upper}: {device} {termination_object} is already connected" msgstr "Сторона {side_upper}: {device} {termination_object} вже підключена" -#: netbox/dcim/forms/bulk_import.py:1268 +#: dcim/forms/bulk_import.py:1268 #, python-brace-format msgid "{side_upper} side termination not found: {device} {name}" msgstr "{side_upper} кінцева сторона не знайдена: {device} {name}" -#: netbox/dcim/forms/bulk_import.py:1293 netbox/dcim/forms/model_forms.py:785 -#: netbox/dcim/tables/devices.py:1027 netbox/templates/dcim/device.html:132 -#: netbox/templates/dcim/virtualchassis.html:27 -#: netbox/templates/dcim/virtualchassis.html:67 +#: dcim/forms/bulk_import.py:1293 dcim/forms/model_forms.py:785 +#: dcim/tables/devices.py:1027 templates/dcim/device.html:132 +#: templates/dcim/virtualchassis.html:27 templates/dcim/virtualchassis.html:67 msgid "Master" msgstr "Майстер" -#: netbox/dcim/forms/bulk_import.py:1297 +#: dcim/forms/bulk_import.py:1297 msgid "Master device" msgstr "Головний пристрій" -#: netbox/dcim/forms/bulk_import.py:1314 +#: dcim/forms/bulk_import.py:1314 msgid "Name of parent site" msgstr "Назва батьківського тех. майданчика" -#: netbox/dcim/forms/bulk_import.py:1348 +#: dcim/forms/bulk_import.py:1348 msgid "Upstream power panel" msgstr "Вища за течією панель живлення" -#: netbox/dcim/forms/bulk_import.py:1378 +#: dcim/forms/bulk_import.py:1378 msgid "Primary or redundant" msgstr "Первинний або надлишковий" -#: netbox/dcim/forms/bulk_import.py:1383 +#: dcim/forms/bulk_import.py:1383 msgid "Supply type (AC/DC)" msgstr "Тип живлення (змінній/постійний струм)" -#: netbox/dcim/forms/bulk_import.py:1388 +#: dcim/forms/bulk_import.py:1388 msgid "Single or three-phase" msgstr "Однофазний або трифазний (струм)" -#: netbox/dcim/forms/bulk_import.py:1439 netbox/dcim/forms/model_forms.py:1670 -#: netbox/templates/dcim/device.html:190 -#: netbox/templates/dcim/virtualdevicecontext.html:30 -#: netbox/templates/virtualization/virtualmachine.html:52 +#: dcim/forms/bulk_import.py:1439 dcim/forms/model_forms.py:1670 +#: templates/dcim/device.html:190 templates/dcim/virtualdevicecontext.html:30 +#: templates/virtualization/virtualmachine.html:52 msgid "Primary IPv4" msgstr "Первинний IPv4" -#: netbox/dcim/forms/bulk_import.py:1443 +#: dcim/forms/bulk_import.py:1443 msgid "IPv4 address with mask, e.g. 1.2.3.4/24" msgstr "IPv4 адреса з маскою, наприклад 1.2.3.4/24" -#: netbox/dcim/forms/bulk_import.py:1446 netbox/dcim/forms/model_forms.py:1679 -#: netbox/templates/dcim/device.html:206 -#: netbox/templates/dcim/virtualdevicecontext.html:41 -#: netbox/templates/virtualization/virtualmachine.html:68 +#: dcim/forms/bulk_import.py:1446 dcim/forms/model_forms.py:1679 +#: templates/dcim/device.html:206 templates/dcim/virtualdevicecontext.html:41 +#: templates/virtualization/virtualmachine.html:68 msgid "Primary IPv6" msgstr "Первинний IPv6" -#: netbox/dcim/forms/bulk_import.py:1450 +#: dcim/forms/bulk_import.py:1450 msgid "IPv6 address with prefix length, e.g. 2001:db8::1/64" msgstr "IPv6 адреса з довжиною префікса, наприклад 2001:db8: :1/64" -#: netbox/dcim/forms/common.py:24 netbox/dcim/models/device_components.py:527 -#: netbox/templates/dcim/interface.html:57 -#: netbox/templates/virtualization/vminterface.html:55 -#: netbox/virtualization/forms/bulk_edit.py:225 +#: dcim/forms/common.py:24 dcim/models/device_components.py:527 +#: templates/dcim/interface.html:57 +#: templates/virtualization/vminterface.html:55 +#: virtualization/forms/bulk_edit.py:225 msgid "MTU" msgstr "MTU" -#: netbox/dcim/forms/common.py:65 +#: dcim/forms/common.py:65 #, python-brace-format msgid "" "The tagged VLANs ({vlans}) must belong to the same site as the interface's " @@ -4611,7 +4211,7 @@ msgstr "" " і батьківський пристрій/інтерфейсу віртуальної машини, або вони повинні " "бути глобальними" -#: netbox/dcim/forms/common.py:126 +#: dcim/forms/common.py:126 msgid "" "Cannot install module with placeholder values in a module bay with no " "position defined." @@ -4619,7 +4219,7 @@ msgstr "" "Не вдається встановити модуль із значеннями заповнювачів у відсіку модуля " "без визначеної позиції." -#: netbox/dcim/forms/common.py:131 +#: dcim/forms/common.py:131 #, python-brace-format msgid "" "Cannot install module with placeholder values in a module bay tree {level} " @@ -4628,203 +4228,188 @@ msgstr "" "Не вдається встановити модуль із значеннями відсік модуля у дереві відсіків " "модуля {level} на дереві, у якому усього{tokens} місця для встановлення." -#: netbox/dcim/forms/common.py:144 +#: dcim/forms/common.py:144 #, python-brace-format msgid "Cannot adopt {model} {name} as it already belongs to a module" msgstr "Не можна усиновити {model} {name} оскільки він вже належить до модуля" -#: netbox/dcim/forms/common.py:153 +#: dcim/forms/common.py:153 #, python-brace-format msgid "A {model} named {name} already exists" msgstr "А {model} названий {name} вже існує" -#: netbox/dcim/forms/connections.py:49 netbox/dcim/forms/model_forms.py:738 -#: netbox/dcim/tables/power.py:66 -#: netbox/templates/dcim/inc/cable_termination.html:37 -#: netbox/templates/dcim/powerfeed.html:24 -#: netbox/templates/dcim/powerpanel.html:19 -#: netbox/templates/dcim/trace/powerpanel.html:4 +#: dcim/forms/connections.py:49 dcim/forms/model_forms.py:738 +#: dcim/tables/power.py:66 templates/dcim/inc/cable_termination.html:37 +#: templates/dcim/powerfeed.html:24 templates/dcim/powerpanel.html:19 +#: templates/dcim/trace/powerpanel.html:4 msgid "Power Panel" msgstr "Панель живлення" -#: netbox/dcim/forms/connections.py:58 netbox/dcim/forms/model_forms.py:765 -#: netbox/templates/dcim/powerfeed.html:21 -#: netbox/templates/dcim/powerport.html:80 +#: dcim/forms/connections.py:58 dcim/forms/model_forms.py:765 +#: templates/dcim/powerfeed.html:21 templates/dcim/powerport.html:80 msgid "Power Feed" msgstr "Живлення живлення" -#: netbox/dcim/forms/connections.py:81 +#: dcim/forms/connections.py:81 msgid "Side" msgstr "Сторона" -#: netbox/dcim/forms/filtersets.py:136 netbox/dcim/tables/devices.py:295 +#: dcim/forms/filtersets.py:136 dcim/tables/devices.py:295 msgid "Device Status" msgstr "Статус пристрою" -#: netbox/dcim/forms/filtersets.py:149 +#: dcim/forms/filtersets.py:149 msgid "Parent region" msgstr "Батьківський регіон" -#: netbox/dcim/forms/filtersets.py:163 netbox/tenancy/forms/bulk_import.py:28 -#: netbox/tenancy/forms/bulk_import.py:62 -#: netbox/tenancy/forms/filtersets.py:33 netbox/tenancy/forms/filtersets.py:62 -#: netbox/wireless/forms/bulk_import.py:25 -#: netbox/wireless/forms/filtersets.py:25 +#: dcim/forms/filtersets.py:163 tenancy/forms/bulk_import.py:28 +#: tenancy/forms/bulk_import.py:62 tenancy/forms/filtersets.py:33 +#: tenancy/forms/filtersets.py:62 wireless/forms/bulk_import.py:25 +#: wireless/forms/filtersets.py:25 msgid "Parent group" msgstr "Батьківська група" -#: netbox/dcim/forms/filtersets.py:242 netbox/templates/dcim/location.html:58 -#: netbox/templates/dcim/site.html:56 +#: dcim/forms/filtersets.py:242 templates/dcim/location.html:58 +#: templates/dcim/site.html:56 msgid "Facility" msgstr "Об'єкт" -#: netbox/dcim/forms/filtersets.py:380 +#: dcim/forms/filtersets.py:380 msgid "Rack type" msgstr "Тип стійки" -#: netbox/dcim/forms/filtersets.py:397 +#: dcim/forms/filtersets.py:397 msgid "Function" msgstr "Функція" -#: netbox/dcim/forms/filtersets.py:483 netbox/dcim/forms/model_forms.py:373 -#: netbox/templates/inc/panels/image_attachments.html:6 +#: dcim/forms/filtersets.py:483 dcim/forms/model_forms.py:373 +#: templates/inc/panels/image_attachments.html:6 msgid "Images" msgstr "Зображення" -#: netbox/dcim/forms/filtersets.py:486 netbox/dcim/forms/filtersets.py:611 -#: netbox/dcim/forms/filtersets.py:726 +#: dcim/forms/filtersets.py:486 dcim/forms/filtersets.py:611 +#: dcim/forms/filtersets.py:726 msgid "Components" msgstr "Компоненти" -#: netbox/dcim/forms/filtersets.py:506 +#: dcim/forms/filtersets.py:506 msgid "Subdevice role" msgstr "Роль підпристрою" -#: netbox/dcim/forms/filtersets.py:790 netbox/dcim/tables/racks.py:54 -#: netbox/templates/dcim/racktype.html:20 +#: dcim/forms/filtersets.py:790 dcim/tables/racks.py:54 +#: templates/dcim/racktype.html:20 msgid "Model" msgstr "Модель" -#: netbox/dcim/forms/filtersets.py:834 +#: dcim/forms/filtersets.py:834 msgid "Has an OOB IP" msgstr "Має IP-адресу для зовнішнього незалежного керування" -#: netbox/dcim/forms/filtersets.py:841 +#: dcim/forms/filtersets.py:841 msgid "Virtual chassis member" msgstr "Віртуальний елемент шасі" -#: netbox/dcim/forms/filtersets.py:890 +#: dcim/forms/filtersets.py:890 msgid "Has virtual device contexts" msgstr "Має контексти віртуальних пристроїв" -#: netbox/dcim/forms/filtersets.py:903 netbox/extras/filtersets.py:585 -#: netbox/ipam/forms/bulk_edit.py:479 netbox/ipam/forms/filtersets.py:452 -#: netbox/virtualization/forms/filtersets.py:112 +#: dcim/forms/filtersets.py:903 extras/filtersets.py:585 +#: ipam/forms/filtersets.py:452 virtualization/forms/filtersets.py:112 msgid "Cluster group" msgstr "Кластерна група" -#: netbox/dcim/forms/filtersets.py:1210 +#: dcim/forms/filtersets.py:1210 msgid "Cabled" msgstr "Кабельний" -#: netbox/dcim/forms/filtersets.py:1217 +#: dcim/forms/filtersets.py:1217 msgid "Occupied" msgstr "Зайнятий" -#: netbox/dcim/forms/filtersets.py:1244 netbox/dcim/forms/filtersets.py:1269 -#: netbox/dcim/forms/filtersets.py:1293 netbox/dcim/forms/filtersets.py:1313 -#: netbox/dcim/forms/filtersets.py:1336 netbox/dcim/tables/devices.py:364 -#: netbox/templates/dcim/consoleport.html:55 -#: netbox/templates/dcim/consoleserverport.html:55 -#: netbox/templates/dcim/frontport.html:69 -#: netbox/templates/dcim/interface.html:140 -#: netbox/templates/dcim/powerfeed.html:110 -#: netbox/templates/dcim/poweroutlet.html:59 -#: netbox/templates/dcim/powerport.html:59 -#: netbox/templates/dcim/rearport.html:65 +#: dcim/forms/filtersets.py:1244 dcim/forms/filtersets.py:1269 +#: dcim/forms/filtersets.py:1293 dcim/forms/filtersets.py:1313 +#: dcim/forms/filtersets.py:1336 dcim/tables/devices.py:364 +#: templates/dcim/consoleport.html:55 templates/dcim/consoleserverport.html:55 +#: templates/dcim/frontport.html:69 templates/dcim/interface.html:140 +#: templates/dcim/powerfeed.html:110 templates/dcim/poweroutlet.html:59 +#: templates/dcim/powerport.html:59 templates/dcim/rearport.html:65 msgid "Connection" msgstr "Підключення" -#: netbox/dcim/forms/filtersets.py:1348 netbox/extras/forms/bulk_edit.py:326 -#: netbox/extras/forms/bulk_import.py:247 -#: netbox/extras/forms/filtersets.py:464 -#: netbox/extras/forms/model_forms.py:675 netbox/extras/tables/tables.py:579 -#: netbox/templates/extras/journalentry.html:30 +#: dcim/forms/filtersets.py:1348 extras/forms/bulk_edit.py:326 +#: extras/forms/bulk_import.py:247 extras/forms/filtersets.py:464 +#: extras/forms/model_forms.py:675 extras/tables/tables.py:579 +#: templates/extras/journalentry.html:30 msgid "Kind" msgstr "Вид" -#: netbox/dcim/forms/filtersets.py:1377 +#: dcim/forms/filtersets.py:1377 msgid "Mgmt only" msgstr "Тільки управління" -#: netbox/dcim/forms/filtersets.py:1389 netbox/dcim/forms/model_forms.py:1383 -#: netbox/dcim/models/device_components.py:629 -#: netbox/templates/dcim/interface.html:129 +#: dcim/forms/filtersets.py:1389 dcim/forms/model_forms.py:1383 +#: dcim/models/device_components.py:629 templates/dcim/interface.html:129 msgid "WWN" msgstr "WWN (унікальний ідентифікатор)" -#: netbox/dcim/forms/filtersets.py:1409 +#: dcim/forms/filtersets.py:1409 msgid "Wireless channel" msgstr "Бездротовий канал" -#: netbox/dcim/forms/filtersets.py:1413 +#: dcim/forms/filtersets.py:1413 msgid "Channel frequency (MHz)" msgstr "Частота каналу (МГц)" -#: netbox/dcim/forms/filtersets.py:1417 +#: dcim/forms/filtersets.py:1417 msgid "Channel width (MHz)" msgstr "Ширина каналу (МГц)" -#: netbox/dcim/forms/filtersets.py:1421 -#: netbox/templates/dcim/interface.html:85 +#: dcim/forms/filtersets.py:1421 templates/dcim/interface.html:85 msgid "Transmit power (dBm)" msgstr "Потужність передачі (дБм)" -#: netbox/dcim/forms/filtersets.py:1446 netbox/dcim/forms/filtersets.py:1471 -#: netbox/dcim/tables/devices.py:327 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:50 -#: netbox/templates/dcim/inc/connection_endpoints.html:4 -#: netbox/templates/dcim/rearport.html:73 -#: netbox/templates/dcim/trace/cable.html:7 +#: dcim/forms/filtersets.py:1446 dcim/forms/filtersets.py:1471 +#: dcim/tables/devices.py:327 templates/dcim/cable.html:12 +#: templates/dcim/cable_trace.html:46 templates/dcim/frontport.html:77 +#: templates/dcim/htmx/cable_edit.html:50 +#: templates/dcim/inc/connection_endpoints.html:4 +#: templates/dcim/rearport.html:73 templates/dcim/trace/cable.html:7 msgid "Cable" msgstr "Кабель" -#: netbox/dcim/forms/filtersets.py:1550 netbox/dcim/tables/devices.py:949 +#: dcim/forms/filtersets.py:1550 dcim/tables/devices.py:949 msgid "Discovered" msgstr "Виявлено" -#: netbox/dcim/forms/formsets.py:20 +#: dcim/forms/formsets.py:20 #, python-brace-format msgid "A virtual chassis member already exists in position {vc_position}." msgstr "Віртуальний елемент шасі вже існує на {vc_position} місці." -#: netbox/dcim/forms/model_forms.py:140 +#: dcim/forms/model_forms.py:140 msgid "Contact Info" msgstr "Контактна інформація" -#: netbox/dcim/forms/model_forms.py:195 netbox/templates/dcim/rackrole.html:19 +#: dcim/forms/model_forms.py:195 templates/dcim/rackrole.html:19 msgid "Rack Role" msgstr "Роль стійки" -#: netbox/dcim/forms/model_forms.py:212 netbox/dcim/forms/model_forms.py:362 -#: netbox/dcim/forms/model_forms.py:446 -#: netbox/utilities/forms/fields/fields.py:47 +#: dcim/forms/model_forms.py:212 dcim/forms/model_forms.py:362 +#: dcim/forms/model_forms.py:446 utilities/forms/fields/fields.py:47 msgid "Slug" msgstr "Скорочення" -#: netbox/dcim/forms/model_forms.py:259 +#: dcim/forms/model_forms.py:259 msgid "Select a pre-defined rack type, or set physical characteristics below." msgstr "" "Виберіть попередньо визначений тип стійки або встановіть фізичні " "характеристики нижче." -#: netbox/dcim/forms/model_forms.py:265 +#: dcim/forms/model_forms.py:265 msgid "Inventory Control" msgstr "Контроль запасів" -#: netbox/dcim/forms/model_forms.py:313 +#: dcim/forms/model_forms.py:313 msgid "" "Comma-separated list of numeric unit IDs. A range may be specified using a " "hyphen." @@ -4832,161 +4417,144 @@ msgstr "" "Список ідентифікаторів числових юнітів, розділених комами. Діапазон можна " "вказати за допомогою дефіса." -#: netbox/dcim/forms/model_forms.py:322 netbox/dcim/tables/racks.py:202 +#: dcim/forms/model_forms.py:322 dcim/tables/racks.py:202 msgid "Reservation" msgstr "Бронювання" -#: netbox/dcim/forms/model_forms.py:423 -#: netbox/templates/dcim/devicerole.html:23 +#: dcim/forms/model_forms.py:423 templates/dcim/devicerole.html:23 msgid "Device Role" msgstr "Роль пристрою" -#: netbox/dcim/forms/model_forms.py:490 netbox/dcim/models/devices.py:644 +#: dcim/forms/model_forms.py:490 dcim/models/devices.py:644 msgid "The lowest-numbered unit occupied by the device" msgstr "Юніт з найменшим номером, зайнятим пристроєм" -#: netbox/dcim/forms/model_forms.py:547 +#: dcim/forms/model_forms.py:547 msgid "The position in the virtual chassis this device is identified by" msgstr "Положення у віртуальному шасі цього пристрою визначається" -#: netbox/dcim/forms/model_forms.py:552 +#: dcim/forms/model_forms.py:552 msgid "The priority of the device in the virtual chassis" msgstr "Пріоритет пристрою в віртуальному шасі" -#: netbox/dcim/forms/model_forms.py:659 +#: dcim/forms/model_forms.py:659 msgid "Automatically populate components associated with this module type" msgstr "Автоматично заповнювати компоненти, пов'язані з цим типом модуля" -#: netbox/dcim/forms/model_forms.py:767 +#: dcim/forms/model_forms.py:767 msgid "Characteristics" msgstr "Характеристики" -#: netbox/dcim/forms/model_forms.py:1087 +#: dcim/forms/model_forms.py:1087 msgid "Console port template" msgstr "Шаблон порту консолі" -#: netbox/dcim/forms/model_forms.py:1095 +#: dcim/forms/model_forms.py:1095 msgid "Console server port template" msgstr "Шаблон порту консольного сервера" -#: netbox/dcim/forms/model_forms.py:1103 +#: dcim/forms/model_forms.py:1103 msgid "Front port template" msgstr "Шаблон фронтального порту" -#: netbox/dcim/forms/model_forms.py:1111 +#: dcim/forms/model_forms.py:1111 msgid "Interface template" msgstr "Шаблон інтерфейсу" -#: netbox/dcim/forms/model_forms.py:1119 +#: dcim/forms/model_forms.py:1119 msgid "Power outlet template" msgstr "Шаблон електрічної розетки" -#: netbox/dcim/forms/model_forms.py:1127 +#: dcim/forms/model_forms.py:1127 msgid "Power port template" msgstr "Шаблон порту живлення" -#: netbox/dcim/forms/model_forms.py:1135 +#: dcim/forms/model_forms.py:1135 msgid "Rear port template" msgstr "Шаблон порту ззаду" -#: netbox/dcim/forms/model_forms.py:1144 netbox/dcim/forms/model_forms.py:1388 -#: netbox/dcim/forms/model_forms.py:1551 netbox/dcim/forms/model_forms.py:1583 -#: netbox/dcim/tables/connections.py:65 netbox/ipam/forms/bulk_import.py:318 -#: netbox/ipam/forms/model_forms.py:280 netbox/ipam/forms/model_forms.py:289 -#: netbox/ipam/tables/fhrp.py:64 netbox/ipam/tables/ip.py:372 -#: netbox/ipam/tables/vlans.py:169 -#: netbox/templates/circuits/inc/circuit_termination_fields.html:51 -#: netbox/templates/dcim/frontport.html:106 -#: netbox/templates/dcim/interface.html:27 -#: netbox/templates/dcim/interface.html:184 -#: netbox/templates/dcim/interface.html:310 -#: netbox/templates/dcim/rearport.html:102 -#: netbox/templates/virtualization/vminterface.html:18 -#: netbox/templates/vpn/tunneltermination.html:31 -#: netbox/templates/wireless/inc/wirelesslink_interface.html:10 -#: netbox/templates/wireless/wirelesslink.html:10 -#: netbox/templates/wireless/wirelesslink.html:55 -#: netbox/virtualization/forms/model_forms.py:348 -#: netbox/vpn/forms/bulk_import.py:297 netbox/vpn/forms/model_forms.py:436 -#: netbox/vpn/forms/model_forms.py:445 -#: netbox/wireless/forms/model_forms.py:113 -#: netbox/wireless/forms/model_forms.py:155 +#: dcim/forms/model_forms.py:1144 dcim/forms/model_forms.py:1388 +#: dcim/forms/model_forms.py:1551 dcim/forms/model_forms.py:1583 +#: dcim/tables/connections.py:65 ipam/forms/bulk_import.py:318 +#: ipam/forms/model_forms.py:280 ipam/forms/model_forms.py:289 +#: ipam/tables/fhrp.py:64 ipam/tables/ip.py:372 ipam/tables/vlans.py:169 +#: templates/circuits/inc/circuit_termination_fields.html:51 +#: templates/dcim/frontport.html:106 templates/dcim/interface.html:27 +#: templates/dcim/interface.html:184 templates/dcim/interface.html:310 +#: templates/dcim/rearport.html:102 +#: templates/virtualization/vminterface.html:18 +#: templates/vpn/tunneltermination.html:31 +#: templates/wireless/inc/wirelesslink_interface.html:10 +#: templates/wireless/wirelesslink.html:10 +#: templates/wireless/wirelesslink.html:55 +#: virtualization/forms/model_forms.py:348 vpn/forms/bulk_import.py:297 +#: vpn/forms/model_forms.py:436 vpn/forms/model_forms.py:445 +#: wireless/forms/model_forms.py:113 wireless/forms/model_forms.py:155 msgid "Interface" msgstr "Інтерфейс" -#: netbox/dcim/forms/model_forms.py:1145 netbox/dcim/forms/model_forms.py:1584 -#: netbox/dcim/tables/connections.py:27 -#: netbox/templates/dcim/consoleport.html:17 -#: netbox/templates/dcim/consoleserverport.html:74 -#: netbox/templates/dcim/frontport.html:112 +#: dcim/forms/model_forms.py:1145 dcim/forms/model_forms.py:1584 +#: dcim/tables/connections.py:27 templates/dcim/consoleport.html:17 +#: templates/dcim/consoleserverport.html:74 templates/dcim/frontport.html:112 msgid "Console Port" msgstr "Порт консолі" -#: netbox/dcim/forms/model_forms.py:1146 netbox/dcim/forms/model_forms.py:1585 -#: netbox/templates/dcim/consoleport.html:73 -#: netbox/templates/dcim/consoleserverport.html:17 -#: netbox/templates/dcim/frontport.html:109 +#: dcim/forms/model_forms.py:1146 dcim/forms/model_forms.py:1585 +#: templates/dcim/consoleport.html:73 templates/dcim/consoleserverport.html:17 +#: templates/dcim/frontport.html:109 msgid "Console Server Port" msgstr "Порт консольного сервера" -#: netbox/dcim/forms/model_forms.py:1147 netbox/dcim/forms/model_forms.py:1586 -#: netbox/templates/circuits/inc/circuit_termination_fields.html:52 -#: netbox/templates/dcim/consoleport.html:76 -#: netbox/templates/dcim/consoleserverport.html:77 -#: netbox/templates/dcim/frontport.html:17 -#: netbox/templates/dcim/frontport.html:115 -#: netbox/templates/dcim/interface.html:187 -#: netbox/templates/dcim/rearport.html:105 +#: dcim/forms/model_forms.py:1147 dcim/forms/model_forms.py:1586 +#: templates/circuits/inc/circuit_termination_fields.html:52 +#: templates/dcim/consoleport.html:76 templates/dcim/consoleserverport.html:77 +#: templates/dcim/frontport.html:17 templates/dcim/frontport.html:115 +#: templates/dcim/interface.html:187 templates/dcim/rearport.html:105 msgid "Front Port" msgstr "Передній порт" -#: netbox/dcim/forms/model_forms.py:1148 netbox/dcim/forms/model_forms.py:1587 -#: netbox/dcim/tables/devices.py:710 -#: netbox/templates/circuits/inc/circuit_termination_fields.html:53 -#: netbox/templates/dcim/consoleport.html:79 -#: netbox/templates/dcim/consoleserverport.html:80 -#: netbox/templates/dcim/frontport.html:50 -#: netbox/templates/dcim/frontport.html:118 -#: netbox/templates/dcim/interface.html:190 -#: netbox/templates/dcim/rearport.html:17 -#: netbox/templates/dcim/rearport.html:108 +#: dcim/forms/model_forms.py:1148 dcim/forms/model_forms.py:1587 +#: dcim/tables/devices.py:710 +#: templates/circuits/inc/circuit_termination_fields.html:53 +#: templates/dcim/consoleport.html:79 templates/dcim/consoleserverport.html:80 +#: templates/dcim/frontport.html:50 templates/dcim/frontport.html:118 +#: templates/dcim/interface.html:190 templates/dcim/rearport.html:17 +#: templates/dcim/rearport.html:108 msgid "Rear Port" msgstr "Порт ззаду" -#: netbox/dcim/forms/model_forms.py:1149 netbox/dcim/forms/model_forms.py:1588 -#: netbox/dcim/tables/connections.py:46 netbox/dcim/tables/devices.py:512 -#: netbox/templates/dcim/poweroutlet.html:44 -#: netbox/templates/dcim/powerport.html:17 +#: dcim/forms/model_forms.py:1149 dcim/forms/model_forms.py:1588 +#: dcim/tables/connections.py:46 dcim/tables/devices.py:512 +#: templates/dcim/poweroutlet.html:44 templates/dcim/powerport.html:17 msgid "Power Port" msgstr "Порт живлення" -#: netbox/dcim/forms/model_forms.py:1150 netbox/dcim/forms/model_forms.py:1589 -#: netbox/templates/dcim/poweroutlet.html:17 -#: netbox/templates/dcim/powerport.html:77 +#: dcim/forms/model_forms.py:1150 dcim/forms/model_forms.py:1589 +#: templates/dcim/poweroutlet.html:17 templates/dcim/powerport.html:77 msgid "Power Outlet" msgstr "Електрична розетка" -#: netbox/dcim/forms/model_forms.py:1152 netbox/dcim/forms/model_forms.py:1591 +#: dcim/forms/model_forms.py:1152 dcim/forms/model_forms.py:1591 msgid "Component Assignment" msgstr "Призначення компонентів" -#: netbox/dcim/forms/model_forms.py:1195 netbox/dcim/forms/model_forms.py:1638 +#: dcim/forms/model_forms.py:1195 dcim/forms/model_forms.py:1638 msgid "An InventoryItem can only be assigned to a single component." msgstr "Елемент інвентаря можна призначити лише одному компоненту." -#: netbox/dcim/forms/model_forms.py:1332 +#: dcim/forms/model_forms.py:1332 msgid "LAG interface" msgstr "Інтерфейс LAG" -#: netbox/dcim/forms/model_forms.py:1355 +#: dcim/forms/model_forms.py:1355 msgid "Filter VLANs available for assignment by group." msgstr "Фільтр VLAN, доступних для призначення за групами." -#: netbox/dcim/forms/model_forms.py:1484 +#: dcim/forms/model_forms.py:1484 msgid "Child Device" msgstr "Підпорядкований пристрій" -#: netbox/dcim/forms/model_forms.py:1485 +#: dcim/forms/model_forms.py:1485 msgid "" "Child devices must first be created and assigned to the site and rack of the" " parent device." @@ -4994,35 +4562,32 @@ msgstr "" "Підпорядковані пристрої спочатку повинні бути створені та присвоєні до тех. " "майданчику та стійки батьківського пристрою." -#: netbox/dcim/forms/model_forms.py:1527 +#: dcim/forms/model_forms.py:1527 msgid "Console port" msgstr "Консольний порт" -#: netbox/dcim/forms/model_forms.py:1535 +#: dcim/forms/model_forms.py:1535 msgid "Console server port" msgstr "Порт консольного сервера" -#: netbox/dcim/forms/model_forms.py:1543 +#: dcim/forms/model_forms.py:1543 msgid "Front port" msgstr "Передній порт" -#: netbox/dcim/forms/model_forms.py:1559 +#: dcim/forms/model_forms.py:1559 msgid "Power outlet" msgstr "Розетка живлення" -#: netbox/dcim/forms/model_forms.py:1579 -#: netbox/templates/dcim/inventoryitem.html:17 +#: dcim/forms/model_forms.py:1579 templates/dcim/inventoryitem.html:17 msgid "Inventory Item" msgstr "Елемент інвентаря" -#: netbox/dcim/forms/model_forms.py:1652 -#: netbox/templates/dcim/inventoryitemrole.html:15 +#: dcim/forms/model_forms.py:1652 templates/dcim/inventoryitemrole.html:15 msgid "Inventory Item Role" msgstr "Роль елемента інвентаря" -#: netbox/dcim/forms/object_create.py:48 -#: netbox/dcim/forms/object_create.py:199 -#: netbox/dcim/forms/object_create.py:355 +#: dcim/forms/object_create.py:48 dcim/forms/object_create.py:199 +#: dcim/forms/object_create.py:355 msgid "" "Alphanumeric ranges are supported. (Must match the number of objects being " "created.)" @@ -5030,7 +4595,7 @@ msgstr "" "Підтримуються буквено-цифрові діапазони. (Повинен збігатися з кількістю " "створюваних об'єктів.)" -#: netbox/dcim/forms/object_create.py:68 +#: dcim/forms/object_create.py:68 #, python-brace-format msgid "" "The provided pattern specifies {value_count} values, but {pattern_count} are" @@ -5039,19 +4604,18 @@ msgstr "" "Наданий шаблон визначає {value_count} цінності, але {pattern_count} " "очікуються." -#: netbox/dcim/forms/object_create.py:110 -#: netbox/dcim/forms/object_create.py:271 netbox/dcim/tables/devices.py:252 +#: dcim/forms/object_create.py:110 dcim/forms/object_create.py:271 +#: dcim/tables/devices.py:252 msgid "Rear ports" msgstr "Порти ззаду" -#: netbox/dcim/forms/object_create.py:111 -#: netbox/dcim/forms/object_create.py:272 +#: dcim/forms/object_create.py:111 dcim/forms/object_create.py:272 msgid "Select one rear port assignment for each front port being created." msgstr "" "Виберіть одне призначення порту ззаду для кожного створюваного переднього " "порту." -#: netbox/dcim/forms/object_create.py:164 +#: dcim/forms/object_create.py:164 #, python-brace-format msgid "" "The number of front port templates to be created ({frontport_count}) must " @@ -5061,7 +4625,7 @@ msgstr "" "({frontport_count}) повинен відповідати вибраній кількості позицій портів " "ззаду ({rearport_count})." -#: netbox/dcim/forms/object_create.py:251 +#: dcim/forms/object_create.py:251 #, python-brace-format msgid "" "The string {module} will be replaced with the position of the " @@ -5070,7 +4634,7 @@ msgstr "" "Струна {module} буде замінено позицією призначеного модуля, " "якщо такий є." -#: netbox/dcim/forms/object_create.py:320 +#: dcim/forms/object_create.py:320 #, python-brace-format msgid "" "The number of front ports to be created ({frontport_count}) must match the " @@ -5079,18 +4643,17 @@ msgstr "" "Кількість передніх портів, які потрібно створити ({frontport_count}) повинен" " відповідати вибраній кількості позицій портів ззаду ({rearport_count})." -#: netbox/dcim/forms/object_create.py:409 netbox/dcim/tables/devices.py:1033 -#: netbox/ipam/tables/fhrp.py:31 netbox/templates/dcim/virtualchassis.html:53 -#: netbox/templates/dcim/virtualchassis_edit.html:47 -#: netbox/templates/ipam/fhrpgroup.html:38 +#: dcim/forms/object_create.py:409 dcim/tables/devices.py:1033 +#: ipam/tables/fhrp.py:31 templates/dcim/virtualchassis.html:53 +#: templates/dcim/virtualchassis_edit.html:47 templates/ipam/fhrpgroup.html:38 msgid "Members" msgstr "Члени" -#: netbox/dcim/forms/object_create.py:418 +#: dcim/forms/object_create.py:418 msgid "Initial position" msgstr "Початкова позиція" -#: netbox/dcim/forms/object_create.py:421 +#: dcim/forms/object_create.py:421 msgid "" "Position of the first member device. Increases by one for each additional " "member." @@ -5098,67 +4661,65 @@ msgstr "" "Положення пристрою першого члена. Збільшується на одного для кожного " "додаткового члена." -#: netbox/dcim/forms/object_create.py:435 +#: dcim/forms/object_create.py:435 msgid "A position must be specified for the first VC member." msgstr "Посада повинна бути вказана для першого члена VC." -#: netbox/dcim/models/cables.py:62 -#: netbox/dcim/models/device_component_templates.py:55 -#: netbox/dcim/models/device_components.py:62 -#: netbox/extras/models/customfields.py:111 +#: dcim/models/cables.py:62 dcim/models/device_component_templates.py:55 +#: dcim/models/device_components.py:62 extras/models/customfields.py:111 msgid "label" msgstr "етикетка" -#: netbox/dcim/models/cables.py:71 +#: dcim/models/cables.py:71 msgid "length" msgstr "довжина" -#: netbox/dcim/models/cables.py:78 +#: dcim/models/cables.py:78 msgid "length unit" msgstr "довжина юніта" -#: netbox/dcim/models/cables.py:95 +#: dcim/models/cables.py:95 msgid "cable" msgstr "кабель" -#: netbox/dcim/models/cables.py:96 +#: dcim/models/cables.py:96 msgid "cables" msgstr "кабелів" -#: netbox/dcim/models/cables.py:165 +#: dcim/models/cables.py:165 msgid "Must specify a unit when setting a cable length" msgstr "Необхідно вказати номер юніта при установці довжини кабелю" -#: netbox/dcim/models/cables.py:168 +#: dcim/models/cables.py:168 msgid "Must define A and B terminations when creating a new cable." msgstr "Необхідно визначити кінцівки А і Б при створенні нового кабелю." -#: netbox/dcim/models/cables.py:175 +#: dcim/models/cables.py:175 msgid "Cannot connect different termination types to same end of cable." msgstr "Не вдається підключити різні типи кінцевок до одного кінця кабелю." -#: netbox/dcim/models/cables.py:183 +#: dcim/models/cables.py:183 #, python-brace-format msgid "Incompatible termination types: {type_a} and {type_b}" msgstr "Несумісні типи з'єднання: {type_a} і {type_b}" -#: netbox/dcim/models/cables.py:193 +#: dcim/models/cables.py:193 msgid "A and B terminations cannot connect to the same object." msgstr "Кінцевки A і Б не можуть з'єднуватися з одним об'єктом." -#: netbox/dcim/models/cables.py:260 netbox/ipam/models/asns.py:37 +#: dcim/models/cables.py:260 ipam/models/asns.py:37 msgid "end" msgstr "кінець" -#: netbox/dcim/models/cables.py:313 +#: dcim/models/cables.py:313 msgid "cable termination" msgstr "кабельна кінцівка" -#: netbox/dcim/models/cables.py:314 +#: dcim/models/cables.py:314 msgid "cable terminations" msgstr "кабельні кінцівки" -#: netbox/dcim/models/cables.py:333 +#: dcim/models/cables.py:333 #, python-brace-format msgid "" "Duplicate termination found for {app_label}.{model} {termination_id}: cable " @@ -5167,38 +4728,38 @@ msgstr "" "Знайдено дублікат кінцівки {app_label}.{model} {termination_id}: кабель " "{cable_pk}" -#: netbox/dcim/models/cables.py:343 +#: dcim/models/cables.py:343 #, python-brace-format msgid "Cables cannot be terminated to {type_display} interfaces" msgstr "Кабелі не можуть бути підключені в {type_display} інтерфейси" -#: netbox/dcim/models/cables.py:350 +#: dcim/models/cables.py:350 msgid "Circuit terminations attached to a provider network may not be cabled." msgstr "" "Кінці каналу зв'язку, приєднані до мережі провайдера, не можуть бути " "кабельними." -#: netbox/dcim/models/cables.py:448 netbox/extras/models/configs.py:50 +#: dcim/models/cables.py:448 extras/models/configs.py:50 msgid "is active" msgstr "активний" -#: netbox/dcim/models/cables.py:452 +#: dcim/models/cables.py:452 msgid "is complete" msgstr "завершено" -#: netbox/dcim/models/cables.py:456 +#: dcim/models/cables.py:456 msgid "is split" msgstr "розщеплюється" -#: netbox/dcim/models/cables.py:464 +#: dcim/models/cables.py:464 msgid "cable path" msgstr "кабельний шлях" -#: netbox/dcim/models/cables.py:465 +#: dcim/models/cables.py:465 msgid "cable paths" msgstr "кабельні шляхи" -#: netbox/dcim/models/device_component_templates.py:46 +#: dcim/models/device_component_templates.py:46 #, python-brace-format msgid "" "{module} is accepted as a substitution for the module bay position when " @@ -5207,16 +4768,16 @@ msgstr "" "{module} приймається як заміна позиції відсіку модуля при приєднанні до типу" " модуля." -#: netbox/dcim/models/device_component_templates.py:58 -#: netbox/dcim/models/device_components.py:65 +#: dcim/models/device_component_templates.py:58 +#: dcim/models/device_components.py:65 msgid "Physical label" msgstr "Фізична етикетка" -#: netbox/dcim/models/device_component_templates.py:103 +#: dcim/models/device_component_templates.py:103 msgid "Component templates cannot be moved to a different device type." msgstr "Шаблони компонентів не можна переміщати на інший тип пристрою." -#: netbox/dcim/models/device_component_templates.py:154 +#: dcim/models/device_component_templates.py:154 msgid "" "A component template cannot be associated with both a device type and a " "module type." @@ -5224,146 +4785,146 @@ msgstr "" "Шаблон компонента не може бути пов'язаний як з типом пристрою, так і з типом" " модуля." -#: netbox/dcim/models/device_component_templates.py:158 +#: dcim/models/device_component_templates.py:158 msgid "" "A component template must be associated with either a device type or a " "module type." msgstr "" "Шаблон компонента повинен бути пов'язаний з типом пристрою або типом модуля." -#: netbox/dcim/models/device_component_templates.py:212 +#: dcim/models/device_component_templates.py:212 msgid "console port template" msgstr "шаблон порту консолі" -#: netbox/dcim/models/device_component_templates.py:213 +#: dcim/models/device_component_templates.py:213 msgid "console port templates" msgstr "шаблони портів консолі" -#: netbox/dcim/models/device_component_templates.py:246 +#: dcim/models/device_component_templates.py:246 msgid "console server port template" msgstr "шаблон порту консольного сервера" -#: netbox/dcim/models/device_component_templates.py:247 +#: dcim/models/device_component_templates.py:247 msgid "console server port templates" msgstr "шаблони портів консольного сервера" -#: netbox/dcim/models/device_component_templates.py:278 -#: netbox/dcim/models/device_components.py:352 +#: dcim/models/device_component_templates.py:278 +#: dcim/models/device_components.py:352 msgid "maximum draw" msgstr "максимальна потужність" -#: netbox/dcim/models/device_component_templates.py:285 -#: netbox/dcim/models/device_components.py:359 +#: dcim/models/device_component_templates.py:285 +#: dcim/models/device_components.py:359 msgid "allocated draw" msgstr "виділена потужність" -#: netbox/dcim/models/device_component_templates.py:295 +#: dcim/models/device_component_templates.py:295 msgid "power port template" msgstr "шаблон порту живлення" -#: netbox/dcim/models/device_component_templates.py:296 +#: dcim/models/device_component_templates.py:296 msgid "power port templates" msgstr "шаблони портів живлення" -#: netbox/dcim/models/device_component_templates.py:315 -#: netbox/dcim/models/device_components.py:382 +#: dcim/models/device_component_templates.py:315 +#: dcim/models/device_components.py:382 #, python-brace-format msgid "Allocated draw cannot exceed the maximum draw ({maximum_draw}W)." msgstr "" "Виділена потужність не може перевищувати максимальну потужність " "({maximum_draw}W)." -#: netbox/dcim/models/device_component_templates.py:347 -#: netbox/dcim/models/device_components.py:477 +#: dcim/models/device_component_templates.py:347 +#: dcim/models/device_components.py:477 msgid "feed leg" msgstr "фідер живлення" -#: netbox/dcim/models/device_component_templates.py:351 -#: netbox/dcim/models/device_components.py:481 +#: dcim/models/device_component_templates.py:351 +#: dcim/models/device_components.py:481 msgid "Phase (for three-phase feeds)" msgstr "Фаза (для трифазних подач)" -#: netbox/dcim/models/device_component_templates.py:357 +#: dcim/models/device_component_templates.py:357 msgid "power outlet template" msgstr "шаблон розетки" -#: netbox/dcim/models/device_component_templates.py:358 +#: dcim/models/device_component_templates.py:358 msgid "power outlet templates" msgstr "шаблони розеток" -#: netbox/dcim/models/device_component_templates.py:367 +#: dcim/models/device_component_templates.py:367 #, python-brace-format msgid "Parent power port ({power_port}) must belong to the same device type" msgstr "" "Батьківський порт живлення ({power_port}) повинні належати до одного типу " "пристрою" -#: netbox/dcim/models/device_component_templates.py:371 +#: dcim/models/device_component_templates.py:371 #, python-brace-format msgid "Parent power port ({power_port}) must belong to the same module type" msgstr "" "Батьківський порт живлення ({power_port}) повинні належати до одного типу " "модуля" -#: netbox/dcim/models/device_component_templates.py:423 -#: netbox/dcim/models/device_components.py:611 +#: dcim/models/device_component_templates.py:423 +#: dcim/models/device_components.py:611 msgid "management only" msgstr "тільки управління" -#: netbox/dcim/models/device_component_templates.py:431 -#: netbox/dcim/models/device_components.py:550 +#: dcim/models/device_component_templates.py:431 +#: dcim/models/device_components.py:550 msgid "bridge interface" msgstr "інтерфейс моста" -#: netbox/dcim/models/device_component_templates.py:449 -#: netbox/dcim/models/device_components.py:636 +#: dcim/models/device_component_templates.py:449 +#: dcim/models/device_components.py:636 msgid "wireless role" msgstr "бездротова роль" -#: netbox/dcim/models/device_component_templates.py:455 +#: dcim/models/device_component_templates.py:455 msgid "interface template" msgstr "шаблон інтерфейсу" -#: netbox/dcim/models/device_component_templates.py:456 +#: dcim/models/device_component_templates.py:456 msgid "interface templates" msgstr "шаблони інтерфейсу" -#: netbox/dcim/models/device_component_templates.py:463 -#: netbox/dcim/models/device_components.py:804 -#: netbox/virtualization/models/virtualmachines.py:405 +#: dcim/models/device_component_templates.py:463 +#: dcim/models/device_components.py:804 +#: virtualization/models/virtualmachines.py:405 msgid "An interface cannot be bridged to itself." msgstr "Інтерфейс не може бути з'єднаний мостом з собою." -#: netbox/dcim/models/device_component_templates.py:466 +#: dcim/models/device_component_templates.py:466 #, python-brace-format msgid "Bridge interface ({bridge}) must belong to the same device type" msgstr "" "Інтерфейс моста ({bridge}) повинні складатися з пристроїв одного типу " -#: netbox/dcim/models/device_component_templates.py:470 +#: dcim/models/device_component_templates.py:470 #, python-brace-format msgid "Bridge interface ({bridge}) must belong to the same module type" msgstr "Інтерфейс моста ({bridge}) повинні складатися з модулів одного типу " -#: netbox/dcim/models/device_component_templates.py:526 -#: netbox/dcim/models/device_components.py:984 +#: dcim/models/device_component_templates.py:526 +#: dcim/models/device_components.py:984 msgid "rear port position" msgstr "положення порту ззаду" -#: netbox/dcim/models/device_component_templates.py:551 +#: dcim/models/device_component_templates.py:551 msgid "front port template" msgstr "шаблон переднього порту" -#: netbox/dcim/models/device_component_templates.py:552 +#: dcim/models/device_component_templates.py:552 msgid "front port templates" msgstr "шаблони передніх портів" -#: netbox/dcim/models/device_component_templates.py:562 +#: dcim/models/device_component_templates.py:562 #, python-brace-format msgid "Rear port ({name}) must belong to the same device type" msgstr "Задній порт ({name}) повинні належати до одного типу пристрою" -#: netbox/dcim/models/device_component_templates.py:568 +#: dcim/models/device_component_templates.py:568 #, python-brace-format msgid "" "Invalid rear port position ({position}); rear port {name} has only {count} " @@ -5372,47 +4933,47 @@ msgstr "" "Невірна позиція порту ззаду ({position}); порт ззаду {name} має тільки " "{count} позиції" -#: netbox/dcim/models/device_component_templates.py:621 -#: netbox/dcim/models/device_components.py:1053 +#: dcim/models/device_component_templates.py:621 +#: dcim/models/device_components.py:1053 msgid "positions" msgstr "позиції" -#: netbox/dcim/models/device_component_templates.py:632 +#: dcim/models/device_component_templates.py:632 msgid "rear port template" msgstr "шаблон порту ззаду" -#: netbox/dcim/models/device_component_templates.py:633 +#: dcim/models/device_component_templates.py:633 msgid "rear port templates" msgstr "шаблони портів ззаду" -#: netbox/dcim/models/device_component_templates.py:662 -#: netbox/dcim/models/device_components.py:1103 +#: dcim/models/device_component_templates.py:662 +#: dcim/models/device_components.py:1103 msgid "position" msgstr "позиції" -#: netbox/dcim/models/device_component_templates.py:665 -#: netbox/dcim/models/device_components.py:1106 +#: dcim/models/device_component_templates.py:665 +#: dcim/models/device_components.py:1106 msgid "Identifier to reference when renaming installed components" msgstr "" "Ідентифікатор для посилання при перейменуванні встановлених компонентів" -#: netbox/dcim/models/device_component_templates.py:671 +#: dcim/models/device_component_templates.py:671 msgid "module bay template" msgstr "шаблон відсіку модуля" -#: netbox/dcim/models/device_component_templates.py:672 +#: dcim/models/device_component_templates.py:672 msgid "module bay templates" msgstr "шаблони відсіків модулів" -#: netbox/dcim/models/device_component_templates.py:699 +#: dcim/models/device_component_templates.py:699 msgid "device bay template" msgstr "шаблон відсіку пристрою" -#: netbox/dcim/models/device_component_templates.py:700 +#: dcim/models/device_component_templates.py:700 msgid "device bay templates" msgstr "шаблони відсіків пристроїв" -#: netbox/dcim/models/device_component_templates.py:713 +#: dcim/models/device_component_templates.py:713 #, python-brace-format msgid "" "Subdevice role of device type ({device_type}) must be set to \"parent\" to " @@ -5421,211 +4982,206 @@ msgstr "" "Роль підпристрою типу пристрою ({device_type}) має бути встановлено значення" " \"батько\", щоб дозволити відсіки пристрою." -#: netbox/dcim/models/device_component_templates.py:768 -#: netbox/dcim/models/device_components.py:1262 +#: dcim/models/device_component_templates.py:768 +#: dcim/models/device_components.py:1262 msgid "part ID" msgstr "Ідентифікатор частини" -#: netbox/dcim/models/device_component_templates.py:770 -#: netbox/dcim/models/device_components.py:1264 +#: dcim/models/device_component_templates.py:770 +#: dcim/models/device_components.py:1264 msgid "Manufacturer-assigned part identifier" msgstr "Ідентифікатор деталі, призначений виробником" -#: netbox/dcim/models/device_component_templates.py:787 +#: dcim/models/device_component_templates.py:787 msgid "inventory item template" msgstr "шаблон елемента інвентаря" -#: netbox/dcim/models/device_component_templates.py:788 +#: dcim/models/device_component_templates.py:788 msgid "inventory item templates" msgstr "шаблони елемента інвентаря" -#: netbox/dcim/models/device_components.py:105 +#: dcim/models/device_components.py:105 msgid "Components cannot be moved to a different device." msgstr "Компоненти не можна переміщати на інший пристрій." -#: netbox/dcim/models/device_components.py:144 +#: dcim/models/device_components.py:144 msgid "cable end" msgstr "кінець кабелю" -#: netbox/dcim/models/device_components.py:150 +#: dcim/models/device_components.py:150 msgid "mark connected" msgstr "позначка підключена" -#: netbox/dcim/models/device_components.py:152 +#: dcim/models/device_components.py:152 msgid "Treat as if a cable is connected" msgstr "Ставтеся так, ніби підключений кабель" -#: netbox/dcim/models/device_components.py:170 +#: dcim/models/device_components.py:170 msgid "Must specify cable end (A or B) when attaching a cable." msgstr "Необхідно вказати кінець кабелю (А або Б) при приєднанні кабелю." -#: netbox/dcim/models/device_components.py:174 +#: dcim/models/device_components.py:174 msgid "Cable end must not be set without a cable." msgstr "Кінець кабелю не можна встановлювати без кабелю." -#: netbox/dcim/models/device_components.py:178 +#: dcim/models/device_components.py:178 msgid "Cannot mark as connected with a cable attached." msgstr "Не можна позначити як з'єднаний із приєднаним вже кабелем." -#: netbox/dcim/models/device_components.py:202 +#: dcim/models/device_components.py:202 #, python-brace-format msgid "{class_name} models must declare a parent_object property" msgstr "" "{class_name} моделі повинні спочатку оголосити властивість parent_object" -#: netbox/dcim/models/device_components.py:287 -#: netbox/dcim/models/device_components.py:316 -#: netbox/dcim/models/device_components.py:349 -#: netbox/dcim/models/device_components.py:467 +#: dcim/models/device_components.py:287 dcim/models/device_components.py:316 +#: dcim/models/device_components.py:349 dcim/models/device_components.py:467 msgid "Physical port type" msgstr "Фізичний тип порту" -#: netbox/dcim/models/device_components.py:290 -#: netbox/dcim/models/device_components.py:319 +#: dcim/models/device_components.py:290 dcim/models/device_components.py:319 msgid "speed" msgstr "швидкість" -#: netbox/dcim/models/device_components.py:294 -#: netbox/dcim/models/device_components.py:323 +#: dcim/models/device_components.py:294 dcim/models/device_components.py:323 msgid "Port speed in bits per second" msgstr "Швидкість порту в бітах в секунду" -#: netbox/dcim/models/device_components.py:300 +#: dcim/models/device_components.py:300 msgid "console port" msgstr "консольний порт" -#: netbox/dcim/models/device_components.py:301 +#: dcim/models/device_components.py:301 msgid "console ports" msgstr "консольні порти" -#: netbox/dcim/models/device_components.py:329 +#: dcim/models/device_components.py:329 msgid "console server port" msgstr "порт консольного сервера" -#: netbox/dcim/models/device_components.py:330 +#: dcim/models/device_components.py:330 msgid "console server ports" msgstr "порти консольного сервера" -#: netbox/dcim/models/device_components.py:369 +#: dcim/models/device_components.py:369 msgid "power port" msgstr "порт живлення" -#: netbox/dcim/models/device_components.py:370 +#: dcim/models/device_components.py:370 msgid "power ports" msgstr "порти живлення" -#: netbox/dcim/models/device_components.py:487 +#: dcim/models/device_components.py:487 msgid "power outlet" msgstr "розетка" -#: netbox/dcim/models/device_components.py:488 +#: dcim/models/device_components.py:488 msgid "power outlets" msgstr "розетки" -#: netbox/dcim/models/device_components.py:499 +#: dcim/models/device_components.py:499 #, python-brace-format msgid "Parent power port ({power_port}) must belong to the same device" msgstr "" "Батьківський порт живлення ({power_port}) повинні належати до одного і того " "ж пристрою" -#: netbox/dcim/models/device_components.py:530 netbox/vpn/models/crypto.py:81 -#: netbox/vpn/models/crypto.py:226 +#: dcim/models/device_components.py:530 vpn/models/crypto.py:81 +#: vpn/models/crypto.py:226 msgid "mode" msgstr "режим" -#: netbox/dcim/models/device_components.py:534 +#: dcim/models/device_components.py:534 msgid "IEEE 802.1Q tagging strategy" msgstr "Стратегія міток IEEE 802.1Q" -#: netbox/dcim/models/device_components.py:542 +#: dcim/models/device_components.py:542 msgid "parent interface" msgstr "батьківський інтерфейс" -#: netbox/dcim/models/device_components.py:602 +#: dcim/models/device_components.py:602 msgid "parent LAG" msgstr "батьківський LAG" -#: netbox/dcim/models/device_components.py:612 +#: dcim/models/device_components.py:612 msgid "This interface is used only for out-of-band management" msgstr "" "Цей інтерфейс використовується лише для зовнішнього незалежного керування" -#: netbox/dcim/models/device_components.py:617 +#: dcim/models/device_components.py:617 msgid "speed (Kbps)" msgstr "швидкість (Кбіт/с)" -#: netbox/dcim/models/device_components.py:620 +#: dcim/models/device_components.py:620 msgid "duplex" msgstr "дуплекс" -#: netbox/dcim/models/device_components.py:630 +#: dcim/models/device_components.py:630 msgid "64-bit World Wide Name" msgstr "64-розрядна всесвітня назва" -#: netbox/dcim/models/device_components.py:642 +#: dcim/models/device_components.py:642 msgid "wireless channel" msgstr "бездротовий канал" -#: netbox/dcim/models/device_components.py:649 +#: dcim/models/device_components.py:649 msgid "channel frequency (MHz)" msgstr "частота каналу (МГц)" -#: netbox/dcim/models/device_components.py:650 -#: netbox/dcim/models/device_components.py:658 +#: dcim/models/device_components.py:650 dcim/models/device_components.py:658 msgid "Populated by selected channel (if set)" msgstr "Заповнюється вибраним каналом (якщо встановлено)" -#: netbox/dcim/models/device_components.py:664 +#: dcim/models/device_components.py:664 msgid "transmit power (dBm)" msgstr "потужність передачі (дБм)" -#: netbox/dcim/models/device_components.py:689 netbox/wireless/models.py:117 +#: dcim/models/device_components.py:689 wireless/models.py:117 msgid "wireless LANs" msgstr "бездротові локальні мережі" -#: netbox/dcim/models/device_components.py:697 -#: netbox/virtualization/models/virtualmachines.py:335 +#: dcim/models/device_components.py:697 +#: virtualization/models/virtualmachines.py:335 msgid "untagged VLAN" msgstr "VLAN без міток" -#: netbox/dcim/models/device_components.py:703 -#: netbox/virtualization/models/virtualmachines.py:341 +#: dcim/models/device_components.py:703 +#: virtualization/models/virtualmachines.py:341 msgid "tagged VLANs" msgstr "VLAN'и з мітками" -#: netbox/dcim/models/device_components.py:745 -#: netbox/virtualization/models/virtualmachines.py:377 +#: dcim/models/device_components.py:745 +#: virtualization/models/virtualmachines.py:377 msgid "interface" msgstr "інтерфейс" -#: netbox/dcim/models/device_components.py:746 -#: netbox/virtualization/models/virtualmachines.py:378 +#: dcim/models/device_components.py:746 +#: virtualization/models/virtualmachines.py:378 msgid "interfaces" msgstr "інтерфейси" -#: netbox/dcim/models/device_components.py:757 +#: dcim/models/device_components.py:757 #, python-brace-format msgid "{display_type} interfaces cannot have a cable attached." msgstr "{display_type} інтерфейси не можуть мати приєднаний кабель." -#: netbox/dcim/models/device_components.py:765 +#: dcim/models/device_components.py:765 #, python-brace-format msgid "{display_type} interfaces cannot be marked as connected." msgstr "{display_type} інтерфейси не можуть бути позначені як підключені." -#: netbox/dcim/models/device_components.py:774 -#: netbox/virtualization/models/virtualmachines.py:390 +#: dcim/models/device_components.py:774 +#: virtualization/models/virtualmachines.py:390 msgid "An interface cannot be its own parent." msgstr "Інтерфейс не може бути власним батьківським." -#: netbox/dcim/models/device_components.py:778 +#: dcim/models/device_components.py:778 msgid "Only virtual interfaces may be assigned to a parent interface." msgstr "" "Тільки віртуальні інтерфейси можуть бути призначені батьківському " "інтерфейсу." -#: netbox/dcim/models/device_components.py:785 +#: dcim/models/device_components.py:785 #, python-brace-format msgid "" "The selected parent interface ({interface}) belongs to a different device " @@ -5634,7 +5190,7 @@ msgstr "" "Вибраний батьківський інтерфейс ({interface}) належить до іншого пристрою " "({device})" -#: netbox/dcim/models/device_components.py:791 +#: dcim/models/device_components.py:791 #, python-brace-format msgid "" "The selected parent interface ({interface}) belongs to {device}, which is " @@ -5643,7 +5199,7 @@ msgstr "" "Вибраний батьківський інтерфейс ({interface}) належить {device}, яка не є " "частиною віртуального шасі {virtual_chassis}." -#: netbox/dcim/models/device_components.py:811 +#: dcim/models/device_components.py:811 #, python-brace-format msgid "" "The selected bridge interface ({bridge}) belongs to a different device " @@ -5651,7 +5207,7 @@ msgid "" msgstr "" "Вибраний інтерфейс моста ({bridge}) належить до іншого пристрою ({device})." -#: netbox/dcim/models/device_components.py:817 +#: dcim/models/device_components.py:817 #, python-brace-format msgid "" "The selected bridge interface ({interface}) belongs to {device}, which is " @@ -5660,22 +5216,22 @@ msgstr "" "Вибраний інтерфейс моста ({interface}) належить {device}, який не є частиною" " віртуального шасі {virtual_chassis}." -#: netbox/dcim/models/device_components.py:828 +#: dcim/models/device_components.py:828 msgid "Virtual interfaces cannot have a parent LAG interface." msgstr "Віртуальні інтерфейси не можуть бути батьківським інтерфейсом LAG." -#: netbox/dcim/models/device_components.py:832 +#: dcim/models/device_components.py:832 msgid "A LAG interface cannot be its own parent." msgstr "Інтерфейс LAG не може бути власним батьківським інтерфейсом." -#: netbox/dcim/models/device_components.py:839 +#: dcim/models/device_components.py:839 #, python-brace-format msgid "" "The selected LAG interface ({lag}) belongs to a different device ({device})." msgstr "" "Вибраний інтерфейс LAG ({lag}) належить до іншого пристрою ({device})." -#: netbox/dcim/models/device_components.py:845 +#: dcim/models/device_components.py:845 #, python-brace-format msgid "" "The selected LAG interface ({lag}) belongs to {device}, which is not part of" @@ -5684,49 +5240,49 @@ msgstr "" "Вибраний інтерфейс LAG ({lag}) належить {device}, який не є частиною " "віртуального шасі {virtual_chassis}." -#: netbox/dcim/models/device_components.py:856 +#: dcim/models/device_components.py:856 msgid "Virtual interfaces cannot have a PoE mode." msgstr "Віртуальні інтерфейси не можуть мати режим PoE." -#: netbox/dcim/models/device_components.py:860 +#: dcim/models/device_components.py:860 msgid "Virtual interfaces cannot have a PoE type." msgstr "Віртуальні інтерфейси не можуть мати тип PoE." -#: netbox/dcim/models/device_components.py:866 +#: dcim/models/device_components.py:866 msgid "Must specify PoE mode when designating a PoE type." msgstr "Необхідно вказати режим PoE при створенні інтерфейсу типу PoE." -#: netbox/dcim/models/device_components.py:873 +#: dcim/models/device_components.py:873 msgid "Wireless role may be set only on wireless interfaces." msgstr "" "Роль бездротового зв'язку може бути встановлена тільки на бездротових " "інтерфейсах." -#: netbox/dcim/models/device_components.py:875 +#: dcim/models/device_components.py:875 msgid "Channel may be set only on wireless interfaces." msgstr "Канал (Wi-Fi) можна встановлювати тільки на бездротових інтерфейсах." -#: netbox/dcim/models/device_components.py:881 +#: dcim/models/device_components.py:881 msgid "Channel frequency may be set only on wireless interfaces." msgstr "" "Частота каналу (Wi-Fi) може встановлюватися тільки на бездротових " "інтерфейсах." -#: netbox/dcim/models/device_components.py:885 +#: dcim/models/device_components.py:885 msgid "Cannot specify custom frequency with channel selected." msgstr "Неможливо вказати користувацьку частоту при вибраному каналі (Wi-Fi)." -#: netbox/dcim/models/device_components.py:891 +#: dcim/models/device_components.py:891 msgid "Channel width may be set only on wireless interfaces." msgstr "" "Ширина каналу (Wi-Fi) може бути встановлена тільки на бездротових " "інтерфейсах." -#: netbox/dcim/models/device_components.py:893 +#: dcim/models/device_components.py:893 msgid "Cannot specify custom width with channel selected." msgstr "Неможливо вказати користувацьку ширину при вибраному каналі." -#: netbox/dcim/models/device_components.py:901 +#: dcim/models/device_components.py:901 #, python-brace-format msgid "" "The untagged VLAN ({untagged_vlan}) must belong to the same site as the " @@ -5735,24 +5291,24 @@ msgstr "" "VLAN без міток ({untagged_vlan}) повинен належати тому ж тех. майданчику, що" " і батьківський пристрій інтерфейсу, або ж він повинен бути глобальним." -#: netbox/dcim/models/device_components.py:990 +#: dcim/models/device_components.py:990 msgid "Mapped position on corresponding rear port" msgstr "Відображене положення на відповідному порті ззаду" -#: netbox/dcim/models/device_components.py:1006 +#: dcim/models/device_components.py:1006 msgid "front port" msgstr "передній порт" -#: netbox/dcim/models/device_components.py:1007 +#: dcim/models/device_components.py:1007 msgid "front ports" msgstr "передні порти" -#: netbox/dcim/models/device_components.py:1021 +#: dcim/models/device_components.py:1021 #, python-brace-format msgid "Rear port ({rear_port}) must belong to the same device" msgstr "Порт ззаду ({rear_port}) повинні належати до одного і того ж пристрою" -#: netbox/dcim/models/device_components.py:1029 +#: dcim/models/device_components.py:1029 #, python-brace-format msgid "" "Invalid rear port position ({rear_port_position}): Rear port {name} has only" @@ -5761,19 +5317,19 @@ msgstr "" "Невірна позиція порту ззаду ({rear_port_position}): порт ззаду {name} має " "тільки {positions} позицій." -#: netbox/dcim/models/device_components.py:1059 +#: dcim/models/device_components.py:1059 msgid "Number of front ports which may be mapped" msgstr "Кількість передніх портів, які можуть бути відображені" -#: netbox/dcim/models/device_components.py:1064 +#: dcim/models/device_components.py:1064 msgid "rear port" msgstr "порт ззаду" -#: netbox/dcim/models/device_components.py:1065 +#: dcim/models/device_components.py:1065 msgid "rear ports" msgstr "порти ззаду" -#: netbox/dcim/models/device_components.py:1079 +#: dcim/models/device_components.py:1079 #, python-brace-format msgid "" "The number of positions cannot be less than the number of mapped front ports" @@ -5782,38 +5338,37 @@ msgstr "" "Кількість позицій не може бути меншою за кількість відображених фронтальних " "портів ({frontport_count})" -#: netbox/dcim/models/device_components.py:1120 +#: dcim/models/device_components.py:1120 msgid "module bay" msgstr "відсік модуля" -#: netbox/dcim/models/device_components.py:1121 +#: dcim/models/device_components.py:1121 msgid "module bays" msgstr "відсіки модуля" -#: netbox/dcim/models/device_components.py:1138 -#: netbox/dcim/models/devices.py:1224 +#: dcim/models/device_components.py:1138 dcim/models/devices.py:1224 msgid "A module bay cannot belong to a module installed within it." msgstr "Відсік модуля не може належати модулю, встановленому в ньому." -#: netbox/dcim/models/device_components.py:1164 +#: dcim/models/device_components.py:1164 msgid "device bay" msgstr "відсік пристрою" -#: netbox/dcim/models/device_components.py:1165 +#: dcim/models/device_components.py:1165 msgid "device bays" msgstr "відсіки для пристроїв" -#: netbox/dcim/models/device_components.py:1175 +#: dcim/models/device_components.py:1175 #, python-brace-format msgid "This type of device ({device_type}) does not support device bays." msgstr "" "Даний тип пристрою ({device_type}) не підтримує відсіки для пристроїв." -#: netbox/dcim/models/device_components.py:1181 +#: dcim/models/device_components.py:1181 msgid "Cannot install a device into itself." msgstr "Не вдається встановити пристрій в себе." -#: netbox/dcim/models/device_components.py:1189 +#: dcim/models/device_components.py:1189 #, python-brace-format msgid "" "Cannot install the specified device; device is already installed in {bay}." @@ -5821,114 +5376,112 @@ msgstr "" "Не вдається встановити вказаний пристрій, бо пристрій вже встановлено в " "{bay}." -#: netbox/dcim/models/device_components.py:1210 +#: dcim/models/device_components.py:1210 msgid "inventory item role" msgstr "роль елемента інвентаря" -#: netbox/dcim/models/device_components.py:1211 +#: dcim/models/device_components.py:1211 msgid "inventory item roles" msgstr "ролі елемента інвентаря" -#: netbox/dcim/models/device_components.py:1268 -#: netbox/dcim/models/devices.py:607 netbox/dcim/models/devices.py:1181 -#: netbox/dcim/models/racks.py:313 -#: netbox/virtualization/models/virtualmachines.py:131 +#: dcim/models/device_components.py:1268 dcim/models/devices.py:607 +#: dcim/models/devices.py:1181 dcim/models/racks.py:313 +#: virtualization/models/virtualmachines.py:131 msgid "serial number" msgstr "серійний номер" -#: netbox/dcim/models/device_components.py:1276 -#: netbox/dcim/models/devices.py:615 netbox/dcim/models/devices.py:1188 -#: netbox/dcim/models/racks.py:320 +#: dcim/models/device_components.py:1276 dcim/models/devices.py:615 +#: dcim/models/devices.py:1188 dcim/models/racks.py:320 msgid "asset tag" msgstr "призначеня мітки" -#: netbox/dcim/models/device_components.py:1277 +#: dcim/models/device_components.py:1277 msgid "A unique tag used to identify this item" msgstr "" "Унікальна мітка, яка використовується для ідентифікації цього елемента" -#: netbox/dcim/models/device_components.py:1280 +#: dcim/models/device_components.py:1280 msgid "discovered" msgstr "виявлено" -#: netbox/dcim/models/device_components.py:1282 +#: dcim/models/device_components.py:1282 msgid "This item was automatically discovered" msgstr "Цей елемент був автоматично виявлений" -#: netbox/dcim/models/device_components.py:1300 +#: dcim/models/device_components.py:1300 msgid "inventory item" msgstr "елемент інвентаря" -#: netbox/dcim/models/device_components.py:1301 +#: dcim/models/device_components.py:1301 msgid "inventory items" msgstr "елементи інвентаря" -#: netbox/dcim/models/device_components.py:1312 +#: dcim/models/device_components.py:1312 msgid "Cannot assign self as parent." msgstr "Не вдається призначити себе батьком." -#: netbox/dcim/models/device_components.py:1320 +#: dcim/models/device_components.py:1320 msgid "Parent inventory item does not belong to the same device." msgstr "Батьківський елемент інвентаря не належить до одного пристрою." -#: netbox/dcim/models/device_components.py:1326 +#: dcim/models/device_components.py:1326 msgid "Cannot move an inventory item with dependent children" msgstr "Не можливо переміщати елемент інвентаря з підпорядкованим елементом" -#: netbox/dcim/models/device_components.py:1334 +#: dcim/models/device_components.py:1334 msgid "Cannot assign inventory item to component on another device" msgstr "Не можливо призначати елемент інвентаря компоненту у іншому пристрої" -#: netbox/dcim/models/devices.py:54 +#: dcim/models/devices.py:54 msgid "manufacturer" msgstr "виробник" -#: netbox/dcim/models/devices.py:55 +#: dcim/models/devices.py:55 msgid "manufacturers" msgstr "виробники" -#: netbox/dcim/models/devices.py:82 netbox/dcim/models/devices.py:382 -#: netbox/dcim/models/racks.py:133 +#: dcim/models/devices.py:82 dcim/models/devices.py:382 +#: dcim/models/racks.py:133 msgid "model" msgstr "модель" -#: netbox/dcim/models/devices.py:95 +#: dcim/models/devices.py:95 msgid "default platform" msgstr "платформа за замовчуванням" -#: netbox/dcim/models/devices.py:98 netbox/dcim/models/devices.py:386 +#: dcim/models/devices.py:98 dcim/models/devices.py:386 msgid "part number" msgstr "номер деталі" -#: netbox/dcim/models/devices.py:101 netbox/dcim/models/devices.py:389 +#: dcim/models/devices.py:101 dcim/models/devices.py:389 msgid "Discrete part number (optional)" msgstr "Дискретний номер деталі (необов'язково)" -#: netbox/dcim/models/devices.py:107 netbox/dcim/models/racks.py:54 +#: dcim/models/devices.py:107 dcim/models/racks.py:54 msgid "height (U)" msgstr "висота (U)" -#: netbox/dcim/models/devices.py:111 +#: dcim/models/devices.py:111 msgid "exclude from utilization" msgstr "виключити з підрахунку утилізації" -#: netbox/dcim/models/devices.py:112 +#: dcim/models/devices.py:112 msgid "Devices of this type are excluded when calculating rack utilization." msgstr "Пристрої такого типу виключаються при підрахунку утилізації стійки." -#: netbox/dcim/models/devices.py:116 +#: dcim/models/devices.py:116 msgid "is full depth" msgstr "є повною глибиною" -#: netbox/dcim/models/devices.py:117 +#: dcim/models/devices.py:117 msgid "Device consumes both front and rear rack faces." msgstr "Пристрій споживає як передні, так і задні грані стійки." -#: netbox/dcim/models/devices.py:123 +#: dcim/models/devices.py:123 msgid "parent/child status" msgstr "статус батька/дитини" -#: netbox/dcim/models/devices.py:124 +#: dcim/models/devices.py:124 msgid "" "Parent devices house child devices in device bays. Leave blank if this " "device type is neither a parent nor a child." @@ -5936,24 +5489,24 @@ msgstr "" "Батьківські пристрої розміщують дочірні пристрої в відсіках пристроїв. " "Залиште порожнім, якщо цей тип пристрою не є ані батьком, ані дитиною." -#: netbox/dcim/models/devices.py:128 netbox/dcim/models/devices.py:392 -#: netbox/dcim/models/devices.py:659 netbox/dcim/models/racks.py:324 +#: dcim/models/devices.py:128 dcim/models/devices.py:392 +#: dcim/models/devices.py:659 dcim/models/racks.py:324 msgid "airflow" msgstr "повітряний потік" -#: netbox/dcim/models/devices.py:204 +#: dcim/models/devices.py:204 msgid "device type" msgstr "тип пристрою" -#: netbox/dcim/models/devices.py:205 +#: dcim/models/devices.py:205 msgid "device types" msgstr "типи пристроїв" -#: netbox/dcim/models/devices.py:290 +#: dcim/models/devices.py:290 msgid "U height must be in increments of 0.5 rack units." msgstr "Висота має зазначатись з точністю до 0,5 юніта." -#: netbox/dcim/models/devices.py:307 +#: dcim/models/devices.py:307 #, python-brace-format msgid "" "Device {device} in rack {rack} does not have sufficient space to accommodate" @@ -5962,7 +5515,7 @@ msgstr "" "В стійці {rack} не має достатньо вільного місця для розміщення " "пристрою{device}висотою {height}юніта" -#: netbox/dcim/models/devices.py:322 +#: dcim/models/devices.py:322 #, python-brace-format msgid "" "Unable to set 0U height: Found {racked_instance_count} " @@ -5971,7 +5524,7 @@ msgstr "" "Не вдалося встановити висоту 0 юніта, бо в стійці вже змонтовано {racked_instance_count} пристроїв." -#: netbox/dcim/models/devices.py:331 +#: dcim/models/devices.py:331 msgid "" "Must delete all device bay templates associated with this device before " "declassifying it as a parent device." @@ -5979,152 +5532,152 @@ msgstr "" "Необхідно видалити всі шаблони відсіків пристроїв, пов'язані з цим " "пристроєм, перш ніж перевизначати його як батьківський пристрій." -#: netbox/dcim/models/devices.py:337 +#: dcim/models/devices.py:337 msgid "Child device types must be 0U." msgstr "Дитячі типи пристроїв повинні бути висоту 0 юніт." -#: netbox/dcim/models/devices.py:411 +#: dcim/models/devices.py:411 msgid "module type" msgstr "тип модуля" -#: netbox/dcim/models/devices.py:412 +#: dcim/models/devices.py:412 msgid "module types" msgstr "типи модулів" -#: netbox/dcim/models/devices.py:485 +#: dcim/models/devices.py:485 msgid "Virtual machines may be assigned to this role" msgstr "Віртуальні машини можуть бути призначені для цієї ролі" -#: netbox/dcim/models/devices.py:497 +#: dcim/models/devices.py:497 msgid "device role" msgstr "роль пристрою" -#: netbox/dcim/models/devices.py:498 +#: dcim/models/devices.py:498 msgid "device roles" msgstr "ролі пристрою" -#: netbox/dcim/models/devices.py:515 +#: dcim/models/devices.py:515 msgid "Optionally limit this platform to devices of a certain manufacturer" msgstr "Опціонально обмежити цю платформу пристроями певного виробника" -#: netbox/dcim/models/devices.py:527 +#: dcim/models/devices.py:527 msgid "platform" msgstr "платформа" -#: netbox/dcim/models/devices.py:528 +#: dcim/models/devices.py:528 msgid "platforms" msgstr "платформи" -#: netbox/dcim/models/devices.py:576 +#: dcim/models/devices.py:576 msgid "The function this device serves" msgstr "Функція, яку виконує цей пристрій" -#: netbox/dcim/models/devices.py:608 +#: dcim/models/devices.py:608 msgid "Chassis serial number, assigned by the manufacturer" msgstr "Серійний номер шасі, наданий виробником" -#: netbox/dcim/models/devices.py:616 netbox/dcim/models/devices.py:1189 +#: dcim/models/devices.py:616 dcim/models/devices.py:1189 msgid "A unique tag used to identify this device" msgstr "" "Унікальна мітка, яка використовується для ідентифікації цього пристрою" -#: netbox/dcim/models/devices.py:643 +#: dcim/models/devices.py:643 msgid "position (U)" msgstr "позиція (юніт)" -#: netbox/dcim/models/devices.py:650 +#: dcim/models/devices.py:650 msgid "rack face" msgstr "лицева частина стійки" -#: netbox/dcim/models/devices.py:670 netbox/dcim/models/devices.py:1415 -#: netbox/virtualization/models/virtualmachines.py:100 +#: dcim/models/devices.py:670 dcim/models/devices.py:1415 +#: virtualization/models/virtualmachines.py:100 msgid "primary IPv4" msgstr "первинний IPv4" -#: netbox/dcim/models/devices.py:678 netbox/dcim/models/devices.py:1423 -#: netbox/virtualization/models/virtualmachines.py:108 +#: dcim/models/devices.py:678 dcim/models/devices.py:1423 +#: virtualization/models/virtualmachines.py:108 msgid "primary IPv6" msgstr "первинний IPv6" -#: netbox/dcim/models/devices.py:686 +#: dcim/models/devices.py:686 msgid "out-of-band IP" msgstr "IP для зовнішнього незалежного керування" -#: netbox/dcim/models/devices.py:703 +#: dcim/models/devices.py:703 msgid "VC position" msgstr "Позиція віртуального шасі" -#: netbox/dcim/models/devices.py:706 +#: dcim/models/devices.py:706 msgid "Virtual chassis position" msgstr "Позиція віртуального шасі" -#: netbox/dcim/models/devices.py:709 +#: dcim/models/devices.py:709 msgid "VC priority" msgstr "Пріоритет віртуального шасі" -#: netbox/dcim/models/devices.py:713 +#: dcim/models/devices.py:713 msgid "Virtual chassis master election priority" msgstr "Пріоритет виборів майстра віртуального шасі" -#: netbox/dcim/models/devices.py:716 netbox/dcim/models/sites.py:207 +#: dcim/models/devices.py:716 dcim/models/sites.py:207 msgid "latitude" msgstr "широта" -#: netbox/dcim/models/devices.py:721 netbox/dcim/models/devices.py:729 -#: netbox/dcim/models/sites.py:212 netbox/dcim/models/sites.py:220 +#: dcim/models/devices.py:721 dcim/models/devices.py:729 +#: dcim/models/sites.py:212 dcim/models/sites.py:220 msgid "GPS coordinate in decimal format (xx.yyyyyy)" msgstr "GPS-координата в десятковому форматі (xx.yyyyyy)" -#: netbox/dcim/models/devices.py:724 netbox/dcim/models/sites.py:215 +#: dcim/models/devices.py:724 dcim/models/sites.py:215 msgid "longitude" msgstr "довгота" -#: netbox/dcim/models/devices.py:797 +#: dcim/models/devices.py:797 msgid "Device name must be unique per site." msgstr "Ім'я пристрою має бути унікальним для кожного тех. майданчика." -#: netbox/dcim/models/devices.py:808 netbox/ipam/models/services.py:75 +#: dcim/models/devices.py:808 ipam/models/services.py:75 msgid "device" msgstr "пристрій" -#: netbox/dcim/models/devices.py:809 +#: dcim/models/devices.py:809 msgid "devices" msgstr "пристрої" -#: netbox/dcim/models/devices.py:835 +#: dcim/models/devices.py:835 #, python-brace-format msgid "Rack {rack} does not belong to site {site}." msgstr "Стійка {rack} не належить до тех. майданчику {site}." -#: netbox/dcim/models/devices.py:840 +#: dcim/models/devices.py:840 #, python-brace-format msgid "Location {location} does not belong to site {site}." msgstr "Розташування {location} не належить до тех. майданчика{site}." -#: netbox/dcim/models/devices.py:846 +#: dcim/models/devices.py:846 #, python-brace-format msgid "Rack {rack} does not belong to location {location}." msgstr "Стійка {rack} не належить до місцезнаходження {location}." -#: netbox/dcim/models/devices.py:853 +#: dcim/models/devices.py:853 msgid "Cannot select a rack face without assigning a rack." msgstr "" "Не вдається вибрати лицеву частину стійки без призначення самої стійки." -#: netbox/dcim/models/devices.py:857 +#: dcim/models/devices.py:857 msgid "Cannot select a rack position without assigning a rack." msgstr "Не вдається вибрати положення стійки без призначення самої стійки." -#: netbox/dcim/models/devices.py:863 +#: dcim/models/devices.py:863 msgid "Position must be in increments of 0.5 rack units." msgstr "Положення повинно бути з кроком в 0,5 юніта." -#: netbox/dcim/models/devices.py:867 +#: dcim/models/devices.py:867 msgid "Must specify rack face when defining rack position." msgstr "" "Необхідно вказати лицеву частину стійки при визначенні положення стійки." -#: netbox/dcim/models/devices.py:875 +#: dcim/models/devices.py:875 #, python-brace-format msgid "" "A 0U device type ({device_type}) cannot be assigned to a rack position." @@ -6132,7 +5685,7 @@ msgstr "" "Тип пристрою 0 юніта ({device_type}) не може бути призначений для положення " "стійки." -#: netbox/dcim/models/devices.py:886 +#: dcim/models/devices.py:886 msgid "" "Child device types cannot be assigned to a rack face. This is an attribute " "of the parent device." @@ -6140,7 +5693,7 @@ msgstr "" "Підпорядковані типи пристроїв не можуть бути призначені для лицевої частини " "стійки. Це атрибут батьківського пристрою." -#: netbox/dcim/models/devices.py:893 +#: dcim/models/devices.py:893 msgid "" "Child device types cannot be assigned to a rack position. This is an " "attribute of the parent device." @@ -6148,7 +5701,7 @@ msgstr "" "Підпорядковані типи пристроїв не можуть бути призначені для розміщення у " "стійки. Це атрибут батьківського пристрою." -#: netbox/dcim/models/devices.py:907 +#: dcim/models/devices.py:907 #, python-brace-format msgid "" "U{position} is already occupied or does not have sufficient space to " @@ -6157,22 +5710,22 @@ msgstr "" "Монтажна позиція{position}юніт вже зайнята або не має достатньо вільного " "місця для розміщення цього пристрою: {device_type} ({u_height}юніта)" -#: netbox/dcim/models/devices.py:922 +#: dcim/models/devices.py:922 #, python-brace-format msgid "{ip} is not an IPv4 address." msgstr "{ip} Це не IPv4 адреса." -#: netbox/dcim/models/devices.py:931 netbox/dcim/models/devices.py:946 +#: dcim/models/devices.py:931 dcim/models/devices.py:946 #, python-brace-format msgid "The specified IP address ({ip}) is not assigned to this device." msgstr "Зазначена IP-адреса ({ip}) не призначається до цього пристрою." -#: netbox/dcim/models/devices.py:937 +#: dcim/models/devices.py:937 #, python-brace-format msgid "{ip} is not an IPv6 address." msgstr "{ip} Це не IPv6 адреса ." -#: netbox/dcim/models/devices.py:964 +#: dcim/models/devices.py:964 #, python-brace-format msgid "" "The assigned platform is limited to {platform_manufacturer} device types, " @@ -6181,18 +5734,18 @@ msgstr "" "Призначена платформа обмежена {platform_manufacturer} типом пристроїв, але " "цей тип пристрою належить до {devicetype_manufacturer}." -#: netbox/dcim/models/devices.py:975 +#: dcim/models/devices.py:975 #, python-brace-format msgid "The assigned cluster belongs to a different site ({site})" msgstr "Призначений кластер належить іншому тех. майданчику ({site})" -#: netbox/dcim/models/devices.py:983 +#: dcim/models/devices.py:983 msgid "A device assigned to a virtual chassis must have its position defined." msgstr "" "Для пристрія, призначеного для віртуального шасі, повинно бути задане " "положення." -#: netbox/dcim/models/devices.py:988 +#: dcim/models/devices.py:988 #, python-brace-format msgid "" "Device cannot be removed from virtual chassis {virtual_chassis} because it " @@ -6201,15 +5754,15 @@ msgstr "" "Пристрій неможливо видалити з віртуального шасі {virtual_chassis} тому, що в" " даний час він призначений майстром." -#: netbox/dcim/models/devices.py:1196 +#: dcim/models/devices.py:1196 msgid "module" msgstr "модуль" -#: netbox/dcim/models/devices.py:1197 +#: dcim/models/devices.py:1197 msgid "modules" msgstr "модулі" -#: netbox/dcim/models/devices.py:1213 +#: dcim/models/devices.py:1213 #, python-brace-format msgid "" "Module must be installed within a module bay belonging to the assigned " @@ -6218,21 +5771,21 @@ msgstr "" "Модуль повинен бути встановлений у відсіку модуля, що належить призначеному " "пристрою ({device})." -#: netbox/dcim/models/devices.py:1334 +#: dcim/models/devices.py:1334 msgid "domain" msgstr "домен" -#: netbox/dcim/models/devices.py:1347 netbox/dcim/models/devices.py:1348 +#: dcim/models/devices.py:1347 dcim/models/devices.py:1348 msgid "virtual chassis" msgstr "віртуальні шасі" -#: netbox/dcim/models/devices.py:1363 +#: dcim/models/devices.py:1363 #, python-brace-format msgid "" "The selected master ({master}) is not assigned to this virtual chassis." msgstr "Обраний майстер ({master}) не присвоюється цьому віртуальному шасі." -#: netbox/dcim/models/devices.py:1379 +#: dcim/models/devices.py:1379 #, python-brace-format msgid "" "Unable to delete virtual chassis {self}. There are member interfaces which " @@ -6241,61 +5794,61 @@ msgstr "" "Неможливо видалити віртуальне шасі {self}. Існують мережеві інтерфейси, які " "утворюють інтерфейси LAG між шасі." -#: netbox/dcim/models/devices.py:1404 netbox/vpn/models/l2vpn.py:37 +#: dcim/models/devices.py:1404 vpn/models/l2vpn.py:37 msgid "identifier" msgstr "ідентифікатор" -#: netbox/dcim/models/devices.py:1405 +#: dcim/models/devices.py:1405 msgid "Numeric identifier unique to the parent device" msgstr "Числовий ідентифікатор, унікальний для батьківського пристрою" -#: netbox/dcim/models/devices.py:1433 netbox/extras/models/customfields.py:225 -#: netbox/extras/models/models.py:107 netbox/extras/models/models.py:694 -#: netbox/netbox/models/__init__.py:115 +#: dcim/models/devices.py:1433 extras/models/customfields.py:225 +#: extras/models/models.py:107 extras/models/models.py:694 +#: netbox/models/__init__.py:115 msgid "comments" msgstr "коментарі" -#: netbox/dcim/models/devices.py:1449 +#: dcim/models/devices.py:1449 msgid "virtual device context" msgstr "контекст віртуального пристрою" -#: netbox/dcim/models/devices.py:1450 +#: dcim/models/devices.py:1450 msgid "virtual device contexts" msgstr "контексти віртуальних пристроїв" -#: netbox/dcim/models/devices.py:1482 +#: dcim/models/devices.py:1482 #, python-brace-format msgid "{ip} is not an IPv{family} address." msgstr "{ip} не є IPv{family} адресой." -#: netbox/dcim/models/devices.py:1488 +#: dcim/models/devices.py:1488 msgid "Primary IP address must belong to an interface on the assigned device." msgstr "" "Первинна IP-адреса повинна належати інтерфейсу на призначеному пристрої." -#: netbox/dcim/models/mixins.py:15 netbox/extras/models/configs.py:41 -#: netbox/extras/models/models.py:313 netbox/extras/models/models.py:522 -#: netbox/extras/models/search.py:48 netbox/ipam/models/ip.py:194 +#: dcim/models/mixins.py:15 extras/models/configs.py:41 +#: extras/models/models.py:313 extras/models/models.py:522 +#: extras/models/search.py:48 ipam/models/ip.py:194 msgid "weight" msgstr "вага" -#: netbox/dcim/models/mixins.py:22 +#: dcim/models/mixins.py:22 msgid "weight unit" msgstr "одиниця ваги" -#: netbox/dcim/models/mixins.py:51 +#: dcim/models/mixins.py:51 msgid "Must specify a unit when setting a weight" msgstr "Необхідно вказати одиницю виміру при установці ваги" -#: netbox/dcim/models/power.py:55 +#: dcim/models/power.py:55 msgid "power panel" msgstr "панель живлення" -#: netbox/dcim/models/power.py:56 +#: dcim/models/power.py:56 msgid "power panels" msgstr "панелі живлення" -#: netbox/dcim/models/power.py:70 +#: dcim/models/power.py:70 #, python-brace-format msgid "" "Location {location} ({location_site}) is in a different site than {site}" @@ -6303,43 +5856,43 @@ msgstr "" "Розташування {location} ({location_site}) знаходиться на іншому тех. " "майданчику, ніж {site}" -#: netbox/dcim/models/power.py:108 +#: dcim/models/power.py:108 msgid "supply" msgstr "постачання" -#: netbox/dcim/models/power.py:114 +#: dcim/models/power.py:114 msgid "phase" msgstr "фаза" -#: netbox/dcim/models/power.py:120 +#: dcim/models/power.py:120 msgid "voltage" msgstr "напруга" -#: netbox/dcim/models/power.py:125 +#: dcim/models/power.py:125 msgid "amperage" msgstr "сила струму" -#: netbox/dcim/models/power.py:130 +#: dcim/models/power.py:130 msgid "max utilization" msgstr "максимальне використання" -#: netbox/dcim/models/power.py:133 +#: dcim/models/power.py:133 msgid "Maximum permissible draw (percentage)" msgstr "Максимальна допустима потужність (відсоток)" -#: netbox/dcim/models/power.py:136 +#: dcim/models/power.py:136 msgid "available power" msgstr "доступна потужність" -#: netbox/dcim/models/power.py:164 +#: dcim/models/power.py:164 msgid "power feed" msgstr "подача живлення" -#: netbox/dcim/models/power.py:165 +#: dcim/models/power.py:165 msgid "power feeds" msgstr "подачі живлення" -#: netbox/dcim/models/power.py:179 +#: dcim/models/power.py:179 #, python-brace-format msgid "" "Rack {rack} ({rack_site}) and power panel {powerpanel} ({powerpanel_site}) " @@ -6348,63 +5901,63 @@ msgstr "" "Стійка {rack} ({rack_site}) та панель живлення {powerpanel} " "({powerpanel_site}) знаходяться на різних тех. майданчиках." -#: netbox/dcim/models/power.py:190 +#: dcim/models/power.py:190 msgid "Voltage cannot be negative for AC supply" msgstr "Напруга не може бути негативною для живлення змінного струму" -#: netbox/dcim/models/racks.py:47 +#: dcim/models/racks.py:47 msgid "width" msgstr "ширина" -#: netbox/dcim/models/racks.py:48 +#: dcim/models/racks.py:48 msgid "Rail-to-rail width" msgstr "Ширина рейки до рейки" -#: netbox/dcim/models/racks.py:56 +#: dcim/models/racks.py:56 msgid "Height in rack units" msgstr "Висота стійки у юнітах" -#: netbox/dcim/models/racks.py:60 +#: dcim/models/racks.py:60 msgid "starting unit" msgstr "начальний юніт" -#: netbox/dcim/models/racks.py:62 +#: dcim/models/racks.py:62 msgid "Starting unit for rack" msgstr "Начальний юніт для стійки" -#: netbox/dcim/models/racks.py:66 +#: dcim/models/racks.py:66 msgid "descending units" msgstr "юніти у низхідному порядку" -#: netbox/dcim/models/racks.py:67 +#: dcim/models/racks.py:67 msgid "Units are numbered top-to-bottom" msgstr "Юніти нумеруються зверху вниз" -#: netbox/dcim/models/racks.py:72 +#: dcim/models/racks.py:72 msgid "outer width" msgstr "зовнішня ширина" -#: netbox/dcim/models/racks.py:75 +#: dcim/models/racks.py:75 msgid "Outer dimension of rack (width)" msgstr "Зовнішній розмір стійки (ширина)" -#: netbox/dcim/models/racks.py:78 +#: dcim/models/racks.py:78 msgid "outer depth" msgstr "зовнішня глибина" -#: netbox/dcim/models/racks.py:81 +#: dcim/models/racks.py:81 msgid "Outer dimension of rack (depth)" msgstr "Зовнішній розмір стійки (глибина)" -#: netbox/dcim/models/racks.py:84 +#: dcim/models/racks.py:84 msgid "outer unit" msgstr "зовнішній блок" -#: netbox/dcim/models/racks.py:90 +#: dcim/models/racks.py:90 msgid "mounting depth" msgstr "монтажна глибина" -#: netbox/dcim/models/racks.py:94 +#: dcim/models/racks.py:94 msgid "" "Maximum depth of a mounted device, in millimeters. For four-post racks, this" " is the distance between the front and rear rails." @@ -6412,78 +5965,77 @@ msgstr "" "Максимальна глибина змонтованого пристрою, в міліметрах. Для чотиристійкових" " стійок це відстань між передньою і задньою рейками." -#: netbox/dcim/models/racks.py:102 +#: dcim/models/racks.py:102 msgid "max weight" msgstr "макс. вага" -#: netbox/dcim/models/racks.py:105 +#: dcim/models/racks.py:105 msgid "Maximum load capacity for the rack" msgstr "Максимальна вантажопідйомність для стійки" -#: netbox/dcim/models/racks.py:125 netbox/dcim/models/racks.py:252 +#: dcim/models/racks.py:125 dcim/models/racks.py:252 msgid "form factor" msgstr "форм-фактор" -#: netbox/dcim/models/racks.py:162 +#: dcim/models/racks.py:162 msgid "rack type" msgstr "тип стійки" -#: netbox/dcim/models/racks.py:163 +#: dcim/models/racks.py:163 msgid "rack types" msgstr "типи стійки" -#: netbox/dcim/models/racks.py:180 netbox/dcim/models/racks.py:379 +#: dcim/models/racks.py:180 dcim/models/racks.py:379 msgid "Must specify a unit when setting an outer width/depth" msgstr "" "Необхідно вказати одиницю виміру при встановленні зовнішньої ширини/глибини" -#: netbox/dcim/models/racks.py:184 netbox/dcim/models/racks.py:383 +#: dcim/models/racks.py:184 dcim/models/racks.py:383 msgid "Must specify a unit when setting a maximum weight" msgstr "Необхідно вказати одиницю виміру при встановленні максимальної ваги" -#: netbox/dcim/models/racks.py:230 +#: dcim/models/racks.py:230 msgid "rack role" msgstr "роль стійки" -#: netbox/dcim/models/racks.py:231 +#: dcim/models/racks.py:231 msgid "rack roles" msgstr "ролі стійки" -#: netbox/dcim/models/racks.py:274 +#: dcim/models/racks.py:274 msgid "facility ID" msgstr "Ідентифікатор об'єкта" -#: netbox/dcim/models/racks.py:275 +#: dcim/models/racks.py:275 msgid "Locally-assigned identifier" msgstr "Локально призначений ідентифікатор" -#: netbox/dcim/models/racks.py:308 netbox/ipam/forms/bulk_import.py:201 -#: netbox/ipam/forms/bulk_import.py:266 netbox/ipam/forms/bulk_import.py:301 -#: netbox/ipam/forms/bulk_import.py:459 -#: netbox/virtualization/forms/bulk_import.py:112 +#: dcim/models/racks.py:308 ipam/forms/bulk_import.py:201 +#: ipam/forms/bulk_import.py:266 ipam/forms/bulk_import.py:301 +#: ipam/forms/bulk_import.py:459 virtualization/forms/bulk_import.py:112 msgid "Functional role" msgstr "Функціональна роль" -#: netbox/dcim/models/racks.py:321 +#: dcim/models/racks.py:321 msgid "A unique tag used to identify this rack" msgstr "Унікальна мітка, який використовується для ідентифікації цієї стійки" -#: netbox/dcim/models/racks.py:359 +#: dcim/models/racks.py:359 msgid "rack" msgstr "стійка" -#: netbox/dcim/models/racks.py:360 +#: dcim/models/racks.py:360 msgid "racks" msgstr "стійки" -#: netbox/dcim/models/racks.py:375 +#: dcim/models/racks.py:375 #, python-brace-format msgid "Assigned location must belong to parent site ({site})." msgstr "" "Призначене місце розташування повинно належати батьківському тех. майданчику" " ({site})." -#: netbox/dcim/models/racks.py:393 +#: dcim/models/racks.py:393 #, python-brace-format msgid "" "Rack must be at least {min_height}U tall to house currently installed " @@ -6492,7 +6044,7 @@ msgstr "" "Стійка має бути не нижча, ніж {min_height}юніт, щоб місця було достатньо для" " розміщення вже встановлених пристроїв." -#: netbox/dcim/models/racks.py:400 +#: dcim/models/racks.py:400 #, python-brace-format msgid "" "Rack unit numbering must begin at {position} or less to house currently " @@ -6501,960 +6053,897 @@ msgstr "" "Нумерація стійок повинна починатися з {position} або не менше для розміщення" " встановлених на даний момент пристроїв." -#: netbox/dcim/models/racks.py:408 +#: dcim/models/racks.py:408 #, python-brace-format msgid "Location must be from the same site, {site}." msgstr "Розташування повинно бути з одного і того ж тех. майданчика, {site}." -#: netbox/dcim/models/racks.py:670 +#: dcim/models/racks.py:670 msgid "units" msgstr "юнітів" -#: netbox/dcim/models/racks.py:696 +#: dcim/models/racks.py:696 msgid "rack reservation" msgstr "резервування стійки" -#: netbox/dcim/models/racks.py:697 +#: dcim/models/racks.py:697 msgid "rack reservations" msgstr "бронювання стійки" -#: netbox/dcim/models/racks.py:714 +#: dcim/models/racks.py:714 #, python-brace-format msgid "Invalid unit(s) for {height}U rack: {unit_list}" msgstr "Недійсне монтажне місце для стійки висотою{height}юнітів: {unit_list}" -#: netbox/dcim/models/racks.py:727 +#: dcim/models/racks.py:727 #, python-brace-format msgid "The following units have already been reserved: {unit_list}" msgstr "Наступні юніти вже зарезервовані: {unit_list}" -#: netbox/dcim/models/sites.py:49 +#: dcim/models/sites.py:49 msgid "A top-level region with this name already exists." msgstr "Регіон верхнього рівня з такою назвою вже існує." -#: netbox/dcim/models/sites.py:59 +#: dcim/models/sites.py:59 msgid "A top-level region with this slug already exists." msgstr "Регіон верхнього рівня з цим слимаком вже існує." -#: netbox/dcim/models/sites.py:62 +#: dcim/models/sites.py:62 msgid "region" msgstr "регіон" -#: netbox/dcim/models/sites.py:63 +#: dcim/models/sites.py:63 msgid "regions" msgstr "регіони" -#: netbox/dcim/models/sites.py:102 +#: dcim/models/sites.py:102 msgid "A top-level site group with this name already exists." msgstr "Група тех. майданчиків верхнього рівня з такою назвою вже існує." -#: netbox/dcim/models/sites.py:112 +#: dcim/models/sites.py:112 msgid "A top-level site group with this slug already exists." msgstr "Група тех. майданчиків верхнього рівня з цим слимаком вже існує." -#: netbox/dcim/models/sites.py:115 +#: dcim/models/sites.py:115 msgid "site group" msgstr "група тех. майданчиків" -#: netbox/dcim/models/sites.py:116 +#: dcim/models/sites.py:116 msgid "site groups" msgstr "групи тех. майданчиків" -#: netbox/dcim/models/sites.py:141 +#: dcim/models/sites.py:141 msgid "Full name of the site" msgstr "Повна назва тех. майданчику" -#: netbox/dcim/models/sites.py:181 netbox/dcim/models/sites.py:279 +#: dcim/models/sites.py:181 dcim/models/sites.py:279 msgid "facility" msgstr "об'єкт" -#: netbox/dcim/models/sites.py:184 netbox/dcim/models/sites.py:282 +#: dcim/models/sites.py:184 dcim/models/sites.py:282 msgid "Local facility ID or description" msgstr "Ідентифікатор або опис місцевого об'єкта" -#: netbox/dcim/models/sites.py:195 +#: dcim/models/sites.py:195 msgid "physical address" msgstr "фізична адреса" -#: netbox/dcim/models/sites.py:198 +#: dcim/models/sites.py:198 msgid "Physical location of the building" msgstr "Фізичне розташування будівлі" -#: netbox/dcim/models/sites.py:201 +#: dcim/models/sites.py:201 msgid "shipping address" msgstr "адреса доставки" -#: netbox/dcim/models/sites.py:204 +#: dcim/models/sites.py:204 msgid "If different from the physical address" msgstr "Якщо відрізняється від фізичної адреси" -#: netbox/dcim/models/sites.py:238 +#: dcim/models/sites.py:238 msgid "site" msgstr "тех. майданчик" -#: netbox/dcim/models/sites.py:239 +#: dcim/models/sites.py:239 msgid "sites" msgstr "тех. майданчики" -#: netbox/dcim/models/sites.py:309 +#: dcim/models/sites.py:309 msgid "A location with this name already exists within the specified site." msgstr "" "Місцезнаходження з цим ім'ям вже існує в межах зазначеного тех. майданчика." -#: netbox/dcim/models/sites.py:319 +#: dcim/models/sites.py:319 msgid "A location with this slug already exists within the specified site." msgstr "" "Місцезнаходження з цим скороченням вже існує в межах зазначеного тех. " "майданчику." -#: netbox/dcim/models/sites.py:322 +#: dcim/models/sites.py:322 msgid "location" msgstr "локація" -#: netbox/dcim/models/sites.py:323 +#: dcim/models/sites.py:323 msgid "locations" msgstr "локації" -#: netbox/dcim/models/sites.py:337 +#: dcim/models/sites.py:337 #, python-brace-format msgid "Parent location ({parent}) must belong to the same site ({site})." msgstr "" "Батьківське місцезнаходження ({parent}) повинні належати одному тех. " "майданчику ({site})." -#: netbox/dcim/tables/cables.py:55 +#: dcim/tables/cables.py:55 msgid "Termination A" msgstr "Припинення А" -#: netbox/dcim/tables/cables.py:60 +#: dcim/tables/cables.py:60 msgid "Termination B" msgstr "Припинення Б" -#: netbox/dcim/tables/cables.py:66 netbox/wireless/tables/wirelesslink.py:23 +#: dcim/tables/cables.py:66 wireless/tables/wirelesslink.py:23 msgid "Device A" msgstr "Пристрій А" -#: netbox/dcim/tables/cables.py:72 netbox/wireless/tables/wirelesslink.py:32 +#: dcim/tables/cables.py:72 wireless/tables/wirelesslink.py:32 msgid "Device B" msgstr "Пристрій Б" -#: netbox/dcim/tables/cables.py:78 +#: dcim/tables/cables.py:78 msgid "Location A" msgstr "Місцезнаходження A" -#: netbox/dcim/tables/cables.py:84 +#: dcim/tables/cables.py:84 msgid "Location B" msgstr "Місцезнаходження Б" -#: netbox/dcim/tables/cables.py:90 +#: dcim/tables/cables.py:90 msgid "Rack A" msgstr "Стійка А" -#: netbox/dcim/tables/cables.py:96 +#: dcim/tables/cables.py:96 msgid "Rack B" msgstr "Стійка Б" -#: netbox/dcim/tables/cables.py:102 +#: dcim/tables/cables.py:102 msgid "Site A" msgstr "Тех. майданчик А" -#: netbox/dcim/tables/cables.py:108 +#: dcim/tables/cables.py:108 msgid "Site B" msgstr "Тех. майданчик Б" -#: netbox/dcim/tables/connections.py:31 netbox/dcim/tables/connections.py:50 -#: netbox/dcim/tables/connections.py:71 -#: netbox/templates/dcim/inc/connection_endpoints.html:16 +#: dcim/tables/connections.py:31 dcim/tables/connections.py:50 +#: dcim/tables/connections.py:71 +#: templates/dcim/inc/connection_endpoints.html:16 msgid "Reachable" msgstr "Доступний" -#: netbox/dcim/tables/devices.py:58 netbox/dcim/tables/devices.py:106 -#: netbox/dcim/tables/racks.py:150 netbox/dcim/tables/sites.py:105 -#: netbox/dcim/tables/sites.py:148 netbox/extras/tables/tables.py:545 -#: netbox/netbox/navigation/menu.py:69 netbox/netbox/navigation/menu.py:73 -#: netbox/netbox/navigation/menu.py:75 -#: netbox/virtualization/forms/model_forms.py:122 -#: netbox/virtualization/tables/clusters.py:83 -#: netbox/virtualization/views.py:206 +#: dcim/tables/devices.py:58 dcim/tables/devices.py:106 +#: dcim/tables/racks.py:150 dcim/tables/sites.py:105 dcim/tables/sites.py:148 +#: extras/tables/tables.py:545 netbox/navigation/menu.py:69 +#: netbox/navigation/menu.py:73 netbox/navigation/menu.py:75 +#: virtualization/forms/model_forms.py:122 +#: virtualization/tables/clusters.py:83 virtualization/views.py:206 msgid "Devices" msgstr "Пристрої" -#: netbox/dcim/tables/devices.py:63 netbox/dcim/tables/devices.py:111 -#: netbox/virtualization/tables/clusters.py:88 +#: dcim/tables/devices.py:63 dcim/tables/devices.py:111 +#: virtualization/tables/clusters.py:88 msgid "VMs" msgstr "віртуальні машини" -#: netbox/dcim/tables/devices.py:100 netbox/dcim/tables/devices.py:216 -#: netbox/extras/forms/model_forms.py:630 -#: netbox/templates/dcim/device.html:112 -#: netbox/templates/dcim/device/render_config.html:11 -#: netbox/templates/dcim/device/render_config.html:14 -#: netbox/templates/dcim/devicerole.html:44 -#: netbox/templates/dcim/platform.html:41 -#: netbox/templates/extras/configtemplate.html:10 -#: netbox/templates/virtualization/virtualmachine.html:48 -#: netbox/templates/virtualization/virtualmachine/render_config.html:11 -#: netbox/templates/virtualization/virtualmachine/render_config.html:14 -#: netbox/virtualization/tables/virtualmachines.py:107 +#: dcim/tables/devices.py:100 dcim/tables/devices.py:216 +#: extras/forms/model_forms.py:630 templates/dcim/device.html:112 +#: templates/dcim/device/render_config.html:11 +#: templates/dcim/device/render_config.html:14 +#: templates/dcim/devicerole.html:44 templates/dcim/platform.html:41 +#: templates/extras/configtemplate.html:10 +#: templates/virtualization/virtualmachine.html:48 +#: templates/virtualization/virtualmachine/render_config.html:11 +#: templates/virtualization/virtualmachine/render_config.html:14 +#: virtualization/tables/virtualmachines.py:107 msgid "Config Template" msgstr "Шаблон конфігурації" -#: netbox/dcim/tables/devices.py:150 netbox/templates/dcim/sitegroup.html:26 +#: dcim/tables/devices.py:150 templates/dcim/sitegroup.html:26 msgid "Site Group" msgstr "Група тех. майданчиків" -#: netbox/dcim/tables/devices.py:187 netbox/dcim/tables/devices.py:1068 -#: netbox/ipam/forms/bulk_import.py:503 netbox/ipam/forms/model_forms.py:306 -#: netbox/ipam/forms/model_forms.py:315 netbox/ipam/tables/ip.py:356 -#: netbox/ipam/tables/ip.py:423 netbox/ipam/tables/ip.py:446 -#: netbox/templates/ipam/ipaddress.html:11 -#: netbox/virtualization/tables/virtualmachines.py:95 +#: dcim/tables/devices.py:187 dcim/tables/devices.py:1068 +#: ipam/forms/bulk_import.py:503 ipam/forms/model_forms.py:306 +#: ipam/forms/model_forms.py:315 ipam/tables/ip.py:356 ipam/tables/ip.py:423 +#: ipam/tables/ip.py:446 templates/ipam/ipaddress.html:11 +#: virtualization/tables/virtualmachines.py:95 msgid "IP Address" msgstr "IP-адреса" -#: netbox/dcim/tables/devices.py:191 netbox/dcim/tables/devices.py:1072 -#: netbox/virtualization/tables/virtualmachines.py:86 +#: dcim/tables/devices.py:191 dcim/tables/devices.py:1072 +#: virtualization/tables/virtualmachines.py:86 msgid "IPv4 Address" msgstr "Адреса IPv4" -#: netbox/dcim/tables/devices.py:195 netbox/dcim/tables/devices.py:1076 -#: netbox/virtualization/tables/virtualmachines.py:90 +#: dcim/tables/devices.py:195 dcim/tables/devices.py:1076 +#: virtualization/tables/virtualmachines.py:90 msgid "IPv6 Address" msgstr "Адреса IPv6" -#: netbox/dcim/tables/devices.py:210 +#: dcim/tables/devices.py:210 msgid "VC Position" msgstr "Позиція віртуальної шасі" -#: netbox/dcim/tables/devices.py:213 +#: dcim/tables/devices.py:213 msgid "VC Priority" msgstr "Пріоритет віртуальної шасі" -#: netbox/dcim/tables/devices.py:220 netbox/templates/dcim/device_edit.html:38 -#: netbox/templates/dcim/devicebay_populate.html:16 +#: dcim/tables/devices.py:220 templates/dcim/device_edit.html:38 +#: templates/dcim/devicebay_populate.html:16 msgid "Parent Device" msgstr "Батьківський пристрій" -#: netbox/dcim/tables/devices.py:225 +#: dcim/tables/devices.py:225 msgid "Position (Device Bay)" msgstr "Позиція (відсік пристрою)" -#: netbox/dcim/tables/devices.py:234 +#: dcim/tables/devices.py:234 msgid "Console ports" msgstr "Консольні порти" -#: netbox/dcim/tables/devices.py:237 +#: dcim/tables/devices.py:237 msgid "Console server ports" msgstr "Порти консольного сервера" -#: netbox/dcim/tables/devices.py:240 +#: dcim/tables/devices.py:240 msgid "Power ports" msgstr "Порти живлення" -#: netbox/dcim/tables/devices.py:243 +#: dcim/tables/devices.py:243 msgid "Power outlets" msgstr "Розетки" -#: netbox/dcim/tables/devices.py:246 netbox/dcim/tables/devices.py:1081 -#: netbox/dcim/tables/devicetypes.py:128 netbox/dcim/views.py:1042 -#: netbox/dcim/views.py:1281 netbox/dcim/views.py:1977 -#: netbox/netbox/navigation/menu.py:94 netbox/netbox/navigation/menu.py:250 -#: netbox/templates/dcim/device/base.html:37 -#: netbox/templates/dcim/device_list.html:43 -#: netbox/templates/dcim/devicetype/base.html:34 -#: netbox/templates/dcim/module.html:34 -#: netbox/templates/dcim/moduletype/base.html:34 -#: netbox/templates/dcim/virtualdevicecontext.html:61 -#: netbox/templates/dcim/virtualdevicecontext.html:81 -#: netbox/templates/virtualization/virtualmachine/base.html:27 -#: netbox/templates/virtualization/virtualmachine_list.html:14 -#: netbox/virtualization/tables/virtualmachines.py:101 -#: netbox/virtualization/views.py:366 netbox/wireless/tables/wirelesslan.py:55 +#: dcim/tables/devices.py:246 dcim/tables/devices.py:1081 +#: dcim/tables/devicetypes.py:128 dcim/views.py:1042 dcim/views.py:1281 +#: dcim/views.py:1977 netbox/navigation/menu.py:94 +#: netbox/navigation/menu.py:250 templates/dcim/device/base.html:37 +#: templates/dcim/device_list.html:43 templates/dcim/devicetype/base.html:34 +#: templates/dcim/inc/moduletype_buttons.html:25 templates/dcim/module.html:34 +#: templates/dcim/virtualdevicecontext.html:61 +#: templates/dcim/virtualdevicecontext.html:81 +#: templates/virtualization/virtualmachine/base.html:27 +#: templates/virtualization/virtualmachine_list.html:14 +#: virtualization/tables/virtualmachines.py:101 virtualization/views.py:366 +#: wireless/tables/wirelesslan.py:55 msgid "Interfaces" msgstr "Інтерфейси" -#: netbox/dcim/tables/devices.py:249 +#: dcim/tables/devices.py:249 msgid "Front ports" msgstr "Передні порти" -#: netbox/dcim/tables/devices.py:255 +#: dcim/tables/devices.py:255 msgid "Device bays" msgstr "Відсіки для пристроїв" -#: netbox/dcim/tables/devices.py:258 +#: dcim/tables/devices.py:258 msgid "Module bays" msgstr "Модульні відсіки" -#: netbox/dcim/tables/devices.py:261 +#: dcim/tables/devices.py:261 msgid "Inventory items" msgstr "Елементи інвентаря" -#: netbox/dcim/tables/devices.py:305 netbox/dcim/tables/modules.py:56 -#: netbox/templates/dcim/modulebay.html:17 +#: dcim/tables/devices.py:305 dcim/tables/modules.py:56 +#: templates/dcim/modulebay.html:17 msgid "Module Bay" msgstr "Резервуар модулів" -#: netbox/dcim/tables/devices.py:318 netbox/dcim/tables/devicetypes.py:47 -#: netbox/dcim/tables/devicetypes.py:143 netbox/dcim/views.py:1117 -#: netbox/dcim/views.py:2075 netbox/netbox/navigation/menu.py:103 -#: netbox/templates/dcim/device/base.html:52 -#: netbox/templates/dcim/device_list.html:71 -#: netbox/templates/dcim/devicetype/base.html:49 -#: netbox/templates/dcim/inc/panels/inventory_items.html:6 -#: netbox/templates/dcim/inventoryitemrole.html:32 +#: dcim/tables/devices.py:318 dcim/tables/devicetypes.py:47 +#: dcim/tables/devicetypes.py:143 dcim/views.py:1117 dcim/views.py:2075 +#: netbox/navigation/menu.py:103 templates/dcim/device/base.html:52 +#: templates/dcim/device_list.html:71 templates/dcim/devicetype/base.html:49 +#: templates/dcim/inc/panels/inventory_items.html:6 +#: templates/dcim/inventoryitemrole.html:32 msgid "Inventory Items" msgstr "Елементи інвентаря" -#: netbox/dcim/tables/devices.py:333 +#: dcim/tables/devices.py:333 msgid "Cable Color" msgstr "Колір кабелю" -#: netbox/dcim/tables/devices.py:339 +#: dcim/tables/devices.py:339 msgid "Link Peers" msgstr "З'єднання мережевих сусідів" -#: netbox/dcim/tables/devices.py:342 +#: dcim/tables/devices.py:342 msgid "Mark Connected" msgstr "Позначене підключення" -#: netbox/dcim/tables/devices.py:461 +#: dcim/tables/devices.py:461 msgid "Maximum draw (W)" msgstr "Максимальна потужність (W)" -#: netbox/dcim/tables/devices.py:464 +#: dcim/tables/devices.py:464 msgid "Allocated draw (W)" msgstr "Виділена потужність (W)" -#: netbox/dcim/tables/devices.py:558 netbox/ipam/forms/model_forms.py:701 -#: netbox/ipam/tables/fhrp.py:28 netbox/ipam/views.py:596 -#: netbox/ipam/views.py:696 netbox/netbox/navigation/menu.py:158 -#: netbox/netbox/navigation/menu.py:160 -#: netbox/templates/dcim/interface.html:339 -#: netbox/templates/ipam/ipaddress_bulk_add.html:15 -#: netbox/templates/ipam/service.html:40 -#: netbox/templates/virtualization/vminterface.html:85 -#: netbox/vpn/tables/tunnels.py:98 +#: dcim/tables/devices.py:558 ipam/forms/model_forms.py:701 +#: ipam/tables/fhrp.py:28 ipam/views.py:596 ipam/views.py:696 +#: netbox/navigation/menu.py:158 netbox/navigation/menu.py:160 +#: templates/dcim/interface.html:339 templates/ipam/ipaddress_bulk_add.html:15 +#: templates/ipam/service.html:40 templates/virtualization/vminterface.html:85 +#: vpn/tables/tunnels.py:98 msgid "IP Addresses" msgstr "IP-адреси" -#: netbox/dcim/tables/devices.py:564 netbox/netbox/navigation/menu.py:202 -#: netbox/templates/ipam/inc/panels/fhrp_groups.html:6 +#: dcim/tables/devices.py:564 netbox/navigation/menu.py:202 +#: templates/ipam/inc/panels/fhrp_groups.html:6 msgid "FHRP Groups" msgstr "Групи FHRP/VRRP" -#: netbox/dcim/tables/devices.py:576 netbox/templates/dcim/interface.html:89 -#: netbox/templates/virtualization/vminterface.html:67 -#: netbox/templates/vpn/tunnel.html:18 -#: netbox/templates/vpn/tunneltermination.html:13 -#: netbox/vpn/forms/bulk_edit.py:76 netbox/vpn/forms/bulk_import.py:76 -#: netbox/vpn/forms/filtersets.py:42 netbox/vpn/forms/filtersets.py:82 -#: netbox/vpn/forms/model_forms.py:60 netbox/vpn/forms/model_forms.py:145 -#: netbox/vpn/tables/tunnels.py:78 +#: dcim/tables/devices.py:576 templates/dcim/interface.html:89 +#: templates/virtualization/vminterface.html:67 templates/vpn/tunnel.html:18 +#: templates/vpn/tunneltermination.html:13 vpn/forms/bulk_edit.py:76 +#: vpn/forms/bulk_import.py:76 vpn/forms/filtersets.py:42 +#: vpn/forms/filtersets.py:82 vpn/forms/model_forms.py:60 +#: vpn/forms/model_forms.py:145 vpn/tables/tunnels.py:78 msgid "Tunnel" msgstr "Тунель" -#: netbox/dcim/tables/devices.py:604 netbox/dcim/tables/devicetypes.py:227 -#: netbox/templates/dcim/interface.html:65 +#: dcim/tables/devices.py:604 dcim/tables/devicetypes.py:227 +#: templates/dcim/interface.html:65 msgid "Management Only" msgstr "Тільки управління" -#: netbox/dcim/tables/devices.py:623 +#: dcim/tables/devices.py:623 msgid "VDCs" msgstr "Джерела живлення постійного струму " -#: netbox/dcim/tables/devices.py:873 netbox/templates/dcim/modulebay.html:53 +#: dcim/tables/devices.py:873 templates/dcim/modulebay.html:53 msgid "Installed Module" msgstr "Встановлений модуль" -#: netbox/dcim/tables/devices.py:876 +#: dcim/tables/devices.py:876 msgid "Module Serial" msgstr "Послідовний модуль " -#: netbox/dcim/tables/devices.py:880 +#: dcim/tables/devices.py:880 msgid "Module Asset Tag" msgstr "Призначеня мітки на модуль" -#: netbox/dcim/tables/devices.py:889 +#: dcim/tables/devices.py:889 msgid "Module Status" msgstr "Статус модуля" -#: netbox/dcim/tables/devices.py:944 netbox/dcim/tables/devicetypes.py:312 -#: netbox/templates/dcim/inventoryitem.html:40 +#: dcim/tables/devices.py:944 dcim/tables/devicetypes.py:312 +#: templates/dcim/inventoryitem.html:40 msgid "Component" msgstr "Компонент" -#: netbox/dcim/tables/devices.py:1000 +#: dcim/tables/devices.py:1000 msgid "Items" msgstr "Предмети" -#: netbox/dcim/tables/devicetypes.py:37 netbox/netbox/navigation/menu.py:84 -#: netbox/netbox/navigation/menu.py:86 +#: dcim/tables/devicetypes.py:37 netbox/navigation/menu.py:84 +#: netbox/navigation/menu.py:86 msgid "Device Types" msgstr "Типи пристроїв" -#: netbox/dcim/tables/devicetypes.py:42 netbox/netbox/navigation/menu.py:87 +#: dcim/tables/devicetypes.py:42 netbox/navigation/menu.py:87 msgid "Module Types" msgstr "Типи модулів" -#: netbox/dcim/tables/devicetypes.py:52 netbox/extras/forms/filtersets.py:371 -#: netbox/extras/forms/model_forms.py:537 netbox/extras/tables/tables.py:540 -#: netbox/netbox/navigation/menu.py:78 +#: dcim/tables/devicetypes.py:52 extras/forms/filtersets.py:371 +#: extras/forms/model_forms.py:537 extras/tables/tables.py:540 +#: netbox/navigation/menu.py:78 msgid "Platforms" msgstr "Платформи" -#: netbox/dcim/tables/devicetypes.py:84 -#: netbox/templates/dcim/devicetype.html:29 +#: dcim/tables/devicetypes.py:84 templates/dcim/devicetype.html:29 msgid "Default Platform" msgstr "Платформа за замовчуванням" -#: netbox/dcim/tables/devicetypes.py:88 -#: netbox/templates/dcim/devicetype.html:45 +#: dcim/tables/devicetypes.py:88 templates/dcim/devicetype.html:45 msgid "Full Depth" msgstr "Повна глибина" -#: netbox/dcim/tables/devicetypes.py:98 +#: dcim/tables/devicetypes.py:98 msgid "U Height" msgstr "Висота юніта" -#: netbox/dcim/tables/devicetypes.py:113 netbox/dcim/tables/modules.py:26 -#: netbox/dcim/tables/racks.py:89 +#: dcim/tables/devicetypes.py:113 dcim/tables/modules.py:26 +#: dcim/tables/racks.py:89 msgid "Instances" msgstr "Екземпляри" -#: netbox/dcim/tables/devicetypes.py:116 netbox/dcim/views.py:982 -#: netbox/dcim/views.py:1221 netbox/dcim/views.py:1913 -#: netbox/netbox/navigation/menu.py:97 -#: netbox/templates/dcim/device/base.html:25 -#: netbox/templates/dcim/device_list.html:15 -#: netbox/templates/dcim/devicetype/base.html:22 -#: netbox/templates/dcim/module.html:22 -#: netbox/templates/dcim/moduletype/base.html:22 +#: dcim/tables/devicetypes.py:116 dcim/views.py:982 dcim/views.py:1221 +#: dcim/views.py:1913 netbox/navigation/menu.py:97 +#: templates/dcim/device/base.html:25 templates/dcim/device_list.html:15 +#: templates/dcim/devicetype/base.html:22 +#: templates/dcim/inc/moduletype_buttons.html:13 templates/dcim/module.html:22 msgid "Console Ports" msgstr "Консольні порти" -#: netbox/dcim/tables/devicetypes.py:119 netbox/dcim/views.py:997 -#: netbox/dcim/views.py:1236 netbox/dcim/views.py:1929 -#: netbox/netbox/navigation/menu.py:98 -#: netbox/templates/dcim/device/base.html:28 -#: netbox/templates/dcim/device_list.html:22 -#: netbox/templates/dcim/devicetype/base.html:25 -#: netbox/templates/dcim/module.html:25 -#: netbox/templates/dcim/moduletype/base.html:25 +#: dcim/tables/devicetypes.py:119 dcim/views.py:997 dcim/views.py:1236 +#: dcim/views.py:1929 netbox/navigation/menu.py:98 +#: templates/dcim/device/base.html:28 templates/dcim/device_list.html:22 +#: templates/dcim/devicetype/base.html:25 +#: templates/dcim/inc/moduletype_buttons.html:16 templates/dcim/module.html:25 msgid "Console Server Ports" msgstr "Порти консольного сервера" -#: netbox/dcim/tables/devicetypes.py:122 netbox/dcim/views.py:1012 -#: netbox/dcim/views.py:1251 netbox/dcim/views.py:1945 -#: netbox/netbox/navigation/menu.py:99 -#: netbox/templates/dcim/device/base.html:31 -#: netbox/templates/dcim/device_list.html:29 -#: netbox/templates/dcim/devicetype/base.html:28 -#: netbox/templates/dcim/module.html:28 -#: netbox/templates/dcim/moduletype/base.html:28 +#: dcim/tables/devicetypes.py:122 dcim/views.py:1012 dcim/views.py:1251 +#: dcim/views.py:1945 netbox/navigation/menu.py:99 +#: templates/dcim/device/base.html:31 templates/dcim/device_list.html:29 +#: templates/dcim/devicetype/base.html:28 +#: templates/dcim/inc/moduletype_buttons.html:19 templates/dcim/module.html:28 msgid "Power Ports" msgstr "Порти живлення" -#: netbox/dcim/tables/devicetypes.py:125 netbox/dcim/views.py:1027 -#: netbox/dcim/views.py:1266 netbox/dcim/views.py:1961 -#: netbox/netbox/navigation/menu.py:100 -#: netbox/templates/dcim/device/base.html:34 -#: netbox/templates/dcim/device_list.html:36 -#: netbox/templates/dcim/devicetype/base.html:31 -#: netbox/templates/dcim/module.html:31 -#: netbox/templates/dcim/moduletype/base.html:31 +#: dcim/tables/devicetypes.py:125 dcim/views.py:1027 dcim/views.py:1266 +#: dcim/views.py:1961 netbox/navigation/menu.py:100 +#: templates/dcim/device/base.html:34 templates/dcim/device_list.html:36 +#: templates/dcim/devicetype/base.html:31 +#: templates/dcim/inc/moduletype_buttons.html:22 templates/dcim/module.html:31 msgid "Power Outlets" msgstr "Розетки" -#: netbox/dcim/tables/devicetypes.py:131 netbox/dcim/views.py:1057 -#: netbox/dcim/views.py:1296 netbox/dcim/views.py:1999 -#: netbox/netbox/navigation/menu.py:95 -#: netbox/templates/dcim/device/base.html:40 -#: netbox/templates/dcim/devicetype/base.html:37 -#: netbox/templates/dcim/module.html:37 -#: netbox/templates/dcim/moduletype/base.html:37 +#: dcim/tables/devicetypes.py:131 dcim/views.py:1057 dcim/views.py:1296 +#: dcim/views.py:1999 netbox/navigation/menu.py:95 +#: templates/dcim/device/base.html:40 templates/dcim/devicetype/base.html:37 +#: templates/dcim/inc/moduletype_buttons.html:28 templates/dcim/module.html:37 msgid "Front Ports" msgstr "Передні порти" -#: netbox/dcim/tables/devicetypes.py:134 netbox/dcim/views.py:1072 -#: netbox/dcim/views.py:1311 netbox/dcim/views.py:2015 -#: netbox/netbox/navigation/menu.py:96 -#: netbox/templates/dcim/device/base.html:43 -#: netbox/templates/dcim/device_list.html:50 -#: netbox/templates/dcim/devicetype/base.html:40 -#: netbox/templates/dcim/module.html:40 -#: netbox/templates/dcim/moduletype/base.html:40 +#: dcim/tables/devicetypes.py:134 dcim/views.py:1072 dcim/views.py:1311 +#: dcim/views.py:2015 netbox/navigation/menu.py:96 +#: templates/dcim/device/base.html:43 templates/dcim/device_list.html:50 +#: templates/dcim/devicetype/base.html:40 +#: templates/dcim/inc/moduletype_buttons.html:31 templates/dcim/module.html:40 msgid "Rear Ports" msgstr "Задні порти" -#: netbox/dcim/tables/devicetypes.py:137 netbox/dcim/views.py:1102 -#: netbox/dcim/views.py:2055 netbox/netbox/navigation/menu.py:102 -#: netbox/templates/dcim/device/base.html:49 -#: netbox/templates/dcim/device_list.html:57 -#: netbox/templates/dcim/devicetype/base.html:46 +#: dcim/tables/devicetypes.py:137 dcim/views.py:1102 dcim/views.py:2055 +#: netbox/navigation/menu.py:102 templates/dcim/device/base.html:49 +#: templates/dcim/device_list.html:57 templates/dcim/devicetype/base.html:46 msgid "Device Bays" msgstr "Відсіки для пристроїв" -#: netbox/dcim/tables/devicetypes.py:140 netbox/dcim/views.py:1087 -#: netbox/dcim/views.py:1326 netbox/dcim/views.py:2035 -#: netbox/netbox/navigation/menu.py:101 -#: netbox/templates/dcim/device/base.html:46 -#: netbox/templates/dcim/device_list.html:64 -#: netbox/templates/dcim/devicetype/base.html:43 -#: netbox/templates/dcim/module.html:43 -#: netbox/templates/dcim/moduletype/base.html:43 +#: dcim/tables/devicetypes.py:140 dcim/views.py:1087 dcim/views.py:1326 +#: dcim/views.py:2035 netbox/navigation/menu.py:101 +#: templates/dcim/device/base.html:46 templates/dcim/device_list.html:64 +#: templates/dcim/devicetype/base.html:43 +#: templates/dcim/inc/moduletype_buttons.html:34 templates/dcim/module.html:43 msgid "Module Bays" msgstr "Модульні відсіки" -#: netbox/dcim/tables/power.py:36 netbox/netbox/navigation/menu.py:297 -#: netbox/templates/dcim/powerpanel.html:51 +#: dcim/tables/power.py:36 netbox/navigation/menu.py:297 +#: templates/dcim/powerpanel.html:51 msgid "Power Feeds" msgstr "Подачі живлення" -#: netbox/dcim/tables/power.py:80 netbox/templates/dcim/powerfeed.html:99 +#: dcim/tables/power.py:80 templates/dcim/powerfeed.html:99 msgid "Max Utilization" msgstr "Максимальне використання (живлення)" -#: netbox/dcim/tables/power.py:84 +#: dcim/tables/power.py:84 msgid "Available Power (VA)" msgstr "Доступна потужність (ВА)" -#: netbox/dcim/tables/racks.py:30 netbox/dcim/tables/sites.py:143 -#: netbox/netbox/navigation/menu.py:43 netbox/netbox/navigation/menu.py:47 -#: netbox/netbox/navigation/menu.py:49 +#: dcim/tables/racks.py:30 dcim/tables/sites.py:143 +#: netbox/navigation/menu.py:43 netbox/navigation/menu.py:47 +#: netbox/navigation/menu.py:49 msgid "Racks" msgstr "Стійки" -#: netbox/dcim/tables/racks.py:63 netbox/dcim/tables/racks.py:142 -#: netbox/templates/dcim/device.html:318 -#: netbox/templates/dcim/inc/panels/racktype_dimensions.html:14 +#: dcim/tables/racks.py:63 dcim/tables/racks.py:142 +#: templates/dcim/device.html:318 +#: templates/dcim/inc/panels/racktype_dimensions.html:14 msgid "Height" msgstr "Висота" -#: netbox/dcim/tables/racks.py:67 netbox/dcim/tables/racks.py:165 -#: netbox/templates/dcim/inc/panels/racktype_dimensions.html:18 +#: dcim/tables/racks.py:67 dcim/tables/racks.py:165 +#: templates/dcim/inc/panels/racktype_dimensions.html:18 msgid "Outer Width" msgstr "Зовнішня ширина" -#: netbox/dcim/tables/racks.py:71 netbox/dcim/tables/racks.py:169 -#: netbox/templates/dcim/inc/panels/racktype_dimensions.html:28 +#: dcim/tables/racks.py:71 dcim/tables/racks.py:169 +#: templates/dcim/inc/panels/racktype_dimensions.html:28 msgid "Outer Depth" msgstr "Зовнішня глибина" -#: netbox/dcim/tables/racks.py:79 netbox/dcim/tables/racks.py:177 +#: dcim/tables/racks.py:79 dcim/tables/racks.py:177 msgid "Max Weight" msgstr "Максимальна вага" -#: netbox/dcim/tables/racks.py:154 +#: dcim/tables/racks.py:154 msgid "Space" msgstr "Простір" -#: netbox/dcim/tables/sites.py:30 netbox/dcim/tables/sites.py:57 -#: netbox/extras/forms/filtersets.py:351 -#: netbox/extras/forms/model_forms.py:517 netbox/ipam/forms/bulk_edit.py:130 -#: netbox/ipam/forms/model_forms.py:153 netbox/ipam/tables/asn.py:66 -#: netbox/netbox/navigation/menu.py:15 netbox/netbox/navigation/menu.py:17 +#: dcim/tables/sites.py:30 dcim/tables/sites.py:57 +#: extras/forms/filtersets.py:351 extras/forms/model_forms.py:517 +#: ipam/forms/bulk_edit.py:131 ipam/forms/model_forms.py:153 +#: ipam/tables/asn.py:66 netbox/navigation/menu.py:15 +#: netbox/navigation/menu.py:17 msgid "Sites" msgstr "Тех. майданчики" -#: netbox/dcim/tests/test_api.py:47 +#: dcim/tests/test_api.py:47 msgid "Test case must set peer_termination_type" msgstr "Тестовий випадок повинен встановити peer_termination_type" -#: netbox/dcim/views.py:140 +#: dcim/views.py:140 #, python-brace-format msgid "Disconnected {count} {type}" msgstr "Відключено {count} {type}" -#: netbox/dcim/views.py:740 netbox/netbox/navigation/menu.py:51 +#: dcim/views.py:740 netbox/navigation/menu.py:51 msgid "Reservations" msgstr "Бронювання" -#: netbox/dcim/views.py:759 netbox/templates/dcim/location.html:90 -#: netbox/templates/dcim/site.html:140 +#: dcim/views.py:759 templates/dcim/location.html:90 +#: templates/dcim/site.html:140 msgid "Non-Racked Devices" msgstr "Пристрої без можливості кріплення у стійку" -#: netbox/dcim/views.py:2088 netbox/extras/forms/model_forms.py:577 -#: netbox/templates/extras/configcontext.html:10 -#: netbox/virtualization/forms/model_forms.py:225 -#: netbox/virtualization/views.py:407 +#: dcim/views.py:2088 extras/forms/model_forms.py:577 +#: templates/extras/configcontext.html:10 +#: virtualization/forms/model_forms.py:225 virtualization/views.py:407 msgid "Config Context" msgstr "Контекст конфігурації" -#: netbox/dcim/views.py:2098 netbox/virtualization/views.py:417 +#: dcim/views.py:2098 virtualization/views.py:417 msgid "Render Config" msgstr "Відтворювати конфігурацію" -#: netbox/dcim/views.py:2131 netbox/virtualization/views.py:450 +#: dcim/views.py:2131 virtualization/views.py:450 #, python-brace-format msgid "An error occurred while rendering the template: {error}" msgstr "Під час візуалізації шаблону сталася помилка: {error}" -#: netbox/dcim/views.py:2149 netbox/extras/tables/tables.py:550 -#: netbox/netbox/navigation/menu.py:247 netbox/netbox/navigation/menu.py:249 -#: netbox/virtualization/views.py:180 +#: dcim/views.py:2149 extras/tables/tables.py:550 +#: netbox/navigation/menu.py:247 netbox/navigation/menu.py:249 +#: virtualization/views.py:180 msgid "Virtual Machines" msgstr "Віртуальні машини" -#: netbox/dcim/views.py:2897 +#: dcim/views.py:2897 #, python-brace-format msgid "Installed device {device} in bay {device_bay}." msgstr "Встановлений пристрій {device} в бухті {device_bay}." -#: netbox/dcim/views.py:2938 +#: dcim/views.py:2938 #, python-brace-format msgid "Removed device {device} from bay {device_bay}." msgstr "Видалений пристрій {device} з бухти {device_bay}." -#: netbox/dcim/views.py:3044 netbox/ipam/tables/ip.py:234 +#: dcim/views.py:3044 ipam/tables/ip.py:234 msgid "Children" msgstr "Підпорядкований" -#: netbox/dcim/views.py:3510 +#: dcim/views.py:3510 #, python-brace-format msgid "Added member {device}" msgstr "Доданий член {device}" -#: netbox/dcim/views.py:3557 +#: dcim/views.py:3557 #, python-brace-format msgid "Unable to remove master device {device} from the virtual chassis." msgstr "Неможливо видалити головний пристрій {device} від віртуального шасі." -#: netbox/dcim/views.py:3570 +#: dcim/views.py:3570 #, python-brace-format msgid "Removed {device} from virtual chassis {chassis}" msgstr "Вилучено {device} з віртуального шасі {chassis}" -#: netbox/extras/api/customfields.py:89 +#: extras/api/customfields.py:89 #, python-brace-format msgid "Unknown related object(s): {name}" msgstr "Невідомий пов'язаний об'єкт(и): {name}" -#: netbox/extras/api/serializers_/customfields.py:73 +#: extras/api/serializers_/customfields.py:73 msgid "Changing the type of custom fields is not supported." msgstr "Зміна типу призначених для користувача полів не підтримується." -#: netbox/extras/api/serializers_/scripts.py:70 -#: netbox/extras/api/serializers_/scripts.py:75 +#: extras/api/serializers_/scripts.py:70 extras/api/serializers_/scripts.py:75 msgid "Scheduling is not enabled for this script." msgstr "Планування не ввімкнено для цього сценарію." -#: netbox/extras/choices.py:30 netbox/extras/forms/misc.py:14 +#: extras/choices.py:30 extras/forms/misc.py:14 msgid "Text" msgstr "Текст" -#: netbox/extras/choices.py:31 +#: extras/choices.py:31 msgid "Text (long)" msgstr "Текст (довгий)" -#: netbox/extras/choices.py:32 +#: extras/choices.py:32 msgid "Integer" msgstr "Ціле число" -#: netbox/extras/choices.py:33 +#: extras/choices.py:33 msgid "Decimal" msgstr "Десяткове число" -#: netbox/extras/choices.py:34 +#: extras/choices.py:34 msgid "Boolean (true/false)" msgstr "Булевий тип (істинна/хибна)" -#: netbox/extras/choices.py:35 +#: extras/choices.py:35 msgid "Date" msgstr "Дата" -#: netbox/extras/choices.py:36 +#: extras/choices.py:36 msgid "Date & time" msgstr "Дата та час" -#: netbox/extras/choices.py:38 +#: extras/choices.py:38 msgid "JSON" msgstr "JSON" -#: netbox/extras/choices.py:39 +#: extras/choices.py:39 msgid "Selection" msgstr "Вибір" -#: netbox/extras/choices.py:40 +#: extras/choices.py:40 msgid "Multiple selection" msgstr "Множинний вибір" -#: netbox/extras/choices.py:42 +#: extras/choices.py:42 msgid "Multiple objects" msgstr "Кілька об'єктів" -#: netbox/extras/choices.py:53 netbox/netbox/preferences.py:21 -#: netbox/templates/extras/customfield.html:78 netbox/vpn/choices.py:20 -#: netbox/wireless/choices.py:27 +#: extras/choices.py:53 netbox/preferences.py:21 +#: templates/extras/customfield.html:78 vpn/choices.py:20 +#: wireless/choices.py:27 msgid "Disabled" msgstr "Вимкнений" -#: netbox/extras/choices.py:54 +#: extras/choices.py:54 msgid "Loose" msgstr "Пухкий" -#: netbox/extras/choices.py:55 +#: extras/choices.py:55 msgid "Exact" msgstr "Точний" -#: netbox/extras/choices.py:66 +#: extras/choices.py:66 msgid "Always" msgstr "Завжди" -#: netbox/extras/choices.py:67 +#: extras/choices.py:67 msgid "If set" msgstr "Якщо встановлено" -#: netbox/extras/choices.py:68 netbox/extras/choices.py:81 +#: extras/choices.py:68 extras/choices.py:81 msgid "Hidden" msgstr "Прихований" -#: netbox/extras/choices.py:79 +#: extras/choices.py:79 msgid "Yes" msgstr "Так" -#: netbox/extras/choices.py:80 +#: extras/choices.py:80 msgid "No" msgstr "Ні" -#: netbox/extras/choices.py:108 netbox/templates/tenancy/contact.html:57 -#: netbox/tenancy/forms/bulk_edit.py:118 -#: netbox/wireless/forms/model_forms.py:168 +#: extras/choices.py:108 templates/tenancy/contact.html:57 +#: tenancy/forms/bulk_edit.py:118 wireless/forms/model_forms.py:168 msgid "Link" msgstr "Посилання" -#: netbox/extras/choices.py:124 +#: extras/choices.py:124 msgid "Newest" msgstr "Найновіші" -#: netbox/extras/choices.py:125 +#: extras/choices.py:125 msgid "Oldest" msgstr "Найстаріший" -#: netbox/extras/choices.py:126 +#: extras/choices.py:126 msgid "Alphabetical (A-Z)" msgstr "Зростання за алфавітом (A-Z)" -#: netbox/extras/choices.py:127 +#: extras/choices.py:127 msgid "Alphabetical (Z-A)" msgstr "Спадання за алфавітом (Z-A)" -#: netbox/extras/choices.py:144 netbox/extras/choices.py:167 +#: extras/choices.py:144 extras/choices.py:167 msgid "Info" msgstr "Інформація" -#: netbox/extras/choices.py:145 netbox/extras/choices.py:168 +#: extras/choices.py:145 extras/choices.py:168 msgid "Success" msgstr "Успіх" -#: netbox/extras/choices.py:146 netbox/extras/choices.py:169 +#: extras/choices.py:146 extras/choices.py:169 msgid "Warning" msgstr "Попередження" -#: netbox/extras/choices.py:147 +#: extras/choices.py:147 msgid "Danger" msgstr "Небезпека" -#: netbox/extras/choices.py:165 +#: extras/choices.py:165 msgid "Debug" msgstr "Налагодження" -#: netbox/extras/choices.py:166 netbox/netbox/choices.py:101 +#: extras/choices.py:166 netbox/choices.py:101 msgid "Default" msgstr "За замовчуванням" -#: netbox/extras/choices.py:170 +#: extras/choices.py:170 msgid "Failure" msgstr "Невдача" -#: netbox/extras/choices.py:186 +#: extras/choices.py:186 msgid "Hourly" msgstr "Погодинно" -#: netbox/extras/choices.py:187 +#: extras/choices.py:187 msgid "12 hours" msgstr "12 годин" -#: netbox/extras/choices.py:188 +#: extras/choices.py:188 msgid "Daily" msgstr "Щодня" -#: netbox/extras/choices.py:189 +#: extras/choices.py:189 msgid "Weekly" msgstr "Щотижневий" -#: netbox/extras/choices.py:190 +#: extras/choices.py:190 msgid "30 days" msgstr "30 днів" -#: netbox/extras/choices.py:226 -#: netbox/templates/dcim/virtualchassis_edit.html:107 -#: netbox/templates/generic/bulk_add_component.html:68 -#: netbox/templates/generic/object_edit.html:47 -#: netbox/templates/generic/object_edit.html:80 -#: netbox/templates/ipam/inc/ipaddress_edit_header.html:7 +#: extras/choices.py:226 templates/dcim/virtualchassis_edit.html:107 +#: templates/generic/bulk_add_component.html:68 +#: templates/generic/object_edit.html:47 templates/generic/object_edit.html:80 +#: templates/ipam/inc/ipaddress_edit_header.html:7 msgid "Create" msgstr "Створити" -#: netbox/extras/choices.py:227 +#: extras/choices.py:227 msgid "Update" msgstr "Оновити" -#: netbox/extras/choices.py:228 -#: netbox/templates/circuits/inc/circuit_termination.html:23 -#: netbox/templates/dcim/inc/panels/inventory_items.html:37 -#: netbox/templates/dcim/moduletype/component_templates.html:23 -#: netbox/templates/dcim/powerpanel.html:66 -#: netbox/templates/extras/script_list.html:35 -#: netbox/templates/generic/bulk_delete.html:20 -#: netbox/templates/generic/bulk_delete.html:66 -#: netbox/templates/generic/object_delete.html:19 -#: netbox/templates/htmx/delete_form.html:57 -#: netbox/templates/ipam/inc/panels/fhrp_groups.html:48 -#: netbox/templates/users/objectpermission.html:46 -#: netbox/utilities/templates/buttons/delete.html:11 +#: extras/choices.py:228 templates/circuits/inc/circuit_termination.html:23 +#: templates/dcim/inc/panels/inventory_items.html:37 +#: templates/dcim/powerpanel.html:66 templates/extras/script_list.html:35 +#: templates/generic/bulk_delete.html:20 templates/generic/bulk_delete.html:66 +#: templates/generic/object_delete.html:19 templates/htmx/delete_form.html:57 +#: templates/ipam/inc/panels/fhrp_groups.html:48 +#: templates/users/objectpermission.html:46 +#: utilities/templates/buttons/delete.html:11 msgid "Delete" msgstr "Видалити" -#: netbox/extras/choices.py:252 netbox/netbox/choices.py:57 -#: netbox/netbox/choices.py:102 +#: extras/choices.py:252 netbox/choices.py:57 netbox/choices.py:102 msgid "Blue" msgstr "Синій" -#: netbox/extras/choices.py:253 netbox/netbox/choices.py:56 -#: netbox/netbox/choices.py:103 +#: extras/choices.py:253 netbox/choices.py:56 netbox/choices.py:103 msgid "Indigo" msgstr "Індиго" -#: netbox/extras/choices.py:254 netbox/netbox/choices.py:54 -#: netbox/netbox/choices.py:104 +#: extras/choices.py:254 netbox/choices.py:54 netbox/choices.py:104 msgid "Purple" msgstr "Фіолетовий" -#: netbox/extras/choices.py:255 netbox/netbox/choices.py:51 -#: netbox/netbox/choices.py:105 +#: extras/choices.py:255 netbox/choices.py:51 netbox/choices.py:105 msgid "Pink" msgstr "Рожевий" -#: netbox/extras/choices.py:256 netbox/netbox/choices.py:50 -#: netbox/netbox/choices.py:106 +#: extras/choices.py:256 netbox/choices.py:50 netbox/choices.py:106 msgid "Red" msgstr "Червоний" -#: netbox/extras/choices.py:257 netbox/netbox/choices.py:68 -#: netbox/netbox/choices.py:107 +#: extras/choices.py:257 netbox/choices.py:68 netbox/choices.py:107 msgid "Orange" msgstr "Помаранчевий" -#: netbox/extras/choices.py:258 netbox/netbox/choices.py:66 -#: netbox/netbox/choices.py:108 +#: extras/choices.py:258 netbox/choices.py:66 netbox/choices.py:108 msgid "Yellow" msgstr "Жовтий" -#: netbox/extras/choices.py:259 netbox/netbox/choices.py:63 -#: netbox/netbox/choices.py:109 +#: extras/choices.py:259 netbox/choices.py:63 netbox/choices.py:109 msgid "Green" msgstr "Зелений" -#: netbox/extras/choices.py:260 netbox/netbox/choices.py:60 -#: netbox/netbox/choices.py:110 +#: extras/choices.py:260 netbox/choices.py:60 netbox/choices.py:110 msgid "Teal" msgstr "Бірюзовий" -#: netbox/extras/choices.py:261 netbox/netbox/choices.py:59 -#: netbox/netbox/choices.py:111 +#: extras/choices.py:261 netbox/choices.py:59 netbox/choices.py:111 msgid "Cyan" msgstr "Блакитний" -#: netbox/extras/choices.py:262 netbox/netbox/choices.py:112 +#: extras/choices.py:262 netbox/choices.py:112 msgid "Gray" msgstr "Сірий" -#: netbox/extras/choices.py:263 netbox/netbox/choices.py:74 -#: netbox/netbox/choices.py:113 +#: extras/choices.py:263 netbox/choices.py:74 netbox/choices.py:113 msgid "Black" msgstr "Чорний" -#: netbox/extras/choices.py:264 netbox/netbox/choices.py:75 -#: netbox/netbox/choices.py:114 +#: extras/choices.py:264 netbox/choices.py:75 netbox/choices.py:114 msgid "White" msgstr "Білий" -#: netbox/extras/choices.py:279 netbox/extras/forms/model_forms.py:353 -#: netbox/extras/forms/model_forms.py:430 -#: netbox/templates/extras/webhook.html:10 +#: extras/choices.py:279 extras/forms/model_forms.py:353 +#: extras/forms/model_forms.py:430 templates/extras/webhook.html:10 msgid "Webhook" msgstr "Веб-хук" -#: netbox/extras/choices.py:280 netbox/extras/forms/model_forms.py:418 -#: netbox/templates/extras/script/base.html:29 +#: extras/choices.py:280 extras/forms/model_forms.py:418 +#: templates/extras/script/base.html:29 msgid "Script" msgstr "Сценарій" -#: netbox/extras/choices.py:281 +#: extras/choices.py:281 msgid "Notification" msgstr "Повідомлення" -#: netbox/extras/conditions.py:54 +#: extras/conditions.py:54 #, python-brace-format msgid "Unknown operator: {op}. Must be one of: {operators}" msgstr "Невідомий оператор: {op}. Повинен бути один з: {operators}" -#: netbox/extras/conditions.py:58 +#: extras/conditions.py:58 #, python-brace-format msgid "Unsupported value type: {value}" msgstr "Тип значення, що не підтримується: {value}" -#: netbox/extras/conditions.py:60 +#: extras/conditions.py:60 #, python-brace-format msgid "Invalid type for {op} operation: {value}" msgstr "Невірний тип для {op} операції: {value}" -#: netbox/extras/conditions.py:137 +#: extras/conditions.py:137 #, python-brace-format msgid "Ruleset must be a dictionary, not {ruleset}." msgstr "Набір правил повинен бути словником, а не {ruleset}." -#: netbox/extras/conditions.py:142 +#: extras/conditions.py:142 msgid "Invalid logic type: must be 'AND' or 'OR'. Please check documentation." msgstr "" "Невірний тип логіки: має бути 'ТАК' або 'АБО'. Будь ласка, перевірте " "документацію." -#: netbox/extras/conditions.py:154 +#: extras/conditions.py:154 msgid "Incorrect key(s) informed. Please check documentation." msgstr "" "Поінформовано про неправильний ключ(і). Будь ласка, перевірте документацію." -#: netbox/extras/dashboard/forms.py:38 +#: extras/dashboard/forms.py:38 msgid "Widget type" msgstr "Тип віджету" -#: netbox/extras/dashboard/utils.py:36 +#: extras/dashboard/utils.py:36 #, python-brace-format msgid "Unregistered widget class: {name}" msgstr "Незареєстрований клас віджетів: {name}" -#: netbox/extras/dashboard/widgets.py:125 +#: extras/dashboard/widgets.py:125 #, python-brace-format msgid "{class_name} must define a render() method." msgstr "{class_name} повинен визначити метод render()." -#: netbox/extras/dashboard/widgets.py:144 +#: extras/dashboard/widgets.py:144 msgid "Note" msgstr "Примітка" -#: netbox/extras/dashboard/widgets.py:145 +#: extras/dashboard/widgets.py:145 msgid "Display some arbitrary custom content. Markdown is supported." msgstr "" "Відображення будь-якого довільного користувацького вмісту. Підтримується " "розмітка Markdown." -#: netbox/extras/dashboard/widgets.py:158 +#: extras/dashboard/widgets.py:158 msgid "Object Counts" msgstr "Кількість об'єктів" -#: netbox/extras/dashboard/widgets.py:159 +#: extras/dashboard/widgets.py:159 msgid "" "Display a set of NetBox models and the number of objects created for each " "type." @@ -7462,290 +6951,268 @@ msgstr "" "Відображення набору моделей NetBox та кількості об'єктів, створених для " "кожного типу." -#: netbox/extras/dashboard/widgets.py:169 +#: extras/dashboard/widgets.py:169 msgid "Filters to apply when counting the number of objects" msgstr "Фільтри, які застосовуються при підрахунку кількості об'єктів" -#: netbox/extras/dashboard/widgets.py:177 +#: extras/dashboard/widgets.py:177 msgid "Invalid format. Object filters must be passed as a dictionary." msgstr "Невірний формат. Фільтри об'єктів повинні бути передані як словник." -#: netbox/extras/dashboard/widgets.py:208 +#: extras/dashboard/widgets.py:208 msgid "Object List" msgstr "Список об'єктів" -#: netbox/extras/dashboard/widgets.py:209 +#: extras/dashboard/widgets.py:209 msgid "Display an arbitrary list of objects." msgstr "Відображення довільного списку об'єктів." -#: netbox/extras/dashboard/widgets.py:222 +#: extras/dashboard/widgets.py:222 msgid "The default number of objects to display" msgstr "Типова кількість об'єктів для відображення" -#: netbox/extras/dashboard/widgets.py:234 +#: extras/dashboard/widgets.py:234 msgid "Invalid format. URL parameters must be passed as a dictionary." msgstr "" "Невірний формат. Параметри URL-адреси повинні бути передані як словник." -#: netbox/extras/dashboard/widgets.py:274 +#: extras/dashboard/widgets.py:274 msgid "RSS Feed" msgstr "RSS-канал" -#: netbox/extras/dashboard/widgets.py:279 +#: extras/dashboard/widgets.py:279 msgid "Embed an RSS feed from an external website." msgstr "Вбудовувати RSS-канал із зовнішнього веб-сайту." -#: netbox/extras/dashboard/widgets.py:286 +#: extras/dashboard/widgets.py:286 msgid "Feed URL" msgstr "URL-адреса каналу" -#: netbox/extras/dashboard/widgets.py:291 +#: extras/dashboard/widgets.py:291 msgid "The maximum number of objects to display" msgstr "Максимальна кількість об'єктів для відображення" -#: netbox/extras/dashboard/widgets.py:296 +#: extras/dashboard/widgets.py:296 msgid "How long to stored the cached content (in seconds)" msgstr "Як довго зберігати кешований вміст (в секундах)" -#: netbox/extras/dashboard/widgets.py:348 -#: netbox/templates/account/base.html:10 -#: netbox/templates/account/bookmarks.html:7 -#: netbox/templates/inc/user_menu.html:48 +#: extras/dashboard/widgets.py:348 templates/account/base.html:10 +#: templates/account/bookmarks.html:7 templates/inc/user_menu.html:48 msgid "Bookmarks" msgstr "Закладки" -#: netbox/extras/dashboard/widgets.py:352 +#: extras/dashboard/widgets.py:352 msgid "Show your personal bookmarks" msgstr "Показувати особисті закладки" -#: netbox/extras/events.py:147 +#: extras/events.py:147 #, python-brace-format msgid "Unknown action type for an event rule: {action_type}" msgstr "Невідомий тип дії для правила події: {action_type}" -#: netbox/extras/events.py:192 +#: extras/events.py:192 #, python-brace-format msgid "Cannot import events pipeline {name} error: {error}" msgstr "Не вдається імпортувати конвеєр подій {name} Помилка: {error}" -#: netbox/extras/filtersets.py:45 +#: extras/filtersets.py:45 msgid "Script module (ID)" msgstr "Модуль сценарію (ідентифікатор)" -#: netbox/extras/filtersets.py:254 netbox/extras/filtersets.py:637 -#: netbox/extras/filtersets.py:665 +#: extras/filtersets.py:254 extras/filtersets.py:637 extras/filtersets.py:665 msgid "Data file (ID)" msgstr "Файл даних (ідентифікатор)" -#: netbox/extras/filtersets.py:370 netbox/users/filtersets.py:68 -#: netbox/users/filtersets.py:191 +#: extras/filtersets.py:370 users/filtersets.py:68 users/filtersets.py:191 msgid "Group (name)" msgstr "Група (назва)" -#: netbox/extras/filtersets.py:574 -#: netbox/virtualization/forms/filtersets.py:118 +#: extras/filtersets.py:574 virtualization/forms/filtersets.py:118 msgid "Cluster type" msgstr "Тип кластера" -#: netbox/extras/filtersets.py:580 netbox/virtualization/filtersets.py:95 -#: netbox/virtualization/filtersets.py:147 +#: extras/filtersets.py:580 virtualization/filtersets.py:95 +#: virtualization/filtersets.py:147 msgid "Cluster type (slug)" msgstr "Кластерний тип (скоречення)" -#: netbox/extras/filtersets.py:601 netbox/tenancy/forms/forms.py:16 -#: netbox/tenancy/forms/forms.py:39 +#: extras/filtersets.py:601 tenancy/forms/forms.py:16 +#: tenancy/forms/forms.py:39 msgid "Tenant group" msgstr "Група орендарів" -#: netbox/extras/filtersets.py:607 netbox/tenancy/filtersets.py:188 -#: netbox/tenancy/filtersets.py:208 +#: extras/filtersets.py:607 tenancy/filtersets.py:188 +#: tenancy/filtersets.py:208 msgid "Tenant group (slug)" msgstr "Група орендарів (скоречення)" -#: netbox/extras/filtersets.py:623 netbox/extras/forms/model_forms.py:495 -#: netbox/templates/extras/tag.html:11 +#: extras/filtersets.py:623 extras/forms/model_forms.py:495 +#: templates/extras/tag.html:11 msgid "Tag" msgstr "Мітка" -#: netbox/extras/filtersets.py:629 +#: extras/filtersets.py:629 msgid "Tag (slug)" msgstr "Мітка (скоречення)" -#: netbox/extras/filtersets.py:689 netbox/extras/forms/filtersets.py:429 +#: extras/filtersets.py:689 extras/forms/filtersets.py:429 msgid "Has local config context data" msgstr "Має локальні контекстні дані конфігурації" -#: netbox/extras/forms/bulk_edit.py:35 netbox/extras/forms/filtersets.py:60 +#: extras/forms/bulk_edit.py:35 extras/forms/filtersets.py:60 msgid "Group name" msgstr "Назва групи" -#: netbox/extras/forms/bulk_edit.py:43 netbox/extras/forms/filtersets.py:68 -#: netbox/extras/tables/tables.py:65 -#: netbox/templates/extras/customfield.html:38 -#: netbox/templates/generic/bulk_import.html:118 +#: extras/forms/bulk_edit.py:43 extras/forms/filtersets.py:68 +#: extras/tables/tables.py:65 templates/extras/customfield.html:38 +#: templates/generic/bulk_import.html:118 msgid "Required" msgstr "Обов'язково" -#: netbox/extras/forms/bulk_edit.py:48 netbox/extras/forms/filtersets.py:75 +#: extras/forms/bulk_edit.py:48 extras/forms/filtersets.py:75 msgid "Must be unique" msgstr "Повинен бути унікальним" -#: netbox/extras/forms/bulk_edit.py:61 netbox/extras/forms/bulk_import.py:60 -#: netbox/extras/forms/filtersets.py:89 -#: netbox/extras/models/customfields.py:209 +#: extras/forms/bulk_edit.py:61 extras/forms/bulk_import.py:60 +#: extras/forms/filtersets.py:89 extras/models/customfields.py:209 msgid "UI visible" msgstr "Видимий інтерфейс користувача" -#: netbox/extras/forms/bulk_edit.py:66 netbox/extras/forms/bulk_import.py:66 -#: netbox/extras/forms/filtersets.py:94 -#: netbox/extras/models/customfields.py:216 +#: extras/forms/bulk_edit.py:66 extras/forms/bulk_import.py:66 +#: extras/forms/filtersets.py:94 extras/models/customfields.py:216 msgid "UI editable" msgstr "Редагований інтерфейс користувача " -#: netbox/extras/forms/bulk_edit.py:71 netbox/extras/forms/filtersets.py:97 +#: extras/forms/bulk_edit.py:71 extras/forms/filtersets.py:97 msgid "Is cloneable" msgstr "Чи можна клонувати" -#: netbox/extras/forms/bulk_edit.py:76 netbox/extras/forms/filtersets.py:104 +#: extras/forms/bulk_edit.py:76 extras/forms/filtersets.py:104 msgid "Minimum value" msgstr "Мінімальне значення" -#: netbox/extras/forms/bulk_edit.py:80 netbox/extras/forms/filtersets.py:108 +#: extras/forms/bulk_edit.py:80 extras/forms/filtersets.py:108 msgid "Maximum value" msgstr "Максимальне значення" -#: netbox/extras/forms/bulk_edit.py:84 netbox/extras/forms/filtersets.py:112 +#: extras/forms/bulk_edit.py:84 extras/forms/filtersets.py:112 msgid "Validation regex" msgstr "Регулярний вираз перевірки" -#: netbox/extras/forms/bulk_edit.py:91 netbox/extras/forms/filtersets.py:46 -#: netbox/extras/forms/model_forms.py:76 -#: netbox/templates/extras/customfield.html:70 +#: extras/forms/bulk_edit.py:91 extras/forms/filtersets.py:46 +#: extras/forms/model_forms.py:76 templates/extras/customfield.html:70 msgid "Behavior" msgstr "Поведінка" -#: netbox/extras/forms/bulk_edit.py:128 netbox/extras/forms/filtersets.py:149 +#: extras/forms/bulk_edit.py:128 extras/forms/filtersets.py:149 msgid "New window" msgstr "Нове вікно" -#: netbox/extras/forms/bulk_edit.py:137 +#: extras/forms/bulk_edit.py:137 msgid "Button class" msgstr "Клас кнопок" -#: netbox/extras/forms/bulk_edit.py:154 netbox/extras/forms/filtersets.py:187 -#: netbox/extras/models/models.py:409 +#: extras/forms/bulk_edit.py:154 extras/forms/filtersets.py:187 +#: extras/models/models.py:409 msgid "MIME type" msgstr "Тип MIME" -#: netbox/extras/forms/bulk_edit.py:159 netbox/extras/forms/filtersets.py:190 +#: extras/forms/bulk_edit.py:159 extras/forms/filtersets.py:190 msgid "File extension" msgstr "Розширення файлу" -#: netbox/extras/forms/bulk_edit.py:164 netbox/extras/forms/filtersets.py:194 +#: extras/forms/bulk_edit.py:164 extras/forms/filtersets.py:194 msgid "As attachment" msgstr "Як вкладення" -#: netbox/extras/forms/bulk_edit.py:192 netbox/extras/forms/filtersets.py:236 -#: netbox/extras/tables/tables.py:256 -#: netbox/templates/extras/savedfilter.html:29 +#: extras/forms/bulk_edit.py:192 extras/forms/filtersets.py:236 +#: extras/tables/tables.py:256 templates/extras/savedfilter.html:29 msgid "Shared" msgstr "Спільний" -#: netbox/extras/forms/bulk_edit.py:215 netbox/extras/forms/filtersets.py:265 -#: netbox/extras/models/models.py:174 +#: extras/forms/bulk_edit.py:215 extras/forms/filtersets.py:265 +#: extras/models/models.py:174 msgid "HTTP method" msgstr "метод HTTP" -#: netbox/extras/forms/bulk_edit.py:219 netbox/extras/forms/filtersets.py:259 -#: netbox/templates/extras/webhook.html:30 +#: extras/forms/bulk_edit.py:219 extras/forms/filtersets.py:259 +#: templates/extras/webhook.html:30 msgid "Payload URL" msgstr "URL-адреса корисного навантаження" -#: netbox/extras/forms/bulk_edit.py:224 netbox/extras/models/models.py:214 +#: extras/forms/bulk_edit.py:224 extras/models/models.py:214 msgid "SSL verification" msgstr "Перевірка SSL" -#: netbox/extras/forms/bulk_edit.py:227 -#: netbox/templates/extras/webhook.html:38 +#: extras/forms/bulk_edit.py:227 templates/extras/webhook.html:38 msgid "Secret" msgstr "Таємниця" -#: netbox/extras/forms/bulk_edit.py:232 +#: extras/forms/bulk_edit.py:232 msgid "CA file path" msgstr "Шляхи до файлу CA" -#: netbox/extras/forms/bulk_edit.py:253 netbox/extras/forms/bulk_import.py:192 -#: netbox/extras/forms/model_forms.py:377 +#: extras/forms/bulk_edit.py:253 extras/forms/bulk_import.py:192 +#: extras/forms/model_forms.py:377 msgid "Event types" msgstr "Типи подій" -#: netbox/extras/forms/bulk_edit.py:293 +#: extras/forms/bulk_edit.py:293 msgid "Is active" msgstr "Активний" -#: netbox/extras/forms/bulk_import.py:37 -#: netbox/extras/forms/bulk_import.py:118 -#: netbox/extras/forms/bulk_import.py:139 -#: netbox/extras/forms/bulk_import.py:162 -#: netbox/extras/forms/bulk_import.py:186 -#: netbox/extras/forms/filtersets.py:137 netbox/extras/forms/filtersets.py:224 -#: netbox/extras/forms/model_forms.py:47 -#: netbox/extras/forms/model_forms.py:205 -#: netbox/extras/forms/model_forms.py:237 -#: netbox/extras/forms/model_forms.py:278 -#: netbox/extras/forms/model_forms.py:372 -#: netbox/extras/forms/model_forms.py:489 -#: netbox/users/forms/model_forms.py:276 +#: extras/forms/bulk_import.py:37 extras/forms/bulk_import.py:118 +#: extras/forms/bulk_import.py:139 extras/forms/bulk_import.py:162 +#: extras/forms/bulk_import.py:186 extras/forms/filtersets.py:137 +#: extras/forms/filtersets.py:224 extras/forms/model_forms.py:47 +#: extras/forms/model_forms.py:205 extras/forms/model_forms.py:237 +#: extras/forms/model_forms.py:278 extras/forms/model_forms.py:372 +#: extras/forms/model_forms.py:489 users/forms/model_forms.py:276 msgid "Object types" msgstr "Типи об'єктів" -#: netbox/extras/forms/bulk_import.py:39 -#: netbox/extras/forms/bulk_import.py:120 -#: netbox/extras/forms/bulk_import.py:141 -#: netbox/extras/forms/bulk_import.py:164 -#: netbox/extras/forms/bulk_import.py:188 -#: netbox/tenancy/forms/bulk_import.py:96 +#: extras/forms/bulk_import.py:39 extras/forms/bulk_import.py:120 +#: extras/forms/bulk_import.py:141 extras/forms/bulk_import.py:164 +#: extras/forms/bulk_import.py:188 tenancy/forms/bulk_import.py:96 msgid "One or more assigned object types" msgstr "Один або кілька присвоєних типів об'єктів" -#: netbox/extras/forms/bulk_import.py:44 +#: extras/forms/bulk_import.py:44 msgid "Field data type (e.g. text, integer, etc.)" msgstr "Тип даних поля (наприклад, текст, ціле число тощо)" -#: netbox/extras/forms/bulk_import.py:47 netbox/extras/forms/filtersets.py:208 -#: netbox/extras/forms/filtersets.py:281 -#: netbox/extras/forms/model_forms.py:304 -#: netbox/extras/forms/model_forms.py:341 -#: netbox/tenancy/forms/filtersets.py:92 +#: extras/forms/bulk_import.py:47 extras/forms/filtersets.py:208 +#: extras/forms/filtersets.py:281 extras/forms/model_forms.py:304 +#: extras/forms/model_forms.py:341 tenancy/forms/filtersets.py:92 msgid "Object type" msgstr "Тип об'єкта" -#: netbox/extras/forms/bulk_import.py:50 +#: extras/forms/bulk_import.py:50 msgid "Object type (for object or multi-object fields)" msgstr "Тип об'єкта (для об'єктів або полів з кількома об'єктами)" -#: netbox/extras/forms/bulk_import.py:53 netbox/extras/forms/filtersets.py:84 +#: extras/forms/bulk_import.py:53 extras/forms/filtersets.py:84 msgid "Choice set" msgstr "Набір для вибору" -#: netbox/extras/forms/bulk_import.py:57 +#: extras/forms/bulk_import.py:57 msgid "Choice set (for selection fields)" msgstr "Набір для вибору (для полів виділення)" -#: netbox/extras/forms/bulk_import.py:63 +#: extras/forms/bulk_import.py:63 msgid "Whether the custom field is displayed in the UI" msgstr "Чи відображатиметься користувацьке поле в інтерфейсі користувача" -#: netbox/extras/forms/bulk_import.py:69 +#: extras/forms/bulk_import.py:69 msgid "Whether the custom field is editable in the UI" msgstr "Чи можна редагувати користувацьке поле в інтерфейсі користувача" -#: netbox/extras/forms/bulk_import.py:85 +#: extras/forms/bulk_import.py:85 msgid "The base set of predefined choices to use (if any)" msgstr "" "Базовий набір попередньо визначених варіантів для використання (якщо є)" -#: netbox/extras/forms/bulk_import.py:91 +#: extras/forms/bulk_import.py:91 msgid "" "Quoted string of comma-separated field choices with optional labels " "separated by colon: \"choice1:First Choice,choice2:Second Choice\"" @@ -7753,200 +7220,184 @@ msgstr "" "Цитуючий рядок параметрів полів, розділених комами, з необов'язковими " "мітками, розділеними двокрапкою: «Вибір1:Перший вибір, Вибір2:другий вибір»" -#: netbox/extras/forms/bulk_import.py:123 netbox/extras/models/models.py:323 +#: extras/forms/bulk_import.py:123 extras/models/models.py:323 msgid "button class" msgstr "клас кнопок" -#: netbox/extras/forms/bulk_import.py:126 netbox/extras/models/models.py:327 +#: extras/forms/bulk_import.py:126 extras/models/models.py:327 msgid "" "The class of the first link in a group will be used for the dropdown button" msgstr "" "Клас першого посилання в групі буде використовуватися для спадної кнопки" -#: netbox/extras/forms/bulk_import.py:193 +#: extras/forms/bulk_import.py:193 msgid "The event type(s) which will trigger this rule" msgstr "Тип(и) події, які ініціюватимуть це правило" -#: netbox/extras/forms/bulk_import.py:196 +#: extras/forms/bulk_import.py:196 msgid "Action object" msgstr "Об'єкт дії" -#: netbox/extras/forms/bulk_import.py:198 +#: extras/forms/bulk_import.py:198 msgid "Webhook name or script as dotted path module.Class" msgstr "Ім'я вебхука або скрипт у вигляді пунктирного шляху module.Class" -#: netbox/extras/forms/bulk_import.py:219 +#: extras/forms/bulk_import.py:219 #, python-brace-format msgid "Webhook {name} not found" msgstr "Веб-хук {name} не знайдено" -#: netbox/extras/forms/bulk_import.py:228 +#: extras/forms/bulk_import.py:228 #, python-brace-format msgid "Script {name} not found" msgstr "Сценарій {name} не знайдено" -#: netbox/extras/forms/bulk_import.py:244 +#: extras/forms/bulk_import.py:244 msgid "Assigned object type" msgstr "Призначений тип об'єкта" -#: netbox/extras/forms/bulk_import.py:249 +#: extras/forms/bulk_import.py:249 msgid "The classification of entry" msgstr "Класифікація вступу" -#: netbox/extras/forms/bulk_import.py:261 -#: netbox/extras/forms/model_forms.py:320 netbox/netbox/navigation/menu.py:390 -#: netbox/templates/extras/notificationgroup.html:41 -#: netbox/templates/users/group.html:29 netbox/users/forms/model_forms.py:236 -#: netbox/users/forms/model_forms.py:248 netbox/users/forms/model_forms.py:300 -#: netbox/users/tables.py:102 +#: extras/forms/bulk_import.py:261 extras/forms/model_forms.py:320 +#: netbox/navigation/menu.py:390 templates/extras/notificationgroup.html:41 +#: templates/users/group.html:29 users/forms/model_forms.py:236 +#: users/forms/model_forms.py:248 users/forms/model_forms.py:300 +#: users/tables.py:102 msgid "Users" msgstr "Користувачі" -#: netbox/extras/forms/bulk_import.py:265 +#: extras/forms/bulk_import.py:265 msgid "User names separated by commas, encased with double quotes" msgstr "Імена користувачів, розділені комами, укладені подвійними лапками" -#: netbox/extras/forms/bulk_import.py:268 -#: netbox/extras/forms/model_forms.py:315 netbox/netbox/navigation/menu.py:410 -#: netbox/templates/extras/notificationgroup.html:31 -#: netbox/users/forms/model_forms.py:181 netbox/users/forms/model_forms.py:193 -#: netbox/users/forms/model_forms.py:305 netbox/users/tables.py:35 -#: netbox/users/tables.py:106 +#: extras/forms/bulk_import.py:268 extras/forms/model_forms.py:315 +#: netbox/navigation/menu.py:410 templates/extras/notificationgroup.html:31 +#: users/forms/model_forms.py:181 users/forms/model_forms.py:193 +#: users/forms/model_forms.py:305 users/tables.py:35 users/tables.py:106 msgid "Groups" msgstr "Групи" -#: netbox/extras/forms/bulk_import.py:272 +#: extras/forms/bulk_import.py:272 msgid "Group names separated by commas, encased with double quotes" msgstr "Імена груп, розділені комами, укладені подвійними лапками" -#: netbox/extras/forms/filtersets.py:52 netbox/extras/forms/model_forms.py:56 +#: extras/forms/filtersets.py:52 extras/forms/model_forms.py:56 msgid "Related object type" msgstr "Пов'язаний тип об'єкта" -#: netbox/extras/forms/filtersets.py:57 +#: extras/forms/filtersets.py:57 msgid "Field type" msgstr "Тип поля" -#: netbox/extras/forms/filtersets.py:120 -#: netbox/extras/forms/model_forms.py:157 netbox/extras/tables/tables.py:91 -#: netbox/templates/generic/bulk_import.html:154 +#: extras/forms/filtersets.py:120 extras/forms/model_forms.py:157 +#: extras/tables/tables.py:91 templates/generic/bulk_import.html:154 msgid "Choices" msgstr "Вибір" -#: netbox/extras/forms/filtersets.py:164 netbox/extras/forms/filtersets.py:319 -#: netbox/extras/forms/filtersets.py:408 -#: netbox/extras/forms/model_forms.py:572 netbox/templates/core/job.html:96 -#: netbox/templates/extras/eventrule.html:84 +#: extras/forms/filtersets.py:164 extras/forms/filtersets.py:319 +#: extras/forms/filtersets.py:408 extras/forms/model_forms.py:572 +#: templates/core/job.html:96 templates/extras/eventrule.html:84 msgid "Data" msgstr "Дані" -#: netbox/extras/forms/filtersets.py:175 netbox/extras/forms/filtersets.py:333 -#: netbox/extras/forms/filtersets.py:418 netbox/netbox/choices.py:130 -#: netbox/utilities/forms/bulk_import.py:26 +#: extras/forms/filtersets.py:175 extras/forms/filtersets.py:333 +#: extras/forms/filtersets.py:418 netbox/choices.py:130 +#: utilities/forms/bulk_import.py:26 msgid "Data file" msgstr "Файл даних" -#: netbox/extras/forms/filtersets.py:183 +#: extras/forms/filtersets.py:183 msgid "Content types" msgstr "Типи контенту" -#: netbox/extras/forms/filtersets.py:255 netbox/extras/models/models.py:179 +#: extras/forms/filtersets.py:255 extras/models/models.py:179 msgid "HTTP content type" msgstr "Тип вмісту HTTP" -#: netbox/extras/forms/filtersets.py:286 +#: extras/forms/filtersets.py:286 msgid "Event type" msgstr "Тип події" -#: netbox/extras/forms/filtersets.py:291 +#: extras/forms/filtersets.py:291 msgid "Action type" msgstr "Тип дії" -#: netbox/extras/forms/filtersets.py:307 +#: extras/forms/filtersets.py:307 msgid "Tagged object type" msgstr "Тип об'єкта з позначкою" -#: netbox/extras/forms/filtersets.py:312 +#: extras/forms/filtersets.py:312 msgid "Allowed object type" msgstr "Дозволений тип об'єкта" -#: netbox/extras/forms/filtersets.py:341 -#: netbox/extras/forms/model_forms.py:507 netbox/netbox/navigation/menu.py:18 +#: extras/forms/filtersets.py:341 extras/forms/model_forms.py:507 +#: netbox/navigation/menu.py:18 msgid "Regions" msgstr "Регіони" -#: netbox/extras/forms/filtersets.py:346 -#: netbox/extras/forms/model_forms.py:512 +#: extras/forms/filtersets.py:346 extras/forms/model_forms.py:512 msgid "Site groups" msgstr "Групи тех. майданчиків" -#: netbox/extras/forms/filtersets.py:356 -#: netbox/extras/forms/model_forms.py:522 netbox/netbox/navigation/menu.py:20 -#: netbox/templates/dcim/site.html:127 +#: extras/forms/filtersets.py:356 extras/forms/model_forms.py:522 +#: netbox/navigation/menu.py:20 templates/dcim/site.html:127 msgid "Locations" msgstr "Локації" -#: netbox/extras/forms/filtersets.py:361 -#: netbox/extras/forms/model_forms.py:527 +#: extras/forms/filtersets.py:361 extras/forms/model_forms.py:527 msgid "Device types" msgstr "Типи пристроїв" -#: netbox/extras/forms/filtersets.py:366 -#: netbox/extras/forms/model_forms.py:532 +#: extras/forms/filtersets.py:366 extras/forms/model_forms.py:532 msgid "Roles" msgstr "Ролі" -#: netbox/extras/forms/filtersets.py:376 -#: netbox/extras/forms/model_forms.py:542 +#: extras/forms/filtersets.py:376 extras/forms/model_forms.py:542 msgid "Cluster types" msgstr "Типи кластерів" -#: netbox/extras/forms/filtersets.py:381 -#: netbox/extras/forms/model_forms.py:547 +#: extras/forms/filtersets.py:381 extras/forms/model_forms.py:547 msgid "Cluster groups" msgstr "Кластерні групи" -#: netbox/extras/forms/filtersets.py:386 -#: netbox/extras/forms/model_forms.py:552 netbox/netbox/navigation/menu.py:255 -#: netbox/netbox/navigation/menu.py:257 -#: netbox/templates/virtualization/clustertype.html:30 -#: netbox/virtualization/tables/clusters.py:23 -#: netbox/virtualization/tables/clusters.py:45 +#: extras/forms/filtersets.py:386 extras/forms/model_forms.py:552 +#: netbox/navigation/menu.py:255 netbox/navigation/menu.py:257 +#: templates/virtualization/clustertype.html:30 +#: virtualization/tables/clusters.py:23 virtualization/tables/clusters.py:45 msgid "Clusters" msgstr "Кластери" -#: netbox/extras/forms/filtersets.py:391 -#: netbox/extras/forms/model_forms.py:557 +#: extras/forms/filtersets.py:391 extras/forms/model_forms.py:557 msgid "Tenant groups" msgstr "Групи орендарів" -#: netbox/extras/forms/model_forms.py:49 +#: extras/forms/model_forms.py:49 msgid "The type(s) of object that have this custom field" msgstr "Тип(и) об'єкта, які мають користувацьке поле" -#: netbox/extras/forms/model_forms.py:52 +#: extras/forms/model_forms.py:52 msgid "Default value" msgstr "Значення за замовчуванням" -#: netbox/extras/forms/model_forms.py:58 +#: extras/forms/model_forms.py:58 msgid "Type of the related object (for object/multi-object fields only)" msgstr "Тип пов'язаного об'єкта (лише для об'єктних/багатооб'єктних полів)" -#: netbox/extras/forms/model_forms.py:61 -#: netbox/templates/extras/customfield.html:60 +#: extras/forms/model_forms.py:61 templates/extras/customfield.html:60 msgid "Related object filter" msgstr "Фільтр пов'язаних об'єктів" -#: netbox/extras/forms/model_forms.py:63 +#: extras/forms/model_forms.py:63 msgid "Specify query parameters as a JSON object." msgstr "Вкажіть параметри запиту як об'єкт JSON." -#: netbox/extras/forms/model_forms.py:73 -#: netbox/templates/extras/customfield.html:10 +#: extras/forms/model_forms.py:73 templates/extras/customfield.html:10 msgid "Custom Field" msgstr "Користувацьке поле" -#: netbox/extras/forms/model_forms.py:85 +#: extras/forms/model_forms.py:85 msgid "" "The type of data stored in this field. For object/multi-object fields, " "select the related object type below." @@ -7954,7 +7405,7 @@ msgstr "" "Тип даних, що зберігаються в цьому полі. Для полів об'єкт/багатооб'єкт " "виберіть відповідний тип об'єкта нижче." -#: netbox/extras/forms/model_forms.py:88 +#: extras/forms/model_forms.py:88 msgid "" "This will be displayed as help text for the form field. Markdown is " "supported." @@ -7962,11 +7413,11 @@ msgstr "" "Це відображатиметься як текст довідки для поля форми. Markdown " "підтримується." -#: netbox/extras/forms/model_forms.py:143 +#: extras/forms/model_forms.py:143 msgid "Related Object" msgstr "Пов'язаний об'єкт" -#: netbox/extras/forms/model_forms.py:169 +#: extras/forms/model_forms.py:169 msgid "" "Enter one choice per line. An optional label may be specified for each " "choice by appending it with a colon. Example:" @@ -7974,16 +7425,15 @@ msgstr "" "Введіть один вибір на рядок. Додаткову мітку можна вказати для кожного " "вибору, додавши її двокрапкою. Приклад:" -#: netbox/extras/forms/model_forms.py:212 -#: netbox/templates/extras/customlink.html:10 +#: extras/forms/model_forms.py:212 templates/extras/customlink.html:10 msgid "Custom Link" msgstr "Користувацьке посилання" -#: netbox/extras/forms/model_forms.py:214 +#: extras/forms/model_forms.py:214 msgid "Templates" msgstr "Шаблони" -#: netbox/extras/forms/model_forms.py:226 +#: extras/forms/model_forms.py:226 #, python-brace-format msgid "" "Jinja2 template code for the link text. Reference the object as {example}. " @@ -7992,7 +7442,7 @@ msgstr "" "Код шаблону Jinja2 для тексту посилання. Посилання на об'єкт як {example}. " "Посилання, які відображаються як порожній текст, не відображатимуться." -#: netbox/extras/forms/model_forms.py:230 +#: extras/forms/model_forms.py:230 #, python-brace-format msgid "" "Jinja2 template code for the link URL. Reference the object as {example}." @@ -8000,58 +7450,52 @@ msgstr "" "Код шаблону Jinja2 для URL-адреси посилання. Посилання на об'єкт як " "{example}." -#: netbox/extras/forms/model_forms.py:241 -#: netbox/extras/forms/model_forms.py:624 +#: extras/forms/model_forms.py:241 extras/forms/model_forms.py:624 msgid "Template code" msgstr "Код шаблону" -#: netbox/extras/forms/model_forms.py:247 -#: netbox/templates/extras/exporttemplate.html:12 +#: extras/forms/model_forms.py:247 templates/extras/exporttemplate.html:12 msgid "Export Template" msgstr "Шаблон експорту" -#: netbox/extras/forms/model_forms.py:249 +#: extras/forms/model_forms.py:249 msgid "Rendering" msgstr "Відтворювати" -#: netbox/extras/forms/model_forms.py:263 -#: netbox/extras/forms/model_forms.py:649 +#: extras/forms/model_forms.py:263 extras/forms/model_forms.py:649 msgid "Template content is populated from the remote source selected below." msgstr "Вміст шаблону заповнюється з віддаленого джерела, вибраного нижче." -#: netbox/extras/forms/model_forms.py:270 -#: netbox/extras/forms/model_forms.py:656 +#: extras/forms/model_forms.py:270 extras/forms/model_forms.py:656 msgid "Must specify either local content or a data file" msgstr "Повинен вказати локальний вміст або файл даних" -#: netbox/extras/forms/model_forms.py:284 netbox/netbox/forms/mixins.py:70 -#: netbox/templates/extras/savedfilter.html:10 +#: extras/forms/model_forms.py:284 netbox/forms/mixins.py:70 +#: templates/extras/savedfilter.html:10 msgid "Saved Filter" msgstr "Збережений фільтр" -#: netbox/extras/forms/model_forms.py:334 +#: extras/forms/model_forms.py:334 msgid "A notification group specify at least one user or group." msgstr "Група сповіщень вказує принаймні одного користувача або групи." -#: netbox/extras/forms/model_forms.py:356 -#: netbox/templates/extras/webhook.html:23 +#: extras/forms/model_forms.py:356 templates/extras/webhook.html:23 msgid "HTTP Request" msgstr "Запит HTTP" -#: netbox/extras/forms/model_forms.py:358 -#: netbox/templates/extras/webhook.html:44 +#: extras/forms/model_forms.py:358 templates/extras/webhook.html:44 msgid "SSL" msgstr "SSL" -#: netbox/extras/forms/model_forms.py:380 +#: extras/forms/model_forms.py:380 msgid "Action choice" msgstr "Вибір дії" -#: netbox/extras/forms/model_forms.py:385 +#: extras/forms/model_forms.py:385 msgid "Enter conditions in JSON format." msgstr "Введіть умови в JSON форматі." -#: netbox/extras/forms/model_forms.py:389 +#: extras/forms/model_forms.py:389 msgid "" "Enter parameters to pass to the action in JSON format." @@ -8059,112 +7503,110 @@ msgstr "" "Введіть параметри для переходу до дії у JSON форматі." -#: netbox/extras/forms/model_forms.py:394 -#: netbox/templates/extras/eventrule.html:10 +#: extras/forms/model_forms.py:394 templates/extras/eventrule.html:10 msgid "Event Rule" msgstr "Правило події" -#: netbox/extras/forms/model_forms.py:395 +#: extras/forms/model_forms.py:395 msgid "Triggers" msgstr "Тригери" -#: netbox/extras/forms/model_forms.py:442 +#: extras/forms/model_forms.py:442 msgid "Notification group" msgstr "Група повідомлень" -#: netbox/extras/forms/model_forms.py:562 netbox/netbox/navigation/menu.py:26 -#: netbox/tenancy/tables/tenants.py:22 +#: extras/forms/model_forms.py:562 netbox/navigation/menu.py:26 +#: tenancy/tables/tenants.py:22 msgid "Tenants" msgstr "Орендарі" -#: netbox/extras/forms/model_forms.py:606 +#: extras/forms/model_forms.py:606 msgid "Data is populated from the remote source selected below." msgstr "Дані заповнюються з віддаленого джерела, вибраного нижче." -#: netbox/extras/forms/model_forms.py:612 +#: extras/forms/model_forms.py:612 msgid "Must specify either local data or a data file" msgstr "Необхідно вказати локальні дані або файл даних" -#: netbox/extras/forms/model_forms.py:631 -#: netbox/templates/core/datafile.html:55 +#: extras/forms/model_forms.py:631 templates/core/datafile.html:55 msgid "Content" msgstr "Зміст" -#: netbox/extras/forms/reports.py:17 netbox/extras/forms/scripts.py:23 +#: extras/forms/reports.py:17 extras/forms/scripts.py:23 msgid "Schedule at" msgstr "Графік роботи в" -#: netbox/extras/forms/reports.py:18 +#: extras/forms/reports.py:18 msgid "Schedule execution of report to a set time" msgstr "Заплануйте виконання звіту до встановленого часу" -#: netbox/extras/forms/reports.py:23 netbox/extras/forms/scripts.py:29 +#: extras/forms/reports.py:23 extras/forms/scripts.py:29 msgid "Recurs every" msgstr "Повторюється кожного" -#: netbox/extras/forms/reports.py:27 +#: extras/forms/reports.py:27 msgid "Interval at which this report is re-run (in minutes)" msgstr "Інтервал, з яким цей звіт повторно виконується (у хвилині)" -#: netbox/extras/forms/reports.py:35 netbox/extras/forms/scripts.py:41 +#: extras/forms/reports.py:35 extras/forms/scripts.py:41 #, python-brace-format msgid " (current time: {now})" msgstr " (поточний час: {now})" -#: netbox/extras/forms/reports.py:45 netbox/extras/forms/scripts.py:51 +#: extras/forms/reports.py:45 extras/forms/scripts.py:51 msgid "Scheduled time must be in the future." msgstr "Запланований час повинен бути в майбутньому." -#: netbox/extras/forms/scripts.py:17 +#: extras/forms/scripts.py:17 msgid "Commit changes" msgstr "Здійснити зміни" -#: netbox/extras/forms/scripts.py:18 +#: extras/forms/scripts.py:18 msgid "Commit changes to the database (uncheck for a dry-run)" msgstr "" "Здійснити внесення змін до бази даних (зніміть прапорець для сухого запуску)" -#: netbox/extras/forms/scripts.py:24 +#: extras/forms/scripts.py:24 msgid "Schedule execution of script to a set time" msgstr "Заплануйте виконання сценарію до встановленого часу" -#: netbox/extras/forms/scripts.py:33 +#: extras/forms/scripts.py:33 msgid "Interval at which this script is re-run (in minutes)" msgstr "Інтервал повторного запуску сценарію (у хвилині)" -#: netbox/extras/jobs.py:49 +#: extras/jobs.py:49 msgid "Database changes have been reverted automatically." msgstr "Зміни бази даних були автоматично скасовані." -#: netbox/extras/jobs.py:56 +#: extras/jobs.py:55 msgid "Script aborted with error: " msgstr "Скрипт перерваний з помилкою: " -#: netbox/extras/jobs.py:66 +#: extras/jobs.py:65 msgid "An exception occurred: " msgstr "Виняток стався: " -#: netbox/extras/jobs.py:71 +#: extras/jobs.py:70 msgid "Database changes have been reverted due to error." msgstr "Зміни бази даних були скасовані через помилку." -#: netbox/extras/management/commands/reindex.py:66 +#: extras/management/commands/reindex.py:66 msgid "No indexers found!" msgstr "Індексаторів не знайдено!" -#: netbox/extras/models/configs.py:130 +#: extras/models/configs.py:130 msgid "config context" msgstr "контекст конфігурації" -#: netbox/extras/models/configs.py:131 +#: extras/models/configs.py:131 msgid "config contexts" msgstr "контексти конфігурації" -#: netbox/extras/models/configs.py:149 netbox/extras/models/configs.py:205 +#: extras/models/configs.py:149 extras/models/configs.py:205 msgid "JSON data must be in object form. Example:" msgstr "Дані JSON повинні бути у формі об'єкта. Приклад:" -#: netbox/extras/models/configs.py:169 +#: extras/models/configs.py:169 msgid "" "Local config context data takes precedence over source contexts in the final" " rendered config context" @@ -8172,19 +7614,19 @@ msgstr "" "Дані контексту локальної конфігурації мають перевагу над вихідними " "контекстами в кінцевому контексті конфігурації" -#: netbox/extras/models/configs.py:224 +#: extras/models/configs.py:224 msgid "template code" msgstr "код шаблону" -#: netbox/extras/models/configs.py:225 +#: extras/models/configs.py:225 msgid "Jinja2 template code." msgstr "Код шаблону Jinja2." -#: netbox/extras/models/configs.py:228 +#: extras/models/configs.py:228 msgid "environment parameters" msgstr "параметри середовища" -#: netbox/extras/models/configs.py:233 +#: extras/models/configs.py:233 msgid "" "Any additional" @@ -8194,40 +7636,40 @@ msgstr "" "href=\"https://jinja.palletsprojects.com/en/3.1.x/api/#jinja2.Environment\">додаткові" " параметри пройти при побудові середовища Jinja2." -#: netbox/extras/models/configs.py:240 +#: extras/models/configs.py:240 msgid "config template" msgstr "шаблон конфігурації" -#: netbox/extras/models/configs.py:241 +#: extras/models/configs.py:241 msgid "config templates" msgstr "шаблони конфігурації" -#: netbox/extras/models/customfields.py:75 +#: extras/models/customfields.py:75 msgid "The object(s) to which this field applies." msgstr "Об'єкт (и), до яких застосовується це поле." -#: netbox/extras/models/customfields.py:82 +#: extras/models/customfields.py:82 msgid "The type of data this custom field holds" msgstr "Тип даних, які містить користувацьке поле" -#: netbox/extras/models/customfields.py:89 +#: extras/models/customfields.py:89 msgid "The type of NetBox object this field maps to (for object fields)" msgstr "" "Тип об'єкта NetBox, з яким співвідноситься дане поле (для полів об'єкта)" -#: netbox/extras/models/customfields.py:95 +#: extras/models/customfields.py:95 msgid "Internal field name" msgstr "Ім'я внутрішнього поля" -#: netbox/extras/models/customfields.py:99 +#: extras/models/customfields.py:99 msgid "Only alphanumeric characters and underscores are allowed." msgstr "Дозволені лише буквено-цифрові символи та підкреслення." -#: netbox/extras/models/customfields.py:104 +#: extras/models/customfields.py:104 msgid "Double underscores are not permitted in custom field names." msgstr "Подвійне підкреслення не дозволено у користувацьких назвах полів." -#: netbox/extras/models/customfields.py:115 +#: extras/models/customfields.py:115 msgid "" "Name of the field as displayed to users (if not provided, 'the field's name " "will be used)" @@ -8235,19 +7677,19 @@ msgstr "" "Назва поля, яке відображається користувачам (якщо не вказано, буде " "використано 'ім'я поля')" -#: netbox/extras/models/customfields.py:119 netbox/extras/models/models.py:317 +#: extras/models/customfields.py:119 extras/models/models.py:317 msgid "group name" msgstr "назва групи" -#: netbox/extras/models/customfields.py:122 +#: extras/models/customfields.py:122 msgid "Custom fields within the same group will be displayed together" msgstr "Користувацькі поля в одній групі відображатимуться разом" -#: netbox/extras/models/customfields.py:130 +#: extras/models/customfields.py:130 msgid "required" msgstr "обов'язковий" -#: netbox/extras/models/customfields.py:132 +#: extras/models/customfields.py:132 msgid "" "This field is required when creating new objects or editing an existing " "object." @@ -8255,19 +7697,19 @@ msgstr "" "Це поле обов'язкове для створення нових об'єктів або редагування існуючого " "об'єкта." -#: netbox/extras/models/customfields.py:135 +#: extras/models/customfields.py:135 msgid "must be unique" msgstr "має бути унікальним" -#: netbox/extras/models/customfields.py:137 +#: extras/models/customfields.py:137 msgid "The value of this field must be unique for the assigned object" msgstr "Значення цього поля має бути унікальним для призначеного об'єкта" -#: netbox/extras/models/customfields.py:140 +#: extras/models/customfields.py:140 msgid "search weight" msgstr "вага пошуку" -#: netbox/extras/models/customfields.py:143 +#: extras/models/customfields.py:143 msgid "" "Weighting for search. Lower values are considered more important. Fields " "with a search weight of zero will be ignored." @@ -8275,11 +7717,11 @@ msgstr "" "Зважування для пошуку. Більш важливими вважаються нижчі значення. Поля з " "вагою пошуку нуль ігноруватимуться." -#: netbox/extras/models/customfields.py:148 +#: extras/models/customfields.py:148 msgid "filter logic" msgstr "логіка фільтра" -#: netbox/extras/models/customfields.py:152 +#: extras/models/customfields.py:152 msgid "" "Loose matches any instance of a given string; exact matches the entire " "field." @@ -8287,11 +7729,11 @@ msgstr "" "Вільне відповідає будь-якому екземпляру заданого рядка; точно - відповідає " "всьому полю." -#: netbox/extras/models/customfields.py:155 +#: extras/models/customfields.py:155 msgid "default" msgstr "за замовчуванням" -#: netbox/extras/models/customfields.py:159 +#: extras/models/customfields.py:159 msgid "" "Default value for the field (must be a JSON value). Encapsulate strings with" " double quotes (e.g. \"Foo\")." @@ -8299,7 +7741,7 @@ msgstr "" "Значення за замовчуванням для поля (має бути значення JSON). Інкапсулювати " "рядки з подвійними лапками (наприклад, \"Foo\")." -#: netbox/extras/models/customfields.py:166 +#: extras/models/customfields.py:166 msgid "" "Filter the object selection choices using a query_params dict (must be a " "JSON value).Encapsulate strings with double quotes (e.g. \"Foo\")." @@ -8308,35 +7750,35 @@ msgstr "" "(має бути значення JSON). Інкапсулюйте рядки подвійними лапками (наприклад, " "\"Foo\")." -#: netbox/extras/models/customfields.py:172 +#: extras/models/customfields.py:172 msgid "display weight" msgstr "відображення ваги" -#: netbox/extras/models/customfields.py:173 +#: extras/models/customfields.py:173 msgid "Fields with higher weights appear lower in a form." msgstr "Поля з більшою вагою відображаються нижче у формі." -#: netbox/extras/models/customfields.py:178 +#: extras/models/customfields.py:178 msgid "minimum value" msgstr "мінімальне значення" -#: netbox/extras/models/customfields.py:179 +#: extras/models/customfields.py:179 msgid "Minimum allowed value (for numeric fields)" msgstr "Мінімальне дозволене значення (для числових полів)" -#: netbox/extras/models/customfields.py:184 +#: extras/models/customfields.py:184 msgid "maximum value" msgstr "максимальне значення" -#: netbox/extras/models/customfields.py:185 +#: extras/models/customfields.py:185 msgid "Maximum allowed value (for numeric fields)" msgstr "Максимально дозволене значення (для числових полів)" -#: netbox/extras/models/customfields.py:191 +#: extras/models/customfields.py:191 msgid "validation regex" msgstr "регулярний вираз перевірки" -#: netbox/extras/models/customfields.py:193 +#: extras/models/customfields.py:193 #, python-brace-format msgid "" "Regular expression to enforce on text field values. Use ^ and $ to force " @@ -8347,192 +7789,190 @@ msgstr "" "і $ для примусового збігу всього рядка. Наприклад, ^ [А-Z]{3}$ " "обмежить значення рівно трьома великими літерами." -#: netbox/extras/models/customfields.py:201 +#: extras/models/customfields.py:201 msgid "choice set" msgstr "набір вибору" -#: netbox/extras/models/customfields.py:210 +#: extras/models/customfields.py:210 msgid "Specifies whether the custom field is displayed in the UI" msgstr "" "Визначає, чи відображатиметься користувацьке поле в інтерфейсі користувача" -#: netbox/extras/models/customfields.py:217 +#: extras/models/customfields.py:217 msgid "Specifies whether the custom field value can be edited in the UI" msgstr "" "Визначає, чи можна редагувати значення користувацького поля в інтерфейсі" -#: netbox/extras/models/customfields.py:221 +#: extras/models/customfields.py:221 msgid "is cloneable" msgstr "є клонованим" -#: netbox/extras/models/customfields.py:222 +#: extras/models/customfields.py:222 msgid "Replicate this value when cloning objects" msgstr "Повторюйте це значення під час клонування об'єктів" -#: netbox/extras/models/customfields.py:239 +#: extras/models/customfields.py:239 msgid "custom field" msgstr "користувацьке поле" -#: netbox/extras/models/customfields.py:240 +#: extras/models/customfields.py:240 msgid "custom fields" msgstr "користувацькі поля" -#: netbox/extras/models/customfields.py:329 +#: extras/models/customfields.py:329 #, python-brace-format msgid "Invalid default value \"{value}\": {error}" msgstr "Невірне значення за замовчуванням \"{value}\": {error}" -#: netbox/extras/models/customfields.py:336 +#: extras/models/customfields.py:336 msgid "A minimum value may be set only for numeric fields" msgstr "Мінімальне значення може бути встановлено лише для числових полів" -#: netbox/extras/models/customfields.py:338 +#: extras/models/customfields.py:338 msgid "A maximum value may be set only for numeric fields" msgstr "Максимальне значення може бути встановлено лише для числових полів" -#: netbox/extras/models/customfields.py:348 +#: extras/models/customfields.py:348 msgid "" "Regular expression validation is supported only for text and URL fields" msgstr "" "Перевірка регулярних виразів підтримується лише для текстових та URL полів" -#: netbox/extras/models/customfields.py:354 +#: extras/models/customfields.py:354 msgid "Uniqueness cannot be enforced for boolean fields" msgstr "Унікальність не може бути застосована для булевих полів" -#: netbox/extras/models/customfields.py:364 +#: extras/models/customfields.py:364 msgid "Selection fields must specify a set of choices." msgstr "Поля виділення повинні вказувати набір варіантів." -#: netbox/extras/models/customfields.py:368 +#: extras/models/customfields.py:368 msgid "Choices may be set only on selection fields." msgstr "Вибір можна встановити лише для полів виділення." -#: netbox/extras/models/customfields.py:375 +#: extras/models/customfields.py:375 msgid "Object fields must define an object type." msgstr "Поля об'єкта повинні визначати тип об'єкта." -#: netbox/extras/models/customfields.py:379 +#: extras/models/customfields.py:379 #, python-brace-format msgid "{type} fields may not define an object type." msgstr "{type} поля не можуть визначати тип об'єкта." -#: netbox/extras/models/customfields.py:386 +#: extras/models/customfields.py:386 msgid "A related object filter can be defined only for object fields." msgstr "" "Пов'язаний об'єктний фільтр може бути визначений лише для полів об'єктів." -#: netbox/extras/models/customfields.py:390 +#: extras/models/customfields.py:390 msgid "Filter must be defined as a dictionary mapping attributes to values." msgstr "" "Фільтр повинен бути визначений як словник, що відображає атрибути зі " "значеннями." -#: netbox/extras/models/customfields.py:469 +#: extras/models/customfields.py:469 msgid "True" msgstr "Iстинна" -#: netbox/extras/models/customfields.py:470 +#: extras/models/customfields.py:470 msgid "False" msgstr "Хибно" -#: netbox/extras/models/customfields.py:560 +#: extras/models/customfields.py:560 #, python-brace-format msgid "Values must match this regex: {regex}" msgstr "Значення повинні відповідати цьому регексу: {regex}" -#: netbox/extras/models/customfields.py:654 +#: extras/models/customfields.py:654 msgid "Value must be a string." msgstr "Значення має бути рядком." -#: netbox/extras/models/customfields.py:656 +#: extras/models/customfields.py:656 #, python-brace-format msgid "Value must match regex '{regex}'" msgstr "Значення має збігатися з регулярним виразом '{regex}'" -#: netbox/extras/models/customfields.py:661 +#: extras/models/customfields.py:661 msgid "Value must be an integer." msgstr "Значення має бути цілим числом." -#: netbox/extras/models/customfields.py:664 -#: netbox/extras/models/customfields.py:679 +#: extras/models/customfields.py:664 extras/models/customfields.py:679 #, python-brace-format msgid "Value must be at least {minimum}" msgstr "Значення повинно бути меньш, ніж {minimum}" -#: netbox/extras/models/customfields.py:668 -#: netbox/extras/models/customfields.py:683 +#: extras/models/customfields.py:668 extras/models/customfields.py:683 #, python-brace-format msgid "Value must not exceed {maximum}" msgstr "Значення не повинно перевищувати {maximum}" -#: netbox/extras/models/customfields.py:676 +#: extras/models/customfields.py:676 msgid "Value must be a decimal." msgstr "Значення має бути десятковим." -#: netbox/extras/models/customfields.py:688 +#: extras/models/customfields.py:688 msgid "Value must be true or false." msgstr "Значення має бути істинним або хибним." -#: netbox/extras/models/customfields.py:696 +#: extras/models/customfields.py:696 msgid "Date values must be in ISO 8601 format (YYYY-MM-DD)." msgstr "Значення дати повинні бути у форматі ISO 8601 (РРРР-ММ-ДД)." -#: netbox/extras/models/customfields.py:705 +#: extras/models/customfields.py:705 msgid "Date and time values must be in ISO 8601 format (YYYY-MM-DD HH:MM:SS)." msgstr "" "Значення дати та часу повинні бути у форматі ISO 8601 (РРРР-ММ-ДД ГГ:ХХ:СС)." -#: netbox/extras/models/customfields.py:712 +#: extras/models/customfields.py:712 #, python-brace-format msgid "Invalid choice ({value}) for choice set {choiceset}." msgstr "Невірний вибір ({value}) для набору варіантів {choiceset}." -#: netbox/extras/models/customfields.py:722 +#: extras/models/customfields.py:722 #, python-brace-format msgid "Invalid choice(s) ({value}) for choice set {choiceset}." msgstr "Невірний вибір(и) ({value}) для набору варіантів {choiceset}." -#: netbox/extras/models/customfields.py:731 +#: extras/models/customfields.py:731 #, python-brace-format msgid "Value must be an object ID, not {type}" msgstr "Значення має бути ідентифікатором об'єкта, а не {type}" -#: netbox/extras/models/customfields.py:737 +#: extras/models/customfields.py:737 #, python-brace-format msgid "Value must be a list of object IDs, not {type}" msgstr "Значення має бути списком ідентифікаторів об'єктів, а не {type}" -#: netbox/extras/models/customfields.py:741 +#: extras/models/customfields.py:741 #, python-brace-format msgid "Found invalid object ID: {id}" msgstr "Знайдено недійсний ідентифікатор об'єкта: {id}" -#: netbox/extras/models/customfields.py:744 +#: extras/models/customfields.py:744 msgid "Required field cannot be empty." msgstr "Обов'язкове поле не може бути порожнім." -#: netbox/extras/models/customfields.py:763 +#: extras/models/customfields.py:763 msgid "Base set of predefined choices (optional)" msgstr "Базовий набір попередньо визначених варіантів (необов'язково)" -#: netbox/extras/models/customfields.py:775 +#: extras/models/customfields.py:775 msgid "Choices are automatically ordered alphabetically" msgstr "Вибір автоматично впорядковується за алфавітом" -#: netbox/extras/models/customfields.py:782 +#: extras/models/customfields.py:782 msgid "custom field choice set" msgstr "набір вибору користувацького поля" -#: netbox/extras/models/customfields.py:783 +#: extras/models/customfields.py:783 msgid "custom field choice sets" msgstr "набори вибору користувацького поля" -#: netbox/extras/models/customfields.py:825 +#: extras/models/customfields.py:825 msgid "Must define base or extra choices." msgstr "Повинен визначити базовий або додатковий вибори." -#: netbox/extras/models/customfields.py:849 +#: extras/models/customfields.py:849 #, python-brace-format msgid "" "Cannot remove choice {choice} as there are {model} objects which reference " @@ -8541,60 +7981,60 @@ msgstr "" "Не вдається видалити вибір {choice} так, як є {model} об'єкти, які " "посилаються на нього." -#: netbox/extras/models/dashboard.py:18 +#: extras/models/dashboard.py:18 msgid "layout" msgstr "макет" -#: netbox/extras/models/dashboard.py:22 +#: extras/models/dashboard.py:22 msgid "config" msgstr "конфігурація" -#: netbox/extras/models/dashboard.py:27 +#: extras/models/dashboard.py:27 msgid "dashboard" msgstr "інформаційна панель" -#: netbox/extras/models/dashboard.py:28 +#: extras/models/dashboard.py:28 msgid "dashboards" msgstr "інформаційні панелі" -#: netbox/extras/models/models.py:52 +#: extras/models/models.py:52 msgid "object types" msgstr "типи об'єктів" -#: netbox/extras/models/models.py:53 +#: extras/models/models.py:53 msgid "The object(s) to which this rule applies." msgstr "Об'єкт(и), до яких застосовується це правило." -#: netbox/extras/models/models.py:67 +#: extras/models/models.py:67 msgid "The types of event which will trigger this rule." msgstr "Типи подій, які викличуть спрацьовання цього правила." -#: netbox/extras/models/models.py:74 +#: extras/models/models.py:74 msgid "conditions" msgstr "умови" -#: netbox/extras/models/models.py:77 +#: extras/models/models.py:77 msgid "" "A set of conditions which determine whether the event will be generated." msgstr "Набір умов, які визначають, чи буде подія генеруватися." -#: netbox/extras/models/models.py:85 +#: extras/models/models.py:85 msgid "action type" msgstr "тип дії" -#: netbox/extras/models/models.py:104 +#: extras/models/models.py:104 msgid "Additional data to pass to the action object" msgstr "Додаткові дані для передачі об'єкту дії" -#: netbox/extras/models/models.py:116 +#: extras/models/models.py:116 msgid "event rule" msgstr "правило події" -#: netbox/extras/models/models.py:117 +#: extras/models/models.py:117 msgid "event rules" msgstr "правила подій" -#: netbox/extras/models/models.py:166 +#: extras/models/models.py:166 msgid "" "This URL will be called using the HTTP method defined when the webhook is " "called. Jinja2 template processing is supported with the same context as the" @@ -8604,7 +8044,7 @@ msgstr "" "виклику веб-хука. Обробка шаблонів Jinja2 підтримується в тому ж контексті, " "що і тіло запиту." -#: netbox/extras/models/models.py:181 +#: extras/models/models.py:181 msgid "" "The complete list of official content types is available тут." -#: netbox/extras/models/models.py:186 +#: extras/models/models.py:186 msgid "additional headers" msgstr "додаткові заголовки" -#: netbox/extras/models/models.py:189 +#: extras/models/models.py:189 msgid "" "User-supplied HTTP headers to be sent with the request in addition to the " "HTTP content type. Headers should be defined in the format Name: " @@ -8630,11 +8070,11 @@ msgstr "" "Назва: Значення. Обробка шаблонів Jinja2 підтримується в тому ж" " контексті, що і тіло запиту (нижче)." -#: netbox/extras/models/models.py:195 +#: extras/models/models.py:195 msgid "body template" msgstr "шаблон тіла" -#: netbox/extras/models/models.py:198 +#: extras/models/models.py:198 msgid "" "Jinja2 template for a custom request body. If blank, a JSON object " "representing the change will be included. Available context data includes: " @@ -8647,11 +8087,11 @@ msgstr "" " ім'я користувача, ідентифікатор запиту, і " "дані." -#: netbox/extras/models/models.py:204 +#: extras/models/models.py:204 msgid "secret" msgstr "таємниця" -#: netbox/extras/models/models.py:208 +#: extras/models/models.py:208 msgid "" "When provided, the request will include a X-Hook-Signature " "header containing a HMAC hex digest of the payload body using the secret as " @@ -8661,15 +8101,15 @@ msgstr "" "що містить шістнадцядковий дайджест HMAC тіла корисного навантаження з " "використанням секрету як ключа. Таємниця не передається у запиті." -#: netbox/extras/models/models.py:215 +#: extras/models/models.py:215 msgid "Enable SSL certificate verification. Disable with caution!" msgstr "Увімкнути перевірку сертифіката SSL. Відключайте з обережністю!" -#: netbox/extras/models/models.py:221 netbox/templates/extras/webhook.html:51 +#: extras/models/models.py:221 templates/extras/webhook.html:51 msgid "CA File Path" msgstr "Шляхи до файлу CA" -#: netbox/extras/models/models.py:223 +#: extras/models/models.py:223 msgid "" "The specific CA certificate file to use for SSL verification. Leave blank to" " use the system defaults." @@ -8677,63 +8117,63 @@ msgstr "" "Конкретний файл сертифіката CA для перевірки SSL. Залиште порожнім, щоб " "використовувати параметри системи за замовчуванням." -#: netbox/extras/models/models.py:234 +#: extras/models/models.py:234 msgid "webhook" msgstr "веб-хук" -#: netbox/extras/models/models.py:235 +#: extras/models/models.py:235 msgid "webhooks" msgstr "веб-хуки" -#: netbox/extras/models/models.py:253 +#: extras/models/models.py:253 msgid "Do not specify a CA certificate file if SSL verification is disabled." msgstr "Не вказуйте файл сертифіката CA, якщо перевірка SSL вимкнена." -#: netbox/extras/models/models.py:293 +#: extras/models/models.py:293 msgid "The object type(s) to which this link applies." msgstr "Тип(и) об'єкта, до яких застосовується це посилання." -#: netbox/extras/models/models.py:305 +#: extras/models/models.py:305 msgid "link text" msgstr "текст посилання" -#: netbox/extras/models/models.py:306 +#: extras/models/models.py:306 msgid "Jinja2 template code for link text" msgstr "Код шаблону Jinja2 для тексту посилання" -#: netbox/extras/models/models.py:309 +#: extras/models/models.py:309 msgid "link URL" msgstr "URL-адреса посилання" -#: netbox/extras/models/models.py:310 +#: extras/models/models.py:310 msgid "Jinja2 template code for link URL" msgstr "Код шаблону Jinja2 для URL-адреси посилання" -#: netbox/extras/models/models.py:320 +#: extras/models/models.py:320 msgid "Links with the same group will appear as a dropdown menu" msgstr "Посилання з тією ж групою відображатимуться у випадаючому меню" -#: netbox/extras/models/models.py:330 +#: extras/models/models.py:330 msgid "new window" msgstr "нове вікно" -#: netbox/extras/models/models.py:332 +#: extras/models/models.py:332 msgid "Force link to open in a new window" msgstr "Примусове відкриття посилання в новому вікні" -#: netbox/extras/models/models.py:341 +#: extras/models/models.py:341 msgid "custom link" msgstr "користувацьке посилання" -#: netbox/extras/models/models.py:342 +#: extras/models/models.py:342 msgid "custom links" msgstr "користувацькі посилання" -#: netbox/extras/models/models.py:389 +#: extras/models/models.py:389 msgid "The object type(s) to which this template applies." msgstr "Тип(и) об'єкта, до яких застосовується цей шаблон." -#: netbox/extras/models/models.py:402 +#: extras/models/models.py:402 msgid "" "Jinja2 template code. The list of objects being exported is passed as a " "context variable named queryset." @@ -8741,1087 +8181,1052 @@ msgstr "" "Код шаблону Jinja2. Список об'єктів, що експортуються, передається як " "контекстна змінна з назвою запит." -#: netbox/extras/models/models.py:410 +#: extras/models/models.py:410 msgid "Defaults to text/plain; charset=utf-8" msgstr "За замовчуванням текст/простий; набір символів = utf-8" -#: netbox/extras/models/models.py:413 +#: extras/models/models.py:413 msgid "file extension" msgstr "розширення файлу" -#: netbox/extras/models/models.py:416 +#: extras/models/models.py:416 msgid "Extension to append to the rendered filename" msgstr "Розширення для додавання до відтвореної назви файлу" -#: netbox/extras/models/models.py:419 +#: extras/models/models.py:419 msgid "as attachment" msgstr "як вкладення" -#: netbox/extras/models/models.py:421 +#: extras/models/models.py:421 msgid "Download file as attachment" msgstr "Завантажити файл як вкладення" -#: netbox/extras/models/models.py:430 +#: extras/models/models.py:430 msgid "export template" msgstr "експорт шаблону" -#: netbox/extras/models/models.py:431 +#: extras/models/models.py:431 msgid "export templates" msgstr "експортувати шаблони" -#: netbox/extras/models/models.py:448 +#: extras/models/models.py:448 #, python-brace-format msgid "\"{name}\" is a reserved name. Please choose a different name." msgstr "\"{name}\" - це зарезервована назва. Будь ласка, виберіть іншу назву." -#: netbox/extras/models/models.py:498 +#: extras/models/models.py:498 msgid "The object type(s) to which this filter applies." msgstr "Тип(и) об'єкта, до яких застосовується цей фільтр." -#: netbox/extras/models/models.py:530 +#: extras/models/models.py:530 msgid "shared" msgstr "спільні" -#: netbox/extras/models/models.py:543 +#: extras/models/models.py:543 msgid "saved filter" msgstr "збережений фільтр" -#: netbox/extras/models/models.py:544 +#: extras/models/models.py:544 msgid "saved filters" msgstr "збережені фільтри" -#: netbox/extras/models/models.py:562 +#: extras/models/models.py:562 msgid "Filter parameters must be stored as a dictionary of keyword arguments." msgstr "" "Параметри фільтра повинні зберігатися як словник аргументів ключових слів." -#: netbox/extras/models/models.py:590 +#: extras/models/models.py:590 msgid "image height" msgstr "висота зображення" -#: netbox/extras/models/models.py:593 +#: extras/models/models.py:593 msgid "image width" msgstr "ширина зображення" -#: netbox/extras/models/models.py:610 +#: extras/models/models.py:610 msgid "image attachment" msgstr "вкладення зображення" -#: netbox/extras/models/models.py:611 +#: extras/models/models.py:611 msgid "image attachments" msgstr "вкладення зображень" -#: netbox/extras/models/models.py:625 +#: extras/models/models.py:625 #, python-brace-format msgid "Image attachments cannot be assigned to this object type ({type})." msgstr "" "Вкладені зображення не можуть бути призначені для цього типу об'єкта " "({type})." -#: netbox/extras/models/models.py:688 +#: extras/models/models.py:688 msgid "kind" msgstr "добрий" -#: netbox/extras/models/models.py:702 +#: extras/models/models.py:702 msgid "journal entry" msgstr "запис журналу" -#: netbox/extras/models/models.py:703 +#: extras/models/models.py:703 msgid "journal entries" msgstr "записи журналу" -#: netbox/extras/models/models.py:718 +#: extras/models/models.py:718 #, python-brace-format msgid "Journaling is not supported for this object type ({type})." msgstr "Журналізація не підтримується для цього типу об'єктів ({type})." -#: netbox/extras/models/models.py:760 +#: extras/models/models.py:760 msgid "bookmark" msgstr "закладка" -#: netbox/extras/models/models.py:761 +#: extras/models/models.py:761 msgid "bookmarks" msgstr "закладки" -#: netbox/extras/models/models.py:774 +#: extras/models/models.py:774 #, python-brace-format msgid "Bookmarks cannot be assigned to this object type ({type})." msgstr "Закладки не можуть бути призначені для цього типу об'єкта ({type})." -#: netbox/extras/models/notifications.py:43 +#: extras/models/notifications.py:43 msgid "read" msgstr "читати" -#: netbox/extras/models/notifications.py:66 +#: extras/models/notifications.py:66 msgid "event" msgstr "подія" -#: netbox/extras/models/notifications.py:84 +#: extras/models/notifications.py:84 msgid "notification" msgstr "сповіщення" -#: netbox/extras/models/notifications.py:85 +#: extras/models/notifications.py:85 msgid "notifications" msgstr "сповіщення" -#: netbox/extras/models/notifications.py:99 -#: netbox/extras/models/notifications.py:234 +#: extras/models/notifications.py:99 extras/models/notifications.py:234 #, python-brace-format msgid "Objects of this type ({type}) do not support notifications." msgstr "Об'єкти такого типу ({type}) не підтримують сповіщення." -#: netbox/extras/models/notifications.py:137 netbox/users/models/users.py:58 -#: netbox/users/models/users.py:77 +#: extras/models/notifications.py:137 users/models/users.py:58 +#: users/models/users.py:77 msgid "groups" msgstr "груп" -#: netbox/extras/models/notifications.py:143 netbox/users/models/users.py:93 +#: extras/models/notifications.py:143 users/models/users.py:93 msgid "users" msgstr "користувачів" -#: netbox/extras/models/notifications.py:152 +#: extras/models/notifications.py:152 msgid "notification group" msgstr "група повідомлень" -#: netbox/extras/models/notifications.py:153 +#: extras/models/notifications.py:153 msgid "notification groups" msgstr "групи повідомлень" -#: netbox/extras/models/notifications.py:217 +#: extras/models/notifications.py:217 msgid "subscription" msgstr "підписка" -#: netbox/extras/models/notifications.py:218 +#: extras/models/notifications.py:218 msgid "subscriptions" msgstr "підписки" -#: netbox/extras/models/scripts.py:42 +#: extras/models/scripts.py:42 msgid "is executable" msgstr "виконуваний" -#: netbox/extras/models/scripts.py:64 +#: extras/models/scripts.py:64 msgid "script" msgstr "сценарій" -#: netbox/extras/models/scripts.py:65 +#: extras/models/scripts.py:65 msgid "scripts" msgstr "скриптів" -#: netbox/extras/models/scripts.py:111 +#: extras/models/scripts.py:111 msgid "script module" msgstr "модуль сценарію" -#: netbox/extras/models/scripts.py:112 +#: extras/models/scripts.py:112 msgid "script modules" msgstr "модулі скриптів" -#: netbox/extras/models/search.py:22 +#: extras/models/search.py:22 msgid "timestamp" msgstr "мітка часу" -#: netbox/extras/models/search.py:37 +#: extras/models/search.py:37 msgid "field" msgstr "поле" -#: netbox/extras/models/search.py:45 +#: extras/models/search.py:45 msgid "value" msgstr "значення" -#: netbox/extras/models/search.py:56 +#: extras/models/search.py:56 msgid "cached value" msgstr "кешоване значення" -#: netbox/extras/models/search.py:57 +#: extras/models/search.py:57 msgid "cached values" msgstr "кешовані значення" -#: netbox/extras/models/staging.py:44 +#: extras/models/staging.py:44 msgid "branch" msgstr "гілка" -#: netbox/extras/models/staging.py:45 +#: extras/models/staging.py:45 msgid "branches" msgstr "відділення" -#: netbox/extras/models/staging.py:97 +#: extras/models/staging.py:97 msgid "staged change" msgstr "поетапна зміна" -#: netbox/extras/models/staging.py:98 +#: extras/models/staging.py:98 msgid "staged changes" msgstr "поетапні зміни" -#: netbox/extras/models/tags.py:40 +#: extras/models/tags.py:40 msgid "The object type(s) to which this tag can be applied." msgstr "Тип(и) об'єкта, до яких можна застосувати цю позначку." -#: netbox/extras/models/tags.py:49 +#: extras/models/tags.py:49 msgid "tag" msgstr "мітка" -#: netbox/extras/models/tags.py:50 +#: extras/models/tags.py:50 msgid "tags" msgstr "мітки" -#: netbox/extras/models/tags.py:78 +#: extras/models/tags.py:78 msgid "tagged item" msgstr "позначений предмет" -#: netbox/extras/models/tags.py:79 +#: extras/models/tags.py:79 msgid "tagged items" msgstr "позначені предмети" -#: netbox/extras/scripts.py:429 +#: extras/scripts.py:429 msgid "Script Data" msgstr "Дані сценарію" -#: netbox/extras/scripts.py:433 +#: extras/scripts.py:433 msgid "Script Execution Parameters" msgstr "Параметри виконання сценарію" -#: netbox/extras/tables/columns.py:12 -#: netbox/templates/htmx/notifications.html:18 +#: extras/tables/columns.py:12 templates/htmx/notifications.html:18 msgid "Dismiss" msgstr "Відхилити" -#: netbox/extras/tables/tables.py:62 netbox/extras/tables/tables.py:159 -#: netbox/extras/tables/tables.py:184 netbox/extras/tables/tables.py:250 -#: netbox/extras/tables/tables.py:276 netbox/extras/tables/tables.py:412 -#: netbox/extras/tables/tables.py:446 -#: netbox/templates/extras/customfield.html:105 -#: netbox/templates/extras/eventrule.html:27 -#: netbox/templates/users/objectpermission.html:64 netbox/users/tables.py:80 +#: extras/tables/tables.py:62 extras/tables/tables.py:159 +#: extras/tables/tables.py:184 extras/tables/tables.py:250 +#: extras/tables/tables.py:276 extras/tables/tables.py:412 +#: extras/tables/tables.py:446 templates/extras/customfield.html:105 +#: templates/extras/eventrule.html:27 templates/users/objectpermission.html:64 +#: users/tables.py:80 msgid "Object Types" msgstr "Типи об'єктів" -#: netbox/extras/tables/tables.py:69 +#: extras/tables/tables.py:69 msgid "Validate Uniqueness" msgstr "Перевірте унікальність" -#: netbox/extras/tables/tables.py:73 +#: extras/tables/tables.py:73 msgid "Visible" msgstr "видимий" -#: netbox/extras/tables/tables.py:76 +#: extras/tables/tables.py:76 msgid "Editable" msgstr "Редагований" -#: netbox/extras/tables/tables.py:82 +#: extras/tables/tables.py:82 msgid "Related Object Type" msgstr "Пов'язаний тип об'єкта" -#: netbox/extras/tables/tables.py:86 -#: netbox/templates/extras/customfield.html:51 +#: extras/tables/tables.py:86 templates/extras/customfield.html:51 msgid "Choice Set" msgstr "Набір вибору" -#: netbox/extras/tables/tables.py:94 +#: extras/tables/tables.py:94 msgid "Is Cloneable" msgstr "Чи можна клонувати" -#: netbox/extras/tables/tables.py:98 -#: netbox/templates/extras/customfield.html:118 +#: extras/tables/tables.py:98 templates/extras/customfield.html:118 msgid "Minimum Value" msgstr "Мінімальне значення" -#: netbox/extras/tables/tables.py:101 -#: netbox/templates/extras/customfield.html:122 +#: extras/tables/tables.py:101 templates/extras/customfield.html:122 msgid "Maximum Value" msgstr "Максимальне значення" -#: netbox/extras/tables/tables.py:104 +#: extras/tables/tables.py:104 msgid "Validation Regex" msgstr "Перевірка регулярного вираза " -#: netbox/extras/tables/tables.py:137 +#: extras/tables/tables.py:137 msgid "Count" msgstr "Графік" -#: netbox/extras/tables/tables.py:140 +#: extras/tables/tables.py:140 msgid "Order Alphabetically" msgstr "Порядок за алфавітом" -#: netbox/extras/tables/tables.py:165 -#: netbox/templates/extras/customlink.html:33 +#: extras/tables/tables.py:165 templates/extras/customlink.html:33 msgid "New Window" msgstr "Нове вікно" -#: netbox/extras/tables/tables.py:187 +#: extras/tables/tables.py:187 msgid "As Attachment" msgstr "Як вкладення" -#: netbox/extras/tables/tables.py:195 netbox/extras/tables/tables.py:487 -#: netbox/extras/tables/tables.py:522 netbox/templates/core/datafile.html:24 -#: netbox/templates/dcim/device/render_config.html:22 -#: netbox/templates/extras/configcontext.html:39 -#: netbox/templates/extras/configtemplate.html:31 -#: netbox/templates/extras/exporttemplate.html:45 -#: netbox/templates/generic/bulk_import.html:35 -#: netbox/templates/virtualization/virtualmachine/render_config.html:22 +#: extras/tables/tables.py:195 extras/tables/tables.py:487 +#: extras/tables/tables.py:522 templates/core/datafile.html:24 +#: templates/dcim/device/render_config.html:22 +#: templates/extras/configcontext.html:39 +#: templates/extras/configtemplate.html:31 +#: templates/extras/exporttemplate.html:45 +#: templates/generic/bulk_import.html:35 +#: templates/virtualization/virtualmachine/render_config.html:22 msgid "Data File" msgstr "Файл даних" -#: netbox/extras/tables/tables.py:200 netbox/extras/tables/tables.py:499 -#: netbox/extras/tables/tables.py:527 +#: extras/tables/tables.py:200 extras/tables/tables.py:499 +#: extras/tables/tables.py:527 msgid "Synced" msgstr "Синхронізовано" -#: netbox/extras/tables/tables.py:227 +#: extras/tables/tables.py:227 msgid "Image" msgstr "Зображення" -#: netbox/extras/tables/tables.py:232 +#: extras/tables/tables.py:232 msgid "Size (Bytes)" msgstr "Розмір (байт)" -#: netbox/extras/tables/tables.py:339 +#: extras/tables/tables.py:339 msgid "Read" msgstr "Читати" -#: netbox/extras/tables/tables.py:382 +#: extras/tables/tables.py:382 msgid "SSL Validation" msgstr "Перевірка SSL" -#: netbox/extras/tables/tables.py:418 -#: netbox/templates/extras/eventrule.html:37 +#: extras/tables/tables.py:418 templates/extras/eventrule.html:37 msgid "Event Types" msgstr "Типи подій" -#: netbox/extras/tables/tables.py:535 netbox/netbox/navigation/menu.py:77 -#: netbox/templates/dcim/devicerole.html:8 +#: extras/tables/tables.py:535 netbox/navigation/menu.py:77 +#: templates/dcim/devicerole.html:8 msgid "Device Roles" msgstr "Ролі пристроїв" -#: netbox/extras/tables/tables.py:587 +#: extras/tables/tables.py:587 msgid "Comments (Short)" msgstr "Коментарі (короткі)" -#: netbox/extras/tables/tables.py:606 netbox/extras/tables/tables.py:640 +#: extras/tables/tables.py:606 extras/tables/tables.py:640 msgid "Line" msgstr "Лінія" -#: netbox/extras/tables/tables.py:613 netbox/extras/tables/tables.py:650 +#: extras/tables/tables.py:613 extras/tables/tables.py:650 msgid "Level" msgstr "Рівень" -#: netbox/extras/tables/tables.py:619 netbox/extras/tables/tables.py:659 +#: extras/tables/tables.py:619 extras/tables/tables.py:659 msgid "Message" msgstr "Повідомлення" -#: netbox/extras/tables/tables.py:643 +#: extras/tables/tables.py:643 msgid "Method" msgstr "Метод" -#: netbox/extras/validators.py:15 +#: extras/validators.py:15 #, python-format msgid "Ensure this value is equal to %(limit_value)s." msgstr "Переконайтеся, що це значення дорівнює %(limit_value)s." -#: netbox/extras/validators.py:26 +#: extras/validators.py:26 #, python-format msgid "Ensure this value does not equal %(limit_value)s." msgstr "Переконайтеся, що це значення не дорівнює %(limit_value)s." -#: netbox/extras/validators.py:37 +#: extras/validators.py:37 msgid "This field must be empty." msgstr "Це поле має бути порожнім." -#: netbox/extras/validators.py:52 +#: extras/validators.py:52 msgid "This field must not be empty." msgstr "Це поле не повинно бути порожнім." -#: netbox/extras/validators.py:94 +#: extras/validators.py:94 msgid "Validation rules must be passed as a dictionary" msgstr "Правила перевірки повинні бути передані як словник" -#: netbox/extras/validators.py:119 +#: extras/validators.py:119 #, python-brace-format msgid "Custom validation failed for {attribute}: {exception}" msgstr "" "Користувацька перевірка зіткнулася з невдачею через{attribute}: {exception}" -#: netbox/extras/validators.py:133 +#: extras/validators.py:133 #, python-brace-format msgid "Invalid attribute \"{name}\" for request" msgstr "Невірний атрибут \"{name}\" за запитом" -#: netbox/extras/validators.py:150 +#: extras/validators.py:150 #, python-brace-format msgid "Invalid attribute \"{name}\" for {model}" msgstr "Невірний атрибут \"{name}\" для {model}" -#: netbox/extras/views.py:960 +#: extras/views.py:960 msgid "Your dashboard has been reset." msgstr "Ваша інформаційна панель була скинута." -#: netbox/extras/views.py:1006 +#: extras/views.py:1006 msgid "Added widget: " msgstr "Доданий віджет: " -#: netbox/extras/views.py:1047 +#: extras/views.py:1047 msgid "Updated widget: " msgstr "Оновлений віджет: " -#: netbox/extras/views.py:1083 +#: extras/views.py:1083 msgid "Deleted widget: " msgstr "Видалений віджет: " -#: netbox/extras/views.py:1085 +#: extras/views.py:1085 msgid "Error deleting widget: " msgstr "Помилка при видаленні віджета: " -#: netbox/extras/views.py:1172 +#: extras/views.py:1172 msgid "Unable to run script: RQ worker process not running." msgstr "Неможливо запустити скрипт: робочий процес RQ не запущений." -#: netbox/ipam/api/field_serializers.py:17 +#: ipam/api/field_serializers.py:17 msgid "Enter a valid IPv4 or IPv6 address with optional mask." msgstr "Введіть дійсну адресу IPv4 або IPv6 з необов'язковою маскою." -#: netbox/ipam/api/field_serializers.py:24 +#: ipam/api/field_serializers.py:24 #, python-brace-format msgid "Invalid IP address format: {data}" msgstr "Невірний формат IP-адреси: {data}" -#: netbox/ipam/api/field_serializers.py:37 +#: ipam/api/field_serializers.py:37 msgid "Enter a valid IPv4 or IPv6 prefix and mask in CIDR notation." msgstr "Введіть дійсний префікс IPv4 або IPv6 та маску в позначенні CIDR." -#: netbox/ipam/api/field_serializers.py:44 +#: ipam/api/field_serializers.py:44 #, python-brace-format msgid "Invalid IP prefix format: {data}" msgstr "Невірний формат префікса IP: {data}" -#: netbox/ipam/api/views.py:358 +#: ipam/api/views.py:358 msgid "" "Insufficient space is available to accommodate the requested prefix size(s)" msgstr "Недостатньо місця для розміщення запитуваного розміру префікса" -#: netbox/ipam/choices.py:30 +#: ipam/choices.py:30 msgid "Container" msgstr "Контейнер" -#: netbox/ipam/choices.py:72 +#: ipam/choices.py:72 msgid "DHCP" msgstr "DHCP" -#: netbox/ipam/choices.py:73 +#: ipam/choices.py:73 msgid "SLAAC" msgstr "СЛААК" -#: netbox/ipam/choices.py:89 +#: ipam/choices.py:89 msgid "Loopback" msgstr "Петлебек" -#: netbox/ipam/choices.py:91 +#: ipam/choices.py:91 msgid "Anycast" msgstr "Анікаст" -#: netbox/ipam/choices.py:115 +#: ipam/choices.py:115 msgid "Standard" msgstr "Стандарт" -#: netbox/ipam/choices.py:120 +#: ipam/choices.py:120 msgid "CheckPoint" msgstr "Контрольна точка" -#: netbox/ipam/choices.py:123 +#: ipam/choices.py:123 msgid "Cisco" msgstr "Cisco" -#: netbox/ipam/choices.py:137 +#: ipam/choices.py:137 msgid "Plaintext" msgstr "Простий текст" -#: netbox/ipam/fields.py:36 +#: ipam/fields.py:36 #, python-brace-format msgid "Invalid IP address format: {address}" msgstr "Невірний формат IP-адреси: {address}" -#: netbox/ipam/filtersets.py:48 netbox/vpn/filtersets.py:304 +#: ipam/filtersets.py:48 vpn/filtersets.py:304 msgid "Import target" msgstr "Імпортувати ціль" -#: netbox/ipam/filtersets.py:54 netbox/vpn/filtersets.py:310 +#: ipam/filtersets.py:54 vpn/filtersets.py:310 msgid "Import target (name)" msgstr "Імпорт цілі (назва)" -#: netbox/ipam/filtersets.py:59 netbox/vpn/filtersets.py:315 +#: ipam/filtersets.py:59 vpn/filtersets.py:315 msgid "Export target" msgstr "Ціль експорту" -#: netbox/ipam/filtersets.py:65 netbox/vpn/filtersets.py:321 +#: ipam/filtersets.py:65 vpn/filtersets.py:321 msgid "Export target (name)" msgstr "Ціль експорту (назва)" -#: netbox/ipam/filtersets.py:86 +#: ipam/filtersets.py:86 msgid "Importing VRF" msgstr "Імпортування VRF" -#: netbox/ipam/filtersets.py:92 +#: ipam/filtersets.py:92 msgid "Import VRF (RD)" msgstr "Імпорт VRF (RD)" -#: netbox/ipam/filtersets.py:97 +#: ipam/filtersets.py:97 msgid "Exporting VRF" msgstr "Експорт VRF" -#: netbox/ipam/filtersets.py:103 +#: ipam/filtersets.py:103 msgid "Export VRF (RD)" msgstr "Експорт VRF (RD)" -#: netbox/ipam/filtersets.py:108 +#: ipam/filtersets.py:108 msgid "Importing L2VPN" msgstr "Імпорт L2VPN" -#: netbox/ipam/filtersets.py:114 +#: ipam/filtersets.py:114 msgid "Importing L2VPN (identifier)" msgstr "Імпорт L2VPN (ідентифікатор)" -#: netbox/ipam/filtersets.py:119 +#: ipam/filtersets.py:119 msgid "Exporting L2VPN" msgstr "Експорт L2VPN" -#: netbox/ipam/filtersets.py:125 +#: ipam/filtersets.py:125 msgid "Exporting L2VPN (identifier)" msgstr "Експорт L2VPN (ідентифікатор)" -#: netbox/ipam/filtersets.py:155 netbox/ipam/filtersets.py:281 -#: netbox/ipam/forms/model_forms.py:229 netbox/ipam/tables/ip.py:212 -#: netbox/templates/ipam/prefix.html:12 +#: ipam/filtersets.py:155 ipam/filtersets.py:281 ipam/forms/model_forms.py:229 +#: ipam/tables/ip.py:212 templates/ipam/prefix.html:12 msgid "Prefix" msgstr "Префікс" -#: netbox/ipam/filtersets.py:159 netbox/ipam/filtersets.py:198 -#: netbox/ipam/filtersets.py:221 +#: ipam/filtersets.py:159 ipam/filtersets.py:198 ipam/filtersets.py:221 msgid "RIR (ID)" msgstr "RIR (ідентифікатор)" -#: netbox/ipam/filtersets.py:165 netbox/ipam/filtersets.py:204 -#: netbox/ipam/filtersets.py:227 +#: ipam/filtersets.py:165 ipam/filtersets.py:204 ipam/filtersets.py:227 msgid "RIR (slug)" msgstr "RIR (скоречення)" -#: netbox/ipam/filtersets.py:285 +#: ipam/filtersets.py:285 msgid "Within prefix" msgstr "Всередині префікса" -#: netbox/ipam/filtersets.py:289 +#: ipam/filtersets.py:289 msgid "Within and including prefix" msgstr "Всередині та включаючи префікс" -#: netbox/ipam/filtersets.py:293 +#: ipam/filtersets.py:293 msgid "Prefixes which contain this prefix or IP" msgstr "Мережеві префікси, які містять цей префікс або IP" -#: netbox/ipam/filtersets.py:304 netbox/ipam/filtersets.py:572 -#: netbox/ipam/forms/bulk_edit.py:342 netbox/ipam/forms/filtersets.py:196 -#: netbox/ipam/forms/filtersets.py:331 +#: ipam/filtersets.py:304 ipam/filtersets.py:572 ipam/forms/bulk_edit.py:343 +#: ipam/forms/filtersets.py:196 ipam/forms/filtersets.py:331 msgid "Mask length" msgstr "Довжина маски" -#: netbox/ipam/filtersets.py:373 netbox/vpn/filtersets.py:427 +#: ipam/filtersets.py:373 vpn/filtersets.py:427 msgid "VLAN (ID)" msgstr "VLAN (ідентифікатор)" -#: netbox/ipam/filtersets.py:377 netbox/vpn/filtersets.py:422 +#: ipam/filtersets.py:377 vpn/filtersets.py:422 msgid "VLAN number (1-4094)" msgstr "Номер VLAN (1-4094)" -#: netbox/ipam/filtersets.py:471 netbox/ipam/filtersets.py:475 -#: netbox/ipam/filtersets.py:567 netbox/ipam/forms/model_forms.py:463 -#: netbox/templates/tenancy/contact.html:53 -#: netbox/tenancy/forms/bulk_edit.py:113 +#: ipam/filtersets.py:471 ipam/filtersets.py:475 ipam/filtersets.py:567 +#: ipam/forms/model_forms.py:463 templates/tenancy/contact.html:53 +#: tenancy/forms/bulk_edit.py:113 msgid "Address" msgstr "Адреса" -#: netbox/ipam/filtersets.py:479 +#: ipam/filtersets.py:479 msgid "Ranges which contain this prefix or IP" msgstr "Діапазони, які містять цей префікс або IP" -#: netbox/ipam/filtersets.py:507 netbox/ipam/filtersets.py:563 +#: ipam/filtersets.py:507 ipam/filtersets.py:563 msgid "Parent prefix" msgstr "Батьківський префікс" -#: netbox/ipam/filtersets.py:616 netbox/ipam/filtersets.py:856 -#: netbox/ipam/filtersets.py:1131 netbox/vpn/filtersets.py:385 +#: ipam/filtersets.py:616 ipam/filtersets.py:856 ipam/filtersets.py:1131 +#: vpn/filtersets.py:385 msgid "Virtual machine (name)" msgstr "Віртуальна машина (назва)" -#: netbox/ipam/filtersets.py:621 netbox/ipam/filtersets.py:861 -#: netbox/ipam/filtersets.py:1125 netbox/virtualization/filtersets.py:282 -#: netbox/virtualization/filtersets.py:321 netbox/vpn/filtersets.py:390 +#: ipam/filtersets.py:621 ipam/filtersets.py:861 ipam/filtersets.py:1125 +#: virtualization/filtersets.py:282 virtualization/filtersets.py:321 +#: vpn/filtersets.py:390 msgid "Virtual machine (ID)" msgstr "Віртуальна машина (ідентифікатор)" -#: netbox/ipam/filtersets.py:627 netbox/vpn/filtersets.py:97 -#: netbox/vpn/filtersets.py:396 +#: ipam/filtersets.py:627 vpn/filtersets.py:97 vpn/filtersets.py:396 msgid "Interface (name)" msgstr "Інтерфейс (назва)" -#: netbox/ipam/filtersets.py:638 netbox/vpn/filtersets.py:108 -#: netbox/vpn/filtersets.py:407 +#: ipam/filtersets.py:638 vpn/filtersets.py:108 vpn/filtersets.py:407 msgid "VM interface (name)" msgstr "Інтерфейс віртуальної машини (назва)" -#: netbox/ipam/filtersets.py:643 netbox/vpn/filtersets.py:113 +#: ipam/filtersets.py:643 vpn/filtersets.py:113 msgid "VM interface (ID)" msgstr "Інтерфейс віртуальної машини (ідентифікатор)" -#: netbox/ipam/filtersets.py:648 +#: ipam/filtersets.py:648 msgid "FHRP group (ID)" msgstr "Група FHRP/VRRP (ідентифікатор)" -#: netbox/ipam/filtersets.py:652 +#: ipam/filtersets.py:652 msgid "Is assigned to an interface" msgstr "Призначений до інтерфейсу" -#: netbox/ipam/filtersets.py:656 +#: ipam/filtersets.py:656 msgid "Is assigned" msgstr "призначається" -#: netbox/ipam/filtersets.py:668 +#: ipam/filtersets.py:668 msgid "Service (ID)" msgstr "Сервіс (ідентифікатор)" -#: netbox/ipam/filtersets.py:673 +#: ipam/filtersets.py:673 msgid "NAT inside IP address (ID)" msgstr "NAT всередині IP-адреси (ідентифікатор)" -#: netbox/ipam/filtersets.py:1041 netbox/ipam/forms/bulk_import.py:322 +#: ipam/filtersets.py:1041 ipam/forms/bulk_import.py:322 msgid "Assigned interface" msgstr "Призначений інтерфейс" -#: netbox/ipam/filtersets.py:1046 +#: ipam/filtersets.py:1046 msgid "Assigned VM interface" msgstr "Призначений інтерфейс віртуальної машини" -#: netbox/ipam/filtersets.py:1136 +#: ipam/filtersets.py:1136 msgid "IP address (ID)" msgstr "IP-адреса (ідентифікатор)" -#: netbox/ipam/filtersets.py:1142 netbox/ipam/models/ip.py:788 +#: ipam/filtersets.py:1142 ipam/models/ip.py:788 msgid "IP address" msgstr "IP-адреса" -#: netbox/ipam/filtersets.py:1167 +#: ipam/filtersets.py:1167 msgid "Primary IPv4 (ID)" msgstr "Первинний IPv4 (ідентифікатор)" -#: netbox/ipam/filtersets.py:1172 +#: ipam/filtersets.py:1172 msgid "Primary IPv6 (ID)" msgstr "Первинний IPv6 (ідентифікатор)" -#: netbox/ipam/formfields.py:14 +#: ipam/formfields.py:14 msgid "Enter a valid IPv4 or IPv6 address (without a mask)." msgstr "Введіть дійсну адресу IPv4 або IPv6 (без маски)." -#: netbox/ipam/formfields.py:32 +#: ipam/formfields.py:32 #, python-brace-format msgid "Invalid IPv4/IPv6 address format: {address}" msgstr "Невірний формат адреси IPv4/IPv6: {address}" -#: netbox/ipam/formfields.py:37 +#: ipam/formfields.py:37 msgid "This field requires an IP address without a mask." msgstr "Для цього поля потрібна IP-адреса без маски." -#: netbox/ipam/formfields.py:39 netbox/ipam/formfields.py:61 +#: ipam/formfields.py:39 ipam/formfields.py:61 msgid "Please specify a valid IPv4 or IPv6 address." msgstr "Будь ласка, вкажіть дійсну адресу IPv4 або IPv6." -#: netbox/ipam/formfields.py:44 +#: ipam/formfields.py:44 msgid "Enter a valid IPv4 or IPv6 address (with CIDR mask)." msgstr "Введіть дійсну адресу IPv4 або IPv6 (з маскою CIDR)." -#: netbox/ipam/formfields.py:56 +#: ipam/formfields.py:56 msgid "CIDR mask (e.g. /24) is required." msgstr "Потрібна маска CIDR (наприклад, /24)." -#: netbox/ipam/forms/bulk_create.py:13 +#: ipam/forms/bulk_create.py:13 msgid "Address pattern" msgstr "Адресний шаблон" -#: netbox/ipam/forms/bulk_edit.py:49 +#: ipam/forms/bulk_edit.py:50 msgid "Enforce unique space" msgstr "Забезпечте унікальний простір" -#: netbox/ipam/forms/bulk_edit.py:87 +#: ipam/forms/bulk_edit.py:88 msgid "Is private" msgstr "Є приватним" -#: netbox/ipam/forms/bulk_edit.py:108 netbox/ipam/forms/bulk_edit.py:137 -#: netbox/ipam/forms/bulk_edit.py:162 netbox/ipam/forms/bulk_import.py:89 -#: netbox/ipam/forms/bulk_import.py:109 netbox/ipam/forms/bulk_import.py:129 -#: netbox/ipam/forms/filtersets.py:110 netbox/ipam/forms/filtersets.py:125 -#: netbox/ipam/forms/filtersets.py:148 netbox/ipam/forms/model_forms.py:96 -#: netbox/ipam/forms/model_forms.py:109 netbox/ipam/forms/model_forms.py:131 -#: netbox/ipam/forms/model_forms.py:149 netbox/ipam/models/asns.py:31 -#: netbox/ipam/models/asns.py:103 netbox/ipam/models/ip.py:71 -#: netbox/ipam/models/ip.py:90 netbox/ipam/tables/asn.py:20 -#: netbox/ipam/tables/asn.py:45 netbox/templates/ipam/aggregate.html:18 -#: netbox/templates/ipam/asn.html:27 netbox/templates/ipam/asnrange.html:19 -#: netbox/templates/ipam/rir.html:19 +#: ipam/forms/bulk_edit.py:109 ipam/forms/bulk_edit.py:138 +#: ipam/forms/bulk_edit.py:163 ipam/forms/bulk_import.py:89 +#: ipam/forms/bulk_import.py:109 ipam/forms/bulk_import.py:129 +#: ipam/forms/filtersets.py:110 ipam/forms/filtersets.py:125 +#: ipam/forms/filtersets.py:148 ipam/forms/model_forms.py:96 +#: ipam/forms/model_forms.py:109 ipam/forms/model_forms.py:131 +#: ipam/forms/model_forms.py:149 ipam/models/asns.py:31 +#: ipam/models/asns.py:103 ipam/models/ip.py:71 ipam/models/ip.py:90 +#: ipam/tables/asn.py:20 ipam/tables/asn.py:45 +#: templates/ipam/aggregate.html:18 templates/ipam/asn.html:27 +#: templates/ipam/asnrange.html:19 templates/ipam/rir.html:19 msgid "RIR" msgstr "ЗРИГНУТИ" -#: netbox/ipam/forms/bulk_edit.py:170 +#: ipam/forms/bulk_edit.py:171 msgid "Date added" msgstr "Дата додавання" -#: netbox/ipam/forms/bulk_edit.py:228 netbox/ipam/forms/model_forms.py:586 -#: netbox/ipam/forms/model_forms.py:633 netbox/ipam/tables/ip.py:251 -#: netbox/templates/ipam/vlan_edit.html:37 -#: netbox/templates/ipam/vlangroup.html:27 +#: ipam/forms/bulk_edit.py:229 ipam/forms/model_forms.py:586 +#: ipam/forms/model_forms.py:633 ipam/tables/ip.py:251 +#: templates/ipam/vlan_edit.html:37 templates/ipam/vlangroup.html:27 msgid "VLAN Group" msgstr "Група VLAN" -#: netbox/ipam/forms/bulk_edit.py:233 netbox/ipam/forms/bulk_import.py:185 -#: netbox/ipam/forms/filtersets.py:256 netbox/ipam/forms/model_forms.py:218 -#: netbox/ipam/models/vlans.py:234 netbox/ipam/tables/ip.py:255 -#: netbox/templates/ipam/prefix.html:60 netbox/templates/ipam/vlan.html:12 -#: netbox/templates/ipam/vlan/base.html:6 -#: netbox/templates/ipam/vlan_edit.html:10 -#: netbox/templates/wireless/wirelesslan.html:30 -#: netbox/vpn/forms/bulk_import.py:304 netbox/vpn/forms/filtersets.py:284 -#: netbox/vpn/forms/model_forms.py:433 netbox/vpn/forms/model_forms.py:452 -#: netbox/wireless/forms/bulk_edit.py:55 -#: netbox/wireless/forms/bulk_import.py:48 -#: netbox/wireless/forms/model_forms.py:48 netbox/wireless/models.py:102 +#: ipam/forms/bulk_edit.py:234 ipam/forms/bulk_import.py:185 +#: ipam/forms/filtersets.py:256 ipam/forms/model_forms.py:218 +#: ipam/models/vlans.py:234 ipam/tables/ip.py:255 +#: templates/ipam/prefix.html:60 templates/ipam/vlan.html:12 +#: templates/ipam/vlan/base.html:6 templates/ipam/vlan_edit.html:10 +#: templates/wireless/wirelesslan.html:30 vpn/forms/bulk_import.py:304 +#: vpn/forms/filtersets.py:284 vpn/forms/model_forms.py:433 +#: vpn/forms/model_forms.py:452 wireless/forms/bulk_edit.py:55 +#: wireless/forms/bulk_import.py:48 wireless/forms/model_forms.py:48 +#: wireless/models.py:102 msgid "VLAN" msgstr "VLAN" -#: netbox/ipam/forms/bulk_edit.py:244 +#: ipam/forms/bulk_edit.py:245 msgid "Prefix length" msgstr "Довжина префікса" -#: netbox/ipam/forms/bulk_edit.py:267 netbox/ipam/forms/filtersets.py:241 -#: netbox/templates/ipam/prefix.html:85 +#: ipam/forms/bulk_edit.py:268 ipam/forms/filtersets.py:241 +#: templates/ipam/prefix.html:85 msgid "Is a pool" msgstr "Чи є басейн" -#: netbox/ipam/forms/bulk_edit.py:272 netbox/ipam/forms/bulk_edit.py:317 -#: netbox/ipam/forms/filtersets.py:248 netbox/ipam/forms/filtersets.py:293 -#: netbox/ipam/models/ip.py:272 netbox/ipam/models/ip.py:539 +#: ipam/forms/bulk_edit.py:273 ipam/forms/bulk_edit.py:318 +#: ipam/forms/filtersets.py:248 ipam/forms/filtersets.py:293 +#: ipam/models/ip.py:272 ipam/models/ip.py:539 msgid "Treat as fully utilized" msgstr "Ставтеся до повного використання" -#: netbox/ipam/forms/bulk_edit.py:286 netbox/ipam/forms/filtersets.py:171 +#: ipam/forms/bulk_edit.py:287 ipam/forms/filtersets.py:171 msgid "VLAN Assignment" msgstr "Призначення VLAN" -#: netbox/ipam/forms/bulk_edit.py:365 netbox/ipam/models/ip.py:772 +#: ipam/forms/bulk_edit.py:366 ipam/models/ip.py:772 msgid "DNS name" msgstr "Ім'я DNS" -#: netbox/ipam/forms/bulk_edit.py:386 netbox/ipam/forms/bulk_edit.py:579 -#: netbox/ipam/forms/bulk_import.py:394 netbox/ipam/forms/bulk_import.py:469 -#: netbox/ipam/forms/bulk_import.py:495 netbox/ipam/forms/filtersets.py:390 -#: netbox/ipam/forms/filtersets.py:530 netbox/templates/ipam/fhrpgroup.html:22 -#: netbox/templates/ipam/inc/panels/fhrp_groups.html:24 -#: netbox/templates/ipam/service.html:32 -#: netbox/templates/ipam/servicetemplate.html:19 +#: ipam/forms/bulk_edit.py:387 ipam/forms/bulk_edit.py:534 +#: ipam/forms/bulk_import.py:394 ipam/forms/bulk_import.py:469 +#: ipam/forms/bulk_import.py:495 ipam/forms/filtersets.py:390 +#: ipam/forms/filtersets.py:530 templates/ipam/fhrpgroup.html:22 +#: templates/ipam/inc/panels/fhrp_groups.html:24 +#: templates/ipam/service.html:32 templates/ipam/servicetemplate.html:19 msgid "Protocol" msgstr "Протокол" -#: netbox/ipam/forms/bulk_edit.py:393 netbox/ipam/forms/filtersets.py:397 -#: netbox/ipam/tables/fhrp.py:22 netbox/templates/ipam/fhrpgroup.html:26 +#: ipam/forms/bulk_edit.py:394 ipam/forms/filtersets.py:397 +#: ipam/tables/fhrp.py:22 templates/ipam/fhrpgroup.html:26 msgid "Group ID" msgstr "Ідентифікатор групи" -#: netbox/ipam/forms/bulk_edit.py:398 netbox/ipam/forms/filtersets.py:402 -#: netbox/wireless/forms/bulk_edit.py:68 -#: netbox/wireless/forms/bulk_edit.py:115 -#: netbox/wireless/forms/bulk_import.py:62 -#: netbox/wireless/forms/bulk_import.py:65 -#: netbox/wireless/forms/bulk_import.py:104 -#: netbox/wireless/forms/bulk_import.py:107 -#: netbox/wireless/forms/filtersets.py:54 -#: netbox/wireless/forms/filtersets.py:88 +#: ipam/forms/bulk_edit.py:399 ipam/forms/filtersets.py:402 +#: wireless/forms/bulk_edit.py:68 wireless/forms/bulk_edit.py:115 +#: wireless/forms/bulk_import.py:62 wireless/forms/bulk_import.py:65 +#: wireless/forms/bulk_import.py:104 wireless/forms/bulk_import.py:107 +#: wireless/forms/filtersets.py:54 wireless/forms/filtersets.py:88 msgid "Authentication type" msgstr "Тип аутентифікації" -#: netbox/ipam/forms/bulk_edit.py:403 netbox/ipam/forms/filtersets.py:406 +#: ipam/forms/bulk_edit.py:404 ipam/forms/filtersets.py:406 msgid "Authentication key" msgstr "Ключ аутентифікації" -#: netbox/ipam/forms/bulk_edit.py:420 netbox/ipam/forms/filtersets.py:383 -#: netbox/ipam/forms/model_forms.py:474 netbox/netbox/navigation/menu.py:386 -#: netbox/templates/ipam/fhrpgroup.html:49 -#: netbox/templates/wireless/inc/authentication_attrs.html:5 -#: netbox/wireless/forms/bulk_edit.py:91 -#: netbox/wireless/forms/bulk_edit.py:149 -#: netbox/wireless/forms/filtersets.py:36 -#: netbox/wireless/forms/filtersets.py:76 -#: netbox/wireless/forms/model_forms.py:55 -#: netbox/wireless/forms/model_forms.py:171 +#: ipam/forms/bulk_edit.py:421 ipam/forms/filtersets.py:383 +#: ipam/forms/model_forms.py:474 netbox/navigation/menu.py:386 +#: templates/ipam/fhrpgroup.html:49 +#: templates/wireless/inc/authentication_attrs.html:5 +#: wireless/forms/bulk_edit.py:91 wireless/forms/bulk_edit.py:149 +#: wireless/forms/filtersets.py:36 wireless/forms/filtersets.py:76 +#: wireless/forms/model_forms.py:55 wireless/forms/model_forms.py:171 msgid "Authentication" msgstr "Аутентифікація" -#: netbox/ipam/forms/bulk_edit.py:432 netbox/ipam/forms/model_forms.py:575 +#: ipam/forms/bulk_edit.py:436 ipam/forms/model_forms.py:575 msgid "Scope type" msgstr "Тип сфери застосування" -#: netbox/ipam/forms/bulk_edit.py:490 netbox/ipam/models/vlans.py:60 -msgid "VLAN ID ranges" -msgstr "Діапазони ідентифікаторів VLAN" - -#: netbox/ipam/forms/bulk_edit.py:498 netbox/ipam/forms/model_forms.py:578 -#: netbox/ipam/forms/model_forms.py:588 netbox/ipam/tables/vlans.py:71 -#: netbox/templates/ipam/vlangroup.html:38 +#: ipam/forms/bulk_edit.py:439 ipam/forms/bulk_edit.py:453 +#: ipam/forms/model_forms.py:578 ipam/forms/model_forms.py:588 +#: ipam/tables/vlans.py:71 templates/ipam/vlangroup.html:38 msgid "Scope" msgstr "Сфера застосування" -#: netbox/ipam/forms/bulk_edit.py:570 +#: ipam/forms/bulk_edit.py:446 ipam/models/vlans.py:60 +msgid "VLAN ID ranges" +msgstr "Діапазони ідентифікаторів VLAN" + +#: ipam/forms/bulk_edit.py:525 msgid "Site & Group" msgstr "Тех. майданчик і група" -#: netbox/ipam/forms/bulk_edit.py:584 netbox/ipam/forms/model_forms.py:659 -#: netbox/ipam/forms/model_forms.py:691 netbox/ipam/tables/services.py:19 -#: netbox/ipam/tables/services.py:49 netbox/templates/ipam/service.html:36 -#: netbox/templates/ipam/servicetemplate.html:23 +#: ipam/forms/bulk_edit.py:539 ipam/forms/model_forms.py:659 +#: ipam/forms/model_forms.py:691 ipam/tables/services.py:19 +#: ipam/tables/services.py:49 templates/ipam/service.html:36 +#: templates/ipam/servicetemplate.html:23 msgid "Ports" msgstr "Порти" -#: netbox/ipam/forms/bulk_import.py:48 +#: ipam/forms/bulk_import.py:48 msgid "Import route targets" msgstr "Імпортувати цілі маршруту" -#: netbox/ipam/forms/bulk_import.py:54 +#: ipam/forms/bulk_import.py:54 msgid "Export route targets" msgstr "Експортувати цілі маршруту" -#: netbox/ipam/forms/bulk_import.py:92 netbox/ipam/forms/bulk_import.py:112 -#: netbox/ipam/forms/bulk_import.py:132 +#: ipam/forms/bulk_import.py:92 ipam/forms/bulk_import.py:112 +#: ipam/forms/bulk_import.py:132 msgid "Assigned RIR" msgstr "Призначений RIR" -#: netbox/ipam/forms/bulk_import.py:182 +#: ipam/forms/bulk_import.py:182 msgid "VLAN's group (if any)" msgstr "Група VLAN (якщо така є)" -#: netbox/ipam/forms/bulk_import.py:308 +#: ipam/forms/bulk_import.py:308 msgid "Parent device of assigned interface (if any)" msgstr "Батьківський пристрій призначеного інтерфейсу (якщо є)" -#: netbox/ipam/forms/bulk_import.py:311 netbox/ipam/forms/bulk_import.py:488 -#: netbox/ipam/forms/model_forms.py:685 -#: netbox/virtualization/filtersets.py:288 -#: netbox/virtualization/filtersets.py:327 -#: netbox/virtualization/forms/bulk_edit.py:200 -#: netbox/virtualization/forms/bulk_edit.py:326 -#: netbox/virtualization/forms/bulk_import.py:146 -#: netbox/virtualization/forms/bulk_import.py:207 -#: netbox/virtualization/forms/filtersets.py:212 -#: netbox/virtualization/forms/filtersets.py:248 -#: netbox/virtualization/forms/model_forms.py:288 -#: netbox/vpn/forms/bulk_import.py:93 netbox/vpn/forms/bulk_import.py:290 +#: ipam/forms/bulk_import.py:311 ipam/forms/bulk_import.py:488 +#: ipam/forms/model_forms.py:685 virtualization/filtersets.py:288 +#: virtualization/filtersets.py:327 virtualization/forms/bulk_edit.py:200 +#: virtualization/forms/bulk_edit.py:326 +#: virtualization/forms/bulk_import.py:146 +#: virtualization/forms/bulk_import.py:207 +#: virtualization/forms/filtersets.py:212 +#: virtualization/forms/filtersets.py:248 +#: virtualization/forms/model_forms.py:288 vpn/forms/bulk_import.py:93 +#: vpn/forms/bulk_import.py:290 msgid "Virtual machine" msgstr "Віртуальна машина" -#: netbox/ipam/forms/bulk_import.py:315 +#: ipam/forms/bulk_import.py:315 msgid "Parent VM of assigned interface (if any)" msgstr "Батьківська віртуальна машина призначеного інтерфейсу (якщо є)" -#: netbox/ipam/forms/bulk_import.py:325 +#: ipam/forms/bulk_import.py:325 msgid "Is primary" msgstr "Є первинним" -#: netbox/ipam/forms/bulk_import.py:326 +#: ipam/forms/bulk_import.py:326 msgid "Make this the primary IP for the assigned device" msgstr "Зробіть це основним IP для призначеного пристрою" -#: netbox/ipam/forms/bulk_import.py:365 +#: ipam/forms/bulk_import.py:365 msgid "No device or virtual machine specified; cannot set as primary IP" msgstr "" "Пристрій або віртуальна машина не вказано; неможливо встановити як основний " "IP" -#: netbox/ipam/forms/bulk_import.py:369 +#: ipam/forms/bulk_import.py:369 msgid "No interface specified; cannot set as primary IP" msgstr "Інтерфейс не вказано; неможливо встановити як основний IP" -#: netbox/ipam/forms/bulk_import.py:398 +#: ipam/forms/bulk_import.py:398 msgid "Auth type" msgstr "Тип авторизації" -#: netbox/ipam/forms/bulk_import.py:413 +#: ipam/forms/bulk_import.py:413 msgid "Scope type (app & model)" msgstr "Тип сфери застосування (додаток і модель)" -#: netbox/ipam/forms/bulk_import.py:440 +#: ipam/forms/bulk_import.py:440 msgid "Assigned VLAN group" msgstr "Призначена група VLAN" -#: netbox/ipam/forms/bulk_import.py:471 netbox/ipam/forms/bulk_import.py:497 +#: ipam/forms/bulk_import.py:471 ipam/forms/bulk_import.py:497 msgid "IP protocol" msgstr "протокол IP" -#: netbox/ipam/forms/bulk_import.py:485 +#: ipam/forms/bulk_import.py:485 msgid "Required if not assigned to a VM" msgstr "Необхідний, якщо він не призначений для віртуальної машини" -#: netbox/ipam/forms/bulk_import.py:492 +#: ipam/forms/bulk_import.py:492 msgid "Required if not assigned to a device" msgstr "Обов'язково, якщо пристрій не призначений" -#: netbox/ipam/forms/bulk_import.py:517 +#: ipam/forms/bulk_import.py:517 #, python-brace-format msgid "{ip} is not assigned to this device/VM." msgstr "{ip} не призначається цьому пристрою/віртуальній машині." -#: netbox/ipam/forms/filtersets.py:47 netbox/ipam/forms/model_forms.py:63 -#: netbox/netbox/navigation/menu.py:189 netbox/vpn/forms/model_forms.py:410 +#: ipam/forms/filtersets.py:47 ipam/forms/model_forms.py:63 +#: netbox/navigation/menu.py:189 vpn/forms/model_forms.py:410 msgid "Route Targets" msgstr "Маршрутні цілі" -#: netbox/ipam/forms/filtersets.py:53 netbox/ipam/forms/model_forms.py:50 -#: netbox/vpn/forms/filtersets.py:224 netbox/vpn/forms/model_forms.py:397 +#: ipam/forms/filtersets.py:53 ipam/forms/model_forms.py:50 +#: vpn/forms/filtersets.py:224 vpn/forms/model_forms.py:397 msgid "Import targets" msgstr "Імпортувати цілі" -#: netbox/ipam/forms/filtersets.py:58 netbox/ipam/forms/model_forms.py:55 -#: netbox/vpn/forms/filtersets.py:229 netbox/vpn/forms/model_forms.py:402 +#: ipam/forms/filtersets.py:58 ipam/forms/model_forms.py:55 +#: vpn/forms/filtersets.py:229 vpn/forms/model_forms.py:402 msgid "Export targets" msgstr "Експортні цілі" -#: netbox/ipam/forms/filtersets.py:73 +#: ipam/forms/filtersets.py:73 msgid "Imported by VRF" msgstr "Імпортований VRF" -#: netbox/ipam/forms/filtersets.py:78 +#: ipam/forms/filtersets.py:78 msgid "Exported by VRF" msgstr "Експортується VRF" -#: netbox/ipam/forms/filtersets.py:87 netbox/ipam/tables/ip.py:89 -#: netbox/templates/ipam/rir.html:30 +#: ipam/forms/filtersets.py:87 ipam/tables/ip.py:89 templates/ipam/rir.html:30 msgid "Private" msgstr "Приватний" -#: netbox/ipam/forms/filtersets.py:105 netbox/ipam/forms/filtersets.py:191 -#: netbox/ipam/forms/filtersets.py:272 netbox/ipam/forms/filtersets.py:326 +#: ipam/forms/filtersets.py:105 ipam/forms/filtersets.py:191 +#: ipam/forms/filtersets.py:272 ipam/forms/filtersets.py:326 msgid "Address family" msgstr "Адреса сім'ї" -#: netbox/ipam/forms/filtersets.py:119 netbox/templates/ipam/asnrange.html:25 +#: ipam/forms/filtersets.py:119 templates/ipam/asnrange.html:25 msgid "Range" msgstr "Діапазон" -#: netbox/ipam/forms/filtersets.py:128 +#: ipam/forms/filtersets.py:128 msgid "Start" msgstr "Початок" -#: netbox/ipam/forms/filtersets.py:132 +#: ipam/forms/filtersets.py:132 msgid "End" msgstr "Кінець" -#: netbox/ipam/forms/filtersets.py:186 +#: ipam/forms/filtersets.py:186 msgid "Search within" msgstr "Пошук всередині" -#: netbox/ipam/forms/filtersets.py:207 netbox/ipam/forms/filtersets.py:342 +#: ipam/forms/filtersets.py:207 ipam/forms/filtersets.py:342 msgid "Present in VRF" msgstr "Присутній у VRF" -#: netbox/ipam/forms/filtersets.py:311 +#: ipam/forms/filtersets.py:311 msgid "Device/VM" msgstr "Пристрій/віртуальна машина" -#: netbox/ipam/forms/filtersets.py:321 +#: ipam/forms/filtersets.py:321 msgid "Parent Prefix" msgstr "Батьківський префікс" -#: netbox/ipam/forms/filtersets.py:347 +#: ipam/forms/filtersets.py:347 msgid "Assigned Device" msgstr "Призначений пристрій" -#: netbox/ipam/forms/filtersets.py:352 +#: ipam/forms/filtersets.py:352 msgid "Assigned VM" msgstr "Призначена віртуальна машина" -#: netbox/ipam/forms/filtersets.py:366 +#: ipam/forms/filtersets.py:366 msgid "Assigned to an interface" msgstr "Призначено до інтерфейсу" -#: netbox/ipam/forms/filtersets.py:373 netbox/templates/ipam/ipaddress.html:51 +#: ipam/forms/filtersets.py:373 templates/ipam/ipaddress.html:51 msgid "DNS Name" msgstr "Ім'я DNS" -#: netbox/ipam/forms/filtersets.py:416 netbox/ipam/models/vlans.py:235 -#: netbox/ipam/tables/ip.py:176 netbox/ipam/tables/vlans.py:82 -#: netbox/ipam/views.py:971 netbox/netbox/navigation/menu.py:193 -#: netbox/netbox/navigation/menu.py:195 +#: ipam/forms/filtersets.py:416 ipam/models/vlans.py:235 ipam/tables/ip.py:176 +#: ipam/tables/vlans.py:82 ipam/views.py:971 netbox/navigation/menu.py:193 +#: netbox/navigation/menu.py:195 msgid "VLANs" msgstr "VLANs" -#: netbox/ipam/forms/filtersets.py:457 +#: ipam/forms/filtersets.py:457 msgid "Contains VLAN ID" msgstr "Містить ідентифікатор VLAN" -#: netbox/ipam/forms/filtersets.py:513 netbox/ipam/models/vlans.py:176 -#: netbox/templates/ipam/vlan.html:31 +#: ipam/forms/filtersets.py:513 ipam/models/vlans.py:176 +#: templates/ipam/vlan.html:31 msgid "VLAN ID" msgstr "ІДЕНТИФІКАТОР VLAN" -#: netbox/ipam/forms/filtersets.py:556 netbox/ipam/forms/model_forms.py:320 -#: netbox/ipam/forms/model_forms.py:713 netbox/ipam/forms/model_forms.py:739 -#: netbox/ipam/tables/vlans.py:195 -#: netbox/templates/virtualization/virtualdisk.html:21 -#: netbox/templates/virtualization/virtualmachine.html:12 -#: netbox/templates/virtualization/vminterface.html:21 -#: netbox/templates/vpn/tunneltermination.html:25 -#: netbox/virtualization/forms/filtersets.py:197 -#: netbox/virtualization/forms/filtersets.py:242 -#: netbox/virtualization/forms/model_forms.py:220 -#: netbox/virtualization/tables/virtualmachines.py:135 -#: netbox/virtualization/tables/virtualmachines.py:190 -#: netbox/vpn/choices.py:45 netbox/vpn/forms/filtersets.py:293 -#: netbox/vpn/forms/model_forms.py:160 netbox/vpn/forms/model_forms.py:171 -#: netbox/vpn/forms/model_forms.py:273 netbox/vpn/forms/model_forms.py:454 +#: ipam/forms/filtersets.py:556 ipam/forms/model_forms.py:320 +#: ipam/forms/model_forms.py:713 ipam/forms/model_forms.py:739 +#: ipam/tables/vlans.py:195 templates/virtualization/virtualdisk.html:21 +#: templates/virtualization/virtualmachine.html:12 +#: templates/virtualization/vminterface.html:21 +#: templates/vpn/tunneltermination.html:25 +#: virtualization/forms/filtersets.py:197 +#: virtualization/forms/filtersets.py:242 +#: virtualization/forms/model_forms.py:220 +#: virtualization/tables/virtualmachines.py:135 +#: virtualization/tables/virtualmachines.py:190 vpn/choices.py:45 +#: vpn/forms/filtersets.py:293 vpn/forms/model_forms.py:160 +#: vpn/forms/model_forms.py:171 vpn/forms/model_forms.py:273 +#: vpn/forms/model_forms.py:454 msgid "Virtual Machine" msgstr "Віртуальна машина" -#: netbox/ipam/forms/model_forms.py:80 -#: netbox/templates/ipam/routetarget.html:10 +#: ipam/forms/model_forms.py:80 templates/ipam/routetarget.html:10 msgid "Route Target" msgstr "Мета маршруту" -#: netbox/ipam/forms/model_forms.py:114 netbox/ipam/tables/ip.py:117 -#: netbox/templates/ipam/aggregate.html:11 -#: netbox/templates/ipam/prefix.html:38 +#: ipam/forms/model_forms.py:114 ipam/tables/ip.py:117 +#: templates/ipam/aggregate.html:11 templates/ipam/prefix.html:38 msgid "Aggregate" msgstr "Агрегат" -#: netbox/ipam/forms/model_forms.py:135 netbox/templates/ipam/asnrange.html:12 +#: ipam/forms/model_forms.py:135 templates/ipam/asnrange.html:12 msgid "ASN Range" msgstr "Діапазон ASN" -#: netbox/ipam/forms/model_forms.py:231 +#: ipam/forms/model_forms.py:231 msgid "Site/VLAN Assignment" msgstr "Призначення тех. майданчику/VLAN" -#: netbox/ipam/forms/model_forms.py:259 netbox/templates/ipam/iprange.html:10 +#: ipam/forms/model_forms.py:259 templates/ipam/iprange.html:10 msgid "IP Range" msgstr "Діапазон IP" -#: netbox/ipam/forms/model_forms.py:295 netbox/ipam/forms/model_forms.py:321 -#: netbox/ipam/forms/model_forms.py:473 -#: netbox/templates/ipam/fhrpgroup.html:19 +#: ipam/forms/model_forms.py:295 ipam/forms/model_forms.py:321 +#: ipam/forms/model_forms.py:473 templates/ipam/fhrpgroup.html:19 msgid "FHRP Group" msgstr "Група FHRP/VRRP" -#: netbox/ipam/forms/model_forms.py:310 +#: ipam/forms/model_forms.py:310 msgid "Make this the primary IP for the device/VM" msgstr "Зробіть це основним IP для пристрою/віртуальної машини" -#: netbox/ipam/forms/model_forms.py:325 +#: ipam/forms/model_forms.py:325 msgid "NAT IP (Inside)" msgstr "NAT IP (всередині)" -#: netbox/ipam/forms/model_forms.py:384 +#: ipam/forms/model_forms.py:384 msgid "An IP address can only be assigned to a single object." msgstr "IP-адреса може бути призначена лише одному об'єкту." -#: netbox/ipam/forms/model_forms.py:390 netbox/ipam/models/ip.py:897 +#: ipam/forms/model_forms.py:390 ipam/models/ip.py:897 msgid "" "Cannot reassign IP address while it is designated as the primary IP for the " "parent object" @@ -9829,31 +9234,30 @@ msgstr "" "Не вдається перепризначити IP-адресу, поки вона призначена як основний IP " "для батьківського об'єкта" -#: netbox/ipam/forms/model_forms.py:400 +#: ipam/forms/model_forms.py:400 msgid "" "Only IP addresses assigned to an interface can be designated as primary IPs." msgstr "" "Тільки IP-адреси, призначені інтерфейсу, можуть бути визначені основними IP-" "адресами." -#: netbox/ipam/forms/model_forms.py:475 +#: ipam/forms/model_forms.py:475 msgid "Virtual IP Address" msgstr "Віртуальна IP-адреса" -#: netbox/ipam/forms/model_forms.py:560 +#: ipam/forms/model_forms.py:560 msgid "Assignment already exists" msgstr "Призначення вже існує" -#: netbox/ipam/forms/model_forms.py:569 -#: netbox/templates/ipam/vlangroup.html:42 +#: ipam/forms/model_forms.py:569 templates/ipam/vlangroup.html:42 msgid "VLAN IDs" msgstr "Ідентифікатори VLAN" -#: netbox/ipam/forms/model_forms.py:587 +#: ipam/forms/model_forms.py:587 msgid "Child VLANs" msgstr "Дитячі VLAN" -#: netbox/ipam/forms/model_forms.py:664 netbox/ipam/forms/model_forms.py:696 +#: ipam/forms/model_forms.py:664 ipam/forms/model_forms.py:696 msgid "" "Comma-separated list of one or more port numbers. A range may be specified " "using a hyphen." @@ -9861,133 +9265,132 @@ msgstr "" "Список одного або декількох номерів портів, розділених комами. Діапазон " "можна вказати за допомогою дефіса." -#: netbox/ipam/forms/model_forms.py:669 -#: netbox/templates/ipam/servicetemplate.html:12 +#: ipam/forms/model_forms.py:669 templates/ipam/servicetemplate.html:12 msgid "Service Template" msgstr "Шаблон сервісу" -#: netbox/ipam/forms/model_forms.py:716 +#: ipam/forms/model_forms.py:716 msgid "Port(s)" msgstr "Порт (и)" -#: netbox/ipam/forms/model_forms.py:717 netbox/ipam/forms/model_forms.py:745 -#: netbox/templates/ipam/service.html:21 +#: ipam/forms/model_forms.py:717 ipam/forms/model_forms.py:745 +#: templates/ipam/service.html:21 msgid "Service" msgstr "Сервіс" -#: netbox/ipam/forms/model_forms.py:730 +#: ipam/forms/model_forms.py:730 msgid "Service template" msgstr "Шаблон сервісу" -#: netbox/ipam/forms/model_forms.py:742 +#: ipam/forms/model_forms.py:742 msgid "From Template" msgstr "З шаблону" -#: netbox/ipam/forms/model_forms.py:743 +#: ipam/forms/model_forms.py:743 msgid "Custom" msgstr "Користувацький" -#: netbox/ipam/forms/model_forms.py:773 +#: ipam/forms/model_forms.py:773 msgid "" "Must specify name, protocol, and port(s) if not using a service template." msgstr "" "Необхідно вказати ім'я, протокол та порт (и), якщо не використовується " "шаблон служби." -#: netbox/ipam/models/asns.py:34 +#: ipam/models/asns.py:34 msgid "start" msgstr "старт" -#: netbox/ipam/models/asns.py:51 +#: ipam/models/asns.py:51 msgid "ASN range" msgstr "Діапазон ASN" -#: netbox/ipam/models/asns.py:52 +#: ipam/models/asns.py:52 msgid "ASN ranges" msgstr "Діапазони ASN" -#: netbox/ipam/models/asns.py:72 +#: ipam/models/asns.py:72 #, python-brace-format msgid "Starting ASN ({start}) must be lower than ending ASN ({end})." msgstr "Запуск ASN ({start}) повинен бути нижчим за кінцевий ASN ({end})." -#: netbox/ipam/models/asns.py:104 +#: ipam/models/asns.py:104 msgid "Regional Internet Registry responsible for this AS number space" msgstr "Регіональний інтернет-реєстр, відповідальний за цей номер AS" -#: netbox/ipam/models/asns.py:109 +#: ipam/models/asns.py:109 msgid "16- or 32-bit autonomous system number" msgstr "16- або 32-розрядний номер автономної системи" -#: netbox/ipam/models/fhrp.py:22 +#: ipam/models/fhrp.py:22 msgid "group ID" msgstr "Ідентифікатор групи" -#: netbox/ipam/models/fhrp.py:30 netbox/ipam/models/services.py:22 +#: ipam/models/fhrp.py:30 ipam/models/services.py:22 msgid "protocol" msgstr "протокол" -#: netbox/ipam/models/fhrp.py:38 netbox/wireless/models.py:28 +#: ipam/models/fhrp.py:38 wireless/models.py:28 msgid "authentication type" msgstr "тип аутентифікації" -#: netbox/ipam/models/fhrp.py:43 +#: ipam/models/fhrp.py:43 msgid "authentication key" msgstr "ключ аутентифікації" -#: netbox/ipam/models/fhrp.py:56 +#: ipam/models/fhrp.py:56 msgid "FHRP group" msgstr "Група FHRP/VRRP" -#: netbox/ipam/models/fhrp.py:57 +#: ipam/models/fhrp.py:57 msgid "FHRP groups" msgstr "Групи FHRP/VRRP" -#: netbox/ipam/models/fhrp.py:113 +#: ipam/models/fhrp.py:113 msgid "FHRP group assignment" msgstr "Групове призначення FHRP/VRRP" -#: netbox/ipam/models/fhrp.py:114 +#: ipam/models/fhrp.py:114 msgid "FHRP group assignments" msgstr "Групові призначення FHRP/VRRP" -#: netbox/ipam/models/ip.py:65 +#: ipam/models/ip.py:65 msgid "private" msgstr "приватне" -#: netbox/ipam/models/ip.py:66 +#: ipam/models/ip.py:66 msgid "IP space managed by this RIR is considered private" msgstr "Простір IP, керований цим RIR, вважається приватним" -#: netbox/ipam/models/ip.py:72 netbox/netbox/navigation/menu.py:182 +#: ipam/models/ip.py:72 netbox/navigation/menu.py:182 msgid "RIRs" msgstr "RIR" -#: netbox/ipam/models/ip.py:84 +#: ipam/models/ip.py:84 msgid "IPv4 or IPv6 network" msgstr "Мережа IPv4 або IPv6" -#: netbox/ipam/models/ip.py:91 +#: ipam/models/ip.py:91 msgid "Regional Internet Registry responsible for this IP space" msgstr "Регіональний Інтернет-реєстр, відповідальний за цей IP-простір" -#: netbox/ipam/models/ip.py:101 +#: ipam/models/ip.py:101 msgid "date added" msgstr "дата додавання" -#: netbox/ipam/models/ip.py:115 +#: ipam/models/ip.py:115 msgid "aggregate" msgstr "сукупний" -#: netbox/ipam/models/ip.py:116 +#: ipam/models/ip.py:116 msgid "aggregates" msgstr "агреговані мережі" -#: netbox/ipam/models/ip.py:132 +#: ipam/models/ip.py:132 msgid "Cannot create aggregate with /0 mask." msgstr "Не вдається створити агрегат з маскою /0." -#: netbox/ipam/models/ip.py:144 +#: ipam/models/ip.py:144 #, python-brace-format msgid "" "Aggregates cannot overlap. {prefix} is already covered by an existing " @@ -9996,7 +9399,7 @@ msgstr "" "Агрегати не можуть перекриватися. {prefix} вже покривається існуючим " "агрегатом ({aggregate})." -#: netbox/ipam/models/ip.py:158 +#: ipam/models/ip.py:158 #, python-brace-format msgid "" "Prefixes cannot overlap aggregates. {prefix} covers an existing aggregate " @@ -10005,227 +9408,225 @@ msgstr "" "Мережеві префікси не можуть перекривати агрегати. {prefix} охоплює існуючий " "агрегат ({aggregate})." -#: netbox/ipam/models/ip.py:200 netbox/ipam/models/ip.py:737 -#: netbox/vpn/models/tunnels.py:114 +#: ipam/models/ip.py:200 ipam/models/ip.py:737 vpn/models/tunnels.py:114 msgid "role" msgstr "роль" -#: netbox/ipam/models/ip.py:201 +#: ipam/models/ip.py:201 msgid "roles" msgstr "ролі" -#: netbox/ipam/models/ip.py:217 netbox/ipam/models/ip.py:293 +#: ipam/models/ip.py:217 ipam/models/ip.py:293 msgid "prefix" msgstr "префікс" -#: netbox/ipam/models/ip.py:218 +#: ipam/models/ip.py:218 msgid "IPv4 or IPv6 network with mask" msgstr "Мережа IPv4 або IPv6 з маскою" -#: netbox/ipam/models/ip.py:254 +#: ipam/models/ip.py:254 msgid "Operational status of this prefix" msgstr "Операційний стан цього префікса" -#: netbox/ipam/models/ip.py:262 +#: ipam/models/ip.py:262 msgid "The primary function of this prefix" msgstr "Основна функція цього префікса" -#: netbox/ipam/models/ip.py:265 +#: ipam/models/ip.py:265 msgid "is a pool" msgstr "є басейном" -#: netbox/ipam/models/ip.py:267 +#: ipam/models/ip.py:267 msgid "All IP addresses within this prefix are considered usable" msgstr "Усі IP-адреси в цьому префіксі вважаються придатними для використання" -#: netbox/ipam/models/ip.py:270 netbox/ipam/models/ip.py:537 +#: ipam/models/ip.py:270 ipam/models/ip.py:537 msgid "mark utilized" msgstr "використовувана марка" -#: netbox/ipam/models/ip.py:294 +#: ipam/models/ip.py:294 msgid "prefixes" msgstr "мережеві префікси" -#: netbox/ipam/models/ip.py:317 +#: ipam/models/ip.py:317 msgid "Cannot create prefix with /0 mask." msgstr "Неможливо створити префікс з маскою /0." -#: netbox/ipam/models/ip.py:324 netbox/ipam/models/ip.py:874 +#: ipam/models/ip.py:324 ipam/models/ip.py:874 #, python-brace-format msgid "VRF {vrf}" msgstr "ВРФ {vrf}" -#: netbox/ipam/models/ip.py:324 netbox/ipam/models/ip.py:874 +#: ipam/models/ip.py:324 ipam/models/ip.py:874 msgid "global table" msgstr "глобальна таблиця" -#: netbox/ipam/models/ip.py:326 +#: ipam/models/ip.py:326 #, python-brace-format msgid "Duplicate prefix found in {table}: {prefix}" msgstr "Дублікат префікса знайдений у {table}: {prefix}" -#: netbox/ipam/models/ip.py:495 +#: ipam/models/ip.py:495 msgid "start address" msgstr "стартова адреса" -#: netbox/ipam/models/ip.py:496 netbox/ipam/models/ip.py:500 -#: netbox/ipam/models/ip.py:712 +#: ipam/models/ip.py:496 ipam/models/ip.py:500 ipam/models/ip.py:712 msgid "IPv4 or IPv6 address (with mask)" msgstr "Адреса IPv4 або IPv6 (з маскою)" -#: netbox/ipam/models/ip.py:499 +#: ipam/models/ip.py:499 msgid "end address" msgstr "кінцева адреса" -#: netbox/ipam/models/ip.py:526 +#: ipam/models/ip.py:526 msgid "Operational status of this range" msgstr "Експлуатаційний стан даного діапазону" -#: netbox/ipam/models/ip.py:534 +#: ipam/models/ip.py:534 msgid "The primary function of this range" msgstr "Основна функція цього діапазону" -#: netbox/ipam/models/ip.py:548 +#: ipam/models/ip.py:548 msgid "IP range" msgstr "Діапазон IP" -#: netbox/ipam/models/ip.py:549 +#: ipam/models/ip.py:549 msgid "IP ranges" msgstr "Діапазони IP" -#: netbox/ipam/models/ip.py:565 +#: ipam/models/ip.py:565 msgid "Starting and ending IP address versions must match" msgstr "Початкова та кінцева версії IP-адреси повинні збігатися" -#: netbox/ipam/models/ip.py:571 +#: ipam/models/ip.py:571 msgid "Starting and ending IP address masks must match" msgstr "Початкові та кінцеві маски IP-адреси повинні збігатися" -#: netbox/ipam/models/ip.py:578 +#: ipam/models/ip.py:578 #, python-brace-format msgid "" "Ending address must be greater than the starting address ({start_address})" msgstr "" "Кінцева адреса повинна бути більшою за початкову адресу ({start_address})" -#: netbox/ipam/models/ip.py:590 +#: ipam/models/ip.py:590 #, python-brace-format msgid "Defined addresses overlap with range {overlapping_range} in VRF {vrf}" msgstr "" "Визначені адреси перекриваються з діапазоном {overlapping_range} в ВРФ {vrf}" -#: netbox/ipam/models/ip.py:599 +#: ipam/models/ip.py:599 #, python-brace-format msgid "Defined range exceeds maximum supported size ({max_size})" msgstr "" "Визначений діапазон перевищує максимальний підтримуваний розмір ({max_size})" -#: netbox/ipam/models/ip.py:711 netbox/tenancy/models/contacts.py:82 +#: ipam/models/ip.py:711 tenancy/models/contacts.py:82 msgid "address" msgstr "адреса" -#: netbox/ipam/models/ip.py:734 +#: ipam/models/ip.py:734 msgid "The operational status of this IP" msgstr "Операційний стан цього ІП" -#: netbox/ipam/models/ip.py:741 +#: ipam/models/ip.py:741 msgid "The functional role of this IP" msgstr "Функціональна роль цього ІП" -#: netbox/ipam/models/ip.py:765 netbox/templates/ipam/ipaddress.html:72 +#: ipam/models/ip.py:765 templates/ipam/ipaddress.html:72 msgid "NAT (inside)" msgstr "NAT (всередині)" -#: netbox/ipam/models/ip.py:766 +#: ipam/models/ip.py:766 msgid "The IP for which this address is the \"outside\" IP" msgstr "IP, для якого ця адреса є \"зовнішнім\" IP" -#: netbox/ipam/models/ip.py:773 +#: ipam/models/ip.py:773 msgid "Hostname or FQDN (not case-sensitive)" msgstr "Ім'я хоста або FQDN (не залежить від регістру регістру)" -#: netbox/ipam/models/ip.py:789 netbox/ipam/models/services.py:94 +#: ipam/models/ip.py:789 ipam/models/services.py:94 msgid "IP addresses" msgstr "IP-адреси" -#: netbox/ipam/models/ip.py:845 +#: ipam/models/ip.py:845 msgid "Cannot create IP address with /0 mask." msgstr "Не вдається створити IP-адресу з маскою /0." -#: netbox/ipam/models/ip.py:851 +#: ipam/models/ip.py:851 #, python-brace-format msgid "{ip} is a network ID, which may not be assigned to an interface." msgstr "" "{ip} це ідентифікатор мережі, який не може бути присвоєний інтерфейсу." -#: netbox/ipam/models/ip.py:862 +#: ipam/models/ip.py:862 #, python-brace-format msgid "" "{ip} is a broadcast address, which may not be assigned to an interface." msgstr "{ip} це адреса трансляції, яка може не бути присвоєна інтерфейсу." -#: netbox/ipam/models/ip.py:876 +#: ipam/models/ip.py:876 #, python-brace-format msgid "Duplicate IP address found in {table}: {ipaddress}" msgstr "Дублікати IP-адреси знайдено в {table}: {ipaddress}" -#: netbox/ipam/models/ip.py:903 +#: ipam/models/ip.py:903 msgid "Only IPv6 addresses can be assigned SLAAC status" msgstr "Статус SLAAC може бути призначений лише адресам IPv6" -#: netbox/ipam/models/services.py:33 +#: ipam/models/services.py:33 msgid "port numbers" msgstr "номери портів" -#: netbox/ipam/models/services.py:59 +#: ipam/models/services.py:59 msgid "service template" msgstr "шаблон сервісу" -#: netbox/ipam/models/services.py:60 +#: ipam/models/services.py:60 msgid "service templates" msgstr "шаблони послуг" -#: netbox/ipam/models/services.py:95 +#: ipam/models/services.py:95 msgid "The specific IP addresses (if any) to which this service is bound" msgstr "Конкретні IP-адреси (якщо такі є), до яких прив'язана ця послуга" -#: netbox/ipam/models/services.py:102 +#: ipam/models/services.py:102 msgid "service" msgstr "послуга" -#: netbox/ipam/models/services.py:103 +#: ipam/models/services.py:103 msgid "services" msgstr "послуги" -#: netbox/ipam/models/services.py:117 +#: ipam/models/services.py:117 msgid "" "A service cannot be associated with both a device and a virtual machine." msgstr "" "Сервіс не може бути пов'язаний як з пристроєм, так і з віртуальною машиною." -#: netbox/ipam/models/services.py:119 +#: ipam/models/services.py:119 msgid "" "A service must be associated with either a device or a virtual machine." msgstr "" "Служба повинна бути пов'язана або з пристроєм, або з віртуальною машиною." -#: netbox/ipam/models/vlans.py:85 +#: ipam/models/vlans.py:85 msgid "VLAN groups" msgstr "Групи VLAN" -#: netbox/ipam/models/vlans.py:95 +#: ipam/models/vlans.py:95 msgid "Cannot set scope_type without scope_id." msgstr "Не вдається встановити scope_type без scope_id." -#: netbox/ipam/models/vlans.py:97 +#: ipam/models/vlans.py:97 msgid "Cannot set scope_id without scope_type." msgstr "Не вдається встановити scope_id без scope_type." -#: netbox/ipam/models/vlans.py:101 +#: ipam/models/vlans.py:101 msgid "Ranges cannot overlap." msgstr "Діапазони не можуть перекриватися." -#: netbox/ipam/models/vlans.py:106 +#: ipam/models/vlans.py:106 #, python-brace-format msgid "" "Maximum child VID must be greater than or equal to minimum child VID " @@ -10234,27 +9635,27 @@ msgstr "" "Максимальний підпорядкований VID повинен бути більшим або дорівнює " "мінімальному підпорядкований VID ({value})" -#: netbox/ipam/models/vlans.py:165 +#: ipam/models/vlans.py:165 msgid "The specific site to which this VLAN is assigned (if any)" msgstr "Конкретний тех. майданчик, якому присвоєно цей VLAN (якщо такий є)" -#: netbox/ipam/models/vlans.py:173 +#: ipam/models/vlans.py:173 msgid "VLAN group (optional)" msgstr "Група VLAN (необов'язково)" -#: netbox/ipam/models/vlans.py:181 +#: ipam/models/vlans.py:181 msgid "Numeric VLAN ID (1-4094)" msgstr "Числовий ідентифікатор VLAN (1-4094)" -#: netbox/ipam/models/vlans.py:199 +#: ipam/models/vlans.py:199 msgid "Operational status of this VLAN" msgstr "Операційний стан цього VLAN" -#: netbox/ipam/models/vlans.py:207 +#: ipam/models/vlans.py:207 msgid "The primary function of this VLAN" msgstr "Основна функція цього VLAN" -#: netbox/ipam/models/vlans.py:250 +#: ipam/models/vlans.py:250 #, python-brace-format msgid "" "VLAN is assigned to group {group} (scope: {scope}); cannot also assign to " @@ -10263,166 +9664,164 @@ msgstr "" "VLAN присвоюється групі {group} (сфера застосування: {scope}); також не може" " призначатися до тех. майданчику {site}." -#: netbox/ipam/models/vlans.py:259 +#: ipam/models/vlans.py:259 #, python-brace-format msgid "VID must be in ranges {ranges} for VLANs in group {group}" msgstr "VID повинен знаходитися в діапазоні {ranges} для VLAN в групі {group}" -#: netbox/ipam/models/vrfs.py:30 +#: ipam/models/vrfs.py:30 msgid "route distinguisher" msgstr "розрізнювач маршруту" -#: netbox/ipam/models/vrfs.py:31 +#: ipam/models/vrfs.py:31 msgid "Unique route distinguisher (as defined in RFC 4364)" msgstr "Унікальний розрізнювач маршруту (як визначено в RFC 4364)" -#: netbox/ipam/models/vrfs.py:42 +#: ipam/models/vrfs.py:42 msgid "enforce unique space" msgstr "забезпечити унікальний простір" -#: netbox/ipam/models/vrfs.py:43 +#: ipam/models/vrfs.py:43 msgid "Prevent duplicate prefixes/IP addresses within this VRF" msgstr "Запобігання дублікуванню префіксів/IP-адрес у цьому VRF" -#: netbox/ipam/models/vrfs.py:63 netbox/netbox/navigation/menu.py:186 -#: netbox/netbox/navigation/menu.py:188 +#: ipam/models/vrfs.py:63 netbox/navigation/menu.py:186 +#: netbox/navigation/menu.py:188 msgid "VRFs" msgstr "VRF" -#: netbox/ipam/models/vrfs.py:82 +#: ipam/models/vrfs.py:82 msgid "Route target value (formatted in accordance with RFC 4360)" msgstr "Цільове значення маршруту (відформатоване відповідно до RFC 4360)" -#: netbox/ipam/models/vrfs.py:94 +#: ipam/models/vrfs.py:94 msgid "route target" msgstr "цільовий маршрут" -#: netbox/ipam/models/vrfs.py:95 +#: ipam/models/vrfs.py:95 msgid "route targets" msgstr "маршрутні цілі" -#: netbox/ipam/tables/asn.py:52 +#: ipam/tables/asn.py:52 msgid "ASDOT" msgstr "АСДОТ" -#: netbox/ipam/tables/asn.py:57 +#: ipam/tables/asn.py:57 msgid "Site Count" msgstr "Кількість тех. майданчиків" -#: netbox/ipam/tables/asn.py:62 +#: ipam/tables/asn.py:62 msgid "Provider Count" msgstr "Кількість провайдерів" -#: netbox/ipam/tables/ip.py:95 netbox/netbox/navigation/menu.py:179 -#: netbox/netbox/navigation/menu.py:181 +#: ipam/tables/ip.py:95 netbox/navigation/menu.py:179 +#: netbox/navigation/menu.py:181 msgid "Aggregates" msgstr "Агрегати" -#: netbox/ipam/tables/ip.py:125 +#: ipam/tables/ip.py:125 msgid "Added" msgstr "Додано" -#: netbox/ipam/tables/ip.py:128 netbox/ipam/tables/ip.py:166 -#: netbox/ipam/tables/vlans.py:142 netbox/ipam/views.py:346 -#: netbox/netbox/navigation/menu.py:165 netbox/netbox/navigation/menu.py:167 -#: netbox/templates/ipam/vlan.html:84 +#: ipam/tables/ip.py:128 ipam/tables/ip.py:166 ipam/tables/vlans.py:142 +#: ipam/views.py:346 netbox/navigation/menu.py:165 +#: netbox/navigation/menu.py:167 templates/ipam/vlan.html:84 msgid "Prefixes" msgstr "Мережеві префікси" -#: netbox/ipam/tables/ip.py:131 netbox/ipam/tables/ip.py:270 -#: netbox/ipam/tables/ip.py:324 netbox/ipam/tables/vlans.py:86 -#: netbox/templates/dcim/device.html:260 -#: netbox/templates/ipam/aggregate.html:24 -#: netbox/templates/ipam/iprange.html:29 netbox/templates/ipam/prefix.html:106 +#: ipam/tables/ip.py:131 ipam/tables/ip.py:270 ipam/tables/ip.py:324 +#: ipam/tables/vlans.py:86 templates/dcim/device.html:260 +#: templates/ipam/aggregate.html:24 templates/ipam/iprange.html:29 +#: templates/ipam/prefix.html:106 msgid "Utilization" msgstr "Утилізація" -#: netbox/ipam/tables/ip.py:171 netbox/netbox/navigation/menu.py:161 +#: ipam/tables/ip.py:171 netbox/navigation/menu.py:161 msgid "IP Ranges" msgstr "Діапазони IP" -#: netbox/ipam/tables/ip.py:221 +#: ipam/tables/ip.py:221 msgid "Prefix (Flat)" msgstr "Префікс (Плоский)" -#: netbox/ipam/tables/ip.py:225 +#: ipam/tables/ip.py:225 msgid "Depth" msgstr "Глибина" -#: netbox/ipam/tables/ip.py:262 +#: ipam/tables/ip.py:262 msgid "Pool" msgstr "Басейн" -#: netbox/ipam/tables/ip.py:266 netbox/ipam/tables/ip.py:320 +#: ipam/tables/ip.py:266 ipam/tables/ip.py:320 msgid "Marked Utilized" msgstr "Позначений Використовуваний" -#: netbox/ipam/tables/ip.py:304 +#: ipam/tables/ip.py:304 msgid "Start address" msgstr "Початкова адреса" -#: netbox/ipam/tables/ip.py:383 +#: ipam/tables/ip.py:383 msgid "NAT (Inside)" msgstr "NAT (всередині)" -#: netbox/ipam/tables/ip.py:388 +#: ipam/tables/ip.py:388 msgid "NAT (Outside)" msgstr "NAT (зовні)" -#: netbox/ipam/tables/ip.py:393 +#: ipam/tables/ip.py:393 msgid "Assigned" msgstr "Призначено" -#: netbox/ipam/tables/ip.py:429 netbox/templates/vpn/l2vpntermination.html:16 -#: netbox/vpn/forms/filtersets.py:240 +#: ipam/tables/ip.py:429 templates/vpn/l2vpntermination.html:16 +#: vpn/forms/filtersets.py:240 msgid "Assigned Object" msgstr "Призначений об'єкт" -#: netbox/ipam/tables/vlans.py:68 +#: ipam/tables/vlans.py:68 msgid "Scope Type" msgstr "Тип сфери застосування" -#: netbox/ipam/tables/vlans.py:76 +#: ipam/tables/vlans.py:76 msgid "VID Ranges" msgstr "Діапазони VID" -#: netbox/ipam/tables/vlans.py:111 netbox/ipam/tables/vlans.py:214 -#: netbox/templates/dcim/inc/interface_vlans_table.html:4 +#: ipam/tables/vlans.py:111 ipam/tables/vlans.py:214 +#: templates/dcim/inc/interface_vlans_table.html:4 msgid "VID" msgstr "ВИД" -#: netbox/ipam/tables/vrfs.py:30 +#: ipam/tables/vrfs.py:30 msgid "RD" msgstr "Р-Н" -#: netbox/ipam/tables/vrfs.py:33 +#: ipam/tables/vrfs.py:33 msgid "Unique" msgstr "Унікальний" -#: netbox/ipam/tables/vrfs.py:37 netbox/vpn/tables/l2vpn.py:27 +#: ipam/tables/vrfs.py:37 vpn/tables/l2vpn.py:27 msgid "Import Targets" msgstr "Імпортувати цілі" -#: netbox/ipam/tables/vrfs.py:42 netbox/vpn/tables/l2vpn.py:32 +#: ipam/tables/vrfs.py:42 vpn/tables/l2vpn.py:32 msgid "Export Targets" msgstr "Експортні цілі" -#: netbox/ipam/validators.py:9 +#: ipam/validators.py:9 #, python-brace-format msgid "{prefix} is not a valid prefix. Did you mean {suggested}?" msgstr "{prefix} не є дійсним префіксом. Ви мали на увазі {suggested}?" -#: netbox/ipam/validators.py:16 +#: ipam/validators.py:16 #, python-format msgid "The prefix length must be less than or equal to %(limit_value)s." msgstr "Довжина префікса повинна бути менше або дорівнює %(limit_value)s." -#: netbox/ipam/validators.py:24 +#: ipam/validators.py:24 #, python-format msgid "The prefix length must be greater than or equal to %(limit_value)s." msgstr "Довжина префікса повинна бути більше або дорівнює %(limit_value)s." -#: netbox/ipam/validators.py:33 +#: ipam/validators.py:33 msgid "" "Only alphanumeric characters, asterisks, hyphens, periods, and underscores " "are allowed in DNS names" @@ -10430,31 +9829,31 @@ msgstr "" "У назвах DNS дозволені лише буквено-цифрові символи, зірочки, дефіси, крапки" " та підкреслення" -#: netbox/ipam/views.py:533 +#: ipam/views.py:533 msgid "Child Prefixes" msgstr "Підпорядковані мережеві префікси" -#: netbox/ipam/views.py:569 +#: ipam/views.py:569 msgid "Child Ranges" msgstr "Дитячі діапазони" -#: netbox/ipam/views.py:898 +#: ipam/views.py:898 msgid "Related IPs" msgstr "Пов'язані IP-адреси" -#: netbox/ipam/views.py:1127 +#: ipam/views.py:1127 msgid "Device Interfaces" msgstr "Інтерфейси пристроїв" -#: netbox/ipam/views.py:1145 +#: ipam/views.py:1145 msgid "VM Interfaces" msgstr "Інтерфейси віртуальної машини" -#: netbox/netbox/api/fields.py:65 +#: netbox/api/fields.py:65 msgid "This field may not be blank." msgstr "Це поле не може бути порожнім." -#: netbox/netbox/api/fields.py:70 +#: netbox/api/fields.py:70 msgid "" "Value must be passed directly (e.g. \"foo\": 123); do not use a dictionary " "or list." @@ -10462,341 +9861,328 @@ msgstr "" "Значення має бути передано безпосередньо (наприклад, \"foo\": 123); не " "використовуйте словник або список." -#: netbox/netbox/api/fields.py:91 +#: netbox/api/fields.py:91 #, python-brace-format msgid "{value} is not a valid choice." msgstr "{value} не є дійсним вибором." -#: netbox/netbox/api/fields.py:104 +#: netbox/api/fields.py:104 #, python-brace-format msgid "Invalid content type: {content_type}" msgstr "Невірний тип вмісту: {content_type}" -#: netbox/netbox/api/fields.py:105 +#: netbox/api/fields.py:105 msgid "Invalid value. Specify a content type as '.'." msgstr "Невірне значення. Вкажіть тип вмісту як '.'." -#: netbox/netbox/api/fields.py:167 +#: netbox/api/fields.py:167 msgid "Ranges must be specified in the form (lower, upper)." msgstr "Діапазони повинні бути вказані в формі (нижній, верхній)." -#: netbox/netbox/api/fields.py:169 +#: netbox/api/fields.py:169 msgid "Range boundaries must be defined as integers." msgstr "Межі діапазону повинні бути визначені як цілі числа." -#: netbox/netbox/api/serializers/fields.py:40 +#: netbox/api/serializers/fields.py:40 #, python-brace-format msgid "{class_name} must implement get_view_name()" msgstr "{class_name} повинен реалізувати get_view_name()" -#: netbox/netbox/authentication/__init__.py:138 +#: netbox/authentication/__init__.py:138 #, python-brace-format msgid "Invalid permission {permission} for model {model}" msgstr "Невірний дозвіл {permission} для моделі {model}" -#: netbox/netbox/choices.py:49 +#: netbox/choices.py:49 msgid "Dark Red" msgstr "Темно-червоний" -#: netbox/netbox/choices.py:52 +#: netbox/choices.py:52 msgid "Rose" msgstr "Роза" -#: netbox/netbox/choices.py:53 +#: netbox/choices.py:53 msgid "Fuchsia" msgstr "Фуксія" -#: netbox/netbox/choices.py:55 +#: netbox/choices.py:55 msgid "Dark Purple" msgstr "Темно-фіолетовий" -#: netbox/netbox/choices.py:58 +#: netbox/choices.py:58 msgid "Light Blue" msgstr "Світло-блакитний" -#: netbox/netbox/choices.py:61 +#: netbox/choices.py:61 msgid "Aqua" msgstr "Аква" -#: netbox/netbox/choices.py:62 +#: netbox/choices.py:62 msgid "Dark Green" msgstr "Темно-зелений" -#: netbox/netbox/choices.py:64 +#: netbox/choices.py:64 msgid "Light Green" msgstr "Світло-зелений" -#: netbox/netbox/choices.py:65 +#: netbox/choices.py:65 msgid "Lime" msgstr "Лайм" -#: netbox/netbox/choices.py:67 +#: netbox/choices.py:67 msgid "Amber" msgstr "Бурштин" -#: netbox/netbox/choices.py:69 +#: netbox/choices.py:69 msgid "Dark Orange" msgstr "Темно-помаранчевий" -#: netbox/netbox/choices.py:70 +#: netbox/choices.py:70 msgid "Brown" msgstr "Коричневий" -#: netbox/netbox/choices.py:71 +#: netbox/choices.py:71 msgid "Light Grey" msgstr "Світло-сірий" -#: netbox/netbox/choices.py:72 +#: netbox/choices.py:72 msgid "Grey" msgstr "Сірий" -#: netbox/netbox/choices.py:73 +#: netbox/choices.py:73 msgid "Dark Grey" msgstr "Темно-сірий" -#: netbox/netbox/choices.py:128 +#: netbox/choices.py:128 msgid "Direct" msgstr "прямий" -#: netbox/netbox/choices.py:129 +#: netbox/choices.py:129 msgid "Upload" msgstr "Завантажити" -#: netbox/netbox/choices.py:141 netbox/netbox/choices.py:155 +#: netbox/choices.py:141 netbox/choices.py:155 msgid "Auto-detect" msgstr "Автоматичне виявлення" -#: netbox/netbox/choices.py:156 +#: netbox/choices.py:156 msgid "Comma" msgstr "Кома" -#: netbox/netbox/choices.py:157 +#: netbox/choices.py:157 msgid "Semicolon" msgstr "Крапка з комою" -#: netbox/netbox/choices.py:158 +#: netbox/choices.py:158 msgid "Tab" msgstr "Вкладка" -#: netbox/netbox/config/__init__.py:67 +#: netbox/config/__init__.py:67 #, python-brace-format msgid "Invalid configuration parameter: {item}" msgstr "Невірний параметр конфігурації: {item}" -#: netbox/netbox/config/parameters.py:22 -#: netbox/templates/core/inc/config_data.html:62 +#: netbox/config/parameters.py:22 templates/core/inc/config_data.html:62 msgid "Login banner" msgstr "Банер для входу" -#: netbox/netbox/config/parameters.py:24 +#: netbox/config/parameters.py:24 msgid "Additional content to display on the login page" msgstr "Додатковий вміст для відображення на сторінці входу" -#: netbox/netbox/config/parameters.py:33 -#: netbox/templates/core/inc/config_data.html:66 +#: netbox/config/parameters.py:33 templates/core/inc/config_data.html:66 msgid "Maintenance banner" msgstr "Банер технічного обслуговування" -#: netbox/netbox/config/parameters.py:35 +#: netbox/config/parameters.py:35 msgid "Additional content to display when in maintenance mode" msgstr "Додатковий вміст для відображення в режимі технічного обслуговування" -#: netbox/netbox/config/parameters.py:44 -#: netbox/templates/core/inc/config_data.html:70 +#: netbox/config/parameters.py:44 templates/core/inc/config_data.html:70 msgid "Top banner" msgstr "Верхній банер" -#: netbox/netbox/config/parameters.py:46 +#: netbox/config/parameters.py:46 msgid "Additional content to display at the top of every page" msgstr "Додатковий вміст для відображення у верхній частині кожної сторінки" -#: netbox/netbox/config/parameters.py:55 -#: netbox/templates/core/inc/config_data.html:74 +#: netbox/config/parameters.py:55 templates/core/inc/config_data.html:74 msgid "Bottom banner" msgstr "Нижній банер" -#: netbox/netbox/config/parameters.py:57 +#: netbox/config/parameters.py:57 msgid "Additional content to display at the bottom of every page" msgstr "Додатковий вміст для відображення внизу кожної сторінки" -#: netbox/netbox/config/parameters.py:68 +#: netbox/config/parameters.py:68 msgid "Globally unique IP space" msgstr "Всесвітньо унікальний IP-простір" -#: netbox/netbox/config/parameters.py:70 +#: netbox/config/parameters.py:70 msgid "Enforce unique IP addressing within the global table" msgstr "Забезпечити унікальну IP-адресацію в глобальній таблиці" -#: netbox/netbox/config/parameters.py:75 -#: netbox/templates/core/inc/config_data.html:44 +#: netbox/config/parameters.py:75 templates/core/inc/config_data.html:44 msgid "Prefer IPv4" msgstr "Віддавайте перевагу IPv4" -#: netbox/netbox/config/parameters.py:77 +#: netbox/config/parameters.py:77 msgid "Prefer IPv4 addresses over IPv6" msgstr "Віддавайте перевагу IPv4 адресам над IPv6" -#: netbox/netbox/config/parameters.py:84 +#: netbox/config/parameters.py:84 msgid "Rack unit height" msgstr "Висота юніта стійки" -#: netbox/netbox/config/parameters.py:86 +#: netbox/config/parameters.py:86 msgid "Default unit height for rendered rack elevations" msgstr "Висота юніта за замовчуванням для візуалізованих висот стійки" -#: netbox/netbox/config/parameters.py:91 +#: netbox/config/parameters.py:91 msgid "Rack unit width" msgstr "Ширина юніта стійки" -#: netbox/netbox/config/parameters.py:93 +#: netbox/config/parameters.py:93 msgid "Default unit width for rendered rack elevations" msgstr "Типова одиниця ширини для візуалізованих висот стійки" -#: netbox/netbox/config/parameters.py:100 +#: netbox/config/parameters.py:100 msgid "Powerfeed voltage" msgstr "Напруга подачі живлення" -#: netbox/netbox/config/parameters.py:102 +#: netbox/config/parameters.py:102 msgid "Default voltage for powerfeeds" msgstr "Напруга за замовчуванням при подачі живлення" -#: netbox/netbox/config/parameters.py:107 +#: netbox/config/parameters.py:107 msgid "Powerfeed amperage" msgstr "Сила струму подачі живлення" -#: netbox/netbox/config/parameters.py:109 +#: netbox/config/parameters.py:109 msgid "Default amperage for powerfeeds" msgstr "Сила струму за замовчуванням для подачі живлення" -#: netbox/netbox/config/parameters.py:114 +#: netbox/config/parameters.py:114 msgid "Powerfeed max utilization" msgstr "Максимальне використання при подачі живлення" -#: netbox/netbox/config/parameters.py:116 +#: netbox/config/parameters.py:116 msgid "Default max utilization for powerfeeds" msgstr "Максимальне використання за замовчуванням для подач живлення" -#: netbox/netbox/config/parameters.py:123 -#: netbox/templates/core/inc/config_data.html:53 +#: netbox/config/parameters.py:123 templates/core/inc/config_data.html:53 msgid "Allowed URL schemes" msgstr "Дозволені схеми URL-адрес" -#: netbox/netbox/config/parameters.py:128 +#: netbox/config/parameters.py:128 msgid "Permitted schemes for URLs in user-provided content" msgstr "Дозволені схеми для URL-адрес у вмісті, наданому користувачем" -#: netbox/netbox/config/parameters.py:136 +#: netbox/config/parameters.py:136 msgid "Default page size" msgstr "Типовий розмір сторінки" -#: netbox/netbox/config/parameters.py:142 +#: netbox/config/parameters.py:142 msgid "Maximum page size" msgstr "Максимальний розмір сторінки" -#: netbox/netbox/config/parameters.py:150 -#: netbox/templates/core/inc/config_data.html:96 +#: netbox/config/parameters.py:150 templates/core/inc/config_data.html:96 msgid "Custom validators" msgstr "Користувацькі перевіряючі" -#: netbox/netbox/config/parameters.py:152 +#: netbox/config/parameters.py:152 msgid "Custom validation rules (JSON)" msgstr "Користувацькі правила перевірки (у форматі JSON)" -#: netbox/netbox/config/parameters.py:160 -#: netbox/templates/core/inc/config_data.html:104 +#: netbox/config/parameters.py:160 templates/core/inc/config_data.html:104 msgid "Protection rules" msgstr "Правила захисту" -#: netbox/netbox/config/parameters.py:162 +#: netbox/config/parameters.py:162 msgid "Deletion protection rules (JSON)" msgstr "Правила захисту від видалення (JSON)" -#: netbox/netbox/config/parameters.py:172 -#: netbox/templates/core/inc/config_data.html:117 +#: netbox/config/parameters.py:172 templates/core/inc/config_data.html:117 msgid "Default preferences" msgstr "Налаштування за замовчуванням" -#: netbox/netbox/config/parameters.py:174 +#: netbox/config/parameters.py:174 msgid "Default preferences for new users" msgstr "Налаштування за замовчуванням для нових користувачів" -#: netbox/netbox/config/parameters.py:181 -#: netbox/templates/core/inc/config_data.html:129 +#: netbox/config/parameters.py:181 templates/core/inc/config_data.html:129 msgid "Maintenance mode" msgstr "Режим обслуговування" -#: netbox/netbox/config/parameters.py:183 +#: netbox/config/parameters.py:183 msgid "Enable maintenance mode" msgstr "Увімкнути режим технічного обслуговування" -#: netbox/netbox/config/parameters.py:188 -#: netbox/templates/core/inc/config_data.html:133 +#: netbox/config/parameters.py:188 templates/core/inc/config_data.html:133 msgid "GraphQL enabled" msgstr "GraphQL увімкнено" -#: netbox/netbox/config/parameters.py:190 +#: netbox/config/parameters.py:190 msgid "Enable the GraphQL API" msgstr "Увімкніть API GraphQL" -#: netbox/netbox/config/parameters.py:195 -#: netbox/templates/core/inc/config_data.html:137 +#: netbox/config/parameters.py:195 templates/core/inc/config_data.html:137 msgid "Changelog retention" msgstr "Зберігання журналу змін" -#: netbox/netbox/config/parameters.py:197 +#: netbox/config/parameters.py:197 msgid "Days to retain changelog history (set to zero for unlimited)" msgstr "" "Дні для збереження історії журналу змін (встановлено нуль для необмеженої " "кількості)" -#: netbox/netbox/config/parameters.py:202 +#: netbox/config/parameters.py:202 msgid "Job result retention" msgstr "Зберігання результатів завдання" -#: netbox/netbox/config/parameters.py:204 +#: netbox/config/parameters.py:204 msgid "Days to retain job result history (set to zero for unlimited)" msgstr "" "Дні для збереження історії результатів завдання (встановлено на нуль " "необмежено)" -#: netbox/netbox/config/parameters.py:209 -#: netbox/templates/core/inc/config_data.html:145 +#: netbox/config/parameters.py:209 templates/core/inc/config_data.html:145 msgid "Maps URL" msgstr "Адреса карт" -#: netbox/netbox/config/parameters.py:211 +#: netbox/config/parameters.py:211 msgid "Base URL for mapping geographic locations" msgstr "Базова URL-адреса для відображення географічних місць" -#: netbox/netbox/forms/__init__.py:12 +#: netbox/forms/__init__.py:12 msgid "Partial match" msgstr "Частковий збіг" -#: netbox/netbox/forms/__init__.py:13 +#: netbox/forms/__init__.py:13 msgid "Exact match" msgstr "Точний збіг" -#: netbox/netbox/forms/__init__.py:14 +#: netbox/forms/__init__.py:14 msgid "Starts with" msgstr "Починається з" -#: netbox/netbox/forms/__init__.py:15 +#: netbox/forms/__init__.py:15 msgid "Ends with" msgstr "Закінчується з" -#: netbox/netbox/forms/__init__.py:16 +#: netbox/forms/__init__.py:16 msgid "Regex" msgstr "Регекс" -#: netbox/netbox/forms/__init__.py:34 +#: netbox/forms/__init__.py:34 msgid "Object type(s)" msgstr "Тип(и) об'єкта" -#: netbox/netbox/forms/__init__.py:40 +#: netbox/forms/__init__.py:40 msgid "Lookup" msgstr "Огляд" -#: netbox/netbox/forms/base.py:90 +#: netbox/forms/base.py:90 msgid "" "Tag slugs separated by commas, encased with double quotes (e.g. " "\"tag1,tag2,tag3\")" @@ -10804,429 +10190,413 @@ msgstr "" "Слимаки міток, розділені комами, укладені подвійними лапками (наприклад, " "\"tag1, tag2, tag3\")" -#: netbox/netbox/forms/base.py:120 +#: netbox/forms/base.py:120 msgid "Add tags" msgstr "Додати мітки" -#: netbox/netbox/forms/base.py:125 +#: netbox/forms/base.py:125 msgid "Remove tags" msgstr "Видалити мітки" -#: netbox/netbox/forms/mixins.py:38 +#: netbox/forms/mixins.py:38 #, python-brace-format msgid "{class_name} must specify a model class." msgstr "{class_name} необхідно вказати клас моделі." -#: netbox/netbox/models/features.py:280 +#: netbox/models/features.py:280 #, python-brace-format msgid "Unknown field name '{name}' in custom field data." msgstr "Невідоме ім'я поля '{name}' у призначених для користувача даних поля." -#: netbox/netbox/models/features.py:286 +#: netbox/models/features.py:286 #, python-brace-format msgid "Invalid value for custom field '{name}': {error}" msgstr "Невірне значення для користувацького поля '{name}': {error}" -#: netbox/netbox/models/features.py:295 +#: netbox/models/features.py:295 #, python-brace-format msgid "Custom field '{name}' must have a unique value." msgstr "Користувацьке поле '{name}' має мати унікальне значення." -#: netbox/netbox/models/features.py:302 +#: netbox/models/features.py:302 #, python-brace-format msgid "Missing required custom field '{name}'." msgstr "Відсутнє обов'язкове користувацьке поле '{name}'." -#: netbox/netbox/models/features.py:462 +#: netbox/models/features.py:462 msgid "Remote data source" msgstr "Віддалене джерело даних" -#: netbox/netbox/models/features.py:472 +#: netbox/models/features.py:472 msgid "data path" msgstr "шлях даних" -#: netbox/netbox/models/features.py:476 +#: netbox/models/features.py:476 msgid "Path to remote file (relative to data source root)" msgstr "Шляху до віддаленого файлу (відносно кореня джерела даних)" -#: netbox/netbox/models/features.py:479 +#: netbox/models/features.py:479 msgid "auto sync enabled" msgstr "увімкнено автоматичну синхронізацію" -#: netbox/netbox/models/features.py:481 +#: netbox/models/features.py:481 msgid "Enable automatic synchronization of data when the data file is updated" msgstr "Увімкнути автоматичну синхронізацію даних при оновленні файлу даних" -#: netbox/netbox/models/features.py:484 +#: netbox/models/features.py:484 msgid "date synced" msgstr "дата синхронізована" -#: netbox/netbox/models/features.py:578 +#: netbox/models/features.py:578 #, python-brace-format msgid "{class_name} must implement a sync_data() method." msgstr "{class_name} повинен реалізувати метод sync_data ()." -#: netbox/netbox/navigation/menu.py:11 +#: netbox/navigation/menu.py:11 msgid "Organization" msgstr "Організація" -#: netbox/netbox/navigation/menu.py:19 +#: netbox/navigation/menu.py:19 msgid "Site Groups" msgstr "Групи тех. майданчиків" -#: netbox/netbox/navigation/menu.py:27 +#: netbox/navigation/menu.py:27 msgid "Tenant Groups" msgstr "Групи орендарів" -#: netbox/netbox/navigation/menu.py:34 +#: netbox/navigation/menu.py:34 msgid "Contact Groups" msgstr "Контактні групи" -#: netbox/netbox/navigation/menu.py:35 -#: netbox/templates/tenancy/contactrole.html:8 +#: netbox/navigation/menu.py:35 templates/tenancy/contactrole.html:8 msgid "Contact Roles" msgstr "Контактні ролі" -#: netbox/netbox/navigation/menu.py:36 +#: netbox/navigation/menu.py:36 msgid "Contact Assignments" msgstr "Контактні завдання" -#: netbox/netbox/navigation/menu.py:50 +#: netbox/navigation/menu.py:50 msgid "Rack Roles" msgstr "Ролі в стійці" -#: netbox/netbox/navigation/menu.py:54 +#: netbox/navigation/menu.py:54 msgid "Elevations" msgstr "Графічний вид" -#: netbox/netbox/navigation/menu.py:60 netbox/netbox/navigation/menu.py:62 +#: netbox/navigation/menu.py:60 netbox/navigation/menu.py:62 msgid "Rack Types" msgstr "Типи стійки" -#: netbox/netbox/navigation/menu.py:76 +#: netbox/navigation/menu.py:76 msgid "Modules" msgstr "Модулі" -#: netbox/netbox/navigation/menu.py:80 netbox/templates/dcim/device.html:160 -#: netbox/templates/dcim/virtualdevicecontext.html:8 +#: netbox/navigation/menu.py:80 templates/dcim/device.html:160 +#: templates/dcim/virtualdevicecontext.html:8 msgid "Virtual Device Contexts" msgstr "Контексти віртуальних пристроїв" -#: netbox/netbox/navigation/menu.py:88 +#: netbox/navigation/menu.py:88 msgid "Manufacturers" msgstr "Виробники" -#: netbox/netbox/navigation/menu.py:92 +#: netbox/navigation/menu.py:92 msgid "Device Components" msgstr "Компоненти пристрою" -#: netbox/netbox/navigation/menu.py:104 -#: netbox/templates/dcim/inventoryitemrole.html:8 +#: netbox/navigation/menu.py:104 templates/dcim/inventoryitemrole.html:8 msgid "Inventory Item Roles" msgstr "Ролі елементів інвентаря" -#: netbox/netbox/navigation/menu.py:111 netbox/netbox/navigation/menu.py:115 +#: netbox/navigation/menu.py:111 netbox/navigation/menu.py:115 msgid "Connections" msgstr "З'єднання" -#: netbox/netbox/navigation/menu.py:117 +#: netbox/navigation/menu.py:117 msgid "Cables" msgstr "Кабелі" -#: netbox/netbox/navigation/menu.py:118 +#: netbox/navigation/menu.py:118 msgid "Wireless Links" msgstr "Бездротові зв'язки" -#: netbox/netbox/navigation/menu.py:121 +#: netbox/navigation/menu.py:121 msgid "Interface Connections" msgstr "Інтерфейсні з'єднання" -#: netbox/netbox/navigation/menu.py:126 +#: netbox/navigation/menu.py:126 msgid "Console Connections" msgstr "Консольні підключення" -#: netbox/netbox/navigation/menu.py:131 +#: netbox/navigation/menu.py:131 msgid "Power Connections" msgstr "Підключення живлення" -#: netbox/netbox/navigation/menu.py:147 +#: netbox/navigation/menu.py:147 msgid "Wireless LAN Groups" msgstr "Групи бездротової локальної мережі" -#: netbox/netbox/navigation/menu.py:168 +#: netbox/navigation/menu.py:168 msgid "Prefix & VLAN Roles" msgstr "Префікс і ролі VLAN" -#: netbox/netbox/navigation/menu.py:174 +#: netbox/navigation/menu.py:174 msgid "ASN Ranges" msgstr "Діапазони ASN" -#: netbox/netbox/navigation/menu.py:196 +#: netbox/navigation/menu.py:196 msgid "VLAN Groups" msgstr "Групи VLAN" -#: netbox/netbox/navigation/menu.py:203 +#: netbox/navigation/menu.py:203 msgid "Service Templates" msgstr "Шаблони послуг" -#: netbox/netbox/navigation/menu.py:204 netbox/templates/dcim/device.html:302 -#: netbox/templates/ipam/ipaddress.html:118 -#: netbox/templates/virtualization/virtualmachine.html:154 +#: netbox/navigation/menu.py:204 templates/dcim/device.html:302 +#: templates/ipam/ipaddress.html:118 +#: templates/virtualization/virtualmachine.html:154 msgid "Services" msgstr "Послуги" -#: netbox/netbox/navigation/menu.py:211 +#: netbox/navigation/menu.py:211 msgid "VPN" msgstr "VPN" -#: netbox/netbox/navigation/menu.py:215 netbox/netbox/navigation/menu.py:217 -#: netbox/vpn/tables/tunnels.py:24 +#: netbox/navigation/menu.py:215 netbox/navigation/menu.py:217 +#: vpn/tables/tunnels.py:24 msgid "Tunnels" msgstr "Тунелі" -#: netbox/netbox/navigation/menu.py:218 -#: netbox/templates/vpn/tunnelgroup.html:8 +#: netbox/navigation/menu.py:218 templates/vpn/tunnelgroup.html:8 msgid "Tunnel Groups" msgstr "Тунельні групи" -#: netbox/netbox/navigation/menu.py:219 +#: netbox/navigation/menu.py:219 msgid "Tunnel Terminations" msgstr "Закінчення тунелів" -#: netbox/netbox/navigation/menu.py:223 netbox/netbox/navigation/menu.py:225 -#: netbox/vpn/models/l2vpn.py:64 +#: netbox/navigation/menu.py:223 netbox/navigation/menu.py:225 +#: vpn/models/l2vpn.py:64 msgid "L2VPNs" msgstr "L2VPN" -#: netbox/netbox/navigation/menu.py:226 netbox/templates/vpn/l2vpn.html:56 -#: netbox/templates/vpn/tunnel.html:72 netbox/vpn/tables/tunnels.py:58 +#: netbox/navigation/menu.py:226 templates/vpn/l2vpn.html:56 +#: templates/vpn/tunnel.html:72 vpn/tables/tunnels.py:58 msgid "Terminations" msgstr "Припинення" -#: netbox/netbox/navigation/menu.py:232 +#: netbox/navigation/menu.py:232 msgid "IKE Proposals" msgstr "Пропозиції IKE" -#: netbox/netbox/navigation/menu.py:233 -#: netbox/templates/vpn/ikeproposal.html:41 +#: netbox/navigation/menu.py:233 templates/vpn/ikeproposal.html:41 msgid "IKE Policies" msgstr "Політика IKE" -#: netbox/netbox/navigation/menu.py:234 +#: netbox/navigation/menu.py:234 msgid "IPSec Proposals" msgstr "Пропозиції IPsec" -#: netbox/netbox/navigation/menu.py:235 -#: netbox/templates/vpn/ipsecproposal.html:37 +#: netbox/navigation/menu.py:235 templates/vpn/ipsecproposal.html:37 msgid "IPSec Policies" msgstr "Політика IPsec" -#: netbox/netbox/navigation/menu.py:236 netbox/templates/vpn/ikepolicy.html:38 -#: netbox/templates/vpn/ipsecpolicy.html:25 +#: netbox/navigation/menu.py:236 templates/vpn/ikepolicy.html:38 +#: templates/vpn/ipsecpolicy.html:25 msgid "IPSec Profiles" msgstr "Профілі IPsec" -#: netbox/netbox/navigation/menu.py:243 -#: netbox/templates/dcim/device_edit.html:78 +#: netbox/navigation/menu.py:243 templates/dcim/device_edit.html:78 msgid "Virtualization" msgstr "Віртуалізація" -#: netbox/netbox/navigation/menu.py:251 -#: netbox/templates/virtualization/virtualmachine.html:174 -#: netbox/templates/virtualization/virtualmachine/base.html:32 -#: netbox/templates/virtualization/virtualmachine_list.html:21 -#: netbox/virtualization/tables/virtualmachines.py:104 -#: netbox/virtualization/views.py:388 +#: netbox/navigation/menu.py:251 +#: templates/virtualization/virtualmachine.html:174 +#: templates/virtualization/virtualmachine/base.html:32 +#: templates/virtualization/virtualmachine_list.html:21 +#: virtualization/tables/virtualmachines.py:104 virtualization/views.py:388 msgid "Virtual Disks" msgstr "Віртуальні диски" -#: netbox/netbox/navigation/menu.py:258 +#: netbox/navigation/menu.py:258 msgid "Cluster Types" msgstr "Типи кластерів" -#: netbox/netbox/navigation/menu.py:259 +#: netbox/navigation/menu.py:259 msgid "Cluster Groups" msgstr "Кластерні групи" -#: netbox/netbox/navigation/menu.py:273 +#: netbox/navigation/menu.py:273 msgid "Circuit Types" msgstr "Типи схем" -#: netbox/netbox/navigation/menu.py:274 +#: netbox/navigation/menu.py:274 msgid "Circuit Groups" msgstr "Групи каналів зв'язку" -#: netbox/netbox/navigation/menu.py:275 -#: netbox/templates/circuits/circuit.html:66 +#: netbox/navigation/menu.py:275 templates/circuits/circuit.html:66 msgid "Group Assignments" msgstr "Групи завдань" -#: netbox/netbox/navigation/menu.py:276 +#: netbox/navigation/menu.py:276 msgid "Circuit Terminations" msgstr "Кінці каналу зв'язку" -#: netbox/netbox/navigation/menu.py:280 netbox/netbox/navigation/menu.py:282 +#: netbox/navigation/menu.py:280 netbox/navigation/menu.py:282 msgid "Providers" msgstr "Провайдери" -#: netbox/netbox/navigation/menu.py:283 -#: netbox/templates/circuits/provider.html:51 +#: netbox/navigation/menu.py:283 templates/circuits/provider.html:51 msgid "Provider Accounts" msgstr "Облікові записи постачальника" -#: netbox/netbox/navigation/menu.py:284 +#: netbox/navigation/menu.py:284 msgid "Provider Networks" msgstr "Мережі провайдерів" -#: netbox/netbox/navigation/menu.py:298 +#: netbox/navigation/menu.py:298 msgid "Power Panels" msgstr "Панелі живлення" -#: netbox/netbox/navigation/menu.py:309 +#: netbox/navigation/menu.py:309 msgid "Configurations" msgstr "Конфігурації" -#: netbox/netbox/navigation/menu.py:311 +#: netbox/navigation/menu.py:311 msgid "Config Contexts" msgstr "Контексти конфігурації" -#: netbox/netbox/navigation/menu.py:312 +#: netbox/navigation/menu.py:312 msgid "Config Templates" msgstr "Конфігураційні шаблони" -#: netbox/netbox/navigation/menu.py:319 netbox/netbox/navigation/menu.py:323 +#: netbox/navigation/menu.py:319 netbox/navigation/menu.py:323 msgid "Customization" msgstr "Налаштування" -#: netbox/netbox/navigation/menu.py:325 -#: netbox/templates/dcim/device_edit.html:103 -#: netbox/templates/dcim/htmx/cable_edit.html:81 -#: netbox/templates/dcim/virtualchassis_add.html:31 -#: netbox/templates/dcim/virtualchassis_edit.html:40 -#: netbox/templates/generic/bulk_edit.html:76 -#: netbox/templates/htmx/form.html:19 netbox/templates/inc/filter_list.html:30 -#: netbox/templates/inc/panels/custom_fields.html:7 -#: netbox/templates/ipam/ipaddress_bulk_add.html:35 -#: netbox/templates/ipam/vlan_edit.html:59 +#: netbox/navigation/menu.py:325 templates/dcim/device_edit.html:103 +#: templates/dcim/htmx/cable_edit.html:81 +#: templates/dcim/virtualchassis_add.html:31 +#: templates/dcim/virtualchassis_edit.html:40 +#: templates/generic/bulk_edit.html:76 templates/htmx/form.html:19 +#: templates/inc/filter_list.html:30 templates/inc/panels/custom_fields.html:7 +#: templates/ipam/ipaddress_bulk_add.html:35 templates/ipam/vlan_edit.html:59 msgid "Custom Fields" msgstr "Користувацькі поля" -#: netbox/netbox/navigation/menu.py:326 +#: netbox/navigation/menu.py:326 msgid "Custom Field Choices" msgstr "Вибір користувацьких полів" -#: netbox/netbox/navigation/menu.py:327 +#: netbox/navigation/menu.py:327 msgid "Custom Links" msgstr "Користувацькі посилання" -#: netbox/netbox/navigation/menu.py:328 +#: netbox/navigation/menu.py:328 msgid "Export Templates" msgstr "Експортувати шаблони" -#: netbox/netbox/navigation/menu.py:329 +#: netbox/navigation/menu.py:329 msgid "Saved Filters" msgstr "Збережені фільтри" -#: netbox/netbox/navigation/menu.py:331 +#: netbox/navigation/menu.py:331 msgid "Image Attachments" msgstr "Вкладення зображень" -#: netbox/netbox/navigation/menu.py:349 +#: netbox/navigation/menu.py:349 msgid "Operations" msgstr "Операції" -#: netbox/netbox/navigation/menu.py:353 +#: netbox/navigation/menu.py:353 msgid "Integrations" msgstr "Інтеграція" -#: netbox/netbox/navigation/menu.py:355 +#: netbox/navigation/menu.py:355 msgid "Data Sources" msgstr "Джерела даних" -#: netbox/netbox/navigation/menu.py:356 +#: netbox/navigation/menu.py:356 msgid "Event Rules" msgstr "Правила події" -#: netbox/netbox/navigation/menu.py:357 +#: netbox/navigation/menu.py:357 msgid "Webhooks" msgstr "Веб-хуки" -#: netbox/netbox/navigation/menu.py:361 netbox/netbox/navigation/menu.py:365 -#: netbox/netbox/views/generic/feature_views.py:153 -#: netbox/templates/extras/report/base.html:37 -#: netbox/templates/extras/script/base.html:36 +#: netbox/navigation/menu.py:361 netbox/navigation/menu.py:365 +#: netbox/views/generic/feature_views.py:153 +#: templates/extras/report/base.html:37 templates/extras/script/base.html:36 msgid "Jobs" msgstr "Завдання" -#: netbox/netbox/navigation/menu.py:371 +#: netbox/navigation/menu.py:371 msgid "Logging" msgstr "Лісозаготівля" -#: netbox/netbox/navigation/menu.py:373 +#: netbox/navigation/menu.py:373 msgid "Notification Groups" msgstr "Групи сповіщень" -#: netbox/netbox/navigation/menu.py:374 +#: netbox/navigation/menu.py:374 msgid "Journal Entries" msgstr "Записи журналу" -#: netbox/netbox/navigation/menu.py:375 -#: netbox/templates/core/objectchange.html:9 -#: netbox/templates/core/objectchange_list.html:4 +#: netbox/navigation/menu.py:375 templates/core/objectchange.html:9 +#: templates/core/objectchange_list.html:4 msgid "Change Log" msgstr "Журнал змін" -#: netbox/netbox/navigation/menu.py:382 netbox/templates/inc/user_menu.html:29 +#: netbox/navigation/menu.py:382 templates/inc/user_menu.html:29 msgid "Admin" msgstr "Адміністратор" -#: netbox/netbox/navigation/menu.py:430 netbox/templates/account/base.html:27 -#: netbox/templates/inc/user_menu.html:57 +#: netbox/navigation/menu.py:430 templates/account/base.html:27 +#: templates/inc/user_menu.html:57 msgid "API Tokens" msgstr "Жетони API" -#: netbox/netbox/navigation/menu.py:437 netbox/users/forms/model_forms.py:187 -#: netbox/users/forms/model_forms.py:195 netbox/users/forms/model_forms.py:242 -#: netbox/users/forms/model_forms.py:249 +#: netbox/navigation/menu.py:437 users/forms/model_forms.py:187 +#: users/forms/model_forms.py:195 users/forms/model_forms.py:242 +#: users/forms/model_forms.py:249 msgid "Permissions" msgstr "Дозволи" -#: netbox/netbox/navigation/menu.py:445 netbox/netbox/navigation/menu.py:449 -#: netbox/templates/core/system.html:7 +#: netbox/navigation/menu.py:445 netbox/navigation/menu.py:449 +#: templates/core/system.html:7 msgid "System" msgstr "Система" -#: netbox/netbox/navigation/menu.py:454 netbox/netbox/navigation/menu.py:502 -#: netbox/templates/500.html:35 netbox/templates/account/preferences.html:22 -#: netbox/templates/core/plugin.html:12 -#: netbox/templates/core/plugin_list.html:7 -#: netbox/templates/core/plugin_list.html:12 +#: netbox/navigation/menu.py:454 netbox/navigation/menu.py:502 +#: templates/500.html:35 templates/account/preferences.html:22 +#: templates/core/plugin.html:13 templates/core/plugin_list.html:7 +#: templates/core/plugin_list.html:12 msgid "Plugins" msgstr "Плагіни" -#: netbox/netbox/navigation/menu.py:459 +#: netbox/navigation/menu.py:459 msgid "Configuration History" msgstr "Історія налаштувань" -#: netbox/netbox/navigation/menu.py:465 netbox/templates/core/rq_task.html:8 -#: netbox/templates/core/rq_task_list.html:22 +#: netbox/navigation/menu.py:465 templates/core/rq_task.html:8 +#: templates/core/rq_task_list.html:22 msgid "Background Tasks" msgstr "Фонові завдання" -#: netbox/netbox/plugins/navigation.py:47 -#: netbox/netbox/plugins/navigation.py:69 +#: netbox/plugins/navigation.py:47 netbox/plugins/navigation.py:69 msgid "Permissions must be passed as a tuple or list." msgstr "Дозволи повинні бути передані у вигляді кортежу або списку." -#: netbox/netbox/plugins/navigation.py:51 +#: netbox/plugins/navigation.py:51 msgid "Buttons must be passed as a tuple or list." msgstr "Кнопки повинні бути передані у вигляді кортежу або списку." -#: netbox/netbox/plugins/navigation.py:73 +#: netbox/plugins/navigation.py:73 msgid "Button color must be a choice within ButtonColorChoices." msgstr "Колір кнопки повинен бути вибором у ButtonColorChoices." -#: netbox/netbox/plugins/registration.py:25 +#: netbox/plugins/registration.py:25 #, python-brace-format msgid "" "PluginTemplateExtension class {template_extension} was passed as an " @@ -11235,7 +10605,7 @@ msgstr "" "Клас PluginTemplateExtension {template_extension} був переданий як " "екземпляр!" -#: netbox/netbox/plugins/registration.py:31 +#: netbox/plugins/registration.py:31 #, python-brace-format msgid "" "{template_extension} is not a subclass of " @@ -11243,194 +10613,193 @@ msgid "" msgstr "" "{template_extension} не є підкласом Netbox.Plugins.PluginTemplateExtension!" -#: netbox/netbox/plugins/registration.py:51 +#: netbox/plugins/registration.py:51 #, python-brace-format msgid "{item} must be an instance of netbox.plugins.PluginMenuItem" msgstr "{item} повинен бути екземпляром Netbox.Plugins.PluginMenuItem" -#: netbox/netbox/plugins/registration.py:62 +#: netbox/plugins/registration.py:62 #, python-brace-format msgid "{menu_link} must be an instance of netbox.plugins.PluginMenuItem" msgstr "{menu_link} повинен бути екземпляром Netbox.Plugins.PluginMenuItem" -#: netbox/netbox/plugins/registration.py:67 +#: netbox/plugins/registration.py:67 #, python-brace-format msgid "{button} must be an instance of netbox.plugins.PluginMenuButton" msgstr "{button} повинен бути екземпляром Netbox.Plugins.PluginMenuButton" -#: netbox/netbox/plugins/templates.py:37 +#: netbox/plugins/templates.py:37 msgid "extra_context must be a dictionary" msgstr "extra_context повинен бути словником" -#: netbox/netbox/preferences.py:19 +#: netbox/preferences.py:19 msgid "HTMX Navigation" msgstr "Навігація по HTMX" -#: netbox/netbox/preferences.py:24 +#: netbox/preferences.py:24 msgid "Enable dynamic UI navigation" msgstr "Увімкнути динамічну навігацію інтерфейсом" -#: netbox/netbox/preferences.py:26 +#: netbox/preferences.py:26 msgid "Experimental feature" msgstr "Експериментальна особливість" -#: netbox/netbox/preferences.py:29 +#: netbox/preferences.py:29 msgid "Language" msgstr "Мова" -#: netbox/netbox/preferences.py:34 +#: netbox/preferences.py:34 msgid "Forces UI translation to the specified language" msgstr "Примушує переклад інтерфейсу користувача на вказану мову" -#: netbox/netbox/preferences.py:36 +#: netbox/preferences.py:36 msgid "Support for translation has been disabled locally" msgstr "Підтримка перекладу вимкнена локально" -#: netbox/netbox/preferences.py:42 +#: netbox/preferences.py:42 msgid "Page length" msgstr "Довжина сторінки" -#: netbox/netbox/preferences.py:44 +#: netbox/preferences.py:44 msgid "The default number of objects to display per page" msgstr "Типова кількість об'єктів для відображення на сторінці" -#: netbox/netbox/preferences.py:48 +#: netbox/preferences.py:48 msgid "Paginator placement" msgstr "Розміщення пагінатора" -#: netbox/netbox/preferences.py:50 +#: netbox/preferences.py:50 msgid "Bottom" msgstr "Внизу" -#: netbox/netbox/preferences.py:51 +#: netbox/preferences.py:51 msgid "Top" msgstr "Верх" -#: netbox/netbox/preferences.py:52 +#: netbox/preferences.py:52 msgid "Both" msgstr "Обидва" -#: netbox/netbox/preferences.py:55 +#: netbox/preferences.py:55 msgid "Where the paginator controls will be displayed relative to a table" msgstr "Де елементи керування paginator відображатимуться відносно таблиці" -#: netbox/netbox/preferences.py:60 +#: netbox/preferences.py:60 msgid "Data format" msgstr "Формат даних" -#: netbox/netbox/preferences.py:65 +#: netbox/preferences.py:65 msgid "The preferred syntax for displaying generic data within the UI" msgstr "" "Бажаний синтаксис для відображення загальних даних в інтерфейсі користувача" -#: netbox/netbox/registry.py:14 +#: netbox/registry.py:14 #, python-brace-format msgid "Invalid store: {key}" msgstr "Невірний магазин: {key}" -#: netbox/netbox/registry.py:17 +#: netbox/registry.py:17 msgid "Cannot add stores to registry after initialization" msgstr "Не вдається додати магазини до реєстру після ініціалізації" -#: netbox/netbox/registry.py:20 +#: netbox/registry.py:20 msgid "Cannot delete stores from registry" msgstr "Неможливо видалити магазини з реєстру" -#: netbox/netbox/settings.py:760 +#: netbox/settings.py:760 msgid "Czech" msgstr "Чеська мова" -#: netbox/netbox/settings.py:761 +#: netbox/settings.py:761 msgid "Danish" msgstr "Данська мова" -#: netbox/netbox/settings.py:762 +#: netbox/settings.py:762 msgid "German" msgstr "Німецька мова" -#: netbox/netbox/settings.py:763 +#: netbox/settings.py:763 msgid "English" msgstr "Англійська мова" -#: netbox/netbox/settings.py:764 +#: netbox/settings.py:764 msgid "Spanish" msgstr "Іспанська мова" -#: netbox/netbox/settings.py:765 +#: netbox/settings.py:765 msgid "French" msgstr "Французька мова" -#: netbox/netbox/settings.py:766 +#: netbox/settings.py:766 msgid "Italian" msgstr "Італійська мова" -#: netbox/netbox/settings.py:767 +#: netbox/settings.py:767 msgid "Japanese" msgstr "Японська мова" -#: netbox/netbox/settings.py:768 +#: netbox/settings.py:768 msgid "Dutch" msgstr "Голландська мова" -#: netbox/netbox/settings.py:769 +#: netbox/settings.py:769 msgid "Polish" msgstr "Польська мова" -#: netbox/netbox/settings.py:770 +#: netbox/settings.py:770 msgid "Portuguese" msgstr "Португальська мова" -#: netbox/netbox/settings.py:771 +#: netbox/settings.py:771 msgid "Russian" msgstr "Російська мова" -#: netbox/netbox/settings.py:772 +#: netbox/settings.py:772 msgid "Turkish" msgstr "Турецька мова" -#: netbox/netbox/settings.py:773 +#: netbox/settings.py:773 msgid "Ukrainian" msgstr "Українська мова" -#: netbox/netbox/settings.py:774 +#: netbox/settings.py:774 msgid "Chinese" msgstr "Китайська мова" -#: netbox/netbox/tables/columns.py:176 +#: netbox/tables/columns.py:176 msgid "Select all" msgstr "Вибрати все" -#: netbox/netbox/tables/columns.py:189 +#: netbox/tables/columns.py:189 msgid "Toggle all" msgstr "Перемкнути всі" -#: netbox/netbox/tables/columns.py:300 +#: netbox/tables/columns.py:300 msgid "Toggle Dropdown" msgstr "Переключити випадаюче меню" -#: netbox/netbox/tables/columns.py:572 netbox/templates/core/job.html:53 +#: netbox/tables/columns.py:572 templates/core/job.html:53 msgid "Error" msgstr "Помилка" -#: netbox/netbox/tables/tables.py:58 +#: netbox/tables/tables.py:58 #, python-brace-format msgid "No {model_name} found" msgstr "{model_name} не знайдено" -#: netbox/netbox/tables/tables.py:249 -#: netbox/templates/generic/bulk_import.html:117 +#: netbox/tables/tables.py:249 templates/generic/bulk_import.html:117 msgid "Field" msgstr "Поле" -#: netbox/netbox/tables/tables.py:252 +#: netbox/tables/tables.py:252 msgid "Value" msgstr "Значення" -#: netbox/netbox/tests/dummy_plugin/navigation.py:29 +#: netbox/tests/dummy_plugin/navigation.py:29 msgid "Dummy Plugin" msgstr "Фікменний плагін" -#: netbox/netbox/views/generic/bulk_views.py:114 +#: netbox/views/generic/bulk_views.py:114 #, python-brace-format msgid "" "There was an error rendering the selected export template ({template}): " @@ -11439,56 +10808,56 @@ msgstr "" "Виникла помилка при рендерингу вибраного шаблону експорту ({template}): " "{error}" -#: netbox/netbox/views/generic/bulk_views.py:416 +#: netbox/views/generic/bulk_views.py:416 #, python-brace-format msgid "Row {i}: Object with ID {id} does not exist" msgstr "Ряд {i}: Об'єкт з ідентифікатором {id} не існує" -#: netbox/netbox/views/generic/bulk_views.py:699 -#: netbox/netbox/views/generic/bulk_views.py:897 -#: netbox/netbox/views/generic/bulk_views.py:945 +#: netbox/views/generic/bulk_views.py:702 +#: netbox/views/generic/bulk_views.py:900 +#: netbox/views/generic/bulk_views.py:948 #, python-brace-format msgid "No {object_type} were selected." msgstr "Ні {object_type} були обрані." -#: netbox/netbox/views/generic/bulk_views.py:779 +#: netbox/views/generic/bulk_views.py:782 #, python-brace-format msgid "Renamed {count} {object_type}" msgstr "Перейменовано {count} {object_type}" -#: netbox/netbox/views/generic/bulk_views.py:875 +#: netbox/views/generic/bulk_views.py:878 #, python-brace-format msgid "Deleted {count} {object_type}" msgstr "Видалено {count} {object_type}" -#: netbox/netbox/views/generic/feature_views.py:40 +#: netbox/views/generic/feature_views.py:40 msgid "Changelog" msgstr "Журнал змін" -#: netbox/netbox/views/generic/feature_views.py:93 +#: netbox/views/generic/feature_views.py:93 msgid "Journal" msgstr "Журнал" -#: netbox/netbox/views/generic/feature_views.py:207 +#: netbox/views/generic/feature_views.py:207 msgid "Unable to synchronize data: No data file set." msgstr "Неможливо синхронізувати дані: Файл даних не встановлено." -#: netbox/netbox/views/generic/feature_views.py:211 +#: netbox/views/generic/feature_views.py:211 #, python-brace-format msgid "Synchronized data for {object_type} {object}." msgstr "Синхронізовані дані для {object_type} {object}." -#: netbox/netbox/views/generic/feature_views.py:236 +#: netbox/views/generic/feature_views.py:236 #, python-brace-format msgid "Synced {count} {object_type}" msgstr "Синхронізовано {count} {object_type}" -#: netbox/netbox/views/generic/object_views.py:108 +#: netbox/views/generic/object_views.py:108 #, python-brace-format msgid "{class_name} must implement get_children()" msgstr "{class_name} повинен реалізувати get_children ()" -#: netbox/netbox/views/misc.py:44 +#: netbox/views/misc.py:44 msgid "" "There was an error loading the dashboard configuration. A default dashboard " "is in use." @@ -11496,749 +10865,704 @@ msgstr "" "Виникла помилка при завантаженні конфігурації інформаційної панелі. " "Використовується інформаційна панель за замовчуванням." -#: netbox/templates/403.html:4 +#: templates/403.html:4 msgid "Access Denied" msgstr "Доступ заборонений" -#: netbox/templates/403.html:9 +#: templates/403.html:9 msgid "You do not have permission to access this page" msgstr "У вас немає дозволу на доступ до цієї сторінки" -#: netbox/templates/404.html:4 +#: templates/404.html:4 msgid "Page Not Found" msgstr "Сторінка не знайдена" -#: netbox/templates/404.html:9 +#: templates/404.html:9 msgid "The requested page does not exist" msgstr "Запитувана сторінка не існує" -#: netbox/templates/500.html:7 netbox/templates/500.html:18 +#: templates/500.html:7 templates/500.html:18 msgid "Server Error" msgstr "Помилка сервера" -#: netbox/templates/500.html:23 +#: templates/500.html:23 msgid "There was a problem with your request. Please contact an administrator" msgstr "" "Виникла проблема з вашим запитом. Будь ласка, зв'яжіться з адміністратором" -#: netbox/templates/500.html:28 +#: templates/500.html:28 msgid "The complete exception is provided below" msgstr "Повне виключення наведено нижче" -#: netbox/templates/500.html:33 netbox/templates/core/system.html:40 +#: templates/500.html:33 templates/core/system.html:40 msgid "Python version" msgstr "Версія Python" -#: netbox/templates/500.html:34 +#: templates/500.html:34 msgid "NetBox version" msgstr "Версія NetBox" -#: netbox/templates/500.html:36 +#: templates/500.html:36 msgid "None installed" msgstr "Не встановлено" -#: netbox/templates/500.html:39 +#: templates/500.html:39 msgid "If further assistance is required, please post to the" msgstr "" "Якщо потрібна додаткова допомога, будь ласка, надішліть повідомлення на" -#: netbox/templates/500.html:39 +#: templates/500.html:39 msgid "NetBox discussion forum" msgstr "Дискусійний форум NetBox" -#: netbox/templates/500.html:39 +#: templates/500.html:39 msgid "on GitHub" msgstr "на GitHub" -#: netbox/templates/500.html:42 netbox/templates/base/40x.html:17 +#: templates/500.html:42 templates/base/40x.html:17 msgid "Home Page" msgstr "Головна сторінка" -#: netbox/templates/account/base.html:7 netbox/templates/inc/user_menu.html:45 -#: netbox/vpn/forms/bulk_edit.py:255 netbox/vpn/forms/filtersets.py:189 -#: netbox/vpn/forms/model_forms.py:379 +#: templates/account/base.html:7 templates/inc/user_menu.html:45 +#: vpn/forms/bulk_edit.py:255 vpn/forms/filtersets.py:189 +#: vpn/forms/model_forms.py:379 msgid "Profile" msgstr "Профіль" -#: netbox/templates/account/base.html:13 -#: netbox/templates/account/notifications.html:7 -#: netbox/templates/inc/user_menu.html:15 +#: templates/account/base.html:13 templates/account/notifications.html:7 +#: templates/inc/user_menu.html:15 msgid "Notifications" msgstr "Повідомлення" -#: netbox/templates/account/base.html:16 -#: netbox/templates/account/subscriptions.html:7 -#: netbox/templates/inc/user_menu.html:51 +#: templates/account/base.html:16 templates/account/subscriptions.html:7 +#: templates/inc/user_menu.html:51 msgid "Subscriptions" msgstr "Підписки" -#: netbox/templates/account/base.html:19 -#: netbox/templates/inc/user_menu.html:54 +#: templates/account/base.html:19 templates/inc/user_menu.html:54 msgid "Preferences" msgstr "Налаштування" -#: netbox/templates/account/password.html:5 +#: templates/account/password.html:5 msgid "Change Password" msgstr "Змінити пароль" -#: netbox/templates/account/password.html:19 -#: netbox/templates/account/preferences.html:77 -#: netbox/templates/core/configrevision_restore.html:63 -#: netbox/templates/dcim/devicebay_populate.html:34 -#: netbox/templates/dcim/virtualchassis_add_member.html:26 -#: netbox/templates/dcim/virtualchassis_edit.html:103 -#: netbox/templates/extras/object_journal.html:26 -#: netbox/templates/extras/script.html:38 -#: netbox/templates/generic/bulk_add_component.html:67 -#: netbox/templates/generic/bulk_delete.html:65 -#: netbox/templates/generic/bulk_edit.html:106 -#: netbox/templates/generic/bulk_import.html:56 -#: netbox/templates/generic/bulk_import.html:78 -#: netbox/templates/generic/bulk_import.html:100 -#: netbox/templates/generic/bulk_remove.html:62 -#: netbox/templates/generic/bulk_rename.html:63 -#: netbox/templates/generic/confirmation_form.html:19 -#: netbox/templates/generic/object_edit.html:72 -#: netbox/templates/htmx/delete_form.html:53 -#: netbox/templates/htmx/delete_form.html:55 -#: netbox/templates/ipam/ipaddress_assign.html:28 -#: netbox/templates/virtualization/cluster_add_devices.html:30 +#: templates/account/password.html:19 templates/account/preferences.html:77 +#: templates/core/configrevision_restore.html:63 +#: templates/dcim/devicebay_populate.html:34 +#: templates/dcim/virtualchassis_add_member.html:26 +#: templates/dcim/virtualchassis_edit.html:103 +#: templates/extras/object_journal.html:26 templates/extras/script.html:38 +#: templates/generic/bulk_add_component.html:67 +#: templates/generic/bulk_delete.html:65 templates/generic/bulk_edit.html:106 +#: templates/generic/bulk_import.html:56 templates/generic/bulk_import.html:78 +#: templates/generic/bulk_import.html:100 +#: templates/generic/bulk_remove.html:62 templates/generic/bulk_rename.html:63 +#: templates/generic/confirmation_form.html:19 +#: templates/generic/object_edit.html:72 templates/htmx/delete_form.html:53 +#: templates/htmx/delete_form.html:55 templates/ipam/ipaddress_assign.html:28 +#: templates/virtualization/cluster_add_devices.html:30 msgid "Cancel" msgstr "Скасувати" -#: netbox/templates/account/password.html:20 -#: netbox/templates/account/preferences.html:78 -#: netbox/templates/dcim/devicebay_populate.html:35 -#: netbox/templates/dcim/virtualchassis_add_member.html:28 -#: netbox/templates/dcim/virtualchassis_edit.html:105 -#: netbox/templates/extras/dashboard/widget_add.html:26 -#: netbox/templates/extras/dashboard/widget_config.html:19 -#: netbox/templates/extras/object_journal.html:27 -#: netbox/templates/generic/object_edit.html:75 -#: netbox/utilities/templates/helpers/applied_filters.html:16 -#: netbox/utilities/templates/helpers/table_config_form.html:40 +#: templates/account/password.html:20 templates/account/preferences.html:78 +#: templates/dcim/devicebay_populate.html:35 +#: templates/dcim/virtualchassis_add_member.html:28 +#: templates/dcim/virtualchassis_edit.html:105 +#: templates/extras/dashboard/widget_add.html:26 +#: templates/extras/dashboard/widget_config.html:19 +#: templates/extras/object_journal.html:27 +#: templates/generic/object_edit.html:75 +#: utilities/templates/helpers/applied_filters.html:16 +#: utilities/templates/helpers/table_config_form.html:40 msgid "Save" msgstr "Зберегти" -#: netbox/templates/account/preferences.html:34 +#: templates/account/preferences.html:34 msgid "Table Configurations" msgstr "Конфігурації таблиці" -#: netbox/templates/account/preferences.html:39 +#: templates/account/preferences.html:39 msgid "Clear table preferences" msgstr "Очистити параметри таблиці" -#: netbox/templates/account/preferences.html:47 +#: templates/account/preferences.html:47 msgid "Toggle All" msgstr "Перемкнути всі" -#: netbox/templates/account/preferences.html:49 +#: templates/account/preferences.html:49 msgid "Table" msgstr "Таблиця" -#: netbox/templates/account/preferences.html:50 +#: templates/account/preferences.html:50 msgid "Ordering" msgstr "Замовлення" -#: netbox/templates/account/preferences.html:51 +#: templates/account/preferences.html:51 msgid "Columns" msgstr "Колони" -#: netbox/templates/account/preferences.html:71 -#: netbox/templates/dcim/cable_trace.html:113 -#: netbox/templates/extras/object_configcontext.html:43 +#: templates/account/preferences.html:71 templates/dcim/cable_trace.html:113 +#: templates/extras/object_configcontext.html:43 msgid "None found" msgstr "Не знайдено" -#: netbox/templates/account/profile.html:6 +#: templates/account/profile.html:6 msgid "User Profile" msgstr "Профіль користувача" -#: netbox/templates/account/profile.html:12 +#: templates/account/profile.html:12 msgid "Account Details" msgstr "Реквізити рахунку" -#: netbox/templates/account/profile.html:29 -#: netbox/templates/tenancy/contact.html:43 -#: netbox/templates/users/user.html:25 netbox/tenancy/forms/bulk_edit.py:109 +#: templates/account/profile.html:29 templates/tenancy/contact.html:43 +#: templates/users/user.html:25 tenancy/forms/bulk_edit.py:109 msgid "Email" msgstr "Електронна скринька" -#: netbox/templates/account/profile.html:33 -#: netbox/templates/users/user.html:29 +#: templates/account/profile.html:33 templates/users/user.html:29 msgid "Account Created" msgstr "Створено обліковий запис" -#: netbox/templates/account/profile.html:37 -#: netbox/templates/users/user.html:33 +#: templates/account/profile.html:37 templates/users/user.html:33 msgid "Last Login" msgstr "Останній вхід" -#: netbox/templates/account/profile.html:41 -#: netbox/templates/users/user.html:45 +#: templates/account/profile.html:41 templates/users/user.html:45 msgid "Superuser" msgstr "Суперкористувач" -#: netbox/templates/account/profile.html:45 -#: netbox/templates/inc/user_menu.html:31 netbox/templates/users/user.html:41 +#: templates/account/profile.html:45 templates/inc/user_menu.html:31 +#: templates/users/user.html:41 msgid "Staff" msgstr "Персонал" -#: netbox/templates/account/profile.html:53 -#: netbox/templates/users/objectpermission.html:82 -#: netbox/templates/users/user.html:53 +#: templates/account/profile.html:53 templates/users/objectpermission.html:82 +#: templates/users/user.html:53 msgid "Assigned Groups" msgstr "Призначені групи" -#: netbox/templates/account/profile.html:58 -#: netbox/templates/circuits/circuit_terminations_swap.html:18 -#: netbox/templates/circuits/circuit_terminations_swap.html:26 -#: netbox/templates/circuits/circuittermination.html:34 -#: netbox/templates/circuits/inc/circuit_termination.html:68 -#: netbox/templates/core/objectchange.html:124 -#: netbox/templates/core/objectchange.html:142 -#: netbox/templates/dcim/devicebay.html:59 -#: netbox/templates/dcim/inc/panels/inventory_items.html:45 -#: netbox/templates/dcim/interface.html:296 -#: netbox/templates/dcim/modulebay.html:80 -#: netbox/templates/extras/configcontext.html:70 -#: netbox/templates/extras/eventrule.html:66 -#: netbox/templates/extras/htmx/script_result.html:60 -#: netbox/templates/extras/webhook.html:65 -#: netbox/templates/extras/webhook.html:75 -#: netbox/templates/inc/panel_table.html:13 -#: netbox/templates/inc/panels/comments.html:10 -#: netbox/templates/ipam/inc/panels/fhrp_groups.html:56 -#: netbox/templates/users/group.html:34 netbox/templates/users/group.html:44 -#: netbox/templates/users/objectpermission.html:77 -#: netbox/templates/users/objectpermission.html:87 -#: netbox/templates/users/user.html:58 netbox/templates/users/user.html:68 +#: templates/account/profile.html:58 +#: templates/circuits/circuit_terminations_swap.html:18 +#: templates/circuits/circuit_terminations_swap.html:26 +#: templates/circuits/circuittermination.html:34 +#: templates/circuits/inc/circuit_termination.html:68 +#: templates/core/objectchange.html:124 templates/core/objectchange.html:142 +#: templates/dcim/devicebay.html:59 +#: templates/dcim/inc/panels/inventory_items.html:45 +#: templates/dcim/interface.html:296 templates/dcim/modulebay.html:80 +#: templates/extras/configcontext.html:70 templates/extras/eventrule.html:66 +#: templates/extras/htmx/script_result.html:60 +#: templates/extras/webhook.html:65 templates/extras/webhook.html:75 +#: templates/inc/panel_table.html:13 templates/inc/panels/comments.html:10 +#: templates/ipam/inc/panels/fhrp_groups.html:56 templates/users/group.html:34 +#: templates/users/group.html:44 templates/users/objectpermission.html:77 +#: templates/users/objectpermission.html:87 templates/users/user.html:58 +#: templates/users/user.html:68 msgid "None" msgstr "Жоден" -#: netbox/templates/account/profile.html:68 -#: netbox/templates/users/user.html:78 +#: templates/account/profile.html:68 templates/users/user.html:78 msgid "Recent Activity" msgstr "Недавня діяльність" -#: netbox/templates/account/token.html:8 -#: netbox/templates/account/token_list.html:6 +#: templates/account/token.html:8 templates/account/token_list.html:6 msgid "My API Tokens" msgstr "Мої жетони API" -#: netbox/templates/account/token.html:11 -#: netbox/templates/account/token.html:19 netbox/templates/users/token.html:6 -#: netbox/templates/users/token.html:14 netbox/users/forms/filtersets.py:120 +#: templates/account/token.html:11 templates/account/token.html:19 +#: templates/users/token.html:6 templates/users/token.html:14 +#: users/forms/filtersets.py:120 msgid "Token" msgstr "Токен" -#: netbox/templates/account/token.html:39 netbox/templates/users/token.html:31 -#: netbox/users/forms/bulk_edit.py:107 +#: templates/account/token.html:39 templates/users/token.html:31 +#: users/forms/bulk_edit.py:107 msgid "Write enabled" msgstr "Запис увімкнено" -#: netbox/templates/account/token.html:51 netbox/templates/users/token.html:43 +#: templates/account/token.html:51 templates/users/token.html:43 msgid "Last used" msgstr "Востаннє використано" -#: netbox/templates/account/token_list.html:12 +#: templates/account/token_list.html:12 msgid "Add a Token" msgstr "Додати токен" -#: netbox/templates/base/base.html:22 netbox/templates/home.html:27 +#: templates/base/base.html:22 templates/home.html:27 msgid "Home" msgstr "Головна" -#: netbox/templates/base/layout.html:25 +#: templates/base/layout.html:25 msgid "NetBox Motif" msgstr "NetBox Motif" -#: netbox/templates/base/layout.html:38 netbox/templates/base/layout.html:39 -#: netbox/templates/login.html:14 netbox/templates/login.html:15 +#: templates/base/layout.html:38 templates/base/layout.html:39 +#: templates/login.html:14 templates/login.html:15 msgid "NetBox Logo" msgstr "Логотип NetBox" -#: netbox/templates/base/layout.html:150 netbox/templates/base/layout.html:151 +#: templates/base/layout.html:150 templates/base/layout.html:151 msgid "Docs" msgstr "Документація" -#: netbox/templates/base/layout.html:156 netbox/templates/base/layout.html:157 -#: netbox/templates/rest_framework/api.html:10 +#: templates/base/layout.html:156 templates/base/layout.html:157 +#: templates/rest_framework/api.html:10 msgid "REST API" msgstr "REST API" -#: netbox/templates/base/layout.html:162 netbox/templates/base/layout.html:163 +#: templates/base/layout.html:162 templates/base/layout.html:163 msgid "REST API documentation" msgstr "Документація REST API" -#: netbox/templates/base/layout.html:169 netbox/templates/base/layout.html:170 +#: templates/base/layout.html:169 templates/base/layout.html:170 msgid "GraphQL API" msgstr "Графічний інтерфейс QL" -#: netbox/templates/base/layout.html:185 netbox/templates/base/layout.html:186 +#: templates/base/layout.html:185 templates/base/layout.html:186 msgid "NetBox Labs Support" msgstr "Підтримка NetBox Labs" -#: netbox/templates/base/layout.html:194 netbox/templates/base/layout.html:195 +#: templates/base/layout.html:194 templates/base/layout.html:195 msgid "Source Code" msgstr "Вихідний код" -#: netbox/templates/base/layout.html:200 netbox/templates/base/layout.html:201 +#: templates/base/layout.html:200 templates/base/layout.html:201 msgid "Community" msgstr "Спільнота" -#: netbox/templates/circuits/circuit.html:47 +#: templates/circuits/circuit.html:47 msgid "Install Date" msgstr "Дата встановлення" -#: netbox/templates/circuits/circuit.html:51 +#: templates/circuits/circuit.html:51 msgid "Termination Date" msgstr "Дата припинення" -#: netbox/templates/circuits/circuit.html:70 -#: netbox/templates/ipam/inc/panels/fhrp_groups.html:15 +#: templates/circuits/circuit.html:70 +#: templates/ipam/inc/panels/fhrp_groups.html:15 msgid "Assign Group" msgstr "Призначити групу" -#: netbox/templates/circuits/circuit_terminations_swap.html:4 +#: templates/circuits/circuit_terminations_swap.html:4 msgid "Swap Circuit Terminations" msgstr "Поміняти місцями кінці каналу зв'язку" -#: netbox/templates/circuits/circuit_terminations_swap.html:8 +#: templates/circuits/circuit_terminations_swap.html:8 #, python-format msgid "Swap these terminations for circuit %(circuit)s?" msgstr "Поміняти місцями кінці для каналу зв'язку%(circuit)s?" -#: netbox/templates/circuits/circuit_terminations_swap.html:14 +#: templates/circuits/circuit_terminations_swap.html:14 msgid "A side" msgstr "Сторона А" -#: netbox/templates/circuits/circuit_terminations_swap.html:22 +#: templates/circuits/circuit_terminations_swap.html:22 msgid "Z side" msgstr "Сторона Б" -#: netbox/templates/circuits/circuitgroup.html:16 +#: templates/circuits/circuitgroup.html:16 msgid "Assign Circuit" msgstr "Призначити канал зв'язку" -#: netbox/templates/circuits/circuitgroupassignment.html:19 +#: templates/circuits/circuitgroupassignment.html:19 msgid "Circuit Group Assignment" msgstr "Призначення групи каналів зв'язку" -#: netbox/templates/circuits/circuittype.html:10 +#: templates/circuits/circuittype.html:10 msgid "Add Circuit" msgstr "Додати канал зв'язку" -#: netbox/templates/circuits/circuittype.html:19 +#: templates/circuits/circuittype.html:19 msgid "Circuit Type" msgstr "Тип каналу зв'язку" -#: netbox/templates/circuits/inc/circuit_termination.html:10 -#: netbox/templates/dcim/devicetype/component_templates.html:33 -#: netbox/templates/dcim/manufacturer.html:11 -#: netbox/templates/dcim/moduletype/component_templates.html:29 -#: netbox/templates/generic/bulk_add_component.html:22 -#: netbox/templates/users/objectpermission.html:38 -#: netbox/utilities/templates/buttons/add.html:4 -#: netbox/utilities/templates/helpers/table_config_form.html:20 +#: templates/circuits/inc/circuit_termination.html:10 +#: templates/dcim/manufacturer.html:11 +#: templates/generic/bulk_add_component.html:22 +#: templates/users/objectpermission.html:38 +#: utilities/templates/buttons/add.html:4 +#: utilities/templates/helpers/table_config_form.html:20 msgid "Add" msgstr "Додати" -#: netbox/templates/circuits/inc/circuit_termination.html:15 -#: netbox/templates/circuits/inc/circuit_termination_fields.html:36 -#: netbox/templates/dcim/inc/panels/inventory_items.html:32 -#: netbox/templates/dcim/moduletype/component_templates.html:20 -#: netbox/templates/dcim/powerpanel.html:56 -#: netbox/templates/extras/script_list.html:30 -#: netbox/templates/generic/object_edit.html:47 -#: netbox/templates/ipam/inc/ipaddress_edit_header.html:7 -#: netbox/templates/ipam/inc/panels/fhrp_groups.html:43 -#: netbox/utilities/templates/buttons/edit.html:3 +#: templates/circuits/inc/circuit_termination.html:15 +#: templates/circuits/inc/circuit_termination_fields.html:36 +#: templates/dcim/inc/panels/inventory_items.html:32 +#: templates/dcim/powerpanel.html:56 templates/extras/script_list.html:30 +#: templates/generic/object_edit.html:47 +#: templates/ipam/inc/ipaddress_edit_header.html:7 +#: templates/ipam/inc/panels/fhrp_groups.html:43 +#: utilities/templates/buttons/edit.html:3 msgid "Edit" msgstr "Редагувати" -#: netbox/templates/circuits/inc/circuit_termination.html:18 +#: templates/circuits/inc/circuit_termination.html:18 msgid "Swap" msgstr "Обмін" -#: netbox/templates/circuits/inc/circuit_termination_fields.html:19 -#: netbox/templates/dcim/consoleport.html:59 -#: netbox/templates/dcim/consoleserverport.html:60 -#: netbox/templates/dcim/powerfeed.html:114 +#: templates/circuits/inc/circuit_termination_fields.html:19 +#: templates/dcim/consoleport.html:59 templates/dcim/consoleserverport.html:60 +#: templates/dcim/powerfeed.html:114 msgid "Marked as connected" msgstr "Позначено як підключений" -#: netbox/templates/circuits/inc/circuit_termination_fields.html:21 +#: templates/circuits/inc/circuit_termination_fields.html:21 msgid "to" msgstr "до" -#: netbox/templates/circuits/inc/circuit_termination_fields.html:31 -#: netbox/templates/circuits/inc/circuit_termination_fields.html:32 -#: netbox/templates/dcim/frontport.html:80 -#: netbox/templates/dcim/inc/connection_endpoints.html:7 -#: netbox/templates/dcim/interface.html:154 -#: netbox/templates/dcim/rearport.html:76 +#: templates/circuits/inc/circuit_termination_fields.html:31 +#: templates/circuits/inc/circuit_termination_fields.html:32 +#: templates/dcim/frontport.html:80 +#: templates/dcim/inc/connection_endpoints.html:7 +#: templates/dcim/interface.html:154 templates/dcim/rearport.html:76 msgid "Trace" msgstr "Слід" -#: netbox/templates/circuits/inc/circuit_termination_fields.html:35 +#: templates/circuits/inc/circuit_termination_fields.html:35 msgid "Edit cable" msgstr "Редагувати кабель" -#: netbox/templates/circuits/inc/circuit_termination_fields.html:40 +#: templates/circuits/inc/circuit_termination_fields.html:40 msgid "Remove cable" msgstr "Видаліть кабель" -#: netbox/templates/circuits/inc/circuit_termination_fields.html:41 -#: netbox/templates/dcim/bulk_disconnect.html:5 -#: netbox/templates/dcim/device/consoleports.html:12 -#: netbox/templates/dcim/device/consoleserverports.html:12 -#: netbox/templates/dcim/device/frontports.html:12 -#: netbox/templates/dcim/device/interfaces.html:16 -#: netbox/templates/dcim/device/poweroutlets.html:12 -#: netbox/templates/dcim/device/powerports.html:12 -#: netbox/templates/dcim/device/rearports.html:12 -#: netbox/templates/dcim/powerpanel.html:61 +#: templates/circuits/inc/circuit_termination_fields.html:41 +#: templates/dcim/bulk_disconnect.html:5 +#: templates/dcim/device/consoleports.html:12 +#: templates/dcim/device/consoleserverports.html:12 +#: templates/dcim/device/frontports.html:12 +#: templates/dcim/device/interfaces.html:16 +#: templates/dcim/device/poweroutlets.html:12 +#: templates/dcim/device/powerports.html:12 +#: templates/dcim/device/rearports.html:12 templates/dcim/powerpanel.html:61 msgid "Disconnect" msgstr "Відключити" -#: netbox/templates/circuits/inc/circuit_termination_fields.html:48 -#: netbox/templates/dcim/consoleport.html:69 -#: netbox/templates/dcim/consoleserverport.html:70 -#: netbox/templates/dcim/frontport.html:102 -#: netbox/templates/dcim/interface.html:180 -#: netbox/templates/dcim/interface.html:200 -#: netbox/templates/dcim/powerfeed.html:127 -#: netbox/templates/dcim/poweroutlet.html:71 -#: netbox/templates/dcim/poweroutlet.html:72 -#: netbox/templates/dcim/powerport.html:73 -#: netbox/templates/dcim/rearport.html:98 +#: templates/circuits/inc/circuit_termination_fields.html:48 +#: templates/dcim/consoleport.html:69 templates/dcim/consoleserverport.html:70 +#: templates/dcim/frontport.html:102 templates/dcim/interface.html:180 +#: templates/dcim/interface.html:200 templates/dcim/powerfeed.html:127 +#: templates/dcim/poweroutlet.html:71 templates/dcim/poweroutlet.html:72 +#: templates/dcim/powerport.html:73 templates/dcim/rearport.html:98 msgid "Connect" msgstr "Підключити" -#: netbox/templates/circuits/inc/circuit_termination_fields.html:70 +#: templates/circuits/inc/circuit_termination_fields.html:70 msgid "Downstream" msgstr "За течією" -#: netbox/templates/circuits/inc/circuit_termination_fields.html:71 +#: templates/circuits/inc/circuit_termination_fields.html:71 msgid "Upstream" msgstr "Вгору за течією" -#: netbox/templates/circuits/inc/circuit_termination_fields.html:80 +#: templates/circuits/inc/circuit_termination_fields.html:80 msgid "Cross-Connect" msgstr "Перехресне з'єднання" -#: netbox/templates/circuits/inc/circuit_termination_fields.html:84 +#: templates/circuits/inc/circuit_termination_fields.html:84 msgid "Patch Panel/Port" msgstr "Патч-панель/порт" -#: netbox/templates/circuits/provider.html:11 +#: templates/circuits/provider.html:11 msgid "Add circuit" msgstr "Додати канал зв'язку" -#: netbox/templates/circuits/provideraccount.html:17 +#: templates/circuits/provideraccount.html:17 msgid "Provider Account" msgstr "Обліковий запис постачальника" -#: netbox/templates/core/configrevision.html:35 +#: templates/core/configrevision.html:35 msgid "Configuration Data" msgstr "Дані конфігурації" -#: netbox/templates/core/configrevision.html:40 +#: templates/core/configrevision.html:40 msgid "Comment" msgstr "Коментар" -#: netbox/templates/core/configrevision_restore.html:8 -#: netbox/templates/core/configrevision_restore.html:25 -#: netbox/templates/core/configrevision_restore.html:64 +#: templates/core/configrevision_restore.html:8 +#: templates/core/configrevision_restore.html:25 +#: templates/core/configrevision_restore.html:64 msgid "Restore" msgstr "Відновити" -#: netbox/templates/core/configrevision_restore.html:36 +#: templates/core/configrevision_restore.html:36 msgid "Parameter" msgstr "Параметр" -#: netbox/templates/core/configrevision_restore.html:37 +#: templates/core/configrevision_restore.html:37 msgid "Current Value" msgstr "Поточна величина" -#: netbox/templates/core/configrevision_restore.html:38 +#: templates/core/configrevision_restore.html:38 msgid "New Value" msgstr "Нова цінність" -#: netbox/templates/core/configrevision_restore.html:50 +#: templates/core/configrevision_restore.html:50 msgid "Changed" msgstr "Змінено" -#: netbox/templates/core/datafile.html:42 -#: netbox/templates/ipam/iprange.html:25 -#: netbox/templates/virtualization/virtualdisk.html:29 -#: netbox/virtualization/tables/virtualmachines.py:198 +#: templates/core/datafile.html:42 templates/ipam/iprange.html:25 +#: templates/virtualization/virtualdisk.html:29 +#: virtualization/tables/virtualmachines.py:198 msgid "Size" msgstr "Розмір" -#: netbox/templates/core/datafile.html:43 +#: templates/core/datafile.html:43 msgid "bytes" msgstr "байтів" -#: netbox/templates/core/datafile.html:46 +#: templates/core/datafile.html:46 msgid "SHA256 Hash" msgstr "Хеш SHA256" -#: netbox/templates/core/datasource.html:14 -#: netbox/templates/core/datasource.html:20 -#: netbox/utilities/templates/buttons/sync.html:5 +#: templates/core/datasource.html:14 templates/core/datasource.html:20 +#: utilities/templates/buttons/sync.html:5 msgid "Sync" msgstr "Синхронізація" -#: netbox/templates/core/datasource.html:50 +#: templates/core/datasource.html:50 msgid "Last synced" msgstr "Востаннє синхронізовано" -#: netbox/templates/core/datasource.html:84 +#: templates/core/datasource.html:84 msgid "Backend" msgstr "Бекенд" -#: netbox/templates/core/datasource.html:99 +#: templates/core/datasource.html:99 msgid "No parameters defined" msgstr "Параметри не визначені" -#: netbox/templates/core/datasource.html:114 +#: templates/core/datasource.html:114 msgid "Files" msgstr "Файли" -#: netbox/templates/core/inc/config_data.html:7 +#: templates/core/inc/config_data.html:7 msgid "Rack elevations" msgstr "Висота стійки" -#: netbox/templates/core/inc/config_data.html:10 +#: templates/core/inc/config_data.html:10 msgid "Default unit height" msgstr "Висота монтажної одиниці за замовчуванням" -#: netbox/templates/core/inc/config_data.html:14 +#: templates/core/inc/config_data.html:14 msgid "Default unit width" msgstr "Ширина одиниці за замовчуванням" -#: netbox/templates/core/inc/config_data.html:20 +#: templates/core/inc/config_data.html:20 msgid "Power feeds" msgstr "Подача живлення" -#: netbox/templates/core/inc/config_data.html:23 +#: templates/core/inc/config_data.html:23 msgid "Default voltage" msgstr "Напруга за замовчуванням" -#: netbox/templates/core/inc/config_data.html:27 +#: templates/core/inc/config_data.html:27 msgid "Default amperage" msgstr "Сила струму за замовчуванням" -#: netbox/templates/core/inc/config_data.html:31 +#: templates/core/inc/config_data.html:31 msgid "Default max utilization" msgstr "Максимальне використання за замовчуванням" -#: netbox/templates/core/inc/config_data.html:40 +#: templates/core/inc/config_data.html:40 msgid "Enforce global unique" msgstr "Забезпечити глобальну унікальність" -#: netbox/templates/core/inc/config_data.html:83 +#: templates/core/inc/config_data.html:83 msgid "Paginate count" msgstr "Кількість сторінок" -#: netbox/templates/core/inc/config_data.html:87 +#: templates/core/inc/config_data.html:87 msgid "Max page size" msgstr "Максимальний розмір сторінки" -#: netbox/templates/core/inc/config_data.html:114 +#: templates/core/inc/config_data.html:114 msgid "User preferences" msgstr "Налаштування користувача" -#: netbox/templates/core/inc/config_data.html:141 +#: templates/core/inc/config_data.html:141 msgid "Job retention" msgstr "Зберігання завдання" -#: netbox/templates/core/job.html:35 netbox/templates/core/rq_task.html:12 -#: netbox/templates/core/rq_task.html:49 netbox/templates/core/rq_task.html:58 +#: templates/core/job.html:35 templates/core/rq_task.html:12 +#: templates/core/rq_task.html:49 templates/core/rq_task.html:58 msgid "Job" msgstr "Завдання" -#: netbox/templates/core/job.html:58 -#: netbox/templates/extras/journalentry.html:26 +#: templates/core/job.html:58 templates/extras/journalentry.html:26 msgid "Created By" msgstr "Створено" -#: netbox/templates/core/job.html:66 +#: templates/core/job.html:66 msgid "Scheduling" msgstr "Планування" -#: netbox/templates/core/job.html:77 +#: templates/core/job.html:77 #, python-format msgid "every %(interval)s minutes" msgstr "кожен %(interval)s хвилини" -#: netbox/templates/core/objectchange.html:29 -#: netbox/templates/users/objectpermission.html:42 +#: templates/core/objectchange.html:29 +#: templates/users/objectpermission.html:42 msgid "Change" msgstr "Змінити" -#: netbox/templates/core/objectchange.html:79 +#: templates/core/objectchange.html:79 msgid "Difference" msgstr "Різниця" -#: netbox/templates/core/objectchange.html:82 +#: templates/core/objectchange.html:82 msgid "Previous" msgstr "Попередній" -#: netbox/templates/core/objectchange.html:85 +#: templates/core/objectchange.html:85 msgid "Next" msgstr "Наступний" -#: netbox/templates/core/objectchange.html:93 +#: templates/core/objectchange.html:93 msgid "Object Created" msgstr "Об'єкт створений" -#: netbox/templates/core/objectchange.html:95 +#: templates/core/objectchange.html:95 msgid "Object Deleted" msgstr "Об'єкт видалений" -#: netbox/templates/core/objectchange.html:97 +#: templates/core/objectchange.html:97 msgid "No Changes" msgstr "Немає змін" -#: netbox/templates/core/objectchange.html:111 +#: templates/core/objectchange.html:111 msgid "Pre-Change Data" msgstr "Дані перед зміною" -#: netbox/templates/core/objectchange.html:122 +#: templates/core/objectchange.html:122 msgid "Warning: Comparing non-atomic change to previous change record" msgstr "Попередження: Порівняння неатомних змін з попереднім записом змін" -#: netbox/templates/core/objectchange.html:131 +#: templates/core/objectchange.html:131 msgid "Post-Change Data" msgstr "Дані після зміни" -#: netbox/templates/core/objectchange.html:162 +#: templates/core/objectchange.html:162 #, python-format msgid "See All %(count)s Changes" msgstr "Дивитись все %(count)s Зміни" -#: netbox/templates/core/objectchange_list.html:9 -#: netbox/templates/extras/object_changelog.html:15 +#: templates/core/objectchange_list.html:9 +#: templates/extras/object_changelog.html:15 msgid "Change log retention" msgstr "Зберігання журналу змін" -#: netbox/templates/core/objectchange_list.html:9 -#: netbox/templates/extras/object_changelog.html:15 +#: templates/core/objectchange_list.html:9 +#: templates/extras/object_changelog.html:15 msgid "days" msgstr "днів" -#: netbox/templates/core/objectchange_list.html:9 -#: netbox/templates/extras/object_changelog.html:15 +#: templates/core/objectchange_list.html:9 +#: templates/extras/object_changelog.html:15 msgid "Indefinite" msgstr "Невизначений" -#: netbox/templates/core/plugin.html:21 +#: templates/core/plugin.html:22 msgid "Not installed" msgstr "Не встановлено" -#: netbox/templates/core/plugin.html:32 +#: templates/core/plugin.html:33 msgid "Overview" msgstr "Огляд" -#: netbox/templates/core/plugin.html:38 +#: templates/core/plugin.html:39 msgid "Install" msgstr "Встановити" -#: netbox/templates/core/plugin.html:50 +#: templates/core/plugin.html:51 msgid "Plugin Details" msgstr "Деталі плагіна" -#: netbox/templates/core/plugin.html:57 +#: templates/core/plugin.html:58 msgid "Summary" msgstr "У підсумку" -#: netbox/templates/core/plugin.html:75 +#: templates/core/plugin.html:76 msgid "License" msgstr "Ліцензія" -#: netbox/templates/core/plugin.html:95 +#: templates/core/plugin.html:96 msgid "Version History" msgstr "Історія версій" -#: netbox/templates/core/plugin.html:106 +#: templates/core/plugin.html:107 msgid "Local Installation Instructions" msgstr "Інструкції по локальній установці" -#: netbox/templates/core/rq_queue_list.html:5 -#: netbox/templates/core/rq_queue_list.html:13 -#: netbox/templates/core/rq_task_list.html:14 -#: netbox/templates/core/rq_worker.html:7 +#: templates/core/rq_queue_list.html:5 templates/core/rq_queue_list.html:13 +#: templates/core/rq_task_list.html:14 templates/core/rq_worker.html:7 msgid "Background Queues" msgstr "Фонові черги" -#: netbox/templates/core/rq_queue_list.html:24 -#: netbox/templates/core/rq_queue_list.html:25 -#: netbox/templates/core/rq_worker_list.html:49 -#: netbox/templates/core/rq_worker_list.html:50 -#: netbox/templates/extras/script_result.html:67 -#: netbox/templates/extras/script_result.html:69 -#: netbox/templates/inc/table_controls_htmx.html:30 -#: netbox/templates/inc/table_controls_htmx.html:33 +#: templates/core/rq_queue_list.html:24 templates/core/rq_queue_list.html:25 +#: templates/core/rq_worker_list.html:49 templates/core/rq_worker_list.html:50 +#: templates/extras/script_result.html:67 +#: templates/extras/script_result.html:69 +#: templates/inc/table_controls_htmx.html:30 +#: templates/inc/table_controls_htmx.html:33 msgid "Configure Table" msgstr "Налаштувати таблицю" -#: netbox/templates/core/rq_task.html:29 +#: templates/core/rq_task.html:29 msgid "Stop" msgstr "Зупинити" -#: netbox/templates/core/rq_task.html:34 +#: templates/core/rq_task.html:34 msgid "Requeue" msgstr "Реквье" -#: netbox/templates/core/rq_task.html:39 +#: templates/core/rq_task.html:39 msgid "Enqueue" msgstr "Поставте в чергу" -#: netbox/templates/core/rq_task.html:61 +#: templates/core/rq_task.html:61 msgid "Queue" msgstr "Черга" -#: netbox/templates/core/rq_task.html:65 +#: templates/core/rq_task.html:65 msgid "Timeout" msgstr "Тайм-аут" -#: netbox/templates/core/rq_task.html:69 +#: templates/core/rq_task.html:69 msgid "Result TTL" msgstr "Результат TTL" -#: netbox/templates/core/rq_task.html:89 +#: templates/core/rq_task.html:89 msgid "Meta" msgstr "Мета" -#: netbox/templates/core/rq_task.html:93 +#: templates/core/rq_task.html:93 msgid "Arguments" msgstr "Аргументи" -#: netbox/templates/core/rq_task.html:97 +#: templates/core/rq_task.html:97 msgid "Keyword Arguments" msgstr "Аргументи ключових слів" -#: netbox/templates/core/rq_task.html:103 +#: templates/core/rq_task.html:103 msgid "Depends on" msgstr "Залежить від" -#: netbox/templates/core/rq_task.html:109 +#: templates/core/rq_task.html:109 msgid "Exception" msgstr "Виняток" -#: netbox/templates/core/rq_task_list.html:28 +#: templates/core/rq_task_list.html:28 msgid "tasks in " msgstr "завдання в " -#: netbox/templates/core/rq_task_list.html:33 +#: templates/core/rq_task_list.html:33 msgid "Queued Jobs" msgstr "Завдання у черзі" -#: netbox/templates/core/rq_task_list.html:64 -#: netbox/templates/extras/script_result.html:86 +#: templates/core/rq_task_list.html:64 templates/extras/script_result.html:86 #, python-format msgid "" "Select all %(count)s %(object_type_plural)s matching query" @@ -12246,397 +11570,382 @@ msgstr "" "Вибрати усі %(count)s %(object_type_plural)s відповідний " "запит" -#: netbox/templates/core/rq_worker.html:10 +#: templates/core/rq_worker.html:10 msgid "Worker Info" msgstr "Інформація по робочому процесу" -#: netbox/templates/core/rq_worker.html:31 -#: netbox/templates/core/rq_worker.html:40 +#: templates/core/rq_worker.html:31 templates/core/rq_worker.html:40 msgid "Worker" msgstr "Робочий процес" -#: netbox/templates/core/rq_worker.html:55 +#: templates/core/rq_worker.html:55 msgid "Queues" msgstr "Черги" -#: netbox/templates/core/rq_worker.html:63 +#: templates/core/rq_worker.html:63 msgid "Curent Job" msgstr "Поточне завдання" -#: netbox/templates/core/rq_worker.html:67 +#: templates/core/rq_worker.html:67 msgid "Successful job count" msgstr "Підрахунок кількості успішно виконаних завдань" -#: netbox/templates/core/rq_worker.html:71 +#: templates/core/rq_worker.html:71 msgid "Failed job count" msgstr "Підрахунок кількості невдало виконаних завдань" -#: netbox/templates/core/rq_worker.html:75 +#: templates/core/rq_worker.html:75 msgid "Total working time" msgstr "Загальний робочий час" -#: netbox/templates/core/rq_worker.html:76 +#: templates/core/rq_worker.html:76 msgid "seconds" msgstr "секунд" -#: netbox/templates/core/rq_worker_list.html:13 -#: netbox/templates/core/rq_worker_list.html:21 +#: templates/core/rq_worker_list.html:13 templates/core/rq_worker_list.html:21 msgid "Background Workers" msgstr "Фонові робочі процеси" -#: netbox/templates/core/rq_worker_list.html:29 +#: templates/core/rq_worker_list.html:29 #, python-format msgid "Workers in %(queue_name)s" msgstr "Робочі процеси у %(queue_name)s" -#: netbox/templates/core/system.html:11 -#: netbox/utilities/templates/buttons/export.html:4 +#: templates/core/system.html:11 utilities/templates/buttons/export.html:4 msgid "Export" msgstr "Експорт" -#: netbox/templates/core/system.html:28 +#: templates/core/system.html:28 msgid "System Status" msgstr "Статус системи" -#: netbox/templates/core/system.html:31 +#: templates/core/system.html:31 msgid "NetBox release" msgstr "Випуск NetBox" -#: netbox/templates/core/system.html:44 +#: templates/core/system.html:44 msgid "Django version" msgstr "Версія Джанго" -#: netbox/templates/core/system.html:48 +#: templates/core/system.html:48 msgid "PostgreSQL version" msgstr "Версія PostgreSQL" -#: netbox/templates/core/system.html:52 +#: templates/core/system.html:52 msgid "Database name" msgstr "Назва бази даних" -#: netbox/templates/core/system.html:56 +#: templates/core/system.html:56 msgid "Database size" msgstr "Розмір бази даних" -#: netbox/templates/core/system.html:61 +#: templates/core/system.html:61 msgid "Unavailable" msgstr "Недоступний" -#: netbox/templates/core/system.html:66 +#: templates/core/system.html:66 msgid "RQ workers" msgstr "Робочі процеси RQ" -#: netbox/templates/core/system.html:69 +#: templates/core/system.html:69 msgid "default queue" msgstr "черга за замовчуванням" -#: netbox/templates/core/system.html:73 +#: templates/core/system.html:73 msgid "System time" msgstr "Системний час" -#: netbox/templates/core/system.html:85 +#: templates/core/system.html:85 msgid "Current Configuration" msgstr "Поточне налаштування" -#: netbox/templates/dcim/bulk_disconnect.html:9 +#: templates/dcim/bulk_disconnect.html:9 #, python-format msgid "" "Are you sure you want to disconnect these %(count)s %(obj_type_plural)s?" msgstr "Ви впевнені, що хочете відключити ці %(count)s %(obj_type_plural)s?" -#: netbox/templates/dcim/cable_trace.html:10 +#: templates/dcim/cable_trace.html:10 #, python-format msgid "Cable Trace for %(object_type)s %(object)s" msgstr "Траса кабелю для %(object_type)s %(object)s" -#: netbox/templates/dcim/cable_trace.html:24 -#: netbox/templates/dcim/inc/rack_elevation.html:7 +#: templates/dcim/cable_trace.html:24 templates/dcim/inc/rack_elevation.html:7 msgid "Download SVG" msgstr "Завантажити SVG" -#: netbox/templates/dcim/cable_trace.html:30 +#: templates/dcim/cable_trace.html:30 msgid "Asymmetric Path" msgstr "Асиметричний шлях" -#: netbox/templates/dcim/cable_trace.html:31 +#: templates/dcim/cable_trace.html:31 msgid "The nodes below have no links and result in an asymmetric path" msgstr "" "Нижче наведені вузли не мають зв'язків і призводять до асиметричного контуру" -#: netbox/templates/dcim/cable_trace.html:38 +#: templates/dcim/cable_trace.html:38 msgid "Path split" msgstr "Розділ шляху" -#: netbox/templates/dcim/cable_trace.html:39 +#: templates/dcim/cable_trace.html:39 msgid "Select a node below to continue" msgstr "Виберіть вузол нижче, щоб продовжити" -#: netbox/templates/dcim/cable_trace.html:55 +#: templates/dcim/cable_trace.html:55 msgid "Trace Completed" msgstr "Відстеження завершено" -#: netbox/templates/dcim/cable_trace.html:58 +#: templates/dcim/cable_trace.html:58 msgid "Total segments" msgstr "Всього сегментів" -#: netbox/templates/dcim/cable_trace.html:62 +#: templates/dcim/cable_trace.html:62 msgid "Total length" msgstr "Загальна довжина" -#: netbox/templates/dcim/cable_trace.html:77 +#: templates/dcim/cable_trace.html:77 msgid "No paths found" msgstr "Не знайдено шляхів" -#: netbox/templates/dcim/cable_trace.html:85 +#: templates/dcim/cable_trace.html:85 msgid "Related Paths" msgstr "Пов'язані шляхи" -#: netbox/templates/dcim/cable_trace.html:89 +#: templates/dcim/cable_trace.html:89 msgid "Origin" msgstr "Походження" -#: netbox/templates/dcim/cable_trace.html:90 +#: templates/dcim/cable_trace.html:90 msgid "Destination" msgstr "Пункт призначення" -#: netbox/templates/dcim/cable_trace.html:91 +#: templates/dcim/cable_trace.html:91 msgid "Segments" msgstr "сегменти" -#: netbox/templates/dcim/cable_trace.html:104 +#: templates/dcim/cable_trace.html:104 msgid "Incomplete" msgstr "Неповні" -#: netbox/templates/dcim/component_list.html:14 +#: templates/dcim/component_list.html:14 msgid "Rename Selected" msgstr "Перейменувати вибране" -#: netbox/templates/dcim/consoleport.html:65 -#: netbox/templates/dcim/consoleserverport.html:66 -#: netbox/templates/dcim/frontport.html:98 -#: netbox/templates/dcim/interface.html:176 -#: netbox/templates/dcim/poweroutlet.html:69 -#: netbox/templates/dcim/powerport.html:69 +#: templates/dcim/consoleport.html:65 templates/dcim/consoleserverport.html:66 +#: templates/dcim/frontport.html:98 templates/dcim/interface.html:176 +#: templates/dcim/poweroutlet.html:69 templates/dcim/powerport.html:69 msgid "Not Connected" msgstr "Не підключено" -#: netbox/templates/dcim/device.html:34 +#: templates/dcim/device.html:34 msgid "Highlight device in rack" msgstr "Виділіть пристрій в стійці" -#: netbox/templates/dcim/device.html:55 +#: templates/dcim/device.html:55 msgid "Not racked" msgstr "Не в стійці" -#: netbox/templates/dcim/device.html:62 netbox/templates/dcim/site.html:94 +#: templates/dcim/device.html:62 templates/dcim/site.html:94 msgid "GPS Coordinates" msgstr "GPS-координати" -#: netbox/templates/dcim/device.html:68 netbox/templates/dcim/site.html:81 -#: netbox/templates/dcim/site.html:100 +#: templates/dcim/device.html:68 templates/dcim/site.html:81 +#: templates/dcim/site.html:100 msgid "Map" msgstr "Карта" -#: netbox/templates/dcim/device.html:108 -#: netbox/templates/dcim/inventoryitem.html:56 -#: netbox/templates/dcim/module.html:81 -#: netbox/templates/dcim/modulebay.html:74 netbox/templates/dcim/rack.html:61 +#: templates/dcim/device.html:108 templates/dcim/inventoryitem.html:56 +#: templates/dcim/module.html:81 templates/dcim/modulebay.html:74 +#: templates/dcim/rack.html:61 msgid "Asset Tag" msgstr "Призначеня мітки" -#: netbox/templates/dcim/device.html:123 +#: templates/dcim/device.html:123 msgid "View Virtual Chassis" msgstr "Переглянути віртуальне шасі" -#: netbox/templates/dcim/device.html:164 +#: templates/dcim/device.html:164 msgid "Create VDC" msgstr "Створіть джерело живлення постійного струму " -#: netbox/templates/dcim/device.html:175 -#: netbox/templates/dcim/device_edit.html:64 -#: netbox/virtualization/forms/model_forms.py:223 +#: templates/dcim/device.html:175 templates/dcim/device_edit.html:64 +#: virtualization/forms/model_forms.py:223 msgid "Management" msgstr "Менеджмент" -#: netbox/templates/dcim/device.html:195 netbox/templates/dcim/device.html:211 -#: netbox/templates/dcim/device.html:227 -#: netbox/templates/virtualization/virtualmachine.html:57 -#: netbox/templates/virtualization/virtualmachine.html:73 +#: templates/dcim/device.html:195 templates/dcim/device.html:211 +#: templates/dcim/device.html:227 +#: templates/virtualization/virtualmachine.html:57 +#: templates/virtualization/virtualmachine.html:73 msgid "NAT for" msgstr "NAT для" -#: netbox/templates/dcim/device.html:197 netbox/templates/dcim/device.html:213 -#: netbox/templates/dcim/device.html:229 -#: netbox/templates/virtualization/virtualmachine.html:59 -#: netbox/templates/virtualization/virtualmachine.html:75 +#: templates/dcim/device.html:197 templates/dcim/device.html:213 +#: templates/dcim/device.html:229 +#: templates/virtualization/virtualmachine.html:59 +#: templates/virtualization/virtualmachine.html:75 msgid "NAT" msgstr "НАТ" -#: netbox/templates/dcim/device.html:252 netbox/templates/dcim/rack.html:73 +#: templates/dcim/device.html:252 templates/dcim/rack.html:73 msgid "Power Utilization" msgstr "Використання електроенергії" -#: netbox/templates/dcim/device.html:256 +#: templates/dcim/device.html:256 msgid "Input" msgstr "Вхід" -#: netbox/templates/dcim/device.html:257 +#: templates/dcim/device.html:257 msgid "Outlets" msgstr "розетки" -#: netbox/templates/dcim/device.html:258 +#: templates/dcim/device.html:258 msgid "Allocated" msgstr "Виділено" -#: netbox/templates/dcim/device.html:268 netbox/templates/dcim/device.html:270 -#: netbox/templates/dcim/device.html:286 -#: netbox/templates/dcim/powerfeed.html:67 +#: templates/dcim/device.html:268 templates/dcim/device.html:270 +#: templates/dcim/device.html:286 templates/dcim/powerfeed.html:67 msgid "VA" msgstr "ВА" -#: netbox/templates/dcim/device.html:280 +#: templates/dcim/device.html:280 msgctxt "Leg of a power feed" msgid "Leg" msgstr "Нога" -#: netbox/templates/dcim/device.html:306 -#: netbox/templates/virtualization/virtualmachine.html:158 +#: templates/dcim/device.html:306 +#: templates/virtualization/virtualmachine.html:158 msgid "Add a service" msgstr "Додати послугу" -#: netbox/templates/dcim/device/base.html:21 -#: netbox/templates/dcim/device_list.html:9 -#: netbox/templates/dcim/devicetype/base.html:18 -#: netbox/templates/dcim/module.html:18 -#: netbox/templates/dcim/moduletype/base.html:18 -#: netbox/templates/virtualization/virtualmachine/base.html:22 -#: netbox/templates/virtualization/virtualmachine_list.html:8 +#: templates/dcim/device/base.html:21 templates/dcim/device_list.html:9 +#: templates/dcim/devicetype/base.html:18 +#: templates/dcim/inc/moduletype_buttons.html:9 templates/dcim/module.html:18 +#: templates/virtualization/virtualmachine/base.html:22 +#: templates/virtualization/virtualmachine_list.html:8 msgid "Add Components" msgstr "Додати компоненти" -#: netbox/templates/dcim/device/consoleports.html:24 +#: templates/dcim/device/consoleports.html:24 msgid "Add Console Ports" msgstr "Додати консольні порти" -#: netbox/templates/dcim/device/consoleserverports.html:24 +#: templates/dcim/device/consoleserverports.html:24 msgid "Add Console Server Ports" msgstr "Додати порти консольного сервера" -#: netbox/templates/dcim/device/devicebays.html:10 +#: templates/dcim/device/devicebays.html:10 msgid "Add Device Bays" msgstr "Додати відсіки для пристроїв" -#: netbox/templates/dcim/device/frontports.html:24 +#: templates/dcim/device/frontports.html:24 msgid "Add Front Ports" msgstr "Додати передні порти" -#: netbox/templates/dcim/device/inc/interface_table_controls.html:9 +#: templates/dcim/device/inc/interface_table_controls.html:9 msgid "Hide Enabled" msgstr "Приховати увімкнено" -#: netbox/templates/dcim/device/inc/interface_table_controls.html:10 +#: templates/dcim/device/inc/interface_table_controls.html:10 msgid "Hide Disabled" msgstr "Приховати вимкнено" -#: netbox/templates/dcim/device/inc/interface_table_controls.html:11 +#: templates/dcim/device/inc/interface_table_controls.html:11 msgid "Hide Virtual" msgstr "Приховати віртуальний" -#: netbox/templates/dcim/device/inc/interface_table_controls.html:12 +#: templates/dcim/device/inc/interface_table_controls.html:12 msgid "Hide Disconnected" msgstr "Приховати відключене" -#: netbox/templates/dcim/device/interfaces.html:27 +#: templates/dcim/device/interfaces.html:27 msgid "Add Interfaces" msgstr "Додати інтерфейси" -#: netbox/templates/dcim/device/inventory.html:10 -#: netbox/templates/dcim/inc/panels/inventory_items.html:10 +#: templates/dcim/device/inventory.html:10 +#: templates/dcim/inc/panels/inventory_items.html:10 msgid "Add Inventory Item" msgstr "Додати предмет до інвентарю" -#: netbox/templates/dcim/device/modulebays.html:10 +#: templates/dcim/device/modulebays.html:10 msgid "Add Module Bays" msgstr "Додати модульні відсіки" -#: netbox/templates/dcim/device/poweroutlets.html:24 +#: templates/dcim/device/poweroutlets.html:24 msgid "Add Power Outlets" msgstr "Додайте розетки" -#: netbox/templates/dcim/device/powerports.html:24 +#: templates/dcim/device/powerports.html:24 msgid "Add Power Port" msgstr "Додати порт живлення" -#: netbox/templates/dcim/device/rearports.html:24 +#: templates/dcim/device/rearports.html:24 msgid "Add Rear Ports" msgstr "Додати задні порти" -#: netbox/templates/dcim/device/render_config.html:5 -#: netbox/templates/virtualization/virtualmachine/render_config.html:5 +#: templates/dcim/device/render_config.html:5 +#: templates/virtualization/virtualmachine/render_config.html:5 msgid "Config" msgstr "конфігурація" -#: netbox/templates/dcim/device/render_config.html:35 -#: netbox/templates/virtualization/virtualmachine/render_config.html:35 +#: templates/dcim/device/render_config.html:35 +#: templates/virtualization/virtualmachine/render_config.html:35 msgid "Context Data" msgstr "Контекстні дані" -#: netbox/templates/dcim/device/render_config.html:53 -#: netbox/templates/virtualization/virtualmachine/render_config.html:53 +#: templates/dcim/device/render_config.html:53 +#: templates/virtualization/virtualmachine/render_config.html:53 msgid "Rendered Config" msgstr "Відтворена конфігурація" -#: netbox/templates/dcim/device/render_config.html:55 -#: netbox/templates/virtualization/virtualmachine/render_config.html:55 +#: templates/dcim/device/render_config.html:55 +#: templates/virtualization/virtualmachine/render_config.html:55 msgid "Download" msgstr "Завантажити" -#: netbox/templates/dcim/device/render_config.html:61 -#: netbox/templates/virtualization/virtualmachine/render_config.html:61 +#: templates/dcim/device/render_config.html:61 +#: templates/virtualization/virtualmachine/render_config.html:61 msgid "No configuration template found" msgstr "Не знайдено шаблону конфігурації" -#: netbox/templates/dcim/device_edit.html:44 +#: templates/dcim/device_edit.html:44 msgid "Parent Bay" msgstr "Батьківська бухта" -#: netbox/templates/dcim/device_edit.html:48 -#: netbox/utilities/templates/form_helpers/render_field.html:22 +#: templates/dcim/device_edit.html:48 +#: utilities/templates/form_helpers/render_field.html:22 msgid "Regenerate Slug" msgstr "Відновити слимака" -#: netbox/templates/dcim/device_edit.html:49 -#: netbox/templates/generic/bulk_remove.html:21 -#: netbox/utilities/templates/helpers/table_config_form.html:23 +#: templates/dcim/device_edit.html:49 templates/generic/bulk_remove.html:21 +#: utilities/templates/helpers/table_config_form.html:23 msgid "Remove" msgstr "Видалити" -#: netbox/templates/dcim/device_edit.html:110 +#: templates/dcim/device_edit.html:110 msgid "Local Config Context Data" msgstr "Контекстні дані локальної конфігурації" -#: netbox/templates/dcim/device_list.html:82 -#: netbox/templates/dcim/moduletype/component_templates.html:17 -#: netbox/templates/generic/bulk_rename.html:57 -#: netbox/templates/virtualization/virtualmachine/interfaces.html:11 -#: netbox/templates/virtualization/virtualmachine/virtual_disks.html:11 +#: templates/dcim/device_list.html:82 templates/generic/bulk_rename.html:57 +#: templates/virtualization/virtualmachine/interfaces.html:11 +#: templates/virtualization/virtualmachine/virtual_disks.html:11 msgid "Rename" msgstr "Перейменувати" -#: netbox/templates/dcim/devicebay.html:17 +#: templates/dcim/devicebay.html:17 msgid "Device Bay" msgstr "Резервуар для пристроїв" -#: netbox/templates/dcim/devicebay.html:43 +#: templates/dcim/devicebay.html:43 msgid "Installed Device" msgstr "Встановлений пристрій" -#: netbox/templates/dcim/devicebay_depopulate.html:6 +#: templates/dcim/devicebay_depopulate.html:6 #, python-format msgid "Remove %(device)s from %(device_bay)s?" msgstr "Видалити %(device)s з %(device_bay)s?" -#: netbox/templates/dcim/devicebay_depopulate.html:13 +#: templates/dcim/devicebay_depopulate.html:13 #, python-format msgid "" "Are you sure you want to remove %(device)s from " @@ -12645,449 +11954,430 @@ msgstr "" "Ви впевнені, що хочете видалити %(device)s з " "%(device_bay)s?" -#: netbox/templates/dcim/devicebay_populate.html:13 +#: templates/dcim/devicebay_populate.html:13 msgid "Populate" msgstr "Заселити" -#: netbox/templates/dcim/devicebay_populate.html:22 +#: templates/dcim/devicebay_populate.html:22 msgid "Bay" msgstr "затока" -#: netbox/templates/dcim/devicerole.html:14 -#: netbox/templates/dcim/platform.html:17 +#: templates/dcim/devicerole.html:14 templates/dcim/platform.html:17 msgid "Add Device" msgstr "Додати пристрій" -#: netbox/templates/dcim/devicerole.html:40 +#: templates/dcim/devicerole.html:40 msgid "VM Role" msgstr "Роль віртуальної машини" -#: netbox/templates/dcim/devicetype.html:18 -#: netbox/templates/dcim/moduletype.html:18 +#: templates/dcim/devicetype.html:18 templates/dcim/moduletype.html:29 msgid "Model Name" msgstr "Назва моделі" -#: netbox/templates/dcim/devicetype.html:25 -#: netbox/templates/dcim/moduletype.html:22 +#: templates/dcim/devicetype.html:25 templates/dcim/moduletype.html:33 msgid "Part Number" msgstr "Номер частини" -#: netbox/templates/dcim/devicetype.html:41 +#: templates/dcim/devicetype.html:41 msgid "Exclude From Utilization" msgstr "Виключити з використання" -#: netbox/templates/dcim/devicetype.html:59 +#: templates/dcim/devicetype.html:59 msgid "Parent/Child" msgstr "Батька/Дитина" -#: netbox/templates/dcim/devicetype.html:71 +#: templates/dcim/devicetype.html:71 msgid "Front Image" msgstr "Зображення спереду" -#: netbox/templates/dcim/devicetype.html:83 +#: templates/dcim/devicetype.html:83 msgid "Rear Image" msgstr "Ззаднє зображення" -#: netbox/templates/dcim/frontport.html:54 +#: templates/dcim/frontport.html:54 msgid "Rear Port Position" msgstr "Положення заднього порту" -#: netbox/templates/dcim/frontport.html:72 -#: netbox/templates/dcim/interface.html:144 -#: netbox/templates/dcim/poweroutlet.html:63 -#: netbox/templates/dcim/powerport.html:63 -#: netbox/templates/dcim/rearport.html:68 +#: templates/dcim/frontport.html:72 templates/dcim/interface.html:144 +#: templates/dcim/poweroutlet.html:63 templates/dcim/powerport.html:63 +#: templates/dcim/rearport.html:68 msgid "Marked as Connected" msgstr "Позначено як підключений" -#: netbox/templates/dcim/frontport.html:86 -#: netbox/templates/dcim/rearport.html:82 +#: templates/dcim/frontport.html:86 templates/dcim/rearport.html:82 msgid "Connection Status" msgstr "Статус підключення" -#: netbox/templates/dcim/htmx/cable_edit.html:10 +#: templates/dcim/htmx/cable_edit.html:10 msgid "A Side" msgstr "Сторона А" -#: netbox/templates/dcim/htmx/cable_edit.html:30 +#: templates/dcim/htmx/cable_edit.html:30 msgid "B Side" msgstr "Сторона Б" -#: netbox/templates/dcim/inc/cable_termination.html:65 +#: templates/dcim/inc/cable_termination.html:65 msgid "No termination" msgstr "Без припинення" -#: netbox/templates/dcim/inc/cable_toggle_buttons.html:3 +#: templates/dcim/inc/cable_toggle_buttons.html:3 msgid "Mark Planned" msgstr "Марк Планований" -#: netbox/templates/dcim/inc/cable_toggle_buttons.html:6 +#: templates/dcim/inc/cable_toggle_buttons.html:6 msgid "Mark Installed" msgstr "Позначка встановлена" -#: netbox/templates/dcim/inc/connection_endpoints.html:13 +#: templates/dcim/inc/connection_endpoints.html:13 msgid "Path Status" msgstr "Статус шляху" -#: netbox/templates/dcim/inc/connection_endpoints.html:18 +#: templates/dcim/inc/connection_endpoints.html:18 msgid "Not Reachable" msgstr "Недосяжний" -#: netbox/templates/dcim/inc/connection_endpoints.html:23 +#: templates/dcim/inc/connection_endpoints.html:23 msgid "Path Endpoints" msgstr "Кінцеві точки контуру" -#: netbox/templates/dcim/inc/endpoint_connection.html:8 -#: netbox/templates/dcim/powerfeed.html:120 -#: netbox/templates/dcim/rearport.html:94 +#: templates/dcim/inc/endpoint_connection.html:8 +#: templates/dcim/powerfeed.html:120 templates/dcim/rearport.html:94 msgid "Not connected" msgstr "Не підключено" -#: netbox/templates/dcim/inc/interface_vlans_table.html:6 +#: templates/dcim/inc/interface_vlans_table.html:6 msgid "Untagged" msgstr "Без позначки" -#: netbox/templates/dcim/inc/interface_vlans_table.html:37 +#: templates/dcim/inc/interface_vlans_table.html:37 msgid "No VLANs Assigned" msgstr "Не присвоєно VLAN" -#: netbox/templates/dcim/inc/interface_vlans_table.html:44 -#: netbox/templates/ipam/prefix_list.html:16 -#: netbox/templates/ipam/prefix_list.html:33 +#: templates/dcim/inc/interface_vlans_table.html:44 +#: templates/ipam/prefix_list.html:16 templates/ipam/prefix_list.html:33 msgid "Clear" msgstr "Прозорий" -#: netbox/templates/dcim/inc/interface_vlans_table.html:47 +#: templates/dcim/inc/interface_vlans_table.html:47 msgid "Clear All" msgstr "Очистити все" -#: netbox/templates/dcim/inc/panels/racktype_dimensions.html:38 +#: templates/dcim/inc/panels/racktype_dimensions.html:38 msgid "Mounting Depth" msgstr "Глибина монтажу" -#: netbox/templates/dcim/inc/panels/racktype_numbering.html:6 +#: templates/dcim/inc/panels/racktype_numbering.html:6 msgid "Starting Unit" msgstr "Пусковий блок" -#: netbox/templates/dcim/inc/panels/racktype_numbering.html:10 +#: templates/dcim/inc/panels/racktype_numbering.html:10 msgid "Descending Units" msgstr "Юніти у низхідному порядку" -#: netbox/templates/dcim/inc/rack_elevation.html:3 +#: templates/dcim/inc/rack_elevation.html:3 msgid "Rack elevation" msgstr "Висота стійки" -#: netbox/templates/dcim/interface.html:17 +#: templates/dcim/interface.html:17 msgid "Add Child Interface" msgstr "Додати дочірній інтерфейс" -#: netbox/templates/dcim/interface.html:50 +#: templates/dcim/interface.html:50 msgid "Speed/Duplex" msgstr "Швидкість/Дуплекс" -#: netbox/templates/dcim/interface.html:73 +#: templates/dcim/interface.html:73 msgid "PoE Mode" msgstr "Режим PoE" -#: netbox/templates/dcim/interface.html:77 +#: templates/dcim/interface.html:77 msgid "PoE Type" msgstr "Тип PoE" -#: netbox/templates/dcim/interface.html:81 -#: netbox/templates/virtualization/vminterface.html:63 +#: templates/dcim/interface.html:81 +#: templates/virtualization/vminterface.html:63 msgid "802.1Q Mode" msgstr "Режим 802.1Q" -#: netbox/templates/dcim/interface.html:125 -#: netbox/templates/virtualization/vminterface.html:59 +#: templates/dcim/interface.html:125 +#: templates/virtualization/vminterface.html:59 msgid "MAC Address" msgstr "MAC-адреса" -#: netbox/templates/dcim/interface.html:151 +#: templates/dcim/interface.html:151 msgid "Wireless Link" msgstr "Бездротове посилання" -#: netbox/templates/dcim/interface.html:218 netbox/vpn/choices.py:55 +#: templates/dcim/interface.html:218 vpn/choices.py:55 msgid "Peer" msgstr "Мережевий сусід" -#: netbox/templates/dcim/interface.html:230 -#: netbox/templates/wireless/inc/wirelesslink_interface.html:26 +#: templates/dcim/interface.html:230 +#: templates/wireless/inc/wirelesslink_interface.html:26 msgid "Channel" msgstr "канал" -#: netbox/templates/dcim/interface.html:239 -#: netbox/templates/wireless/inc/wirelesslink_interface.html:32 +#: templates/dcim/interface.html:239 +#: templates/wireless/inc/wirelesslink_interface.html:32 msgid "Channel Frequency" msgstr "Частота каналу" -#: netbox/templates/dcim/interface.html:242 -#: netbox/templates/dcim/interface.html:250 -#: netbox/templates/dcim/interface.html:261 -#: netbox/templates/dcim/interface.html:269 +#: templates/dcim/interface.html:242 templates/dcim/interface.html:250 +#: templates/dcim/interface.html:261 templates/dcim/interface.html:269 msgid "MHz" msgstr "МГц" -#: netbox/templates/dcim/interface.html:258 -#: netbox/templates/wireless/inc/wirelesslink_interface.html:42 +#: templates/dcim/interface.html:258 +#: templates/wireless/inc/wirelesslink_interface.html:42 msgid "Channel Width" msgstr "Ширина каналу" -#: netbox/templates/dcim/interface.html:285 -#: netbox/templates/wireless/wirelesslan.html:14 -#: netbox/templates/wireless/wirelesslink.html:21 -#: netbox/wireless/forms/bulk_edit.py:60 -#: netbox/wireless/forms/bulk_edit.py:102 -#: netbox/wireless/forms/filtersets.py:40 -#: netbox/wireless/forms/filtersets.py:80 netbox/wireless/models.py:82 -#: netbox/wireless/models.py:156 netbox/wireless/tables/wirelesslan.py:44 +#: templates/dcim/interface.html:285 templates/wireless/wirelesslan.html:14 +#: templates/wireless/wirelesslink.html:21 wireless/forms/bulk_edit.py:60 +#: wireless/forms/bulk_edit.py:102 wireless/forms/filtersets.py:40 +#: wireless/forms/filtersets.py:80 wireless/models.py:82 +#: wireless/models.py:156 wireless/tables/wirelesslan.py:44 msgid "SSID" msgstr "SSID" -#: netbox/templates/dcim/interface.html:305 +#: templates/dcim/interface.html:305 msgid "LAG Members" msgstr "Члени LAG" -#: netbox/templates/dcim/interface.html:323 +#: templates/dcim/interface.html:323 msgid "No member interfaces" msgstr "Немає інтерфейсів учасників" -#: netbox/templates/dcim/interface.html:343 -#: netbox/templates/ipam/fhrpgroup.html:73 -#: netbox/templates/ipam/iprange/ip_addresses.html:7 -#: netbox/templates/ipam/prefix/ip_addresses.html:7 -#: netbox/templates/virtualization/vminterface.html:89 +#: templates/dcim/interface.html:343 templates/ipam/fhrpgroup.html:73 +#: templates/ipam/iprange/ip_addresses.html:7 +#: templates/ipam/prefix/ip_addresses.html:7 +#: templates/virtualization/vminterface.html:89 msgid "Add IP Address" msgstr "Додати IP-адресу" -#: netbox/templates/dcim/inventoryitem.html:24 +#: templates/dcim/inventoryitem.html:24 msgid "Parent Item" msgstr "Батьківський елемент" -#: netbox/templates/dcim/inventoryitem.html:48 +#: templates/dcim/inventoryitem.html:48 msgid "Part ID" msgstr "Ідентифікатор частини" -#: netbox/templates/dcim/location.html:17 +#: templates/dcim/location.html:17 msgid "Add Child Location" msgstr "Додати підпорядковане місцезнаходження" -#: netbox/templates/dcim/location.html:77 +#: templates/dcim/location.html:77 msgid "Child Locations" msgstr "Підпорядковані локації" -#: netbox/templates/dcim/location.html:81 netbox/templates/dcim/site.html:131 +#: templates/dcim/location.html:81 templates/dcim/site.html:131 msgid "Add a Location" msgstr "Додати місцезнаходження" -#: netbox/templates/dcim/location.html:94 netbox/templates/dcim/site.html:144 +#: templates/dcim/location.html:94 templates/dcim/site.html:144 msgid "Add a Device" msgstr "Додавання пристрою" -#: netbox/templates/dcim/manufacturer.html:16 +#: templates/dcim/manufacturer.html:16 msgid "Add Device Type" msgstr "Додати тип пристрою" -#: netbox/templates/dcim/manufacturer.html:21 +#: templates/dcim/manufacturer.html:21 msgid "Add Module Type" msgstr "Додати тип модуля" -#: netbox/templates/dcim/powerfeed.html:53 +#: templates/dcim/powerfeed.html:53 msgid "Connected Device" msgstr "Підключений пристрій" -#: netbox/templates/dcim/powerfeed.html:63 +#: templates/dcim/powerfeed.html:63 msgid "Utilization (Allocated" msgstr "Утилізація (виділено" -#: netbox/templates/dcim/powerfeed.html:80 +#: templates/dcim/powerfeed.html:80 msgid "Electrical Characteristics" msgstr "Електричні характеристики" -#: netbox/templates/dcim/powerfeed.html:88 +#: templates/dcim/powerfeed.html:88 msgctxt "Abbreviation for volts" msgid "V" msgstr "V" -#: netbox/templates/dcim/powerfeed.html:92 +#: templates/dcim/powerfeed.html:92 msgctxt "Abbreviation for amperes" msgid "A" msgstr "А" -#: netbox/templates/dcim/poweroutlet.html:48 +#: templates/dcim/poweroutlet.html:48 msgid "Feed Leg" msgstr "Фідер живлення" -#: netbox/templates/dcim/powerpanel.html:72 +#: templates/dcim/powerpanel.html:72 msgid "Add Power Feeds" msgstr "Додати подачі живлення" -#: netbox/templates/dcim/powerport.html:44 +#: templates/dcim/powerport.html:44 msgid "Maximum Draw" msgstr "Максимальна потужність" -#: netbox/templates/dcim/powerport.html:48 +#: templates/dcim/powerport.html:48 msgid "Allocated Draw" msgstr "Виділена потужність" -#: netbox/templates/dcim/rack.html:69 +#: templates/dcim/rack.html:69 msgid "Space Utilization" msgstr "Використання простору" -#: netbox/templates/dcim/rack.html:84 netbox/templates/dcim/racktype.html:44 +#: templates/dcim/rack.html:84 templates/dcim/racktype.html:44 msgid "Rack Weight" msgstr "Вага стійки" -#: netbox/templates/dcim/rack.html:94 netbox/templates/dcim/racktype.html:54 +#: templates/dcim/rack.html:94 templates/dcim/racktype.html:54 msgid "Maximum Weight" msgstr "Максимальна вага" -#: netbox/templates/dcim/rack.html:104 +#: templates/dcim/rack.html:104 msgid "Total Weight" msgstr "Загальна вага" -#: netbox/templates/dcim/rack.html:125 -#: netbox/templates/dcim/rack_elevation_list.html:15 +#: templates/dcim/rack.html:125 templates/dcim/rack_elevation_list.html:15 msgid "Images and Labels" msgstr "Зображення та етикетки" -#: netbox/templates/dcim/rack.html:126 -#: netbox/templates/dcim/rack_elevation_list.html:16 +#: templates/dcim/rack.html:126 templates/dcim/rack_elevation_list.html:16 msgid "Images only" msgstr "Лише зображення" -#: netbox/templates/dcim/rack.html:127 -#: netbox/templates/dcim/rack_elevation_list.html:17 +#: templates/dcim/rack.html:127 templates/dcim/rack_elevation_list.html:17 msgid "Labels only" msgstr "Тільки етикетки" -#: netbox/templates/dcim/rack/reservations.html:8 +#: templates/dcim/rack/reservations.html:8 msgid "Add reservation" msgstr "Додати бронювання" -#: netbox/templates/dcim/rack_elevation_list.html:12 +#: templates/dcim/rack_elevation_list.html:12 msgid "View List" msgstr "Переглянути список" -#: netbox/templates/dcim/rack_elevation_list.html:14 +#: templates/dcim/rack_elevation_list.html:14 msgid "Select rack view" msgstr "Виберіть вид на стійку" -#: netbox/templates/dcim/rack_elevation_list.html:25 +#: templates/dcim/rack_elevation_list.html:25 msgid "Sort By" msgstr "Сортувати за" -#: netbox/templates/dcim/rack_elevation_list.html:74 +#: templates/dcim/rack_elevation_list.html:74 msgid "No Racks Found" msgstr "Стійки не знайдено" -#: netbox/templates/dcim/rack_list.html:8 +#: templates/dcim/rack_list.html:8 msgid "View Elevations" msgstr "Переглянути висоти" -#: netbox/templates/dcim/rackreservation.html:42 +#: templates/dcim/rackreservation.html:42 msgid "Reservation Details" msgstr "Деталі бронювання" -#: netbox/templates/dcim/rackrole.html:10 +#: templates/dcim/rackrole.html:10 msgid "Add Rack" msgstr "Додати стійку" -#: netbox/templates/dcim/rearport.html:50 +#: templates/dcim/rearport.html:50 msgid "Positions" msgstr "Позиції" -#: netbox/templates/dcim/region.html:17 -#: netbox/templates/dcim/sitegroup.html:17 +#: templates/dcim/region.html:17 templates/dcim/sitegroup.html:17 msgid "Add Site" msgstr "Додати тех. майданчик" -#: netbox/templates/dcim/region.html:55 +#: templates/dcim/region.html:55 msgid "Child Regions" msgstr "Підпорядковані регіони" -#: netbox/templates/dcim/region.html:59 +#: templates/dcim/region.html:59 msgid "Add Region" msgstr "Додати регіон" -#: netbox/templates/dcim/site.html:64 +#: templates/dcim/site.html:64 msgid "Time Zone" msgstr "Часовий пояс" -#: netbox/templates/dcim/site.html:67 +#: templates/dcim/site.html:67 msgid "UTC" msgstr "UTC" -#: netbox/templates/dcim/site.html:68 +#: templates/dcim/site.html:68 msgid "Site time" msgstr "Час роботи тех. майданчику" -#: netbox/templates/dcim/site.html:75 +#: templates/dcim/site.html:75 msgid "Physical Address" msgstr "Фізична адреса" -#: netbox/templates/dcim/site.html:90 +#: templates/dcim/site.html:90 msgid "Shipping Address" msgstr "Адреса доставки" -#: netbox/templates/dcim/sitegroup.html:55 -#: netbox/templates/tenancy/contactgroup.html:46 -#: netbox/templates/tenancy/tenantgroup.html:55 -#: netbox/templates/wireless/wirelesslangroup.html:55 +#: templates/dcim/sitegroup.html:55 templates/tenancy/contactgroup.html:46 +#: templates/tenancy/tenantgroup.html:55 +#: templates/wireless/wirelesslangroup.html:55 msgid "Child Groups" msgstr "Підпорядковані групи" -#: netbox/templates/dcim/sitegroup.html:59 +#: templates/dcim/sitegroup.html:59 msgid "Add Site Group" msgstr "Додати групу тех. майданчиків" -#: netbox/templates/dcim/trace/attachment.html:5 -#: netbox/templates/extras/exporttemplate.html:31 +#: templates/dcim/trace/attachment.html:5 +#: templates/extras/exporttemplate.html:31 msgid "Attachment" msgstr "Вкладення" -#: netbox/templates/dcim/virtualchassis.html:57 +#: templates/dcim/virtualchassis.html:57 msgid "Add Member" msgstr "Додати учасника" -#: netbox/templates/dcim/virtualchassis_add.html:18 +#: templates/dcim/virtualchassis_add.html:18 msgid "Member Devices" msgstr "Пристрої членів" -#: netbox/templates/dcim/virtualchassis_add_member.html:10 +#: templates/dcim/virtualchassis_add_member.html:10 #, python-format msgid "Add New Member to Virtual Chassis %(virtual_chassis)s" msgstr "Додати нового учасника до віртуального шасі %(virtual_chassis)s" -#: netbox/templates/dcim/virtualchassis_add_member.html:19 +#: templates/dcim/virtualchassis_add_member.html:19 msgid "Add New Member" msgstr "Додати нового учасника" -#: netbox/templates/dcim/virtualchassis_add_member.html:27 -#: netbox/templates/generic/object_edit.html:78 -#: netbox/templates/users/objectpermission.html:31 -#: netbox/users/forms/filtersets.py:67 netbox/users/forms/model_forms.py:312 +#: templates/dcim/virtualchassis_add_member.html:27 +#: templates/generic/object_edit.html:78 +#: templates/users/objectpermission.html:31 users/forms/filtersets.py:67 +#: users/forms/model_forms.py:312 msgid "Actions" msgstr "Дії" -#: netbox/templates/dcim/virtualchassis_add_member.html:29 +#: templates/dcim/virtualchassis_add_member.html:29 msgid "Save & Add Another" msgstr "Зберегти та додати інший" -#: netbox/templates/dcim/virtualchassis_edit.html:7 +#: templates/dcim/virtualchassis_edit.html:7 #, python-format msgid "Editing Virtual Chassis %(name)s" msgstr "Редагування віртуального шасі %(name)s" -#: netbox/templates/dcim/virtualchassis_edit.html:53 +#: templates/dcim/virtualchassis_edit.html:53 msgid "Rack/Unit" msgstr "Стійка/юніт" -#: netbox/templates/dcim/virtualchassis_remove_member.html:5 +#: templates/dcim/virtualchassis_remove_member.html:5 msgid "Remove Virtual Chassis Member" msgstr "Вилучити віртуальний член шасі" -#: netbox/templates/dcim/virtualchassis_remove_member.html:9 +#: templates/dcim/virtualchassis_remove_member.html:9 #, python-format msgid "" "Are you sure you want to remove %(device)s from virtual " @@ -13096,12 +12386,11 @@ msgstr "" "Ви впевнені, що хочете видалити %(device)s з віртуального " "шасі %(name)s?" -#: netbox/templates/dcim/virtualdevicecontext.html:26 -#: netbox/templates/vpn/l2vpn.html:18 +#: templates/dcim/virtualdevicecontext.html:26 templates/vpn/l2vpn.html:18 msgid "Identifier" msgstr "Ідентифікатор" -#: netbox/templates/exceptions/import_error.html:6 +#: templates/exceptions/import_error.html:6 msgid "" "A module import error occurred during this request. Common causes include " "the following:" @@ -13109,11 +12398,11 @@ msgstr "" "Під час цього запиту сталася помилка імпорту модуля. До поширених причин " "можна віднести наступне:" -#: netbox/templates/exceptions/import_error.html:10 +#: templates/exceptions/import_error.html:10 msgid "Missing required packages" msgstr "Відсутні необхідні пакети" -#: netbox/templates/exceptions/import_error.html:11 +#: templates/exceptions/import_error.html:11 msgid "" "This installation of NetBox might be missing one or more required Python " "packages. These packages are listed in requirements.txt and " @@ -13129,11 +12418,11 @@ msgstr "" "запустіть заморожування піп з консолі і порівняйте вихід зі " "списком необхідних пакетів." -#: netbox/templates/exceptions/import_error.html:20 +#: templates/exceptions/import_error.html:20 msgid "WSGI service not restarted after upgrade" msgstr "Сервіс WSGI не перезапущений після оновлення" -#: netbox/templates/exceptions/import_error.html:21 +#: templates/exceptions/import_error.html:21 msgid "" "If this installation has recently been upgraded, check that the WSGI service" " (e.g. gunicorn or uWSGI) has been restarted. This ensures that the new code" @@ -13142,7 +12431,7 @@ msgstr "" "Якщо цю установку нещодавно оновили, перевірте, чи було перезапущено службу " "WSGI (наприклад, gunicorn або uWSGi). Це гарантує запуск нового коду." -#: netbox/templates/exceptions/permission_error.html:6 +#: templates/exceptions/permission_error.html:6 msgid "" "A file permission error was detected while processing this request. Common " "causes include the following:" @@ -13150,11 +12439,11 @@ msgstr "" "Під час обробки цього запиту була виявлена помилка дозволу на файл. До " "поширених причин можна віднести наступне:" -#: netbox/templates/exceptions/permission_error.html:10 +#: templates/exceptions/permission_error.html:10 msgid "Insufficient write permission to the media root" msgstr "Недостатній дозвіл на запис до кореня медіа" -#: netbox/templates/exceptions/permission_error.html:11 +#: templates/exceptions/permission_error.html:11 #, python-format msgid "" "The configured media root is %(media_root)s. Ensure that the " @@ -13165,7 +12454,7 @@ msgstr "" "користувач NetBox працює так, як має доступ до запису файлів у всі місця в " "межах цього шляху." -#: netbox/templates/exceptions/programming_error.html:6 +#: templates/exceptions/programming_error.html:6 msgid "" "A database programming error was detected while processing this request. " "Common causes include the following:" @@ -13173,11 +12462,11 @@ msgstr "" "Під час обробки цього запиту була виявлена помилка програмування бази даних." " До поширених причин можна віднести наступне:" -#: netbox/templates/exceptions/programming_error.html:10 +#: templates/exceptions/programming_error.html:10 msgid "Database migrations missing" msgstr "Відсутні міграції баз даних" -#: netbox/templates/exceptions/programming_error.html:11 +#: templates/exceptions/programming_error.html:11 msgid "" "When upgrading to a new NetBox release, the upgrade script must be run to " "apply any new database migrations. You can run migrations manually by " @@ -13188,11 +12477,11 @@ msgstr "" "запустити міграцію вручну, виконавши міграція python3 manage.py" " з командного рядка." -#: netbox/templates/exceptions/programming_error.html:18 +#: templates/exceptions/programming_error.html:18 msgid "Unsupported PostgreSQL version" msgstr "Непідтримувана версія PostgreSQL" -#: netbox/templates/exceptions/programming_error.html:19 +#: templates/exceptions/programming_error.html:19 msgid "" "Ensure that PostgreSQL version 12 or later is in use. You can check this by " "connecting to the database using NetBox's credentials and issuing a query " @@ -13202,102 +12491,99 @@ msgstr "" "Перевірити це можна, підключившись до бази даних за допомогою облікових " "даних NetBox і оформивши запит на SELECT VERSION()." -#: netbox/templates/extras/configcontext.html:45 -#: netbox/templates/extras/configtemplate.html:37 -#: netbox/templates/extras/exporttemplate.html:51 +#: templates/extras/configcontext.html:45 +#: templates/extras/configtemplate.html:37 +#: templates/extras/exporttemplate.html:51 msgid "The data file associated with this object has been deleted" msgstr "Файл даних, пов'язаний з цим об'єктом, видалено" -#: netbox/templates/extras/configcontext.html:54 -#: netbox/templates/extras/configtemplate.html:46 -#: netbox/templates/extras/exporttemplate.html:60 +#: templates/extras/configcontext.html:54 +#: templates/extras/configtemplate.html:46 +#: templates/extras/exporttemplate.html:60 msgid "Data Synced" msgstr "Синхронізовані дані" -#: netbox/templates/extras/configcontext_list.html:7 -#: netbox/templates/extras/configtemplate_list.html:7 -#: netbox/templates/extras/exporttemplate_list.html:7 +#: templates/extras/configcontext_list.html:7 +#: templates/extras/configtemplate_list.html:7 +#: templates/extras/exporttemplate_list.html:7 msgid "Sync Data" msgstr "Синхронізація даних" -#: netbox/templates/extras/configtemplate.html:56 +#: templates/extras/configtemplate.html:56 msgid "Environment Parameters" msgstr "Параметри середовища" -#: netbox/templates/extras/configtemplate.html:67 -#: netbox/templates/extras/exporttemplate.html:79 +#: templates/extras/configtemplate.html:67 +#: templates/extras/exporttemplate.html:79 msgid "Template" msgstr "Шаблон" -#: netbox/templates/extras/customfield.html:30 -#: netbox/templates/extras/customlink.html:21 +#: templates/extras/customfield.html:30 templates/extras/customlink.html:21 msgid "Group Name" msgstr "Назва групи" -#: netbox/templates/extras/customfield.html:42 +#: templates/extras/customfield.html:42 msgid "Must be Unique" msgstr "Повинен бути унікальним" -#: netbox/templates/extras/customfield.html:46 +#: templates/extras/customfield.html:46 msgid "Cloneable" msgstr "Клонований" -#: netbox/templates/extras/customfield.html:56 +#: templates/extras/customfield.html:56 msgid "Default Value" msgstr "Значення за замовчуванням" -#: netbox/templates/extras/customfield.html:73 +#: templates/extras/customfield.html:73 msgid "Search Weight" msgstr "Вага пошуку" -#: netbox/templates/extras/customfield.html:83 +#: templates/extras/customfield.html:83 msgid "Filter Logic" msgstr "Логіка фільтра" -#: netbox/templates/extras/customfield.html:87 +#: templates/extras/customfield.html:87 msgid "Display Weight" msgstr "Вага дисплея" -#: netbox/templates/extras/customfield.html:91 +#: templates/extras/customfield.html:91 msgid "UI Visible" msgstr "Видимий інтерфейс користувача" -#: netbox/templates/extras/customfield.html:95 +#: templates/extras/customfield.html:95 msgid "UI Editable" msgstr "Редагований інтерфейс користувача" -#: netbox/templates/extras/customfield.html:115 +#: templates/extras/customfield.html:115 msgid "Validation Rules" msgstr "Правила перевірки" -#: netbox/templates/extras/customfield.html:126 +#: templates/extras/customfield.html:126 msgid "Regular Expression" msgstr "Регулярний вираз" -#: netbox/templates/extras/customlink.html:29 +#: templates/extras/customlink.html:29 msgid "Button Class" msgstr "Клас кнопок" -#: netbox/templates/extras/customlink.html:39 -#: netbox/templates/extras/exporttemplate.html:66 -#: netbox/templates/extras/savedfilter.html:39 +#: templates/extras/customlink.html:39 templates/extras/exporttemplate.html:66 +#: templates/extras/savedfilter.html:39 msgid "Assigned Models" msgstr "Призначені моделі" -#: netbox/templates/extras/customlink.html:52 +#: templates/extras/customlink.html:52 msgid "Link Text" msgstr "Текст посилання" -#: netbox/templates/extras/customlink.html:58 +#: templates/extras/customlink.html:58 msgid "Link URL" msgstr "URL-адреса посилання" -#: netbox/templates/extras/dashboard/reset.html:4 -#: netbox/templates/home.html:66 +#: templates/extras/dashboard/reset.html:4 templates/home.html:66 msgid "Reset Dashboard" msgstr "Скинути інформаційну панель" -#: netbox/templates/extras/dashboard/reset.html:8 +#: templates/extras/dashboard/reset.html:8 msgid "" "This will remove all configured widgets and restore the " "default dashboard configuration." @@ -13305,7 +12591,7 @@ msgstr "" "Це видалить усі налаштовані віджети та відновити " "конфігурацію інформаційної панелі за замовчуванням." -#: netbox/templates/extras/dashboard/reset.html:13 +#: templates/extras/dashboard/reset.html:13 msgid "" "This change affects only your dashboard, and will not impact other " "users." @@ -13313,156 +12599,154 @@ msgstr "" "Ця зміна зачіпає тільки вашу особисту інформаційну панель, і не " "вплине на інших користувачів." -#: netbox/templates/extras/dashboard/widget.html:21 +#: templates/extras/dashboard/widget.html:21 msgid "widget configuration" msgstr "конфігурація віджетів" -#: netbox/templates/extras/dashboard/widget.html:36 +#: templates/extras/dashboard/widget.html:36 msgid "Close widget" msgstr "Закрити віджет" -#: netbox/templates/extras/dashboard/widget_add.html:7 +#: templates/extras/dashboard/widget_add.html:7 msgid "Add a Widget" msgstr "Додати віджет" -#: netbox/templates/extras/dashboard/widgets/bookmarks.html:14 +#: templates/extras/dashboard/widgets/bookmarks.html:14 msgid "No bookmarks have been added yet." msgstr "Жодних закладок ще не додано." -#: netbox/templates/extras/dashboard/widgets/objectcounts.html:10 +#: templates/extras/dashboard/widgets/objectcounts.html:10 msgid "No permission" msgstr "Немає дозволу" -#: netbox/templates/extras/dashboard/widgets/objectlist.html:6 +#: templates/extras/dashboard/widgets/objectlist.html:6 msgid "No permission to view this content" msgstr "Немає дозволу на перегляд цього вмісту" -#: netbox/templates/extras/dashboard/widgets/objectlist.html:10 +#: templates/extras/dashboard/widgets/objectlist.html:10 msgid "Unable to load content. Invalid view name" msgstr "Не вдається завантажити вміст. Невірна назва перегляду" -#: netbox/templates/extras/dashboard/widgets/rssfeed.html:12 +#: templates/extras/dashboard/widgets/rssfeed.html:12 msgid "No content found" msgstr "Вмісту не знайдено" -#: netbox/templates/extras/dashboard/widgets/rssfeed.html:18 +#: templates/extras/dashboard/widgets/rssfeed.html:18 msgid "There was a problem fetching the RSS feed" msgstr "Виникла проблема з отриманням RSS-каналу" -#: netbox/templates/extras/dashboard/widgets/rssfeed.html:21 +#: templates/extras/dashboard/widgets/rssfeed.html:21 msgid "HTTP" msgstr "HTTP" -#: netbox/templates/extras/eventrule.html:61 +#: templates/extras/eventrule.html:61 msgid "Conditions" msgstr "Умови" -#: netbox/templates/extras/exporttemplate.html:23 +#: templates/extras/exporttemplate.html:23 msgid "MIME Type" msgstr "Тип MIME" -#: netbox/templates/extras/exporttemplate.html:27 +#: templates/extras/exporttemplate.html:27 msgid "File Extension" msgstr "Розширення файлу" -#: netbox/templates/extras/htmx/script_result.html:10 +#: templates/extras/htmx/script_result.html:10 msgid "Scheduled for" msgstr "Заплановано на" -#: netbox/templates/extras/htmx/script_result.html:15 +#: templates/extras/htmx/script_result.html:15 msgid "Duration" msgstr "Тривалість" -#: netbox/templates/extras/htmx/script_result.html:23 +#: templates/extras/htmx/script_result.html:23 msgid "Test Summary" msgstr "Підсумок тесту" -#: netbox/templates/extras/htmx/script_result.html:43 +#: templates/extras/htmx/script_result.html:43 msgid "Log" msgstr "Журнал" -#: netbox/templates/extras/htmx/script_result.html:56 +#: templates/extras/htmx/script_result.html:56 msgid "Output" msgstr "вихід" -#: netbox/templates/extras/inc/result_pending.html:4 +#: templates/extras/inc/result_pending.html:4 msgid "Loading" msgstr "Завантаження" -#: netbox/templates/extras/inc/result_pending.html:6 +#: templates/extras/inc/result_pending.html:6 msgid "Results pending" msgstr "Результати очікуються" -#: netbox/templates/extras/journalentry.html:15 +#: templates/extras/journalentry.html:15 msgid "Journal Entry" msgstr "Запис журналу" -#: netbox/templates/extras/notificationgroup.html:11 +#: templates/extras/notificationgroup.html:11 msgid "Notification Group" msgstr "Група повідомлень" -#: netbox/templates/extras/notificationgroup.html:36 -#: netbox/templates/extras/notificationgroup.html:46 -#: netbox/utilities/templates/widgets/clearable_file_input.html:12 +#: templates/extras/notificationgroup.html:36 +#: templates/extras/notificationgroup.html:46 +#: utilities/templates/widgets/clearable_file_input.html:12 msgid "None assigned" msgstr "Не призначено" -#: netbox/templates/extras/object_configcontext.html:19 +#: templates/extras/object_configcontext.html:19 msgid "The local config context overwrites all source contexts" msgstr "Локальний контекст конфігурації перезаписує всі вихідні контексти" -#: netbox/templates/extras/object_configcontext.html:25 +#: templates/extras/object_configcontext.html:25 msgid "Source Contexts" msgstr "Джерело контекстів" -#: netbox/templates/extras/object_journal.html:17 +#: templates/extras/object_journal.html:17 msgid "New Journal Entry" msgstr "Новий запис журналу" -#: netbox/templates/extras/report/base.html:30 +#: templates/extras/report/base.html:30 msgid "Report" msgstr "Звіт" -#: netbox/templates/extras/script.html:14 +#: templates/extras/script.html:14 msgid "You do not have permission to run scripts" msgstr "У вас немає дозволу на запуск скриптів" -#: netbox/templates/extras/script.html:41 -#: netbox/templates/extras/script.html:45 -#: netbox/templates/extras/script_list.html:86 +#: templates/extras/script.html:41 templates/extras/script.html:45 +#: templates/extras/script_list.html:86 msgid "Run Script" msgstr "Запустити скрипт" -#: netbox/templates/extras/script.html:51 -#: netbox/templates/extras/script/source.html:10 +#: templates/extras/script.html:51 templates/extras/script/source.html:10 msgid "Error loading script" msgstr "Помилка завантаження сценарію" -#: netbox/templates/extras/script/jobs.html:16 +#: templates/extras/script/jobs.html:16 msgid "Script no longer exists in the source file." msgstr "Скрипт більше не існує у вихідному файлі." -#: netbox/templates/extras/script_list.html:46 +#: templates/extras/script_list.html:46 msgid "Last Run" msgstr "Останній запуск" -#: netbox/templates/extras/script_list.html:61 +#: templates/extras/script_list.html:61 msgid "Script is no longer present in the source file" msgstr "Скрипт більше не присутній у вихідному файлі" -#: netbox/templates/extras/script_list.html:74 +#: templates/extras/script_list.html:74 msgid "Never" msgstr "Ніколи" -#: netbox/templates/extras/script_list.html:84 +#: templates/extras/script_list.html:84 msgid "Run Again" msgstr "Запустіть знову" -#: netbox/templates/extras/script_list.html:138 +#: templates/extras/script_list.html:138 msgid "No Scripts Found" msgstr "Скриптів не знайдено" -#: netbox/templates/extras/script_list.html:141 +#: templates/extras/script_list.html:141 #, python-format msgid "" "Get started by creating a script from " @@ -13471,83 +12755,81 @@ msgstr "" "Почніть з створення сценарію з " "завантаженого файлу або джерела даних." -#: netbox/templates/extras/script_result.html:35 -#: netbox/templates/generic/object_list.html:50 -#: netbox/templates/search.html:13 +#: templates/extras/script_result.html:35 +#: templates/generic/object_list.html:50 templates/search.html:13 msgid "Results" msgstr "Результати" -#: netbox/templates/extras/script_result.html:46 +#: templates/extras/script_result.html:46 msgid "Log threshold" msgstr "Поріг журналу" -#: netbox/templates/extras/script_result.html:56 +#: templates/extras/script_result.html:56 msgid "All" msgstr "Усе" -#: netbox/templates/extras/tag.html:32 +#: templates/extras/tag.html:32 msgid "Tagged Items" msgstr "Позначені предмети" -#: netbox/templates/extras/tag.html:43 +#: templates/extras/tag.html:43 msgid "Allowed Object Types" msgstr "Дозволені типи об'єктів" -#: netbox/templates/extras/tag.html:51 +#: templates/extras/tag.html:51 msgid "Any" msgstr "Будь-який" -#: netbox/templates/extras/tag.html:57 +#: templates/extras/tag.html:57 msgid "Tagged Item Types" msgstr "Позначені типи предметів" -#: netbox/templates/extras/tag.html:81 +#: templates/extras/tag.html:81 msgid "Tagged Objects" msgstr "Позначені об'єкти" -#: netbox/templates/extras/webhook.html:26 +#: templates/extras/webhook.html:26 msgid "HTTP Method" msgstr "Метод HTTP" -#: netbox/templates/extras/webhook.html:34 +#: templates/extras/webhook.html:34 msgid "HTTP Content Type" msgstr "Тип вмісту HTTP" -#: netbox/templates/extras/webhook.html:47 +#: templates/extras/webhook.html:47 msgid "SSL Verification" msgstr "Перевірка SSL" -#: netbox/templates/extras/webhook.html:60 +#: templates/extras/webhook.html:60 msgid "Additional Headers" msgstr "Додаткові заголовки" -#: netbox/templates/extras/webhook.html:70 +#: templates/extras/webhook.html:70 msgid "Body Template" msgstr "Шаблон тіла" -#: netbox/templates/generic/bulk_add_component.html:29 +#: templates/generic/bulk_add_component.html:29 msgid "Bulk Creation" msgstr "Масове створення" -#: netbox/templates/generic/bulk_add_component.html:34 -#: netbox/templates/generic/bulk_delete.html:32 -#: netbox/templates/generic/bulk_edit.html:33 +#: templates/generic/bulk_add_component.html:34 +#: templates/generic/bulk_delete.html:32 templates/generic/bulk_edit.html:33 msgid "Selected Objects" msgstr "Вибрані об'єкти" -#: netbox/templates/generic/bulk_add_component.html:58 +#: templates/generic/bulk_add_component.html:58 msgid "to Add" msgstr "Додати" -#: netbox/templates/generic/bulk_delete.html:27 +#: templates/generic/bulk_delete.html:27 msgid "Bulk Delete" msgstr "Масове видалення" -#: netbox/templates/generic/bulk_delete.html:49 +#: templates/generic/bulk_delete.html:49 msgid "Confirm Bulk Deletion" msgstr "Підтвердити масове видалення" -#: netbox/templates/generic/bulk_delete.html:50 +#: templates/generic/bulk_delete.html:50 #, python-format msgid "" "The following operation will delete %(count)s " @@ -13557,68 +12839,65 @@ msgstr "" "Наступна операція видалить %(count)s %(type_plural)s. Будь " "ласка, уважно перегляньте вибрані об'єкти та підтвердіть цю дію." -#: netbox/templates/generic/bulk_edit.html:21 -#: netbox/templates/generic/object_edit.html:22 +#: templates/generic/bulk_edit.html:21 templates/generic/object_edit.html:22 msgid "Editing" msgstr "Редагування" -#: netbox/templates/generic/bulk_edit.html:28 +#: templates/generic/bulk_edit.html:28 msgid "Bulk Edit" msgstr "Масове редагування" -#: netbox/templates/generic/bulk_edit.html:107 -#: netbox/templates/generic/bulk_rename.html:66 +#: templates/generic/bulk_edit.html:107 templates/generic/bulk_rename.html:66 msgid "Apply" msgstr "Застосувати" -#: netbox/templates/generic/bulk_import.html:19 +#: templates/generic/bulk_import.html:19 msgid "Bulk Import" msgstr "Масовий імпорт" -#: netbox/templates/generic/bulk_import.html:25 +#: templates/generic/bulk_import.html:25 msgid "Direct Import" msgstr "Прямий імпорт" -#: netbox/templates/generic/bulk_import.html:30 +#: templates/generic/bulk_import.html:30 msgid "Upload File" msgstr "Завантажити файл" -#: netbox/templates/generic/bulk_import.html:58 -#: netbox/templates/generic/bulk_import.html:80 -#: netbox/templates/generic/bulk_import.html:102 +#: templates/generic/bulk_import.html:58 templates/generic/bulk_import.html:80 +#: templates/generic/bulk_import.html:102 msgid "Submit" msgstr "Надіслати" -#: netbox/templates/generic/bulk_import.html:113 +#: templates/generic/bulk_import.html:113 msgid "Field Options" msgstr "Параметри поля" -#: netbox/templates/generic/bulk_import.html:119 +#: templates/generic/bulk_import.html:119 msgid "Accessor" msgstr "Аксесуар" -#: netbox/templates/generic/bulk_import.html:148 +#: templates/generic/bulk_import.html:148 msgid "choices" msgstr "вибір" -#: netbox/templates/generic/bulk_import.html:161 +#: templates/generic/bulk_import.html:161 msgid "Import Value" msgstr "Імпортна вартість" -#: netbox/templates/generic/bulk_import.html:181 +#: templates/generic/bulk_import.html:181 msgid "Format: YYYY-MM-DD" msgstr "Формат: РРРР-ММ-ДД" -#: netbox/templates/generic/bulk_import.html:183 +#: templates/generic/bulk_import.html:183 msgid "Specify true or false" msgstr "Вкажіть істинна або хибно" -#: netbox/templates/generic/bulk_import.html:195 +#: templates/generic/bulk_import.html:195 msgid "Required fields must be specified for all objects." msgstr "" "Обов'язкові поля повинен буде вказано для всіх об'єктів." -#: netbox/templates/generic/bulk_import.html:201 +#: templates/generic/bulk_import.html:201 #, python-format msgid "" "Related objects may be referenced by any unique attribute. For example, " @@ -13628,15 +12907,15 @@ msgstr "" "Наприклад, %(example)s ідентифікує VRF за його визначником " "маршруту." -#: netbox/templates/generic/bulk_remove.html:28 +#: templates/generic/bulk_remove.html:28 msgid "Bulk Remove" msgstr "Масове видалення" -#: netbox/templates/generic/bulk_remove.html:42 +#: templates/generic/bulk_remove.html:42 msgid "Confirm Bulk Removal" msgstr "Підтвердити масове видалення" -#: netbox/templates/generic/bulk_remove.html:43 +#: templates/generic/bulk_remove.html:43 #, python-format msgid "" "The following operation will remove %(count)s %(obj_type_plural)s from " @@ -13647,72 +12926,72 @@ msgstr "" "Будь ласка, уважно перегляньте %(obj_type_plural)s буде видалено і " "підтверджено нижче." -#: netbox/templates/generic/bulk_remove.html:64 +#: templates/generic/bulk_remove.html:64 #, python-format msgid "Remove these %(count)s %(obj_type_plural)s" msgstr "Видаліть ці %(count)s %(obj_type_plural)s" -#: netbox/templates/generic/bulk_rename.html:20 +#: templates/generic/bulk_rename.html:20 msgid "Renaming" msgstr "Перейменування" -#: netbox/templates/generic/bulk_rename.html:27 +#: templates/generic/bulk_rename.html:27 msgid "Bulk Rename" msgstr "Масове перейменування" -#: netbox/templates/generic/bulk_rename.html:39 +#: templates/generic/bulk_rename.html:39 msgid "Current Name" msgstr "Поточне ім'я" -#: netbox/templates/generic/bulk_rename.html:40 +#: templates/generic/bulk_rename.html:40 msgid "New Name" msgstr "Нове ім'я" -#: netbox/templates/generic/bulk_rename.html:64 -#: netbox/utilities/templates/widgets/markdown_input.html:11 +#: templates/generic/bulk_rename.html:64 +#: utilities/templates/widgets/markdown_input.html:11 msgid "Preview" msgstr "Попередній перегляд" -#: netbox/templates/generic/confirmation_form.html:16 +#: templates/generic/confirmation_form.html:16 msgid "Are you sure" msgstr "Ви впевнені" -#: netbox/templates/generic/confirmation_form.html:20 +#: templates/generic/confirmation_form.html:20 msgid "Confirm" msgstr "Підтвердити" -#: netbox/templates/generic/object_children.html:47 -#: netbox/utilities/templates/buttons/bulk_edit.html:4 +#: templates/generic/object_children.html:47 +#: utilities/templates/buttons/bulk_edit.html:4 msgid "Edit Selected" msgstr "Редагувати вибрані" -#: netbox/templates/generic/object_children.html:61 -#: netbox/utilities/templates/buttons/bulk_delete.html:4 +#: templates/generic/object_children.html:61 +#: utilities/templates/buttons/bulk_delete.html:4 msgid "Delete Selected" msgstr "Вилучити вибрані" -#: netbox/templates/generic/object_edit.html:24 +#: templates/generic/object_edit.html:24 #, python-format msgid "Add a new %(object_type)s" msgstr "Додати новий %(object_type)s" -#: netbox/templates/generic/object_edit.html:35 +#: templates/generic/object_edit.html:35 msgid "View model documentation" msgstr "Переглянути документацію моделі" -#: netbox/templates/generic/object_edit.html:36 +#: templates/generic/object_edit.html:36 msgid "Help" msgstr "Допоможіть" -#: netbox/templates/generic/object_edit.html:83 +#: templates/generic/object_edit.html:83 msgid "Create & Add Another" msgstr "Створити та додати інший" -#: netbox/templates/generic/object_list.html:57 +#: templates/generic/object_list.html:57 msgid "Filters" msgstr "Фільтри" -#: netbox/templates/generic/object_list.html:88 +#: templates/generic/object_list.html:88 #, python-format msgid "" "Select all %(count)s " @@ -13721,40 +13000,40 @@ msgstr "" "Вибрати усі %(count)s " "%(object_type_plural)s відповідний запит" -#: netbox/templates/home.html:15 +#: templates/home.html:15 msgid "New Release Available" msgstr "Новий випуск доступний" -#: netbox/templates/home.html:16 +#: templates/home.html:16 msgid "is available" msgstr "є" -#: netbox/templates/home.html:18 +#: templates/home.html:18 msgctxt "Document title" msgid "Upgrade Instructions" msgstr "Інструкції з оновлення" -#: netbox/templates/home.html:40 +#: templates/home.html:40 msgid "Unlock Dashboard" msgstr "Розблокування інформаційної панелі" -#: netbox/templates/home.html:49 +#: templates/home.html:49 msgid "Lock Dashboard" msgstr "Блокування інформаційної панелі " -#: netbox/templates/home.html:60 +#: templates/home.html:60 msgid "Add Widget" msgstr "Додати віджет" -#: netbox/templates/home.html:63 +#: templates/home.html:63 msgid "Save Layout" msgstr "Зберегти макет" -#: netbox/templates/htmx/delete_form.html:7 +#: templates/htmx/delete_form.html:7 msgid "Confirm Deletion" msgstr "Підтвердити видалення" -#: netbox/templates/htmx/delete_form.html:11 +#: templates/htmx/delete_form.html:11 #, python-format msgid "" "Are you sure you want to delete " @@ -13763,40 +13042,40 @@ msgstr "" "Ви впевнені, що хочете видалити " "%(object_type)s %(object)s?" -#: netbox/templates/htmx/delete_form.html:17 +#: templates/htmx/delete_form.html:17 msgid "The following objects will be deleted as a result of this action." msgstr "Наступні об'єкти будуть видалені в результаті цієї дії." -#: netbox/templates/htmx/notifications.html:15 +#: templates/htmx/notifications.html:15 msgid "ago" msgstr "тому" -#: netbox/templates/htmx/notifications.html:26 +#: templates/htmx/notifications.html:26 msgid "No unread notifications" msgstr "Немає непрочитаних повідомлень" -#: netbox/templates/htmx/notifications.html:31 +#: templates/htmx/notifications.html:31 msgid "All notifications" msgstr "Усі повідомлення" -#: netbox/templates/htmx/object_selector.html:5 +#: templates/htmx/object_selector.html:5 msgid "Select" msgstr "Вибрати" -#: netbox/templates/inc/filter_list.html:42 -#: netbox/utilities/templates/helpers/table_config_form.html:39 +#: templates/inc/filter_list.html:43 +#: utilities/templates/helpers/table_config_form.html:39 msgid "Reset" msgstr "Скинути" -#: netbox/templates/inc/light_toggle.html:4 +#: templates/inc/light_toggle.html:4 msgid "Enable dark mode" msgstr "Увімкнути темний режим" -#: netbox/templates/inc/light_toggle.html:7 +#: templates/inc/light_toggle.html:7 msgid "Enable light mode" msgstr "Увімкнути світловий режим" -#: netbox/templates/inc/missing_prerequisites.html:8 +#: templates/inc/missing_prerequisites.html:8 #, python-format msgid "" "Before you can add a %(model)s you must first create a " @@ -13805,283 +13084,281 @@ msgstr "" "Перш ніж ви зможете додати %(model)s спочатку потрібно створити " "%(prerequisite_model)s." -#: netbox/templates/inc/paginator.html:15 +#: templates/inc/paginator.html:15 msgid "Page selection" msgstr "Вибір сторінки" -#: netbox/templates/inc/paginator.html:75 +#: templates/inc/paginator.html:75 #, python-format msgid "Showing %(start)s-%(end)s of %(total)s" msgstr "Показуючи %(start)s-%(end)s з %(total)s" -#: netbox/templates/inc/paginator.html:82 +#: templates/inc/paginator.html:82 msgid "Pagination options" msgstr "Параметри нумерації сторінок" -#: netbox/templates/inc/paginator.html:86 +#: templates/inc/paginator.html:86 msgid "Per Page" msgstr "На сторінку" -#: netbox/templates/inc/panels/image_attachments.html:10 +#: templates/inc/panels/image_attachments.html:10 msgid "Attach an image" msgstr "Прикріпити зображення" -#: netbox/templates/inc/panels/related_objects.html:5 +#: templates/inc/panels/related_objects.html:5 msgid "Related Objects" msgstr "Пов'язані об'єкти" -#: netbox/templates/inc/panels/tags.html:11 +#: templates/inc/panels/tags.html:11 msgid "No tags assigned" msgstr "Немає зроблених позначок" -#: netbox/templates/inc/sync_warning.html:10 +#: templates/inc/sync_warning.html:10 msgid "Data is out of sync with upstream file" msgstr "Дані не синхронізуються з файлом висхідного потоку" -#: netbox/templates/inc/table_controls_htmx.html:7 +#: templates/inc/table_controls_htmx.html:7 msgid "Quick search" msgstr "Швидкий пошук" -#: netbox/templates/inc/table_controls_htmx.html:20 +#: templates/inc/table_controls_htmx.html:20 msgid "Saved filter" msgstr "Збережений фільтр" -#: netbox/templates/inc/table_htmx.html:18 +#: templates/inc/table_htmx.html:18 msgid "Clear ordering" msgstr "Почистити замовлення" -#: netbox/templates/inc/user_menu.html:6 +#: templates/inc/user_menu.html:6 msgid "Help center" msgstr "Довідковий центр" -#: netbox/templates/inc/user_menu.html:41 +#: templates/inc/user_menu.html:41 msgid "Django Admin" msgstr "Джанго Адміністратор" -#: netbox/templates/inc/user_menu.html:61 +#: templates/inc/user_menu.html:61 msgid "Log Out" msgstr "Вийти" -#: netbox/templates/inc/user_menu.html:68 netbox/templates/login.html:38 +#: templates/inc/user_menu.html:68 templates/login.html:38 msgid "Log In" msgstr "Увійти" -#: netbox/templates/ipam/aggregate.html:14 -#: netbox/templates/ipam/ipaddress.html:14 -#: netbox/templates/ipam/iprange.html:13 netbox/templates/ipam/prefix.html:15 +#: templates/ipam/aggregate.html:14 templates/ipam/ipaddress.html:14 +#: templates/ipam/iprange.html:13 templates/ipam/prefix.html:15 msgid "Family" msgstr "Сім'я" -#: netbox/templates/ipam/aggregate.html:39 +#: templates/ipam/aggregate.html:39 msgid "Date Added" msgstr "Дата додавання" -#: netbox/templates/ipam/aggregate/prefixes.html:8 -#: netbox/templates/ipam/prefix/prefixes.html:8 -#: netbox/templates/ipam/role.html:10 +#: templates/ipam/aggregate/prefixes.html:8 +#: templates/ipam/prefix/prefixes.html:8 templates/ipam/role.html:10 msgid "Add Prefix" msgstr "Додати префікс" -#: netbox/templates/ipam/asn.html:23 +#: templates/ipam/asn.html:23 msgid "AS Number" msgstr "Номер AS" -#: netbox/templates/ipam/fhrpgroup.html:52 +#: templates/ipam/fhrpgroup.html:52 msgid "Authentication Type" msgstr "Тип аутентифікації" -#: netbox/templates/ipam/fhrpgroup.html:56 +#: templates/ipam/fhrpgroup.html:56 msgid "Authentication Key" msgstr "Ключ аутентифікації" -#: netbox/templates/ipam/fhrpgroup.html:69 +#: templates/ipam/fhrpgroup.html:69 msgid "Virtual IP Addresses" msgstr "Віртуальні IP-адреси" -#: netbox/templates/ipam/inc/ipaddress_edit_header.html:13 +#: templates/ipam/inc/ipaddress_edit_header.html:13 msgid "Assign IP" msgstr "Призначити IP" -#: netbox/templates/ipam/inc/ipaddress_edit_header.html:19 +#: templates/ipam/inc/ipaddress_edit_header.html:19 msgid "Bulk Create" msgstr "Масове створення" -#: netbox/templates/ipam/inc/panels/fhrp_groups.html:10 +#: templates/ipam/inc/panels/fhrp_groups.html:10 msgid "Create Group" msgstr "Створити групу" -#: netbox/templates/ipam/inc/panels/fhrp_groups.html:25 +#: templates/ipam/inc/panels/fhrp_groups.html:25 msgid "Virtual IPs" msgstr "Віртуальні IP-адреси" -#: netbox/templates/ipam/inc/toggle_available.html:7 +#: templates/ipam/inc/toggle_available.html:7 msgid "Show Assigned" msgstr "Показати присвоєні" -#: netbox/templates/ipam/inc/toggle_available.html:10 +#: templates/ipam/inc/toggle_available.html:10 msgid "Show Available" msgstr "Показати Доступно" -#: netbox/templates/ipam/inc/toggle_available.html:13 +#: templates/ipam/inc/toggle_available.html:13 msgid "Show All" msgstr "Показати все" -#: netbox/templates/ipam/ipaddress.html:23 -#: netbox/templates/ipam/iprange.html:45 netbox/templates/ipam/prefix.html:24 +#: templates/ipam/ipaddress.html:23 templates/ipam/iprange.html:45 +#: templates/ipam/prefix.html:24 msgid "Global" msgstr "Глобальний" -#: netbox/templates/ipam/ipaddress.html:85 +#: templates/ipam/ipaddress.html:85 msgid "NAT (outside)" msgstr "NAT (зовні)" -#: netbox/templates/ipam/ipaddress_assign.html:8 +#: templates/ipam/ipaddress_assign.html:8 msgid "Assign an IP Address" msgstr "Призначити IP-адресу" -#: netbox/templates/ipam/ipaddress_assign.html:22 +#: templates/ipam/ipaddress_assign.html:22 msgid "Select IP Address" msgstr "Виберіть IP-адресу" -#: netbox/templates/ipam/ipaddress_assign.html:35 +#: templates/ipam/ipaddress_assign.html:35 msgid "Search Results" msgstr "Результати пошуку" -#: netbox/templates/ipam/ipaddress_bulk_add.html:6 +#: templates/ipam/ipaddress_bulk_add.html:6 msgid "Bulk Add IP Addresses" msgstr "Масове додавання IP-адрес" -#: netbox/templates/ipam/iprange.html:17 +#: templates/ipam/iprange.html:17 msgid "Starting Address" msgstr "Початкова адреса" -#: netbox/templates/ipam/iprange.html:21 +#: templates/ipam/iprange.html:21 msgid "Ending Address" msgstr "Кінцева адреса" -#: netbox/templates/ipam/iprange.html:33 netbox/templates/ipam/prefix.html:110 +#: templates/ipam/iprange.html:33 templates/ipam/prefix.html:110 msgid "Marked fully utilized" msgstr "Позначений повністю використаний" -#: netbox/templates/ipam/prefix.html:99 +#: templates/ipam/prefix.html:99 msgid "Addressing Details" msgstr "Деталі адресації" -#: netbox/templates/ipam/prefix.html:118 +#: templates/ipam/prefix.html:118 msgid "Child IPs" msgstr "Дитячі IP-адреси" -#: netbox/templates/ipam/prefix.html:126 +#: templates/ipam/prefix.html:126 msgid "Available IPs" msgstr "Доступні IP-адреси" -#: netbox/templates/ipam/prefix.html:138 +#: templates/ipam/prefix.html:138 msgid "First available IP" msgstr "Перший доступний IP" -#: netbox/templates/ipam/prefix.html:179 +#: templates/ipam/prefix.html:179 msgid "Prefix Details" msgstr "Деталі префікса" -#: netbox/templates/ipam/prefix.html:185 +#: templates/ipam/prefix.html:185 msgid "Network Address" msgstr "Мережева адреса" -#: netbox/templates/ipam/prefix.html:189 +#: templates/ipam/prefix.html:189 msgid "Network Mask" msgstr "Мережева маска" -#: netbox/templates/ipam/prefix.html:193 +#: templates/ipam/prefix.html:193 msgid "Wildcard Mask" msgstr "Маска підстановки" -#: netbox/templates/ipam/prefix.html:197 +#: templates/ipam/prefix.html:197 msgid "Broadcast Address" msgstr "Адреса трансляції" -#: netbox/templates/ipam/prefix/ip_ranges.html:7 +#: templates/ipam/prefix/ip_ranges.html:7 msgid "Add IP Range" msgstr "Додати діапазон IP" -#: netbox/templates/ipam/prefix_list.html:7 +#: templates/ipam/prefix_list.html:7 msgid "Hide Depth Indicators" msgstr "Приховати індикатори глибини" -#: netbox/templates/ipam/prefix_list.html:11 +#: templates/ipam/prefix_list.html:11 msgid "Max Depth" msgstr "Максимальна глибина" -#: netbox/templates/ipam/prefix_list.html:28 +#: templates/ipam/prefix_list.html:28 msgid "Max Length" msgstr "Максимальна довжина" -#: netbox/templates/ipam/rir.html:10 +#: templates/ipam/rir.html:10 msgid "Add Aggregate" msgstr "Додати агрегат" -#: netbox/templates/ipam/routetarget.html:38 +#: templates/ipam/routetarget.html:38 msgid "Importing VRFs" msgstr "Імпортування VRF" -#: netbox/templates/ipam/routetarget.html:44 +#: templates/ipam/routetarget.html:44 msgid "Exporting VRFs" msgstr "Експорт VRF" -#: netbox/templates/ipam/routetarget.html:52 +#: templates/ipam/routetarget.html:52 msgid "Importing L2VPNs" msgstr "Імпорт L2VPN" -#: netbox/templates/ipam/routetarget.html:58 +#: templates/ipam/routetarget.html:58 msgid "Exporting L2VPNs" msgstr "Експорт L2VPN" -#: netbox/templates/ipam/vlan.html:88 +#: templates/ipam/vlan.html:88 msgid "Add a Prefix" msgstr "Додати префікс" -#: netbox/templates/ipam/vlangroup.html:18 +#: templates/ipam/vlangroup.html:18 msgid "Add VLAN" msgstr "Додати VLAN" -#: netbox/templates/ipam/vrf.html:16 +#: templates/ipam/vrf.html:16 msgid "Route Distinguisher" msgstr "Відмінник маршруту" -#: netbox/templates/ipam/vrf.html:29 +#: templates/ipam/vrf.html:29 msgid "Unique IP Space" msgstr "Унікальний IP простір" -#: netbox/templates/login.html:29 -#: netbox/utilities/templates/form_helpers/render_errors.html:7 +#: templates/login.html:29 +#: utilities/templates/form_helpers/render_errors.html:7 msgid "Errors" msgstr "Помилки" -#: netbox/templates/login.html:69 +#: templates/login.html:69 msgid "Sign In" msgstr "Увійти" -#: netbox/templates/login.html:77 +#: templates/login.html:77 msgctxt "Denotes an alternative option" msgid "Or" msgstr "Або" -#: netbox/templates/media_failure.html:7 +#: templates/media_failure.html:7 msgid "Static Media Failure - NetBox" msgstr "Помилка статичного носія - NetBox" -#: netbox/templates/media_failure.html:21 +#: templates/media_failure.html:21 msgid "Static Media Failure" msgstr "Помилка статичного носія" -#: netbox/templates/media_failure.html:23 +#: templates/media_failure.html:23 msgid "The following static media file failed to load" msgstr "Не вдалося завантажити наступний файл статичного медіа" -#: netbox/templates/media_failure.html:26 +#: templates/media_failure.html:26 msgid "Check the following" msgstr "Перевірте наступне" -#: netbox/templates/media_failure.html:29 +#: templates/media_failure.html:29 msgid "" "manage.py collectstatic was run during the most recent upgrade." " This installs the most recent iteration of each static file into the static" @@ -14091,7 +13368,7 @@ msgstr "" "оновлення. Це встановлює останню ітерацію кожного статичного файлу в " "статичний кореневий шлях." -#: netbox/templates/media_failure.html:35 +#: templates/media_failure.html:35 #, python-format msgid "" "The HTTP service (e.g. nginx or Apache) is configured to serve files from " @@ -14102,7 +13379,7 @@ msgstr "" "файлів з STATIC_ROOT шляха. Зверніться до документація по установці для подальших вказівок." -#: netbox/templates/media_failure.html:47 +#: templates/media_failure.html:47 #, python-format msgid "" "The file %(filename)s exists in the static root directory and " @@ -14111,567 +13388,548 @@ msgstr "" "Файл %(filename)s існує в статичному кореневому каталозі і " "читається HTTP-сервером." -#: netbox/templates/media_failure.html:55 +#: templates/media_failure.html:55 #, python-format msgid "Click here to attempt loading NetBox again." msgstr "" "Клацніть тут щоб спробувати завантажити NetBox " "знову." -#: netbox/templates/tenancy/contact.html:18 netbox/tenancy/filtersets.py:147 -#: netbox/tenancy/forms/bulk_edit.py:137 -#: netbox/tenancy/forms/filtersets.py:102 netbox/tenancy/forms/forms.py:56 -#: netbox/tenancy/forms/model_forms.py:106 -#: netbox/tenancy/forms/model_forms.py:130 -#: netbox/tenancy/tables/contacts.py:98 +#: templates/tenancy/contact.html:18 tenancy/filtersets.py:147 +#: tenancy/forms/bulk_edit.py:137 tenancy/forms/filtersets.py:102 +#: tenancy/forms/forms.py:56 tenancy/forms/model_forms.py:106 +#: tenancy/forms/model_forms.py:130 tenancy/tables/contacts.py:98 msgid "Contact" msgstr "Контакт" -#: netbox/templates/tenancy/contact.html:29 -#: netbox/tenancy/forms/bulk_edit.py:99 +#: templates/tenancy/contact.html:29 tenancy/forms/bulk_edit.py:99 msgid "Title" msgstr "Назва" -#: netbox/templates/tenancy/contact.html:33 -#: netbox/tenancy/forms/bulk_edit.py:104 netbox/tenancy/tables/contacts.py:64 +#: templates/tenancy/contact.html:33 tenancy/forms/bulk_edit.py:104 +#: tenancy/tables/contacts.py:64 msgid "Phone" msgstr "Телефон" -#: netbox/templates/tenancy/contactgroup.html:18 -#: netbox/tenancy/forms/forms.py:66 netbox/tenancy/forms/model_forms.py:75 +#: templates/tenancy/contactgroup.html:18 tenancy/forms/forms.py:66 +#: tenancy/forms/model_forms.py:75 msgid "Contact Group" msgstr "Контактна група" -#: netbox/templates/tenancy/contactgroup.html:50 +#: templates/tenancy/contactgroup.html:50 msgid "Add Contact Group" msgstr "Додати групу контактів" -#: netbox/templates/tenancy/contactrole.html:15 -#: netbox/tenancy/filtersets.py:152 netbox/tenancy/forms/forms.py:61 -#: netbox/tenancy/forms/model_forms.py:87 +#: templates/tenancy/contactrole.html:15 tenancy/filtersets.py:152 +#: tenancy/forms/forms.py:61 tenancy/forms/model_forms.py:87 msgid "Contact Role" msgstr "Контактна роль" -#: netbox/templates/tenancy/object_contacts.html:9 +#: templates/tenancy/object_contacts.html:9 msgid "Add a contact" msgstr "Додати контакт" -#: netbox/templates/tenancy/tenantgroup.html:17 +#: templates/tenancy/tenantgroup.html:17 msgid "Add Tenant" msgstr "Додати орендаря" -#: netbox/templates/tenancy/tenantgroup.html:26 -#: netbox/tenancy/forms/model_forms.py:32 netbox/tenancy/tables/columns.py:51 -#: netbox/tenancy/tables/columns.py:61 +#: templates/tenancy/tenantgroup.html:26 tenancy/forms/model_forms.py:32 +#: tenancy/tables/columns.py:51 tenancy/tables/columns.py:61 msgid "Tenant Group" msgstr "Група орендарів" -#: netbox/templates/tenancy/tenantgroup.html:59 +#: templates/tenancy/tenantgroup.html:59 msgid "Add Tenant Group" msgstr "Додати групу орендарів" -#: netbox/templates/users/group.html:39 netbox/templates/users/user.html:63 +#: templates/users/group.html:39 templates/users/user.html:63 msgid "Assigned Permissions" msgstr "Призначені дозволи" -#: netbox/templates/users/objectpermission.html:6 -#: netbox/templates/users/objectpermission.html:14 -#: netbox/users/forms/filtersets.py:66 +#: templates/users/objectpermission.html:6 +#: templates/users/objectpermission.html:14 users/forms/filtersets.py:66 msgid "Permission" msgstr "Дозвіл" -#: netbox/templates/users/objectpermission.html:34 +#: templates/users/objectpermission.html:34 msgid "View" msgstr "Перегляд" -#: netbox/templates/users/objectpermission.html:52 -#: netbox/users/forms/model_forms.py:315 +#: templates/users/objectpermission.html:52 users/forms/model_forms.py:315 msgid "Constraints" msgstr "Обмеження" -#: netbox/templates/users/objectpermission.html:72 +#: templates/users/objectpermission.html:72 msgid "Assigned Users" msgstr "Призначені користувачі" -#: netbox/templates/virtualization/cluster.html:52 +#: templates/virtualization/cluster.html:52 msgid "Allocated Resources" msgstr "Виділені ресурси" -#: netbox/templates/virtualization/cluster.html:55 -#: netbox/templates/virtualization/virtualmachine.html:125 +#: templates/virtualization/cluster.html:55 +#: templates/virtualization/virtualmachine.html:125 msgid "Virtual CPUs" msgstr "Віртуальні процесори" -#: netbox/templates/virtualization/cluster.html:59 -#: netbox/templates/virtualization/virtualmachine.html:129 +#: templates/virtualization/cluster.html:59 +#: templates/virtualization/virtualmachine.html:129 msgid "Memory" msgstr "Пам'ять" -#: netbox/templates/virtualization/cluster.html:69 -#: netbox/templates/virtualization/virtualmachine.html:140 +#: templates/virtualization/cluster.html:69 +#: templates/virtualization/virtualmachine.html:140 msgid "Disk Space" msgstr "Місце на диску" -#: netbox/templates/virtualization/cluster/base.html:18 +#: templates/virtualization/cluster/base.html:18 msgid "Add Virtual Machine" msgstr "Додати віртуальну машину" -#: netbox/templates/virtualization/cluster/base.html:24 +#: templates/virtualization/cluster/base.html:24 msgid "Assign Device" msgstr "Призначити пристрій" -#: netbox/templates/virtualization/cluster/devices.html:10 +#: templates/virtualization/cluster/devices.html:10 msgid "Remove Selected" msgstr "Вилучити вибрані" -#: netbox/templates/virtualization/cluster_add_devices.html:9 +#: templates/virtualization/cluster_add_devices.html:9 #, python-format msgid "Add Device to Cluster %(cluster)s" msgstr "Додати пристрій до кластера %(cluster)s" -#: netbox/templates/virtualization/cluster_add_devices.html:23 +#: templates/virtualization/cluster_add_devices.html:23 msgid "Device Selection" msgstr "Вибір пристрою" -#: netbox/templates/virtualization/cluster_add_devices.html:31 +#: templates/virtualization/cluster_add_devices.html:31 msgid "Add Devices" msgstr "Додати пристрої" -#: netbox/templates/virtualization/clustergroup.html:10 -#: netbox/templates/virtualization/clustertype.html:10 +#: templates/virtualization/clustergroup.html:10 +#: templates/virtualization/clustertype.html:10 msgid "Add Cluster" msgstr "Додати кластер" -#: netbox/templates/virtualization/clustergroup.html:19 -#: netbox/virtualization/forms/model_forms.py:50 +#: templates/virtualization/clustergroup.html:19 +#: virtualization/forms/model_forms.py:50 msgid "Cluster Group" msgstr "Кластерна група" -#: netbox/templates/virtualization/clustertype.html:19 -#: netbox/templates/virtualization/virtualmachine.html:110 -#: netbox/virtualization/forms/model_forms.py:36 +#: templates/virtualization/clustertype.html:19 +#: templates/virtualization/virtualmachine.html:110 +#: virtualization/forms/model_forms.py:36 msgid "Cluster Type" msgstr "Тип кластера" -#: netbox/templates/virtualization/virtualdisk.html:18 +#: templates/virtualization/virtualdisk.html:18 msgid "Virtual Disk" msgstr "Віртуальний диск" -#: netbox/templates/virtualization/virtualmachine.html:122 -#: netbox/virtualization/forms/bulk_edit.py:190 -#: netbox/virtualization/forms/model_forms.py:224 +#: templates/virtualization/virtualmachine.html:122 +#: virtualization/forms/bulk_edit.py:190 +#: virtualization/forms/model_forms.py:224 msgid "Resources" msgstr "Ресурси" -#: netbox/templates/virtualization/virtualmachine.html:178 +#: templates/virtualization/virtualmachine.html:178 msgid "Add Virtual Disk" msgstr "Додати віртуальний диск" -#: netbox/templates/vpn/ikepolicy.html:10 -#: netbox/templates/vpn/ipsecprofile.html:33 netbox/vpn/tables/crypto.py:166 +#: templates/vpn/ikepolicy.html:10 templates/vpn/ipsecprofile.html:33 +#: vpn/tables/crypto.py:166 msgid "IKE Policy" msgstr "Політика IKE" -#: netbox/templates/vpn/ikepolicy.html:21 +#: templates/vpn/ikepolicy.html:21 msgid "IKE Version" msgstr "Версія IKE" -#: netbox/templates/vpn/ikepolicy.html:29 +#: templates/vpn/ikepolicy.html:29 msgid "Pre-Shared Key" msgstr "Попередньо спільний ключ" -#: netbox/templates/vpn/ikepolicy.html:33 -#: netbox/templates/wireless/inc/authentication_attrs.html:20 +#: templates/vpn/ikepolicy.html:33 +#: templates/wireless/inc/authentication_attrs.html:20 msgid "Show Secret" msgstr "Показати Таємницю" -#: netbox/templates/vpn/ikepolicy.html:57 -#: netbox/templates/vpn/ipsecpolicy.html:45 -#: netbox/templates/vpn/ipsecprofile.html:52 -#: netbox/templates/vpn/ipsecprofile.html:77 -#: netbox/vpn/forms/model_forms.py:316 netbox/vpn/forms/model_forms.py:352 -#: netbox/vpn/tables/crypto.py:68 netbox/vpn/tables/crypto.py:134 +#: templates/vpn/ikepolicy.html:57 templates/vpn/ipsecpolicy.html:45 +#: templates/vpn/ipsecprofile.html:52 templates/vpn/ipsecprofile.html:77 +#: vpn/forms/model_forms.py:316 vpn/forms/model_forms.py:352 +#: vpn/tables/crypto.py:68 vpn/tables/crypto.py:134 msgid "Proposals" msgstr "Пропозиції" -#: netbox/templates/vpn/ikeproposal.html:10 +#: templates/vpn/ikeproposal.html:10 msgid "IKE Proposal" msgstr "Пропозиція IKE" -#: netbox/templates/vpn/ikeproposal.html:21 netbox/vpn/forms/bulk_edit.py:97 -#: netbox/vpn/forms/bulk_import.py:145 netbox/vpn/forms/filtersets.py:101 +#: templates/vpn/ikeproposal.html:21 vpn/forms/bulk_edit.py:97 +#: vpn/forms/bulk_import.py:145 vpn/forms/filtersets.py:101 msgid "Authentication method" msgstr "Метод аутентифікації" -#: netbox/templates/vpn/ikeproposal.html:25 -#: netbox/templates/vpn/ipsecproposal.html:21 -#: netbox/vpn/forms/bulk_edit.py:102 netbox/vpn/forms/bulk_edit.py:172 -#: netbox/vpn/forms/bulk_import.py:149 netbox/vpn/forms/bulk_import.py:195 -#: netbox/vpn/forms/filtersets.py:106 netbox/vpn/forms/filtersets.py:154 +#: templates/vpn/ikeproposal.html:25 templates/vpn/ipsecproposal.html:21 +#: vpn/forms/bulk_edit.py:102 vpn/forms/bulk_edit.py:172 +#: vpn/forms/bulk_import.py:149 vpn/forms/bulk_import.py:195 +#: vpn/forms/filtersets.py:106 vpn/forms/filtersets.py:154 msgid "Encryption algorithm" msgstr "Алгоритм шифрування" -#: netbox/templates/vpn/ikeproposal.html:29 -#: netbox/templates/vpn/ipsecproposal.html:25 -#: netbox/vpn/forms/bulk_edit.py:107 netbox/vpn/forms/bulk_edit.py:177 -#: netbox/vpn/forms/bulk_import.py:153 netbox/vpn/forms/bulk_import.py:200 -#: netbox/vpn/forms/filtersets.py:111 netbox/vpn/forms/filtersets.py:159 +#: templates/vpn/ikeproposal.html:29 templates/vpn/ipsecproposal.html:25 +#: vpn/forms/bulk_edit.py:107 vpn/forms/bulk_edit.py:177 +#: vpn/forms/bulk_import.py:153 vpn/forms/bulk_import.py:200 +#: vpn/forms/filtersets.py:111 vpn/forms/filtersets.py:159 msgid "Authentication algorithm" msgstr "Алгоритм авторизації" -#: netbox/templates/vpn/ikeproposal.html:33 +#: templates/vpn/ikeproposal.html:33 msgid "DH group" msgstr "Група DH" -#: netbox/templates/vpn/ikeproposal.html:37 -#: netbox/templates/vpn/ipsecproposal.html:29 -#: netbox/vpn/forms/bulk_edit.py:182 netbox/vpn/models/crypto.py:146 +#: templates/vpn/ikeproposal.html:37 templates/vpn/ipsecproposal.html:29 +#: vpn/forms/bulk_edit.py:182 vpn/models/crypto.py:146 msgid "SA lifetime (seconds)" msgstr "Термін служби SA (секунди)" -#: netbox/templates/vpn/ipsecpolicy.html:10 -#: netbox/templates/vpn/ipsecprofile.html:66 netbox/vpn/tables/crypto.py:170 +#: templates/vpn/ipsecpolicy.html:10 templates/vpn/ipsecprofile.html:66 +#: vpn/tables/crypto.py:170 msgid "IPSec Policy" msgstr "Політика IPsec" -#: netbox/templates/vpn/ipsecpolicy.html:21 netbox/vpn/forms/bulk_edit.py:210 -#: netbox/vpn/models/crypto.py:193 +#: templates/vpn/ipsecpolicy.html:21 vpn/forms/bulk_edit.py:210 +#: vpn/models/crypto.py:193 msgid "PFS group" msgstr "Група ПФС" -#: netbox/templates/vpn/ipsecprofile.html:10 -#: netbox/vpn/forms/model_forms.py:54 +#: templates/vpn/ipsecprofile.html:10 vpn/forms/model_forms.py:54 msgid "IPSec Profile" msgstr "Профіль IPsec" -#: netbox/templates/vpn/ipsecprofile.html:89 netbox/vpn/tables/crypto.py:137 +#: templates/vpn/ipsecprofile.html:89 vpn/tables/crypto.py:137 msgid "PFS Group" msgstr "Група ПФС" -#: netbox/templates/vpn/ipsecproposal.html:10 +#: templates/vpn/ipsecproposal.html:10 msgid "IPSec Proposal" msgstr "Пропозиція IPsec" -#: netbox/templates/vpn/ipsecproposal.html:33 -#: netbox/vpn/forms/bulk_edit.py:186 netbox/vpn/models/crypto.py:152 +#: templates/vpn/ipsecproposal.html:33 vpn/forms/bulk_edit.py:186 +#: vpn/models/crypto.py:152 msgid "SA lifetime (KB)" msgstr "Термін служби SA (КБ)" -#: netbox/templates/vpn/l2vpn.html:11 -#: netbox/templates/vpn/l2vpntermination.html:9 +#: templates/vpn/l2vpn.html:11 templates/vpn/l2vpntermination.html:9 msgid "L2VPN Attributes" msgstr "L2VPN Атрибути" -#: netbox/templates/vpn/l2vpn.html:60 netbox/templates/vpn/tunnel.html:76 +#: templates/vpn/l2vpn.html:60 templates/vpn/tunnel.html:76 msgid "Add a Termination" msgstr "Додати припинення" -#: netbox/templates/vpn/tunnel.html:9 +#: templates/vpn/tunnel.html:9 msgid "Add Termination" msgstr "Додати припинення" -#: netbox/templates/vpn/tunnel.html:37 netbox/vpn/forms/bulk_edit.py:49 -#: netbox/vpn/forms/bulk_import.py:48 netbox/vpn/forms/filtersets.py:57 +#: templates/vpn/tunnel.html:37 vpn/forms/bulk_edit.py:49 +#: vpn/forms/bulk_import.py:48 vpn/forms/filtersets.py:57 msgid "Encapsulation" msgstr "Інкапсуляція" -#: netbox/templates/vpn/tunnel.html:41 netbox/vpn/forms/bulk_edit.py:55 -#: netbox/vpn/forms/bulk_import.py:53 netbox/vpn/forms/filtersets.py:64 -#: netbox/vpn/models/crypto.py:250 netbox/vpn/tables/tunnels.py:51 +#: templates/vpn/tunnel.html:41 vpn/forms/bulk_edit.py:55 +#: vpn/forms/bulk_import.py:53 vpn/forms/filtersets.py:64 +#: vpn/models/crypto.py:250 vpn/tables/tunnels.py:51 msgid "IPSec profile" msgstr "Профіль IPsec" -#: netbox/templates/vpn/tunnel.html:45 netbox/vpn/forms/bulk_edit.py:69 -#: netbox/vpn/forms/filtersets.py:68 +#: templates/vpn/tunnel.html:45 vpn/forms/bulk_edit.py:69 +#: vpn/forms/filtersets.py:68 msgid "Tunnel ID" msgstr "ID тунелю" -#: netbox/templates/vpn/tunnelgroup.html:14 +#: templates/vpn/tunnelgroup.html:14 msgid "Add Tunnel" msgstr "Додати тунель" -#: netbox/templates/vpn/tunnelgroup.html:23 netbox/vpn/forms/model_forms.py:36 -#: netbox/vpn/forms/model_forms.py:49 +#: templates/vpn/tunnelgroup.html:23 vpn/forms/model_forms.py:36 +#: vpn/forms/model_forms.py:49 msgid "Tunnel Group" msgstr "Тунельна група" -#: netbox/templates/vpn/tunneltermination.html:10 +#: templates/vpn/tunneltermination.html:10 msgid "Tunnel Termination" msgstr "Закриття тунелю" -#: netbox/templates/vpn/tunneltermination.html:35 -#: netbox/vpn/forms/bulk_import.py:107 netbox/vpn/forms/model_forms.py:102 -#: netbox/vpn/forms/model_forms.py:138 netbox/vpn/forms/model_forms.py:247 -#: netbox/vpn/tables/tunnels.py:101 +#: templates/vpn/tunneltermination.html:35 vpn/forms/bulk_import.py:107 +#: vpn/forms/model_forms.py:102 vpn/forms/model_forms.py:138 +#: vpn/forms/model_forms.py:247 vpn/tables/tunnels.py:101 msgid "Outside IP" msgstr "За межами IP" -#: netbox/templates/vpn/tunneltermination.html:51 +#: templates/vpn/tunneltermination.html:51 msgid "Peer Terminations" msgstr "Роз'єднання мережевих сусідів" -#: netbox/templates/wireless/inc/authentication_attrs.html:12 +#: templates/wireless/inc/authentication_attrs.html:12 msgid "Cipher" msgstr "Шифр" -#: netbox/templates/wireless/inc/authentication_attrs.html:16 +#: templates/wireless/inc/authentication_attrs.html:16 msgid "PSK" msgstr " Попередньо спільний ключ (PSK)" -#: netbox/templates/wireless/inc/wirelesslink_interface.html:35 -#: netbox/templates/wireless/inc/wirelesslink_interface.html:45 +#: templates/wireless/inc/wirelesslink_interface.html:35 +#: templates/wireless/inc/wirelesslink_interface.html:45 msgctxt "Abbreviation for megahertz" msgid "MHz" msgstr "МГц" -#: netbox/templates/wireless/wirelesslan.html:57 +#: templates/wireless/wirelesslan.html:57 msgid "Attached Interfaces" msgstr "Прикріплені інтерфейси" -#: netbox/templates/wireless/wirelesslangroup.html:17 +#: templates/wireless/wirelesslangroup.html:17 msgid "Add Wireless LAN" msgstr "Додати бездротову мережу" -#: netbox/templates/wireless/wirelesslangroup.html:26 -#: netbox/wireless/forms/model_forms.py:28 +#: templates/wireless/wirelesslangroup.html:26 +#: wireless/forms/model_forms.py:28 msgid "Wireless LAN Group" msgstr "Група бездротової локальної мережі" -#: netbox/templates/wireless/wirelesslangroup.html:59 +#: templates/wireless/wirelesslangroup.html:59 msgid "Add Wireless LAN Group" msgstr "Додати групу бездротової локальної мережі" -#: netbox/templates/wireless/wirelesslink.html:14 +#: templates/wireless/wirelesslink.html:14 msgid "Link Properties" msgstr "Властивості посилання" -#: netbox/templates/wireless/wirelesslink.html:38 -#: netbox/wireless/forms/bulk_edit.py:129 -#: netbox/wireless/forms/filtersets.py:102 -#: netbox/wireless/forms/model_forms.py:165 +#: templates/wireless/wirelesslink.html:38 wireless/forms/bulk_edit.py:129 +#: wireless/forms/filtersets.py:102 wireless/forms/model_forms.py:165 msgid "Distance" msgstr "Відстань" -#: netbox/tenancy/filtersets.py:28 +#: tenancy/filtersets.py:28 msgid "Parent contact group (ID)" msgstr "Батьківська контактна група (ідентифікатор)" -#: netbox/tenancy/filtersets.py:34 +#: tenancy/filtersets.py:34 msgid "Parent contact group (slug)" msgstr "Батьківська контактна група (скоречення)" -#: netbox/tenancy/filtersets.py:40 netbox/tenancy/filtersets.py:67 -#: netbox/tenancy/filtersets.py:110 +#: tenancy/filtersets.py:40 tenancy/filtersets.py:67 tenancy/filtersets.py:110 msgid "Contact group (ID)" msgstr "Контактна група (ідентифікатор)" -#: netbox/tenancy/filtersets.py:47 netbox/tenancy/filtersets.py:74 -#: netbox/tenancy/filtersets.py:117 +#: tenancy/filtersets.py:47 tenancy/filtersets.py:74 tenancy/filtersets.py:117 msgid "Contact group (slug)" msgstr "Контактна група (скоречення)" -#: netbox/tenancy/filtersets.py:104 +#: tenancy/filtersets.py:104 msgid "Contact (ID)" msgstr "Контакт (ідентифікатор)" -#: netbox/tenancy/filtersets.py:121 +#: tenancy/filtersets.py:121 msgid "Contact role (ID)" msgstr "Роль контакту (ідентифікатор)" -#: netbox/tenancy/filtersets.py:127 +#: tenancy/filtersets.py:127 msgid "Contact role (slug)" msgstr "Контактна роль (скоречення)" -#: netbox/tenancy/filtersets.py:158 +#: tenancy/filtersets.py:158 msgid "Contact group" msgstr "Контактна група" -#: netbox/tenancy/filtersets.py:169 +#: tenancy/filtersets.py:169 msgid "Parent tenant group (ID)" msgstr "Батьківська група орендарів (ідентифікатор)" -#: netbox/tenancy/filtersets.py:175 +#: tenancy/filtersets.py:175 msgid "Parent tenant group (slug)" msgstr "Батьківська група орендарів (скоречення)" -#: netbox/tenancy/filtersets.py:181 netbox/tenancy/filtersets.py:201 +#: tenancy/filtersets.py:181 tenancy/filtersets.py:201 msgid "Tenant group (ID)" msgstr "Група орендарів (ідентифікатор)" -#: netbox/tenancy/filtersets.py:234 +#: tenancy/filtersets.py:234 msgid "Tenant Group (ID)" msgstr "Група орендарів (ідентифікатор)" -#: netbox/tenancy/filtersets.py:241 +#: tenancy/filtersets.py:241 msgid "Tenant Group (slug)" msgstr "Група орендарів (скоречення)" -#: netbox/tenancy/forms/bulk_edit.py:66 +#: tenancy/forms/bulk_edit.py:66 msgid "Desciption" msgstr "Опис" -#: netbox/tenancy/forms/bulk_import.py:101 +#: tenancy/forms/bulk_import.py:101 msgid "Assigned contact" msgstr "Призначений контакт" -#: netbox/tenancy/models/contacts.py:32 +#: tenancy/models/contacts.py:32 msgid "contact group" msgstr "контактна група" -#: netbox/tenancy/models/contacts.py:33 +#: tenancy/models/contacts.py:33 msgid "contact groups" msgstr "контактні групи" -#: netbox/tenancy/models/contacts.py:48 +#: tenancy/models/contacts.py:48 msgid "contact role" msgstr "контактна роль" -#: netbox/tenancy/models/contacts.py:49 +#: tenancy/models/contacts.py:49 msgid "contact roles" msgstr "контактні ролі" -#: netbox/tenancy/models/contacts.py:68 +#: tenancy/models/contacts.py:68 msgid "title" msgstr "назва" -#: netbox/tenancy/models/contacts.py:73 +#: tenancy/models/contacts.py:73 msgid "phone" msgstr "телефон" -#: netbox/tenancy/models/contacts.py:78 +#: tenancy/models/contacts.py:78 msgid "email" msgstr "електронна скринька" -#: netbox/tenancy/models/contacts.py:87 +#: tenancy/models/contacts.py:87 msgid "link" msgstr "посилання" -#: netbox/tenancy/models/contacts.py:103 +#: tenancy/models/contacts.py:103 msgid "contact" msgstr "контакт" -#: netbox/tenancy/models/contacts.py:104 +#: tenancy/models/contacts.py:104 msgid "contacts" msgstr "контакти" -#: netbox/tenancy/models/contacts.py:153 +#: tenancy/models/contacts.py:153 msgid "contact assignment" msgstr "призначення контактів" -#: netbox/tenancy/models/contacts.py:154 +#: tenancy/models/contacts.py:154 msgid "contact assignments" msgstr "контактні завдання" -#: netbox/tenancy/models/contacts.py:170 +#: tenancy/models/contacts.py:170 #, python-brace-format msgid "Contacts cannot be assigned to this object type ({type})." msgstr "Контакти не можуть бути призначені для цього типу об'єкта ({type})." -#: netbox/tenancy/models/tenants.py:32 +#: tenancy/models/tenants.py:32 msgid "tenant group" msgstr "група орендарів" -#: netbox/tenancy/models/tenants.py:33 +#: tenancy/models/tenants.py:33 msgid "tenant groups" msgstr "групи орендарів" -#: netbox/tenancy/models/tenants.py:70 +#: tenancy/models/tenants.py:70 msgid "Tenant name must be unique per group." msgstr "Ім'я орендаря має бути унікальним для кожної групи." -#: netbox/tenancy/models/tenants.py:80 +#: tenancy/models/tenants.py:80 msgid "Tenant slug must be unique per group." msgstr "Слимак орендаря повинен бути унікальним для кожної групи." -#: netbox/tenancy/models/tenants.py:88 +#: tenancy/models/tenants.py:88 msgid "tenant" msgstr "орендар" -#: netbox/tenancy/models/tenants.py:89 +#: tenancy/models/tenants.py:89 msgid "tenants" msgstr "орендарів" -#: netbox/tenancy/tables/contacts.py:112 +#: tenancy/tables/contacts.py:112 msgid "Contact Title" msgstr "Назва контакту" -#: netbox/tenancy/tables/contacts.py:116 +#: tenancy/tables/contacts.py:116 msgid "Contact Phone" msgstr "Контактний телефон" -#: netbox/tenancy/tables/contacts.py:121 +#: tenancy/tables/contacts.py:121 msgid "Contact Email" msgstr "Контактна адреса електронної скриньки" -#: netbox/tenancy/tables/contacts.py:125 +#: tenancy/tables/contacts.py:125 msgid "Contact Address" msgstr "Контактна адреса" -#: netbox/tenancy/tables/contacts.py:129 +#: tenancy/tables/contacts.py:129 msgid "Contact Link" msgstr "Посилання на контакт" -#: netbox/tenancy/tables/contacts.py:133 +#: tenancy/tables/contacts.py:133 msgid "Contact Description" msgstr "Опис контакту" -#: netbox/users/filtersets.py:33 netbox/users/filtersets.py:73 +#: users/filtersets.py:33 users/filtersets.py:73 msgid "Permission (ID)" msgstr "Дозвіл (ідентифікатор)" -#: netbox/users/filtersets.py:38 netbox/users/filtersets.py:78 +#: users/filtersets.py:38 users/filtersets.py:78 msgid "Notification group (ID)" msgstr "Група повідомлень (ідентифікатор)" -#: netbox/users/forms/bulk_edit.py:26 +#: users/forms/bulk_edit.py:26 msgid "First name" msgstr "Ім'я" -#: netbox/users/forms/bulk_edit.py:31 +#: users/forms/bulk_edit.py:31 msgid "Last name" msgstr "Прізвище" -#: netbox/users/forms/bulk_edit.py:43 +#: users/forms/bulk_edit.py:43 msgid "Staff status" msgstr "Статус персоналу" -#: netbox/users/forms/bulk_edit.py:48 +#: users/forms/bulk_edit.py:48 msgid "Superuser status" msgstr "Статус суперкористувача" -#: netbox/users/forms/bulk_import.py:41 +#: users/forms/bulk_import.py:41 msgid "If no key is provided, one will be generated automatically." msgstr "Якщо ключ не надано, він буде згенерований автоматично." -#: netbox/users/forms/filtersets.py:51 netbox/users/tables.py:42 +#: users/forms/filtersets.py:51 users/tables.py:42 msgid "Is Staff" msgstr "Чи є персонал" -#: netbox/users/forms/filtersets.py:58 netbox/users/tables.py:45 +#: users/forms/filtersets.py:58 users/tables.py:45 msgid "Is Superuser" msgstr "Є суперкористувачем" -#: netbox/users/forms/filtersets.py:91 netbox/users/tables.py:86 +#: users/forms/filtersets.py:91 users/tables.py:86 msgid "Can View" msgstr "Може переглядати" -#: netbox/users/forms/filtersets.py:98 netbox/users/tables.py:89 +#: users/forms/filtersets.py:98 users/tables.py:89 msgid "Can Add" msgstr "Можете додати" -#: netbox/users/forms/filtersets.py:105 netbox/users/tables.py:92 +#: users/forms/filtersets.py:105 users/tables.py:92 msgid "Can Change" msgstr "Може змінитися" -#: netbox/users/forms/filtersets.py:112 netbox/users/tables.py:95 +#: users/forms/filtersets.py:112 users/tables.py:95 msgid "Can Delete" msgstr "Може видалити" -#: netbox/users/forms/model_forms.py:62 +#: users/forms/model_forms.py:62 msgid "User Interface" msgstr "Інтерфейс користувача" -#: netbox/users/forms/model_forms.py:114 +#: users/forms/model_forms.py:114 msgid "" "Keys must be at least 40 characters in length. Be sure to record " "your key prior to submitting this form, as it may no longer be " @@ -14681,7 +13939,7 @@ msgstr "" "запишіть свій ключ перед відправкою цієї форми, оскільки вона може " "більше не бути доступною після створення токена." -#: netbox/users/forms/model_forms.py:126 +#: users/forms/model_forms.py:126 msgid "" "Allowed IPv4/IPv6 networks from where the token can be used. Leave blank for" " no restrictions. Example: " @@ -14691,32 +13949,32 @@ msgstr "" "порожнім без обмежень. Приклад: 10.1.1.0/24,192.168.10.16/32,2001: дб " "8:1: :/64" -#: netbox/users/forms/model_forms.py:175 +#: users/forms/model_forms.py:175 msgid "Confirm password" msgstr "Підтвердити пароль" -#: netbox/users/forms/model_forms.py:178 +#: users/forms/model_forms.py:178 msgid "Enter the same password as before, for verification." msgstr "Введіть той же пароль, що і раніше, для перевірки." -#: netbox/users/forms/model_forms.py:227 +#: users/forms/model_forms.py:227 msgid "Passwords do not match! Please check your input and try again." msgstr "" "Паролі не збігаються! Будь ласка, перевірте свої дані та спробуйте ще раз." -#: netbox/users/forms/model_forms.py:294 +#: users/forms/model_forms.py:294 msgid "Additional actions" msgstr "Додаткові дії" -#: netbox/users/forms/model_forms.py:297 +#: users/forms/model_forms.py:297 msgid "Actions granted in addition to those listed above" msgstr "Дії, надані на додаток до перерахованих вище" -#: netbox/users/forms/model_forms.py:313 +#: users/forms/model_forms.py:313 msgid "Objects" msgstr "Об'єкти" -#: netbox/users/forms/model_forms.py:325 +#: users/forms/model_forms.py:325 msgid "" "JSON expression of a queryset filter that will return only permitted " "objects. Leave null to match all objects of this type. A list of multiple " @@ -14726,77 +13984,77 @@ msgstr "" "null, щоб відповідати всім об'єктам цього типу. Список декількох об'єктів " "призведе до логічної операції OR." -#: netbox/users/forms/model_forms.py:364 +#: users/forms/model_forms.py:364 msgid "At least one action must be selected." msgstr "Необхідно вибрати хоча б одну дію." -#: netbox/users/forms/model_forms.py:382 +#: users/forms/model_forms.py:382 #, python-brace-format msgid "Invalid filter for {model}: {error}" msgstr "Невірний фільтр для {model}: {error}" -#: netbox/users/models/permissions.py:39 +#: users/models/permissions.py:39 msgid "The list of actions granted by this permission" msgstr "Перелік дій, наданих цим дозволом" -#: netbox/users/models/permissions.py:44 +#: users/models/permissions.py:44 msgid "constraints" msgstr "обмеження" -#: netbox/users/models/permissions.py:45 +#: users/models/permissions.py:45 msgid "" "Queryset filter matching the applicable objects of the selected type(s)" msgstr "Фільтр Queryset, що відповідає відповідним об'єктам вибраних типів" -#: netbox/users/models/permissions.py:52 +#: users/models/permissions.py:52 msgid "permission" msgstr "дозвіл" -#: netbox/users/models/permissions.py:53 netbox/users/models/users.py:47 +#: users/models/permissions.py:53 users/models/users.py:47 msgid "permissions" msgstr "дозволи" -#: netbox/users/models/preferences.py:29 netbox/users/models/preferences.py:30 +#: users/models/preferences.py:29 users/models/preferences.py:30 msgid "user preferences" msgstr "налаштування користувача" -#: netbox/users/models/preferences.py:97 +#: users/models/preferences.py:97 #, python-brace-format msgid "Key '{path}' is a leaf node; cannot assign new keys" msgstr "Ключ '{path}'є листовим вузлом; не вдається призначити нові ключі" -#: netbox/users/models/preferences.py:109 +#: users/models/preferences.py:109 #, python-brace-format msgid "Key '{path}' is a dictionary; cannot assign a non-dictionary value" msgstr "" "Ключ '{path}'є словником; не може призначити значення, яке не є словником" -#: netbox/users/models/tokens.py:36 +#: users/models/tokens.py:36 msgid "expires" msgstr "спливає" -#: netbox/users/models/tokens.py:41 +#: users/models/tokens.py:41 msgid "last used" msgstr "востаннє використаний" -#: netbox/users/models/tokens.py:46 +#: users/models/tokens.py:46 msgid "key" msgstr "ключ" -#: netbox/users/models/tokens.py:52 +#: users/models/tokens.py:52 msgid "write enabled" msgstr "запис увімкнено" -#: netbox/users/models/tokens.py:54 +#: users/models/tokens.py:54 msgid "Permit create/update/delete operations using this key" msgstr "" "Дозволити створення/оновлення/видалення операцій за допомогою цього ключа" -#: netbox/users/models/tokens.py:65 +#: users/models/tokens.py:65 msgid "allowed IPs" msgstr "дозволені IP-адреси" -#: netbox/users/models/tokens.py:67 +#: users/models/tokens.py:67 msgid "" "Allowed IPv4/IPv6 networks from where the token can be used. Leave blank for" " no restrictions. Ex: \"10.1.1.0/24, 192.168.10.16/32, 2001:DB8:1::/64\"" @@ -14805,42 +14063,42 @@ msgstr "" "порожнім без обмежень. Наприклад: \"10.1.1.0/24, 192.168.10.16/32, " "2001:DB8:1: :/64\"" -#: netbox/users/models/tokens.py:75 +#: users/models/tokens.py:75 msgid "token" msgstr "токен" -#: netbox/users/models/tokens.py:76 +#: users/models/tokens.py:76 msgid "tokens" msgstr "жетонів" -#: netbox/users/models/users.py:57 netbox/vpn/models/crypto.py:42 +#: users/models/users.py:57 vpn/models/crypto.py:42 msgid "group" msgstr "групи" -#: netbox/users/models/users.py:92 +#: users/models/users.py:92 msgid "user" msgstr "користувач" -#: netbox/users/models/users.py:104 +#: users/models/users.py:104 msgid "A user with this username already exists." msgstr "Користувач з цим ім'ям користувача вже існує." -#: netbox/users/tables.py:98 +#: users/tables.py:98 msgid "Custom Actions" msgstr "Користувацькі дії" -#: netbox/utilities/api.py:153 +#: utilities/api.py:153 #, python-brace-format msgid "Related object not found using the provided attributes: {params}" msgstr "" "Пов'язаний об'єкт не знайдено за допомогою наданих атрибутів: {params}" -#: netbox/utilities/api.py:156 +#: utilities/api.py:156 #, python-brace-format msgid "Multiple objects match the provided attributes: {params}" msgstr "Кілька об'єктів відповідають наданим атрибутам: {params}" -#: netbox/utilities/api.py:168 +#: utilities/api.py:168 #, python-brace-format msgid "" "Related objects must be referenced by numeric ID or by dictionary of " @@ -14849,42 +14107,42 @@ msgstr "" "Пов'язані об'єкти повинні посилатися числовим ідентифікатором або словником " "атрибутів. Отримано невизнане значення: {value}" -#: netbox/utilities/api.py:177 +#: utilities/api.py:177 #, python-brace-format msgid "Related object not found using the provided numeric ID: {id}" msgstr "" "Пов'язаний об'єкт не знайдено за допомогою вказаного числового " "ідентифікатора: {id}" -#: netbox/utilities/choices.py:19 +#: utilities/choices.py:19 #, python-brace-format msgid "{name} has a key defined but CHOICES is not a list" msgstr "{name} має визначений ключ, але CHOICES не є списком" -#: netbox/utilities/conversion.py:19 +#: utilities/conversion.py:19 msgid "Weight must be a positive number" msgstr "Вага повинна бути позитивним числом" -#: netbox/utilities/conversion.py:21 +#: utilities/conversion.py:21 #, python-brace-format msgid "Invalid value '{weight}' for weight (must be a number)" msgstr "Невірне значення '{weight}'для ваги (має бути число)" -#: netbox/utilities/conversion.py:32 netbox/utilities/conversion.py:62 +#: utilities/conversion.py:32 utilities/conversion.py:62 #, python-brace-format msgid "Unknown unit {unit}. Must be one of the following: {valid_units}" msgstr "Невідома одиниця {unit}. Повинна бути одна з наступних: {valid_units}" -#: netbox/utilities/conversion.py:45 +#: utilities/conversion.py:45 msgid "Length must be a positive number" msgstr "Довжина повинна бути додатним числом" -#: netbox/utilities/conversion.py:47 +#: utilities/conversion.py:47 #, python-brace-format msgid "Invalid value '{length}' for length (must be a number)" msgstr "Невірне значення '{length}'для довжини (має бути число)" -#: netbox/utilities/error_handlers.py:31 +#: utilities/error_handlers.py:31 #, python-brace-format msgid "" "Unable to delete {objects}. {count} dependent objects were " @@ -14893,15 +14151,15 @@ msgstr "" "Неможливо видалити {objects}. {count} знайдені залежні " "об'єкти: " -#: netbox/utilities/error_handlers.py:33 +#: utilities/error_handlers.py:33 msgid "More than 50" msgstr "Більше 50" -#: netbox/utilities/fields.py:30 +#: utilities/fields.py:30 msgid "RGB color in hexadecimal. Example: " msgstr "RGB-колір шістнадцятковим представленням. Приклад: " -#: netbox/utilities/fields.py:159 +#: utilities/fields.py:159 #, python-format msgid "" "%s(%r) is invalid. to_model parameter to CounterCacheField must be a string " @@ -14910,7 +14168,7 @@ msgstr "" "%s(%r) невырний. Параметр to_model до CounterCacheField повинен бути рядком " "у форматі 'app.model'" -#: netbox/utilities/fields.py:169 +#: utilities/fields.py:169 #, python-format msgid "" "%s(%r) is invalid. to_field parameter to CounterCacheField must be a string " @@ -14919,36 +14177,36 @@ msgstr "" "%s(%r) невірний. Параметр to_field до CounterCacheField повинен бути рядком " "у форматі 'field'" -#: netbox/utilities/forms/bulk_import.py:23 +#: utilities/forms/bulk_import.py:23 msgid "Enter object data in CSV, JSON or YAML format." msgstr "Введіть дані об'єкта у форматі CSV, JSON або YAML." -#: netbox/utilities/forms/bulk_import.py:36 +#: utilities/forms/bulk_import.py:36 msgid "CSV delimiter" msgstr "Розмежувач CSV" -#: netbox/utilities/forms/bulk_import.py:37 +#: utilities/forms/bulk_import.py:37 msgid "The character which delimits CSV fields. Applies only to CSV format." msgstr "Символ, який розмежовує поля CSV. Застосовується лише до формату CSV." -#: netbox/utilities/forms/bulk_import.py:51 +#: utilities/forms/bulk_import.py:51 msgid "Form data must be empty when uploading/selecting a file." msgstr "Дані форми повинні бути порожніми під час завантаження/вибору файлу." -#: netbox/utilities/forms/bulk_import.py:80 +#: utilities/forms/bulk_import.py:80 #, python-brace-format msgid "Unknown data format: {format}" msgstr "Невідомий формат даних: {format}" -#: netbox/utilities/forms/bulk_import.py:100 +#: utilities/forms/bulk_import.py:100 msgid "Unable to detect data format. Please specify." msgstr "Не вдається визначити формат даних. Будь ласка, уточніть." -#: netbox/utilities/forms/bulk_import.py:123 +#: utilities/forms/bulk_import.py:123 msgid "Invalid CSV delimiter" msgstr "Невірний роздільник CSV" -#: netbox/utilities/forms/bulk_import.py:167 +#: utilities/forms/bulk_import.py:167 msgid "" "Invalid YAML data. Data must be in the form of multiple documents, or a " "single document comprising a list of dictionaries." @@ -14956,7 +14214,7 @@ msgstr "" "Невірні дані YAML. Дані повинні бути у вигляді декількох документів або " "одного документа, що містить перелік словників." -#: netbox/utilities/forms/fields/array.py:20 +#: utilities/forms/fields/array.py:20 #, python-brace-format msgid "" "Invalid list ({value}). Must be numeric and ranges must be in ascending " @@ -14965,7 +14223,7 @@ msgstr "" "Невірний список ({value}). Повинен бути числовим, а діапазони повинні бути в" " порядку зростання." -#: netbox/utilities/forms/fields/array.py:40 +#: utilities/forms/fields/array.py:40 msgid "" "Specify one or more numeric ranges separated by commas. Example: " "1-5,20-30" @@ -14973,7 +14231,7 @@ msgstr "" "Вкажіть один або кілька числових діапазонів, розділених комами. Приклад: " "1-5,20-30" -#: netbox/utilities/forms/fields/array.py:47 +#: utilities/forms/fields/array.py:47 #, python-brace-format msgid "" "Invalid ranges ({value}). Must be a range of integers in ascending order." @@ -14981,18 +14239,17 @@ msgstr "" "Недійсні діапазони ({value}). Повинен бути діапазон цілих чисел у порядку " "зростання." -#: netbox/utilities/forms/fields/csv.py:44 +#: utilities/forms/fields/csv.py:44 #, python-brace-format msgid "Invalid value for a multiple choice field: {value}" msgstr "Невірне значення для поля з множинним вибором: {value}" -#: netbox/utilities/forms/fields/csv.py:57 -#: netbox/utilities/forms/fields/csv.py:78 +#: utilities/forms/fields/csv.py:57 utilities/forms/fields/csv.py:78 #, python-format msgid "Object not found: %(value)s" msgstr "Об'єкт не знайдено: %(value)s" -#: netbox/utilities/forms/fields/csv.py:65 +#: utilities/forms/fields/csv.py:65 #, python-brace-format msgid "" "\"{value}\" is not a unique value for this field; multiple objects were " @@ -15001,20 +14258,20 @@ msgstr "" "\"{value}\" не є унікальним значенням для цього поля; було знайдено декілька" " об'єктів" -#: netbox/utilities/forms/fields/csv.py:69 +#: utilities/forms/fields/csv.py:69 #, python-brace-format msgid "\"{field_name}\" is an invalid accessor field name." msgstr "\"{field_name}\" є недійсним ім'ям поля доступу." -#: netbox/utilities/forms/fields/csv.py:101 +#: utilities/forms/fields/csv.py:101 msgid "Object type must be specified as \".\"" msgstr "Тип об'єкта повинен бути вказаний як \".\"" -#: netbox/utilities/forms/fields/csv.py:105 +#: utilities/forms/fields/csv.py:105 msgid "Invalid object type" msgstr "Невірний тип об'єкта" -#: netbox/utilities/forms/fields/expandable.py:25 +#: utilities/forms/fields/expandable.py:25 msgid "" "Alphanumeric ranges are supported for bulk creation. Mixed cases and types " "within a single range are not supported (example: " @@ -15024,7 +14281,7 @@ msgstr "" "відмінки і типи в межах одного діапазону не підтримуються (приклад: " "[Ге, хе] -0/0/ [0-9])." -#: netbox/utilities/forms/fields/expandable.py:46 +#: utilities/forms/fields/expandable.py:46 msgid "" "Specify a numeric range to create multiple IPs.
Example: " "192.0.2.[1,5,100-254]/24" @@ -15032,7 +14289,7 @@ msgstr "" "Вкажіть числовий діапазон для створення декількох IP-адрес.
Приклад: " "192.0.2. [1,5100-254] /24" -#: netbox/utilities/forms/fields/fields.py:31 +#: utilities/forms/fields/fields.py:31 #, python-brace-format msgid "" " Підтримується синтаксис Markdown " -#: netbox/utilities/forms/fields/fields.py:48 +#: utilities/forms/fields/fields.py:48 msgid "URL-friendly unique shorthand" msgstr "Унікальна скорочення, зручна для URL-адреси" -#: netbox/utilities/forms/fields/fields.py:101 +#: utilities/forms/fields/fields.py:101 msgid "Enter context data in JSON format." msgstr "Введіть контекстні дані в JSON формат." -#: netbox/utilities/forms/fields/fields.py:124 +#: utilities/forms/fields/fields.py:124 msgid "MAC address must be in EUI-48 format" msgstr "MAC-адреса повинна бути у форматі EUI-48" -#: netbox/utilities/forms/forms.py:52 +#: utilities/forms/forms.py:52 msgid "Use regular expressions" msgstr "Використання регулярних виразів" -#: netbox/utilities/forms/forms.py:75 +#: utilities/forms/forms.py:75 msgid "" "Numeric ID of an existing object to update (if not creating a new object)" msgstr "" "Числовий ідентифікатор існуючого об'єкта для оновлення (якщо не створюється " "новий об'єкт)" -#: netbox/utilities/forms/forms.py:92 +#: utilities/forms/forms.py:92 #, python-brace-format msgid "Unrecognized header: {name}" msgstr "Нерозпізнаний заголовок: {name}" -#: netbox/utilities/forms/forms.py:118 +#: utilities/forms/forms.py:118 msgid "Available Columns" msgstr "Доступні колонки" -#: netbox/utilities/forms/forms.py:126 +#: utilities/forms/forms.py:126 msgid "Selected Columns" msgstr "Вибрані стовпці" -#: netbox/utilities/forms/mixins.py:44 +#: utilities/forms/mixins.py:44 msgid "" "This object has been modified since the form was rendered. Please consult " "the object's change log for details." @@ -15085,13 +14342,13 @@ msgstr "" "Цей об'єкт був змінений з моменту візуалізації форми. Будь ласка, зверніться" " до журналу змін об'єкта для отримання детальної інформації." -#: netbox/utilities/forms/utils.py:42 netbox/utilities/forms/utils.py:68 -#: netbox/utilities/forms/utils.py:85 netbox/utilities/forms/utils.py:87 +#: utilities/forms/utils.py:42 utilities/forms/utils.py:68 +#: utilities/forms/utils.py:85 utilities/forms/utils.py:87 #, python-brace-format msgid "Range \"{value}\" is invalid." msgstr "Діапазон \"{value}\" є невірним." -#: netbox/utilities/forms/utils.py:74 +#: utilities/forms/utils.py:74 #, python-brace-format msgid "" "Invalid range: Ending value ({end}) must be greater than beginning value " @@ -15100,70 +14357,70 @@ msgstr "" "Невірний діапазон: Кінцеве значення ({end}) має бути більше початкового " "значення ({begin})." -#: netbox/utilities/forms/utils.py:232 +#: utilities/forms/utils.py:232 #, python-brace-format msgid "Duplicate or conflicting column header for \"{field}\"" msgstr "Дублювання або конфлікт заголовка стовпця для \"{field}\"" -#: netbox/utilities/forms/utils.py:238 +#: utilities/forms/utils.py:238 #, python-brace-format msgid "Duplicate or conflicting column header for \"{header}\"" msgstr "Дублювання або конфлікт заголовка стовпця для \"{header}\"" -#: netbox/utilities/forms/utils.py:247 +#: utilities/forms/utils.py:247 #, python-brace-format msgid "Row {row}: Expected {count_expected} columns but found {count_found}" msgstr "" "Ряд {row}: Очікується {count_expected} стовпці, але знайдено {count_found}" -#: netbox/utilities/forms/utils.py:270 +#: utilities/forms/utils.py:270 #, python-brace-format msgid "Unexpected column header \"{field}\" found." msgstr "Знайдено несподіваний заголовок стовпця \"{field}\"." -#: netbox/utilities/forms/utils.py:272 +#: utilities/forms/utils.py:272 #, python-brace-format msgid "Column \"{field}\" is not a related object; cannot use dots" msgstr "" "Колонка \"{field}\" не є спорідненим об'єктом; не може використовувати точки" -#: netbox/utilities/forms/utils.py:276 +#: utilities/forms/utils.py:276 #, python-brace-format msgid "Invalid related object attribute for column \"{field}\": {to_field}" msgstr "Невірний атрибут пов'язаного об'єкта для стовпця \"{field}\": {to_field}" -#: netbox/utilities/forms/utils.py:284 +#: utilities/forms/utils.py:284 #, python-brace-format msgid "Required column header \"{header}\" not found." msgstr "Не знайдено необхідний заголовок стовпця \"{header}\"." -#: netbox/utilities/forms/widgets/apiselect.py:124 +#: utilities/forms/widgets/apiselect.py:124 #, python-brace-format msgid "Missing required value for dynamic query param: '{dynamic_params}'" msgstr "" "Відсутнє необхідне значення для параметра динамічного запиту: " "'{dynamic_params}'" -#: netbox/utilities/forms/widgets/apiselect.py:141 +#: utilities/forms/widgets/apiselect.py:141 #, python-brace-format msgid "Missing required value for static query param: '{static_params}'" msgstr "" "Відсутнє необхідне значення для параметра статичного запиту: " "'{static_params}'" -#: netbox/utilities/password_validation.py:13 +#: utilities/password_validation.py:13 msgid "Password must have at least one numeral." msgstr "Пароль повинен мати хоча б одну цифру." -#: netbox/utilities/password_validation.py:18 +#: utilities/password_validation.py:18 msgid "Password must have at least one uppercase letter." msgstr "Пароль повинен мати хоча б одну велику літеру." -#: netbox/utilities/password_validation.py:23 +#: utilities/password_validation.py:23 msgid "Password must have at least one lowercase letter." msgstr "Пароль повинен мати хоча б одну малу літеру." -#: netbox/utilities/password_validation.py:27 +#: utilities/password_validation.py:27 msgid "" "Your password must contain at least one numeral, one uppercase letter and " "one lowercase letter." @@ -15171,7 +14428,7 @@ msgstr "" "Ваш пароль повинен містити принаймні одну цифру, одну велику літеру та одну " "малу літеру." -#: netbox/utilities/permissions.py:42 +#: utilities/permissions.py:42 #, python-brace-format msgid "" "Invalid permission name: {name}. Must be in the format " @@ -15180,126 +14437,126 @@ msgstr "" "Невірна назва дозволу: {name}. Повинен бути у форматі " "._" -#: netbox/utilities/permissions.py:60 +#: utilities/permissions.py:60 #, python-brace-format msgid "Unknown app_label/model_name for {name}" msgstr "Невідома мітка_додатка/назва_моделі для {name}" -#: netbox/utilities/request.py:76 +#: utilities/request.py:76 #, python-brace-format msgid "Invalid IP address set for {header}: {ip}" msgstr "Невірна IP-адреса, встановлена для {header}: {ip}" -#: netbox/utilities/tables.py:47 +#: utilities/tables.py:47 #, python-brace-format msgid "A column named {name} is already defined for table {table_name}" msgstr "Стовпчик з назвою {name} вже визначено для таблиці {table_name}" -#: netbox/utilities/templates/builtins/customfield_value.html:30 +#: utilities/templates/builtins/customfield_value.html:30 msgid "Not defined" msgstr "Не визначено" -#: netbox/utilities/templates/buttons/bookmark.html:9 +#: utilities/templates/buttons/bookmark.html:9 msgid "Unbookmark" msgstr "Зняти закладку" -#: netbox/utilities/templates/buttons/bookmark.html:13 +#: utilities/templates/buttons/bookmark.html:13 msgid "Bookmark" msgstr "Закладка" -#: netbox/utilities/templates/buttons/clone.html:4 +#: utilities/templates/buttons/clone.html:4 msgid "Clone" msgstr "Клонувати" -#: netbox/utilities/templates/buttons/export.html:7 +#: utilities/templates/buttons/export.html:7 msgid "Current View" msgstr "Поточний вид" -#: netbox/utilities/templates/buttons/export.html:8 +#: utilities/templates/buttons/export.html:8 msgid "All Data" msgstr "Всі дані" -#: netbox/utilities/templates/buttons/export.html:28 +#: utilities/templates/buttons/export.html:28 msgid "Add export template" msgstr "Додати шаблон експорту" -#: netbox/utilities/templates/buttons/import.html:4 +#: utilities/templates/buttons/import.html:4 msgid "Import" msgstr "Імпорт" -#: netbox/utilities/templates/buttons/subscribe.html:10 +#: utilities/templates/buttons/subscribe.html:10 msgid "Unsubscribe" msgstr "Відписатися" -#: netbox/utilities/templates/buttons/subscribe.html:14 +#: utilities/templates/buttons/subscribe.html:14 msgid "Subscribe" msgstr "Підписатися" -#: netbox/utilities/templates/form_helpers/render_field.html:41 +#: utilities/templates/form_helpers/render_field.html:41 msgid "Copy to clipboard" msgstr "Копіювати в буфер обміну" -#: netbox/utilities/templates/form_helpers/render_field.html:57 +#: utilities/templates/form_helpers/render_field.html:57 msgid "This field is required" msgstr "Це поле обов'язкове для заповнення" -#: netbox/utilities/templates/form_helpers/render_field.html:70 +#: utilities/templates/form_helpers/render_field.html:70 msgid "Set Null" msgstr "Встановити нуль" -#: netbox/utilities/templates/helpers/applied_filters.html:11 +#: utilities/templates/helpers/applied_filters.html:11 msgid "Clear all" msgstr "Очистити все" -#: netbox/utilities/templates/helpers/table_config_form.html:8 +#: utilities/templates/helpers/table_config_form.html:8 msgid "Table Configuration" msgstr "Налаштування таблиці" -#: netbox/utilities/templates/helpers/table_config_form.html:31 +#: utilities/templates/helpers/table_config_form.html:31 msgid "Move Up" msgstr "Рухатися вгору" -#: netbox/utilities/templates/helpers/table_config_form.html:34 +#: utilities/templates/helpers/table_config_form.html:34 msgid "Move Down" msgstr "Рухатися вниз" -#: netbox/utilities/templates/navigation/menu.html:14 +#: utilities/templates/navigation/menu.html:14 msgid "Search…" msgstr "Пошук..." -#: netbox/utilities/templates/navigation/menu.html:14 +#: utilities/templates/navigation/menu.html:14 msgid "Search NetBox" msgstr "Пошук у NetBox" -#: netbox/utilities/templates/widgets/apiselect.html:7 +#: utilities/templates/widgets/apiselect.html:7 msgid "Open selector" msgstr "Відкрити селектор" -#: netbox/utilities/templates/widgets/markdown_input.html:6 +#: utilities/templates/widgets/markdown_input.html:6 msgid "Write" msgstr "Написати" -#: netbox/utilities/testing/views.py:632 +#: utilities/testing/views.py:632 msgid "The test must define csv_update_data." msgstr "Тест повинен визначити csv_update_data." -#: netbox/utilities/validators.py:65 +#: utilities/validators.py:65 #, python-brace-format msgid "{value} is not a valid regular expression." msgstr "{value} не є дійсним регулярним виразом." -#: netbox/utilities/views.py:57 +#: utilities/views.py:57 #, python-brace-format msgid "{self.__class__.__name__} must implement get_required_permission()" msgstr "" "{self.__class__.__name__} повинен реалізувати get_required_permissions ()" -#: netbox/utilities/views.py:93 +#: utilities/views.py:93 #, python-brace-format msgid "{class_name} must implement get_required_permission()" msgstr "{class_name} повинен реалізувати get_required_permissions ()" -#: netbox/utilities/views.py:117 +#: utilities/views.py:117 #, python-brace-format msgid "" "{class_name} has no queryset defined. ObjectPermissionRequiredMixin may only" @@ -15309,63 +14566,61 @@ msgstr "" "ObjectPermissionRequiredMixin можна використовувати лише у представленнях, " "які визначають базовий набір запитів" -#: netbox/virtualization/filtersets.py:79 +#: virtualization/filtersets.py:79 msgid "Parent group (ID)" msgstr "Батьківська група (ідентифікатор)" -#: netbox/virtualization/filtersets.py:85 +#: virtualization/filtersets.py:85 msgid "Parent group (slug)" msgstr "Батьківська група (скоречення)" -#: netbox/virtualization/filtersets.py:89 -#: netbox/virtualization/filtersets.py:141 +#: virtualization/filtersets.py:89 virtualization/filtersets.py:141 msgid "Cluster type (ID)" msgstr "Тип кластера (ідентифікатор)" -#: netbox/virtualization/filtersets.py:151 -#: netbox/virtualization/filtersets.py:271 +#: virtualization/filtersets.py:151 virtualization/filtersets.py:271 msgid "Cluster (ID)" msgstr "Кластер (ідентифікатор)" -#: netbox/virtualization/forms/bulk_edit.py:166 -#: netbox/virtualization/models/virtualmachines.py:115 +#: virtualization/forms/bulk_edit.py:166 +#: virtualization/models/virtualmachines.py:115 msgid "vCPUs" msgstr "vCPU" -#: netbox/virtualization/forms/bulk_edit.py:170 +#: virtualization/forms/bulk_edit.py:170 msgid "Memory (MB)" msgstr "Пам'ять (МБ)" -#: netbox/virtualization/forms/bulk_edit.py:174 +#: virtualization/forms/bulk_edit.py:174 msgid "Disk (GB)" msgstr "Диск (ГБ)" -#: netbox/virtualization/forms/bulk_edit.py:334 -#: netbox/virtualization/forms/filtersets.py:251 +#: virtualization/forms/bulk_edit.py:334 +#: virtualization/forms/filtersets.py:251 msgid "Size (GB)" msgstr "Розмір (ГБ)" -#: netbox/virtualization/forms/bulk_import.py:44 +#: virtualization/forms/bulk_import.py:44 msgid "Type of cluster" msgstr "Тип кластера" -#: netbox/virtualization/forms/bulk_import.py:51 +#: virtualization/forms/bulk_import.py:51 msgid "Assigned cluster group" msgstr "Призначена група кластерів" -#: netbox/virtualization/forms/bulk_import.py:96 +#: virtualization/forms/bulk_import.py:96 msgid "Assigned cluster" msgstr "Призначений кластер" -#: netbox/virtualization/forms/bulk_import.py:103 +#: virtualization/forms/bulk_import.py:103 msgid "Assigned device within cluster" msgstr "Призначений пристрій у кластері" -#: netbox/virtualization/forms/filtersets.py:183 +#: virtualization/forms/filtersets.py:183 msgid "Serial number" msgstr "Серійний номер" -#: netbox/virtualization/forms/model_forms.py:153 +#: virtualization/forms/model_forms.py:153 #, python-brace-format msgid "" "{device} belongs to a different site ({device_site}) than the cluster " @@ -15374,52 +14629,52 @@ msgstr "" "{device} належить до іншого тех. майданчику ({device_site}) ніж кластер " "({cluster_site})" -#: netbox/virtualization/forms/model_forms.py:192 +#: virtualization/forms/model_forms.py:192 msgid "Optionally pin this VM to a specific host device within the cluster" msgstr "" "За бажанням прикріпити цю віртуальну машину до певного хост-пристрою в " "кластері" -#: netbox/virtualization/forms/model_forms.py:221 +#: virtualization/forms/model_forms.py:221 msgid "Site/Cluster" msgstr "Тех. майданчик/Кластер" -#: netbox/virtualization/forms/model_forms.py:244 +#: virtualization/forms/model_forms.py:244 msgid "Disk size is managed via the attachment of virtual disks." msgstr "" "Управління розміром диска здійснюється за допомогою приєднання віртуальних " "дисків." -#: netbox/virtualization/forms/model_forms.py:372 -#: netbox/virtualization/tables/virtualmachines.py:111 +#: virtualization/forms/model_forms.py:372 +#: virtualization/tables/virtualmachines.py:111 msgid "Disk" msgstr "Диск" -#: netbox/virtualization/models/clusters.py:25 +#: virtualization/models/clusters.py:25 msgid "cluster type" msgstr "тип кластера" -#: netbox/virtualization/models/clusters.py:26 +#: virtualization/models/clusters.py:26 msgid "cluster types" msgstr "типи кластерів" -#: netbox/virtualization/models/clusters.py:45 +#: virtualization/models/clusters.py:45 msgid "cluster group" msgstr "кластерна група" -#: netbox/virtualization/models/clusters.py:46 +#: virtualization/models/clusters.py:46 msgid "cluster groups" msgstr "кластерні групи" -#: netbox/virtualization/models/clusters.py:121 +#: virtualization/models/clusters.py:121 msgid "cluster" msgstr "кластер" -#: netbox/virtualization/models/clusters.py:122 +#: virtualization/models/clusters.py:122 msgid "clusters" msgstr "кластери" -#: netbox/virtualization/models/clusters.py:141 +#: virtualization/models/clusters.py:141 #, python-brace-format msgid "" "{count} devices are assigned as hosts for this cluster but are not in site " @@ -15428,51 +14683,51 @@ msgstr "" "{count} пристрої призначені як хости для цього кластера, але не знаходяться " "на тех. майданчику{site}" -#: netbox/virtualization/models/virtualmachines.py:123 +#: virtualization/models/virtualmachines.py:123 msgid "memory (MB)" msgstr "пам'ять (МБ)" -#: netbox/virtualization/models/virtualmachines.py:128 +#: virtualization/models/virtualmachines.py:128 msgid "disk (MB)" msgstr "диск (МБ)" -#: netbox/virtualization/models/virtualmachines.py:166 +#: virtualization/models/virtualmachines.py:166 msgid "Virtual machine name must be unique per cluster." msgstr "Ім'я віртуальної машини має бути унікальним для кожного кластера." -#: netbox/virtualization/models/virtualmachines.py:169 +#: virtualization/models/virtualmachines.py:169 msgid "virtual machine" msgstr "віртуальна машина" -#: netbox/virtualization/models/virtualmachines.py:170 +#: virtualization/models/virtualmachines.py:170 msgid "virtual machines" msgstr "віртуальні машини" -#: netbox/virtualization/models/virtualmachines.py:184 +#: virtualization/models/virtualmachines.py:184 msgid "A virtual machine must be assigned to a site and/or cluster." msgstr "" "Віртуальна машина повинна бути призначена для тех. майданчику та/або " "кластеру." -#: netbox/virtualization/models/virtualmachines.py:191 +#: virtualization/models/virtualmachines.py:191 #, python-brace-format msgid "" "The selected cluster ({cluster}) is not assigned to this site ({site})." msgstr "" "Вибраний кластер ({cluster}) не присвоюється цьому тех. майданчику ({site})." -#: netbox/virtualization/models/virtualmachines.py:198 +#: virtualization/models/virtualmachines.py:198 msgid "Must specify a cluster when assigning a host device." msgstr "Необхідно вказати кластер при призначенні хост-пристрою." -#: netbox/virtualization/models/virtualmachines.py:203 +#: virtualization/models/virtualmachines.py:203 #, python-brace-format msgid "" "The selected device ({device}) is not assigned to this cluster ({cluster})." msgstr "" "Обраний пристрій ({device}) не присвоюється цьому кластеру ({cluster})." -#: netbox/virtualization/models/virtualmachines.py:215 +#: virtualization/models/virtualmachines.py:215 #, python-brace-format msgid "" "The specified disk size ({size}) must match the aggregate size of assigned " @@ -15481,17 +14736,17 @@ msgstr "" "Зазначений розмір диска ({size}) повинен відповідати сукупному розміру " "призначених віртуальних дисків ({total_size})." -#: netbox/virtualization/models/virtualmachines.py:229 +#: virtualization/models/virtualmachines.py:229 #, python-brace-format msgid "Must be an IPv{family} address. ({ip} is an IPv{version} address.)" msgstr "Повинен бути IPV{family} адреса. ({ip} є IPV{version} адреса.)" -#: netbox/virtualization/models/virtualmachines.py:238 +#: virtualization/models/virtualmachines.py:238 #, python-brace-format msgid "The specified IP address ({ip}) is not assigned to this VM." msgstr "Зазначена IP-адреса ({ip}) не присвоюється цієї віртуальній машині." -#: netbox/virtualization/models/virtualmachines.py:396 +#: virtualization/models/virtualmachines.py:396 #, python-brace-format msgid "" "The selected parent interface ({parent}) belongs to a different virtual " @@ -15500,7 +14755,7 @@ msgstr "" "Вибраний батьківський інтерфейс ({parent}) належить до іншої віртуальної " "машини ({virtual_machine})." -#: netbox/virtualization/models/virtualmachines.py:411 +#: virtualization/models/virtualmachines.py:411 #, python-brace-format msgid "" "The selected bridge interface ({bridge}) belongs to a different virtual " @@ -15509,7 +14764,7 @@ msgstr "" "Вибраний інтерфейс моста ({bridge}) належить до іншої віртуальної машини " "({virtual_machine})." -#: netbox/virtualization/models/virtualmachines.py:422 +#: virtualization/models/virtualmachines.py:422 #, python-brace-format msgid "" "The untagged VLAN ({untagged_vlan}) must belong to the same site as the " @@ -15519,400 +14774,393 @@ msgstr "" " і батьківська віртуальна машина інтерфейсу, або ж вона повинна бути " "глобальною." -#: netbox/virtualization/models/virtualmachines.py:434 +#: virtualization/models/virtualmachines.py:434 msgid "size (MB)" msgstr "розмір (МБ)" -#: netbox/virtualization/models/virtualmachines.py:438 +#: virtualization/models/virtualmachines.py:438 msgid "virtual disk" msgstr "віртуальний диск" -#: netbox/virtualization/models/virtualmachines.py:439 +#: virtualization/models/virtualmachines.py:439 msgid "virtual disks" msgstr "віртуальні диски" -#: netbox/virtualization/views.py:275 +#: virtualization/views.py:275 #, python-brace-format msgid "Added {count} devices to cluster {cluster}" msgstr "Додано {count} пристрої для кластеризації {cluster}" -#: netbox/virtualization/views.py:310 +#: virtualization/views.py:310 #, python-brace-format msgid "Removed {count} devices from cluster {cluster}" msgstr "Вилучено {count} пристрої з кластера {cluster}" -#: netbox/vpn/choices.py:31 +#: vpn/choices.py:31 msgid "IPsec - Transport" msgstr "IPsec - Транспорт" -#: netbox/vpn/choices.py:32 +#: vpn/choices.py:32 msgid "IPsec - Tunnel" msgstr "IPsec - тунель" -#: netbox/vpn/choices.py:33 +#: vpn/choices.py:33 msgid "IP-in-IP" msgstr "IP-адреси в IP" -#: netbox/vpn/choices.py:34 +#: vpn/choices.py:34 msgid "GRE" msgstr "ГРЕ" -#: netbox/vpn/choices.py:56 +#: vpn/choices.py:56 msgid "Hub" msgstr "Хаб" -#: netbox/vpn/choices.py:57 +#: vpn/choices.py:57 msgid "Spoke" msgstr "говорив" -#: netbox/vpn/choices.py:80 +#: vpn/choices.py:80 msgid "Aggressive" msgstr "Агресивний" -#: netbox/vpn/choices.py:81 +#: vpn/choices.py:81 msgid "Main" msgstr "Головний" -#: netbox/vpn/choices.py:92 +#: vpn/choices.py:92 msgid "Pre-shared keys" msgstr "Попередньо спільні ключі" -#: netbox/vpn/choices.py:93 +#: vpn/choices.py:93 msgid "Certificates" msgstr "Сертифікати" -#: netbox/vpn/choices.py:94 +#: vpn/choices.py:94 msgid "RSA signatures" msgstr "Підписи RSA" -#: netbox/vpn/choices.py:95 +#: vpn/choices.py:95 msgid "DSA signatures" msgstr "Підписи DSA" -#: netbox/vpn/choices.py:178 netbox/vpn/choices.py:179 -#: netbox/vpn/choices.py:180 netbox/vpn/choices.py:181 -#: netbox/vpn/choices.py:182 netbox/vpn/choices.py:183 -#: netbox/vpn/choices.py:184 netbox/vpn/choices.py:185 -#: netbox/vpn/choices.py:186 netbox/vpn/choices.py:187 -#: netbox/vpn/choices.py:188 netbox/vpn/choices.py:189 -#: netbox/vpn/choices.py:190 netbox/vpn/choices.py:191 -#: netbox/vpn/choices.py:192 netbox/vpn/choices.py:193 -#: netbox/vpn/choices.py:194 netbox/vpn/choices.py:195 -#: netbox/vpn/choices.py:196 netbox/vpn/choices.py:197 -#: netbox/vpn/choices.py:198 netbox/vpn/choices.py:199 -#: netbox/vpn/choices.py:200 netbox/vpn/choices.py:201 +#: vpn/choices.py:178 vpn/choices.py:179 vpn/choices.py:180 vpn/choices.py:181 +#: vpn/choices.py:182 vpn/choices.py:183 vpn/choices.py:184 vpn/choices.py:185 +#: vpn/choices.py:186 vpn/choices.py:187 vpn/choices.py:188 vpn/choices.py:189 +#: vpn/choices.py:190 vpn/choices.py:191 vpn/choices.py:192 vpn/choices.py:193 +#: vpn/choices.py:194 vpn/choices.py:195 vpn/choices.py:196 vpn/choices.py:197 +#: vpn/choices.py:198 vpn/choices.py:199 vpn/choices.py:200 vpn/choices.py:201 #, python-brace-format msgid "Group {n}" msgstr "Група {n}" -#: netbox/vpn/choices.py:243 +#: vpn/choices.py:243 msgid "Ethernet Private LAN" msgstr "Приватна мережа Ethernet" -#: netbox/vpn/choices.py:244 +#: vpn/choices.py:244 msgid "Ethernet Virtual Private LAN" msgstr "Віртуальна приватна локальна мережа Ethernet" -#: netbox/vpn/choices.py:247 +#: vpn/choices.py:247 msgid "Ethernet Private Tree" msgstr "Приватне дерево Ethernet" -#: netbox/vpn/choices.py:248 +#: vpn/choices.py:248 msgid "Ethernet Virtual Private Tree" msgstr "Віртуальне приватне дерево Ethernet" -#: netbox/vpn/filtersets.py:41 +#: vpn/filtersets.py:41 msgid "Tunnel group (ID)" msgstr "Тунельна група (ідентифікатор)" -#: netbox/vpn/filtersets.py:47 +#: vpn/filtersets.py:47 msgid "Tunnel group (slug)" msgstr "Тунельна група (скоречення)" -#: netbox/vpn/filtersets.py:54 +#: vpn/filtersets.py:54 msgid "IPSec profile (ID)" msgstr "Профіль IPsec (ідентифікатор)" -#: netbox/vpn/filtersets.py:60 +#: vpn/filtersets.py:60 msgid "IPSec profile (name)" msgstr "Профіль IPsec (ім'я)" -#: netbox/vpn/filtersets.py:81 +#: vpn/filtersets.py:81 msgid "Tunnel (ID)" msgstr "Тунель (ідентифікатор)" -#: netbox/vpn/filtersets.py:87 +#: vpn/filtersets.py:87 msgid "Tunnel (name)" msgstr "Тунель (назва)" -#: netbox/vpn/filtersets.py:118 +#: vpn/filtersets.py:118 msgid "Outside IP (ID)" msgstr "Зовнішній IP (ідентифікатор)" -#: netbox/vpn/filtersets.py:130 netbox/vpn/filtersets.py:263 +#: vpn/filtersets.py:130 vpn/filtersets.py:263 msgid "IKE policy (ID)" msgstr "Політика IKE (ідентифікатор)" -#: netbox/vpn/filtersets.py:136 netbox/vpn/filtersets.py:269 +#: vpn/filtersets.py:136 vpn/filtersets.py:269 msgid "IKE policy (name)" msgstr "Політика IKE (назва)" -#: netbox/vpn/filtersets.py:200 netbox/vpn/filtersets.py:273 +#: vpn/filtersets.py:200 vpn/filtersets.py:273 msgid "IPSec policy (ID)" msgstr "Політика IPsec (ідентифікатор)" -#: netbox/vpn/filtersets.py:206 netbox/vpn/filtersets.py:279 +#: vpn/filtersets.py:206 vpn/filtersets.py:279 msgid "IPSec policy (name)" msgstr "Політика IPsec (назва)" -#: netbox/vpn/filtersets.py:348 +#: vpn/filtersets.py:348 msgid "L2VPN (slug)" msgstr "L2VPN (скоречення)" -#: netbox/vpn/filtersets.py:412 +#: vpn/filtersets.py:412 msgid "VM Interface (ID)" msgstr "Інтерфейс віртуальної машини (ідентифікатор)" -#: netbox/vpn/filtersets.py:418 +#: vpn/filtersets.py:418 msgid "VLAN (name)" msgstr "VLAN (назва)" -#: netbox/vpn/forms/bulk_edit.py:45 netbox/vpn/forms/bulk_import.py:42 -#: netbox/vpn/forms/filtersets.py:54 +#: vpn/forms/bulk_edit.py:45 vpn/forms/bulk_import.py:42 +#: vpn/forms/filtersets.py:54 msgid "Tunnel group" msgstr "Тунельна група" -#: netbox/vpn/forms/bulk_edit.py:117 netbox/vpn/models/crypto.py:47 +#: vpn/forms/bulk_edit.py:117 vpn/models/crypto.py:47 msgid "SA lifetime" msgstr "Термін служби SA" -#: netbox/vpn/forms/bulk_edit.py:151 netbox/wireless/forms/bulk_edit.py:79 -#: netbox/wireless/forms/bulk_edit.py:126 -#: netbox/wireless/forms/filtersets.py:64 -#: netbox/wireless/forms/filtersets.py:98 +#: vpn/forms/bulk_edit.py:151 wireless/forms/bulk_edit.py:79 +#: wireless/forms/bulk_edit.py:126 wireless/forms/filtersets.py:64 +#: wireless/forms/filtersets.py:98 msgid "Pre-shared key" msgstr "Попередньо спільний ключ" -#: netbox/vpn/forms/bulk_edit.py:237 netbox/vpn/forms/bulk_import.py:239 -#: netbox/vpn/forms/filtersets.py:199 netbox/vpn/forms/model_forms.py:370 -#: netbox/vpn/models/crypto.py:104 +#: vpn/forms/bulk_edit.py:237 vpn/forms/bulk_import.py:239 +#: vpn/forms/filtersets.py:199 vpn/forms/model_forms.py:370 +#: vpn/models/crypto.py:104 msgid "IKE policy" msgstr "Політика IKE" -#: netbox/vpn/forms/bulk_edit.py:242 netbox/vpn/forms/bulk_import.py:244 -#: netbox/vpn/forms/filtersets.py:204 netbox/vpn/forms/model_forms.py:374 -#: netbox/vpn/models/crypto.py:209 +#: vpn/forms/bulk_edit.py:242 vpn/forms/bulk_import.py:244 +#: vpn/forms/filtersets.py:204 vpn/forms/model_forms.py:374 +#: vpn/models/crypto.py:209 msgid "IPSec policy" msgstr "Політика IPsec" -#: netbox/vpn/forms/bulk_import.py:50 +#: vpn/forms/bulk_import.py:50 msgid "Tunnel encapsulation" msgstr "Інкапсуляція тунелю" -#: netbox/vpn/forms/bulk_import.py:83 +#: vpn/forms/bulk_import.py:83 msgid "Operational role" msgstr "Операційна роль" -#: netbox/vpn/forms/bulk_import.py:90 +#: vpn/forms/bulk_import.py:90 msgid "Parent device of assigned interface" msgstr "Батьківський пристрій призначеного інтерфейсу" -#: netbox/vpn/forms/bulk_import.py:97 +#: vpn/forms/bulk_import.py:97 msgid "Parent VM of assigned interface" msgstr "Батьківська віртуальна машина призначеного інтерфейсу" -#: netbox/vpn/forms/bulk_import.py:104 +#: vpn/forms/bulk_import.py:104 msgid "Device or virtual machine interface" msgstr "Інтерфейс пристрою або віртуальної машини" -#: netbox/vpn/forms/bulk_import.py:183 +#: vpn/forms/bulk_import.py:183 msgid "IKE proposal(s)" msgstr "Пропозиція (и) IKE" -#: netbox/vpn/forms/bulk_import.py:215 netbox/vpn/models/crypto.py:197 +#: vpn/forms/bulk_import.py:215 vpn/models/crypto.py:197 msgid "Diffie-Hellman group for Perfect Forward Secrecy" msgstr "Група Діффі-Хеллмана для «Ідеальна таємниця вперед»" -#: netbox/vpn/forms/bulk_import.py:222 +#: vpn/forms/bulk_import.py:222 msgid "IPSec proposal(s)" msgstr "Пропозиція (и) IPsec" -#: netbox/vpn/forms/bulk_import.py:236 +#: vpn/forms/bulk_import.py:236 msgid "IPSec protocol" msgstr "протокол IPsec" -#: netbox/vpn/forms/bulk_import.py:266 +#: vpn/forms/bulk_import.py:266 msgid "L2VPN type" msgstr "Тип L2VPN" -#: netbox/vpn/forms/bulk_import.py:287 +#: vpn/forms/bulk_import.py:287 msgid "Parent device (for interface)" msgstr "Батьківський пристрій (для інтерфейсу)" -#: netbox/vpn/forms/bulk_import.py:294 +#: vpn/forms/bulk_import.py:294 msgid "Parent virtual machine (for interface)" msgstr "Батьківська віртуальна машина (для інтерфейсу)" -#: netbox/vpn/forms/bulk_import.py:301 +#: vpn/forms/bulk_import.py:301 msgid "Assigned interface (device or VM)" msgstr "Призначений інтерфейс (пристрій або віртуальна машина)" -#: netbox/vpn/forms/bulk_import.py:334 +#: vpn/forms/bulk_import.py:334 msgid "Cannot import device and VM interface terminations simultaneously." msgstr "" "Не вдається імпортувати завершення інтерфейсу пристрою та віртуальної машини" " одночасно." -#: netbox/vpn/forms/bulk_import.py:336 +#: vpn/forms/bulk_import.py:336 msgid "Each termination must specify either an interface or a VLAN." msgstr "Кожне завершення повинно вказувати або інтерфейс, або VLAN." -#: netbox/vpn/forms/bulk_import.py:338 +#: vpn/forms/bulk_import.py:338 msgid "Cannot assign both an interface and a VLAN." msgstr "Не вдається призначити як інтерфейс, так і VLAN." -#: netbox/vpn/forms/filtersets.py:130 +#: vpn/forms/filtersets.py:130 msgid "IKE version" msgstr "Версія IKE" -#: netbox/vpn/forms/filtersets.py:142 netbox/vpn/forms/filtersets.py:175 -#: netbox/vpn/forms/model_forms.py:298 netbox/vpn/forms/model_forms.py:334 +#: vpn/forms/filtersets.py:142 vpn/forms/filtersets.py:175 +#: vpn/forms/model_forms.py:298 vpn/forms/model_forms.py:334 msgid "Proposal" msgstr "Пропозиція" -#: netbox/vpn/forms/filtersets.py:251 +#: vpn/forms/filtersets.py:251 msgid "Assigned Object Type" msgstr "Призначений тип об'єкта" -#: netbox/vpn/forms/model_forms.py:95 netbox/vpn/forms/model_forms.py:130 -#: netbox/vpn/forms/model_forms.py:240 netbox/vpn/tables/tunnels.py:91 +#: vpn/forms/model_forms.py:95 vpn/forms/model_forms.py:130 +#: vpn/forms/model_forms.py:240 vpn/tables/tunnels.py:91 msgid "Tunnel interface" msgstr "Інтерфейс тунелю" -#: netbox/vpn/forms/model_forms.py:150 +#: vpn/forms/model_forms.py:150 msgid "First Termination" msgstr "Перше припинення" -#: netbox/vpn/forms/model_forms.py:153 +#: vpn/forms/model_forms.py:153 msgid "Second Termination" msgstr "Друге припинення" -#: netbox/vpn/forms/model_forms.py:197 +#: vpn/forms/model_forms.py:197 msgid "This parameter is required when defining a termination." msgstr "Цей параметр обов'язковий при визначенні закінчення." -#: netbox/vpn/forms/model_forms.py:320 netbox/vpn/forms/model_forms.py:356 +#: vpn/forms/model_forms.py:320 vpn/forms/model_forms.py:356 msgid "Policy" msgstr "Політика" -#: netbox/vpn/forms/model_forms.py:487 +#: vpn/forms/model_forms.py:487 msgid "A termination must specify an interface or VLAN." msgstr "Припинення повинно вказувати інтерфейс або VLAN." -#: netbox/vpn/forms/model_forms.py:489 +#: vpn/forms/model_forms.py:489 msgid "" "A termination can only have one terminating object (an interface or VLAN)." msgstr "" "Термінування може мати лише один кінцевий об'єкт (інтерфейс або VLAN)." -#: netbox/vpn/models/crypto.py:33 +#: vpn/models/crypto.py:33 msgid "encryption algorithm" msgstr "алгоритм шифрування" -#: netbox/vpn/models/crypto.py:37 +#: vpn/models/crypto.py:37 msgid "authentication algorithm" msgstr "алгоритм аутентифікації" -#: netbox/vpn/models/crypto.py:44 +#: vpn/models/crypto.py:44 msgid "Diffie-Hellman group ID" msgstr "Ідентифікатор групи Діффі-Хеллмана" -#: netbox/vpn/models/crypto.py:50 +#: vpn/models/crypto.py:50 msgid "Security association lifetime (in seconds)" msgstr "Термін служби асоціації безпеки (в секундах)" -#: netbox/vpn/models/crypto.py:59 +#: vpn/models/crypto.py:59 msgid "IKE proposal" msgstr "Пропозиція IKE" -#: netbox/vpn/models/crypto.py:60 +#: vpn/models/crypto.py:60 msgid "IKE proposals" msgstr "Пропозиції IKE" -#: netbox/vpn/models/crypto.py:76 +#: vpn/models/crypto.py:76 msgid "version" msgstr "версія" -#: netbox/vpn/models/crypto.py:88 netbox/vpn/models/crypto.py:190 +#: vpn/models/crypto.py:88 vpn/models/crypto.py:190 msgid "proposals" msgstr "пропозиції" -#: netbox/vpn/models/crypto.py:91 netbox/wireless/models.py:39 +#: vpn/models/crypto.py:91 wireless/models.py:39 msgid "pre-shared key" msgstr "попередньо спільний ключ" -#: netbox/vpn/models/crypto.py:105 +#: vpn/models/crypto.py:105 msgid "IKE policies" msgstr "Політика IKE" -#: netbox/vpn/models/crypto.py:118 +#: vpn/models/crypto.py:118 msgid "Mode is required for selected IKE version" msgstr "Режим необхідний для вибраної версії IKE" -#: netbox/vpn/models/crypto.py:122 +#: vpn/models/crypto.py:122 msgid "Mode cannot be used for selected IKE version" msgstr "Режим не може бути використаний для вибраної версії IKE" -#: netbox/vpn/models/crypto.py:136 +#: vpn/models/crypto.py:136 msgid "encryption" msgstr "шифрування" -#: netbox/vpn/models/crypto.py:141 +#: vpn/models/crypto.py:141 msgid "authentication" msgstr "аутентифікація" -#: netbox/vpn/models/crypto.py:149 +#: vpn/models/crypto.py:149 msgid "Security association lifetime (seconds)" msgstr "Термін служби асоціації безпеки (секунди)" -#: netbox/vpn/models/crypto.py:155 +#: vpn/models/crypto.py:155 msgid "Security association lifetime (in kilobytes)" msgstr "Термін служби асоціації безпеки (в кілобайтах)" -#: netbox/vpn/models/crypto.py:164 +#: vpn/models/crypto.py:164 msgid "IPSec proposal" msgstr "Пропозиція IPsec" -#: netbox/vpn/models/crypto.py:165 +#: vpn/models/crypto.py:165 msgid "IPSec proposals" msgstr "Пропозиції IPsec" -#: netbox/vpn/models/crypto.py:178 +#: vpn/models/crypto.py:178 msgid "Encryption and/or authentication algorithm must be defined" msgstr "Необхідно визначити алгоритм шифрування та/або аутентифікації" -#: netbox/vpn/models/crypto.py:210 +#: vpn/models/crypto.py:210 msgid "IPSec policies" msgstr "Політики IPsec" -#: netbox/vpn/models/crypto.py:251 +#: vpn/models/crypto.py:251 msgid "IPSec profiles" msgstr "Профілі IPsec" -#: netbox/vpn/models/l2vpn.py:116 +#: vpn/models/l2vpn.py:116 msgid "L2VPN termination" msgstr "Припинення L2VPN" -#: netbox/vpn/models/l2vpn.py:117 +#: vpn/models/l2vpn.py:117 msgid "L2VPN terminations" msgstr "Термінації L2VPN" -#: netbox/vpn/models/l2vpn.py:135 +#: vpn/models/l2vpn.py:135 #, python-brace-format msgid "L2VPN Termination already assigned ({assigned_object})" msgstr "Припинення L2VPN вже призначено ({assigned_object})" -#: netbox/vpn/models/l2vpn.py:147 +#: vpn/models/l2vpn.py:147 #, python-brace-format msgid "" "{l2vpn_type} L2VPNs cannot have more than two terminations; found " @@ -15921,194 +15169,186 @@ msgstr "" "{l2vpn_type} L2VPN не може мати більше двох термінів; знайдено " "{terminations_count} вже визначено." -#: netbox/vpn/models/tunnels.py:26 +#: vpn/models/tunnels.py:26 msgid "tunnel group" msgstr "тунельна група" -#: netbox/vpn/models/tunnels.py:27 +#: vpn/models/tunnels.py:27 msgid "tunnel groups" msgstr "тунельні групи" -#: netbox/vpn/models/tunnels.py:53 +#: vpn/models/tunnels.py:53 msgid "encapsulation" msgstr "інкапсуляція" -#: netbox/vpn/models/tunnels.py:72 +#: vpn/models/tunnels.py:72 msgid "tunnel ID" msgstr "ідентифікатор тунелю" -#: netbox/vpn/models/tunnels.py:94 +#: vpn/models/tunnels.py:94 msgid "tunnel" msgstr "тунель" -#: netbox/vpn/models/tunnels.py:95 +#: vpn/models/tunnels.py:95 msgid "tunnels" msgstr "тунелі" -#: netbox/vpn/models/tunnels.py:153 +#: vpn/models/tunnels.py:153 msgid "An object may be terminated to only one tunnel at a time." msgstr "Об'єкт може бути завершений лише в одному тунелі одночасно." -#: netbox/vpn/models/tunnels.py:156 +#: vpn/models/tunnels.py:156 msgid "tunnel termination" msgstr "закінчення тунелю" -#: netbox/vpn/models/tunnels.py:157 +#: vpn/models/tunnels.py:157 msgid "tunnel terminations" msgstr "закінчення тунелів" -#: netbox/vpn/models/tunnels.py:174 +#: vpn/models/tunnels.py:174 #, python-brace-format msgid "{name} is already attached to a tunnel ({tunnel})." msgstr "{name} вже прикріплений до тунелю ({tunnel})." -#: netbox/vpn/tables/crypto.py:22 +#: vpn/tables/crypto.py:22 msgid "Authentication Method" msgstr "Метод аутентифікації" -#: netbox/vpn/tables/crypto.py:25 netbox/vpn/tables/crypto.py:97 +#: vpn/tables/crypto.py:25 vpn/tables/crypto.py:97 msgid "Encryption Algorithm" msgstr "Алгоритм шифрування" -#: netbox/vpn/tables/crypto.py:28 netbox/vpn/tables/crypto.py:100 +#: vpn/tables/crypto.py:28 vpn/tables/crypto.py:100 msgid "Authentication Algorithm" msgstr "Алгоритм аутентифікації" -#: netbox/vpn/tables/crypto.py:34 +#: vpn/tables/crypto.py:34 msgid "SA Lifetime" msgstr "SA Термін служби" -#: netbox/vpn/tables/crypto.py:71 +#: vpn/tables/crypto.py:71 msgid "Pre-shared Key" msgstr "Попередньо спільний ключ" -#: netbox/vpn/tables/crypto.py:103 +#: vpn/tables/crypto.py:103 msgid "SA Lifetime (Seconds)" msgstr "Термін служби SA (секунди)" -#: netbox/vpn/tables/crypto.py:106 +#: vpn/tables/crypto.py:106 msgid "SA Lifetime (KB)" msgstr "Термін служби SA (КБ)" -#: netbox/vpn/tables/l2vpn.py:69 +#: vpn/tables/l2vpn.py:69 msgid "Object Parent" msgstr "Батьківський об'єкт" -#: netbox/vpn/tables/l2vpn.py:74 +#: vpn/tables/l2vpn.py:74 msgid "Object Site" msgstr "Сайт об'єкта" -#: netbox/wireless/choices.py:11 +#: wireless/choices.py:11 msgid "Access point" msgstr "Точка доступу" -#: netbox/wireless/choices.py:12 +#: wireless/choices.py:12 msgid "Station" msgstr "Станція" -#: netbox/wireless/choices.py:467 +#: wireless/choices.py:467 msgid "Open" msgstr "Відкрита" -#: netbox/wireless/choices.py:469 +#: wireless/choices.py:469 msgid "WPA Personal (PSK)" msgstr "Персональний WPA (PSK)" -#: netbox/wireless/choices.py:470 +#: wireless/choices.py:470 msgid "WPA Enterprise" msgstr "WPA для підприємства" -#: netbox/wireless/forms/bulk_edit.py:73 -#: netbox/wireless/forms/bulk_edit.py:120 -#: netbox/wireless/forms/bulk_import.py:68 -#: netbox/wireless/forms/bulk_import.py:71 -#: netbox/wireless/forms/bulk_import.py:110 -#: netbox/wireless/forms/bulk_import.py:113 -#: netbox/wireless/forms/filtersets.py:59 -#: netbox/wireless/forms/filtersets.py:93 +#: wireless/forms/bulk_edit.py:73 wireless/forms/bulk_edit.py:120 +#: wireless/forms/bulk_import.py:68 wireless/forms/bulk_import.py:71 +#: wireless/forms/bulk_import.py:110 wireless/forms/bulk_import.py:113 +#: wireless/forms/filtersets.py:59 wireless/forms/filtersets.py:93 msgid "Authentication cipher" msgstr "Аутентифікаційний шифр" -#: netbox/wireless/forms/bulk_edit.py:134 -#: netbox/wireless/forms/bulk_import.py:116 -#: netbox/wireless/forms/bulk_import.py:119 -#: netbox/wireless/forms/filtersets.py:106 +#: wireless/forms/bulk_edit.py:134 wireless/forms/bulk_import.py:116 +#: wireless/forms/bulk_import.py:119 wireless/forms/filtersets.py:106 msgid "Distance unit" msgstr "Одиниця відстані" -#: netbox/wireless/forms/bulk_import.py:52 +#: wireless/forms/bulk_import.py:52 msgid "Bridged VLAN" msgstr "Мостові VLAN" -#: netbox/wireless/forms/bulk_import.py:89 -#: netbox/wireless/tables/wirelesslink.py:28 +#: wireless/forms/bulk_import.py:89 wireless/tables/wirelesslink.py:28 msgid "Interface A" msgstr "Інтерфейс A" -#: netbox/wireless/forms/bulk_import.py:93 -#: netbox/wireless/tables/wirelesslink.py:37 +#: wireless/forms/bulk_import.py:93 wireless/tables/wirelesslink.py:37 msgid "Interface B" msgstr "Інтерфейс B" -#: netbox/wireless/forms/model_forms.py:161 +#: wireless/forms/model_forms.py:161 msgid "Side B" msgstr "Сторона Б" -#: netbox/wireless/models.py:31 +#: wireless/models.py:31 msgid "authentication cipher" msgstr "шифр аутентифікації" -#: netbox/wireless/models.py:69 +#: wireless/models.py:69 msgid "wireless LAN group" msgstr "група бездротової локальної мережі" -#: netbox/wireless/models.py:70 +#: wireless/models.py:70 msgid "wireless LAN groups" msgstr "групи бездротових локальних мереж" -#: netbox/wireless/models.py:116 +#: wireless/models.py:116 msgid "wireless LAN" msgstr "бездротова локальна мережа" -#: netbox/wireless/models.py:144 +#: wireless/models.py:144 msgid "interface A" msgstr "інтерфейс А" -#: netbox/wireless/models.py:151 +#: wireless/models.py:151 msgid "interface B" msgstr "інтерфейс B" -#: netbox/wireless/models.py:165 +#: wireless/models.py:165 msgid "distance" msgstr "відстань" -#: netbox/wireless/models.py:172 +#: wireless/models.py:172 msgid "distance unit" msgstr "одиниця відстані" -#: netbox/wireless/models.py:219 +#: wireless/models.py:219 msgid "wireless link" msgstr "бездротова зв'язок" -#: netbox/wireless/models.py:220 +#: wireless/models.py:220 msgid "wireless links" msgstr "бездротові зв'язки" -#: netbox/wireless/models.py:236 +#: wireless/models.py:236 msgid "Must specify a unit when setting a wireless distance" msgstr "Необхідно вказати одиницю виміру при установці бездротової відстані" -#: netbox/wireless/models.py:242 netbox/wireless/models.py:248 +#: wireless/models.py:242 wireless/models.py:248 #, python-brace-format msgid "{type} is not a wireless interface." msgstr "{type} не є бездротовим інтерфейсом." -#: netbox/wireless/utils.py:16 +#: wireless/utils.py:16 #, python-brace-format msgid "Invalid channel value: {channel}" msgstr "Невірне значення каналу: {channel}" -#: netbox/wireless/utils.py:26 +#: wireless/utils.py:26 #, python-brace-format msgid "Invalid channel attribute: {name}" msgstr "Невірний атрибут каналу: {name}" diff --git a/netbox/translations/zh/LC_MESSAGES/django.po b/netbox/translations/zh/LC_MESSAGES/django.po index 8de99d405..6e23f1aa9 100644 --- a/netbox/translations/zh/LC_MESSAGES/django.po +++ b/netbox/translations/zh/LC_MESSAGES/django.po @@ -21,7 +21,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-10-12 05:02+0000\n" +"POT-Creation-Date: 2024-10-28 19:20+0000\n" "PO-Revision-Date: 2023-10-30 17:48+0000\n" "Last-Translator: Jeremy Stretch, 2024\n" "Language-Team: Chinese (https://app.transifex.com/netbox-community/teams/178115/zh/)\n" @@ -31,6035 +31,5588 @@ msgstr "" "Language: zh\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: netbox/account/tables.py:27 netbox/templates/account/token.html:22 -#: netbox/templates/users/token.html:17 netbox/users/forms/bulk_import.py:39 -#: netbox/users/forms/model_forms.py:112 +#: account/tables.py:27 templates/account/token.html:22 +#: templates/users/token.html:17 users/forms/bulk_import.py:39 +#: users/forms/model_forms.py:112 msgid "Key" msgstr "令牌" -#: netbox/account/tables.py:31 netbox/users/forms/filtersets.py:132 +#: account/tables.py:31 users/forms/filtersets.py:132 msgid "Write Enabled" msgstr "可写" -#: netbox/account/tables.py:35 netbox/core/choices.py:86 -#: netbox/core/tables/jobs.py:29 netbox/core/tables/tasks.py:79 -#: netbox/extras/tables/tables.py:335 netbox/extras/tables/tables.py:566 -#: netbox/templates/account/token.html:43 -#: netbox/templates/core/configrevision.html:26 -#: netbox/templates/core/configrevision_restore.html:12 -#: netbox/templates/core/job.html:69 netbox/templates/core/rq_task.html:16 -#: netbox/templates/core/rq_task.html:73 -#: netbox/templates/core/rq_worker.html:14 -#: netbox/templates/extras/htmx/script_result.html:12 -#: netbox/templates/extras/journalentry.html:22 -#: netbox/templates/generic/object.html:58 -#: netbox/templates/users/token.html:35 +#: account/tables.py:35 core/choices.py:86 core/tables/jobs.py:29 +#: core/tables/tasks.py:79 extras/tables/tables.py:335 +#: extras/tables/tables.py:566 templates/account/token.html:43 +#: templates/core/configrevision.html:26 +#: templates/core/configrevision_restore.html:12 templates/core/job.html:69 +#: templates/core/rq_task.html:16 templates/core/rq_task.html:73 +#: templates/core/rq_worker.html:14 +#: templates/extras/htmx/script_result.html:12 +#: templates/extras/journalentry.html:22 templates/generic/object.html:58 +#: templates/users/token.html:35 msgid "Created" msgstr "已创建" -#: netbox/account/tables.py:39 netbox/templates/account/token.html:47 -#: netbox/templates/users/token.html:39 netbox/users/forms/bulk_edit.py:117 -#: netbox/users/forms/filtersets.py:136 +#: account/tables.py:39 templates/account/token.html:47 +#: templates/users/token.html:39 users/forms/bulk_edit.py:117 +#: users/forms/filtersets.py:136 msgid "Expires" msgstr "过期" -#: netbox/account/tables.py:42 netbox/users/forms/filtersets.py:141 +#: account/tables.py:42 users/forms/filtersets.py:141 msgid "Last Used" msgstr "最后使用" -#: netbox/account/tables.py:45 netbox/templates/account/token.html:55 -#: netbox/templates/users/token.html:47 netbox/users/forms/bulk_edit.py:122 -#: netbox/users/forms/model_forms.py:124 +#: account/tables.py:45 templates/account/token.html:55 +#: templates/users/token.html:47 users/forms/bulk_edit.py:122 +#: users/forms/model_forms.py:124 msgid "Allowed IPs" msgstr "允许的IP" -#: netbox/account/views.py:114 +#: account/views.py:114 #, python-brace-format msgid "Logged in as {user}." msgstr "以身份登录 {user}。" -#: netbox/account/views.py:164 +#: account/views.py:164 msgid "You have logged out." msgstr "您已注销。" -#: netbox/account/views.py:216 +#: account/views.py:216 msgid "Your preferences have been updated." msgstr "你的首选项已更新。" -#: netbox/account/views.py:239 +#: account/views.py:239 msgid "LDAP-authenticated user credentials cannot be changed within NetBox." msgstr "无法在 Netbox 中更改经过 LDAP 身份验证的用户凭据。" -#: netbox/account/views.py:254 +#: account/views.py:254 msgid "Your password has been changed successfully." msgstr "您的密码已成功更改。" -#: netbox/circuits/choices.py:21 netbox/dcim/choices.py:20 -#: netbox/dcim/choices.py:102 netbox/dcim/choices.py:185 -#: netbox/dcim/choices.py:237 netbox/dcim/choices.py:1530 -#: netbox/dcim/choices.py:1606 netbox/dcim/choices.py:1656 -#: netbox/virtualization/choices.py:20 netbox/virtualization/choices.py:45 -#: netbox/vpn/choices.py:18 +#: circuits/choices.py:21 dcim/choices.py:20 dcim/choices.py:102 +#: dcim/choices.py:185 dcim/choices.py:237 dcim/choices.py:1530 +#: dcim/choices.py:1606 dcim/choices.py:1656 virtualization/choices.py:20 +#: virtualization/choices.py:45 vpn/choices.py:18 msgid "Planned" msgstr "已规划" -#: netbox/circuits/choices.py:22 netbox/netbox/navigation/menu.py:305 +#: circuits/choices.py:22 netbox/navigation/menu.py:305 msgid "Provisioning" msgstr "置备" -#: netbox/circuits/choices.py:23 netbox/core/tables/tasks.py:22 -#: netbox/dcim/choices.py:22 netbox/dcim/choices.py:103 -#: netbox/dcim/choices.py:184 netbox/dcim/choices.py:236 -#: netbox/dcim/choices.py:1605 netbox/dcim/choices.py:1655 -#: netbox/extras/tables/tables.py:495 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:25 -#: netbox/templates/users/user.html:37 netbox/users/forms/bulk_edit.py:38 -#: netbox/virtualization/choices.py:22 netbox/virtualization/choices.py:44 -#: netbox/vpn/choices.py:19 netbox/wireless/choices.py:25 +#: circuits/choices.py:23 core/tables/tasks.py:22 dcim/choices.py:22 +#: dcim/choices.py:103 dcim/choices.py:184 dcim/choices.py:236 +#: dcim/choices.py:1605 dcim/choices.py:1655 extras/tables/tables.py:495 +#: ipam/choices.py:31 ipam/choices.py:49 ipam/choices.py:69 +#: ipam/choices.py:154 templates/extras/configcontext.html:25 +#: templates/users/user.html:37 users/forms/bulk_edit.py:38 +#: virtualization/choices.py:22 virtualization/choices.py:44 vpn/choices.py:19 +#: wireless/choices.py:25 msgid "Active" msgstr "在线" -#: netbox/circuits/choices.py:24 netbox/dcim/choices.py:183 -#: netbox/dcim/choices.py:235 netbox/dcim/choices.py:1604 -#: netbox/dcim/choices.py:1657 netbox/virtualization/choices.py:24 -#: netbox/virtualization/choices.py:43 +#: circuits/choices.py:24 dcim/choices.py:183 dcim/choices.py:235 +#: dcim/choices.py:1604 dcim/choices.py:1657 virtualization/choices.py:24 +#: virtualization/choices.py:43 msgid "Offline" msgstr "离线" -#: netbox/circuits/choices.py:25 +#: circuits/choices.py:25 msgid "Deprovisioning" msgstr "预留" -#: netbox/circuits/choices.py:26 +#: circuits/choices.py:26 msgid "Decommissioned" msgstr "退役" -#: netbox/circuits/choices.py:90 netbox/dcim/choices.py:1617 -#: netbox/tenancy/choices.py:17 +#: circuits/choices.py:90 dcim/choices.py:1617 tenancy/choices.py:17 msgid "Primary" msgstr "主要联系人" -#: netbox/circuits/choices.py:91 netbox/ipam/choices.py:90 -#: netbox/tenancy/choices.py:18 +#: circuits/choices.py:91 ipam/choices.py:90 tenancy/choices.py:18 msgid "Secondary" msgstr "次要联系人" -#: netbox/circuits/choices.py:92 netbox/tenancy/choices.py:19 +#: circuits/choices.py:92 tenancy/choices.py:19 msgid "Tertiary" msgstr "第三级联系人" -#: netbox/circuits/choices.py:93 netbox/tenancy/choices.py:20 +#: circuits/choices.py:93 tenancy/choices.py:20 msgid "Inactive" msgstr "已失效" -#: netbox/circuits/filtersets.py:31 netbox/circuits/filtersets.py:198 -#: netbox/dcim/filtersets.py:98 netbox/dcim/filtersets.py:152 -#: netbox/dcim/filtersets.py:212 netbox/dcim/filtersets.py:333 -#: netbox/dcim/filtersets.py:464 netbox/dcim/filtersets.py:1021 -#: netbox/dcim/filtersets.py:1368 netbox/dcim/filtersets.py:1903 -#: netbox/dcim/filtersets.py:2146 netbox/dcim/filtersets.py:2204 -#: netbox/ipam/filtersets.py:339 netbox/ipam/filtersets.py:959 -#: netbox/virtualization/filtersets.py:45 -#: netbox/virtualization/filtersets.py:173 netbox/vpn/filtersets.py:358 +#: circuits/filtersets.py:31 circuits/filtersets.py:198 dcim/filtersets.py:98 +#: dcim/filtersets.py:152 dcim/filtersets.py:212 dcim/filtersets.py:333 +#: dcim/filtersets.py:464 dcim/filtersets.py:1021 dcim/filtersets.py:1368 +#: dcim/filtersets.py:1903 dcim/filtersets.py:2146 dcim/filtersets.py:2204 +#: ipam/filtersets.py:339 ipam/filtersets.py:959 +#: virtualization/filtersets.py:45 virtualization/filtersets.py:173 +#: vpn/filtersets.py:358 msgid "Region (ID)" msgstr "区域(ID)" -#: netbox/circuits/filtersets.py:38 netbox/circuits/filtersets.py:205 -#: netbox/dcim/filtersets.py:105 netbox/dcim/filtersets.py:158 -#: netbox/dcim/filtersets.py:219 netbox/dcim/filtersets.py:340 -#: netbox/dcim/filtersets.py:471 netbox/dcim/filtersets.py:1028 -#: netbox/dcim/filtersets.py:1375 netbox/dcim/filtersets.py:1910 -#: netbox/dcim/filtersets.py:2153 netbox/dcim/filtersets.py:2211 -#: netbox/extras/filtersets.py:509 netbox/ipam/filtersets.py:346 -#: netbox/ipam/filtersets.py:966 netbox/virtualization/filtersets.py:52 -#: netbox/virtualization/filtersets.py:180 netbox/vpn/filtersets.py:353 +#: circuits/filtersets.py:38 circuits/filtersets.py:205 dcim/filtersets.py:105 +#: dcim/filtersets.py:158 dcim/filtersets.py:219 dcim/filtersets.py:340 +#: dcim/filtersets.py:471 dcim/filtersets.py:1028 dcim/filtersets.py:1375 +#: dcim/filtersets.py:1910 dcim/filtersets.py:2153 dcim/filtersets.py:2211 +#: extras/filtersets.py:509 ipam/filtersets.py:346 ipam/filtersets.py:966 +#: virtualization/filtersets.py:52 virtualization/filtersets.py:180 +#: vpn/filtersets.py:353 msgid "Region (slug)" msgstr "地区(缩写)" -#: netbox/circuits/filtersets.py:44 netbox/circuits/filtersets.py:211 -#: netbox/dcim/filtersets.py:128 netbox/dcim/filtersets.py:225 -#: netbox/dcim/filtersets.py:346 netbox/dcim/filtersets.py:477 -#: netbox/dcim/filtersets.py:1034 netbox/dcim/filtersets.py:1381 -#: netbox/dcim/filtersets.py:1916 netbox/dcim/filtersets.py:2159 -#: netbox/dcim/filtersets.py:2217 netbox/ipam/filtersets.py:352 -#: netbox/ipam/filtersets.py:972 netbox/virtualization/filtersets.py:58 -#: netbox/virtualization/filtersets.py:186 +#: circuits/filtersets.py:44 circuits/filtersets.py:211 dcim/filtersets.py:128 +#: dcim/filtersets.py:225 dcim/filtersets.py:346 dcim/filtersets.py:477 +#: dcim/filtersets.py:1034 dcim/filtersets.py:1381 dcim/filtersets.py:1916 +#: dcim/filtersets.py:2159 dcim/filtersets.py:2217 ipam/filtersets.py:352 +#: ipam/filtersets.py:972 virtualization/filtersets.py:58 +#: virtualization/filtersets.py:186 msgid "Site group (ID)" msgstr "站点组(ID)" -#: netbox/circuits/filtersets.py:51 netbox/circuits/filtersets.py:218 -#: netbox/dcim/filtersets.py:135 netbox/dcim/filtersets.py:232 -#: netbox/dcim/filtersets.py:353 netbox/dcim/filtersets.py:484 -#: netbox/dcim/filtersets.py:1041 netbox/dcim/filtersets.py:1388 -#: netbox/dcim/filtersets.py:1923 netbox/dcim/filtersets.py:2166 -#: netbox/dcim/filtersets.py:2224 netbox/extras/filtersets.py:515 -#: netbox/ipam/filtersets.py:359 netbox/ipam/filtersets.py:979 -#: netbox/virtualization/filtersets.py:65 -#: netbox/virtualization/filtersets.py:193 +#: circuits/filtersets.py:51 circuits/filtersets.py:218 dcim/filtersets.py:135 +#: dcim/filtersets.py:232 dcim/filtersets.py:353 dcim/filtersets.py:484 +#: dcim/filtersets.py:1041 dcim/filtersets.py:1388 dcim/filtersets.py:1923 +#: dcim/filtersets.py:2166 dcim/filtersets.py:2224 extras/filtersets.py:515 +#: ipam/filtersets.py:359 ipam/filtersets.py:979 +#: virtualization/filtersets.py:65 virtualization/filtersets.py:193 msgid "Site group (slug)" msgstr "站点组(缩写)" -#: netbox/circuits/filtersets.py:56 netbox/circuits/forms/bulk_edit.py:188 -#: netbox/circuits/forms/bulk_edit.py:216 -#: netbox/circuits/forms/bulk_import.py:124 -#: netbox/circuits/forms/filtersets.py:51 -#: netbox/circuits/forms/filtersets.py:171 -#: netbox/circuits/forms/filtersets.py:209 -#: netbox/circuits/forms/model_forms.py:138 -#: netbox/circuits/forms/model_forms.py:154 -#: netbox/circuits/tables/circuits.py:113 netbox/dcim/forms/bulk_edit.py:168 -#: netbox/dcim/forms/bulk_edit.py:329 netbox/dcim/forms/bulk_edit.py:677 -#: netbox/dcim/forms/bulk_edit.py:873 netbox/dcim/forms/bulk_import.py:131 -#: netbox/dcim/forms/bulk_import.py:230 netbox/dcim/forms/bulk_import.py:309 -#: netbox/dcim/forms/bulk_import.py:540 netbox/dcim/forms/bulk_import.py:1311 -#: netbox/dcim/forms/bulk_import.py:1339 netbox/dcim/forms/filtersets.py:87 -#: netbox/dcim/forms/filtersets.py:225 netbox/dcim/forms/filtersets.py:342 -#: netbox/dcim/forms/filtersets.py:439 netbox/dcim/forms/filtersets.py:753 -#: netbox/dcim/forms/filtersets.py:997 netbox/dcim/forms/filtersets.py:1021 -#: netbox/dcim/forms/filtersets.py:1111 netbox/dcim/forms/filtersets.py:1149 -#: netbox/dcim/forms/filtersets.py:1584 netbox/dcim/forms/filtersets.py:1608 -#: netbox/dcim/forms/filtersets.py:1632 netbox/dcim/forms/model_forms.py:137 -#: netbox/dcim/forms/model_forms.py:165 netbox/dcim/forms/model_forms.py:238 -#: netbox/dcim/forms/model_forms.py:463 netbox/dcim/forms/model_forms.py:723 -#: netbox/dcim/forms/object_create.py:391 netbox/dcim/tables/devices.py:153 -#: netbox/dcim/tables/power.py:26 netbox/dcim/tables/power.py:93 -#: netbox/dcim/tables/racks.py:122 netbox/dcim/tables/racks.py:207 -#: netbox/dcim/tables/sites.py:134 netbox/extras/filtersets.py:525 -#: netbox/ipam/forms/bulk_edit.py:217 netbox/ipam/forms/bulk_edit.py:284 -#: netbox/ipam/forms/bulk_edit.py:451 netbox/ipam/forms/bulk_edit.py:529 -#: netbox/ipam/forms/bulk_import.py:171 netbox/ipam/forms/bulk_import.py:429 -#: netbox/ipam/forms/filtersets.py:153 netbox/ipam/forms/filtersets.py:231 -#: netbox/ipam/forms/filtersets.py:432 netbox/ipam/forms/filtersets.py:489 -#: netbox/ipam/forms/model_forms.py:205 netbox/ipam/forms/model_forms.py:636 -#: netbox/ipam/tables/ip.py:245 netbox/ipam/tables/vlans.py:118 -#: netbox/ipam/tables/vlans.py:221 -#: netbox/templates/circuits/inc/circuit_termination_fields.html:6 -#: netbox/templates/dcim/device.html:22 -#: netbox/templates/dcim/inc/cable_termination.html:8 -#: netbox/templates/dcim/inc/cable_termination.html:33 -#: netbox/templates/dcim/location.html:37 -#: netbox/templates/dcim/powerpanel.html:22 netbox/templates/dcim/rack.html:20 -#: netbox/templates/dcim/rackreservation.html:28 -#: netbox/templates/dcim/site.html:28 netbox/templates/ipam/prefix.html:56 -#: netbox/templates/ipam/vlan.html:23 netbox/templates/ipam/vlan_edit.html:40 -#: netbox/templates/virtualization/cluster.html:42 -#: netbox/templates/virtualization/virtualmachine.html:95 -#: netbox/virtualization/forms/bulk_edit.py:91 -#: netbox/virtualization/forms/bulk_edit.py:109 -#: netbox/virtualization/forms/bulk_edit.py:124 -#: netbox/virtualization/forms/bulk_import.py:59 -#: netbox/virtualization/forms/bulk_import.py:85 -#: netbox/virtualization/forms/filtersets.py:79 -#: netbox/virtualization/forms/filtersets.py:148 -#: netbox/virtualization/forms/model_forms.py:71 -#: netbox/virtualization/forms/model_forms.py:104 -#: netbox/virtualization/forms/model_forms.py:171 -#: netbox/virtualization/tables/clusters.py:77 -#: netbox/virtualization/tables/virtualmachines.py:63 -#: netbox/vpn/forms/filtersets.py:266 netbox/wireless/forms/model_forms.py:76 -#: netbox/wireless/forms/model_forms.py:118 +#: circuits/filtersets.py:56 circuits/forms/bulk_edit.py:188 +#: circuits/forms/bulk_edit.py:216 circuits/forms/bulk_import.py:124 +#: circuits/forms/filtersets.py:51 circuits/forms/filtersets.py:171 +#: circuits/forms/filtersets.py:209 circuits/forms/model_forms.py:138 +#: circuits/forms/model_forms.py:154 circuits/tables/circuits.py:113 +#: dcim/forms/bulk_edit.py:168 dcim/forms/bulk_edit.py:329 +#: dcim/forms/bulk_edit.py:677 dcim/forms/bulk_edit.py:873 +#: dcim/forms/bulk_import.py:131 dcim/forms/bulk_import.py:230 +#: dcim/forms/bulk_import.py:309 dcim/forms/bulk_import.py:540 +#: dcim/forms/bulk_import.py:1311 dcim/forms/bulk_import.py:1339 +#: dcim/forms/filtersets.py:87 dcim/forms/filtersets.py:225 +#: dcim/forms/filtersets.py:342 dcim/forms/filtersets.py:439 +#: dcim/forms/filtersets.py:753 dcim/forms/filtersets.py:997 +#: dcim/forms/filtersets.py:1021 dcim/forms/filtersets.py:1111 +#: dcim/forms/filtersets.py:1149 dcim/forms/filtersets.py:1584 +#: dcim/forms/filtersets.py:1608 dcim/forms/filtersets.py:1632 +#: dcim/forms/model_forms.py:137 dcim/forms/model_forms.py:165 +#: dcim/forms/model_forms.py:238 dcim/forms/model_forms.py:463 +#: dcim/forms/model_forms.py:723 dcim/forms/object_create.py:391 +#: dcim/tables/devices.py:153 dcim/tables/power.py:26 dcim/tables/power.py:93 +#: dcim/tables/racks.py:122 dcim/tables/racks.py:207 dcim/tables/sites.py:134 +#: extras/filtersets.py:525 ipam/forms/bulk_edit.py:218 +#: ipam/forms/bulk_edit.py:285 ipam/forms/bulk_edit.py:484 +#: ipam/forms/bulk_import.py:171 ipam/forms/bulk_import.py:429 +#: ipam/forms/filtersets.py:153 ipam/forms/filtersets.py:231 +#: ipam/forms/filtersets.py:432 ipam/forms/filtersets.py:489 +#: ipam/forms/model_forms.py:205 ipam/forms/model_forms.py:636 +#: ipam/tables/ip.py:245 ipam/tables/vlans.py:118 ipam/tables/vlans.py:221 +#: templates/circuits/inc/circuit_termination_fields.html:6 +#: templates/dcim/device.html:22 templates/dcim/inc/cable_termination.html:8 +#: templates/dcim/inc/cable_termination.html:33 +#: templates/dcim/location.html:37 templates/dcim/powerpanel.html:22 +#: templates/dcim/rack.html:20 templates/dcim/rackreservation.html:28 +#: templates/dcim/site.html:28 templates/ipam/prefix.html:56 +#: templates/ipam/vlan.html:23 templates/ipam/vlan_edit.html:40 +#: templates/virtualization/cluster.html:42 +#: templates/virtualization/virtualmachine.html:95 +#: virtualization/forms/bulk_edit.py:91 virtualization/forms/bulk_edit.py:109 +#: virtualization/forms/bulk_edit.py:124 +#: virtualization/forms/bulk_import.py:59 +#: virtualization/forms/bulk_import.py:85 +#: virtualization/forms/filtersets.py:79 +#: virtualization/forms/filtersets.py:148 +#: virtualization/forms/model_forms.py:71 +#: virtualization/forms/model_forms.py:104 +#: virtualization/forms/model_forms.py:171 +#: virtualization/tables/clusters.py:77 +#: virtualization/tables/virtualmachines.py:63 vpn/forms/filtersets.py:266 +#: wireless/forms/model_forms.py:76 wireless/forms/model_forms.py:118 msgid "Site" msgstr "站点" -#: netbox/circuits/filtersets.py:62 netbox/circuits/filtersets.py:229 -#: netbox/circuits/filtersets.py:274 netbox/dcim/filtersets.py:242 -#: netbox/dcim/filtersets.py:363 netbox/dcim/filtersets.py:458 -#: netbox/extras/filtersets.py:531 netbox/ipam/filtersets.py:238 -#: netbox/ipam/filtersets.py:369 netbox/ipam/filtersets.py:989 -#: netbox/virtualization/filtersets.py:75 -#: netbox/virtualization/filtersets.py:203 netbox/vpn/filtersets.py:363 +#: circuits/filtersets.py:62 circuits/filtersets.py:229 +#: circuits/filtersets.py:274 dcim/filtersets.py:242 dcim/filtersets.py:363 +#: dcim/filtersets.py:458 extras/filtersets.py:531 ipam/filtersets.py:238 +#: ipam/filtersets.py:369 ipam/filtersets.py:989 +#: virtualization/filtersets.py:75 virtualization/filtersets.py:203 +#: vpn/filtersets.py:363 msgid "Site (slug)" msgstr "站点(缩写)" -#: netbox/circuits/filtersets.py:67 +#: circuits/filtersets.py:67 msgid "ASN (ID)" msgstr "ASN(ID)" -#: netbox/circuits/filtersets.py:73 netbox/circuits/forms/filtersets.py:31 -#: netbox/ipam/forms/model_forms.py:159 netbox/ipam/models/asns.py:108 -#: netbox/ipam/models/asns.py:125 netbox/ipam/tables/asn.py:41 -#: netbox/templates/ipam/asn.html:20 +#: circuits/filtersets.py:73 circuits/forms/filtersets.py:31 +#: ipam/forms/model_forms.py:159 ipam/models/asns.py:108 +#: ipam/models/asns.py:125 ipam/tables/asn.py:41 templates/ipam/asn.html:20 msgid "ASN" msgstr "自治系统编号/AS编号" -#: netbox/circuits/filtersets.py:95 netbox/circuits/filtersets.py:122 -#: netbox/circuits/filtersets.py:156 netbox/circuits/filtersets.py:283 -#: netbox/circuits/filtersets.py:325 netbox/ipam/filtersets.py:243 +#: circuits/filtersets.py:95 circuits/filtersets.py:122 +#: circuits/filtersets.py:156 circuits/filtersets.py:283 +#: circuits/filtersets.py:325 ipam/filtersets.py:243 msgid "Provider (ID)" msgstr "运营商(ID)" -#: netbox/circuits/filtersets.py:101 netbox/circuits/filtersets.py:128 -#: netbox/circuits/filtersets.py:162 netbox/circuits/filtersets.py:289 -#: netbox/circuits/filtersets.py:331 netbox/ipam/filtersets.py:249 +#: circuits/filtersets.py:101 circuits/filtersets.py:128 +#: circuits/filtersets.py:162 circuits/filtersets.py:289 +#: circuits/filtersets.py:331 ipam/filtersets.py:249 msgid "Provider (slug)" msgstr "运营商(缩写)" -#: netbox/circuits/filtersets.py:167 +#: circuits/filtersets.py:167 msgid "Provider account (ID)" msgstr "运营商帐户(ID)" -#: netbox/circuits/filtersets.py:173 +#: circuits/filtersets.py:173 msgid "Provider account (account)" msgstr "供应商(账户)" -#: netbox/circuits/filtersets.py:178 +#: circuits/filtersets.py:178 msgid "Provider network (ID)" msgstr "运营商网络(ID)" -#: netbox/circuits/filtersets.py:182 +#: circuits/filtersets.py:182 msgid "Circuit type (ID)" msgstr "线路类型 (ID)" -#: netbox/circuits/filtersets.py:188 +#: circuits/filtersets.py:188 msgid "Circuit type (slug)" msgstr "线路类型(缩写)" -#: netbox/circuits/filtersets.py:223 netbox/circuits/filtersets.py:268 -#: netbox/dcim/filtersets.py:236 netbox/dcim/filtersets.py:357 -#: netbox/dcim/filtersets.py:452 netbox/dcim/filtersets.py:1045 -#: netbox/dcim/filtersets.py:1393 netbox/dcim/filtersets.py:1928 -#: netbox/dcim/filtersets.py:2170 netbox/dcim/filtersets.py:2229 -#: netbox/ipam/filtersets.py:232 netbox/ipam/filtersets.py:363 -#: netbox/ipam/filtersets.py:983 netbox/virtualization/filtersets.py:69 -#: netbox/virtualization/filtersets.py:197 netbox/vpn/filtersets.py:368 +#: circuits/filtersets.py:223 circuits/filtersets.py:268 +#: dcim/filtersets.py:236 dcim/filtersets.py:357 dcim/filtersets.py:452 +#: dcim/filtersets.py:1045 dcim/filtersets.py:1393 dcim/filtersets.py:1928 +#: dcim/filtersets.py:2170 dcim/filtersets.py:2229 ipam/filtersets.py:232 +#: ipam/filtersets.py:363 ipam/filtersets.py:983 +#: virtualization/filtersets.py:69 virtualization/filtersets.py:197 +#: vpn/filtersets.py:368 msgid "Site (ID)" msgstr "站点(ID)" -#: netbox/circuits/filtersets.py:233 netbox/circuits/filtersets.py:237 +#: circuits/filtersets.py:233 circuits/filtersets.py:237 msgid "Termination A (ID)" msgstr "接入点A (ID)" -#: netbox/circuits/filtersets.py:260 netbox/circuits/filtersets.py:320 -#: netbox/core/filtersets.py:77 netbox/core/filtersets.py:136 -#: netbox/core/filtersets.py:173 netbox/dcim/filtersets.py:751 -#: netbox/dcim/filtersets.py:1362 netbox/dcim/filtersets.py:2277 -#: netbox/extras/filtersets.py:41 netbox/extras/filtersets.py:63 -#: netbox/extras/filtersets.py:92 netbox/extras/filtersets.py:132 -#: netbox/extras/filtersets.py:181 netbox/extras/filtersets.py:209 -#: netbox/extras/filtersets.py:239 netbox/extras/filtersets.py:276 -#: netbox/extras/filtersets.py:348 netbox/extras/filtersets.py:391 -#: netbox/extras/filtersets.py:438 netbox/extras/filtersets.py:498 -#: netbox/extras/filtersets.py:657 netbox/extras/filtersets.py:703 -#: netbox/ipam/forms/model_forms.py:449 netbox/netbox/filtersets.py:282 -#: netbox/netbox/forms/__init__.py:22 netbox/netbox/forms/base.py:167 -#: netbox/templates/htmx/object_selector.html:28 -#: netbox/templates/inc/filter_list.html:45 -#: netbox/templates/ipam/ipaddress_assign.html:29 -#: netbox/templates/search.html:7 netbox/templates/search.html:26 -#: netbox/tenancy/filtersets.py:99 netbox/users/filtersets.py:23 -#: netbox/users/filtersets.py:57 netbox/users/filtersets.py:102 -#: netbox/users/filtersets.py:150 netbox/utilities/forms/forms.py:104 -#: netbox/utilities/templates/navigation/menu.html:16 +#: circuits/filtersets.py:260 circuits/filtersets.py:320 core/filtersets.py:77 +#: core/filtersets.py:136 core/filtersets.py:173 dcim/filtersets.py:751 +#: dcim/filtersets.py:1362 dcim/filtersets.py:2277 extras/filtersets.py:41 +#: extras/filtersets.py:63 extras/filtersets.py:92 extras/filtersets.py:132 +#: extras/filtersets.py:181 extras/filtersets.py:209 extras/filtersets.py:239 +#: extras/filtersets.py:276 extras/filtersets.py:348 extras/filtersets.py:391 +#: extras/filtersets.py:438 extras/filtersets.py:498 extras/filtersets.py:657 +#: extras/filtersets.py:703 ipam/forms/model_forms.py:449 +#: netbox/filtersets.py:282 netbox/forms/__init__.py:22 +#: netbox/forms/base.py:167 templates/htmx/object_selector.html:28 +#: templates/inc/filter_list.html:46 templates/ipam/ipaddress_assign.html:29 +#: templates/search.html:7 templates/search.html:26 tenancy/filtersets.py:99 +#: users/filtersets.py:23 users/filtersets.py:57 users/filtersets.py:102 +#: users/filtersets.py:150 utilities/forms/forms.py:104 +#: utilities/templates/navigation/menu.html:16 msgid "Search" msgstr "搜索" -#: netbox/circuits/filtersets.py:264 netbox/circuits/forms/bulk_edit.py:172 -#: netbox/circuits/forms/bulk_edit.py:246 -#: netbox/circuits/forms/bulk_import.py:115 -#: netbox/circuits/forms/filtersets.py:198 -#: netbox/circuits/forms/filtersets.py:214 -#: netbox/circuits/forms/filtersets.py:260 -#: netbox/circuits/forms/model_forms.py:111 -#: netbox/circuits/forms/model_forms.py:133 -#: netbox/circuits/forms/model_forms.py:199 -#: netbox/circuits/tables/circuits.py:104 -#: netbox/circuits/tables/circuits.py:164 netbox/dcim/forms/connections.py:73 -#: netbox/templates/circuits/circuit.html:15 -#: netbox/templates/circuits/circuitgroupassignment.html:26 -#: netbox/templates/circuits/circuittermination.html:19 -#: netbox/templates/dcim/inc/cable_termination.html:55 -#: netbox/templates/dcim/trace/circuit.html:4 +#: circuits/filtersets.py:264 circuits/forms/bulk_edit.py:172 +#: circuits/forms/bulk_edit.py:246 circuits/forms/bulk_import.py:115 +#: circuits/forms/filtersets.py:198 circuits/forms/filtersets.py:214 +#: circuits/forms/filtersets.py:260 circuits/forms/model_forms.py:111 +#: circuits/forms/model_forms.py:133 circuits/forms/model_forms.py:199 +#: circuits/tables/circuits.py:104 circuits/tables/circuits.py:164 +#: dcim/forms/connections.py:73 templates/circuits/circuit.html:15 +#: templates/circuits/circuitgroupassignment.html:26 +#: templates/circuits/circuittermination.html:19 +#: templates/dcim/inc/cable_termination.html:55 +#: templates/dcim/trace/circuit.html:4 msgid "Circuit" msgstr "线路" -#: netbox/circuits/filtersets.py:278 +#: circuits/filtersets.py:278 msgid "ProviderNetwork (ID)" msgstr "运营商网络 (ID)" -#: netbox/circuits/filtersets.py:335 +#: circuits/filtersets.py:335 msgid "Circuit (ID)" msgstr "电路 (ID)" -#: netbox/circuits/filtersets.py:341 +#: circuits/filtersets.py:341 msgid "Circuit (CID)" msgstr "电路 (CID)" -#: netbox/circuits/filtersets.py:345 +#: circuits/filtersets.py:345 msgid "Circuit group (ID)" msgstr "电路组 (ID)" -#: netbox/circuits/filtersets.py:351 +#: circuits/filtersets.py:351 msgid "Circuit group (slug)" msgstr "电路组(slug)" -#: netbox/circuits/forms/bulk_edit.py:30 -#: netbox/circuits/forms/filtersets.py:56 -#: netbox/circuits/forms/model_forms.py:29 -#: netbox/circuits/tables/providers.py:33 netbox/dcim/forms/bulk_edit.py:128 -#: netbox/dcim/forms/filtersets.py:195 netbox/dcim/forms/model_forms.py:123 -#: netbox/dcim/tables/sites.py:94 netbox/ipam/models/asns.py:126 -#: netbox/ipam/tables/asn.py:27 netbox/ipam/views.py:213 -#: netbox/netbox/navigation/menu.py:172 netbox/netbox/navigation/menu.py:175 -#: netbox/templates/circuits/provider.html:23 +#: circuits/forms/bulk_edit.py:30 circuits/forms/filtersets.py:56 +#: circuits/forms/model_forms.py:29 circuits/tables/providers.py:33 +#: dcim/forms/bulk_edit.py:128 dcim/forms/filtersets.py:195 +#: dcim/forms/model_forms.py:123 dcim/tables/sites.py:94 +#: ipam/models/asns.py:126 ipam/tables/asn.py:27 ipam/views.py:213 +#: netbox/navigation/menu.py:172 netbox/navigation/menu.py:175 +#: templates/circuits/provider.html:23 msgid "ASNs" msgstr "自治系统编号/AS编号" -#: netbox/circuits/forms/bulk_edit.py:34 netbox/circuits/forms/bulk_edit.py:56 -#: netbox/circuits/forms/bulk_edit.py:83 -#: netbox/circuits/forms/bulk_edit.py:104 -#: netbox/circuits/forms/bulk_edit.py:164 -#: netbox/circuits/forms/bulk_edit.py:183 -#: netbox/circuits/forms/bulk_edit.py:228 netbox/core/forms/bulk_edit.py:28 -#: netbox/dcim/forms/bulk_create.py:35 netbox/dcim/forms/bulk_edit.py:73 -#: netbox/dcim/forms/bulk_edit.py:92 netbox/dcim/forms/bulk_edit.py:151 -#: netbox/dcim/forms/bulk_edit.py:192 netbox/dcim/forms/bulk_edit.py:210 -#: netbox/dcim/forms/bulk_edit.py:288 netbox/dcim/forms/bulk_edit.py:432 -#: netbox/dcim/forms/bulk_edit.py:466 netbox/dcim/forms/bulk_edit.py:481 -#: netbox/dcim/forms/bulk_edit.py:540 netbox/dcim/forms/bulk_edit.py:584 -#: netbox/dcim/forms/bulk_edit.py:618 netbox/dcim/forms/bulk_edit.py:642 -#: netbox/dcim/forms/bulk_edit.py:715 netbox/dcim/forms/bulk_edit.py:767 -#: netbox/dcim/forms/bulk_edit.py:819 netbox/dcim/forms/bulk_edit.py:842 -#: netbox/dcim/forms/bulk_edit.py:890 netbox/dcim/forms/bulk_edit.py:960 -#: netbox/dcim/forms/bulk_edit.py:1013 netbox/dcim/forms/bulk_edit.py:1048 -#: netbox/dcim/forms/bulk_edit.py:1088 netbox/dcim/forms/bulk_edit.py:1132 -#: netbox/dcim/forms/bulk_edit.py:1177 netbox/dcim/forms/bulk_edit.py:1204 -#: netbox/dcim/forms/bulk_edit.py:1222 netbox/dcim/forms/bulk_edit.py:1240 -#: netbox/dcim/forms/bulk_edit.py:1258 netbox/dcim/forms/bulk_edit.py:1682 -#: netbox/extras/forms/bulk_edit.py:39 netbox/extras/forms/bulk_edit.py:149 -#: netbox/extras/forms/bulk_edit.py:178 netbox/extras/forms/bulk_edit.py:208 -#: netbox/extras/forms/bulk_edit.py:256 netbox/extras/forms/bulk_edit.py:274 -#: netbox/extras/forms/bulk_edit.py:298 netbox/extras/forms/bulk_edit.py:312 -#: netbox/extras/forms/bulk_edit.py:339 netbox/extras/tables/tables.py:79 -#: netbox/ipam/forms/bulk_edit.py:52 netbox/ipam/forms/bulk_edit.py:72 -#: netbox/ipam/forms/bulk_edit.py:92 netbox/ipam/forms/bulk_edit.py:116 -#: netbox/ipam/forms/bulk_edit.py:145 netbox/ipam/forms/bulk_edit.py:174 -#: netbox/ipam/forms/bulk_edit.py:193 netbox/ipam/forms/bulk_edit.py:275 -#: netbox/ipam/forms/bulk_edit.py:320 netbox/ipam/forms/bulk_edit.py:368 -#: netbox/ipam/forms/bulk_edit.py:411 netbox/ipam/forms/bulk_edit.py:427 -#: netbox/ipam/forms/bulk_edit.py:561 netbox/ipam/forms/bulk_edit.py:592 -#: netbox/templates/account/token.html:35 -#: netbox/templates/circuits/circuit.html:59 -#: netbox/templates/circuits/circuitgroup.html:32 -#: netbox/templates/circuits/circuittype.html:26 -#: netbox/templates/circuits/inc/circuit_termination_fields.html:88 -#: netbox/templates/circuits/provider.html:33 -#: netbox/templates/circuits/providernetwork.html:32 -#: netbox/templates/core/datasource.html:54 -#: netbox/templates/core/plugin.html:79 netbox/templates/dcim/cable.html:36 -#: netbox/templates/dcim/consoleport.html:44 -#: netbox/templates/dcim/consoleserverport.html:44 -#: netbox/templates/dcim/device.html:94 -#: netbox/templates/dcim/devicebay.html:32 -#: netbox/templates/dcim/devicerole.html:30 -#: netbox/templates/dcim/devicetype.html:33 -#: netbox/templates/dcim/frontport.html:58 -#: netbox/templates/dcim/interface.html:69 -#: netbox/templates/dcim/inventoryitem.html:60 -#: netbox/templates/dcim/inventoryitemrole.html:22 -#: netbox/templates/dcim/location.html:33 -#: netbox/templates/dcim/manufacturer.html:40 -#: netbox/templates/dcim/module.html:73 -#: netbox/templates/dcim/modulebay.html:42 -#: netbox/templates/dcim/moduletype.html:26 -#: netbox/templates/dcim/platform.html:33 -#: netbox/templates/dcim/powerfeed.html:40 -#: netbox/templates/dcim/poweroutlet.html:40 -#: netbox/templates/dcim/powerpanel.html:30 -#: netbox/templates/dcim/powerport.html:40 netbox/templates/dcim/rack.html:53 -#: netbox/templates/dcim/rackreservation.html:62 -#: netbox/templates/dcim/rackrole.html:26 -#: netbox/templates/dcim/racktype.html:24 -#: netbox/templates/dcim/rearport.html:54 netbox/templates/dcim/region.html:33 -#: netbox/templates/dcim/site.html:60 netbox/templates/dcim/sitegroup.html:33 -#: netbox/templates/dcim/virtualchassis.html:31 -#: netbox/templates/extras/configcontext.html:21 -#: netbox/templates/extras/configtemplate.html:17 -#: netbox/templates/extras/customfield.html:34 -#: netbox/templates/extras/dashboard/widget_add.html:14 -#: netbox/templates/extras/eventrule.html:21 -#: netbox/templates/extras/exporttemplate.html:19 -#: netbox/templates/extras/notificationgroup.html:20 -#: netbox/templates/extras/savedfilter.html:17 -#: netbox/templates/extras/script_list.html:45 -#: netbox/templates/extras/tag.html:20 netbox/templates/extras/webhook.html:17 -#: netbox/templates/generic/bulk_import.html:120 -#: netbox/templates/ipam/aggregate.html:43 netbox/templates/ipam/asn.html:42 -#: netbox/templates/ipam/asnrange.html:38 -#: netbox/templates/ipam/fhrpgroup.html:34 -#: netbox/templates/ipam/ipaddress.html:55 -#: netbox/templates/ipam/iprange.html:67 netbox/templates/ipam/prefix.html:81 -#: netbox/templates/ipam/rir.html:26 netbox/templates/ipam/role.html:26 -#: netbox/templates/ipam/routetarget.html:21 -#: netbox/templates/ipam/service.html:50 -#: netbox/templates/ipam/servicetemplate.html:27 -#: netbox/templates/ipam/vlan.html:62 netbox/templates/ipam/vlangroup.html:34 -#: netbox/templates/ipam/vrf.html:33 netbox/templates/tenancy/contact.html:67 -#: netbox/templates/tenancy/contactgroup.html:25 -#: netbox/templates/tenancy/contactrole.html:22 -#: netbox/templates/tenancy/tenant.html:24 -#: netbox/templates/tenancy/tenantgroup.html:33 -#: netbox/templates/users/group.html:21 -#: netbox/templates/users/objectpermission.html:21 -#: netbox/templates/users/token.html:27 -#: netbox/templates/virtualization/cluster.html:25 -#: netbox/templates/virtualization/clustergroup.html:26 -#: netbox/templates/virtualization/clustertype.html:26 -#: netbox/templates/virtualization/virtualdisk.html:39 -#: netbox/templates/virtualization/virtualmachine.html:31 -#: netbox/templates/virtualization/vminterface.html:51 -#: netbox/templates/vpn/ikepolicy.html:17 -#: netbox/templates/vpn/ikeproposal.html:17 -#: netbox/templates/vpn/ipsecpolicy.html:17 -#: netbox/templates/vpn/ipsecprofile.html:17 -#: netbox/templates/vpn/ipsecprofile.html:40 -#: netbox/templates/vpn/ipsecprofile.html:73 -#: netbox/templates/vpn/ipsecproposal.html:17 -#: netbox/templates/vpn/l2vpn.html:26 netbox/templates/vpn/tunnel.html:33 -#: netbox/templates/vpn/tunnelgroup.html:30 -#: netbox/templates/wireless/wirelesslan.html:26 -#: netbox/templates/wireless/wirelesslangroup.html:33 -#: netbox/templates/wireless/wirelesslink.html:34 -#: netbox/tenancy/forms/bulk_edit.py:32 netbox/tenancy/forms/bulk_edit.py:80 -#: netbox/tenancy/forms/bulk_edit.py:122 netbox/users/forms/bulk_edit.py:64 -#: netbox/users/forms/bulk_edit.py:82 netbox/users/forms/bulk_edit.py:112 -#: netbox/virtualization/forms/bulk_edit.py:32 -#: netbox/virtualization/forms/bulk_edit.py:46 -#: netbox/virtualization/forms/bulk_edit.py:100 -#: netbox/virtualization/forms/bulk_edit.py:177 -#: netbox/virtualization/forms/bulk_edit.py:228 -#: netbox/virtualization/forms/bulk_edit.py:337 -#: netbox/vpn/forms/bulk_edit.py:28 netbox/vpn/forms/bulk_edit.py:64 -#: netbox/vpn/forms/bulk_edit.py:121 netbox/vpn/forms/bulk_edit.py:155 -#: netbox/vpn/forms/bulk_edit.py:190 netbox/vpn/forms/bulk_edit.py:215 -#: netbox/vpn/forms/bulk_edit.py:247 netbox/vpn/forms/bulk_edit.py:274 -#: netbox/wireless/forms/bulk_edit.py:29 netbox/wireless/forms/bulk_edit.py:82 -#: netbox/wireless/forms/bulk_edit.py:140 +#: circuits/forms/bulk_edit.py:34 circuits/forms/bulk_edit.py:56 +#: circuits/forms/bulk_edit.py:83 circuits/forms/bulk_edit.py:104 +#: circuits/forms/bulk_edit.py:164 circuits/forms/bulk_edit.py:183 +#: circuits/forms/bulk_edit.py:228 core/forms/bulk_edit.py:28 +#: dcim/forms/bulk_create.py:35 dcim/forms/bulk_edit.py:73 +#: dcim/forms/bulk_edit.py:92 dcim/forms/bulk_edit.py:151 +#: dcim/forms/bulk_edit.py:192 dcim/forms/bulk_edit.py:210 +#: dcim/forms/bulk_edit.py:288 dcim/forms/bulk_edit.py:432 +#: dcim/forms/bulk_edit.py:466 dcim/forms/bulk_edit.py:481 +#: dcim/forms/bulk_edit.py:540 dcim/forms/bulk_edit.py:584 +#: dcim/forms/bulk_edit.py:618 dcim/forms/bulk_edit.py:642 +#: dcim/forms/bulk_edit.py:715 dcim/forms/bulk_edit.py:767 +#: dcim/forms/bulk_edit.py:819 dcim/forms/bulk_edit.py:842 +#: dcim/forms/bulk_edit.py:890 dcim/forms/bulk_edit.py:960 +#: dcim/forms/bulk_edit.py:1013 dcim/forms/bulk_edit.py:1048 +#: dcim/forms/bulk_edit.py:1088 dcim/forms/bulk_edit.py:1132 +#: dcim/forms/bulk_edit.py:1177 dcim/forms/bulk_edit.py:1204 +#: dcim/forms/bulk_edit.py:1222 dcim/forms/bulk_edit.py:1240 +#: dcim/forms/bulk_edit.py:1258 dcim/forms/bulk_edit.py:1682 +#: extras/forms/bulk_edit.py:39 extras/forms/bulk_edit.py:149 +#: extras/forms/bulk_edit.py:178 extras/forms/bulk_edit.py:208 +#: extras/forms/bulk_edit.py:256 extras/forms/bulk_edit.py:274 +#: extras/forms/bulk_edit.py:298 extras/forms/bulk_edit.py:312 +#: extras/forms/bulk_edit.py:339 extras/tables/tables.py:79 +#: ipam/forms/bulk_edit.py:53 ipam/forms/bulk_edit.py:73 +#: ipam/forms/bulk_edit.py:93 ipam/forms/bulk_edit.py:117 +#: ipam/forms/bulk_edit.py:146 ipam/forms/bulk_edit.py:175 +#: ipam/forms/bulk_edit.py:194 ipam/forms/bulk_edit.py:276 +#: ipam/forms/bulk_edit.py:321 ipam/forms/bulk_edit.py:369 +#: ipam/forms/bulk_edit.py:412 ipam/forms/bulk_edit.py:428 +#: ipam/forms/bulk_edit.py:516 ipam/forms/bulk_edit.py:547 +#: templates/account/token.html:35 templates/circuits/circuit.html:59 +#: templates/circuits/circuitgroup.html:32 +#: templates/circuits/circuittype.html:26 +#: templates/circuits/inc/circuit_termination_fields.html:88 +#: templates/circuits/provider.html:33 +#: templates/circuits/providernetwork.html:32 +#: templates/core/datasource.html:54 templates/core/plugin.html:80 +#: templates/dcim/cable.html:36 templates/dcim/consoleport.html:44 +#: templates/dcim/consoleserverport.html:44 templates/dcim/device.html:94 +#: templates/dcim/devicebay.html:32 templates/dcim/devicerole.html:30 +#: templates/dcim/devicetype.html:33 templates/dcim/frontport.html:58 +#: templates/dcim/interface.html:69 templates/dcim/inventoryitem.html:60 +#: templates/dcim/inventoryitemrole.html:22 templates/dcim/location.html:33 +#: templates/dcim/manufacturer.html:40 templates/dcim/module.html:73 +#: templates/dcim/modulebay.html:42 templates/dcim/moduletype.html:37 +#: templates/dcim/platform.html:33 templates/dcim/powerfeed.html:40 +#: templates/dcim/poweroutlet.html:40 templates/dcim/powerpanel.html:30 +#: templates/dcim/powerport.html:40 templates/dcim/rack.html:53 +#: templates/dcim/rackreservation.html:62 templates/dcim/rackrole.html:26 +#: templates/dcim/racktype.html:24 templates/dcim/rearport.html:54 +#: templates/dcim/region.html:33 templates/dcim/site.html:60 +#: templates/dcim/sitegroup.html:33 templates/dcim/virtualchassis.html:31 +#: templates/extras/configcontext.html:21 +#: templates/extras/configtemplate.html:17 +#: templates/extras/customfield.html:34 +#: templates/extras/dashboard/widget_add.html:14 +#: templates/extras/eventrule.html:21 templates/extras/exporttemplate.html:19 +#: templates/extras/notificationgroup.html:20 +#: templates/extras/savedfilter.html:17 templates/extras/script_list.html:45 +#: templates/extras/tag.html:20 templates/extras/webhook.html:17 +#: templates/generic/bulk_import.html:120 templates/ipam/aggregate.html:43 +#: templates/ipam/asn.html:42 templates/ipam/asnrange.html:38 +#: templates/ipam/fhrpgroup.html:34 templates/ipam/ipaddress.html:55 +#: templates/ipam/iprange.html:67 templates/ipam/prefix.html:81 +#: templates/ipam/rir.html:26 templates/ipam/role.html:26 +#: templates/ipam/routetarget.html:21 templates/ipam/service.html:50 +#: templates/ipam/servicetemplate.html:27 templates/ipam/vlan.html:62 +#: templates/ipam/vlangroup.html:34 templates/ipam/vrf.html:33 +#: templates/tenancy/contact.html:67 templates/tenancy/contactgroup.html:25 +#: templates/tenancy/contactrole.html:22 templates/tenancy/tenant.html:24 +#: templates/tenancy/tenantgroup.html:33 templates/users/group.html:21 +#: templates/users/objectpermission.html:21 templates/users/token.html:27 +#: templates/virtualization/cluster.html:25 +#: templates/virtualization/clustergroup.html:26 +#: templates/virtualization/clustertype.html:26 +#: templates/virtualization/virtualdisk.html:39 +#: templates/virtualization/virtualmachine.html:31 +#: templates/virtualization/vminterface.html:51 +#: templates/vpn/ikepolicy.html:17 templates/vpn/ikeproposal.html:17 +#: templates/vpn/ipsecpolicy.html:17 templates/vpn/ipsecprofile.html:17 +#: templates/vpn/ipsecprofile.html:40 templates/vpn/ipsecprofile.html:73 +#: templates/vpn/ipsecproposal.html:17 templates/vpn/l2vpn.html:26 +#: templates/vpn/tunnel.html:33 templates/vpn/tunnelgroup.html:30 +#: templates/wireless/wirelesslan.html:26 +#: templates/wireless/wirelesslangroup.html:33 +#: templates/wireless/wirelesslink.html:34 tenancy/forms/bulk_edit.py:32 +#: tenancy/forms/bulk_edit.py:80 tenancy/forms/bulk_edit.py:122 +#: users/forms/bulk_edit.py:64 users/forms/bulk_edit.py:82 +#: users/forms/bulk_edit.py:112 virtualization/forms/bulk_edit.py:32 +#: virtualization/forms/bulk_edit.py:46 virtualization/forms/bulk_edit.py:100 +#: virtualization/forms/bulk_edit.py:177 virtualization/forms/bulk_edit.py:228 +#: virtualization/forms/bulk_edit.py:337 vpn/forms/bulk_edit.py:28 +#: vpn/forms/bulk_edit.py:64 vpn/forms/bulk_edit.py:121 +#: vpn/forms/bulk_edit.py:155 vpn/forms/bulk_edit.py:190 +#: vpn/forms/bulk_edit.py:215 vpn/forms/bulk_edit.py:247 +#: vpn/forms/bulk_edit.py:274 wireless/forms/bulk_edit.py:29 +#: wireless/forms/bulk_edit.py:82 wireless/forms/bulk_edit.py:140 msgid "Description" msgstr "描述" -#: netbox/circuits/forms/bulk_edit.py:51 netbox/circuits/forms/bulk_edit.py:73 -#: netbox/circuits/forms/bulk_edit.py:123 -#: netbox/circuits/forms/bulk_import.py:36 -#: netbox/circuits/forms/bulk_import.py:51 -#: netbox/circuits/forms/bulk_import.py:74 -#: netbox/circuits/forms/filtersets.py:70 -#: netbox/circuits/forms/filtersets.py:88 -#: netbox/circuits/forms/filtersets.py:116 -#: netbox/circuits/forms/filtersets.py:131 -#: netbox/circuits/forms/filtersets.py:199 -#: netbox/circuits/forms/filtersets.py:232 -#: netbox/circuits/forms/filtersets.py:255 -#: netbox/circuits/forms/model_forms.py:47 -#: netbox/circuits/forms/model_forms.py:61 -#: netbox/circuits/forms/model_forms.py:93 -#: netbox/circuits/tables/circuits.py:58 -#: netbox/circuits/tables/circuits.py:108 -#: netbox/circuits/tables/circuits.py:160 -#: netbox/circuits/tables/providers.py:72 -#: netbox/circuits/tables/providers.py:103 -#: netbox/templates/circuits/circuit.html:18 -#: netbox/templates/circuits/circuittermination.html:25 -#: netbox/templates/circuits/provider.html:20 -#: netbox/templates/circuits/provideraccount.html:20 -#: netbox/templates/circuits/providernetwork.html:20 -#: netbox/templates/dcim/inc/cable_termination.html:51 +#: circuits/forms/bulk_edit.py:51 circuits/forms/bulk_edit.py:73 +#: circuits/forms/bulk_edit.py:123 circuits/forms/bulk_import.py:36 +#: circuits/forms/bulk_import.py:51 circuits/forms/bulk_import.py:74 +#: circuits/forms/filtersets.py:70 circuits/forms/filtersets.py:88 +#: circuits/forms/filtersets.py:116 circuits/forms/filtersets.py:131 +#: circuits/forms/filtersets.py:199 circuits/forms/filtersets.py:232 +#: circuits/forms/filtersets.py:255 circuits/forms/model_forms.py:47 +#: circuits/forms/model_forms.py:61 circuits/forms/model_forms.py:93 +#: circuits/tables/circuits.py:58 circuits/tables/circuits.py:108 +#: circuits/tables/circuits.py:160 circuits/tables/providers.py:72 +#: circuits/tables/providers.py:103 templates/circuits/circuit.html:18 +#: templates/circuits/circuittermination.html:25 +#: templates/circuits/provider.html:20 +#: templates/circuits/provideraccount.html:20 +#: templates/circuits/providernetwork.html:20 +#: templates/dcim/inc/cable_termination.html:51 msgid "Provider" msgstr "运营商" -#: netbox/circuits/forms/bulk_edit.py:80 -#: netbox/circuits/forms/filtersets.py:91 -#: netbox/templates/circuits/providernetwork.html:28 +#: circuits/forms/bulk_edit.py:80 circuits/forms/filtersets.py:91 +#: templates/circuits/providernetwork.html:28 msgid "Service ID" msgstr "服务ID" -#: netbox/circuits/forms/bulk_edit.py:100 -#: netbox/circuits/forms/filtersets.py:107 netbox/dcim/forms/bulk_edit.py:206 -#: netbox/dcim/forms/bulk_edit.py:604 netbox/dcim/forms/bulk_edit.py:804 -#: netbox/dcim/forms/bulk_edit.py:1173 netbox/dcim/forms/bulk_edit.py:1200 -#: netbox/dcim/forms/bulk_edit.py:1678 netbox/dcim/forms/filtersets.py:1064 -#: netbox/dcim/forms/filtersets.py:1455 netbox/dcim/forms/filtersets.py:1479 -#: netbox/dcim/tables/devices.py:704 netbox/dcim/tables/devices.py:761 -#: netbox/dcim/tables/devices.py:1003 netbox/dcim/tables/devicetypes.py:249 -#: netbox/dcim/tables/devicetypes.py:264 netbox/dcim/tables/racks.py:33 -#: netbox/extras/forms/bulk_edit.py:270 netbox/extras/tables/tables.py:443 -#: netbox/templates/circuits/circuittype.html:30 -#: netbox/templates/dcim/cable.html:40 -#: netbox/templates/dcim/devicerole.html:34 -#: netbox/templates/dcim/frontport.html:40 -#: netbox/templates/dcim/inventoryitemrole.html:26 -#: netbox/templates/dcim/rackrole.html:30 -#: netbox/templates/dcim/rearport.html:40 netbox/templates/extras/tag.html:26 +#: circuits/forms/bulk_edit.py:100 circuits/forms/filtersets.py:107 +#: dcim/forms/bulk_edit.py:206 dcim/forms/bulk_edit.py:604 +#: dcim/forms/bulk_edit.py:804 dcim/forms/bulk_edit.py:1173 +#: dcim/forms/bulk_edit.py:1200 dcim/forms/bulk_edit.py:1678 +#: dcim/forms/filtersets.py:1064 dcim/forms/filtersets.py:1455 +#: dcim/forms/filtersets.py:1479 dcim/tables/devices.py:704 +#: dcim/tables/devices.py:761 dcim/tables/devices.py:1003 +#: dcim/tables/devicetypes.py:249 dcim/tables/devicetypes.py:264 +#: dcim/tables/racks.py:33 extras/forms/bulk_edit.py:270 +#: extras/tables/tables.py:443 templates/circuits/circuittype.html:30 +#: templates/dcim/cable.html:40 templates/dcim/devicerole.html:34 +#: templates/dcim/frontport.html:40 templates/dcim/inventoryitemrole.html:26 +#: templates/dcim/rackrole.html:30 templates/dcim/rearport.html:40 +#: templates/extras/tag.html:26 msgid "Color" msgstr "颜色" -#: netbox/circuits/forms/bulk_edit.py:118 -#: netbox/circuits/forms/bulk_import.py:87 -#: netbox/circuits/forms/filtersets.py:126 netbox/core/forms/bulk_edit.py:18 -#: netbox/core/forms/filtersets.py:33 netbox/core/tables/change_logging.py:32 -#: netbox/core/tables/data.py:20 netbox/core/tables/jobs.py:18 -#: netbox/dcim/forms/bulk_edit.py:782 netbox/dcim/forms/bulk_edit.py:921 -#: netbox/dcim/forms/bulk_edit.py:989 netbox/dcim/forms/bulk_edit.py:1008 -#: netbox/dcim/forms/bulk_edit.py:1031 netbox/dcim/forms/bulk_edit.py:1073 -#: netbox/dcim/forms/bulk_edit.py:1117 netbox/dcim/forms/bulk_edit.py:1168 -#: netbox/dcim/forms/bulk_edit.py:1195 netbox/dcim/forms/bulk_import.py:188 -#: netbox/dcim/forms/bulk_import.py:260 netbox/dcim/forms/bulk_import.py:708 -#: netbox/dcim/forms/bulk_import.py:734 netbox/dcim/forms/bulk_import.py:760 -#: netbox/dcim/forms/bulk_import.py:780 netbox/dcim/forms/bulk_import.py:863 -#: netbox/dcim/forms/bulk_import.py:957 netbox/dcim/forms/bulk_import.py:999 -#: netbox/dcim/forms/bulk_import.py:1213 netbox/dcim/forms/bulk_import.py:1376 -#: netbox/dcim/forms/filtersets.py:955 netbox/dcim/forms/filtersets.py:1054 -#: netbox/dcim/forms/filtersets.py:1175 netbox/dcim/forms/filtersets.py:1247 -#: netbox/dcim/forms/filtersets.py:1272 netbox/dcim/forms/filtersets.py:1296 -#: netbox/dcim/forms/filtersets.py:1316 netbox/dcim/forms/filtersets.py:1353 -#: netbox/dcim/forms/filtersets.py:1450 netbox/dcim/forms/filtersets.py:1474 -#: netbox/dcim/forms/model_forms.py:703 netbox/dcim/forms/model_forms.py:709 -#: netbox/dcim/forms/object_import.py:84 -#: netbox/dcim/forms/object_import.py:113 -#: netbox/dcim/forms/object_import.py:145 netbox/dcim/tables/devices.py:178 -#: netbox/dcim/tables/devices.py:814 netbox/dcim/tables/power.py:77 -#: netbox/dcim/tables/racks.py:138 netbox/extras/forms/bulk_import.py:42 -#: netbox/extras/tables/tables.py:405 netbox/extras/tables/tables.py:465 -#: netbox/netbox/tables/tables.py:240 -#: netbox/templates/circuits/circuit.html:30 -#: netbox/templates/core/datasource.html:38 -#: netbox/templates/dcim/cable.html:15 -#: netbox/templates/dcim/consoleport.html:36 -#: netbox/templates/dcim/consoleserverport.html:36 -#: netbox/templates/dcim/frontport.html:36 -#: netbox/templates/dcim/interface.html:46 -#: netbox/templates/dcim/interface.html:169 -#: netbox/templates/dcim/interface.html:311 -#: netbox/templates/dcim/powerfeed.html:32 -#: netbox/templates/dcim/poweroutlet.html:36 -#: netbox/templates/dcim/powerport.html:36 -#: netbox/templates/dcim/rearport.html:36 -#: netbox/templates/extras/eventrule.html:74 -#: netbox/templates/virtualization/cluster.html:17 -#: netbox/templates/vpn/l2vpn.html:22 -#: netbox/templates/wireless/inc/authentication_attrs.html:8 -#: netbox/templates/wireless/inc/wirelesslink_interface.html:14 -#: netbox/virtualization/forms/bulk_edit.py:60 -#: netbox/virtualization/forms/bulk_import.py:41 -#: netbox/virtualization/forms/filtersets.py:54 -#: netbox/virtualization/forms/model_forms.py:62 -#: netbox/virtualization/tables/clusters.py:66 -#: netbox/vpn/forms/bulk_edit.py:264 netbox/vpn/forms/bulk_import.py:264 -#: netbox/vpn/forms/filtersets.py:217 netbox/vpn/forms/model_forms.py:84 -#: netbox/vpn/forms/model_forms.py:119 netbox/vpn/forms/model_forms.py:231 +#: circuits/forms/bulk_edit.py:118 circuits/forms/bulk_import.py:87 +#: circuits/forms/filtersets.py:126 core/forms/bulk_edit.py:18 +#: core/forms/filtersets.py:33 core/tables/change_logging.py:32 +#: core/tables/data.py:20 core/tables/jobs.py:18 dcim/forms/bulk_edit.py:782 +#: dcim/forms/bulk_edit.py:921 dcim/forms/bulk_edit.py:989 +#: dcim/forms/bulk_edit.py:1008 dcim/forms/bulk_edit.py:1031 +#: dcim/forms/bulk_edit.py:1073 dcim/forms/bulk_edit.py:1117 +#: dcim/forms/bulk_edit.py:1168 dcim/forms/bulk_edit.py:1195 +#: dcim/forms/bulk_import.py:188 dcim/forms/bulk_import.py:260 +#: dcim/forms/bulk_import.py:708 dcim/forms/bulk_import.py:734 +#: dcim/forms/bulk_import.py:760 dcim/forms/bulk_import.py:780 +#: dcim/forms/bulk_import.py:863 dcim/forms/bulk_import.py:957 +#: dcim/forms/bulk_import.py:999 dcim/forms/bulk_import.py:1213 +#: dcim/forms/bulk_import.py:1376 dcim/forms/filtersets.py:955 +#: dcim/forms/filtersets.py:1054 dcim/forms/filtersets.py:1175 +#: dcim/forms/filtersets.py:1247 dcim/forms/filtersets.py:1272 +#: dcim/forms/filtersets.py:1296 dcim/forms/filtersets.py:1316 +#: dcim/forms/filtersets.py:1353 dcim/forms/filtersets.py:1450 +#: dcim/forms/filtersets.py:1474 dcim/forms/model_forms.py:703 +#: dcim/forms/model_forms.py:709 dcim/forms/object_import.py:84 +#: dcim/forms/object_import.py:113 dcim/forms/object_import.py:145 +#: dcim/tables/devices.py:178 dcim/tables/devices.py:814 +#: dcim/tables/power.py:77 dcim/tables/racks.py:138 +#: extras/forms/bulk_import.py:42 extras/tables/tables.py:405 +#: extras/tables/tables.py:465 netbox/tables/tables.py:240 +#: templates/circuits/circuit.html:30 templates/core/datasource.html:38 +#: templates/dcim/cable.html:15 templates/dcim/consoleport.html:36 +#: templates/dcim/consoleserverport.html:36 templates/dcim/frontport.html:36 +#: templates/dcim/interface.html:46 templates/dcim/interface.html:169 +#: templates/dcim/interface.html:311 templates/dcim/powerfeed.html:32 +#: templates/dcim/poweroutlet.html:36 templates/dcim/powerport.html:36 +#: templates/dcim/rearport.html:36 templates/extras/eventrule.html:74 +#: templates/virtualization/cluster.html:17 templates/vpn/l2vpn.html:22 +#: templates/wireless/inc/authentication_attrs.html:8 +#: templates/wireless/inc/wirelesslink_interface.html:14 +#: virtualization/forms/bulk_edit.py:60 virtualization/forms/bulk_import.py:41 +#: virtualization/forms/filtersets.py:54 +#: virtualization/forms/model_forms.py:62 virtualization/tables/clusters.py:66 +#: vpn/forms/bulk_edit.py:264 vpn/forms/bulk_import.py:264 +#: vpn/forms/filtersets.py:217 vpn/forms/model_forms.py:84 +#: vpn/forms/model_forms.py:119 vpn/forms/model_forms.py:231 msgid "Type" msgstr "类型" -#: netbox/circuits/forms/bulk_edit.py:128 -#: netbox/circuits/forms/bulk_import.py:80 -#: netbox/circuits/forms/filtersets.py:139 -#: netbox/circuits/forms/model_forms.py:98 +#: circuits/forms/bulk_edit.py:128 circuits/forms/bulk_import.py:80 +#: circuits/forms/filtersets.py:139 circuits/forms/model_forms.py:98 msgid "Provider account" msgstr "运营商账户" -#: netbox/circuits/forms/bulk_edit.py:136 -#: netbox/circuits/forms/bulk_import.py:93 -#: netbox/circuits/forms/filtersets.py:150 netbox/core/forms/filtersets.py:38 -#: netbox/core/forms/filtersets.py:79 netbox/core/tables/data.py:23 -#: netbox/core/tables/jobs.py:26 netbox/core/tables/tasks.py:88 -#: netbox/dcim/forms/bulk_edit.py:106 netbox/dcim/forms/bulk_edit.py:181 -#: netbox/dcim/forms/bulk_edit.py:351 netbox/dcim/forms/bulk_edit.py:700 -#: netbox/dcim/forms/bulk_edit.py:756 netbox/dcim/forms/bulk_edit.py:788 -#: netbox/dcim/forms/bulk_edit.py:915 netbox/dcim/forms/bulk_edit.py:1701 -#: netbox/dcim/forms/bulk_import.py:88 netbox/dcim/forms/bulk_import.py:147 -#: netbox/dcim/forms/bulk_import.py:248 netbox/dcim/forms/bulk_import.py:505 -#: netbox/dcim/forms/bulk_import.py:659 netbox/dcim/forms/bulk_import.py:1207 -#: netbox/dcim/forms/bulk_import.py:1371 netbox/dcim/forms/bulk_import.py:1435 -#: netbox/dcim/forms/filtersets.py:178 netbox/dcim/forms/filtersets.py:237 -#: netbox/dcim/forms/filtersets.py:359 netbox/dcim/forms/filtersets.py:799 -#: netbox/dcim/forms/filtersets.py:924 netbox/dcim/forms/filtersets.py:958 -#: netbox/dcim/forms/filtersets.py:1059 netbox/dcim/forms/filtersets.py:1170 -#: netbox/dcim/tables/devices.py:140 netbox/dcim/tables/devices.py:817 -#: netbox/dcim/tables/devices.py:1063 netbox/dcim/tables/modules.py:69 -#: netbox/dcim/tables/power.py:74 netbox/dcim/tables/racks.py:126 -#: netbox/dcim/tables/sites.py:82 netbox/dcim/tables/sites.py:138 -#: netbox/ipam/forms/bulk_edit.py:255 netbox/ipam/forms/bulk_edit.py:305 -#: netbox/ipam/forms/bulk_edit.py:353 netbox/ipam/forms/bulk_edit.py:551 -#: netbox/ipam/forms/bulk_import.py:192 netbox/ipam/forms/bulk_import.py:257 -#: netbox/ipam/forms/bulk_import.py:293 netbox/ipam/forms/bulk_import.py:450 -#: netbox/ipam/forms/filtersets.py:210 netbox/ipam/forms/filtersets.py:281 -#: netbox/ipam/forms/filtersets.py:355 netbox/ipam/forms/filtersets.py:501 -#: netbox/ipam/forms/model_forms.py:468 netbox/ipam/tables/ip.py:237 -#: netbox/ipam/tables/ip.py:312 netbox/ipam/tables/ip.py:363 -#: netbox/ipam/tables/ip.py:426 netbox/ipam/tables/ip.py:453 -#: netbox/ipam/tables/vlans.py:126 netbox/ipam/tables/vlans.py:232 -#: netbox/templates/circuits/circuit.html:34 -#: netbox/templates/core/datasource.html:46 netbox/templates/core/job.html:48 -#: netbox/templates/core/rq_task.html:81 netbox/templates/core/system.html:18 -#: netbox/templates/dcim/cable.html:19 netbox/templates/dcim/device.html:178 -#: netbox/templates/dcim/location.html:45 netbox/templates/dcim/module.html:69 -#: netbox/templates/dcim/powerfeed.html:36 netbox/templates/dcim/rack.html:41 -#: netbox/templates/dcim/site.html:43 -#: netbox/templates/extras/script_list.html:47 -#: netbox/templates/ipam/ipaddress.html:37 -#: netbox/templates/ipam/iprange.html:54 netbox/templates/ipam/prefix.html:73 -#: netbox/templates/ipam/vlan.html:48 -#: netbox/templates/virtualization/cluster.html:21 -#: netbox/templates/virtualization/virtualmachine.html:19 -#: netbox/templates/vpn/tunnel.html:25 -#: netbox/templates/wireless/wirelesslan.html:22 -#: netbox/templates/wireless/wirelesslink.html:17 -#: netbox/users/forms/filtersets.py:32 netbox/users/forms/model_forms.py:194 -#: netbox/virtualization/forms/bulk_edit.py:70 -#: netbox/virtualization/forms/bulk_edit.py:118 -#: netbox/virtualization/forms/bulk_import.py:54 -#: netbox/virtualization/forms/bulk_import.py:80 -#: netbox/virtualization/forms/filtersets.py:62 -#: netbox/virtualization/forms/filtersets.py:160 -#: netbox/virtualization/tables/clusters.py:74 -#: netbox/virtualization/tables/virtualmachines.py:60 -#: netbox/vpn/forms/bulk_edit.py:39 netbox/vpn/forms/bulk_import.py:37 -#: netbox/vpn/forms/filtersets.py:47 netbox/vpn/tables/tunnels.py:48 -#: netbox/wireless/forms/bulk_edit.py:43 -#: netbox/wireless/forms/bulk_edit.py:105 -#: netbox/wireless/forms/bulk_import.py:43 -#: netbox/wireless/forms/bulk_import.py:84 -#: netbox/wireless/forms/filtersets.py:49 -#: netbox/wireless/forms/filtersets.py:83 -#: netbox/wireless/tables/wirelesslan.py:52 -#: netbox/wireless/tables/wirelesslink.py:20 +#: circuits/forms/bulk_edit.py:136 circuits/forms/bulk_import.py:93 +#: circuits/forms/filtersets.py:150 core/forms/filtersets.py:38 +#: core/forms/filtersets.py:79 core/tables/data.py:23 core/tables/jobs.py:26 +#: core/tables/tasks.py:88 dcim/forms/bulk_edit.py:106 +#: dcim/forms/bulk_edit.py:181 dcim/forms/bulk_edit.py:351 +#: dcim/forms/bulk_edit.py:700 dcim/forms/bulk_edit.py:756 +#: dcim/forms/bulk_edit.py:788 dcim/forms/bulk_edit.py:915 +#: dcim/forms/bulk_edit.py:1701 dcim/forms/bulk_import.py:88 +#: dcim/forms/bulk_import.py:147 dcim/forms/bulk_import.py:248 +#: dcim/forms/bulk_import.py:505 dcim/forms/bulk_import.py:659 +#: dcim/forms/bulk_import.py:1207 dcim/forms/bulk_import.py:1371 +#: dcim/forms/bulk_import.py:1435 dcim/forms/filtersets.py:178 +#: dcim/forms/filtersets.py:237 dcim/forms/filtersets.py:359 +#: dcim/forms/filtersets.py:799 dcim/forms/filtersets.py:924 +#: dcim/forms/filtersets.py:958 dcim/forms/filtersets.py:1059 +#: dcim/forms/filtersets.py:1170 dcim/tables/devices.py:140 +#: dcim/tables/devices.py:817 dcim/tables/devices.py:1063 +#: dcim/tables/modules.py:69 dcim/tables/power.py:74 dcim/tables/racks.py:126 +#: dcim/tables/sites.py:82 dcim/tables/sites.py:138 +#: ipam/forms/bulk_edit.py:256 ipam/forms/bulk_edit.py:306 +#: ipam/forms/bulk_edit.py:354 ipam/forms/bulk_edit.py:506 +#: ipam/forms/bulk_import.py:192 ipam/forms/bulk_import.py:257 +#: ipam/forms/bulk_import.py:293 ipam/forms/bulk_import.py:450 +#: ipam/forms/filtersets.py:210 ipam/forms/filtersets.py:281 +#: ipam/forms/filtersets.py:355 ipam/forms/filtersets.py:501 +#: ipam/forms/model_forms.py:468 ipam/tables/ip.py:237 ipam/tables/ip.py:312 +#: ipam/tables/ip.py:363 ipam/tables/ip.py:426 ipam/tables/ip.py:453 +#: ipam/tables/vlans.py:126 ipam/tables/vlans.py:232 +#: templates/circuits/circuit.html:34 templates/core/datasource.html:46 +#: templates/core/job.html:48 templates/core/rq_task.html:81 +#: templates/core/system.html:18 templates/dcim/cable.html:19 +#: templates/dcim/device.html:178 templates/dcim/location.html:45 +#: templates/dcim/module.html:69 templates/dcim/powerfeed.html:36 +#: templates/dcim/rack.html:41 templates/dcim/site.html:43 +#: templates/extras/script_list.html:47 templates/ipam/ipaddress.html:37 +#: templates/ipam/iprange.html:54 templates/ipam/prefix.html:73 +#: templates/ipam/vlan.html:48 templates/virtualization/cluster.html:21 +#: templates/virtualization/virtualmachine.html:19 +#: templates/vpn/tunnel.html:25 templates/wireless/wirelesslan.html:22 +#: templates/wireless/wirelesslink.html:17 users/forms/filtersets.py:32 +#: users/forms/model_forms.py:194 virtualization/forms/bulk_edit.py:70 +#: virtualization/forms/bulk_edit.py:118 +#: virtualization/forms/bulk_import.py:54 +#: virtualization/forms/bulk_import.py:80 +#: virtualization/forms/filtersets.py:62 +#: virtualization/forms/filtersets.py:160 virtualization/tables/clusters.py:74 +#: virtualization/tables/virtualmachines.py:60 vpn/forms/bulk_edit.py:39 +#: vpn/forms/bulk_import.py:37 vpn/forms/filtersets.py:47 +#: vpn/tables/tunnels.py:48 wireless/forms/bulk_edit.py:43 +#: wireless/forms/bulk_edit.py:105 wireless/forms/bulk_import.py:43 +#: wireless/forms/bulk_import.py:84 wireless/forms/filtersets.py:49 +#: wireless/forms/filtersets.py:83 wireless/tables/wirelesslan.py:52 +#: wireless/tables/wirelesslink.py:20 msgid "Status" msgstr "状态" -#: netbox/circuits/forms/bulk_edit.py:142 -#: netbox/circuits/forms/bulk_edit.py:233 -#: netbox/circuits/forms/bulk_import.py:98 -#: netbox/circuits/forms/bulk_import.py:158 -#: netbox/circuits/forms/filtersets.py:119 -#: netbox/circuits/forms/filtersets.py:241 netbox/dcim/forms/bulk_edit.py:122 -#: netbox/dcim/forms/bulk_edit.py:187 netbox/dcim/forms/bulk_edit.py:346 -#: netbox/dcim/forms/bulk_edit.py:461 netbox/dcim/forms/bulk_edit.py:690 -#: netbox/dcim/forms/bulk_edit.py:794 netbox/dcim/forms/bulk_edit.py:1706 -#: netbox/dcim/forms/bulk_import.py:107 netbox/dcim/forms/bulk_import.py:152 -#: netbox/dcim/forms/bulk_import.py:241 netbox/dcim/forms/bulk_import.py:334 -#: netbox/dcim/forms/bulk_import.py:479 netbox/dcim/forms/bulk_import.py:1219 -#: netbox/dcim/forms/bulk_import.py:1428 netbox/dcim/forms/filtersets.py:173 -#: netbox/dcim/forms/filtersets.py:205 netbox/dcim/forms/filtersets.py:323 -#: netbox/dcim/forms/filtersets.py:399 netbox/dcim/forms/filtersets.py:420 -#: netbox/dcim/forms/filtersets.py:722 netbox/dcim/forms/filtersets.py:916 -#: netbox/dcim/forms/filtersets.py:978 netbox/dcim/forms/filtersets.py:1008 -#: netbox/dcim/forms/filtersets.py:1130 netbox/dcim/tables/power.py:88 -#: netbox/extras/filtersets.py:612 netbox/extras/forms/filtersets.py:323 -#: netbox/extras/forms/filtersets.py:396 netbox/ipam/forms/bulk_edit.py:42 -#: netbox/ipam/forms/bulk_edit.py:67 netbox/ipam/forms/bulk_edit.py:111 -#: netbox/ipam/forms/bulk_edit.py:140 netbox/ipam/forms/bulk_edit.py:165 -#: netbox/ipam/forms/bulk_edit.py:250 netbox/ipam/forms/bulk_edit.py:300 -#: netbox/ipam/forms/bulk_edit.py:348 netbox/ipam/forms/bulk_edit.py:546 -#: netbox/ipam/forms/bulk_import.py:38 netbox/ipam/forms/bulk_import.py:67 -#: netbox/ipam/forms/bulk_import.py:95 netbox/ipam/forms/bulk_import.py:115 -#: netbox/ipam/forms/bulk_import.py:135 netbox/ipam/forms/bulk_import.py:164 -#: netbox/ipam/forms/bulk_import.py:250 netbox/ipam/forms/bulk_import.py:286 -#: netbox/ipam/forms/bulk_import.py:443 netbox/ipam/forms/filtersets.py:48 -#: netbox/ipam/forms/filtersets.py:68 netbox/ipam/forms/filtersets.py:100 -#: netbox/ipam/forms/filtersets.py:120 netbox/ipam/forms/filtersets.py:143 -#: netbox/ipam/forms/filtersets.py:174 netbox/ipam/forms/filtersets.py:267 -#: netbox/ipam/forms/filtersets.py:310 netbox/ipam/forms/filtersets.py:469 -#: netbox/ipam/tables/ip.py:456 netbox/ipam/tables/vlans.py:229 -#: netbox/templates/circuits/circuit.html:38 -#: netbox/templates/circuits/circuitgroup.html:36 -#: netbox/templates/dcim/cable.html:23 netbox/templates/dcim/device.html:79 -#: netbox/templates/dcim/location.html:49 -#: netbox/templates/dcim/powerfeed.html:44 netbox/templates/dcim/rack.html:32 -#: netbox/templates/dcim/rackreservation.html:49 -#: netbox/templates/dcim/site.html:47 -#: netbox/templates/dcim/virtualdevicecontext.html:52 -#: netbox/templates/ipam/aggregate.html:30 netbox/templates/ipam/asn.html:33 -#: netbox/templates/ipam/asnrange.html:29 -#: netbox/templates/ipam/ipaddress.html:28 -#: netbox/templates/ipam/iprange.html:58 netbox/templates/ipam/prefix.html:29 -#: netbox/templates/ipam/routetarget.html:17 -#: netbox/templates/ipam/vlan.html:39 netbox/templates/ipam/vrf.html:20 -#: netbox/templates/tenancy/tenant.html:17 -#: netbox/templates/virtualization/cluster.html:33 -#: netbox/templates/virtualization/virtualmachine.html:39 -#: netbox/templates/vpn/l2vpn.html:30 netbox/templates/vpn/tunnel.html:49 -#: netbox/templates/wireless/wirelesslan.html:34 -#: netbox/templates/wireless/wirelesslink.html:25 -#: netbox/tenancy/forms/forms.py:25 netbox/tenancy/forms/forms.py:48 -#: netbox/tenancy/forms/model_forms.py:52 netbox/tenancy/tables/columns.py:64 -#: netbox/virtualization/forms/bulk_edit.py:76 -#: netbox/virtualization/forms/bulk_edit.py:155 -#: netbox/virtualization/forms/bulk_import.py:66 -#: netbox/virtualization/forms/bulk_import.py:115 -#: netbox/virtualization/forms/filtersets.py:47 -#: netbox/virtualization/forms/filtersets.py:105 -#: netbox/vpn/forms/bulk_edit.py:59 netbox/vpn/forms/bulk_edit.py:269 -#: netbox/vpn/forms/bulk_import.py:59 netbox/vpn/forms/bulk_import.py:258 -#: netbox/vpn/forms/filtersets.py:214 netbox/wireless/forms/bulk_edit.py:63 -#: netbox/wireless/forms/bulk_edit.py:110 -#: netbox/wireless/forms/bulk_import.py:55 -#: netbox/wireless/forms/bulk_import.py:97 -#: netbox/wireless/forms/filtersets.py:35 -#: netbox/wireless/forms/filtersets.py:75 +#: circuits/forms/bulk_edit.py:142 circuits/forms/bulk_edit.py:233 +#: circuits/forms/bulk_import.py:98 circuits/forms/bulk_import.py:158 +#: circuits/forms/filtersets.py:119 circuits/forms/filtersets.py:241 +#: dcim/forms/bulk_edit.py:122 dcim/forms/bulk_edit.py:187 +#: dcim/forms/bulk_edit.py:346 dcim/forms/bulk_edit.py:461 +#: dcim/forms/bulk_edit.py:690 dcim/forms/bulk_edit.py:794 +#: dcim/forms/bulk_edit.py:1706 dcim/forms/bulk_import.py:107 +#: dcim/forms/bulk_import.py:152 dcim/forms/bulk_import.py:241 +#: dcim/forms/bulk_import.py:334 dcim/forms/bulk_import.py:479 +#: dcim/forms/bulk_import.py:1219 dcim/forms/bulk_import.py:1428 +#: dcim/forms/filtersets.py:173 dcim/forms/filtersets.py:205 +#: dcim/forms/filtersets.py:323 dcim/forms/filtersets.py:399 +#: dcim/forms/filtersets.py:420 dcim/forms/filtersets.py:722 +#: dcim/forms/filtersets.py:916 dcim/forms/filtersets.py:978 +#: dcim/forms/filtersets.py:1008 dcim/forms/filtersets.py:1130 +#: dcim/tables/power.py:88 extras/filtersets.py:612 +#: extras/forms/filtersets.py:323 extras/forms/filtersets.py:396 +#: ipam/forms/bulk_edit.py:43 ipam/forms/bulk_edit.py:68 +#: ipam/forms/bulk_edit.py:112 ipam/forms/bulk_edit.py:141 +#: ipam/forms/bulk_edit.py:166 ipam/forms/bulk_edit.py:251 +#: ipam/forms/bulk_edit.py:301 ipam/forms/bulk_edit.py:349 +#: ipam/forms/bulk_edit.py:501 ipam/forms/bulk_import.py:38 +#: ipam/forms/bulk_import.py:67 ipam/forms/bulk_import.py:95 +#: ipam/forms/bulk_import.py:115 ipam/forms/bulk_import.py:135 +#: ipam/forms/bulk_import.py:164 ipam/forms/bulk_import.py:250 +#: ipam/forms/bulk_import.py:286 ipam/forms/bulk_import.py:443 +#: ipam/forms/filtersets.py:48 ipam/forms/filtersets.py:68 +#: ipam/forms/filtersets.py:100 ipam/forms/filtersets.py:120 +#: ipam/forms/filtersets.py:143 ipam/forms/filtersets.py:174 +#: ipam/forms/filtersets.py:267 ipam/forms/filtersets.py:310 +#: ipam/forms/filtersets.py:469 ipam/tables/ip.py:456 ipam/tables/vlans.py:229 +#: templates/circuits/circuit.html:38 templates/circuits/circuitgroup.html:36 +#: templates/dcim/cable.html:23 templates/dcim/device.html:79 +#: templates/dcim/location.html:49 templates/dcim/powerfeed.html:44 +#: templates/dcim/rack.html:32 templates/dcim/rackreservation.html:49 +#: templates/dcim/site.html:47 templates/dcim/virtualdevicecontext.html:52 +#: templates/ipam/aggregate.html:30 templates/ipam/asn.html:33 +#: templates/ipam/asnrange.html:29 templates/ipam/ipaddress.html:28 +#: templates/ipam/iprange.html:58 templates/ipam/prefix.html:29 +#: templates/ipam/routetarget.html:17 templates/ipam/vlan.html:39 +#: templates/ipam/vrf.html:20 templates/tenancy/tenant.html:17 +#: templates/virtualization/cluster.html:33 +#: templates/virtualization/virtualmachine.html:39 templates/vpn/l2vpn.html:30 +#: templates/vpn/tunnel.html:49 templates/wireless/wirelesslan.html:34 +#: templates/wireless/wirelesslink.html:25 tenancy/forms/forms.py:25 +#: tenancy/forms/forms.py:48 tenancy/forms/model_forms.py:52 +#: tenancy/tables/columns.py:64 virtualization/forms/bulk_edit.py:76 +#: virtualization/forms/bulk_edit.py:155 +#: virtualization/forms/bulk_import.py:66 +#: virtualization/forms/bulk_import.py:115 +#: virtualization/forms/filtersets.py:47 +#: virtualization/forms/filtersets.py:105 vpn/forms/bulk_edit.py:59 +#: vpn/forms/bulk_edit.py:269 vpn/forms/bulk_import.py:59 +#: vpn/forms/bulk_import.py:258 vpn/forms/filtersets.py:214 +#: wireless/forms/bulk_edit.py:63 wireless/forms/bulk_edit.py:110 +#: wireless/forms/bulk_import.py:55 wireless/forms/bulk_import.py:97 +#: wireless/forms/filtersets.py:35 wireless/forms/filtersets.py:75 msgid "Tenant" msgstr "租户" -#: netbox/circuits/forms/bulk_edit.py:147 -#: netbox/circuits/forms/filtersets.py:174 +#: circuits/forms/bulk_edit.py:147 circuits/forms/filtersets.py:174 msgid "Install date" msgstr "安装日期" -#: netbox/circuits/forms/bulk_edit.py:152 -#: netbox/circuits/forms/filtersets.py:179 +#: circuits/forms/bulk_edit.py:152 circuits/forms/filtersets.py:179 msgid "Termination date" msgstr "终止日期" -#: netbox/circuits/forms/bulk_edit.py:158 -#: netbox/circuits/forms/filtersets.py:186 +#: circuits/forms/bulk_edit.py:158 circuits/forms/filtersets.py:186 msgid "Commit rate (Kbps)" msgstr "承诺速率(Kbps)" -#: netbox/circuits/forms/bulk_edit.py:173 -#: netbox/circuits/forms/model_forms.py:112 +#: circuits/forms/bulk_edit.py:173 circuits/forms/model_forms.py:112 msgid "Service Parameters" msgstr "服务参数" -#: netbox/circuits/forms/bulk_edit.py:174 -#: netbox/circuits/forms/model_forms.py:113 -#: netbox/circuits/forms/model_forms.py:183 -#: netbox/dcim/forms/model_forms.py:139 netbox/dcim/forms/model_forms.py:181 -#: netbox/dcim/forms/model_forms.py:266 netbox/dcim/forms/model_forms.py:323 -#: netbox/dcim/forms/model_forms.py:768 netbox/dcim/forms/model_forms.py:1692 -#: netbox/ipam/forms/model_forms.py:64 netbox/ipam/forms/model_forms.py:81 -#: netbox/ipam/forms/model_forms.py:115 netbox/ipam/forms/model_forms.py:136 -#: netbox/ipam/forms/model_forms.py:160 netbox/ipam/forms/model_forms.py:232 -#: netbox/ipam/forms/model_forms.py:261 netbox/ipam/forms/model_forms.py:316 -#: netbox/netbox/navigation/menu.py:24 -#: netbox/templates/dcim/device_edit.html:85 -#: netbox/templates/dcim/htmx/cable_edit.html:72 -#: netbox/templates/ipam/ipaddress_bulk_add.html:27 -#: netbox/templates/ipam/vlan_edit.html:22 -#: netbox/virtualization/forms/model_forms.py:80 -#: netbox/virtualization/forms/model_forms.py:222 -#: netbox/vpn/forms/bulk_edit.py:78 netbox/vpn/forms/filtersets.py:44 -#: netbox/vpn/forms/model_forms.py:62 netbox/vpn/forms/model_forms.py:147 -#: netbox/vpn/forms/model_forms.py:411 netbox/wireless/forms/model_forms.py:54 -#: netbox/wireless/forms/model_forms.py:170 +#: circuits/forms/bulk_edit.py:174 circuits/forms/model_forms.py:113 +#: circuits/forms/model_forms.py:183 dcim/forms/model_forms.py:139 +#: dcim/forms/model_forms.py:181 dcim/forms/model_forms.py:266 +#: dcim/forms/model_forms.py:323 dcim/forms/model_forms.py:768 +#: dcim/forms/model_forms.py:1692 ipam/forms/model_forms.py:64 +#: ipam/forms/model_forms.py:81 ipam/forms/model_forms.py:115 +#: ipam/forms/model_forms.py:136 ipam/forms/model_forms.py:160 +#: ipam/forms/model_forms.py:232 ipam/forms/model_forms.py:261 +#: ipam/forms/model_forms.py:316 netbox/navigation/menu.py:24 +#: templates/dcim/device_edit.html:85 templates/dcim/htmx/cable_edit.html:72 +#: templates/ipam/ipaddress_bulk_add.html:27 templates/ipam/vlan_edit.html:22 +#: virtualization/forms/model_forms.py:80 +#: virtualization/forms/model_forms.py:222 vpn/forms/bulk_edit.py:78 +#: vpn/forms/filtersets.py:44 vpn/forms/model_forms.py:62 +#: vpn/forms/model_forms.py:147 vpn/forms/model_forms.py:411 +#: wireless/forms/model_forms.py:54 wireless/forms/model_forms.py:170 msgid "Tenancy" msgstr "租户" -#: netbox/circuits/forms/bulk_edit.py:193 -#: netbox/circuits/forms/bulk_edit.py:217 -#: netbox/circuits/forms/model_forms.py:155 -#: netbox/circuits/tables/circuits.py:117 -#: netbox/templates/circuits/inc/circuit_termination_fields.html:62 -#: netbox/templates/circuits/providernetwork.html:17 +#: circuits/forms/bulk_edit.py:193 circuits/forms/bulk_edit.py:217 +#: circuits/forms/model_forms.py:155 circuits/tables/circuits.py:117 +#: templates/circuits/inc/circuit_termination_fields.html:62 +#: templates/circuits/providernetwork.html:17 msgid "Provider Network" msgstr "运营商网络" -#: netbox/circuits/forms/bulk_edit.py:199 +#: circuits/forms/bulk_edit.py:199 msgid "Port speed (Kbps)" msgstr "端口速度 (Kbps)" -#: netbox/circuits/forms/bulk_edit.py:203 +#: circuits/forms/bulk_edit.py:203 msgid "Upstream speed (Kbps)" msgstr "上行速度 (Kbps)" -#: netbox/circuits/forms/bulk_edit.py:206 netbox/dcim/forms/bulk_edit.py:951 -#: netbox/dcim/forms/bulk_edit.py:1315 netbox/dcim/forms/bulk_edit.py:1332 -#: netbox/dcim/forms/bulk_edit.py:1349 netbox/dcim/forms/bulk_edit.py:1367 -#: netbox/dcim/forms/bulk_edit.py:1455 netbox/dcim/forms/bulk_edit.py:1594 -#: netbox/dcim/forms/bulk_edit.py:1611 +#: circuits/forms/bulk_edit.py:206 dcim/forms/bulk_edit.py:951 +#: dcim/forms/bulk_edit.py:1315 dcim/forms/bulk_edit.py:1332 +#: dcim/forms/bulk_edit.py:1349 dcim/forms/bulk_edit.py:1367 +#: dcim/forms/bulk_edit.py:1455 dcim/forms/bulk_edit.py:1594 +#: dcim/forms/bulk_edit.py:1611 msgid "Mark connected" msgstr "标记已连接" -#: netbox/circuits/forms/bulk_edit.py:219 -#: netbox/circuits/forms/model_forms.py:157 -#: netbox/templates/circuits/inc/circuit_termination_fields.html:54 -#: netbox/templates/dcim/frontport.html:121 -#: netbox/templates/dcim/interface.html:193 -#: netbox/templates/dcim/rearport.html:111 +#: circuits/forms/bulk_edit.py:219 circuits/forms/model_forms.py:157 +#: templates/circuits/inc/circuit_termination_fields.html:54 +#: templates/dcim/frontport.html:121 templates/dcim/interface.html:193 +#: templates/dcim/rearport.html:111 msgid "Circuit Termination" msgstr "线路终端" -#: netbox/circuits/forms/bulk_edit.py:221 -#: netbox/circuits/forms/model_forms.py:159 +#: circuits/forms/bulk_edit.py:221 circuits/forms/model_forms.py:159 msgid "Termination Details" msgstr "终端详情" -#: netbox/circuits/forms/bulk_edit.py:251 -#: netbox/circuits/forms/filtersets.py:268 -#: netbox/circuits/tables/circuits.py:168 netbox/dcim/forms/model_forms.py:551 -#: netbox/templates/circuits/circuitgroupassignment.html:30 -#: netbox/templates/dcim/device.html:133 -#: netbox/templates/dcim/virtualchassis.html:68 -#: netbox/templates/dcim/virtualchassis_edit.html:56 -#: netbox/templates/ipam/inc/panels/fhrp_groups.html:26 -#: netbox/tenancy/forms/bulk_edit.py:147 -#: netbox/tenancy/forms/filtersets.py:110 +#: circuits/forms/bulk_edit.py:251 circuits/forms/filtersets.py:268 +#: circuits/tables/circuits.py:168 dcim/forms/model_forms.py:551 +#: templates/circuits/circuitgroupassignment.html:30 +#: templates/dcim/device.html:133 templates/dcim/virtualchassis.html:68 +#: templates/dcim/virtualchassis_edit.html:56 +#: templates/ipam/inc/panels/fhrp_groups.html:26 +#: tenancy/forms/bulk_edit.py:147 tenancy/forms/filtersets.py:110 msgid "Priority" msgstr "优先级" -#: netbox/circuits/forms/bulk_import.py:39 -#: netbox/circuits/forms/bulk_import.py:54 -#: netbox/circuits/forms/bulk_import.py:77 +#: circuits/forms/bulk_import.py:39 circuits/forms/bulk_import.py:54 +#: circuits/forms/bulk_import.py:77 msgid "Assigned provider" msgstr "指定的运营商" -#: netbox/circuits/forms/bulk_import.py:83 +#: circuits/forms/bulk_import.py:83 msgid "Assigned provider account" msgstr "指定的运营商账户" -#: netbox/circuits/forms/bulk_import.py:90 +#: circuits/forms/bulk_import.py:90 msgid "Type of circuit" msgstr "线路类型" -#: netbox/circuits/forms/bulk_import.py:95 netbox/dcim/forms/bulk_import.py:90 -#: netbox/dcim/forms/bulk_import.py:149 netbox/dcim/forms/bulk_import.py:250 -#: netbox/dcim/forms/bulk_import.py:507 netbox/dcim/forms/bulk_import.py:661 -#: netbox/dcim/forms/bulk_import.py:1373 netbox/ipam/forms/bulk_import.py:194 -#: netbox/ipam/forms/bulk_import.py:259 netbox/ipam/forms/bulk_import.py:295 -#: netbox/ipam/forms/bulk_import.py:452 -#: netbox/virtualization/forms/bulk_import.py:56 -#: netbox/virtualization/forms/bulk_import.py:82 -#: netbox/vpn/forms/bulk_import.py:39 netbox/wireless/forms/bulk_import.py:45 +#: circuits/forms/bulk_import.py:95 dcim/forms/bulk_import.py:90 +#: dcim/forms/bulk_import.py:149 dcim/forms/bulk_import.py:250 +#: dcim/forms/bulk_import.py:507 dcim/forms/bulk_import.py:661 +#: dcim/forms/bulk_import.py:1373 ipam/forms/bulk_import.py:194 +#: ipam/forms/bulk_import.py:259 ipam/forms/bulk_import.py:295 +#: ipam/forms/bulk_import.py:452 virtualization/forms/bulk_import.py:56 +#: virtualization/forms/bulk_import.py:82 vpn/forms/bulk_import.py:39 +#: wireless/forms/bulk_import.py:45 msgid "Operational status" msgstr "运行状态" -#: netbox/circuits/forms/bulk_import.py:102 -#: netbox/circuits/forms/bulk_import.py:162 -#: netbox/dcim/forms/bulk_import.py:111 netbox/dcim/forms/bulk_import.py:156 -#: netbox/dcim/forms/bulk_import.py:338 netbox/dcim/forms/bulk_import.py:483 -#: netbox/dcim/forms/bulk_import.py:1223 netbox/dcim/forms/bulk_import.py:1368 -#: netbox/dcim/forms/bulk_import.py:1432 netbox/ipam/forms/bulk_import.py:42 -#: netbox/ipam/forms/bulk_import.py:71 netbox/ipam/forms/bulk_import.py:99 -#: netbox/ipam/forms/bulk_import.py:119 netbox/ipam/forms/bulk_import.py:139 -#: netbox/ipam/forms/bulk_import.py:168 netbox/ipam/forms/bulk_import.py:254 -#: netbox/ipam/forms/bulk_import.py:290 netbox/ipam/forms/bulk_import.py:447 -#: netbox/virtualization/forms/bulk_import.py:70 -#: netbox/virtualization/forms/bulk_import.py:119 -#: netbox/vpn/forms/bulk_import.py:63 netbox/wireless/forms/bulk_import.py:59 -#: netbox/wireless/forms/bulk_import.py:101 +#: circuits/forms/bulk_import.py:102 circuits/forms/bulk_import.py:162 +#: dcim/forms/bulk_import.py:111 dcim/forms/bulk_import.py:156 +#: dcim/forms/bulk_import.py:338 dcim/forms/bulk_import.py:483 +#: dcim/forms/bulk_import.py:1223 dcim/forms/bulk_import.py:1368 +#: dcim/forms/bulk_import.py:1432 ipam/forms/bulk_import.py:42 +#: ipam/forms/bulk_import.py:71 ipam/forms/bulk_import.py:99 +#: ipam/forms/bulk_import.py:119 ipam/forms/bulk_import.py:139 +#: ipam/forms/bulk_import.py:168 ipam/forms/bulk_import.py:254 +#: ipam/forms/bulk_import.py:290 ipam/forms/bulk_import.py:447 +#: virtualization/forms/bulk_import.py:70 +#: virtualization/forms/bulk_import.py:119 vpn/forms/bulk_import.py:63 +#: wireless/forms/bulk_import.py:59 wireless/forms/bulk_import.py:101 msgid "Assigned tenant" msgstr "已分配租户" -#: netbox/circuits/forms/bulk_import.py:120 -#: netbox/templates/circuits/inc/circuit_termination.html:6 -#: netbox/templates/circuits/inc/circuit_termination_fields.html:15 -#: netbox/templates/dcim/cable.html:68 netbox/templates/dcim/cable.html:72 -#: netbox/vpn/forms/bulk_import.py:100 netbox/vpn/forms/filtersets.py:77 +#: circuits/forms/bulk_import.py:120 +#: templates/circuits/inc/circuit_termination.html:6 +#: templates/circuits/inc/circuit_termination_fields.html:15 +#: templates/dcim/cable.html:68 templates/dcim/cable.html:72 +#: vpn/forms/bulk_import.py:100 vpn/forms/filtersets.py:77 msgid "Termination" msgstr "终端" -#: netbox/circuits/forms/bulk_import.py:130 -#: netbox/circuits/forms/filtersets.py:147 -#: netbox/circuits/forms/filtersets.py:227 -#: netbox/circuits/forms/model_forms.py:144 +#: circuits/forms/bulk_import.py:130 circuits/forms/filtersets.py:147 +#: circuits/forms/filtersets.py:227 circuits/forms/model_forms.py:144 msgid "Provider network" msgstr "运营商网络" -#: netbox/circuits/forms/filtersets.py:30 -#: netbox/circuits/forms/filtersets.py:118 -#: netbox/circuits/forms/filtersets.py:200 netbox/dcim/forms/bulk_edit.py:338 -#: netbox/dcim/forms/bulk_edit.py:441 netbox/dcim/forms/bulk_edit.py:682 -#: netbox/dcim/forms/bulk_edit.py:729 netbox/dcim/forms/bulk_edit.py:882 -#: netbox/dcim/forms/bulk_import.py:235 netbox/dcim/forms/bulk_import.py:315 -#: netbox/dcim/forms/bulk_import.py:546 netbox/dcim/forms/bulk_import.py:1317 -#: netbox/dcim/forms/bulk_import.py:1351 netbox/dcim/forms/filtersets.py:95 -#: netbox/dcim/forms/filtersets.py:322 netbox/dcim/forms/filtersets.py:356 -#: netbox/dcim/forms/filtersets.py:396 netbox/dcim/forms/filtersets.py:447 -#: netbox/dcim/forms/filtersets.py:719 netbox/dcim/forms/filtersets.py:762 -#: netbox/dcim/forms/filtersets.py:977 netbox/dcim/forms/filtersets.py:1006 -#: netbox/dcim/forms/filtersets.py:1026 netbox/dcim/forms/filtersets.py:1090 -#: netbox/dcim/forms/filtersets.py:1120 netbox/dcim/forms/filtersets.py:1129 -#: netbox/dcim/forms/filtersets.py:1240 netbox/dcim/forms/filtersets.py:1264 -#: netbox/dcim/forms/filtersets.py:1289 netbox/dcim/forms/filtersets.py:1308 -#: netbox/dcim/forms/filtersets.py:1331 netbox/dcim/forms/filtersets.py:1442 -#: netbox/dcim/forms/filtersets.py:1466 netbox/dcim/forms/filtersets.py:1490 -#: netbox/dcim/forms/filtersets.py:1508 netbox/dcim/forms/filtersets.py:1525 -#: netbox/dcim/forms/model_forms.py:180 netbox/dcim/forms/model_forms.py:243 -#: netbox/dcim/forms/model_forms.py:468 netbox/dcim/forms/model_forms.py:728 -#: netbox/dcim/tables/devices.py:157 netbox/dcim/tables/power.py:30 -#: netbox/dcim/tables/racks.py:118 netbox/dcim/tables/racks.py:212 -#: netbox/extras/filtersets.py:536 netbox/extras/forms/filtersets.py:320 -#: netbox/ipam/forms/bulk_edit.py:460 netbox/ipam/forms/filtersets.py:173 -#: netbox/ipam/forms/filtersets.py:414 netbox/ipam/forms/filtersets.py:437 -#: netbox/ipam/forms/filtersets.py:467 netbox/templates/dcim/device.html:26 -#: netbox/templates/dcim/device_edit.html:30 -#: netbox/templates/dcim/inc/cable_termination.html:12 -#: netbox/templates/dcim/location.html:26 -#: netbox/templates/dcim/powerpanel.html:26 netbox/templates/dcim/rack.html:24 -#: netbox/templates/dcim/rackreservation.html:32 -#: netbox/virtualization/forms/filtersets.py:46 -#: netbox/virtualization/forms/filtersets.py:100 -#: netbox/wireless/forms/model_forms.py:87 -#: netbox/wireless/forms/model_forms.py:129 +#: circuits/forms/filtersets.py:30 circuits/forms/filtersets.py:118 +#: circuits/forms/filtersets.py:200 dcim/forms/bulk_edit.py:338 +#: dcim/forms/bulk_edit.py:441 dcim/forms/bulk_edit.py:682 +#: dcim/forms/bulk_edit.py:729 dcim/forms/bulk_edit.py:882 +#: dcim/forms/bulk_import.py:235 dcim/forms/bulk_import.py:315 +#: dcim/forms/bulk_import.py:546 dcim/forms/bulk_import.py:1317 +#: dcim/forms/bulk_import.py:1351 dcim/forms/filtersets.py:95 +#: dcim/forms/filtersets.py:322 dcim/forms/filtersets.py:356 +#: dcim/forms/filtersets.py:396 dcim/forms/filtersets.py:447 +#: dcim/forms/filtersets.py:719 dcim/forms/filtersets.py:762 +#: dcim/forms/filtersets.py:977 dcim/forms/filtersets.py:1006 +#: dcim/forms/filtersets.py:1026 dcim/forms/filtersets.py:1090 +#: dcim/forms/filtersets.py:1120 dcim/forms/filtersets.py:1129 +#: dcim/forms/filtersets.py:1240 dcim/forms/filtersets.py:1264 +#: dcim/forms/filtersets.py:1289 dcim/forms/filtersets.py:1308 +#: dcim/forms/filtersets.py:1331 dcim/forms/filtersets.py:1442 +#: dcim/forms/filtersets.py:1466 dcim/forms/filtersets.py:1490 +#: dcim/forms/filtersets.py:1508 dcim/forms/filtersets.py:1525 +#: dcim/forms/model_forms.py:180 dcim/forms/model_forms.py:243 +#: dcim/forms/model_forms.py:468 dcim/forms/model_forms.py:728 +#: dcim/tables/devices.py:157 dcim/tables/power.py:30 dcim/tables/racks.py:118 +#: dcim/tables/racks.py:212 extras/filtersets.py:536 +#: extras/forms/filtersets.py:320 ipam/forms/filtersets.py:173 +#: ipam/forms/filtersets.py:414 ipam/forms/filtersets.py:437 +#: ipam/forms/filtersets.py:467 templates/dcim/device.html:26 +#: templates/dcim/device_edit.html:30 +#: templates/dcim/inc/cable_termination.html:12 +#: templates/dcim/location.html:26 templates/dcim/powerpanel.html:26 +#: templates/dcim/rack.html:24 templates/dcim/rackreservation.html:32 +#: virtualization/forms/filtersets.py:46 +#: virtualization/forms/filtersets.py:100 wireless/forms/model_forms.py:87 +#: wireless/forms/model_forms.py:129 msgid "Location" msgstr "位置" -#: netbox/circuits/forms/filtersets.py:32 -#: netbox/circuits/forms/filtersets.py:120 netbox/dcim/forms/filtersets.py:144 -#: netbox/dcim/forms/filtersets.py:158 netbox/dcim/forms/filtersets.py:174 -#: netbox/dcim/forms/filtersets.py:206 netbox/dcim/forms/filtersets.py:328 -#: netbox/dcim/forms/filtersets.py:400 netbox/dcim/forms/filtersets.py:471 -#: netbox/dcim/forms/filtersets.py:723 netbox/dcim/forms/filtersets.py:1091 -#: netbox/netbox/navigation/menu.py:31 netbox/netbox/navigation/menu.py:33 -#: netbox/tenancy/forms/filtersets.py:42 netbox/tenancy/tables/columns.py:70 -#: netbox/tenancy/tables/contacts.py:25 netbox/tenancy/views.py:19 -#: netbox/virtualization/forms/filtersets.py:37 -#: netbox/virtualization/forms/filtersets.py:48 -#: netbox/virtualization/forms/filtersets.py:106 +#: circuits/forms/filtersets.py:32 circuits/forms/filtersets.py:120 +#: dcim/forms/filtersets.py:144 dcim/forms/filtersets.py:158 +#: dcim/forms/filtersets.py:174 dcim/forms/filtersets.py:206 +#: dcim/forms/filtersets.py:328 dcim/forms/filtersets.py:400 +#: dcim/forms/filtersets.py:471 dcim/forms/filtersets.py:723 +#: dcim/forms/filtersets.py:1091 netbox/navigation/menu.py:31 +#: netbox/navigation/menu.py:33 tenancy/forms/filtersets.py:42 +#: tenancy/tables/columns.py:70 tenancy/tables/contacts.py:25 +#: tenancy/views.py:19 virtualization/forms/filtersets.py:37 +#: virtualization/forms/filtersets.py:48 +#: virtualization/forms/filtersets.py:106 msgid "Contacts" msgstr "联系" -#: netbox/circuits/forms/filtersets.py:37 -#: netbox/circuits/forms/filtersets.py:157 netbox/dcim/forms/bulk_edit.py:112 -#: netbox/dcim/forms/bulk_edit.py:313 netbox/dcim/forms/bulk_edit.py:857 -#: netbox/dcim/forms/bulk_import.py:93 netbox/dcim/forms/filtersets.py:73 -#: netbox/dcim/forms/filtersets.py:185 netbox/dcim/forms/filtersets.py:211 -#: netbox/dcim/forms/filtersets.py:334 netbox/dcim/forms/filtersets.py:425 -#: netbox/dcim/forms/filtersets.py:739 netbox/dcim/forms/filtersets.py:983 -#: netbox/dcim/forms/filtersets.py:1013 netbox/dcim/forms/filtersets.py:1097 -#: netbox/dcim/forms/filtersets.py:1136 netbox/dcim/forms/filtersets.py:1576 -#: netbox/dcim/forms/filtersets.py:1600 netbox/dcim/forms/filtersets.py:1624 -#: netbox/dcim/forms/model_forms.py:112 netbox/dcim/forms/object_create.py:375 -#: netbox/dcim/tables/devices.py:143 netbox/dcim/tables/sites.py:85 -#: netbox/extras/filtersets.py:503 netbox/ipam/forms/bulk_edit.py:207 -#: netbox/ipam/forms/bulk_edit.py:441 netbox/ipam/forms/bulk_edit.py:519 -#: netbox/ipam/forms/filtersets.py:217 netbox/ipam/forms/filtersets.py:422 -#: netbox/ipam/forms/filtersets.py:475 netbox/templates/dcim/device.html:18 -#: netbox/templates/dcim/rack.html:16 -#: netbox/templates/dcim/rackreservation.html:22 -#: netbox/templates/dcim/region.html:26 netbox/templates/dcim/site.html:31 -#: netbox/templates/ipam/prefix.html:49 netbox/templates/ipam/vlan.html:16 -#: netbox/virtualization/forms/bulk_edit.py:81 -#: netbox/virtualization/forms/filtersets.py:59 -#: netbox/virtualization/forms/filtersets.py:133 -#: netbox/virtualization/forms/model_forms.py:92 -#: netbox/vpn/forms/filtersets.py:257 +#: circuits/forms/filtersets.py:37 circuits/forms/filtersets.py:157 +#: dcim/forms/bulk_edit.py:112 dcim/forms/bulk_edit.py:313 +#: dcim/forms/bulk_edit.py:857 dcim/forms/bulk_import.py:93 +#: dcim/forms/filtersets.py:73 dcim/forms/filtersets.py:185 +#: dcim/forms/filtersets.py:211 dcim/forms/filtersets.py:334 +#: dcim/forms/filtersets.py:425 dcim/forms/filtersets.py:739 +#: dcim/forms/filtersets.py:983 dcim/forms/filtersets.py:1013 +#: dcim/forms/filtersets.py:1097 dcim/forms/filtersets.py:1136 +#: dcim/forms/filtersets.py:1576 dcim/forms/filtersets.py:1600 +#: dcim/forms/filtersets.py:1624 dcim/forms/model_forms.py:112 +#: dcim/forms/object_create.py:375 dcim/tables/devices.py:143 +#: dcim/tables/sites.py:85 extras/filtersets.py:503 +#: ipam/forms/bulk_edit.py:208 ipam/forms/bulk_edit.py:474 +#: ipam/forms/filtersets.py:217 ipam/forms/filtersets.py:422 +#: ipam/forms/filtersets.py:475 templates/dcim/device.html:18 +#: templates/dcim/rack.html:16 templates/dcim/rackreservation.html:22 +#: templates/dcim/region.html:26 templates/dcim/site.html:31 +#: templates/ipam/prefix.html:49 templates/ipam/vlan.html:16 +#: virtualization/forms/bulk_edit.py:81 virtualization/forms/filtersets.py:59 +#: virtualization/forms/filtersets.py:133 +#: virtualization/forms/model_forms.py:92 vpn/forms/filtersets.py:257 msgid "Region" msgstr "地区" -#: netbox/circuits/forms/filtersets.py:42 -#: netbox/circuits/forms/filtersets.py:162 netbox/dcim/forms/bulk_edit.py:321 -#: netbox/dcim/forms/bulk_edit.py:865 netbox/dcim/forms/filtersets.py:78 -#: netbox/dcim/forms/filtersets.py:190 netbox/dcim/forms/filtersets.py:216 -#: netbox/dcim/forms/filtersets.py:347 netbox/dcim/forms/filtersets.py:430 -#: netbox/dcim/forms/filtersets.py:744 netbox/dcim/forms/filtersets.py:988 -#: netbox/dcim/forms/filtersets.py:1102 netbox/dcim/forms/filtersets.py:1141 -#: netbox/dcim/forms/object_create.py:383 netbox/extras/filtersets.py:520 -#: netbox/ipam/forms/bulk_edit.py:212 netbox/ipam/forms/bulk_edit.py:448 -#: netbox/ipam/forms/bulk_edit.py:524 netbox/ipam/forms/filtersets.py:222 -#: netbox/ipam/forms/filtersets.py:427 netbox/ipam/forms/filtersets.py:480 -#: netbox/virtualization/forms/bulk_edit.py:86 -#: netbox/virtualization/forms/filtersets.py:69 -#: netbox/virtualization/forms/filtersets.py:138 -#: netbox/virtualization/forms/model_forms.py:98 +#: circuits/forms/filtersets.py:42 circuits/forms/filtersets.py:162 +#: dcim/forms/bulk_edit.py:321 dcim/forms/bulk_edit.py:865 +#: dcim/forms/filtersets.py:78 dcim/forms/filtersets.py:190 +#: dcim/forms/filtersets.py:216 dcim/forms/filtersets.py:347 +#: dcim/forms/filtersets.py:430 dcim/forms/filtersets.py:744 +#: dcim/forms/filtersets.py:988 dcim/forms/filtersets.py:1102 +#: dcim/forms/filtersets.py:1141 dcim/forms/object_create.py:383 +#: extras/filtersets.py:520 ipam/forms/bulk_edit.py:213 +#: ipam/forms/bulk_edit.py:479 ipam/forms/filtersets.py:222 +#: ipam/forms/filtersets.py:427 ipam/forms/filtersets.py:480 +#: virtualization/forms/bulk_edit.py:86 virtualization/forms/filtersets.py:69 +#: virtualization/forms/filtersets.py:138 +#: virtualization/forms/model_forms.py:98 msgid "Site group" msgstr "站点组" -#: netbox/circuits/forms/filtersets.py:65 -#: netbox/circuits/forms/filtersets.py:83 -#: netbox/circuits/forms/filtersets.py:102 -#: netbox/circuits/forms/filtersets.py:117 netbox/core/forms/filtersets.py:67 -#: netbox/core/forms/filtersets.py:135 netbox/dcim/forms/bulk_edit.py:828 -#: netbox/dcim/forms/filtersets.py:172 netbox/dcim/forms/filtersets.py:204 -#: netbox/dcim/forms/filtersets.py:915 netbox/dcim/forms/filtersets.py:1007 -#: netbox/dcim/forms/filtersets.py:1131 netbox/dcim/forms/filtersets.py:1239 -#: netbox/dcim/forms/filtersets.py:1263 netbox/dcim/forms/filtersets.py:1288 -#: netbox/dcim/forms/filtersets.py:1307 netbox/dcim/forms/filtersets.py:1327 -#: netbox/dcim/forms/filtersets.py:1441 netbox/dcim/forms/filtersets.py:1465 -#: netbox/dcim/forms/filtersets.py:1489 netbox/dcim/forms/filtersets.py:1507 -#: netbox/dcim/forms/filtersets.py:1523 netbox/extras/forms/bulk_edit.py:90 -#: netbox/extras/forms/filtersets.py:44 netbox/extras/forms/filtersets.py:134 -#: netbox/extras/forms/filtersets.py:165 netbox/extras/forms/filtersets.py:205 -#: netbox/extras/forms/filtersets.py:221 netbox/extras/forms/filtersets.py:252 -#: netbox/extras/forms/filtersets.py:276 netbox/extras/forms/filtersets.py:441 -#: netbox/ipam/forms/filtersets.py:99 netbox/ipam/forms/filtersets.py:266 -#: netbox/ipam/forms/filtersets.py:307 netbox/ipam/forms/filtersets.py:382 -#: netbox/ipam/forms/filtersets.py:468 netbox/ipam/forms/filtersets.py:527 -#: netbox/ipam/forms/filtersets.py:545 netbox/netbox/tables/tables.py:256 -#: netbox/virtualization/forms/filtersets.py:45 -#: netbox/virtualization/forms/filtersets.py:103 -#: netbox/virtualization/forms/filtersets.py:198 -#: netbox/virtualization/forms/filtersets.py:243 -#: netbox/vpn/forms/filtersets.py:213 netbox/wireless/forms/bulk_edit.py:150 -#: netbox/wireless/forms/filtersets.py:34 -#: netbox/wireless/forms/filtersets.py:74 +#: circuits/forms/filtersets.py:65 circuits/forms/filtersets.py:83 +#: circuits/forms/filtersets.py:102 circuits/forms/filtersets.py:117 +#: core/forms/filtersets.py:67 core/forms/filtersets.py:135 +#: dcim/forms/bulk_edit.py:828 dcim/forms/filtersets.py:172 +#: dcim/forms/filtersets.py:204 dcim/forms/filtersets.py:915 +#: dcim/forms/filtersets.py:1007 dcim/forms/filtersets.py:1131 +#: dcim/forms/filtersets.py:1239 dcim/forms/filtersets.py:1263 +#: dcim/forms/filtersets.py:1288 dcim/forms/filtersets.py:1307 +#: dcim/forms/filtersets.py:1327 dcim/forms/filtersets.py:1441 +#: dcim/forms/filtersets.py:1465 dcim/forms/filtersets.py:1489 +#: dcim/forms/filtersets.py:1507 dcim/forms/filtersets.py:1523 +#: extras/forms/bulk_edit.py:90 extras/forms/filtersets.py:44 +#: extras/forms/filtersets.py:134 extras/forms/filtersets.py:165 +#: extras/forms/filtersets.py:205 extras/forms/filtersets.py:221 +#: extras/forms/filtersets.py:252 extras/forms/filtersets.py:276 +#: extras/forms/filtersets.py:441 ipam/forms/filtersets.py:99 +#: ipam/forms/filtersets.py:266 ipam/forms/filtersets.py:307 +#: ipam/forms/filtersets.py:382 ipam/forms/filtersets.py:468 +#: ipam/forms/filtersets.py:527 ipam/forms/filtersets.py:545 +#: netbox/tables/tables.py:256 virtualization/forms/filtersets.py:45 +#: virtualization/forms/filtersets.py:103 +#: virtualization/forms/filtersets.py:198 +#: virtualization/forms/filtersets.py:243 vpn/forms/filtersets.py:213 +#: wireless/forms/bulk_edit.py:150 wireless/forms/filtersets.py:34 +#: wireless/forms/filtersets.py:74 msgid "Attributes" msgstr "属性" -#: netbox/circuits/forms/filtersets.py:73 -#: netbox/circuits/tables/circuits.py:63 -#: netbox/circuits/tables/providers.py:66 -#: netbox/templates/circuits/circuit.html:22 -#: netbox/templates/circuits/provideraccount.html:24 +#: circuits/forms/filtersets.py:73 circuits/tables/circuits.py:63 +#: circuits/tables/providers.py:66 templates/circuits/circuit.html:22 +#: templates/circuits/provideraccount.html:24 msgid "Account" msgstr "账户" -#: netbox/circuits/forms/filtersets.py:217 +#: circuits/forms/filtersets.py:217 msgid "Term Side" msgstr "线路终端侧" -#: netbox/circuits/forms/filtersets.py:250 -#: netbox/extras/forms/model_forms.py:582 netbox/ipam/forms/filtersets.py:142 -#: netbox/ipam/forms/filtersets.py:546 netbox/ipam/forms/model_forms.py:323 -#: netbox/templates/extras/configcontext.html:60 -#: netbox/templates/ipam/ipaddress.html:59 -#: netbox/templates/ipam/vlan_edit.html:30 -#: netbox/tenancy/forms/filtersets.py:87 netbox/users/forms/model_forms.py:314 +#: circuits/forms/filtersets.py:250 extras/forms/model_forms.py:582 +#: ipam/forms/filtersets.py:142 ipam/forms/filtersets.py:546 +#: ipam/forms/model_forms.py:323 templates/extras/configcontext.html:60 +#: templates/ipam/ipaddress.html:59 templates/ipam/vlan_edit.html:30 +#: tenancy/forms/filtersets.py:87 users/forms/model_forms.py:314 msgid "Assignment" msgstr "分配" -#: netbox/circuits/forms/filtersets.py:265 -#: netbox/circuits/forms/model_forms.py:195 -#: netbox/circuits/tables/circuits.py:155 netbox/dcim/forms/bulk_edit.py:117 -#: netbox/dcim/forms/bulk_import.py:100 netbox/dcim/forms/model_forms.py:117 -#: netbox/dcim/tables/sites.py:89 netbox/extras/forms/filtersets.py:480 -#: netbox/ipam/filtersets.py:999 netbox/ipam/forms/bulk_edit.py:538 -#: netbox/ipam/forms/bulk_import.py:436 netbox/ipam/forms/model_forms.py:528 -#: netbox/ipam/tables/fhrp.py:67 netbox/ipam/tables/vlans.py:122 -#: netbox/ipam/tables/vlans.py:226 -#: netbox/templates/circuits/circuitgroupassignment.html:22 -#: netbox/templates/dcim/interface.html:284 netbox/templates/dcim/site.html:37 -#: netbox/templates/ipam/inc/panels/fhrp_groups.html:23 -#: netbox/templates/ipam/vlan.html:27 netbox/templates/tenancy/contact.html:21 -#: netbox/templates/tenancy/tenant.html:20 netbox/templates/users/group.html:6 -#: netbox/templates/users/group.html:14 -#: netbox/templates/virtualization/cluster.html:29 -#: netbox/templates/vpn/tunnel.html:29 -#: netbox/templates/wireless/wirelesslan.html:18 -#: netbox/tenancy/forms/bulk_edit.py:43 netbox/tenancy/forms/bulk_edit.py:94 -#: netbox/tenancy/forms/bulk_import.py:40 -#: netbox/tenancy/forms/bulk_import.py:81 -#: netbox/tenancy/forms/filtersets.py:48 netbox/tenancy/forms/filtersets.py:78 -#: netbox/tenancy/forms/filtersets.py:97 -#: netbox/tenancy/forms/model_forms.py:45 -#: netbox/tenancy/forms/model_forms.py:97 -#: netbox/tenancy/forms/model_forms.py:122 -#: netbox/tenancy/tables/contacts.py:60 netbox/tenancy/tables/contacts.py:107 -#: netbox/tenancy/tables/tenants.py:42 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 -#: netbox/virtualization/forms/bulk_edit.py:65 -#: netbox/virtualization/forms/bulk_import.py:47 -#: netbox/virtualization/forms/filtersets.py:85 -#: netbox/virtualization/forms/model_forms.py:66 -#: netbox/virtualization/tables/clusters.py:70 -#: netbox/vpn/forms/bulk_edit.py:112 netbox/vpn/forms/bulk_import.py:158 -#: netbox/vpn/forms/filtersets.py:116 netbox/vpn/tables/crypto.py:31 -#: netbox/vpn/tables/tunnels.py:44 netbox/wireless/forms/bulk_edit.py:48 -#: netbox/wireless/forms/bulk_import.py:36 -#: netbox/wireless/forms/filtersets.py:46 -#: netbox/wireless/forms/model_forms.py:40 -#: netbox/wireless/tables/wirelesslan.py:48 +#: circuits/forms/filtersets.py:265 circuits/forms/model_forms.py:195 +#: circuits/tables/circuits.py:155 dcim/forms/bulk_edit.py:117 +#: dcim/forms/bulk_import.py:100 dcim/forms/model_forms.py:117 +#: dcim/tables/sites.py:89 extras/forms/filtersets.py:480 +#: ipam/filtersets.py:999 ipam/forms/bulk_edit.py:493 +#: ipam/forms/bulk_import.py:436 ipam/forms/model_forms.py:528 +#: ipam/tables/fhrp.py:67 ipam/tables/vlans.py:122 ipam/tables/vlans.py:226 +#: templates/circuits/circuitgroupassignment.html:22 +#: templates/dcim/interface.html:284 templates/dcim/site.html:37 +#: templates/ipam/inc/panels/fhrp_groups.html:23 templates/ipam/vlan.html:27 +#: templates/tenancy/contact.html:21 templates/tenancy/tenant.html:20 +#: templates/users/group.html:6 templates/users/group.html:14 +#: templates/virtualization/cluster.html:29 templates/vpn/tunnel.html:29 +#: templates/wireless/wirelesslan.html:18 tenancy/forms/bulk_edit.py:43 +#: tenancy/forms/bulk_edit.py:94 tenancy/forms/bulk_import.py:40 +#: tenancy/forms/bulk_import.py:81 tenancy/forms/filtersets.py:48 +#: tenancy/forms/filtersets.py:78 tenancy/forms/filtersets.py:97 +#: tenancy/forms/model_forms.py:45 tenancy/forms/model_forms.py:97 +#: tenancy/forms/model_forms.py:122 tenancy/tables/contacts.py:60 +#: tenancy/tables/contacts.py:107 tenancy/tables/tenants.py:42 +#: users/filtersets.py:62 users/filtersets.py:185 users/forms/filtersets.py:31 +#: users/forms/filtersets.py:37 users/forms/filtersets.py:79 +#: virtualization/forms/bulk_edit.py:65 virtualization/forms/bulk_import.py:47 +#: virtualization/forms/filtersets.py:85 +#: virtualization/forms/model_forms.py:66 virtualization/tables/clusters.py:70 +#: vpn/forms/bulk_edit.py:112 vpn/forms/bulk_import.py:158 +#: vpn/forms/filtersets.py:116 vpn/tables/crypto.py:31 +#: vpn/tables/tunnels.py:44 wireless/forms/bulk_edit.py:48 +#: wireless/forms/bulk_import.py:36 wireless/forms/filtersets.py:46 +#: wireless/forms/model_forms.py:40 wireless/tables/wirelesslan.py:48 msgid "Group" msgstr "组" -#: netbox/circuits/forms/model_forms.py:182 -#: netbox/templates/circuits/circuitgroup.html:25 +#: circuits/forms/model_forms.py:182 templates/circuits/circuitgroup.html:25 msgid "Circuit Group" msgstr "电路组" -#: netbox/circuits/models/circuits.py:27 netbox/dcim/models/cables.py:67 -#: netbox/dcim/models/device_component_templates.py:517 -#: netbox/dcim/models/device_component_templates.py:617 -#: netbox/dcim/models/device_components.py:975 -#: netbox/dcim/models/device_components.py:1049 -#: netbox/dcim/models/device_components.py:1204 -#: netbox/dcim/models/devices.py:479 netbox/dcim/models/racks.py:224 -#: netbox/extras/models/tags.py:28 +#: circuits/models/circuits.py:27 dcim/models/cables.py:67 +#: dcim/models/device_component_templates.py:517 +#: dcim/models/device_component_templates.py:617 +#: dcim/models/device_components.py:975 dcim/models/device_components.py:1049 +#: dcim/models/device_components.py:1204 dcim/models/devices.py:479 +#: dcim/models/racks.py:224 extras/models/tags.py:28 msgid "color" msgstr "颜色" -#: netbox/circuits/models/circuits.py:36 +#: circuits/models/circuits.py:36 msgid "circuit type" msgstr "线路类型" -#: netbox/circuits/models/circuits.py:37 +#: circuits/models/circuits.py:37 msgid "circuit types" msgstr "线路类型" -#: netbox/circuits/models/circuits.py:48 +#: circuits/models/circuits.py:48 msgid "circuit ID" msgstr "线路ID" -#: netbox/circuits/models/circuits.py:49 +#: circuits/models/circuits.py:49 msgid "Unique circuit ID" msgstr "唯一线路 ID" -#: netbox/circuits/models/circuits.py:69 netbox/core/models/data.py:52 -#: netbox/core/models/jobs.py:84 netbox/dcim/models/cables.py:49 -#: netbox/dcim/models/devices.py:653 netbox/dcim/models/devices.py:1173 -#: netbox/dcim/models/devices.py:1399 netbox/dcim/models/power.py:96 -#: netbox/dcim/models/racks.py:297 netbox/dcim/models/sites.py:154 -#: netbox/dcim/models/sites.py:266 netbox/ipam/models/ip.py:253 -#: netbox/ipam/models/ip.py:522 netbox/ipam/models/ip.py:730 -#: netbox/ipam/models/vlans.py:195 netbox/virtualization/models/clusters.py:74 -#: netbox/virtualization/models/virtualmachines.py:84 -#: netbox/vpn/models/tunnels.py:40 netbox/wireless/models.py:95 -#: netbox/wireless/models.py:159 +#: circuits/models/circuits.py:69 core/models/data.py:52 +#: core/models/jobs.py:84 dcim/models/cables.py:49 dcim/models/devices.py:653 +#: dcim/models/devices.py:1173 dcim/models/devices.py:1399 +#: dcim/models/power.py:96 dcim/models/racks.py:297 dcim/models/sites.py:154 +#: dcim/models/sites.py:266 ipam/models/ip.py:253 ipam/models/ip.py:522 +#: ipam/models/ip.py:730 ipam/models/vlans.py:195 +#: virtualization/models/clusters.py:74 +#: virtualization/models/virtualmachines.py:84 vpn/models/tunnels.py:40 +#: wireless/models.py:95 wireless/models.py:159 msgid "status" msgstr "状态" -#: netbox/circuits/models/circuits.py:84 netbox/templates/core/plugin.html:19 +#: circuits/models/circuits.py:84 templates/core/plugin.html:20 msgid "installed" msgstr "安装时间" -#: netbox/circuits/models/circuits.py:89 +#: circuits/models/circuits.py:89 msgid "terminates" msgstr "结束时间" -#: netbox/circuits/models/circuits.py:94 +#: circuits/models/circuits.py:94 msgid "commit rate (Kbps)" msgstr "承诺速率(Kbps)" -#: netbox/circuits/models/circuits.py:95 +#: circuits/models/circuits.py:95 msgid "Committed rate" msgstr "承诺速率" -#: netbox/circuits/models/circuits.py:137 +#: circuits/models/circuits.py:137 msgid "circuit" msgstr "线路" -#: netbox/circuits/models/circuits.py:138 +#: circuits/models/circuits.py:138 msgid "circuits" msgstr "广域网线路" -#: netbox/circuits/models/circuits.py:170 +#: circuits/models/circuits.py:170 msgid "circuit group" msgstr "电路组" -#: netbox/circuits/models/circuits.py:171 +#: circuits/models/circuits.py:171 msgid "circuit groups" msgstr "电路组" -#: netbox/circuits/models/circuits.py:195 netbox/ipam/models/fhrp.py:93 -#: netbox/tenancy/models/contacts.py:134 +#: circuits/models/circuits.py:195 ipam/models/fhrp.py:93 +#: tenancy/models/contacts.py:134 msgid "priority" msgstr "优先级" -#: netbox/circuits/models/circuits.py:213 +#: circuits/models/circuits.py:213 msgid "Circuit group assignment" msgstr "电路组分配" -#: netbox/circuits/models/circuits.py:214 +#: circuits/models/circuits.py:214 msgid "Circuit group assignments" msgstr "电路组分配" -#: netbox/circuits/models/circuits.py:240 +#: circuits/models/circuits.py:240 msgid "termination" msgstr "接入终端" -#: netbox/circuits/models/circuits.py:257 +#: circuits/models/circuits.py:257 msgid "port speed (Kbps)" msgstr "接口速率(Kpbs)" -#: netbox/circuits/models/circuits.py:260 +#: circuits/models/circuits.py:260 msgid "Physical circuit speed" msgstr "物理线路速率" -#: netbox/circuits/models/circuits.py:265 +#: circuits/models/circuits.py:265 msgid "upstream speed (Kbps)" msgstr "上行速率(Kbps)" -#: netbox/circuits/models/circuits.py:266 +#: circuits/models/circuits.py:266 msgid "Upstream speed, if different from port speed" msgstr "上行速度(如果与端口速度不同)" -#: netbox/circuits/models/circuits.py:271 +#: circuits/models/circuits.py:271 msgid "cross-connect ID" msgstr "交叉连接ID" -#: netbox/circuits/models/circuits.py:272 +#: circuits/models/circuits.py:272 msgid "ID of the local cross-connect" msgstr "本地交叉连接ID" -#: netbox/circuits/models/circuits.py:277 +#: circuits/models/circuits.py:277 msgid "patch panel/port(s)" msgstr "配线架/端口" -#: netbox/circuits/models/circuits.py:278 +#: circuits/models/circuits.py:278 msgid "Patch panel ID and port number(s)" msgstr "配线架 ID 和端口号" -#: netbox/circuits/models/circuits.py:281 -#: netbox/dcim/models/device_component_templates.py:61 -#: netbox/dcim/models/device_components.py:68 netbox/dcim/models/racks.py:685 -#: netbox/extras/models/configs.py:45 netbox/extras/models/configs.py:219 -#: netbox/extras/models/customfields.py:125 netbox/extras/models/models.py:61 -#: netbox/extras/models/models.py:158 netbox/extras/models/models.py:396 -#: netbox/extras/models/models.py:511 -#: netbox/extras/models/notifications.py:131 -#: netbox/extras/models/staging.py:31 netbox/extras/models/tags.py:32 -#: netbox/netbox/models/__init__.py:110 netbox/netbox/models/__init__.py:145 -#: netbox/netbox/models/__init__.py:191 netbox/users/models/permissions.py:24 -#: netbox/users/models/tokens.py:57 netbox/users/models/users.py:33 -#: netbox/virtualization/models/virtualmachines.py:289 +#: circuits/models/circuits.py:281 +#: dcim/models/device_component_templates.py:61 +#: dcim/models/device_components.py:68 dcim/models/racks.py:685 +#: extras/models/configs.py:45 extras/models/configs.py:219 +#: extras/models/customfields.py:125 extras/models/models.py:61 +#: extras/models/models.py:158 extras/models/models.py:396 +#: extras/models/models.py:511 extras/models/notifications.py:131 +#: extras/models/staging.py:31 extras/models/tags.py:32 +#: netbox/models/__init__.py:110 netbox/models/__init__.py:145 +#: netbox/models/__init__.py:191 users/models/permissions.py:24 +#: users/models/tokens.py:57 users/models/users.py:33 +#: virtualization/models/virtualmachines.py:289 msgid "description" msgstr "描述" -#: netbox/circuits/models/circuits.py:294 +#: circuits/models/circuits.py:294 msgid "circuit termination" msgstr "线路接入" -#: netbox/circuits/models/circuits.py:295 +#: circuits/models/circuits.py:295 msgid "circuit terminations" msgstr "线路接入" -#: netbox/circuits/models/circuits.py:308 +#: circuits/models/circuits.py:308 msgid "" "A circuit termination must attach to either a site or a provider network." msgstr "线路终结必须连接到站点或运营商网络。" -#: netbox/circuits/models/circuits.py:310 +#: circuits/models/circuits.py:310 msgid "" "A circuit termination cannot attach to both a site and a provider network." msgstr "线路终结不能同时连接到站点和运营商网络。" -#: netbox/circuits/models/providers.py:22 -#: netbox/circuits/models/providers.py:66 -#: netbox/circuits/models/providers.py:104 netbox/core/models/data.py:39 -#: netbox/core/models/jobs.py:45 -#: netbox/dcim/models/device_component_templates.py:43 -#: netbox/dcim/models/device_components.py:53 -#: netbox/dcim/models/devices.py:593 netbox/dcim/models/devices.py:1330 -#: netbox/dcim/models/devices.py:1395 netbox/dcim/models/power.py:39 -#: netbox/dcim/models/power.py:92 netbox/dcim/models/racks.py:262 -#: netbox/dcim/models/sites.py:138 netbox/extras/models/configs.py:36 -#: netbox/extras/models/configs.py:215 netbox/extras/models/customfields.py:92 -#: netbox/extras/models/models.py:56 netbox/extras/models/models.py:153 -#: netbox/extras/models/models.py:296 netbox/extras/models/models.py:392 -#: netbox/extras/models/models.py:501 netbox/extras/models/models.py:596 -#: netbox/extras/models/notifications.py:126 -#: netbox/extras/models/scripts.py:30 netbox/extras/models/staging.py:26 -#: netbox/ipam/models/asns.py:18 netbox/ipam/models/fhrp.py:25 -#: netbox/ipam/models/services.py:52 netbox/ipam/models/services.py:88 -#: netbox/ipam/models/vlans.py:36 netbox/ipam/models/vlans.py:184 -#: netbox/ipam/models/vrfs.py:22 netbox/ipam/models/vrfs.py:79 -#: netbox/netbox/models/__init__.py:137 netbox/netbox/models/__init__.py:181 -#: netbox/tenancy/models/contacts.py:64 netbox/tenancy/models/tenants.py:20 -#: netbox/tenancy/models/tenants.py:45 netbox/users/models/permissions.py:20 -#: netbox/users/models/users.py:28 netbox/virtualization/models/clusters.py:57 -#: netbox/virtualization/models/virtualmachines.py:72 -#: netbox/virtualization/models/virtualmachines.py:279 -#: netbox/vpn/models/crypto.py:24 netbox/vpn/models/crypto.py:71 -#: netbox/vpn/models/crypto.py:131 netbox/vpn/models/crypto.py:183 -#: netbox/vpn/models/crypto.py:221 netbox/vpn/models/l2vpn.py:22 -#: netbox/vpn/models/tunnels.py:35 netbox/wireless/models.py:51 +#: circuits/models/providers.py:22 circuits/models/providers.py:66 +#: circuits/models/providers.py:104 core/models/data.py:39 +#: core/models/jobs.py:45 dcim/models/device_component_templates.py:43 +#: dcim/models/device_components.py:53 dcim/models/devices.py:593 +#: dcim/models/devices.py:1330 dcim/models/devices.py:1395 +#: dcim/models/power.py:39 dcim/models/power.py:92 dcim/models/racks.py:262 +#: dcim/models/sites.py:138 extras/models/configs.py:36 +#: extras/models/configs.py:215 extras/models/customfields.py:92 +#: extras/models/models.py:56 extras/models/models.py:153 +#: extras/models/models.py:296 extras/models/models.py:392 +#: extras/models/models.py:501 extras/models/models.py:596 +#: extras/models/notifications.py:126 extras/models/scripts.py:30 +#: extras/models/staging.py:26 ipam/models/asns.py:18 ipam/models/fhrp.py:25 +#: ipam/models/services.py:52 ipam/models/services.py:88 +#: ipam/models/vlans.py:36 ipam/models/vlans.py:184 ipam/models/vrfs.py:22 +#: ipam/models/vrfs.py:79 netbox/models/__init__.py:137 +#: netbox/models/__init__.py:181 tenancy/models/contacts.py:64 +#: tenancy/models/tenants.py:20 tenancy/models/tenants.py:45 +#: users/models/permissions.py:20 users/models/users.py:28 +#: virtualization/models/clusters.py:57 +#: virtualization/models/virtualmachines.py:72 +#: virtualization/models/virtualmachines.py:279 vpn/models/crypto.py:24 +#: vpn/models/crypto.py:71 vpn/models/crypto.py:131 vpn/models/crypto.py:183 +#: vpn/models/crypto.py:221 vpn/models/l2vpn.py:22 vpn/models/tunnels.py:35 +#: wireless/models.py:51 msgid "name" msgstr "名称" -#: netbox/circuits/models/providers.py:25 +#: circuits/models/providers.py:25 msgid "Full name of the provider" msgstr "运营商全称" -#: netbox/circuits/models/providers.py:28 netbox/dcim/models/devices.py:86 -#: netbox/dcim/models/racks.py:137 netbox/dcim/models/sites.py:149 -#: netbox/extras/models/models.py:506 netbox/ipam/models/asns.py:23 -#: netbox/ipam/models/vlans.py:40 netbox/netbox/models/__init__.py:141 -#: netbox/netbox/models/__init__.py:186 netbox/tenancy/models/tenants.py:25 -#: netbox/tenancy/models/tenants.py:49 netbox/vpn/models/l2vpn.py:27 -#: netbox/wireless/models.py:56 +#: circuits/models/providers.py:28 dcim/models/devices.py:86 +#: dcim/models/racks.py:137 dcim/models/sites.py:149 +#: extras/models/models.py:506 ipam/models/asns.py:23 ipam/models/vlans.py:40 +#: netbox/models/__init__.py:141 netbox/models/__init__.py:186 +#: tenancy/models/tenants.py:25 tenancy/models/tenants.py:49 +#: vpn/models/l2vpn.py:27 wireless/models.py:56 msgid "slug" msgstr "缩写" -#: netbox/circuits/models/providers.py:42 +#: circuits/models/providers.py:42 msgid "provider" msgstr "运营商" -#: netbox/circuits/models/providers.py:43 +#: circuits/models/providers.py:43 msgid "providers" msgstr "运营商" -#: netbox/circuits/models/providers.py:63 +#: circuits/models/providers.py:63 msgid "account ID" msgstr "账户ID" -#: netbox/circuits/models/providers.py:86 +#: circuits/models/providers.py:86 msgid "provider account" msgstr "运营商账号" -#: netbox/circuits/models/providers.py:87 +#: circuits/models/providers.py:87 msgid "provider accounts" msgstr "运营商账户" -#: netbox/circuits/models/providers.py:115 +#: circuits/models/providers.py:115 msgid "service ID" msgstr "服务ID" -#: netbox/circuits/models/providers.py:126 +#: circuits/models/providers.py:126 msgid "provider network" msgstr "运营商网络" -#: netbox/circuits/models/providers.py:127 +#: circuits/models/providers.py:127 msgid "provider networks" msgstr "运营商网络" -#: netbox/circuits/tables/circuits.py:32 -#: netbox/circuits/tables/circuits.py:132 -#: netbox/circuits/tables/providers.py:18 -#: netbox/circuits/tables/providers.py:69 -#: netbox/circuits/tables/providers.py:99 netbox/core/tables/data.py:16 -#: netbox/core/tables/jobs.py:14 netbox/core/tables/plugins.py:44 -#: netbox/core/tables/tasks.py:11 netbox/core/tables/tasks.py:115 -#: netbox/dcim/forms/filtersets.py:63 netbox/dcim/forms/object_create.py:43 -#: netbox/dcim/tables/devices.py:52 netbox/dcim/tables/devices.py:92 -#: netbox/dcim/tables/devices.py:134 netbox/dcim/tables/devices.py:289 -#: netbox/dcim/tables/devices.py:392 netbox/dcim/tables/devices.py:433 -#: netbox/dcim/tables/devices.py:482 netbox/dcim/tables/devices.py:531 -#: netbox/dcim/tables/devices.py:648 netbox/dcim/tables/devices.py:731 -#: netbox/dcim/tables/devices.py:778 netbox/dcim/tables/devices.py:841 -#: netbox/dcim/tables/devices.py:911 netbox/dcim/tables/devices.py:974 -#: netbox/dcim/tables/devices.py:994 netbox/dcim/tables/devices.py:1023 -#: netbox/dcim/tables/devices.py:1053 netbox/dcim/tables/devicetypes.py:31 -#: netbox/dcim/tables/power.py:22 netbox/dcim/tables/power.py:62 -#: netbox/dcim/tables/racks.py:24 netbox/dcim/tables/racks.py:113 -#: netbox/dcim/tables/sites.py:24 netbox/dcim/tables/sites.py:51 -#: netbox/dcim/tables/sites.py:78 netbox/dcim/tables/sites.py:130 -#: netbox/extras/forms/filtersets.py:213 netbox/extras/tables/tables.py:58 -#: netbox/extras/tables/tables.py:122 netbox/extras/tables/tables.py:155 -#: netbox/extras/tables/tables.py:180 netbox/extras/tables/tables.py:246 -#: netbox/extras/tables/tables.py:361 netbox/extras/tables/tables.py:378 -#: netbox/extras/tables/tables.py:401 netbox/extras/tables/tables.py:439 -#: netbox/extras/tables/tables.py:491 netbox/extras/tables/tables.py:514 -#: netbox/ipam/forms/bulk_edit.py:406 netbox/ipam/forms/filtersets.py:386 -#: netbox/ipam/tables/asn.py:16 netbox/ipam/tables/ip.py:85 -#: netbox/ipam/tables/ip.py:160 netbox/ipam/tables/services.py:15 -#: netbox/ipam/tables/services.py:40 netbox/ipam/tables/vlans.py:64 -#: netbox/ipam/tables/vlans.py:114 netbox/ipam/tables/vrfs.py:26 -#: netbox/ipam/tables/vrfs.py:68 -#: netbox/templates/circuits/circuitgroup.html:28 -#: netbox/templates/circuits/circuittype.html:22 -#: netbox/templates/circuits/provideraccount.html:28 -#: netbox/templates/circuits/providernetwork.html:24 -#: netbox/templates/core/datasource.html:34 netbox/templates/core/job.html:44 -#: netbox/templates/core/plugin.html:53 -#: netbox/templates/core/rq_worker.html:43 -#: netbox/templates/dcim/consoleport.html:28 -#: netbox/templates/dcim/consoleserverport.html:28 -#: netbox/templates/dcim/devicebay.html:24 -#: netbox/templates/dcim/devicerole.html:26 -#: netbox/templates/dcim/frontport.html:28 -#: netbox/templates/dcim/inc/interface_vlans_table.html:5 -#: netbox/templates/dcim/inc/panels/inventory_items.html:18 -#: netbox/templates/dcim/interface.html:38 -#: netbox/templates/dcim/interface.html:165 -#: netbox/templates/dcim/inventoryitem.html:28 -#: netbox/templates/dcim/inventoryitemrole.html:18 -#: netbox/templates/dcim/location.html:29 -#: netbox/templates/dcim/manufacturer.html:36 -#: netbox/templates/dcim/modulebay.html:30 -#: netbox/templates/dcim/platform.html:29 -#: netbox/templates/dcim/poweroutlet.html:28 -#: netbox/templates/dcim/powerport.html:28 -#: netbox/templates/dcim/rackrole.html:22 -#: netbox/templates/dcim/rearport.html:28 netbox/templates/dcim/region.html:29 -#: netbox/templates/dcim/sitegroup.html:29 -#: netbox/templates/dcim/virtualdevicecontext.html:18 -#: netbox/templates/extras/configcontext.html:13 -#: netbox/templates/extras/configtemplate.html:13 -#: netbox/templates/extras/customfield.html:13 -#: netbox/templates/extras/customlink.html:13 -#: netbox/templates/extras/eventrule.html:13 -#: netbox/templates/extras/exporttemplate.html:15 -#: netbox/templates/extras/notificationgroup.html:14 -#: netbox/templates/extras/savedfilter.html:13 -#: netbox/templates/extras/script_list.html:44 -#: netbox/templates/extras/tag.html:14 netbox/templates/extras/webhook.html:13 -#: netbox/templates/ipam/asnrange.html:15 -#: netbox/templates/ipam/fhrpgroup.html:30 netbox/templates/ipam/rir.html:22 -#: netbox/templates/ipam/role.html:22 -#: netbox/templates/ipam/routetarget.html:13 -#: netbox/templates/ipam/service.html:24 -#: netbox/templates/ipam/servicetemplate.html:15 -#: netbox/templates/ipam/vlan.html:35 netbox/templates/ipam/vlangroup.html:30 -#: netbox/templates/tenancy/contact.html:25 -#: netbox/templates/tenancy/contactgroup.html:21 -#: netbox/templates/tenancy/contactrole.html:18 -#: netbox/templates/tenancy/tenantgroup.html:29 -#: netbox/templates/users/group.html:17 -#: netbox/templates/users/objectpermission.html:17 -#: netbox/templates/virtualization/cluster.html:13 -#: netbox/templates/virtualization/clustergroup.html:22 -#: netbox/templates/virtualization/clustertype.html:22 -#: netbox/templates/virtualization/virtualdisk.html:25 -#: netbox/templates/virtualization/virtualmachine.html:15 -#: netbox/templates/virtualization/vminterface.html:25 -#: netbox/templates/vpn/ikepolicy.html:13 -#: netbox/templates/vpn/ikeproposal.html:13 -#: netbox/templates/vpn/ipsecpolicy.html:13 -#: netbox/templates/vpn/ipsecprofile.html:13 -#: netbox/templates/vpn/ipsecprofile.html:36 -#: netbox/templates/vpn/ipsecprofile.html:69 -#: netbox/templates/vpn/ipsecproposal.html:13 -#: netbox/templates/vpn/l2vpn.html:14 netbox/templates/vpn/tunnel.html:21 -#: netbox/templates/vpn/tunnelgroup.html:26 -#: netbox/templates/wireless/wirelesslangroup.html:29 -#: netbox/tenancy/tables/contacts.py:19 netbox/tenancy/tables/contacts.py:41 -#: netbox/tenancy/tables/contacts.py:56 netbox/tenancy/tables/tenants.py:16 -#: netbox/tenancy/tables/tenants.py:38 netbox/users/tables.py:62 -#: netbox/users/tables.py:76 netbox/virtualization/forms/bulk_create.py:20 -#: netbox/virtualization/forms/object_create.py:13 -#: netbox/virtualization/forms/object_create.py:23 -#: netbox/virtualization/tables/clusters.py:17 -#: netbox/virtualization/tables/clusters.py:39 -#: netbox/virtualization/tables/clusters.py:62 -#: netbox/virtualization/tables/virtualmachines.py:55 -#: netbox/virtualization/tables/virtualmachines.py:139 -#: netbox/virtualization/tables/virtualmachines.py:194 -#: netbox/vpn/tables/crypto.py:18 netbox/vpn/tables/crypto.py:57 -#: netbox/vpn/tables/crypto.py:93 netbox/vpn/tables/crypto.py:129 -#: netbox/vpn/tables/crypto.py:158 netbox/vpn/tables/l2vpn.py:23 -#: netbox/vpn/tables/tunnels.py:18 netbox/vpn/tables/tunnels.py:40 -#: netbox/wireless/tables/wirelesslan.py:18 -#: netbox/wireless/tables/wirelesslan.py:79 +#: circuits/tables/circuits.py:32 circuits/tables/circuits.py:132 +#: circuits/tables/providers.py:18 circuits/tables/providers.py:69 +#: circuits/tables/providers.py:99 core/tables/data.py:16 +#: core/tables/jobs.py:14 core/tables/plugins.py:44 core/tables/tasks.py:11 +#: core/tables/tasks.py:115 dcim/forms/filtersets.py:63 +#: dcim/forms/object_create.py:43 dcim/tables/devices.py:52 +#: dcim/tables/devices.py:92 dcim/tables/devices.py:134 +#: dcim/tables/devices.py:289 dcim/tables/devices.py:392 +#: dcim/tables/devices.py:433 dcim/tables/devices.py:482 +#: dcim/tables/devices.py:531 dcim/tables/devices.py:648 +#: dcim/tables/devices.py:731 dcim/tables/devices.py:778 +#: dcim/tables/devices.py:841 dcim/tables/devices.py:911 +#: dcim/tables/devices.py:974 dcim/tables/devices.py:994 +#: dcim/tables/devices.py:1023 dcim/tables/devices.py:1053 +#: dcim/tables/devicetypes.py:31 dcim/tables/power.py:22 +#: dcim/tables/power.py:62 dcim/tables/racks.py:24 dcim/tables/racks.py:113 +#: dcim/tables/sites.py:24 dcim/tables/sites.py:51 dcim/tables/sites.py:78 +#: dcim/tables/sites.py:130 extras/forms/filtersets.py:213 +#: extras/tables/tables.py:58 extras/tables/tables.py:122 +#: extras/tables/tables.py:155 extras/tables/tables.py:180 +#: extras/tables/tables.py:246 extras/tables/tables.py:361 +#: extras/tables/tables.py:378 extras/tables/tables.py:401 +#: extras/tables/tables.py:439 extras/tables/tables.py:491 +#: extras/tables/tables.py:514 ipam/forms/bulk_edit.py:407 +#: ipam/forms/filtersets.py:386 ipam/tables/asn.py:16 ipam/tables/ip.py:85 +#: ipam/tables/ip.py:160 ipam/tables/services.py:15 ipam/tables/services.py:40 +#: ipam/tables/vlans.py:64 ipam/tables/vlans.py:114 ipam/tables/vrfs.py:26 +#: ipam/tables/vrfs.py:68 templates/circuits/circuitgroup.html:28 +#: templates/circuits/circuittype.html:22 +#: templates/circuits/provideraccount.html:28 +#: templates/circuits/providernetwork.html:24 +#: templates/core/datasource.html:34 templates/core/job.html:44 +#: templates/core/plugin.html:54 templates/core/rq_worker.html:43 +#: templates/dcim/consoleport.html:28 templates/dcim/consoleserverport.html:28 +#: templates/dcim/devicebay.html:24 templates/dcim/devicerole.html:26 +#: templates/dcim/frontport.html:28 +#: templates/dcim/inc/interface_vlans_table.html:5 +#: templates/dcim/inc/panels/inventory_items.html:18 +#: templates/dcim/interface.html:38 templates/dcim/interface.html:165 +#: templates/dcim/inventoryitem.html:28 +#: templates/dcim/inventoryitemrole.html:18 templates/dcim/location.html:29 +#: templates/dcim/manufacturer.html:36 templates/dcim/modulebay.html:30 +#: templates/dcim/platform.html:29 templates/dcim/poweroutlet.html:28 +#: templates/dcim/powerport.html:28 templates/dcim/rackrole.html:22 +#: templates/dcim/rearport.html:28 templates/dcim/region.html:29 +#: templates/dcim/sitegroup.html:29 +#: templates/dcim/virtualdevicecontext.html:18 +#: templates/extras/configcontext.html:13 +#: templates/extras/configtemplate.html:13 +#: templates/extras/customfield.html:13 templates/extras/customlink.html:13 +#: templates/extras/eventrule.html:13 templates/extras/exporttemplate.html:15 +#: templates/extras/notificationgroup.html:14 +#: templates/extras/savedfilter.html:13 templates/extras/script_list.html:44 +#: templates/extras/tag.html:14 templates/extras/webhook.html:13 +#: templates/ipam/asnrange.html:15 templates/ipam/fhrpgroup.html:30 +#: templates/ipam/rir.html:22 templates/ipam/role.html:22 +#: templates/ipam/routetarget.html:13 templates/ipam/service.html:24 +#: templates/ipam/servicetemplate.html:15 templates/ipam/vlan.html:35 +#: templates/ipam/vlangroup.html:30 templates/tenancy/contact.html:25 +#: templates/tenancy/contactgroup.html:21 +#: templates/tenancy/contactrole.html:18 templates/tenancy/tenantgroup.html:29 +#: templates/users/group.html:17 templates/users/objectpermission.html:17 +#: templates/virtualization/cluster.html:13 +#: templates/virtualization/clustergroup.html:22 +#: templates/virtualization/clustertype.html:22 +#: templates/virtualization/virtualdisk.html:25 +#: templates/virtualization/virtualmachine.html:15 +#: templates/virtualization/vminterface.html:25 +#: templates/vpn/ikepolicy.html:13 templates/vpn/ikeproposal.html:13 +#: templates/vpn/ipsecpolicy.html:13 templates/vpn/ipsecprofile.html:13 +#: templates/vpn/ipsecprofile.html:36 templates/vpn/ipsecprofile.html:69 +#: templates/vpn/ipsecproposal.html:13 templates/vpn/l2vpn.html:14 +#: templates/vpn/tunnel.html:21 templates/vpn/tunnelgroup.html:26 +#: templates/wireless/wirelesslangroup.html:29 tenancy/tables/contacts.py:19 +#: tenancy/tables/contacts.py:41 tenancy/tables/contacts.py:56 +#: tenancy/tables/tenants.py:16 tenancy/tables/tenants.py:38 +#: users/tables.py:62 users/tables.py:76 +#: virtualization/forms/bulk_create.py:20 +#: virtualization/forms/object_create.py:13 +#: virtualization/forms/object_create.py:23 +#: virtualization/tables/clusters.py:17 virtualization/tables/clusters.py:39 +#: virtualization/tables/clusters.py:62 +#: virtualization/tables/virtualmachines.py:55 +#: virtualization/tables/virtualmachines.py:139 +#: virtualization/tables/virtualmachines.py:194 vpn/tables/crypto.py:18 +#: vpn/tables/crypto.py:57 vpn/tables/crypto.py:93 vpn/tables/crypto.py:129 +#: vpn/tables/crypto.py:158 vpn/tables/l2vpn.py:23 vpn/tables/tunnels.py:18 +#: vpn/tables/tunnels.py:40 wireless/tables/wirelesslan.py:18 +#: wireless/tables/wirelesslan.py:79 msgid "Name" msgstr "名称" -#: netbox/circuits/tables/circuits.py:41 -#: netbox/circuits/tables/circuits.py:138 -#: netbox/circuits/tables/providers.py:45 -#: netbox/circuits/tables/providers.py:79 netbox/netbox/navigation/menu.py:266 -#: netbox/netbox/navigation/menu.py:270 netbox/netbox/navigation/menu.py:272 -#: netbox/templates/circuits/provider.html:57 -#: netbox/templates/circuits/provideraccount.html:44 -#: netbox/templates/circuits/providernetwork.html:50 +#: circuits/tables/circuits.py:41 circuits/tables/circuits.py:138 +#: circuits/tables/providers.py:45 circuits/tables/providers.py:79 +#: netbox/navigation/menu.py:266 netbox/navigation/menu.py:270 +#: netbox/navigation/menu.py:272 templates/circuits/provider.html:57 +#: templates/circuits/provideraccount.html:44 +#: templates/circuits/providernetwork.html:50 msgid "Circuits" msgstr "广域网线路" -#: netbox/circuits/tables/circuits.py:55 -#: netbox/templates/circuits/circuit.html:26 +#: circuits/tables/circuits.py:55 templates/circuits/circuit.html:26 msgid "Circuit ID" msgstr "线路ID" -#: netbox/circuits/tables/circuits.py:69 -#: netbox/wireless/forms/model_forms.py:160 +#: circuits/tables/circuits.py:69 wireless/forms/model_forms.py:160 msgid "Side A" msgstr "A端" -#: netbox/circuits/tables/circuits.py:74 +#: circuits/tables/circuits.py:74 msgid "Side Z" msgstr "Z端" -#: netbox/circuits/tables/circuits.py:77 -#: netbox/templates/circuits/circuit.html:55 +#: circuits/tables/circuits.py:77 templates/circuits/circuit.html:55 msgid "Commit Rate" msgstr "承诺速率" -#: netbox/circuits/tables/circuits.py:80 -#: netbox/circuits/tables/providers.py:48 -#: netbox/circuits/tables/providers.py:82 -#: netbox/circuits/tables/providers.py:107 netbox/dcim/tables/devices.py:1036 -#: netbox/dcim/tables/devicetypes.py:92 netbox/dcim/tables/modules.py:29 -#: netbox/dcim/tables/modules.py:72 netbox/dcim/tables/power.py:39 -#: netbox/dcim/tables/power.py:96 netbox/dcim/tables/racks.py:84 -#: netbox/dcim/tables/racks.py:145 netbox/dcim/tables/racks.py:225 -#: netbox/dcim/tables/sites.py:108 netbox/extras/tables/tables.py:582 -#: netbox/ipam/tables/asn.py:69 netbox/ipam/tables/fhrp.py:34 -#: netbox/ipam/tables/ip.py:136 netbox/ipam/tables/ip.py:275 -#: netbox/ipam/tables/ip.py:329 netbox/ipam/tables/ip.py:397 -#: netbox/ipam/tables/services.py:24 netbox/ipam/tables/services.py:54 -#: netbox/ipam/tables/vlans.py:145 netbox/ipam/tables/vrfs.py:47 -#: netbox/ipam/tables/vrfs.py:72 netbox/templates/dcim/htmx/cable_edit.html:89 -#: netbox/templates/generic/bulk_edit.html:86 -#: netbox/templates/inc/panels/comments.html:5 -#: netbox/tenancy/tables/contacts.py:68 netbox/tenancy/tables/tenants.py:46 -#: netbox/utilities/forms/fields/fields.py:29 -#: netbox/virtualization/tables/clusters.py:91 -#: netbox/virtualization/tables/virtualmachines.py:82 -#: netbox/vpn/tables/crypto.py:37 netbox/vpn/tables/crypto.py:74 -#: netbox/vpn/tables/crypto.py:109 netbox/vpn/tables/crypto.py:140 -#: netbox/vpn/tables/crypto.py:173 netbox/vpn/tables/l2vpn.py:37 -#: netbox/vpn/tables/tunnels.py:61 netbox/wireless/tables/wirelesslan.py:27 -#: netbox/wireless/tables/wirelesslan.py:58 +#: circuits/tables/circuits.py:80 circuits/tables/providers.py:48 +#: circuits/tables/providers.py:82 circuits/tables/providers.py:107 +#: dcim/tables/devices.py:1036 dcim/tables/devicetypes.py:92 +#: dcim/tables/modules.py:29 dcim/tables/modules.py:72 dcim/tables/power.py:39 +#: dcim/tables/power.py:96 dcim/tables/racks.py:84 dcim/tables/racks.py:145 +#: dcim/tables/racks.py:225 dcim/tables/sites.py:108 +#: extras/tables/tables.py:582 ipam/tables/asn.py:69 ipam/tables/fhrp.py:34 +#: ipam/tables/ip.py:136 ipam/tables/ip.py:275 ipam/tables/ip.py:329 +#: ipam/tables/ip.py:397 ipam/tables/services.py:24 ipam/tables/services.py:54 +#: ipam/tables/vlans.py:145 ipam/tables/vrfs.py:47 ipam/tables/vrfs.py:72 +#: templates/dcim/htmx/cable_edit.html:89 templates/generic/bulk_edit.html:86 +#: templates/inc/panels/comments.html:5 tenancy/tables/contacts.py:68 +#: tenancy/tables/tenants.py:46 utilities/forms/fields/fields.py:29 +#: virtualization/tables/clusters.py:91 +#: virtualization/tables/virtualmachines.py:82 vpn/tables/crypto.py:37 +#: vpn/tables/crypto.py:74 vpn/tables/crypto.py:109 vpn/tables/crypto.py:140 +#: vpn/tables/crypto.py:173 vpn/tables/l2vpn.py:37 vpn/tables/tunnels.py:61 +#: wireless/tables/wirelesslan.py:27 wireless/tables/wirelesslan.py:58 msgid "Comments" msgstr "评论" -#: netbox/circuits/tables/circuits.py:86 -#: netbox/templates/tenancy/contact.html:84 -#: netbox/tenancy/tables/contacts.py:73 +#: circuits/tables/circuits.py:86 templates/tenancy/contact.html:84 +#: tenancy/tables/contacts.py:73 msgid "Assignments" msgstr "分配" -#: netbox/circuits/tables/providers.py:23 +#: circuits/tables/providers.py:23 msgid "Accounts" msgstr "账户" -#: netbox/circuits/tables/providers.py:29 +#: circuits/tables/providers.py:29 msgid "Account Count" msgstr "账户统计" -#: netbox/circuits/tables/providers.py:39 netbox/dcim/tables/sites.py:100 +#: circuits/tables/providers.py:39 dcim/tables/sites.py:100 msgid "ASN Count" msgstr "ASN统计" -#: netbox/circuits/views.py:331 +#: circuits/views.py:331 #, python-brace-format msgid "No terminations have been defined for circuit {circuit}." msgstr "尚未为电路定义终端 {circuit}。" -#: netbox/circuits/views.py:380 +#: circuits/views.py:380 #, python-brace-format msgid "Swapped terminations for circuit {circuit}." msgstr "已将终端交换为电路 {circuit}。" -#: netbox/core/api/views.py:39 +#: core/api/views.py:39 msgid "This user does not have permission to synchronize this data source." msgstr "该用户无权同步该数据源。" -#: netbox/core/choices.py:18 +#: core/choices.py:18 msgid "New" msgstr "新建" -#: netbox/core/choices.py:19 netbox/core/constants.py:18 -#: netbox/core/tables/tasks.py:15 netbox/templates/core/rq_task.html:77 +#: core/choices.py:19 core/constants.py:18 core/tables/tasks.py:15 +#: templates/core/rq_task.html:77 msgid "Queued" msgstr "排队等候" -#: netbox/core/choices.py:20 +#: core/choices.py:20 msgid "Syncing" msgstr "正在同步" -#: netbox/core/choices.py:21 netbox/core/choices.py:57 -#: netbox/core/tables/jobs.py:41 netbox/templates/core/job.html:86 +#: core/choices.py:21 core/choices.py:57 core/tables/jobs.py:41 +#: templates/core/job.html:86 msgid "Completed" msgstr "完成" -#: netbox/core/choices.py:22 netbox/core/choices.py:59 -#: netbox/core/constants.py:20 netbox/core/tables/tasks.py:34 -#: netbox/dcim/choices.py:187 netbox/dcim/choices.py:239 -#: netbox/dcim/choices.py:1607 netbox/virtualization/choices.py:47 +#: core/choices.py:22 core/choices.py:59 core/constants.py:20 +#: core/tables/tasks.py:34 dcim/choices.py:187 dcim/choices.py:239 +#: dcim/choices.py:1607 virtualization/choices.py:47 msgid "Failed" msgstr "故障" -#: netbox/core/choices.py:35 netbox/netbox/navigation/menu.py:335 -#: netbox/netbox/navigation/menu.py:339 -#: netbox/templates/extras/script/base.html:14 -#: netbox/templates/extras/script_list.html:7 -#: netbox/templates/extras/script_list.html:12 -#: netbox/templates/extras/script_result.html:17 +#: core/choices.py:35 netbox/navigation/menu.py:335 +#: netbox/navigation/menu.py:339 templates/extras/script/base.html:14 +#: templates/extras/script_list.html:7 templates/extras/script_list.html:12 +#: templates/extras/script_result.html:17 msgid "Scripts" msgstr "脚本" -#: netbox/core/choices.py:36 netbox/templates/extras/report/base.html:13 +#: core/choices.py:36 templates/extras/report/base.html:13 msgid "Reports" msgstr "报告" -#: netbox/core/choices.py:54 +#: core/choices.py:54 msgid "Pending" msgstr "正在挂起" -#: netbox/core/choices.py:55 netbox/core/constants.py:23 -#: netbox/core/tables/jobs.py:32 netbox/core/tables/tasks.py:38 -#: netbox/templates/core/job.html:73 +#: core/choices.py:55 core/constants.py:23 core/tables/jobs.py:32 +#: core/tables/tasks.py:38 templates/core/job.html:73 msgid "Scheduled" msgstr "计划" -#: netbox/core/choices.py:56 +#: core/choices.py:56 msgid "Running" msgstr "运行中" -#: netbox/core/choices.py:58 +#: core/choices.py:58 msgid "Errored" msgstr "错误" -#: netbox/core/choices.py:87 netbox/core/tables/plugins.py:63 -#: netbox/templates/generic/object.html:61 +#: core/choices.py:87 core/tables/plugins.py:63 +#: templates/generic/object.html:61 msgid "Updated" msgstr "更新于" -#: netbox/core/choices.py:88 +#: core/choices.py:88 msgid "Deleted" msgstr "删除" -#: netbox/core/constants.py:19 netbox/core/tables/tasks.py:30 +#: core/constants.py:19 core/tables/tasks.py:30 msgid "Finished" msgstr "已完成" -#: netbox/core/constants.py:21 netbox/core/tables/jobs.py:38 -#: netbox/templates/core/job.html:82 -#: netbox/templates/extras/htmx/script_result.html:8 +#: core/constants.py:21 core/tables/jobs.py:38 templates/core/job.html:82 +#: templates/extras/htmx/script_result.html:8 msgid "Started" msgstr "开始于" -#: netbox/core/constants.py:22 netbox/core/tables/tasks.py:26 +#: core/constants.py:22 core/tables/tasks.py:26 msgid "Deferred" msgstr "延期" -#: netbox/core/constants.py:24 +#: core/constants.py:24 msgid "Stopped" msgstr "已停止" -#: netbox/core/constants.py:25 +#: core/constants.py:25 msgid "Cancelled" msgstr "已取消" -#: netbox/core/data_backends.py:32 netbox/core/tables/plugins.py:51 -#: netbox/templates/core/plugin.html:87 -#: netbox/templates/dcim/interface.html:216 +#: core/data_backends.py:32 core/tables/plugins.py:51 +#: templates/core/plugin.html:88 templates/dcim/interface.html:216 msgid "Local" msgstr "本地" -#: netbox/core/data_backends.py:50 netbox/core/tables/change_logging.py:20 -#: netbox/templates/account/profile.html:15 -#: netbox/templates/users/user.html:17 netbox/users/tables.py:31 +#: core/data_backends.py:50 core/tables/change_logging.py:20 +#: templates/account/profile.html:15 templates/users/user.html:17 +#: users/tables.py:31 msgid "Username" msgstr "用户名" -#: netbox/core/data_backends.py:52 netbox/core/data_backends.py:58 +#: core/data_backends.py:52 core/data_backends.py:58 msgid "Only used for cloning with HTTP(S)" msgstr "仅用于通过 HTTP(S) 进行克隆" -#: netbox/core/data_backends.py:56 netbox/templates/account/base.html:23 -#: netbox/templates/account/password.html:12 -#: netbox/users/forms/model_forms.py:170 +#: core/data_backends.py:56 templates/account/base.html:23 +#: templates/account/password.html:12 users/forms/model_forms.py:170 msgid "Password" msgstr "密码" -#: netbox/core/data_backends.py:62 +#: core/data_backends.py:62 msgid "Branch" msgstr "分支" -#: netbox/core/data_backends.py:120 +#: core/data_backends.py:120 #, python-brace-format msgid "Fetching remote data failed ({name}): {error}" msgstr "获取远程数据失败({name}): {error}" -#: netbox/core/data_backends.py:133 +#: core/data_backends.py:133 msgid "AWS access key ID" msgstr "AWS access key ID" -#: netbox/core/data_backends.py:137 +#: core/data_backends.py:137 msgid "AWS secret access key" msgstr "AWS secret access key" -#: netbox/core/events.py:27 +#: core/events.py:27 msgid "Object created" msgstr "对象已创建" -#: netbox/core/events.py:28 +#: core/events.py:28 msgid "Object updated" msgstr "对象已更新" -#: netbox/core/events.py:29 +#: core/events.py:29 msgid "Object deleted" msgstr "对象已删除" -#: netbox/core/events.py:30 +#: core/events.py:30 msgid "Job started" msgstr "工作已开始" -#: netbox/core/events.py:31 +#: core/events.py:31 msgid "Job completed" msgstr "任务已完成" -#: netbox/core/events.py:32 +#: core/events.py:32 msgid "Job failed" msgstr "作业失败" -#: netbox/core/events.py:33 +#: core/events.py:33 msgid "Job errored" msgstr "作业出错" -#: netbox/core/filtersets.py:53 netbox/extras/filtersets.py:250 -#: netbox/extras/filtersets.py:633 netbox/extras/filtersets.py:661 +#: core/filtersets.py:53 extras/filtersets.py:250 extras/filtersets.py:633 +#: extras/filtersets.py:661 msgid "Data source (ID)" msgstr "数据源 (ID)" -#: netbox/core/filtersets.py:59 +#: core/filtersets.py:59 msgid "Data source (name)" msgstr "数据源 (name)" -#: netbox/core/filtersets.py:145 netbox/dcim/filtersets.py:501 -#: netbox/extras/filtersets.py:287 netbox/extras/filtersets.py:331 -#: netbox/extras/filtersets.py:353 netbox/extras/filtersets.py:413 -#: netbox/users/filtersets.py:28 +#: core/filtersets.py:145 dcim/filtersets.py:501 extras/filtersets.py:287 +#: extras/filtersets.py:331 extras/filtersets.py:353 extras/filtersets.py:413 +#: users/filtersets.py:28 msgid "User (ID)" msgstr "用户(ID)" -#: netbox/core/filtersets.py:151 +#: core/filtersets.py:151 msgid "User name" msgstr "用户名" -#: netbox/core/forms/bulk_edit.py:25 netbox/core/forms/filtersets.py:43 -#: netbox/core/tables/data.py:26 netbox/dcim/forms/bulk_edit.py:1122 -#: netbox/dcim/forms/bulk_edit.py:1400 netbox/dcim/forms/filtersets.py:1370 -#: netbox/dcim/tables/devices.py:553 netbox/dcim/tables/devicetypes.py:224 -#: netbox/extras/forms/bulk_edit.py:123 netbox/extras/forms/bulk_edit.py:187 -#: netbox/extras/forms/bulk_edit.py:246 netbox/extras/forms/filtersets.py:142 -#: netbox/extras/forms/filtersets.py:229 netbox/extras/forms/filtersets.py:294 -#: netbox/extras/tables/tables.py:162 netbox/extras/tables/tables.py:253 -#: netbox/extras/tables/tables.py:415 netbox/netbox/preferences.py:22 -#: netbox/templates/core/datasource.html:42 -#: netbox/templates/dcim/interface.html:61 -#: netbox/templates/extras/customlink.html:17 -#: netbox/templates/extras/eventrule.html:17 -#: netbox/templates/extras/savedfilter.html:25 -#: netbox/templates/users/objectpermission.html:25 -#: netbox/templates/virtualization/vminterface.html:29 -#: netbox/users/forms/bulk_edit.py:89 netbox/users/forms/filtersets.py:70 -#: netbox/users/tables.py:83 netbox/virtualization/forms/bulk_edit.py:217 -#: netbox/virtualization/forms/filtersets.py:215 +#: core/forms/bulk_edit.py:25 core/forms/filtersets.py:43 +#: core/tables/data.py:26 dcim/forms/bulk_edit.py:1122 +#: dcim/forms/bulk_edit.py:1400 dcim/forms/filtersets.py:1370 +#: dcim/tables/devices.py:553 dcim/tables/devicetypes.py:224 +#: extras/forms/bulk_edit.py:123 extras/forms/bulk_edit.py:187 +#: extras/forms/bulk_edit.py:246 extras/forms/filtersets.py:142 +#: extras/forms/filtersets.py:229 extras/forms/filtersets.py:294 +#: extras/tables/tables.py:162 extras/tables/tables.py:253 +#: extras/tables/tables.py:415 netbox/preferences.py:22 +#: templates/core/datasource.html:42 templates/dcim/interface.html:61 +#: templates/extras/customlink.html:17 templates/extras/eventrule.html:17 +#: templates/extras/savedfilter.html:25 +#: templates/users/objectpermission.html:25 +#: templates/virtualization/vminterface.html:29 users/forms/bulk_edit.py:89 +#: users/forms/filtersets.py:70 users/tables.py:83 +#: virtualization/forms/bulk_edit.py:217 +#: virtualization/forms/filtersets.py:215 msgid "Enabled" msgstr "已启用" -#: netbox/core/forms/bulk_edit.py:34 netbox/extras/forms/model_forms.py:285 -#: netbox/templates/extras/savedfilter.html:52 -#: netbox/vpn/forms/filtersets.py:97 netbox/vpn/forms/filtersets.py:127 -#: netbox/vpn/forms/filtersets.py:151 netbox/vpn/forms/filtersets.py:170 -#: netbox/vpn/forms/model_forms.py:301 netbox/vpn/forms/model_forms.py:321 -#: netbox/vpn/forms/model_forms.py:337 netbox/vpn/forms/model_forms.py:357 -#: netbox/vpn/forms/model_forms.py:380 +#: core/forms/bulk_edit.py:34 extras/forms/model_forms.py:285 +#: templates/extras/savedfilter.html:52 vpn/forms/filtersets.py:97 +#: vpn/forms/filtersets.py:127 vpn/forms/filtersets.py:151 +#: vpn/forms/filtersets.py:170 vpn/forms/model_forms.py:301 +#: vpn/forms/model_forms.py:321 vpn/forms/model_forms.py:337 +#: vpn/forms/model_forms.py:357 vpn/forms/model_forms.py:380 msgid "Parameters" msgstr "参数" -#: netbox/core/forms/bulk_edit.py:38 netbox/templates/core/datasource.html:68 +#: core/forms/bulk_edit.py:38 templates/core/datasource.html:68 msgid "Ignore rules" msgstr "忽略规则" -#: netbox/core/forms/filtersets.py:30 netbox/core/forms/model_forms.py:97 -#: netbox/extras/forms/model_forms.py:248 -#: netbox/extras/forms/model_forms.py:578 -#: netbox/extras/forms/model_forms.py:632 netbox/extras/tables/tables.py:191 -#: netbox/extras/tables/tables.py:483 netbox/extras/tables/tables.py:518 -#: netbox/templates/core/datasource.html:31 -#: netbox/templates/dcim/device/render_config.html:18 -#: netbox/templates/extras/configcontext.html:29 -#: netbox/templates/extras/configtemplate.html:21 -#: netbox/templates/extras/exporttemplate.html:35 -#: netbox/templates/virtualization/virtualmachine/render_config.html:18 +#: core/forms/filtersets.py:30 core/forms/model_forms.py:97 +#: extras/forms/model_forms.py:248 extras/forms/model_forms.py:578 +#: extras/forms/model_forms.py:632 extras/tables/tables.py:191 +#: extras/tables/tables.py:483 extras/tables/tables.py:518 +#: templates/core/datasource.html:31 +#: templates/dcim/device/render_config.html:18 +#: templates/extras/configcontext.html:29 +#: templates/extras/configtemplate.html:21 +#: templates/extras/exporttemplate.html:35 +#: templates/virtualization/virtualmachine/render_config.html:18 msgid "Data Source" msgstr "数据源" -#: netbox/core/forms/filtersets.py:55 netbox/core/forms/mixins.py:21 +#: core/forms/filtersets.py:55 core/forms/mixins.py:21 msgid "File" msgstr "文件" -#: netbox/core/forms/filtersets.py:60 netbox/core/forms/mixins.py:16 -#: netbox/extras/forms/filtersets.py:170 netbox/extras/forms/filtersets.py:328 -#: netbox/extras/forms/filtersets.py:413 +#: core/forms/filtersets.py:60 core/forms/mixins.py:16 +#: extras/forms/filtersets.py:170 extras/forms/filtersets.py:328 +#: extras/forms/filtersets.py:413 msgid "Data source" msgstr "数据源" -#: netbox/core/forms/filtersets.py:70 netbox/extras/forms/filtersets.py:440 +#: core/forms/filtersets.py:70 extras/forms/filtersets.py:440 msgid "Creation" msgstr "创建" -#: netbox/core/forms/filtersets.py:74 netbox/core/forms/filtersets.py:160 -#: netbox/extras/forms/filtersets.py:461 netbox/extras/tables/tables.py:220 -#: netbox/extras/tables/tables.py:294 netbox/extras/tables/tables.py:326 -#: netbox/extras/tables/tables.py:571 netbox/templates/core/job.html:38 -#: netbox/templates/core/objectchange.html:52 -#: netbox/tenancy/tables/contacts.py:90 netbox/vpn/tables/l2vpn.py:59 +#: core/forms/filtersets.py:74 core/forms/filtersets.py:160 +#: extras/forms/filtersets.py:461 extras/tables/tables.py:220 +#: extras/tables/tables.py:294 extras/tables/tables.py:326 +#: extras/tables/tables.py:571 templates/core/job.html:38 +#: templates/core/objectchange.html:52 tenancy/tables/contacts.py:90 +#: vpn/tables/l2vpn.py:59 msgid "Object Type" msgstr "目标类型" -#: netbox/core/forms/filtersets.py:84 +#: core/forms/filtersets.py:84 msgid "Created after" msgstr "之后创建" -#: netbox/core/forms/filtersets.py:89 +#: core/forms/filtersets.py:89 msgid "Created before" msgstr "之前创建" -#: netbox/core/forms/filtersets.py:94 +#: core/forms/filtersets.py:94 msgid "Scheduled after" msgstr "计划在之后" -#: netbox/core/forms/filtersets.py:99 +#: core/forms/filtersets.py:99 msgid "Scheduled before" msgstr "计划在之前" -#: netbox/core/forms/filtersets.py:104 +#: core/forms/filtersets.py:104 msgid "Started after" msgstr "之后开始" -#: netbox/core/forms/filtersets.py:109 +#: core/forms/filtersets.py:109 msgid "Started before" msgstr "之前开始" -#: netbox/core/forms/filtersets.py:114 +#: core/forms/filtersets.py:114 msgid "Completed after" msgstr "完成后" -#: netbox/core/forms/filtersets.py:119 +#: core/forms/filtersets.py:119 msgid "Completed before" msgstr "完成后" -#: netbox/core/forms/filtersets.py:126 netbox/core/forms/filtersets.py:155 -#: netbox/dcim/forms/bulk_edit.py:456 netbox/dcim/forms/filtersets.py:418 -#: netbox/dcim/forms/filtersets.py:462 netbox/dcim/forms/model_forms.py:316 -#: netbox/extras/forms/filtersets.py:456 netbox/extras/forms/filtersets.py:475 -#: netbox/extras/tables/tables.py:302 netbox/extras/tables/tables.py:342 -#: netbox/templates/core/objectchange.html:36 -#: netbox/templates/dcim/rackreservation.html:58 -#: netbox/templates/extras/savedfilter.html:21 -#: netbox/templates/inc/user_menu.html:33 netbox/templates/users/token.html:21 -#: netbox/templates/users/user.html:6 netbox/templates/users/user.html:14 -#: netbox/users/filtersets.py:107 netbox/users/filtersets.py:174 -#: netbox/users/forms/filtersets.py:84 netbox/users/forms/filtersets.py:125 -#: netbox/users/forms/model_forms.py:155 netbox/users/forms/model_forms.py:192 -#: netbox/users/tables.py:19 +#: core/forms/filtersets.py:126 core/forms/filtersets.py:155 +#: dcim/forms/bulk_edit.py:456 dcim/forms/filtersets.py:418 +#: dcim/forms/filtersets.py:462 dcim/forms/model_forms.py:316 +#: extras/forms/filtersets.py:456 extras/forms/filtersets.py:475 +#: extras/tables/tables.py:302 extras/tables/tables.py:342 +#: templates/core/objectchange.html:36 templates/dcim/rackreservation.html:58 +#: templates/extras/savedfilter.html:21 templates/inc/user_menu.html:33 +#: templates/users/token.html:21 templates/users/user.html:6 +#: templates/users/user.html:14 users/filtersets.py:107 +#: users/filtersets.py:174 users/forms/filtersets.py:84 +#: users/forms/filtersets.py:125 users/forms/model_forms.py:155 +#: users/forms/model_forms.py:192 users/tables.py:19 msgid "User" msgstr "用户" -#: netbox/core/forms/filtersets.py:134 netbox/core/tables/change_logging.py:15 -#: netbox/extras/tables/tables.py:609 netbox/extras/tables/tables.py:646 -#: netbox/templates/core/objectchange.html:32 +#: core/forms/filtersets.py:134 core/tables/change_logging.py:15 +#: extras/tables/tables.py:609 extras/tables/tables.py:646 +#: templates/core/objectchange.html:32 msgid "Time" msgstr "时间" -#: netbox/core/forms/filtersets.py:139 netbox/extras/forms/filtersets.py:445 +#: core/forms/filtersets.py:139 extras/forms/filtersets.py:445 msgid "After" msgstr "之后" -#: netbox/core/forms/filtersets.py:144 netbox/extras/forms/filtersets.py:450 +#: core/forms/filtersets.py:144 extras/forms/filtersets.py:450 msgid "Before" msgstr "之前" -#: netbox/core/forms/filtersets.py:148 netbox/core/tables/change_logging.py:29 -#: netbox/extras/forms/model_forms.py:396 -#: netbox/templates/core/objectchange.html:46 -#: netbox/templates/extras/eventrule.html:71 +#: core/forms/filtersets.py:148 core/tables/change_logging.py:29 +#: extras/forms/model_forms.py:396 templates/core/objectchange.html:46 +#: templates/extras/eventrule.html:71 msgid "Action" msgstr "动作" -#: netbox/core/forms/model_forms.py:54 netbox/core/tables/data.py:46 -#: netbox/templates/core/datafile.html:27 -#: netbox/templates/extras/report/base.html:33 -#: netbox/templates/extras/script/base.html:32 +#: core/forms/model_forms.py:54 core/tables/data.py:46 +#: templates/core/datafile.html:27 templates/extras/report/base.html:33 +#: templates/extras/script/base.html:32 msgid "Source" msgstr "源" -#: netbox/core/forms/model_forms.py:58 +#: core/forms/model_forms.py:58 msgid "Backend Parameters" msgstr "后台参数" -#: netbox/core/forms/model_forms.py:96 +#: core/forms/model_forms.py:96 msgid "File Upload" msgstr "文件上传" -#: netbox/core/forms/model_forms.py:108 +#: core/forms/model_forms.py:108 msgid "Cannot upload a file and sync from an existing file" msgstr "无法上传文件,也不能从已经存在的文件进行同步" -#: netbox/core/forms/model_forms.py:110 +#: core/forms/model_forms.py:110 msgid "Must upload a file or select a data file to sync" msgstr "必须上传文件或选择数据文件进行同步" -#: netbox/core/forms/model_forms.py:153 -#: netbox/templates/dcim/rack_elevation_list.html:6 +#: core/forms/model_forms.py:153 templates/dcim/rack_elevation_list.html:6 msgid "Rack Elevations" msgstr "机柜立面图" -#: netbox/core/forms/model_forms.py:157 netbox/dcim/choices.py:1518 -#: netbox/dcim/forms/bulk_edit.py:969 netbox/dcim/forms/bulk_edit.py:1357 -#: netbox/dcim/forms/bulk_edit.py:1375 netbox/dcim/tables/racks.py:158 -#: netbox/netbox/navigation/menu.py:291 netbox/netbox/navigation/menu.py:295 +#: core/forms/model_forms.py:157 dcim/choices.py:1518 +#: dcim/forms/bulk_edit.py:969 dcim/forms/bulk_edit.py:1357 +#: dcim/forms/bulk_edit.py:1375 dcim/tables/racks.py:158 +#: netbox/navigation/menu.py:291 netbox/navigation/menu.py:295 msgid "Power" msgstr "电源" -#: netbox/core/forms/model_forms.py:159 netbox/netbox/navigation/menu.py:154 -#: netbox/templates/core/inc/config_data.html:37 +#: core/forms/model_forms.py:159 netbox/navigation/menu.py:154 +#: templates/core/inc/config_data.html:37 msgid "IPAM" msgstr "IP地址管理" -#: netbox/core/forms/model_forms.py:160 netbox/netbox/navigation/menu.py:230 -#: netbox/templates/core/inc/config_data.html:50 -#: netbox/vpn/forms/bulk_edit.py:77 netbox/vpn/forms/filtersets.py:43 -#: netbox/vpn/forms/model_forms.py:61 netbox/vpn/forms/model_forms.py:146 +#: core/forms/model_forms.py:160 netbox/navigation/menu.py:230 +#: templates/core/inc/config_data.html:50 vpn/forms/bulk_edit.py:77 +#: vpn/forms/filtersets.py:43 vpn/forms/model_forms.py:61 +#: vpn/forms/model_forms.py:146 msgid "Security" msgstr "安全" -#: netbox/core/forms/model_forms.py:161 -#: netbox/templates/core/inc/config_data.html:59 +#: core/forms/model_forms.py:161 templates/core/inc/config_data.html:59 msgid "Banners" msgstr "横幅" -#: netbox/core/forms/model_forms.py:162 -#: netbox/templates/core/inc/config_data.html:80 +#: core/forms/model_forms.py:162 templates/core/inc/config_data.html:80 msgid "Pagination" msgstr "分页" -#: netbox/core/forms/model_forms.py:163 netbox/extras/forms/bulk_edit.py:92 -#: netbox/extras/forms/filtersets.py:47 netbox/extras/forms/model_forms.py:116 -#: netbox/extras/forms/model_forms.py:129 -#: netbox/templates/core/inc/config_data.html:93 +#: core/forms/model_forms.py:163 extras/forms/bulk_edit.py:92 +#: extras/forms/filtersets.py:47 extras/forms/model_forms.py:116 +#: extras/forms/model_forms.py:129 templates/core/inc/config_data.html:93 msgid "Validation" msgstr "验证" -#: netbox/core/forms/model_forms.py:164 -#: netbox/templates/account/preferences.html:6 +#: core/forms/model_forms.py:164 templates/account/preferences.html:6 msgid "User Preferences" msgstr "用户首选项" -#: netbox/core/forms/model_forms.py:167 netbox/dcim/forms/filtersets.py:732 -#: netbox/templates/core/inc/config_data.html:127 -#: netbox/users/forms/model_forms.py:64 +#: core/forms/model_forms.py:167 dcim/forms/filtersets.py:732 +#: templates/core/inc/config_data.html:127 users/forms/model_forms.py:64 msgid "Miscellaneous" msgstr "杂项" -#: netbox/core/forms/model_forms.py:169 +#: core/forms/model_forms.py:169 msgid "Config Revision" msgstr "配置修订" -#: netbox/core/forms/model_forms.py:208 +#: core/forms/model_forms.py:208 msgid "This parameter has been defined statically and cannot be modified." msgstr "该参数已被静态定义,无法修改。" -#: netbox/core/forms/model_forms.py:216 +#: core/forms/model_forms.py:216 #, python-brace-format msgid "Current value: {value}" msgstr "当前变量: {value}" -#: netbox/core/forms/model_forms.py:218 +#: core/forms/model_forms.py:218 msgid " (default)" msgstr "(默认)" -#: netbox/core/models/change_logging.py:29 +#: core/models/change_logging.py:29 msgid "time" msgstr "时间" -#: netbox/core/models/change_logging.py:42 +#: core/models/change_logging.py:42 msgid "user name" msgstr "用户名" -#: netbox/core/models/change_logging.py:47 +#: core/models/change_logging.py:47 msgid "request ID" msgstr "请求ID" -#: netbox/core/models/change_logging.py:52 netbox/extras/models/staging.py:69 +#: core/models/change_logging.py:52 extras/models/staging.py:69 msgid "action" msgstr "动作" -#: netbox/core/models/change_logging.py:86 +#: core/models/change_logging.py:86 msgid "pre-change data" msgstr "变更前配置" -#: netbox/core/models/change_logging.py:92 +#: core/models/change_logging.py:92 msgid "post-change data" msgstr "变更后配置" -#: netbox/core/models/change_logging.py:106 +#: core/models/change_logging.py:106 msgid "object change" msgstr "变更的对象" -#: netbox/core/models/change_logging.py:107 +#: core/models/change_logging.py:107 msgid "object changes" msgstr "变更的对象" -#: netbox/core/models/change_logging.py:123 +#: core/models/change_logging.py:123 #, python-brace-format msgid "Change logging is not supported for this object type ({type})." msgstr "此对象类型 ({type}) 不支持更改日志记录。" -#: netbox/core/models/config.py:18 netbox/core/models/data.py:266 -#: netbox/core/models/files.py:27 netbox/core/models/jobs.py:49 -#: netbox/extras/models/models.py:730 netbox/extras/models/notifications.py:39 -#: netbox/extras/models/notifications.py:186 -#: netbox/netbox/models/features.py:53 netbox/users/models/tokens.py:32 +#: core/models/config.py:18 core/models/data.py:266 core/models/files.py:27 +#: core/models/jobs.py:49 extras/models/models.py:730 +#: extras/models/notifications.py:39 extras/models/notifications.py:186 +#: netbox/models/features.py:53 users/models/tokens.py:32 msgid "created" msgstr "已创建" -#: netbox/core/models/config.py:22 +#: core/models/config.py:22 msgid "comment" msgstr "评论/注释" -#: netbox/core/models/config.py:29 +#: core/models/config.py:29 msgid "configuration data" msgstr "配置数据" -#: netbox/core/models/config.py:36 +#: core/models/config.py:36 msgid "config revision" msgstr "配置修订" -#: netbox/core/models/config.py:37 +#: core/models/config.py:37 msgid "config revisions" msgstr "配置修订" -#: netbox/core/models/config.py:41 +#: core/models/config.py:41 msgid "Default configuration" msgstr "默认配置" -#: netbox/core/models/config.py:43 +#: core/models/config.py:43 msgid "Current configuration" msgstr "当前配置" -#: netbox/core/models/config.py:44 +#: core/models/config.py:44 #, python-brace-format msgid "Config revision #{id}" msgstr "配置修订#{id}" -#: netbox/core/models/data.py:44 netbox/dcim/models/cables.py:43 -#: netbox/dcim/models/device_component_templates.py:203 -#: netbox/dcim/models/device_component_templates.py:237 -#: netbox/dcim/models/device_component_templates.py:272 -#: netbox/dcim/models/device_component_templates.py:334 -#: netbox/dcim/models/device_component_templates.py:413 -#: netbox/dcim/models/device_component_templates.py:512 -#: netbox/dcim/models/device_component_templates.py:612 -#: netbox/dcim/models/device_components.py:283 -#: netbox/dcim/models/device_components.py:312 -#: netbox/dcim/models/device_components.py:345 -#: netbox/dcim/models/device_components.py:463 -#: netbox/dcim/models/device_components.py:605 -#: netbox/dcim/models/device_components.py:970 -#: netbox/dcim/models/device_components.py:1044 -#: netbox/dcim/models/power.py:102 netbox/extras/models/customfields.py:78 -#: netbox/extras/models/search.py:41 -#: netbox/virtualization/models/clusters.py:61 netbox/vpn/models/l2vpn.py:32 +#: core/models/data.py:44 dcim/models/cables.py:43 +#: dcim/models/device_component_templates.py:203 +#: dcim/models/device_component_templates.py:237 +#: dcim/models/device_component_templates.py:272 +#: dcim/models/device_component_templates.py:334 +#: dcim/models/device_component_templates.py:413 +#: dcim/models/device_component_templates.py:512 +#: dcim/models/device_component_templates.py:612 +#: dcim/models/device_components.py:283 dcim/models/device_components.py:312 +#: dcim/models/device_components.py:345 dcim/models/device_components.py:463 +#: dcim/models/device_components.py:605 dcim/models/device_components.py:970 +#: dcim/models/device_components.py:1044 dcim/models/power.py:102 +#: extras/models/customfields.py:78 extras/models/search.py:41 +#: virtualization/models/clusters.py:61 vpn/models/l2vpn.py:32 msgid "type" msgstr "类型" -#: netbox/core/models/data.py:49 netbox/extras/choices.py:37 -#: netbox/extras/models/models.py:164 netbox/extras/tables/tables.py:656 -#: netbox/templates/core/datasource.html:58 -#: netbox/templates/core/plugin.html:65 +#: core/models/data.py:49 extras/choices.py:37 extras/models/models.py:164 +#: extras/tables/tables.py:656 templates/core/datasource.html:58 +#: templates/core/plugin.html:66 msgid "URL" msgstr "URL" -#: netbox/core/models/data.py:59 -#: netbox/dcim/models/device_component_templates.py:418 -#: netbox/dcim/models/device_components.py:512 -#: netbox/extras/models/models.py:70 netbox/extras/models/models.py:301 -#: netbox/extras/models/models.py:526 netbox/users/models/permissions.py:29 +#: core/models/data.py:59 dcim/models/device_component_templates.py:418 +#: dcim/models/device_components.py:512 extras/models/models.py:70 +#: extras/models/models.py:301 extras/models/models.py:526 +#: users/models/permissions.py:29 msgid "enabled" msgstr "已启用" -#: netbox/core/models/data.py:63 +#: core/models/data.py:63 msgid "ignore rules" msgstr "忽略规则" -#: netbox/core/models/data.py:65 +#: core/models/data.py:65 msgid "Patterns (one per line) matching files to ignore when syncing" msgstr "模式(每行一个)匹配同步时要忽略的文件" -#: netbox/core/models/data.py:68 netbox/extras/models/models.py:534 +#: core/models/data.py:68 extras/models/models.py:534 msgid "parameters" msgstr "参数" -#: netbox/core/models/data.py:73 +#: core/models/data.py:73 msgid "last synced" msgstr "最后同步" -#: netbox/core/models/data.py:81 +#: core/models/data.py:81 msgid "data source" msgstr "数据源" -#: netbox/core/models/data.py:82 +#: core/models/data.py:82 msgid "data sources" msgstr "数据源" -#: netbox/core/models/data.py:122 +#: core/models/data.py:122 #, python-brace-format msgid "Unknown backend type: {type}" msgstr "未知后端类型: {type}" -#: netbox/core/models/data.py:164 +#: core/models/data.py:164 msgid "Cannot initiate sync; syncing already in progress." msgstr "无法启动同步; 同步已在进行中。" -#: netbox/core/models/data.py:177 +#: core/models/data.py:177 msgid "" "There was an error initializing the backend. A dependency needs to be " "installed: " msgstr "初始化后端时出错。 需要安装依赖:" -#: netbox/core/models/data.py:270 netbox/core/models/files.py:31 -#: netbox/netbox/models/features.py:59 +#: core/models/data.py:270 core/models/files.py:31 +#: netbox/models/features.py:59 msgid "last updated" msgstr "最后更新" -#: netbox/core/models/data.py:280 netbox/dcim/models/cables.py:444 +#: core/models/data.py:280 dcim/models/cables.py:444 msgid "path" msgstr "路径" -#: netbox/core/models/data.py:283 +#: core/models/data.py:283 msgid "File path relative to the data source's root" msgstr "相对于数据源根目录的文件路径" -#: netbox/core/models/data.py:287 netbox/ipam/models/ip.py:503 +#: core/models/data.py:287 ipam/models/ip.py:503 msgid "size" msgstr "大小" -#: netbox/core/models/data.py:290 +#: core/models/data.py:290 msgid "hash" msgstr "哈希值" -#: netbox/core/models/data.py:294 +#: core/models/data.py:294 msgid "Length must be 64 hexadecimal characters." msgstr "长度必须为 64 个十六进制字符。" -#: netbox/core/models/data.py:296 +#: core/models/data.py:296 msgid "SHA256 hash of the file data" msgstr "文件数据的 SHA256 哈希值" -#: netbox/core/models/data.py:313 +#: core/models/data.py:313 msgid "data file" msgstr "数据文件" -#: netbox/core/models/data.py:314 +#: core/models/data.py:314 msgid "data files" msgstr "数据文件" -#: netbox/core/models/data.py:401 +#: core/models/data.py:401 msgid "auto sync record" msgstr "自动同步记录" -#: netbox/core/models/data.py:402 +#: core/models/data.py:402 msgid "auto sync records" msgstr "自动同步记录" -#: netbox/core/models/files.py:37 +#: core/models/files.py:37 msgid "file root" msgstr "根目录" -#: netbox/core/models/files.py:42 +#: core/models/files.py:42 msgid "file path" msgstr "文件路径" -#: netbox/core/models/files.py:44 +#: core/models/files.py:44 msgid "File path relative to the designated root path" msgstr "相对于指定根路径的文件路径" -#: netbox/core/models/files.py:61 +#: core/models/files.py:61 msgid "managed file" msgstr "托管文件" -#: netbox/core/models/files.py:62 +#: core/models/files.py:62 msgid "managed files" msgstr "托管文件" -#: netbox/core/models/jobs.py:53 +#: core/models/jobs.py:53 msgid "scheduled" msgstr "计划" -#: netbox/core/models/jobs.py:58 +#: core/models/jobs.py:58 msgid "interval" msgstr "间隔" -#: netbox/core/models/jobs.py:64 +#: core/models/jobs.py:64 msgid "Recurrence interval (in minutes)" msgstr "重复间隔(以分钟为单位)" -#: netbox/core/models/jobs.py:67 +#: core/models/jobs.py:67 msgid "started" msgstr "已经开始" -#: netbox/core/models/jobs.py:72 +#: core/models/jobs.py:72 msgid "completed" msgstr "已经完成" -#: netbox/core/models/jobs.py:90 netbox/extras/models/models.py:101 -#: netbox/extras/models/staging.py:87 +#: core/models/jobs.py:90 extras/models/models.py:101 +#: extras/models/staging.py:87 msgid "data" msgstr "数据" -#: netbox/core/models/jobs.py:95 +#: core/models/jobs.py:95 msgid "error" msgstr "错误" -#: netbox/core/models/jobs.py:100 +#: core/models/jobs.py:100 msgid "job ID" msgstr "任务ID" -#: netbox/core/models/jobs.py:111 +#: core/models/jobs.py:111 msgid "job" msgstr "任务" -#: netbox/core/models/jobs.py:112 +#: core/models/jobs.py:112 msgid "jobs" msgstr "任务" -#: netbox/core/models/jobs.py:135 +#: core/models/jobs.py:135 #, python-brace-format msgid "Jobs cannot be assigned to this object type ({type})." msgstr "任务不能分配给此对象类型 ({type})" -#: netbox/core/models/jobs.py:185 +#: core/models/jobs.py:185 #, python-brace-format msgid "Invalid status for job termination. Choices are: {choices}" msgstr "作业终止状态无效。选项有:{choices}" -#: netbox/core/models/jobs.py:216 +#: core/models/jobs.py:216 msgid "" "enqueue() cannot be called with values for both schedule_at and immediate." msgstr "不能使用 schedule_at 和 immediate 的值调用 enqueue ()。" -#: netbox/core/signals.py:126 +#: core/signals.py:126 #, python-brace-format msgid "Deletion is prevented by a protection rule: {message}" msgstr "保护规则阻止删除: {message}" -#: netbox/core/tables/change_logging.py:25 -#: netbox/templates/account/profile.html:19 -#: netbox/templates/users/user.html:21 +#: core/tables/change_logging.py:25 templates/account/profile.html:19 +#: templates/users/user.html:21 msgid "Full Name" msgstr "全名" -#: netbox/core/tables/change_logging.py:37 netbox/core/tables/jobs.py:21 -#: netbox/extras/choices.py:41 netbox/extras/tables/tables.py:279 -#: netbox/extras/tables/tables.py:297 netbox/extras/tables/tables.py:329 -#: netbox/extras/tables/tables.py:409 netbox/extras/tables/tables.py:470 -#: netbox/extras/tables/tables.py:576 netbox/extras/tables/tables.py:616 -#: netbox/extras/tables/tables.py:653 netbox/netbox/tables/tables.py:244 -#: netbox/templates/core/objectchange.html:58 -#: netbox/templates/extras/eventrule.html:78 -#: netbox/templates/extras/journalentry.html:18 -#: netbox/tenancy/tables/contacts.py:93 netbox/vpn/tables/l2vpn.py:64 +#: core/tables/change_logging.py:37 core/tables/jobs.py:21 +#: extras/choices.py:41 extras/tables/tables.py:279 +#: extras/tables/tables.py:297 extras/tables/tables.py:329 +#: extras/tables/tables.py:409 extras/tables/tables.py:470 +#: extras/tables/tables.py:576 extras/tables/tables.py:616 +#: extras/tables/tables.py:653 netbox/tables/tables.py:244 +#: templates/core/objectchange.html:58 templates/extras/eventrule.html:78 +#: templates/extras/journalentry.html:18 tenancy/tables/contacts.py:93 +#: vpn/tables/l2vpn.py:64 msgid "Object" msgstr "对象" -#: netbox/core/tables/change_logging.py:42 -#: netbox/templates/core/objectchange.html:68 +#: core/tables/change_logging.py:42 templates/core/objectchange.html:68 msgid "Request ID" msgstr "请求ID" -#: netbox/core/tables/config.py:21 netbox/users/forms/filtersets.py:44 -#: netbox/users/tables.py:39 +#: core/tables/config.py:21 users/forms/filtersets.py:44 users/tables.py:39 msgid "Is Active" msgstr "激活的" -#: netbox/core/tables/data.py:50 netbox/templates/core/datafile.html:31 +#: core/tables/data.py:50 templates/core/datafile.html:31 msgid "Path" msgstr "路径" -#: netbox/core/tables/data.py:54 -#: netbox/templates/extras/inc/result_pending.html:7 +#: core/tables/data.py:54 templates/extras/inc/result_pending.html:7 msgid "Last updated" msgstr "最后更新日期" -#: netbox/core/tables/jobs.py:10 netbox/core/tables/tasks.py:76 -#: netbox/dcim/tables/devicetypes.py:164 netbox/extras/tables/tables.py:216 -#: netbox/extras/tables/tables.py:460 netbox/netbox/tables/tables.py:189 -#: netbox/templates/dcim/virtualchassis_edit.html:52 -#: netbox/utilities/forms/forms.py:73 -#: netbox/wireless/tables/wirelesslink.py:17 +#: core/tables/jobs.py:10 core/tables/tasks.py:76 +#: dcim/tables/devicetypes.py:164 extras/tables/tables.py:216 +#: extras/tables/tables.py:460 netbox/tables/tables.py:189 +#: templates/dcim/virtualchassis_edit.html:52 utilities/forms/forms.py:73 +#: wireless/tables/wirelesslink.py:17 msgid "ID" msgstr "ID" -#: netbox/core/tables/jobs.py:35 +#: core/tables/jobs.py:35 msgid "Interval" msgstr "间隔" -#: netbox/core/tables/plugins.py:14 netbox/templates/vpn/ipsecprofile.html:44 -#: netbox/vpn/forms/bulk_edit.py:141 netbox/vpn/forms/bulk_import.py:172 -#: netbox/vpn/tables/crypto.py:61 +#: core/tables/plugins.py:14 templates/vpn/ipsecprofile.html:44 +#: vpn/forms/bulk_edit.py:141 vpn/forms/bulk_import.py:172 +#: vpn/tables/crypto.py:61 msgid "Version" msgstr "版本" -#: netbox/core/tables/plugins.py:19 netbox/templates/core/datafile.html:38 +#: core/tables/plugins.py:19 templates/core/datafile.html:38 msgid "Last Updated" msgstr "最后更新" -#: netbox/core/tables/plugins.py:23 +#: core/tables/plugins.py:23 msgid "Minimum NetBox Version" msgstr "Netbox 最低版本" -#: netbox/core/tables/plugins.py:27 +#: core/tables/plugins.py:27 msgid "Maximum NetBox Version" msgstr "Netbox 最高版本" -#: netbox/core/tables/plugins.py:31 netbox/core/tables/plugins.py:74 +#: core/tables/plugins.py:31 core/tables/plugins.py:74 msgid "No plugin data found" msgstr "未找到插件数据" -#: netbox/core/tables/plugins.py:48 netbox/templates/core/plugin.html:61 +#: core/tables/plugins.py:48 templates/core/plugin.html:62 msgid "Author" msgstr "作者" -#: netbox/core/tables/plugins.py:54 +#: core/tables/plugins.py:54 msgid "Installed" msgstr "已安装" -#: netbox/core/tables/plugins.py:57 netbox/templates/core/plugin.html:83 +#: core/tables/plugins.py:57 templates/core/plugin.html:84 msgid "Certified" msgstr "已认证" -#: netbox/core/tables/plugins.py:60 +#: core/tables/plugins.py:60 msgid "Published" msgstr "已出版" -#: netbox/core/tables/plugins.py:66 +#: core/tables/plugins.py:66 msgid "Installed Version" msgstr "已安装的版本" -#: netbox/core/tables/plugins.py:70 +#: core/tables/plugins.py:70 msgid "Latest Version" msgstr "最新版本" -#: netbox/core/tables/tasks.py:18 +#: core/tables/tasks.py:18 msgid "Oldest Task" msgstr "最早的任务" -#: netbox/core/tables/tasks.py:42 netbox/templates/core/rq_worker_list.html:39 +#: core/tables/tasks.py:42 templates/core/rq_worker_list.html:39 msgid "Workers" msgstr "Workers" -#: netbox/core/tables/tasks.py:46 netbox/vpn/tables/tunnels.py:88 +#: core/tables/tasks.py:46 vpn/tables/tunnels.py:88 msgid "Host" msgstr "主机" -#: netbox/core/tables/tasks.py:50 netbox/ipam/forms/filtersets.py:535 +#: core/tables/tasks.py:50 ipam/forms/filtersets.py:535 msgid "Port" msgstr "端口" -#: netbox/core/tables/tasks.py:54 +#: core/tables/tasks.py:54 msgid "DB" msgstr "数据库" -#: netbox/core/tables/tasks.py:58 +#: core/tables/tasks.py:58 msgid "Scheduler PID" msgstr "定时任务进程 PID" -#: netbox/core/tables/tasks.py:62 +#: core/tables/tasks.py:62 msgid "No queues found" msgstr "未找到队列" -#: netbox/core/tables/tasks.py:82 +#: core/tables/tasks.py:82 msgid "Enqueued" msgstr "已加入队列" -#: netbox/core/tables/tasks.py:85 +#: core/tables/tasks.py:85 msgid "Ended" msgstr "已完结" -#: netbox/core/tables/tasks.py:93 netbox/templates/core/rq_task.html:85 +#: core/tables/tasks.py:93 templates/core/rq_task.html:85 msgid "Callable" msgstr "可调用" -#: netbox/core/tables/tasks.py:97 +#: core/tables/tasks.py:97 msgid "No tasks found" msgstr "没有找到任务" -#: netbox/core/tables/tasks.py:118 netbox/templates/core/rq_worker.html:47 +#: core/tables/tasks.py:118 templates/core/rq_worker.html:47 msgid "State" msgstr "状态" -#: netbox/core/tables/tasks.py:121 netbox/templates/core/rq_worker.html:51 +#: core/tables/tasks.py:121 templates/core/rq_worker.html:51 msgid "Birth" msgstr "生成日期" -#: netbox/core/tables/tasks.py:124 netbox/templates/core/rq_worker.html:59 +#: core/tables/tasks.py:124 templates/core/rq_worker.html:59 msgid "PID" msgstr "PID" -#: netbox/core/tables/tasks.py:128 +#: core/tables/tasks.py:128 msgid "No workers found" msgstr "没有找到workers" -#: netbox/core/views.py:90 +#: core/views.py:90 #, python-brace-format msgid "Queued job #{id} to sync {datasource}" msgstr "已排队的作业 #{id} 同步 {datasource}" -#: netbox/core/views.py:319 +#: core/views.py:319 #, python-brace-format msgid "Restored configuration revision #{id}" msgstr "已恢复配置修订版 #{id}" -#: netbox/core/views.py:412 netbox/core/views.py:455 netbox/core/views.py:531 +#: core/views.py:412 core/views.py:455 core/views.py:531 #, python-brace-format msgid "Job {job_id} not found" msgstr "任务{job_id} 未发现" -#: netbox/core/views.py:463 +#: core/views.py:463 #, python-brace-format msgid "Job {id} has been deleted." msgstr "工作 {id} 已被删除。" -#: netbox/core/views.py:465 +#: core/views.py:465 #, python-brace-format msgid "Error deleting job {id}: {error}" msgstr "删除任务时出错 {id}: {error}" -#: netbox/core/views.py:478 netbox/core/views.py:496 +#: core/views.py:478 core/views.py:496 #, python-brace-format msgid "Job {id} not found." msgstr "工作 {id} 未找到。" -#: netbox/core/views.py:484 +#: core/views.py:484 #, python-brace-format msgid "Job {id} has been re-enqueued." msgstr "工作 {id} 已重新排队。" -#: netbox/core/views.py:519 +#: core/views.py:519 #, python-brace-format msgid "Job {id} has been enqueued." msgstr "工作 {id} 已被排队。" -#: netbox/core/views.py:538 +#: core/views.py:538 #, python-brace-format msgid "Job {id} has been stopped." msgstr "工作 {id} 已停止。" -#: netbox/core/views.py:540 +#: core/views.py:540 #, python-brace-format msgid "Failed to stop job {id}" msgstr "无法停止作业 {id}" -#: netbox/core/views.py:678 +#: core/views.py:678 msgid "Plugins catalog could not be loaded" msgstr "无法加载插件目录" -#: netbox/core/views.py:712 +#: core/views.py:712 #, python-brace-format msgid "Plugin {name} not found" msgstr "插件 {name} 未找到" -#: netbox/dcim/api/serializers_/devices.py:49 -#: netbox/dcim/api/serializers_/devicetypes.py:25 +#: dcim/api/serializers_/devices.py:49 dcim/api/serializers_/devicetypes.py:25 msgid "Position (U)" msgstr "具体U位" -#: netbox/dcim/api/serializers_/racks.py:112 -#: netbox/templates/dcim/rack.html:28 +#: dcim/api/serializers_/racks.py:112 templates/dcim/rack.html:28 msgid "Facility ID" msgstr "标识符ID" -#: netbox/dcim/choices.py:21 netbox/virtualization/choices.py:21 +#: dcim/choices.py:21 virtualization/choices.py:21 msgid "Staging" msgstr "暂存" -#: netbox/dcim/choices.py:23 netbox/dcim/choices.py:189 -#: netbox/dcim/choices.py:240 netbox/dcim/choices.py:1531 -#: netbox/virtualization/choices.py:23 netbox/virtualization/choices.py:48 +#: dcim/choices.py:23 dcim/choices.py:189 dcim/choices.py:240 +#: dcim/choices.py:1531 virtualization/choices.py:23 +#: virtualization/choices.py:48 msgid "Decommissioning" msgstr "报废" -#: netbox/dcim/choices.py:24 +#: dcim/choices.py:24 msgid "Retired" msgstr "下架" -#: netbox/dcim/choices.py:65 +#: dcim/choices.py:65 msgid "2-post frame" msgstr "双立柱机架" -#: netbox/dcim/choices.py:66 +#: dcim/choices.py:66 msgid "4-post frame" msgstr "4立柱机架" -#: netbox/dcim/choices.py:67 +#: dcim/choices.py:67 msgid "4-post cabinet" msgstr "4立柱机柜" -#: netbox/dcim/choices.py:68 +#: dcim/choices.py:68 msgid "Wall-mounted frame" msgstr "壁挂式机架" -#: netbox/dcim/choices.py:69 +#: dcim/choices.py:69 msgid "Wall-mounted frame (vertical)" msgstr "壁挂式机架(竖式)" -#: netbox/dcim/choices.py:70 +#: dcim/choices.py:70 msgid "Wall-mounted cabinet" msgstr "壁挂式机柜" -#: netbox/dcim/choices.py:71 +#: dcim/choices.py:71 msgid "Wall-mounted cabinet (vertical)" msgstr "壁挂式机柜(立式)" -#: netbox/dcim/choices.py:83 netbox/dcim/choices.py:84 -#: netbox/dcim/choices.py:85 netbox/dcim/choices.py:86 +#: dcim/choices.py:83 dcim/choices.py:84 dcim/choices.py:85 dcim/choices.py:86 #, python-brace-format msgid "{n} inches" msgstr "{n} 英寸" -#: netbox/dcim/choices.py:100 netbox/ipam/choices.py:32 -#: netbox/ipam/choices.py:50 netbox/ipam/choices.py:70 -#: netbox/ipam/choices.py:155 netbox/wireless/choices.py:26 +#: dcim/choices.py:100 ipam/choices.py:32 ipam/choices.py:50 +#: ipam/choices.py:70 ipam/choices.py:155 wireless/choices.py:26 msgid "Reserved" msgstr "预留" -#: netbox/dcim/choices.py:101 netbox/templates/dcim/device.html:259 +#: dcim/choices.py:101 templates/dcim/device.html:259 msgid "Available" msgstr "可用" -#: netbox/dcim/choices.py:104 netbox/ipam/choices.py:33 -#: netbox/ipam/choices.py:51 netbox/ipam/choices.py:71 -#: netbox/ipam/choices.py:156 netbox/wireless/choices.py:28 +#: dcim/choices.py:104 ipam/choices.py:33 ipam/choices.py:51 +#: ipam/choices.py:71 ipam/choices.py:156 wireless/choices.py:28 msgid "Deprecated" msgstr "已弃用" -#: netbox/dcim/choices.py:114 -#: netbox/templates/dcim/inc/panels/racktype_dimensions.html:41 +#: dcim/choices.py:114 templates/dcim/inc/panels/racktype_dimensions.html:41 msgid "Millimeters" msgstr "毫米" -#: netbox/dcim/choices.py:115 netbox/dcim/choices.py:1553 +#: dcim/choices.py:115 dcim/choices.py:1553 msgid "Inches" msgstr "英寸" -#: netbox/dcim/choices.py:136 netbox/dcim/choices.py:207 -#: netbox/dcim/choices.py:254 +#: dcim/choices.py:136 dcim/choices.py:207 dcim/choices.py:254 msgid "Front to rear" msgstr "从前向后" -#: netbox/dcim/choices.py:137 netbox/dcim/choices.py:208 -#: netbox/dcim/choices.py:255 +#: dcim/choices.py:137 dcim/choices.py:208 dcim/choices.py:255 msgid "Rear to front" msgstr "从后向前" -#: netbox/dcim/choices.py:151 netbox/dcim/forms/bulk_edit.py:68 -#: netbox/dcim/forms/bulk_edit.py:87 netbox/dcim/forms/bulk_edit.py:173 -#: netbox/dcim/forms/bulk_edit.py:1405 netbox/dcim/forms/bulk_import.py:60 -#: netbox/dcim/forms/bulk_import.py:74 netbox/dcim/forms/bulk_import.py:137 -#: netbox/dcim/forms/bulk_import.py:566 netbox/dcim/forms/bulk_import.py:833 -#: netbox/dcim/forms/bulk_import.py:1088 netbox/dcim/forms/filtersets.py:234 -#: netbox/dcim/forms/model_forms.py:74 netbox/dcim/forms/model_forms.py:93 -#: netbox/dcim/forms/model_forms.py:170 netbox/dcim/forms/model_forms.py:1062 -#: netbox/dcim/forms/model_forms.py:1502 -#: netbox/dcim/forms/object_import.py:176 netbox/dcim/tables/devices.py:656 -#: netbox/dcim/tables/devices.py:869 netbox/dcim/tables/devices.py:954 -#: netbox/extras/tables/tables.py:223 netbox/ipam/tables/fhrp.py:59 -#: netbox/ipam/tables/ip.py:378 netbox/ipam/tables/services.py:44 -#: netbox/templates/dcim/interface.html:102 -#: netbox/templates/dcim/interface.html:309 -#: netbox/templates/dcim/location.html:41 netbox/templates/dcim/region.html:37 -#: netbox/templates/dcim/sitegroup.html:37 -#: netbox/templates/ipam/service.html:28 -#: netbox/templates/tenancy/contactgroup.html:29 -#: netbox/templates/tenancy/tenantgroup.html:37 -#: netbox/templates/virtualization/vminterface.html:39 -#: netbox/templates/wireless/wirelesslangroup.html:37 -#: netbox/tenancy/forms/bulk_edit.py:27 netbox/tenancy/forms/bulk_edit.py:61 -#: netbox/tenancy/forms/bulk_import.py:24 -#: netbox/tenancy/forms/bulk_import.py:58 -#: netbox/tenancy/forms/model_forms.py:25 -#: netbox/tenancy/forms/model_forms.py:68 -#: netbox/virtualization/forms/bulk_edit.py:207 -#: netbox/virtualization/forms/bulk_import.py:151 -#: netbox/virtualization/tables/virtualmachines.py:162 -#: netbox/wireless/forms/bulk_edit.py:24 -#: netbox/wireless/forms/bulk_import.py:21 -#: netbox/wireless/forms/model_forms.py:21 +#: dcim/choices.py:151 dcim/forms/bulk_edit.py:68 dcim/forms/bulk_edit.py:87 +#: dcim/forms/bulk_edit.py:173 dcim/forms/bulk_edit.py:1405 +#: dcim/forms/bulk_import.py:60 dcim/forms/bulk_import.py:74 +#: dcim/forms/bulk_import.py:137 dcim/forms/bulk_import.py:566 +#: dcim/forms/bulk_import.py:833 dcim/forms/bulk_import.py:1088 +#: dcim/forms/filtersets.py:234 dcim/forms/model_forms.py:74 +#: dcim/forms/model_forms.py:93 dcim/forms/model_forms.py:170 +#: dcim/forms/model_forms.py:1062 dcim/forms/model_forms.py:1502 +#: dcim/forms/object_import.py:176 dcim/tables/devices.py:656 +#: dcim/tables/devices.py:869 dcim/tables/devices.py:954 +#: extras/tables/tables.py:223 ipam/tables/fhrp.py:59 ipam/tables/ip.py:378 +#: ipam/tables/services.py:44 templates/dcim/interface.html:102 +#: templates/dcim/interface.html:309 templates/dcim/location.html:41 +#: templates/dcim/region.html:37 templates/dcim/sitegroup.html:37 +#: templates/ipam/service.html:28 templates/tenancy/contactgroup.html:29 +#: templates/tenancy/tenantgroup.html:37 +#: templates/virtualization/vminterface.html:39 +#: templates/wireless/wirelesslangroup.html:37 tenancy/forms/bulk_edit.py:27 +#: tenancy/forms/bulk_edit.py:61 tenancy/forms/bulk_import.py:24 +#: tenancy/forms/bulk_import.py:58 tenancy/forms/model_forms.py:25 +#: tenancy/forms/model_forms.py:68 virtualization/forms/bulk_edit.py:207 +#: virtualization/forms/bulk_import.py:151 +#: virtualization/tables/virtualmachines.py:162 wireless/forms/bulk_edit.py:24 +#: wireless/forms/bulk_import.py:21 wireless/forms/model_forms.py:21 msgid "Parent" msgstr "上级" -#: netbox/dcim/choices.py:152 +#: dcim/choices.py:152 msgid "Child" msgstr "子类" -#: netbox/dcim/choices.py:166 netbox/templates/dcim/device.html:340 -#: netbox/templates/dcim/rack.html:133 -#: netbox/templates/dcim/rack_elevation_list.html:20 -#: netbox/templates/dcim/rackreservation.html:76 +#: dcim/choices.py:166 templates/dcim/device.html:340 +#: templates/dcim/rack.html:133 templates/dcim/rack_elevation_list.html:20 +#: templates/dcim/rackreservation.html:76 msgid "Front" msgstr "前" -#: netbox/dcim/choices.py:167 netbox/templates/dcim/device.html:346 -#: netbox/templates/dcim/rack.html:139 -#: netbox/templates/dcim/rack_elevation_list.html:21 -#: netbox/templates/dcim/rackreservation.html:82 +#: dcim/choices.py:167 templates/dcim/device.html:346 +#: templates/dcim/rack.html:139 templates/dcim/rack_elevation_list.html:21 +#: templates/dcim/rackreservation.html:82 msgid "Rear" msgstr "后" -#: netbox/dcim/choices.py:186 netbox/dcim/choices.py:238 -#: netbox/virtualization/choices.py:46 +#: dcim/choices.py:186 dcim/choices.py:238 virtualization/choices.py:46 msgid "Staged" msgstr "已暂存" -#: netbox/dcim/choices.py:188 +#: dcim/choices.py:188 msgid "Inventory" msgstr "库存中" -#: netbox/dcim/choices.py:209 netbox/dcim/choices.py:256 +#: dcim/choices.py:209 dcim/choices.py:256 msgid "Left to right" msgstr "从左向右" -#: netbox/dcim/choices.py:210 netbox/dcim/choices.py:257 +#: dcim/choices.py:210 dcim/choices.py:257 msgid "Right to left" msgstr "从右向左" -#: netbox/dcim/choices.py:211 netbox/dcim/choices.py:258 +#: dcim/choices.py:211 dcim/choices.py:258 msgid "Side to rear" msgstr "侧进风后出风" -#: netbox/dcim/choices.py:212 +#: dcim/choices.py:212 msgid "Rear to side" msgstr "从后到边" -#: netbox/dcim/choices.py:213 +#: dcim/choices.py:213 msgid "Bottom to top" msgstr "自下而上" -#: netbox/dcim/choices.py:214 +#: dcim/choices.py:214 msgid "Top to bottom" msgstr "从上到下" -#: netbox/dcim/choices.py:215 netbox/dcim/choices.py:259 -#: netbox/dcim/choices.py:1303 +#: dcim/choices.py:215 dcim/choices.py:259 dcim/choices.py:1303 msgid "Passive" msgstr "被动" -#: netbox/dcim/choices.py:216 +#: dcim/choices.py:216 msgid "Mixed" msgstr "混合风道" -#: netbox/dcim/choices.py:484 netbox/dcim/choices.py:733 +#: dcim/choices.py:484 dcim/choices.py:733 msgid "NEMA (Non-locking)" msgstr "NEMA(非锁定)" -#: netbox/dcim/choices.py:506 netbox/dcim/choices.py:755 +#: dcim/choices.py:506 dcim/choices.py:755 msgid "NEMA (Locking)" msgstr "NEMA(锁定)" -#: netbox/dcim/choices.py:530 netbox/dcim/choices.py:779 +#: dcim/choices.py:530 dcim/choices.py:779 msgid "California Style" msgstr "美标" -#: netbox/dcim/choices.py:538 +#: dcim/choices.py:538 msgid "International/ITA" msgstr "国际通用标准/ITA" -#: netbox/dcim/choices.py:573 netbox/dcim/choices.py:814 +#: dcim/choices.py:573 dcim/choices.py:814 msgid "Proprietary" msgstr "专用规格" -#: netbox/dcim/choices.py:581 netbox/dcim/choices.py:824 -#: netbox/dcim/choices.py:1219 netbox/dcim/choices.py:1221 -#: netbox/dcim/choices.py:1447 netbox/dcim/choices.py:1449 -#: netbox/netbox/navigation/menu.py:200 +#: dcim/choices.py:581 dcim/choices.py:824 dcim/choices.py:1219 +#: dcim/choices.py:1221 dcim/choices.py:1447 dcim/choices.py:1449 +#: netbox/navigation/menu.py:200 msgid "Other" msgstr "其他" -#: netbox/dcim/choices.py:787 +#: dcim/choices.py:787 msgid "ITA/International" msgstr "ITA/国际通用标准" -#: netbox/dcim/choices.py:854 +#: dcim/choices.py:854 msgid "Physical" msgstr "物理" -#: netbox/dcim/choices.py:855 netbox/dcim/choices.py:1023 +#: dcim/choices.py:855 dcim/choices.py:1023 msgid "Virtual" msgstr "虚拟" -#: netbox/dcim/choices.py:856 netbox/dcim/choices.py:1097 -#: netbox/dcim/forms/bulk_edit.py:1515 netbox/dcim/forms/filtersets.py:1330 -#: netbox/dcim/forms/model_forms.py:988 netbox/dcim/forms/model_forms.py:1397 -#: netbox/netbox/navigation/menu.py:140 netbox/netbox/navigation/menu.py:144 -#: netbox/templates/dcim/interface.html:210 +#: dcim/choices.py:856 dcim/choices.py:1097 dcim/forms/bulk_edit.py:1515 +#: dcim/forms/filtersets.py:1330 dcim/forms/model_forms.py:988 +#: dcim/forms/model_forms.py:1397 netbox/navigation/menu.py:140 +#: netbox/navigation/menu.py:144 templates/dcim/interface.html:210 msgid "Wireless" msgstr "无线" -#: netbox/dcim/choices.py:1021 +#: dcim/choices.py:1021 msgid "Virtual interfaces" msgstr "虚拟接口" -#: netbox/dcim/choices.py:1024 netbox/dcim/forms/bulk_edit.py:1410 -#: netbox/dcim/forms/bulk_import.py:840 netbox/dcim/forms/model_forms.py:974 -#: netbox/dcim/tables/devices.py:660 netbox/templates/dcim/interface.html:106 -#: netbox/templates/virtualization/vminterface.html:43 -#: netbox/virtualization/forms/bulk_edit.py:212 -#: netbox/virtualization/forms/bulk_import.py:158 -#: netbox/virtualization/tables/virtualmachines.py:166 +#: dcim/choices.py:1024 dcim/forms/bulk_edit.py:1410 +#: dcim/forms/bulk_import.py:840 dcim/forms/model_forms.py:974 +#: dcim/tables/devices.py:660 templates/dcim/interface.html:106 +#: templates/virtualization/vminterface.html:43 +#: virtualization/forms/bulk_edit.py:212 +#: virtualization/forms/bulk_import.py:158 +#: virtualization/tables/virtualmachines.py:166 msgid "Bridge" msgstr "桥接" -#: netbox/dcim/choices.py:1025 +#: dcim/choices.py:1025 msgid "Link Aggregation Group (LAG)" msgstr "链路聚合组(LAG)" -#: netbox/dcim/choices.py:1029 +#: dcim/choices.py:1029 msgid "Ethernet (fixed)" msgstr "以太网(固定类型)" -#: netbox/dcim/choices.py:1044 +#: dcim/choices.py:1044 msgid "Ethernet (modular)" msgstr "以太网(模块)" -#: netbox/dcim/choices.py:1081 +#: dcim/choices.py:1081 msgid "Ethernet (backplane)" msgstr "以太网(背板)" -#: netbox/dcim/choices.py:1113 +#: dcim/choices.py:1113 msgid "Cellular" msgstr "蜂窝网络" -#: netbox/dcim/choices.py:1165 netbox/dcim/forms/filtersets.py:383 -#: netbox/dcim/forms/filtersets.py:809 netbox/dcim/forms/filtersets.py:963 -#: netbox/dcim/forms/filtersets.py:1542 -#: netbox/templates/dcim/inventoryitem.html:52 -#: netbox/templates/dcim/virtualchassis_edit.html:54 +#: dcim/choices.py:1165 dcim/forms/filtersets.py:383 +#: dcim/forms/filtersets.py:809 dcim/forms/filtersets.py:963 +#: dcim/forms/filtersets.py:1542 templates/dcim/inventoryitem.html:52 +#: templates/dcim/virtualchassis_edit.html:54 msgid "Serial" msgstr "串口" -#: netbox/dcim/choices.py:1180 +#: dcim/choices.py:1180 msgid "Coaxial" msgstr "同轴电缆接口" -#: netbox/dcim/choices.py:1200 +#: dcim/choices.py:1200 msgid "Stacking" msgstr "堆叠" -#: netbox/dcim/choices.py:1250 +#: dcim/choices.py:1250 msgid "Half" msgstr "半双工" -#: netbox/dcim/choices.py:1251 +#: dcim/choices.py:1251 msgid "Full" msgstr "全双工" -#: netbox/dcim/choices.py:1252 netbox/netbox/preferences.py:31 -#: netbox/wireless/choices.py:480 +#: dcim/choices.py:1252 netbox/preferences.py:31 wireless/choices.py:480 msgid "Auto" msgstr "自动" -#: netbox/dcim/choices.py:1263 +#: dcim/choices.py:1263 msgid "Access" msgstr "接入" -#: netbox/dcim/choices.py:1264 netbox/ipam/tables/vlans.py:172 -#: netbox/ipam/tables/vlans.py:217 -#: netbox/templates/dcim/inc/interface_vlans_table.html:7 +#: dcim/choices.py:1264 ipam/tables/vlans.py:172 ipam/tables/vlans.py:217 +#: templates/dcim/inc/interface_vlans_table.html:7 msgid "Tagged" msgstr "Trunk口" -#: netbox/dcim/choices.py:1265 +#: dcim/choices.py:1265 msgid "Tagged (All)" msgstr "Trunk口(允许所有VLAN)" -#: netbox/dcim/choices.py:1294 +#: dcim/choices.py:1294 msgid "IEEE Standard" msgstr "IEEE标准" -#: netbox/dcim/choices.py:1305 +#: dcim/choices.py:1305 msgid "Passive 24V (2-pair)" msgstr "24V(2对供电)" -#: netbox/dcim/choices.py:1306 +#: dcim/choices.py:1306 msgid "Passive 24V (4-pair)" msgstr "24V(4对供电)" -#: netbox/dcim/choices.py:1307 +#: dcim/choices.py:1307 msgid "Passive 48V (2-pair)" msgstr "48V(2对供电)" -#: netbox/dcim/choices.py:1308 +#: dcim/choices.py:1308 msgid "Passive 48V (4-pair)" msgstr "48V(4对供电)" -#: netbox/dcim/choices.py:1378 netbox/dcim/choices.py:1488 +#: dcim/choices.py:1378 dcim/choices.py:1488 msgid "Copper" msgstr "铜缆" -#: netbox/dcim/choices.py:1401 +#: dcim/choices.py:1401 msgid "Fiber Optic" msgstr "光纤" -#: netbox/dcim/choices.py:1434 netbox/dcim/choices.py:1517 +#: dcim/choices.py:1434 dcim/choices.py:1517 msgid "USB" msgstr "USB" -#: netbox/dcim/choices.py:1504 +#: dcim/choices.py:1504 msgid "Fiber" msgstr "光纤" -#: netbox/dcim/choices.py:1529 netbox/dcim/forms/filtersets.py:1227 +#: dcim/choices.py:1529 dcim/forms/filtersets.py:1227 msgid "Connected" msgstr "已连接" -#: netbox/dcim/choices.py:1548 netbox/wireless/choices.py:497 +#: dcim/choices.py:1548 wireless/choices.py:497 msgid "Kilometers" msgstr "公里" -#: netbox/dcim/choices.py:1549 netbox/templates/dcim/cable_trace.html:65 -#: netbox/wireless/choices.py:498 +#: dcim/choices.py:1549 templates/dcim/cable_trace.html:65 +#: wireless/choices.py:498 msgid "Meters" msgstr "米" -#: netbox/dcim/choices.py:1550 +#: dcim/choices.py:1550 msgid "Centimeters" msgstr "厘米" -#: netbox/dcim/choices.py:1551 netbox/wireless/choices.py:499 +#: dcim/choices.py:1551 wireless/choices.py:499 msgid "Miles" msgstr "英里" -#: netbox/dcim/choices.py:1552 netbox/templates/dcim/cable_trace.html:66 -#: netbox/wireless/choices.py:500 +#: dcim/choices.py:1552 templates/dcim/cable_trace.html:66 +#: wireless/choices.py:500 msgid "Feet" msgstr "英尺" -#: netbox/dcim/choices.py:1568 netbox/templates/dcim/device.html:327 -#: netbox/templates/dcim/rack.html:107 +#: dcim/choices.py:1568 templates/dcim/device.html:327 +#: templates/dcim/rack.html:107 msgid "Kilograms" msgstr "千克" -#: netbox/dcim/choices.py:1569 +#: dcim/choices.py:1569 msgid "Grams" msgstr "克" -#: netbox/dcim/choices.py:1570 netbox/templates/dcim/device.html:328 -#: netbox/templates/dcim/rack.html:108 +#: dcim/choices.py:1570 templates/dcim/device.html:328 +#: templates/dcim/rack.html:108 msgid "Pounds" msgstr "磅" -#: netbox/dcim/choices.py:1571 +#: dcim/choices.py:1571 msgid "Ounces" msgstr "盎司" -#: netbox/dcim/choices.py:1618 +#: dcim/choices.py:1618 msgid "Redundant" msgstr "冗余" -#: netbox/dcim/choices.py:1639 +#: dcim/choices.py:1639 msgid "Single phase" msgstr "单相电" -#: netbox/dcim/choices.py:1640 +#: dcim/choices.py:1640 msgid "Three-phase" msgstr "三相" -#: netbox/dcim/fields.py:45 +#: dcim/fields.py:45 #, python-brace-format msgid "Invalid MAC address format: {value}" msgstr "MAC地址格式无效:{value}" -#: netbox/dcim/fields.py:71 +#: dcim/fields.py:71 #, python-brace-format msgid "Invalid WWN format: {value}" msgstr "WWN格式无效:{value}" -#: netbox/dcim/filtersets.py:86 +#: dcim/filtersets.py:86 msgid "Parent region (ID)" msgstr "上一级地区(ID)" -#: netbox/dcim/filtersets.py:92 +#: dcim/filtersets.py:92 msgid "Parent region (slug)" msgstr "上一级地区(缩写)" -#: netbox/dcim/filtersets.py:116 +#: dcim/filtersets.py:116 msgid "Parent site group (ID)" msgstr "上一级站点组(ID)" -#: netbox/dcim/filtersets.py:122 +#: dcim/filtersets.py:122 msgid "Parent site group (slug)" msgstr "上一级站点组(缩写)" -#: netbox/dcim/filtersets.py:164 netbox/extras/filtersets.py:364 -#: netbox/ipam/filtersets.py:841 netbox/ipam/filtersets.py:993 +#: dcim/filtersets.py:164 extras/filtersets.py:364 ipam/filtersets.py:841 +#: ipam/filtersets.py:993 msgid "Group (ID)" msgstr "组(ID)" -#: netbox/dcim/filtersets.py:170 +#: dcim/filtersets.py:170 msgid "Group (slug)" msgstr "组(缩写)" -#: netbox/dcim/filtersets.py:176 netbox/dcim/filtersets.py:181 +#: dcim/filtersets.py:176 dcim/filtersets.py:181 msgid "AS (ID)" msgstr "AS (ID)" -#: netbox/dcim/filtersets.py:246 +#: dcim/filtersets.py:246 msgid "Parent location (ID)" msgstr "父级位置(ID)" -#: netbox/dcim/filtersets.py:252 +#: dcim/filtersets.py:252 msgid "Parent location (slug)" msgstr "父级位置(缩写)" -#: netbox/dcim/filtersets.py:258 netbox/dcim/filtersets.py:369 -#: netbox/dcim/filtersets.py:490 netbox/dcim/filtersets.py:1057 -#: netbox/dcim/filtersets.py:1404 netbox/dcim/filtersets.py:2182 +#: dcim/filtersets.py:258 dcim/filtersets.py:369 dcim/filtersets.py:490 +#: dcim/filtersets.py:1057 dcim/filtersets.py:1404 dcim/filtersets.py:2182 msgid "Location (ID)" msgstr "位置(ID)" -#: netbox/dcim/filtersets.py:265 netbox/dcim/filtersets.py:376 -#: netbox/dcim/filtersets.py:497 netbox/dcim/filtersets.py:1410 -#: netbox/extras/filtersets.py:542 +#: dcim/filtersets.py:265 dcim/filtersets.py:376 dcim/filtersets.py:497 +#: dcim/filtersets.py:1410 extras/filtersets.py:542 msgid "Location (slug)" msgstr "位置(缩写)" -#: netbox/dcim/filtersets.py:296 netbox/dcim/filtersets.py:381 -#: netbox/dcim/filtersets.py:539 netbox/dcim/filtersets.py:678 -#: netbox/dcim/filtersets.py:882 netbox/dcim/filtersets.py:933 -#: netbox/dcim/filtersets.py:973 netbox/dcim/filtersets.py:1306 -#: netbox/dcim/filtersets.py:1840 +#: dcim/filtersets.py:296 dcim/filtersets.py:381 dcim/filtersets.py:539 +#: dcim/filtersets.py:678 dcim/filtersets.py:882 dcim/filtersets.py:933 +#: dcim/filtersets.py:973 dcim/filtersets.py:1306 dcim/filtersets.py:1840 msgid "Manufacturer (ID)" msgstr "厂商(ID)" -#: netbox/dcim/filtersets.py:302 netbox/dcim/filtersets.py:387 -#: netbox/dcim/filtersets.py:545 netbox/dcim/filtersets.py:684 -#: netbox/dcim/filtersets.py:888 netbox/dcim/filtersets.py:939 -#: netbox/dcim/filtersets.py:979 netbox/dcim/filtersets.py:1312 -#: netbox/dcim/filtersets.py:1846 +#: dcim/filtersets.py:302 dcim/filtersets.py:387 dcim/filtersets.py:545 +#: dcim/filtersets.py:684 dcim/filtersets.py:888 dcim/filtersets.py:939 +#: dcim/filtersets.py:979 dcim/filtersets.py:1312 dcim/filtersets.py:1846 msgid "Manufacturer (slug)" msgstr "厂商 (缩写)" -#: netbox/dcim/filtersets.py:393 +#: dcim/filtersets.py:393 msgid "Rack type (slug)" msgstr "机架类型(弹头)" -#: netbox/dcim/filtersets.py:397 +#: dcim/filtersets.py:397 msgid "Rack type (ID)" msgstr "机架类型 (ID)" -#: netbox/dcim/filtersets.py:411 netbox/dcim/filtersets.py:892 -#: netbox/dcim/filtersets.py:994 netbox/dcim/filtersets.py:1850 -#: netbox/ipam/filtersets.py:381 netbox/ipam/filtersets.py:493 -#: netbox/ipam/filtersets.py:1003 netbox/virtualization/filtersets.py:210 +#: dcim/filtersets.py:411 dcim/filtersets.py:892 dcim/filtersets.py:994 +#: dcim/filtersets.py:1850 ipam/filtersets.py:381 ipam/filtersets.py:493 +#: ipam/filtersets.py:1003 virtualization/filtersets.py:210 msgid "Role (ID)" msgstr "角色(ID)" -#: netbox/dcim/filtersets.py:417 netbox/dcim/filtersets.py:898 -#: netbox/dcim/filtersets.py:1000 netbox/dcim/filtersets.py:1856 -#: netbox/extras/filtersets.py:558 netbox/ipam/filtersets.py:387 -#: netbox/ipam/filtersets.py:499 netbox/ipam/filtersets.py:1009 -#: netbox/virtualization/filtersets.py:216 +#: dcim/filtersets.py:417 dcim/filtersets.py:898 dcim/filtersets.py:1000 +#: dcim/filtersets.py:1856 extras/filtersets.py:558 ipam/filtersets.py:387 +#: ipam/filtersets.py:499 ipam/filtersets.py:1009 +#: virtualization/filtersets.py:216 msgid "Role (slug)" msgstr "角色 (缩写)" -#: netbox/dcim/filtersets.py:447 netbox/dcim/filtersets.py:1062 -#: netbox/dcim/filtersets.py:1415 netbox/dcim/filtersets.py:2244 +#: dcim/filtersets.py:447 dcim/filtersets.py:1062 dcim/filtersets.py:1415 +#: dcim/filtersets.py:2244 msgid "Rack (ID)" msgstr "机柜(ID)" -#: netbox/dcim/filtersets.py:507 netbox/extras/filtersets.py:293 -#: netbox/extras/filtersets.py:337 netbox/extras/filtersets.py:359 -#: netbox/extras/filtersets.py:419 netbox/users/filtersets.py:113 -#: netbox/users/filtersets.py:180 +#: dcim/filtersets.py:507 extras/filtersets.py:293 extras/filtersets.py:337 +#: extras/filtersets.py:359 extras/filtersets.py:419 users/filtersets.py:113 +#: users/filtersets.py:180 msgid "User (name)" msgstr "用户(名称)" -#: netbox/dcim/filtersets.py:549 +#: dcim/filtersets.py:549 msgid "Default platform (ID)" msgstr "默认系统平台(ID)" -#: netbox/dcim/filtersets.py:555 +#: dcim/filtersets.py:555 msgid "Default platform (slug)" msgstr "默认系统平台(缩写)" -#: netbox/dcim/filtersets.py:558 netbox/dcim/forms/filtersets.py:517 +#: dcim/filtersets.py:558 dcim/forms/filtersets.py:517 msgid "Has a front image" msgstr "有前面板图片" -#: netbox/dcim/filtersets.py:562 netbox/dcim/forms/filtersets.py:524 +#: dcim/filtersets.py:562 dcim/forms/filtersets.py:524 msgid "Has a rear image" msgstr "有后面板图片" -#: netbox/dcim/filtersets.py:567 netbox/dcim/filtersets.py:688 -#: netbox/dcim/filtersets.py:1131 netbox/dcim/forms/filtersets.py:531 -#: netbox/dcim/forms/filtersets.py:627 netbox/dcim/forms/filtersets.py:848 +#: dcim/filtersets.py:567 dcim/filtersets.py:688 dcim/filtersets.py:1131 +#: dcim/forms/filtersets.py:531 dcim/forms/filtersets.py:627 +#: dcim/forms/filtersets.py:848 msgid "Has console ports" msgstr "具有console端口" -#: netbox/dcim/filtersets.py:571 netbox/dcim/filtersets.py:692 -#: netbox/dcim/filtersets.py:1135 netbox/dcim/forms/filtersets.py:538 -#: netbox/dcim/forms/filtersets.py:634 netbox/dcim/forms/filtersets.py:855 +#: dcim/filtersets.py:571 dcim/filtersets.py:692 dcim/filtersets.py:1135 +#: dcim/forms/filtersets.py:538 dcim/forms/filtersets.py:634 +#: dcim/forms/filtersets.py:855 msgid "Has console server ports" msgstr "具有console 服务器端口" -#: netbox/dcim/filtersets.py:575 netbox/dcim/filtersets.py:696 -#: netbox/dcim/filtersets.py:1139 netbox/dcim/forms/filtersets.py:545 -#: netbox/dcim/forms/filtersets.py:641 netbox/dcim/forms/filtersets.py:862 +#: dcim/filtersets.py:575 dcim/filtersets.py:696 dcim/filtersets.py:1139 +#: dcim/forms/filtersets.py:545 dcim/forms/filtersets.py:641 +#: dcim/forms/filtersets.py:862 msgid "Has power ports" msgstr "有电源接口" -#: netbox/dcim/filtersets.py:579 netbox/dcim/filtersets.py:700 -#: netbox/dcim/filtersets.py:1143 netbox/dcim/forms/filtersets.py:552 -#: netbox/dcim/forms/filtersets.py:648 netbox/dcim/forms/filtersets.py:869 +#: dcim/filtersets.py:579 dcim/filtersets.py:700 dcim/filtersets.py:1143 +#: dcim/forms/filtersets.py:552 dcim/forms/filtersets.py:648 +#: dcim/forms/filtersets.py:869 msgid "Has power outlets" msgstr "有电源插座" -#: netbox/dcim/filtersets.py:583 netbox/dcim/filtersets.py:704 -#: netbox/dcim/filtersets.py:1147 netbox/dcim/forms/filtersets.py:559 -#: netbox/dcim/forms/filtersets.py:655 netbox/dcim/forms/filtersets.py:876 +#: dcim/filtersets.py:583 dcim/filtersets.py:704 dcim/filtersets.py:1147 +#: dcim/forms/filtersets.py:559 dcim/forms/filtersets.py:655 +#: dcim/forms/filtersets.py:876 msgid "Has interfaces" msgstr "有接口" -#: netbox/dcim/filtersets.py:587 netbox/dcim/filtersets.py:708 -#: netbox/dcim/filtersets.py:1151 netbox/dcim/forms/filtersets.py:566 -#: netbox/dcim/forms/filtersets.py:662 netbox/dcim/forms/filtersets.py:883 +#: dcim/filtersets.py:587 dcim/filtersets.py:708 dcim/filtersets.py:1151 +#: dcim/forms/filtersets.py:566 dcim/forms/filtersets.py:662 +#: dcim/forms/filtersets.py:883 msgid "Has pass-through ports" msgstr "有直通端口" -#: netbox/dcim/filtersets.py:591 netbox/dcim/filtersets.py:1155 -#: netbox/dcim/forms/filtersets.py:580 +#: dcim/filtersets.py:591 dcim/filtersets.py:1155 dcim/forms/filtersets.py:580 msgid "Has module bays" msgstr "有模块托架" -#: netbox/dcim/filtersets.py:595 netbox/dcim/filtersets.py:1159 -#: netbox/dcim/forms/filtersets.py:573 +#: dcim/filtersets.py:595 dcim/filtersets.py:1159 dcim/forms/filtersets.py:573 msgid "Has device bays" msgstr "有设备托架" -#: netbox/dcim/filtersets.py:599 netbox/dcim/forms/filtersets.py:587 +#: dcim/filtersets.py:599 dcim/forms/filtersets.py:587 msgid "Has inventory items" msgstr "有库存项" -#: netbox/dcim/filtersets.py:756 netbox/dcim/filtersets.py:989 -#: netbox/dcim/filtersets.py:1436 +#: dcim/filtersets.py:756 dcim/filtersets.py:989 dcim/filtersets.py:1436 msgid "Device type (ID)" msgstr "设备型号(ID)" -#: netbox/dcim/filtersets.py:772 netbox/dcim/filtersets.py:1317 +#: dcim/filtersets.py:772 dcim/filtersets.py:1317 msgid "Module type (ID)" msgstr "模块类型(ID)" -#: netbox/dcim/filtersets.py:804 netbox/dcim/filtersets.py:1591 +#: dcim/filtersets.py:804 dcim/filtersets.py:1591 msgid "Power port (ID)" msgstr "电源接口(ID)" -#: netbox/dcim/filtersets.py:878 netbox/dcim/filtersets.py:1836 +#: dcim/filtersets.py:878 dcim/filtersets.py:1836 msgid "Parent inventory item (ID)" msgstr "上一级库存项(ID)" -#: netbox/dcim/filtersets.py:921 netbox/dcim/filtersets.py:947 -#: netbox/dcim/filtersets.py:1127 netbox/virtualization/filtersets.py:238 +#: dcim/filtersets.py:921 dcim/filtersets.py:947 dcim/filtersets.py:1127 +#: virtualization/filtersets.py:238 msgid "Config template (ID)" msgstr "配置模板(ID)" -#: netbox/dcim/filtersets.py:985 +#: dcim/filtersets.py:985 msgid "Device type (slug)" msgstr "设备型号 (缩写)" -#: netbox/dcim/filtersets.py:1005 +#: dcim/filtersets.py:1005 msgid "Parent Device (ID)" msgstr "上一级设备(ID)" -#: netbox/dcim/filtersets.py:1009 netbox/virtualization/filtersets.py:220 +#: dcim/filtersets.py:1009 virtualization/filtersets.py:220 msgid "Platform (ID)" msgstr "平台(ID)" -#: netbox/dcim/filtersets.py:1015 netbox/extras/filtersets.py:569 -#: netbox/virtualization/filtersets.py:226 +#: dcim/filtersets.py:1015 extras/filtersets.py:569 +#: virtualization/filtersets.py:226 msgid "Platform (slug)" msgstr "平台(缩写)" -#: netbox/dcim/filtersets.py:1051 netbox/dcim/filtersets.py:1399 -#: netbox/dcim/filtersets.py:1934 netbox/dcim/filtersets.py:2176 -#: netbox/dcim/filtersets.py:2235 +#: dcim/filtersets.py:1051 dcim/filtersets.py:1399 dcim/filtersets.py:1934 +#: dcim/filtersets.py:2176 dcim/filtersets.py:2235 msgid "Site name (slug)" msgstr "站点名字 (缩写)" -#: netbox/dcim/filtersets.py:1067 +#: dcim/filtersets.py:1067 msgid "Parent bay (ID)" msgstr "父级托架(IE)" -#: netbox/dcim/filtersets.py:1071 +#: dcim/filtersets.py:1071 msgid "VM cluster (ID)" msgstr "虚拟机集群(ID)" -#: netbox/dcim/filtersets.py:1077 netbox/extras/filtersets.py:591 -#: netbox/virtualization/filtersets.py:136 +#: dcim/filtersets.py:1077 extras/filtersets.py:591 +#: virtualization/filtersets.py:136 msgid "Cluster group (slug)" msgstr "集群组(缩写)" -#: netbox/dcim/filtersets.py:1082 netbox/virtualization/filtersets.py:130 +#: dcim/filtersets.py:1082 virtualization/filtersets.py:130 msgid "Cluster group (ID)" msgstr "集群组(ID)" -#: netbox/dcim/filtersets.py:1088 +#: dcim/filtersets.py:1088 msgid "Device model (slug)" msgstr "设备模块(缩写)" -#: netbox/dcim/filtersets.py:1099 netbox/dcim/forms/bulk_edit.py:516 +#: dcim/filtersets.py:1099 dcim/forms/bulk_edit.py:516 msgid "Is full depth" msgstr "是否全尺寸" -#: netbox/dcim/filtersets.py:1103 netbox/dcim/forms/common.py:18 -#: netbox/dcim/forms/filtersets.py:818 netbox/dcim/forms/filtersets.py:1385 -#: netbox/dcim/models/device_components.py:518 -#: netbox/virtualization/filtersets.py:230 -#: netbox/virtualization/filtersets.py:301 -#: netbox/virtualization/forms/filtersets.py:172 -#: netbox/virtualization/forms/filtersets.py:223 +#: dcim/filtersets.py:1103 dcim/forms/common.py:18 +#: dcim/forms/filtersets.py:818 dcim/forms/filtersets.py:1385 +#: dcim/models/device_components.py:518 virtualization/filtersets.py:230 +#: virtualization/filtersets.py:301 virtualization/forms/filtersets.py:172 +#: virtualization/forms/filtersets.py:223 msgid "MAC address" msgstr "MAC 地址" -#: netbox/dcim/filtersets.py:1110 netbox/dcim/filtersets.py:1274 -#: netbox/dcim/forms/filtersets.py:827 netbox/dcim/forms/filtersets.py:930 -#: netbox/virtualization/filtersets.py:234 -#: netbox/virtualization/forms/filtersets.py:176 +#: dcim/filtersets.py:1110 dcim/filtersets.py:1274 +#: dcim/forms/filtersets.py:827 dcim/forms/filtersets.py:930 +#: virtualization/filtersets.py:234 virtualization/forms/filtersets.py:176 msgid "Has a primary IP" msgstr "有主IP" -#: netbox/dcim/filtersets.py:1114 +#: dcim/filtersets.py:1114 msgid "Has an out-of-band IP" msgstr "有带外管理IP" -#: netbox/dcim/filtersets.py:1119 +#: dcim/filtersets.py:1119 msgid "Virtual chassis (ID)" msgstr "堆叠 (ID)" -#: netbox/dcim/filtersets.py:1123 +#: dcim/filtersets.py:1123 msgid "Is a virtual chassis member" msgstr "是堆叠成员" -#: netbox/dcim/filtersets.py:1164 +#: dcim/filtersets.py:1164 msgid "OOB IP (ID)" msgstr "带外管理IP(ID)" -#: netbox/dcim/filtersets.py:1168 +#: dcim/filtersets.py:1168 msgid "Has virtual device context" msgstr "有虚拟设备上下文" -#: netbox/dcim/filtersets.py:1257 +#: dcim/filtersets.py:1257 msgid "VDC (ID)" msgstr "VDC (ID)" -#: netbox/dcim/filtersets.py:1262 +#: dcim/filtersets.py:1262 msgid "Device model" msgstr "设备型号" -#: netbox/dcim/filtersets.py:1267 netbox/ipam/filtersets.py:632 -#: netbox/vpn/filtersets.py:102 netbox/vpn/filtersets.py:401 +#: dcim/filtersets.py:1267 ipam/filtersets.py:632 vpn/filtersets.py:102 +#: vpn/filtersets.py:401 msgid "Interface (ID)" msgstr "接口(ID)" -#: netbox/dcim/filtersets.py:1323 +#: dcim/filtersets.py:1323 msgid "Module type (model)" msgstr "模块类型(模块)" -#: netbox/dcim/filtersets.py:1329 +#: dcim/filtersets.py:1329 msgid "Module bay (ID)" msgstr "模块托架 (ID)" -#: netbox/dcim/filtersets.py:1333 netbox/dcim/filtersets.py:1425 -#: netbox/ipam/filtersets.py:611 netbox/ipam/filtersets.py:851 -#: netbox/ipam/filtersets.py:1115 netbox/virtualization/filtersets.py:161 -#: netbox/vpn/filtersets.py:379 +#: dcim/filtersets.py:1333 dcim/filtersets.py:1425 ipam/filtersets.py:611 +#: ipam/filtersets.py:851 ipam/filtersets.py:1115 +#: virtualization/filtersets.py:161 vpn/filtersets.py:379 msgid "Device (ID)" msgstr "设备(ID)" -#: netbox/dcim/filtersets.py:1421 +#: dcim/filtersets.py:1421 msgid "Rack (name)" msgstr "机柜(名称)" -#: netbox/dcim/filtersets.py:1431 netbox/ipam/filtersets.py:606 -#: netbox/ipam/filtersets.py:846 netbox/ipam/filtersets.py:1121 -#: netbox/vpn/filtersets.py:374 +#: dcim/filtersets.py:1431 ipam/filtersets.py:606 ipam/filtersets.py:846 +#: ipam/filtersets.py:1121 vpn/filtersets.py:374 msgid "Device (name)" msgstr "设备(名称)" -#: netbox/dcim/filtersets.py:1442 +#: dcim/filtersets.py:1442 msgid "Device type (model)" msgstr "设备型号 (model)" -#: netbox/dcim/filtersets.py:1447 +#: dcim/filtersets.py:1447 msgid "Device role (ID)" msgstr "设备角色(ID)" -#: netbox/dcim/filtersets.py:1453 +#: dcim/filtersets.py:1453 msgid "Device role (slug)" msgstr "设备角色(缩写)" -#: netbox/dcim/filtersets.py:1458 +#: dcim/filtersets.py:1458 msgid "Virtual Chassis (ID)" msgstr "堆叠(ID)" -#: netbox/dcim/filtersets.py:1464 netbox/dcim/forms/filtersets.py:109 -#: netbox/dcim/tables/devices.py:206 netbox/netbox/navigation/menu.py:79 -#: netbox/templates/dcim/device.html:120 -#: netbox/templates/dcim/device_edit.html:93 -#: netbox/templates/dcim/virtualchassis.html:20 -#: netbox/templates/dcim/virtualchassis_add.html:8 -#: netbox/templates/dcim/virtualchassis_edit.html:24 +#: dcim/filtersets.py:1464 dcim/forms/filtersets.py:109 +#: dcim/tables/devices.py:206 netbox/navigation/menu.py:79 +#: templates/dcim/device.html:120 templates/dcim/device_edit.html:93 +#: templates/dcim/virtualchassis.html:20 +#: templates/dcim/virtualchassis_add.html:8 +#: templates/dcim/virtualchassis_edit.html:24 msgid "Virtual Chassis" msgstr "堆叠" -#: netbox/dcim/filtersets.py:1488 +#: dcim/filtersets.py:1488 msgid "Module (ID)" msgstr "模块(ID)" -#: netbox/dcim/filtersets.py:1495 +#: dcim/filtersets.py:1495 msgid "Cable (ID)" msgstr "线缆(ID)" -#: netbox/dcim/filtersets.py:1604 netbox/ipam/forms/bulk_import.py:189 -#: netbox/vpn/forms/bulk_import.py:308 +#: dcim/filtersets.py:1604 ipam/forms/bulk_import.py:189 +#: vpn/forms/bulk_import.py:308 msgid "Assigned VLAN" msgstr "指定VLAN" -#: netbox/dcim/filtersets.py:1608 +#: dcim/filtersets.py:1608 msgid "Assigned VID" msgstr "指定VID" -#: netbox/dcim/filtersets.py:1613 netbox/dcim/forms/bulk_edit.py:1489 -#: netbox/dcim/forms/bulk_import.py:891 netbox/dcim/forms/filtersets.py:1428 -#: netbox/dcim/forms/model_forms.py:1378 -#: netbox/dcim/models/device_components.py:711 -#: netbox/dcim/tables/devices.py:626 netbox/ipam/filtersets.py:316 -#: netbox/ipam/filtersets.py:327 netbox/ipam/filtersets.py:483 -#: netbox/ipam/filtersets.py:584 netbox/ipam/filtersets.py:595 -#: netbox/ipam/forms/bulk_edit.py:241 netbox/ipam/forms/bulk_edit.py:297 -#: netbox/ipam/forms/bulk_edit.py:339 netbox/ipam/forms/bulk_import.py:157 -#: netbox/ipam/forms/bulk_import.py:243 netbox/ipam/forms/bulk_import.py:279 -#: netbox/ipam/forms/filtersets.py:67 netbox/ipam/forms/filtersets.py:172 -#: netbox/ipam/forms/filtersets.py:309 netbox/ipam/forms/model_forms.py:62 -#: netbox/ipam/forms/model_forms.py:202 netbox/ipam/forms/model_forms.py:247 -#: netbox/ipam/forms/model_forms.py:300 netbox/ipam/forms/model_forms.py:431 -#: netbox/ipam/forms/model_forms.py:445 netbox/ipam/forms/model_forms.py:459 -#: netbox/ipam/models/ip.py:233 netbox/ipam/models/ip.py:512 -#: netbox/ipam/models/ip.py:720 netbox/ipam/models/vrfs.py:62 -#: netbox/ipam/tables/ip.py:242 netbox/ipam/tables/ip.py:309 -#: netbox/ipam/tables/ip.py:360 netbox/ipam/tables/ip.py:450 -#: netbox/templates/dcim/interface.html:133 -#: netbox/templates/ipam/ipaddress.html:18 -#: netbox/templates/ipam/iprange.html:40 netbox/templates/ipam/prefix.html:19 -#: netbox/templates/ipam/vrf.html:7 netbox/templates/ipam/vrf.html:13 -#: netbox/templates/virtualization/vminterface.html:47 -#: netbox/virtualization/forms/bulk_edit.py:261 -#: netbox/virtualization/forms/bulk_import.py:171 -#: netbox/virtualization/forms/filtersets.py:228 -#: netbox/virtualization/forms/model_forms.py:344 -#: netbox/virtualization/models/virtualmachines.py:355 -#: netbox/virtualization/tables/virtualmachines.py:143 +#: dcim/filtersets.py:1613 dcim/forms/bulk_edit.py:1489 +#: dcim/forms/bulk_import.py:891 dcim/forms/filtersets.py:1428 +#: dcim/forms/model_forms.py:1378 dcim/models/device_components.py:711 +#: dcim/tables/devices.py:626 ipam/filtersets.py:316 ipam/filtersets.py:327 +#: ipam/filtersets.py:483 ipam/filtersets.py:584 ipam/filtersets.py:595 +#: ipam/forms/bulk_edit.py:242 ipam/forms/bulk_edit.py:298 +#: ipam/forms/bulk_edit.py:340 ipam/forms/bulk_import.py:157 +#: ipam/forms/bulk_import.py:243 ipam/forms/bulk_import.py:279 +#: ipam/forms/filtersets.py:67 ipam/forms/filtersets.py:172 +#: ipam/forms/filtersets.py:309 ipam/forms/model_forms.py:62 +#: ipam/forms/model_forms.py:202 ipam/forms/model_forms.py:247 +#: ipam/forms/model_forms.py:300 ipam/forms/model_forms.py:431 +#: ipam/forms/model_forms.py:445 ipam/forms/model_forms.py:459 +#: ipam/models/ip.py:233 ipam/models/ip.py:512 ipam/models/ip.py:720 +#: ipam/models/vrfs.py:62 ipam/tables/ip.py:242 ipam/tables/ip.py:309 +#: ipam/tables/ip.py:360 ipam/tables/ip.py:450 +#: templates/dcim/interface.html:133 templates/ipam/ipaddress.html:18 +#: templates/ipam/iprange.html:40 templates/ipam/prefix.html:19 +#: templates/ipam/vrf.html:7 templates/ipam/vrf.html:13 +#: templates/virtualization/vminterface.html:47 +#: virtualization/forms/bulk_edit.py:261 +#: virtualization/forms/bulk_import.py:171 +#: virtualization/forms/filtersets.py:228 +#: virtualization/forms/model_forms.py:344 +#: virtualization/models/virtualmachines.py:355 +#: virtualization/tables/virtualmachines.py:143 msgid "VRF" msgstr "VRF" -#: netbox/dcim/filtersets.py:1619 netbox/ipam/filtersets.py:322 -#: netbox/ipam/filtersets.py:333 netbox/ipam/filtersets.py:489 -#: netbox/ipam/filtersets.py:590 netbox/ipam/filtersets.py:601 +#: dcim/filtersets.py:1619 ipam/filtersets.py:322 ipam/filtersets.py:333 +#: ipam/filtersets.py:489 ipam/filtersets.py:590 ipam/filtersets.py:601 msgid "VRF (RD)" msgstr "VRF (RD)" -#: netbox/dcim/filtersets.py:1624 netbox/ipam/filtersets.py:1030 -#: netbox/vpn/filtersets.py:342 +#: dcim/filtersets.py:1624 ipam/filtersets.py:1030 vpn/filtersets.py:342 msgid "L2VPN (ID)" msgstr "L2VPN (ID)" -#: netbox/dcim/filtersets.py:1630 netbox/dcim/forms/filtersets.py:1433 -#: netbox/dcim/tables/devices.py:570 netbox/ipam/filtersets.py:1036 -#: netbox/ipam/forms/filtersets.py:518 netbox/ipam/tables/vlans.py:137 -#: netbox/templates/dcim/interface.html:93 netbox/templates/ipam/vlan.html:66 -#: netbox/templates/vpn/l2vpntermination.html:12 -#: netbox/virtualization/forms/filtersets.py:233 -#: netbox/vpn/forms/bulk_import.py:280 netbox/vpn/forms/filtersets.py:246 -#: netbox/vpn/forms/model_forms.py:409 netbox/vpn/forms/model_forms.py:427 -#: netbox/vpn/models/l2vpn.py:63 netbox/vpn/tables/l2vpn.py:55 +#: dcim/filtersets.py:1630 dcim/forms/filtersets.py:1433 +#: dcim/tables/devices.py:570 ipam/filtersets.py:1036 +#: ipam/forms/filtersets.py:518 ipam/tables/vlans.py:137 +#: templates/dcim/interface.html:93 templates/ipam/vlan.html:66 +#: templates/vpn/l2vpntermination.html:12 +#: virtualization/forms/filtersets.py:233 vpn/forms/bulk_import.py:280 +#: vpn/forms/filtersets.py:246 vpn/forms/model_forms.py:409 +#: vpn/forms/model_forms.py:427 vpn/models/l2vpn.py:63 vpn/tables/l2vpn.py:55 msgid "L2VPN" msgstr "L2VPN" -#: netbox/dcim/filtersets.py:1662 +#: dcim/filtersets.py:1662 msgid "Virtual Chassis Interfaces for Device" msgstr "设备的集群接口" -#: netbox/dcim/filtersets.py:1667 +#: dcim/filtersets.py:1667 msgid "Virtual Chassis Interfaces for Device (ID)" msgstr "设备的集群接口(ID)" -#: netbox/dcim/filtersets.py:1671 +#: dcim/filtersets.py:1671 msgid "Kind of interface" msgstr "接口类型" -#: netbox/dcim/filtersets.py:1676 netbox/virtualization/filtersets.py:293 +#: dcim/filtersets.py:1676 virtualization/filtersets.py:293 msgid "Parent interface (ID)" msgstr "父级接口(ID)" -#: netbox/dcim/filtersets.py:1681 netbox/virtualization/filtersets.py:298 +#: dcim/filtersets.py:1681 virtualization/filtersets.py:298 msgid "Bridged interface (ID)" msgstr "桥接接口(ID)" -#: netbox/dcim/filtersets.py:1686 +#: dcim/filtersets.py:1686 msgid "LAG interface (ID)" msgstr "链路聚合接口(ID)" -#: netbox/dcim/filtersets.py:1713 netbox/dcim/filtersets.py:1725 -#: netbox/dcim/forms/filtersets.py:1345 netbox/dcim/forms/model_forms.py:1690 -#: netbox/templates/dcim/virtualdevicecontext.html:15 +#: dcim/filtersets.py:1713 dcim/filtersets.py:1725 +#: dcim/forms/filtersets.py:1345 dcim/forms/model_forms.py:1690 +#: templates/dcim/virtualdevicecontext.html:15 msgid "Virtual Device Context" msgstr "虚拟设备上下文" -#: netbox/dcim/filtersets.py:1719 +#: dcim/filtersets.py:1719 msgid "Virtual Device Context (Identifier)" msgstr "虚拟设备上下文(ID)" -#: netbox/dcim/filtersets.py:1730 -#: netbox/templates/wireless/wirelesslan.html:11 -#: netbox/wireless/forms/model_forms.py:53 +#: dcim/filtersets.py:1730 templates/wireless/wirelesslan.html:11 +#: wireless/forms/model_forms.py:53 msgid "Wireless LAN" msgstr "无线局域网" -#: netbox/dcim/filtersets.py:1734 netbox/dcim/tables/devices.py:613 +#: dcim/filtersets.py:1734 dcim/tables/devices.py:613 msgid "Wireless link" msgstr "无线连接" -#: netbox/dcim/filtersets.py:1803 +#: dcim/filtersets.py:1803 msgid "Parent module bay (ID)" msgstr "父模块托架 (ID)" -#: netbox/dcim/filtersets.py:1808 +#: dcim/filtersets.py:1808 msgid "Installed module (ID)" msgstr "已安装模块(ID)" -#: netbox/dcim/filtersets.py:1819 +#: dcim/filtersets.py:1819 msgid "Installed device (ID)" msgstr "已安装设备(ID)" -#: netbox/dcim/filtersets.py:1825 +#: dcim/filtersets.py:1825 msgid "Installed device (name)" msgstr "已安装设备(名称)" -#: netbox/dcim/filtersets.py:1891 +#: dcim/filtersets.py:1891 msgid "Master (ID)" msgstr "主设备(ID)" -#: netbox/dcim/filtersets.py:1897 +#: dcim/filtersets.py:1897 msgid "Master (name)" msgstr "主设备(名称)" -#: netbox/dcim/filtersets.py:1939 netbox/tenancy/filtersets.py:245 +#: dcim/filtersets.py:1939 tenancy/filtersets.py:245 msgid "Tenant (ID)" msgstr "租户(ID)" -#: netbox/dcim/filtersets.py:1945 netbox/extras/filtersets.py:618 -#: netbox/tenancy/filtersets.py:251 +#: dcim/filtersets.py:1945 extras/filtersets.py:618 tenancy/filtersets.py:251 msgid "Tenant (slug)" msgstr "租户(缩写)" -#: netbox/dcim/filtersets.py:1981 netbox/dcim/forms/filtersets.py:1077 +#: dcim/filtersets.py:1981 dcim/forms/filtersets.py:1077 msgid "Unterminated" msgstr "未接终端" -#: netbox/dcim/filtersets.py:2239 +#: dcim/filtersets.py:2239 msgid "Power panel (ID)" msgstr "电源面板(ID)" -#: netbox/dcim/forms/bulk_create.py:40 netbox/extras/forms/filtersets.py:401 -#: netbox/extras/forms/model_forms.py:567 -#: netbox/extras/forms/model_forms.py:619 netbox/netbox/forms/base.py:86 -#: netbox/netbox/forms/mixins.py:81 netbox/netbox/tables/columns.py:478 -#: netbox/templates/circuits/inc/circuit_termination.html:32 -#: netbox/templates/generic/bulk_edit.html:65 -#: netbox/templates/inc/panels/tags.html:5 -#: netbox/utilities/forms/fields/fields.py:81 +#: dcim/forms/bulk_create.py:40 extras/forms/filtersets.py:401 +#: extras/forms/model_forms.py:567 extras/forms/model_forms.py:619 +#: netbox/forms/base.py:86 netbox/forms/mixins.py:81 +#: netbox/tables/columns.py:478 +#: templates/circuits/inc/circuit_termination.html:32 +#: templates/generic/bulk_edit.html:65 templates/inc/panels/tags.html:5 +#: utilities/forms/fields/fields.py:81 msgid "Tags" msgstr "标签" -#: netbox/dcim/forms/bulk_create.py:112 netbox/dcim/forms/filtersets.py:1498 -#: netbox/dcim/forms/model_forms.py:488 netbox/dcim/forms/model_forms.py:546 -#: netbox/dcim/forms/object_create.py:197 -#: netbox/dcim/forms/object_create.py:353 netbox/dcim/tables/devices.py:165 -#: netbox/dcim/tables/devices.py:707 netbox/dcim/tables/devicetypes.py:246 -#: netbox/templates/dcim/device.html:43 netbox/templates/dcim/device.html:131 -#: netbox/templates/dcim/modulebay.html:38 -#: netbox/templates/dcim/virtualchassis.html:66 -#: netbox/templates/dcim/virtualchassis_edit.html:55 +#: dcim/forms/bulk_create.py:112 dcim/forms/filtersets.py:1498 +#: dcim/forms/model_forms.py:488 dcim/forms/model_forms.py:546 +#: dcim/forms/object_create.py:197 dcim/forms/object_create.py:353 +#: dcim/tables/devices.py:165 dcim/tables/devices.py:707 +#: dcim/tables/devicetypes.py:246 templates/dcim/device.html:43 +#: templates/dcim/device.html:131 templates/dcim/modulebay.html:38 +#: templates/dcim/virtualchassis.html:66 +#: templates/dcim/virtualchassis_edit.html:55 msgid "Position" msgstr "位置" -#: netbox/dcim/forms/bulk_create.py:114 +#: dcim/forms/bulk_create.py:114 msgid "" "Alphanumeric ranges are supported. (Must match the number of names being " "created.)" msgstr "支持字母和数字。(必须与正在创建的名称数相匹配)" -#: netbox/dcim/forms/bulk_edit.py:132 +#: dcim/forms/bulk_edit.py:132 msgid "Contact name" msgstr "联系人名字" -#: netbox/dcim/forms/bulk_edit.py:137 +#: dcim/forms/bulk_edit.py:137 msgid "Contact phone" msgstr "联系人手机" -#: netbox/dcim/forms/bulk_edit.py:143 +#: dcim/forms/bulk_edit.py:143 msgid "Contact E-mail" msgstr "联系人电子邮箱" -#: netbox/dcim/forms/bulk_edit.py:146 netbox/dcim/forms/bulk_import.py:123 -#: netbox/dcim/forms/model_forms.py:128 +#: dcim/forms/bulk_edit.py:146 dcim/forms/bulk_import.py:123 +#: dcim/forms/model_forms.py:128 msgid "Time zone" msgstr "时区" -#: netbox/dcim/forms/bulk_edit.py:224 netbox/dcim/forms/bulk_edit.py:495 -#: netbox/dcim/forms/bulk_edit.py:559 netbox/dcim/forms/bulk_edit.py:632 -#: netbox/dcim/forms/bulk_edit.py:656 netbox/dcim/forms/bulk_edit.py:740 -#: netbox/dcim/forms/bulk_edit.py:1267 netbox/dcim/forms/bulk_edit.py:1660 -#: netbox/dcim/forms/bulk_import.py:182 netbox/dcim/forms/bulk_import.py:371 -#: netbox/dcim/forms/bulk_import.py:405 netbox/dcim/forms/bulk_import.py:450 -#: netbox/dcim/forms/bulk_import.py:486 netbox/dcim/forms/bulk_import.py:1082 -#: netbox/dcim/forms/filtersets.py:313 netbox/dcim/forms/filtersets.py:372 -#: netbox/dcim/forms/filtersets.py:494 netbox/dcim/forms/filtersets.py:619 -#: netbox/dcim/forms/filtersets.py:700 netbox/dcim/forms/filtersets.py:782 -#: netbox/dcim/forms/filtersets.py:947 netbox/dcim/forms/filtersets.py:1539 -#: netbox/dcim/forms/model_forms.py:207 netbox/dcim/forms/model_forms.py:337 -#: netbox/dcim/forms/model_forms.py:349 netbox/dcim/forms/model_forms.py:395 -#: netbox/dcim/forms/model_forms.py:436 netbox/dcim/forms/model_forms.py:1075 -#: netbox/dcim/forms/model_forms.py:1515 -#: netbox/dcim/forms/object_import.py:187 netbox/dcim/tables/devices.py:96 -#: netbox/dcim/tables/devices.py:172 netbox/dcim/tables/devices.py:940 -#: netbox/dcim/tables/devicetypes.py:80 netbox/dcim/tables/devicetypes.py:308 -#: netbox/dcim/tables/modules.py:20 netbox/dcim/tables/modules.py:60 -#: netbox/dcim/tables/racks.py:58 netbox/dcim/tables/racks.py:132 -#: netbox/templates/dcim/devicetype.html:14 -#: netbox/templates/dcim/inventoryitem.html:44 -#: netbox/templates/dcim/manufacturer.html:33 -#: netbox/templates/dcim/modulebay.html:62 -#: netbox/templates/dcim/moduletype.html:14 -#: netbox/templates/dcim/platform.html:37 -#: netbox/templates/dcim/racktype.html:16 +#: dcim/forms/bulk_edit.py:224 dcim/forms/bulk_edit.py:495 +#: dcim/forms/bulk_edit.py:559 dcim/forms/bulk_edit.py:632 +#: dcim/forms/bulk_edit.py:656 dcim/forms/bulk_edit.py:740 +#: dcim/forms/bulk_edit.py:1267 dcim/forms/bulk_edit.py:1660 +#: dcim/forms/bulk_import.py:182 dcim/forms/bulk_import.py:371 +#: dcim/forms/bulk_import.py:405 dcim/forms/bulk_import.py:450 +#: dcim/forms/bulk_import.py:486 dcim/forms/bulk_import.py:1082 +#: dcim/forms/filtersets.py:313 dcim/forms/filtersets.py:372 +#: dcim/forms/filtersets.py:494 dcim/forms/filtersets.py:619 +#: dcim/forms/filtersets.py:700 dcim/forms/filtersets.py:782 +#: dcim/forms/filtersets.py:947 dcim/forms/filtersets.py:1539 +#: dcim/forms/model_forms.py:207 dcim/forms/model_forms.py:337 +#: dcim/forms/model_forms.py:349 dcim/forms/model_forms.py:395 +#: dcim/forms/model_forms.py:436 dcim/forms/model_forms.py:1075 +#: dcim/forms/model_forms.py:1515 dcim/forms/object_import.py:187 +#: dcim/tables/devices.py:96 dcim/tables/devices.py:172 +#: dcim/tables/devices.py:940 dcim/tables/devicetypes.py:80 +#: dcim/tables/devicetypes.py:308 dcim/tables/modules.py:20 +#: dcim/tables/modules.py:60 dcim/tables/racks.py:58 dcim/tables/racks.py:132 +#: templates/dcim/devicetype.html:14 templates/dcim/inventoryitem.html:44 +#: templates/dcim/manufacturer.html:33 templates/dcim/modulebay.html:62 +#: templates/dcim/moduletype.html:25 templates/dcim/platform.html:37 +#: templates/dcim/racktype.html:16 msgid "Manufacturer" msgstr "厂商" -#: netbox/dcim/forms/bulk_edit.py:229 netbox/dcim/forms/bulk_edit.py:372 -#: netbox/dcim/forms/bulk_import.py:191 netbox/dcim/forms/bulk_import.py:263 -#: netbox/dcim/forms/filtersets.py:255 -#: netbox/templates/dcim/inc/panels/racktype_dimensions.html:6 +#: dcim/forms/bulk_edit.py:229 dcim/forms/bulk_edit.py:372 +#: dcim/forms/bulk_import.py:191 dcim/forms/bulk_import.py:263 +#: dcim/forms/filtersets.py:255 +#: templates/dcim/inc/panels/racktype_dimensions.html:6 msgid "Form factor" msgstr "外形规格" -#: netbox/dcim/forms/bulk_edit.py:234 netbox/dcim/forms/bulk_edit.py:377 -#: netbox/dcim/forms/bulk_import.py:199 netbox/dcim/forms/bulk_import.py:266 -#: netbox/dcim/forms/filtersets.py:260 -#: netbox/templates/dcim/inc/panels/racktype_dimensions.html:10 +#: dcim/forms/bulk_edit.py:234 dcim/forms/bulk_edit.py:377 +#: dcim/forms/bulk_import.py:199 dcim/forms/bulk_import.py:266 +#: dcim/forms/filtersets.py:260 +#: templates/dcim/inc/panels/racktype_dimensions.html:10 msgid "Width" msgstr "宽度" -#: netbox/dcim/forms/bulk_edit.py:240 netbox/dcim/forms/bulk_edit.py:383 -#: netbox/templates/dcim/devicetype.html:37 +#: dcim/forms/bulk_edit.py:240 dcim/forms/bulk_edit.py:383 +#: templates/dcim/devicetype.html:37 msgid "Height (U)" msgstr "高度(U)" -#: netbox/dcim/forms/bulk_edit.py:249 netbox/dcim/forms/bulk_edit.py:388 -#: netbox/dcim/forms/filtersets.py:274 +#: dcim/forms/bulk_edit.py:249 dcim/forms/bulk_edit.py:388 +#: dcim/forms/filtersets.py:274 msgid "Descending units" msgstr "U位显示降序" -#: netbox/dcim/forms/bulk_edit.py:252 netbox/dcim/forms/bulk_edit.py:391 +#: dcim/forms/bulk_edit.py:252 dcim/forms/bulk_edit.py:391 msgid "Outer width" msgstr "外部宽度" -#: netbox/dcim/forms/bulk_edit.py:257 netbox/dcim/forms/bulk_edit.py:396 +#: dcim/forms/bulk_edit.py:257 dcim/forms/bulk_edit.py:396 msgid "Outer depth" msgstr "外部深度" -#: netbox/dcim/forms/bulk_edit.py:262 netbox/dcim/forms/bulk_edit.py:401 -#: netbox/dcim/forms/bulk_import.py:204 netbox/dcim/forms/bulk_import.py:271 +#: dcim/forms/bulk_edit.py:262 dcim/forms/bulk_edit.py:401 +#: dcim/forms/bulk_import.py:204 dcim/forms/bulk_import.py:271 msgid "Outer unit" msgstr "外部单元" -#: netbox/dcim/forms/bulk_edit.py:267 netbox/dcim/forms/bulk_edit.py:406 +#: dcim/forms/bulk_edit.py:267 dcim/forms/bulk_edit.py:406 msgid "Mounting depth" msgstr "安装深度" -#: netbox/dcim/forms/bulk_edit.py:272 netbox/dcim/forms/bulk_edit.py:299 -#: netbox/dcim/forms/bulk_edit.py:416 netbox/dcim/forms/bulk_edit.py:446 -#: netbox/dcim/forms/bulk_edit.py:529 netbox/dcim/forms/bulk_edit.py:552 -#: netbox/dcim/forms/bulk_edit.py:573 netbox/dcim/forms/bulk_edit.py:595 -#: netbox/dcim/forms/bulk_import.py:384 netbox/dcim/forms/bulk_import.py:416 -#: netbox/dcim/forms/filtersets.py:285 netbox/dcim/forms/filtersets.py:307 -#: netbox/dcim/forms/filtersets.py:327 netbox/dcim/forms/filtersets.py:401 -#: netbox/dcim/forms/filtersets.py:488 netbox/dcim/forms/filtersets.py:594 -#: netbox/dcim/forms/filtersets.py:613 netbox/dcim/forms/filtersets.py:674 -#: netbox/dcim/forms/model_forms.py:221 netbox/dcim/forms/model_forms.py:298 -#: netbox/dcim/tables/devicetypes.py:106 netbox/dcim/tables/modules.py:35 -#: netbox/dcim/tables/racks.py:74 netbox/dcim/tables/racks.py:172 -#: netbox/extras/forms/bulk_edit.py:53 netbox/extras/forms/bulk_edit.py:133 -#: netbox/extras/forms/bulk_edit.py:183 netbox/extras/forms/bulk_edit.py:288 -#: netbox/extras/forms/filtersets.py:64 netbox/extras/forms/filtersets.py:156 -#: netbox/extras/forms/filtersets.py:243 netbox/ipam/forms/bulk_edit.py:189 -#: netbox/templates/dcim/device.html:324 -#: netbox/templates/dcim/devicetype.html:49 -#: netbox/templates/dcim/moduletype.html:34 netbox/templates/dcim/rack.html:81 -#: netbox/templates/dcim/racktype.html:41 -#: netbox/templates/extras/configcontext.html:17 -#: netbox/templates/extras/customlink.html:25 -#: netbox/templates/extras/savedfilter.html:33 -#: netbox/templates/ipam/role.html:30 +#: dcim/forms/bulk_edit.py:272 dcim/forms/bulk_edit.py:299 +#: dcim/forms/bulk_edit.py:416 dcim/forms/bulk_edit.py:446 +#: dcim/forms/bulk_edit.py:529 dcim/forms/bulk_edit.py:552 +#: dcim/forms/bulk_edit.py:573 dcim/forms/bulk_edit.py:595 +#: dcim/forms/bulk_import.py:384 dcim/forms/bulk_import.py:416 +#: dcim/forms/filtersets.py:285 dcim/forms/filtersets.py:307 +#: dcim/forms/filtersets.py:327 dcim/forms/filtersets.py:401 +#: dcim/forms/filtersets.py:488 dcim/forms/filtersets.py:594 +#: dcim/forms/filtersets.py:613 dcim/forms/filtersets.py:674 +#: dcim/forms/model_forms.py:221 dcim/forms/model_forms.py:298 +#: dcim/tables/devicetypes.py:106 dcim/tables/modules.py:35 +#: dcim/tables/racks.py:74 dcim/tables/racks.py:172 +#: extras/forms/bulk_edit.py:53 extras/forms/bulk_edit.py:133 +#: extras/forms/bulk_edit.py:183 extras/forms/bulk_edit.py:288 +#: extras/forms/filtersets.py:64 extras/forms/filtersets.py:156 +#: extras/forms/filtersets.py:243 ipam/forms/bulk_edit.py:190 +#: templates/dcim/device.html:324 templates/dcim/devicetype.html:49 +#: templates/dcim/moduletype.html:45 templates/dcim/rack.html:81 +#: templates/dcim/racktype.html:41 templates/extras/configcontext.html:17 +#: templates/extras/customlink.html:25 templates/extras/savedfilter.html:33 +#: templates/ipam/role.html:30 msgid "Weight" msgstr "重量" -#: netbox/dcim/forms/bulk_edit.py:277 netbox/dcim/forms/bulk_edit.py:421 -#: netbox/dcim/forms/filtersets.py:290 +#: dcim/forms/bulk_edit.py:277 dcim/forms/bulk_edit.py:421 +#: dcim/forms/filtersets.py:290 msgid "Max weight" msgstr "最大承重" -#: netbox/dcim/forms/bulk_edit.py:282 netbox/dcim/forms/bulk_edit.py:426 -#: netbox/dcim/forms/bulk_edit.py:534 netbox/dcim/forms/bulk_edit.py:578 -#: netbox/dcim/forms/bulk_import.py:210 netbox/dcim/forms/bulk_import.py:283 -#: netbox/dcim/forms/bulk_import.py:389 netbox/dcim/forms/bulk_import.py:421 -#: netbox/dcim/forms/filtersets.py:295 netbox/dcim/forms/filtersets.py:598 -#: netbox/dcim/forms/filtersets.py:678 +#: dcim/forms/bulk_edit.py:282 dcim/forms/bulk_edit.py:426 +#: dcim/forms/bulk_edit.py:534 dcim/forms/bulk_edit.py:578 +#: dcim/forms/bulk_import.py:210 dcim/forms/bulk_import.py:283 +#: dcim/forms/bulk_import.py:389 dcim/forms/bulk_import.py:421 +#: dcim/forms/filtersets.py:295 dcim/forms/filtersets.py:598 +#: dcim/forms/filtersets.py:678 msgid "Weight unit" msgstr "重量单位" -#: netbox/dcim/forms/bulk_edit.py:296 netbox/dcim/forms/filtersets.py:305 -#: netbox/dcim/forms/model_forms.py:217 netbox/dcim/forms/model_forms.py:256 -#: netbox/templates/dcim/rack.html:45 netbox/templates/dcim/racktype.html:13 +#: dcim/forms/bulk_edit.py:296 dcim/forms/filtersets.py:305 +#: dcim/forms/model_forms.py:217 dcim/forms/model_forms.py:256 +#: templates/dcim/rack.html:45 templates/dcim/racktype.html:13 msgid "Rack Type" msgstr "机架类型" -#: netbox/dcim/forms/bulk_edit.py:298 netbox/dcim/forms/model_forms.py:220 -#: netbox/dcim/forms/model_forms.py:297 +#: dcim/forms/bulk_edit.py:298 dcim/forms/model_forms.py:220 +#: dcim/forms/model_forms.py:297 msgid "Outer Dimensions" msgstr "外部尺寸" -#: netbox/dcim/forms/bulk_edit.py:301 netbox/dcim/forms/model_forms.py:222 -#: netbox/dcim/forms/model_forms.py:299 netbox/templates/dcim/device.html:315 -#: netbox/templates/dcim/inc/panels/racktype_dimensions.html:3 +#: dcim/forms/bulk_edit.py:301 dcim/forms/model_forms.py:222 +#: dcim/forms/model_forms.py:299 templates/dcim/device.html:315 +#: templates/dcim/inc/panels/racktype_dimensions.html:3 msgid "Dimensions" msgstr "外部尺寸" -#: netbox/dcim/forms/bulk_edit.py:303 netbox/dcim/forms/filtersets.py:306 -#: netbox/dcim/forms/filtersets.py:326 netbox/dcim/forms/model_forms.py:224 -#: netbox/templates/dcim/inc/panels/racktype_numbering.html:3 +#: dcim/forms/bulk_edit.py:303 dcim/forms/filtersets.py:306 +#: dcim/forms/filtersets.py:326 dcim/forms/model_forms.py:224 +#: templates/dcim/inc/panels/racktype_numbering.html:3 msgid "Numbering" msgstr "编号" -#: netbox/dcim/forms/bulk_edit.py:357 netbox/dcim/forms/bulk_edit.py:1262 -#: netbox/dcim/forms/bulk_edit.py:1655 netbox/dcim/forms/bulk_import.py:253 -#: netbox/dcim/forms/bulk_import.py:1076 netbox/dcim/forms/filtersets.py:367 -#: netbox/dcim/forms/filtersets.py:777 netbox/dcim/forms/filtersets.py:1534 -#: netbox/dcim/forms/model_forms.py:251 netbox/dcim/forms/model_forms.py:1070 -#: netbox/dcim/forms/model_forms.py:1510 -#: netbox/dcim/forms/object_import.py:181 netbox/dcim/tables/devices.py:169 -#: netbox/dcim/tables/devices.py:809 netbox/dcim/tables/devices.py:937 -#: netbox/dcim/tables/devicetypes.py:304 netbox/dcim/tables/racks.py:129 -#: netbox/extras/filtersets.py:552 netbox/ipam/forms/bulk_edit.py:260 -#: netbox/ipam/forms/bulk_edit.py:310 netbox/ipam/forms/bulk_edit.py:358 -#: netbox/ipam/forms/bulk_edit.py:556 netbox/ipam/forms/bulk_import.py:197 -#: netbox/ipam/forms/bulk_import.py:262 netbox/ipam/forms/bulk_import.py:298 -#: netbox/ipam/forms/bulk_import.py:455 netbox/ipam/forms/filtersets.py:237 -#: netbox/ipam/forms/filtersets.py:289 netbox/ipam/forms/filtersets.py:360 -#: netbox/ipam/forms/filtersets.py:509 netbox/ipam/forms/model_forms.py:188 -#: netbox/ipam/forms/model_forms.py:221 netbox/ipam/forms/model_forms.py:250 -#: netbox/ipam/forms/model_forms.py:643 netbox/ipam/tables/ip.py:258 -#: netbox/ipam/tables/ip.py:316 netbox/ipam/tables/ip.py:367 -#: netbox/ipam/tables/vlans.py:130 netbox/ipam/tables/vlans.py:235 -#: netbox/templates/dcim/device.html:182 -#: netbox/templates/dcim/inc/panels/inventory_items.html:20 -#: netbox/templates/dcim/interface.html:223 -#: netbox/templates/dcim/inventoryitem.html:36 -#: netbox/templates/dcim/rack.html:49 netbox/templates/ipam/ipaddress.html:41 -#: netbox/templates/ipam/iprange.html:50 netbox/templates/ipam/prefix.html:77 -#: netbox/templates/ipam/role.html:19 netbox/templates/ipam/vlan.html:52 -#: netbox/templates/virtualization/virtualmachine.html:23 -#: netbox/templates/vpn/tunneltermination.html:17 -#: netbox/templates/wireless/inc/wirelesslink_interface.html:20 -#: netbox/tenancy/forms/bulk_edit.py:142 -#: netbox/tenancy/forms/filtersets.py:107 -#: netbox/tenancy/forms/model_forms.py:137 -#: netbox/tenancy/tables/contacts.py:102 -#: netbox/virtualization/forms/bulk_edit.py:145 -#: netbox/virtualization/forms/bulk_import.py:106 -#: netbox/virtualization/forms/filtersets.py:157 -#: netbox/virtualization/forms/model_forms.py:195 -#: netbox/virtualization/tables/virtualmachines.py:75 -#: netbox/vpn/forms/bulk_edit.py:87 netbox/vpn/forms/bulk_import.py:81 -#: netbox/vpn/forms/filtersets.py:85 netbox/vpn/forms/model_forms.py:78 -#: netbox/vpn/forms/model_forms.py:113 netbox/vpn/tables/tunnels.py:82 +#: dcim/forms/bulk_edit.py:357 dcim/forms/bulk_edit.py:1262 +#: dcim/forms/bulk_edit.py:1655 dcim/forms/bulk_import.py:253 +#: dcim/forms/bulk_import.py:1076 dcim/forms/filtersets.py:367 +#: dcim/forms/filtersets.py:777 dcim/forms/filtersets.py:1534 +#: dcim/forms/model_forms.py:251 dcim/forms/model_forms.py:1070 +#: dcim/forms/model_forms.py:1510 dcim/forms/object_import.py:181 +#: dcim/tables/devices.py:169 dcim/tables/devices.py:809 +#: dcim/tables/devices.py:937 dcim/tables/devicetypes.py:304 +#: dcim/tables/racks.py:129 extras/filtersets.py:552 +#: ipam/forms/bulk_edit.py:261 ipam/forms/bulk_edit.py:311 +#: ipam/forms/bulk_edit.py:359 ipam/forms/bulk_edit.py:511 +#: ipam/forms/bulk_import.py:197 ipam/forms/bulk_import.py:262 +#: ipam/forms/bulk_import.py:298 ipam/forms/bulk_import.py:455 +#: ipam/forms/filtersets.py:237 ipam/forms/filtersets.py:289 +#: ipam/forms/filtersets.py:360 ipam/forms/filtersets.py:509 +#: ipam/forms/model_forms.py:188 ipam/forms/model_forms.py:221 +#: ipam/forms/model_forms.py:250 ipam/forms/model_forms.py:643 +#: ipam/tables/ip.py:258 ipam/tables/ip.py:316 ipam/tables/ip.py:367 +#: ipam/tables/vlans.py:130 ipam/tables/vlans.py:235 +#: templates/dcim/device.html:182 +#: templates/dcim/inc/panels/inventory_items.html:20 +#: templates/dcim/interface.html:223 templates/dcim/inventoryitem.html:36 +#: templates/dcim/rack.html:49 templates/ipam/ipaddress.html:41 +#: templates/ipam/iprange.html:50 templates/ipam/prefix.html:77 +#: templates/ipam/role.html:19 templates/ipam/vlan.html:52 +#: templates/virtualization/virtualmachine.html:23 +#: templates/vpn/tunneltermination.html:17 +#: templates/wireless/inc/wirelesslink_interface.html:20 +#: tenancy/forms/bulk_edit.py:142 tenancy/forms/filtersets.py:107 +#: tenancy/forms/model_forms.py:137 tenancy/tables/contacts.py:102 +#: virtualization/forms/bulk_edit.py:145 +#: virtualization/forms/bulk_import.py:106 +#: virtualization/forms/filtersets.py:157 +#: virtualization/forms/model_forms.py:195 +#: virtualization/tables/virtualmachines.py:75 vpn/forms/bulk_edit.py:87 +#: vpn/forms/bulk_import.py:81 vpn/forms/filtersets.py:85 +#: vpn/forms/model_forms.py:78 vpn/forms/model_forms.py:113 +#: vpn/tables/tunnels.py:82 msgid "Role" msgstr "角色" -#: netbox/dcim/forms/bulk_edit.py:364 netbox/dcim/forms/bulk_edit.py:712 -#: netbox/dcim/forms/bulk_edit.py:764 netbox/templates/dcim/device.html:104 -#: netbox/templates/dcim/module.html:77 -#: netbox/templates/dcim/modulebay.html:70 netbox/templates/dcim/rack.html:57 -#: netbox/templates/virtualization/virtualmachine.html:35 +#: dcim/forms/bulk_edit.py:364 dcim/forms/bulk_edit.py:712 +#: dcim/forms/bulk_edit.py:764 templates/dcim/device.html:104 +#: templates/dcim/module.html:77 templates/dcim/modulebay.html:70 +#: templates/dcim/rack.html:57 templates/virtualization/virtualmachine.html:35 msgid "Serial Number" msgstr "序列号" -#: netbox/dcim/forms/bulk_edit.py:367 netbox/dcim/forms/filtersets.py:387 -#: netbox/dcim/forms/filtersets.py:813 netbox/dcim/forms/filtersets.py:967 -#: netbox/dcim/forms/filtersets.py:1546 +#: dcim/forms/bulk_edit.py:367 dcim/forms/filtersets.py:387 +#: dcim/forms/filtersets.py:813 dcim/forms/filtersets.py:967 +#: dcim/forms/filtersets.py:1546 msgid "Asset tag" msgstr "资产标签" -#: netbox/dcim/forms/bulk_edit.py:411 netbox/dcim/forms/bulk_edit.py:524 -#: netbox/dcim/forms/bulk_edit.py:568 netbox/dcim/forms/bulk_edit.py:705 -#: netbox/dcim/forms/bulk_import.py:277 netbox/dcim/forms/bulk_import.py:410 -#: netbox/dcim/forms/bulk_import.py:580 netbox/dcim/forms/filtersets.py:280 -#: netbox/dcim/forms/filtersets.py:511 netbox/dcim/forms/filtersets.py:669 -#: netbox/dcim/forms/filtersets.py:804 netbox/templates/dcim/device.html:98 -#: netbox/templates/dcim/devicetype.html:65 -#: netbox/templates/dcim/moduletype.html:30 netbox/templates/dcim/rack.html:65 -#: netbox/templates/dcim/racktype.html:28 +#: dcim/forms/bulk_edit.py:411 dcim/forms/bulk_edit.py:524 +#: dcim/forms/bulk_edit.py:568 dcim/forms/bulk_edit.py:705 +#: dcim/forms/bulk_import.py:277 dcim/forms/bulk_import.py:410 +#: dcim/forms/bulk_import.py:580 dcim/forms/filtersets.py:280 +#: dcim/forms/filtersets.py:511 dcim/forms/filtersets.py:669 +#: dcim/forms/filtersets.py:804 templates/dcim/device.html:98 +#: templates/dcim/devicetype.html:65 templates/dcim/moduletype.html:41 +#: templates/dcim/rack.html:65 templates/dcim/racktype.html:28 msgid "Airflow" msgstr "气流方向" -#: netbox/dcim/forms/bulk_edit.py:440 netbox/dcim/forms/bulk_edit.py:910 -#: netbox/dcim/forms/bulk_import.py:322 netbox/dcim/forms/bulk_import.py:325 -#: netbox/dcim/forms/bulk_import.py:553 netbox/dcim/forms/bulk_import.py:1358 -#: netbox/dcim/forms/bulk_import.py:1362 netbox/dcim/forms/filtersets.py:104 -#: netbox/dcim/forms/filtersets.py:324 netbox/dcim/forms/filtersets.py:405 -#: netbox/dcim/forms/filtersets.py:419 netbox/dcim/forms/filtersets.py:457 -#: netbox/dcim/forms/filtersets.py:772 netbox/dcim/forms/filtersets.py:1035 -#: netbox/dcim/forms/filtersets.py:1167 netbox/dcim/forms/model_forms.py:264 -#: netbox/dcim/forms/model_forms.py:306 netbox/dcim/forms/model_forms.py:479 -#: netbox/dcim/forms/model_forms.py:755 netbox/dcim/forms/object_create.py:400 -#: netbox/dcim/tables/devices.py:161 netbox/dcim/tables/power.py:70 -#: netbox/dcim/tables/racks.py:217 netbox/ipam/forms/bulk_edit.py:468 -#: netbox/ipam/forms/filtersets.py:442 netbox/templates/dcim/device.html:30 -#: netbox/templates/dcim/inc/cable_termination.html:16 -#: netbox/templates/dcim/powerfeed.html:28 netbox/templates/dcim/rack.html:13 -#: netbox/templates/dcim/rack/base.html:4 -#: netbox/templates/dcim/rackreservation.html:19 -#: netbox/templates/dcim/rackreservation.html:36 -#: netbox/virtualization/forms/model_forms.py:113 +#: dcim/forms/bulk_edit.py:440 dcim/forms/bulk_edit.py:910 +#: dcim/forms/bulk_import.py:322 dcim/forms/bulk_import.py:325 +#: dcim/forms/bulk_import.py:553 dcim/forms/bulk_import.py:1358 +#: dcim/forms/bulk_import.py:1362 dcim/forms/filtersets.py:104 +#: dcim/forms/filtersets.py:324 dcim/forms/filtersets.py:405 +#: dcim/forms/filtersets.py:419 dcim/forms/filtersets.py:457 +#: dcim/forms/filtersets.py:772 dcim/forms/filtersets.py:1035 +#: dcim/forms/filtersets.py:1167 dcim/forms/model_forms.py:264 +#: dcim/forms/model_forms.py:306 dcim/forms/model_forms.py:479 +#: dcim/forms/model_forms.py:755 dcim/forms/object_create.py:400 +#: dcim/tables/devices.py:161 dcim/tables/power.py:70 dcim/tables/racks.py:217 +#: ipam/forms/filtersets.py:442 templates/dcim/device.html:30 +#: templates/dcim/inc/cable_termination.html:16 +#: templates/dcim/powerfeed.html:28 templates/dcim/rack.html:13 +#: templates/dcim/rack/base.html:4 templates/dcim/rackreservation.html:19 +#: templates/dcim/rackreservation.html:36 +#: virtualization/forms/model_forms.py:113 msgid "Rack" msgstr "机柜" -#: netbox/dcim/forms/bulk_edit.py:444 netbox/dcim/forms/bulk_edit.py:730 -#: netbox/dcim/forms/filtersets.py:325 netbox/dcim/forms/filtersets.py:398 -#: netbox/dcim/forms/filtersets.py:481 netbox/dcim/forms/filtersets.py:608 -#: netbox/dcim/forms/filtersets.py:721 netbox/dcim/forms/filtersets.py:942 -#: netbox/dcim/forms/model_forms.py:670 netbox/dcim/forms/model_forms.py:1580 -#: netbox/templates/dcim/device_edit.html:20 +#: dcim/forms/bulk_edit.py:444 dcim/forms/bulk_edit.py:730 +#: dcim/forms/filtersets.py:325 dcim/forms/filtersets.py:398 +#: dcim/forms/filtersets.py:481 dcim/forms/filtersets.py:608 +#: dcim/forms/filtersets.py:721 dcim/forms/filtersets.py:942 +#: dcim/forms/model_forms.py:670 dcim/forms/model_forms.py:1580 +#: templates/dcim/device_edit.html:20 msgid "Hardware" msgstr "硬件" -#: netbox/dcim/forms/bulk_edit.py:500 netbox/dcim/forms/bulk_import.py:377 -#: netbox/dcim/forms/filtersets.py:499 netbox/dcim/forms/model_forms.py:353 +#: dcim/forms/bulk_edit.py:500 dcim/forms/bulk_import.py:377 +#: dcim/forms/filtersets.py:499 dcim/forms/model_forms.py:353 msgid "Default platform" msgstr "默认系统平台" -#: netbox/dcim/forms/bulk_edit.py:505 netbox/dcim/forms/bulk_edit.py:564 -#: netbox/dcim/forms/filtersets.py:502 netbox/dcim/forms/filtersets.py:622 +#: dcim/forms/bulk_edit.py:505 dcim/forms/bulk_edit.py:564 +#: dcim/forms/filtersets.py:502 dcim/forms/filtersets.py:622 msgid "Part number" msgstr "部件编码(PN)" -#: netbox/dcim/forms/bulk_edit.py:509 +#: dcim/forms/bulk_edit.py:509 msgid "U height" msgstr "U高度" -#: netbox/dcim/forms/bulk_edit.py:521 netbox/dcim/tables/devicetypes.py:102 +#: dcim/forms/bulk_edit.py:521 dcim/tables/devicetypes.py:102 msgid "Exclude from utilization" msgstr "从利用率中排除" -#: netbox/dcim/forms/bulk_edit.py:550 netbox/dcim/forms/model_forms.py:368 -#: netbox/dcim/tables/devicetypes.py:77 netbox/templates/dcim/device.html:88 -#: netbox/templates/dcim/devicebay.html:52 -#: netbox/templates/dcim/module.html:61 +#: dcim/forms/bulk_edit.py:550 dcim/forms/model_forms.py:368 +#: dcim/tables/devicetypes.py:77 templates/dcim/device.html:88 +#: templates/dcim/devicebay.html:52 templates/dcim/module.html:61 msgid "Device Type" msgstr "设备型号" -#: netbox/dcim/forms/bulk_edit.py:592 netbox/dcim/forms/model_forms.py:401 -#: netbox/dcim/tables/modules.py:17 netbox/dcim/tables/modules.py:65 -#: netbox/templates/dcim/module.html:65 -#: netbox/templates/dcim/modulebay.html:66 -#: netbox/templates/dcim/moduletype.html:11 +#: dcim/forms/bulk_edit.py:592 dcim/forms/model_forms.py:401 +#: dcim/tables/modules.py:17 dcim/tables/modules.py:65 +#: templates/dcim/module.html:65 templates/dcim/modulebay.html:66 +#: templates/dcim/moduletype.html:22 msgid "Module Type" msgstr "设备配件类型" -#: netbox/dcim/forms/bulk_edit.py:596 netbox/dcim/forms/model_forms.py:371 -#: netbox/dcim/forms/model_forms.py:402 -#: netbox/templates/dcim/devicetype.html:11 +#: dcim/forms/bulk_edit.py:596 dcim/forms/model_forms.py:371 +#: dcim/forms/model_forms.py:402 templates/dcim/devicetype.html:11 msgid "Chassis" msgstr "机箱" -#: netbox/dcim/forms/bulk_edit.py:610 netbox/dcim/models/devices.py:484 -#: netbox/dcim/tables/devices.py:67 +#: dcim/forms/bulk_edit.py:610 dcim/models/devices.py:484 +#: dcim/tables/devices.py:67 msgid "VM role" msgstr "VM 角色" -#: netbox/dcim/forms/bulk_edit.py:613 netbox/dcim/forms/bulk_edit.py:637 -#: netbox/dcim/forms/bulk_edit.py:720 netbox/dcim/forms/bulk_import.py:434 -#: netbox/dcim/forms/bulk_import.py:438 netbox/dcim/forms/bulk_import.py:457 -#: netbox/dcim/forms/bulk_import.py:461 netbox/dcim/forms/bulk_import.py:586 -#: netbox/dcim/forms/bulk_import.py:590 netbox/dcim/forms/filtersets.py:689 -#: netbox/dcim/forms/filtersets.py:705 netbox/dcim/forms/filtersets.py:823 -#: netbox/dcim/forms/model_forms.py:415 netbox/dcim/forms/model_forms.py:441 -#: netbox/dcim/forms/model_forms.py:555 -#: netbox/virtualization/forms/bulk_import.py:132 -#: netbox/virtualization/forms/bulk_import.py:133 -#: netbox/virtualization/forms/filtersets.py:188 -#: netbox/virtualization/forms/model_forms.py:215 +#: dcim/forms/bulk_edit.py:613 dcim/forms/bulk_edit.py:637 +#: dcim/forms/bulk_edit.py:720 dcim/forms/bulk_import.py:434 +#: dcim/forms/bulk_import.py:438 dcim/forms/bulk_import.py:457 +#: dcim/forms/bulk_import.py:461 dcim/forms/bulk_import.py:586 +#: dcim/forms/bulk_import.py:590 dcim/forms/filtersets.py:689 +#: dcim/forms/filtersets.py:705 dcim/forms/filtersets.py:823 +#: dcim/forms/model_forms.py:415 dcim/forms/model_forms.py:441 +#: dcim/forms/model_forms.py:555 virtualization/forms/bulk_import.py:132 +#: virtualization/forms/bulk_import.py:133 +#: virtualization/forms/filtersets.py:188 +#: virtualization/forms/model_forms.py:215 msgid "Config template" msgstr "配置模版" -#: netbox/dcim/forms/bulk_edit.py:661 netbox/dcim/forms/bulk_edit.py:1061 -#: netbox/dcim/forms/bulk_import.py:492 netbox/dcim/forms/filtersets.py:114 -#: netbox/dcim/forms/model_forms.py:501 netbox/dcim/forms/model_forms.py:872 -#: netbox/dcim/forms/model_forms.py:889 netbox/extras/filtersets.py:547 +#: dcim/forms/bulk_edit.py:661 dcim/forms/bulk_edit.py:1061 +#: dcim/forms/bulk_import.py:492 dcim/forms/filtersets.py:114 +#: dcim/forms/model_forms.py:501 dcim/forms/model_forms.py:872 +#: dcim/forms/model_forms.py:889 extras/filtersets.py:547 msgid "Device type" msgstr "设备型号" -#: netbox/dcim/forms/bulk_edit.py:672 netbox/dcim/forms/bulk_import.py:473 -#: netbox/dcim/forms/filtersets.py:119 netbox/dcim/forms/model_forms.py:509 +#: dcim/forms/bulk_edit.py:672 dcim/forms/bulk_import.py:473 +#: dcim/forms/filtersets.py:119 dcim/forms/model_forms.py:509 msgid "Device role" msgstr "设备角色" -#: netbox/dcim/forms/bulk_edit.py:695 netbox/dcim/forms/bulk_import.py:498 -#: netbox/dcim/forms/filtersets.py:796 netbox/dcim/forms/model_forms.py:451 -#: netbox/dcim/forms/model_forms.py:513 netbox/dcim/tables/devices.py:182 -#: netbox/extras/filtersets.py:563 netbox/templates/dcim/device.html:186 -#: netbox/templates/dcim/platform.html:26 -#: netbox/templates/virtualization/virtualmachine.html:27 -#: netbox/virtualization/forms/bulk_edit.py:160 -#: netbox/virtualization/forms/bulk_import.py:122 -#: netbox/virtualization/forms/filtersets.py:168 -#: netbox/virtualization/forms/model_forms.py:203 -#: netbox/virtualization/tables/virtualmachines.py:79 +#: dcim/forms/bulk_edit.py:695 dcim/forms/bulk_import.py:498 +#: dcim/forms/filtersets.py:796 dcim/forms/model_forms.py:451 +#: dcim/forms/model_forms.py:513 dcim/tables/devices.py:182 +#: extras/filtersets.py:563 templates/dcim/device.html:186 +#: templates/dcim/platform.html:26 +#: templates/virtualization/virtualmachine.html:27 +#: virtualization/forms/bulk_edit.py:160 +#: virtualization/forms/bulk_import.py:122 +#: virtualization/forms/filtersets.py:168 +#: virtualization/forms/model_forms.py:203 +#: virtualization/tables/virtualmachines.py:79 msgid "Platform" msgstr "平台" -#: netbox/dcim/forms/bulk_edit.py:728 netbox/dcim/forms/bulk_edit.py:1281 -#: netbox/dcim/forms/bulk_edit.py:1650 netbox/dcim/forms/bulk_edit.py:1696 -#: netbox/dcim/forms/bulk_import.py:641 netbox/dcim/forms/bulk_import.py:703 -#: netbox/dcim/forms/bulk_import.py:729 netbox/dcim/forms/bulk_import.py:755 -#: netbox/dcim/forms/bulk_import.py:775 netbox/dcim/forms/bulk_import.py:828 -#: netbox/dcim/forms/bulk_import.py:946 netbox/dcim/forms/bulk_import.py:994 -#: netbox/dcim/forms/bulk_import.py:1011 netbox/dcim/forms/bulk_import.py:1023 -#: netbox/dcim/forms/bulk_import.py:1071 netbox/dcim/forms/bulk_import.py:1422 -#: netbox/dcim/forms/connections.py:24 netbox/dcim/forms/filtersets.py:131 -#: netbox/dcim/forms/filtersets.py:921 netbox/dcim/forms/filtersets.py:1051 -#: netbox/dcim/forms/filtersets.py:1242 netbox/dcim/forms/filtersets.py:1267 -#: netbox/dcim/forms/filtersets.py:1291 netbox/dcim/forms/filtersets.py:1311 -#: netbox/dcim/forms/filtersets.py:1334 netbox/dcim/forms/filtersets.py:1444 -#: netbox/dcim/forms/filtersets.py:1469 netbox/dcim/forms/filtersets.py:1493 -#: netbox/dcim/forms/filtersets.py:1511 netbox/dcim/forms/filtersets.py:1528 -#: netbox/dcim/forms/filtersets.py:1592 netbox/dcim/forms/filtersets.py:1616 -#: netbox/dcim/forms/filtersets.py:1640 netbox/dcim/forms/model_forms.py:633 -#: netbox/dcim/forms/model_forms.py:849 netbox/dcim/forms/model_forms.py:1208 -#: netbox/dcim/forms/model_forms.py:1664 -#: netbox/dcim/forms/object_create.py:257 netbox/dcim/tables/connections.py:22 -#: netbox/dcim/tables/connections.py:41 netbox/dcim/tables/connections.py:60 -#: netbox/dcim/tables/devices.py:285 netbox/dcim/tables/devices.py:371 -#: netbox/dcim/tables/devices.py:412 netbox/dcim/tables/devices.py:454 -#: netbox/dcim/tables/devices.py:505 netbox/dcim/tables/devices.py:597 -#: netbox/dcim/tables/devices.py:697 netbox/dcim/tables/devices.py:754 -#: netbox/dcim/tables/devices.py:801 netbox/dcim/tables/devices.py:861 -#: netbox/dcim/tables/devices.py:930 netbox/dcim/tables/devices.py:1057 -#: netbox/dcim/tables/modules.py:52 netbox/extras/forms/filtersets.py:321 -#: netbox/ipam/forms/bulk_import.py:304 netbox/ipam/forms/bulk_import.py:481 -#: netbox/ipam/forms/filtersets.py:551 netbox/ipam/forms/model_forms.py:319 -#: netbox/ipam/forms/model_forms.py:679 netbox/ipam/forms/model_forms.py:712 -#: netbox/ipam/forms/model_forms.py:738 netbox/ipam/tables/vlans.py:180 -#: netbox/templates/dcim/consoleport.html:20 -#: netbox/templates/dcim/consoleserverport.html:20 -#: netbox/templates/dcim/device.html:15 netbox/templates/dcim/device.html:130 -#: netbox/templates/dcim/device_edit.html:10 -#: netbox/templates/dcim/devicebay.html:20 -#: netbox/templates/dcim/devicebay.html:48 -#: netbox/templates/dcim/frontport.html:20 -#: netbox/templates/dcim/interface.html:30 -#: netbox/templates/dcim/interface.html:161 -#: netbox/templates/dcim/inventoryitem.html:20 -#: netbox/templates/dcim/module.html:57 -#: netbox/templates/dcim/modulebay.html:20 -#: netbox/templates/dcim/poweroutlet.html:20 -#: netbox/templates/dcim/powerport.html:20 -#: netbox/templates/dcim/rearport.html:20 -#: netbox/templates/dcim/virtualchassis.html:65 -#: netbox/templates/dcim/virtualchassis_edit.html:51 -#: netbox/templates/dcim/virtualdevicecontext.html:22 -#: netbox/templates/virtualization/virtualmachine.html:114 -#: netbox/templates/vpn/tunneltermination.html:23 -#: netbox/templates/wireless/inc/wirelesslink_interface.html:6 -#: netbox/virtualization/filtersets.py:167 -#: netbox/virtualization/forms/bulk_edit.py:137 -#: netbox/virtualization/forms/bulk_import.py:99 -#: netbox/virtualization/forms/filtersets.py:128 -#: netbox/virtualization/forms/model_forms.py:185 -#: netbox/virtualization/tables/virtualmachines.py:71 netbox/vpn/choices.py:44 -#: netbox/vpn/forms/bulk_import.py:86 netbox/vpn/forms/bulk_import.py:283 -#: netbox/vpn/forms/filtersets.py:275 netbox/vpn/forms/model_forms.py:90 -#: netbox/vpn/forms/model_forms.py:125 netbox/vpn/forms/model_forms.py:236 -#: netbox/vpn/forms/model_forms.py:453 netbox/wireless/forms/model_forms.py:99 -#: netbox/wireless/forms/model_forms.py:141 -#: netbox/wireless/tables/wirelesslan.py:75 +#: dcim/forms/bulk_edit.py:728 dcim/forms/bulk_edit.py:1281 +#: dcim/forms/bulk_edit.py:1650 dcim/forms/bulk_edit.py:1696 +#: dcim/forms/bulk_import.py:641 dcim/forms/bulk_import.py:703 +#: dcim/forms/bulk_import.py:729 dcim/forms/bulk_import.py:755 +#: dcim/forms/bulk_import.py:775 dcim/forms/bulk_import.py:828 +#: dcim/forms/bulk_import.py:946 dcim/forms/bulk_import.py:994 +#: dcim/forms/bulk_import.py:1011 dcim/forms/bulk_import.py:1023 +#: dcim/forms/bulk_import.py:1071 dcim/forms/bulk_import.py:1422 +#: dcim/forms/connections.py:24 dcim/forms/filtersets.py:131 +#: dcim/forms/filtersets.py:921 dcim/forms/filtersets.py:1051 +#: dcim/forms/filtersets.py:1242 dcim/forms/filtersets.py:1267 +#: dcim/forms/filtersets.py:1291 dcim/forms/filtersets.py:1311 +#: dcim/forms/filtersets.py:1334 dcim/forms/filtersets.py:1444 +#: dcim/forms/filtersets.py:1469 dcim/forms/filtersets.py:1493 +#: dcim/forms/filtersets.py:1511 dcim/forms/filtersets.py:1528 +#: dcim/forms/filtersets.py:1592 dcim/forms/filtersets.py:1616 +#: dcim/forms/filtersets.py:1640 dcim/forms/model_forms.py:633 +#: dcim/forms/model_forms.py:849 dcim/forms/model_forms.py:1208 +#: dcim/forms/model_forms.py:1664 dcim/forms/object_create.py:257 +#: dcim/tables/connections.py:22 dcim/tables/connections.py:41 +#: dcim/tables/connections.py:60 dcim/tables/devices.py:285 +#: dcim/tables/devices.py:371 dcim/tables/devices.py:412 +#: dcim/tables/devices.py:454 dcim/tables/devices.py:505 +#: dcim/tables/devices.py:597 dcim/tables/devices.py:697 +#: dcim/tables/devices.py:754 dcim/tables/devices.py:801 +#: dcim/tables/devices.py:861 dcim/tables/devices.py:930 +#: dcim/tables/devices.py:1057 dcim/tables/modules.py:52 +#: extras/forms/filtersets.py:321 ipam/forms/bulk_import.py:304 +#: ipam/forms/bulk_import.py:481 ipam/forms/filtersets.py:551 +#: ipam/forms/model_forms.py:319 ipam/forms/model_forms.py:679 +#: ipam/forms/model_forms.py:712 ipam/forms/model_forms.py:738 +#: ipam/tables/vlans.py:180 templates/dcim/consoleport.html:20 +#: templates/dcim/consoleserverport.html:20 templates/dcim/device.html:15 +#: templates/dcim/device.html:130 templates/dcim/device_edit.html:10 +#: templates/dcim/devicebay.html:20 templates/dcim/devicebay.html:48 +#: templates/dcim/frontport.html:20 templates/dcim/interface.html:30 +#: templates/dcim/interface.html:161 templates/dcim/inventoryitem.html:20 +#: templates/dcim/module.html:57 templates/dcim/modulebay.html:20 +#: templates/dcim/poweroutlet.html:20 templates/dcim/powerport.html:20 +#: templates/dcim/rearport.html:20 templates/dcim/virtualchassis.html:65 +#: templates/dcim/virtualchassis_edit.html:51 +#: templates/dcim/virtualdevicecontext.html:22 +#: templates/virtualization/virtualmachine.html:114 +#: templates/vpn/tunneltermination.html:23 +#: templates/wireless/inc/wirelesslink_interface.html:6 +#: virtualization/filtersets.py:167 virtualization/forms/bulk_edit.py:137 +#: virtualization/forms/bulk_import.py:99 +#: virtualization/forms/filtersets.py:128 +#: virtualization/forms/model_forms.py:185 +#: virtualization/tables/virtualmachines.py:71 vpn/choices.py:44 +#: vpn/forms/bulk_import.py:86 vpn/forms/bulk_import.py:283 +#: vpn/forms/filtersets.py:275 vpn/forms/model_forms.py:90 +#: vpn/forms/model_forms.py:125 vpn/forms/model_forms.py:236 +#: vpn/forms/model_forms.py:453 wireless/forms/model_forms.py:99 +#: wireless/forms/model_forms.py:141 wireless/tables/wirelesslan.py:75 msgid "Device" msgstr "设备" -#: netbox/dcim/forms/bulk_edit.py:731 -#: netbox/templates/extras/dashboard/widget_config.html:7 -#: netbox/virtualization/forms/bulk_edit.py:191 +#: dcim/forms/bulk_edit.py:731 templates/extras/dashboard/widget_config.html:7 +#: virtualization/forms/bulk_edit.py:191 msgid "Configuration" msgstr "配置" -#: netbox/dcim/forms/bulk_edit.py:745 netbox/dcim/forms/bulk_import.py:653 -#: netbox/dcim/forms/model_forms.py:647 netbox/dcim/forms/model_forms.py:897 +#: dcim/forms/bulk_edit.py:745 dcim/forms/bulk_import.py:653 +#: dcim/forms/model_forms.py:647 dcim/forms/model_forms.py:897 msgid "Module type" msgstr "模块类型" -#: netbox/dcim/forms/bulk_edit.py:799 netbox/dcim/forms/bulk_edit.py:984 -#: netbox/dcim/forms/bulk_edit.py:1003 netbox/dcim/forms/bulk_edit.py:1026 -#: netbox/dcim/forms/bulk_edit.py:1068 netbox/dcim/forms/bulk_edit.py:1112 -#: netbox/dcim/forms/bulk_edit.py:1163 netbox/dcim/forms/bulk_edit.py:1190 -#: netbox/dcim/forms/bulk_edit.py:1217 netbox/dcim/forms/bulk_edit.py:1235 -#: netbox/dcim/forms/bulk_edit.py:1253 netbox/dcim/forms/filtersets.py:67 -#: netbox/dcim/forms/object_create.py:46 netbox/templates/dcim/cable.html:32 -#: netbox/templates/dcim/consoleport.html:32 -#: netbox/templates/dcim/consoleserverport.html:32 -#: netbox/templates/dcim/devicebay.html:28 -#: netbox/templates/dcim/frontport.html:32 -#: netbox/templates/dcim/inc/panels/inventory_items.html:19 -#: netbox/templates/dcim/interface.html:42 -#: netbox/templates/dcim/inventoryitem.html:32 -#: netbox/templates/dcim/modulebay.html:34 -#: netbox/templates/dcim/poweroutlet.html:32 -#: netbox/templates/dcim/powerport.html:32 -#: netbox/templates/dcim/rearport.html:32 -#: netbox/templates/extras/customfield.html:26 -#: netbox/templates/generic/bulk_import.html:162 +#: dcim/forms/bulk_edit.py:799 dcim/forms/bulk_edit.py:984 +#: dcim/forms/bulk_edit.py:1003 dcim/forms/bulk_edit.py:1026 +#: dcim/forms/bulk_edit.py:1068 dcim/forms/bulk_edit.py:1112 +#: dcim/forms/bulk_edit.py:1163 dcim/forms/bulk_edit.py:1190 +#: dcim/forms/bulk_edit.py:1217 dcim/forms/bulk_edit.py:1235 +#: dcim/forms/bulk_edit.py:1253 dcim/forms/filtersets.py:67 +#: dcim/forms/object_create.py:46 templates/dcim/cable.html:32 +#: templates/dcim/consoleport.html:32 templates/dcim/consoleserverport.html:32 +#: templates/dcim/devicebay.html:28 templates/dcim/frontport.html:32 +#: templates/dcim/inc/panels/inventory_items.html:19 +#: templates/dcim/interface.html:42 templates/dcim/inventoryitem.html:32 +#: templates/dcim/modulebay.html:34 templates/dcim/poweroutlet.html:32 +#: templates/dcim/powerport.html:32 templates/dcim/rearport.html:32 +#: templates/extras/customfield.html:26 templates/generic/bulk_import.html:162 msgid "Label" msgstr "标记" -#: netbox/dcim/forms/bulk_edit.py:808 netbox/dcim/forms/filtersets.py:1068 -#: netbox/templates/dcim/cable.html:50 +#: dcim/forms/bulk_edit.py:808 dcim/forms/filtersets.py:1068 +#: templates/dcim/cable.html:50 msgid "Length" msgstr "长度" -#: netbox/dcim/forms/bulk_edit.py:813 netbox/dcim/forms/bulk_import.py:1226 -#: netbox/dcim/forms/bulk_import.py:1229 netbox/dcim/forms/filtersets.py:1072 +#: dcim/forms/bulk_edit.py:813 dcim/forms/bulk_import.py:1226 +#: dcim/forms/bulk_import.py:1229 dcim/forms/filtersets.py:1072 msgid "Length unit" msgstr "长度单位" -#: netbox/dcim/forms/bulk_edit.py:837 -#: netbox/templates/dcim/virtualchassis.html:23 +#: dcim/forms/bulk_edit.py:837 templates/dcim/virtualchassis.html:23 msgid "Domain" msgstr "域" -#: netbox/dcim/forms/bulk_edit.py:905 netbox/dcim/forms/bulk_import.py:1345 -#: netbox/dcim/forms/filtersets.py:1158 netbox/dcim/forms/model_forms.py:750 +#: dcim/forms/bulk_edit.py:905 dcim/forms/bulk_import.py:1345 +#: dcim/forms/filtersets.py:1158 dcim/forms/model_forms.py:750 msgid "Power panel" msgstr "电源面版" -#: netbox/dcim/forms/bulk_edit.py:927 netbox/dcim/forms/bulk_import.py:1381 -#: netbox/dcim/forms/filtersets.py:1180 -#: netbox/templates/dcim/powerfeed.html:83 +#: dcim/forms/bulk_edit.py:927 dcim/forms/bulk_import.py:1381 +#: dcim/forms/filtersets.py:1180 templates/dcim/powerfeed.html:83 msgid "Supply" msgstr "供应" -#: netbox/dcim/forms/bulk_edit.py:933 netbox/dcim/forms/bulk_import.py:1386 -#: netbox/dcim/forms/filtersets.py:1185 -#: netbox/templates/dcim/powerfeed.html:95 +#: dcim/forms/bulk_edit.py:933 dcim/forms/bulk_import.py:1386 +#: dcim/forms/filtersets.py:1185 templates/dcim/powerfeed.html:95 msgid "Phase" msgstr "相位" -#: netbox/dcim/forms/bulk_edit.py:939 netbox/dcim/forms/filtersets.py:1190 -#: netbox/templates/dcim/powerfeed.html:87 +#: dcim/forms/bulk_edit.py:939 dcim/forms/filtersets.py:1190 +#: templates/dcim/powerfeed.html:87 msgid "Voltage" msgstr "电压" -#: netbox/dcim/forms/bulk_edit.py:943 netbox/dcim/forms/filtersets.py:1194 -#: netbox/templates/dcim/powerfeed.html:91 +#: dcim/forms/bulk_edit.py:943 dcim/forms/filtersets.py:1194 +#: templates/dcim/powerfeed.html:91 msgid "Amperage" msgstr "电流" -#: netbox/dcim/forms/bulk_edit.py:947 netbox/dcim/forms/filtersets.py:1198 +#: dcim/forms/bulk_edit.py:947 dcim/forms/filtersets.py:1198 msgid "Max utilization" msgstr "最大利用率" -#: netbox/dcim/forms/bulk_edit.py:1036 +#: dcim/forms/bulk_edit.py:1036 msgid "Maximum draw" msgstr "最大功率" -#: netbox/dcim/forms/bulk_edit.py:1039 -#: netbox/dcim/models/device_component_templates.py:282 -#: netbox/dcim/models/device_components.py:356 +#: dcim/forms/bulk_edit.py:1039 dcim/models/device_component_templates.py:282 +#: dcim/models/device_components.py:356 msgid "Maximum power draw (watts)" msgstr "最大功率(瓦)" -#: netbox/dcim/forms/bulk_edit.py:1042 +#: dcim/forms/bulk_edit.py:1042 msgid "Allocated draw" msgstr "分配功率" -#: netbox/dcim/forms/bulk_edit.py:1045 -#: netbox/dcim/models/device_component_templates.py:289 -#: netbox/dcim/models/device_components.py:363 +#: dcim/forms/bulk_edit.py:1045 dcim/models/device_component_templates.py:289 +#: dcim/models/device_components.py:363 msgid "Allocated power draw (watts)" msgstr "分配功率(瓦)" -#: netbox/dcim/forms/bulk_edit.py:1078 netbox/dcim/forms/bulk_import.py:786 -#: netbox/dcim/forms/model_forms.py:953 netbox/dcim/forms/model_forms.py:1278 -#: netbox/dcim/forms/model_forms.py:1567 netbox/dcim/forms/object_import.py:55 +#: dcim/forms/bulk_edit.py:1078 dcim/forms/bulk_import.py:786 +#: dcim/forms/model_forms.py:953 dcim/forms/model_forms.py:1278 +#: dcim/forms/model_forms.py:1567 dcim/forms/object_import.py:55 msgid "Power port" msgstr "电源接口" -#: netbox/dcim/forms/bulk_edit.py:1083 netbox/dcim/forms/bulk_import.py:793 +#: dcim/forms/bulk_edit.py:1083 dcim/forms/bulk_import.py:793 msgid "Feed leg" msgstr "馈电线路" -#: netbox/dcim/forms/bulk_edit.py:1129 netbox/dcim/forms/bulk_edit.py:1440 +#: dcim/forms/bulk_edit.py:1129 dcim/forms/bulk_edit.py:1440 msgid "Management only" msgstr "仅限管理" -#: netbox/dcim/forms/bulk_edit.py:1139 netbox/dcim/forms/bulk_edit.py:1446 -#: netbox/dcim/forms/bulk_import.py:876 netbox/dcim/forms/filtersets.py:1394 -#: netbox/dcim/forms/object_import.py:90 -#: netbox/dcim/models/device_component_templates.py:437 -#: netbox/dcim/models/device_components.py:670 +#: dcim/forms/bulk_edit.py:1139 dcim/forms/bulk_edit.py:1446 +#: dcim/forms/bulk_import.py:876 dcim/forms/filtersets.py:1394 +#: dcim/forms/object_import.py:90 +#: dcim/models/device_component_templates.py:437 +#: dcim/models/device_components.py:670 msgid "PoE mode" msgstr "PoE模式" -#: netbox/dcim/forms/bulk_edit.py:1145 netbox/dcim/forms/bulk_edit.py:1452 -#: netbox/dcim/forms/bulk_import.py:882 netbox/dcim/forms/filtersets.py:1399 -#: netbox/dcim/forms/object_import.py:95 -#: netbox/dcim/models/device_component_templates.py:443 -#: netbox/dcim/models/device_components.py:676 +#: dcim/forms/bulk_edit.py:1145 dcim/forms/bulk_edit.py:1452 +#: dcim/forms/bulk_import.py:882 dcim/forms/filtersets.py:1399 +#: dcim/forms/object_import.py:95 +#: dcim/models/device_component_templates.py:443 +#: dcim/models/device_components.py:676 msgid "PoE type" msgstr "PoE类型" -#: netbox/dcim/forms/bulk_edit.py:1151 netbox/dcim/forms/filtersets.py:1404 -#: netbox/dcim/forms/object_import.py:100 +#: dcim/forms/bulk_edit.py:1151 dcim/forms/filtersets.py:1404 +#: dcim/forms/object_import.py:100 msgid "Wireless role" msgstr "无线角色" -#: netbox/dcim/forms/bulk_edit.py:1288 netbox/dcim/forms/model_forms.py:669 -#: netbox/dcim/forms/model_forms.py:1223 netbox/dcim/tables/devices.py:313 -#: netbox/templates/dcim/consoleport.html:24 -#: netbox/templates/dcim/consoleserverport.html:24 -#: netbox/templates/dcim/frontport.html:24 -#: netbox/templates/dcim/interface.html:34 -#: netbox/templates/dcim/module.html:54 -#: netbox/templates/dcim/modulebay.html:26 -#: netbox/templates/dcim/modulebay.html:58 -#: netbox/templates/dcim/poweroutlet.html:24 -#: netbox/templates/dcim/powerport.html:24 -#: netbox/templates/dcim/rearport.html:24 +#: dcim/forms/bulk_edit.py:1288 dcim/forms/model_forms.py:669 +#: dcim/forms/model_forms.py:1223 dcim/tables/devices.py:313 +#: templates/dcim/consoleport.html:24 templates/dcim/consoleserverport.html:24 +#: templates/dcim/frontport.html:24 templates/dcim/interface.html:34 +#: templates/dcim/module.html:54 templates/dcim/modulebay.html:26 +#: templates/dcim/modulebay.html:58 templates/dcim/poweroutlet.html:24 +#: templates/dcim/powerport.html:24 templates/dcim/rearport.html:24 msgid "Module" msgstr "模块" -#: netbox/dcim/forms/bulk_edit.py:1420 netbox/dcim/tables/devices.py:665 -#: netbox/templates/dcim/interface.html:110 +#: dcim/forms/bulk_edit.py:1420 dcim/tables/devices.py:665 +#: templates/dcim/interface.html:110 msgid "LAG" msgstr "链路聚合" -#: netbox/dcim/forms/bulk_edit.py:1425 netbox/dcim/forms/model_forms.py:1305 +#: dcim/forms/bulk_edit.py:1425 dcim/forms/model_forms.py:1305 msgid "Virtual device contexts" msgstr "设备虚拟上下文" -#: netbox/dcim/forms/bulk_edit.py:1431 netbox/dcim/forms/bulk_import.py:714 -#: netbox/dcim/forms/bulk_import.py:740 netbox/dcim/forms/filtersets.py:1252 -#: netbox/dcim/forms/filtersets.py:1277 netbox/dcim/forms/filtersets.py:1358 -#: netbox/dcim/tables/devices.py:610 -#: netbox/templates/circuits/inc/circuit_termination_fields.html:67 -#: netbox/templates/dcim/consoleport.html:40 -#: netbox/templates/dcim/consoleserverport.html:40 +#: dcim/forms/bulk_edit.py:1431 dcim/forms/bulk_import.py:714 +#: dcim/forms/bulk_import.py:740 dcim/forms/filtersets.py:1252 +#: dcim/forms/filtersets.py:1277 dcim/forms/filtersets.py:1358 +#: dcim/tables/devices.py:610 +#: templates/circuits/inc/circuit_termination_fields.html:67 +#: templates/dcim/consoleport.html:40 templates/dcim/consoleserverport.html:40 msgid "Speed" msgstr "速率" -#: netbox/dcim/forms/bulk_edit.py:1460 netbox/dcim/forms/bulk_import.py:885 -#: netbox/templates/vpn/ikepolicy.html:25 -#: netbox/templates/vpn/ipsecprofile.html:21 -#: netbox/templates/vpn/ipsecprofile.html:48 -#: netbox/virtualization/forms/bulk_edit.py:233 -#: netbox/virtualization/forms/bulk_import.py:165 -#: netbox/vpn/forms/bulk_edit.py:146 netbox/vpn/forms/bulk_edit.py:232 -#: netbox/vpn/forms/bulk_import.py:176 netbox/vpn/forms/bulk_import.py:234 -#: netbox/vpn/forms/filtersets.py:135 netbox/vpn/forms/filtersets.py:178 -#: netbox/vpn/forms/filtersets.py:192 netbox/vpn/tables/crypto.py:64 -#: netbox/vpn/tables/crypto.py:162 +#: dcim/forms/bulk_edit.py:1460 dcim/forms/bulk_import.py:885 +#: templates/vpn/ikepolicy.html:25 templates/vpn/ipsecprofile.html:21 +#: templates/vpn/ipsecprofile.html:48 virtualization/forms/bulk_edit.py:233 +#: virtualization/forms/bulk_import.py:165 vpn/forms/bulk_edit.py:146 +#: vpn/forms/bulk_edit.py:232 vpn/forms/bulk_import.py:176 +#: vpn/forms/bulk_import.py:234 vpn/forms/filtersets.py:135 +#: vpn/forms/filtersets.py:178 vpn/forms/filtersets.py:192 +#: vpn/tables/crypto.py:64 vpn/tables/crypto.py:162 msgid "Mode" msgstr "模式" -#: netbox/dcim/forms/bulk_edit.py:1468 netbox/dcim/forms/model_forms.py:1354 -#: netbox/ipam/forms/bulk_import.py:178 netbox/ipam/forms/filtersets.py:498 -#: netbox/ipam/models/vlans.py:84 netbox/virtualization/forms/bulk_edit.py:240 -#: netbox/virtualization/forms/model_forms.py:321 +#: dcim/forms/bulk_edit.py:1468 dcim/forms/model_forms.py:1354 +#: ipam/forms/bulk_import.py:178 ipam/forms/filtersets.py:498 +#: ipam/models/vlans.py:84 virtualization/forms/bulk_edit.py:240 +#: virtualization/forms/model_forms.py:321 msgid "VLAN group" msgstr "VLAN 组" -#: netbox/dcim/forms/bulk_edit.py:1476 netbox/dcim/forms/model_forms.py:1360 -#: netbox/dcim/tables/devices.py:579 -#: netbox/virtualization/forms/bulk_edit.py:248 -#: netbox/virtualization/forms/model_forms.py:326 +#: dcim/forms/bulk_edit.py:1476 dcim/forms/model_forms.py:1360 +#: dcim/tables/devices.py:579 virtualization/forms/bulk_edit.py:248 +#: virtualization/forms/model_forms.py:326 msgid "Untagged VLAN" msgstr "未标记的VLAN" -#: netbox/dcim/forms/bulk_edit.py:1484 netbox/dcim/forms/model_forms.py:1369 -#: netbox/dcim/tables/devices.py:585 -#: netbox/virtualization/forms/bulk_edit.py:256 -#: netbox/virtualization/forms/model_forms.py:335 +#: dcim/forms/bulk_edit.py:1484 dcim/forms/model_forms.py:1369 +#: dcim/tables/devices.py:585 virtualization/forms/bulk_edit.py:256 +#: virtualization/forms/model_forms.py:335 msgid "Tagged VLANs" msgstr "已标记 VLANs" -#: netbox/dcim/forms/bulk_edit.py:1494 netbox/dcim/forms/model_forms.py:1341 +#: dcim/forms/bulk_edit.py:1494 dcim/forms/model_forms.py:1341 msgid "Wireless LAN group" msgstr "无线局域网组" -#: netbox/dcim/forms/bulk_edit.py:1499 netbox/dcim/forms/model_forms.py:1346 -#: netbox/dcim/tables/devices.py:619 netbox/netbox/navigation/menu.py:146 -#: netbox/templates/dcim/interface.html:280 -#: netbox/wireless/tables/wirelesslan.py:24 +#: dcim/forms/bulk_edit.py:1499 dcim/forms/model_forms.py:1346 +#: dcim/tables/devices.py:619 netbox/navigation/menu.py:146 +#: templates/dcim/interface.html:280 wireless/tables/wirelesslan.py:24 msgid "Wireless LANs" msgstr "无线局域网" -#: netbox/dcim/forms/bulk_edit.py:1508 netbox/dcim/forms/filtersets.py:1328 -#: netbox/dcim/forms/model_forms.py:1390 netbox/ipam/forms/bulk_edit.py:285 -#: netbox/ipam/forms/bulk_edit.py:377 netbox/ipam/forms/filtersets.py:169 -#: netbox/templates/dcim/interface.html:122 -#: netbox/templates/ipam/prefix.html:95 -#: netbox/virtualization/forms/model_forms.py:349 +#: dcim/forms/bulk_edit.py:1508 dcim/forms/filtersets.py:1328 +#: dcim/forms/model_forms.py:1390 ipam/forms/bulk_edit.py:286 +#: ipam/forms/bulk_edit.py:378 ipam/forms/filtersets.py:169 +#: templates/dcim/interface.html:122 templates/ipam/prefix.html:95 +#: virtualization/forms/model_forms.py:349 msgid "Addressing" msgstr "寻址" -#: netbox/dcim/forms/bulk_edit.py:1509 netbox/dcim/forms/filtersets.py:720 -#: netbox/dcim/forms/model_forms.py:1391 -#: netbox/virtualization/forms/model_forms.py:350 +#: dcim/forms/bulk_edit.py:1509 dcim/forms/filtersets.py:720 +#: dcim/forms/model_forms.py:1391 virtualization/forms/model_forms.py:350 msgid "Operation" msgstr "操作" -#: netbox/dcim/forms/bulk_edit.py:1510 netbox/dcim/forms/filtersets.py:1329 -#: netbox/dcim/forms/model_forms.py:987 netbox/dcim/forms/model_forms.py:1393 +#: dcim/forms/bulk_edit.py:1510 dcim/forms/filtersets.py:1329 +#: dcim/forms/model_forms.py:987 dcim/forms/model_forms.py:1393 msgid "PoE" msgstr "PoE" -#: netbox/dcim/forms/bulk_edit.py:1511 netbox/dcim/forms/model_forms.py:1392 -#: netbox/templates/dcim/interface.html:99 -#: netbox/virtualization/forms/bulk_edit.py:267 -#: netbox/virtualization/forms/model_forms.py:351 +#: dcim/forms/bulk_edit.py:1511 dcim/forms/model_forms.py:1392 +#: templates/dcim/interface.html:99 virtualization/forms/bulk_edit.py:267 +#: virtualization/forms/model_forms.py:351 msgid "Related Interfaces" msgstr "相关接口" -#: netbox/dcim/forms/bulk_edit.py:1512 netbox/dcim/forms/model_forms.py:1394 -#: netbox/virtualization/forms/bulk_edit.py:268 -#: netbox/virtualization/forms/model_forms.py:352 +#: dcim/forms/bulk_edit.py:1512 dcim/forms/model_forms.py:1394 +#: virtualization/forms/bulk_edit.py:268 +#: virtualization/forms/model_forms.py:352 msgid "802.1Q Switching" msgstr "802.1Q 交换" -#: netbox/dcim/forms/bulk_edit.py:1574 netbox/dcim/forms/bulk_edit.py:1576 +#: dcim/forms/bulk_edit.py:1574 dcim/forms/bulk_edit.py:1576 msgid "Interface mode must be specified to assign VLANs" msgstr "该接口模式下,必须指定VLAN" -#: netbox/dcim/forms/bulk_edit.py:1581 netbox/dcim/forms/common.py:50 +#: dcim/forms/bulk_edit.py:1581 dcim/forms/common.py:50 msgid "An access interface cannot have tagged VLANs assigned." msgstr "access接口不允许指定Tag的VLAN" -#: netbox/dcim/forms/bulk_import.py:64 +#: dcim/forms/bulk_import.py:64 msgid "Name of parent region" msgstr "上一级区域的名称" -#: netbox/dcim/forms/bulk_import.py:78 +#: dcim/forms/bulk_import.py:78 msgid "Name of parent site group" msgstr "上一级站点组的名称" -#: netbox/dcim/forms/bulk_import.py:97 +#: dcim/forms/bulk_import.py:97 msgid "Assigned region" msgstr "指定地区" -#: netbox/dcim/forms/bulk_import.py:104 netbox/tenancy/forms/bulk_import.py:44 -#: netbox/tenancy/forms/bulk_import.py:85 -#: netbox/wireless/forms/bulk_import.py:40 +#: dcim/forms/bulk_import.py:104 tenancy/forms/bulk_import.py:44 +#: tenancy/forms/bulk_import.py:85 wireless/forms/bulk_import.py:40 msgid "Assigned group" msgstr "指定组" -#: netbox/dcim/forms/bulk_import.py:123 +#: dcim/forms/bulk_import.py:123 msgid "available options" msgstr "可用选项" -#: netbox/dcim/forms/bulk_import.py:134 netbox/dcim/forms/bulk_import.py:543 -#: netbox/dcim/forms/bulk_import.py:1342 netbox/ipam/forms/bulk_import.py:175 -#: netbox/ipam/forms/bulk_import.py:433 -#: netbox/virtualization/forms/bulk_import.py:63 -#: netbox/virtualization/forms/bulk_import.py:89 +#: dcim/forms/bulk_import.py:134 dcim/forms/bulk_import.py:543 +#: dcim/forms/bulk_import.py:1342 ipam/forms/bulk_import.py:175 +#: ipam/forms/bulk_import.py:433 virtualization/forms/bulk_import.py:63 +#: virtualization/forms/bulk_import.py:89 msgid "Assigned site" msgstr "指定站点" -#: netbox/dcim/forms/bulk_import.py:141 +#: dcim/forms/bulk_import.py:141 msgid "Parent location" msgstr "上一级位置" -#: netbox/dcim/forms/bulk_import.py:143 +#: dcim/forms/bulk_import.py:143 msgid "Location not found." msgstr "未找到该位置" -#: netbox/dcim/forms/bulk_import.py:185 +#: dcim/forms/bulk_import.py:185 msgid "The manufacturer of this rack type" msgstr "这种机架类型的制造商" -#: netbox/dcim/forms/bulk_import.py:196 +#: dcim/forms/bulk_import.py:196 msgid "The lowest-numbered position in the rack" msgstr "机架中编号最低的位置" -#: netbox/dcim/forms/bulk_import.py:201 netbox/dcim/forms/bulk_import.py:268 +#: dcim/forms/bulk_import.py:201 dcim/forms/bulk_import.py:268 msgid "Rail-to-rail width (in inches)" msgstr "设备安装宽度(英寸)" -#: netbox/dcim/forms/bulk_import.py:207 netbox/dcim/forms/bulk_import.py:274 +#: dcim/forms/bulk_import.py:207 dcim/forms/bulk_import.py:274 msgid "Unit for outer dimensions" msgstr "外形尺寸单位" -#: netbox/dcim/forms/bulk_import.py:213 netbox/dcim/forms/bulk_import.py:286 +#: dcim/forms/bulk_import.py:213 dcim/forms/bulk_import.py:286 msgid "Unit for rack weights" msgstr "机柜重量单位" -#: netbox/dcim/forms/bulk_import.py:245 +#: dcim/forms/bulk_import.py:245 msgid "Name of assigned tenant" msgstr "指定租户名称" -#: netbox/dcim/forms/bulk_import.py:257 +#: dcim/forms/bulk_import.py:257 msgid "Name of assigned role" msgstr "指定规则名称" -#: netbox/dcim/forms/bulk_import.py:280 netbox/dcim/forms/bulk_import.py:413 -#: netbox/dcim/forms/bulk_import.py:583 +#: dcim/forms/bulk_import.py:280 dcim/forms/bulk_import.py:413 +#: dcim/forms/bulk_import.py:583 msgid "Airflow direction" msgstr "风道方向" -#: netbox/dcim/forms/bulk_import.py:312 +#: dcim/forms/bulk_import.py:312 msgid "Parent site" msgstr "上一级站点" -#: netbox/dcim/forms/bulk_import.py:319 netbox/dcim/forms/bulk_import.py:1355 +#: dcim/forms/bulk_import.py:319 dcim/forms/bulk_import.py:1355 msgid "Rack's location (if any)" msgstr "机柜所在位置(如果有)" -#: netbox/dcim/forms/bulk_import.py:328 netbox/dcim/forms/model_forms.py:311 -#: netbox/dcim/tables/racks.py:222 -#: netbox/templates/dcim/rackreservation.html:12 -#: netbox/templates/dcim/rackreservation.html:45 +#: dcim/forms/bulk_import.py:328 dcim/forms/model_forms.py:311 +#: dcim/tables/racks.py:222 templates/dcim/rackreservation.html:12 +#: templates/dcim/rackreservation.html:45 msgid "Units" msgstr "单元(U)" -#: netbox/dcim/forms/bulk_import.py:331 +#: dcim/forms/bulk_import.py:331 msgid "Comma-separated list of individual unit numbers" msgstr "占用U位号列表,以逗号分隔" -#: netbox/dcim/forms/bulk_import.py:374 +#: dcim/forms/bulk_import.py:374 msgid "The manufacturer which produces this device type" msgstr "生产这种类型设备的制造商" -#: netbox/dcim/forms/bulk_import.py:381 +#: dcim/forms/bulk_import.py:381 msgid "The default platform for devices of this type (optional)" msgstr "此类型设备的默认平台(可选)" -#: netbox/dcim/forms/bulk_import.py:386 +#: dcim/forms/bulk_import.py:386 msgid "Device weight" msgstr "设备重量" -#: netbox/dcim/forms/bulk_import.py:392 +#: dcim/forms/bulk_import.py:392 msgid "Unit for device weight" msgstr "设备重量单位" -#: netbox/dcim/forms/bulk_import.py:418 +#: dcim/forms/bulk_import.py:418 msgid "Module weight" msgstr "模块重量" -#: netbox/dcim/forms/bulk_import.py:424 +#: dcim/forms/bulk_import.py:424 msgid "Unit for module weight" msgstr "模块重量单位" -#: netbox/dcim/forms/bulk_import.py:454 +#: dcim/forms/bulk_import.py:454 msgid "Limit platform assignments to this manufacturer" msgstr "限定此系统平台的制造商" -#: netbox/dcim/forms/bulk_import.py:476 netbox/dcim/forms/bulk_import.py:1425 -#: netbox/tenancy/forms/bulk_import.py:106 +#: dcim/forms/bulk_import.py:476 dcim/forms/bulk_import.py:1425 +#: tenancy/forms/bulk_import.py:106 msgid "Assigned role" msgstr "指定规则" -#: netbox/dcim/forms/bulk_import.py:489 +#: dcim/forms/bulk_import.py:489 msgid "Device type manufacturer" msgstr "设备制造商" -#: netbox/dcim/forms/bulk_import.py:495 +#: dcim/forms/bulk_import.py:495 msgid "Device type model" msgstr "设备型号" -#: netbox/dcim/forms/bulk_import.py:502 -#: netbox/virtualization/forms/bulk_import.py:126 +#: dcim/forms/bulk_import.py:502 virtualization/forms/bulk_import.py:126 msgid "Assigned platform" msgstr "指定系统平台" -#: netbox/dcim/forms/bulk_import.py:510 netbox/dcim/forms/bulk_import.py:514 -#: netbox/dcim/forms/model_forms.py:536 +#: dcim/forms/bulk_import.py:510 dcim/forms/bulk_import.py:514 +#: dcim/forms/model_forms.py:536 msgid "Virtual chassis" msgstr "堆叠" -#: netbox/dcim/forms/bulk_import.py:517 netbox/dcim/forms/filtersets.py:728 -#: netbox/dcim/forms/filtersets.py:898 netbox/dcim/forms/model_forms.py:522 -#: netbox/dcim/tables/devices.py:202 netbox/extras/filtersets.py:596 -#: netbox/extras/forms/filtersets.py:322 netbox/ipam/forms/bulk_edit.py:482 -#: netbox/ipam/forms/filtersets.py:415 netbox/ipam/forms/filtersets.py:447 -#: netbox/templates/dcim/device.html:239 -#: netbox/templates/virtualization/cluster.html:10 -#: netbox/templates/virtualization/virtualmachine.html:92 -#: netbox/templates/virtualization/virtualmachine.html:101 -#: netbox/virtualization/filtersets.py:157 -#: netbox/virtualization/filtersets.py:277 -#: netbox/virtualization/forms/bulk_edit.py:129 -#: netbox/virtualization/forms/bulk_import.py:92 -#: netbox/virtualization/forms/filtersets.py:99 -#: netbox/virtualization/forms/filtersets.py:123 -#: netbox/virtualization/forms/filtersets.py:204 -#: netbox/virtualization/forms/model_forms.py:79 -#: netbox/virtualization/forms/model_forms.py:176 -#: netbox/virtualization/tables/virtualmachines.py:67 +#: dcim/forms/bulk_import.py:517 dcim/forms/filtersets.py:728 +#: dcim/forms/filtersets.py:898 dcim/forms/model_forms.py:522 +#: dcim/tables/devices.py:202 extras/filtersets.py:596 +#: extras/forms/filtersets.py:322 ipam/forms/filtersets.py:415 +#: ipam/forms/filtersets.py:447 templates/dcim/device.html:239 +#: templates/virtualization/cluster.html:10 +#: templates/virtualization/virtualmachine.html:92 +#: templates/virtualization/virtualmachine.html:101 +#: virtualization/filtersets.py:157 virtualization/filtersets.py:277 +#: virtualization/forms/bulk_edit.py:129 +#: virtualization/forms/bulk_import.py:92 +#: virtualization/forms/filtersets.py:99 +#: virtualization/forms/filtersets.py:123 +#: virtualization/forms/filtersets.py:204 +#: virtualization/forms/model_forms.py:79 +#: virtualization/forms/model_forms.py:176 +#: virtualization/tables/virtualmachines.py:67 msgid "Cluster" msgstr "集群" -#: netbox/dcim/forms/bulk_import.py:521 +#: dcim/forms/bulk_import.py:521 msgid "Virtualization cluster" msgstr "虚拟化集群" -#: netbox/dcim/forms/bulk_import.py:550 +#: dcim/forms/bulk_import.py:550 msgid "Assigned location (if any)" msgstr "指定位置(如果有)" -#: netbox/dcim/forms/bulk_import.py:557 +#: dcim/forms/bulk_import.py:557 msgid "Assigned rack (if any)" msgstr "指定机柜(如果有)" -#: netbox/dcim/forms/bulk_import.py:560 +#: dcim/forms/bulk_import.py:560 msgid "Face" msgstr "朝向" -#: netbox/dcim/forms/bulk_import.py:563 +#: dcim/forms/bulk_import.py:563 msgid "Mounted rack face" msgstr "机架正面安装" -#: netbox/dcim/forms/bulk_import.py:570 +#: dcim/forms/bulk_import.py:570 msgid "Parent device (for child devices)" msgstr "上一级设备(用于子设备)" -#: netbox/dcim/forms/bulk_import.py:573 +#: dcim/forms/bulk_import.py:573 msgid "Device bay" msgstr "设备托架" -#: netbox/dcim/forms/bulk_import.py:577 +#: dcim/forms/bulk_import.py:577 msgid "Device bay in which this device is installed (for child devices)" msgstr "安装此设备的设备托架(用于子设备)" -#: netbox/dcim/forms/bulk_import.py:644 +#: dcim/forms/bulk_import.py:644 msgid "The device in which this module is installed" msgstr "安装此模块的设备" -#: netbox/dcim/forms/bulk_import.py:647 netbox/dcim/forms/model_forms.py:640 +#: dcim/forms/bulk_import.py:647 dcim/forms/model_forms.py:640 msgid "Module bay" msgstr "设备板卡插槽" -#: netbox/dcim/forms/bulk_import.py:650 +#: dcim/forms/bulk_import.py:650 msgid "The module bay in which this module is installed" msgstr "安装此模块的模块托架" -#: netbox/dcim/forms/bulk_import.py:656 +#: dcim/forms/bulk_import.py:656 msgid "The type of module" msgstr "模块类型" -#: netbox/dcim/forms/bulk_import.py:664 netbox/dcim/forms/model_forms.py:656 +#: dcim/forms/bulk_import.py:664 dcim/forms/model_forms.py:656 msgid "Replicate components" msgstr "组件冗余" -#: netbox/dcim/forms/bulk_import.py:666 +#: dcim/forms/bulk_import.py:666 msgid "" "Automatically populate components associated with this module type (enabled " "by default)" msgstr "自动填充此模块类型关联的组件(默认启用)" -#: netbox/dcim/forms/bulk_import.py:669 netbox/dcim/forms/model_forms.py:662 +#: dcim/forms/bulk_import.py:669 dcim/forms/model_forms.py:662 msgid "Adopt components" msgstr "选定组件" -#: netbox/dcim/forms/bulk_import.py:671 netbox/dcim/forms/model_forms.py:665 +#: dcim/forms/bulk_import.py:671 dcim/forms/model_forms.py:665 msgid "Adopt already existing components" msgstr "选定已经存在的组件" -#: netbox/dcim/forms/bulk_import.py:711 netbox/dcim/forms/bulk_import.py:737 -#: netbox/dcim/forms/bulk_import.py:763 +#: dcim/forms/bulk_import.py:711 dcim/forms/bulk_import.py:737 +#: dcim/forms/bulk_import.py:763 msgid "Port type" msgstr "端口类型" -#: netbox/dcim/forms/bulk_import.py:719 netbox/dcim/forms/bulk_import.py:745 +#: dcim/forms/bulk_import.py:719 dcim/forms/bulk_import.py:745 msgid "Port speed in bps" msgstr "端口速率(bps)" -#: netbox/dcim/forms/bulk_import.py:783 +#: dcim/forms/bulk_import.py:783 msgid "Outlet type" msgstr "插座类型" -#: netbox/dcim/forms/bulk_import.py:790 +#: dcim/forms/bulk_import.py:790 msgid "Local power port which feeds this outlet" msgstr "该插座供电的电源端口" -#: netbox/dcim/forms/bulk_import.py:796 +#: dcim/forms/bulk_import.py:796 msgid "Electrical phase (for three-phase circuits)" msgstr "供电相位(用于三相电)" -#: netbox/dcim/forms/bulk_import.py:837 netbox/dcim/forms/model_forms.py:1316 -#: netbox/virtualization/forms/bulk_import.py:155 -#: netbox/virtualization/forms/model_forms.py:305 +#: dcim/forms/bulk_import.py:837 dcim/forms/model_forms.py:1316 +#: virtualization/forms/bulk_import.py:155 +#: virtualization/forms/model_forms.py:305 msgid "Parent interface" msgstr "上一级接口" -#: netbox/dcim/forms/bulk_import.py:844 netbox/dcim/forms/model_forms.py:1324 -#: netbox/virtualization/forms/bulk_import.py:162 -#: netbox/virtualization/forms/model_forms.py:313 +#: dcim/forms/bulk_import.py:844 dcim/forms/model_forms.py:1324 +#: virtualization/forms/bulk_import.py:162 +#: virtualization/forms/model_forms.py:313 msgid "Bridged interface" msgstr "桥接接口" -#: netbox/dcim/forms/bulk_import.py:847 +#: dcim/forms/bulk_import.py:847 msgid "Lag" msgstr "聚合接口" -#: netbox/dcim/forms/bulk_import.py:851 +#: dcim/forms/bulk_import.py:851 msgid "Parent LAG interface" msgstr "上一级聚合接口" -#: netbox/dcim/forms/bulk_import.py:854 +#: dcim/forms/bulk_import.py:854 msgid "Vdcs" msgstr "Vdcs" -#: netbox/dcim/forms/bulk_import.py:859 +#: dcim/forms/bulk_import.py:859 msgid "VDC names separated by commas, encased with double quotes. Example:" msgstr "VDC名称,用逗号分隔,用双引号包含。例如:" -#: netbox/dcim/forms/bulk_import.py:865 +#: dcim/forms/bulk_import.py:865 msgid "Physical medium" msgstr "物理接口类型" -#: netbox/dcim/forms/bulk_import.py:868 netbox/dcim/forms/filtersets.py:1365 +#: dcim/forms/bulk_import.py:868 dcim/forms/filtersets.py:1365 msgid "Duplex" msgstr "双工" -#: netbox/dcim/forms/bulk_import.py:873 +#: dcim/forms/bulk_import.py:873 msgid "Poe mode" msgstr "POE模式" -#: netbox/dcim/forms/bulk_import.py:879 +#: dcim/forms/bulk_import.py:879 msgid "Poe type" msgstr "POE类型" -#: netbox/dcim/forms/bulk_import.py:888 -#: netbox/virtualization/forms/bulk_import.py:168 +#: dcim/forms/bulk_import.py:888 virtualization/forms/bulk_import.py:168 msgid "IEEE 802.1Q operational mode (for L2 interfaces)" msgstr "IEEE 802.1Q 运作模式(针对二层接口)" -#: netbox/dcim/forms/bulk_import.py:895 netbox/ipam/forms/bulk_import.py:161 -#: netbox/ipam/forms/bulk_import.py:247 netbox/ipam/forms/bulk_import.py:283 -#: netbox/ipam/forms/filtersets.py:201 netbox/ipam/forms/filtersets.py:277 -#: netbox/ipam/forms/filtersets.py:336 -#: netbox/virtualization/forms/bulk_import.py:175 +#: dcim/forms/bulk_import.py:895 ipam/forms/bulk_import.py:161 +#: ipam/forms/bulk_import.py:247 ipam/forms/bulk_import.py:283 +#: ipam/forms/filtersets.py:201 ipam/forms/filtersets.py:277 +#: ipam/forms/filtersets.py:336 virtualization/forms/bulk_import.py:175 msgid "Assigned VRF" msgstr "指定VRF" -#: netbox/dcim/forms/bulk_import.py:898 +#: dcim/forms/bulk_import.py:898 msgid "Rf role" msgstr "射频类型" -#: netbox/dcim/forms/bulk_import.py:901 +#: dcim/forms/bulk_import.py:901 msgid "Wireless role (AP/station)" msgstr "无线角色(AP/基站)" -#: netbox/dcim/forms/bulk_import.py:937 +#: dcim/forms/bulk_import.py:937 #, python-brace-format msgid "VDC {vdc} is not assigned to device {device}" msgstr "VDC {vdc} 没有指定给设备 {device}" -#: netbox/dcim/forms/bulk_import.py:951 netbox/dcim/forms/model_forms.py:1000 -#: netbox/dcim/forms/model_forms.py:1575 -#: netbox/dcim/forms/object_import.py:117 +#: dcim/forms/bulk_import.py:951 dcim/forms/model_forms.py:1000 +#: dcim/forms/model_forms.py:1575 dcim/forms/object_import.py:117 msgid "Rear port" msgstr "后置端口" -#: netbox/dcim/forms/bulk_import.py:954 +#: dcim/forms/bulk_import.py:954 msgid "Corresponding rear port" msgstr "对应后置端口" -#: netbox/dcim/forms/bulk_import.py:959 netbox/dcim/forms/bulk_import.py:1000 -#: netbox/dcim/forms/bulk_import.py:1216 +#: dcim/forms/bulk_import.py:959 dcim/forms/bulk_import.py:1000 +#: dcim/forms/bulk_import.py:1216 msgid "Physical medium classification" msgstr "物理端口类型" -#: netbox/dcim/forms/bulk_import.py:1028 netbox/dcim/tables/devices.py:822 +#: dcim/forms/bulk_import.py:1028 dcim/tables/devices.py:822 msgid "Installed device" msgstr "安装设备" -#: netbox/dcim/forms/bulk_import.py:1032 +#: dcim/forms/bulk_import.py:1032 msgid "Child device installed within this bay" msgstr "此托架内安装的子设备" -#: netbox/dcim/forms/bulk_import.py:1034 +#: dcim/forms/bulk_import.py:1034 msgid "Child device not found." msgstr "子设备未找到" -#: netbox/dcim/forms/bulk_import.py:1092 +#: dcim/forms/bulk_import.py:1092 msgid "Parent inventory item" msgstr "上一级库存项" -#: netbox/dcim/forms/bulk_import.py:1095 +#: dcim/forms/bulk_import.py:1095 msgid "Component type" msgstr "组件类型" -#: netbox/dcim/forms/bulk_import.py:1099 +#: dcim/forms/bulk_import.py:1099 msgid "Component Type" msgstr "组件类型" -#: netbox/dcim/forms/bulk_import.py:1102 +#: dcim/forms/bulk_import.py:1102 msgid "Compnent name" msgstr "组件名称" -#: netbox/dcim/forms/bulk_import.py:1104 +#: dcim/forms/bulk_import.py:1104 msgid "Component Name" msgstr "组件名称" -#: netbox/dcim/forms/bulk_import.py:1146 +#: dcim/forms/bulk_import.py:1146 #, python-brace-format msgid "Component not found: {device} - {component_name}" msgstr "组件未找到: {device} - {component_name}" -#: netbox/dcim/forms/bulk_import.py:1171 +#: dcim/forms/bulk_import.py:1171 msgid "Side A device" msgstr "A端设备" -#: netbox/dcim/forms/bulk_import.py:1174 netbox/dcim/forms/bulk_import.py:1192 +#: dcim/forms/bulk_import.py:1174 dcim/forms/bulk_import.py:1192 msgid "Device name" msgstr "设备名字" -#: netbox/dcim/forms/bulk_import.py:1177 +#: dcim/forms/bulk_import.py:1177 msgid "Side A type" msgstr "A端线缆类型" -#: netbox/dcim/forms/bulk_import.py:1180 netbox/dcim/forms/bulk_import.py:1198 +#: dcim/forms/bulk_import.py:1180 dcim/forms/bulk_import.py:1198 msgid "Termination type" msgstr "线缆接口类型" -#: netbox/dcim/forms/bulk_import.py:1183 +#: dcim/forms/bulk_import.py:1183 msgid "Side A name" msgstr "A端设备名称" -#: netbox/dcim/forms/bulk_import.py:1184 netbox/dcim/forms/bulk_import.py:1202 +#: dcim/forms/bulk_import.py:1184 dcim/forms/bulk_import.py:1202 msgid "Termination name" msgstr "线缆类型名称" -#: netbox/dcim/forms/bulk_import.py:1189 +#: dcim/forms/bulk_import.py:1189 msgid "Side B device" msgstr "B端设备" -#: netbox/dcim/forms/bulk_import.py:1195 +#: dcim/forms/bulk_import.py:1195 msgid "Side B type" msgstr "B端线缆类型" -#: netbox/dcim/forms/bulk_import.py:1201 +#: dcim/forms/bulk_import.py:1201 msgid "Side B name" msgstr "B端设备名称" -#: netbox/dcim/forms/bulk_import.py:1210 -#: netbox/wireless/forms/bulk_import.py:86 +#: dcim/forms/bulk_import.py:1210 wireless/forms/bulk_import.py:86 msgid "Connection status" msgstr "连接状态" -#: netbox/dcim/forms/bulk_import.py:1262 +#: dcim/forms/bulk_import.py:1262 #, python-brace-format msgid "Side {side_upper}: {device} {termination_object} is already connected" msgstr " {side_upper}端: {device} {termination_object}已连接" -#: netbox/dcim/forms/bulk_import.py:1268 +#: dcim/forms/bulk_import.py:1268 #, python-brace-format msgid "{side_upper} side termination not found: {device} {name}" msgstr "{side_upper} 端接口类型未发现: {device} {name}" -#: netbox/dcim/forms/bulk_import.py:1293 netbox/dcim/forms/model_forms.py:785 -#: netbox/dcim/tables/devices.py:1027 netbox/templates/dcim/device.html:132 -#: netbox/templates/dcim/virtualchassis.html:27 -#: netbox/templates/dcim/virtualchassis.html:67 +#: dcim/forms/bulk_import.py:1293 dcim/forms/model_forms.py:785 +#: dcim/tables/devices.py:1027 templates/dcim/device.html:132 +#: templates/dcim/virtualchassis.html:27 templates/dcim/virtualchassis.html:67 msgid "Master" msgstr "Master" -#: netbox/dcim/forms/bulk_import.py:1297 +#: dcim/forms/bulk_import.py:1297 msgid "Master device" msgstr "主设备" -#: netbox/dcim/forms/bulk_import.py:1314 +#: dcim/forms/bulk_import.py:1314 msgid "Name of parent site" msgstr "父站点名称" -#: netbox/dcim/forms/bulk_import.py:1348 +#: dcim/forms/bulk_import.py:1348 msgid "Upstream power panel" msgstr "上一级电源面板" -#: netbox/dcim/forms/bulk_import.py:1378 +#: dcim/forms/bulk_import.py:1378 msgid "Primary or redundant" msgstr "主线路/备用线路" -#: netbox/dcim/forms/bulk_import.py:1383 +#: dcim/forms/bulk_import.py:1383 msgid "Supply type (AC/DC)" msgstr "供应类型(AC/DC)" -#: netbox/dcim/forms/bulk_import.py:1388 +#: dcim/forms/bulk_import.py:1388 msgid "Single or three-phase" msgstr "单相或三相" -#: netbox/dcim/forms/bulk_import.py:1439 netbox/dcim/forms/model_forms.py:1670 -#: netbox/templates/dcim/device.html:190 -#: netbox/templates/dcim/virtualdevicecontext.html:30 -#: netbox/templates/virtualization/virtualmachine.html:52 +#: dcim/forms/bulk_import.py:1439 dcim/forms/model_forms.py:1670 +#: templates/dcim/device.html:190 templates/dcim/virtualdevicecontext.html:30 +#: templates/virtualization/virtualmachine.html:52 msgid "Primary IPv4" msgstr "主 IPv4" -#: netbox/dcim/forms/bulk_import.py:1443 +#: dcim/forms/bulk_import.py:1443 msgid "IPv4 address with mask, e.g. 1.2.3.4/24" msgstr "带掩码的 IPv4 地址,例如 1.2.3.4/24" -#: netbox/dcim/forms/bulk_import.py:1446 netbox/dcim/forms/model_forms.py:1679 -#: netbox/templates/dcim/device.html:206 -#: netbox/templates/dcim/virtualdevicecontext.html:41 -#: netbox/templates/virtualization/virtualmachine.html:68 +#: dcim/forms/bulk_import.py:1446 dcim/forms/model_forms.py:1679 +#: templates/dcim/device.html:206 templates/dcim/virtualdevicecontext.html:41 +#: templates/virtualization/virtualmachine.html:68 msgid "Primary IPv6" msgstr "主 IPv6" -#: netbox/dcim/forms/bulk_import.py:1450 +#: dcim/forms/bulk_import.py:1450 msgid "IPv6 address with prefix length, e.g. 2001:db8::1/64" msgstr "带有前缀长度的 IPv6 地址,例如 2001:db8:: 1/64" -#: netbox/dcim/forms/common.py:24 netbox/dcim/models/device_components.py:527 -#: netbox/templates/dcim/interface.html:57 -#: netbox/templates/virtualization/vminterface.html:55 -#: netbox/virtualization/forms/bulk_edit.py:225 +#: dcim/forms/common.py:24 dcim/models/device_components.py:527 +#: templates/dcim/interface.html:57 +#: templates/virtualization/vminterface.html:55 +#: virtualization/forms/bulk_edit.py:225 msgid "MTU" msgstr "MTU" -#: netbox/dcim/forms/common.py:65 +#: dcim/forms/common.py:65 #, python-brace-format msgid "" "The tagged VLANs ({vlans}) must belong to the same site as the interface's " "parent device/VM, or they must be global" msgstr "标记的VLAN ({vlans}) 必须与接口所属设备/虚拟机属于同一站点,或者是全局VLAN" -#: netbox/dcim/forms/common.py:126 +#: dcim/forms/common.py:126 msgid "" "Cannot install module with placeholder values in a module bay with no " "position defined." msgstr "无法在未定义位置的模块托架中安装具有占位符值的模块。" -#: netbox/dcim/forms/common.py:131 +#: dcim/forms/common.py:131 #, python-brace-format msgid "" "Cannot install module with placeholder values in a module bay tree {level} " "in tree but {tokens} placeholders given." msgstr "无法在模块月桂树中安装具有占位符值的模块 {level} 在树里但是 {tokens} 给定的占位符。" -#: netbox/dcim/forms/common.py:144 +#: dcim/forms/common.py:144 #, python-brace-format msgid "Cannot adopt {model} {name} as it already belongs to a module" msgstr "无法选定 {model} {name} ,因为它已属于某个模块" -#: netbox/dcim/forms/common.py:153 +#: dcim/forms/common.py:153 #, python-brace-format msgid "A {model} named {name} already exists" msgstr "名为 {name} 的 {model} 已存在" -#: netbox/dcim/forms/connections.py:49 netbox/dcim/forms/model_forms.py:738 -#: netbox/dcim/tables/power.py:66 -#: netbox/templates/dcim/inc/cable_termination.html:37 -#: netbox/templates/dcim/powerfeed.html:24 -#: netbox/templates/dcim/powerpanel.html:19 -#: netbox/templates/dcim/trace/powerpanel.html:4 +#: dcim/forms/connections.py:49 dcim/forms/model_forms.py:738 +#: dcim/tables/power.py:66 templates/dcim/inc/cable_termination.html:37 +#: templates/dcim/powerfeed.html:24 templates/dcim/powerpanel.html:19 +#: templates/dcim/trace/powerpanel.html:4 msgid "Power Panel" msgstr "电源面板" -#: netbox/dcim/forms/connections.py:58 netbox/dcim/forms/model_forms.py:765 -#: netbox/templates/dcim/powerfeed.html:21 -#: netbox/templates/dcim/powerport.html:80 +#: dcim/forms/connections.py:58 dcim/forms/model_forms.py:765 +#: templates/dcim/powerfeed.html:21 templates/dcim/powerport.html:80 msgid "Power Feed" msgstr "电力供给" -#: netbox/dcim/forms/connections.py:81 +#: dcim/forms/connections.py:81 msgid "Side" msgstr "端" -#: netbox/dcim/forms/filtersets.py:136 netbox/dcim/tables/devices.py:295 +#: dcim/forms/filtersets.py:136 dcim/tables/devices.py:295 msgid "Device Status" msgstr "设备状态" -#: netbox/dcim/forms/filtersets.py:149 +#: dcim/forms/filtersets.py:149 msgid "Parent region" msgstr "上一级地区" -#: netbox/dcim/forms/filtersets.py:163 netbox/tenancy/forms/bulk_import.py:28 -#: netbox/tenancy/forms/bulk_import.py:62 -#: netbox/tenancy/forms/filtersets.py:33 netbox/tenancy/forms/filtersets.py:62 -#: netbox/wireless/forms/bulk_import.py:25 -#: netbox/wireless/forms/filtersets.py:25 +#: dcim/forms/filtersets.py:163 tenancy/forms/bulk_import.py:28 +#: tenancy/forms/bulk_import.py:62 tenancy/forms/filtersets.py:33 +#: tenancy/forms/filtersets.py:62 wireless/forms/bulk_import.py:25 +#: wireless/forms/filtersets.py:25 msgid "Parent group" msgstr "上一级组" -#: netbox/dcim/forms/filtersets.py:242 netbox/templates/dcim/location.html:58 -#: netbox/templates/dcim/site.html:56 +#: dcim/forms/filtersets.py:242 templates/dcim/location.html:58 +#: templates/dcim/site.html:56 msgid "Facility" msgstr "设施" -#: netbox/dcim/forms/filtersets.py:380 +#: dcim/forms/filtersets.py:380 msgid "Rack type" msgstr "机柜类型" -#: netbox/dcim/forms/filtersets.py:397 +#: dcim/forms/filtersets.py:397 msgid "Function" msgstr "功能用途" -#: netbox/dcim/forms/filtersets.py:483 netbox/dcim/forms/model_forms.py:373 -#: netbox/templates/inc/panels/image_attachments.html:6 +#: dcim/forms/filtersets.py:483 dcim/forms/model_forms.py:373 +#: templates/inc/panels/image_attachments.html:6 msgid "Images" msgstr "图片" -#: netbox/dcim/forms/filtersets.py:486 netbox/dcim/forms/filtersets.py:611 -#: netbox/dcim/forms/filtersets.py:726 +#: dcim/forms/filtersets.py:486 dcim/forms/filtersets.py:611 +#: dcim/forms/filtersets.py:726 msgid "Components" msgstr "组件" -#: netbox/dcim/forms/filtersets.py:506 +#: dcim/forms/filtersets.py:506 msgid "Subdevice role" msgstr "子设备角色" -#: netbox/dcim/forms/filtersets.py:790 netbox/dcim/tables/racks.py:54 -#: netbox/templates/dcim/racktype.html:20 +#: dcim/forms/filtersets.py:790 dcim/tables/racks.py:54 +#: templates/dcim/racktype.html:20 msgid "Model" msgstr "型号" -#: netbox/dcim/forms/filtersets.py:834 +#: dcim/forms/filtersets.py:834 msgid "Has an OOB IP" msgstr "有带外管理IP" -#: netbox/dcim/forms/filtersets.py:841 +#: dcim/forms/filtersets.py:841 msgid "Virtual chassis member" msgstr "堆叠数量" -#: netbox/dcim/forms/filtersets.py:890 +#: dcim/forms/filtersets.py:890 msgid "Has virtual device contexts" msgstr "有虚拟设备上下文" -#: netbox/dcim/forms/filtersets.py:903 netbox/extras/filtersets.py:585 -#: netbox/ipam/forms/bulk_edit.py:479 netbox/ipam/forms/filtersets.py:452 -#: netbox/virtualization/forms/filtersets.py:112 +#: dcim/forms/filtersets.py:903 extras/filtersets.py:585 +#: ipam/forms/filtersets.py:452 virtualization/forms/filtersets.py:112 msgid "Cluster group" msgstr "堆叠组" -#: netbox/dcim/forms/filtersets.py:1210 +#: dcim/forms/filtersets.py:1210 msgid "Cabled" msgstr "已连接" -#: netbox/dcim/forms/filtersets.py:1217 +#: dcim/forms/filtersets.py:1217 msgid "Occupied" msgstr "已占用" -#: netbox/dcim/forms/filtersets.py:1244 netbox/dcim/forms/filtersets.py:1269 -#: netbox/dcim/forms/filtersets.py:1293 netbox/dcim/forms/filtersets.py:1313 -#: netbox/dcim/forms/filtersets.py:1336 netbox/dcim/tables/devices.py:364 -#: netbox/templates/dcim/consoleport.html:55 -#: netbox/templates/dcim/consoleserverport.html:55 -#: netbox/templates/dcim/frontport.html:69 -#: netbox/templates/dcim/interface.html:140 -#: netbox/templates/dcim/powerfeed.html:110 -#: netbox/templates/dcim/poweroutlet.html:59 -#: netbox/templates/dcim/powerport.html:59 -#: netbox/templates/dcim/rearport.html:65 +#: dcim/forms/filtersets.py:1244 dcim/forms/filtersets.py:1269 +#: dcim/forms/filtersets.py:1293 dcim/forms/filtersets.py:1313 +#: dcim/forms/filtersets.py:1336 dcim/tables/devices.py:364 +#: templates/dcim/consoleport.html:55 templates/dcim/consoleserverport.html:55 +#: templates/dcim/frontport.html:69 templates/dcim/interface.html:140 +#: templates/dcim/powerfeed.html:110 templates/dcim/poweroutlet.html:59 +#: templates/dcim/powerport.html:59 templates/dcim/rearport.html:65 msgid "Connection" msgstr "连接" -#: netbox/dcim/forms/filtersets.py:1348 netbox/extras/forms/bulk_edit.py:326 -#: netbox/extras/forms/bulk_import.py:247 -#: netbox/extras/forms/filtersets.py:464 -#: netbox/extras/forms/model_forms.py:675 netbox/extras/tables/tables.py:579 -#: netbox/templates/extras/journalentry.html:30 +#: dcim/forms/filtersets.py:1348 extras/forms/bulk_edit.py:326 +#: extras/forms/bulk_import.py:247 extras/forms/filtersets.py:464 +#: extras/forms/model_forms.py:675 extras/tables/tables.py:579 +#: templates/extras/journalentry.html:30 msgid "Kind" msgstr "类型" -#: netbox/dcim/forms/filtersets.py:1377 +#: dcim/forms/filtersets.py:1377 msgid "Mgmt only" msgstr "仅用于管理" -#: netbox/dcim/forms/filtersets.py:1389 netbox/dcim/forms/model_forms.py:1383 -#: netbox/dcim/models/device_components.py:629 -#: netbox/templates/dcim/interface.html:129 +#: dcim/forms/filtersets.py:1389 dcim/forms/model_forms.py:1383 +#: dcim/models/device_components.py:629 templates/dcim/interface.html:129 msgid "WWN" msgstr "WWN" -#: netbox/dcim/forms/filtersets.py:1409 +#: dcim/forms/filtersets.py:1409 msgid "Wireless channel" msgstr "无线信道" -#: netbox/dcim/forms/filtersets.py:1413 +#: dcim/forms/filtersets.py:1413 msgid "Channel frequency (MHz)" msgstr "信道频率(MHz)" -#: netbox/dcim/forms/filtersets.py:1417 +#: dcim/forms/filtersets.py:1417 msgid "Channel width (MHz)" msgstr "信道频宽(MHz)" -#: netbox/dcim/forms/filtersets.py:1421 -#: netbox/templates/dcim/interface.html:85 +#: dcim/forms/filtersets.py:1421 templates/dcim/interface.html:85 msgid "Transmit power (dBm)" msgstr "信道功率(dBm)" -#: netbox/dcim/forms/filtersets.py:1446 netbox/dcim/forms/filtersets.py:1471 -#: netbox/dcim/tables/devices.py:327 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:50 -#: netbox/templates/dcim/inc/connection_endpoints.html:4 -#: netbox/templates/dcim/rearport.html:73 -#: netbox/templates/dcim/trace/cable.html:7 +#: dcim/forms/filtersets.py:1446 dcim/forms/filtersets.py:1471 +#: dcim/tables/devices.py:327 templates/dcim/cable.html:12 +#: templates/dcim/cable_trace.html:46 templates/dcim/frontport.html:77 +#: templates/dcim/htmx/cable_edit.html:50 +#: templates/dcim/inc/connection_endpoints.html:4 +#: templates/dcim/rearport.html:73 templates/dcim/trace/cable.html:7 msgid "Cable" msgstr "电缆" -#: netbox/dcim/forms/filtersets.py:1550 netbox/dcim/tables/devices.py:949 +#: dcim/forms/filtersets.py:1550 dcim/tables/devices.py:949 msgid "Discovered" msgstr "已发现" -#: netbox/dcim/forms/formsets.py:20 +#: dcim/forms/formsets.py:20 #, python-brace-format msgid "A virtual chassis member already exists in position {vc_position}." msgstr "在 {vc_position}中已存在虚拟机箱成员。" -#: netbox/dcim/forms/model_forms.py:140 +#: dcim/forms/model_forms.py:140 msgid "Contact Info" msgstr "联系方式" -#: netbox/dcim/forms/model_forms.py:195 netbox/templates/dcim/rackrole.html:19 +#: dcim/forms/model_forms.py:195 templates/dcim/rackrole.html:19 msgid "Rack Role" msgstr "机柜角色" -#: netbox/dcim/forms/model_forms.py:212 netbox/dcim/forms/model_forms.py:362 -#: netbox/dcim/forms/model_forms.py:446 -#: netbox/utilities/forms/fields/fields.py:47 +#: dcim/forms/model_forms.py:212 dcim/forms/model_forms.py:362 +#: dcim/forms/model_forms.py:446 utilities/forms/fields/fields.py:47 msgid "Slug" msgstr "缩写" -#: netbox/dcim/forms/model_forms.py:259 +#: dcim/forms/model_forms.py:259 msgid "Select a pre-defined rack type, or set physical characteristics below." msgstr "选择预定义的机架类型,或在下面设置物理特征。" -#: netbox/dcim/forms/model_forms.py:265 +#: dcim/forms/model_forms.py:265 msgid "Inventory Control" msgstr "库存管理" -#: netbox/dcim/forms/model_forms.py:313 +#: dcim/forms/model_forms.py:313 msgid "" "Comma-separated list of numeric unit IDs. A range may be specified using a " "hyphen." msgstr "以逗号分隔的数字U位 列表。 可以使用-字符指定范围。" -#: netbox/dcim/forms/model_forms.py:322 netbox/dcim/tables/racks.py:202 +#: dcim/forms/model_forms.py:322 dcim/tables/racks.py:202 msgid "Reservation" msgstr "预留" -#: netbox/dcim/forms/model_forms.py:423 -#: netbox/templates/dcim/devicerole.html:23 +#: dcim/forms/model_forms.py:423 templates/dcim/devicerole.html:23 msgid "Device Role" msgstr "设备角色" -#: netbox/dcim/forms/model_forms.py:490 netbox/dcim/models/devices.py:644 +#: dcim/forms/model_forms.py:490 dcim/models/devices.py:644 msgid "The lowest-numbered unit occupied by the device" msgstr "设备在机柜上最下面的U位" -#: netbox/dcim/forms/model_forms.py:547 +#: dcim/forms/model_forms.py:547 msgid "The position in the virtual chassis this device is identified by" msgstr "该设备在虚拟机箱中的位置由以下方式标识" -#: netbox/dcim/forms/model_forms.py:552 +#: dcim/forms/model_forms.py:552 msgid "The priority of the device in the virtual chassis" msgstr "堆叠中设备的优先级" -#: netbox/dcim/forms/model_forms.py:659 +#: dcim/forms/model_forms.py:659 msgid "Automatically populate components associated with this module type" msgstr "自动填充与此模块类型关联的组件" -#: netbox/dcim/forms/model_forms.py:767 +#: dcim/forms/model_forms.py:767 msgid "Characteristics" msgstr "特性" -#: netbox/dcim/forms/model_forms.py:1087 +#: dcim/forms/model_forms.py:1087 msgid "Console port template" msgstr "控制台端口模板" -#: netbox/dcim/forms/model_forms.py:1095 +#: dcim/forms/model_forms.py:1095 msgid "Console server port template" msgstr "控制口模版" -#: netbox/dcim/forms/model_forms.py:1103 +#: dcim/forms/model_forms.py:1103 msgid "Front port template" msgstr "前向端口模版" -#: netbox/dcim/forms/model_forms.py:1111 +#: dcim/forms/model_forms.py:1111 msgid "Interface template" msgstr "接口模版" -#: netbox/dcim/forms/model_forms.py:1119 +#: dcim/forms/model_forms.py:1119 msgid "Power outlet template" msgstr "电源插座模版" -#: netbox/dcim/forms/model_forms.py:1127 +#: dcim/forms/model_forms.py:1127 msgid "Power port template" msgstr "电源接口模版" -#: netbox/dcim/forms/model_forms.py:1135 +#: dcim/forms/model_forms.py:1135 msgid "Rear port template" msgstr "后置接口模版" -#: netbox/dcim/forms/model_forms.py:1144 netbox/dcim/forms/model_forms.py:1388 -#: netbox/dcim/forms/model_forms.py:1551 netbox/dcim/forms/model_forms.py:1583 -#: netbox/dcim/tables/connections.py:65 netbox/ipam/forms/bulk_import.py:318 -#: netbox/ipam/forms/model_forms.py:280 netbox/ipam/forms/model_forms.py:289 -#: netbox/ipam/tables/fhrp.py:64 netbox/ipam/tables/ip.py:372 -#: netbox/ipam/tables/vlans.py:169 -#: netbox/templates/circuits/inc/circuit_termination_fields.html:51 -#: netbox/templates/dcim/frontport.html:106 -#: netbox/templates/dcim/interface.html:27 -#: netbox/templates/dcim/interface.html:184 -#: netbox/templates/dcim/interface.html:310 -#: netbox/templates/dcim/rearport.html:102 -#: netbox/templates/virtualization/vminterface.html:18 -#: netbox/templates/vpn/tunneltermination.html:31 -#: netbox/templates/wireless/inc/wirelesslink_interface.html:10 -#: netbox/templates/wireless/wirelesslink.html:10 -#: netbox/templates/wireless/wirelesslink.html:55 -#: netbox/virtualization/forms/model_forms.py:348 -#: netbox/vpn/forms/bulk_import.py:297 netbox/vpn/forms/model_forms.py:436 -#: netbox/vpn/forms/model_forms.py:445 -#: netbox/wireless/forms/model_forms.py:113 -#: netbox/wireless/forms/model_forms.py:155 +#: dcim/forms/model_forms.py:1144 dcim/forms/model_forms.py:1388 +#: dcim/forms/model_forms.py:1551 dcim/forms/model_forms.py:1583 +#: dcim/tables/connections.py:65 ipam/forms/bulk_import.py:318 +#: ipam/forms/model_forms.py:280 ipam/forms/model_forms.py:289 +#: ipam/tables/fhrp.py:64 ipam/tables/ip.py:372 ipam/tables/vlans.py:169 +#: templates/circuits/inc/circuit_termination_fields.html:51 +#: templates/dcim/frontport.html:106 templates/dcim/interface.html:27 +#: templates/dcim/interface.html:184 templates/dcim/interface.html:310 +#: templates/dcim/rearport.html:102 +#: templates/virtualization/vminterface.html:18 +#: templates/vpn/tunneltermination.html:31 +#: templates/wireless/inc/wirelesslink_interface.html:10 +#: templates/wireless/wirelesslink.html:10 +#: templates/wireless/wirelesslink.html:55 +#: virtualization/forms/model_forms.py:348 vpn/forms/bulk_import.py:297 +#: vpn/forms/model_forms.py:436 vpn/forms/model_forms.py:445 +#: wireless/forms/model_forms.py:113 wireless/forms/model_forms.py:155 msgid "Interface" msgstr "接口" -#: netbox/dcim/forms/model_forms.py:1145 netbox/dcim/forms/model_forms.py:1584 -#: netbox/dcim/tables/connections.py:27 -#: netbox/templates/dcim/consoleport.html:17 -#: netbox/templates/dcim/consoleserverport.html:74 -#: netbox/templates/dcim/frontport.html:112 +#: dcim/forms/model_forms.py:1145 dcim/forms/model_forms.py:1584 +#: dcim/tables/connections.py:27 templates/dcim/consoleport.html:17 +#: templates/dcim/consoleserverport.html:74 templates/dcim/frontport.html:112 msgid "Console Port" msgstr "Console 端口" -#: netbox/dcim/forms/model_forms.py:1146 netbox/dcim/forms/model_forms.py:1585 -#: netbox/templates/dcim/consoleport.html:73 -#: netbox/templates/dcim/consoleserverport.html:17 -#: netbox/templates/dcim/frontport.html:109 +#: dcim/forms/model_forms.py:1146 dcim/forms/model_forms.py:1585 +#: templates/dcim/consoleport.html:73 templates/dcim/consoleserverport.html:17 +#: templates/dcim/frontport.html:109 msgid "Console Server Port" msgstr "Console 服务器端口" -#: netbox/dcim/forms/model_forms.py:1147 netbox/dcim/forms/model_forms.py:1586 -#: netbox/templates/circuits/inc/circuit_termination_fields.html:52 -#: netbox/templates/dcim/consoleport.html:76 -#: netbox/templates/dcim/consoleserverport.html:77 -#: netbox/templates/dcim/frontport.html:17 -#: netbox/templates/dcim/frontport.html:115 -#: netbox/templates/dcim/interface.html:187 -#: netbox/templates/dcim/rearport.html:105 +#: dcim/forms/model_forms.py:1147 dcim/forms/model_forms.py:1586 +#: templates/circuits/inc/circuit_termination_fields.html:52 +#: templates/dcim/consoleport.html:76 templates/dcim/consoleserverport.html:77 +#: templates/dcim/frontport.html:17 templates/dcim/frontport.html:115 +#: templates/dcim/interface.html:187 templates/dcim/rearport.html:105 msgid "Front Port" msgstr "前置接口" -#: netbox/dcim/forms/model_forms.py:1148 netbox/dcim/forms/model_forms.py:1587 -#: netbox/dcim/tables/devices.py:710 -#: netbox/templates/circuits/inc/circuit_termination_fields.html:53 -#: netbox/templates/dcim/consoleport.html:79 -#: netbox/templates/dcim/consoleserverport.html:80 -#: netbox/templates/dcim/frontport.html:50 -#: netbox/templates/dcim/frontport.html:118 -#: netbox/templates/dcim/interface.html:190 -#: netbox/templates/dcim/rearport.html:17 -#: netbox/templates/dcim/rearport.html:108 +#: dcim/forms/model_forms.py:1148 dcim/forms/model_forms.py:1587 +#: dcim/tables/devices.py:710 +#: templates/circuits/inc/circuit_termination_fields.html:53 +#: templates/dcim/consoleport.html:79 templates/dcim/consoleserverport.html:80 +#: templates/dcim/frontport.html:50 templates/dcim/frontport.html:118 +#: templates/dcim/interface.html:190 templates/dcim/rearport.html:17 +#: templates/dcim/rearport.html:108 msgid "Rear Port" msgstr "后置接口" -#: netbox/dcim/forms/model_forms.py:1149 netbox/dcim/forms/model_forms.py:1588 -#: netbox/dcim/tables/connections.py:46 netbox/dcim/tables/devices.py:512 -#: netbox/templates/dcim/poweroutlet.html:44 -#: netbox/templates/dcim/powerport.html:17 +#: dcim/forms/model_forms.py:1149 dcim/forms/model_forms.py:1588 +#: dcim/tables/connections.py:46 dcim/tables/devices.py:512 +#: templates/dcim/poweroutlet.html:44 templates/dcim/powerport.html:17 msgid "Power Port" msgstr "电源接口" -#: netbox/dcim/forms/model_forms.py:1150 netbox/dcim/forms/model_forms.py:1589 -#: netbox/templates/dcim/poweroutlet.html:17 -#: netbox/templates/dcim/powerport.html:77 +#: dcim/forms/model_forms.py:1150 dcim/forms/model_forms.py:1589 +#: templates/dcim/poweroutlet.html:17 templates/dcim/powerport.html:77 msgid "Power Outlet" msgstr "电源插座" -#: netbox/dcim/forms/model_forms.py:1152 netbox/dcim/forms/model_forms.py:1591 +#: dcim/forms/model_forms.py:1152 dcim/forms/model_forms.py:1591 msgid "Component Assignment" msgstr "组件分配" -#: netbox/dcim/forms/model_forms.py:1195 netbox/dcim/forms/model_forms.py:1638 +#: dcim/forms/model_forms.py:1195 dcim/forms/model_forms.py:1638 msgid "An InventoryItem can only be assigned to a single component." msgstr "库存项只能分配给单个组件" -#: netbox/dcim/forms/model_forms.py:1332 +#: dcim/forms/model_forms.py:1332 msgid "LAG interface" msgstr "链路聚合接口" -#: netbox/dcim/forms/model_forms.py:1355 +#: dcim/forms/model_forms.py:1355 msgid "Filter VLANs available for assignment by group." msgstr "按组筛选可供分配的 VLAN。" -#: netbox/dcim/forms/model_forms.py:1484 +#: dcim/forms/model_forms.py:1484 msgid "Child Device" msgstr "子设备" -#: netbox/dcim/forms/model_forms.py:1485 +#: dcim/forms/model_forms.py:1485 msgid "" "Child devices must first be created and assigned to the site and rack of the" " parent device." msgstr "必须首先创建子设备,并将其分配给父设备的站点和机柜。" -#: netbox/dcim/forms/model_forms.py:1527 +#: dcim/forms/model_forms.py:1527 msgid "Console port" msgstr "Console 接口" -#: netbox/dcim/forms/model_forms.py:1535 +#: dcim/forms/model_forms.py:1535 msgid "Console server port" msgstr "Console 服务器端口" -#: netbox/dcim/forms/model_forms.py:1543 +#: dcim/forms/model_forms.py:1543 msgid "Front port" msgstr "前置接口" -#: netbox/dcim/forms/model_forms.py:1559 +#: dcim/forms/model_forms.py:1559 msgid "Power outlet" msgstr "电源插座" -#: netbox/dcim/forms/model_forms.py:1579 -#: netbox/templates/dcim/inventoryitem.html:17 +#: dcim/forms/model_forms.py:1579 templates/dcim/inventoryitem.html:17 msgid "Inventory Item" msgstr "库存项" -#: netbox/dcim/forms/model_forms.py:1652 -#: netbox/templates/dcim/inventoryitemrole.html:15 +#: dcim/forms/model_forms.py:1652 templates/dcim/inventoryitemrole.html:15 msgid "Inventory Item Role" msgstr "库存物品分类" -#: netbox/dcim/forms/object_create.py:48 -#: netbox/dcim/forms/object_create.py:199 -#: netbox/dcim/forms/object_create.py:355 +#: dcim/forms/object_create.py:48 dcim/forms/object_create.py:199 +#: dcim/forms/object_create.py:355 msgid "" "Alphanumeric ranges are supported. (Must match the number of objects being " "created.)" msgstr "支持字母数字范围。(必须与正在创建的对象数相匹配。)" -#: netbox/dcim/forms/object_create.py:68 +#: dcim/forms/object_create.py:68 #, python-brace-format msgid "" "The provided pattern specifies {value_count} values, but {pattern_count} are" " expected." msgstr "提供了 {value_count}个参数,实际需要{pattern_count}个。" -#: netbox/dcim/forms/object_create.py:110 -#: netbox/dcim/forms/object_create.py:271 netbox/dcim/tables/devices.py:252 +#: dcim/forms/object_create.py:110 dcim/forms/object_create.py:271 +#: dcim/tables/devices.py:252 msgid "Rear ports" msgstr "后置接口" -#: netbox/dcim/forms/object_create.py:111 -#: netbox/dcim/forms/object_create.py:272 +#: dcim/forms/object_create.py:111 dcim/forms/object_create.py:272 msgid "Select one rear port assignment for each front port being created." msgstr "为正在创建的每个前置接口指定一个后置接口" -#: netbox/dcim/forms/object_create.py:164 +#: dcim/forms/object_create.py:164 #, python-brace-format msgid "" "The number of front port templates to be created ({frontport_count}) must " "match the selected number of rear port positions ({rearport_count})." msgstr "要创建的前置端口数({frontport_count}) 必须与所选的后置端口数({rearport_count})匹配。" -#: netbox/dcim/forms/object_create.py:251 +#: dcim/forms/object_create.py:251 #, python-brace-format msgid "" "The string {module} will be replaced with the position of the " "assigned module, if any." msgstr "字符串{module} 将替换为指定位置的模块, (如果有的话)。" -#: netbox/dcim/forms/object_create.py:320 +#: dcim/forms/object_create.py:320 #, python-brace-format msgid "" "The number of front ports to be created ({frontport_count}) must match the " "selected number of rear port positions ({rearport_count})." msgstr "要创建的前置端口数 ({frontport_count}) 必须与所选的后置端口数({rearport_count})匹配。" -#: netbox/dcim/forms/object_create.py:409 netbox/dcim/tables/devices.py:1033 -#: netbox/ipam/tables/fhrp.py:31 netbox/templates/dcim/virtualchassis.html:53 -#: netbox/templates/dcim/virtualchassis_edit.html:47 -#: netbox/templates/ipam/fhrpgroup.html:38 +#: dcim/forms/object_create.py:409 dcim/tables/devices.py:1033 +#: ipam/tables/fhrp.py:31 templates/dcim/virtualchassis.html:53 +#: templates/dcim/virtualchassis_edit.html:47 templates/ipam/fhrpgroup.html:38 msgid "Members" msgstr "成员" -#: netbox/dcim/forms/object_create.py:418 +#: dcim/forms/object_create.py:418 msgid "Initial position" msgstr "初始位置" -#: netbox/dcim/forms/object_create.py:421 +#: dcim/forms/object_create.py:421 msgid "" "Position of the first member device. Increases by one for each additional " "member." msgstr "第一个成员设备的位置。每增加一个成员增加一个。" -#: netbox/dcim/forms/object_create.py:435 +#: dcim/forms/object_create.py:435 msgid "A position must be specified for the first VC member." msgstr "必须为第一个VC成员指定一个位置。" -#: netbox/dcim/models/cables.py:62 -#: netbox/dcim/models/device_component_templates.py:55 -#: netbox/dcim/models/device_components.py:62 -#: netbox/extras/models/customfields.py:111 +#: dcim/models/cables.py:62 dcim/models/device_component_templates.py:55 +#: dcim/models/device_components.py:62 extras/models/customfields.py:111 msgid "label" msgstr "标记" -#: netbox/dcim/models/cables.py:71 +#: dcim/models/cables.py:71 msgid "length" msgstr "长度" -#: netbox/dcim/models/cables.py:78 +#: dcim/models/cables.py:78 msgid "length unit" msgstr "长度单位" -#: netbox/dcim/models/cables.py:95 +#: dcim/models/cables.py:95 msgid "cable" msgstr "线缆" -#: netbox/dcim/models/cables.py:96 +#: dcim/models/cables.py:96 msgid "cables" msgstr "线缆" -#: netbox/dcim/models/cables.py:165 +#: dcim/models/cables.py:165 msgid "Must specify a unit when setting a cable length" msgstr "设置线缆长度时必须指定单位" -#: netbox/dcim/models/cables.py:168 +#: dcim/models/cables.py:168 msgid "Must define A and B terminations when creating a new cable." msgstr "创建新线缆时必须定义A端和B端。" -#: netbox/dcim/models/cables.py:175 +#: dcim/models/cables.py:175 msgid "Cannot connect different termination types to same end of cable." msgstr "无法将不同的端点类型连接到线缆的两端。" -#: netbox/dcim/models/cables.py:183 +#: dcim/models/cables.py:183 #, python-brace-format msgid "Incompatible termination types: {type_a} and {type_b}" msgstr "不兼容的端点类型: {type_a} 和{type_b}" -#: netbox/dcim/models/cables.py:193 +#: dcim/models/cables.py:193 msgid "A and B terminations cannot connect to the same object." msgstr "A B端不能连接到同一个对象" -#: netbox/dcim/models/cables.py:260 netbox/ipam/models/asns.py:37 +#: dcim/models/cables.py:260 ipam/models/asns.py:37 msgid "end" msgstr "结束" -#: netbox/dcim/models/cables.py:313 +#: dcim/models/cables.py:313 msgid "cable termination" msgstr "线缆端点" -#: netbox/dcim/models/cables.py:314 +#: dcim/models/cables.py:314 msgid "cable terminations" msgstr "线缆端点" -#: netbox/dcim/models/cables.py:333 +#: dcim/models/cables.py:333 #, python-brace-format msgid "" "Duplicate termination found for {app_label}.{model} {termination_id}: cable " "{cable_pk}" msgstr "发现{app_label}重复的终端:{model} {termination_id}: 线缆 {cable_pk}" -#: netbox/dcim/models/cables.py:343 +#: dcim/models/cables.py:343 #, python-brace-format msgid "Cables cannot be terminated to {type_display} interfaces" msgstr "线缆不能连接至{type_display} 接口" -#: netbox/dcim/models/cables.py:350 +#: dcim/models/cables.py:350 msgid "Circuit terminations attached to a provider network may not be cabled." msgstr "运营商网络的线路可能没有连接。" -#: netbox/dcim/models/cables.py:448 netbox/extras/models/configs.py:50 +#: dcim/models/cables.py:448 extras/models/configs.py:50 msgid "is active" msgstr "激活的" -#: netbox/dcim/models/cables.py:452 +#: dcim/models/cables.py:452 msgid "is complete" msgstr "完成的" -#: netbox/dcim/models/cables.py:456 +#: dcim/models/cables.py:456 msgid "is split" msgstr "被拆分的" -#: netbox/dcim/models/cables.py:464 +#: dcim/models/cables.py:464 msgid "cable path" msgstr "线缆连接路径" -#: netbox/dcim/models/cables.py:465 +#: dcim/models/cables.py:465 msgid "cable paths" msgstr "线缆连接路径" -#: netbox/dcim/models/device_component_templates.py:46 +#: dcim/models/device_component_templates.py:46 #, python-brace-format msgid "" "{module} is accepted as a substitution for the module bay position when " "attached to a module type." msgstr "当连接到模块类型时,{module} 被认定为模块托架位置的替代。" -#: netbox/dcim/models/device_component_templates.py:58 -#: netbox/dcim/models/device_components.py:65 +#: dcim/models/device_component_templates.py:58 +#: dcim/models/device_components.py:65 msgid "Physical label" msgstr "物理标签" -#: netbox/dcim/models/device_component_templates.py:103 +#: dcim/models/device_component_templates.py:103 msgid "Component templates cannot be moved to a different device type." msgstr "组件模板无法移动到其他设备类型。" -#: netbox/dcim/models/device_component_templates.py:154 +#: dcim/models/device_component_templates.py:154 msgid "" "A component template cannot be associated with both a device type and a " "module type." msgstr "组件模板不能同时与设备类型和模块类型相关联。" -#: netbox/dcim/models/device_component_templates.py:158 +#: dcim/models/device_component_templates.py:158 msgid "" "A component template must be associated with either a device type or a " "module type." msgstr "组件模板必须与设备类型或模块类型相关联。" -#: netbox/dcim/models/device_component_templates.py:212 +#: dcim/models/device_component_templates.py:212 msgid "console port template" msgstr "console端口模板" -#: netbox/dcim/models/device_component_templates.py:213 +#: dcim/models/device_component_templates.py:213 msgid "console port templates" msgstr "console端口模板" -#: netbox/dcim/models/device_component_templates.py:246 +#: dcim/models/device_component_templates.py:246 msgid "console server port template" msgstr "console服务器端口模板" -#: netbox/dcim/models/device_component_templates.py:247 +#: dcim/models/device_component_templates.py:247 msgid "console server port templates" msgstr "console服务器端口模板" -#: netbox/dcim/models/device_component_templates.py:278 -#: netbox/dcim/models/device_components.py:352 +#: dcim/models/device_component_templates.py:278 +#: dcim/models/device_components.py:352 msgid "maximum draw" msgstr "最大功率" -#: netbox/dcim/models/device_component_templates.py:285 -#: netbox/dcim/models/device_components.py:359 +#: dcim/models/device_component_templates.py:285 +#: dcim/models/device_components.py:359 msgid "allocated draw" msgstr "分配功率" -#: netbox/dcim/models/device_component_templates.py:295 +#: dcim/models/device_component_templates.py:295 msgid "power port template" msgstr "电源端口模版" -#: netbox/dcim/models/device_component_templates.py:296 +#: dcim/models/device_component_templates.py:296 msgid "power port templates" msgstr "电源端口模版" -#: netbox/dcim/models/device_component_templates.py:315 -#: netbox/dcim/models/device_components.py:382 +#: dcim/models/device_component_templates.py:315 +#: dcim/models/device_components.py:382 #, python-brace-format msgid "Allocated draw cannot exceed the maximum draw ({maximum_draw}W)." msgstr "分配功率不能超过最大功率({maximum_draw}瓦)" -#: netbox/dcim/models/device_component_templates.py:347 -#: netbox/dcim/models/device_components.py:477 +#: dcim/models/device_component_templates.py:347 +#: dcim/models/device_components.py:477 msgid "feed leg" msgstr "馈电线路" -#: netbox/dcim/models/device_component_templates.py:351 -#: netbox/dcim/models/device_components.py:481 +#: dcim/models/device_component_templates.py:351 +#: dcim/models/device_components.py:481 msgid "Phase (for three-phase feeds)" msgstr "相位(用于三相电)" -#: netbox/dcim/models/device_component_templates.py:357 +#: dcim/models/device_component_templates.py:357 msgid "power outlet template" msgstr "电源插座模版" -#: netbox/dcim/models/device_component_templates.py:358 +#: dcim/models/device_component_templates.py:358 msgid "power outlet templates" msgstr "电源插座模版" -#: netbox/dcim/models/device_component_templates.py:367 +#: dcim/models/device_component_templates.py:367 #, python-brace-format msgid "Parent power port ({power_port}) must belong to the same device type" msgstr "父电源端口 ({power_port}) 必须属于相同的设备类型" -#: netbox/dcim/models/device_component_templates.py:371 +#: dcim/models/device_component_templates.py:371 #, python-brace-format msgid "Parent power port ({power_port}) must belong to the same module type" msgstr "父电源端口 ({power_port}) 必须属于相同的设备类型" -#: netbox/dcim/models/device_component_templates.py:423 -#: netbox/dcim/models/device_components.py:611 +#: dcim/models/device_component_templates.py:423 +#: dcim/models/device_components.py:611 msgid "management only" msgstr "仅限管理" -#: netbox/dcim/models/device_component_templates.py:431 -#: netbox/dcim/models/device_components.py:550 +#: dcim/models/device_component_templates.py:431 +#: dcim/models/device_components.py:550 msgid "bridge interface" msgstr "桥接接口" -#: netbox/dcim/models/device_component_templates.py:449 -#: netbox/dcim/models/device_components.py:636 +#: dcim/models/device_component_templates.py:449 +#: dcim/models/device_components.py:636 msgid "wireless role" msgstr "无线角色" -#: netbox/dcim/models/device_component_templates.py:455 +#: dcim/models/device_component_templates.py:455 msgid "interface template" msgstr "接口模版" -#: netbox/dcim/models/device_component_templates.py:456 +#: dcim/models/device_component_templates.py:456 msgid "interface templates" msgstr "接口模版" -#: netbox/dcim/models/device_component_templates.py:463 -#: netbox/dcim/models/device_components.py:804 -#: netbox/virtualization/models/virtualmachines.py:405 +#: dcim/models/device_component_templates.py:463 +#: dcim/models/device_components.py:804 +#: virtualization/models/virtualmachines.py:405 msgid "An interface cannot be bridged to itself." msgstr "接口不能桥接到自己" -#: netbox/dcim/models/device_component_templates.py:466 +#: dcim/models/device_component_templates.py:466 #, python-brace-format msgid "Bridge interface ({bridge}) must belong to the same device type" msgstr "桥接接口({bridge}) 必须属于相同的设备类型" -#: netbox/dcim/models/device_component_templates.py:470 +#: dcim/models/device_component_templates.py:470 #, python-brace-format msgid "Bridge interface ({bridge}) must belong to the same module type" msgstr "桥接接口({bridge}) 必须属于相同的模块类型" -#: netbox/dcim/models/device_component_templates.py:526 -#: netbox/dcim/models/device_components.py:984 +#: dcim/models/device_component_templates.py:526 +#: dcim/models/device_components.py:984 msgid "rear port position" msgstr "后置接口位置" -#: netbox/dcim/models/device_component_templates.py:551 +#: dcim/models/device_component_templates.py:551 msgid "front port template" msgstr "前置接口模板" -#: netbox/dcim/models/device_component_templates.py:552 +#: dcim/models/device_component_templates.py:552 msgid "front port templates" msgstr "前置接口模板" -#: netbox/dcim/models/device_component_templates.py:562 +#: dcim/models/device_component_templates.py:562 #, python-brace-format msgid "Rear port ({name}) must belong to the same device type" msgstr "后置接口({name})必须属于相同的设备类型" -#: netbox/dcim/models/device_component_templates.py:568 +#: dcim/models/device_component_templates.py:568 #, python-brace-format msgid "" "Invalid rear port position ({position}); rear port {name} has only {count} " "positions" msgstr "无效的后端口位置 ({position});后端口{name}只有{count}个" -#: netbox/dcim/models/device_component_templates.py:621 -#: netbox/dcim/models/device_components.py:1053 +#: dcim/models/device_component_templates.py:621 +#: dcim/models/device_components.py:1053 msgid "positions" msgstr "位置" -#: netbox/dcim/models/device_component_templates.py:632 +#: dcim/models/device_component_templates.py:632 msgid "rear port template" msgstr "后置端口模版" -#: netbox/dcim/models/device_component_templates.py:633 +#: dcim/models/device_component_templates.py:633 msgid "rear port templates" msgstr "后置端口模版" -#: netbox/dcim/models/device_component_templates.py:662 -#: netbox/dcim/models/device_components.py:1103 +#: dcim/models/device_component_templates.py:662 +#: dcim/models/device_components.py:1103 msgid "position" msgstr "位置" -#: netbox/dcim/models/device_component_templates.py:665 -#: netbox/dcim/models/device_components.py:1106 +#: dcim/models/device_component_templates.py:665 +#: dcim/models/device_components.py:1106 msgid "Identifier to reference when renaming installed components" msgstr "重命名已安装组件时要引用的标识符" -#: netbox/dcim/models/device_component_templates.py:671 +#: dcim/models/device_component_templates.py:671 msgid "module bay template" msgstr "模块托架模版" -#: netbox/dcim/models/device_component_templates.py:672 +#: dcim/models/device_component_templates.py:672 msgid "module bay templates" msgstr "模块托架模版" -#: netbox/dcim/models/device_component_templates.py:699 +#: dcim/models/device_component_templates.py:699 msgid "device bay template" msgstr "设备托架模版" -#: netbox/dcim/models/device_component_templates.py:700 +#: dcim/models/device_component_templates.py:700 msgid "device bay templates" msgstr "设备托架模版" -#: netbox/dcim/models/device_component_templates.py:713 +#: dcim/models/device_component_templates.py:713 #, python-brace-format msgid "" "Subdevice role of device type ({device_type}) must be set to \"parent\" to " "allow device bays." msgstr "设备类型({device_type})的子设备角色必须设置为“父设备”,才能允许设备托架。" -#: netbox/dcim/models/device_component_templates.py:768 -#: netbox/dcim/models/device_components.py:1262 +#: dcim/models/device_component_templates.py:768 +#: dcim/models/device_components.py:1262 msgid "part ID" msgstr "零件ID" -#: netbox/dcim/models/device_component_templates.py:770 -#: netbox/dcim/models/device_components.py:1264 +#: dcim/models/device_component_templates.py:770 +#: dcim/models/device_components.py:1264 msgid "Manufacturer-assigned part identifier" msgstr "制造商指定的零件标识符" -#: netbox/dcim/models/device_component_templates.py:787 +#: dcim/models/device_component_templates.py:787 msgid "inventory item template" msgstr "库存项模版" -#: netbox/dcim/models/device_component_templates.py:788 +#: dcim/models/device_component_templates.py:788 msgid "inventory item templates" msgstr "库存项模版" -#: netbox/dcim/models/device_components.py:105 +#: dcim/models/device_components.py:105 msgid "Components cannot be moved to a different device." msgstr "组件模板无法移动到其他设备类型。" -#: netbox/dcim/models/device_components.py:144 +#: dcim/models/device_components.py:144 msgid "cable end" msgstr "线缆终点" -#: netbox/dcim/models/device_components.py:150 +#: dcim/models/device_components.py:150 msgid "mark connected" msgstr "标记已连接" -#: netbox/dcim/models/device_components.py:152 +#: dcim/models/device_components.py:152 msgid "Treat as if a cable is connected" msgstr "视为电缆已连接" -#: netbox/dcim/models/device_components.py:170 +#: dcim/models/device_components.py:170 msgid "Must specify cable end (A or B) when attaching a cable." msgstr "连接电缆时必须指定电缆末端(A或B)。" -#: netbox/dcim/models/device_components.py:174 +#: dcim/models/device_components.py:174 msgid "Cable end must not be set without a cable." msgstr "不得在没有线缆的情况下设置线缆末端。" -#: netbox/dcim/models/device_components.py:178 +#: dcim/models/device_components.py:178 msgid "Cannot mark as connected with a cable attached." msgstr "无法标记为已连接线缆。" -#: netbox/dcim/models/device_components.py:202 +#: dcim/models/device_components.py:202 #, python-brace-format msgid "{class_name} models must declare a parent_object property" msgstr "{class_name}模块必须声明上架类型" -#: netbox/dcim/models/device_components.py:287 -#: netbox/dcim/models/device_components.py:316 -#: netbox/dcim/models/device_components.py:349 -#: netbox/dcim/models/device_components.py:467 +#: dcim/models/device_components.py:287 dcim/models/device_components.py:316 +#: dcim/models/device_components.py:349 dcim/models/device_components.py:467 msgid "Physical port type" msgstr "物理端口类型" -#: netbox/dcim/models/device_components.py:290 -#: netbox/dcim/models/device_components.py:319 +#: dcim/models/device_components.py:290 dcim/models/device_components.py:319 msgid "speed" msgstr "速率" -#: netbox/dcim/models/device_components.py:294 -#: netbox/dcim/models/device_components.py:323 +#: dcim/models/device_components.py:294 dcim/models/device_components.py:323 msgid "Port speed in bits per second" msgstr "端口速度(单位bps)" -#: netbox/dcim/models/device_components.py:300 +#: dcim/models/device_components.py:300 msgid "console port" msgstr "console端口" -#: netbox/dcim/models/device_components.py:301 +#: dcim/models/device_components.py:301 msgid "console ports" msgstr "console端口" -#: netbox/dcim/models/device_components.py:329 +#: dcim/models/device_components.py:329 msgid "console server port" msgstr "console服务器端口" -#: netbox/dcim/models/device_components.py:330 +#: dcim/models/device_components.py:330 msgid "console server ports" msgstr "console服务器端口" -#: netbox/dcim/models/device_components.py:369 +#: dcim/models/device_components.py:369 msgid "power port" msgstr "电源接口" -#: netbox/dcim/models/device_components.py:370 +#: dcim/models/device_components.py:370 msgid "power ports" msgstr "电源接口" -#: netbox/dcim/models/device_components.py:487 +#: dcim/models/device_components.py:487 msgid "power outlet" msgstr "电源插座" -#: netbox/dcim/models/device_components.py:488 +#: dcim/models/device_components.py:488 msgid "power outlets" msgstr "电源插座" -#: netbox/dcim/models/device_components.py:499 +#: dcim/models/device_components.py:499 #, python-brace-format msgid "Parent power port ({power_port}) must belong to the same device" msgstr "父电源端口({power_port})必须属于同一设备" -#: netbox/dcim/models/device_components.py:530 netbox/vpn/models/crypto.py:81 -#: netbox/vpn/models/crypto.py:226 +#: dcim/models/device_components.py:530 vpn/models/crypto.py:81 +#: vpn/models/crypto.py:226 msgid "mode" msgstr "模式" -#: netbox/dcim/models/device_components.py:534 +#: dcim/models/device_components.py:534 msgid "IEEE 802.1Q tagging strategy" msgstr "IEEE 802.1Q VLAN 标记策略" -#: netbox/dcim/models/device_components.py:542 +#: dcim/models/device_components.py:542 msgid "parent interface" msgstr "父接口" -#: netbox/dcim/models/device_components.py:602 +#: dcim/models/device_components.py:602 msgid "parent LAG" msgstr "父聚合组" -#: netbox/dcim/models/device_components.py:612 +#: dcim/models/device_components.py:612 msgid "This interface is used only for out-of-band management" msgstr "该接口仅用于带外管理" -#: netbox/dcim/models/device_components.py:617 +#: dcim/models/device_components.py:617 msgid "speed (Kbps)" msgstr "速率(Kbps)" -#: netbox/dcim/models/device_components.py:620 +#: dcim/models/device_components.py:620 msgid "duplex" msgstr "双工" -#: netbox/dcim/models/device_components.py:630 +#: dcim/models/device_components.py:630 msgid "64-bit World Wide Name" msgstr "64位全球唯一标识符" -#: netbox/dcim/models/device_components.py:642 +#: dcim/models/device_components.py:642 msgid "wireless channel" msgstr "无线信道" -#: netbox/dcim/models/device_components.py:649 +#: dcim/models/device_components.py:649 msgid "channel frequency (MHz)" msgstr "信道频率(MHz)" -#: netbox/dcim/models/device_components.py:650 -#: netbox/dcim/models/device_components.py:658 +#: dcim/models/device_components.py:650 dcim/models/device_components.py:658 msgid "Populated by selected channel (if set)" msgstr "由所选通道填充(如有)" -#: netbox/dcim/models/device_components.py:664 +#: dcim/models/device_components.py:664 msgid "transmit power (dBm)" msgstr "发射功率(dBm)" -#: netbox/dcim/models/device_components.py:689 netbox/wireless/models.py:117 +#: dcim/models/device_components.py:689 wireless/models.py:117 msgid "wireless LANs" msgstr "无线局域网" -#: netbox/dcim/models/device_components.py:697 -#: netbox/virtualization/models/virtualmachines.py:335 +#: dcim/models/device_components.py:697 +#: virtualization/models/virtualmachines.py:335 msgid "untagged VLAN" msgstr "未标记VLAN" -#: netbox/dcim/models/device_components.py:703 -#: netbox/virtualization/models/virtualmachines.py:341 +#: dcim/models/device_components.py:703 +#: virtualization/models/virtualmachines.py:341 msgid "tagged VLANs" msgstr "已标记 VLANs" -#: netbox/dcim/models/device_components.py:745 -#: netbox/virtualization/models/virtualmachines.py:377 +#: dcim/models/device_components.py:745 +#: virtualization/models/virtualmachines.py:377 msgid "interface" msgstr "接口" -#: netbox/dcim/models/device_components.py:746 -#: netbox/virtualization/models/virtualmachines.py:378 +#: dcim/models/device_components.py:746 +#: virtualization/models/virtualmachines.py:378 msgid "interfaces" msgstr "接口" -#: netbox/dcim/models/device_components.py:757 +#: dcim/models/device_components.py:757 #, python-brace-format msgid "{display_type} interfaces cannot have a cable attached." msgstr "{display_type}接口不能连接线缆。" -#: netbox/dcim/models/device_components.py:765 +#: dcim/models/device_components.py:765 #, python-brace-format msgid "{display_type} interfaces cannot be marked as connected." msgstr "{display_type}接口不能标记为已连接。" -#: netbox/dcim/models/device_components.py:774 -#: netbox/virtualization/models/virtualmachines.py:390 +#: dcim/models/device_components.py:774 +#: virtualization/models/virtualmachines.py:390 msgid "An interface cannot be its own parent." msgstr "接口不能是自己的父级。" -#: netbox/dcim/models/device_components.py:778 +#: dcim/models/device_components.py:778 msgid "Only virtual interfaces may be assigned to a parent interface." msgstr "只能将虚拟接口分配给父接口。" -#: netbox/dcim/models/device_components.py:785 +#: dcim/models/device_components.py:785 #, python-brace-format msgid "" "The selected parent interface ({interface}) belongs to a different device " "({device})" msgstr "所选父接口({interface}) 属于另一个设备 ({device})" -#: netbox/dcim/models/device_components.py:791 +#: dcim/models/device_components.py:791 #, python-brace-format msgid "" "The selected parent interface ({interface}) belongs to {device}, which is " "not part of virtual chassis {virtual_chassis}." msgstr "所选的父接口({interface})属于 {device},该设备不是虚拟机箱{virtual_chassis}的一部分。" -#: netbox/dcim/models/device_components.py:811 +#: dcim/models/device_components.py:811 #, python-brace-format msgid "" "The selected bridge interface ({bridge}) belongs to a different device " "({device})." msgstr "所选桥接接口 ({bridge})属于另一个设备({device})。" -#: netbox/dcim/models/device_components.py:817 +#: dcim/models/device_components.py:817 #, python-brace-format msgid "" "The selected bridge interface ({interface}) belongs to {device}, which is " "not part of virtual chassis {virtual_chassis}." msgstr "所选的桥接接口({interface})属于 {device},该设备不是虚拟机箱{virtual_chassis}的一部分。" -#: netbox/dcim/models/device_components.py:828 +#: dcim/models/device_components.py:828 msgid "Virtual interfaces cannot have a parent LAG interface." msgstr "虚拟接口不能具有父聚合接口。" -#: netbox/dcim/models/device_components.py:832 +#: dcim/models/device_components.py:832 msgid "A LAG interface cannot be its own parent." msgstr "聚合接口不能是自己的父级。" -#: netbox/dcim/models/device_components.py:839 +#: dcim/models/device_components.py:839 #, python-brace-format msgid "" "The selected LAG interface ({lag}) belongs to a different device ({device})." msgstr "选择的LAG接口 ({lag}) 属于不同的设备 ({device})." -#: netbox/dcim/models/device_components.py:845 +#: dcim/models/device_components.py:845 #, python-brace-format msgid "" "The selected LAG interface ({lag}) belongs to {device}, which is not part of" " virtual chassis {virtual_chassis}." msgstr "选择的LAG接口 ({lag}) 属于 {device}, 它不是虚拟机箱的一部分 {virtual_chassis}." -#: netbox/dcim/models/device_components.py:856 +#: dcim/models/device_components.py:856 msgid "Virtual interfaces cannot have a PoE mode." msgstr "虚拟接口不能具有PoE模式。" -#: netbox/dcim/models/device_components.py:860 +#: dcim/models/device_components.py:860 msgid "Virtual interfaces cannot have a PoE type." msgstr "虚拟接口不能是PoE类型。" -#: netbox/dcim/models/device_components.py:866 +#: dcim/models/device_components.py:866 msgid "Must specify PoE mode when designating a PoE type." msgstr "指定PoE类型时必须指定PoE模式。" -#: netbox/dcim/models/device_components.py:873 +#: dcim/models/device_components.py:873 msgid "Wireless role may be set only on wireless interfaces." msgstr "只能在无线接口上设置无线角色。" -#: netbox/dcim/models/device_components.py:875 +#: dcim/models/device_components.py:875 msgid "Channel may be set only on wireless interfaces." msgstr "只能在无线接口上设置信道。" -#: netbox/dcim/models/device_components.py:881 +#: dcim/models/device_components.py:881 msgid "Channel frequency may be set only on wireless interfaces." msgstr "信道频率仅在无线接口上设置。" -#: netbox/dcim/models/device_components.py:885 +#: dcim/models/device_components.py:885 msgid "Cannot specify custom frequency with channel selected." msgstr "无法在选定频道的情况下指定自定义频率。" -#: netbox/dcim/models/device_components.py:891 +#: dcim/models/device_components.py:891 msgid "Channel width may be set only on wireless interfaces." msgstr "只能在无线接口上设置频宽。" -#: netbox/dcim/models/device_components.py:893 +#: dcim/models/device_components.py:893 msgid "Cannot specify custom width with channel selected." msgstr "无法在选定通道的情况下指定自定义频宽。" -#: netbox/dcim/models/device_components.py:901 +#: dcim/models/device_components.py:901 #, python-brace-format msgid "" "The untagged VLAN ({untagged_vlan}) must belong to the same site as the " "interface's parent device, or it must be global." msgstr "不打标记的VLAN({untagged_vlan})必须与接口所属设备/虚拟机属于同一站点,或者是全局VLAN" -#: netbox/dcim/models/device_components.py:990 +#: dcim/models/device_components.py:990 msgid "Mapped position on corresponding rear port" msgstr "对应后置端口上的映射位置" -#: netbox/dcim/models/device_components.py:1006 +#: dcim/models/device_components.py:1006 msgid "front port" msgstr "前置端口" -#: netbox/dcim/models/device_components.py:1007 +#: dcim/models/device_components.py:1007 msgid "front ports" msgstr "前置端口" -#: netbox/dcim/models/device_components.py:1021 +#: dcim/models/device_components.py:1021 #, python-brace-format msgid "Rear port ({rear_port}) must belong to the same device" msgstr "后置端口({rear_port})必须属于同一设备" -#: netbox/dcim/models/device_components.py:1029 +#: dcim/models/device_components.py:1029 #, python-brace-format msgid "" "Invalid rear port position ({rear_port_position}): Rear port {name} has only" " {positions} positions." msgstr "无效的后端口位置({rear_port_position});后端口{name}只有 {positions}个" -#: netbox/dcim/models/device_components.py:1059 +#: dcim/models/device_components.py:1059 msgid "Number of front ports which may be mapped" msgstr "可以映射的前置端口数" -#: netbox/dcim/models/device_components.py:1064 +#: dcim/models/device_components.py:1064 msgid "rear port" msgstr "后置端口" -#: netbox/dcim/models/device_components.py:1065 +#: dcim/models/device_components.py:1065 msgid "rear ports" msgstr "后置端口" -#: netbox/dcim/models/device_components.py:1079 +#: dcim/models/device_components.py:1079 #, python-brace-format msgid "" "The number of positions cannot be less than the number of mapped front ports" " ({frontport_count})" msgstr "位置数不能小于映射的前置端口数({frontport_count})" -#: netbox/dcim/models/device_components.py:1120 +#: dcim/models/device_components.py:1120 msgid "module bay" msgstr "设备板卡插槽" -#: netbox/dcim/models/device_components.py:1121 +#: dcim/models/device_components.py:1121 msgid "module bays" msgstr "设备板卡插槽" -#: netbox/dcim/models/device_components.py:1138 -#: netbox/dcim/models/devices.py:1224 +#: dcim/models/device_components.py:1138 dcim/models/devices.py:1224 msgid "A module bay cannot belong to a module installed within it." msgstr "模块托架不能属于安装在其中的模块。" -#: netbox/dcim/models/device_components.py:1164 +#: dcim/models/device_components.py:1164 msgid "device bay" msgstr "设备托架" -#: netbox/dcim/models/device_components.py:1165 +#: dcim/models/device_components.py:1165 msgid "device bays" msgstr "设备托架" -#: netbox/dcim/models/device_components.py:1175 +#: dcim/models/device_components.py:1175 #, python-brace-format msgid "This type of device ({device_type}) does not support device bays." msgstr "此类型的设备 ({device_type}) 不支持设备托架。" -#: netbox/dcim/models/device_components.py:1181 +#: dcim/models/device_components.py:1181 msgid "Cannot install a device into itself." msgstr "无法将设备安装到自身中。" -#: netbox/dcim/models/device_components.py:1189 +#: dcim/models/device_components.py:1189 #, python-brace-format msgid "" "Cannot install the specified device; device is already installed in {bay}." msgstr "无法安装指定的设备;设备已安装在{bay}中。" -#: netbox/dcim/models/device_components.py:1210 +#: dcim/models/device_components.py:1210 msgid "inventory item role" msgstr "库存物品分类" -#: netbox/dcim/models/device_components.py:1211 +#: dcim/models/device_components.py:1211 msgid "inventory item roles" msgstr "库存物品分类" -#: netbox/dcim/models/device_components.py:1268 -#: netbox/dcim/models/devices.py:607 netbox/dcim/models/devices.py:1181 -#: netbox/dcim/models/racks.py:313 -#: netbox/virtualization/models/virtualmachines.py:131 +#: dcim/models/device_components.py:1268 dcim/models/devices.py:607 +#: dcim/models/devices.py:1181 dcim/models/racks.py:313 +#: virtualization/models/virtualmachines.py:131 msgid "serial number" msgstr "序列号" -#: netbox/dcim/models/device_components.py:1276 -#: netbox/dcim/models/devices.py:615 netbox/dcim/models/devices.py:1188 -#: netbox/dcim/models/racks.py:320 +#: dcim/models/device_components.py:1276 dcim/models/devices.py:615 +#: dcim/models/devices.py:1188 dcim/models/racks.py:320 msgid "asset tag" msgstr "资产标签" -#: netbox/dcim/models/device_components.py:1277 +#: dcim/models/device_components.py:1277 msgid "A unique tag used to identify this item" msgstr "用于识别该项目的唯一标识" -#: netbox/dcim/models/device_components.py:1280 +#: dcim/models/device_components.py:1280 msgid "discovered" msgstr "已发现" -#: netbox/dcim/models/device_components.py:1282 +#: dcim/models/device_components.py:1282 msgid "This item was automatically discovered" msgstr "此项目是自动发现的" -#: netbox/dcim/models/device_components.py:1300 +#: dcim/models/device_components.py:1300 msgid "inventory item" msgstr "库存项" -#: netbox/dcim/models/device_components.py:1301 +#: dcim/models/device_components.py:1301 msgid "inventory items" msgstr "库存项" -#: netbox/dcim/models/device_components.py:1312 +#: dcim/models/device_components.py:1312 msgid "Cannot assign self as parent." msgstr "无法将自身分配为父级。" -#: netbox/dcim/models/device_components.py:1320 +#: dcim/models/device_components.py:1320 msgid "Parent inventory item does not belong to the same device." msgstr "父库存项不能属于同一设备。" -#: netbox/dcim/models/device_components.py:1326 +#: dcim/models/device_components.py:1326 msgid "Cannot move an inventory item with dependent children" msgstr "无法移动具有子项的库存项目" -#: netbox/dcim/models/device_components.py:1334 +#: dcim/models/device_components.py:1334 msgid "Cannot assign inventory item to component on another device" msgstr "无法将库存项分配给其他设备上的组件" -#: netbox/dcim/models/devices.py:54 +#: dcim/models/devices.py:54 msgid "manufacturer" msgstr "厂商" -#: netbox/dcim/models/devices.py:55 +#: dcim/models/devices.py:55 msgid "manufacturers" msgstr "厂商" -#: netbox/dcim/models/devices.py:82 netbox/dcim/models/devices.py:382 -#: netbox/dcim/models/racks.py:133 +#: dcim/models/devices.py:82 dcim/models/devices.py:382 +#: dcim/models/racks.py:133 msgid "model" msgstr "型号" -#: netbox/dcim/models/devices.py:95 +#: dcim/models/devices.py:95 msgid "default platform" msgstr "默认系统平台" -#: netbox/dcim/models/devices.py:98 netbox/dcim/models/devices.py:386 +#: dcim/models/devices.py:98 dcim/models/devices.py:386 msgid "part number" msgstr "部件编码(PN)" -#: netbox/dcim/models/devices.py:101 netbox/dcim/models/devices.py:389 +#: dcim/models/devices.py:101 dcim/models/devices.py:389 msgid "Discrete part number (optional)" msgstr "独立部件编码(PN) (可选)" -#: netbox/dcim/models/devices.py:107 netbox/dcim/models/racks.py:54 +#: dcim/models/devices.py:107 dcim/models/racks.py:54 msgid "height (U)" msgstr "高度(U)" -#: netbox/dcim/models/devices.py:111 +#: dcim/models/devices.py:111 msgid "exclude from utilization" msgstr "从利用率中排除" -#: netbox/dcim/models/devices.py:112 +#: dcim/models/devices.py:112 msgid "Devices of this type are excluded when calculating rack utilization." msgstr "计算机柜利用率时,不包括此类设备。" -#: netbox/dcim/models/devices.py:116 +#: dcim/models/devices.py:116 msgid "is full depth" msgstr "是否全尺寸" -#: netbox/dcim/models/devices.py:117 +#: dcim/models/devices.py:117 msgid "Device consumes both front and rear rack faces." msgstr "设备同时使用机柜的前面板和后面板。" -#: netbox/dcim/models/devices.py:123 +#: dcim/models/devices.py:123 msgid "parent/child status" msgstr "父设备/子设备状态" -#: netbox/dcim/models/devices.py:124 +#: dcim/models/devices.py:124 msgid "" "Parent devices house child devices in device bays. Leave blank if this " "device type is neither a parent nor a child." msgstr "父设备将子设备放置在设备托架中。如果此设备类型既不是父设备也不是子设备,请保留为空。" -#: netbox/dcim/models/devices.py:128 netbox/dcim/models/devices.py:392 -#: netbox/dcim/models/devices.py:659 netbox/dcim/models/racks.py:324 +#: dcim/models/devices.py:128 dcim/models/devices.py:392 +#: dcim/models/devices.py:659 dcim/models/racks.py:324 msgid "airflow" msgstr "气流方向" -#: netbox/dcim/models/devices.py:204 +#: dcim/models/devices.py:204 msgid "device type" msgstr "设备型号" -#: netbox/dcim/models/devices.py:205 +#: dcim/models/devices.py:205 msgid "device types" msgstr "设备型号" -#: netbox/dcim/models/devices.py:290 +#: dcim/models/devices.py:290 msgid "U height must be in increments of 0.5 rack units." msgstr "U位数必须以0.5U为增量。" -#: netbox/dcim/models/devices.py:307 +#: dcim/models/devices.py:307 #, python-brace-format msgid "" "Device {device} in rack {rack} does not have sufficient space to accommodate" " a height of {height}U" msgstr "机柜 {rack}没有足够的空间容纳{height}U的设备 {device}" -#: netbox/dcim/models/devices.py:322 +#: dcim/models/devices.py:322 #, python-brace-format msgid "" "Unable to set 0U height: Found {racked_instance_count} " "instances already mounted within racks." msgstr "无法设置高度为0U: 发现 {racked_instance_count}个设备已经安装在机柜中。" -#: netbox/dcim/models/devices.py:331 +#: dcim/models/devices.py:331 msgid "" "Must delete all device bay templates associated with this device before " "declassifying it as a parent device." msgstr "必须删除与此设备关联的所有设备托架模板,然后才能将其修改为父设备。" -#: netbox/dcim/models/devices.py:337 +#: dcim/models/devices.py:337 msgid "Child device types must be 0U." msgstr "子设备类型高度必须为0U。" -#: netbox/dcim/models/devices.py:411 +#: dcim/models/devices.py:411 msgid "module type" msgstr "模块类型" -#: netbox/dcim/models/devices.py:412 +#: dcim/models/devices.py:412 msgid "module types" msgstr "模块类型" -#: netbox/dcim/models/devices.py:485 +#: dcim/models/devices.py:485 msgid "Virtual machines may be assigned to this role" msgstr "虚拟机可以使用该型号/角色" -#: netbox/dcim/models/devices.py:497 +#: dcim/models/devices.py:497 msgid "device role" msgstr "设备角色" -#: netbox/dcim/models/devices.py:498 +#: dcim/models/devices.py:498 msgid "device roles" msgstr "设备角色" -#: netbox/dcim/models/devices.py:515 +#: dcim/models/devices.py:515 msgid "Optionally limit this platform to devices of a certain manufacturer" msgstr "可选择将此平台限定为特定制造商的设备" -#: netbox/dcim/models/devices.py:527 +#: dcim/models/devices.py:527 msgid "platform" msgstr "操作系统" -#: netbox/dcim/models/devices.py:528 +#: dcim/models/devices.py:528 msgid "platforms" msgstr "操作系统" -#: netbox/dcim/models/devices.py:576 +#: dcim/models/devices.py:576 msgid "The function this device serves" msgstr "该设备的功能" -#: netbox/dcim/models/devices.py:608 +#: dcim/models/devices.py:608 msgid "Chassis serial number, assigned by the manufacturer" msgstr "制造商分配的机箱序列号" -#: netbox/dcim/models/devices.py:616 netbox/dcim/models/devices.py:1189 +#: dcim/models/devices.py:616 dcim/models/devices.py:1189 msgid "A unique tag used to identify this device" msgstr "用于识别该设备的唯一标签" -#: netbox/dcim/models/devices.py:643 +#: dcim/models/devices.py:643 msgid "position (U)" msgstr "机柜位置(U)" -#: netbox/dcim/models/devices.py:650 +#: dcim/models/devices.py:650 msgid "rack face" msgstr "机柜安装方向" -#: netbox/dcim/models/devices.py:670 netbox/dcim/models/devices.py:1415 -#: netbox/virtualization/models/virtualmachines.py:100 +#: dcim/models/devices.py:670 dcim/models/devices.py:1415 +#: virtualization/models/virtualmachines.py:100 msgid "primary IPv4" msgstr "首选 IPv4" -#: netbox/dcim/models/devices.py:678 netbox/dcim/models/devices.py:1423 -#: netbox/virtualization/models/virtualmachines.py:108 +#: dcim/models/devices.py:678 dcim/models/devices.py:1423 +#: virtualization/models/virtualmachines.py:108 msgid "primary IPv6" msgstr "首选 IPv6" -#: netbox/dcim/models/devices.py:686 +#: dcim/models/devices.py:686 msgid "out-of-band IP" msgstr "带外管理IP地址" -#: netbox/dcim/models/devices.py:703 +#: dcim/models/devices.py:703 msgid "VC position" msgstr "堆叠位置" -#: netbox/dcim/models/devices.py:706 +#: dcim/models/devices.py:706 msgid "Virtual chassis position" msgstr "堆叠位置" -#: netbox/dcim/models/devices.py:709 +#: dcim/models/devices.py:709 msgid "VC priority" msgstr "VC优先级" -#: netbox/dcim/models/devices.py:713 +#: dcim/models/devices.py:713 msgid "Virtual chassis master election priority" msgstr "堆叠主设备优先级" -#: netbox/dcim/models/devices.py:716 netbox/dcim/models/sites.py:207 +#: dcim/models/devices.py:716 dcim/models/sites.py:207 msgid "latitude" msgstr "纬度" -#: netbox/dcim/models/devices.py:721 netbox/dcim/models/devices.py:729 -#: netbox/dcim/models/sites.py:212 netbox/dcim/models/sites.py:220 +#: dcim/models/devices.py:721 dcim/models/devices.py:729 +#: dcim/models/sites.py:212 dcim/models/sites.py:220 msgid "GPS coordinate in decimal format (xx.yyyyyy)" msgstr "GPS坐标(十进制格式, xx.yyyyyy)" -#: netbox/dcim/models/devices.py:724 netbox/dcim/models/sites.py:215 +#: dcim/models/devices.py:724 dcim/models/sites.py:215 msgid "longitude" msgstr "经度" -#: netbox/dcim/models/devices.py:797 +#: dcim/models/devices.py:797 msgid "Device name must be unique per site." msgstr "每个站点的设备名称必须唯一。" -#: netbox/dcim/models/devices.py:808 netbox/ipam/models/services.py:75 +#: dcim/models/devices.py:808 ipam/models/services.py:75 msgid "device" msgstr "设备" -#: netbox/dcim/models/devices.py:809 +#: dcim/models/devices.py:809 msgid "devices" msgstr "设备" -#: netbox/dcim/models/devices.py:835 +#: dcim/models/devices.py:835 #, python-brace-format msgid "Rack {rack} does not belong to site {site}." msgstr "机柜 {rack} 不属于 {site}站点." -#: netbox/dcim/models/devices.py:840 +#: dcim/models/devices.py:840 #, python-brace-format msgid "Location {location} does not belong to site {site}." msgstr "地点 {location} 不属于 {site}站点." -#: netbox/dcim/models/devices.py:846 +#: dcim/models/devices.py:846 #, python-brace-format msgid "Rack {rack} does not belong to location {location}." msgstr "机柜{rack}不属于{location}地点." -#: netbox/dcim/models/devices.py:853 +#: dcim/models/devices.py:853 msgid "Cannot select a rack face without assigning a rack." msgstr "在未分配机柜的情况下,无法选择安装在机柜的哪一面。" -#: netbox/dcim/models/devices.py:857 +#: dcim/models/devices.py:857 msgid "Cannot select a rack position without assigning a rack." msgstr "在未分配机柜的情况下,无法选择安装在机柜的哪个位置。" -#: netbox/dcim/models/devices.py:863 +#: dcim/models/devices.py:863 msgid "Position must be in increments of 0.5 rack units." msgstr "机柜位置必须以0.5个U位递增。" -#: netbox/dcim/models/devices.py:867 +#: dcim/models/devices.py:867 msgid "Must specify rack face when defining rack position." msgstr "指定机柜安装位置时必须指定安装在机柜的哪一面。" -#: netbox/dcim/models/devices.py:875 +#: dcim/models/devices.py:875 #, python-brace-format msgid "" "A 0U device type ({device_type}) cannot be assigned to a rack position." msgstr "无法将0U的设备类型({device_type})的设备安装在机柜中。" -#: netbox/dcim/models/devices.py:886 +#: dcim/models/devices.py:886 msgid "" "Child device types cannot be assigned to a rack face. This is an attribute " "of the parent device." msgstr "子设备类型不能安装到机柜的前/后面。这是父设备的一个属性。" -#: netbox/dcim/models/devices.py:893 +#: dcim/models/devices.py:893 msgid "" "Child device types cannot be assigned to a rack position. This is an " "attribute of the parent device." msgstr "子设备类型不能安装到机柜某个位置。这是父设备的一个属性。" -#: netbox/dcim/models/devices.py:907 +#: dcim/models/devices.py:907 #, python-brace-format msgid "" "U{position} is already occupied or does not have sufficient space to " "accommodate this device type: {device_type} ({u_height}U)" msgstr "{position}U已被占用或没有足够的空间容纳此设备类型:{device_type} ({u_height}U)" -#: netbox/dcim/models/devices.py:922 +#: dcim/models/devices.py:922 #, python-brace-format msgid "{ip} is not an IPv4 address." msgstr "{ip} 不是有效的IPv4地址" -#: netbox/dcim/models/devices.py:931 netbox/dcim/models/devices.py:946 +#: dcim/models/devices.py:931 dcim/models/devices.py:946 #, python-brace-format msgid "The specified IP address ({ip}) is not assigned to this device." msgstr "指定的IP地址 ({ip}) 未分配给该设备。" -#: netbox/dcim/models/devices.py:937 +#: dcim/models/devices.py:937 #, python-brace-format msgid "{ip} is not an IPv6 address." msgstr "{ip} 不是有效的IPv6地址" -#: netbox/dcim/models/devices.py:964 +#: dcim/models/devices.py:964 #, python-brace-format msgid "" "The assigned platform is limited to {platform_manufacturer} device types, " @@ -6067,1956 +5620,1845 @@ msgid "" msgstr "" "指定的平台仅限于{platform_manufacturer} 的设备类型,但此设备的类型属于{devicetype_manufacturer}。" -#: netbox/dcim/models/devices.py:975 +#: dcim/models/devices.py:975 #, python-brace-format msgid "The assigned cluster belongs to a different site ({site})" msgstr "分配的群集属于其他站点({site})" -#: netbox/dcim/models/devices.py:983 +#: dcim/models/devices.py:983 msgid "A device assigned to a virtual chassis must have its position defined." msgstr "分配给集群的设备必须定义其位置。" -#: netbox/dcim/models/devices.py:988 +#: dcim/models/devices.py:988 #, python-brace-format msgid "" "Device cannot be removed from virtual chassis {virtual_chassis} because it " "is currently designated as its master." msgstr "无法从虚拟机箱中移除设备 {virtual_chassis} 因为它目前被指定为主节点。" -#: netbox/dcim/models/devices.py:1196 +#: dcim/models/devices.py:1196 msgid "module" msgstr "模块" -#: netbox/dcim/models/devices.py:1197 +#: dcim/models/devices.py:1197 msgid "modules" msgstr "模块" -#: netbox/dcim/models/devices.py:1213 +#: dcim/models/devices.py:1213 #, python-brace-format msgid "" "Module must be installed within a module bay belonging to the assigned " "device ({device})." msgstr "模块必须安装在属于指定设备({device})的模块托架内。" -#: netbox/dcim/models/devices.py:1334 +#: dcim/models/devices.py:1334 msgid "domain" msgstr "域" -#: netbox/dcim/models/devices.py:1347 netbox/dcim/models/devices.py:1348 +#: dcim/models/devices.py:1347 dcim/models/devices.py:1348 msgid "virtual chassis" msgstr "堆叠" -#: netbox/dcim/models/devices.py:1363 +#: dcim/models/devices.py:1363 #, python-brace-format msgid "" "The selected master ({master}) is not assigned to this virtual chassis." msgstr "所选主设备({master})未分配给此堆叠。" -#: netbox/dcim/models/devices.py:1379 +#: dcim/models/devices.py:1379 #, python-brace-format msgid "" "Unable to delete virtual chassis {self}. There are member interfaces which " "form a cross-chassis LAG interfaces." msgstr "无法删除堆叠 {self}。有成员接口属于跨机箱聚合。" -#: netbox/dcim/models/devices.py:1404 netbox/vpn/models/l2vpn.py:37 +#: dcim/models/devices.py:1404 vpn/models/l2vpn.py:37 msgid "identifier" msgstr "标识符" -#: netbox/dcim/models/devices.py:1405 +#: dcim/models/devices.py:1405 msgid "Numeric identifier unique to the parent device" msgstr "父设备唯一的标识符" -#: netbox/dcim/models/devices.py:1433 netbox/extras/models/customfields.py:225 -#: netbox/extras/models/models.py:107 netbox/extras/models/models.py:694 -#: netbox/netbox/models/__init__.py:115 +#: dcim/models/devices.py:1433 extras/models/customfields.py:225 +#: extras/models/models.py:107 extras/models/models.py:694 +#: netbox/models/__init__.py:115 msgid "comments" msgstr "评论" -#: netbox/dcim/models/devices.py:1449 +#: dcim/models/devices.py:1449 msgid "virtual device context" msgstr "设备虚拟实例" -#: netbox/dcim/models/devices.py:1450 +#: dcim/models/devices.py:1450 msgid "virtual device contexts" msgstr "设备虚拟实例" -#: netbox/dcim/models/devices.py:1482 +#: dcim/models/devices.py:1482 #, python-brace-format msgid "{ip} is not an IPv{family} address." msgstr "{ip} 不是有效的 IPv{family} 地址" -#: netbox/dcim/models/devices.py:1488 +#: dcim/models/devices.py:1488 msgid "Primary IP address must belong to an interface on the assigned device." msgstr "首选 IP 地址必须属于指定设备上的接口。" -#: netbox/dcim/models/mixins.py:15 netbox/extras/models/configs.py:41 -#: netbox/extras/models/models.py:313 netbox/extras/models/models.py:522 -#: netbox/extras/models/search.py:48 netbox/ipam/models/ip.py:194 +#: dcim/models/mixins.py:15 extras/models/configs.py:41 +#: extras/models/models.py:313 extras/models/models.py:522 +#: extras/models/search.py:48 ipam/models/ip.py:194 msgid "weight" msgstr "重量" -#: netbox/dcim/models/mixins.py:22 +#: dcim/models/mixins.py:22 msgid "weight unit" msgstr "重量单位" -#: netbox/dcim/models/mixins.py:51 +#: dcim/models/mixins.py:51 msgid "Must specify a unit when setting a weight" msgstr "设置重量时必须指定单位" -#: netbox/dcim/models/power.py:55 +#: dcim/models/power.py:55 msgid "power panel" msgstr "电源面板" -#: netbox/dcim/models/power.py:56 +#: dcim/models/power.py:56 msgid "power panels" msgstr "电源面板" -#: netbox/dcim/models/power.py:70 +#: dcim/models/power.py:70 #, python-brace-format msgid "" "Location {location} ({location_site}) is in a different site than {site}" msgstr "位置 {location} ({location_site}) 位于不同的站点 {site}" -#: netbox/dcim/models/power.py:108 +#: dcim/models/power.py:108 msgid "supply" msgstr "供应" -#: netbox/dcim/models/power.py:114 +#: dcim/models/power.py:114 msgid "phase" msgstr "相位" -#: netbox/dcim/models/power.py:120 +#: dcim/models/power.py:120 msgid "voltage" msgstr "电压" -#: netbox/dcim/models/power.py:125 +#: dcim/models/power.py:125 msgid "amperage" msgstr "电流" -#: netbox/dcim/models/power.py:130 +#: dcim/models/power.py:130 msgid "max utilization" msgstr "最大利用率" -#: netbox/dcim/models/power.py:133 +#: dcim/models/power.py:133 msgid "Maximum permissible draw (percentage)" msgstr "最大允许利用率(百分比)" -#: netbox/dcim/models/power.py:136 +#: dcim/models/power.py:136 msgid "available power" msgstr "可用功率" -#: netbox/dcim/models/power.py:164 +#: dcim/models/power.py:164 msgid "power feed" msgstr "电力来源" -#: netbox/dcim/models/power.py:165 +#: dcim/models/power.py:165 msgid "power feeds" msgstr "电力来源" -#: netbox/dcim/models/power.py:179 +#: dcim/models/power.py:179 #, python-brace-format msgid "" "Rack {rack} ({rack_site}) and power panel {powerpanel} ({powerpanel_site}) " "are in different sites." msgstr "机柜{rack} ({rack_site})和电源面板{powerpanel} ({powerpanel_site})位于不同的站点。" -#: netbox/dcim/models/power.py:190 +#: dcim/models/power.py:190 msgid "Voltage cannot be negative for AC supply" msgstr "交流电源的电压不能为负" -#: netbox/dcim/models/racks.py:47 +#: dcim/models/racks.py:47 msgid "width" msgstr "宽度" -#: netbox/dcim/models/racks.py:48 +#: dcim/models/racks.py:48 msgid "Rail-to-rail width" msgstr "机柜间宽度" -#: netbox/dcim/models/racks.py:56 +#: dcim/models/racks.py:56 msgid "Height in rack units" msgstr "以U为单位的机柜高度" -#: netbox/dcim/models/racks.py:60 +#: dcim/models/racks.py:60 msgid "starting unit" msgstr "起始U位" -#: netbox/dcim/models/racks.py:62 +#: dcim/models/racks.py:62 msgid "Starting unit for rack" msgstr "此机柜的起始U位" -#: netbox/dcim/models/racks.py:66 +#: dcim/models/racks.py:66 msgid "descending units" msgstr "U位显示降序" -#: netbox/dcim/models/racks.py:67 +#: dcim/models/racks.py:67 msgid "Units are numbered top-to-bottom" msgstr "U位从上到下编号" -#: netbox/dcim/models/racks.py:72 +#: dcim/models/racks.py:72 msgid "outer width" msgstr "外部宽度" -#: netbox/dcim/models/racks.py:75 +#: dcim/models/racks.py:75 msgid "Outer dimension of rack (width)" msgstr "机柜外部尺寸(宽)" -#: netbox/dcim/models/racks.py:78 +#: dcim/models/racks.py:78 msgid "outer depth" msgstr "外部长度/深度" -#: netbox/dcim/models/racks.py:81 +#: dcim/models/racks.py:81 msgid "Outer dimension of rack (depth)" msgstr "机架外形尺寸(深度)" -#: netbox/dcim/models/racks.py:84 +#: dcim/models/racks.py:84 msgid "outer unit" msgstr "外框尺寸的单位" -#: netbox/dcim/models/racks.py:90 +#: dcim/models/racks.py:90 msgid "mounting depth" msgstr "安装深度" -#: netbox/dcim/models/racks.py:94 +#: dcim/models/racks.py:94 msgid "" "Maximum depth of a mounted device, in millimeters. For four-post racks, this" " is the distance between the front and rear rails." msgstr "已安装设备的最大深度(以毫米为单位)。 对于四柱机架,这是前导轨和后导轨之间的距离。" -#: netbox/dcim/models/racks.py:102 +#: dcim/models/racks.py:102 msgid "max weight" msgstr "最大承重" -#: netbox/dcim/models/racks.py:105 +#: dcim/models/racks.py:105 msgid "Maximum load capacity for the rack" msgstr "机柜最大承重" -#: netbox/dcim/models/racks.py:125 netbox/dcim/models/racks.py:252 +#: dcim/models/racks.py:125 dcim/models/racks.py:252 msgid "form factor" msgstr "外形规格" -#: netbox/dcim/models/racks.py:162 +#: dcim/models/racks.py:162 msgid "rack type" msgstr "机架类型" -#: netbox/dcim/models/racks.py:163 +#: dcim/models/racks.py:163 msgid "rack types" msgstr "机架类型" -#: netbox/dcim/models/racks.py:180 netbox/dcim/models/racks.py:379 +#: dcim/models/racks.py:180 dcim/models/racks.py:379 msgid "Must specify a unit when setting an outer width/depth" msgstr "设置外部宽度/深度时必须指定单位" -#: netbox/dcim/models/racks.py:184 netbox/dcim/models/racks.py:383 +#: dcim/models/racks.py:184 dcim/models/racks.py:383 msgid "Must specify a unit when setting a maximum weight" msgstr "设置最大承重时必须指定单位" -#: netbox/dcim/models/racks.py:230 +#: dcim/models/racks.py:230 msgid "rack role" msgstr "机柜角色" -#: netbox/dcim/models/racks.py:231 +#: dcim/models/racks.py:231 msgid "rack roles" msgstr "机柜角色" -#: netbox/dcim/models/racks.py:274 +#: dcim/models/racks.py:274 msgid "facility ID" msgstr "标识符ID" -#: netbox/dcim/models/racks.py:275 +#: dcim/models/racks.py:275 msgid "Locally-assigned identifier" msgstr "本地分配的标识符" -#: netbox/dcim/models/racks.py:308 netbox/ipam/forms/bulk_import.py:201 -#: netbox/ipam/forms/bulk_import.py:266 netbox/ipam/forms/bulk_import.py:301 -#: netbox/ipam/forms/bulk_import.py:459 -#: netbox/virtualization/forms/bulk_import.py:112 +#: dcim/models/racks.py:308 ipam/forms/bulk_import.py:201 +#: ipam/forms/bulk_import.py:266 ipam/forms/bulk_import.py:301 +#: ipam/forms/bulk_import.py:459 virtualization/forms/bulk_import.py:112 msgid "Functional role" msgstr "功能角色" -#: netbox/dcim/models/racks.py:321 +#: dcim/models/racks.py:321 msgid "A unique tag used to identify this rack" msgstr "用于识别该机柜的唯一标识" -#: netbox/dcim/models/racks.py:359 +#: dcim/models/racks.py:359 msgid "rack" msgstr "机柜" -#: netbox/dcim/models/racks.py:360 +#: dcim/models/racks.py:360 msgid "racks" msgstr "机柜" -#: netbox/dcim/models/racks.py:375 +#: dcim/models/racks.py:375 #, python-brace-format msgid "Assigned location must belong to parent site ({site})." msgstr "指定的位置必须属于父站点({site})。" -#: netbox/dcim/models/racks.py:393 +#: dcim/models/racks.py:393 #, python-brace-format msgid "" "Rack must be at least {min_height}U tall to house currently installed " "devices." msgstr "机柜必须有至少{min_height}U高,才可以容纳当前安装的设备。" -#: netbox/dcim/models/racks.py:400 +#: dcim/models/racks.py:400 #, python-brace-format msgid "" "Rack unit numbering must begin at {position} or less to house currently " "installed devices." msgstr "机柜单元编号必须从{position}或以上开始,才能容纳当前安装的设备。" -#: netbox/dcim/models/racks.py:408 +#: dcim/models/racks.py:408 #, python-brace-format msgid "Location must be from the same site, {site}." msgstr "位置必须来自同一站点 {site}。" -#: netbox/dcim/models/racks.py:670 +#: dcim/models/racks.py:670 msgid "units" msgstr "位置" -#: netbox/dcim/models/racks.py:696 +#: dcim/models/racks.py:696 msgid "rack reservation" msgstr "机柜预留" -#: netbox/dcim/models/racks.py:697 +#: dcim/models/racks.py:697 msgid "rack reservations" msgstr "机柜预留" -#: netbox/dcim/models/racks.py:714 +#: dcim/models/racks.py:714 #, python-brace-format msgid "Invalid unit(s) for {height}U rack: {unit_list}" msgstr "{height}U机柜中无效的U位: {unit_list}" -#: netbox/dcim/models/racks.py:727 +#: dcim/models/racks.py:727 #, python-brace-format msgid "The following units have already been reserved: {unit_list}" msgstr "以下U位已被保留:{unit_list}" -#: netbox/dcim/models/sites.py:49 +#: dcim/models/sites.py:49 msgid "A top-level region with this name already exists." msgstr "具有此名称的顶级区域已存在。" -#: netbox/dcim/models/sites.py:59 +#: dcim/models/sites.py:59 msgid "A top-level region with this slug already exists." msgstr "具有此缩写的顶级区域已经存在。" -#: netbox/dcim/models/sites.py:62 +#: dcim/models/sites.py:62 msgid "region" msgstr "地区" -#: netbox/dcim/models/sites.py:63 +#: dcim/models/sites.py:63 msgid "regions" msgstr "地区" -#: netbox/dcim/models/sites.py:102 +#: dcim/models/sites.py:102 msgid "A top-level site group with this name already exists." msgstr "具有此名称的顶级站点组已存在。" -#: netbox/dcim/models/sites.py:112 +#: dcim/models/sites.py:112 msgid "A top-level site group with this slug already exists." msgstr "具有此缩写的顶级站点组已存在。" -#: netbox/dcim/models/sites.py:115 +#: dcim/models/sites.py:115 msgid "site group" msgstr "站点组" -#: netbox/dcim/models/sites.py:116 +#: dcim/models/sites.py:116 msgid "site groups" msgstr "站点组" -#: netbox/dcim/models/sites.py:141 +#: dcim/models/sites.py:141 msgid "Full name of the site" msgstr "站点全名" -#: netbox/dcim/models/sites.py:181 netbox/dcim/models/sites.py:279 +#: dcim/models/sites.py:181 dcim/models/sites.py:279 msgid "facility" msgstr "设施" -#: netbox/dcim/models/sites.py:184 netbox/dcim/models/sites.py:282 +#: dcim/models/sites.py:184 dcim/models/sites.py:282 msgid "Local facility ID or description" msgstr "本地设施 ID 或描述" -#: netbox/dcim/models/sites.py:195 +#: dcim/models/sites.py:195 msgid "physical address" msgstr "物理地址" -#: netbox/dcim/models/sites.py:198 +#: dcim/models/sites.py:198 msgid "Physical location of the building" msgstr "机房的实体位置" -#: netbox/dcim/models/sites.py:201 +#: dcim/models/sites.py:201 msgid "shipping address" msgstr "快递地址" -#: netbox/dcim/models/sites.py:204 +#: dcim/models/sites.py:204 msgid "If different from the physical address" msgstr "若与实体地址不同" -#: netbox/dcim/models/sites.py:238 +#: dcim/models/sites.py:238 msgid "site" msgstr "站点" -#: netbox/dcim/models/sites.py:239 +#: dcim/models/sites.py:239 msgid "sites" msgstr "站点" -#: netbox/dcim/models/sites.py:309 +#: dcim/models/sites.py:309 msgid "A location with this name already exists within the specified site." msgstr "指定的站点中已存在此名称的位置。" -#: netbox/dcim/models/sites.py:319 +#: dcim/models/sites.py:319 msgid "A location with this slug already exists within the specified site." msgstr "指定的站点中已存在此缩写的位置。" -#: netbox/dcim/models/sites.py:322 +#: dcim/models/sites.py:322 msgid "location" msgstr "位置" -#: netbox/dcim/models/sites.py:323 +#: dcim/models/sites.py:323 msgid "locations" msgstr "位置" -#: netbox/dcim/models/sites.py:337 +#: dcim/models/sites.py:337 #, python-brace-format msgid "Parent location ({parent}) must belong to the same site ({site})." msgstr "父位置({parent})必须属于同一站点({site})。" -#: netbox/dcim/tables/cables.py:55 +#: dcim/tables/cables.py:55 msgid "Termination A" msgstr "本端A" -#: netbox/dcim/tables/cables.py:60 +#: dcim/tables/cables.py:60 msgid "Termination B" msgstr "对端B" -#: netbox/dcim/tables/cables.py:66 netbox/wireless/tables/wirelesslink.py:23 +#: dcim/tables/cables.py:66 wireless/tables/wirelesslink.py:23 msgid "Device A" msgstr "设备A" -#: netbox/dcim/tables/cables.py:72 netbox/wireless/tables/wirelesslink.py:32 +#: dcim/tables/cables.py:72 wireless/tables/wirelesslink.py:32 msgid "Device B" msgstr "设备B" -#: netbox/dcim/tables/cables.py:78 +#: dcim/tables/cables.py:78 msgid "Location A" msgstr "位置A" -#: netbox/dcim/tables/cables.py:84 +#: dcim/tables/cables.py:84 msgid "Location B" msgstr "位置B" -#: netbox/dcim/tables/cables.py:90 +#: dcim/tables/cables.py:90 msgid "Rack A" msgstr "机柜A" -#: netbox/dcim/tables/cables.py:96 +#: dcim/tables/cables.py:96 msgid "Rack B" msgstr "机柜B" -#: netbox/dcim/tables/cables.py:102 +#: dcim/tables/cables.py:102 msgid "Site A" msgstr "站点A" -#: netbox/dcim/tables/cables.py:108 +#: dcim/tables/cables.py:108 msgid "Site B" msgstr "站点B" -#: netbox/dcim/tables/connections.py:31 netbox/dcim/tables/connections.py:50 -#: netbox/dcim/tables/connections.py:71 -#: netbox/templates/dcim/inc/connection_endpoints.html:16 +#: dcim/tables/connections.py:31 dcim/tables/connections.py:50 +#: dcim/tables/connections.py:71 +#: templates/dcim/inc/connection_endpoints.html:16 msgid "Reachable" msgstr "可达性" -#: netbox/dcim/tables/devices.py:58 netbox/dcim/tables/devices.py:106 -#: netbox/dcim/tables/racks.py:150 netbox/dcim/tables/sites.py:105 -#: netbox/dcim/tables/sites.py:148 netbox/extras/tables/tables.py:545 -#: netbox/netbox/navigation/menu.py:69 netbox/netbox/navigation/menu.py:73 -#: netbox/netbox/navigation/menu.py:75 -#: netbox/virtualization/forms/model_forms.py:122 -#: netbox/virtualization/tables/clusters.py:83 -#: netbox/virtualization/views.py:206 +#: dcim/tables/devices.py:58 dcim/tables/devices.py:106 +#: dcim/tables/racks.py:150 dcim/tables/sites.py:105 dcim/tables/sites.py:148 +#: extras/tables/tables.py:545 netbox/navigation/menu.py:69 +#: netbox/navigation/menu.py:73 netbox/navigation/menu.py:75 +#: virtualization/forms/model_forms.py:122 +#: virtualization/tables/clusters.py:83 virtualization/views.py:206 msgid "Devices" msgstr "设备" -#: netbox/dcim/tables/devices.py:63 netbox/dcim/tables/devices.py:111 -#: netbox/virtualization/tables/clusters.py:88 +#: dcim/tables/devices.py:63 dcim/tables/devices.py:111 +#: virtualization/tables/clusters.py:88 msgid "VMs" msgstr "VMs" -#: netbox/dcim/tables/devices.py:100 netbox/dcim/tables/devices.py:216 -#: netbox/extras/forms/model_forms.py:630 -#: netbox/templates/dcim/device.html:112 -#: netbox/templates/dcim/device/render_config.html:11 -#: netbox/templates/dcim/device/render_config.html:14 -#: netbox/templates/dcim/devicerole.html:44 -#: netbox/templates/dcim/platform.html:41 -#: netbox/templates/extras/configtemplate.html:10 -#: netbox/templates/virtualization/virtualmachine.html:48 -#: netbox/templates/virtualization/virtualmachine/render_config.html:11 -#: netbox/templates/virtualization/virtualmachine/render_config.html:14 -#: netbox/virtualization/tables/virtualmachines.py:107 +#: dcim/tables/devices.py:100 dcim/tables/devices.py:216 +#: extras/forms/model_forms.py:630 templates/dcim/device.html:112 +#: templates/dcim/device/render_config.html:11 +#: templates/dcim/device/render_config.html:14 +#: templates/dcim/devicerole.html:44 templates/dcim/platform.html:41 +#: templates/extras/configtemplate.html:10 +#: templates/virtualization/virtualmachine.html:48 +#: templates/virtualization/virtualmachine/render_config.html:11 +#: templates/virtualization/virtualmachine/render_config.html:14 +#: virtualization/tables/virtualmachines.py:107 msgid "Config Template" msgstr "配置模版" -#: netbox/dcim/tables/devices.py:150 netbox/templates/dcim/sitegroup.html:26 +#: dcim/tables/devices.py:150 templates/dcim/sitegroup.html:26 msgid "Site Group" msgstr "站点组" -#: netbox/dcim/tables/devices.py:187 netbox/dcim/tables/devices.py:1068 -#: netbox/ipam/forms/bulk_import.py:503 netbox/ipam/forms/model_forms.py:306 -#: netbox/ipam/forms/model_forms.py:315 netbox/ipam/tables/ip.py:356 -#: netbox/ipam/tables/ip.py:423 netbox/ipam/tables/ip.py:446 -#: netbox/templates/ipam/ipaddress.html:11 -#: netbox/virtualization/tables/virtualmachines.py:95 +#: dcim/tables/devices.py:187 dcim/tables/devices.py:1068 +#: ipam/forms/bulk_import.py:503 ipam/forms/model_forms.py:306 +#: ipam/forms/model_forms.py:315 ipam/tables/ip.py:356 ipam/tables/ip.py:423 +#: ipam/tables/ip.py:446 templates/ipam/ipaddress.html:11 +#: virtualization/tables/virtualmachines.py:95 msgid "IP Address" msgstr "IP地址" -#: netbox/dcim/tables/devices.py:191 netbox/dcim/tables/devices.py:1072 -#: netbox/virtualization/tables/virtualmachines.py:86 +#: dcim/tables/devices.py:191 dcim/tables/devices.py:1072 +#: virtualization/tables/virtualmachines.py:86 msgid "IPv4 Address" msgstr "IPv4 地址" -#: netbox/dcim/tables/devices.py:195 netbox/dcim/tables/devices.py:1076 -#: netbox/virtualization/tables/virtualmachines.py:90 +#: dcim/tables/devices.py:195 dcim/tables/devices.py:1076 +#: virtualization/tables/virtualmachines.py:90 msgid "IPv6 Address" msgstr "IPv6 地址" -#: netbox/dcim/tables/devices.py:210 +#: dcim/tables/devices.py:210 msgid "VC Position" msgstr "堆叠位置" -#: netbox/dcim/tables/devices.py:213 +#: dcim/tables/devices.py:213 msgid "VC Priority" msgstr "堆叠优先级" -#: netbox/dcim/tables/devices.py:220 netbox/templates/dcim/device_edit.html:38 -#: netbox/templates/dcim/devicebay_populate.html:16 +#: dcim/tables/devices.py:220 templates/dcim/device_edit.html:38 +#: templates/dcim/devicebay_populate.html:16 msgid "Parent Device" msgstr "父设备" -#: netbox/dcim/tables/devices.py:225 +#: dcim/tables/devices.py:225 msgid "Position (Device Bay)" msgstr "位置(设备托架)" -#: netbox/dcim/tables/devices.py:234 +#: dcim/tables/devices.py:234 msgid "Console ports" msgstr "Console 端口" -#: netbox/dcim/tables/devices.py:237 +#: dcim/tables/devices.py:237 msgid "Console server ports" msgstr "Console 服务器端口" -#: netbox/dcim/tables/devices.py:240 +#: dcim/tables/devices.py:240 msgid "Power ports" msgstr "电源接口" -#: netbox/dcim/tables/devices.py:243 +#: dcim/tables/devices.py:243 msgid "Power outlets" msgstr "电源插座" -#: netbox/dcim/tables/devices.py:246 netbox/dcim/tables/devices.py:1081 -#: netbox/dcim/tables/devicetypes.py:128 netbox/dcim/views.py:1042 -#: netbox/dcim/views.py:1281 netbox/dcim/views.py:1977 -#: netbox/netbox/navigation/menu.py:94 netbox/netbox/navigation/menu.py:250 -#: netbox/templates/dcim/device/base.html:37 -#: netbox/templates/dcim/device_list.html:43 -#: netbox/templates/dcim/devicetype/base.html:34 -#: netbox/templates/dcim/module.html:34 -#: netbox/templates/dcim/moduletype/base.html:34 -#: netbox/templates/dcim/virtualdevicecontext.html:61 -#: netbox/templates/dcim/virtualdevicecontext.html:81 -#: netbox/templates/virtualization/virtualmachine/base.html:27 -#: netbox/templates/virtualization/virtualmachine_list.html:14 -#: netbox/virtualization/tables/virtualmachines.py:101 -#: netbox/virtualization/views.py:366 netbox/wireless/tables/wirelesslan.py:55 +#: dcim/tables/devices.py:246 dcim/tables/devices.py:1081 +#: dcim/tables/devicetypes.py:128 dcim/views.py:1042 dcim/views.py:1281 +#: dcim/views.py:1977 netbox/navigation/menu.py:94 +#: netbox/navigation/menu.py:250 templates/dcim/device/base.html:37 +#: templates/dcim/device_list.html:43 templates/dcim/devicetype/base.html:34 +#: templates/dcim/inc/moduletype_buttons.html:25 templates/dcim/module.html:34 +#: templates/dcim/virtualdevicecontext.html:61 +#: templates/dcim/virtualdevicecontext.html:81 +#: templates/virtualization/virtualmachine/base.html:27 +#: templates/virtualization/virtualmachine_list.html:14 +#: virtualization/tables/virtualmachines.py:101 virtualization/views.py:366 +#: wireless/tables/wirelesslan.py:55 msgid "Interfaces" msgstr "接口" -#: netbox/dcim/tables/devices.py:249 +#: dcim/tables/devices.py:249 msgid "Front ports" msgstr "前置端口" -#: netbox/dcim/tables/devices.py:255 +#: dcim/tables/devices.py:255 msgid "Device bays" msgstr "设备托架" -#: netbox/dcim/tables/devices.py:258 +#: dcim/tables/devices.py:258 msgid "Module bays" msgstr "设备板卡插槽" -#: netbox/dcim/tables/devices.py:261 +#: dcim/tables/devices.py:261 msgid "Inventory items" msgstr "库存项" -#: netbox/dcim/tables/devices.py:305 netbox/dcim/tables/modules.py:56 -#: netbox/templates/dcim/modulebay.html:17 +#: dcim/tables/devices.py:305 dcim/tables/modules.py:56 +#: templates/dcim/modulebay.html:17 msgid "Module Bay" msgstr "设备板卡插槽" -#: netbox/dcim/tables/devices.py:318 netbox/dcim/tables/devicetypes.py:47 -#: netbox/dcim/tables/devicetypes.py:143 netbox/dcim/views.py:1117 -#: netbox/dcim/views.py:2075 netbox/netbox/navigation/menu.py:103 -#: netbox/templates/dcim/device/base.html:52 -#: netbox/templates/dcim/device_list.html:71 -#: netbox/templates/dcim/devicetype/base.html:49 -#: netbox/templates/dcim/inc/panels/inventory_items.html:6 -#: netbox/templates/dcim/inventoryitemrole.html:32 +#: dcim/tables/devices.py:318 dcim/tables/devicetypes.py:47 +#: dcim/tables/devicetypes.py:143 dcim/views.py:1117 dcim/views.py:2075 +#: netbox/navigation/menu.py:103 templates/dcim/device/base.html:52 +#: templates/dcim/device_list.html:71 templates/dcim/devicetype/base.html:49 +#: templates/dcim/inc/panels/inventory_items.html:6 +#: templates/dcim/inventoryitemrole.html:32 msgid "Inventory Items" msgstr "库存项目" -#: netbox/dcim/tables/devices.py:333 +#: dcim/tables/devices.py:333 msgid "Cable Color" msgstr "线缆颜色" -#: netbox/dcim/tables/devices.py:339 +#: dcim/tables/devices.py:339 msgid "Link Peers" msgstr "链接对等体" -#: netbox/dcim/tables/devices.py:342 +#: dcim/tables/devices.py:342 msgid "Mark Connected" msgstr "标记已连接" -#: netbox/dcim/tables/devices.py:461 +#: dcim/tables/devices.py:461 msgid "Maximum draw (W)" msgstr "最大功率(W)" -#: netbox/dcim/tables/devices.py:464 +#: dcim/tables/devices.py:464 msgid "Allocated draw (W)" msgstr "分配功率(W)" -#: netbox/dcim/tables/devices.py:558 netbox/ipam/forms/model_forms.py:701 -#: netbox/ipam/tables/fhrp.py:28 netbox/ipam/views.py:596 -#: netbox/ipam/views.py:696 netbox/netbox/navigation/menu.py:158 -#: netbox/netbox/navigation/menu.py:160 -#: netbox/templates/dcim/interface.html:339 -#: netbox/templates/ipam/ipaddress_bulk_add.html:15 -#: netbox/templates/ipam/service.html:40 -#: netbox/templates/virtualization/vminterface.html:85 -#: netbox/vpn/tables/tunnels.py:98 +#: dcim/tables/devices.py:558 ipam/forms/model_forms.py:701 +#: ipam/tables/fhrp.py:28 ipam/views.py:596 ipam/views.py:696 +#: netbox/navigation/menu.py:158 netbox/navigation/menu.py:160 +#: templates/dcim/interface.html:339 templates/ipam/ipaddress_bulk_add.html:15 +#: templates/ipam/service.html:40 templates/virtualization/vminterface.html:85 +#: vpn/tables/tunnels.py:98 msgid "IP Addresses" msgstr "IP地址" -#: netbox/dcim/tables/devices.py:564 netbox/netbox/navigation/menu.py:202 -#: netbox/templates/ipam/inc/panels/fhrp_groups.html:6 +#: dcim/tables/devices.py:564 netbox/navigation/menu.py:202 +#: templates/ipam/inc/panels/fhrp_groups.html:6 msgid "FHRP Groups" msgstr "网关冗余协议组" -#: netbox/dcim/tables/devices.py:576 netbox/templates/dcim/interface.html:89 -#: netbox/templates/virtualization/vminterface.html:67 -#: netbox/templates/vpn/tunnel.html:18 -#: netbox/templates/vpn/tunneltermination.html:13 -#: netbox/vpn/forms/bulk_edit.py:76 netbox/vpn/forms/bulk_import.py:76 -#: netbox/vpn/forms/filtersets.py:42 netbox/vpn/forms/filtersets.py:82 -#: netbox/vpn/forms/model_forms.py:60 netbox/vpn/forms/model_forms.py:145 -#: netbox/vpn/tables/tunnels.py:78 +#: dcim/tables/devices.py:576 templates/dcim/interface.html:89 +#: templates/virtualization/vminterface.html:67 templates/vpn/tunnel.html:18 +#: templates/vpn/tunneltermination.html:13 vpn/forms/bulk_edit.py:76 +#: vpn/forms/bulk_import.py:76 vpn/forms/filtersets.py:42 +#: vpn/forms/filtersets.py:82 vpn/forms/model_forms.py:60 +#: vpn/forms/model_forms.py:145 vpn/tables/tunnels.py:78 msgid "Tunnel" msgstr "隧道" -#: netbox/dcim/tables/devices.py:604 netbox/dcim/tables/devicetypes.py:227 -#: netbox/templates/dcim/interface.html:65 +#: dcim/tables/devices.py:604 dcim/tables/devicetypes.py:227 +#: templates/dcim/interface.html:65 msgid "Management Only" msgstr "仅限管理" -#: netbox/dcim/tables/devices.py:623 +#: dcim/tables/devices.py:623 msgid "VDCs" msgstr "VDCs" -#: netbox/dcim/tables/devices.py:873 netbox/templates/dcim/modulebay.html:53 +#: dcim/tables/devices.py:873 templates/dcim/modulebay.html:53 msgid "Installed Module" msgstr "已安装的模块" -#: netbox/dcim/tables/devices.py:876 +#: dcim/tables/devices.py:876 msgid "Module Serial" msgstr "模块状态" -#: netbox/dcim/tables/devices.py:880 +#: dcim/tables/devices.py:880 msgid "Module Asset Tag" msgstr "模块资产标签" -#: netbox/dcim/tables/devices.py:889 +#: dcim/tables/devices.py:889 msgid "Module Status" msgstr "模块状态" -#: netbox/dcim/tables/devices.py:944 netbox/dcim/tables/devicetypes.py:312 -#: netbox/templates/dcim/inventoryitem.html:40 +#: dcim/tables/devices.py:944 dcim/tables/devicetypes.py:312 +#: templates/dcim/inventoryitem.html:40 msgid "Component" msgstr "组件" -#: netbox/dcim/tables/devices.py:1000 +#: dcim/tables/devices.py:1000 msgid "Items" msgstr "项目" -#: netbox/dcim/tables/devicetypes.py:37 netbox/netbox/navigation/menu.py:84 -#: netbox/netbox/navigation/menu.py:86 +#: dcim/tables/devicetypes.py:37 netbox/navigation/menu.py:84 +#: netbox/navigation/menu.py:86 msgid "Device Types" msgstr "设备型号" -#: netbox/dcim/tables/devicetypes.py:42 netbox/netbox/navigation/menu.py:87 +#: dcim/tables/devicetypes.py:42 netbox/navigation/menu.py:87 msgid "Module Types" msgstr "设备配件类型" -#: netbox/dcim/tables/devicetypes.py:52 netbox/extras/forms/filtersets.py:371 -#: netbox/extras/forms/model_forms.py:537 netbox/extras/tables/tables.py:540 -#: netbox/netbox/navigation/menu.py:78 +#: dcim/tables/devicetypes.py:52 extras/forms/filtersets.py:371 +#: extras/forms/model_forms.py:537 extras/tables/tables.py:540 +#: netbox/navigation/menu.py:78 msgid "Platforms" msgstr "操作系统" -#: netbox/dcim/tables/devicetypes.py:84 -#: netbox/templates/dcim/devicetype.html:29 +#: dcim/tables/devicetypes.py:84 templates/dcim/devicetype.html:29 msgid "Default Platform" msgstr "默认系统平台" -#: netbox/dcim/tables/devicetypes.py:88 -#: netbox/templates/dcim/devicetype.html:45 +#: dcim/tables/devicetypes.py:88 templates/dcim/devicetype.html:45 msgid "Full Depth" msgstr "全尺寸" -#: netbox/dcim/tables/devicetypes.py:98 +#: dcim/tables/devicetypes.py:98 msgid "U Height" msgstr "U高度" -#: netbox/dcim/tables/devicetypes.py:113 netbox/dcim/tables/modules.py:26 -#: netbox/dcim/tables/racks.py:89 +#: dcim/tables/devicetypes.py:113 dcim/tables/modules.py:26 +#: dcim/tables/racks.py:89 msgid "Instances" msgstr "实例" -#: netbox/dcim/tables/devicetypes.py:116 netbox/dcim/views.py:982 -#: netbox/dcim/views.py:1221 netbox/dcim/views.py:1913 -#: netbox/netbox/navigation/menu.py:97 -#: netbox/templates/dcim/device/base.html:25 -#: netbox/templates/dcim/device_list.html:15 -#: netbox/templates/dcim/devicetype/base.html:22 -#: netbox/templates/dcim/module.html:22 -#: netbox/templates/dcim/moduletype/base.html:22 +#: dcim/tables/devicetypes.py:116 dcim/views.py:982 dcim/views.py:1221 +#: dcim/views.py:1913 netbox/navigation/menu.py:97 +#: templates/dcim/device/base.html:25 templates/dcim/device_list.html:15 +#: templates/dcim/devicetype/base.html:22 +#: templates/dcim/inc/moduletype_buttons.html:13 templates/dcim/module.html:22 msgid "Console Ports" msgstr "Console口" -#: netbox/dcim/tables/devicetypes.py:119 netbox/dcim/views.py:997 -#: netbox/dcim/views.py:1236 netbox/dcim/views.py:1929 -#: netbox/netbox/navigation/menu.py:98 -#: netbox/templates/dcim/device/base.html:28 -#: netbox/templates/dcim/device_list.html:22 -#: netbox/templates/dcim/devicetype/base.html:25 -#: netbox/templates/dcim/module.html:25 -#: netbox/templates/dcim/moduletype/base.html:25 +#: dcim/tables/devicetypes.py:119 dcim/views.py:997 dcim/views.py:1236 +#: dcim/views.py:1929 netbox/navigation/menu.py:98 +#: templates/dcim/device/base.html:28 templates/dcim/device_list.html:22 +#: templates/dcim/devicetype/base.html:25 +#: templates/dcim/inc/moduletype_buttons.html:16 templates/dcim/module.html:25 msgid "Console Server Ports" msgstr "Console 服务端口" -#: netbox/dcim/tables/devicetypes.py:122 netbox/dcim/views.py:1012 -#: netbox/dcim/views.py:1251 netbox/dcim/views.py:1945 -#: netbox/netbox/navigation/menu.py:99 -#: netbox/templates/dcim/device/base.html:31 -#: netbox/templates/dcim/device_list.html:29 -#: netbox/templates/dcim/devicetype/base.html:28 -#: netbox/templates/dcim/module.html:28 -#: netbox/templates/dcim/moduletype/base.html:28 +#: dcim/tables/devicetypes.py:122 dcim/views.py:1012 dcim/views.py:1251 +#: dcim/views.py:1945 netbox/navigation/menu.py:99 +#: templates/dcim/device/base.html:31 templates/dcim/device_list.html:29 +#: templates/dcim/devicetype/base.html:28 +#: templates/dcim/inc/moduletype_buttons.html:19 templates/dcim/module.html:28 msgid "Power Ports" msgstr "电源接口" -#: netbox/dcim/tables/devicetypes.py:125 netbox/dcim/views.py:1027 -#: netbox/dcim/views.py:1266 netbox/dcim/views.py:1961 -#: netbox/netbox/navigation/menu.py:100 -#: netbox/templates/dcim/device/base.html:34 -#: netbox/templates/dcim/device_list.html:36 -#: netbox/templates/dcim/devicetype/base.html:31 -#: netbox/templates/dcim/module.html:31 -#: netbox/templates/dcim/moduletype/base.html:31 +#: dcim/tables/devicetypes.py:125 dcim/views.py:1027 dcim/views.py:1266 +#: dcim/views.py:1961 netbox/navigation/menu.py:100 +#: templates/dcim/device/base.html:34 templates/dcim/device_list.html:36 +#: templates/dcim/devicetype/base.html:31 +#: templates/dcim/inc/moduletype_buttons.html:22 templates/dcim/module.html:31 msgid "Power Outlets" msgstr "PDU" -#: netbox/dcim/tables/devicetypes.py:131 netbox/dcim/views.py:1057 -#: netbox/dcim/views.py:1296 netbox/dcim/views.py:1999 -#: netbox/netbox/navigation/menu.py:95 -#: netbox/templates/dcim/device/base.html:40 -#: netbox/templates/dcim/devicetype/base.html:37 -#: netbox/templates/dcim/module.html:37 -#: netbox/templates/dcim/moduletype/base.html:37 +#: dcim/tables/devicetypes.py:131 dcim/views.py:1057 dcim/views.py:1296 +#: dcim/views.py:1999 netbox/navigation/menu.py:95 +#: templates/dcim/device/base.html:40 templates/dcim/devicetype/base.html:37 +#: templates/dcim/inc/moduletype_buttons.html:28 templates/dcim/module.html:37 msgid "Front Ports" msgstr "前置端口" -#: netbox/dcim/tables/devicetypes.py:134 netbox/dcim/views.py:1072 -#: netbox/dcim/views.py:1311 netbox/dcim/views.py:2015 -#: netbox/netbox/navigation/menu.py:96 -#: netbox/templates/dcim/device/base.html:43 -#: netbox/templates/dcim/device_list.html:50 -#: netbox/templates/dcim/devicetype/base.html:40 -#: netbox/templates/dcim/module.html:40 -#: netbox/templates/dcim/moduletype/base.html:40 +#: dcim/tables/devicetypes.py:134 dcim/views.py:1072 dcim/views.py:1311 +#: dcim/views.py:2015 netbox/navigation/menu.py:96 +#: templates/dcim/device/base.html:43 templates/dcim/device_list.html:50 +#: templates/dcim/devicetype/base.html:40 +#: templates/dcim/inc/moduletype_buttons.html:31 templates/dcim/module.html:40 msgid "Rear Ports" msgstr "后置端口" -#: netbox/dcim/tables/devicetypes.py:137 netbox/dcim/views.py:1102 -#: netbox/dcim/views.py:2055 netbox/netbox/navigation/menu.py:102 -#: netbox/templates/dcim/device/base.html:49 -#: netbox/templates/dcim/device_list.html:57 -#: netbox/templates/dcim/devicetype/base.html:46 +#: dcim/tables/devicetypes.py:137 dcim/views.py:1102 dcim/views.py:2055 +#: netbox/navigation/menu.py:102 templates/dcim/device/base.html:49 +#: templates/dcim/device_list.html:57 templates/dcim/devicetype/base.html:46 msgid "Device Bays" msgstr "机柜托架" -#: netbox/dcim/tables/devicetypes.py:140 netbox/dcim/views.py:1087 -#: netbox/dcim/views.py:1326 netbox/dcim/views.py:2035 -#: netbox/netbox/navigation/menu.py:101 -#: netbox/templates/dcim/device/base.html:46 -#: netbox/templates/dcim/device_list.html:64 -#: netbox/templates/dcim/devicetype/base.html:43 -#: netbox/templates/dcim/module.html:43 -#: netbox/templates/dcim/moduletype/base.html:43 +#: dcim/tables/devicetypes.py:140 dcim/views.py:1087 dcim/views.py:1326 +#: dcim/views.py:2035 netbox/navigation/menu.py:101 +#: templates/dcim/device/base.html:46 templates/dcim/device_list.html:64 +#: templates/dcim/devicetype/base.html:43 +#: templates/dcim/inc/moduletype_buttons.html:34 templates/dcim/module.html:43 msgid "Module Bays" msgstr "设备板卡插槽" -#: netbox/dcim/tables/power.py:36 netbox/netbox/navigation/menu.py:297 -#: netbox/templates/dcim/powerpanel.html:51 +#: dcim/tables/power.py:36 netbox/navigation/menu.py:297 +#: templates/dcim/powerpanel.html:51 msgid "Power Feeds" msgstr "电力来源" -#: netbox/dcim/tables/power.py:80 netbox/templates/dcim/powerfeed.html:99 +#: dcim/tables/power.py:80 templates/dcim/powerfeed.html:99 msgid "Max Utilization" msgstr "最大利用率" -#: netbox/dcim/tables/power.py:84 +#: dcim/tables/power.py:84 msgid "Available Power (VA)" msgstr "可用功率 (VA)" -#: netbox/dcim/tables/racks.py:30 netbox/dcim/tables/sites.py:143 -#: netbox/netbox/navigation/menu.py:43 netbox/netbox/navigation/menu.py:47 -#: netbox/netbox/navigation/menu.py:49 +#: dcim/tables/racks.py:30 dcim/tables/sites.py:143 +#: netbox/navigation/menu.py:43 netbox/navigation/menu.py:47 +#: netbox/navigation/menu.py:49 msgid "Racks" msgstr "机柜" -#: netbox/dcim/tables/racks.py:63 netbox/dcim/tables/racks.py:142 -#: netbox/templates/dcim/device.html:318 -#: netbox/templates/dcim/inc/panels/racktype_dimensions.html:14 +#: dcim/tables/racks.py:63 dcim/tables/racks.py:142 +#: templates/dcim/device.html:318 +#: templates/dcim/inc/panels/racktype_dimensions.html:14 msgid "Height" msgstr "高度" -#: netbox/dcim/tables/racks.py:67 netbox/dcim/tables/racks.py:165 -#: netbox/templates/dcim/inc/panels/racktype_dimensions.html:18 +#: dcim/tables/racks.py:67 dcim/tables/racks.py:165 +#: templates/dcim/inc/panels/racktype_dimensions.html:18 msgid "Outer Width" msgstr "外部宽度" -#: netbox/dcim/tables/racks.py:71 netbox/dcim/tables/racks.py:169 -#: netbox/templates/dcim/inc/panels/racktype_dimensions.html:28 +#: dcim/tables/racks.py:71 dcim/tables/racks.py:169 +#: templates/dcim/inc/panels/racktype_dimensions.html:28 msgid "Outer Depth" msgstr "外部长度/深度" -#: netbox/dcim/tables/racks.py:79 netbox/dcim/tables/racks.py:177 +#: dcim/tables/racks.py:79 dcim/tables/racks.py:177 msgid "Max Weight" msgstr "最大承重" -#: netbox/dcim/tables/racks.py:154 +#: dcim/tables/racks.py:154 msgid "Space" msgstr "空间" -#: netbox/dcim/tables/sites.py:30 netbox/dcim/tables/sites.py:57 -#: netbox/extras/forms/filtersets.py:351 -#: netbox/extras/forms/model_forms.py:517 netbox/ipam/forms/bulk_edit.py:130 -#: netbox/ipam/forms/model_forms.py:153 netbox/ipam/tables/asn.py:66 -#: netbox/netbox/navigation/menu.py:15 netbox/netbox/navigation/menu.py:17 +#: dcim/tables/sites.py:30 dcim/tables/sites.py:57 +#: extras/forms/filtersets.py:351 extras/forms/model_forms.py:517 +#: ipam/forms/bulk_edit.py:131 ipam/forms/model_forms.py:153 +#: ipam/tables/asn.py:66 netbox/navigation/menu.py:15 +#: netbox/navigation/menu.py:17 msgid "Sites" msgstr "站点" -#: netbox/dcim/tests/test_api.py:47 +#: dcim/tests/test_api.py:47 msgid "Test case must set peer_termination_type" msgstr "测试用例必须设置对端端点类型" -#: netbox/dcim/views.py:140 +#: dcim/views.py:140 #, python-brace-format msgid "Disconnected {count} {type}" msgstr "已断开连接{count} {type}" -#: netbox/dcim/views.py:740 netbox/netbox/navigation/menu.py:51 +#: dcim/views.py:740 netbox/navigation/menu.py:51 msgid "Reservations" msgstr "机柜预留" -#: netbox/dcim/views.py:759 netbox/templates/dcim/location.html:90 -#: netbox/templates/dcim/site.html:140 +#: dcim/views.py:759 templates/dcim/location.html:90 +#: templates/dcim/site.html:140 msgid "Non-Racked Devices" msgstr "未上架设备" -#: netbox/dcim/views.py:2088 netbox/extras/forms/model_forms.py:577 -#: netbox/templates/extras/configcontext.html:10 -#: netbox/virtualization/forms/model_forms.py:225 -#: netbox/virtualization/views.py:407 +#: dcim/views.py:2088 extras/forms/model_forms.py:577 +#: templates/extras/configcontext.html:10 +#: virtualization/forms/model_forms.py:225 virtualization/views.py:407 msgid "Config Context" msgstr "配置实例" -#: netbox/dcim/views.py:2098 netbox/virtualization/views.py:417 +#: dcim/views.py:2098 virtualization/views.py:417 msgid "Render Config" msgstr "提交配置" -#: netbox/dcim/views.py:2131 netbox/virtualization/views.py:450 +#: dcim/views.py:2131 virtualization/views.py:450 #, python-brace-format msgid "An error occurred while rendering the template: {error}" msgstr "渲染模板时出错: {error}" -#: netbox/dcim/views.py:2149 netbox/extras/tables/tables.py:550 -#: netbox/netbox/navigation/menu.py:247 netbox/netbox/navigation/menu.py:249 -#: netbox/virtualization/views.py:180 +#: dcim/views.py:2149 extras/tables/tables.py:550 +#: netbox/navigation/menu.py:247 netbox/navigation/menu.py:249 +#: virtualization/views.py:180 msgid "Virtual Machines" msgstr "虚拟机" -#: netbox/dcim/views.py:2897 +#: dcim/views.py:2897 #, python-brace-format msgid "Installed device {device} in bay {device_bay}." msgstr "已安装的设备 {device} 在海湾里 {device_bay}。" -#: netbox/dcim/views.py:2938 +#: dcim/views.py:2938 #, python-brace-format msgid "Removed device {device} from bay {device_bay}." msgstr "已移除的设备 {device} 来自海湾 {device_bay}。" -#: netbox/dcim/views.py:3044 netbox/ipam/tables/ip.py:234 +#: dcim/views.py:3044 ipam/tables/ip.py:234 msgid "Children" msgstr "子网" -#: netbox/dcim/views.py:3510 +#: dcim/views.py:3510 #, python-brace-format msgid "Added member {device}" msgstr "已添加成员 {device}" -#: netbox/dcim/views.py:3557 +#: dcim/views.py:3557 #, python-brace-format msgid "Unable to remove master device {device} from the virtual chassis." msgstr "无法移除主设备 {device} 来自虚拟机箱。" -#: netbox/dcim/views.py:3570 +#: dcim/views.py:3570 #, python-brace-format msgid "Removed {device} from virtual chassis {chassis}" msgstr "已移除 {device} 来自虚拟机箱 {chassis}" -#: netbox/extras/api/customfields.py:89 +#: extras/api/customfields.py:89 #, python-brace-format msgid "Unknown related object(s): {name}" msgstr "未知的相关对象: {name}" -#: netbox/extras/api/serializers_/customfields.py:73 +#: extras/api/serializers_/customfields.py:73 msgid "Changing the type of custom fields is not supported." msgstr "不支持更改自定义字段的类型。" -#: netbox/extras/api/serializers_/scripts.py:70 -#: netbox/extras/api/serializers_/scripts.py:75 +#: extras/api/serializers_/scripts.py:70 extras/api/serializers_/scripts.py:75 msgid "Scheduling is not enabled for this script." msgstr "脚本计划未启用。" -#: netbox/extras/choices.py:30 netbox/extras/forms/misc.py:14 +#: extras/choices.py:30 extras/forms/misc.py:14 msgid "Text" msgstr "文本" -#: netbox/extras/choices.py:31 +#: extras/choices.py:31 msgid "Text (long)" msgstr "长文本" -#: netbox/extras/choices.py:32 +#: extras/choices.py:32 msgid "Integer" msgstr "整数" -#: netbox/extras/choices.py:33 +#: extras/choices.py:33 msgid "Decimal" msgstr "十进制" -#: netbox/extras/choices.py:34 +#: extras/choices.py:34 msgid "Boolean (true/false)" msgstr "布尔值(true/false)" -#: netbox/extras/choices.py:35 +#: extras/choices.py:35 msgid "Date" msgstr "日期" -#: netbox/extras/choices.py:36 +#: extras/choices.py:36 msgid "Date & time" msgstr "日期&时间" -#: netbox/extras/choices.py:38 +#: extras/choices.py:38 msgid "JSON" msgstr "JSON" -#: netbox/extras/choices.py:39 +#: extras/choices.py:39 msgid "Selection" msgstr "单选框" -#: netbox/extras/choices.py:40 +#: extras/choices.py:40 msgid "Multiple selection" msgstr "复选框" -#: netbox/extras/choices.py:42 +#: extras/choices.py:42 msgid "Multiple objects" msgstr "多个对象" -#: netbox/extras/choices.py:53 netbox/netbox/preferences.py:21 -#: netbox/templates/extras/customfield.html:78 netbox/vpn/choices.py:20 -#: netbox/wireless/choices.py:27 +#: extras/choices.py:53 netbox/preferences.py:21 +#: templates/extras/customfield.html:78 vpn/choices.py:20 +#: wireless/choices.py:27 msgid "Disabled" msgstr "禁用" -#: netbox/extras/choices.py:54 +#: extras/choices.py:54 msgid "Loose" msgstr "松散匹配" -#: netbox/extras/choices.py:55 +#: extras/choices.py:55 msgid "Exact" msgstr "严格匹配" -#: netbox/extras/choices.py:66 +#: extras/choices.py:66 msgid "Always" msgstr "总是可见" -#: netbox/extras/choices.py:67 +#: extras/choices.py:67 msgid "If set" msgstr "设置才可见" -#: netbox/extras/choices.py:68 netbox/extras/choices.py:81 +#: extras/choices.py:68 extras/choices.py:81 msgid "Hidden" msgstr "隐藏" -#: netbox/extras/choices.py:79 +#: extras/choices.py:79 msgid "Yes" msgstr "是" -#: netbox/extras/choices.py:80 +#: extras/choices.py:80 msgid "No" msgstr "否" -#: netbox/extras/choices.py:108 netbox/templates/tenancy/contact.html:57 -#: netbox/tenancy/forms/bulk_edit.py:118 -#: netbox/wireless/forms/model_forms.py:168 +#: extras/choices.py:108 templates/tenancy/contact.html:57 +#: tenancy/forms/bulk_edit.py:118 wireless/forms/model_forms.py:168 msgid "Link" msgstr "链接" -#: netbox/extras/choices.py:124 +#: extras/choices.py:124 msgid "Newest" msgstr "最新排序" -#: netbox/extras/choices.py:125 +#: extras/choices.py:125 msgid "Oldest" msgstr "最久排序" -#: netbox/extras/choices.py:126 +#: extras/choices.py:126 msgid "Alphabetical (A-Z)" msgstr "按字母顺序 (A-Z)" -#: netbox/extras/choices.py:127 +#: extras/choices.py:127 msgid "Alphabetical (Z-A)" msgstr "按字母顺序 (Z-A)" -#: netbox/extras/choices.py:144 netbox/extras/choices.py:167 +#: extras/choices.py:144 extras/choices.py:167 msgid "Info" msgstr "信息" -#: netbox/extras/choices.py:145 netbox/extras/choices.py:168 +#: extras/choices.py:145 extras/choices.py:168 msgid "Success" msgstr "成功" -#: netbox/extras/choices.py:146 netbox/extras/choices.py:169 +#: extras/choices.py:146 extras/choices.py:169 msgid "Warning" msgstr "警告" -#: netbox/extras/choices.py:147 +#: extras/choices.py:147 msgid "Danger" msgstr "危急" -#: netbox/extras/choices.py:165 +#: extras/choices.py:165 msgid "Debug" msgstr "调试" -#: netbox/extras/choices.py:166 netbox/netbox/choices.py:101 +#: extras/choices.py:166 netbox/choices.py:101 msgid "Default" msgstr "默认" -#: netbox/extras/choices.py:170 +#: extras/choices.py:170 msgid "Failure" msgstr "失败" -#: netbox/extras/choices.py:186 +#: extras/choices.py:186 msgid "Hourly" msgstr "每小时" -#: netbox/extras/choices.py:187 +#: extras/choices.py:187 msgid "12 hours" msgstr "12小时制" -#: netbox/extras/choices.py:188 +#: extras/choices.py:188 msgid "Daily" msgstr "每天" -#: netbox/extras/choices.py:189 +#: extras/choices.py:189 msgid "Weekly" msgstr "周" -#: netbox/extras/choices.py:190 +#: extras/choices.py:190 msgid "30 days" msgstr "30天" -#: netbox/extras/choices.py:226 -#: netbox/templates/dcim/virtualchassis_edit.html:107 -#: netbox/templates/generic/bulk_add_component.html:68 -#: netbox/templates/generic/object_edit.html:47 -#: netbox/templates/generic/object_edit.html:80 -#: netbox/templates/ipam/inc/ipaddress_edit_header.html:7 +#: extras/choices.py:226 templates/dcim/virtualchassis_edit.html:107 +#: templates/generic/bulk_add_component.html:68 +#: templates/generic/object_edit.html:47 templates/generic/object_edit.html:80 +#: templates/ipam/inc/ipaddress_edit_header.html:7 msgid "Create" msgstr "创建" -#: netbox/extras/choices.py:227 +#: extras/choices.py:227 msgid "Update" msgstr "更新" -#: netbox/extras/choices.py:228 -#: netbox/templates/circuits/inc/circuit_termination.html:23 -#: netbox/templates/dcim/inc/panels/inventory_items.html:37 -#: netbox/templates/dcim/moduletype/component_templates.html:23 -#: netbox/templates/dcim/powerpanel.html:66 -#: netbox/templates/extras/script_list.html:35 -#: netbox/templates/generic/bulk_delete.html:20 -#: netbox/templates/generic/bulk_delete.html:66 -#: netbox/templates/generic/object_delete.html:19 -#: netbox/templates/htmx/delete_form.html:57 -#: netbox/templates/ipam/inc/panels/fhrp_groups.html:48 -#: netbox/templates/users/objectpermission.html:46 -#: netbox/utilities/templates/buttons/delete.html:11 +#: extras/choices.py:228 templates/circuits/inc/circuit_termination.html:23 +#: templates/dcim/inc/panels/inventory_items.html:37 +#: templates/dcim/powerpanel.html:66 templates/extras/script_list.html:35 +#: templates/generic/bulk_delete.html:20 templates/generic/bulk_delete.html:66 +#: templates/generic/object_delete.html:19 templates/htmx/delete_form.html:57 +#: templates/ipam/inc/panels/fhrp_groups.html:48 +#: templates/users/objectpermission.html:46 +#: utilities/templates/buttons/delete.html:11 msgid "Delete" msgstr "删除" -#: netbox/extras/choices.py:252 netbox/netbox/choices.py:57 -#: netbox/netbox/choices.py:102 +#: extras/choices.py:252 netbox/choices.py:57 netbox/choices.py:102 msgid "Blue" msgstr "蓝色" -#: netbox/extras/choices.py:253 netbox/netbox/choices.py:56 -#: netbox/netbox/choices.py:103 +#: extras/choices.py:253 netbox/choices.py:56 netbox/choices.py:103 msgid "Indigo" msgstr "靛青色" -#: netbox/extras/choices.py:254 netbox/netbox/choices.py:54 -#: netbox/netbox/choices.py:104 +#: extras/choices.py:254 netbox/choices.py:54 netbox/choices.py:104 msgid "Purple" msgstr "紫色" -#: netbox/extras/choices.py:255 netbox/netbox/choices.py:51 -#: netbox/netbox/choices.py:105 +#: extras/choices.py:255 netbox/choices.py:51 netbox/choices.py:105 msgid "Pink" msgstr "粉红色" -#: netbox/extras/choices.py:256 netbox/netbox/choices.py:50 -#: netbox/netbox/choices.py:106 +#: extras/choices.py:256 netbox/choices.py:50 netbox/choices.py:106 msgid "Red" msgstr "红色" -#: netbox/extras/choices.py:257 netbox/netbox/choices.py:68 -#: netbox/netbox/choices.py:107 +#: extras/choices.py:257 netbox/choices.py:68 netbox/choices.py:107 msgid "Orange" msgstr "橙色" -#: netbox/extras/choices.py:258 netbox/netbox/choices.py:66 -#: netbox/netbox/choices.py:108 +#: extras/choices.py:258 netbox/choices.py:66 netbox/choices.py:108 msgid "Yellow" msgstr "黄色" -#: netbox/extras/choices.py:259 netbox/netbox/choices.py:63 -#: netbox/netbox/choices.py:109 +#: extras/choices.py:259 netbox/choices.py:63 netbox/choices.py:109 msgid "Green" msgstr "绿色" -#: netbox/extras/choices.py:260 netbox/netbox/choices.py:60 -#: netbox/netbox/choices.py:110 +#: extras/choices.py:260 netbox/choices.py:60 netbox/choices.py:110 msgid "Teal" msgstr "蓝色" -#: netbox/extras/choices.py:261 netbox/netbox/choices.py:59 -#: netbox/netbox/choices.py:111 +#: extras/choices.py:261 netbox/choices.py:59 netbox/choices.py:111 msgid "Cyan" msgstr "蓝绿色" -#: netbox/extras/choices.py:262 netbox/netbox/choices.py:112 +#: extras/choices.py:262 netbox/choices.py:112 msgid "Gray" msgstr "灰色" -#: netbox/extras/choices.py:263 netbox/netbox/choices.py:74 -#: netbox/netbox/choices.py:113 +#: extras/choices.py:263 netbox/choices.py:74 netbox/choices.py:113 msgid "Black" msgstr "黑色" -#: netbox/extras/choices.py:264 netbox/netbox/choices.py:75 -#: netbox/netbox/choices.py:114 +#: extras/choices.py:264 netbox/choices.py:75 netbox/choices.py:114 msgid "White" msgstr "白色" -#: netbox/extras/choices.py:279 netbox/extras/forms/model_forms.py:353 -#: netbox/extras/forms/model_forms.py:430 -#: netbox/templates/extras/webhook.html:10 +#: extras/choices.py:279 extras/forms/model_forms.py:353 +#: extras/forms/model_forms.py:430 templates/extras/webhook.html:10 msgid "Webhook" msgstr "Webhook" -#: netbox/extras/choices.py:280 netbox/extras/forms/model_forms.py:418 -#: netbox/templates/extras/script/base.html:29 +#: extras/choices.py:280 extras/forms/model_forms.py:418 +#: templates/extras/script/base.html:29 msgid "Script" msgstr "脚本" -#: netbox/extras/choices.py:281 +#: extras/choices.py:281 msgid "Notification" msgstr "通知" -#: netbox/extras/conditions.py:54 +#: extras/conditions.py:54 #, python-brace-format msgid "Unknown operator: {op}. Must be one of: {operators}" msgstr "未知运算符: {op}。必须是以下项之一: {operators}" -#: netbox/extras/conditions.py:58 +#: extras/conditions.py:58 #, python-brace-format msgid "Unsupported value type: {value}" msgstr "不支持的值类型: {value}" -#: netbox/extras/conditions.py:60 +#: extras/conditions.py:60 #, python-brace-format msgid "Invalid type for {op} operation: {value}" msgstr "{op}的操作类型 {value}无效" -#: netbox/extras/conditions.py:137 +#: extras/conditions.py:137 #, python-brace-format msgid "Ruleset must be a dictionary, not {ruleset}." msgstr "规则集必须是字典,而不是 {ruleset}.。" -#: netbox/extras/conditions.py:142 +#: extras/conditions.py:142 msgid "Invalid logic type: must be 'AND' or 'OR'. Please check documentation." msgstr "无效的逻辑类型:必须是“与”或“或”中之一。请查看文档。" -#: netbox/extras/conditions.py:154 +#: extras/conditions.py:154 msgid "Incorrect key(s) informed. Please check documentation." msgstr "提供了错误的密钥。请检查文档。" -#: netbox/extras/dashboard/forms.py:38 +#: extras/dashboard/forms.py:38 msgid "Widget type" msgstr "小组件类型" -#: netbox/extras/dashboard/utils.py:36 +#: extras/dashboard/utils.py:36 #, python-brace-format msgid "Unregistered widget class: {name}" msgstr "未注册的小组件类型: {name}" -#: netbox/extras/dashboard/widgets.py:125 +#: extras/dashboard/widgets.py:125 #, python-brace-format msgid "{class_name} must define a render() method." msgstr "{class_name}必须定义render() 方法。" -#: netbox/extras/dashboard/widgets.py:144 +#: extras/dashboard/widgets.py:144 msgid "Note" msgstr "公告" -#: netbox/extras/dashboard/widgets.py:145 +#: extras/dashboard/widgets.py:145 msgid "Display some arbitrary custom content. Markdown is supported." msgstr "显示任意的自定义内容。支持Markdown。" -#: netbox/extras/dashboard/widgets.py:158 +#: extras/dashboard/widgets.py:158 msgid "Object Counts" msgstr "对象统计" -#: netbox/extras/dashboard/widgets.py:159 +#: extras/dashboard/widgets.py:159 msgid "" "Display a set of NetBox models and the number of objects created for each " "type." msgstr "显示NetBox模型以及为每种类型创建的对象数。" -#: netbox/extras/dashboard/widgets.py:169 +#: extras/dashboard/widgets.py:169 msgid "Filters to apply when counting the number of objects" msgstr "统计对象数时要应用的筛选器" -#: netbox/extras/dashboard/widgets.py:177 +#: extras/dashboard/widgets.py:177 msgid "Invalid format. Object filters must be passed as a dictionary." msgstr "无效的格式。对象筛选器必须作为字典传递。" -#: netbox/extras/dashboard/widgets.py:208 +#: extras/dashboard/widgets.py:208 msgid "Object List" msgstr "对象列表" -#: netbox/extras/dashboard/widgets.py:209 +#: extras/dashboard/widgets.py:209 msgid "Display an arbitrary list of objects." msgstr "显示任意的对象列表。" -#: netbox/extras/dashboard/widgets.py:222 +#: extras/dashboard/widgets.py:222 msgid "The default number of objects to display" msgstr "要显示的默认对象数" -#: netbox/extras/dashboard/widgets.py:234 +#: extras/dashboard/widgets.py:234 msgid "Invalid format. URL parameters must be passed as a dictionary." msgstr "无效的格式。URL参数必须作为字典传递。" -#: netbox/extras/dashboard/widgets.py:274 +#: extras/dashboard/widgets.py:274 msgid "RSS Feed" msgstr "RSS订阅" -#: netbox/extras/dashboard/widgets.py:279 +#: extras/dashboard/widgets.py:279 msgid "Embed an RSS feed from an external website." msgstr "嵌入来自外部网站的 RSS 源。" -#: netbox/extras/dashboard/widgets.py:286 +#: extras/dashboard/widgets.py:286 msgid "Feed URL" msgstr "订阅链接" -#: netbox/extras/dashboard/widgets.py:291 +#: extras/dashboard/widgets.py:291 msgid "The maximum number of objects to display" msgstr "要多显示的对象数" -#: netbox/extras/dashboard/widgets.py:296 +#: extras/dashboard/widgets.py:296 msgid "How long to stored the cached content (in seconds)" msgstr "存储缓存内容的时间(秒)" -#: netbox/extras/dashboard/widgets.py:348 -#: netbox/templates/account/base.html:10 -#: netbox/templates/account/bookmarks.html:7 -#: netbox/templates/inc/user_menu.html:48 +#: extras/dashboard/widgets.py:348 templates/account/base.html:10 +#: templates/account/bookmarks.html:7 templates/inc/user_menu.html:48 msgid "Bookmarks" msgstr "书签" -#: netbox/extras/dashboard/widgets.py:352 +#: extras/dashboard/widgets.py:352 msgid "Show your personal bookmarks" msgstr "显示您的个人书签" -#: netbox/extras/events.py:147 +#: extras/events.py:147 #, python-brace-format msgid "Unknown action type for an event rule: {action_type}" msgstr "事件规则的未知操作类型: {action_type}" -#: netbox/extras/events.py:192 +#: extras/events.py:192 #, python-brace-format msgid "Cannot import events pipeline {name} error: {error}" msgstr "无法导入事件管道 {name}错误: {error}" -#: netbox/extras/filtersets.py:45 +#: extras/filtersets.py:45 msgid "Script module (ID)" msgstr "脚本模版(ID)" -#: netbox/extras/filtersets.py:254 netbox/extras/filtersets.py:637 -#: netbox/extras/filtersets.py:665 +#: extras/filtersets.py:254 extras/filtersets.py:637 extras/filtersets.py:665 msgid "Data file (ID)" msgstr "数据文件(ID)" -#: netbox/extras/filtersets.py:370 netbox/users/filtersets.py:68 -#: netbox/users/filtersets.py:191 +#: extras/filtersets.py:370 users/filtersets.py:68 users/filtersets.py:191 msgid "Group (name)" msgstr "组 (名字)" -#: netbox/extras/filtersets.py:574 -#: netbox/virtualization/forms/filtersets.py:118 +#: extras/filtersets.py:574 virtualization/forms/filtersets.py:118 msgid "Cluster type" msgstr "堆叠类型" -#: netbox/extras/filtersets.py:580 netbox/virtualization/filtersets.py:95 -#: netbox/virtualization/filtersets.py:147 +#: extras/filtersets.py:580 virtualization/filtersets.py:95 +#: virtualization/filtersets.py:147 msgid "Cluster type (slug)" msgstr "堆叠类型(缩写)" -#: netbox/extras/filtersets.py:601 netbox/tenancy/forms/forms.py:16 -#: netbox/tenancy/forms/forms.py:39 +#: extras/filtersets.py:601 tenancy/forms/forms.py:16 +#: tenancy/forms/forms.py:39 msgid "Tenant group" msgstr "租户组" -#: netbox/extras/filtersets.py:607 netbox/tenancy/filtersets.py:188 -#: netbox/tenancy/filtersets.py:208 +#: extras/filtersets.py:607 tenancy/filtersets.py:188 +#: tenancy/filtersets.py:208 msgid "Tenant group (slug)" msgstr "租户组(缩写)" -#: netbox/extras/filtersets.py:623 netbox/extras/forms/model_forms.py:495 -#: netbox/templates/extras/tag.html:11 +#: extras/filtersets.py:623 extras/forms/model_forms.py:495 +#: templates/extras/tag.html:11 msgid "Tag" msgstr "标签" -#: netbox/extras/filtersets.py:629 +#: extras/filtersets.py:629 msgid "Tag (slug)" msgstr "标签(缩写)" -#: netbox/extras/filtersets.py:689 netbox/extras/forms/filtersets.py:429 +#: extras/filtersets.py:689 extras/forms/filtersets.py:429 msgid "Has local config context data" msgstr "具有本地配置实例" -#: netbox/extras/forms/bulk_edit.py:35 netbox/extras/forms/filtersets.py:60 +#: extras/forms/bulk_edit.py:35 extras/forms/filtersets.py:60 msgid "Group name" msgstr "组名称" -#: netbox/extras/forms/bulk_edit.py:43 netbox/extras/forms/filtersets.py:68 -#: netbox/extras/tables/tables.py:65 -#: netbox/templates/extras/customfield.html:38 -#: netbox/templates/generic/bulk_import.html:118 +#: extras/forms/bulk_edit.py:43 extras/forms/filtersets.py:68 +#: extras/tables/tables.py:65 templates/extras/customfield.html:38 +#: templates/generic/bulk_import.html:118 msgid "Required" msgstr "必须" -#: netbox/extras/forms/bulk_edit.py:48 netbox/extras/forms/filtersets.py:75 +#: extras/forms/bulk_edit.py:48 extras/forms/filtersets.py:75 msgid "Must be unique" msgstr "必须是唯一的" -#: netbox/extras/forms/bulk_edit.py:61 netbox/extras/forms/bulk_import.py:60 -#: netbox/extras/forms/filtersets.py:89 -#: netbox/extras/models/customfields.py:209 +#: extras/forms/bulk_edit.py:61 extras/forms/bulk_import.py:60 +#: extras/forms/filtersets.py:89 extras/models/customfields.py:209 msgid "UI visible" msgstr "页面可见" -#: netbox/extras/forms/bulk_edit.py:66 netbox/extras/forms/bulk_import.py:66 -#: netbox/extras/forms/filtersets.py:94 -#: netbox/extras/models/customfields.py:216 +#: extras/forms/bulk_edit.py:66 extras/forms/bulk_import.py:66 +#: extras/forms/filtersets.py:94 extras/models/customfields.py:216 msgid "UI editable" msgstr "页面可编辑" -#: netbox/extras/forms/bulk_edit.py:71 netbox/extras/forms/filtersets.py:97 +#: extras/forms/bulk_edit.py:71 extras/forms/filtersets.py:97 msgid "Is cloneable" msgstr "可复制" -#: netbox/extras/forms/bulk_edit.py:76 netbox/extras/forms/filtersets.py:104 +#: extras/forms/bulk_edit.py:76 extras/forms/filtersets.py:104 msgid "Minimum value" msgstr "最小值" -#: netbox/extras/forms/bulk_edit.py:80 netbox/extras/forms/filtersets.py:108 +#: extras/forms/bulk_edit.py:80 extras/forms/filtersets.py:108 msgid "Maximum value" msgstr "最大值" -#: netbox/extras/forms/bulk_edit.py:84 netbox/extras/forms/filtersets.py:112 +#: extras/forms/bulk_edit.py:84 extras/forms/filtersets.py:112 msgid "Validation regex" msgstr "验证正则表达式" -#: netbox/extras/forms/bulk_edit.py:91 netbox/extras/forms/filtersets.py:46 -#: netbox/extras/forms/model_forms.py:76 -#: netbox/templates/extras/customfield.html:70 +#: extras/forms/bulk_edit.py:91 extras/forms/filtersets.py:46 +#: extras/forms/model_forms.py:76 templates/extras/customfield.html:70 msgid "Behavior" msgstr "行为" -#: netbox/extras/forms/bulk_edit.py:128 netbox/extras/forms/filtersets.py:149 +#: extras/forms/bulk_edit.py:128 extras/forms/filtersets.py:149 msgid "New window" msgstr "新窗口" -#: netbox/extras/forms/bulk_edit.py:137 +#: extras/forms/bulk_edit.py:137 msgid "Button class" msgstr "按钮类型" -#: netbox/extras/forms/bulk_edit.py:154 netbox/extras/forms/filtersets.py:187 -#: netbox/extras/models/models.py:409 +#: extras/forms/bulk_edit.py:154 extras/forms/filtersets.py:187 +#: extras/models/models.py:409 msgid "MIME type" msgstr "MIME类型" -#: netbox/extras/forms/bulk_edit.py:159 netbox/extras/forms/filtersets.py:190 +#: extras/forms/bulk_edit.py:159 extras/forms/filtersets.py:190 msgid "File extension" msgstr "文件扩展名" -#: netbox/extras/forms/bulk_edit.py:164 netbox/extras/forms/filtersets.py:194 +#: extras/forms/bulk_edit.py:164 extras/forms/filtersets.py:194 msgid "As attachment" msgstr "作为附件" -#: netbox/extras/forms/bulk_edit.py:192 netbox/extras/forms/filtersets.py:236 -#: netbox/extras/tables/tables.py:256 -#: netbox/templates/extras/savedfilter.html:29 +#: extras/forms/bulk_edit.py:192 extras/forms/filtersets.py:236 +#: extras/tables/tables.py:256 templates/extras/savedfilter.html:29 msgid "Shared" msgstr "共享性" -#: netbox/extras/forms/bulk_edit.py:215 netbox/extras/forms/filtersets.py:265 -#: netbox/extras/models/models.py:174 +#: extras/forms/bulk_edit.py:215 extras/forms/filtersets.py:265 +#: extras/models/models.py:174 msgid "HTTP method" msgstr "HTTP方法" -#: netbox/extras/forms/bulk_edit.py:219 netbox/extras/forms/filtersets.py:259 -#: netbox/templates/extras/webhook.html:30 +#: extras/forms/bulk_edit.py:219 extras/forms/filtersets.py:259 +#: templates/extras/webhook.html:30 msgid "Payload URL" msgstr "有效URL" -#: netbox/extras/forms/bulk_edit.py:224 netbox/extras/models/models.py:214 +#: extras/forms/bulk_edit.py:224 extras/models/models.py:214 msgid "SSL verification" msgstr "SSL验证" -#: netbox/extras/forms/bulk_edit.py:227 -#: netbox/templates/extras/webhook.html:38 +#: extras/forms/bulk_edit.py:227 templates/extras/webhook.html:38 msgid "Secret" msgstr "密钥" -#: netbox/extras/forms/bulk_edit.py:232 +#: extras/forms/bulk_edit.py:232 msgid "CA file path" msgstr "CA证书文件路径" -#: netbox/extras/forms/bulk_edit.py:253 netbox/extras/forms/bulk_import.py:192 -#: netbox/extras/forms/model_forms.py:377 +#: extras/forms/bulk_edit.py:253 extras/forms/bulk_import.py:192 +#: extras/forms/model_forms.py:377 msgid "Event types" msgstr "事件类型" -#: netbox/extras/forms/bulk_edit.py:293 +#: extras/forms/bulk_edit.py:293 msgid "Is active" msgstr "激活的" -#: netbox/extras/forms/bulk_import.py:37 -#: netbox/extras/forms/bulk_import.py:118 -#: netbox/extras/forms/bulk_import.py:139 -#: netbox/extras/forms/bulk_import.py:162 -#: netbox/extras/forms/bulk_import.py:186 -#: netbox/extras/forms/filtersets.py:137 netbox/extras/forms/filtersets.py:224 -#: netbox/extras/forms/model_forms.py:47 -#: netbox/extras/forms/model_forms.py:205 -#: netbox/extras/forms/model_forms.py:237 -#: netbox/extras/forms/model_forms.py:278 -#: netbox/extras/forms/model_forms.py:372 -#: netbox/extras/forms/model_forms.py:489 -#: netbox/users/forms/model_forms.py:276 +#: extras/forms/bulk_import.py:37 extras/forms/bulk_import.py:118 +#: extras/forms/bulk_import.py:139 extras/forms/bulk_import.py:162 +#: extras/forms/bulk_import.py:186 extras/forms/filtersets.py:137 +#: extras/forms/filtersets.py:224 extras/forms/model_forms.py:47 +#: extras/forms/model_forms.py:205 extras/forms/model_forms.py:237 +#: extras/forms/model_forms.py:278 extras/forms/model_forms.py:372 +#: extras/forms/model_forms.py:489 users/forms/model_forms.py:276 msgid "Object types" msgstr "对象类型" -#: netbox/extras/forms/bulk_import.py:39 -#: netbox/extras/forms/bulk_import.py:120 -#: netbox/extras/forms/bulk_import.py:141 -#: netbox/extras/forms/bulk_import.py:164 -#: netbox/extras/forms/bulk_import.py:188 -#: netbox/tenancy/forms/bulk_import.py:96 +#: extras/forms/bulk_import.py:39 extras/forms/bulk_import.py:120 +#: extras/forms/bulk_import.py:141 extras/forms/bulk_import.py:164 +#: extras/forms/bulk_import.py:188 tenancy/forms/bulk_import.py:96 msgid "One or more assigned object types" msgstr "一个或多个分配对象类型" -#: netbox/extras/forms/bulk_import.py:44 +#: extras/forms/bulk_import.py:44 msgid "Field data type (e.g. text, integer, etc.)" msgstr "字段数据类型(例如文本、整数等)" -#: netbox/extras/forms/bulk_import.py:47 netbox/extras/forms/filtersets.py:208 -#: netbox/extras/forms/filtersets.py:281 -#: netbox/extras/forms/model_forms.py:304 -#: netbox/extras/forms/model_forms.py:341 -#: netbox/tenancy/forms/filtersets.py:92 +#: extras/forms/bulk_import.py:47 extras/forms/filtersets.py:208 +#: extras/forms/filtersets.py:281 extras/forms/model_forms.py:304 +#: extras/forms/model_forms.py:341 tenancy/forms/filtersets.py:92 msgid "Object type" msgstr "对象类型" -#: netbox/extras/forms/bulk_import.py:50 +#: extras/forms/bulk_import.py:50 msgid "Object type (for object or multi-object fields)" msgstr "对象类型(用于对象或多对象字段)" -#: netbox/extras/forms/bulk_import.py:53 netbox/extras/forms/filtersets.py:84 +#: extras/forms/bulk_import.py:53 extras/forms/filtersets.py:84 msgid "Choice set" msgstr "可选项" -#: netbox/extras/forms/bulk_import.py:57 +#: extras/forms/bulk_import.py:57 msgid "Choice set (for selection fields)" msgstr "可选项(用于单选框)" -#: netbox/extras/forms/bulk_import.py:63 +#: extras/forms/bulk_import.py:63 msgid "Whether the custom field is displayed in the UI" msgstr "自定义字段是否显示在页面中" -#: netbox/extras/forms/bulk_import.py:69 +#: extras/forms/bulk_import.py:69 msgid "Whether the custom field is editable in the UI" msgstr "自定义字段在页面中是否可编辑" -#: netbox/extras/forms/bulk_import.py:85 +#: extras/forms/bulk_import.py:85 msgid "The base set of predefined choices to use (if any)" msgstr "预定义选项的基本集合(如有)" -#: netbox/extras/forms/bulk_import.py:91 +#: extras/forms/bulk_import.py:91 msgid "" "Quoted string of comma-separated field choices with optional labels " "separated by colon: \"choice1:First Choice,choice2:Second Choice\"" msgstr "用逗号分隔字段选项,可选标签用冒号分隔,并用引号包围:“选项1:第一选项,选项2:第二选项”" -#: netbox/extras/forms/bulk_import.py:123 netbox/extras/models/models.py:323 +#: extras/forms/bulk_import.py:123 extras/models/models.py:323 msgid "button class" msgstr "按钮类" -#: netbox/extras/forms/bulk_import.py:126 netbox/extras/models/models.py:327 +#: extras/forms/bulk_import.py:126 extras/models/models.py:327 msgid "" "The class of the first link in a group will be used for the dropdown button" msgstr "列表中第一个类将用于下拉按钮" -#: netbox/extras/forms/bulk_import.py:193 +#: extras/forms/bulk_import.py:193 msgid "The event type(s) which will trigger this rule" msgstr "将触发此规则的事件类型" -#: netbox/extras/forms/bulk_import.py:196 +#: extras/forms/bulk_import.py:196 msgid "Action object" msgstr "动作对象" -#: netbox/extras/forms/bulk_import.py:198 +#: extras/forms/bulk_import.py:198 msgid "Webhook name or script as dotted path module.Class" msgstr "Webhook名称或脚本的路径为module.Class" -#: netbox/extras/forms/bulk_import.py:219 +#: extras/forms/bulk_import.py:219 #, python-brace-format msgid "Webhook {name} not found" msgstr "未找到 Webhook {name}" -#: netbox/extras/forms/bulk_import.py:228 +#: extras/forms/bulk_import.py:228 #, python-brace-format msgid "Script {name} not found" msgstr "未找到脚本{name}" -#: netbox/extras/forms/bulk_import.py:244 +#: extras/forms/bulk_import.py:244 msgid "Assigned object type" msgstr "分配的对象类型" -#: netbox/extras/forms/bulk_import.py:249 +#: extras/forms/bulk_import.py:249 msgid "The classification of entry" msgstr "条目的分类" -#: netbox/extras/forms/bulk_import.py:261 -#: netbox/extras/forms/model_forms.py:320 netbox/netbox/navigation/menu.py:390 -#: netbox/templates/extras/notificationgroup.html:41 -#: netbox/templates/users/group.html:29 netbox/users/forms/model_forms.py:236 -#: netbox/users/forms/model_forms.py:248 netbox/users/forms/model_forms.py:300 -#: netbox/users/tables.py:102 +#: extras/forms/bulk_import.py:261 extras/forms/model_forms.py:320 +#: netbox/navigation/menu.py:390 templates/extras/notificationgroup.html:41 +#: templates/users/group.html:29 users/forms/model_forms.py:236 +#: users/forms/model_forms.py:248 users/forms/model_forms.py:300 +#: users/tables.py:102 msgid "Users" msgstr "用户" -#: netbox/extras/forms/bulk_import.py:265 +#: extras/forms/bulk_import.py:265 msgid "User names separated by commas, encased with double quotes" msgstr "用户名用逗号分隔,用双引号括起来" -#: netbox/extras/forms/bulk_import.py:268 -#: netbox/extras/forms/model_forms.py:315 netbox/netbox/navigation/menu.py:410 -#: netbox/templates/extras/notificationgroup.html:31 -#: netbox/users/forms/model_forms.py:181 netbox/users/forms/model_forms.py:193 -#: netbox/users/forms/model_forms.py:305 netbox/users/tables.py:35 -#: netbox/users/tables.py:106 +#: extras/forms/bulk_import.py:268 extras/forms/model_forms.py:315 +#: netbox/navigation/menu.py:410 templates/extras/notificationgroup.html:31 +#: users/forms/model_forms.py:181 users/forms/model_forms.py:193 +#: users/forms/model_forms.py:305 users/tables.py:35 users/tables.py:106 msgid "Groups" msgstr "组" -#: netbox/extras/forms/bulk_import.py:272 +#: extras/forms/bulk_import.py:272 msgid "Group names separated by commas, encased with double quotes" msgstr "群组名称用逗号分隔,用双引号括起来" -#: netbox/extras/forms/filtersets.py:52 netbox/extras/forms/model_forms.py:56 +#: extras/forms/filtersets.py:52 extras/forms/model_forms.py:56 msgid "Related object type" msgstr "连接的对象类型" -#: netbox/extras/forms/filtersets.py:57 +#: extras/forms/filtersets.py:57 msgid "Field type" msgstr "字段类型" -#: netbox/extras/forms/filtersets.py:120 -#: netbox/extras/forms/model_forms.py:157 netbox/extras/tables/tables.py:91 -#: netbox/templates/generic/bulk_import.html:154 +#: extras/forms/filtersets.py:120 extras/forms/model_forms.py:157 +#: extras/tables/tables.py:91 templates/generic/bulk_import.html:154 msgid "Choices" msgstr "选项" -#: netbox/extras/forms/filtersets.py:164 netbox/extras/forms/filtersets.py:319 -#: netbox/extras/forms/filtersets.py:408 -#: netbox/extras/forms/model_forms.py:572 netbox/templates/core/job.html:96 -#: netbox/templates/extras/eventrule.html:84 +#: extras/forms/filtersets.py:164 extras/forms/filtersets.py:319 +#: extras/forms/filtersets.py:408 extras/forms/model_forms.py:572 +#: templates/core/job.html:96 templates/extras/eventrule.html:84 msgid "Data" msgstr "数据" -#: netbox/extras/forms/filtersets.py:175 netbox/extras/forms/filtersets.py:333 -#: netbox/extras/forms/filtersets.py:418 netbox/netbox/choices.py:130 -#: netbox/utilities/forms/bulk_import.py:26 +#: extras/forms/filtersets.py:175 extras/forms/filtersets.py:333 +#: extras/forms/filtersets.py:418 netbox/choices.py:130 +#: utilities/forms/bulk_import.py:26 msgid "Data file" msgstr "数据文件" -#: netbox/extras/forms/filtersets.py:183 +#: extras/forms/filtersets.py:183 msgid "Content types" msgstr "内容类型" -#: netbox/extras/forms/filtersets.py:255 netbox/extras/models/models.py:179 +#: extras/forms/filtersets.py:255 extras/models/models.py:179 msgid "HTTP content type" msgstr "HTTP内容类型" -#: netbox/extras/forms/filtersets.py:286 +#: extras/forms/filtersets.py:286 msgid "Event type" msgstr "事件类型" -#: netbox/extras/forms/filtersets.py:291 +#: extras/forms/filtersets.py:291 msgid "Action type" msgstr "动作类型" -#: netbox/extras/forms/filtersets.py:307 +#: extras/forms/filtersets.py:307 msgid "Tagged object type" msgstr "标记的对象类型" -#: netbox/extras/forms/filtersets.py:312 +#: extras/forms/filtersets.py:312 msgid "Allowed object type" msgstr "允许的对象类型" -#: netbox/extras/forms/filtersets.py:341 -#: netbox/extras/forms/model_forms.py:507 netbox/netbox/navigation/menu.py:18 +#: extras/forms/filtersets.py:341 extras/forms/model_forms.py:507 +#: netbox/navigation/menu.py:18 msgid "Regions" msgstr "地区" -#: netbox/extras/forms/filtersets.py:346 -#: netbox/extras/forms/model_forms.py:512 +#: extras/forms/filtersets.py:346 extras/forms/model_forms.py:512 msgid "Site groups" msgstr "站点组" -#: netbox/extras/forms/filtersets.py:356 -#: netbox/extras/forms/model_forms.py:522 netbox/netbox/navigation/menu.py:20 -#: netbox/templates/dcim/site.html:127 +#: extras/forms/filtersets.py:356 extras/forms/model_forms.py:522 +#: netbox/navigation/menu.py:20 templates/dcim/site.html:127 msgid "Locations" msgstr "位置" -#: netbox/extras/forms/filtersets.py:361 -#: netbox/extras/forms/model_forms.py:527 +#: extras/forms/filtersets.py:361 extras/forms/model_forms.py:527 msgid "Device types" msgstr "设备型号" -#: netbox/extras/forms/filtersets.py:366 -#: netbox/extras/forms/model_forms.py:532 +#: extras/forms/filtersets.py:366 extras/forms/model_forms.py:532 msgid "Roles" msgstr "角色" -#: netbox/extras/forms/filtersets.py:376 -#: netbox/extras/forms/model_forms.py:542 +#: extras/forms/filtersets.py:376 extras/forms/model_forms.py:542 msgid "Cluster types" msgstr "集群类型" -#: netbox/extras/forms/filtersets.py:381 -#: netbox/extras/forms/model_forms.py:547 +#: extras/forms/filtersets.py:381 extras/forms/model_forms.py:547 msgid "Cluster groups" msgstr "集群组" -#: netbox/extras/forms/filtersets.py:386 -#: netbox/extras/forms/model_forms.py:552 netbox/netbox/navigation/menu.py:255 -#: netbox/netbox/navigation/menu.py:257 -#: netbox/templates/virtualization/clustertype.html:30 -#: netbox/virtualization/tables/clusters.py:23 -#: netbox/virtualization/tables/clusters.py:45 +#: extras/forms/filtersets.py:386 extras/forms/model_forms.py:552 +#: netbox/navigation/menu.py:255 netbox/navigation/menu.py:257 +#: templates/virtualization/clustertype.html:30 +#: virtualization/tables/clusters.py:23 virtualization/tables/clusters.py:45 msgid "Clusters" msgstr "集群" -#: netbox/extras/forms/filtersets.py:391 -#: netbox/extras/forms/model_forms.py:557 +#: extras/forms/filtersets.py:391 extras/forms/model_forms.py:557 msgid "Tenant groups" msgstr "租户组" -#: netbox/extras/forms/model_forms.py:49 +#: extras/forms/model_forms.py:49 msgid "The type(s) of object that have this custom field" msgstr "具有此自定义字段的对象的类型" -#: netbox/extras/forms/model_forms.py:52 +#: extras/forms/model_forms.py:52 msgid "Default value" msgstr "默认值" -#: netbox/extras/forms/model_forms.py:58 +#: extras/forms/model_forms.py:58 msgid "Type of the related object (for object/multi-object fields only)" msgstr "相关对象的类型(仅适用于对象/多对象字段)" -#: netbox/extras/forms/model_forms.py:61 -#: netbox/templates/extras/customfield.html:60 +#: extras/forms/model_forms.py:61 templates/extras/customfield.html:60 msgid "Related object filter" msgstr "相关对象过滤器" -#: netbox/extras/forms/model_forms.py:63 +#: extras/forms/model_forms.py:63 msgid "Specify query parameters as a JSON object." msgstr "将查询参数指定为 JSON 对象。" -#: netbox/extras/forms/model_forms.py:73 -#: netbox/templates/extras/customfield.html:10 +#: extras/forms/model_forms.py:73 templates/extras/customfield.html:10 msgid "Custom Field" msgstr "自定义字段" -#: netbox/extras/forms/model_forms.py:85 +#: extras/forms/model_forms.py:85 msgid "" "The type of data stored in this field. For object/multi-object fields, " "select the related object type below." msgstr "存储在此字段中的数据类型。对于对象/多对象字段,请选择下面的相关对象类型。" -#: netbox/extras/forms/model_forms.py:88 +#: extras/forms/model_forms.py:88 msgid "" "This will be displayed as help text for the form field. Markdown is " "supported." msgstr "这将显示为表单字段的帮助文本。支持Markdown。" -#: netbox/extras/forms/model_forms.py:143 +#: extras/forms/model_forms.py:143 msgid "Related Object" msgstr "相关对象" -#: netbox/extras/forms/model_forms.py:169 +#: extras/forms/model_forms.py:169 msgid "" "Enter one choice per line. An optional label may be specified for each " "choice by appending it with a colon. Example:" msgstr "每行输入一个选项。可以为每个选项指定一个可选标签,方法是在其后面附加一个冒号。例如:" -#: netbox/extras/forms/model_forms.py:212 -#: netbox/templates/extras/customlink.html:10 +#: extras/forms/model_forms.py:212 templates/extras/customlink.html:10 msgid "Custom Link" msgstr "自定义链接" -#: netbox/extras/forms/model_forms.py:214 +#: extras/forms/model_forms.py:214 msgid "Templates" msgstr "模版" -#: netbox/extras/forms/model_forms.py:226 +#: extras/forms/model_forms.py:226 #, python-brace-format msgid "" "Jinja2 template code for the link text. Reference the object as {example}. " "Links which render as empty text will not be displayed." msgstr "用于链接的Jinja2模板代码。将对象引用为{example}。空链接将不会显示。" -#: netbox/extras/forms/model_forms.py:230 +#: extras/forms/model_forms.py:230 #, python-brace-format msgid "" "Jinja2 template code for the link URL. Reference the object as {example}." msgstr "URL链接的Jinja2模板代码。将对象引用为 {example}。" -#: netbox/extras/forms/model_forms.py:241 -#: netbox/extras/forms/model_forms.py:624 +#: extras/forms/model_forms.py:241 extras/forms/model_forms.py:624 msgid "Template code" msgstr "模版代码" -#: netbox/extras/forms/model_forms.py:247 -#: netbox/templates/extras/exporttemplate.html:12 +#: extras/forms/model_forms.py:247 templates/extras/exporttemplate.html:12 msgid "Export Template" msgstr "导出模版" -#: netbox/extras/forms/model_forms.py:249 +#: extras/forms/model_forms.py:249 msgid "Rendering" msgstr "转换" -#: netbox/extras/forms/model_forms.py:263 -#: netbox/extras/forms/model_forms.py:649 +#: extras/forms/model_forms.py:263 extras/forms/model_forms.py:649 msgid "Template content is populated from the remote source selected below." msgstr "模板内容是从下面选择的远程源填充的。" -#: netbox/extras/forms/model_forms.py:270 -#: netbox/extras/forms/model_forms.py:656 +#: extras/forms/model_forms.py:270 extras/forms/model_forms.py:656 msgid "Must specify either local content or a data file" msgstr "必须指定本地内容或数据文件" -#: netbox/extras/forms/model_forms.py:284 netbox/netbox/forms/mixins.py:70 -#: netbox/templates/extras/savedfilter.html:10 +#: extras/forms/model_forms.py:284 netbox/forms/mixins.py:70 +#: templates/extras/savedfilter.html:10 msgid "Saved Filter" msgstr "已保存的过滤器" -#: netbox/extras/forms/model_forms.py:334 +#: extras/forms/model_forms.py:334 msgid "A notification group specify at least one user or group." msgstr "通知组至少指定一个用户或组。" -#: netbox/extras/forms/model_forms.py:356 -#: netbox/templates/extras/webhook.html:23 +#: extras/forms/model_forms.py:356 templates/extras/webhook.html:23 msgid "HTTP Request" msgstr "HTTP 请求" -#: netbox/extras/forms/model_forms.py:358 -#: netbox/templates/extras/webhook.html:44 +#: extras/forms/model_forms.py:358 templates/extras/webhook.html:44 msgid "SSL" msgstr "SSL" -#: netbox/extras/forms/model_forms.py:380 +#: extras/forms/model_forms.py:380 msgid "Action choice" msgstr "选择动作" -#: netbox/extras/forms/model_forms.py:385 +#: extras/forms/model_forms.py:385 msgid "Enter conditions in JSON format." msgstr "已JSON格式输入条件。" -#: netbox/extras/forms/model_forms.py:389 +#: extras/forms/model_forms.py:389 msgid "" "Enter parameters to pass to the action in JSON format." msgstr "输入以 JSON格式传递的参数。" -#: netbox/extras/forms/model_forms.py:394 -#: netbox/templates/extras/eventrule.html:10 +#: extras/forms/model_forms.py:394 templates/extras/eventrule.html:10 msgid "Event Rule" msgstr "事件规则" -#: netbox/extras/forms/model_forms.py:395 +#: extras/forms/model_forms.py:395 msgid "Triggers" msgstr "触发器" -#: netbox/extras/forms/model_forms.py:442 +#: extras/forms/model_forms.py:442 msgid "Notification group" msgstr "通知组" -#: netbox/extras/forms/model_forms.py:562 netbox/netbox/navigation/menu.py:26 -#: netbox/tenancy/tables/tenants.py:22 +#: extras/forms/model_forms.py:562 netbox/navigation/menu.py:26 +#: tenancy/tables/tenants.py:22 msgid "Tenants" msgstr "租户" -#: netbox/extras/forms/model_forms.py:606 +#: extras/forms/model_forms.py:606 msgid "Data is populated from the remote source selected below." msgstr "数据是从下面选择的远程源填充的。" -#: netbox/extras/forms/model_forms.py:612 +#: extras/forms/model_forms.py:612 msgid "Must specify either local data or a data file" msgstr "必须指定本地内容或数据文件" -#: netbox/extras/forms/model_forms.py:631 -#: netbox/templates/core/datafile.html:55 +#: extras/forms/model_forms.py:631 templates/core/datafile.html:55 msgid "Content" msgstr "内容" -#: netbox/extras/forms/reports.py:17 netbox/extras/forms/scripts.py:23 +#: extras/forms/reports.py:17 extras/forms/scripts.py:23 msgid "Schedule at" msgstr "计划在" -#: netbox/extras/forms/reports.py:18 +#: extras/forms/reports.py:18 msgid "Schedule execution of report to a set time" msgstr "在指定的时间执行报告" -#: netbox/extras/forms/reports.py:23 netbox/extras/forms/scripts.py:29 +#: extras/forms/reports.py:23 extras/forms/scripts.py:29 msgid "Recurs every" msgstr "重复间隔" -#: netbox/extras/forms/reports.py:27 +#: extras/forms/reports.py:27 msgid "Interval at which this report is re-run (in minutes)" msgstr "重新运行此报表的间隔(分钟)" -#: netbox/extras/forms/reports.py:35 netbox/extras/forms/scripts.py:41 +#: extras/forms/reports.py:35 extras/forms/scripts.py:41 #, python-brace-format msgid " (current time: {now})" msgstr " (当前时间: {now})" -#: netbox/extras/forms/reports.py:45 netbox/extras/forms/scripts.py:51 +#: extras/forms/reports.py:45 extras/forms/scripts.py:51 msgid "Scheduled time must be in the future." msgstr "预定时间需设置在当前时间之后。" -#: netbox/extras/forms/scripts.py:17 +#: extras/forms/scripts.py:17 msgid "Commit changes" msgstr "提交更改" -#: netbox/extras/forms/scripts.py:18 +#: extras/forms/scripts.py:18 msgid "Commit changes to the database (uncheck for a dry-run)" msgstr "提交对数据库的更改(取消选中以进行试运行)" -#: netbox/extras/forms/scripts.py:24 +#: extras/forms/scripts.py:24 msgid "Schedule execution of script to a set time" msgstr "在指定的时间执行脚本" -#: netbox/extras/forms/scripts.py:33 +#: extras/forms/scripts.py:33 msgid "Interval at which this script is re-run (in minutes)" msgstr "重新运行此脚本的间隔(分钟)" -#: netbox/extras/jobs.py:49 +#: extras/jobs.py:49 msgid "Database changes have been reverted automatically." msgstr "数据库更改已自动恢复。" -#: netbox/extras/jobs.py:56 +#: extras/jobs.py:55 msgid "Script aborted with error: " msgstr "脚本因错误而中止:" -#: netbox/extras/jobs.py:66 +#: extras/jobs.py:65 msgid "An exception occurred: " msgstr "出现异常:" -#: netbox/extras/jobs.py:71 +#: extras/jobs.py:70 msgid "Database changes have been reverted due to error." msgstr "由于出现错误,数据库更改已回滚。" -#: netbox/extras/management/commands/reindex.py:66 +#: extras/management/commands/reindex.py:66 msgid "No indexers found!" msgstr "找不到索引!" -#: netbox/extras/models/configs.py:130 +#: extras/models/configs.py:130 msgid "config context" msgstr "配置实例" -#: netbox/extras/models/configs.py:131 +#: extras/models/configs.py:131 msgid "config contexts" msgstr "配置实例" -#: netbox/extras/models/configs.py:149 netbox/extras/models/configs.py:205 +#: extras/models/configs.py:149 extras/models/configs.py:205 msgid "JSON data must be in object form. Example:" msgstr "JSON数据必须为对象形式。例如:" -#: netbox/extras/models/configs.py:169 +#: extras/models/configs.py:169 msgid "" "Local config context data takes precedence over source contexts in the final" " rendered config context" msgstr "在最终渲染的配置实例中,本地配置实例数据优先于数据源中的实力" -#: netbox/extras/models/configs.py:224 +#: extras/models/configs.py:224 msgid "template code" msgstr "模版代码" -#: netbox/extras/models/configs.py:225 +#: extras/models/configs.py:225 msgid "Jinja2 template code." msgstr "Jinja2模版代码" -#: netbox/extras/models/configs.py:228 +#: extras/models/configs.py:228 msgid "environment parameters" msgstr "环境参数" -#: netbox/extras/models/configs.py:233 +#: extras/models/configs.py:233 msgid "" "Any additional" @@ -8025,135 +7467,135 @@ msgstr "" "构建Jinja2环境时要传递的 附加参数" -#: netbox/extras/models/configs.py:240 +#: extras/models/configs.py:240 msgid "config template" msgstr "配置模版" -#: netbox/extras/models/configs.py:241 +#: extras/models/configs.py:241 msgid "config templates" msgstr "配置模版" -#: netbox/extras/models/customfields.py:75 +#: extras/models/customfields.py:75 msgid "The object(s) to which this field applies." msgstr "此字段所应用的对象。" -#: netbox/extras/models/customfields.py:82 +#: extras/models/customfields.py:82 msgid "The type of data this custom field holds" msgstr "该自定义字段保存的数据类型" -#: netbox/extras/models/customfields.py:89 +#: extras/models/customfields.py:89 msgid "The type of NetBox object this field maps to (for object fields)" msgstr "此字段映射到的NetBox对象的类型(对于对象字段)" -#: netbox/extras/models/customfields.py:95 +#: extras/models/customfields.py:95 msgid "Internal field name" msgstr "内部字段名称" -#: netbox/extras/models/customfields.py:99 +#: extras/models/customfields.py:99 msgid "Only alphanumeric characters and underscores are allowed." msgstr "仅允许输入英文字符、数字和下划线。" -#: netbox/extras/models/customfields.py:104 +#: extras/models/customfields.py:104 msgid "Double underscores are not permitted in custom field names." msgstr "自定义字段名称中不允许使用双下划线。" -#: netbox/extras/models/customfields.py:115 +#: extras/models/customfields.py:115 msgid "" "Name of the field as displayed to users (if not provided, 'the field's name " "will be used)" msgstr "向用户显示的字段名称(如果未提供,则使用字段名称)" -#: netbox/extras/models/customfields.py:119 netbox/extras/models/models.py:317 +#: extras/models/customfields.py:119 extras/models/models.py:317 msgid "group name" msgstr "组名称" -#: netbox/extras/models/customfields.py:122 +#: extras/models/customfields.py:122 msgid "Custom fields within the same group will be displayed together" msgstr "同一组内的自定义字段将一起显示" -#: netbox/extras/models/customfields.py:130 +#: extras/models/customfields.py:130 msgid "required" msgstr "必须" -#: netbox/extras/models/customfields.py:132 +#: extras/models/customfields.py:132 msgid "" "This field is required when creating new objects or editing an existing " "object." msgstr "创建新对象或编辑现有对象时,此字段是必填字段。" -#: netbox/extras/models/customfields.py:135 +#: extras/models/customfields.py:135 msgid "must be unique" msgstr "必须是唯一的" -#: netbox/extras/models/customfields.py:137 +#: extras/models/customfields.py:137 msgid "The value of this field must be unique for the assigned object" msgstr "对于分配的对象,该字段的值必须是唯一的" -#: netbox/extras/models/customfields.py:140 +#: extras/models/customfields.py:140 msgid "search weight" msgstr "搜索权重" -#: netbox/extras/models/customfields.py:143 +#: extras/models/customfields.py:143 msgid "" "Weighting for search. Lower values are considered more important. Fields " "with a search weight of zero will be ignored." msgstr "搜索权重。值越低越被有限搜索。权重为零的字段将被忽略搜索。" -#: netbox/extras/models/customfields.py:148 +#: extras/models/customfields.py:148 msgid "filter logic" msgstr "过滤器规则" -#: netbox/extras/models/customfields.py:152 +#: extras/models/customfields.py:152 msgid "" "Loose matches any instance of a given string; exact matches the entire " "field." msgstr "松散匹配是匹配字段中的任意位置;严格匹配是与整个字段完全匹配。" -#: netbox/extras/models/customfields.py:155 +#: extras/models/customfields.py:155 msgid "default" msgstr "默认" -#: netbox/extras/models/customfields.py:159 +#: extras/models/customfields.py:159 msgid "" "Default value for the field (must be a JSON value). Encapsulate strings with" " double quotes (e.g. \"Foo\")." msgstr "字段的默认值(必须是JSON值)。字符串要包含在双引号中(例如“Foo”)。" -#: netbox/extras/models/customfields.py:166 +#: extras/models/customfields.py:166 msgid "" "Filter the object selection choices using a query_params dict (must be a " "JSON value).Encapsulate strings with double quotes (e.g. \"Foo\")." msgstr "使用 query_params 字典(必须是 JSON 值)筛选对象选择选项。用双引号(例如 “Foo”)封装字符串。" -#: netbox/extras/models/customfields.py:172 +#: extras/models/customfields.py:172 msgid "display weight" msgstr "显示权重" -#: netbox/extras/models/customfields.py:173 +#: extras/models/customfields.py:173 msgid "Fields with higher weights appear lower in a form." msgstr "权重约高的字段在页面中显示得位置越低。" -#: netbox/extras/models/customfields.py:178 +#: extras/models/customfields.py:178 msgid "minimum value" msgstr "最小值" -#: netbox/extras/models/customfields.py:179 +#: extras/models/customfields.py:179 msgid "Minimum allowed value (for numeric fields)" msgstr "允许的最小值(对于数字字段)" -#: netbox/extras/models/customfields.py:184 +#: extras/models/customfields.py:184 msgid "maximum value" msgstr "最大值" -#: netbox/extras/models/customfields.py:185 +#: extras/models/customfields.py:185 msgid "Maximum allowed value (for numeric fields)" msgstr "允许的最大值(对于数字字段)" -#: netbox/extras/models/customfields.py:191 +#: extras/models/customfields.py:191 msgid "validation regex" msgstr "验证正则表达式" -#: netbox/extras/models/customfields.py:193 +#: extras/models/customfields.py:193 #, python-brace-format msgid "" "Regular expression to enforce on text field values. Use ^ and $ to force " @@ -8163,252 +7605,250 @@ msgstr "" "要在文本字段值上强制执行的正则表达式。使用^和$可以强制匹配整个字符串。例如, " "^[A-Z]{3}$将限制值只能有三个大写字母。" -#: netbox/extras/models/customfields.py:201 +#: extras/models/customfields.py:201 msgid "choice set" msgstr "可选项" -#: netbox/extras/models/customfields.py:210 +#: extras/models/customfields.py:210 msgid "Specifies whether the custom field is displayed in the UI" msgstr "是否在UI中显示此字段" -#: netbox/extras/models/customfields.py:217 +#: extras/models/customfields.py:217 msgid "Specifies whether the custom field value can be edited in the UI" msgstr "是否在UI中可编辑此字段" -#: netbox/extras/models/customfields.py:221 +#: extras/models/customfields.py:221 msgid "is cloneable" msgstr "可复制" -#: netbox/extras/models/customfields.py:222 +#: extras/models/customfields.py:222 msgid "Replicate this value when cloning objects" msgstr "复制对象时同时复制此值" -#: netbox/extras/models/customfields.py:239 +#: extras/models/customfields.py:239 msgid "custom field" msgstr "自定义字段" -#: netbox/extras/models/customfields.py:240 +#: extras/models/customfields.py:240 msgid "custom fields" msgstr "自定义字段" -#: netbox/extras/models/customfields.py:329 +#: extras/models/customfields.py:329 #, python-brace-format msgid "Invalid default value \"{value}\": {error}" msgstr "无效的默认值:“{value}”:{error}" -#: netbox/extras/models/customfields.py:336 +#: extras/models/customfields.py:336 msgid "A minimum value may be set only for numeric fields" msgstr "只能为数字字段设置最小值" -#: netbox/extras/models/customfields.py:338 +#: extras/models/customfields.py:338 msgid "A maximum value may be set only for numeric fields" msgstr "只能为数字字段设置最大值" -#: netbox/extras/models/customfields.py:348 +#: extras/models/customfields.py:348 msgid "" "Regular expression validation is supported only for text and URL fields" msgstr "仅对文本和URL字段支持正则表达式验证" -#: netbox/extras/models/customfields.py:354 +#: extras/models/customfields.py:354 msgid "Uniqueness cannot be enforced for boolean fields" msgstr "无法强制布尔字段的唯一性" -#: netbox/extras/models/customfields.py:364 +#: extras/models/customfields.py:364 msgid "Selection fields must specify a set of choices." msgstr "选择字段必须指定一组可用选项。" -#: netbox/extras/models/customfields.py:368 +#: extras/models/customfields.py:368 msgid "Choices may be set only on selection fields." msgstr "只能在选择字段上设置选项。" -#: netbox/extras/models/customfields.py:375 +#: extras/models/customfields.py:375 msgid "Object fields must define an object type." msgstr "对象字段必须定义对象类型。" -#: netbox/extras/models/customfields.py:379 +#: extras/models/customfields.py:379 #, python-brace-format msgid "{type} fields may not define an object type." msgstr "{type}字段不能定义对象类型。" -#: netbox/extras/models/customfields.py:386 +#: extras/models/customfields.py:386 msgid "A related object filter can be defined only for object fields." msgstr "只能为对象字段定义相关对象过滤器。" -#: netbox/extras/models/customfields.py:390 +#: extras/models/customfields.py:390 msgid "Filter must be defined as a dictionary mapping attributes to values." msgstr "过滤器必须定义为将属性映射到值的字典。" -#: netbox/extras/models/customfields.py:469 +#: extras/models/customfields.py:469 msgid "True" msgstr "是" -#: netbox/extras/models/customfields.py:470 +#: extras/models/customfields.py:470 msgid "False" msgstr "否" -#: netbox/extras/models/customfields.py:560 +#: extras/models/customfields.py:560 #, python-brace-format msgid "Values must match this regex: {regex}" msgstr "值必须与此正则表达式匹配: {regex}" -#: netbox/extras/models/customfields.py:654 +#: extras/models/customfields.py:654 msgid "Value must be a string." msgstr "值必须为字符串" -#: netbox/extras/models/customfields.py:656 +#: extras/models/customfields.py:656 #, python-brace-format msgid "Value must match regex '{regex}'" msgstr "值必须与正则表达式'{regex}'匹配" -#: netbox/extras/models/customfields.py:661 +#: extras/models/customfields.py:661 msgid "Value must be an integer." msgstr "值必须是整数。" -#: netbox/extras/models/customfields.py:664 -#: netbox/extras/models/customfields.py:679 +#: extras/models/customfields.py:664 extras/models/customfields.py:679 #, python-brace-format msgid "Value must be at least {minimum}" msgstr "值最少为{minimum}" -#: netbox/extras/models/customfields.py:668 -#: netbox/extras/models/customfields.py:683 +#: extras/models/customfields.py:668 extras/models/customfields.py:683 #, python-brace-format msgid "Value must not exceed {maximum}" msgstr "值最大为{maximum}" -#: netbox/extras/models/customfields.py:676 +#: extras/models/customfields.py:676 msgid "Value must be a decimal." msgstr "值必须是十进制。" -#: netbox/extras/models/customfields.py:688 +#: extras/models/customfields.py:688 msgid "Value must be true or false." msgstr "值必须为true或false。" -#: netbox/extras/models/customfields.py:696 +#: extras/models/customfields.py:696 msgid "Date values must be in ISO 8601 format (YYYY-MM-DD)." msgstr "日期格式必须为 ISO 8601 格式(YYYY-MM-DD)." -#: netbox/extras/models/customfields.py:705 +#: extras/models/customfields.py:705 msgid "Date and time values must be in ISO 8601 format (YYYY-MM-DD HH:MM:SS)." msgstr "日期和时间必须遵循 ISO 8601 格式 (YYYY-MM-DD HH:MM:SS)." -#: netbox/extras/models/customfields.py:712 +#: extras/models/customfields.py:712 #, python-brace-format msgid "Invalid choice ({value}) for choice set {choiceset}." msgstr "选项集{choiceset}的选项({value})无效。" -#: netbox/extras/models/customfields.py:722 +#: extras/models/customfields.py:722 #, python-brace-format msgid "Invalid choice(s) ({value}) for choice set {choiceset}." msgstr "选项集{choiceset}的选项({value})无效。" -#: netbox/extras/models/customfields.py:731 +#: extras/models/customfields.py:731 #, python-brace-format msgid "Value must be an object ID, not {type}" msgstr "值必须为对象ID, 不是 {type}" -#: netbox/extras/models/customfields.py:737 +#: extras/models/customfields.py:737 #, python-brace-format msgid "Value must be a list of object IDs, not {type}" msgstr "值必须为对象ID的列表,不是 {type}" -#: netbox/extras/models/customfields.py:741 +#: extras/models/customfields.py:741 #, python-brace-format msgid "Found invalid object ID: {id}" msgstr "发现错误的对象ID: {id}" -#: netbox/extras/models/customfields.py:744 +#: extras/models/customfields.py:744 msgid "Required field cannot be empty." msgstr "必填字段不能为空。" -#: netbox/extras/models/customfields.py:763 +#: extras/models/customfields.py:763 msgid "Base set of predefined choices (optional)" msgstr "预定义选项的基本集合(可选)" -#: netbox/extras/models/customfields.py:775 +#: extras/models/customfields.py:775 msgid "Choices are automatically ordered alphabetically" msgstr "选项会自动按字母顺序排列" -#: netbox/extras/models/customfields.py:782 +#: extras/models/customfields.py:782 msgid "custom field choice set" msgstr "自定义字段选择集" -#: netbox/extras/models/customfields.py:783 +#: extras/models/customfields.py:783 msgid "custom field choice sets" msgstr "自定义字段选择集" -#: netbox/extras/models/customfields.py:825 +#: extras/models/customfields.py:825 msgid "Must define base or extra choices." msgstr "必须定义基本选项或额外选项。" -#: netbox/extras/models/customfields.py:849 +#: extras/models/customfields.py:849 #, python-brace-format msgid "" "Cannot remove choice {choice} as there are {model} objects which reference " "it." msgstr "无法删除选择 {choice} 正如有 {model} 引用它的对象。" -#: netbox/extras/models/dashboard.py:18 +#: extras/models/dashboard.py:18 msgid "layout" msgstr "布局" -#: netbox/extras/models/dashboard.py:22 +#: extras/models/dashboard.py:22 msgid "config" msgstr "配置" -#: netbox/extras/models/dashboard.py:27 +#: extras/models/dashboard.py:27 msgid "dashboard" msgstr "仪表盘" -#: netbox/extras/models/dashboard.py:28 +#: extras/models/dashboard.py:28 msgid "dashboards" msgstr "仪表盘" -#: netbox/extras/models/models.py:52 +#: extras/models/models.py:52 msgid "object types" msgstr "对象类型" -#: netbox/extras/models/models.py:53 +#: extras/models/models.py:53 msgid "The object(s) to which this rule applies." msgstr "应用此规则的对象。" -#: netbox/extras/models/models.py:67 +#: extras/models/models.py:67 msgid "The types of event which will trigger this rule." msgstr "将触发此规则的事件类型。" -#: netbox/extras/models/models.py:74 +#: extras/models/models.py:74 msgid "conditions" msgstr "限制条件" -#: netbox/extras/models/models.py:77 +#: extras/models/models.py:77 msgid "" "A set of conditions which determine whether the event will be generated." msgstr "一组条件,用于确定是否会生成事件。" -#: netbox/extras/models/models.py:85 +#: extras/models/models.py:85 msgid "action type" msgstr "动作类型" -#: netbox/extras/models/models.py:104 +#: extras/models/models.py:104 msgid "Additional data to pass to the action object" msgstr "要传递给动作对象的其他数据" -#: netbox/extras/models/models.py:116 +#: extras/models/models.py:116 msgid "event rule" msgstr "事件规则" -#: netbox/extras/models/models.py:117 +#: extras/models/models.py:117 msgid "event rules" msgstr "事件规则" -#: netbox/extras/models/models.py:166 +#: extras/models/models.py:166 msgid "" "This URL will be called using the HTTP method defined when the webhook is " "called. Jinja2 template processing is supported with the same context as the" " request body." msgstr "此URL将使用调用webhook时定义的HTTP方法进行调用。Jinja2模板处理支持与请求主体相同的描述。" -#: netbox/extras/models/models.py:181 +#: extras/models/models.py:181 msgid "" "The complete list of official content types is available 点击这里." -#: netbox/extras/models/models.py:186 +#: extras/models/models.py:186 msgid "additional headers" msgstr "附加标头" -#: netbox/extras/models/models.py:189 +#: extras/models/models.py:189 msgid "" "User-supplied HTTP headers to be sent with the request in addition to the " "HTTP content type. Headers should be defined in the format Name: " @@ -8431,11 +7871,11 @@ msgstr "" "除了HTTP内容类型之外,还要与请求一起发送用户提供的HTTP标头。标头的定义格式应为 名称: 值. " "Jinja2模板处理支持与请求主体相同的实例(如下)。" -#: netbox/extras/models/models.py:195 +#: extras/models/models.py:195 msgid "body template" msgstr "内容模版" -#: netbox/extras/models/models.py:198 +#: extras/models/models.py:198 msgid "" "Jinja2 template for a custom request body. If blank, a JSON object " "representing the change will be included. Available context data includes: " @@ -8446,11 +7886,11 @@ msgstr "" "模块, 时间戳, 用户名, 请求id, 和 " "数据." -#: netbox/extras/models/models.py:204 +#: extras/models/models.py:204 msgid "secret" msgstr "秘钥" -#: netbox/extras/models/models.py:208 +#: extras/models/models.py:208 msgid "" "When provided, the request will include a X-Hook-Signature " "header containing a HMAC hex digest of the payload body using the secret as " @@ -8459,4398 +7899,4247 @@ msgstr "" "当提供时,请求将包括一个X-Hook-Signature " "该标头包含使用机密作为密钥的有效载荷主体的HMAC十六进制摘要。秘钥不会在请求中传输。" -#: netbox/extras/models/models.py:215 +#: extras/models/models.py:215 msgid "Enable SSL certificate verification. Disable with caution!" msgstr "启用 SSL 证书验证。请谨慎禁用!" -#: netbox/extras/models/models.py:221 netbox/templates/extras/webhook.html:51 +#: extras/models/models.py:221 templates/extras/webhook.html:51 msgid "CA File Path" msgstr "CA证书文件路径" -#: netbox/extras/models/models.py:223 +#: extras/models/models.py:223 msgid "" "The specific CA certificate file to use for SSL verification. Leave blank to" " use the system defaults." msgstr "用于SSL验证的CA证书文件。空为使用系统默认值。" -#: netbox/extras/models/models.py:234 +#: extras/models/models.py:234 msgid "webhook" msgstr "webhook" -#: netbox/extras/models/models.py:235 +#: extras/models/models.py:235 msgid "webhooks" msgstr "webhooks" -#: netbox/extras/models/models.py:253 +#: extras/models/models.py:253 msgid "Do not specify a CA certificate file if SSL verification is disabled." msgstr "如果禁用了SSL验证,请不要指定CA证书文件。" -#: netbox/extras/models/models.py:293 +#: extras/models/models.py:293 msgid "The object type(s) to which this link applies." msgstr "此链接所应用的对象类型。" -#: netbox/extras/models/models.py:305 +#: extras/models/models.py:305 msgid "link text" msgstr "链接文本" -#: netbox/extras/models/models.py:306 +#: extras/models/models.py:306 msgid "Jinja2 template code for link text" msgstr "链接文本的Jinja2模板代码" -#: netbox/extras/models/models.py:309 +#: extras/models/models.py:309 msgid "link URL" msgstr "链接URL" -#: netbox/extras/models/models.py:310 +#: extras/models/models.py:310 msgid "Jinja2 template code for link URL" msgstr "链接URL的Jinja2模板代码" -#: netbox/extras/models/models.py:320 +#: extras/models/models.py:320 msgid "Links with the same group will appear as a dropdown menu" msgstr "同一类的链接将显示为下拉菜单" -#: netbox/extras/models/models.py:330 +#: extras/models/models.py:330 msgid "new window" msgstr "新窗口" -#: netbox/extras/models/models.py:332 +#: extras/models/models.py:332 msgid "Force link to open in a new window" msgstr "强制链接在新窗口中打开" -#: netbox/extras/models/models.py:341 +#: extras/models/models.py:341 msgid "custom link" msgstr "自定义链接" -#: netbox/extras/models/models.py:342 +#: extras/models/models.py:342 msgid "custom links" msgstr "自定义链接" -#: netbox/extras/models/models.py:389 +#: extras/models/models.py:389 msgid "The object type(s) to which this template applies." msgstr "应用此模板的对象类型。" -#: netbox/extras/models/models.py:402 +#: extras/models/models.py:402 msgid "" "Jinja2 template code. The list of objects being exported is passed as a " "context variable named queryset." msgstr "Jinja2模板代码。要导出的对象列表作为queryset的实例变量传递." -#: netbox/extras/models/models.py:410 +#: extras/models/models.py:410 msgid "Defaults to text/plain; charset=utf-8" msgstr "默认为text/plain; charset=utf-8" -#: netbox/extras/models/models.py:413 +#: extras/models/models.py:413 msgid "file extension" msgstr "文件扩展名" -#: netbox/extras/models/models.py:416 +#: extras/models/models.py:416 msgid "Extension to append to the rendered filename" msgstr "附加到文件名的扩展名" -#: netbox/extras/models/models.py:419 +#: extras/models/models.py:419 msgid "as attachment" msgstr "作为附件" -#: netbox/extras/models/models.py:421 +#: extras/models/models.py:421 msgid "Download file as attachment" msgstr "将文件作为附件下载" -#: netbox/extras/models/models.py:430 +#: extras/models/models.py:430 msgid "export template" msgstr "导出模版" -#: netbox/extras/models/models.py:431 +#: extras/models/models.py:431 msgid "export templates" msgstr "导出模版" -#: netbox/extras/models/models.py:448 +#: extras/models/models.py:448 #, python-brace-format msgid "\"{name}\" is a reserved name. Please choose a different name." msgstr "\"{name}\"是保留名称。请选择其他名称。" -#: netbox/extras/models/models.py:498 +#: extras/models/models.py:498 msgid "The object type(s) to which this filter applies." msgstr "应用此筛选器的对象类型。" -#: netbox/extras/models/models.py:530 +#: extras/models/models.py:530 msgid "shared" msgstr "共享性" -#: netbox/extras/models/models.py:543 +#: extras/models/models.py:543 msgid "saved filter" msgstr "已保存的过滤器" -#: netbox/extras/models/models.py:544 +#: extras/models/models.py:544 msgid "saved filters" msgstr "已保存的过滤器" -#: netbox/extras/models/models.py:562 +#: extras/models/models.py:562 msgid "Filter parameters must be stored as a dictionary of keyword arguments." msgstr "筛选器参数必须存储为关键字参数的字典。" -#: netbox/extras/models/models.py:590 +#: extras/models/models.py:590 msgid "image height" msgstr "图片高度" -#: netbox/extras/models/models.py:593 +#: extras/models/models.py:593 msgid "image width" msgstr "图片宽度" -#: netbox/extras/models/models.py:610 +#: extras/models/models.py:610 msgid "image attachment" msgstr "图片附件" -#: netbox/extras/models/models.py:611 +#: extras/models/models.py:611 msgid "image attachments" msgstr "图片附件" -#: netbox/extras/models/models.py:625 +#: extras/models/models.py:625 #, python-brace-format msgid "Image attachments cannot be assigned to this object type ({type})." msgstr "无法将图片附件分配给此对象类型({type})." -#: netbox/extras/models/models.py:688 +#: extras/models/models.py:688 msgid "kind" msgstr "类型" -#: netbox/extras/models/models.py:702 +#: extras/models/models.py:702 msgid "journal entry" msgstr "日志条目" -#: netbox/extras/models/models.py:703 +#: extras/models/models.py:703 msgid "journal entries" msgstr "日志条目" -#: netbox/extras/models/models.py:718 +#: extras/models/models.py:718 #, python-brace-format msgid "Journaling is not supported for this object type ({type})." msgstr "此对象类型({type})不支持备忘。" -#: netbox/extras/models/models.py:760 +#: extras/models/models.py:760 msgid "bookmark" msgstr "书签" -#: netbox/extras/models/models.py:761 +#: extras/models/models.py:761 msgid "bookmarks" msgstr "书签" -#: netbox/extras/models/models.py:774 +#: extras/models/models.py:774 #, python-brace-format msgid "Bookmarks cannot be assigned to this object type ({type})." msgstr "无法将书签分配给此对象类型({type})。" -#: netbox/extras/models/notifications.py:43 +#: extras/models/notifications.py:43 msgid "read" msgstr "读" -#: netbox/extras/models/notifications.py:66 +#: extras/models/notifications.py:66 msgid "event" msgstr "事件" -#: netbox/extras/models/notifications.py:84 +#: extras/models/notifications.py:84 msgid "notification" msgstr "通知" -#: netbox/extras/models/notifications.py:85 +#: extras/models/notifications.py:85 msgid "notifications" msgstr "通知" -#: netbox/extras/models/notifications.py:99 -#: netbox/extras/models/notifications.py:234 +#: extras/models/notifications.py:99 extras/models/notifications.py:234 #, python-brace-format msgid "Objects of this type ({type}) do not support notifications." msgstr "这种类型的对象 ({type}) 不支持通知。" -#: netbox/extras/models/notifications.py:137 netbox/users/models/users.py:58 -#: netbox/users/models/users.py:77 +#: extras/models/notifications.py:137 users/models/users.py:58 +#: users/models/users.py:77 msgid "groups" msgstr "组" -#: netbox/extras/models/notifications.py:143 netbox/users/models/users.py:93 +#: extras/models/notifications.py:143 users/models/users.py:93 msgid "users" msgstr "用户" -#: netbox/extras/models/notifications.py:152 +#: extras/models/notifications.py:152 msgid "notification group" msgstr "通知组" -#: netbox/extras/models/notifications.py:153 +#: extras/models/notifications.py:153 msgid "notification groups" msgstr "通知组" -#: netbox/extras/models/notifications.py:217 +#: extras/models/notifications.py:217 msgid "subscription" msgstr "订阅" -#: netbox/extras/models/notifications.py:218 +#: extras/models/notifications.py:218 msgid "subscriptions" msgstr "订阅" -#: netbox/extras/models/scripts.py:42 +#: extras/models/scripts.py:42 msgid "is executable" msgstr "是可执行的" -#: netbox/extras/models/scripts.py:64 +#: extras/models/scripts.py:64 msgid "script" msgstr "脚本" -#: netbox/extras/models/scripts.py:65 +#: extras/models/scripts.py:65 msgid "scripts" msgstr "脚本" -#: netbox/extras/models/scripts.py:111 +#: extras/models/scripts.py:111 msgid "script module" msgstr "脚本模块" -#: netbox/extras/models/scripts.py:112 +#: extras/models/scripts.py:112 msgid "script modules" msgstr "脚本模块" -#: netbox/extras/models/search.py:22 +#: extras/models/search.py:22 msgid "timestamp" msgstr "时间戳" -#: netbox/extras/models/search.py:37 +#: extras/models/search.py:37 msgid "field" msgstr "字段" -#: netbox/extras/models/search.py:45 +#: extras/models/search.py:45 msgid "value" msgstr "值" -#: netbox/extras/models/search.py:56 +#: extras/models/search.py:56 msgid "cached value" msgstr "缓存的值" -#: netbox/extras/models/search.py:57 +#: extras/models/search.py:57 msgid "cached values" msgstr "缓存的值" -#: netbox/extras/models/staging.py:44 +#: extras/models/staging.py:44 msgid "branch" msgstr "分支" -#: netbox/extras/models/staging.py:45 +#: extras/models/staging.py:45 msgid "branches" msgstr "分支" -#: netbox/extras/models/staging.py:97 +#: extras/models/staging.py:97 msgid "staged change" msgstr "暂存变更" -#: netbox/extras/models/staging.py:98 +#: extras/models/staging.py:98 msgid "staged changes" msgstr "暂存变更" -#: netbox/extras/models/tags.py:40 +#: extras/models/tags.py:40 msgid "The object type(s) to which this tag can be applied." msgstr "可以应用此标记的对象类型。" -#: netbox/extras/models/tags.py:49 +#: extras/models/tags.py:49 msgid "tag" msgstr "标签" -#: netbox/extras/models/tags.py:50 +#: extras/models/tags.py:50 msgid "tags" msgstr "标签" -#: netbox/extras/models/tags.py:78 +#: extras/models/tags.py:78 msgid "tagged item" msgstr "标记的项目" -#: netbox/extras/models/tags.py:79 +#: extras/models/tags.py:79 msgid "tagged items" msgstr "标记的项目" -#: netbox/extras/scripts.py:429 +#: extras/scripts.py:429 msgid "Script Data" msgstr "脚本数据" -#: netbox/extras/scripts.py:433 +#: extras/scripts.py:433 msgid "Script Execution Parameters" msgstr "脚本执行参数" -#: netbox/extras/tables/columns.py:12 -#: netbox/templates/htmx/notifications.html:18 +#: extras/tables/columns.py:12 templates/htmx/notifications.html:18 msgid "Dismiss" msgstr "解雇" -#: netbox/extras/tables/tables.py:62 netbox/extras/tables/tables.py:159 -#: netbox/extras/tables/tables.py:184 netbox/extras/tables/tables.py:250 -#: netbox/extras/tables/tables.py:276 netbox/extras/tables/tables.py:412 -#: netbox/extras/tables/tables.py:446 -#: netbox/templates/extras/customfield.html:105 -#: netbox/templates/extras/eventrule.html:27 -#: netbox/templates/users/objectpermission.html:64 netbox/users/tables.py:80 +#: extras/tables/tables.py:62 extras/tables/tables.py:159 +#: extras/tables/tables.py:184 extras/tables/tables.py:250 +#: extras/tables/tables.py:276 extras/tables/tables.py:412 +#: extras/tables/tables.py:446 templates/extras/customfield.html:105 +#: templates/extras/eventrule.html:27 templates/users/objectpermission.html:64 +#: users/tables.py:80 msgid "Object Types" msgstr "对象类型" -#: netbox/extras/tables/tables.py:69 +#: extras/tables/tables.py:69 msgid "Validate Uniqueness" msgstr "验证唯一性" -#: netbox/extras/tables/tables.py:73 +#: extras/tables/tables.py:73 msgid "Visible" msgstr "可见" -#: netbox/extras/tables/tables.py:76 +#: extras/tables/tables.py:76 msgid "Editable" msgstr "可编辑" -#: netbox/extras/tables/tables.py:82 +#: extras/tables/tables.py:82 msgid "Related Object Type" msgstr "相关对象类型" -#: netbox/extras/tables/tables.py:86 -#: netbox/templates/extras/customfield.html:51 +#: extras/tables/tables.py:86 templates/extras/customfield.html:51 msgid "Choice Set" msgstr "选项集" -#: netbox/extras/tables/tables.py:94 +#: extras/tables/tables.py:94 msgid "Is Cloneable" msgstr "可复制" -#: netbox/extras/tables/tables.py:98 -#: netbox/templates/extras/customfield.html:118 +#: extras/tables/tables.py:98 templates/extras/customfield.html:118 msgid "Minimum Value" msgstr "最小值" -#: netbox/extras/tables/tables.py:101 -#: netbox/templates/extras/customfield.html:122 +#: extras/tables/tables.py:101 templates/extras/customfield.html:122 msgid "Maximum Value" msgstr "最大值" -#: netbox/extras/tables/tables.py:104 +#: extras/tables/tables.py:104 msgid "Validation Regex" msgstr "验证正则表达式" -#: netbox/extras/tables/tables.py:137 +#: extras/tables/tables.py:137 msgid "Count" msgstr "计数" -#: netbox/extras/tables/tables.py:140 +#: extras/tables/tables.py:140 msgid "Order Alphabetically" msgstr "按字母顺序排列" -#: netbox/extras/tables/tables.py:165 -#: netbox/templates/extras/customlink.html:33 +#: extras/tables/tables.py:165 templates/extras/customlink.html:33 msgid "New Window" msgstr "新窗口" -#: netbox/extras/tables/tables.py:187 +#: extras/tables/tables.py:187 msgid "As Attachment" msgstr "作为附件" -#: netbox/extras/tables/tables.py:195 netbox/extras/tables/tables.py:487 -#: netbox/extras/tables/tables.py:522 netbox/templates/core/datafile.html:24 -#: netbox/templates/dcim/device/render_config.html:22 -#: netbox/templates/extras/configcontext.html:39 -#: netbox/templates/extras/configtemplate.html:31 -#: netbox/templates/extras/exporttemplate.html:45 -#: netbox/templates/generic/bulk_import.html:35 -#: netbox/templates/virtualization/virtualmachine/render_config.html:22 +#: extras/tables/tables.py:195 extras/tables/tables.py:487 +#: extras/tables/tables.py:522 templates/core/datafile.html:24 +#: templates/dcim/device/render_config.html:22 +#: templates/extras/configcontext.html:39 +#: templates/extras/configtemplate.html:31 +#: templates/extras/exporttemplate.html:45 +#: templates/generic/bulk_import.html:35 +#: templates/virtualization/virtualmachine/render_config.html:22 msgid "Data File" msgstr "数据文件" -#: netbox/extras/tables/tables.py:200 netbox/extras/tables/tables.py:499 -#: netbox/extras/tables/tables.py:527 +#: extras/tables/tables.py:200 extras/tables/tables.py:499 +#: extras/tables/tables.py:527 msgid "Synced" msgstr "同步" -#: netbox/extras/tables/tables.py:227 +#: extras/tables/tables.py:227 msgid "Image" msgstr "图片" -#: netbox/extras/tables/tables.py:232 +#: extras/tables/tables.py:232 msgid "Size (Bytes)" msgstr "大小 (Bytes)" -#: netbox/extras/tables/tables.py:339 +#: extras/tables/tables.py:339 msgid "Read" msgstr "阅读" -#: netbox/extras/tables/tables.py:382 +#: extras/tables/tables.py:382 msgid "SSL Validation" msgstr "SSL验证" -#: netbox/extras/tables/tables.py:418 -#: netbox/templates/extras/eventrule.html:37 +#: extras/tables/tables.py:418 templates/extras/eventrule.html:37 msgid "Event Types" msgstr "事件类型" -#: netbox/extras/tables/tables.py:535 netbox/netbox/navigation/menu.py:77 -#: netbox/templates/dcim/devicerole.html:8 +#: extras/tables/tables.py:535 netbox/navigation/menu.py:77 +#: templates/dcim/devicerole.html:8 msgid "Device Roles" msgstr "设备角色" -#: netbox/extras/tables/tables.py:587 +#: extras/tables/tables.py:587 msgid "Comments (Short)" msgstr "评论(简短)" -#: netbox/extras/tables/tables.py:606 netbox/extras/tables/tables.py:640 +#: extras/tables/tables.py:606 extras/tables/tables.py:640 msgid "Line" msgstr "线" -#: netbox/extras/tables/tables.py:613 netbox/extras/tables/tables.py:650 +#: extras/tables/tables.py:613 extras/tables/tables.py:650 msgid "Level" msgstr "等级" -#: netbox/extras/tables/tables.py:619 netbox/extras/tables/tables.py:659 +#: extras/tables/tables.py:619 extras/tables/tables.py:659 msgid "Message" msgstr "信息" -#: netbox/extras/tables/tables.py:643 +#: extras/tables/tables.py:643 msgid "Method" msgstr "方法" -#: netbox/extras/validators.py:15 +#: extras/validators.py:15 #, python-format msgid "Ensure this value is equal to %(limit_value)s." msgstr "请确保值等于 %(limit_value)s." -#: netbox/extras/validators.py:26 +#: extras/validators.py:26 #, python-format msgid "Ensure this value does not equal %(limit_value)s." msgstr "请确保值不等于 %(limit_value)s." -#: netbox/extras/validators.py:37 +#: extras/validators.py:37 msgid "This field must be empty." msgstr "此字段必须为空" -#: netbox/extras/validators.py:52 +#: extras/validators.py:52 msgid "This field must not be empty." msgstr "此字段必须不为空" -#: netbox/extras/validators.py:94 +#: extras/validators.py:94 msgid "Validation rules must be passed as a dictionary" msgstr "验证规则必须以字典形式传递" -#: netbox/extras/validators.py:119 +#: extras/validators.py:119 #, python-brace-format msgid "Custom validation failed for {attribute}: {exception}" msgstr "{attribute} 的自定义验证失败:{exception}" -#: netbox/extras/validators.py:133 +#: extras/validators.py:133 #, python-brace-format msgid "Invalid attribute \"{name}\" for request" msgstr "请求的属性“{name}”无效" -#: netbox/extras/validators.py:150 +#: extras/validators.py:150 #, python-brace-format msgid "Invalid attribute \"{name}\" for {model}" msgstr "{model}的属性 \"{name}\"无效" -#: netbox/extras/views.py:960 +#: extras/views.py:960 msgid "Your dashboard has been reset." msgstr "仪表盘已重置。" -#: netbox/extras/views.py:1006 +#: extras/views.py:1006 msgid "Added widget: " msgstr "添加小组件:" -#: netbox/extras/views.py:1047 +#: extras/views.py:1047 msgid "Updated widget: " msgstr "更新小组件:" -#: netbox/extras/views.py:1083 +#: extras/views.py:1083 msgid "Deleted widget: " msgstr "删除小组件:" -#: netbox/extras/views.py:1085 +#: extras/views.py:1085 msgid "Error deleting widget: " msgstr "删除小组件错误:" -#: netbox/extras/views.py:1172 +#: extras/views.py:1172 msgid "Unable to run script: RQ worker process not running." msgstr "无法运行脚本:RQ worker 进程未运行。" -#: netbox/ipam/api/field_serializers.py:17 +#: ipam/api/field_serializers.py:17 msgid "Enter a valid IPv4 or IPv6 address with optional mask." msgstr "输入有效的 IPv4 或 IPv6 地址以及可选掩码。" -#: netbox/ipam/api/field_serializers.py:24 +#: ipam/api/field_serializers.py:24 #, python-brace-format msgid "Invalid IP address format: {data}" msgstr "IP 地址格式无效: {data}" -#: netbox/ipam/api/field_serializers.py:37 +#: ipam/api/field_serializers.py:37 msgid "Enter a valid IPv4 or IPv6 prefix and mask in CIDR notation." msgstr "请输入有效的IPv4或IPv6前缀和掩码(格式为 CIDR)。" -#: netbox/ipam/api/field_serializers.py:44 +#: ipam/api/field_serializers.py:44 #, python-brace-format msgid "Invalid IP prefix format: {data}" msgstr "无效的IP前缀格式: {data}" -#: netbox/ipam/api/views.py:358 +#: ipam/api/views.py:358 msgid "" "Insufficient space is available to accommodate the requested prefix size(s)" msgstr "可用 IP 不足,无法容纳此请求的前缀大小" -#: netbox/ipam/choices.py:30 +#: ipam/choices.py:30 msgid "Container" msgstr "容器" -#: netbox/ipam/choices.py:72 +#: ipam/choices.py:72 msgid "DHCP" msgstr "DHCP" -#: netbox/ipam/choices.py:73 +#: ipam/choices.py:73 msgid "SLAAC" msgstr "SLAAC" -#: netbox/ipam/choices.py:89 +#: ipam/choices.py:89 msgid "Loopback" msgstr "Loopback" -#: netbox/ipam/choices.py:91 +#: ipam/choices.py:91 msgid "Anycast" msgstr "Anycast" -#: netbox/ipam/choices.py:115 +#: ipam/choices.py:115 msgid "Standard" msgstr "标准的" -#: netbox/ipam/choices.py:120 +#: ipam/choices.py:120 msgid "CheckPoint" msgstr "检查点" -#: netbox/ipam/choices.py:123 +#: ipam/choices.py:123 msgid "Cisco" msgstr "思科" -#: netbox/ipam/choices.py:137 +#: ipam/choices.py:137 msgid "Plaintext" msgstr "明文" -#: netbox/ipam/fields.py:36 +#: ipam/fields.py:36 #, python-brace-format msgid "Invalid IP address format: {address}" msgstr "IP 地址格式无效: {address}" -#: netbox/ipam/filtersets.py:48 netbox/vpn/filtersets.py:304 +#: ipam/filtersets.py:48 vpn/filtersets.py:304 msgid "Import target" msgstr "引入target" -#: netbox/ipam/filtersets.py:54 netbox/vpn/filtersets.py:310 +#: ipam/filtersets.py:54 vpn/filtersets.py:310 msgid "Import target (name)" msgstr "引入target(名称)" -#: netbox/ipam/filtersets.py:59 netbox/vpn/filtersets.py:315 +#: ipam/filtersets.py:59 vpn/filtersets.py:315 msgid "Export target" msgstr "输出target" -#: netbox/ipam/filtersets.py:65 netbox/vpn/filtersets.py:321 +#: ipam/filtersets.py:65 vpn/filtersets.py:321 msgid "Export target (name)" msgstr "输出target(名称)" -#: netbox/ipam/filtersets.py:86 +#: ipam/filtersets.py:86 msgid "Importing VRF" msgstr "导入VRF" -#: netbox/ipam/filtersets.py:92 +#: ipam/filtersets.py:92 msgid "Import VRF (RD)" msgstr "导入 VRF (RD)" -#: netbox/ipam/filtersets.py:97 +#: ipam/filtersets.py:97 msgid "Exporting VRF" msgstr "导出 VRF" -#: netbox/ipam/filtersets.py:103 +#: ipam/filtersets.py:103 msgid "Export VRF (RD)" msgstr "导出 VRF (RD)" -#: netbox/ipam/filtersets.py:108 +#: ipam/filtersets.py:108 msgid "Importing L2VPN" msgstr "导入 L2VPN" -#: netbox/ipam/filtersets.py:114 +#: ipam/filtersets.py:114 msgid "Importing L2VPN (identifier)" msgstr "导入 L2VPN (identifier)" -#: netbox/ipam/filtersets.py:119 +#: ipam/filtersets.py:119 msgid "Exporting L2VPN" msgstr "导出 L2VPN" -#: netbox/ipam/filtersets.py:125 +#: ipam/filtersets.py:125 msgid "Exporting L2VPN (identifier)" msgstr "导出L2VPN(标识符)" -#: netbox/ipam/filtersets.py:155 netbox/ipam/filtersets.py:281 -#: netbox/ipam/forms/model_forms.py:229 netbox/ipam/tables/ip.py:212 -#: netbox/templates/ipam/prefix.html:12 +#: ipam/filtersets.py:155 ipam/filtersets.py:281 ipam/forms/model_forms.py:229 +#: ipam/tables/ip.py:212 templates/ipam/prefix.html:12 msgid "Prefix" msgstr "前缀" -#: netbox/ipam/filtersets.py:159 netbox/ipam/filtersets.py:198 -#: netbox/ipam/filtersets.py:221 +#: ipam/filtersets.py:159 ipam/filtersets.py:198 ipam/filtersets.py:221 msgid "RIR (ID)" msgstr "RIR(ID)" -#: netbox/ipam/filtersets.py:165 netbox/ipam/filtersets.py:204 -#: netbox/ipam/filtersets.py:227 +#: ipam/filtersets.py:165 ipam/filtersets.py:204 ipam/filtersets.py:227 msgid "RIR (slug)" msgstr "RIP(缩写)" -#: netbox/ipam/filtersets.py:285 +#: ipam/filtersets.py:285 msgid "Within prefix" msgstr "此前缀包含的" -#: netbox/ipam/filtersets.py:289 +#: ipam/filtersets.py:289 msgid "Within and including prefix" msgstr "此前缀包含的(包含此前缀)" -#: netbox/ipam/filtersets.py:293 +#: ipam/filtersets.py:293 msgid "Prefixes which contain this prefix or IP" msgstr "包含此前缀或IP的前缀" -#: netbox/ipam/filtersets.py:304 netbox/ipam/filtersets.py:572 -#: netbox/ipam/forms/bulk_edit.py:342 netbox/ipam/forms/filtersets.py:196 -#: netbox/ipam/forms/filtersets.py:331 +#: ipam/filtersets.py:304 ipam/filtersets.py:572 ipam/forms/bulk_edit.py:343 +#: ipam/forms/filtersets.py:196 ipam/forms/filtersets.py:331 msgid "Mask length" msgstr "掩码长度" -#: netbox/ipam/filtersets.py:373 netbox/vpn/filtersets.py:427 +#: ipam/filtersets.py:373 vpn/filtersets.py:427 msgid "VLAN (ID)" msgstr "VLAN (ID)" -#: netbox/ipam/filtersets.py:377 netbox/vpn/filtersets.py:422 +#: ipam/filtersets.py:377 vpn/filtersets.py:422 msgid "VLAN number (1-4094)" msgstr "VLAN 号(1-4094)" -#: netbox/ipam/filtersets.py:471 netbox/ipam/filtersets.py:475 -#: netbox/ipam/filtersets.py:567 netbox/ipam/forms/model_forms.py:463 -#: netbox/templates/tenancy/contact.html:53 -#: netbox/tenancy/forms/bulk_edit.py:113 +#: ipam/filtersets.py:471 ipam/filtersets.py:475 ipam/filtersets.py:567 +#: ipam/forms/model_forms.py:463 templates/tenancy/contact.html:53 +#: tenancy/forms/bulk_edit.py:113 msgid "Address" msgstr "地址" -#: netbox/ipam/filtersets.py:479 +#: ipam/filtersets.py:479 msgid "Ranges which contain this prefix or IP" msgstr "包含此前缀或IP的范围" -#: netbox/ipam/filtersets.py:507 netbox/ipam/filtersets.py:563 +#: ipam/filtersets.py:507 ipam/filtersets.py:563 msgid "Parent prefix" msgstr "上级前缀" -#: netbox/ipam/filtersets.py:616 netbox/ipam/filtersets.py:856 -#: netbox/ipam/filtersets.py:1131 netbox/vpn/filtersets.py:385 +#: ipam/filtersets.py:616 ipam/filtersets.py:856 ipam/filtersets.py:1131 +#: vpn/filtersets.py:385 msgid "Virtual machine (name)" msgstr "虚拟机(名称)" -#: netbox/ipam/filtersets.py:621 netbox/ipam/filtersets.py:861 -#: netbox/ipam/filtersets.py:1125 netbox/virtualization/filtersets.py:282 -#: netbox/virtualization/filtersets.py:321 netbox/vpn/filtersets.py:390 +#: ipam/filtersets.py:621 ipam/filtersets.py:861 ipam/filtersets.py:1125 +#: virtualization/filtersets.py:282 virtualization/filtersets.py:321 +#: vpn/filtersets.py:390 msgid "Virtual machine (ID)" msgstr "虚拟机(ID)" -#: netbox/ipam/filtersets.py:627 netbox/vpn/filtersets.py:97 -#: netbox/vpn/filtersets.py:396 +#: ipam/filtersets.py:627 vpn/filtersets.py:97 vpn/filtersets.py:396 msgid "Interface (name)" msgstr "接口(名称)" -#: netbox/ipam/filtersets.py:638 netbox/vpn/filtersets.py:108 -#: netbox/vpn/filtersets.py:407 +#: ipam/filtersets.py:638 vpn/filtersets.py:108 vpn/filtersets.py:407 msgid "VM interface (name)" msgstr "虚拟接口(名称)" -#: netbox/ipam/filtersets.py:643 netbox/vpn/filtersets.py:113 +#: ipam/filtersets.py:643 vpn/filtersets.py:113 msgid "VM interface (ID)" msgstr "虚拟接口(ID)" -#: netbox/ipam/filtersets.py:648 +#: ipam/filtersets.py:648 msgid "FHRP group (ID)" msgstr "FHRP 组 (ID)" -#: netbox/ipam/filtersets.py:652 +#: ipam/filtersets.py:652 msgid "Is assigned to an interface" msgstr "分配给接口" -#: netbox/ipam/filtersets.py:656 +#: ipam/filtersets.py:656 msgid "Is assigned" msgstr "已分配" -#: netbox/ipam/filtersets.py:668 +#: ipam/filtersets.py:668 msgid "Service (ID)" msgstr "服务 (ID)" -#: netbox/ipam/filtersets.py:673 +#: ipam/filtersets.py:673 msgid "NAT inside IP address (ID)" msgstr "NAT 内部 IP 地址 (ID)" -#: netbox/ipam/filtersets.py:1041 netbox/ipam/forms/bulk_import.py:322 +#: ipam/filtersets.py:1041 ipam/forms/bulk_import.py:322 msgid "Assigned interface" msgstr "分配的接口" -#: netbox/ipam/filtersets.py:1046 +#: ipam/filtersets.py:1046 msgid "Assigned VM interface" msgstr "分配的虚拟机接口" -#: netbox/ipam/filtersets.py:1136 +#: ipam/filtersets.py:1136 msgid "IP address (ID)" msgstr "IP 地址 (ID)" -#: netbox/ipam/filtersets.py:1142 netbox/ipam/models/ip.py:788 +#: ipam/filtersets.py:1142 ipam/models/ip.py:788 msgid "IP address" msgstr "IP 地址" -#: netbox/ipam/filtersets.py:1167 +#: ipam/filtersets.py:1167 msgid "Primary IPv4 (ID)" msgstr "首选 IPv4(ID)" -#: netbox/ipam/filtersets.py:1172 +#: ipam/filtersets.py:1172 msgid "Primary IPv6 (ID)" msgstr "首选IPv6(ID)" -#: netbox/ipam/formfields.py:14 +#: ipam/formfields.py:14 msgid "Enter a valid IPv4 or IPv6 address (without a mask)." msgstr "输入有效的 IPv4 或 IPv6 地址(不带掩码)。" -#: netbox/ipam/formfields.py:32 +#: ipam/formfields.py:32 #, python-brace-format msgid "Invalid IPv4/IPv6 address format: {address}" msgstr "IPv4/IPv6 地址格式无效:{address}" -#: netbox/ipam/formfields.py:37 +#: ipam/formfields.py:37 msgid "This field requires an IP address without a mask." msgstr "该字段需要一个不带掩码的 IP 地址。" -#: netbox/ipam/formfields.py:39 netbox/ipam/formfields.py:61 +#: ipam/formfields.py:39 ipam/formfields.py:61 msgid "Please specify a valid IPv4 or IPv6 address." msgstr "请指定有效的 IPv4 或 IPv6 地址。" -#: netbox/ipam/formfields.py:44 +#: ipam/formfields.py:44 msgid "Enter a valid IPv4 or IPv6 address (with CIDR mask)." msgstr "输入有效的 IPv4 或 IPv6 地址(带有 CIDR 掩码)。" -#: netbox/ipam/formfields.py:56 +#: ipam/formfields.py:56 msgid "CIDR mask (e.g. /24) is required." msgstr "需要 CIDR 掩码(例如/24)" -#: netbox/ipam/forms/bulk_create.py:13 +#: ipam/forms/bulk_create.py:13 msgid "Address pattern" msgstr "地址模式" -#: netbox/ipam/forms/bulk_edit.py:49 +#: ipam/forms/bulk_edit.py:50 msgid "Enforce unique space" msgstr "强制使用唯一空间" -#: netbox/ipam/forms/bulk_edit.py:87 +#: ipam/forms/bulk_edit.py:88 msgid "Is private" msgstr "私有的" -#: netbox/ipam/forms/bulk_edit.py:108 netbox/ipam/forms/bulk_edit.py:137 -#: netbox/ipam/forms/bulk_edit.py:162 netbox/ipam/forms/bulk_import.py:89 -#: netbox/ipam/forms/bulk_import.py:109 netbox/ipam/forms/bulk_import.py:129 -#: netbox/ipam/forms/filtersets.py:110 netbox/ipam/forms/filtersets.py:125 -#: netbox/ipam/forms/filtersets.py:148 netbox/ipam/forms/model_forms.py:96 -#: netbox/ipam/forms/model_forms.py:109 netbox/ipam/forms/model_forms.py:131 -#: netbox/ipam/forms/model_forms.py:149 netbox/ipam/models/asns.py:31 -#: netbox/ipam/models/asns.py:103 netbox/ipam/models/ip.py:71 -#: netbox/ipam/models/ip.py:90 netbox/ipam/tables/asn.py:20 -#: netbox/ipam/tables/asn.py:45 netbox/templates/ipam/aggregate.html:18 -#: netbox/templates/ipam/asn.html:27 netbox/templates/ipam/asnrange.html:19 -#: netbox/templates/ipam/rir.html:19 +#: ipam/forms/bulk_edit.py:109 ipam/forms/bulk_edit.py:138 +#: ipam/forms/bulk_edit.py:163 ipam/forms/bulk_import.py:89 +#: ipam/forms/bulk_import.py:109 ipam/forms/bulk_import.py:129 +#: ipam/forms/filtersets.py:110 ipam/forms/filtersets.py:125 +#: ipam/forms/filtersets.py:148 ipam/forms/model_forms.py:96 +#: ipam/forms/model_forms.py:109 ipam/forms/model_forms.py:131 +#: ipam/forms/model_forms.py:149 ipam/models/asns.py:31 +#: ipam/models/asns.py:103 ipam/models/ip.py:71 ipam/models/ip.py:90 +#: ipam/tables/asn.py:20 ipam/tables/asn.py:45 +#: templates/ipam/aggregate.html:18 templates/ipam/asn.html:27 +#: templates/ipam/asnrange.html:19 templates/ipam/rir.html:19 msgid "RIR" msgstr "区域互联网注册管理机构" -#: netbox/ipam/forms/bulk_edit.py:170 +#: ipam/forms/bulk_edit.py:171 msgid "Date added" msgstr "添加日期" -#: netbox/ipam/forms/bulk_edit.py:228 netbox/ipam/forms/model_forms.py:586 -#: netbox/ipam/forms/model_forms.py:633 netbox/ipam/tables/ip.py:251 -#: netbox/templates/ipam/vlan_edit.html:37 -#: netbox/templates/ipam/vlangroup.html:27 +#: ipam/forms/bulk_edit.py:229 ipam/forms/model_forms.py:586 +#: ipam/forms/model_forms.py:633 ipam/tables/ip.py:251 +#: templates/ipam/vlan_edit.html:37 templates/ipam/vlangroup.html:27 msgid "VLAN Group" msgstr "VLAN组" -#: netbox/ipam/forms/bulk_edit.py:233 netbox/ipam/forms/bulk_import.py:185 -#: netbox/ipam/forms/filtersets.py:256 netbox/ipam/forms/model_forms.py:218 -#: netbox/ipam/models/vlans.py:234 netbox/ipam/tables/ip.py:255 -#: netbox/templates/ipam/prefix.html:60 netbox/templates/ipam/vlan.html:12 -#: netbox/templates/ipam/vlan/base.html:6 -#: netbox/templates/ipam/vlan_edit.html:10 -#: netbox/templates/wireless/wirelesslan.html:30 -#: netbox/vpn/forms/bulk_import.py:304 netbox/vpn/forms/filtersets.py:284 -#: netbox/vpn/forms/model_forms.py:433 netbox/vpn/forms/model_forms.py:452 -#: netbox/wireless/forms/bulk_edit.py:55 -#: netbox/wireless/forms/bulk_import.py:48 -#: netbox/wireless/forms/model_forms.py:48 netbox/wireless/models.py:102 +#: ipam/forms/bulk_edit.py:234 ipam/forms/bulk_import.py:185 +#: ipam/forms/filtersets.py:256 ipam/forms/model_forms.py:218 +#: ipam/models/vlans.py:234 ipam/tables/ip.py:255 +#: templates/ipam/prefix.html:60 templates/ipam/vlan.html:12 +#: templates/ipam/vlan/base.html:6 templates/ipam/vlan_edit.html:10 +#: templates/wireless/wirelesslan.html:30 vpn/forms/bulk_import.py:304 +#: vpn/forms/filtersets.py:284 vpn/forms/model_forms.py:433 +#: vpn/forms/model_forms.py:452 wireless/forms/bulk_edit.py:55 +#: wireless/forms/bulk_import.py:48 wireless/forms/model_forms.py:48 +#: wireless/models.py:102 msgid "VLAN" msgstr "VLAN" -#: netbox/ipam/forms/bulk_edit.py:244 +#: ipam/forms/bulk_edit.py:245 msgid "Prefix length" msgstr "前缀长度" -#: netbox/ipam/forms/bulk_edit.py:267 netbox/ipam/forms/filtersets.py:241 -#: netbox/templates/ipam/prefix.html:85 +#: ipam/forms/bulk_edit.py:268 ipam/forms/filtersets.py:241 +#: templates/ipam/prefix.html:85 msgid "Is a pool" msgstr "是一个池" -#: netbox/ipam/forms/bulk_edit.py:272 netbox/ipam/forms/bulk_edit.py:317 -#: netbox/ipam/forms/filtersets.py:248 netbox/ipam/forms/filtersets.py:293 -#: netbox/ipam/models/ip.py:272 netbox/ipam/models/ip.py:539 +#: ipam/forms/bulk_edit.py:273 ipam/forms/bulk_edit.py:318 +#: ipam/forms/filtersets.py:248 ipam/forms/filtersets.py:293 +#: ipam/models/ip.py:272 ipam/models/ip.py:539 msgid "Treat as fully utilized" msgstr "设置为已被全部占用" -#: netbox/ipam/forms/bulk_edit.py:286 netbox/ipam/forms/filtersets.py:171 +#: ipam/forms/bulk_edit.py:287 ipam/forms/filtersets.py:171 msgid "VLAN Assignment" msgstr "VLAN 分配" -#: netbox/ipam/forms/bulk_edit.py:365 netbox/ipam/models/ip.py:772 +#: ipam/forms/bulk_edit.py:366 ipam/models/ip.py:772 msgid "DNS name" msgstr "DNS 名称" -#: netbox/ipam/forms/bulk_edit.py:386 netbox/ipam/forms/bulk_edit.py:579 -#: netbox/ipam/forms/bulk_import.py:394 netbox/ipam/forms/bulk_import.py:469 -#: netbox/ipam/forms/bulk_import.py:495 netbox/ipam/forms/filtersets.py:390 -#: netbox/ipam/forms/filtersets.py:530 netbox/templates/ipam/fhrpgroup.html:22 -#: netbox/templates/ipam/inc/panels/fhrp_groups.html:24 -#: netbox/templates/ipam/service.html:32 -#: netbox/templates/ipam/servicetemplate.html:19 +#: ipam/forms/bulk_edit.py:387 ipam/forms/bulk_edit.py:534 +#: ipam/forms/bulk_import.py:394 ipam/forms/bulk_import.py:469 +#: ipam/forms/bulk_import.py:495 ipam/forms/filtersets.py:390 +#: ipam/forms/filtersets.py:530 templates/ipam/fhrpgroup.html:22 +#: templates/ipam/inc/panels/fhrp_groups.html:24 +#: templates/ipam/service.html:32 templates/ipam/servicetemplate.html:19 msgid "Protocol" msgstr "协议" -#: netbox/ipam/forms/bulk_edit.py:393 netbox/ipam/forms/filtersets.py:397 -#: netbox/ipam/tables/fhrp.py:22 netbox/templates/ipam/fhrpgroup.html:26 +#: ipam/forms/bulk_edit.py:394 ipam/forms/filtersets.py:397 +#: ipam/tables/fhrp.py:22 templates/ipam/fhrpgroup.html:26 msgid "Group ID" msgstr "组 ID" -#: netbox/ipam/forms/bulk_edit.py:398 netbox/ipam/forms/filtersets.py:402 -#: netbox/wireless/forms/bulk_edit.py:68 -#: netbox/wireless/forms/bulk_edit.py:115 -#: netbox/wireless/forms/bulk_import.py:62 -#: netbox/wireless/forms/bulk_import.py:65 -#: netbox/wireless/forms/bulk_import.py:104 -#: netbox/wireless/forms/bulk_import.py:107 -#: netbox/wireless/forms/filtersets.py:54 -#: netbox/wireless/forms/filtersets.py:88 +#: ipam/forms/bulk_edit.py:399 ipam/forms/filtersets.py:402 +#: wireless/forms/bulk_edit.py:68 wireless/forms/bulk_edit.py:115 +#: wireless/forms/bulk_import.py:62 wireless/forms/bulk_import.py:65 +#: wireless/forms/bulk_import.py:104 wireless/forms/bulk_import.py:107 +#: wireless/forms/filtersets.py:54 wireless/forms/filtersets.py:88 msgid "Authentication type" msgstr "认证类型" -#: netbox/ipam/forms/bulk_edit.py:403 netbox/ipam/forms/filtersets.py:406 +#: ipam/forms/bulk_edit.py:404 ipam/forms/filtersets.py:406 msgid "Authentication key" msgstr "认证秘钥" -#: netbox/ipam/forms/bulk_edit.py:420 netbox/ipam/forms/filtersets.py:383 -#: netbox/ipam/forms/model_forms.py:474 netbox/netbox/navigation/menu.py:386 -#: netbox/templates/ipam/fhrpgroup.html:49 -#: netbox/templates/wireless/inc/authentication_attrs.html:5 -#: netbox/wireless/forms/bulk_edit.py:91 -#: netbox/wireless/forms/bulk_edit.py:149 -#: netbox/wireless/forms/filtersets.py:36 -#: netbox/wireless/forms/filtersets.py:76 -#: netbox/wireless/forms/model_forms.py:55 -#: netbox/wireless/forms/model_forms.py:171 +#: ipam/forms/bulk_edit.py:421 ipam/forms/filtersets.py:383 +#: ipam/forms/model_forms.py:474 netbox/navigation/menu.py:386 +#: templates/ipam/fhrpgroup.html:49 +#: templates/wireless/inc/authentication_attrs.html:5 +#: wireless/forms/bulk_edit.py:91 wireless/forms/bulk_edit.py:149 +#: wireless/forms/filtersets.py:36 wireless/forms/filtersets.py:76 +#: wireless/forms/model_forms.py:55 wireless/forms/model_forms.py:171 msgid "Authentication" msgstr "身份验证" -#: netbox/ipam/forms/bulk_edit.py:432 netbox/ipam/forms/model_forms.py:575 +#: ipam/forms/bulk_edit.py:436 ipam/forms/model_forms.py:575 msgid "Scope type" msgstr "作用域类型" -#: netbox/ipam/forms/bulk_edit.py:490 netbox/ipam/models/vlans.py:60 -msgid "VLAN ID ranges" -msgstr "VLAN ID 范围" - -#: netbox/ipam/forms/bulk_edit.py:498 netbox/ipam/forms/model_forms.py:578 -#: netbox/ipam/forms/model_forms.py:588 netbox/ipam/tables/vlans.py:71 -#: netbox/templates/ipam/vlangroup.html:38 +#: ipam/forms/bulk_edit.py:439 ipam/forms/bulk_edit.py:453 +#: ipam/forms/model_forms.py:578 ipam/forms/model_forms.py:588 +#: ipam/tables/vlans.py:71 templates/ipam/vlangroup.html:38 msgid "Scope" msgstr "作用域" -#: netbox/ipam/forms/bulk_edit.py:570 +#: ipam/forms/bulk_edit.py:446 ipam/models/vlans.py:60 +msgid "VLAN ID ranges" +msgstr "VLAN ID 范围" + +#: ipam/forms/bulk_edit.py:525 msgid "Site & Group" msgstr "站点 & 组" -#: netbox/ipam/forms/bulk_edit.py:584 netbox/ipam/forms/model_forms.py:659 -#: netbox/ipam/forms/model_forms.py:691 netbox/ipam/tables/services.py:19 -#: netbox/ipam/tables/services.py:49 netbox/templates/ipam/service.html:36 -#: netbox/templates/ipam/servicetemplate.html:23 +#: ipam/forms/bulk_edit.py:539 ipam/forms/model_forms.py:659 +#: ipam/forms/model_forms.py:691 ipam/tables/services.py:19 +#: ipam/tables/services.py:49 templates/ipam/service.html:36 +#: templates/ipam/servicetemplate.html:23 msgid "Ports" msgstr "端口" -#: netbox/ipam/forms/bulk_import.py:48 +#: ipam/forms/bulk_import.py:48 msgid "Import route targets" msgstr "导入的 Route Targets" -#: netbox/ipam/forms/bulk_import.py:54 +#: ipam/forms/bulk_import.py:54 msgid "Export route targets" msgstr "导出的Route Targets" -#: netbox/ipam/forms/bulk_import.py:92 netbox/ipam/forms/bulk_import.py:112 -#: netbox/ipam/forms/bulk_import.py:132 +#: ipam/forms/bulk_import.py:92 ipam/forms/bulk_import.py:112 +#: ipam/forms/bulk_import.py:132 msgid "Assigned RIR" msgstr "指定的 RIR" -#: netbox/ipam/forms/bulk_import.py:182 +#: ipam/forms/bulk_import.py:182 msgid "VLAN's group (if any)" msgstr "VLAN 组(若存在)" -#: netbox/ipam/forms/bulk_import.py:308 +#: ipam/forms/bulk_import.py:308 msgid "Parent device of assigned interface (if any)" msgstr "指定接口的父设备(如果有)" -#: netbox/ipam/forms/bulk_import.py:311 netbox/ipam/forms/bulk_import.py:488 -#: netbox/ipam/forms/model_forms.py:685 -#: netbox/virtualization/filtersets.py:288 -#: netbox/virtualization/filtersets.py:327 -#: netbox/virtualization/forms/bulk_edit.py:200 -#: netbox/virtualization/forms/bulk_edit.py:326 -#: netbox/virtualization/forms/bulk_import.py:146 -#: netbox/virtualization/forms/bulk_import.py:207 -#: netbox/virtualization/forms/filtersets.py:212 -#: netbox/virtualization/forms/filtersets.py:248 -#: netbox/virtualization/forms/model_forms.py:288 -#: netbox/vpn/forms/bulk_import.py:93 netbox/vpn/forms/bulk_import.py:290 +#: ipam/forms/bulk_import.py:311 ipam/forms/bulk_import.py:488 +#: ipam/forms/model_forms.py:685 virtualization/filtersets.py:288 +#: virtualization/filtersets.py:327 virtualization/forms/bulk_edit.py:200 +#: virtualization/forms/bulk_edit.py:326 +#: virtualization/forms/bulk_import.py:146 +#: virtualization/forms/bulk_import.py:207 +#: virtualization/forms/filtersets.py:212 +#: virtualization/forms/filtersets.py:248 +#: virtualization/forms/model_forms.py:288 vpn/forms/bulk_import.py:93 +#: vpn/forms/bulk_import.py:290 msgid "Virtual machine" msgstr "虚拟机" -#: netbox/ipam/forms/bulk_import.py:315 +#: ipam/forms/bulk_import.py:315 msgid "Parent VM of assigned interface (if any)" msgstr "指定接口的父虚拟机(如果有)" -#: netbox/ipam/forms/bulk_import.py:325 +#: ipam/forms/bulk_import.py:325 msgid "Is primary" msgstr "首选" -#: netbox/ipam/forms/bulk_import.py:326 +#: ipam/forms/bulk_import.py:326 msgid "Make this the primary IP for the assigned device" msgstr "设置为设备的首选 IP" -#: netbox/ipam/forms/bulk_import.py:365 +#: ipam/forms/bulk_import.py:365 msgid "No device or virtual machine specified; cannot set as primary IP" msgstr "未指定设备或虚拟机;无法设置为首选 IP" -#: netbox/ipam/forms/bulk_import.py:369 +#: ipam/forms/bulk_import.py:369 msgid "No interface specified; cannot set as primary IP" msgstr "未指定接口;无法设置为首选 IP" -#: netbox/ipam/forms/bulk_import.py:398 +#: ipam/forms/bulk_import.py:398 msgid "Auth type" msgstr "认证类型" -#: netbox/ipam/forms/bulk_import.py:413 +#: ipam/forms/bulk_import.py:413 msgid "Scope type (app & model)" msgstr "作用域类型(应用程序&型号)" -#: netbox/ipam/forms/bulk_import.py:440 +#: ipam/forms/bulk_import.py:440 msgid "Assigned VLAN group" msgstr "分配的VLAN组" -#: netbox/ipam/forms/bulk_import.py:471 netbox/ipam/forms/bulk_import.py:497 +#: ipam/forms/bulk_import.py:471 ipam/forms/bulk_import.py:497 msgid "IP protocol" msgstr "IP 协议" -#: netbox/ipam/forms/bulk_import.py:485 +#: ipam/forms/bulk_import.py:485 msgid "Required if not assigned to a VM" msgstr "如果未分配给虚拟机,则为必需" -#: netbox/ipam/forms/bulk_import.py:492 +#: ipam/forms/bulk_import.py:492 msgid "Required if not assigned to a device" msgstr "如果未分配给设备,则为必需" -#: netbox/ipam/forms/bulk_import.py:517 +#: ipam/forms/bulk_import.py:517 #, python-brace-format msgid "{ip} is not assigned to this device/VM." msgstr "{ip} 未分配给此设备/虚拟机。" -#: netbox/ipam/forms/filtersets.py:47 netbox/ipam/forms/model_forms.py:63 -#: netbox/netbox/navigation/menu.py:189 netbox/vpn/forms/model_forms.py:410 +#: ipam/forms/filtersets.py:47 ipam/forms/model_forms.py:63 +#: netbox/navigation/menu.py:189 vpn/forms/model_forms.py:410 msgid "Route Targets" msgstr "Route Targets" -#: netbox/ipam/forms/filtersets.py:53 netbox/ipam/forms/model_forms.py:50 -#: netbox/vpn/forms/filtersets.py:224 netbox/vpn/forms/model_forms.py:397 +#: ipam/forms/filtersets.py:53 ipam/forms/model_forms.py:50 +#: vpn/forms/filtersets.py:224 vpn/forms/model_forms.py:397 msgid "Import targets" msgstr "导入 target" -#: netbox/ipam/forms/filtersets.py:58 netbox/ipam/forms/model_forms.py:55 -#: netbox/vpn/forms/filtersets.py:229 netbox/vpn/forms/model_forms.py:402 +#: ipam/forms/filtersets.py:58 ipam/forms/model_forms.py:55 +#: vpn/forms/filtersets.py:229 vpn/forms/model_forms.py:402 msgid "Export targets" msgstr "导出 target" -#: netbox/ipam/forms/filtersets.py:73 +#: ipam/forms/filtersets.py:73 msgid "Imported by VRF" msgstr "由VRF引入" -#: netbox/ipam/forms/filtersets.py:78 +#: ipam/forms/filtersets.py:78 msgid "Exported by VRF" msgstr "由VRF输出" -#: netbox/ipam/forms/filtersets.py:87 netbox/ipam/tables/ip.py:89 -#: netbox/templates/ipam/rir.html:30 +#: ipam/forms/filtersets.py:87 ipam/tables/ip.py:89 templates/ipam/rir.html:30 msgid "Private" msgstr "私有的" -#: netbox/ipam/forms/filtersets.py:105 netbox/ipam/forms/filtersets.py:191 -#: netbox/ipam/forms/filtersets.py:272 netbox/ipam/forms/filtersets.py:326 +#: ipam/forms/filtersets.py:105 ipam/forms/filtersets.py:191 +#: ipam/forms/filtersets.py:272 ipam/forms/filtersets.py:326 msgid "Address family" msgstr "地址类型" -#: netbox/ipam/forms/filtersets.py:119 netbox/templates/ipam/asnrange.html:25 +#: ipam/forms/filtersets.py:119 templates/ipam/asnrange.html:25 msgid "Range" msgstr "范围" -#: netbox/ipam/forms/filtersets.py:128 +#: ipam/forms/filtersets.py:128 msgid "Start" msgstr "开始" -#: netbox/ipam/forms/filtersets.py:132 +#: ipam/forms/filtersets.py:132 msgid "End" msgstr "结束" -#: netbox/ipam/forms/filtersets.py:186 +#: ipam/forms/filtersets.py:186 msgid "Search within" msgstr "在此前缀内查找" -#: netbox/ipam/forms/filtersets.py:207 netbox/ipam/forms/filtersets.py:342 +#: ipam/forms/filtersets.py:207 ipam/forms/filtersets.py:342 msgid "Present in VRF" msgstr "存在于VRF中" -#: netbox/ipam/forms/filtersets.py:311 +#: ipam/forms/filtersets.py:311 msgid "Device/VM" msgstr "设备/虚拟机" -#: netbox/ipam/forms/filtersets.py:321 +#: ipam/forms/filtersets.py:321 msgid "Parent Prefix" msgstr "上级IP前缀" -#: netbox/ipam/forms/filtersets.py:347 +#: ipam/forms/filtersets.py:347 msgid "Assigned Device" msgstr "指定设备" -#: netbox/ipam/forms/filtersets.py:352 +#: ipam/forms/filtersets.py:352 msgid "Assigned VM" msgstr "指定虚拟机" -#: netbox/ipam/forms/filtersets.py:366 +#: ipam/forms/filtersets.py:366 msgid "Assigned to an interface" msgstr "指定给一个接口" -#: netbox/ipam/forms/filtersets.py:373 netbox/templates/ipam/ipaddress.html:51 +#: ipam/forms/filtersets.py:373 templates/ipam/ipaddress.html:51 msgid "DNS Name" msgstr "DNS名称" -#: netbox/ipam/forms/filtersets.py:416 netbox/ipam/models/vlans.py:235 -#: netbox/ipam/tables/ip.py:176 netbox/ipam/tables/vlans.py:82 -#: netbox/ipam/views.py:971 netbox/netbox/navigation/menu.py:193 -#: netbox/netbox/navigation/menu.py:195 +#: ipam/forms/filtersets.py:416 ipam/models/vlans.py:235 ipam/tables/ip.py:176 +#: ipam/tables/vlans.py:82 ipam/views.py:971 netbox/navigation/menu.py:193 +#: netbox/navigation/menu.py:195 msgid "VLANs" msgstr "VLANs" -#: netbox/ipam/forms/filtersets.py:457 +#: ipam/forms/filtersets.py:457 msgid "Contains VLAN ID" msgstr "包含 VLAN ID" -#: netbox/ipam/forms/filtersets.py:513 netbox/ipam/models/vlans.py:176 -#: netbox/templates/ipam/vlan.html:31 +#: ipam/forms/filtersets.py:513 ipam/models/vlans.py:176 +#: templates/ipam/vlan.html:31 msgid "VLAN ID" msgstr "VLAN ID" -#: netbox/ipam/forms/filtersets.py:556 netbox/ipam/forms/model_forms.py:320 -#: netbox/ipam/forms/model_forms.py:713 netbox/ipam/forms/model_forms.py:739 -#: netbox/ipam/tables/vlans.py:195 -#: netbox/templates/virtualization/virtualdisk.html:21 -#: netbox/templates/virtualization/virtualmachine.html:12 -#: netbox/templates/virtualization/vminterface.html:21 -#: netbox/templates/vpn/tunneltermination.html:25 -#: netbox/virtualization/forms/filtersets.py:197 -#: netbox/virtualization/forms/filtersets.py:242 -#: netbox/virtualization/forms/model_forms.py:220 -#: netbox/virtualization/tables/virtualmachines.py:135 -#: netbox/virtualization/tables/virtualmachines.py:190 -#: netbox/vpn/choices.py:45 netbox/vpn/forms/filtersets.py:293 -#: netbox/vpn/forms/model_forms.py:160 netbox/vpn/forms/model_forms.py:171 -#: netbox/vpn/forms/model_forms.py:273 netbox/vpn/forms/model_forms.py:454 +#: ipam/forms/filtersets.py:556 ipam/forms/model_forms.py:320 +#: ipam/forms/model_forms.py:713 ipam/forms/model_forms.py:739 +#: ipam/tables/vlans.py:195 templates/virtualization/virtualdisk.html:21 +#: templates/virtualization/virtualmachine.html:12 +#: templates/virtualization/vminterface.html:21 +#: templates/vpn/tunneltermination.html:25 +#: virtualization/forms/filtersets.py:197 +#: virtualization/forms/filtersets.py:242 +#: virtualization/forms/model_forms.py:220 +#: virtualization/tables/virtualmachines.py:135 +#: virtualization/tables/virtualmachines.py:190 vpn/choices.py:45 +#: vpn/forms/filtersets.py:293 vpn/forms/model_forms.py:160 +#: vpn/forms/model_forms.py:171 vpn/forms/model_forms.py:273 +#: vpn/forms/model_forms.py:454 msgid "Virtual Machine" msgstr "虚拟机" -#: netbox/ipam/forms/model_forms.py:80 -#: netbox/templates/ipam/routetarget.html:10 +#: ipam/forms/model_forms.py:80 templates/ipam/routetarget.html:10 msgid "Route Target" msgstr "路由目标" -#: netbox/ipam/forms/model_forms.py:114 netbox/ipam/tables/ip.py:117 -#: netbox/templates/ipam/aggregate.html:11 -#: netbox/templates/ipam/prefix.html:38 +#: ipam/forms/model_forms.py:114 ipam/tables/ip.py:117 +#: templates/ipam/aggregate.html:11 templates/ipam/prefix.html:38 msgid "Aggregate" msgstr "聚合IP" -#: netbox/ipam/forms/model_forms.py:135 netbox/templates/ipam/asnrange.html:12 +#: ipam/forms/model_forms.py:135 templates/ipam/asnrange.html:12 msgid "ASN Range" msgstr "ASN范围" -#: netbox/ipam/forms/model_forms.py:231 +#: ipam/forms/model_forms.py:231 msgid "Site/VLAN Assignment" msgstr "Site/VLAN 分配" -#: netbox/ipam/forms/model_forms.py:259 netbox/templates/ipam/iprange.html:10 +#: ipam/forms/model_forms.py:259 templates/ipam/iprange.html:10 msgid "IP Range" msgstr "IP范围" -#: netbox/ipam/forms/model_forms.py:295 netbox/ipam/forms/model_forms.py:321 -#: netbox/ipam/forms/model_forms.py:473 -#: netbox/templates/ipam/fhrpgroup.html:19 +#: ipam/forms/model_forms.py:295 ipam/forms/model_forms.py:321 +#: ipam/forms/model_forms.py:473 templates/ipam/fhrpgroup.html:19 msgid "FHRP Group" msgstr "FHRP组" -#: netbox/ipam/forms/model_forms.py:310 +#: ipam/forms/model_forms.py:310 msgid "Make this the primary IP for the device/VM" msgstr "将此IP设置为分配设备/虚拟机的首选 IP" -#: netbox/ipam/forms/model_forms.py:325 +#: ipam/forms/model_forms.py:325 msgid "NAT IP (Inside)" msgstr "NAT IP(内部)地址" -#: netbox/ipam/forms/model_forms.py:384 +#: ipam/forms/model_forms.py:384 msgid "An IP address can only be assigned to a single object." msgstr "IP 地址只能分配给单个对象。" -#: netbox/ipam/forms/model_forms.py:390 netbox/ipam/models/ip.py:897 +#: ipam/forms/model_forms.py:390 ipam/models/ip.py:897 msgid "" "Cannot reassign IP address while it is designated as the primary IP for the " "parent object" msgstr "当 IP 地址被指定为父对象的首选 IP 时,无法重新分配 IP 地址" -#: netbox/ipam/forms/model_forms.py:400 +#: ipam/forms/model_forms.py:400 msgid "" "Only IP addresses assigned to an interface can be designated as primary IPs." msgstr "只有分配给接口的 IP 地址才能指定为首选 IP。" -#: netbox/ipam/forms/model_forms.py:475 +#: ipam/forms/model_forms.py:475 msgid "Virtual IP Address" msgstr "虚拟IP地址" -#: netbox/ipam/forms/model_forms.py:560 +#: ipam/forms/model_forms.py:560 msgid "Assignment already exists" msgstr "已被分配" -#: netbox/ipam/forms/model_forms.py:569 -#: netbox/templates/ipam/vlangroup.html:42 +#: ipam/forms/model_forms.py:569 templates/ipam/vlangroup.html:42 msgid "VLAN IDs" msgstr "VLAN ID" -#: netbox/ipam/forms/model_forms.py:587 +#: ipam/forms/model_forms.py:587 msgid "Child VLANs" msgstr "子类 VLANs" -#: netbox/ipam/forms/model_forms.py:664 netbox/ipam/forms/model_forms.py:696 +#: ipam/forms/model_forms.py:664 ipam/forms/model_forms.py:696 msgid "" "Comma-separated list of one or more port numbers. A range may be specified " "using a hyphen." msgstr "一个或多个端口号的列表,逗号分隔。可以使用连字符指定范围。" -#: netbox/ipam/forms/model_forms.py:669 -#: netbox/templates/ipam/servicetemplate.html:12 +#: ipam/forms/model_forms.py:669 templates/ipam/servicetemplate.html:12 msgid "Service Template" msgstr "服务模版" -#: netbox/ipam/forms/model_forms.py:716 +#: ipam/forms/model_forms.py:716 msgid "Port(s)" msgstr "端口" -#: netbox/ipam/forms/model_forms.py:717 netbox/ipam/forms/model_forms.py:745 -#: netbox/templates/ipam/service.html:21 +#: ipam/forms/model_forms.py:717 ipam/forms/model_forms.py:745 +#: templates/ipam/service.html:21 msgid "Service" msgstr "服务" -#: netbox/ipam/forms/model_forms.py:730 +#: ipam/forms/model_forms.py:730 msgid "Service template" msgstr "服务模版" -#: netbox/ipam/forms/model_forms.py:742 +#: ipam/forms/model_forms.py:742 msgid "From Template" msgstr "来自模版" -#: netbox/ipam/forms/model_forms.py:743 +#: ipam/forms/model_forms.py:743 msgid "Custom" msgstr "自定义" -#: netbox/ipam/forms/model_forms.py:773 +#: ipam/forms/model_forms.py:773 msgid "" "Must specify name, protocol, and port(s) if not using a service template." msgstr "如果不使用服务模板,则必须指定名称、协议和端口。" -#: netbox/ipam/models/asns.py:34 +#: ipam/models/asns.py:34 msgid "start" msgstr "开始" -#: netbox/ipam/models/asns.py:51 +#: ipam/models/asns.py:51 msgid "ASN range" msgstr "ASN范围" -#: netbox/ipam/models/asns.py:52 +#: ipam/models/asns.py:52 msgid "ASN ranges" msgstr "ASN范围" -#: netbox/ipam/models/asns.py:72 +#: ipam/models/asns.py:72 #, python-brace-format msgid "Starting ASN ({start}) must be lower than ending ASN ({end})." msgstr "开始的ASN ({start}) 必须低于结束的ASN({end})。" -#: netbox/ipam/models/asns.py:104 +#: ipam/models/asns.py:104 msgid "Regional Internet Registry responsible for this AS number space" msgstr "负责此AS号码的区域互联网注册处" -#: netbox/ipam/models/asns.py:109 +#: ipam/models/asns.py:109 msgid "16- or 32-bit autonomous system number" msgstr "16或32位自主系统编号" -#: netbox/ipam/models/fhrp.py:22 +#: ipam/models/fhrp.py:22 msgid "group ID" msgstr "组ID" -#: netbox/ipam/models/fhrp.py:30 netbox/ipam/models/services.py:22 +#: ipam/models/fhrp.py:30 ipam/models/services.py:22 msgid "protocol" msgstr "协议" -#: netbox/ipam/models/fhrp.py:38 netbox/wireless/models.py:28 +#: ipam/models/fhrp.py:38 wireless/models.py:28 msgid "authentication type" msgstr "认证类型" -#: netbox/ipam/models/fhrp.py:43 +#: ipam/models/fhrp.py:43 msgid "authentication key" msgstr "认证秘钥" -#: netbox/ipam/models/fhrp.py:56 +#: ipam/models/fhrp.py:56 msgid "FHRP group" msgstr "FHRP组" -#: netbox/ipam/models/fhrp.py:57 +#: ipam/models/fhrp.py:57 msgid "FHRP groups" msgstr "网关冗余协议组" -#: netbox/ipam/models/fhrp.py:113 +#: ipam/models/fhrp.py:113 msgid "FHRP group assignment" msgstr "指定FHRP组" -#: netbox/ipam/models/fhrp.py:114 +#: ipam/models/fhrp.py:114 msgid "FHRP group assignments" msgstr "指定FHRP组" -#: netbox/ipam/models/ip.py:65 +#: ipam/models/ip.py:65 msgid "private" msgstr "私有" -#: netbox/ipam/models/ip.py:66 +#: ipam/models/ip.py:66 msgid "IP space managed by this RIR is considered private" msgstr "由该RIR管理的IP地址空间被认为是私有的" -#: netbox/ipam/models/ip.py:72 netbox/netbox/navigation/menu.py:182 +#: ipam/models/ip.py:72 netbox/navigation/menu.py:182 msgid "RIRs" msgstr "区域互联网注册管理机构" -#: netbox/ipam/models/ip.py:84 +#: ipam/models/ip.py:84 msgid "IPv4 or IPv6 network" msgstr "IPv4或IPv6网络" -#: netbox/ipam/models/ip.py:91 +#: ipam/models/ip.py:91 msgid "Regional Internet Registry responsible for this IP space" msgstr "负责此IP地址空间的区域互联网注册管理机构" -#: netbox/ipam/models/ip.py:101 +#: ipam/models/ip.py:101 msgid "date added" msgstr "添加日期" -#: netbox/ipam/models/ip.py:115 +#: ipam/models/ip.py:115 msgid "aggregate" msgstr "聚合" -#: netbox/ipam/models/ip.py:116 +#: ipam/models/ip.py:116 msgid "aggregates" msgstr "聚合" -#: netbox/ipam/models/ip.py:132 +#: ipam/models/ip.py:132 msgid "Cannot create aggregate with /0 mask." msgstr "无法使用/0掩码创建聚合IP。" -#: netbox/ipam/models/ip.py:144 +#: ipam/models/ip.py:144 #, python-brace-format msgid "" "Aggregates cannot overlap. {prefix} is already covered by an existing " "aggregate ({aggregate})." msgstr "聚合不能重叠。{prefix}已被现有聚合({aggregate})包含。" -#: netbox/ipam/models/ip.py:158 +#: ipam/models/ip.py:158 #, python-brace-format msgid "" "Prefixes cannot overlap aggregates. {prefix} covers an existing aggregate " "({aggregate})." msgstr "前缀不能与聚合重叠。{prefix} 包含现有聚合({aggregate})。" -#: netbox/ipam/models/ip.py:200 netbox/ipam/models/ip.py:737 -#: netbox/vpn/models/tunnels.py:114 +#: ipam/models/ip.py:200 ipam/models/ip.py:737 vpn/models/tunnels.py:114 msgid "role" msgstr "角色" -#: netbox/ipam/models/ip.py:201 +#: ipam/models/ip.py:201 msgid "roles" msgstr "角色" -#: netbox/ipam/models/ip.py:217 netbox/ipam/models/ip.py:293 +#: ipam/models/ip.py:217 ipam/models/ip.py:293 msgid "prefix" msgstr "前缀" -#: netbox/ipam/models/ip.py:218 +#: ipam/models/ip.py:218 msgid "IPv4 or IPv6 network with mask" msgstr "带掩码的IPv4或IPv6网络" -#: netbox/ipam/models/ip.py:254 +#: ipam/models/ip.py:254 msgid "Operational status of this prefix" msgstr "此前缀的操作状态" -#: netbox/ipam/models/ip.py:262 +#: ipam/models/ip.py:262 msgid "The primary function of this prefix" msgstr "此前缀的主要功能" -#: netbox/ipam/models/ip.py:265 +#: ipam/models/ip.py:265 msgid "is a pool" msgstr "地址池" -#: netbox/ipam/models/ip.py:267 +#: ipam/models/ip.py:267 msgid "All IP addresses within this prefix are considered usable" msgstr "此前缀内的所有IP地址都可用" -#: netbox/ipam/models/ip.py:270 netbox/ipam/models/ip.py:537 +#: ipam/models/ip.py:270 ipam/models/ip.py:537 msgid "mark utilized" msgstr "使用标记" -#: netbox/ipam/models/ip.py:294 +#: ipam/models/ip.py:294 msgid "prefixes" msgstr "前缀" -#: netbox/ipam/models/ip.py:317 +#: ipam/models/ip.py:317 msgid "Cannot create prefix with /0 mask." msgstr "无法创建/0掩码的IP地址前缀。" -#: netbox/ipam/models/ip.py:324 netbox/ipam/models/ip.py:874 +#: ipam/models/ip.py:324 ipam/models/ip.py:874 #, python-brace-format msgid "VRF {vrf}" msgstr "VRF {vrf}" -#: netbox/ipam/models/ip.py:324 netbox/ipam/models/ip.py:874 +#: ipam/models/ip.py:324 ipam/models/ip.py:874 msgid "global table" msgstr "全局表" -#: netbox/ipam/models/ip.py:326 +#: ipam/models/ip.py:326 #, python-brace-format msgid "Duplicate prefix found in {table}: {prefix}" msgstr "在{table}中发现重复的前缀: {prefix}" -#: netbox/ipam/models/ip.py:495 +#: ipam/models/ip.py:495 msgid "start address" msgstr "起始地址" -#: netbox/ipam/models/ip.py:496 netbox/ipam/models/ip.py:500 -#: netbox/ipam/models/ip.py:712 +#: ipam/models/ip.py:496 ipam/models/ip.py:500 ipam/models/ip.py:712 msgid "IPv4 or IPv6 address (with mask)" msgstr "IPv4 或 IPv6 地址(带掩码)" -#: netbox/ipam/models/ip.py:499 +#: ipam/models/ip.py:499 msgid "end address" msgstr "结束地址" -#: netbox/ipam/models/ip.py:526 +#: ipam/models/ip.py:526 msgid "Operational status of this range" msgstr "此IP范围的操作状态" -#: netbox/ipam/models/ip.py:534 +#: ipam/models/ip.py:534 msgid "The primary function of this range" msgstr "此IP范围的主要功能" -#: netbox/ipam/models/ip.py:548 +#: ipam/models/ip.py:548 msgid "IP range" msgstr "IP范围" -#: netbox/ipam/models/ip.py:549 +#: ipam/models/ip.py:549 msgid "IP ranges" msgstr "IP范围" -#: netbox/ipam/models/ip.py:565 +#: ipam/models/ip.py:565 msgid "Starting and ending IP address versions must match" msgstr "起始和结束IP地址的版本必须一致" -#: netbox/ipam/models/ip.py:571 +#: ipam/models/ip.py:571 msgid "Starting and ending IP address masks must match" msgstr "起始和结束IP地址的掩码必须一致" -#: netbox/ipam/models/ip.py:578 +#: ipam/models/ip.py:578 #, python-brace-format msgid "" "Ending address must be greater than the starting address ({start_address})" msgstr "结束地址必须大于起始地址 ({start_address})" -#: netbox/ipam/models/ip.py:590 +#: ipam/models/ip.py:590 #, python-brace-format msgid "Defined addresses overlap with range {overlapping_range} in VRF {vrf}" msgstr "定义的地址与 VRF {vrf} 中的范围 {overlapping_range} 重叠" -#: netbox/ipam/models/ip.py:599 +#: ipam/models/ip.py:599 #, python-brace-format msgid "Defined range exceeds maximum supported size ({max_size})" msgstr "定义的范围超过了支持的最大大小 ({max_size})" -#: netbox/ipam/models/ip.py:711 netbox/tenancy/models/contacts.py:82 +#: ipam/models/ip.py:711 tenancy/models/contacts.py:82 msgid "address" msgstr "地址" -#: netbox/ipam/models/ip.py:734 +#: ipam/models/ip.py:734 msgid "The operational status of this IP" msgstr "此IP的运行状态" -#: netbox/ipam/models/ip.py:741 +#: ipam/models/ip.py:741 msgid "The functional role of this IP" msgstr "此IP的功能作用" -#: netbox/ipam/models/ip.py:765 netbox/templates/ipam/ipaddress.html:72 +#: ipam/models/ip.py:765 templates/ipam/ipaddress.html:72 msgid "NAT (inside)" msgstr "NAT(内部 IP)" -#: netbox/ipam/models/ip.py:766 +#: ipam/models/ip.py:766 msgid "The IP for which this address is the \"outside\" IP" msgstr "此IP地址为外部IP" -#: netbox/ipam/models/ip.py:773 +#: ipam/models/ip.py:773 msgid "Hostname or FQDN (not case-sensitive)" msgstr "主机名或 FQDN(不区分大小写)" -#: netbox/ipam/models/ip.py:789 netbox/ipam/models/services.py:94 +#: ipam/models/ip.py:789 ipam/models/services.py:94 msgid "IP addresses" msgstr "IP地址" -#: netbox/ipam/models/ip.py:845 +#: ipam/models/ip.py:845 msgid "Cannot create IP address with /0 mask." msgstr "无法创建/0掩码的IP地址。" -#: netbox/ipam/models/ip.py:851 +#: ipam/models/ip.py:851 #, python-brace-format msgid "{ip} is a network ID, which may not be assigned to an interface." msgstr "{ip}是一个网络号,不能分配给接口。" -#: netbox/ipam/models/ip.py:862 +#: ipam/models/ip.py:862 #, python-brace-format msgid "" "{ip} is a broadcast address, which may not be assigned to an interface." msgstr "{ip}是一个广播地址,不能分配给接口。" -#: netbox/ipam/models/ip.py:876 +#: ipam/models/ip.py:876 #, python-brace-format msgid "Duplicate IP address found in {table}: {ipaddress}" msgstr "在 {table}中发现重复的IP地址: {ipaddress}" -#: netbox/ipam/models/ip.py:903 +#: ipam/models/ip.py:903 msgid "Only IPv6 addresses can be assigned SLAAC status" msgstr "只能为IPv6地址分配SLAAC状态" -#: netbox/ipam/models/services.py:33 +#: ipam/models/services.py:33 msgid "port numbers" msgstr "端口号" -#: netbox/ipam/models/services.py:59 +#: ipam/models/services.py:59 msgid "service template" msgstr "服务模版" -#: netbox/ipam/models/services.py:60 +#: ipam/models/services.py:60 msgid "service templates" msgstr "服务模板" -#: netbox/ipam/models/services.py:95 +#: ipam/models/services.py:95 msgid "The specific IP addresses (if any) to which this service is bound" msgstr "此服务绑定到的特定IP地址(如果有)" -#: netbox/ipam/models/services.py:102 +#: ipam/models/services.py:102 msgid "service" msgstr "服务" -#: netbox/ipam/models/services.py:103 +#: ipam/models/services.py:103 msgid "services" msgstr "服务" -#: netbox/ipam/models/services.py:117 +#: ipam/models/services.py:117 msgid "" "A service cannot be associated with both a device and a virtual machine." msgstr "服务不能同时与设备和虚拟机相关联。" -#: netbox/ipam/models/services.py:119 +#: ipam/models/services.py:119 msgid "" "A service must be associated with either a device or a virtual machine." msgstr "服务必须与设备或虚拟机相关联。" -#: netbox/ipam/models/vlans.py:85 +#: ipam/models/vlans.py:85 msgid "VLAN groups" msgstr "VLAN 组" -#: netbox/ipam/models/vlans.py:95 +#: ipam/models/vlans.py:95 msgid "Cannot set scope_type without scope_id." msgstr "没有作用域id,无法设置作用域。" -#: netbox/ipam/models/vlans.py:97 +#: ipam/models/vlans.py:97 msgid "Cannot set scope_id without scope_type." msgstr "没有作用域类型,无法设置作用域。" -#: netbox/ipam/models/vlans.py:101 +#: ipam/models/vlans.py:101 msgid "Ranges cannot overlap." msgstr "范围不能重叠。" -#: netbox/ipam/models/vlans.py:106 +#: ipam/models/vlans.py:106 #, python-brace-format msgid "" "Maximum child VID must be greater than or equal to minimum child VID " "({value})" msgstr "儿童 VID 的最大值必须大于或等于最小孩子 VID ({value})" -#: netbox/ipam/models/vlans.py:165 +#: ipam/models/vlans.py:165 msgid "The specific site to which this VLAN is assigned (if any)" msgstr "此VLAN所属的站点(如果有)" -#: netbox/ipam/models/vlans.py:173 +#: ipam/models/vlans.py:173 msgid "VLAN group (optional)" msgstr "VLAN组(可选)" -#: netbox/ipam/models/vlans.py:181 +#: ipam/models/vlans.py:181 msgid "Numeric VLAN ID (1-4094)" msgstr "VLAN ID(1-4094)" -#: netbox/ipam/models/vlans.py:199 +#: ipam/models/vlans.py:199 msgid "Operational status of this VLAN" msgstr "此VLAN的操作状态" -#: netbox/ipam/models/vlans.py:207 +#: ipam/models/vlans.py:207 msgid "The primary function of this VLAN" msgstr "此VLAN的主要功能" -#: netbox/ipam/models/vlans.py:250 +#: ipam/models/vlans.py:250 #, python-brace-format msgid "" "VLAN is assigned to group {group} (scope: {scope}); cannot also assign to " "site {site}." msgstr "VLAN 已分配给组 {group}(作用域:{scope}); 不能再分配给站点:{site}。" -#: netbox/ipam/models/vlans.py:259 +#: ipam/models/vlans.py:259 #, python-brace-format msgid "VID must be in ranges {ranges} for VLANs in group {group}" msgstr "VID 必须在范围内 {ranges} 对于组中的 VLAN {group}" -#: netbox/ipam/models/vrfs.py:30 +#: ipam/models/vrfs.py:30 msgid "route distinguisher" msgstr "路由区分符" -#: netbox/ipam/models/vrfs.py:31 +#: ipam/models/vrfs.py:31 msgid "Unique route distinguisher (as defined in RFC 4364)" msgstr "唯一的路由区分符(如 RFC 4364 中定义)" -#: netbox/ipam/models/vrfs.py:42 +#: ipam/models/vrfs.py:42 msgid "enforce unique space" msgstr "强制使用唯一空间" -#: netbox/ipam/models/vrfs.py:43 +#: ipam/models/vrfs.py:43 msgid "Prevent duplicate prefixes/IP addresses within this VRF" msgstr "防止此 VRF 内出现重复的前缀/IP 地址" -#: netbox/ipam/models/vrfs.py:63 netbox/netbox/navigation/menu.py:186 -#: netbox/netbox/navigation/menu.py:188 +#: ipam/models/vrfs.py:63 netbox/navigation/menu.py:186 +#: netbox/navigation/menu.py:188 msgid "VRFs" msgstr "VRFs" -#: netbox/ipam/models/vrfs.py:82 +#: ipam/models/vrfs.py:82 msgid "Route target value (formatted in accordance with RFC 4360)" msgstr "RT值(按照 RFC 4360 格式)" -#: netbox/ipam/models/vrfs.py:94 +#: ipam/models/vrfs.py:94 msgid "route target" msgstr "路由目标" -#: netbox/ipam/models/vrfs.py:95 +#: ipam/models/vrfs.py:95 msgid "route targets" msgstr "路由目标" -#: netbox/ipam/tables/asn.py:52 +#: ipam/tables/asn.py:52 msgid "ASDOT" msgstr "ASDOT" -#: netbox/ipam/tables/asn.py:57 +#: ipam/tables/asn.py:57 msgid "Site Count" msgstr "站点统计" -#: netbox/ipam/tables/asn.py:62 +#: ipam/tables/asn.py:62 msgid "Provider Count" msgstr "运营商统计" -#: netbox/ipam/tables/ip.py:95 netbox/netbox/navigation/menu.py:179 -#: netbox/netbox/navigation/menu.py:181 +#: ipam/tables/ip.py:95 netbox/navigation/menu.py:179 +#: netbox/navigation/menu.py:181 msgid "Aggregates" msgstr "聚合" -#: netbox/ipam/tables/ip.py:125 +#: ipam/tables/ip.py:125 msgid "Added" msgstr "已添加" -#: netbox/ipam/tables/ip.py:128 netbox/ipam/tables/ip.py:166 -#: netbox/ipam/tables/vlans.py:142 netbox/ipam/views.py:346 -#: netbox/netbox/navigation/menu.py:165 netbox/netbox/navigation/menu.py:167 -#: netbox/templates/ipam/vlan.html:84 +#: ipam/tables/ip.py:128 ipam/tables/ip.py:166 ipam/tables/vlans.py:142 +#: ipam/views.py:346 netbox/navigation/menu.py:165 +#: netbox/navigation/menu.py:167 templates/ipam/vlan.html:84 msgid "Prefixes" msgstr "前缀" -#: netbox/ipam/tables/ip.py:131 netbox/ipam/tables/ip.py:270 -#: netbox/ipam/tables/ip.py:324 netbox/ipam/tables/vlans.py:86 -#: netbox/templates/dcim/device.html:260 -#: netbox/templates/ipam/aggregate.html:24 -#: netbox/templates/ipam/iprange.html:29 netbox/templates/ipam/prefix.html:106 +#: ipam/tables/ip.py:131 ipam/tables/ip.py:270 ipam/tables/ip.py:324 +#: ipam/tables/vlans.py:86 templates/dcim/device.html:260 +#: templates/ipam/aggregate.html:24 templates/ipam/iprange.html:29 +#: templates/ipam/prefix.html:106 msgid "Utilization" msgstr "利用率" -#: netbox/ipam/tables/ip.py:171 netbox/netbox/navigation/menu.py:161 +#: ipam/tables/ip.py:171 netbox/navigation/menu.py:161 msgid "IP Ranges" msgstr "IP范围" -#: netbox/ipam/tables/ip.py:221 +#: ipam/tables/ip.py:221 msgid "Prefix (Flat)" msgstr "前缀(标记)" -#: netbox/ipam/tables/ip.py:225 +#: ipam/tables/ip.py:225 msgid "Depth" msgstr "深度" -#: netbox/ipam/tables/ip.py:262 +#: ipam/tables/ip.py:262 msgid "Pool" msgstr "地址池" -#: netbox/ipam/tables/ip.py:266 netbox/ipam/tables/ip.py:320 +#: ipam/tables/ip.py:266 ipam/tables/ip.py:320 msgid "Marked Utilized" msgstr "标记为已使用" -#: netbox/ipam/tables/ip.py:304 +#: ipam/tables/ip.py:304 msgid "Start address" msgstr "起始地址" -#: netbox/ipam/tables/ip.py:383 +#: ipam/tables/ip.py:383 msgid "NAT (Inside)" msgstr "NAT (内部地址)" -#: netbox/ipam/tables/ip.py:388 +#: ipam/tables/ip.py:388 msgid "NAT (Outside)" msgstr "NAT (外部地址)" -#: netbox/ipam/tables/ip.py:393 +#: ipam/tables/ip.py:393 msgid "Assigned" msgstr "分配" -#: netbox/ipam/tables/ip.py:429 netbox/templates/vpn/l2vpntermination.html:16 -#: netbox/vpn/forms/filtersets.py:240 +#: ipam/tables/ip.py:429 templates/vpn/l2vpntermination.html:16 +#: vpn/forms/filtersets.py:240 msgid "Assigned Object" msgstr "指定对象" -#: netbox/ipam/tables/vlans.py:68 +#: ipam/tables/vlans.py:68 msgid "Scope Type" msgstr "作用域类型" -#: netbox/ipam/tables/vlans.py:76 +#: ipam/tables/vlans.py:76 msgid "VID Ranges" msgstr "VID 范围" -#: netbox/ipam/tables/vlans.py:111 netbox/ipam/tables/vlans.py:214 -#: netbox/templates/dcim/inc/interface_vlans_table.html:4 +#: ipam/tables/vlans.py:111 ipam/tables/vlans.py:214 +#: templates/dcim/inc/interface_vlans_table.html:4 msgid "VID" msgstr "VLAN号" -#: netbox/ipam/tables/vrfs.py:30 +#: ipam/tables/vrfs.py:30 msgid "RD" msgstr "RD" -#: netbox/ipam/tables/vrfs.py:33 +#: ipam/tables/vrfs.py:33 msgid "Unique" msgstr "唯一的" -#: netbox/ipam/tables/vrfs.py:37 netbox/vpn/tables/l2vpn.py:27 +#: ipam/tables/vrfs.py:37 vpn/tables/l2vpn.py:27 msgid "Import Targets" msgstr "引入targets" -#: netbox/ipam/tables/vrfs.py:42 netbox/vpn/tables/l2vpn.py:32 +#: ipam/tables/vrfs.py:42 vpn/tables/l2vpn.py:32 msgid "Export Targets" msgstr "输出targets" -#: netbox/ipam/validators.py:9 +#: ipam/validators.py:9 #, python-brace-format msgid "{prefix} is not a valid prefix. Did you mean {suggested}?" msgstr "{prefix} 不是有效的前缀。您是想 {suggested}?" -#: netbox/ipam/validators.py:16 +#: ipam/validators.py:16 #, python-format msgid "The prefix length must be less than or equal to %(limit_value)s." msgstr "前缀长度必须≤ %(limit_value)s." -#: netbox/ipam/validators.py:24 +#: ipam/validators.py:24 #, python-format msgid "The prefix length must be greater than or equal to %(limit_value)s." msgstr "前缀长度必须≥ %(limit_value)s." -#: netbox/ipam/validators.py:33 +#: ipam/validators.py:33 msgid "" "Only alphanumeric characters, asterisks, hyphens, periods, and underscores " "are allowed in DNS names" msgstr "DNS 名称中仅允许使用字母数字字符、星号、连字符、句点和下划线" -#: netbox/ipam/views.py:533 +#: ipam/views.py:533 msgid "Child Prefixes" msgstr "下级前缀" -#: netbox/ipam/views.py:569 +#: ipam/views.py:569 msgid "Child Ranges" msgstr "子类地址访问" -#: netbox/ipam/views.py:898 +#: ipam/views.py:898 msgid "Related IPs" msgstr "关联IP" -#: netbox/ipam/views.py:1127 +#: ipam/views.py:1127 msgid "Device Interfaces" msgstr "设备接口" -#: netbox/ipam/views.py:1145 +#: ipam/views.py:1145 msgid "VM Interfaces" msgstr "VM接口" -#: netbox/netbox/api/fields.py:65 +#: netbox/api/fields.py:65 msgid "This field may not be blank." msgstr "此字段不能为空。" -#: netbox/netbox/api/fields.py:70 +#: netbox/api/fields.py:70 msgid "" "Value must be passed directly (e.g. \"foo\": 123); do not use a dictionary " "or list." msgstr "值必须直接传递(e.g. \"foo\": 123); 不要使用字典或列表。" -#: netbox/netbox/api/fields.py:91 +#: netbox/api/fields.py:91 #, python-brace-format msgid "{value} is not a valid choice." msgstr "{value}不是一个有效的选项。" -#: netbox/netbox/api/fields.py:104 +#: netbox/api/fields.py:104 #, python-brace-format msgid "Invalid content type: {content_type}" msgstr "无效的内容类型: {content_type}" -#: netbox/netbox/api/fields.py:105 +#: netbox/api/fields.py:105 msgid "Invalid value. Specify a content type as '.'." msgstr "无效的值。需要将内容类型指定为 '.'。" -#: netbox/netbox/api/fields.py:167 +#: netbox/api/fields.py:167 msgid "Ranges must be specified in the form (lower, upper)." msgstr "必须以表单(下限、上限)指定范围。" -#: netbox/netbox/api/fields.py:169 +#: netbox/api/fields.py:169 msgid "Range boundaries must be defined as integers." msgstr "范围边界必须定义为整数。" -#: netbox/netbox/api/serializers/fields.py:40 +#: netbox/api/serializers/fields.py:40 #, python-brace-format msgid "{class_name} must implement get_view_name()" msgstr "{class_name} 必须实现 get_view_name ()" -#: netbox/netbox/authentication/__init__.py:138 +#: netbox/authentication/__init__.py:138 #, python-brace-format msgid "Invalid permission {permission} for model {model}" msgstr "模型{model}的权限{permission}无效" -#: netbox/netbox/choices.py:49 +#: netbox/choices.py:49 msgid "Dark Red" msgstr "深红" -#: netbox/netbox/choices.py:52 +#: netbox/choices.py:52 msgid "Rose" msgstr "玫瑰红" -#: netbox/netbox/choices.py:53 +#: netbox/choices.py:53 msgid "Fuchsia" msgstr "紫红色" -#: netbox/netbox/choices.py:55 +#: netbox/choices.py:55 msgid "Dark Purple" msgstr "深紫色" -#: netbox/netbox/choices.py:58 +#: netbox/choices.py:58 msgid "Light Blue" msgstr "浅蓝色" -#: netbox/netbox/choices.py:61 +#: netbox/choices.py:61 msgid "Aqua" msgstr "水绿色" -#: netbox/netbox/choices.py:62 +#: netbox/choices.py:62 msgid "Dark Green" msgstr "深绿色" -#: netbox/netbox/choices.py:64 +#: netbox/choices.py:64 msgid "Light Green" msgstr "浅绿色" -#: netbox/netbox/choices.py:65 +#: netbox/choices.py:65 msgid "Lime" msgstr "草绿色" -#: netbox/netbox/choices.py:67 +#: netbox/choices.py:67 msgid "Amber" msgstr "琥珀色" -#: netbox/netbox/choices.py:69 +#: netbox/choices.py:69 msgid "Dark Orange" msgstr "深橙色" -#: netbox/netbox/choices.py:70 +#: netbox/choices.py:70 msgid "Brown" msgstr "棕色" -#: netbox/netbox/choices.py:71 +#: netbox/choices.py:71 msgid "Light Grey" msgstr "浅灰色" -#: netbox/netbox/choices.py:72 +#: netbox/choices.py:72 msgid "Grey" msgstr "灰色" -#: netbox/netbox/choices.py:73 +#: netbox/choices.py:73 msgid "Dark Grey" msgstr "深灰色" -#: netbox/netbox/choices.py:128 +#: netbox/choices.py:128 msgid "Direct" msgstr "直连" -#: netbox/netbox/choices.py:129 +#: netbox/choices.py:129 msgid "Upload" msgstr "上传" -#: netbox/netbox/choices.py:141 netbox/netbox/choices.py:155 +#: netbox/choices.py:141 netbox/choices.py:155 msgid "Auto-detect" msgstr "自动检测" -#: netbox/netbox/choices.py:156 +#: netbox/choices.py:156 msgid "Comma" msgstr "逗号" -#: netbox/netbox/choices.py:157 +#: netbox/choices.py:157 msgid "Semicolon" msgstr "分号" -#: netbox/netbox/choices.py:158 +#: netbox/choices.py:158 msgid "Tab" msgstr "Tab" -#: netbox/netbox/config/__init__.py:67 +#: netbox/config/__init__.py:67 #, python-brace-format msgid "Invalid configuration parameter: {item}" msgstr "无效的配置参数: {item}" -#: netbox/netbox/config/parameters.py:22 -#: netbox/templates/core/inc/config_data.html:62 +#: netbox/config/parameters.py:22 templates/core/inc/config_data.html:62 msgid "Login banner" msgstr "登录提示" -#: netbox/netbox/config/parameters.py:24 +#: netbox/config/parameters.py:24 msgid "Additional content to display on the login page" msgstr "要在登录页面上显示的其他内容" -#: netbox/netbox/config/parameters.py:33 -#: netbox/templates/core/inc/config_data.html:66 +#: netbox/config/parameters.py:33 templates/core/inc/config_data.html:66 msgid "Maintenance banner" msgstr "维护提示" -#: netbox/netbox/config/parameters.py:35 +#: netbox/config/parameters.py:35 msgid "Additional content to display when in maintenance mode" msgstr "要在维护页面上显示的其他内容" -#: netbox/netbox/config/parameters.py:44 -#: netbox/templates/core/inc/config_data.html:70 +#: netbox/config/parameters.py:44 templates/core/inc/config_data.html:70 msgid "Top banner" msgstr "顶部提示" -#: netbox/netbox/config/parameters.py:46 +#: netbox/config/parameters.py:46 msgid "Additional content to display at the top of every page" msgstr "要在顶部提示显示的其他内容" -#: netbox/netbox/config/parameters.py:55 -#: netbox/templates/core/inc/config_data.html:74 +#: netbox/config/parameters.py:55 templates/core/inc/config_data.html:74 msgid "Bottom banner" msgstr "底部提示" -#: netbox/netbox/config/parameters.py:57 +#: netbox/config/parameters.py:57 msgid "Additional content to display at the bottom of every page" msgstr "要在每页底部提示显示的其他内容" -#: netbox/netbox/config/parameters.py:68 +#: netbox/config/parameters.py:68 msgid "Globally unique IP space" msgstr "全局唯一 IP 地址空间" -#: netbox/netbox/config/parameters.py:70 +#: netbox/config/parameters.py:70 msgid "Enforce unique IP addressing within the global table" msgstr "在全局表中强制执行唯一的 IP 寻址" -#: netbox/netbox/config/parameters.py:75 -#: netbox/templates/core/inc/config_data.html:44 +#: netbox/config/parameters.py:75 templates/core/inc/config_data.html:44 msgid "Prefer IPv4" msgstr "首选 IPv4" -#: netbox/netbox/config/parameters.py:77 +#: netbox/config/parameters.py:77 msgid "Prefer IPv4 addresses over IPv6" msgstr "优先选择 IPv4 地址而不是 IPv6" -#: netbox/netbox/config/parameters.py:84 +#: netbox/config/parameters.py:84 msgid "Rack unit height" msgstr "机柜每U高度" -#: netbox/netbox/config/parameters.py:86 +#: netbox/config/parameters.py:86 msgid "Default unit height for rendered rack elevations" msgstr "渲染机架标高的默认单位高度" -#: netbox/netbox/config/parameters.py:91 +#: netbox/config/parameters.py:91 msgid "Rack unit width" msgstr "机柜每U宽度" -#: netbox/netbox/config/parameters.py:93 +#: netbox/config/parameters.py:93 msgid "Default unit width for rendered rack elevations" msgstr "渲染机架标高的默认单位宽度" -#: netbox/netbox/config/parameters.py:100 +#: netbox/config/parameters.py:100 msgid "Powerfeed voltage" msgstr "供电电压" -#: netbox/netbox/config/parameters.py:102 +#: netbox/config/parameters.py:102 msgid "Default voltage for powerfeeds" msgstr "电源默认电压" -#: netbox/netbox/config/parameters.py:107 +#: netbox/config/parameters.py:107 msgid "Powerfeed amperage" msgstr "供电电流" -#: netbox/netbox/config/parameters.py:109 +#: netbox/config/parameters.py:109 msgid "Default amperage for powerfeeds" msgstr "电源的默认电流" -#: netbox/netbox/config/parameters.py:114 +#: netbox/config/parameters.py:114 msgid "Powerfeed max utilization" msgstr "电源最大利用率" -#: netbox/netbox/config/parameters.py:116 +#: netbox/config/parameters.py:116 msgid "Default max utilization for powerfeeds" msgstr "默认的电源最大利用率" -#: netbox/netbox/config/parameters.py:123 -#: netbox/templates/core/inc/config_data.html:53 +#: netbox/config/parameters.py:123 templates/core/inc/config_data.html:53 msgid "Allowed URL schemes" msgstr "允许的URL方案" -#: netbox/netbox/config/parameters.py:128 +#: netbox/config/parameters.py:128 msgid "Permitted schemes for URLs in user-provided content" msgstr "用户提供的内容中允许的URL方案" -#: netbox/netbox/config/parameters.py:136 +#: netbox/config/parameters.py:136 msgid "Default page size" msgstr "默认页面大小" -#: netbox/netbox/config/parameters.py:142 +#: netbox/config/parameters.py:142 msgid "Maximum page size" msgstr "最大页面大小" -#: netbox/netbox/config/parameters.py:150 -#: netbox/templates/core/inc/config_data.html:96 +#: netbox/config/parameters.py:150 templates/core/inc/config_data.html:96 msgid "Custom validators" msgstr "自定义验证器" -#: netbox/netbox/config/parameters.py:152 +#: netbox/config/parameters.py:152 msgid "Custom validation rules (JSON)" msgstr "自定义验证规则(JSON)" -#: netbox/netbox/config/parameters.py:160 -#: netbox/templates/core/inc/config_data.html:104 +#: netbox/config/parameters.py:160 templates/core/inc/config_data.html:104 msgid "Protection rules" msgstr "保护规则" -#: netbox/netbox/config/parameters.py:162 +#: netbox/config/parameters.py:162 msgid "Deletion protection rules (JSON)" msgstr "删除动作的保护规则(JSON)" -#: netbox/netbox/config/parameters.py:172 -#: netbox/templates/core/inc/config_data.html:117 +#: netbox/config/parameters.py:172 templates/core/inc/config_data.html:117 msgid "Default preferences" msgstr "默认首选项" -#: netbox/netbox/config/parameters.py:174 +#: netbox/config/parameters.py:174 msgid "Default preferences for new users" msgstr "新用户默认首选项" -#: netbox/netbox/config/parameters.py:181 -#: netbox/templates/core/inc/config_data.html:129 +#: netbox/config/parameters.py:181 templates/core/inc/config_data.html:129 msgid "Maintenance mode" msgstr "维护模式" -#: netbox/netbox/config/parameters.py:183 +#: netbox/config/parameters.py:183 msgid "Enable maintenance mode" msgstr "开启维护模式" -#: netbox/netbox/config/parameters.py:188 -#: netbox/templates/core/inc/config_data.html:133 +#: netbox/config/parameters.py:188 templates/core/inc/config_data.html:133 msgid "GraphQL enabled" msgstr "GraphQL 已启用" -#: netbox/netbox/config/parameters.py:190 +#: netbox/config/parameters.py:190 msgid "Enable the GraphQL API" msgstr "启用 GraphQL API" -#: netbox/netbox/config/parameters.py:195 -#: netbox/templates/core/inc/config_data.html:137 +#: netbox/config/parameters.py:195 templates/core/inc/config_data.html:137 msgid "Changelog retention" msgstr "变更日志保留" -#: netbox/netbox/config/parameters.py:197 +#: netbox/config/parameters.py:197 msgid "Days to retain changelog history (set to zero for unlimited)" msgstr "变更日志的保留天数(0表示无限制)" -#: netbox/netbox/config/parameters.py:202 +#: netbox/config/parameters.py:202 msgid "Job result retention" msgstr "任务结果保留" -#: netbox/netbox/config/parameters.py:204 +#: netbox/config/parameters.py:204 msgid "Days to retain job result history (set to zero for unlimited)" msgstr "任务结果的保留天数(0表示无限制)" -#: netbox/netbox/config/parameters.py:209 -#: netbox/templates/core/inc/config_data.html:145 +#: netbox/config/parameters.py:209 templates/core/inc/config_data.html:145 msgid "Maps URL" msgstr "地图链接" -#: netbox/netbox/config/parameters.py:211 +#: netbox/config/parameters.py:211 msgid "Base URL for mapping geographic locations" msgstr "用于映射地理位置的基本 URL" -#: netbox/netbox/forms/__init__.py:12 +#: netbox/forms/__init__.py:12 msgid "Partial match" msgstr "部分匹配" -#: netbox/netbox/forms/__init__.py:13 +#: netbox/forms/__init__.py:13 msgid "Exact match" msgstr "完全匹配" -#: netbox/netbox/forms/__init__.py:14 +#: netbox/forms/__init__.py:14 msgid "Starts with" msgstr "开始于" -#: netbox/netbox/forms/__init__.py:15 +#: netbox/forms/__init__.py:15 msgid "Ends with" msgstr "结束于" -#: netbox/netbox/forms/__init__.py:16 +#: netbox/forms/__init__.py:16 msgid "Regex" msgstr "正则表达式" -#: netbox/netbox/forms/__init__.py:34 +#: netbox/forms/__init__.py:34 msgid "Object type(s)" msgstr "对象类型" -#: netbox/netbox/forms/__init__.py:40 +#: netbox/forms/__init__.py:40 msgid "Lookup" msgstr "查找" -#: netbox/netbox/forms/base.py:90 +#: netbox/forms/base.py:90 msgid "" "Tag slugs separated by commas, encased with double quotes (e.g. " "\"tag1,tag2,tag3\")" msgstr "用逗号分隔的标签段,用双引号括起来(例如\"tag1,tag2,tag3\")" -#: netbox/netbox/forms/base.py:120 +#: netbox/forms/base.py:120 msgid "Add tags" msgstr "增加标签" -#: netbox/netbox/forms/base.py:125 +#: netbox/forms/base.py:125 msgid "Remove tags" msgstr "移除标签" -#: netbox/netbox/forms/mixins.py:38 +#: netbox/forms/mixins.py:38 #, python-brace-format msgid "{class_name} must specify a model class." msgstr "{class_name}必须指定一个模型类。" -#: netbox/netbox/models/features.py:280 +#: netbox/models/features.py:280 #, python-brace-format msgid "Unknown field name '{name}' in custom field data." msgstr "自定义字段中的字段名称 '{name}' 未知。" -#: netbox/netbox/models/features.py:286 +#: netbox/models/features.py:286 #, python-brace-format msgid "Invalid value for custom field '{name}': {error}" msgstr "自定义字段'{name}'的值无效: {error}" -#: netbox/netbox/models/features.py:295 +#: netbox/models/features.py:295 #, python-brace-format msgid "Custom field '{name}' must have a unique value." msgstr "自定义字段 '{name}'必须具有唯一值。" -#: netbox/netbox/models/features.py:302 +#: netbox/models/features.py:302 #, python-brace-format msgid "Missing required custom field '{name}'." msgstr "缺少必需的自定义字段'{name}'." -#: netbox/netbox/models/features.py:462 +#: netbox/models/features.py:462 msgid "Remote data source" msgstr "远程数据源" -#: netbox/netbox/models/features.py:472 +#: netbox/models/features.py:472 msgid "data path" msgstr "文件路径" -#: netbox/netbox/models/features.py:476 +#: netbox/models/features.py:476 msgid "Path to remote file (relative to data source root)" msgstr "数据源文件路径(相对路径)" -#: netbox/netbox/models/features.py:479 +#: netbox/models/features.py:479 msgid "auto sync enabled" msgstr "自动同步已启用" -#: netbox/netbox/models/features.py:481 +#: netbox/models/features.py:481 msgid "Enable automatic synchronization of data when the data file is updated" msgstr "数据文件更新时启用数据自动同步" -#: netbox/netbox/models/features.py:484 +#: netbox/models/features.py:484 msgid "date synced" msgstr "数据已同步" -#: netbox/netbox/models/features.py:578 +#: netbox/models/features.py:578 #, python-brace-format msgid "{class_name} must implement a sync_data() method." msgstr "{class_name}必须包含sync_data()方法。" -#: netbox/netbox/navigation/menu.py:11 +#: netbox/navigation/menu.py:11 msgid "Organization" msgstr "组织机构" -#: netbox/netbox/navigation/menu.py:19 +#: netbox/navigation/menu.py:19 msgid "Site Groups" msgstr "站点组" -#: netbox/netbox/navigation/menu.py:27 +#: netbox/navigation/menu.py:27 msgid "Tenant Groups" msgstr "租户组" -#: netbox/netbox/navigation/menu.py:34 +#: netbox/navigation/menu.py:34 msgid "Contact Groups" msgstr "联系组" -#: netbox/netbox/navigation/menu.py:35 -#: netbox/templates/tenancy/contactrole.html:8 +#: netbox/navigation/menu.py:35 templates/tenancy/contactrole.html:8 msgid "Contact Roles" msgstr "联系角色" -#: netbox/netbox/navigation/menu.py:36 +#: netbox/navigation/menu.py:36 msgid "Contact Assignments" msgstr "联系分配" -#: netbox/netbox/navigation/menu.py:50 +#: netbox/navigation/menu.py:50 msgid "Rack Roles" msgstr "机柜角色" -#: netbox/netbox/navigation/menu.py:54 +#: netbox/navigation/menu.py:54 msgid "Elevations" msgstr "机柜立面图" -#: netbox/netbox/navigation/menu.py:60 netbox/netbox/navigation/menu.py:62 +#: netbox/navigation/menu.py:60 netbox/navigation/menu.py:62 msgid "Rack Types" msgstr "机架类型" -#: netbox/netbox/navigation/menu.py:76 +#: netbox/navigation/menu.py:76 msgid "Modules" msgstr "设备板卡" -#: netbox/netbox/navigation/menu.py:80 netbox/templates/dcim/device.html:160 -#: netbox/templates/dcim/virtualdevicecontext.html:8 +#: netbox/navigation/menu.py:80 templates/dcim/device.html:160 +#: templates/dcim/virtualdevicecontext.html:8 msgid "Virtual Device Contexts" msgstr "设备虚拟实例" -#: netbox/netbox/navigation/menu.py:88 +#: netbox/navigation/menu.py:88 msgid "Manufacturers" msgstr "厂商" -#: netbox/netbox/navigation/menu.py:92 +#: netbox/navigation/menu.py:92 msgid "Device Components" msgstr "设备详情" -#: netbox/netbox/navigation/menu.py:104 -#: netbox/templates/dcim/inventoryitemrole.html:8 +#: netbox/navigation/menu.py:104 templates/dcim/inventoryitemrole.html:8 msgid "Inventory Item Roles" msgstr "库存物品分类" -#: netbox/netbox/navigation/menu.py:111 netbox/netbox/navigation/menu.py:115 +#: netbox/navigation/menu.py:111 netbox/navigation/menu.py:115 msgid "Connections" msgstr "连接" -#: netbox/netbox/navigation/menu.py:117 +#: netbox/navigation/menu.py:117 msgid "Cables" msgstr "链路" -#: netbox/netbox/navigation/menu.py:118 +#: netbox/navigation/menu.py:118 msgid "Wireless Links" msgstr "无线连接" -#: netbox/netbox/navigation/menu.py:121 +#: netbox/navigation/menu.py:121 msgid "Interface Connections" msgstr "接口连接" -#: netbox/netbox/navigation/menu.py:126 +#: netbox/navigation/menu.py:126 msgid "Console Connections" msgstr "Console 连接" -#: netbox/netbox/navigation/menu.py:131 +#: netbox/navigation/menu.py:131 msgid "Power Connections" msgstr "电源连接" -#: netbox/netbox/navigation/menu.py:147 +#: netbox/navigation/menu.py:147 msgid "Wireless LAN Groups" msgstr "无线局域网组" -#: netbox/netbox/navigation/menu.py:168 +#: netbox/navigation/menu.py:168 msgid "Prefix & VLAN Roles" msgstr "前缀和VLAN角色" -#: netbox/netbox/navigation/menu.py:174 +#: netbox/navigation/menu.py:174 msgid "ASN Ranges" msgstr "ASN 范围" -#: netbox/netbox/navigation/menu.py:196 +#: netbox/navigation/menu.py:196 msgid "VLAN Groups" msgstr "VLAN 组" -#: netbox/netbox/navigation/menu.py:203 +#: netbox/navigation/menu.py:203 msgid "Service Templates" msgstr "服务模版" -#: netbox/netbox/navigation/menu.py:204 netbox/templates/dcim/device.html:302 -#: netbox/templates/ipam/ipaddress.html:118 -#: netbox/templates/virtualization/virtualmachine.html:154 +#: netbox/navigation/menu.py:204 templates/dcim/device.html:302 +#: templates/ipam/ipaddress.html:118 +#: templates/virtualization/virtualmachine.html:154 msgid "Services" msgstr "服务" -#: netbox/netbox/navigation/menu.py:211 +#: netbox/navigation/menu.py:211 msgid "VPN" msgstr "VPN" -#: netbox/netbox/navigation/menu.py:215 netbox/netbox/navigation/menu.py:217 -#: netbox/vpn/tables/tunnels.py:24 +#: netbox/navigation/menu.py:215 netbox/navigation/menu.py:217 +#: vpn/tables/tunnels.py:24 msgid "Tunnels" msgstr "隧道" -#: netbox/netbox/navigation/menu.py:218 -#: netbox/templates/vpn/tunnelgroup.html:8 +#: netbox/navigation/menu.py:218 templates/vpn/tunnelgroup.html:8 msgid "Tunnel Groups" msgstr "隧道组" -#: netbox/netbox/navigation/menu.py:219 +#: netbox/navigation/menu.py:219 msgid "Tunnel Terminations" msgstr "隧道终端" -#: netbox/netbox/navigation/menu.py:223 netbox/netbox/navigation/menu.py:225 -#: netbox/vpn/models/l2vpn.py:64 +#: netbox/navigation/menu.py:223 netbox/navigation/menu.py:225 +#: vpn/models/l2vpn.py:64 msgid "L2VPNs" msgstr "L2VPN" -#: netbox/netbox/navigation/menu.py:226 netbox/templates/vpn/l2vpn.html:56 -#: netbox/templates/vpn/tunnel.html:72 netbox/vpn/tables/tunnels.py:58 +#: netbox/navigation/menu.py:226 templates/vpn/l2vpn.html:56 +#: templates/vpn/tunnel.html:72 vpn/tables/tunnels.py:58 msgid "Terminations" msgstr "终端" -#: netbox/netbox/navigation/menu.py:232 +#: netbox/navigation/menu.py:232 msgid "IKE Proposals" msgstr "IKE 协议提案" -#: netbox/netbox/navigation/menu.py:233 -#: netbox/templates/vpn/ikeproposal.html:41 +#: netbox/navigation/menu.py:233 templates/vpn/ikeproposal.html:41 msgid "IKE Policies" msgstr "IKE策略" -#: netbox/netbox/navigation/menu.py:234 +#: netbox/navigation/menu.py:234 msgid "IPSec Proposals" msgstr "IPSec 协议提案" -#: netbox/netbox/navigation/menu.py:235 -#: netbox/templates/vpn/ipsecproposal.html:37 +#: netbox/navigation/menu.py:235 templates/vpn/ipsecproposal.html:37 msgid "IPSec Policies" msgstr "IPSec策略" -#: netbox/netbox/navigation/menu.py:236 netbox/templates/vpn/ikepolicy.html:38 -#: netbox/templates/vpn/ipsecpolicy.html:25 +#: netbox/navigation/menu.py:236 templates/vpn/ikepolicy.html:38 +#: templates/vpn/ipsecpolicy.html:25 msgid "IPSec Profiles" msgstr "IPSec 配置文件" -#: netbox/netbox/navigation/menu.py:243 -#: netbox/templates/dcim/device_edit.html:78 +#: netbox/navigation/menu.py:243 templates/dcim/device_edit.html:78 msgid "Virtualization" msgstr "虚拟化" -#: netbox/netbox/navigation/menu.py:251 -#: netbox/templates/virtualization/virtualmachine.html:174 -#: netbox/templates/virtualization/virtualmachine/base.html:32 -#: netbox/templates/virtualization/virtualmachine_list.html:21 -#: netbox/virtualization/tables/virtualmachines.py:104 -#: netbox/virtualization/views.py:388 +#: netbox/navigation/menu.py:251 +#: templates/virtualization/virtualmachine.html:174 +#: templates/virtualization/virtualmachine/base.html:32 +#: templates/virtualization/virtualmachine_list.html:21 +#: virtualization/tables/virtualmachines.py:104 virtualization/views.py:388 msgid "Virtual Disks" msgstr "虚拟磁盘" -#: netbox/netbox/navigation/menu.py:258 +#: netbox/navigation/menu.py:258 msgid "Cluster Types" msgstr "集群类型" -#: netbox/netbox/navigation/menu.py:259 +#: netbox/navigation/menu.py:259 msgid "Cluster Groups" msgstr "集群组" -#: netbox/netbox/navigation/menu.py:273 +#: netbox/navigation/menu.py:273 msgid "Circuit Types" msgstr "链路类型" -#: netbox/netbox/navigation/menu.py:274 +#: netbox/navigation/menu.py:274 msgid "Circuit Groups" msgstr "电路组" -#: netbox/netbox/navigation/menu.py:275 -#: netbox/templates/circuits/circuit.html:66 +#: netbox/navigation/menu.py:275 templates/circuits/circuit.html:66 msgid "Group Assignments" msgstr "小组作业" -#: netbox/netbox/navigation/menu.py:276 +#: netbox/navigation/menu.py:276 msgid "Circuit Terminations" msgstr "链路终端" -#: netbox/netbox/navigation/menu.py:280 netbox/netbox/navigation/menu.py:282 +#: netbox/navigation/menu.py:280 netbox/navigation/menu.py:282 msgid "Providers" msgstr "运营商" -#: netbox/netbox/navigation/menu.py:283 -#: netbox/templates/circuits/provider.html:51 +#: netbox/navigation/menu.py:283 templates/circuits/provider.html:51 msgid "Provider Accounts" msgstr "运营商账户" -#: netbox/netbox/navigation/menu.py:284 +#: netbox/navigation/menu.py:284 msgid "Provider Networks" msgstr "运营商网络" -#: netbox/netbox/navigation/menu.py:298 +#: netbox/navigation/menu.py:298 msgid "Power Panels" msgstr "电源面板" -#: netbox/netbox/navigation/menu.py:309 +#: netbox/navigation/menu.py:309 msgid "Configurations" msgstr "配置" -#: netbox/netbox/navigation/menu.py:311 +#: netbox/navigation/menu.py:311 msgid "Config Contexts" msgstr "配置实例" -#: netbox/netbox/navigation/menu.py:312 +#: netbox/navigation/menu.py:312 msgid "Config Templates" msgstr "配置模板" -#: netbox/netbox/navigation/menu.py:319 netbox/netbox/navigation/menu.py:323 +#: netbox/navigation/menu.py:319 netbox/navigation/menu.py:323 msgid "Customization" msgstr "自定义" -#: netbox/netbox/navigation/menu.py:325 -#: netbox/templates/dcim/device_edit.html:103 -#: netbox/templates/dcim/htmx/cable_edit.html:81 -#: netbox/templates/dcim/virtualchassis_add.html:31 -#: netbox/templates/dcim/virtualchassis_edit.html:40 -#: netbox/templates/generic/bulk_edit.html:76 -#: netbox/templates/htmx/form.html:19 netbox/templates/inc/filter_list.html:30 -#: netbox/templates/inc/panels/custom_fields.html:7 -#: netbox/templates/ipam/ipaddress_bulk_add.html:35 -#: netbox/templates/ipam/vlan_edit.html:59 +#: netbox/navigation/menu.py:325 templates/dcim/device_edit.html:103 +#: templates/dcim/htmx/cable_edit.html:81 +#: templates/dcim/virtualchassis_add.html:31 +#: templates/dcim/virtualchassis_edit.html:40 +#: templates/generic/bulk_edit.html:76 templates/htmx/form.html:19 +#: templates/inc/filter_list.html:30 templates/inc/panels/custom_fields.html:7 +#: templates/ipam/ipaddress_bulk_add.html:35 templates/ipam/vlan_edit.html:59 msgid "Custom Fields" msgstr "自定义字段" -#: netbox/netbox/navigation/menu.py:326 +#: netbox/navigation/menu.py:326 msgid "Custom Field Choices" msgstr "自定义字段选项" -#: netbox/netbox/navigation/menu.py:327 +#: netbox/navigation/menu.py:327 msgid "Custom Links" msgstr "自定义链接" -#: netbox/netbox/navigation/menu.py:328 +#: netbox/navigation/menu.py:328 msgid "Export Templates" msgstr "导出模板" -#: netbox/netbox/navigation/menu.py:329 +#: netbox/navigation/menu.py:329 msgid "Saved Filters" msgstr "已保存的过滤器" -#: netbox/netbox/navigation/menu.py:331 +#: netbox/navigation/menu.py:331 msgid "Image Attachments" msgstr "图片附件" -#: netbox/netbox/navigation/menu.py:349 +#: netbox/navigation/menu.py:349 msgid "Operations" msgstr "操作" -#: netbox/netbox/navigation/menu.py:353 +#: netbox/navigation/menu.py:353 msgid "Integrations" msgstr "系统集成" -#: netbox/netbox/navigation/menu.py:355 +#: netbox/navigation/menu.py:355 msgid "Data Sources" msgstr "数据源" -#: netbox/netbox/navigation/menu.py:356 +#: netbox/navigation/menu.py:356 msgid "Event Rules" msgstr "事件规则" -#: netbox/netbox/navigation/menu.py:357 +#: netbox/navigation/menu.py:357 msgid "Webhooks" msgstr "Webhook" -#: netbox/netbox/navigation/menu.py:361 netbox/netbox/navigation/menu.py:365 -#: netbox/netbox/views/generic/feature_views.py:153 -#: netbox/templates/extras/report/base.html:37 -#: netbox/templates/extras/script/base.html:36 +#: netbox/navigation/menu.py:361 netbox/navigation/menu.py:365 +#: netbox/views/generic/feature_views.py:153 +#: templates/extras/report/base.html:37 templates/extras/script/base.html:36 msgid "Jobs" msgstr "任务" -#: netbox/netbox/navigation/menu.py:371 +#: netbox/navigation/menu.py:371 msgid "Logging" msgstr "日志" -#: netbox/netbox/navigation/menu.py:373 +#: netbox/navigation/menu.py:373 msgid "Notification Groups" msgstr "通知组" -#: netbox/netbox/navigation/menu.py:374 +#: netbox/navigation/menu.py:374 msgid "Journal Entries" msgstr "日志条目" -#: netbox/netbox/navigation/menu.py:375 -#: netbox/templates/core/objectchange.html:9 -#: netbox/templates/core/objectchange_list.html:4 +#: netbox/navigation/menu.py:375 templates/core/objectchange.html:9 +#: templates/core/objectchange_list.html:4 msgid "Change Log" msgstr "修改日志" -#: netbox/netbox/navigation/menu.py:382 netbox/templates/inc/user_menu.html:29 +#: netbox/navigation/menu.py:382 templates/inc/user_menu.html:29 msgid "Admin" msgstr "管理员" -#: netbox/netbox/navigation/menu.py:430 netbox/templates/account/base.html:27 -#: netbox/templates/inc/user_menu.html:57 +#: netbox/navigation/menu.py:430 templates/account/base.html:27 +#: templates/inc/user_menu.html:57 msgid "API Tokens" msgstr "API Token" -#: netbox/netbox/navigation/menu.py:437 netbox/users/forms/model_forms.py:187 -#: netbox/users/forms/model_forms.py:195 netbox/users/forms/model_forms.py:242 -#: netbox/users/forms/model_forms.py:249 +#: netbox/navigation/menu.py:437 users/forms/model_forms.py:187 +#: users/forms/model_forms.py:195 users/forms/model_forms.py:242 +#: users/forms/model_forms.py:249 msgid "Permissions" msgstr "权限" -#: netbox/netbox/navigation/menu.py:445 netbox/netbox/navigation/menu.py:449 -#: netbox/templates/core/system.html:7 +#: netbox/navigation/menu.py:445 netbox/navigation/menu.py:449 +#: templates/core/system.html:7 msgid "System" msgstr "系统" -#: netbox/netbox/navigation/menu.py:454 netbox/netbox/navigation/menu.py:502 -#: netbox/templates/500.html:35 netbox/templates/account/preferences.html:22 -#: netbox/templates/core/plugin.html:12 -#: netbox/templates/core/plugin_list.html:7 -#: netbox/templates/core/plugin_list.html:12 +#: netbox/navigation/menu.py:454 netbox/navigation/menu.py:502 +#: templates/500.html:35 templates/account/preferences.html:22 +#: templates/core/plugin.html:13 templates/core/plugin_list.html:7 +#: templates/core/plugin_list.html:12 msgid "Plugins" msgstr "插件" -#: netbox/netbox/navigation/menu.py:459 +#: netbox/navigation/menu.py:459 msgid "Configuration History" msgstr "配置历史记录" -#: netbox/netbox/navigation/menu.py:465 netbox/templates/core/rq_task.html:8 -#: netbox/templates/core/rq_task_list.html:22 +#: netbox/navigation/menu.py:465 templates/core/rq_task.html:8 +#: templates/core/rq_task_list.html:22 msgid "Background Tasks" msgstr "后台任务" -#: netbox/netbox/plugins/navigation.py:47 -#: netbox/netbox/plugins/navigation.py:69 +#: netbox/plugins/navigation.py:47 netbox/plugins/navigation.py:69 msgid "Permissions must be passed as a tuple or list." msgstr "权限必须以元组或列表的形式传递。" -#: netbox/netbox/plugins/navigation.py:51 +#: netbox/plugins/navigation.py:51 msgid "Buttons must be passed as a tuple or list." msgstr "按钮必须作为元组或列表传递。" -#: netbox/netbox/plugins/navigation.py:73 +#: netbox/plugins/navigation.py:73 msgid "Button color must be a choice within ButtonColorChoices." msgstr "按钮颜色必须是颜色可选项中的一个。" -#: netbox/netbox/plugins/registration.py:25 +#: netbox/plugins/registration.py:25 #, python-brace-format msgid "" "PluginTemplateExtension class {template_extension} was passed as an " "instance!" msgstr "PluginTemplateExtension类{template_extension}已作为实例传递!" -#: netbox/netbox/plugins/registration.py:31 +#: netbox/plugins/registration.py:31 #, python-brace-format msgid "" "{template_extension} is not a subclass of " "netbox.plugins.PluginTemplateExtension!" msgstr "{template_extension} 不是netbox.plugins.PluginTemplateExtension的子类。" -#: netbox/netbox/plugins/registration.py:51 +#: netbox/plugins/registration.py:51 #, python-brace-format msgid "{item} must be an instance of netbox.plugins.PluginMenuItem" msgstr "{item} 必须是netbox.plugins.PluginMenuItem的实例。" -#: netbox/netbox/plugins/registration.py:62 +#: netbox/plugins/registration.py:62 #, python-brace-format msgid "{menu_link} must be an instance of netbox.plugins.PluginMenuItem" msgstr "{menu_link} 必须是netbox.plugins.PluginMenuItem的实例。" -#: netbox/netbox/plugins/registration.py:67 +#: netbox/plugins/registration.py:67 #, python-brace-format msgid "{button} must be an instance of netbox.plugins.PluginMenuButton" msgstr "{button}必须是netbox.plugins.PluginMenuButton的实例。" -#: netbox/netbox/plugins/templates.py:37 +#: netbox/plugins/templates.py:37 msgid "extra_context must be a dictionary" msgstr "附加实例必须是字典" -#: netbox/netbox/preferences.py:19 +#: netbox/preferences.py:19 msgid "HTMX Navigation" msgstr "HTMX 导航" -#: netbox/netbox/preferences.py:24 +#: netbox/preferences.py:24 msgid "Enable dynamic UI navigation" msgstr "启用动态 UI 导航" -#: netbox/netbox/preferences.py:26 +#: netbox/preferences.py:26 msgid "Experimental feature" msgstr "实验性功能" -#: netbox/netbox/preferences.py:29 +#: netbox/preferences.py:29 msgid "Language" msgstr "语言" -#: netbox/netbox/preferences.py:34 +#: netbox/preferences.py:34 msgid "Forces UI translation to the specified language" msgstr "强制将 UI 翻译成指定语言" -#: netbox/netbox/preferences.py:36 +#: netbox/preferences.py:36 msgid "Support for translation has been disabled locally" msgstr "对翻译的支持已在本地禁用" -#: netbox/netbox/preferences.py:42 +#: netbox/preferences.py:42 msgid "Page length" msgstr "页面长度" -#: netbox/netbox/preferences.py:44 +#: netbox/preferences.py:44 msgid "The default number of objects to display per page" msgstr "每页默认显示的对象数" -#: netbox/netbox/preferences.py:48 +#: netbox/preferences.py:48 msgid "Paginator placement" msgstr "分页器位置" -#: netbox/netbox/preferences.py:50 +#: netbox/preferences.py:50 msgid "Bottom" msgstr "底部" -#: netbox/netbox/preferences.py:51 +#: netbox/preferences.py:51 msgid "Top" msgstr "顶部" -#: netbox/netbox/preferences.py:52 +#: netbox/preferences.py:52 msgid "Both" msgstr "两者皆有" -#: netbox/netbox/preferences.py:55 +#: netbox/preferences.py:55 msgid "Where the paginator controls will be displayed relative to a table" msgstr "分页器控件相对于表格的显示位置" -#: netbox/netbox/preferences.py:60 +#: netbox/preferences.py:60 msgid "Data format" msgstr "数据格式" -#: netbox/netbox/preferences.py:65 +#: netbox/preferences.py:65 msgid "The preferred syntax for displaying generic data within the UI" msgstr "在UI中显示通用数据的首选语法" -#: netbox/netbox/registry.py:14 +#: netbox/registry.py:14 #, python-brace-format msgid "Invalid store: {key}" msgstr "无效商店: {key}" -#: netbox/netbox/registry.py:17 +#: netbox/registry.py:17 msgid "Cannot add stores to registry after initialization" msgstr "初始化后无法在注册表中添加存储空间" -#: netbox/netbox/registry.py:20 +#: netbox/registry.py:20 msgid "Cannot delete stores from registry" msgstr "无法从注册表中删除存储" -#: netbox/netbox/settings.py:760 +#: netbox/settings.py:760 msgid "Czech" msgstr "捷克语" -#: netbox/netbox/settings.py:761 +#: netbox/settings.py:761 msgid "Danish" msgstr "丹麦语" -#: netbox/netbox/settings.py:762 +#: netbox/settings.py:762 msgid "German" msgstr "德语" -#: netbox/netbox/settings.py:763 +#: netbox/settings.py:763 msgid "English" msgstr "英语" -#: netbox/netbox/settings.py:764 +#: netbox/settings.py:764 msgid "Spanish" msgstr "西班牙语" -#: netbox/netbox/settings.py:765 +#: netbox/settings.py:765 msgid "French" msgstr "法语" -#: netbox/netbox/settings.py:766 +#: netbox/settings.py:766 msgid "Italian" msgstr "意大利语" -#: netbox/netbox/settings.py:767 +#: netbox/settings.py:767 msgid "Japanese" msgstr "日语" -#: netbox/netbox/settings.py:768 +#: netbox/settings.py:768 msgid "Dutch" msgstr "荷兰语" -#: netbox/netbox/settings.py:769 +#: netbox/settings.py:769 msgid "Polish" msgstr "波兰语" -#: netbox/netbox/settings.py:770 +#: netbox/settings.py:770 msgid "Portuguese" msgstr "葡萄牙语" -#: netbox/netbox/settings.py:771 +#: netbox/settings.py:771 msgid "Russian" msgstr "俄语" -#: netbox/netbox/settings.py:772 +#: netbox/settings.py:772 msgid "Turkish" msgstr "土耳其语" -#: netbox/netbox/settings.py:773 +#: netbox/settings.py:773 msgid "Ukrainian" msgstr "乌克兰语" -#: netbox/netbox/settings.py:774 +#: netbox/settings.py:774 msgid "Chinese" msgstr "中文" -#: netbox/netbox/tables/columns.py:176 +#: netbox/tables/columns.py:176 msgid "Select all" msgstr "选择全部" -#: netbox/netbox/tables/columns.py:189 +#: netbox/tables/columns.py:189 msgid "Toggle all" msgstr "全部切换" -#: netbox/netbox/tables/columns.py:300 +#: netbox/tables/columns.py:300 msgid "Toggle Dropdown" msgstr "切换下拉菜单" -#: netbox/netbox/tables/columns.py:572 netbox/templates/core/job.html:53 +#: netbox/tables/columns.py:572 templates/core/job.html:53 msgid "Error" msgstr "错误" -#: netbox/netbox/tables/tables.py:58 +#: netbox/tables/tables.py:58 #, python-brace-format msgid "No {model_name} found" msgstr "找不到 {model_name} " -#: netbox/netbox/tables/tables.py:249 -#: netbox/templates/generic/bulk_import.html:117 +#: netbox/tables/tables.py:249 templates/generic/bulk_import.html:117 msgid "Field" msgstr "字段" -#: netbox/netbox/tables/tables.py:252 +#: netbox/tables/tables.py:252 msgid "Value" msgstr "值" -#: netbox/netbox/tests/dummy_plugin/navigation.py:29 +#: netbox/tests/dummy_plugin/navigation.py:29 msgid "Dummy Plugin" msgstr "虚拟插件" -#: netbox/netbox/views/generic/bulk_views.py:114 +#: netbox/views/generic/bulk_views.py:114 #, python-brace-format msgid "" "There was an error rendering the selected export template ({template}): " "{error}" msgstr "渲染所选导出模板时出错 ({template}): {error}" -#: netbox/netbox/views/generic/bulk_views.py:416 +#: netbox/views/generic/bulk_views.py:416 #, python-brace-format msgid "Row {i}: Object with ID {id} does not exist" msgstr "第{i}行: ID为{id}的对象不存在" -#: netbox/netbox/views/generic/bulk_views.py:699 -#: netbox/netbox/views/generic/bulk_views.py:897 -#: netbox/netbox/views/generic/bulk_views.py:945 +#: netbox/views/generic/bulk_views.py:702 +#: netbox/views/generic/bulk_views.py:900 +#: netbox/views/generic/bulk_views.py:948 #, python-brace-format msgid "No {object_type} were selected." msgstr "没有 {object_type} 被选中。" -#: netbox/netbox/views/generic/bulk_views.py:779 +#: netbox/views/generic/bulk_views.py:782 #, python-brace-format msgid "Renamed {count} {object_type}" msgstr "重命名 {count} {object_type}" -#: netbox/netbox/views/generic/bulk_views.py:875 +#: netbox/views/generic/bulk_views.py:878 #, python-brace-format msgid "Deleted {count} {object_type}" msgstr "已删除 {count} {object_type}" -#: netbox/netbox/views/generic/feature_views.py:40 +#: netbox/views/generic/feature_views.py:40 msgid "Changelog" msgstr "变更日志" -#: netbox/netbox/views/generic/feature_views.py:93 +#: netbox/views/generic/feature_views.py:93 msgid "Journal" msgstr "日志" -#: netbox/netbox/views/generic/feature_views.py:207 +#: netbox/views/generic/feature_views.py:207 msgid "Unable to synchronize data: No data file set." msgstr "无法同步数据:未设置任何数据文件。" -#: netbox/netbox/views/generic/feature_views.py:211 +#: netbox/views/generic/feature_views.py:211 #, python-brace-format msgid "Synchronized data for {object_type} {object}." msgstr "的同步数据 {object_type} {object}。" -#: netbox/netbox/views/generic/feature_views.py:236 +#: netbox/views/generic/feature_views.py:236 #, python-brace-format msgid "Synced {count} {object_type}" msgstr "已同步 {count} {object_type}" -#: netbox/netbox/views/generic/object_views.py:108 +#: netbox/views/generic/object_views.py:108 #, python-brace-format msgid "{class_name} must implement get_children()" msgstr "{class_name}必须实现get_children()方法" -#: netbox/netbox/views/misc.py:44 +#: netbox/views/misc.py:44 msgid "" "There was an error loading the dashboard configuration. A default dashboard " "is in use." msgstr "加载仪表盘配置时出错。正在使用默认仪表盘。" -#: netbox/templates/403.html:4 +#: templates/403.html:4 msgid "Access Denied" msgstr "拒绝访问" -#: netbox/templates/403.html:9 +#: templates/403.html:9 msgid "You do not have permission to access this page" msgstr "你没有权限访问该页面" -#: netbox/templates/404.html:4 +#: templates/404.html:4 msgid "Page Not Found" msgstr "找不到页面" -#: netbox/templates/404.html:9 +#: templates/404.html:9 msgid "The requested page does not exist" msgstr "请求的页面不存在" -#: netbox/templates/500.html:7 netbox/templates/500.html:18 +#: templates/500.html:7 templates/500.html:18 msgid "Server Error" msgstr "服务器错误" -#: netbox/templates/500.html:23 +#: templates/500.html:23 msgid "There was a problem with your request. Please contact an administrator" msgstr "请求出错。 请联系管理员" -#: netbox/templates/500.html:28 +#: templates/500.html:28 msgid "The complete exception is provided below" msgstr "异常信息如下" -#: netbox/templates/500.html:33 netbox/templates/core/system.html:40 +#: templates/500.html:33 templates/core/system.html:40 msgid "Python version" msgstr "Python 版本" -#: netbox/templates/500.html:34 +#: templates/500.html:34 msgid "NetBox version" msgstr "NetBox 版本" -#: netbox/templates/500.html:36 +#: templates/500.html:36 msgid "None installed" msgstr "未安装" -#: netbox/templates/500.html:39 +#: templates/500.html:39 msgid "If further assistance is required, please post to the" msgstr "如果需要进一步帮助,请提交到" -#: netbox/templates/500.html:39 +#: templates/500.html:39 msgid "NetBox discussion forum" msgstr "NetBox 论坛" -#: netbox/templates/500.html:39 +#: templates/500.html:39 msgid "on GitHub" msgstr "在GitHub上" -#: netbox/templates/500.html:42 netbox/templates/base/40x.html:17 +#: templates/500.html:42 templates/base/40x.html:17 msgid "Home Page" msgstr "主页" -#: netbox/templates/account/base.html:7 netbox/templates/inc/user_menu.html:45 -#: netbox/vpn/forms/bulk_edit.py:255 netbox/vpn/forms/filtersets.py:189 -#: netbox/vpn/forms/model_forms.py:379 +#: templates/account/base.html:7 templates/inc/user_menu.html:45 +#: vpn/forms/bulk_edit.py:255 vpn/forms/filtersets.py:189 +#: vpn/forms/model_forms.py:379 msgid "Profile" msgstr "个人资料" -#: netbox/templates/account/base.html:13 -#: netbox/templates/account/notifications.html:7 -#: netbox/templates/inc/user_menu.html:15 +#: templates/account/base.html:13 templates/account/notifications.html:7 +#: templates/inc/user_menu.html:15 msgid "Notifications" msgstr "通知" -#: netbox/templates/account/base.html:16 -#: netbox/templates/account/subscriptions.html:7 -#: netbox/templates/inc/user_menu.html:51 +#: templates/account/base.html:16 templates/account/subscriptions.html:7 +#: templates/inc/user_menu.html:51 msgid "Subscriptions" msgstr "订阅" -#: netbox/templates/account/base.html:19 -#: netbox/templates/inc/user_menu.html:54 +#: templates/account/base.html:19 templates/inc/user_menu.html:54 msgid "Preferences" msgstr "首选项" -#: netbox/templates/account/password.html:5 +#: templates/account/password.html:5 msgid "Change Password" msgstr "修改密码" -#: netbox/templates/account/password.html:19 -#: netbox/templates/account/preferences.html:77 -#: netbox/templates/core/configrevision_restore.html:63 -#: netbox/templates/dcim/devicebay_populate.html:34 -#: netbox/templates/dcim/virtualchassis_add_member.html:26 -#: netbox/templates/dcim/virtualchassis_edit.html:103 -#: netbox/templates/extras/object_journal.html:26 -#: netbox/templates/extras/script.html:38 -#: netbox/templates/generic/bulk_add_component.html:67 -#: netbox/templates/generic/bulk_delete.html:65 -#: netbox/templates/generic/bulk_edit.html:106 -#: netbox/templates/generic/bulk_import.html:56 -#: netbox/templates/generic/bulk_import.html:78 -#: netbox/templates/generic/bulk_import.html:100 -#: netbox/templates/generic/bulk_remove.html:62 -#: netbox/templates/generic/bulk_rename.html:63 -#: netbox/templates/generic/confirmation_form.html:19 -#: netbox/templates/generic/object_edit.html:72 -#: netbox/templates/htmx/delete_form.html:53 -#: netbox/templates/htmx/delete_form.html:55 -#: netbox/templates/ipam/ipaddress_assign.html:28 -#: netbox/templates/virtualization/cluster_add_devices.html:30 +#: templates/account/password.html:19 templates/account/preferences.html:77 +#: templates/core/configrevision_restore.html:63 +#: templates/dcim/devicebay_populate.html:34 +#: templates/dcim/virtualchassis_add_member.html:26 +#: templates/dcim/virtualchassis_edit.html:103 +#: templates/extras/object_journal.html:26 templates/extras/script.html:38 +#: templates/generic/bulk_add_component.html:67 +#: templates/generic/bulk_delete.html:65 templates/generic/bulk_edit.html:106 +#: templates/generic/bulk_import.html:56 templates/generic/bulk_import.html:78 +#: templates/generic/bulk_import.html:100 +#: templates/generic/bulk_remove.html:62 templates/generic/bulk_rename.html:63 +#: templates/generic/confirmation_form.html:19 +#: templates/generic/object_edit.html:72 templates/htmx/delete_form.html:53 +#: templates/htmx/delete_form.html:55 templates/ipam/ipaddress_assign.html:28 +#: templates/virtualization/cluster_add_devices.html:30 msgid "Cancel" msgstr "取消" -#: netbox/templates/account/password.html:20 -#: netbox/templates/account/preferences.html:78 -#: netbox/templates/dcim/devicebay_populate.html:35 -#: netbox/templates/dcim/virtualchassis_add_member.html:28 -#: netbox/templates/dcim/virtualchassis_edit.html:105 -#: netbox/templates/extras/dashboard/widget_add.html:26 -#: netbox/templates/extras/dashboard/widget_config.html:19 -#: netbox/templates/extras/object_journal.html:27 -#: netbox/templates/generic/object_edit.html:75 -#: netbox/utilities/templates/helpers/applied_filters.html:16 -#: netbox/utilities/templates/helpers/table_config_form.html:40 +#: templates/account/password.html:20 templates/account/preferences.html:78 +#: templates/dcim/devicebay_populate.html:35 +#: templates/dcim/virtualchassis_add_member.html:28 +#: templates/dcim/virtualchassis_edit.html:105 +#: templates/extras/dashboard/widget_add.html:26 +#: templates/extras/dashboard/widget_config.html:19 +#: templates/extras/object_journal.html:27 +#: templates/generic/object_edit.html:75 +#: utilities/templates/helpers/applied_filters.html:16 +#: utilities/templates/helpers/table_config_form.html:40 msgid "Save" msgstr "保存" -#: netbox/templates/account/preferences.html:34 +#: templates/account/preferences.html:34 msgid "Table Configurations" msgstr "配置查看列表" -#: netbox/templates/account/preferences.html:39 +#: templates/account/preferences.html:39 msgid "Clear table preferences" msgstr "清理列表自定义选项" -#: netbox/templates/account/preferences.html:47 +#: templates/account/preferences.html:47 msgid "Toggle All" msgstr "全部切换" -#: netbox/templates/account/preferences.html:49 +#: templates/account/preferences.html:49 msgid "Table" msgstr "列表" -#: netbox/templates/account/preferences.html:50 +#: templates/account/preferences.html:50 msgid "Ordering" msgstr "订阅" -#: netbox/templates/account/preferences.html:51 +#: templates/account/preferences.html:51 msgid "Columns" msgstr "专栏" -#: netbox/templates/account/preferences.html:71 -#: netbox/templates/dcim/cable_trace.html:113 -#: netbox/templates/extras/object_configcontext.html:43 +#: templates/account/preferences.html:71 templates/dcim/cable_trace.html:113 +#: templates/extras/object_configcontext.html:43 msgid "None found" msgstr "未找到任何内容" -#: netbox/templates/account/profile.html:6 +#: templates/account/profile.html:6 msgid "User Profile" msgstr "用户个人资料" -#: netbox/templates/account/profile.html:12 +#: templates/account/profile.html:12 msgid "Account Details" msgstr "账户详情" -#: netbox/templates/account/profile.html:29 -#: netbox/templates/tenancy/contact.html:43 -#: netbox/templates/users/user.html:25 netbox/tenancy/forms/bulk_edit.py:109 +#: templates/account/profile.html:29 templates/tenancy/contact.html:43 +#: templates/users/user.html:25 tenancy/forms/bulk_edit.py:109 msgid "Email" msgstr "电子邮箱" -#: netbox/templates/account/profile.html:33 -#: netbox/templates/users/user.html:29 +#: templates/account/profile.html:33 templates/users/user.html:29 msgid "Account Created" msgstr "创建账号" -#: netbox/templates/account/profile.html:37 -#: netbox/templates/users/user.html:33 +#: templates/account/profile.html:37 templates/users/user.html:33 msgid "Last Login" msgstr "最后登录" -#: netbox/templates/account/profile.html:41 -#: netbox/templates/users/user.html:45 +#: templates/account/profile.html:41 templates/users/user.html:45 msgid "Superuser" msgstr "超级管理员用户" -#: netbox/templates/account/profile.html:45 -#: netbox/templates/inc/user_menu.html:31 netbox/templates/users/user.html:41 +#: templates/account/profile.html:45 templates/inc/user_menu.html:31 +#: templates/users/user.html:41 msgid "Staff" msgstr "工作人员" -#: netbox/templates/account/profile.html:53 -#: netbox/templates/users/objectpermission.html:82 -#: netbox/templates/users/user.html:53 +#: templates/account/profile.html:53 templates/users/objectpermission.html:82 +#: templates/users/user.html:53 msgid "Assigned Groups" msgstr "指定用户组" -#: netbox/templates/account/profile.html:58 -#: netbox/templates/circuits/circuit_terminations_swap.html:18 -#: netbox/templates/circuits/circuit_terminations_swap.html:26 -#: netbox/templates/circuits/circuittermination.html:34 -#: netbox/templates/circuits/inc/circuit_termination.html:68 -#: netbox/templates/core/objectchange.html:124 -#: netbox/templates/core/objectchange.html:142 -#: netbox/templates/dcim/devicebay.html:59 -#: netbox/templates/dcim/inc/panels/inventory_items.html:45 -#: netbox/templates/dcim/interface.html:296 -#: netbox/templates/dcim/modulebay.html:80 -#: netbox/templates/extras/configcontext.html:70 -#: netbox/templates/extras/eventrule.html:66 -#: netbox/templates/extras/htmx/script_result.html:60 -#: netbox/templates/extras/webhook.html:65 -#: netbox/templates/extras/webhook.html:75 -#: netbox/templates/inc/panel_table.html:13 -#: netbox/templates/inc/panels/comments.html:10 -#: netbox/templates/ipam/inc/panels/fhrp_groups.html:56 -#: netbox/templates/users/group.html:34 netbox/templates/users/group.html:44 -#: netbox/templates/users/objectpermission.html:77 -#: netbox/templates/users/objectpermission.html:87 -#: netbox/templates/users/user.html:58 netbox/templates/users/user.html:68 +#: templates/account/profile.html:58 +#: templates/circuits/circuit_terminations_swap.html:18 +#: templates/circuits/circuit_terminations_swap.html:26 +#: templates/circuits/circuittermination.html:34 +#: templates/circuits/inc/circuit_termination.html:68 +#: templates/core/objectchange.html:124 templates/core/objectchange.html:142 +#: templates/dcim/devicebay.html:59 +#: templates/dcim/inc/panels/inventory_items.html:45 +#: templates/dcim/interface.html:296 templates/dcim/modulebay.html:80 +#: templates/extras/configcontext.html:70 templates/extras/eventrule.html:66 +#: templates/extras/htmx/script_result.html:60 +#: templates/extras/webhook.html:65 templates/extras/webhook.html:75 +#: templates/inc/panel_table.html:13 templates/inc/panels/comments.html:10 +#: templates/ipam/inc/panels/fhrp_groups.html:56 templates/users/group.html:34 +#: templates/users/group.html:44 templates/users/objectpermission.html:77 +#: templates/users/objectpermission.html:87 templates/users/user.html:58 +#: templates/users/user.html:68 msgid "None" msgstr "无" -#: netbox/templates/account/profile.html:68 -#: netbox/templates/users/user.html:78 +#: templates/account/profile.html:68 templates/users/user.html:78 msgid "Recent Activity" msgstr "近期活动" -#: netbox/templates/account/token.html:8 -#: netbox/templates/account/token_list.html:6 +#: templates/account/token.html:8 templates/account/token_list.html:6 msgid "My API Tokens" msgstr "我的 API Token" -#: netbox/templates/account/token.html:11 -#: netbox/templates/account/token.html:19 netbox/templates/users/token.html:6 -#: netbox/templates/users/token.html:14 netbox/users/forms/filtersets.py:120 +#: templates/account/token.html:11 templates/account/token.html:19 +#: templates/users/token.html:6 templates/users/token.html:14 +#: users/forms/filtersets.py:120 msgid "Token" msgstr "Token" -#: netbox/templates/account/token.html:39 netbox/templates/users/token.html:31 -#: netbox/users/forms/bulk_edit.py:107 +#: templates/account/token.html:39 templates/users/token.html:31 +#: users/forms/bulk_edit.py:107 msgid "Write enabled" msgstr "启用写入" -#: netbox/templates/account/token.html:51 netbox/templates/users/token.html:43 +#: templates/account/token.html:51 templates/users/token.html:43 msgid "Last used" msgstr "最后使用" -#: netbox/templates/account/token_list.html:12 +#: templates/account/token_list.html:12 msgid "Add a Token" msgstr "添加 Token" -#: netbox/templates/base/base.html:22 netbox/templates/home.html:27 +#: templates/base/base.html:22 templates/home.html:27 msgid "Home" msgstr "主页" -#: netbox/templates/base/layout.html:25 +#: templates/base/layout.html:25 msgid "NetBox Motif" msgstr "NetBox 图案" -#: netbox/templates/base/layout.html:38 netbox/templates/base/layout.html:39 -#: netbox/templates/login.html:14 netbox/templates/login.html:15 +#: templates/base/layout.html:38 templates/base/layout.html:39 +#: templates/login.html:14 templates/login.html:15 msgid "NetBox Logo" msgstr "NetBox Logo" -#: netbox/templates/base/layout.html:150 netbox/templates/base/layout.html:151 +#: templates/base/layout.html:150 templates/base/layout.html:151 msgid "Docs" msgstr "文档" -#: netbox/templates/base/layout.html:156 netbox/templates/base/layout.html:157 -#: netbox/templates/rest_framework/api.html:10 +#: templates/base/layout.html:156 templates/base/layout.html:157 +#: templates/rest_framework/api.html:10 msgid "REST API" msgstr "REST API" -#: netbox/templates/base/layout.html:162 netbox/templates/base/layout.html:163 +#: templates/base/layout.html:162 templates/base/layout.html:163 msgid "REST API documentation" msgstr "REST API 文档" -#: netbox/templates/base/layout.html:169 netbox/templates/base/layout.html:170 +#: templates/base/layout.html:169 templates/base/layout.html:170 msgid "GraphQL API" msgstr "GraphQL API" -#: netbox/templates/base/layout.html:185 netbox/templates/base/layout.html:186 +#: templates/base/layout.html:185 templates/base/layout.html:186 msgid "NetBox Labs Support" msgstr "NetBox 实验室支持" -#: netbox/templates/base/layout.html:194 netbox/templates/base/layout.html:195 +#: templates/base/layout.html:194 templates/base/layout.html:195 msgid "Source Code" msgstr "源代码" -#: netbox/templates/base/layout.html:200 netbox/templates/base/layout.html:201 +#: templates/base/layout.html:200 templates/base/layout.html:201 msgid "Community" msgstr "社区" -#: netbox/templates/circuits/circuit.html:47 +#: templates/circuits/circuit.html:47 msgid "Install Date" msgstr "安装时间" -#: netbox/templates/circuits/circuit.html:51 +#: templates/circuits/circuit.html:51 msgid "Termination Date" msgstr "维护模式" -#: netbox/templates/circuits/circuit.html:70 -#: netbox/templates/ipam/inc/panels/fhrp_groups.html:15 +#: templates/circuits/circuit.html:70 +#: templates/ipam/inc/panels/fhrp_groups.html:15 msgid "Assign Group" msgstr "分配组" -#: netbox/templates/circuits/circuit_terminations_swap.html:4 +#: templates/circuits/circuit_terminations_swap.html:4 msgid "Swap Circuit Terminations" msgstr "交换线路终点" -#: netbox/templates/circuits/circuit_terminations_swap.html:8 +#: templates/circuits/circuit_terminations_swap.html:8 #, python-format msgid "Swap these terminations for circuit %(circuit)s?" msgstr "将这些终结换成线路 %(circuit)s?" -#: netbox/templates/circuits/circuit_terminations_swap.html:14 +#: templates/circuits/circuit_terminations_swap.html:14 msgid "A side" msgstr "A端" -#: netbox/templates/circuits/circuit_terminations_swap.html:22 +#: templates/circuits/circuit_terminations_swap.html:22 msgid "Z side" msgstr "Z端" -#: netbox/templates/circuits/circuitgroup.html:16 +#: templates/circuits/circuitgroup.html:16 msgid "Assign Circuit" msgstr "分配电路" -#: netbox/templates/circuits/circuitgroupassignment.html:19 +#: templates/circuits/circuitgroupassignment.html:19 msgid "Circuit Group Assignment" msgstr "电路组分配" -#: netbox/templates/circuits/circuittype.html:10 +#: templates/circuits/circuittype.html:10 msgid "Add Circuit" msgstr "增加线路" -#: netbox/templates/circuits/circuittype.html:19 +#: templates/circuits/circuittype.html:19 msgid "Circuit Type" msgstr "线路类型" -#: netbox/templates/circuits/inc/circuit_termination.html:10 -#: netbox/templates/dcim/devicetype/component_templates.html:33 -#: netbox/templates/dcim/manufacturer.html:11 -#: netbox/templates/dcim/moduletype/component_templates.html:29 -#: netbox/templates/generic/bulk_add_component.html:22 -#: netbox/templates/users/objectpermission.html:38 -#: netbox/utilities/templates/buttons/add.html:4 -#: netbox/utilities/templates/helpers/table_config_form.html:20 +#: templates/circuits/inc/circuit_termination.html:10 +#: templates/dcim/manufacturer.html:11 +#: templates/generic/bulk_add_component.html:22 +#: templates/users/objectpermission.html:38 +#: utilities/templates/buttons/add.html:4 +#: utilities/templates/helpers/table_config_form.html:20 msgid "Add" msgstr "添加" -#: netbox/templates/circuits/inc/circuit_termination.html:15 -#: netbox/templates/circuits/inc/circuit_termination_fields.html:36 -#: netbox/templates/dcim/inc/panels/inventory_items.html:32 -#: netbox/templates/dcim/moduletype/component_templates.html:20 -#: netbox/templates/dcim/powerpanel.html:56 -#: netbox/templates/extras/script_list.html:30 -#: netbox/templates/generic/object_edit.html:47 -#: netbox/templates/ipam/inc/ipaddress_edit_header.html:7 -#: netbox/templates/ipam/inc/panels/fhrp_groups.html:43 -#: netbox/utilities/templates/buttons/edit.html:3 +#: templates/circuits/inc/circuit_termination.html:15 +#: templates/circuits/inc/circuit_termination_fields.html:36 +#: templates/dcim/inc/panels/inventory_items.html:32 +#: templates/dcim/powerpanel.html:56 templates/extras/script_list.html:30 +#: templates/generic/object_edit.html:47 +#: templates/ipam/inc/ipaddress_edit_header.html:7 +#: templates/ipam/inc/panels/fhrp_groups.html:43 +#: utilities/templates/buttons/edit.html:3 msgid "Edit" msgstr "编辑" -#: netbox/templates/circuits/inc/circuit_termination.html:18 +#: templates/circuits/inc/circuit_termination.html:18 msgid "Swap" msgstr "交换" -#: netbox/templates/circuits/inc/circuit_termination_fields.html:19 -#: netbox/templates/dcim/consoleport.html:59 -#: netbox/templates/dcim/consoleserverport.html:60 -#: netbox/templates/dcim/powerfeed.html:114 +#: templates/circuits/inc/circuit_termination_fields.html:19 +#: templates/dcim/consoleport.html:59 templates/dcim/consoleserverport.html:60 +#: templates/dcim/powerfeed.html:114 msgid "Marked as connected" msgstr "标记为已连接" -#: netbox/templates/circuits/inc/circuit_termination_fields.html:21 +#: templates/circuits/inc/circuit_termination_fields.html:21 msgid "to" msgstr "到" -#: netbox/templates/circuits/inc/circuit_termination_fields.html:31 -#: netbox/templates/circuits/inc/circuit_termination_fields.html:32 -#: netbox/templates/dcim/frontport.html:80 -#: netbox/templates/dcim/inc/connection_endpoints.html:7 -#: netbox/templates/dcim/interface.html:154 -#: netbox/templates/dcim/rearport.html:76 +#: templates/circuits/inc/circuit_termination_fields.html:31 +#: templates/circuits/inc/circuit_termination_fields.html:32 +#: templates/dcim/frontport.html:80 +#: templates/dcim/inc/connection_endpoints.html:7 +#: templates/dcim/interface.html:154 templates/dcim/rearport.html:76 msgid "Trace" msgstr "跟踪" -#: netbox/templates/circuits/inc/circuit_termination_fields.html:35 +#: templates/circuits/inc/circuit_termination_fields.html:35 msgid "Edit cable" msgstr "编辑线缆" -#: netbox/templates/circuits/inc/circuit_termination_fields.html:40 +#: templates/circuits/inc/circuit_termination_fields.html:40 msgid "Remove cable" msgstr "删除线缆" -#: netbox/templates/circuits/inc/circuit_termination_fields.html:41 -#: netbox/templates/dcim/bulk_disconnect.html:5 -#: netbox/templates/dcim/device/consoleports.html:12 -#: netbox/templates/dcim/device/consoleserverports.html:12 -#: netbox/templates/dcim/device/frontports.html:12 -#: netbox/templates/dcim/device/interfaces.html:16 -#: netbox/templates/dcim/device/poweroutlets.html:12 -#: netbox/templates/dcim/device/powerports.html:12 -#: netbox/templates/dcim/device/rearports.html:12 -#: netbox/templates/dcim/powerpanel.html:61 +#: templates/circuits/inc/circuit_termination_fields.html:41 +#: templates/dcim/bulk_disconnect.html:5 +#: templates/dcim/device/consoleports.html:12 +#: templates/dcim/device/consoleserverports.html:12 +#: templates/dcim/device/frontports.html:12 +#: templates/dcim/device/interfaces.html:16 +#: templates/dcim/device/poweroutlets.html:12 +#: templates/dcim/device/powerports.html:12 +#: templates/dcim/device/rearports.html:12 templates/dcim/powerpanel.html:61 msgid "Disconnect" msgstr "断开" -#: netbox/templates/circuits/inc/circuit_termination_fields.html:48 -#: netbox/templates/dcim/consoleport.html:69 -#: netbox/templates/dcim/consoleserverport.html:70 -#: netbox/templates/dcim/frontport.html:102 -#: netbox/templates/dcim/interface.html:180 -#: netbox/templates/dcim/interface.html:200 -#: netbox/templates/dcim/powerfeed.html:127 -#: netbox/templates/dcim/poweroutlet.html:71 -#: netbox/templates/dcim/poweroutlet.html:72 -#: netbox/templates/dcim/powerport.html:73 -#: netbox/templates/dcim/rearport.html:98 +#: templates/circuits/inc/circuit_termination_fields.html:48 +#: templates/dcim/consoleport.html:69 templates/dcim/consoleserverport.html:70 +#: templates/dcim/frontport.html:102 templates/dcim/interface.html:180 +#: templates/dcim/interface.html:200 templates/dcim/powerfeed.html:127 +#: templates/dcim/poweroutlet.html:71 templates/dcim/poweroutlet.html:72 +#: templates/dcim/powerport.html:73 templates/dcim/rearport.html:98 msgid "Connect" msgstr "连接" -#: netbox/templates/circuits/inc/circuit_termination_fields.html:70 +#: templates/circuits/inc/circuit_termination_fields.html:70 msgid "Downstream" msgstr "下游" -#: netbox/templates/circuits/inc/circuit_termination_fields.html:71 +#: templates/circuits/inc/circuit_termination_fields.html:71 msgid "Upstream" msgstr "上游" -#: netbox/templates/circuits/inc/circuit_termination_fields.html:80 +#: templates/circuits/inc/circuit_termination_fields.html:80 msgid "Cross-Connect" msgstr "交叉连接" -#: netbox/templates/circuits/inc/circuit_termination_fields.html:84 +#: templates/circuits/inc/circuit_termination_fields.html:84 msgid "Patch Panel/Port" msgstr "配线架/端口" -#: netbox/templates/circuits/provider.html:11 +#: templates/circuits/provider.html:11 msgid "Add circuit" msgstr "添加线路" -#: netbox/templates/circuits/provideraccount.html:17 +#: templates/circuits/provideraccount.html:17 msgid "Provider Account" msgstr "运营商帐户" -#: netbox/templates/core/configrevision.html:35 +#: templates/core/configrevision.html:35 msgid "Configuration Data" msgstr "配置数据" -#: netbox/templates/core/configrevision.html:40 +#: templates/core/configrevision.html:40 msgid "Comment" msgstr "评论" -#: netbox/templates/core/configrevision_restore.html:8 -#: netbox/templates/core/configrevision_restore.html:25 -#: netbox/templates/core/configrevision_restore.html:64 +#: templates/core/configrevision_restore.html:8 +#: templates/core/configrevision_restore.html:25 +#: templates/core/configrevision_restore.html:64 msgid "Restore" msgstr "还原" -#: netbox/templates/core/configrevision_restore.html:36 +#: templates/core/configrevision_restore.html:36 msgid "Parameter" msgstr "参数" -#: netbox/templates/core/configrevision_restore.html:37 +#: templates/core/configrevision_restore.html:37 msgid "Current Value" msgstr "当前变量" -#: netbox/templates/core/configrevision_restore.html:38 +#: templates/core/configrevision_restore.html:38 msgid "New Value" msgstr "新变量" -#: netbox/templates/core/configrevision_restore.html:50 +#: templates/core/configrevision_restore.html:50 msgid "Changed" msgstr "已更改" -#: netbox/templates/core/datafile.html:42 -#: netbox/templates/ipam/iprange.html:25 -#: netbox/templates/virtualization/virtualdisk.html:29 -#: netbox/virtualization/tables/virtualmachines.py:198 +#: templates/core/datafile.html:42 templates/ipam/iprange.html:25 +#: templates/virtualization/virtualdisk.html:29 +#: virtualization/tables/virtualmachines.py:198 msgid "Size" msgstr "大小" -#: netbox/templates/core/datafile.html:43 +#: templates/core/datafile.html:43 msgid "bytes" msgstr "bytes" -#: netbox/templates/core/datafile.html:46 +#: templates/core/datafile.html:46 msgid "SHA256 Hash" msgstr "SHA256 Hash" -#: netbox/templates/core/datasource.html:14 -#: netbox/templates/core/datasource.html:20 -#: netbox/utilities/templates/buttons/sync.html:5 +#: templates/core/datasource.html:14 templates/core/datasource.html:20 +#: utilities/templates/buttons/sync.html:5 msgid "Sync" msgstr "同步" -#: netbox/templates/core/datasource.html:50 +#: templates/core/datasource.html:50 msgid "Last synced" msgstr "最后同步" -#: netbox/templates/core/datasource.html:84 +#: templates/core/datasource.html:84 msgid "Backend" msgstr "后台" -#: netbox/templates/core/datasource.html:99 +#: templates/core/datasource.html:99 msgid "No parameters defined" msgstr "未定义参数" -#: netbox/templates/core/datasource.html:114 +#: templates/core/datasource.html:114 msgid "Files" msgstr "文件" -#: netbox/templates/core/inc/config_data.html:7 +#: templates/core/inc/config_data.html:7 msgid "Rack elevations" msgstr "机柜立面图" -#: netbox/templates/core/inc/config_data.html:10 +#: templates/core/inc/config_data.html:10 msgid "Default unit height" msgstr "默认U位高度" -#: netbox/templates/core/inc/config_data.html:14 +#: templates/core/inc/config_data.html:14 msgid "Default unit width" msgstr "默认U位宽度" -#: netbox/templates/core/inc/config_data.html:20 +#: templates/core/inc/config_data.html:20 msgid "Power feeds" msgstr "供电线路" -#: netbox/templates/core/inc/config_data.html:23 +#: templates/core/inc/config_data.html:23 msgid "Default voltage" msgstr "默认电压" -#: netbox/templates/core/inc/config_data.html:27 +#: templates/core/inc/config_data.html:27 msgid "Default amperage" msgstr "默认电流" -#: netbox/templates/core/inc/config_data.html:31 +#: templates/core/inc/config_data.html:31 msgid "Default max utilization" msgstr "默认最高功率" -#: netbox/templates/core/inc/config_data.html:40 +#: templates/core/inc/config_data.html:40 msgid "Enforce global unique" msgstr "执行全局唯一" -#: netbox/templates/core/inc/config_data.html:83 +#: templates/core/inc/config_data.html:83 msgid "Paginate count" msgstr "分页数量" -#: netbox/templates/core/inc/config_data.html:87 +#: templates/core/inc/config_data.html:87 msgid "Max page size" msgstr "最大页面大小" -#: netbox/templates/core/inc/config_data.html:114 +#: templates/core/inc/config_data.html:114 msgid "User preferences" msgstr "用户首选项" -#: netbox/templates/core/inc/config_data.html:141 +#: templates/core/inc/config_data.html:141 msgid "Job retention" msgstr "任务保留" -#: netbox/templates/core/job.html:35 netbox/templates/core/rq_task.html:12 -#: netbox/templates/core/rq_task.html:49 netbox/templates/core/rq_task.html:58 +#: templates/core/job.html:35 templates/core/rq_task.html:12 +#: templates/core/rq_task.html:49 templates/core/rq_task.html:58 msgid "Job" msgstr "任务" -#: netbox/templates/core/job.html:58 -#: netbox/templates/extras/journalentry.html:26 +#: templates/core/job.html:58 templates/extras/journalentry.html:26 msgid "Created By" msgstr "创建者" -#: netbox/templates/core/job.html:66 +#: templates/core/job.html:66 msgid "Scheduling" msgstr "日程安排" -#: netbox/templates/core/job.html:77 +#: templates/core/job.html:77 #, python-format msgid "every %(interval)s minutes" msgstr "每 %(interval)s 分钟" -#: netbox/templates/core/objectchange.html:29 -#: netbox/templates/users/objectpermission.html:42 +#: templates/core/objectchange.html:29 +#: templates/users/objectpermission.html:42 msgid "Change" msgstr "更改" -#: netbox/templates/core/objectchange.html:79 +#: templates/core/objectchange.html:79 msgid "Difference" msgstr "差异" -#: netbox/templates/core/objectchange.html:82 +#: templates/core/objectchange.html:82 msgid "Previous" msgstr "上一个" -#: netbox/templates/core/objectchange.html:85 +#: templates/core/objectchange.html:85 msgid "Next" msgstr "下一个" -#: netbox/templates/core/objectchange.html:93 +#: templates/core/objectchange.html:93 msgid "Object Created" msgstr "对象已创建" -#: netbox/templates/core/objectchange.html:95 +#: templates/core/objectchange.html:95 msgid "Object Deleted" msgstr "对象已删除" -#: netbox/templates/core/objectchange.html:97 +#: templates/core/objectchange.html:97 msgid "No Changes" msgstr "没有改变" -#: netbox/templates/core/objectchange.html:111 +#: templates/core/objectchange.html:111 msgid "Pre-Change Data" msgstr "变更前配置" -#: netbox/templates/core/objectchange.html:122 +#: templates/core/objectchange.html:122 msgid "Warning: Comparing non-atomic change to previous change record" msgstr "警告:将非原子更改与以前的更改记录进行比较" -#: netbox/templates/core/objectchange.html:131 +#: templates/core/objectchange.html:131 msgid "Post-Change Data" msgstr "变更后配置" -#: netbox/templates/core/objectchange.html:162 +#: templates/core/objectchange.html:162 #, python-format msgid "See All %(count)s Changes" msgstr "查看所有的%(count)s个变更" -#: netbox/templates/core/objectchange_list.html:9 -#: netbox/templates/extras/object_changelog.html:15 +#: templates/core/objectchange_list.html:9 +#: templates/extras/object_changelog.html:15 msgid "Change log retention" msgstr "变更日志保留" -#: netbox/templates/core/objectchange_list.html:9 -#: netbox/templates/extras/object_changelog.html:15 +#: templates/core/objectchange_list.html:9 +#: templates/extras/object_changelog.html:15 msgid "days" msgstr "天" -#: netbox/templates/core/objectchange_list.html:9 -#: netbox/templates/extras/object_changelog.html:15 +#: templates/core/objectchange_list.html:9 +#: templates/extras/object_changelog.html:15 msgid "Indefinite" msgstr "无限期的" -#: netbox/templates/core/plugin.html:21 +#: templates/core/plugin.html:22 msgid "Not installed" msgstr "未安装" -#: netbox/templates/core/plugin.html:32 +#: templates/core/plugin.html:33 msgid "Overview" msgstr "概述" -#: netbox/templates/core/plugin.html:38 +#: templates/core/plugin.html:39 msgid "Install" msgstr "安装" -#: netbox/templates/core/plugin.html:50 +#: templates/core/plugin.html:51 msgid "Plugin Details" msgstr "插件详情" -#: netbox/templates/core/plugin.html:57 +#: templates/core/plugin.html:58 msgid "Summary" msgstr "摘要" -#: netbox/templates/core/plugin.html:75 +#: templates/core/plugin.html:76 msgid "License" msgstr "执照" -#: netbox/templates/core/plugin.html:95 +#: templates/core/plugin.html:96 msgid "Version History" msgstr "版本历史" -#: netbox/templates/core/plugin.html:106 +#: templates/core/plugin.html:107 msgid "Local Installation Instructions" msgstr "本地安装说明" -#: netbox/templates/core/rq_queue_list.html:5 -#: netbox/templates/core/rq_queue_list.html:13 -#: netbox/templates/core/rq_task_list.html:14 -#: netbox/templates/core/rq_worker.html:7 +#: templates/core/rq_queue_list.html:5 templates/core/rq_queue_list.html:13 +#: templates/core/rq_task_list.html:14 templates/core/rq_worker.html:7 msgid "Background Queues" msgstr "后台队列" -#: netbox/templates/core/rq_queue_list.html:24 -#: netbox/templates/core/rq_queue_list.html:25 -#: netbox/templates/core/rq_worker_list.html:49 -#: netbox/templates/core/rq_worker_list.html:50 -#: netbox/templates/extras/script_result.html:67 -#: netbox/templates/extras/script_result.html:69 -#: netbox/templates/inc/table_controls_htmx.html:30 -#: netbox/templates/inc/table_controls_htmx.html:33 +#: templates/core/rq_queue_list.html:24 templates/core/rq_queue_list.html:25 +#: templates/core/rq_worker_list.html:49 templates/core/rq_worker_list.html:50 +#: templates/extras/script_result.html:67 +#: templates/extras/script_result.html:69 +#: templates/inc/table_controls_htmx.html:30 +#: templates/inc/table_controls_htmx.html:33 msgid "Configure Table" msgstr "列设置" -#: netbox/templates/core/rq_task.html:29 +#: templates/core/rq_task.html:29 msgid "Stop" msgstr "停止" -#: netbox/templates/core/rq_task.html:34 +#: templates/core/rq_task.html:34 msgid "Requeue" msgstr "请求" -#: netbox/templates/core/rq_task.html:39 +#: templates/core/rq_task.html:39 msgid "Enqueue" msgstr "排队" -#: netbox/templates/core/rq_task.html:61 +#: templates/core/rq_task.html:61 msgid "Queue" msgstr "队列" -#: netbox/templates/core/rq_task.html:65 +#: templates/core/rq_task.html:65 msgid "Timeout" msgstr "超时" -#: netbox/templates/core/rq_task.html:69 +#: templates/core/rq_task.html:69 msgid "Result TTL" msgstr "TTL 结果" -#: netbox/templates/core/rq_task.html:89 +#: templates/core/rq_task.html:89 msgid "Meta" msgstr "元数据" -#: netbox/templates/core/rq_task.html:93 +#: templates/core/rq_task.html:93 msgid "Arguments" msgstr "参数" -#: netbox/templates/core/rq_task.html:97 +#: templates/core/rq_task.html:97 msgid "Keyword Arguments" msgstr "关键参数" -#: netbox/templates/core/rq_task.html:103 +#: templates/core/rq_task.html:103 msgid "Depends on" msgstr "取决于" -#: netbox/templates/core/rq_task.html:109 +#: templates/core/rq_task.html:109 msgid "Exception" msgstr "例外" -#: netbox/templates/core/rq_task_list.html:28 +#: templates/core/rq_task_list.html:28 msgid "tasks in " msgstr "任务进行中" -#: netbox/templates/core/rq_task_list.html:33 +#: templates/core/rq_task_list.html:33 msgid "Queued Jobs" msgstr "排队中的任务" -#: netbox/templates/core/rq_task_list.html:64 -#: netbox/templates/extras/script_result.html:86 +#: templates/core/rq_task_list.html:64 templates/extras/script_result.html:86 #, python-format msgid "" "Select all %(count)s %(object_type_plural)s matching query" msgstr "选择 所有的 %(count)s 个 %(object_type_plural)s进行查找" -#: netbox/templates/core/rq_worker.html:10 +#: templates/core/rq_worker.html:10 msgid "Worker Info" msgstr "Worker 信息" -#: netbox/templates/core/rq_worker.html:31 -#: netbox/templates/core/rq_worker.html:40 +#: templates/core/rq_worker.html:31 templates/core/rq_worker.html:40 msgid "Worker" msgstr "Worker" -#: netbox/templates/core/rq_worker.html:55 +#: templates/core/rq_worker.html:55 msgid "Queues" msgstr "队列" -#: netbox/templates/core/rq_worker.html:63 +#: templates/core/rq_worker.html:63 msgid "Curent Job" msgstr "当前任务" -#: netbox/templates/core/rq_worker.html:67 +#: templates/core/rq_worker.html:67 msgid "Successful job count" msgstr "完成的任务数" -#: netbox/templates/core/rq_worker.html:71 +#: templates/core/rq_worker.html:71 msgid "Failed job count" msgstr "失败的任务数" -#: netbox/templates/core/rq_worker.html:75 +#: templates/core/rq_worker.html:75 msgid "Total working time" msgstr "任务总计时长" -#: netbox/templates/core/rq_worker.html:76 +#: templates/core/rq_worker.html:76 msgid "seconds" msgstr "秒" -#: netbox/templates/core/rq_worker_list.html:13 -#: netbox/templates/core/rq_worker_list.html:21 +#: templates/core/rq_worker_list.html:13 templates/core/rq_worker_list.html:21 msgid "Background Workers" msgstr "后台任务" -#: netbox/templates/core/rq_worker_list.html:29 +#: templates/core/rq_worker_list.html:29 #, python-format msgid "Workers in %(queue_name)s" msgstr "在%(queue_name)s的 Worker" -#: netbox/templates/core/system.html:11 -#: netbox/utilities/templates/buttons/export.html:4 +#: templates/core/system.html:11 utilities/templates/buttons/export.html:4 msgid "Export" msgstr "导出" -#: netbox/templates/core/system.html:28 +#: templates/core/system.html:28 msgid "System Status" msgstr "系统状态" -#: netbox/templates/core/system.html:31 +#: templates/core/system.html:31 msgid "NetBox release" msgstr "NetBox 发布" -#: netbox/templates/core/system.html:44 +#: templates/core/system.html:44 msgid "Django version" msgstr "Django版本" -#: netbox/templates/core/system.html:48 +#: templates/core/system.html:48 msgid "PostgreSQL version" msgstr "PostgreSQL 版本" -#: netbox/templates/core/system.html:52 +#: templates/core/system.html:52 msgid "Database name" msgstr "数据库名称" -#: netbox/templates/core/system.html:56 +#: templates/core/system.html:56 msgid "Database size" msgstr "数据库大小" -#: netbox/templates/core/system.html:61 +#: templates/core/system.html:61 msgid "Unavailable" msgstr "不可用" -#: netbox/templates/core/system.html:66 +#: templates/core/system.html:66 msgid "RQ workers" msgstr "RQ workers" -#: netbox/templates/core/system.html:69 +#: templates/core/system.html:69 msgid "default queue" msgstr "默认队列" -#: netbox/templates/core/system.html:73 +#: templates/core/system.html:73 msgid "System time" msgstr "系统时间" -#: netbox/templates/core/system.html:85 +#: templates/core/system.html:85 msgid "Current Configuration" msgstr "当前配置" -#: netbox/templates/dcim/bulk_disconnect.html:9 +#: templates/dcim/bulk_disconnect.html:9 #, python-format msgid "" "Are you sure you want to disconnect these %(count)s %(obj_type_plural)s?" msgstr "您确定要断开这些连接 %(count)s %(obj_type_plural)s?" -#: netbox/templates/dcim/cable_trace.html:10 +#: templates/dcim/cable_trace.html:10 #, python-format msgid "Cable Trace for %(object_type)s %(object)s" msgstr "电缆走线用于 %(object_type)s %(object)s" -#: netbox/templates/dcim/cable_trace.html:24 -#: netbox/templates/dcim/inc/rack_elevation.html:7 +#: templates/dcim/cable_trace.html:24 templates/dcim/inc/rack_elevation.html:7 msgid "Download SVG" msgstr "下载 SVG文件" -#: netbox/templates/dcim/cable_trace.html:30 +#: templates/dcim/cable_trace.html:30 msgid "Asymmetric Path" msgstr "非对称路径" -#: netbox/templates/dcim/cable_trace.html:31 +#: templates/dcim/cable_trace.html:31 msgid "The nodes below have no links and result in an asymmetric path" msgstr "下面的节点没有链接,因此路径不对称" -#: netbox/templates/dcim/cable_trace.html:38 +#: templates/dcim/cable_trace.html:38 msgid "Path split" msgstr "(意见) 分歧" -#: netbox/templates/dcim/cable_trace.html:39 +#: templates/dcim/cable_trace.html:39 msgid "Select a node below to continue" msgstr "选择以下节点继续" -#: netbox/templates/dcim/cable_trace.html:55 +#: templates/dcim/cable_trace.html:55 msgid "Trace Completed" msgstr "跟踪已完成" -#: netbox/templates/dcim/cable_trace.html:58 +#: templates/dcim/cable_trace.html:58 msgid "Total segments" msgstr "总分段" -#: netbox/templates/dcim/cable_trace.html:62 +#: templates/dcim/cable_trace.html:62 msgid "Total length" msgstr "总计长度" -#: netbox/templates/dcim/cable_trace.html:77 +#: templates/dcim/cable_trace.html:77 msgid "No paths found" msgstr "未找到路径" -#: netbox/templates/dcim/cable_trace.html:85 +#: templates/dcim/cable_trace.html:85 msgid "Related Paths" msgstr "关联路径" -#: netbox/templates/dcim/cable_trace.html:89 +#: templates/dcim/cable_trace.html:89 msgid "Origin" msgstr "源" -#: netbox/templates/dcim/cable_trace.html:90 +#: templates/dcim/cable_trace.html:90 msgid "Destination" msgstr "目的" -#: netbox/templates/dcim/cable_trace.html:91 +#: templates/dcim/cable_trace.html:91 msgid "Segments" msgstr "分隔符" -#: netbox/templates/dcim/cable_trace.html:104 +#: templates/dcim/cable_trace.html:104 msgid "Incomplete" msgstr "未完成" -#: netbox/templates/dcim/component_list.html:14 +#: templates/dcim/component_list.html:14 msgid "Rename Selected" msgstr "重命名选中项" -#: netbox/templates/dcim/consoleport.html:65 -#: netbox/templates/dcim/consoleserverport.html:66 -#: netbox/templates/dcim/frontport.html:98 -#: netbox/templates/dcim/interface.html:176 -#: netbox/templates/dcim/poweroutlet.html:69 -#: netbox/templates/dcim/powerport.html:69 +#: templates/dcim/consoleport.html:65 templates/dcim/consoleserverport.html:66 +#: templates/dcim/frontport.html:98 templates/dcim/interface.html:176 +#: templates/dcim/poweroutlet.html:69 templates/dcim/powerport.html:69 msgid "Not Connected" msgstr "未连接" -#: netbox/templates/dcim/device.html:34 +#: templates/dcim/device.html:34 msgid "Highlight device in rack" msgstr "突出显示机架中的设备" -#: netbox/templates/dcim/device.html:55 +#: templates/dcim/device.html:55 msgid "Not racked" msgstr "未上架" -#: netbox/templates/dcim/device.html:62 netbox/templates/dcim/site.html:94 +#: templates/dcim/device.html:62 templates/dcim/site.html:94 msgid "GPS Coordinates" msgstr "GPS坐标" -#: netbox/templates/dcim/device.html:68 netbox/templates/dcim/site.html:81 -#: netbox/templates/dcim/site.html:100 +#: templates/dcim/device.html:68 templates/dcim/site.html:81 +#: templates/dcim/site.html:100 msgid "Map" msgstr "地图" -#: netbox/templates/dcim/device.html:108 -#: netbox/templates/dcim/inventoryitem.html:56 -#: netbox/templates/dcim/module.html:81 -#: netbox/templates/dcim/modulebay.html:74 netbox/templates/dcim/rack.html:61 +#: templates/dcim/device.html:108 templates/dcim/inventoryitem.html:56 +#: templates/dcim/module.html:81 templates/dcim/modulebay.html:74 +#: templates/dcim/rack.html:61 msgid "Asset Tag" msgstr "资产标签" -#: netbox/templates/dcim/device.html:123 +#: templates/dcim/device.html:123 msgid "View Virtual Chassis" msgstr "查看堆叠设备" -#: netbox/templates/dcim/device.html:164 +#: templates/dcim/device.html:164 msgid "Create VDC" msgstr "创建VDC" -#: netbox/templates/dcim/device.html:175 -#: netbox/templates/dcim/device_edit.html:64 -#: netbox/virtualization/forms/model_forms.py:223 +#: templates/dcim/device.html:175 templates/dcim/device_edit.html:64 +#: virtualization/forms/model_forms.py:223 msgid "Management" msgstr "管理" -#: netbox/templates/dcim/device.html:195 netbox/templates/dcim/device.html:211 -#: netbox/templates/dcim/device.html:227 -#: netbox/templates/virtualization/virtualmachine.html:57 -#: netbox/templates/virtualization/virtualmachine.html:73 +#: templates/dcim/device.html:195 templates/dcim/device.html:211 +#: templates/dcim/device.html:227 +#: templates/virtualization/virtualmachine.html:57 +#: templates/virtualization/virtualmachine.html:73 msgid "NAT for" msgstr "NAT for" -#: netbox/templates/dcim/device.html:197 netbox/templates/dcim/device.html:213 -#: netbox/templates/dcim/device.html:229 -#: netbox/templates/virtualization/virtualmachine.html:59 -#: netbox/templates/virtualization/virtualmachine.html:75 +#: templates/dcim/device.html:197 templates/dcim/device.html:213 +#: templates/dcim/device.html:229 +#: templates/virtualization/virtualmachine.html:59 +#: templates/virtualization/virtualmachine.html:75 msgid "NAT" msgstr "NAT" -#: netbox/templates/dcim/device.html:252 netbox/templates/dcim/rack.html:73 +#: templates/dcim/device.html:252 templates/dcim/rack.html:73 msgid "Power Utilization" msgstr "电力容量利用率" -#: netbox/templates/dcim/device.html:256 +#: templates/dcim/device.html:256 msgid "Input" msgstr "输入" -#: netbox/templates/dcim/device.html:257 +#: templates/dcim/device.html:257 msgid "Outlets" msgstr "电源插座" -#: netbox/templates/dcim/device.html:258 +#: templates/dcim/device.html:258 msgid "Allocated" msgstr "分配" -#: netbox/templates/dcim/device.html:268 netbox/templates/dcim/device.html:270 -#: netbox/templates/dcim/device.html:286 -#: netbox/templates/dcim/powerfeed.html:67 +#: templates/dcim/device.html:268 templates/dcim/device.html:270 +#: templates/dcim/device.html:286 templates/dcim/powerfeed.html:67 msgid "VA" msgstr "VA" -#: netbox/templates/dcim/device.html:280 +#: templates/dcim/device.html:280 msgctxt "Leg of a power feed" msgid "Leg" msgstr "针" -#: netbox/templates/dcim/device.html:306 -#: netbox/templates/virtualization/virtualmachine.html:158 +#: templates/dcim/device.html:306 +#: templates/virtualization/virtualmachine.html:158 msgid "Add a service" msgstr "添加服务" -#: netbox/templates/dcim/device/base.html:21 -#: netbox/templates/dcim/device_list.html:9 -#: netbox/templates/dcim/devicetype/base.html:18 -#: netbox/templates/dcim/module.html:18 -#: netbox/templates/dcim/moduletype/base.html:18 -#: netbox/templates/virtualization/virtualmachine/base.html:22 -#: netbox/templates/virtualization/virtualmachine_list.html:8 +#: templates/dcim/device/base.html:21 templates/dcim/device_list.html:9 +#: templates/dcim/devicetype/base.html:18 +#: templates/dcim/inc/moduletype_buttons.html:9 templates/dcim/module.html:18 +#: templates/virtualization/virtualmachine/base.html:22 +#: templates/virtualization/virtualmachine_list.html:8 msgid "Add Components" msgstr "添加组件" -#: netbox/templates/dcim/device/consoleports.html:24 +#: templates/dcim/device/consoleports.html:24 msgid "Add Console Ports" msgstr "增加 Console 端口" -#: netbox/templates/dcim/device/consoleserverports.html:24 +#: templates/dcim/device/consoleserverports.html:24 msgid "Add Console Server Ports" msgstr "增加 Console 服务器端口" -#: netbox/templates/dcim/device/devicebays.html:10 +#: templates/dcim/device/devicebays.html:10 msgid "Add Device Bays" msgstr "添加设备托架" -#: netbox/templates/dcim/device/frontports.html:24 +#: templates/dcim/device/frontports.html:24 msgid "Add Front Ports" msgstr "添加前置接口" -#: netbox/templates/dcim/device/inc/interface_table_controls.html:9 +#: templates/dcim/device/inc/interface_table_controls.html:9 msgid "Hide Enabled" msgstr "已启用隐藏" -#: netbox/templates/dcim/device/inc/interface_table_controls.html:10 +#: templates/dcim/device/inc/interface_table_controls.html:10 msgid "Hide Disabled" msgstr "已禁用隐藏" -#: netbox/templates/dcim/device/inc/interface_table_controls.html:11 +#: templates/dcim/device/inc/interface_table_controls.html:11 msgid "Hide Virtual" msgstr "隐藏虚拟对象" -#: netbox/templates/dcim/device/inc/interface_table_controls.html:12 +#: templates/dcim/device/inc/interface_table_controls.html:12 msgid "Hide Disconnected" msgstr "隐藏未连接的" -#: netbox/templates/dcim/device/interfaces.html:27 +#: templates/dcim/device/interfaces.html:27 msgid "Add Interfaces" msgstr "增加接口" -#: netbox/templates/dcim/device/inventory.html:10 -#: netbox/templates/dcim/inc/panels/inventory_items.html:10 +#: templates/dcim/device/inventory.html:10 +#: templates/dcim/inc/panels/inventory_items.html:10 msgid "Add Inventory Item" msgstr "添加库存项" -#: netbox/templates/dcim/device/modulebays.html:10 +#: templates/dcim/device/modulebays.html:10 msgid "Add Module Bays" msgstr "增加设备板卡插槽" -#: netbox/templates/dcim/device/poweroutlets.html:24 +#: templates/dcim/device/poweroutlets.html:24 msgid "Add Power Outlets" msgstr "添加电源插座" -#: netbox/templates/dcim/device/powerports.html:24 +#: templates/dcim/device/powerports.html:24 msgid "Add Power Port" msgstr "添加电源接口" -#: netbox/templates/dcim/device/rearports.html:24 +#: templates/dcim/device/rearports.html:24 msgid "Add Rear Ports" msgstr "添加后置端口" -#: netbox/templates/dcim/device/render_config.html:5 -#: netbox/templates/virtualization/virtualmachine/render_config.html:5 +#: templates/dcim/device/render_config.html:5 +#: templates/virtualization/virtualmachine/render_config.html:5 msgid "Config" msgstr "配置" -#: netbox/templates/dcim/device/render_config.html:35 -#: netbox/templates/virtualization/virtualmachine/render_config.html:35 +#: templates/dcim/device/render_config.html:35 +#: templates/virtualization/virtualmachine/render_config.html:35 msgid "Context Data" msgstr "实例数据" -#: netbox/templates/dcim/device/render_config.html:53 -#: netbox/templates/virtualization/virtualmachine/render_config.html:53 +#: templates/dcim/device/render_config.html:53 +#: templates/virtualization/virtualmachine/render_config.html:53 msgid "Rendered Config" msgstr "提交配置" -#: netbox/templates/dcim/device/render_config.html:55 -#: netbox/templates/virtualization/virtualmachine/render_config.html:55 +#: templates/dcim/device/render_config.html:55 +#: templates/virtualization/virtualmachine/render_config.html:55 msgid "Download" msgstr "下载" -#: netbox/templates/dcim/device/render_config.html:61 -#: netbox/templates/virtualization/virtualmachine/render_config.html:61 +#: templates/dcim/device/render_config.html:61 +#: templates/virtualization/virtualmachine/render_config.html:61 msgid "No configuration template found" msgstr "找不到配置模板" -#: netbox/templates/dcim/device_edit.html:44 +#: templates/dcim/device_edit.html:44 msgid "Parent Bay" msgstr "父托架" -#: netbox/templates/dcim/device_edit.html:48 -#: netbox/utilities/templates/form_helpers/render_field.html:22 +#: templates/dcim/device_edit.html:48 +#: utilities/templates/form_helpers/render_field.html:22 msgid "Regenerate Slug" msgstr "重新生成缩写" -#: netbox/templates/dcim/device_edit.html:49 -#: netbox/templates/generic/bulk_remove.html:21 -#: netbox/utilities/templates/helpers/table_config_form.html:23 +#: templates/dcim/device_edit.html:49 templates/generic/bulk_remove.html:21 +#: utilities/templates/helpers/table_config_form.html:23 msgid "Remove" msgstr "删除" -#: netbox/templates/dcim/device_edit.html:110 +#: templates/dcim/device_edit.html:110 msgid "Local Config Context Data" msgstr "本地配置数据实例" -#: netbox/templates/dcim/device_list.html:82 -#: netbox/templates/dcim/moduletype/component_templates.html:17 -#: netbox/templates/generic/bulk_rename.html:57 -#: netbox/templates/virtualization/virtualmachine/interfaces.html:11 -#: netbox/templates/virtualization/virtualmachine/virtual_disks.html:11 +#: templates/dcim/device_list.html:82 templates/generic/bulk_rename.html:57 +#: templates/virtualization/virtualmachine/interfaces.html:11 +#: templates/virtualization/virtualmachine/virtual_disks.html:11 msgid "Rename" msgstr "重命名" -#: netbox/templates/dcim/devicebay.html:17 +#: templates/dcim/devicebay.html:17 msgid "Device Bay" msgstr "设备托架" -#: netbox/templates/dcim/devicebay.html:43 +#: templates/dcim/devicebay.html:43 msgid "Installed Device" msgstr "已安装设备" -#: netbox/templates/dcim/devicebay_depopulate.html:6 +#: templates/dcim/devicebay_depopulate.html:6 #, python-format msgid "Remove %(device)s from %(device_bay)s?" msgstr "确认从%(device_bay)s移除%(device)s?" -#: netbox/templates/dcim/devicebay_depopulate.html:13 +#: templates/dcim/devicebay_depopulate.html:13 #, python-format msgid "" "Are you sure you want to remove %(device)s from " "%(device_bay)s?" msgstr "确认从%(device_bay)s移除%(device)s?" -#: netbox/templates/dcim/devicebay_populate.html:13 +#: templates/dcim/devicebay_populate.html:13 msgid "Populate" msgstr "填充" -#: netbox/templates/dcim/devicebay_populate.html:22 +#: templates/dcim/devicebay_populate.html:22 msgid "Bay" msgstr "托架" -#: netbox/templates/dcim/devicerole.html:14 -#: netbox/templates/dcim/platform.html:17 +#: templates/dcim/devicerole.html:14 templates/dcim/platform.html:17 msgid "Add Device" msgstr "增加设备" -#: netbox/templates/dcim/devicerole.html:40 +#: templates/dcim/devicerole.html:40 msgid "VM Role" msgstr "虚拟机角色" -#: netbox/templates/dcim/devicetype.html:18 -#: netbox/templates/dcim/moduletype.html:18 +#: templates/dcim/devicetype.html:18 templates/dcim/moduletype.html:29 msgid "Model Name" msgstr "模块名称" -#: netbox/templates/dcim/devicetype.html:25 -#: netbox/templates/dcim/moduletype.html:22 +#: templates/dcim/devicetype.html:25 templates/dcim/moduletype.html:33 msgid "Part Number" msgstr "部件编码(PN)" -#: netbox/templates/dcim/devicetype.html:41 +#: templates/dcim/devicetype.html:41 msgid "Exclude From Utilization" msgstr "从利用率中排除" -#: netbox/templates/dcim/devicetype.html:59 +#: templates/dcim/devicetype.html:59 msgid "Parent/Child" msgstr "父/子" -#: netbox/templates/dcim/devicetype.html:71 +#: templates/dcim/devicetype.html:71 msgid "Front Image" msgstr "正视图" -#: netbox/templates/dcim/devicetype.html:83 +#: templates/dcim/devicetype.html:83 msgid "Rear Image" msgstr "后视图" -#: netbox/templates/dcim/frontport.html:54 +#: templates/dcim/frontport.html:54 msgid "Rear Port Position" msgstr "后置端口位置" -#: netbox/templates/dcim/frontport.html:72 -#: netbox/templates/dcim/interface.html:144 -#: netbox/templates/dcim/poweroutlet.html:63 -#: netbox/templates/dcim/powerport.html:63 -#: netbox/templates/dcim/rearport.html:68 +#: templates/dcim/frontport.html:72 templates/dcim/interface.html:144 +#: templates/dcim/poweroutlet.html:63 templates/dcim/powerport.html:63 +#: templates/dcim/rearport.html:68 msgid "Marked as Connected" msgstr "标记为已连接" -#: netbox/templates/dcim/frontport.html:86 -#: netbox/templates/dcim/rearport.html:82 +#: templates/dcim/frontport.html:86 templates/dcim/rearport.html:82 msgid "Connection Status" msgstr "连接状态" -#: netbox/templates/dcim/htmx/cable_edit.html:10 +#: templates/dcim/htmx/cable_edit.html:10 msgid "A Side" msgstr "A端" -#: netbox/templates/dcim/htmx/cable_edit.html:30 +#: templates/dcim/htmx/cable_edit.html:30 msgid "B Side" msgstr "B端" -#: netbox/templates/dcim/inc/cable_termination.html:65 +#: templates/dcim/inc/cable_termination.html:65 msgid "No termination" msgstr "未成端" -#: netbox/templates/dcim/inc/cable_toggle_buttons.html:3 +#: templates/dcim/inc/cable_toggle_buttons.html:3 msgid "Mark Planned" msgstr "标记为计划中" -#: netbox/templates/dcim/inc/cable_toggle_buttons.html:6 +#: templates/dcim/inc/cable_toggle_buttons.html:6 msgid "Mark Installed" msgstr "标记为已安装" -#: netbox/templates/dcim/inc/connection_endpoints.html:13 +#: templates/dcim/inc/connection_endpoints.html:13 msgid "Path Status" msgstr "路径状态" -#: netbox/templates/dcim/inc/connection_endpoints.html:18 +#: templates/dcim/inc/connection_endpoints.html:18 msgid "Not Reachable" msgstr "不可达" -#: netbox/templates/dcim/inc/connection_endpoints.html:23 +#: templates/dcim/inc/connection_endpoints.html:23 msgid "Path Endpoints" msgstr "路径终点" -#: netbox/templates/dcim/inc/endpoint_connection.html:8 -#: netbox/templates/dcim/powerfeed.html:120 -#: netbox/templates/dcim/rearport.html:94 +#: templates/dcim/inc/endpoint_connection.html:8 +#: templates/dcim/powerfeed.html:120 templates/dcim/rearport.html:94 msgid "Not connected" msgstr "未连接" -#: netbox/templates/dcim/inc/interface_vlans_table.html:6 +#: templates/dcim/inc/interface_vlans_table.html:6 msgid "Untagged" msgstr "未标记的" -#: netbox/templates/dcim/inc/interface_vlans_table.html:37 +#: templates/dcim/inc/interface_vlans_table.html:37 msgid "No VLANs Assigned" msgstr "未分配 VLAN" -#: netbox/templates/dcim/inc/interface_vlans_table.html:44 -#: netbox/templates/ipam/prefix_list.html:16 -#: netbox/templates/ipam/prefix_list.html:33 +#: templates/dcim/inc/interface_vlans_table.html:44 +#: templates/ipam/prefix_list.html:16 templates/ipam/prefix_list.html:33 msgid "Clear" msgstr "清除" -#: netbox/templates/dcim/inc/interface_vlans_table.html:47 +#: templates/dcim/inc/interface_vlans_table.html:47 msgid "Clear All" msgstr "清除所有" -#: netbox/templates/dcim/inc/panels/racktype_dimensions.html:38 +#: templates/dcim/inc/panels/racktype_dimensions.html:38 msgid "Mounting Depth" msgstr "安装深度" -#: netbox/templates/dcim/inc/panels/racktype_numbering.html:6 +#: templates/dcim/inc/panels/racktype_numbering.html:6 msgid "Starting Unit" msgstr "起始U位" -#: netbox/templates/dcim/inc/panels/racktype_numbering.html:10 +#: templates/dcim/inc/panels/racktype_numbering.html:10 msgid "Descending Units" msgstr "降序单位" -#: netbox/templates/dcim/inc/rack_elevation.html:3 +#: templates/dcim/inc/rack_elevation.html:3 msgid "Rack elevation" msgstr "机架仰角" -#: netbox/templates/dcim/interface.html:17 +#: templates/dcim/interface.html:17 msgid "Add Child Interface" msgstr "添加子接口" -#: netbox/templates/dcim/interface.html:50 +#: templates/dcim/interface.html:50 msgid "Speed/Duplex" msgstr "速率/双工模式" -#: netbox/templates/dcim/interface.html:73 +#: templates/dcim/interface.html:73 msgid "PoE Mode" msgstr "PoE模式" -#: netbox/templates/dcim/interface.html:77 +#: templates/dcim/interface.html:77 msgid "PoE Type" msgstr "PoE类型" -#: netbox/templates/dcim/interface.html:81 -#: netbox/templates/virtualization/vminterface.html:63 +#: templates/dcim/interface.html:81 +#: templates/virtualization/vminterface.html:63 msgid "802.1Q Mode" msgstr "802.1Q 模式" -#: netbox/templates/dcim/interface.html:125 -#: netbox/templates/virtualization/vminterface.html:59 +#: templates/dcim/interface.html:125 +#: templates/virtualization/vminterface.html:59 msgid "MAC Address" msgstr "MAC 地址" -#: netbox/templates/dcim/interface.html:151 +#: templates/dcim/interface.html:151 msgid "Wireless Link" msgstr "无线连接" -#: netbox/templates/dcim/interface.html:218 netbox/vpn/choices.py:55 +#: templates/dcim/interface.html:218 vpn/choices.py:55 msgid "Peer" msgstr "对端" -#: netbox/templates/dcim/interface.html:230 -#: netbox/templates/wireless/inc/wirelesslink_interface.html:26 +#: templates/dcim/interface.html:230 +#: templates/wireless/inc/wirelesslink_interface.html:26 msgid "Channel" msgstr "通道" -#: netbox/templates/dcim/interface.html:239 -#: netbox/templates/wireless/inc/wirelesslink_interface.html:32 +#: templates/dcim/interface.html:239 +#: templates/wireless/inc/wirelesslink_interface.html:32 msgid "Channel Frequency" msgstr "通道频率" -#: netbox/templates/dcim/interface.html:242 -#: netbox/templates/dcim/interface.html:250 -#: netbox/templates/dcim/interface.html:261 -#: netbox/templates/dcim/interface.html:269 +#: templates/dcim/interface.html:242 templates/dcim/interface.html:250 +#: templates/dcim/interface.html:261 templates/dcim/interface.html:269 msgid "MHz" msgstr "MHz" -#: netbox/templates/dcim/interface.html:258 -#: netbox/templates/wireless/inc/wirelesslink_interface.html:42 +#: templates/dcim/interface.html:258 +#: templates/wireless/inc/wirelesslink_interface.html:42 msgid "Channel Width" msgstr "信道频率" -#: netbox/templates/dcim/interface.html:285 -#: netbox/templates/wireless/wirelesslan.html:14 -#: netbox/templates/wireless/wirelesslink.html:21 -#: netbox/wireless/forms/bulk_edit.py:60 -#: netbox/wireless/forms/bulk_edit.py:102 -#: netbox/wireless/forms/filtersets.py:40 -#: netbox/wireless/forms/filtersets.py:80 netbox/wireless/models.py:82 -#: netbox/wireless/models.py:156 netbox/wireless/tables/wirelesslan.py:44 +#: templates/dcim/interface.html:285 templates/wireless/wirelesslan.html:14 +#: templates/wireless/wirelesslink.html:21 wireless/forms/bulk_edit.py:60 +#: wireless/forms/bulk_edit.py:102 wireless/forms/filtersets.py:40 +#: wireless/forms/filtersets.py:80 wireless/models.py:82 +#: wireless/models.py:156 wireless/tables/wirelesslan.py:44 msgid "SSID" msgstr "SSID" -#: netbox/templates/dcim/interface.html:305 +#: templates/dcim/interface.html:305 msgid "LAG Members" msgstr "聚合组成员" -#: netbox/templates/dcim/interface.html:323 +#: templates/dcim/interface.html:323 msgid "No member interfaces" msgstr "无成员接口" -#: netbox/templates/dcim/interface.html:343 -#: netbox/templates/ipam/fhrpgroup.html:73 -#: netbox/templates/ipam/iprange/ip_addresses.html:7 -#: netbox/templates/ipam/prefix/ip_addresses.html:7 -#: netbox/templates/virtualization/vminterface.html:89 +#: templates/dcim/interface.html:343 templates/ipam/fhrpgroup.html:73 +#: templates/ipam/iprange/ip_addresses.html:7 +#: templates/ipam/prefix/ip_addresses.html:7 +#: templates/virtualization/vminterface.html:89 msgid "Add IP Address" msgstr "增加 IP 地址" -#: netbox/templates/dcim/inventoryitem.html:24 +#: templates/dcim/inventoryitem.html:24 msgid "Parent Item" msgstr "父项" -#: netbox/templates/dcim/inventoryitem.html:48 +#: templates/dcim/inventoryitem.html:48 msgid "Part ID" msgstr "零件ID" -#: netbox/templates/dcim/location.html:17 +#: templates/dcim/location.html:17 msgid "Add Child Location" msgstr "增加子类位置" -#: netbox/templates/dcim/location.html:77 +#: templates/dcim/location.html:77 msgid "Child Locations" msgstr "子位置" -#: netbox/templates/dcim/location.html:81 netbox/templates/dcim/site.html:131 +#: templates/dcim/location.html:81 templates/dcim/site.html:131 msgid "Add a Location" msgstr "添加一个位置" -#: netbox/templates/dcim/location.html:94 netbox/templates/dcim/site.html:144 +#: templates/dcim/location.html:94 templates/dcim/site.html:144 msgid "Add a Device" msgstr "增加设备" -#: netbox/templates/dcim/manufacturer.html:16 +#: templates/dcim/manufacturer.html:16 msgid "Add Device Type" msgstr "增加设备型号" -#: netbox/templates/dcim/manufacturer.html:21 +#: templates/dcim/manufacturer.html:21 msgid "Add Module Type" msgstr "添加一个模块类型" -#: netbox/templates/dcim/powerfeed.html:53 +#: templates/dcim/powerfeed.html:53 msgid "Connected Device" msgstr "连接设备" -#: netbox/templates/dcim/powerfeed.html:63 +#: templates/dcim/powerfeed.html:63 msgid "Utilization (Allocated" msgstr "利用率(已分配" -#: netbox/templates/dcim/powerfeed.html:80 +#: templates/dcim/powerfeed.html:80 msgid "Electrical Characteristics" msgstr "电气特性" -#: netbox/templates/dcim/powerfeed.html:88 +#: templates/dcim/powerfeed.html:88 msgctxt "Abbreviation for volts" msgid "V" msgstr "V" -#: netbox/templates/dcim/powerfeed.html:92 +#: templates/dcim/powerfeed.html:92 msgctxt "Abbreviation for amperes" msgid "A" msgstr "A" -#: netbox/templates/dcim/poweroutlet.html:48 +#: templates/dcim/poweroutlet.html:48 msgid "Feed Leg" msgstr "电源针脚" -#: netbox/templates/dcim/powerpanel.html:72 +#: templates/dcim/powerpanel.html:72 msgid "Add Power Feeds" msgstr "添加供电线路" -#: netbox/templates/dcim/powerport.html:44 +#: templates/dcim/powerport.html:44 msgid "Maximum Draw" msgstr "最大功率" -#: netbox/templates/dcim/powerport.html:48 +#: templates/dcim/powerport.html:48 msgid "Allocated Draw" msgstr "允许功率" -#: netbox/templates/dcim/rack.html:69 +#: templates/dcim/rack.html:69 msgid "Space Utilization" msgstr "机柜空间利用率" -#: netbox/templates/dcim/rack.html:84 netbox/templates/dcim/racktype.html:44 +#: templates/dcim/rack.html:84 templates/dcim/racktype.html:44 msgid "Rack Weight" msgstr "机柜重量" -#: netbox/templates/dcim/rack.html:94 netbox/templates/dcim/racktype.html:54 +#: templates/dcim/rack.html:94 templates/dcim/racktype.html:54 msgid "Maximum Weight" msgstr "最大承重" -#: netbox/templates/dcim/rack.html:104 +#: templates/dcim/rack.html:104 msgid "Total Weight" msgstr "总重量" -#: netbox/templates/dcim/rack.html:125 -#: netbox/templates/dcim/rack_elevation_list.html:15 +#: templates/dcim/rack.html:125 templates/dcim/rack_elevation_list.html:15 msgid "Images and Labels" msgstr "图片和标签" -#: netbox/templates/dcim/rack.html:126 -#: netbox/templates/dcim/rack_elevation_list.html:16 +#: templates/dcim/rack.html:126 templates/dcim/rack_elevation_list.html:16 msgid "Images only" msgstr "仅图像" -#: netbox/templates/dcim/rack.html:127 -#: netbox/templates/dcim/rack_elevation_list.html:17 +#: templates/dcim/rack.html:127 templates/dcim/rack_elevation_list.html:17 msgid "Labels only" msgstr "仅标签" -#: netbox/templates/dcim/rack/reservations.html:8 +#: templates/dcim/rack/reservations.html:8 msgid "Add reservation" msgstr "增加预留" -#: netbox/templates/dcim/rack_elevation_list.html:12 +#: templates/dcim/rack_elevation_list.html:12 msgid "View List" msgstr "查看列表" -#: netbox/templates/dcim/rack_elevation_list.html:14 +#: templates/dcim/rack_elevation_list.html:14 msgid "Select rack view" msgstr "选择机架视图" -#: netbox/templates/dcim/rack_elevation_list.html:25 +#: templates/dcim/rack_elevation_list.html:25 msgid "Sort By" msgstr "排序方式" -#: netbox/templates/dcim/rack_elevation_list.html:74 +#: templates/dcim/rack_elevation_list.html:74 msgid "No Racks Found" msgstr "找不到机柜" -#: netbox/templates/dcim/rack_list.html:8 +#: templates/dcim/rack_list.html:8 msgid "View Elevations" msgstr "查看机柜立面图" -#: netbox/templates/dcim/rackreservation.html:42 +#: templates/dcim/rackreservation.html:42 msgid "Reservation Details" msgstr "预留详情" -#: netbox/templates/dcim/rackrole.html:10 +#: templates/dcim/rackrole.html:10 msgid "Add Rack" msgstr "增加机柜" -#: netbox/templates/dcim/rearport.html:50 +#: templates/dcim/rearport.html:50 msgid "Positions" msgstr "位置" -#: netbox/templates/dcim/region.html:17 -#: netbox/templates/dcim/sitegroup.html:17 +#: templates/dcim/region.html:17 templates/dcim/sitegroup.html:17 msgid "Add Site" msgstr "增加站点" -#: netbox/templates/dcim/region.html:55 +#: templates/dcim/region.html:55 msgid "Child Regions" msgstr "子区域" -#: netbox/templates/dcim/region.html:59 +#: templates/dcim/region.html:59 msgid "Add Region" msgstr "增加地区" -#: netbox/templates/dcim/site.html:64 +#: templates/dcim/site.html:64 msgid "Time Zone" msgstr "时区" -#: netbox/templates/dcim/site.html:67 +#: templates/dcim/site.html:67 msgid "UTC" msgstr "UTC" -#: netbox/templates/dcim/site.html:68 +#: templates/dcim/site.html:68 msgid "Site time" msgstr "站点时区" -#: netbox/templates/dcim/site.html:75 +#: templates/dcim/site.html:75 msgid "Physical Address" msgstr "实体地址" -#: netbox/templates/dcim/site.html:90 +#: templates/dcim/site.html:90 msgid "Shipping Address" msgstr "物流地址" -#: netbox/templates/dcim/sitegroup.html:55 -#: netbox/templates/tenancy/contactgroup.html:46 -#: netbox/templates/tenancy/tenantgroup.html:55 -#: netbox/templates/wireless/wirelesslangroup.html:55 +#: templates/dcim/sitegroup.html:55 templates/tenancy/contactgroup.html:46 +#: templates/tenancy/tenantgroup.html:55 +#: templates/wireless/wirelesslangroup.html:55 msgid "Child Groups" msgstr "子类组" -#: netbox/templates/dcim/sitegroup.html:59 +#: templates/dcim/sitegroup.html:59 msgid "Add Site Group" msgstr "增加站点组" -#: netbox/templates/dcim/trace/attachment.html:5 -#: netbox/templates/extras/exporttemplate.html:31 +#: templates/dcim/trace/attachment.html:5 +#: templates/extras/exporttemplate.html:31 msgid "Attachment" msgstr "附件" -#: netbox/templates/dcim/virtualchassis.html:57 +#: templates/dcim/virtualchassis.html:57 msgid "Add Member" msgstr "增加成员" -#: netbox/templates/dcim/virtualchassis_add.html:18 +#: templates/dcim/virtualchassis_add.html:18 msgid "Member Devices" msgstr "成员设备" -#: netbox/templates/dcim/virtualchassis_add_member.html:10 +#: templates/dcim/virtualchassis_add_member.html:10 #, python-format msgid "Add New Member to Virtual Chassis %(virtual_chassis)s" msgstr "添加新成员到堆叠%(virtual_chassis)s中" -#: netbox/templates/dcim/virtualchassis_add_member.html:19 +#: templates/dcim/virtualchassis_add_member.html:19 msgid "Add New Member" msgstr "新增成员" -#: netbox/templates/dcim/virtualchassis_add_member.html:27 -#: netbox/templates/generic/object_edit.html:78 -#: netbox/templates/users/objectpermission.html:31 -#: netbox/users/forms/filtersets.py:67 netbox/users/forms/model_forms.py:312 +#: templates/dcim/virtualchassis_add_member.html:27 +#: templates/generic/object_edit.html:78 +#: templates/users/objectpermission.html:31 users/forms/filtersets.py:67 +#: users/forms/model_forms.py:312 msgid "Actions" msgstr "激活" -#: netbox/templates/dcim/virtualchassis_add_member.html:29 +#: templates/dcim/virtualchassis_add_member.html:29 msgid "Save & Add Another" msgstr "保存并添加另一个" -#: netbox/templates/dcim/virtualchassis_edit.html:7 +#: templates/dcim/virtualchassis_edit.html:7 #, python-format msgid "Editing Virtual Chassis %(name)s" msgstr "编辑堆叠%(name)s" -#: netbox/templates/dcim/virtualchassis_edit.html:53 +#: templates/dcim/virtualchassis_edit.html:53 msgid "Rack/Unit" msgstr "机柜/单元" -#: netbox/templates/dcim/virtualchassis_remove_member.html:5 +#: templates/dcim/virtualchassis_remove_member.html:5 msgid "Remove Virtual Chassis Member" msgstr "移除堆叠成员" -#: netbox/templates/dcim/virtualchassis_remove_member.html:9 +#: templates/dcim/virtualchassis_remove_member.html:9 #, python-format msgid "" "Are you sure you want to remove %(device)s from virtual " "chassis %(name)s?" msgstr "确认从%(name)s中移除%(device)s?" -#: netbox/templates/dcim/virtualdevicecontext.html:26 -#: netbox/templates/vpn/l2vpn.html:18 +#: templates/dcim/virtualdevicecontext.html:26 templates/vpn/l2vpn.html:18 msgid "Identifier" msgstr "标识符" -#: netbox/templates/exceptions/import_error.html:6 +#: templates/exceptions/import_error.html:6 msgid "" "A module import error occurred during this request. Common causes include " "the following:" msgstr "此请求过程中发生模块导入错误。常见原因包括:" -#: netbox/templates/exceptions/import_error.html:10 +#: templates/exceptions/import_error.html:10 msgid "Missing required packages" msgstr "缺少必需的程序包" -#: netbox/templates/exceptions/import_error.html:11 +#: templates/exceptions/import_error.html:11 msgid "" "This installation of NetBox might be missing one or more required Python " "packages. These packages are listed in requirements.txt and " @@ -12865,28 +12154,28 @@ msgstr "" "pip freeze from the console and compare the output to the list " "of required packages." -#: netbox/templates/exceptions/import_error.html:20 +#: templates/exceptions/import_error.html:20 msgid "WSGI service not restarted after upgrade" msgstr "升级后未重新启动WSGI服务" -#: netbox/templates/exceptions/import_error.html:21 +#: templates/exceptions/import_error.html:21 msgid "" "If this installation has recently been upgraded, check that the WSGI service" " (e.g. gunicorn or uWSGI) has been restarted. This ensures that the new code" " is running." msgstr "如果系统最近已升级,请检查WSGI服务(例如gunicorn或uWSGI)是否已重新启动。这样可以确保正在运行新代码。" -#: netbox/templates/exceptions/permission_error.html:6 +#: templates/exceptions/permission_error.html:6 msgid "" "A file permission error was detected while processing this request. Common " "causes include the following:" msgstr "处理此请求时检测到文件权限错误。常见原因包括:" -#: netbox/templates/exceptions/permission_error.html:10 +#: templates/exceptions/permission_error.html:10 msgid "Insufficient write permission to the media root" msgstr "对media目录的写入权限不足" -#: netbox/templates/exceptions/permission_error.html:11 +#: templates/exceptions/permission_error.html:11 #, python-format msgid "" "The configured media root is %(media_root)s. Ensure that the " @@ -12894,17 +12183,17 @@ msgid "" "path." msgstr "media目录为%(media_root)s。确保用户NetBox已有权将文件写入此路径" -#: netbox/templates/exceptions/programming_error.html:6 +#: templates/exceptions/programming_error.html:6 msgid "" "A database programming error was detected while processing this request. " "Common causes include the following:" msgstr "处理此请求时检测到数据库错误。常见原因包括:" -#: netbox/templates/exceptions/programming_error.html:10 +#: templates/exceptions/programming_error.html:10 msgid "Database migrations missing" msgstr "缺少数据库迁移" -#: netbox/templates/exceptions/programming_error.html:11 +#: templates/exceptions/programming_error.html:11 msgid "" "When upgrading to a new NetBox release, the upgrade script must be run to " "apply any new database migrations. You can run migrations manually by " @@ -12913,11 +12202,11 @@ msgstr "" "升级到新的NetBox版本时,必须运行升级脚本才能应用任何新的数据库迁移。您可以通过从命令行执行python3 manage.py " "migrate手动进行迁移。" -#: netbox/templates/exceptions/programming_error.html:18 +#: templates/exceptions/programming_error.html:18 msgid "Unsupported PostgreSQL version" msgstr "不支持当前PostgreSQL版本" -#: netbox/templates/exceptions/programming_error.html:19 +#: templates/exceptions/programming_error.html:19 msgid "" "Ensure that PostgreSQL version 12 or later is in use. You can check this by " "connecting to the database using NetBox's credentials and issuing a query " @@ -12926,346 +12215,339 @@ msgstr "" "请确保正在使用PostgreSQL版本12或更高版本。您可以通过使用NetBox用户连接到数据库并执行SELECT " "VERSION()来进行检查。" -#: netbox/templates/extras/configcontext.html:45 -#: netbox/templates/extras/configtemplate.html:37 -#: netbox/templates/extras/exporttemplate.html:51 +#: templates/extras/configcontext.html:45 +#: templates/extras/configtemplate.html:37 +#: templates/extras/exporttemplate.html:51 msgid "The data file associated with this object has been deleted" msgstr "与此对象关联的数据文件已被删除" -#: netbox/templates/extras/configcontext.html:54 -#: netbox/templates/extras/configtemplate.html:46 -#: netbox/templates/extras/exporttemplate.html:60 +#: templates/extras/configcontext.html:54 +#: templates/extras/configtemplate.html:46 +#: templates/extras/exporttemplate.html:60 msgid "Data Synced" msgstr "数据已同步" -#: netbox/templates/extras/configcontext_list.html:7 -#: netbox/templates/extras/configtemplate_list.html:7 -#: netbox/templates/extras/exporttemplate_list.html:7 +#: templates/extras/configcontext_list.html:7 +#: templates/extras/configtemplate_list.html:7 +#: templates/extras/exporttemplate_list.html:7 msgid "Sync Data" msgstr "同步数据" -#: netbox/templates/extras/configtemplate.html:56 +#: templates/extras/configtemplate.html:56 msgid "Environment Parameters" msgstr "环境参数" -#: netbox/templates/extras/configtemplate.html:67 -#: netbox/templates/extras/exporttemplate.html:79 +#: templates/extras/configtemplate.html:67 +#: templates/extras/exporttemplate.html:79 msgid "Template" msgstr "模版" -#: netbox/templates/extras/customfield.html:30 -#: netbox/templates/extras/customlink.html:21 +#: templates/extras/customfield.html:30 templates/extras/customlink.html:21 msgid "Group Name" msgstr "组名称" -#: netbox/templates/extras/customfield.html:42 +#: templates/extras/customfield.html:42 msgid "Must be Unique" msgstr "必须是唯一的" -#: netbox/templates/extras/customfield.html:46 +#: templates/extras/customfield.html:46 msgid "Cloneable" msgstr "可复制" -#: netbox/templates/extras/customfield.html:56 +#: templates/extras/customfield.html:56 msgid "Default Value" msgstr "默认值" -#: netbox/templates/extras/customfield.html:73 +#: templates/extras/customfield.html:73 msgid "Search Weight" msgstr "搜索权重" -#: netbox/templates/extras/customfield.html:83 +#: templates/extras/customfield.html:83 msgid "Filter Logic" msgstr "过滤器规则" -#: netbox/templates/extras/customfield.html:87 +#: templates/extras/customfield.html:87 msgid "Display Weight" msgstr "显示权重" -#: netbox/templates/extras/customfield.html:91 +#: templates/extras/customfield.html:91 msgid "UI Visible" msgstr "页面中可见" -#: netbox/templates/extras/customfield.html:95 +#: templates/extras/customfield.html:95 msgid "UI Editable" msgstr "页面中可编辑" -#: netbox/templates/extras/customfield.html:115 +#: templates/extras/customfield.html:115 msgid "Validation Rules" msgstr "验证规则" -#: netbox/templates/extras/customfield.html:126 +#: templates/extras/customfield.html:126 msgid "Regular Expression" msgstr "正则表达式" -#: netbox/templates/extras/customlink.html:29 +#: templates/extras/customlink.html:29 msgid "Button Class" msgstr "按钮类型" -#: netbox/templates/extras/customlink.html:39 -#: netbox/templates/extras/exporttemplate.html:66 -#: netbox/templates/extras/savedfilter.html:39 +#: templates/extras/customlink.html:39 templates/extras/exporttemplate.html:66 +#: templates/extras/savedfilter.html:39 msgid "Assigned Models" msgstr "指定模块" -#: netbox/templates/extras/customlink.html:52 +#: templates/extras/customlink.html:52 msgid "Link Text" msgstr "链接文本" -#: netbox/templates/extras/customlink.html:58 +#: templates/extras/customlink.html:58 msgid "Link URL" msgstr "链接URL" -#: netbox/templates/extras/dashboard/reset.html:4 -#: netbox/templates/home.html:66 +#: templates/extras/dashboard/reset.html:4 templates/home.html:66 msgid "Reset Dashboard" msgstr "重置仪表盘" -#: netbox/templates/extras/dashboard/reset.html:8 +#: templates/extras/dashboard/reset.html:8 msgid "" "This will remove all configured widgets and restore the " "default dashboard configuration." msgstr "这将删除所有小组件,并恢复默认的仪表板配置。" -#: netbox/templates/extras/dashboard/reset.html:13 +#: templates/extras/dashboard/reset.html:13 msgid "" "This change affects only your dashboard, and will not impact other " "users." msgstr "此更改仅影响的仪表盘,不会影响其他用户。" -#: netbox/templates/extras/dashboard/widget.html:21 +#: templates/extras/dashboard/widget.html:21 msgid "widget configuration" msgstr "小部件配置" -#: netbox/templates/extras/dashboard/widget.html:36 +#: templates/extras/dashboard/widget.html:36 msgid "Close widget" msgstr "关闭小部件" -#: netbox/templates/extras/dashboard/widget_add.html:7 +#: templates/extras/dashboard/widget_add.html:7 msgid "Add a Widget" msgstr "添加小组件" -#: netbox/templates/extras/dashboard/widgets/bookmarks.html:14 +#: templates/extras/dashboard/widgets/bookmarks.html:14 msgid "No bookmarks have been added yet." msgstr "尚未添加书签。" -#: netbox/templates/extras/dashboard/widgets/objectcounts.html:10 +#: templates/extras/dashboard/widgets/objectcounts.html:10 msgid "No permission" msgstr "无权限" -#: netbox/templates/extras/dashboard/widgets/objectlist.html:6 +#: templates/extras/dashboard/widgets/objectlist.html:6 msgid "No permission to view this content" msgstr "没有查看此内容的权限" -#: netbox/templates/extras/dashboard/widgets/objectlist.html:10 +#: templates/extras/dashboard/widgets/objectlist.html:10 msgid "Unable to load content. Invalid view name" msgstr "无法加载内容。无效的视图名称" -#: netbox/templates/extras/dashboard/widgets/rssfeed.html:12 +#: templates/extras/dashboard/widgets/rssfeed.html:12 msgid "No content found" msgstr "未找到内容" -#: netbox/templates/extras/dashboard/widgets/rssfeed.html:18 +#: templates/extras/dashboard/widgets/rssfeed.html:18 msgid "There was a problem fetching the RSS feed" msgstr "获取RSS源时出现问题" -#: netbox/templates/extras/dashboard/widgets/rssfeed.html:21 +#: templates/extras/dashboard/widgets/rssfeed.html:21 msgid "HTTP" msgstr "HTTP" -#: netbox/templates/extras/eventrule.html:61 +#: templates/extras/eventrule.html:61 msgid "Conditions" msgstr "条件" -#: netbox/templates/extras/exporttemplate.html:23 +#: templates/extras/exporttemplate.html:23 msgid "MIME Type" msgstr "MIME类型" -#: netbox/templates/extras/exporttemplate.html:27 +#: templates/extras/exporttemplate.html:27 msgid "File Extension" msgstr "文件扩展名" -#: netbox/templates/extras/htmx/script_result.html:10 +#: templates/extras/htmx/script_result.html:10 msgid "Scheduled for" msgstr "计划为" -#: netbox/templates/extras/htmx/script_result.html:15 +#: templates/extras/htmx/script_result.html:15 msgid "Duration" msgstr "持续时间" -#: netbox/templates/extras/htmx/script_result.html:23 +#: templates/extras/htmx/script_result.html:23 msgid "Test Summary" msgstr "测试总结" -#: netbox/templates/extras/htmx/script_result.html:43 +#: templates/extras/htmx/script_result.html:43 msgid "Log" msgstr "日志" -#: netbox/templates/extras/htmx/script_result.html:56 +#: templates/extras/htmx/script_result.html:56 msgid "Output" msgstr "输出" -#: netbox/templates/extras/inc/result_pending.html:4 +#: templates/extras/inc/result_pending.html:4 msgid "Loading" msgstr "加载中" -#: netbox/templates/extras/inc/result_pending.html:6 +#: templates/extras/inc/result_pending.html:6 msgid "Results pending" msgstr "结果待定" -#: netbox/templates/extras/journalentry.html:15 +#: templates/extras/journalentry.html:15 msgid "Journal Entry" msgstr "日志条目" -#: netbox/templates/extras/notificationgroup.html:11 +#: templates/extras/notificationgroup.html:11 msgid "Notification Group" msgstr "通知组" -#: netbox/templates/extras/notificationgroup.html:36 -#: netbox/templates/extras/notificationgroup.html:46 -#: netbox/utilities/templates/widgets/clearable_file_input.html:12 +#: templates/extras/notificationgroup.html:36 +#: templates/extras/notificationgroup.html:46 +#: utilities/templates/widgets/clearable_file_input.html:12 msgid "None assigned" msgstr "未指定" -#: netbox/templates/extras/object_configcontext.html:19 +#: templates/extras/object_configcontext.html:19 msgid "The local config context overwrites all source contexts" msgstr "本地实例覆盖数据源上的实例" -#: netbox/templates/extras/object_configcontext.html:25 +#: templates/extras/object_configcontext.html:25 msgid "Source Contexts" msgstr "数据源实例" -#: netbox/templates/extras/object_journal.html:17 +#: templates/extras/object_journal.html:17 msgid "New Journal Entry" msgstr "新的日志条目" -#: netbox/templates/extras/report/base.html:30 +#: templates/extras/report/base.html:30 msgid "Report" msgstr "报告" -#: netbox/templates/extras/script.html:14 +#: templates/extras/script.html:14 msgid "You do not have permission to run scripts" msgstr "您没有权限执行脚本" -#: netbox/templates/extras/script.html:41 -#: netbox/templates/extras/script.html:45 -#: netbox/templates/extras/script_list.html:86 +#: templates/extras/script.html:41 templates/extras/script.html:45 +#: templates/extras/script_list.html:86 msgid "Run Script" msgstr "保存运行脚本计划" -#: netbox/templates/extras/script.html:51 -#: netbox/templates/extras/script/source.html:10 +#: templates/extras/script.html:51 templates/extras/script/source.html:10 msgid "Error loading script" msgstr "加载脚本时出错" -#: netbox/templates/extras/script/jobs.html:16 +#: templates/extras/script/jobs.html:16 msgid "Script no longer exists in the source file." msgstr "源文件中没有该脚本。" -#: netbox/templates/extras/script_list.html:46 +#: templates/extras/script_list.html:46 msgid "Last Run" msgstr "上一次运行" -#: netbox/templates/extras/script_list.html:61 +#: templates/extras/script_list.html:61 msgid "Script is no longer present in the source file" msgstr "源文件中没有该脚本。" -#: netbox/templates/extras/script_list.html:74 +#: templates/extras/script_list.html:74 msgid "Never" msgstr "从不" -#: netbox/templates/extras/script_list.html:84 +#: templates/extras/script_list.html:84 msgid "Run Again" msgstr "重新运行" -#: netbox/templates/extras/script_list.html:138 +#: templates/extras/script_list.html:138 msgid "No Scripts Found" msgstr "找不到脚本" -#: netbox/templates/extras/script_list.html:141 +#: templates/extras/script_list.html:141 #, python-format msgid "" "Get started by creating a script from " "an uploaded file or data source." msgstr "从上传的文件或数据源开始创建脚本。" -#: netbox/templates/extras/script_result.html:35 -#: netbox/templates/generic/object_list.html:50 -#: netbox/templates/search.html:13 +#: templates/extras/script_result.html:35 +#: templates/generic/object_list.html:50 templates/search.html:13 msgid "Results" msgstr "结果" -#: netbox/templates/extras/script_result.html:46 +#: templates/extras/script_result.html:46 msgid "Log threshold" msgstr "日志阈值" -#: netbox/templates/extras/script_result.html:56 +#: templates/extras/script_result.html:56 msgid "All" msgstr "全部" -#: netbox/templates/extras/tag.html:32 +#: templates/extras/tag.html:32 msgid "Tagged Items" msgstr "标记的项目" -#: netbox/templates/extras/tag.html:43 +#: templates/extras/tag.html:43 msgid "Allowed Object Types" msgstr "允许的对象类型" -#: netbox/templates/extras/tag.html:51 +#: templates/extras/tag.html:51 msgid "Any" msgstr "所有" -#: netbox/templates/extras/tag.html:57 +#: templates/extras/tag.html:57 msgid "Tagged Item Types" msgstr "标记的项目类型" -#: netbox/templates/extras/tag.html:81 +#: templates/extras/tag.html:81 msgid "Tagged Objects" msgstr "标记的对象" -#: netbox/templates/extras/webhook.html:26 +#: templates/extras/webhook.html:26 msgid "HTTP Method" msgstr "HTTP方法" -#: netbox/templates/extras/webhook.html:34 +#: templates/extras/webhook.html:34 msgid "HTTP Content Type" msgstr "HTTP内容类型" -#: netbox/templates/extras/webhook.html:47 +#: templates/extras/webhook.html:47 msgid "SSL Verification" msgstr "SSL验证" -#: netbox/templates/extras/webhook.html:60 +#: templates/extras/webhook.html:60 msgid "Additional Headers" msgstr "附加标头" -#: netbox/templates/extras/webhook.html:70 +#: templates/extras/webhook.html:70 msgid "Body Template" msgstr "内容模版" -#: netbox/templates/generic/bulk_add_component.html:29 +#: templates/generic/bulk_add_component.html:29 msgid "Bulk Creation" msgstr "批量创建" -#: netbox/templates/generic/bulk_add_component.html:34 -#: netbox/templates/generic/bulk_delete.html:32 -#: netbox/templates/generic/bulk_edit.html:33 +#: templates/generic/bulk_add_component.html:34 +#: templates/generic/bulk_delete.html:32 templates/generic/bulk_edit.html:33 msgid "Selected Objects" msgstr "选定的对象" -#: netbox/templates/generic/bulk_add_component.html:58 +#: templates/generic/bulk_add_component.html:58 msgid "to Add" msgstr "添加" -#: netbox/templates/generic/bulk_delete.html:27 +#: templates/generic/bulk_delete.html:27 msgid "Bulk Delete" msgstr "批量删除" -#: netbox/templates/generic/bulk_delete.html:49 +#: templates/generic/bulk_delete.html:49 msgid "Confirm Bulk Deletion" msgstr "批量删除确认" -#: netbox/templates/generic/bulk_delete.html:50 +#: templates/generic/bulk_delete.html:50 #, python-format msgid "" "The following operation will delete %(count)s " @@ -13273,82 +12555,79 @@ msgid "" "this action." msgstr "以下操作将删除 %(count)s %(type_plural)s。请仔细检查所选对象并确认此操作。" -#: netbox/templates/generic/bulk_edit.html:21 -#: netbox/templates/generic/object_edit.html:22 +#: templates/generic/bulk_edit.html:21 templates/generic/object_edit.html:22 msgid "Editing" msgstr "编辑中" -#: netbox/templates/generic/bulk_edit.html:28 +#: templates/generic/bulk_edit.html:28 msgid "Bulk Edit" msgstr "批量编辑" -#: netbox/templates/generic/bulk_edit.html:107 -#: netbox/templates/generic/bulk_rename.html:66 +#: templates/generic/bulk_edit.html:107 templates/generic/bulk_rename.html:66 msgid "Apply" msgstr "应用" -#: netbox/templates/generic/bulk_import.html:19 +#: templates/generic/bulk_import.html:19 msgid "Bulk Import" msgstr "批量导入" -#: netbox/templates/generic/bulk_import.html:25 +#: templates/generic/bulk_import.html:25 msgid "Direct Import" msgstr "直接导入" -#: netbox/templates/generic/bulk_import.html:30 +#: templates/generic/bulk_import.html:30 msgid "Upload File" msgstr "上传文件" -#: netbox/templates/generic/bulk_import.html:58 -#: netbox/templates/generic/bulk_import.html:80 -#: netbox/templates/generic/bulk_import.html:102 +#: templates/generic/bulk_import.html:58 templates/generic/bulk_import.html:80 +#: templates/generic/bulk_import.html:102 msgid "Submit" msgstr "提交" -#: netbox/templates/generic/bulk_import.html:113 +#: templates/generic/bulk_import.html:113 msgid "Field Options" msgstr "字段选项" -#: netbox/templates/generic/bulk_import.html:119 +#: templates/generic/bulk_import.html:119 msgid "Accessor" msgstr "Accessor" -#: netbox/templates/generic/bulk_import.html:148 +#: templates/generic/bulk_import.html:148 msgid "choices" msgstr "选择" -#: netbox/templates/generic/bulk_import.html:161 +#: templates/generic/bulk_import.html:161 msgid "Import Value" msgstr "导入值" -#: netbox/templates/generic/bulk_import.html:181 +#: templates/generic/bulk_import.html:181 msgid "Format: YYYY-MM-DD" msgstr "格式:年-月-日" -#: netbox/templates/generic/bulk_import.html:183 +#: templates/generic/bulk_import.html:183 msgid "Specify true or false" msgstr "指定true或false" -#: netbox/templates/generic/bulk_import.html:195 +#: templates/generic/bulk_import.html:195 msgid "Required fields must be specified for all objects." msgstr "必须为所有对象指定必填字段" -#: netbox/templates/generic/bulk_import.html:201 +#: templates/generic/bulk_import.html:201 #, python-format msgid "" "Related objects may be referenced by any unique attribute. For example, " "%(example)s would identify a VRF by its route distinguisher." msgstr "相关对象可以由任何唯一的属性引用。例如,%(example)s将通过RD来识别VRF" -#: netbox/templates/generic/bulk_remove.html:28 +#: templates/generic/bulk_remove.html:28 msgid "Bulk Remove" msgstr "批量移除" -#: netbox/templates/generic/bulk_remove.html:42 +#: templates/generic/bulk_remove.html:42 msgid "Confirm Bulk Removal" msgstr "确认批量删除" -#: netbox/templates/generic/bulk_remove.html:43 +#: templates/generic/bulk_remove.html:43 #, python-format msgid "" "The following operation will remove %(count)s %(obj_type_plural)s from " @@ -13357,72 +12636,72 @@ msgid "" msgstr "" "以下操作将从%(parent_obj)s中删除%(count)s个%(obj_type_plural)s,请仔细查看要删除的%(obj_type_plural)s,并在下面进行确认。" -#: netbox/templates/generic/bulk_remove.html:64 +#: templates/generic/bulk_remove.html:64 #, python-format msgid "Remove these %(count)s %(obj_type_plural)s" msgstr "删除%(count)s个 %(obj_type_plural)s" -#: netbox/templates/generic/bulk_rename.html:20 +#: templates/generic/bulk_rename.html:20 msgid "Renaming" msgstr "重命名" -#: netbox/templates/generic/bulk_rename.html:27 +#: templates/generic/bulk_rename.html:27 msgid "Bulk Rename" msgstr "批量重命名" -#: netbox/templates/generic/bulk_rename.html:39 +#: templates/generic/bulk_rename.html:39 msgid "Current Name" msgstr "当前名称" -#: netbox/templates/generic/bulk_rename.html:40 +#: templates/generic/bulk_rename.html:40 msgid "New Name" msgstr "新名称" -#: netbox/templates/generic/bulk_rename.html:64 -#: netbox/utilities/templates/widgets/markdown_input.html:11 +#: templates/generic/bulk_rename.html:64 +#: utilities/templates/widgets/markdown_input.html:11 msgid "Preview" msgstr "预览" -#: netbox/templates/generic/confirmation_form.html:16 +#: templates/generic/confirmation_form.html:16 msgid "Are you sure" msgstr "确认吗" -#: netbox/templates/generic/confirmation_form.html:20 +#: templates/generic/confirmation_form.html:20 msgid "Confirm" msgstr "确认" -#: netbox/templates/generic/object_children.html:47 -#: netbox/utilities/templates/buttons/bulk_edit.html:4 +#: templates/generic/object_children.html:47 +#: utilities/templates/buttons/bulk_edit.html:4 msgid "Edit Selected" msgstr "修改选中项" -#: netbox/templates/generic/object_children.html:61 -#: netbox/utilities/templates/buttons/bulk_delete.html:4 +#: templates/generic/object_children.html:61 +#: utilities/templates/buttons/bulk_delete.html:4 msgid "Delete Selected" msgstr "删除选中项" -#: netbox/templates/generic/object_edit.html:24 +#: templates/generic/object_edit.html:24 #, python-format msgid "Add a new %(object_type)s" msgstr "添加一个新的 %(object_type)s" -#: netbox/templates/generic/object_edit.html:35 +#: templates/generic/object_edit.html:35 msgid "View model documentation" msgstr "查看model文档" -#: netbox/templates/generic/object_edit.html:36 +#: templates/generic/object_edit.html:36 msgid "Help" msgstr "帮助" -#: netbox/templates/generic/object_edit.html:83 +#: templates/generic/object_edit.html:83 msgid "Create & Add Another" msgstr "创建并添加另一个" -#: netbox/templates/generic/object_list.html:57 +#: templates/generic/object_list.html:57 msgid "Filters" msgstr "筛选" -#: netbox/templates/generic/object_list.html:88 +#: templates/generic/object_list.html:88 #, python-format msgid "" "Select all %(count)s " @@ -13431,40 +12710,40 @@ msgstr "" "选择 所有的 %(count)s个 " "%(object_type_plural)s 查询到的记录" -#: netbox/templates/home.html:15 +#: templates/home.html:15 msgid "New Release Available" msgstr "有新版本可用" -#: netbox/templates/home.html:16 +#: templates/home.html:16 msgid "is available" msgstr "可用" -#: netbox/templates/home.html:18 +#: templates/home.html:18 msgctxt "Document title" msgid "Upgrade Instructions" msgstr "升级说明" -#: netbox/templates/home.html:40 +#: templates/home.html:40 msgid "Unlock Dashboard" msgstr "解锁仪表板" -#: netbox/templates/home.html:49 +#: templates/home.html:49 msgid "Lock Dashboard" msgstr "锁定仪表板" -#: netbox/templates/home.html:60 +#: templates/home.html:60 msgid "Add Widget" msgstr "添加小组件" -#: netbox/templates/home.html:63 +#: templates/home.html:63 msgid "Save Layout" msgstr "保存仪表盘" -#: netbox/templates/htmx/delete_form.html:7 +#: templates/htmx/delete_form.html:7 msgid "Confirm Deletion" msgstr "删除确认" -#: netbox/templates/htmx/delete_form.html:11 +#: templates/htmx/delete_form.html:11 #, python-format msgid "" "Are you sure you want to delete " @@ -13473,323 +12752,321 @@ msgstr "" "确认删除 %(object_type)s " "%(object)s?" -#: netbox/templates/htmx/delete_form.html:17 +#: templates/htmx/delete_form.html:17 msgid "The following objects will be deleted as a result of this action." msgstr "此操作将删除以下对象。" -#: netbox/templates/htmx/notifications.html:15 +#: templates/htmx/notifications.html:15 msgid "ago" msgstr "以前" -#: netbox/templates/htmx/notifications.html:26 +#: templates/htmx/notifications.html:26 msgid "No unread notifications" msgstr "没有未读通知" -#: netbox/templates/htmx/notifications.html:31 +#: templates/htmx/notifications.html:31 msgid "All notifications" msgstr "所有通知" -#: netbox/templates/htmx/object_selector.html:5 +#: templates/htmx/object_selector.html:5 msgid "Select" msgstr "选择" -#: netbox/templates/inc/filter_list.html:42 -#: netbox/utilities/templates/helpers/table_config_form.html:39 +#: templates/inc/filter_list.html:43 +#: utilities/templates/helpers/table_config_form.html:39 msgid "Reset" msgstr "重置" -#: netbox/templates/inc/light_toggle.html:4 +#: templates/inc/light_toggle.html:4 msgid "Enable dark mode" msgstr "启用深色模式" -#: netbox/templates/inc/light_toggle.html:7 +#: templates/inc/light_toggle.html:7 msgid "Enable light mode" msgstr "启用浅色模式" -#: netbox/templates/inc/missing_prerequisites.html:8 +#: templates/inc/missing_prerequisites.html:8 #, python-format msgid "" "Before you can add a %(model)s you must first create a " "%(prerequisite_model)s." msgstr "添加%(model)s之前,必须先创建%(prerequisite_model)s." -#: netbox/templates/inc/paginator.html:15 +#: templates/inc/paginator.html:15 msgid "Page selection" msgstr "页面选择" -#: netbox/templates/inc/paginator.html:75 +#: templates/inc/paginator.html:75 #, python-format msgid "Showing %(start)s-%(end)s of %(total)s" msgstr "显示 %(start)s-%(end)s 共 %(total)s" -#: netbox/templates/inc/paginator.html:82 +#: templates/inc/paginator.html:82 msgid "Pagination options" msgstr "分页选项" -#: netbox/templates/inc/paginator.html:86 +#: templates/inc/paginator.html:86 msgid "Per Page" msgstr "每页" -#: netbox/templates/inc/panels/image_attachments.html:10 +#: templates/inc/panels/image_attachments.html:10 msgid "Attach an image" msgstr "增加图片" -#: netbox/templates/inc/panels/related_objects.html:5 +#: templates/inc/panels/related_objects.html:5 msgid "Related Objects" msgstr "相关对象" -#: netbox/templates/inc/panels/tags.html:11 +#: templates/inc/panels/tags.html:11 msgid "No tags assigned" msgstr "没有分配标签" -#: netbox/templates/inc/sync_warning.html:10 +#: templates/inc/sync_warning.html:10 msgid "Data is out of sync with upstream file" msgstr "数据与上游文件不同步" -#: netbox/templates/inc/table_controls_htmx.html:7 +#: templates/inc/table_controls_htmx.html:7 msgid "Quick search" msgstr "快速搜索" -#: netbox/templates/inc/table_controls_htmx.html:20 +#: templates/inc/table_controls_htmx.html:20 msgid "Saved filter" msgstr "保存的筛选" -#: netbox/templates/inc/table_htmx.html:18 +#: templates/inc/table_htmx.html:18 msgid "Clear ordering" msgstr "清除订单" -#: netbox/templates/inc/user_menu.html:6 +#: templates/inc/user_menu.html:6 msgid "Help center" msgstr "帮助中心" -#: netbox/templates/inc/user_menu.html:41 +#: templates/inc/user_menu.html:41 msgid "Django Admin" msgstr "Django Admin" -#: netbox/templates/inc/user_menu.html:61 +#: templates/inc/user_menu.html:61 msgid "Log Out" msgstr "登出" -#: netbox/templates/inc/user_menu.html:68 netbox/templates/login.html:38 +#: templates/inc/user_menu.html:68 templates/login.html:38 msgid "Log In" msgstr "登录" -#: netbox/templates/ipam/aggregate.html:14 -#: netbox/templates/ipam/ipaddress.html:14 -#: netbox/templates/ipam/iprange.html:13 netbox/templates/ipam/prefix.html:15 +#: templates/ipam/aggregate.html:14 templates/ipam/ipaddress.html:14 +#: templates/ipam/iprange.html:13 templates/ipam/prefix.html:15 msgid "Family" msgstr "Family" -#: netbox/templates/ipam/aggregate.html:39 +#: templates/ipam/aggregate.html:39 msgid "Date Added" msgstr "添加日期" -#: netbox/templates/ipam/aggregate/prefixes.html:8 -#: netbox/templates/ipam/prefix/prefixes.html:8 -#: netbox/templates/ipam/role.html:10 +#: templates/ipam/aggregate/prefixes.html:8 +#: templates/ipam/prefix/prefixes.html:8 templates/ipam/role.html:10 msgid "Add Prefix" msgstr "增加IP前缀" -#: netbox/templates/ipam/asn.html:23 +#: templates/ipam/asn.html:23 msgid "AS Number" msgstr "AS号码" -#: netbox/templates/ipam/fhrpgroup.html:52 +#: templates/ipam/fhrpgroup.html:52 msgid "Authentication Type" msgstr "认证类型" -#: netbox/templates/ipam/fhrpgroup.html:56 +#: templates/ipam/fhrpgroup.html:56 msgid "Authentication Key" msgstr "认证密钥" -#: netbox/templates/ipam/fhrpgroup.html:69 +#: templates/ipam/fhrpgroup.html:69 msgid "Virtual IP Addresses" msgstr "虚拟IP地址" -#: netbox/templates/ipam/inc/ipaddress_edit_header.html:13 +#: templates/ipam/inc/ipaddress_edit_header.html:13 msgid "Assign IP" msgstr "分配IP" -#: netbox/templates/ipam/inc/ipaddress_edit_header.html:19 +#: templates/ipam/inc/ipaddress_edit_header.html:19 msgid "Bulk Create" msgstr "批量创建" -#: netbox/templates/ipam/inc/panels/fhrp_groups.html:10 +#: templates/ipam/inc/panels/fhrp_groups.html:10 msgid "Create Group" msgstr "创建组" -#: netbox/templates/ipam/inc/panels/fhrp_groups.html:25 +#: templates/ipam/inc/panels/fhrp_groups.html:25 msgid "Virtual IPs" msgstr "虚拟IP" -#: netbox/templates/ipam/inc/toggle_available.html:7 +#: templates/ipam/inc/toggle_available.html:7 msgid "Show Assigned" msgstr "查看指定的" -#: netbox/templates/ipam/inc/toggle_available.html:10 +#: templates/ipam/inc/toggle_available.html:10 msgid "Show Available" msgstr "查看可用" -#: netbox/templates/ipam/inc/toggle_available.html:13 +#: templates/ipam/inc/toggle_available.html:13 msgid "Show All" msgstr "全部显示" -#: netbox/templates/ipam/ipaddress.html:23 -#: netbox/templates/ipam/iprange.html:45 netbox/templates/ipam/prefix.html:24 +#: templates/ipam/ipaddress.html:23 templates/ipam/iprange.html:45 +#: templates/ipam/prefix.html:24 msgid "Global" msgstr "全局" -#: netbox/templates/ipam/ipaddress.html:85 +#: templates/ipam/ipaddress.html:85 msgid "NAT (outside)" msgstr "NAT(外部ip)" -#: netbox/templates/ipam/ipaddress_assign.html:8 +#: templates/ipam/ipaddress_assign.html:8 msgid "Assign an IP Address" msgstr "分配IP地址" -#: netbox/templates/ipam/ipaddress_assign.html:22 +#: templates/ipam/ipaddress_assign.html:22 msgid "Select IP Address" msgstr "选择IP地址" -#: netbox/templates/ipam/ipaddress_assign.html:35 +#: templates/ipam/ipaddress_assign.html:35 msgid "Search Results" msgstr "搜索结果" -#: netbox/templates/ipam/ipaddress_bulk_add.html:6 +#: templates/ipam/ipaddress_bulk_add.html:6 msgid "Bulk Add IP Addresses" msgstr "批量创建IP地址" -#: netbox/templates/ipam/iprange.html:17 +#: templates/ipam/iprange.html:17 msgid "Starting Address" msgstr "开始地址" -#: netbox/templates/ipam/iprange.html:21 +#: templates/ipam/iprange.html:21 msgid "Ending Address" msgstr "结束地址" -#: netbox/templates/ipam/iprange.html:33 netbox/templates/ipam/prefix.html:110 +#: templates/ipam/iprange.html:33 templates/ipam/prefix.html:110 msgid "Marked fully utilized" msgstr "标记为已全部被使用" -#: netbox/templates/ipam/prefix.html:99 +#: templates/ipam/prefix.html:99 msgid "Addressing Details" msgstr "IP地址详细信息" -#: netbox/templates/ipam/prefix.html:118 +#: templates/ipam/prefix.html:118 msgid "Child IPs" msgstr "子IP" -#: netbox/templates/ipam/prefix.html:126 +#: templates/ipam/prefix.html:126 msgid "Available IPs" msgstr "可用IP" -#: netbox/templates/ipam/prefix.html:138 +#: templates/ipam/prefix.html:138 msgid "First available IP" msgstr "第一个可用IP" -#: netbox/templates/ipam/prefix.html:179 +#: templates/ipam/prefix.html:179 msgid "Prefix Details" msgstr "前缀详细信息" -#: netbox/templates/ipam/prefix.html:185 +#: templates/ipam/prefix.html:185 msgid "Network Address" msgstr "网络地址" -#: netbox/templates/ipam/prefix.html:189 +#: templates/ipam/prefix.html:189 msgid "Network Mask" msgstr "网络掩码/子网掩码" -#: netbox/templates/ipam/prefix.html:193 +#: templates/ipam/prefix.html:193 msgid "Wildcard Mask" msgstr "反掩码" -#: netbox/templates/ipam/prefix.html:197 +#: templates/ipam/prefix.html:197 msgid "Broadcast Address" msgstr "广播地址" -#: netbox/templates/ipam/prefix/ip_ranges.html:7 +#: templates/ipam/prefix/ip_ranges.html:7 msgid "Add IP Range" msgstr "添加IP范围" -#: netbox/templates/ipam/prefix_list.html:7 +#: templates/ipam/prefix_list.html:7 msgid "Hide Depth Indicators" msgstr "隐藏深度值" -#: netbox/templates/ipam/prefix_list.html:11 +#: templates/ipam/prefix_list.html:11 msgid "Max Depth" msgstr "最大深度" -#: netbox/templates/ipam/prefix_list.html:28 +#: templates/ipam/prefix_list.html:28 msgid "Max Length" msgstr "最大长度" -#: netbox/templates/ipam/rir.html:10 +#: templates/ipam/rir.html:10 msgid "Add Aggregate" msgstr "添加聚合IP" -#: netbox/templates/ipam/routetarget.html:38 +#: templates/ipam/routetarget.html:38 msgid "Importing VRFs" msgstr "导入VFR" -#: netbox/templates/ipam/routetarget.html:44 +#: templates/ipam/routetarget.html:44 msgid "Exporting VRFs" msgstr "导出VFR" -#: netbox/templates/ipam/routetarget.html:52 +#: templates/ipam/routetarget.html:52 msgid "Importing L2VPNs" msgstr "导入L2VPN" -#: netbox/templates/ipam/routetarget.html:58 +#: templates/ipam/routetarget.html:58 msgid "Exporting L2VPNs" msgstr "导出L2VPN" -#: netbox/templates/ipam/vlan.html:88 +#: templates/ipam/vlan.html:88 msgid "Add a Prefix" msgstr "添加一个前缀" -#: netbox/templates/ipam/vlangroup.html:18 +#: templates/ipam/vlangroup.html:18 msgid "Add VLAN" msgstr "添加VLAN" -#: netbox/templates/ipam/vrf.html:16 +#: templates/ipam/vrf.html:16 msgid "Route Distinguisher" msgstr "路由实例" -#: netbox/templates/ipam/vrf.html:29 +#: templates/ipam/vrf.html:29 msgid "Unique IP Space" msgstr "独立IP空间" -#: netbox/templates/login.html:29 -#: netbox/utilities/templates/form_helpers/render_errors.html:7 +#: templates/login.html:29 +#: utilities/templates/form_helpers/render_errors.html:7 msgid "Errors" msgstr "错误" -#: netbox/templates/login.html:69 +#: templates/login.html:69 msgid "Sign In" msgstr "登录" -#: netbox/templates/login.html:77 +#: templates/login.html:77 msgctxt "Denotes an alternative option" msgid "Or" msgstr "或" -#: netbox/templates/media_failure.html:7 +#: templates/media_failure.html:7 msgid "Static Media Failure - NetBox" msgstr "静态文件故障-NetBox" -#: netbox/templates/media_failure.html:21 +#: templates/media_failure.html:21 msgid "Static Media Failure" msgstr "静态文件故障" -#: netbox/templates/media_failure.html:23 +#: templates/media_failure.html:23 msgid "The following static media file failed to load" msgstr "无法加载以下静态文件" -#: netbox/templates/media_failure.html:26 +#: templates/media_failure.html:26 msgid "Check the following" msgstr "检查以下内容" -#: netbox/templates/media_failure.html:29 +#: templates/media_failure.html:29 msgid "" "manage.py collectstatic was run during the most recent upgrade." " This installs the most recent iteration of each static file into the static" @@ -13797,7 +13074,7 @@ msgid "" msgstr "" "在升级过程中执行manage.py collectstatic 。这会将每个静态文件的最新迭代版本安装到静态文件根路径中。" -#: netbox/templates/media_failure.html:35 +#: templates/media_failure.html:35 #, python-format msgid "" "The HTTP service (e.g. nginx or Apache) is configured to serve files from " @@ -13807,572 +13084,553 @@ msgstr "" "HTTP服务(例如nginx或Apache)被配置为从STATIC_ROOT路径提供文件。请参考the installation documentation以获取更多指导。" -#: netbox/templates/media_failure.html:47 +#: templates/media_failure.html:47 #, python-format msgid "" "The file %(filename)s exists in the static root directory and " "is readable by the HTTP server." msgstr "文件%(filename)s存在于静态文件根目录中,可由HTTP服务器读取。" -#: netbox/templates/media_failure.html:55 +#: templates/media_failure.html:55 #, python-format msgid "Click here to attempt loading NetBox again." msgstr "点击 这里重新加载NetBox" -#: netbox/templates/tenancy/contact.html:18 netbox/tenancy/filtersets.py:147 -#: netbox/tenancy/forms/bulk_edit.py:137 -#: netbox/tenancy/forms/filtersets.py:102 netbox/tenancy/forms/forms.py:56 -#: netbox/tenancy/forms/model_forms.py:106 -#: netbox/tenancy/forms/model_forms.py:130 -#: netbox/tenancy/tables/contacts.py:98 +#: templates/tenancy/contact.html:18 tenancy/filtersets.py:147 +#: tenancy/forms/bulk_edit.py:137 tenancy/forms/filtersets.py:102 +#: tenancy/forms/forms.py:56 tenancy/forms/model_forms.py:106 +#: tenancy/forms/model_forms.py:130 tenancy/tables/contacts.py:98 msgid "Contact" msgstr "联系人" -#: netbox/templates/tenancy/contact.html:29 -#: netbox/tenancy/forms/bulk_edit.py:99 +#: templates/tenancy/contact.html:29 tenancy/forms/bulk_edit.py:99 msgid "Title" msgstr "标题" -#: netbox/templates/tenancy/contact.html:33 -#: netbox/tenancy/forms/bulk_edit.py:104 netbox/tenancy/tables/contacts.py:64 +#: templates/tenancy/contact.html:33 tenancy/forms/bulk_edit.py:104 +#: tenancy/tables/contacts.py:64 msgid "Phone" msgstr "手机号" -#: netbox/templates/tenancy/contactgroup.html:18 -#: netbox/tenancy/forms/forms.py:66 netbox/tenancy/forms/model_forms.py:75 +#: templates/tenancy/contactgroup.html:18 tenancy/forms/forms.py:66 +#: tenancy/forms/model_forms.py:75 msgid "Contact Group" msgstr "联系人组" -#: netbox/templates/tenancy/contactgroup.html:50 +#: templates/tenancy/contactgroup.html:50 msgid "Add Contact Group" msgstr "增加联系人组" -#: netbox/templates/tenancy/contactrole.html:15 -#: netbox/tenancy/filtersets.py:152 netbox/tenancy/forms/forms.py:61 -#: netbox/tenancy/forms/model_forms.py:87 +#: templates/tenancy/contactrole.html:15 tenancy/filtersets.py:152 +#: tenancy/forms/forms.py:61 tenancy/forms/model_forms.py:87 msgid "Contact Role" msgstr "联系人角色" -#: netbox/templates/tenancy/object_contacts.html:9 +#: templates/tenancy/object_contacts.html:9 msgid "Add a contact" msgstr "增加联系人" -#: netbox/templates/tenancy/tenantgroup.html:17 +#: templates/tenancy/tenantgroup.html:17 msgid "Add Tenant" msgstr "增加租户" -#: netbox/templates/tenancy/tenantgroup.html:26 -#: netbox/tenancy/forms/model_forms.py:32 netbox/tenancy/tables/columns.py:51 -#: netbox/tenancy/tables/columns.py:61 +#: templates/tenancy/tenantgroup.html:26 tenancy/forms/model_forms.py:32 +#: tenancy/tables/columns.py:51 tenancy/tables/columns.py:61 msgid "Tenant Group" msgstr "租户组" -#: netbox/templates/tenancy/tenantgroup.html:59 +#: templates/tenancy/tenantgroup.html:59 msgid "Add Tenant Group" msgstr "增加租户组" -#: netbox/templates/users/group.html:39 netbox/templates/users/user.html:63 +#: templates/users/group.html:39 templates/users/user.html:63 msgid "Assigned Permissions" msgstr "分配的权限" -#: netbox/templates/users/objectpermission.html:6 -#: netbox/templates/users/objectpermission.html:14 -#: netbox/users/forms/filtersets.py:66 +#: templates/users/objectpermission.html:6 +#: templates/users/objectpermission.html:14 users/forms/filtersets.py:66 msgid "Permission" msgstr "权限" -#: netbox/templates/users/objectpermission.html:34 +#: templates/users/objectpermission.html:34 msgid "View" msgstr "查看" -#: netbox/templates/users/objectpermission.html:52 -#: netbox/users/forms/model_forms.py:315 +#: templates/users/objectpermission.html:52 users/forms/model_forms.py:315 msgid "Constraints" msgstr "限制因素" -#: netbox/templates/users/objectpermission.html:72 +#: templates/users/objectpermission.html:72 msgid "Assigned Users" msgstr "分配用户" -#: netbox/templates/virtualization/cluster.html:52 +#: templates/virtualization/cluster.html:52 msgid "Allocated Resources" msgstr "已分配资源" -#: netbox/templates/virtualization/cluster.html:55 -#: netbox/templates/virtualization/virtualmachine.html:125 +#: templates/virtualization/cluster.html:55 +#: templates/virtualization/virtualmachine.html:125 msgid "Virtual CPUs" msgstr "虚拟CPU" -#: netbox/templates/virtualization/cluster.html:59 -#: netbox/templates/virtualization/virtualmachine.html:129 +#: templates/virtualization/cluster.html:59 +#: templates/virtualization/virtualmachine.html:129 msgid "Memory" msgstr "内存" -#: netbox/templates/virtualization/cluster.html:69 -#: netbox/templates/virtualization/virtualmachine.html:140 +#: templates/virtualization/cluster.html:69 +#: templates/virtualization/virtualmachine.html:140 msgid "Disk Space" msgstr "磁盘空间" -#: netbox/templates/virtualization/cluster/base.html:18 +#: templates/virtualization/cluster/base.html:18 msgid "Add Virtual Machine" msgstr "增加虚拟机" -#: netbox/templates/virtualization/cluster/base.html:24 +#: templates/virtualization/cluster/base.html:24 msgid "Assign Device" msgstr "分配设备" -#: netbox/templates/virtualization/cluster/devices.html:10 +#: templates/virtualization/cluster/devices.html:10 msgid "Remove Selected" msgstr "删除选定" -#: netbox/templates/virtualization/cluster_add_devices.html:9 +#: templates/virtualization/cluster_add_devices.html:9 #, python-format msgid "Add Device to Cluster %(cluster)s" msgstr "增加设备到虚拟化集群 %(cluster)s" -#: netbox/templates/virtualization/cluster_add_devices.html:23 +#: templates/virtualization/cluster_add_devices.html:23 msgid "Device Selection" msgstr "设备选择" -#: netbox/templates/virtualization/cluster_add_devices.html:31 +#: templates/virtualization/cluster_add_devices.html:31 msgid "Add Devices" msgstr "增加设备" -#: netbox/templates/virtualization/clustergroup.html:10 -#: netbox/templates/virtualization/clustertype.html:10 +#: templates/virtualization/clustergroup.html:10 +#: templates/virtualization/clustertype.html:10 msgid "Add Cluster" msgstr "增加集群" -#: netbox/templates/virtualization/clustergroup.html:19 -#: netbox/virtualization/forms/model_forms.py:50 +#: templates/virtualization/clustergroup.html:19 +#: virtualization/forms/model_forms.py:50 msgid "Cluster Group" msgstr "集群组" -#: netbox/templates/virtualization/clustertype.html:19 -#: netbox/templates/virtualization/virtualmachine.html:110 -#: netbox/virtualization/forms/model_forms.py:36 +#: templates/virtualization/clustertype.html:19 +#: templates/virtualization/virtualmachine.html:110 +#: virtualization/forms/model_forms.py:36 msgid "Cluster Type" msgstr "集群类型" -#: netbox/templates/virtualization/virtualdisk.html:18 +#: templates/virtualization/virtualdisk.html:18 msgid "Virtual Disk" msgstr "虚拟硬盘" -#: netbox/templates/virtualization/virtualmachine.html:122 -#: netbox/virtualization/forms/bulk_edit.py:190 -#: netbox/virtualization/forms/model_forms.py:224 +#: templates/virtualization/virtualmachine.html:122 +#: virtualization/forms/bulk_edit.py:190 +#: virtualization/forms/model_forms.py:224 msgid "Resources" msgstr "资源" -#: netbox/templates/virtualization/virtualmachine.html:178 +#: templates/virtualization/virtualmachine.html:178 msgid "Add Virtual Disk" msgstr "增加虚拟硬盘" -#: netbox/templates/vpn/ikepolicy.html:10 -#: netbox/templates/vpn/ipsecprofile.html:33 netbox/vpn/tables/crypto.py:166 +#: templates/vpn/ikepolicy.html:10 templates/vpn/ipsecprofile.html:33 +#: vpn/tables/crypto.py:166 msgid "IKE Policy" msgstr "IKE Policy" -#: netbox/templates/vpn/ikepolicy.html:21 +#: templates/vpn/ikepolicy.html:21 msgid "IKE Version" msgstr "IKE 版本" -#: netbox/templates/vpn/ikepolicy.html:29 +#: templates/vpn/ikepolicy.html:29 msgid "Pre-Shared Key" msgstr "预共享密钥-PSK" -#: netbox/templates/vpn/ikepolicy.html:33 -#: netbox/templates/wireless/inc/authentication_attrs.html:20 +#: templates/vpn/ikepolicy.html:33 +#: templates/wireless/inc/authentication_attrs.html:20 msgid "Show Secret" msgstr "显示密码" -#: netbox/templates/vpn/ikepolicy.html:57 -#: netbox/templates/vpn/ipsecpolicy.html:45 -#: netbox/templates/vpn/ipsecprofile.html:52 -#: netbox/templates/vpn/ipsecprofile.html:77 -#: netbox/vpn/forms/model_forms.py:316 netbox/vpn/forms/model_forms.py:352 -#: netbox/vpn/tables/crypto.py:68 netbox/vpn/tables/crypto.py:134 +#: templates/vpn/ikepolicy.html:57 templates/vpn/ipsecpolicy.html:45 +#: templates/vpn/ipsecprofile.html:52 templates/vpn/ipsecprofile.html:77 +#: vpn/forms/model_forms.py:316 vpn/forms/model_forms.py:352 +#: vpn/tables/crypto.py:68 vpn/tables/crypto.py:134 msgid "Proposals" msgstr "Proposals" -#: netbox/templates/vpn/ikeproposal.html:10 +#: templates/vpn/ikeproposal.html:10 msgid "IKE Proposal" msgstr "IKE Proposal" -#: netbox/templates/vpn/ikeproposal.html:21 netbox/vpn/forms/bulk_edit.py:97 -#: netbox/vpn/forms/bulk_import.py:145 netbox/vpn/forms/filtersets.py:101 +#: templates/vpn/ikeproposal.html:21 vpn/forms/bulk_edit.py:97 +#: vpn/forms/bulk_import.py:145 vpn/forms/filtersets.py:101 msgid "Authentication method" msgstr "身份验证方法" -#: netbox/templates/vpn/ikeproposal.html:25 -#: netbox/templates/vpn/ipsecproposal.html:21 -#: netbox/vpn/forms/bulk_edit.py:102 netbox/vpn/forms/bulk_edit.py:172 -#: netbox/vpn/forms/bulk_import.py:149 netbox/vpn/forms/bulk_import.py:195 -#: netbox/vpn/forms/filtersets.py:106 netbox/vpn/forms/filtersets.py:154 +#: templates/vpn/ikeproposal.html:25 templates/vpn/ipsecproposal.html:21 +#: vpn/forms/bulk_edit.py:102 vpn/forms/bulk_edit.py:172 +#: vpn/forms/bulk_import.py:149 vpn/forms/bulk_import.py:195 +#: vpn/forms/filtersets.py:106 vpn/forms/filtersets.py:154 msgid "Encryption algorithm" msgstr "加密算法" -#: netbox/templates/vpn/ikeproposal.html:29 -#: netbox/templates/vpn/ipsecproposal.html:25 -#: netbox/vpn/forms/bulk_edit.py:107 netbox/vpn/forms/bulk_edit.py:177 -#: netbox/vpn/forms/bulk_import.py:153 netbox/vpn/forms/bulk_import.py:200 -#: netbox/vpn/forms/filtersets.py:111 netbox/vpn/forms/filtersets.py:159 +#: templates/vpn/ikeproposal.html:29 templates/vpn/ipsecproposal.html:25 +#: vpn/forms/bulk_edit.py:107 vpn/forms/bulk_edit.py:177 +#: vpn/forms/bulk_import.py:153 vpn/forms/bulk_import.py:200 +#: vpn/forms/filtersets.py:111 vpn/forms/filtersets.py:159 msgid "Authentication algorithm" msgstr "认证算法" -#: netbox/templates/vpn/ikeproposal.html:33 +#: templates/vpn/ikeproposal.html:33 msgid "DH group" msgstr "DH group" -#: netbox/templates/vpn/ikeproposal.html:37 -#: netbox/templates/vpn/ipsecproposal.html:29 -#: netbox/vpn/forms/bulk_edit.py:182 netbox/vpn/models/crypto.py:146 +#: templates/vpn/ikeproposal.html:37 templates/vpn/ipsecproposal.html:29 +#: vpn/forms/bulk_edit.py:182 vpn/models/crypto.py:146 msgid "SA lifetime (seconds)" msgstr "SA生存期(秒)" -#: netbox/templates/vpn/ipsecpolicy.html:10 -#: netbox/templates/vpn/ipsecprofile.html:66 netbox/vpn/tables/crypto.py:170 +#: templates/vpn/ipsecpolicy.html:10 templates/vpn/ipsecprofile.html:66 +#: vpn/tables/crypto.py:170 msgid "IPSec Policy" msgstr "IPSec Policy" -#: netbox/templates/vpn/ipsecpolicy.html:21 netbox/vpn/forms/bulk_edit.py:210 -#: netbox/vpn/models/crypto.py:193 +#: templates/vpn/ipsecpolicy.html:21 vpn/forms/bulk_edit.py:210 +#: vpn/models/crypto.py:193 msgid "PFS group" msgstr "PFS group" -#: netbox/templates/vpn/ipsecprofile.html:10 -#: netbox/vpn/forms/model_forms.py:54 +#: templates/vpn/ipsecprofile.html:10 vpn/forms/model_forms.py:54 msgid "IPSec Profile" msgstr "IPSec Profile" -#: netbox/templates/vpn/ipsecprofile.html:89 netbox/vpn/tables/crypto.py:137 +#: templates/vpn/ipsecprofile.html:89 vpn/tables/crypto.py:137 msgid "PFS Group" msgstr "PFS Group" -#: netbox/templates/vpn/ipsecproposal.html:10 +#: templates/vpn/ipsecproposal.html:10 msgid "IPSec Proposal" msgstr "IPSec Proposal" -#: netbox/templates/vpn/ipsecproposal.html:33 -#: netbox/vpn/forms/bulk_edit.py:186 netbox/vpn/models/crypto.py:152 +#: templates/vpn/ipsecproposal.html:33 vpn/forms/bulk_edit.py:186 +#: vpn/models/crypto.py:152 msgid "SA lifetime (KB)" msgstr "SA生存大小(KB)" -#: netbox/templates/vpn/l2vpn.html:11 -#: netbox/templates/vpn/l2vpntermination.html:9 +#: templates/vpn/l2vpn.html:11 templates/vpn/l2vpntermination.html:9 msgid "L2VPN Attributes" msgstr "L2VPN 属性" -#: netbox/templates/vpn/l2vpn.html:60 netbox/templates/vpn/tunnel.html:76 +#: templates/vpn/l2vpn.html:60 templates/vpn/tunnel.html:76 msgid "Add a Termination" msgstr "增加接入点" -#: netbox/templates/vpn/tunnel.html:9 +#: templates/vpn/tunnel.html:9 msgid "Add Termination" msgstr "增加接入点" -#: netbox/templates/vpn/tunnel.html:37 netbox/vpn/forms/bulk_edit.py:49 -#: netbox/vpn/forms/bulk_import.py:48 netbox/vpn/forms/filtersets.py:57 +#: templates/vpn/tunnel.html:37 vpn/forms/bulk_edit.py:49 +#: vpn/forms/bulk_import.py:48 vpn/forms/filtersets.py:57 msgid "Encapsulation" msgstr "封装" -#: netbox/templates/vpn/tunnel.html:41 netbox/vpn/forms/bulk_edit.py:55 -#: netbox/vpn/forms/bulk_import.py:53 netbox/vpn/forms/filtersets.py:64 -#: netbox/vpn/models/crypto.py:250 netbox/vpn/tables/tunnels.py:51 +#: templates/vpn/tunnel.html:41 vpn/forms/bulk_edit.py:55 +#: vpn/forms/bulk_import.py:53 vpn/forms/filtersets.py:64 +#: vpn/models/crypto.py:250 vpn/tables/tunnels.py:51 msgid "IPSec profile" msgstr "IPSec profile" -#: netbox/templates/vpn/tunnel.html:45 netbox/vpn/forms/bulk_edit.py:69 -#: netbox/vpn/forms/filtersets.py:68 +#: templates/vpn/tunnel.html:45 vpn/forms/bulk_edit.py:69 +#: vpn/forms/filtersets.py:68 msgid "Tunnel ID" msgstr "Tunnel ID" -#: netbox/templates/vpn/tunnelgroup.html:14 +#: templates/vpn/tunnelgroup.html:14 msgid "Add Tunnel" msgstr "增加 Tunnel" -#: netbox/templates/vpn/tunnelgroup.html:23 netbox/vpn/forms/model_forms.py:36 -#: netbox/vpn/forms/model_forms.py:49 +#: templates/vpn/tunnelgroup.html:23 vpn/forms/model_forms.py:36 +#: vpn/forms/model_forms.py:49 msgid "Tunnel Group" msgstr "Tunnel 组" -#: netbox/templates/vpn/tunneltermination.html:10 +#: templates/vpn/tunneltermination.html:10 msgid "Tunnel Termination" msgstr "Tunnel 接入点" -#: netbox/templates/vpn/tunneltermination.html:35 -#: netbox/vpn/forms/bulk_import.py:107 netbox/vpn/forms/model_forms.py:102 -#: netbox/vpn/forms/model_forms.py:138 netbox/vpn/forms/model_forms.py:247 -#: netbox/vpn/tables/tunnels.py:101 +#: templates/vpn/tunneltermination.html:35 vpn/forms/bulk_import.py:107 +#: vpn/forms/model_forms.py:102 vpn/forms/model_forms.py:138 +#: vpn/forms/model_forms.py:247 vpn/tables/tunnels.py:101 msgid "Outside IP" msgstr "外部 IP" -#: netbox/templates/vpn/tunneltermination.html:51 +#: templates/vpn/tunneltermination.html:51 msgid "Peer Terminations" msgstr "对等体接入点" -#: netbox/templates/wireless/inc/authentication_attrs.html:12 +#: templates/wireless/inc/authentication_attrs.html:12 msgid "Cipher" msgstr "加密" -#: netbox/templates/wireless/inc/authentication_attrs.html:16 +#: templates/wireless/inc/authentication_attrs.html:16 msgid "PSK" msgstr "PSK-共享密钥" -#: netbox/templates/wireless/inc/wirelesslink_interface.html:35 -#: netbox/templates/wireless/inc/wirelesslink_interface.html:45 +#: templates/wireless/inc/wirelesslink_interface.html:35 +#: templates/wireless/inc/wirelesslink_interface.html:45 msgctxt "Abbreviation for megahertz" msgid "MHz" msgstr "MHz" -#: netbox/templates/wireless/wirelesslan.html:57 +#: templates/wireless/wirelesslan.html:57 msgid "Attached Interfaces" msgstr "附加接口" -#: netbox/templates/wireless/wirelesslangroup.html:17 +#: templates/wireless/wirelesslangroup.html:17 msgid "Add Wireless LAN" msgstr "增加无线局域网" -#: netbox/templates/wireless/wirelesslangroup.html:26 -#: netbox/wireless/forms/model_forms.py:28 +#: templates/wireless/wirelesslangroup.html:26 +#: wireless/forms/model_forms.py:28 msgid "Wireless LAN Group" msgstr "无线局域网组" -#: netbox/templates/wireless/wirelesslangroup.html:59 +#: templates/wireless/wirelesslangroup.html:59 msgid "Add Wireless LAN Group" msgstr "增加无线局域网组" -#: netbox/templates/wireless/wirelesslink.html:14 +#: templates/wireless/wirelesslink.html:14 msgid "Link Properties" msgstr "链接属性" -#: netbox/templates/wireless/wirelesslink.html:38 -#: netbox/wireless/forms/bulk_edit.py:129 -#: netbox/wireless/forms/filtersets.py:102 -#: netbox/wireless/forms/model_forms.py:165 +#: templates/wireless/wirelesslink.html:38 wireless/forms/bulk_edit.py:129 +#: wireless/forms/filtersets.py:102 wireless/forms/model_forms.py:165 msgid "Distance" msgstr "距离" -#: netbox/tenancy/filtersets.py:28 +#: tenancy/filtersets.py:28 msgid "Parent contact group (ID)" msgstr "父联系人组 (ID)" -#: netbox/tenancy/filtersets.py:34 +#: tenancy/filtersets.py:34 msgid "Parent contact group (slug)" msgstr "父联系人组 (缩写)" -#: netbox/tenancy/filtersets.py:40 netbox/tenancy/filtersets.py:67 -#: netbox/tenancy/filtersets.py:110 +#: tenancy/filtersets.py:40 tenancy/filtersets.py:67 tenancy/filtersets.py:110 msgid "Contact group (ID)" msgstr "联系人组 (ID)" -#: netbox/tenancy/filtersets.py:47 netbox/tenancy/filtersets.py:74 -#: netbox/tenancy/filtersets.py:117 +#: tenancy/filtersets.py:47 tenancy/filtersets.py:74 tenancy/filtersets.py:117 msgid "Contact group (slug)" msgstr "联系人组(缩写)" -#: netbox/tenancy/filtersets.py:104 +#: tenancy/filtersets.py:104 msgid "Contact (ID)" msgstr "联系人 (ID)" -#: netbox/tenancy/filtersets.py:121 +#: tenancy/filtersets.py:121 msgid "Contact role (ID)" msgstr "联系人角色 (ID)" -#: netbox/tenancy/filtersets.py:127 +#: tenancy/filtersets.py:127 msgid "Contact role (slug)" msgstr "联系人角色(缩写)" -#: netbox/tenancy/filtersets.py:158 +#: tenancy/filtersets.py:158 msgid "Contact group" msgstr "联系人组" -#: netbox/tenancy/filtersets.py:169 +#: tenancy/filtersets.py:169 msgid "Parent tenant group (ID)" msgstr "父租户组 (ID)" -#: netbox/tenancy/filtersets.py:175 +#: tenancy/filtersets.py:175 msgid "Parent tenant group (slug)" msgstr "上级租户组(slug)" -#: netbox/tenancy/filtersets.py:181 netbox/tenancy/filtersets.py:201 +#: tenancy/filtersets.py:181 tenancy/filtersets.py:201 msgid "Tenant group (ID)" msgstr "租户组 (ID)" -#: netbox/tenancy/filtersets.py:234 +#: tenancy/filtersets.py:234 msgid "Tenant Group (ID)" msgstr "租户组 (ID)" -#: netbox/tenancy/filtersets.py:241 +#: tenancy/filtersets.py:241 msgid "Tenant Group (slug)" msgstr "租户组(缩写)" -#: netbox/tenancy/forms/bulk_edit.py:66 +#: tenancy/forms/bulk_edit.py:66 msgid "Desciption" msgstr "描述" -#: netbox/tenancy/forms/bulk_import.py:101 +#: tenancy/forms/bulk_import.py:101 msgid "Assigned contact" msgstr "分配联系人" -#: netbox/tenancy/models/contacts.py:32 +#: tenancy/models/contacts.py:32 msgid "contact group" msgstr "联系人组" -#: netbox/tenancy/models/contacts.py:33 +#: tenancy/models/contacts.py:33 msgid "contact groups" msgstr "联系人组" -#: netbox/tenancy/models/contacts.py:48 +#: tenancy/models/contacts.py:48 msgid "contact role" msgstr "联系人角色" -#: netbox/tenancy/models/contacts.py:49 +#: tenancy/models/contacts.py:49 msgid "contact roles" msgstr "联系人角色" -#: netbox/tenancy/models/contacts.py:68 +#: tenancy/models/contacts.py:68 msgid "title" msgstr "职位" -#: netbox/tenancy/models/contacts.py:73 +#: tenancy/models/contacts.py:73 msgid "phone" msgstr "电话号" -#: netbox/tenancy/models/contacts.py:78 +#: tenancy/models/contacts.py:78 msgid "email" msgstr "电子邮箱" -#: netbox/tenancy/models/contacts.py:87 +#: tenancy/models/contacts.py:87 msgid "link" msgstr "链接" -#: netbox/tenancy/models/contacts.py:103 +#: tenancy/models/contacts.py:103 msgid "contact" msgstr "联系人" -#: netbox/tenancy/models/contacts.py:104 +#: tenancy/models/contacts.py:104 msgid "contacts" msgstr "联系人" -#: netbox/tenancy/models/contacts.py:153 +#: tenancy/models/contacts.py:153 msgid "contact assignment" msgstr "联系人分配" -#: netbox/tenancy/models/contacts.py:154 +#: tenancy/models/contacts.py:154 msgid "contact assignments" msgstr "联系人分配" -#: netbox/tenancy/models/contacts.py:170 +#: tenancy/models/contacts.py:170 #, python-brace-format msgid "Contacts cannot be assigned to this object type ({type})." msgstr "无法将联系人分配给此对象类型 ({type})." -#: netbox/tenancy/models/tenants.py:32 +#: tenancy/models/tenants.py:32 msgid "tenant group" msgstr "租户组" -#: netbox/tenancy/models/tenants.py:33 +#: tenancy/models/tenants.py:33 msgid "tenant groups" msgstr "租户组" -#: netbox/tenancy/models/tenants.py:70 +#: tenancy/models/tenants.py:70 msgid "Tenant name must be unique per group." msgstr "每个组的租户名称必须唯一。" -#: netbox/tenancy/models/tenants.py:80 +#: tenancy/models/tenants.py:80 msgid "Tenant slug must be unique per group." msgstr "每个组的租户缩写必须是唯一的。" -#: netbox/tenancy/models/tenants.py:88 +#: tenancy/models/tenants.py:88 msgid "tenant" msgstr "租户" -#: netbox/tenancy/models/tenants.py:89 +#: tenancy/models/tenants.py:89 msgid "tenants" msgstr "租户" -#: netbox/tenancy/tables/contacts.py:112 +#: tenancy/tables/contacts.py:112 msgid "Contact Title" msgstr "联系人职位" -#: netbox/tenancy/tables/contacts.py:116 +#: tenancy/tables/contacts.py:116 msgid "Contact Phone" msgstr "联系人电话号" -#: netbox/tenancy/tables/contacts.py:121 +#: tenancy/tables/contacts.py:121 msgid "Contact Email" msgstr "联系人电子邮箱" -#: netbox/tenancy/tables/contacts.py:125 +#: tenancy/tables/contacts.py:125 msgid "Contact Address" msgstr "联系人地址" -#: netbox/tenancy/tables/contacts.py:129 +#: tenancy/tables/contacts.py:129 msgid "Contact Link" msgstr "联系人链接" -#: netbox/tenancy/tables/contacts.py:133 +#: tenancy/tables/contacts.py:133 msgid "Contact Description" msgstr "联系人描述" -#: netbox/users/filtersets.py:33 netbox/users/filtersets.py:73 +#: users/filtersets.py:33 users/filtersets.py:73 msgid "Permission (ID)" msgstr "权限(ID)" -#: netbox/users/filtersets.py:38 netbox/users/filtersets.py:78 +#: users/filtersets.py:38 users/filtersets.py:78 msgid "Notification group (ID)" msgstr "通知组 (ID)" -#: netbox/users/forms/bulk_edit.py:26 +#: users/forms/bulk_edit.py:26 msgid "First name" msgstr "名字" -#: netbox/users/forms/bulk_edit.py:31 +#: users/forms/bulk_edit.py:31 msgid "Last name" msgstr "姓氏" -#: netbox/users/forms/bulk_edit.py:43 +#: users/forms/bulk_edit.py:43 msgid "Staff status" msgstr "工作人员状态" -#: netbox/users/forms/bulk_edit.py:48 +#: users/forms/bulk_edit.py:48 msgid "Superuser status" msgstr "超级用户状态" -#: netbox/users/forms/bulk_import.py:41 +#: users/forms/bulk_import.py:41 msgid "If no key is provided, one will be generated automatically." msgstr "如果未提供密钥,则会自动生成一个。" -#: netbox/users/forms/filtersets.py:51 netbox/users/tables.py:42 +#: users/forms/filtersets.py:51 users/tables.py:42 msgid "Is Staff" msgstr "是工作人员" -#: netbox/users/forms/filtersets.py:58 netbox/users/tables.py:45 +#: users/forms/filtersets.py:58 users/tables.py:45 msgid "Is Superuser" msgstr "是超级用户" -#: netbox/users/forms/filtersets.py:91 netbox/users/tables.py:86 +#: users/forms/filtersets.py:91 users/tables.py:86 msgid "Can View" msgstr "可查看" -#: netbox/users/forms/filtersets.py:98 netbox/users/tables.py:89 +#: users/forms/filtersets.py:98 users/tables.py:89 msgid "Can Add" msgstr "可以添加" -#: netbox/users/forms/filtersets.py:105 netbox/users/tables.py:92 +#: users/forms/filtersets.py:105 users/tables.py:92 msgid "Can Change" msgstr "可更改" -#: netbox/users/forms/filtersets.py:112 netbox/users/tables.py:95 +#: users/forms/filtersets.py:112 users/tables.py:95 msgid "Can Delete" msgstr "可删除" -#: netbox/users/forms/model_forms.py:62 +#: users/forms/model_forms.py:62 msgid "User Interface" msgstr "用户接口" -#: netbox/users/forms/model_forms.py:114 +#: users/forms/model_forms.py:114 msgid "" "Keys must be at least 40 characters in length. Be sure to record " "your key prior to submitting this form, as it may no longer be " @@ -14380,7 +13638,7 @@ msgid "" msgstr "" "密钥的长度必须至少为40个字符。在提交此表单之前请务必记下您的密钥因为一旦创建了令牌,就可能无法再访问该密钥。" -#: netbox/users/forms/model_forms.py:126 +#: users/forms/model_forms.py:126 msgid "" "Allowed IPv4/IPv6 networks from where the token can be used. Leave blank for" " no restrictions. Example: " @@ -14389,106 +13647,106 @@ msgstr "" "允许使用 Token 的 IPv4/IPv6 网络。留空表示无限制。示例: " "10.1.1.0/24,192.168.10.16/32,2001:db8:1::/64" -#: netbox/users/forms/model_forms.py:175 +#: users/forms/model_forms.py:175 msgid "Confirm password" msgstr "确认密码" -#: netbox/users/forms/model_forms.py:178 +#: users/forms/model_forms.py:178 msgid "Enter the same password as before, for verification." msgstr "输入与以前相同的密码进行验证。" -#: netbox/users/forms/model_forms.py:227 +#: users/forms/model_forms.py:227 msgid "Passwords do not match! Please check your input and try again." msgstr "密码错误!请检查您的输入,然后重试。" -#: netbox/users/forms/model_forms.py:294 +#: users/forms/model_forms.py:294 msgid "Additional actions" msgstr "其他操作" -#: netbox/users/forms/model_forms.py:297 +#: users/forms/model_forms.py:297 msgid "Actions granted in addition to those listed above" msgstr "除上述操作外,还批准了其他操作" -#: netbox/users/forms/model_forms.py:313 +#: users/forms/model_forms.py:313 msgid "Objects" msgstr "对象" -#: netbox/users/forms/model_forms.py:325 +#: users/forms/model_forms.py:325 msgid "" "JSON expression of a queryset filter that will return only permitted " "objects. Leave null to match all objects of this type. A list of multiple " "objects will result in a logical OR operation." msgstr "查询集筛选器的JSON表达式,该表达式将只返回允许的对象。保留null以匹配此类型的所有对象。多个对象的列表将执行“或”运算。" -#: netbox/users/forms/model_forms.py:364 +#: users/forms/model_forms.py:364 msgid "At least one action must be selected." msgstr "必须至少选择一个操作。" -#: netbox/users/forms/model_forms.py:382 +#: users/forms/model_forms.py:382 #, python-brace-format msgid "Invalid filter for {model}: {error}" msgstr "{model}的筛选器无效: {error}" -#: netbox/users/models/permissions.py:39 +#: users/models/permissions.py:39 msgid "The list of actions granted by this permission" msgstr "该权限授予的操作列表" -#: netbox/users/models/permissions.py:44 +#: users/models/permissions.py:44 msgid "constraints" msgstr "限制条件" -#: netbox/users/models/permissions.py:45 +#: users/models/permissions.py:45 msgid "" "Queryset filter matching the applicable objects of the selected type(s)" msgstr "与所选类型的适用对象匹配的查询集过滤器" -#: netbox/users/models/permissions.py:52 +#: users/models/permissions.py:52 msgid "permission" msgstr "允许" -#: netbox/users/models/permissions.py:53 netbox/users/models/users.py:47 +#: users/models/permissions.py:53 users/models/users.py:47 msgid "permissions" msgstr "权限" -#: netbox/users/models/preferences.py:29 netbox/users/models/preferences.py:30 +#: users/models/preferences.py:29 users/models/preferences.py:30 msgid "user preferences" msgstr "用户首选项" -#: netbox/users/models/preferences.py:97 +#: users/models/preferences.py:97 #, python-brace-format msgid "Key '{path}' is a leaf node; cannot assign new keys" msgstr "Key '{path}' 是一个子节点;无法分配新密钥" -#: netbox/users/models/preferences.py:109 +#: users/models/preferences.py:109 #, python-brace-format msgid "Key '{path}' is a dictionary; cannot assign a non-dictionary value" msgstr "Key '{path}'是一个字典;无法分配非字典值" -#: netbox/users/models/tokens.py:36 +#: users/models/tokens.py:36 msgid "expires" msgstr "过期" -#: netbox/users/models/tokens.py:41 +#: users/models/tokens.py:41 msgid "last used" msgstr "最后使用" -#: netbox/users/models/tokens.py:46 +#: users/models/tokens.py:46 msgid "key" msgstr "key" -#: netbox/users/models/tokens.py:52 +#: users/models/tokens.py:52 msgid "write enabled" msgstr "可写开启" -#: netbox/users/models/tokens.py:54 +#: users/models/tokens.py:54 msgid "Permit create/update/delete operations using this key" msgstr "允许使用此密钥进行创建/更新/删除操作" -#: netbox/users/models/tokens.py:65 +#: users/models/tokens.py:65 msgid "allowed IPs" msgstr "允许的 IP" -#: netbox/users/models/tokens.py:67 +#: users/models/tokens.py:67 msgid "" "Allowed IPv4/IPv6 networks from where the token can be used. Leave blank for" " no restrictions. Ex: \"10.1.1.0/24, 192.168.10.16/32, 2001:DB8:1::/64\"" @@ -14496,208 +13754,207 @@ msgstr "" "允许使用 token 的 IPv4/IPv6 网络。 留空表示没有限制。 " "例如:“10.1.1.0/24、192.168.10.16/32、2001:DB8:1::/64”" -#: netbox/users/models/tokens.py:75 +#: users/models/tokens.py:75 msgid "token" msgstr "token" -#: netbox/users/models/tokens.py:76 +#: users/models/tokens.py:76 msgid "tokens" msgstr "tokens" -#: netbox/users/models/users.py:57 netbox/vpn/models/crypto.py:42 +#: users/models/users.py:57 vpn/models/crypto.py:42 msgid "group" msgstr "组" -#: netbox/users/models/users.py:92 +#: users/models/users.py:92 msgid "user" msgstr "用户" -#: netbox/users/models/users.py:104 +#: users/models/users.py:104 msgid "A user with this username already exists." msgstr "用户名已使用。" -#: netbox/users/tables.py:98 +#: users/tables.py:98 msgid "Custom Actions" msgstr "自定义操作" -#: netbox/utilities/api.py:153 +#: utilities/api.py:153 #, python-brace-format msgid "Related object not found using the provided attributes: {params}" msgstr "使用提供的属性找不到相关对象: {params}" -#: netbox/utilities/api.py:156 +#: utilities/api.py:156 #, python-brace-format msgid "Multiple objects match the provided attributes: {params}" msgstr "多个对象与提供的属性匹配: {params}" -#: netbox/utilities/api.py:168 +#: utilities/api.py:168 #, python-brace-format msgid "" "Related objects must be referenced by numeric ID or by dictionary of " "attributes. Received an unrecognized value: {value}" msgstr "相关对象必须由数字ID或属性字典引用。接收到无法识别的值: {value}" -#: netbox/utilities/api.py:177 +#: utilities/api.py:177 #, python-brace-format msgid "Related object not found using the provided numeric ID: {id}" msgstr "使用提供的ID找不到相关对象: {id}" -#: netbox/utilities/choices.py:19 +#: utilities/choices.py:19 #, python-brace-format msgid "{name} has a key defined but CHOICES is not a list" msgstr "{name} 已定义键,但 CHOICES 不是列表" -#: netbox/utilities/conversion.py:19 +#: utilities/conversion.py:19 msgid "Weight must be a positive number" msgstr "重量必须是正数" -#: netbox/utilities/conversion.py:21 +#: utilities/conversion.py:21 #, python-brace-format msgid "Invalid value '{weight}' for weight (must be a number)" msgstr " '{weight}' 为无效重量(必须是数字)" -#: netbox/utilities/conversion.py:32 netbox/utilities/conversion.py:62 +#: utilities/conversion.py:32 utilities/conversion.py:62 #, python-brace-format msgid "Unknown unit {unit}. Must be one of the following: {valid_units}" msgstr "{unit}无效。请使用 {valid_units}" -#: netbox/utilities/conversion.py:45 +#: utilities/conversion.py:45 msgid "Length must be a positive number" msgstr "长度必须是正数" -#: netbox/utilities/conversion.py:47 +#: utilities/conversion.py:47 #, python-brace-format msgid "Invalid value '{length}' for length (must be a number)" msgstr " '{length}' 为无效的长度(必须是数字)" -#: netbox/utilities/error_handlers.py:31 +#: utilities/error_handlers.py:31 #, python-brace-format msgid "" "Unable to delete {objects}. {count} dependent objects were " "found: " msgstr "无法删除{objects}。 找到了 {count} 个依赖对象:" -#: netbox/utilities/error_handlers.py:33 +#: utilities/error_handlers.py:33 msgid "More than 50" msgstr "超过50个" -#: netbox/utilities/fields.py:30 +#: utilities/fields.py:30 msgid "RGB color in hexadecimal. Example: " msgstr "以十六进制表示的 RGB 颜色。例如:" -#: netbox/utilities/fields.py:159 +#: utilities/fields.py:159 #, python-format msgid "" "%s(%r) is invalid. to_model parameter to CounterCacheField must be a string " "in the format 'app.model'" msgstr "%s(%r)无效。CounterCacheField的to_model参数必须是格式为“app.model”的字符串" -#: netbox/utilities/fields.py:169 +#: utilities/fields.py:169 #, python-format msgid "" "%s(%r) is invalid. to_field parameter to CounterCacheField must be a string " "in the format 'field'" msgstr "%s(%r)无效。CounterCacheField的to_field参数必须是格式为“field”的字符串" -#: netbox/utilities/forms/bulk_import.py:23 +#: utilities/forms/bulk_import.py:23 msgid "Enter object data in CSV, JSON or YAML format." msgstr "输入 CSV、JSON 或 YAML 格式的对象数据。" -#: netbox/utilities/forms/bulk_import.py:36 +#: utilities/forms/bulk_import.py:36 msgid "CSV delimiter" msgstr "CSV 分隔符" -#: netbox/utilities/forms/bulk_import.py:37 +#: utilities/forms/bulk_import.py:37 msgid "The character which delimits CSV fields. Applies only to CSV format." msgstr "分隔 CSV 字段的字符。 仅适用于 CSV 格式。" -#: netbox/utilities/forms/bulk_import.py:51 +#: utilities/forms/bulk_import.py:51 msgid "Form data must be empty when uploading/selecting a file." msgstr "上传/选择文件时,表单数据必须为空。" -#: netbox/utilities/forms/bulk_import.py:80 +#: utilities/forms/bulk_import.py:80 #, python-brace-format msgid "Unknown data format: {format}" msgstr "未知数据格式:{format}" -#: netbox/utilities/forms/bulk_import.py:100 +#: utilities/forms/bulk_import.py:100 msgid "Unable to detect data format. Please specify." msgstr "无法检测数据格式。 请手动指定。" -#: netbox/utilities/forms/bulk_import.py:123 +#: utilities/forms/bulk_import.py:123 msgid "Invalid CSV delimiter" msgstr "CSV 分隔符无效" -#: netbox/utilities/forms/bulk_import.py:167 +#: utilities/forms/bulk_import.py:167 msgid "" "Invalid YAML data. Data must be in the form of multiple documents, or a " "single document comprising a list of dictionaries." msgstr "YAML 数据无效。 数据必须采用多个文档的形式,或包含字典列表的单个文档。" -#: netbox/utilities/forms/fields/array.py:20 +#: utilities/forms/fields/array.py:20 #, python-brace-format msgid "" "Invalid list ({value}). Must be numeric and ranges must be in ascending " "order." msgstr "列表 ({value}) 无效。 必须是数字,并且范围必须按升序排列。" -#: netbox/utilities/forms/fields/array.py:40 +#: utilities/forms/fields/array.py:40 msgid "" "Specify one or more numeric ranges separated by commas. Example: " "1-5,20-30" msgstr "指定一个或多个用逗号分隔的数字范围。示例: 1-5,20-30" -#: netbox/utilities/forms/fields/array.py:47 +#: utilities/forms/fields/array.py:47 #, python-brace-format msgid "" "Invalid ranges ({value}). Must be a range of integers in ascending order." msgstr "范围无效 ({value})。必须是按升序排列的整数范围。" -#: netbox/utilities/forms/fields/csv.py:44 +#: utilities/forms/fields/csv.py:44 #, python-brace-format msgid "Invalid value for a multiple choice field: {value}" msgstr "多项选择字段的值无效:{value}" -#: netbox/utilities/forms/fields/csv.py:57 -#: netbox/utilities/forms/fields/csv.py:78 +#: utilities/forms/fields/csv.py:57 utilities/forms/fields/csv.py:78 #, python-format msgid "Object not found: %(value)s" msgstr "未找到对象:·%(value)s" -#: netbox/utilities/forms/fields/csv.py:65 +#: utilities/forms/fields/csv.py:65 #, python-brace-format msgid "" "\"{value}\" is not a unique value for this field; multiple objects were " "found" msgstr "\"{value}\" 不是此字段的唯一值;找到多个对象" -#: netbox/utilities/forms/fields/csv.py:69 +#: utilities/forms/fields/csv.py:69 #, python-brace-format msgid "\"{field_name}\" is an invalid accessor field name." msgstr "“{field_name}“是无效的访问器字段名称。" -#: netbox/utilities/forms/fields/csv.py:101 +#: utilities/forms/fields/csv.py:101 msgid "Object type must be specified as \".\"" msgstr "对象类型必须定义为\".\"" -#: netbox/utilities/forms/fields/csv.py:105 +#: utilities/forms/fields/csv.py:105 msgid "Invalid object type" msgstr "无效的对象类型" -#: netbox/utilities/forms/fields/expandable.py:25 +#: utilities/forms/fields/expandable.py:25 msgid "" "Alphanumeric ranges are supported for bulk creation. Mixed cases and types " "within a single range are not supported (example: " "[ge,xe]-0/0/[0-9])." msgstr "批量创建时支持字母数字范围。不支持在单个范围内混合字符和数字 (例如: [ge,xe]-0/0/[0-9])." -#: netbox/utilities/forms/fields/expandable.py:46 +#: utilities/forms/fields/expandable.py:46 msgid "" "Specify a numeric range to create multiple IPs.
Example: " "192.0.2.[1,5,100-254]/24" msgstr "指定一个范围以创建多个IP。示例
示例: 192.0.2.[1,5,100-254]/24" -#: netbox/utilities/forms/fields/fields.py:31 +#: utilities/forms/fields/fields.py:31 #, python-brace-format msgid "" " Markdown 语法" -#: netbox/utilities/forms/fields/fields.py:48 +#: utilities/forms/fields/fields.py:48 msgid "URL-friendly unique shorthand" msgstr "URL友好的唯一简写,是URL中最后一个反斜杠之后的部分" -#: netbox/utilities/forms/fields/fields.py:101 +#: utilities/forms/fields/fields.py:101 msgid "Enter context data in JSON format." msgstr "以JSON格式输入数据。" -#: netbox/utilities/forms/fields/fields.py:124 +#: utilities/forms/fields/fields.py:124 msgid "MAC address must be in EUI-48 format" msgstr "MAC 地址必须采用 EUI-48 格式" -#: netbox/utilities/forms/forms.py:52 +#: utilities/forms/forms.py:52 msgid "Use regular expressions" msgstr "使用正则表达式" -#: netbox/utilities/forms/forms.py:75 +#: utilities/forms/forms.py:75 msgid "" "Numeric ID of an existing object to update (if not creating a new object)" msgstr "要更新的现有对象的数字 ID(如果不创建新对象)" -#: netbox/utilities/forms/forms.py:92 +#: utilities/forms/forms.py:92 #, python-brace-format msgid "Unrecognized header: {name}" msgstr "无法识别的列头: {name}" -#: netbox/utilities/forms/forms.py:118 +#: utilities/forms/forms.py:118 msgid "Available Columns" msgstr "可用列" -#: netbox/utilities/forms/forms.py:126 +#: utilities/forms/forms.py:126 msgid "Selected Columns" msgstr "选定的列" -#: netbox/utilities/forms/mixins.py:44 +#: utilities/forms/mixins.py:44 msgid "" "This object has been modified since the form was rendered. Please consult " "the object's change log for details." msgstr "自呈现表单以来,该对象已被修改。 有关详细信息,请查阅对象的更改日志。" -#: netbox/utilities/forms/utils.py:42 netbox/utilities/forms/utils.py:68 -#: netbox/utilities/forms/utils.py:85 netbox/utilities/forms/utils.py:87 +#: utilities/forms/utils.py:42 utilities/forms/utils.py:68 +#: utilities/forms/utils.py:85 utilities/forms/utils.py:87 #, python-brace-format msgid "Range \"{value}\" is invalid." msgstr "范围 \"{value}\"无效。" -#: netbox/utilities/forms/utils.py:74 +#: utilities/forms/utils.py:74 #, python-brace-format msgid "" "Invalid range: Ending value ({end}) must be greater than beginning value " "({begin})." msgstr "无效的范围:结束值({end})必须大于开始值({begin})。" -#: netbox/utilities/forms/utils.py:232 +#: utilities/forms/utils.py:232 #, python-brace-format msgid "Duplicate or conflicting column header for \"{field}\"" msgstr "\"{field}\"的列标题重复或冲突" -#: netbox/utilities/forms/utils.py:238 +#: utilities/forms/utils.py:238 #, python-brace-format msgid "Duplicate or conflicting column header for \"{header}\"" msgstr "\"{header}\"的列标题重复或冲突" -#: netbox/utilities/forms/utils.py:247 +#: utilities/forms/utils.py:247 #, python-brace-format msgid "Row {row}: Expected {count_expected} columns but found {count_found}" msgstr "第{row}行: 应该有{count_expected}列,但是发现了{count_found}列" -#: netbox/utilities/forms/utils.py:270 +#: utilities/forms/utils.py:270 #, python-brace-format msgid "Unexpected column header \"{field}\" found." msgstr "发现错误的列头\"{field}\"。" -#: netbox/utilities/forms/utils.py:272 +#: utilities/forms/utils.py:272 #, python-brace-format msgid "Column \"{field}\" is not a related object; cannot use dots" msgstr "字段\"{field}\"未与对象关联;不能使用“.”" -#: netbox/utilities/forms/utils.py:276 +#: utilities/forms/utils.py:276 #, python-brace-format msgid "Invalid related object attribute for column \"{field}\": {to_field}" msgstr "对象的属性关联无效 \"{field}\": {to_field}" -#: netbox/utilities/forms/utils.py:284 +#: utilities/forms/utils.py:284 #, python-brace-format msgid "Required column header \"{header}\" not found." msgstr "找不到必需的列标题\"{header}\"。" -#: netbox/utilities/forms/widgets/apiselect.py:124 +#: utilities/forms/widgets/apiselect.py:124 #, python-brace-format msgid "Missing required value for dynamic query param: '{dynamic_params}'" msgstr "缺少动态查询参数:'{dynamic_params}'" -#: netbox/utilities/forms/widgets/apiselect.py:141 +#: utilities/forms/widgets/apiselect.py:141 #, python-brace-format msgid "Missing required value for static query param: '{static_params}'" msgstr "缺少静态查询参数:'{static_params}'" -#: netbox/utilities/password_validation.py:13 +#: utilities/password_validation.py:13 msgid "Password must have at least one numeral." msgstr "密码必须至少包含一个数字。" -#: netbox/utilities/password_validation.py:18 +#: utilities/password_validation.py:18 msgid "Password must have at least one uppercase letter." msgstr "密码必须至少包含一个大写字母。" -#: netbox/utilities/password_validation.py:23 +#: utilities/password_validation.py:23 msgid "Password must have at least one lowercase letter." msgstr "密码必须至少包含一个小写字母。" -#: netbox/utilities/password_validation.py:27 +#: utilities/password_validation.py:27 msgid "" "Your password must contain at least one numeral, one uppercase letter and " "one lowercase letter." msgstr "您的密码必须包含至少一个数字、一个大写字母和一个小写字母。" -#: netbox/utilities/permissions.py:42 +#: utilities/permissions.py:42 #, python-brace-format msgid "" "Invalid permission name: {name}. Must be in the format " "._" msgstr "无效的权限名称: {name}. 格式必须是 ._" -#: netbox/utilities/permissions.py:60 +#: utilities/permissions.py:60 #, python-brace-format msgid "Unknown app_label/model_name for {name}" msgstr "未知的app_label/model_name: {name}" -#: netbox/utilities/request.py:76 +#: utilities/request.py:76 #, python-brace-format msgid "Invalid IP address set for {header}: {ip}" msgstr "为 {header} 设置的 IP 地址无效:{ip}" -#: netbox/utilities/tables.py:47 +#: utilities/tables.py:47 #, python-brace-format msgid "A column named {name} is already defined for table {table_name}" msgstr "名为{name}的列已在表{table_name}中定义了" -#: netbox/utilities/templates/builtins/customfield_value.html:30 +#: utilities/templates/builtins/customfield_value.html:30 msgid "Not defined" msgstr "未定义" -#: netbox/utilities/templates/buttons/bookmark.html:9 +#: utilities/templates/buttons/bookmark.html:9 msgid "Unbookmark" msgstr "取消书签" -#: netbox/utilities/templates/buttons/bookmark.html:13 +#: utilities/templates/buttons/bookmark.html:13 msgid "Bookmark" msgstr "书签" -#: netbox/utilities/templates/buttons/clone.html:4 +#: utilities/templates/buttons/clone.html:4 msgid "Clone" msgstr "克隆" -#: netbox/utilities/templates/buttons/export.html:7 +#: utilities/templates/buttons/export.html:7 msgid "Current View" msgstr "当前显示" -#: netbox/utilities/templates/buttons/export.html:8 +#: utilities/templates/buttons/export.html:8 msgid "All Data" msgstr "所有数据" -#: netbox/utilities/templates/buttons/export.html:28 +#: utilities/templates/buttons/export.html:28 msgid "Add export template" msgstr "添加导出模版" -#: netbox/utilities/templates/buttons/import.html:4 +#: utilities/templates/buttons/import.html:4 msgid "Import" msgstr "导入" -#: netbox/utilities/templates/buttons/subscribe.html:10 +#: utilities/templates/buttons/subscribe.html:10 msgid "Unsubscribe" msgstr "取消订阅" -#: netbox/utilities/templates/buttons/subscribe.html:14 +#: utilities/templates/buttons/subscribe.html:14 msgid "Subscribe" msgstr "订阅" -#: netbox/utilities/templates/form_helpers/render_field.html:41 +#: utilities/templates/form_helpers/render_field.html:41 msgid "Copy to clipboard" msgstr "复制到剪贴板" -#: netbox/utilities/templates/form_helpers/render_field.html:57 +#: utilities/templates/form_helpers/render_field.html:57 msgid "This field is required" msgstr "此字段必填" -#: netbox/utilities/templates/form_helpers/render_field.html:70 +#: utilities/templates/form_helpers/render_field.html:70 msgid "Set Null" msgstr "设置为空" -#: netbox/utilities/templates/helpers/applied_filters.html:11 +#: utilities/templates/helpers/applied_filters.html:11 msgid "Clear all" msgstr "清除所有内容" -#: netbox/utilities/templates/helpers/table_config_form.html:8 +#: utilities/templates/helpers/table_config_form.html:8 msgid "Table Configuration" msgstr "表单配置" -#: netbox/utilities/templates/helpers/table_config_form.html:31 +#: utilities/templates/helpers/table_config_form.html:31 msgid "Move Up" msgstr "上移" -#: netbox/utilities/templates/helpers/table_config_form.html:34 +#: utilities/templates/helpers/table_config_form.html:34 msgid "Move Down" msgstr "下移" -#: netbox/utilities/templates/navigation/menu.html:14 +#: utilities/templates/navigation/menu.html:14 msgid "Search…" msgstr "搜索…" -#: netbox/utilities/templates/navigation/menu.html:14 +#: utilities/templates/navigation/menu.html:14 msgid "Search NetBox" msgstr "搜索 NetBox" -#: netbox/utilities/templates/widgets/apiselect.html:7 +#: utilities/templates/widgets/apiselect.html:7 msgid "Open selector" msgstr "打开选择框" -#: netbox/utilities/templates/widgets/markdown_input.html:6 +#: utilities/templates/widgets/markdown_input.html:6 msgid "Write" msgstr "编写" -#: netbox/utilities/testing/views.py:632 +#: utilities/testing/views.py:632 msgid "The test must define csv_update_data." msgstr "测试必须定义csv_update_data。" -#: netbox/utilities/validators.py:65 +#: utilities/validators.py:65 #, python-brace-format msgid "{value} is not a valid regular expression." msgstr "{value} 不是有效的正则表达式。" -#: netbox/utilities/views.py:57 +#: utilities/views.py:57 #, python-brace-format msgid "{self.__class__.__name__} must implement get_required_permission()" msgstr "{self.__class__.__name__}必须实现get_required_permission()方法" -#: netbox/utilities/views.py:93 +#: utilities/views.py:93 #, python-brace-format msgid "{class_name} must implement get_required_permission()" msgstr "{class_name}必须实现get_required_permission()方法" -#: netbox/utilities/views.py:117 +#: utilities/views.py:117 #, python-brace-format msgid "" "{class_name} has no queryset defined. ObjectPermissionRequiredMixin may only" " be used on views which define a base queryset" msgstr "{class_name} 没有定义查询集。ObjectPermissionRequiredMixin 只能在定义了基本查询集的视图中使用" -#: netbox/virtualization/filtersets.py:79 +#: virtualization/filtersets.py:79 msgid "Parent group (ID)" msgstr "父组(ID)" -#: netbox/virtualization/filtersets.py:85 +#: virtualization/filtersets.py:85 msgid "Parent group (slug)" msgstr "父组(缩写)" -#: netbox/virtualization/filtersets.py:89 -#: netbox/virtualization/filtersets.py:141 +#: virtualization/filtersets.py:89 virtualization/filtersets.py:141 msgid "Cluster type (ID)" msgstr "集群类型(ID)" -#: netbox/virtualization/filtersets.py:151 -#: netbox/virtualization/filtersets.py:271 +#: virtualization/filtersets.py:151 virtualization/filtersets.py:271 msgid "Cluster (ID)" msgstr "集群 (ID)" -#: netbox/virtualization/forms/bulk_edit.py:166 -#: netbox/virtualization/models/virtualmachines.py:115 +#: virtualization/forms/bulk_edit.py:166 +#: virtualization/models/virtualmachines.py:115 msgid "vCPUs" msgstr "vCPUs" -#: netbox/virtualization/forms/bulk_edit.py:170 +#: virtualization/forms/bulk_edit.py:170 msgid "Memory (MB)" msgstr "内存 (MB)" -#: netbox/virtualization/forms/bulk_edit.py:174 +#: virtualization/forms/bulk_edit.py:174 msgid "Disk (GB)" msgstr "磁盘 (GB)" -#: netbox/virtualization/forms/bulk_edit.py:334 -#: netbox/virtualization/forms/filtersets.py:251 +#: virtualization/forms/bulk_edit.py:334 +#: virtualization/forms/filtersets.py:251 msgid "Size (GB)" msgstr "大小 (GB)" -#: netbox/virtualization/forms/bulk_import.py:44 +#: virtualization/forms/bulk_import.py:44 msgid "Type of cluster" msgstr "集群类型" -#: netbox/virtualization/forms/bulk_import.py:51 +#: virtualization/forms/bulk_import.py:51 msgid "Assigned cluster group" msgstr "指定集群组" -#: netbox/virtualization/forms/bulk_import.py:96 +#: virtualization/forms/bulk_import.py:96 msgid "Assigned cluster" msgstr "指定集群" -#: netbox/virtualization/forms/bulk_import.py:103 +#: virtualization/forms/bulk_import.py:103 msgid "Assigned device within cluster" msgstr "指定集群内部设备" -#: netbox/virtualization/forms/filtersets.py:183 +#: virtualization/forms/filtersets.py:183 msgid "Serial number" msgstr "序列号" -#: netbox/virtualization/forms/model_forms.py:153 +#: virtualization/forms/model_forms.py:153 #, python-brace-format msgid "" "{device} belongs to a different site ({device_site}) than the cluster " "({cluster_site})" msgstr "{device} 属于与集群({cluster_site})不同的站点({device_site})" -#: netbox/virtualization/forms/model_forms.py:192 +#: virtualization/forms/model_forms.py:192 msgid "Optionally pin this VM to a specific host device within the cluster" msgstr "可将此虚拟机固定到集群中的特定主机设备" -#: netbox/virtualization/forms/model_forms.py:221 +#: virtualization/forms/model_forms.py:221 msgid "Site/Cluster" msgstr "站点/集群" -#: netbox/virtualization/forms/model_forms.py:244 +#: virtualization/forms/model_forms.py:244 msgid "Disk size is managed via the attachment of virtual disks." msgstr "通过附加虚拟磁盘来管理磁盘大小。" -#: netbox/virtualization/forms/model_forms.py:372 -#: netbox/virtualization/tables/virtualmachines.py:111 +#: virtualization/forms/model_forms.py:372 +#: virtualization/tables/virtualmachines.py:111 msgid "Disk" msgstr "硬盘" -#: netbox/virtualization/models/clusters.py:25 +#: virtualization/models/clusters.py:25 msgid "cluster type" msgstr "集群类型" -#: netbox/virtualization/models/clusters.py:26 +#: virtualization/models/clusters.py:26 msgid "cluster types" msgstr "集群类型" -#: netbox/virtualization/models/clusters.py:45 +#: virtualization/models/clusters.py:45 msgid "cluster group" msgstr "集群组" -#: netbox/virtualization/models/clusters.py:46 +#: virtualization/models/clusters.py:46 msgid "cluster groups" msgstr "集群组" -#: netbox/virtualization/models/clusters.py:121 +#: virtualization/models/clusters.py:121 msgid "cluster" msgstr "集群" -#: netbox/virtualization/models/clusters.py:122 +#: virtualization/models/clusters.py:122 msgid "clusters" msgstr "集群组" -#: netbox/virtualization/models/clusters.py:141 +#: virtualization/models/clusters.py:141 #, python-brace-format msgid "" "{count} devices are assigned as hosts for this cluster but are not in site " "{site}" msgstr "{count} 个设备被分配为此集群的主机,但不在站点{site}" -#: netbox/virtualization/models/virtualmachines.py:123 +#: virtualization/models/virtualmachines.py:123 msgid "memory (MB)" msgstr "内存 (MB)" -#: netbox/virtualization/models/virtualmachines.py:128 +#: virtualization/models/virtualmachines.py:128 msgid "disk (MB)" msgstr "磁盘 (MB)" -#: netbox/virtualization/models/virtualmachines.py:166 +#: virtualization/models/virtualmachines.py:166 msgid "Virtual machine name must be unique per cluster." msgstr "集群中的虚拟机名称必须唯一。" -#: netbox/virtualization/models/virtualmachines.py:169 +#: virtualization/models/virtualmachines.py:169 msgid "virtual machine" msgstr "虚拟机" -#: netbox/virtualization/models/virtualmachines.py:170 +#: virtualization/models/virtualmachines.py:170 msgid "virtual machines" msgstr "虚拟机" -#: netbox/virtualization/models/virtualmachines.py:184 +#: virtualization/models/virtualmachines.py:184 msgid "A virtual machine must be assigned to a site and/or cluster." msgstr "虚拟机必须分配给站点和/或集群。" -#: netbox/virtualization/models/virtualmachines.py:191 +#: virtualization/models/virtualmachines.py:191 #, python-brace-format msgid "" "The selected cluster ({cluster}) is not assigned to this site ({site})." msgstr "所选集群({cluster}) 未分配给此站点 ({site})。" -#: netbox/virtualization/models/virtualmachines.py:198 +#: virtualization/models/virtualmachines.py:198 msgid "Must specify a cluster when assigning a host device." msgstr "分配主机设备时必须指定集群。" -#: netbox/virtualization/models/virtualmachines.py:203 +#: virtualization/models/virtualmachines.py:203 #, python-brace-format msgid "" "The selected device ({device}) is not assigned to this cluster ({cluster})." msgstr "所选设备 ({device})未分配给此集群({cluster})。" -#: netbox/virtualization/models/virtualmachines.py:215 +#: virtualization/models/virtualmachines.py:215 #, python-brace-format msgid "" "The specified disk size ({size}) must match the aggregate size of assigned " "virtual disks ({total_size})." msgstr "指定的磁盘大小 ({size}) 必须与分配的虚拟磁盘的总大小相匹配 ({total_size})." -#: netbox/virtualization/models/virtualmachines.py:229 +#: virtualization/models/virtualmachines.py:229 #, python-brace-format msgid "Must be an IPv{family} address. ({ip} is an IPv{version} address.)" msgstr "必须是 IPv{family} 地址。 ({ip} 是 IPv{version} 地址。)" -#: netbox/virtualization/models/virtualmachines.py:238 +#: virtualization/models/virtualmachines.py:238 #, python-brace-format msgid "The specified IP address ({ip}) is not assigned to this VM." msgstr "指定的IP地址 ({ip}) 未分配给该虚拟机。" -#: netbox/virtualization/models/virtualmachines.py:396 +#: virtualization/models/virtualmachines.py:396 #, python-brace-format msgid "" "The selected parent interface ({parent}) belongs to a different virtual " "machine ({virtual_machine})." msgstr "所选父接口 ({parent}) 属于另一个虚拟机 ({virtual_machine})" -#: netbox/virtualization/models/virtualmachines.py:411 +#: virtualization/models/virtualmachines.py:411 #, python-brace-format msgid "" "The selected bridge interface ({bridge}) belongs to a different virtual " "machine ({virtual_machine})." msgstr "所选桥接接口 ({bridge})属于另一个虚拟机({virtual_machine})。" -#: netbox/virtualization/models/virtualmachines.py:422 +#: virtualization/models/virtualmachines.py:422 #, python-brace-format msgid "" "The untagged VLAN ({untagged_vlan}) must belong to the same site as the " "interface's parent virtual machine, or it must be global." msgstr "未标记 VLAN ({untagged_vlan}) 必须与接口的父虚拟机属于同一站点,或者必须是全局的。" -#: netbox/virtualization/models/virtualmachines.py:434 +#: virtualization/models/virtualmachines.py:434 msgid "size (MB)" msgstr "大小 (MB)" -#: netbox/virtualization/models/virtualmachines.py:438 +#: virtualization/models/virtualmachines.py:438 msgid "virtual disk" msgstr "虚拟磁盘" -#: netbox/virtualization/models/virtualmachines.py:439 +#: virtualization/models/virtualmachines.py:439 msgid "virtual disks" msgstr "虚拟磁盘" -#: netbox/virtualization/views.py:275 +#: virtualization/views.py:275 #, python-brace-format msgid "Added {count} devices to cluster {cluster}" msgstr "已添加 {count} 要集群的设备 {cluster}" -#: netbox/virtualization/views.py:310 +#: virtualization/views.py:310 #, python-brace-format msgid "Removed {count} devices from cluster {cluster}" msgstr "已移除 {count} 来自集群的设备 {cluster}" -#: netbox/vpn/choices.py:31 +#: vpn/choices.py:31 msgid "IPsec - Transport" msgstr "IPsec-传输模式" -#: netbox/vpn/choices.py:32 +#: vpn/choices.py:32 msgid "IPsec - Tunnel" msgstr "IPsec - Tunnel" -#: netbox/vpn/choices.py:33 +#: vpn/choices.py:33 msgid "IP-in-IP" msgstr "IP-in-IP" -#: netbox/vpn/choices.py:34 +#: vpn/choices.py:34 msgid "GRE" msgstr "GRE" -#: netbox/vpn/choices.py:56 +#: vpn/choices.py:56 msgid "Hub" msgstr "中心节点" -#: netbox/vpn/choices.py:57 +#: vpn/choices.py:57 msgid "Spoke" msgstr "分支节点" -#: netbox/vpn/choices.py:80 +#: vpn/choices.py:80 msgid "Aggressive" msgstr "野蛮模式" -#: netbox/vpn/choices.py:81 +#: vpn/choices.py:81 msgid "Main" msgstr "主模式" -#: netbox/vpn/choices.py:92 +#: vpn/choices.py:92 msgid "Pre-shared keys" msgstr "预共享密钥" -#: netbox/vpn/choices.py:93 +#: vpn/choices.py:93 msgid "Certificates" msgstr "证书" -#: netbox/vpn/choices.py:94 +#: vpn/choices.py:94 msgid "RSA signatures" msgstr "RSA 签名" -#: netbox/vpn/choices.py:95 +#: vpn/choices.py:95 msgid "DSA signatures" msgstr "DSA 签名" -#: netbox/vpn/choices.py:178 netbox/vpn/choices.py:179 -#: netbox/vpn/choices.py:180 netbox/vpn/choices.py:181 -#: netbox/vpn/choices.py:182 netbox/vpn/choices.py:183 -#: netbox/vpn/choices.py:184 netbox/vpn/choices.py:185 -#: netbox/vpn/choices.py:186 netbox/vpn/choices.py:187 -#: netbox/vpn/choices.py:188 netbox/vpn/choices.py:189 -#: netbox/vpn/choices.py:190 netbox/vpn/choices.py:191 -#: netbox/vpn/choices.py:192 netbox/vpn/choices.py:193 -#: netbox/vpn/choices.py:194 netbox/vpn/choices.py:195 -#: netbox/vpn/choices.py:196 netbox/vpn/choices.py:197 -#: netbox/vpn/choices.py:198 netbox/vpn/choices.py:199 -#: netbox/vpn/choices.py:200 netbox/vpn/choices.py:201 +#: vpn/choices.py:178 vpn/choices.py:179 vpn/choices.py:180 vpn/choices.py:181 +#: vpn/choices.py:182 vpn/choices.py:183 vpn/choices.py:184 vpn/choices.py:185 +#: vpn/choices.py:186 vpn/choices.py:187 vpn/choices.py:188 vpn/choices.py:189 +#: vpn/choices.py:190 vpn/choices.py:191 vpn/choices.py:192 vpn/choices.py:193 +#: vpn/choices.py:194 vpn/choices.py:195 vpn/choices.py:196 vpn/choices.py:197 +#: vpn/choices.py:198 vpn/choices.py:199 vpn/choices.py:200 vpn/choices.py:201 #, python-brace-format msgid "Group {n}" msgstr "Group {n}" -#: netbox/vpn/choices.py:243 +#: vpn/choices.py:243 msgid "Ethernet Private LAN" msgstr "Ethernet Private LAN" -#: netbox/vpn/choices.py:244 +#: vpn/choices.py:244 msgid "Ethernet Virtual Private LAN" msgstr "Ethernet Virtual Private LAN" -#: netbox/vpn/choices.py:247 +#: vpn/choices.py:247 msgid "Ethernet Private Tree" msgstr "Ethernet Private Tree" -#: netbox/vpn/choices.py:248 +#: vpn/choices.py:248 msgid "Ethernet Virtual Private Tree" msgstr "Ethernet Virtual Private Tree" -#: netbox/vpn/filtersets.py:41 +#: vpn/filtersets.py:41 msgid "Tunnel group (ID)" msgstr "隧道组(ID)" -#: netbox/vpn/filtersets.py:47 +#: vpn/filtersets.py:47 msgid "Tunnel group (slug)" msgstr "隧道组(缩写)" -#: netbox/vpn/filtersets.py:54 +#: vpn/filtersets.py:54 msgid "IPSec profile (ID)" msgstr "IPSec 通道(ID)" -#: netbox/vpn/filtersets.py:60 +#: vpn/filtersets.py:60 msgid "IPSec profile (name)" msgstr "IPSec 通道(名称)" -#: netbox/vpn/filtersets.py:81 +#: vpn/filtersets.py:81 msgid "Tunnel (ID)" msgstr "隧道 (ID)" -#: netbox/vpn/filtersets.py:87 +#: vpn/filtersets.py:87 msgid "Tunnel (name)" msgstr "隧道(名称)" -#: netbox/vpn/filtersets.py:118 +#: vpn/filtersets.py:118 msgid "Outside IP (ID)" msgstr "外部 IP (ID)" -#: netbox/vpn/filtersets.py:130 netbox/vpn/filtersets.py:263 +#: vpn/filtersets.py:130 vpn/filtersets.py:263 msgid "IKE policy (ID)" msgstr "IKE 策略 (ID)" -#: netbox/vpn/filtersets.py:136 netbox/vpn/filtersets.py:269 +#: vpn/filtersets.py:136 vpn/filtersets.py:269 msgid "IKE policy (name)" msgstr "IKE 策略(名称)" -#: netbox/vpn/filtersets.py:200 netbox/vpn/filtersets.py:273 +#: vpn/filtersets.py:200 vpn/filtersets.py:273 msgid "IPSec policy (ID)" msgstr "IPsec 策略 (ID)" -#: netbox/vpn/filtersets.py:206 netbox/vpn/filtersets.py:279 +#: vpn/filtersets.py:206 vpn/filtersets.py:279 msgid "IPSec policy (name)" msgstr "IPsec 策略(名称)" -#: netbox/vpn/filtersets.py:348 +#: vpn/filtersets.py:348 msgid "L2VPN (slug)" msgstr "L2VPN(缩写)" -#: netbox/vpn/filtersets.py:412 +#: vpn/filtersets.py:412 msgid "VM Interface (ID)" msgstr "虚拟接口 (ID)" -#: netbox/vpn/filtersets.py:418 +#: vpn/filtersets.py:418 msgid "VLAN (name)" msgstr "VLAN(名称)" -#: netbox/vpn/forms/bulk_edit.py:45 netbox/vpn/forms/bulk_import.py:42 -#: netbox/vpn/forms/filtersets.py:54 +#: vpn/forms/bulk_edit.py:45 vpn/forms/bulk_import.py:42 +#: vpn/forms/filtersets.py:54 msgid "Tunnel group" msgstr "隧道组" -#: netbox/vpn/forms/bulk_edit.py:117 netbox/vpn/models/crypto.py:47 +#: vpn/forms/bulk_edit.py:117 vpn/models/crypto.py:47 msgid "SA lifetime" msgstr "SA生存期" -#: netbox/vpn/forms/bulk_edit.py:151 netbox/wireless/forms/bulk_edit.py:79 -#: netbox/wireless/forms/bulk_edit.py:126 -#: netbox/wireless/forms/filtersets.py:64 -#: netbox/wireless/forms/filtersets.py:98 +#: vpn/forms/bulk_edit.py:151 wireless/forms/bulk_edit.py:79 +#: wireless/forms/bulk_edit.py:126 wireless/forms/filtersets.py:64 +#: wireless/forms/filtersets.py:98 msgid "Pre-shared key" msgstr "预共享密钥" -#: netbox/vpn/forms/bulk_edit.py:237 netbox/vpn/forms/bulk_import.py:239 -#: netbox/vpn/forms/filtersets.py:199 netbox/vpn/forms/model_forms.py:370 -#: netbox/vpn/models/crypto.py:104 +#: vpn/forms/bulk_edit.py:237 vpn/forms/bulk_import.py:239 +#: vpn/forms/filtersets.py:199 vpn/forms/model_forms.py:370 +#: vpn/models/crypto.py:104 msgid "IKE policy" msgstr "IKE 策略" -#: netbox/vpn/forms/bulk_edit.py:242 netbox/vpn/forms/bulk_import.py:244 -#: netbox/vpn/forms/filtersets.py:204 netbox/vpn/forms/model_forms.py:374 -#: netbox/vpn/models/crypto.py:209 +#: vpn/forms/bulk_edit.py:242 vpn/forms/bulk_import.py:244 +#: vpn/forms/filtersets.py:204 vpn/forms/model_forms.py:374 +#: vpn/models/crypto.py:209 msgid "IPSec policy" msgstr "IPSec 策略" -#: netbox/vpn/forms/bulk_import.py:50 +#: vpn/forms/bulk_import.py:50 msgid "Tunnel encapsulation" msgstr "隧道封装" -#: netbox/vpn/forms/bulk_import.py:83 +#: vpn/forms/bulk_import.py:83 msgid "Operational role" msgstr "操作角色" -#: netbox/vpn/forms/bulk_import.py:90 +#: vpn/forms/bulk_import.py:90 msgid "Parent device of assigned interface" msgstr "指定接口的父设备" -#: netbox/vpn/forms/bulk_import.py:97 +#: vpn/forms/bulk_import.py:97 msgid "Parent VM of assigned interface" msgstr "指定接口的父虚拟机" -#: netbox/vpn/forms/bulk_import.py:104 +#: vpn/forms/bulk_import.py:104 msgid "Device or virtual machine interface" msgstr "设备/虚拟机接口" -#: netbox/vpn/forms/bulk_import.py:183 +#: vpn/forms/bulk_import.py:183 msgid "IKE proposal(s)" msgstr "IKE安全提议" -#: netbox/vpn/forms/bulk_import.py:215 netbox/vpn/models/crypto.py:197 +#: vpn/forms/bulk_import.py:215 vpn/models/crypto.py:197 msgid "Diffie-Hellman group for Perfect Forward Secrecy" msgstr "DH组" -#: netbox/vpn/forms/bulk_import.py:222 +#: vpn/forms/bulk_import.py:222 msgid "IPSec proposal(s)" msgstr "IPSEC安全提议" -#: netbox/vpn/forms/bulk_import.py:236 +#: vpn/forms/bulk_import.py:236 msgid "IPSec protocol" msgstr "IPSEC 协议" -#: netbox/vpn/forms/bulk_import.py:266 +#: vpn/forms/bulk_import.py:266 msgid "L2VPN type" msgstr "L2VPN 类型" -#: netbox/vpn/forms/bulk_import.py:287 +#: vpn/forms/bulk_import.py:287 msgid "Parent device (for interface)" msgstr "父设备(用于接口)" -#: netbox/vpn/forms/bulk_import.py:294 +#: vpn/forms/bulk_import.py:294 msgid "Parent virtual machine (for interface)" msgstr "父虚拟机(用于接口)" -#: netbox/vpn/forms/bulk_import.py:301 +#: vpn/forms/bulk_import.py:301 msgid "Assigned interface (device or VM)" msgstr "指定接口(设备/虚拟机)" -#: netbox/vpn/forms/bulk_import.py:334 +#: vpn/forms/bulk_import.py:334 msgid "Cannot import device and VM interface terminations simultaneously." msgstr "不能导入设备和虚拟机接口连接。" -#: netbox/vpn/forms/bulk_import.py:336 +#: vpn/forms/bulk_import.py:336 msgid "Each termination must specify either an interface or a VLAN." msgstr "每个接入点必须指定一个接口或一个 VLAN。" -#: netbox/vpn/forms/bulk_import.py:338 +#: vpn/forms/bulk_import.py:338 msgid "Cannot assign both an interface and a VLAN." msgstr "不能同时分配接口和VLAN。" -#: netbox/vpn/forms/filtersets.py:130 +#: vpn/forms/filtersets.py:130 msgid "IKE version" msgstr "IKE 版本" -#: netbox/vpn/forms/filtersets.py:142 netbox/vpn/forms/filtersets.py:175 -#: netbox/vpn/forms/model_forms.py:298 netbox/vpn/forms/model_forms.py:334 +#: vpn/forms/filtersets.py:142 vpn/forms/filtersets.py:175 +#: vpn/forms/model_forms.py:298 vpn/forms/model_forms.py:334 msgid "Proposal" msgstr "安全提议" -#: netbox/vpn/forms/filtersets.py:251 +#: vpn/forms/filtersets.py:251 msgid "Assigned Object Type" msgstr "指定的对象类型" -#: netbox/vpn/forms/model_forms.py:95 netbox/vpn/forms/model_forms.py:130 -#: netbox/vpn/forms/model_forms.py:240 netbox/vpn/tables/tunnels.py:91 +#: vpn/forms/model_forms.py:95 vpn/forms/model_forms.py:130 +#: vpn/forms/model_forms.py:240 vpn/tables/tunnels.py:91 msgid "Tunnel interface" msgstr "隧道接口" -#: netbox/vpn/forms/model_forms.py:150 +#: vpn/forms/model_forms.py:150 msgid "First Termination" msgstr "第一端" -#: netbox/vpn/forms/model_forms.py:153 +#: vpn/forms/model_forms.py:153 msgid "Second Termination" msgstr "第二端" -#: netbox/vpn/forms/model_forms.py:197 +#: vpn/forms/model_forms.py:197 msgid "This parameter is required when defining a termination." msgstr "定义端点时需要此参数。" -#: netbox/vpn/forms/model_forms.py:320 netbox/vpn/forms/model_forms.py:356 +#: vpn/forms/model_forms.py:320 vpn/forms/model_forms.py:356 msgid "Policy" msgstr "策略" -#: netbox/vpn/forms/model_forms.py:487 +#: vpn/forms/model_forms.py:487 msgid "A termination must specify an interface or VLAN." msgstr "接入点必须指定接口或 VLAN。" -#: netbox/vpn/forms/model_forms.py:489 +#: vpn/forms/model_forms.py:489 msgid "" "A termination can only have one terminating object (an interface or VLAN)." msgstr "一个终端只能有一个终端对象(接口或VLAN)。" -#: netbox/vpn/models/crypto.py:33 +#: vpn/models/crypto.py:33 msgid "encryption algorithm" msgstr "加密算法" -#: netbox/vpn/models/crypto.py:37 +#: vpn/models/crypto.py:37 msgid "authentication algorithm" msgstr "认证算法" -#: netbox/vpn/models/crypto.py:44 +#: vpn/models/crypto.py:44 msgid "Diffie-Hellman group ID" msgstr "DH组" -#: netbox/vpn/models/crypto.py:50 +#: vpn/models/crypto.py:50 msgid "Security association lifetime (in seconds)" msgstr "SA生存期(秒)" -#: netbox/vpn/models/crypto.py:59 +#: vpn/models/crypto.py:59 msgid "IKE proposal" msgstr "IKE proposal" -#: netbox/vpn/models/crypto.py:60 +#: vpn/models/crypto.py:60 msgid "IKE proposals" msgstr "IKE proposals" -#: netbox/vpn/models/crypto.py:76 +#: vpn/models/crypto.py:76 msgid "version" msgstr "版本" -#: netbox/vpn/models/crypto.py:88 netbox/vpn/models/crypto.py:190 +#: vpn/models/crypto.py:88 vpn/models/crypto.py:190 msgid "proposals" msgstr "proposals" -#: netbox/vpn/models/crypto.py:91 netbox/wireless/models.py:39 +#: vpn/models/crypto.py:91 wireless/models.py:39 msgid "pre-shared key" msgstr "pre-shared key" -#: netbox/vpn/models/crypto.py:105 +#: vpn/models/crypto.py:105 msgid "IKE policies" msgstr "IKE policies" -#: netbox/vpn/models/crypto.py:118 +#: vpn/models/crypto.py:118 msgid "Mode is required for selected IKE version" msgstr "所选IKE版本需要配置模式" -#: netbox/vpn/models/crypto.py:122 +#: vpn/models/crypto.py:122 msgid "Mode cannot be used for selected IKE version" msgstr "该模式不能用于所选的IKE版本" -#: netbox/vpn/models/crypto.py:136 +#: vpn/models/crypto.py:136 msgid "encryption" msgstr "加密算法" -#: netbox/vpn/models/crypto.py:141 +#: vpn/models/crypto.py:141 msgid "authentication" msgstr "认证" -#: netbox/vpn/models/crypto.py:149 +#: vpn/models/crypto.py:149 msgid "Security association lifetime (seconds)" msgstr "SA生存期(秒)" -#: netbox/vpn/models/crypto.py:155 +#: vpn/models/crypto.py:155 msgid "Security association lifetime (in kilobytes)" msgstr "SA生存大小(KB)" -#: netbox/vpn/models/crypto.py:164 +#: vpn/models/crypto.py:164 msgid "IPSec proposal" msgstr "IPSec proposal" -#: netbox/vpn/models/crypto.py:165 +#: vpn/models/crypto.py:165 msgid "IPSec proposals" msgstr "IPSec proposals" -#: netbox/vpn/models/crypto.py:178 +#: vpn/models/crypto.py:178 msgid "Encryption and/or authentication algorithm must be defined" msgstr "必须定义加密和身份验证算法" -#: netbox/vpn/models/crypto.py:210 +#: vpn/models/crypto.py:210 msgid "IPSec policies" msgstr "IPSec policies" -#: netbox/vpn/models/crypto.py:251 +#: vpn/models/crypto.py:251 msgid "IPSec profiles" msgstr "IPSec profiles" -#: netbox/vpn/models/l2vpn.py:116 +#: vpn/models/l2vpn.py:116 msgid "L2VPN termination" msgstr "L2VPN 终点" -#: netbox/vpn/models/l2vpn.py:117 +#: vpn/models/l2vpn.py:117 msgid "L2VPN terminations" msgstr "L2VPN 终点" -#: netbox/vpn/models/l2vpn.py:135 +#: vpn/models/l2vpn.py:135 #, python-brace-format msgid "L2VPN Termination already assigned ({assigned_object})" msgstr "L2VPN终端已分配({assigned_object})" -#: netbox/vpn/models/l2vpn.py:147 +#: vpn/models/l2vpn.py:147 #, python-brace-format msgid "" "{l2vpn_type} L2VPNs cannot have more than two terminations; found " "{terminations_count} already defined." msgstr "{l2vpn_type}L2VPN不能有两个以上的端点;已找到{terminations_count}个端点。" -#: netbox/vpn/models/tunnels.py:26 +#: vpn/models/tunnels.py:26 msgid "tunnel group" msgstr "隧道组" -#: netbox/vpn/models/tunnels.py:27 +#: vpn/models/tunnels.py:27 msgid "tunnel groups" msgstr "隧道组" -#: netbox/vpn/models/tunnels.py:53 +#: vpn/models/tunnels.py:53 msgid "encapsulation" msgstr "封装" -#: netbox/vpn/models/tunnels.py:72 +#: vpn/models/tunnels.py:72 msgid "tunnel ID" msgstr "隧道 ID" -#: netbox/vpn/models/tunnels.py:94 +#: vpn/models/tunnels.py:94 msgid "tunnel" msgstr "隧道" -#: netbox/vpn/models/tunnels.py:95 +#: vpn/models/tunnels.py:95 msgid "tunnels" msgstr "隧道" -#: netbox/vpn/models/tunnels.py:153 +#: vpn/models/tunnels.py:153 msgid "An object may be terminated to only one tunnel at a time." msgstr "一个对象一次只能被终止到一个隧道。" -#: netbox/vpn/models/tunnels.py:156 +#: vpn/models/tunnels.py:156 msgid "tunnel termination" msgstr "隧道终点" -#: netbox/vpn/models/tunnels.py:157 +#: vpn/models/tunnels.py:157 msgid "tunnel terminations" msgstr "隧道终点" -#: netbox/vpn/models/tunnels.py:174 +#: vpn/models/tunnels.py:174 #, python-brace-format msgid "{name} is already attached to a tunnel ({tunnel})." msgstr "{name}已附加到隧道({tunnel})。" -#: netbox/vpn/tables/crypto.py:22 +#: vpn/tables/crypto.py:22 msgid "Authentication Method" msgstr "认证方式" -#: netbox/vpn/tables/crypto.py:25 netbox/vpn/tables/crypto.py:97 +#: vpn/tables/crypto.py:25 vpn/tables/crypto.py:97 msgid "Encryption Algorithm" msgstr "加密算法" -#: netbox/vpn/tables/crypto.py:28 netbox/vpn/tables/crypto.py:100 +#: vpn/tables/crypto.py:28 vpn/tables/crypto.py:100 msgid "Authentication Algorithm" msgstr "认证算法" -#: netbox/vpn/tables/crypto.py:34 +#: vpn/tables/crypto.py:34 msgid "SA Lifetime" msgstr "SA生存期" -#: netbox/vpn/tables/crypto.py:71 +#: vpn/tables/crypto.py:71 msgid "Pre-shared Key" msgstr "预共享密钥" -#: netbox/vpn/tables/crypto.py:103 +#: vpn/tables/crypto.py:103 msgid "SA Lifetime (Seconds)" msgstr "SA生存期(秒)" -#: netbox/vpn/tables/crypto.py:106 +#: vpn/tables/crypto.py:106 msgid "SA Lifetime (KB)" msgstr "SA生存大小(KB)" -#: netbox/vpn/tables/l2vpn.py:69 +#: vpn/tables/l2vpn.py:69 msgid "Object Parent" msgstr "目标上级" -#: netbox/vpn/tables/l2vpn.py:74 +#: vpn/tables/l2vpn.py:74 msgid "Object Site" msgstr "目的站点" -#: netbox/wireless/choices.py:11 +#: wireless/choices.py:11 msgid "Access point" msgstr "AP" -#: netbox/wireless/choices.py:12 +#: wireless/choices.py:12 msgid "Station" msgstr "基站" -#: netbox/wireless/choices.py:467 +#: wireless/choices.py:467 msgid "Open" msgstr "开放" -#: netbox/wireless/choices.py:469 +#: wireless/choices.py:469 msgid "WPA Personal (PSK)" msgstr "WPA Personal (PSK)" -#: netbox/wireless/choices.py:470 +#: wireless/choices.py:470 msgid "WPA Enterprise" msgstr "WPA Enterprise" -#: netbox/wireless/forms/bulk_edit.py:73 -#: netbox/wireless/forms/bulk_edit.py:120 -#: netbox/wireless/forms/bulk_import.py:68 -#: netbox/wireless/forms/bulk_import.py:71 -#: netbox/wireless/forms/bulk_import.py:110 -#: netbox/wireless/forms/bulk_import.py:113 -#: netbox/wireless/forms/filtersets.py:59 -#: netbox/wireless/forms/filtersets.py:93 +#: wireless/forms/bulk_edit.py:73 wireless/forms/bulk_edit.py:120 +#: wireless/forms/bulk_import.py:68 wireless/forms/bulk_import.py:71 +#: wireless/forms/bulk_import.py:110 wireless/forms/bulk_import.py:113 +#: wireless/forms/filtersets.py:59 wireless/forms/filtersets.py:93 msgid "Authentication cipher" msgstr "认证密码" -#: netbox/wireless/forms/bulk_edit.py:134 -#: netbox/wireless/forms/bulk_import.py:116 -#: netbox/wireless/forms/bulk_import.py:119 -#: netbox/wireless/forms/filtersets.py:106 +#: wireless/forms/bulk_edit.py:134 wireless/forms/bulk_import.py:116 +#: wireless/forms/bulk_import.py:119 wireless/forms/filtersets.py:106 msgid "Distance unit" msgstr "距离单位" -#: netbox/wireless/forms/bulk_import.py:52 +#: wireless/forms/bulk_import.py:52 msgid "Bridged VLAN" msgstr "桥接 VLAN" -#: netbox/wireless/forms/bulk_import.py:89 -#: netbox/wireless/tables/wirelesslink.py:28 +#: wireless/forms/bulk_import.py:89 wireless/tables/wirelesslink.py:28 msgid "Interface A" msgstr "网络接口A" -#: netbox/wireless/forms/bulk_import.py:93 -#: netbox/wireless/tables/wirelesslink.py:37 +#: wireless/forms/bulk_import.py:93 wireless/tables/wirelesslink.py:37 msgid "Interface B" msgstr "网络接口B" -#: netbox/wireless/forms/model_forms.py:161 +#: wireless/forms/model_forms.py:161 msgid "Side B" msgstr "B端" -#: netbox/wireless/models.py:31 +#: wireless/models.py:31 msgid "authentication cipher" msgstr "认证密码" -#: netbox/wireless/models.py:69 +#: wireless/models.py:69 msgid "wireless LAN group" msgstr "无线局域网组" -#: netbox/wireless/models.py:70 +#: wireless/models.py:70 msgid "wireless LAN groups" msgstr "无线局域网组" -#: netbox/wireless/models.py:116 +#: wireless/models.py:116 msgid "wireless LAN" msgstr "无线局域网" -#: netbox/wireless/models.py:144 +#: wireless/models.py:144 msgid "interface A" msgstr "接口 A" -#: netbox/wireless/models.py:151 +#: wireless/models.py:151 msgid "interface B" msgstr "接口 B" -#: netbox/wireless/models.py:165 +#: wireless/models.py:165 msgid "distance" msgstr "距离" -#: netbox/wireless/models.py:172 +#: wireless/models.py:172 msgid "distance unit" msgstr "距离单位" -#: netbox/wireless/models.py:219 +#: wireless/models.py:219 msgid "wireless link" msgstr "无线连接" -#: netbox/wireless/models.py:220 +#: wireless/models.py:220 msgid "wireless links" msgstr "无线连接" -#: netbox/wireless/models.py:236 +#: wireless/models.py:236 msgid "Must specify a unit when setting a wireless distance" msgstr "设置无线距离时必须指定单位" -#: netbox/wireless/models.py:242 netbox/wireless/models.py:248 +#: wireless/models.py:242 wireless/models.py:248 #, python-brace-format msgid "{type} is not a wireless interface." msgstr "{type} 不是无线接口。" -#: netbox/wireless/utils.py:16 +#: wireless/utils.py:16 #, python-brace-format msgid "Invalid channel value: {channel}" msgstr "通道值无效: {channel}" -#: netbox/wireless/utils.py:26 +#: wireless/utils.py:26 #, python-brace-format msgid "Invalid channel attribute: {name}" msgstr "通道属性无效: {name}" From 813347121e21a3dd0b794dc18b09082a8618e2b8 Mon Sep 17 00:00:00 2001 From: Jeremy Stretch Date: Mon, 28 Oct 2024 16:59:44 -0400 Subject: [PATCH 35/35] Release v4.1.5 --- .../ISSUE_TEMPLATE/01-feature_request.yaml | 2 +- .github/ISSUE_TEMPLATE/02-bug_report.yaml | 2 +- docs/release-notes/version-4.1.md | 6 +++++- netbox/project-static/package.json | 2 +- netbox/project-static/yarn.lock | 8 ++++---- netbox/release.yaml | 4 ++-- netbox/translations/pl/LC_MESSAGES/django.mo | Bin 231932 -> 231926 bytes netbox/translations/uk/LC_MESSAGES/django.mo | Bin 297605 -> 297606 bytes requirements.txt | 12 ++++++------ 9 files changed, 20 insertions(+), 16 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/01-feature_request.yaml b/.github/ISSUE_TEMPLATE/01-feature_request.yaml index 8b505bb4e..651c26942 100644 --- a/.github/ISSUE_TEMPLATE/01-feature_request.yaml +++ b/.github/ISSUE_TEMPLATE/01-feature_request.yaml @@ -14,7 +14,7 @@ body: attributes: label: NetBox version description: What version of NetBox are you currently running? - placeholder: v4.1.4 + placeholder: v4.1.5 validations: required: true - type: dropdown diff --git a/.github/ISSUE_TEMPLATE/02-bug_report.yaml b/.github/ISSUE_TEMPLATE/02-bug_report.yaml index 556120d63..2984e3d10 100644 --- a/.github/ISSUE_TEMPLATE/02-bug_report.yaml +++ b/.github/ISSUE_TEMPLATE/02-bug_report.yaml @@ -39,7 +39,7 @@ body: attributes: label: NetBox Version description: What version of NetBox are you currently running? - placeholder: v4.1.4 + placeholder: v4.1.5 validations: required: true - type: dropdown diff --git a/docs/release-notes/version-4.1.md b/docs/release-notes/version-4.1.md index f7e700017..741425ac1 100644 --- a/docs/release-notes/version-4.1.md +++ b/docs/release-notes/version-4.1.md @@ -1,6 +1,6 @@ # NetBox v4.1 -## v4.1.5 (FUTURE) +## v4.1.5 (2024-10-28) ### Enhancements @@ -8,8 +8,11 @@ ### Bug Fixes +* [#17358](https://github.com/netbox-community/netbox/issues/17358) - Fix validation of overlapping IP ranges * [#17374](https://github.com/netbox-community/netbox/issues/17374) - Fix styling of highlighted table rows in dark mode +* [#17460](https://github.com/netbox-community/netbox/issues/17460) - Ensure bulk action buttons are consistent for device type components * [#17635](https://github.com/netbox-community/netbox/issues/17635) - Ensure AbortTransaction is caught when running a custom script with `commit=False` +* [#17685](https://github.com/netbox-community/netbox/issues/17685) - Ensure background jobs are validated before being scheduled * [#17710](https://github.com/netbox-community/netbox/issues/17710) - Remove cached fields on CableTermination model from GraphQL API * [#17740](https://github.com/netbox-community/netbox/issues/17740) - Ensure support for image attachments with a `.webp` file extension * [#17749](https://github.com/netbox-community/netbox/issues/17749) - Restore missing `devicetypes` and `children` fields for several objects in GraphQL API @@ -17,6 +20,7 @@ * [#17759](https://github.com/netbox-community/netbox/issues/17759) - Retain `job_timeout` value when scheduling a recurring custom script * [#17774](https://github.com/netbox-community/netbox/issues/17774) - Fix SSO login support for Entra ID (formerly Azure AD) * [#17802](https://github.com/netbox-community/netbox/issues/17802) - Fix background color for bulk rename buttons in list views +* [#17838](https://github.com/netbox-community/netbox/issues/17838) - Adjust `manage.py` to reference `python3` executable --- diff --git a/netbox/project-static/package.json b/netbox/project-static/package.json index 1342c299f..b4e3a04eb 100644 --- a/netbox/project-static/package.json +++ b/netbox/project-static/package.json @@ -30,7 +30,7 @@ "gridstack": "10.3.1", "htmx.org": "1.9.12", "query-string": "9.1.1", - "sass": "1.79.5", + "sass": "1.80.4", "tom-select": "2.3.1", "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 2077e0534..9c57c5485 100644 --- a/netbox/project-static/yarn.lock +++ b/netbox/project-static/yarn.lock @@ -2656,10 +2656,10 @@ safe-regex-test@^1.0.3: es-errors "^1.3.0" is-regex "^1.1.4" -sass@1.79.5: - version "1.79.5" - resolved "https://registry.yarnpkg.com/sass/-/sass-1.79.5.tgz#646c627601cd5f84c64f7b1485b9292a313efae4" - integrity sha512-W1h5kp6bdhqFh2tk3DsI771MoEJjvrSY/2ihJRJS4pjIyfJCw0nTsxqhnrUzaLMOJjFchj8rOvraI/YUVjtx5g== +sass@1.80.4: + version "1.80.4" + resolved "https://registry.yarnpkg.com/sass/-/sass-1.80.4.tgz#bc0418fd796cad2f1a1309d8b4d7fe44b7027de0" + integrity sha512-rhMQ2tSF5CsuuspvC94nPM9rToiAFw2h3JTrLlgmNw1MH79v8Cr3DH6KF6o6r+8oofY3iYVPUf66KzC8yuVN1w== dependencies: "@parcel/watcher" "^2.4.1" chokidar "^4.0.0" diff --git a/netbox/release.yaml b/netbox/release.yaml index a7ebbd352..63854ac33 100644 --- a/netbox/release.yaml +++ b/netbox/release.yaml @@ -1,3 +1,3 @@ -version: "4.1.4" +version: "4.1.5" edition: "Community" -published: "2024-10-15" +published: "2024-10-28" diff --git a/netbox/translations/pl/LC_MESSAGES/django.mo b/netbox/translations/pl/LC_MESSAGES/django.mo index 8d6777d9fb0ddeffbd019fbb903f72472648498e..64ee5ba084636993fcdc9f3498d2a9e1d156402e 100644 GIT binary patch delta 20022 zcmYk^cl^%P|M>CCbs1$-5AhN2HCX~?KFg(ROuQsje5 zp`}3!jc=vx`*>XEe1Es!U-xs)>%7i*o^f5*JD<;A%L@Lwtl)F?2BdQ(6Nx)3CKK6- zL}F=nGEo4xV^e$!+hXp@$;7pIHQt1e;&?1rC7HMo(^w4`VPV{Yxp6NR#s9|g&#(mf zpD-WhubNCJijlaqYBKQ#*1$RV3wFV2)sl&txEF2k9Ja!LurIc(o=kMWRoD(s;SE^5 zMtFZQjv{{yyJ6d!$;1#`j?MAUn(1VsJ&DG(l8H7r7oG9mX#Uz^=H1YG>+uTw0qwAI zo$!1-`raGZ5%bkeCN9A1uq*b*2KXE{#IMkalu6f1CYq5Lh|c6;H1ywKBdl0InW%*W zupZuvt?>B+Ja3y+9`=A|7LT5e)tKy^RKo3N}KhH5Sa4rD1Bk%!T>e+r%1ZY+<7(UAU%T%3u#EyAWNfF8GE=mm2by4&ZX_3y&c z_$XTMRkYtXFCgJsf3WHKp%e3@t$X2s5Vg|LT4=P}U~TM;*?0#|!547?Rvj27yBf!n ze;*CrRf9sGUC_DoLW4UL%it8W-ts}LMtu?wQDC&+MWd7$94h2SgH!+wQb}|Y713p_ zAM;(&ZPXu~&?IyMx1-x^H9C+d;`6QO_S!!<9UA(U0#9JBA<4uwSQb4=H=`ZRMn}8~ z9pD-?+E1YSZBz6ObO6WjUw8(u#k@nqKn6rdqwP;glkg5%fX?*p_~60lQ|QdMqch)& z&g6Zx<1f)=K8H3~Y*?sY0S$R=bYiX1_xqv!jX~QG+@Gy+XxdAC^J4;{z^bOJNc2;Gmx=s&TUgrVAx z9@UT0nV&+h@1M{S=esF%bZN92THX>JaOapGgs$zlSUwXS*wXlXL(Ff+v=#T0uz_Rf zW;z=yI@3dF`zK=l47wNoM)%wW>G7dr z8ML4#`a(N&Q}u|?hsWnru{z~gVD&0K|hBkp&^}$IdK+RZ+>(M8j+RgjMt(|^&A?(-N>Fv zC-#$Y#>dbRo&QqnmOz`iZ;*{RX}_KF>YL z_c(vWNw}8P(Tk)V`ohduz8T#M|3#PR1Uln$XoUVkCy;M)@KWqaz5@D{U6mYN$j`^jaYG}w72N}8u?zl& zSL0PP!e`7fbm>;2^`4v&&;N@Q*x_C@WM83QI4-{>eAVxSMx-mcrhU;!jEwmO=m77F zZa_EZE9g?~K|9`u?x7E3{;OL!|GxMe1vZ@j)?i6AMA^~iXsCO}{Ajen+0muw?p_n! zf^OosV*VJ~&uQ$3iJ77O{%I03$WO+O_yfAxn%owC{B%b107H=a=|q}@yLlnHR?navY(ih$f$j0XvAp=4 zFyOM-gYtS<0dGe)+cW4u{y=A#oEsuh0$t)7*a@5Bg`WRKBs?z5&>Lc6%{2Vs+65+o9*bCwgxTL@%0^=#m}9dU)ylWTF>#M(eM|%=v$Tgm?0P&;k5~ zhCa0*R4j@PqzwAJ3L5&_=y$uGSRKcsAzqEvTaWee8ElMSqDxq2VOW}xnD*SxB;kj~ zi)bYNi=OMR(2jH69tKhv-BhKcb+9G*tI!T_Me-fIvYLNOVI7M7G3q1V*W#Ppl8tmokthz z(skh+UA~SJ?DA(*UqP~h2O_*(fky2i5|h3-fg={)S#f%#&|-pBKg(m=G=o`6+dEYto3xLKQa0kUP1X` zw1d3QgrBGNum|~hI0TQPA1lqC4F_x$_VsStO2UJ3(R1O?l3j2B`E585OFkd|zIrQm zCI1aNpvEtRt7SUc@xSp(d=*`yT${od>(1!Fmqg#ep5%+Y$WqaNViXD2ayq&ccc8m^ zb@avPK6EpkKsW0j=%&lFIanNBx=QHtmRKG;$NU7eej2^HmSEa~r%BlGj#%LXboYOS zeoXv=?v20EkDm*+gwL}AxQ~2Gyb$wk4fjPcwBzR30SDt;d>TCkwO>jm=3~2;IRD*p z@V7P!{DFPh%OMiw(HS&AFT*zI0Q<$~)1r&fnXE!L-^*AFKSxj1Mcc#sbGSMAtVtbr}2XH_7@v?G9h`{FPt7yA#q3ykc zw(}(#$#2mm{v}Pq^P2BJ;g&9m4y0Rj2pZa{Xalp+87xGX?ml#>9!KAM0k6e9=m1K+ z8rm<9zE>B$&|0GP(^tg@eb5mNM@KvpZD0v{VcZ{|KNp|BfnKdg(T2W3_r_o740G%Z z|B)a+dYqf0Yd;trz%-;=<)80w!0kN)Q@6C&;Ju7Z0Hc)jb||%XYL9Y%{ugIK7uxU4xM>wcUb$2 z(Iu!AZH{)>2|Wc1(Tiv!dNU?o5AD>)LZ1ItBn)*oGy;91!>vGm61w~6p#xYQ%b!H+ zzl=t3FB;nSu{VB#jj#ufQI$W7W-wd0mDtd*sLPOsN9r>tO zJ};I(gf{SWEZ-ILAI9fDU?ZL<-byC=Lt}g#A3)!0u`dj~XPShYZyeguU04;@$MSd4 z7k-S-bMFr`$wHT`8XB?svAhi$(QD%Kp6H&q5e@l}_ANV_nSgcG&gxu?P8X*bUdB13HHeAaNl6#{jHCwlR8~hoXCCG%~PsVj79eNYJ&s z10Cr)bPb=6?n2k@UCgW{dcM!b^2C2bqza+$mB(RNAAN6CEPo1}=qs4t^M8nhGyE8x z!AW!zokf2f6+9TMfHvF|?YJ|#NBUz!9EaY7>(M298Jpt4n9qMG{1vGzR;PRzE~fv) zeI)#bUgmHz^Qm+l`r)%8dJH{wrQQj@%DQ1M@~hD=7QbRWZ1isU-8&Y$l7A4p;Aw1$ zP2LLwz7;+HcVg!A{~i*K{E=8;Q_Sy~Ul?7EcDxo{x~I?q zyom0h{W1SO+Rm9}1Mj{l?bTHHgD|C%Xe`R1Z&XBgM{V>XxDuU8KdgwiV0nBD?P)I# z!cWk1-0EofIoBWE%}=76X%E`o$)j9(4&@&T+yw=Wg%_Kk4faMWjz>S%7NKkNFnV{s zfaUNc8rutwhXIzy%gMJw-yez|{M*pAnveFo;y72H+jAWSx*d(}A#{6xf^O^Y(HGC7 z=dH+xA=ahQ`j?{vs~v3{?S-!0D74-jba&o^Mt)D4#3&L6u^Kl1D14tDj&`&Tt@r}k z!7J#%4n|L)1N;#kV2+Q&%q~LTFBkJQ(D#}}yP*B0`;*8faVPr1W;C>~;T8BZ+ClYC zLc`6_rRanngF$G$Q8B*;-8)Z3x1a-m4Qt|ics=I)G;@yAi5p4y>97ok-~n`GbxwqD zm;KR>HlQ!VMh9XyLhVh`HE2j~TI5^d)vbijY111|h!{K}I}!V0y~ zW6}g|pf!37yQ0TyIJ%Z|(POnd=AT7(^)76O=gjz2;G22=w@_acf{xGu`T&G(SaBEIy^6rE=5c1 zio?-wu`hj{4nJj%Q_zco>feM9^7-gYk3~q@H@)Y{~Kj>0_k47;4I|)0!=uD_s9y^h5h&^y#EI*2VmH7@0`48wh&wn;pJX#Jj z_XT>2nqd>{fY;!B?1)E@_R@*0??Xr{pfhieo`$YyhJB04yZ!mLye+o0p zMh8#_ZKnwu`c~+GI-?W0HkMDsX5`bD9z$XW2`g6ppAgczXsFwu4PJ}Rv@g0D`=b$> z5?zeeUyUxobLi6SK{wwKG~{2$@^i5~&(EBH8!Gv8XrKnVmMzhS`lAg^iurkHLo3nu zHlUGs1+DiUX5p9UG0pW$sF#fnyeS%q9?_eB;rv^$gaSK$8r?K+$NX_Ll)s}9%JpmL zumC#a3g|!^q66xLF2w*GiX*WG9z?I=f6&vA?_8*NRhoor-W8oeU-bBmj`^3+4&IFU zk7ND}dVZ6?g+1^uwBw5Cy-*Wvw?VWO8o5r9O zDtZo`N}d9#%;FV9*QNqGz`AJt)-m559oRsuj#HwKqXT&deeV-=?asvf`2y)w=Hsbg z!O&o1Gp}`AF+yF4DDzGI-{*xy&!yHGHQf*bL99FK)AO=W%>&BE&Bze6KbqC{w@9{TCh5*=UKaTv(N$GjSl2NwEp@MoPR^}LVWN#8uCME`KRare~kH-B}2#Eu^Ht-W zzZ#uDBl#D4)8#J}%8Oum^3~DJ-96enO~TL(Ku0tRy*MW0ZMZC!7yVawUK*W2Hrh}< zwBsh|411yN4MD#+j71}~Fy@zF9r7DudHO>VcK8L>z#OGhncrZw&`8{fM&c$kq_<&3 zT!OW63tI1MbU^1~{vUKe1uhE%Dv3TXj~?Ty$P%U#EnxGMaCKej(_JhJFMZ(J^QQrlA9xh1cL+c!B5tV-g;>Q)tE0XvLq=26JSE zH7$X5R2jV|n#b~f(XsLQZSncCSiT7xQGYl31>kSApGIYgsOP^G33q9Cbn^^AI~pJJ z^U>Y@Z}j+Vi1}U7Bk0n6jSl>GbV+iT3-1-f`sB0GiS|RE55e?75)(xf_{)<3k ztVe!wCCuns#wL0 z)^rpa+Q+dn9!F=Evu601ZG^Vl2fO1M?1;ZcTcvA-U418J@n8eGx!%I6_zn7EvD)Da z!w9^J{Cu2<2e1>is*}q6Y2$9Zh5WZ@$HVG|-To|^KaV}IeZ5p-7N%E`7(k+Q{Z!&E zybWzIe}fS6-sm1!k1g;F-ip;5rV@kjNxTmWToFDsA4BW!LkCj0QHao;=%(9+M(}Vj zok%qfo2NeB%Y&V01Kpd1HM$?2@gD4n1)8QZ|EPEnb|wEFzJ?W=g^7HH-WTngrxJaz zA9}%UL-)W3G5-Tz?)fj+g3XqLuT1DEINUOXzEG=FVj=k^=$h@u##pd*2xSMfd?{X! zAEWgfv)(LRDJq`D#hAByDv`v0qic3QIZSWm*=9lye zd!-&WB7Y;gSy$j-d<{Jn6|N6oX1ik*^0U!XwhxGNAxQNu2t^dA=LTN zO;-m0g|*P**cm;3H=&`Of-cQsG=dLdb=-_~@C(esOZtSL-wo0H2=tUJN|SH^_oEGM zKpWm3J&1@GC_C|1RTI1K;9DmZ9ZXy`7q{&I8xPoledGdi=^ z(E%UBJa`fvz!`LjensE^a~S8}O;>1mD5!{rxG}nRozcC~5A9$q8mXD+dn=;PpdIf) z_r`Jb#>+7xmHC%G<*|gc1Pbr z_sBuCgOAX9r_qW06D=|_yjLC_Xq9M-Gzl-3p6JLXq63(XuH|BMVE3XUelYqZ8p3VS z1L#tGhPHDWZRZbk2~wj%c|LTYCC~|`E0eI{`e?6(KE*Uw0{YcorSaim>pqpquI)jZ^7I&hX>hoBh zYfN}v0`0Imy7sMOc~5k=k3d5`2JL4$I-mvW`CkzWHpB|s(3!n~p4X4ift^4H^ex)a zKQUi;Z0M*w+EHb6^VLT`yxK>HqLH104&Xsdo7hOgknD&aKpXlP4e2-N0DeRp{xg;r z92eI55_GdxN9)&%`KIXJX@kzZ3)*g9G-AWYasDm1l>#^6?dWM(fdg<08j0fLV+ZI! z>Y)*6jt;yldIJtXKLu|^2ebm6;A*t~vv@ha7N4IS&-u55(-b&>iH6i4S zpaac9J8po^=o)mO1JU}E&zJGe7?KU(i`bPsJsCzRe#!WZ608$N+{^n0|>#IPh4 z(DUCGtv3Xn`ON5Ibl@w{8Lx}^E$9;LL9g!j_nEC#{k%TjPIeGxyOefF= z&qn`_=ARlmD1|<+fG$NnbSb)^ksE>zPt)ku0dV|rmzX=`ig!nu?KPHx=p$Zw>V?LEF6yGr#|{vhMxZiqZ?xR=ID-Cz6U*3@1O%afki$4r%Bl0`DnqJA=IVOnOu&pX?=9< z+MxsLjW#qOdK0=t)1tSbn{^%<(Umd(G&=BIm^QTgNH~Kd@xkY41ip>_5zF)57U~s6 zXHo{eu&SdIsDloy6(+HL%wHYt9_@_|Xuxfpe@8rt0!KOn9mtaCs#x)f=nk}l!{|4o zqv%?Ggl?)+SRVgD+qs9VH#*ZV z(f9rbU82;iU@^3vO6dEw(V4bIJG>rU${W$WHa1PdHJpde;2!kC*$~|u%TJ*Z`UidS zqS?X9Xh$v3hPz{X9E@vmBVK9wobYG&`=k4?4&~{;NHii*b8h&ZKN72we+X~Hx3CLV zniqa0Pr(-Cw__*#6T4#j`Qai+~USBz6?AFT$BrmJr^JeptD|6@H^$6{Zetl)uREkdAk(_Z!$z6}c zwuX+WmNj;KjjTGgYSnH$WY86jw@!O3`FyTRyNn!~HEQU@Nm)b2O`P=l%JE|dhU|(a z8%Zg_4<3O-{7kGiUPfaeE$oec}HNfAR|c z_0iVKLne>EY2@f}QwNS6Ir;w{(M(p&tbs!&44r7QLsy5qqRF{r=>j8%PMA7z261tQ zD+ZiPE?M!%xn$3Rz4pu*IB_f;3?4ad>h!IBeoM~3$f=*mmuj3dZ`%oUo_S|$nZl_v zMRJVYTCiNIK*5}2NA7uL#eiC=(kmL)N>%xP*?KD;sFf;{JB)qB>RPE1TR*Io+EO=r z*CQi$Ju-FAoY&_Mo-vl#%=rHznCSI?;~zP6D}VPWR4gB2mQVMbG%dziU)+|Q~31unUv1Z8O1X6` zZ3=~w_9AVRQre>^{a&v#bMNE#*K=k*pU=#D-ZS(0e2?2bzO?vXON(!4JUE>%nMf?I zmQ2)0BoepRNG6J5F1E%UcrhkxCKG+I3to#Wa3U6|l}r@InOGa=V+ni)3*f6*5_iY; zgLnb;AMi{pl$lH?&ZST)Gnv?lwQw%}jF;h*+Q~#cd=>5RS8R_baR9cilT2jceb^bl z#DQ3|Zg_qHj-mcO_QH1cl8NEC1l!<=dg)}MD}|=@lZlR)MrZtLv`~XE^GnhD9>M1L zJvw03hT;0P=yR`NH!RpFnJ9#pV^17_O>rGI!$asq%BCA96Bkh!gwEsvH1%I$3#`;6 znW&Egu`%9;9q<)whxwZ(6V$Jl3=OO^8c31#cXRXXB)J z!#p&?MX~)JEK2>c=zrq%ZD8LSp#&!~qV3hAEzyZwiUvHYHRsgMlnXGx9LH_Uq6LY{x424w}*v$cr;^X4|moilfKvJoE)q0p0EMFmF%c zh16G}_q~jcyQ>fd-$Wm6d^&q_!L&&zJUC=6Biabfc4usW1F;6)j@M%@PQtoF!em$C zMCu=-$?G;WjM)pFOMf)Eqp$+bK<~SMD67$g!oxI}?GMl_rG|wY3ZqFXfhOrfbP_eu zWo;hoz0qwn6rKDubON`c+iWEo$hvra3%b4b4oioQj?v%=EHpfs=z&$xlQab#XdW8z zLui1j(QL0n_uF&PU1$KGU^)B=`(Ux`5Xi9Tc(nf+X$rnWZb4^ySG@3G^htE)FQPNw zjn3p_bl@ZCGM_{{Jby&EzXqD}#^}U4q0bLN$D4@ulb%k&87;u>xH#VMF*?I9&{xBE z=-OwFOeU_wRp|9nqr%L}qbaY6&b%#p;s)ZSI38X5=h47FK>|uAex%?GPltv?k>>#4D!qYKgJYM~iu6Wgzd?L*K_I2E114QPfQz;hWtv5A7I z+KV35&(WEGi@v^pMw{t5e>L!tY@QZJ1Mr`fChF?yuLQpH(}Zv_foKf zPteWubG+fKabbX}XzCiqdP{T(x}a-$CECwebV+7J7oztqi>^U8>E>A9HIDOd2m9lN zW6{5(#m0vYE<|Tg7c=l;bf9eX`6=iGZbm1t9L>xYY>%&@nJqjaEI~;$!*wQb{=KmU z4My4-J?H(p575_Pfx5UqWZT7rp-wx>--e`q|fofvTeSwZ@CE7q-Ln z9TfZ>xeu%3xsyT%7oh|6LuWJs&CEpfJ2VYVX%3!&H=*|}j4nYlvK*c98g!{Pq8Z$Y z?3r|8F9m1(2^!(IXhu#)i%$*%lt(+Pj4oBZXghR?dd2G_WBX)uQ_e%b$V<@g-tKt4 z@D!ip{FR~LTGmHjBw6SKH^lZ$=w5gmeNP-hXM7UP&_Cz|icbxe#Ve@SKz|a<#@@IY zuf$^4hlz|(&;KL}&U_9U$Wk(DjLjqX8T9G_t|{0j}J^0Z{461K$JI0)@$5&HZi zv7U>SsqaHG_8X?_Q7AG!d=6V;Tk2O~1-u{I;byd>lQ;v5&j|H}n0MUJ%xyvUz|VLY zp2AD8TTb}K+>0*Va`e9SIr04G(%^u*(UcuUe{fWr8Gh>bKr_-CUDK=4Ok5l5x1a$o zi>^gC=S%2Py^aq2Cc1|{jrF55IsZO*iUvDAYgX_=G)0-w_Gqg6#rk-(!+Ftr(A~W{ zx*6TXZ^Zg1=r}*()tH(c`X8F6kVC_C?1sOho2|{9@W)S2v_1)4ntA9NZ$|_884Wba zL^AMvbl?`~p2|XhR$h%}_Z zH{D)rh(Dv}y2_2=6x2p%+yd?QQglhKMgtg$+@DU&rQmK}gs#=o=m5{555A0D@$J}N zW^M?$3ihVG8CJzx(arWW8pz-14D;Ud>PJS5; z;53^0{0qX3rO-esqStGqsc(e-w(E;^a1xs0htc~U$0oP|TjJN~5>~u9EX`Obif2ci4?+j&4TZaSx+&{}DZ? z$I;a-^eFE(FP!^m7`PnTQ7!bwmgro&qYn&5PwF@{(D~@eUW#tF$I(@PKGr`&1N{XJ zD788)Ryp(>RbR~scKK`5-~dC>8BRb4cn%G4JG#ny(11Qbx6#qq{wo^z>1grC!t>?P zT~iy~6`i94V*A821^>!ggcb2|Y=L{?4f)rERj+`9X|IW0a1olJchJBNqr2lrbX)xy zuNQheY_~GeYG?)x^O~AU^VJ@VnV6p3U3JiEO{{wrv4NT!4gl0 ze_x%1J*j_&22}r<@M@WW4ty(i!e`MXI)(nQ?zk}oK0o?8UP1er|6!>ZKQWksYdHa3 ziW|{geRuSU=*#G4`T*UmKcSoM?`W}S!_r-dUT=z3uw$%`Lhql7zPjdP+J;9c*zv}A z!<*>tKZt%NzC-uMujsKkjSVsNTr#m6n_^+immA&}XQBf)#w@%FZ^B2=Q&4?VGBF=p zZ{qy-%E!N((%>K1rM84jltE`u8+{qJKm)uYULPO50iDSbbn|V%`uGugstRun&(}cj z>xlL{1l!^Gt(_OM=AR1VO=aY%cu_|`O>G&pYLq9Kfybv<5Hu@~u z?@MTZucQ6!M>F|3y2Rh5DR^G4V}Skbm9lWVD0%=nLcaczt!e{yh3>-HUeg8M-%q zL1%aZ>tXWcaGV>WYkw6Qz<8wpbYdz6GcX5@@HVuAf1xve6dT~$SU-pkbO>G3Z_vOC zYzx0-%Ap_FM(9M^qQ|=z+V5g?Q!m46p8tm^*wIeB9S>s-ocv07(JaS`)c2qrA46yU zC%X1UUJXl7E!r3zumgGuW}`2nRp^`XINDFuc%o$}IGH*hCf4uU|7X z^*zzZ2gmlD*uE6);E~wADc0YP*T2RVTtAN2VEtXm#J}-Q^tmRxL*U)g6x@8-=s-7N zCa#F>yU+)Y#Or^dGdXWhSh7lJ#xl|N7HCF0#p~VBJ<%IYdH;Al8@)e0hJxq&dNj4S zqo31Nv3>we;g8q|PoTR#^Np~pyI?Qs51@PK7#hHFY>cO{7S?|=9OnV(o*9A!mQIYP zU?fw~wY(9HbUC_)k3~13Yqtx%|0DE#ACB$E(M;vv8=fnJBdBMh&n=1VE76HQgGD|6 zJ1IEBchMOfKsV80^pB%6-U^mQ18Rs4+!5U)eXtp3qnmUE8psB0jXPpJxi9?iE{%0) zABc+>Ke32{ztGQpJDK-Y>W+SVZi~K!9=o&O34fJ!!G6^5Mt>1~kEXibyW#KN;nKtBeO1>+ zGu9BjFALo(Bhbw~7yT?RM}LZKeV_Ahs>*y2*0dhFIa;BcvMaiFgV9|+A=YO{7o!6| zfG*uiG=L}2J+v*>-$460gua-5iT?Eg=ii0`ABGv0KvQ!*+Ce#Vvs6dl3$4(ZU4hl` zI;?{Cp##5wL-9TISU3A9{B_p{-P{kOduuD&-+?p*Bl`{A6seEHgALFQd!RRtK)-Tn zbgAyahPVbR;Q=(&r_lh*><|Br)eL=p0Qw%7f-c=mblmi96kLMk(WlW=??iX|d+09z z3VrZ*^!OD#5K?~*djADzVAZ27qnDyfIT*cfI=WdGAem1mwo({F!w#&C^*;$euLq$6 zEk~DV4LZOxXka^{AD{sqK?6L2&aCjk@cj8`y$bqVqv*w0+w!?q7ms5*ton5_@d%DU7q`ffFtM_jLA?Q*lFN_qsxl`dX)v-I;|(kDV(KrV zk*B^1*UO;EZ;Cx}5c)IrNxU5QVLz<=ZTOJSL}&U|^heuokYvI`|=a@bZ5b0xN~qGovlh8E2u}yFWV9q3A@W#ro~h^dl5pt4-*EdkO2~ zAJ_zIejmP@*Pt_5iC+H?y4GKz8T=6)xbU%XUm5I9y$<%qoY=k>{VDSWlJRunYYLu& z2AcEderhv)qmQd$5cSbYR1O0kjjc)E)Sk70~ z?GzknEqcMXzH7x0d+)Ya!G6-jTcd$isNu2dSAs~Lq=<&scwPxcL_St zUg&1*^DF1y6kSV$-he)EH@XC?(WTjnZoWNe%0G?m$71{6=<_9h3(r?Um$E6^Pam|O zF|nS5_H)N?oPQsDkOnjHOuTV7W>DXcp3_t4edT`-kvBv$krf>oosSOu2)bupiS>PG zCVxaTbP7H0sr2y>aRwSdLo_wr(4`oH**FI4;y(0M{0}z8q9?+A9nm%K9_@!7zoF>N zpF%V7Qmns+e$HAPrr_>97O ztBIniyvd%0c2yRQp$Zy9V|2)@*gh<_Pmb*i(PXVcf8RZcZl7J~K7I?`M(-6(rSr1< z5e*LTb@VtIdx2u9ykr(bSEC9VU_^Bj}G)KI@9OT{kj{S!KY~CN6~lKU-5c@65;tWXnQ3zGqus})fyY)WHgX9 zn1LUoOPfAP!2nWcr}AEIXX0$?L(tE`XIKk=!Y)|0WN06Ty{Jz?1Ko)ZygzyrozO`% z!}-n$1J*&uYl=)XooEvZiSB5M`=bwzMpHTw{Y^6)9cU>!&|}fu=xb=lAEHb68JfwX zXup4;&lM~cGFci+`1zXh82o51<1bMg#gK z`Vabi(euKL%cAeLI_Q1fG3_qAih`-RKDq$C@m@5g&qiN}*LR>DypIn2CA#^3ik?LK zJEL?6xD-0ETIhSDX{`4w&H2BKhJiE;!nHUN3!k6L`|BqM>rnp+&Cod)gpTT>pOcno zfR~~f>VsxxFuHk1qXFii0WU-Yxd**}IE;uS(*mCOEmCb(S8z@!gD3i&wOQcqF13yb`7TAqA;Fbp&cEmTQ5weJyXbLhQzMml5NF~REK@U;_n(5kkL{>et`!Czj%MUmY>1Cy z7Jh{O>Z_C)Qr-zY4L4#v{1?{7-I?hS=?NOT(onBXU7y9jkms5Wb&FIh3X6gE=ygw6XV`VNpgl?`^F%u7= z51!Q^{9qW0U8tvVGQNi0u~oxV-oIWf#F^9&qZ1n3DD3vf(fXg*8#^>kC2qjDu5m`?mn!Oc^zWh!wOZb3Wf-YTro5_HBd;T2f0bt>;aBOZu7sqe*YSmB~DkuT8q zMTa)2M1Q;zeZg%+_rTk+eiSQv{tLBbv*qI_6M72vvZ4muZ-3^q5Wo~r)qSp-_wQj?}htmD1s}n53a!* z@HG17N_Pz}lIPGj;4hf>#>`43=2D-9?eHHoz;@lj3@=6B8&{+KFGIg6tI$okB~76X zg^$pWL+MMxh2H2-uR$}nJ-3{?0$5u z*TnX1v3+m!AkuF-@jZna+*rIvD(_$HnxShp3(v&m=w?}i2DBO7&2ORu9FFaOqaUTS zdxke&74-TPteuZvQt0(9y+WXGVlmJEehOu|@C`1)GcHdhl6VKYW=qhSt%&s}V*Obx zMEfh~i)at}EhyJJ?5WGqQ`8ro$Uy9XqtN%lS}e@?i47DSU<*34*U*7Kjed(p{u{cs z1+NHup(=V`TXd$~Vtp8nr9K|b*nX^pKg8>2_X$f{4)gw{yA1``vOAjk;qiuf=;m7; zukS(6@gelo{2u)i&BWj6<}A=RTrYuc+EQqHU3Bj>NBim8H?U6;fRQ-Efw?*?dnD0)h6 zN>ea^C1^*h(2k#t?m|;_F#02UU%mlhz*1PBdTlI&gQC+hgZfhR75yKqhr6&Y{)z1| zU1MMvU<|tXW}$1g6y2@su@U}+p7Sb$!pEi|y5?QcjPyb~91yRsKm*-~rhX@y`utai z@d_iSE}bY#!3;D*2kwHNh9TGu$D>QJ8QbD+tcFFd37Kkuo`O#3vFeE#*av;?dYq3p z<54U&IF&ese_)p9|FnJ%G;W2%3qL=$aQA7EVbi-yck5sZMs_<|Uxk^t4@cl%SPO@Z2p!#y-oFeDU@f|v zpF?N11I^feEQnvD0sMe2(FyeVzeaHW-E<{JhKA~Bid&&;cNw}ju0aQwfM#kA`rLid zr_h0SqI=^2nz`htRNjBvQx)y!5;T(o(Edh`N{5tAr@_?DMI&8|&fp$2kd^2$d)0n_sBkUfP?6L$IyxV6D>J9JXaMBG&9;RO~DsSA2hNlXaIB3wY(J#YzZ3i^5|ML zgAji!1$I!+E6(9P=kzb`gC9&gx!&g?bxydFdY`vMK< zJ9MCbV*Tv#VW6t$K()}#*A)GDWkpAznY{@OU^%8Otfyc~UX1QVJNgt&=}|O*U(k;K zitT4j2y0y$-K=%d`t9dg{5!xg8Vn$HT}Wj~bf%@z z0cxQ$X^C#iPG~B7qcgiU)@PsrEJ6EQk3RoAdaB+)kL5e)#1Ew7g(GO{j-e0!jt+Fj zq);!323ipvxEVU5o@k&$(fg;O8M+A_;I`=f=zWi(duS6nq4XOReBeX0<1f&GPDV>i z4ogxEJ^!81`?ArQ&xziO27Vtp7hQs#=&Sp~c>QN2Bk4rGDIp~V(G-DHsi@)gYcfAPFV!Bo8+JsABK z{mlN3&Y;-TFhF@U!1`#%9nnl&hTb;-?eAJNQ`6Cm+=T|PGWr}A^Zf6j;F^4lMs^IH z;V~dOBKcS{R@ldc7LD6iv{j=z(S~8x3SOnt_|+^<`*a>!-!@znum<+7~Z; zhCX;4O>ts+@JuvA=b>v{7JaTVdVj-c>)75IU4lMnhQ>#8q6?;T{*7!24R)|9x(?k; z&!I1**U{a71WjeZ8R5BdXy$68fwV8CHie}^-w7on!aP??YbQ5-p_C@a-iLU)bG~nyw_4F;V@GrFEwbAF$ z0JcTU!sL(hLo2_?`ww6v?JQzC1{5FAc3V5<0!bM*GFffyZQ$7 zfxFRx9z-*yM1L)EnMFaRN)(g!F_m@HYt%P}h|JRNeTB0-QfDUkF zbQF3Fr=zJ%qk$|$16YQh|A(UMV*BRkw%EQ4Jyjo|fgQ$@p8uaH*kNjRuq2x5is($L zqifm%UAt~*K!ebZhDRr&&&`U?#k_NmW^_fYKaB>y6Vs-4F9m1talG&~nt>mpr(=8Z zIpMzZ(3w<5m#zUifu?9+oiK^rW4%YTZ*&kE(C|5&enC+J#!j&7=>SOt?DYx}8=W~?##9`K+0Y#)pUJ}yncnNC7Gnu`vw7=3UlX5i}R zYv@eBL7zK;E>Xc7f)}9uWTMYEL1)?(9dIDJlta+HHYrWPHC%|!;BNGVvo5+PwjV_^ zl)N!KSUOq<9jGJPabN6;Bk@t(fSqig8~)jSd2}x}q&=OuDg0APBWy&&ILySAI0)aw z%P@0Z_$xUF+fsiCyW>CD6T8n3KfzW+H)96v?_)bWju&II1*yaooP}BZZb|%1VFV4W zZVrL0LIe2(J#HlyhJh}?&eTU>2V9T+@F%Q?U2h42Pe*^Q{~Md&&YQAc&dqu`U+#$F z-LfZTkDHOvd&;EjDZ@tPmaLxqu2k`9L&lHJ&X_nUd&KCmlcz2#(<)guw_@w$o>ab! z+#lK|FU&Y6Cwus$36rOc9i1^eXLR!k%VCOdM*GX688s)hgC^^j%l>ZeLCyXJT@ zw@S|NsS~dqJ$8cAnfl+S>kSz`DSPs(8>eMt^(44uZBHaGEHq*G^q*HFg`oC{~yWu=P=7J&P=sDBY(dsuWp=_ zTeU>$*xAVm({j(Llqyzy*~I#(a?9G+Pt~&2sBQ?eZ};|>C3^mMpdlF}rj8#wY|N01 zDcK_@{J+!;$$ha9lgvZsyTKA%xDMrTahF?aj?VL2{I&VOf-JucDj|2;J|_od;f lv(Eir7Dng3HzPHpctO%LA!EvfW#?8+X6DXbn3|FA{{VJoUV8ul diff --git a/netbox/translations/uk/LC_MESSAGES/django.mo b/netbox/translations/uk/LC_MESSAGES/django.mo index 14d595e1603910849aa14820cc846476a2a93acd..b5c8a4fe9e803bd96c1ea23e98cf95e020a58d53 100644 GIT binary patch delta 12715 zcmXZib$}LC+sE;Ndk|h=S6E^}Kstn#X6f#RC0A-ukd7s!8IZ1}OC*$%dH_L52~h+o zl~NQzDJca(T6w>}`#OJp&N(x4;yN*NFHD#pHF18_mV7gV=AP$uiVt}ea4VL@JD3Oa zy%qA_z`EEJ6EQU&#H@H6GvRg2hA&)smUba8Bl(i3`|4sec1GPd%w3<~E);m_C|FNH z7Tklm@eJm`M=qbSeaNdqJ{EP~VC;%X7=;gU6{hSE^2*~z9E8`g8@B5h^3vcT)WA;R z>-cxaz!K>@g}m$(6vuqn7&GGl)JUeF8eWEaaEJ38HX;8H#$c@kyFU@t!HF1$cTmq) z?QFJ1)sq;Ih#)ZwJK{1_ME=FJ82Pq!Bpc=@UlJQ(TU?B*u`O18$40sc*O2$RSO?bP z9I_Ezt=<)=2yb=y;4}$^`YPtc3W%^F_wH=)b5yx zip(z5V*J*55f$otsQaRNhrBvi2@B#lEJpj@23PPizDqvT$5wAotU~@0YMZ{^H{>?>(j9aevLsr68A}H|5q4b6%9sh zpA%RLYYYr|E%80n2#(h8a2TF@!7ScYb{6f?LvlTUEM^RI94K<~YoH>SD zzLvAs@W8g&911j&CX|$cRZv`Z@TIZmS(zU34{{?E%e2ZG$53vu1=0fwXJ%Mv28mD zb^j_<1h%0f@)auNmr;v5$5>m$L1hwJ-Gi_iE_s)4cAQ-=gx$%&!Yq)%4mv4_6 zVK-C@kq$wHb~ftZ+T^ZZLCtNlDR%PZMs=tqs-AaH+k7mlp1m08Bs)h!t2kn+RUC`j zmT{I0y?}*l@4)sHIbo6xgzY@zRP!IRH z3%{U_&KI~6U!P%bxi3*Y&z2PO-o`ShgJltF7wtoZ_%u$y>!>N{Ju~E$#__29E|>p) zCflbt1+UDq2g^DepnBQ?RdH|USbUBA0#t{$q88yPRKu51yW#q9~z8IGFURro6IbDnhNzoJgaC#VreF0v68M3q-`Hb>Rd z%{dm2kY9p|NSDPn&>9|t z+TROM`+6mo$786-q*!WeA~PnCuY=WaEq2rX|ARz*Y_`lo^Z}~EO{h8BjSBhKs1e-2 zqWBy&^1{o_YS@!}YaECNQAc^16?VNXDl&ahYiBYBT3ky>sK*CUBY2MLdESrg%rA}V zKtoi=`Z$N9rfw3do~_sy&*A{A^|8(M4%9Y3j2)A)EpamW+N;?As`%t8doSNZ-59;v z4y3ZEd;;q8d<+)Hr8o>vqCQ0Gt+D$r;dAn-)`q-G=zn4d*HzSj(yz0~RH%=l=J*`8#XDFRYi|m9LvRN6#uWdv-vt9ubGsiE*)uNx z2-V>EtEiDaMctQoi~XdEMMbU#rosf&k=z3n z;+d{|vvVhEtsF!aW8hsQp^(2sEt+gw?I%?d_8@-|_3c;pQ)_4$s^Yze4%LAHsD{R& zI1g{Us7!d@7MlTahMfSQuW*bLL| zu=_h;Ve(_08&O}+=TRNayVLf6X^bV`1cS09CXi4AUtk4Hx62-Eh#J{KjKr@|5junF zz$Mg3AEFj%=G`_$F&II<0cxt+qSnk%R7a+v>ickaDDYa5*g%0^Ldo{nDsF)>#G2$&e_@|uO;8=Wj|(v6K3lxYP>b~lDw5atvHvxq(0+TH zMWVJzFI2-5QB$zcxeZmpDb)77i`o^>P}?@&0o&h=P|uBYE^=;14dgpiJ(mI!YUp2A z5P8tPP-0MPpcX2`-JMfWbGH$7z+6F9nCVOVh|PyO^J7sRh({efgWdHccYTGs9vpHv zTyi%&L4_{$A=`GjP$M0J6>&Uj?hl|MbruWZJ=9vt`jvI8IckLCoFBRJ{iulDHv=!* z*H%y)_2aT1R>RL-`D4_t;M|Aph)qCMFdNI^9@JbuM0GU%Hx|LyQE$swREHb5@=mCT z4GHJje-lY4)XUt3FHsGAj|$;)oQ}~)Lf#}?g`Z%|(UA8cp2gZY;9Hyfov79R2Wsk` zqZ-U{%sLW-n)2$HQ~N)Tgyv{~yJ4EUVFl{Jt*C8u05!tPsLl)O}A;1I~EbrZ(^Cz(P@#0$qrAc1P{!AKq< zJ!jV|qw)<2I<*2D&^fJd=3`sb~@yt57J`e4-cV2itO4LeW}`q4fjJEP|C zII7}{s404m(U|Th`$8&&%C|?|HwYD>IjFDd?Wnc#6KXd-Mb(q(LU`bTSD1t@RK|FW zM}=k^YL)K8%E>(MN320U^Dp)eh{wa^58-&6dNJe;#aDl|Z8{khnRJ)z;EKgh$q&Gc z)R+IVe%uE9UjNO0a?M0-lS`=3*Z$pJuLrRS`KT))ZxMDz-S-SHV#3vs_cvC#W`Djb zaXtK(4Q~-vru+)(TQc_z%eTUjt(4#UEK+aDxWVL$R0@FQ&Sz^>oHx#Zt{XdQm` zko~VvulpzDC1Uih@SC@THwlSFtJiC-^qjiho! zX2mP0gX~|I&k*H@&w)3cjgjvLe*crug9}iv-Q`#mkD|8E6ReG~8T|0cHxeVrPeYxU zi&4+5K{fmxs-w4@uVl1=g*h=#CTpk$s)44c zi1onS*dKKQ&cPwL-sSUTwhmXo7L?b=YPb~D&aYTq`#(C`3gR(DehxOq1ulQp`3GtQ zcTf$b&f5gK0AkC7D*b_Hr^TWS4Ud!%#fks|}L~Cq} zI-6Hv0o;W;h%TdcL6IDO_@C2~P$7SWI%0FZ?uSpfI;isDs5P?+%i?C#fpf!IE~g*< z89ybbAB5jRyD89!{=#69 zH10=TKaW}PPmIKrdHwLqEpy($=CB|Iy0JcL&J$1{5@S$vwG?aMIUJ2y^V#-Xgo@Z% z)aUpu)L*-@=eI~ybaq8WY9{LXXE+?s1SGWIn-=iBeH;)0>V_(XtV1184Gcm}$rRMV zvIX@cbV1+`}WL7flj-!yZhB3A-qu{r9w$?p1k)CbFMm%omCwf`TH(A;b*Y9l<3 zDab!SZJVd4DQH~G5C0~dh)s1r>UyZS@72UM7=uet4Ie@6rd!TGQRmFxsB`0axSai$ zs)Y3{Ek<#n9BS1zL{&5n724I<5r4#VShl2%v>x^)AD|AdKe0UKDCLL0sM??ou+MNi zK1VImEu~rP+W(J9)WsHM{P4g3EkP}|&;!&W%~O&6uZCJwwCyqrTaw?6&G6Mqe)z*80oA|-tb#946;-Tk zCtXkMO8yGIhV`pheO)k;e3El1_9wp)6~P=;+5dS+RIh4_stf9X*^WBvZ=vSiuV#@b zi^{h_E!wH5eY_I&QhL3*9l0@BnEWEtE;)o5@ib}?{(+j}`vHjzBudxt!+)i&hl$D9 zRyBQZF^;R{hreuc)Uk%c`VDNgFGGd&N7Q0{;mWf#bc+|?q`WU`5r2r( z7kHa2;T=Pb;3n!odW2dF|Dv`_Tq9e2i&48}AFAW8H1@;ahUHOf>1WhIm8D7e1H&tf zs;>oVirzvU#oaNj-v3D?)T1S+5pP7z(Mi;ab{_S>W7Jy7(bPg-4fT>~jk>QdX2&Gd zNH?IK`^otd6`}mie6JSP$12+YNhGS_2~_AJo7;nhQFGf2)xme2Lr|~R$*4s&7d17X zpzc46isUcOo2bS72vvW&I5P$Vjkq2O*%P&0rn~$S=NG7be+e~WzlC)mJ8Bmc#L`#| zHR8djwY0=}$d%tlwUfT3-B+q5`(OJto&q&I2sM&%&W}(H?nm|fJSq|oP!aH3S^iaw zBA*KzVJVj%gSu}ns-w$LA1FIeFQeaD1=f>@)~-j+c+?02RFBu9I(8Hb;0@INj%;J) ziJJmyI>D$TmFpU2(`EKqCD!pUZ{Z#LIxao6G+5RuoCs)cUTBR9jxIPXC2g9NI-R9 zD5|1)&ef=+_H)#f9d_k^pgQ&xwHC5=v?<7k;qU)aB(!+qQH!KEYFkYR-@xwz)OI?6 zYWM`|t#%W2_UG$lYh^iVZofe_bPg4{-<;1;YbR5JO;sg~)czkyLUTV2wdmGiIs6{e zVCv2mk<6$LR7Hid9cpAJA--_Sd@2wz7Hpa$yso~U|fIX^{xn4CdH{PsKSe>LzQ1qyk_ zF8071s8!t%Ro)NP;COd^K58U8oL8|p`Se|F4b?zBKNz*B7o(ovgvoIqYAqe?8dy($ zqCh>ngSjyDu8k}o>cOh0)!fYGN1&!+Ix2#npd$1oYONeYJ@+FP!<(o`WbJ1Az9Qfcei|2REG*VYoQuUKy~DORDE+XJhi9; zC^$|+J$&SDDA2=>#`37S?24L#8K?(8Ms@fIY6Pd9mr)(Ri`u>^d)kRu9M!Q-sHqr% z3jIvv`M_ICLaTT?>LqgqwVI!z9*F8?9VmbrQAKA5S0145pXc18_tcHE_+9C+lbRZmzwf?E9@P$Qmzn$xAuHSYRm)S^0%ir`~Z zM>7mE%b?DcHmC^oMNLWIT&jdF?7{F+iyFc2uKX`l#ol1+Sa#G%ilE9{I{Ulp)16CD z4XsBV(MM2=_=+>)JzMNSSrTfnB`TDiQByG(HMdhS7cNCLxX*b3bq+j2HI!_K-JcV6 zUrAKGO;7`D=j@HDe-!e3;LRbSRk;+k7Irv)wi~>cs0UIHwFu=zO;H(C!?m1mqdGhW z74o^L=hmZMTKiE0JdEo21!VoRZAhr6x7>xts0NY`vt5uLb-fyDO*BT0aIkYWYR)&I z25<^>{{vLR-f+vOM0G49*1#f|QTx9y3GMH3sH6B})QR>3`gj|)eeR(`nRkR$SQ-_9 z>ZlKrPN-i%A7FSu7Oj6Kuov-lN(7p=5j}Q;?_!*^V`_!WcjNKNm)$ zLiH^+!HBVzZ;!RfFUO5|4Hd~b@B88Z4HGra{t6!8K+1o^QP^s{b?`K*ga3@DL2aij z6YLKN)v*QnwKxZ#V_Qs`=zH_<2FBsYN%kA=6lzK`PPV@d<;Qm9$76H6j2dalDfSYY tij~Qq#iE!Y)l?gCjdAr4Osan%*^c@LlDA)+EZ3yf@u3~7!W-_aO=giEB>%`2xFlm0~iSsjWDl{u->3LqaH$z@k+=P|z78byQ z9YbDmY=|vzD5k}|_$nU4Yy;I1`O1=#0zJ{0`yQA(K;jVwsDHM1aDOf{6 z4%~(L@dW0vX?)JUeF8eWQeaGUcKHYfi8OJcq5cK=XR2Pa}{yoGwc z=38b5R6Roj5)mY3VOLy=ipam14kO;Sj^xC`=X{it2ht4^sy2BgGI=v z?d#?q6~Trs-vwVL{|;&mjYirFyh)bul2IM`!R0Sw4f1|J>quSH;z>l^w-}4z4or`K zqAI?NnzH9u7Blv@@_Lwwd~;`a4AH*#4v7j}7>*jjdQ>D%pc=f71u??_vm90=-vPBd zW}+gq1GN}`bpDPC^&QlGnFfZuhFA@Y;y5f#``%hta29)$PdUg|Z$GR_{v5W#JcC2t z8#n}e;+LqY$u}hAb-=!;Ip2$+6rNXPsCA%3oYfP9mAO70qwqTn8k4w7Li@kUJ66#! z)b=@y<*-hC$ZL!5qDF8K7htAgA+IH_My-XXn1o61hPz77 z?0+>7pAho8;Ag0jq#9u(?t&WeMr@DIQ3p!vkrvW{sQd!d0ka7;Wd~4Gav3$H51qM3 zS-zgL|ER#W*>ql4aNc@1RCpVRXowgws&_HPaY738PVqZ7gaLPDgcMtMf1pAb%PE zhb`Z;5x+n!-fD?<(!Lpx&}yB7I!cpK`~EA`qWKZEy6@v4Oi72Q;ZPim&r#c||5)3$ z@u>S(q9U*v6_IaIAwQ2=+_~SkMI2Noq17FawQ(Wpi2M~*(Q{OY(~h(KTnM$wtD(+` z=BSP)y7JYicg2^ehF=+P*Nb9b@~u$y?!u+*G6KE~xc zp+?vn)xiW*id7Va zDzEB{MU8YgDzvjv2iJOc{UT~^y{UHcUqwYA@6N0k2+WuqIS`4REUq`M7)BUf&sHaUU?jk%I|Rb zW3$*k(G;YbZ4Xv-HbM2YGpgbN&as%2{Crf0H=!2cQB=d{QM=+EYF8APV@Ga`b0VsI z4{EBf2QHCruH6`o+CKfTHSR>+m~Nh(;nB_^sE%zweOP?!{N0s5#4MDj{UGGU<7=oz zJr}jem!b}|U>ym)Tn@S$a?iIA7sa%^MCxEFuE#8}ZPXeyHJz|CzK4pySc>k{^p>Mtucod(w{QkuuZv*+;*a<)SDCD)l$5;;ESYiza zsQo=3wXauT6+DQFjK9>@L^kYBz5&+8WbC8;e~m;FY_ZHjvk6lx+EpZC@`m5Ogs`$t%doSNX-5B|) z9Y_^X`EIDs^8ll9368`gs1K1w$#(xad`|wQ&qCgL46U|<>k?`}8P{0k@}uf)xhAlY z52Zl+c`fQ_J%F0y%h(umthGts8xOs6@iF#*0D;cj`qbeI1yjR?Wje21$92W zz%E!SSZ~{E25PS7qo&|vRHzT2=J*uG;w@~1_5T<05^x3%M1O<*E{H?T?H*KQPq_R; zREN`Uv?(c!<;e%-T|qz8{v3g|aXLogVN`{eP$PYUy05?{`$<&+6}dY2GIm29$$e2F zp6SXrIJcwL%3fqK2Hs^73i%7vqRIKW{iI65e&l~gefu@sYz-|%Rs1DtPJcr^e;XD0 zm$z60g;Akzf+|mN8n4%`3bup;?p7*rxLfrJ|P3aes+htP}g%RYNpr)z=YRx2|Ix-Da-$%Pbf!B`2S_Nqe7SFTibSdQ6n9W)o?s&?!QJw>LeD!JE*mk<2&nEOVkL*IX`ygdr%R(YX)A< z@2#Ld>c{0^tc_o|@<*s&!TEl$Beol=g4tLZccJF;KB}V`_ge(>px%}hP#tdK%DbW> zHawhX|4k&JP%m{CzCkr`3>Cs>I0GXOguKbP5?5o?k0Eafp2P+ichKg3J8HFGLrvW? zRD-z>Sx2H!Q(hbMYX7$)p*f0kH%xOkEJr=K3AK&BMvd@1Dzvv_{B9kCA1L0$g_12ym)iBfnIHHWVrwT4@v8tjhh@gQd+s-anU7&oFuJmx1m z$Y!DLPe$#o?WmX6KGc-tI%eO5rH`@yb-*;IKyx$(wFc&(-g3X9D#-VY73kQEEF{<(1loMAJl#x?p%iI$PcJF z{TUbGeawVOC#`|ys7UTYt*INB4zv`Y_b>V57Tm8M{!B@>lza?2ekl zL#T>>M@`W)%#In(*cVb!RK64HzIarG=Agc+x1iR_uc+Ph1XWMgv*CdUUU3q-P#xdI zSX5{>qgLr|tdYX=e!;rrv;A)GfLQ#2{63t3Q~wBgBQX6r+oqFIk;!o04z3EgnS2~( zrM^NJ^y4<*_xhjqlWQhwo18<1zWzmfz3#>4SM1Ms z(O1KN+3*%(4azT~z9sWrvwT||Lw+u{pnWgHb$k7G!)oL=V^jPa6_F}8?Bz5MlgQsi zpAjV940-p-kH2L5{HmKgP&lN`*!^n&LiLJfpz%l z1NOf{z4~Fui^D>X><^C%a4Pv%9*4YLI3HC}%O@f40^Y-+c;c!3(y9L}lA0Hid(;6|L>>ZC;@_#mm+-cEo__K5B~{w8)~sd zW$?ojd~`-XeC`AkQ zt9TK0kp1iOnKS$0bD*R%2KjE__df|eI3M-eU52Ib0BZX@#s*j+iyuDuMq>o|X{ZzP zL)3Ghq8k1Q)zKTyR9S5x`B4W{8Pw6-0t;*Z$CJ2VBvxe%R8fcD+ zSYOPKLr^E+98AD9E}uWrI$Qz5G;oXpgTggAg{ zIer86*REWJEfQ6oJyDUGiMqZON8yQpg!X&$BEGkW10oT1LycnAq0XoV;!#sF1$D4& zMEyuzSlo8Y64atSgwgl{%VX&he)u5ki8^?;;$-X-WdjQCkkD!_Thbb=f?6akQ4M^F zTIG9DUpg02Yvuv!e8~8^nGY4YXsn1WQO`|w*VmvvSa!Pn75qy3{~-y@&E`@z!b6yf z{5{mRd4igPn9_duH{nEVq5DzSQ%3t5e_Dwh&s6b!YY`%oFD$8YL7a=w>N zhFYW>%d^Ij9P3dDq2tLqe9*a)$kxJh>6Y>sJZ?D_0D*XTFjLz z`QeY)7N~P00rl-SAGNKIVbF&}uF7^{Ja!q*tn+E*8|g&PjW87q2$-0BAB}t`@aB*+O=#^^*|jkTTo~H4bZFWlWJl~o)N6J&YE>trBDKYN3f1AqSO-fqHU~O`4J35K zT`YSl~cn47I*U4}vNsQZV0gt* z^|eM#(VJKp`(Qe~|C30lM~hJ-UWb~aBd8PYH0pszsI`*2g@wEp>Lt?-b>AS&jY+7H zu0=iftMdgaLWNrTUVUtgHMRefNYuu|sL(~UvImQ!=C%c@gT0)?QLop@s6{mwH8r21 z?*ASY$={sUQH%K@s{RbE%_s~s;zlH7Kh$=a?(&PBU!nH>In;$_^(0+;*CS^vY6OX>9w(zZb^wduRn-2D=wRiQ zQ3q0ctbr4;4t|T#m@3vfSP?bQCa8|Y1|+m7#-SQWc7BH%@kQqg)W~zbX+~iK^3^f? zJl4|lsD`h)@?srrF~&GYp{8iHGdM~@tNj7$Ao@SlBFfas@_TnJvlxz0XFD${qwedE8b~}c;J}+eq9g??P!Ilu#V}HjsyN){h3wE=$vJ5r1KcE^qg^Jt-=QGsW$=cnfsv4%({vS<3b3YBW=vHH8Jch4e znzt+>*-#y*i3(*$)W~|EIzHZAU*g<>n#z-?j@(2=+JD6w|Dd*S${w}|^PmP$2laeERK2sDpQAoZPM{)wvj_WM4g4Pk3VD{E z_CPVzs&0xZAB<{nyu1DZY9!m7moS=q#$L9D>Y$z%6{1g3BiVskBfq2Wd*)2j*YY_~9V+Uqhib4Jsw3~C>YIzgs>AzHBRK9nkLvhs)b>r?-%iBRsE&0-O~oiw z=w~9&2VOD>t>P`Hm&^&&YJP%xAkzTrKw;E~syaKn@kQch^s$8o2Dry&+c5YpDBQ zcfNtDw;yVX#$!;D#Cj5{;0)%&hgb?DhgwAqP@!*&n!Dl7nWzyZqZZjt)LJ>{^5@<4 zyI7X;P@FC1im3WJ#<-mwFzoU;jPjdXMQc+~S# zoeSLcm8kl*qo(cxYHCCA?0+3VCF1SD+Ne2ghFbldQ6rv!n$soDPu=wms6}-e6~RZS zj%FTamPef{?NJdLgqo5>=aRr(*oEPv7BzxDUHRXrivL4(EZ4g>k`k!$HqIfa>(iZ! zQ4Os@9nt$yi}<25-Ej8@j*2AIU>j5@yQ8LJ7;0{(Vm@4gYH+vn4C)+sh-%17u=`&_ z-B$)xZ!^@$J30rT>K}tVA9!;}XjLvjt%YsQvvz~`0`)+e5f-7>P$MmmYPg>BEmVgC zRLJL|o?C-@Y3)G`@OxCp&milcZ9_smz2PoALN$w_K_s-l$DxkmPf#b?&*40iiawA)kzM@fpTq(j?#e0Iy`k$~$=;Nm7fnunGqjyg`3uqi4|~FXk^lez diff --git a/requirements.txt b/requirements.txt index 5a2e3d2b0..f7ec953c1 100644 --- a/requirements.txt +++ b/requirements.txt @@ -2,13 +2,13 @@ Django==5.0.9 django-cors-headers==4.5.0 django-debug-toolbar==4.4.6 django-filter==24.3 -django-htmx==1.19.0 +django-htmx==1.21.0 django-graphiql-debug-toolbar==0.2.0 django-mptt==0.16.0 django-pglocks==1.0.4 django-prometheus==2.3.1 django-redis==5.4.0 -django-rich==1.11.0 +django-rich==1.12.0 django-rq==2.10.2 django-taggit==6.1.0 django-tables2==2.7.0 @@ -20,19 +20,19 @@ feedparser==6.0.11 gunicorn==23.0.0 Jinja2==3.1.4 Markdown==3.7 -mkdocs-material==9.5.41 +mkdocs-material==9.5.42 mkdocstrings[python-legacy]==0.26.2 netaddr==1.3.0 nh3==0.2.18 -Pillow==10.4.0 +Pillow==11.0.0 psycopg[c,pool]==3.2.3 PyYAML==6.0.2 requests==2.32.3 rq==1.16.2 social-auth-app-django==5.4.2 social-auth-core==4.5.4 -strawberry-graphql==0.246.2 -strawberry-graphql-django==0.48.0 +strawberry-graphql==0.247.0 +strawberry-graphql-django==0.49.1 svgwrite==1.4.3 tablib==3.7.0 tzdata==2024.2